1.8.2 -> 1.8.3

This commit is contained in:
Brian Vaughn
2019-06-18 07:25:23 -07:00
parent 7a8a1bf0a0
commit aa71ef9999
2 changed files with 15 additions and 12 deletions
+6
View File
@@ -1,6 +1,12 @@
Changelog
------------
### 1.8.3
* 🐛 Edge case bug-fix for `scrollToItem` when scrollbars are present ([MarkFalconbridge](https://github.com/MarkFalconbridge) - [#267](https://github.com/bvaughn/react-window/pull/267))
* 🐛 Fixed RTL scroll offsets for non-Chromium Edge ([MarkFalconbridge](https://github.com/MarkFalconbridge) - [#268](https://github.com/bvaughn/react-window/pull/268))
* 🐛 Flow types improved ([TrySound](https://github.com/TrySound) - [#260](https://github.com/bvaughn/react-window/pull/260))
### 1.8.2
* ✨ Deprecated grid props `overscanColumnsCount` and `overscanRowsCount` props in favor of more consistently named `overscanColumnCount` and `overscanRowCount`. ([nihgwu](https://github.com/nihgwu) - [#229](https://github.com/bvaughn/react-window/pull/229))
* 🐛 Fixed shaky elastic scroll problems present in iOS Safari. [#244](https://github.com/bvaughn/react-window/issues/244)
+9 -12
View File
@@ -1,8 +1,10 @@
{
"name": "react-window",
"version": "1.8.2",
"description": "React components for efficiently rendering large, scrollable lists and tabular data",
"author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
"version": "1.8.3",
"description":
"React components for efficiently rendering large, scrollable lists and tabular data",
"author":
"Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
"contributors": [
"Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)"
],
@@ -34,10 +36,7 @@
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"src/*.js"
],
"files": ["dist", "src/*.js"],
"scripts": {
"flow": "flow check --max-warnings=0 src && flow check website",
"precommit": "lint-staged",
@@ -46,7 +45,8 @@
"lint": "eslint '**/*.js'",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build:flow": "cp flow-template dist/index.cjs.js.flow && cp flow-template dist/index.esm.js.flow",
"build:flow":
"cp flow-template dist/index.cjs.js.flow && cp flow-template dist/index.esm.js.flow",
"build:source": "rollup -c",
"build": "del dist && mkdir dist && yarn build:flow && yarn build:source",
"start": "rollup -c -w",
@@ -56,10 +56,7 @@
"website:run": "cd website && yarn start"
},
"lint-staged": {
"{website,src}/**/*.{js,json,css}": [
"prettier --write",
"git add"
],
"{website,src}/**/*.{js,json,css}": ["prettier --write", "git add"],
"**/*.js": "eslint --max-warnings 0"
},
"dependencies": {