From aa71ef99990eb3e559a0afafb3a09fa2f90eefc4 Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Tue, 18 Jun 2019 07:25:23 -0700 Subject: [PATCH] 1.8.2 -> 1.8.3 --- CHANGELOG.md | 6 ++++++ package.json | 21 +++++++++------------ 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 348cdbe..e98e697 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index f7356db..2473dbc 100644 --- a/package.json +++ b/package.json @@ -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 (https://github.com/bvaughn/)", + "version": "1.8.3", + "description": + "React components for efficiently rendering large, scrollable lists and tabular data", + "author": + "Brian Vaughn (https://github.com/bvaughn/)", "contributors": [ "Brian Vaughn (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": {