411 Commits
Author SHA1 Message Date
Brian Vaughn 72db696dd8 1.8.10 -> 1.8.11 1.8.11 2024-12-16 20:37:29 -05:00
Brian Vaughn a7f557782a Merge pull request #798 from amannn/patch-1
feat: Support React 19
2024-12-16 20:35:25 -05:00
Jan Amann f61fd099f3 feat: Support React 19 2024-12-06 11:17:08 +01:00
Brian Vaughn 8736ede009 Change stale script to run daily 2024-08-13 15:54:47 -04:00
Brian Vaughn dd1b1c0f6c Temporarily increase issue limit for GitHub action 2024-08-13 15:40:32 -04:00
Brian Vaughn 0b2a77bbf0 Move stale.yml to worflows dir 2024-08-13 15:27:41 -04:00
Brian Vaughn faafc6900f Update close-stale-issues.yml
Run
2024-08-13 15:22:38 -04:00
Brian Vaughn ba9ef7c2f1 Close stale issues and PRs 2024-08-13 15:16:48 -04:00
Brian Vaughn efad3d8909 1.8.9 -> 1.8.10 1.8.10 2023-11-22 10:37:26 -05:00
Brian Vaughn 7853dd3009 Fix scrollDirection when direction is RTL (#690) 2023-11-23 00:36:22 +09:00
Brian Vaughn 6ff5694ac8 Prettier 2023-04-17 15:21:27 -04:00
Brian Vaughn 4ff3dd6227 1.8.8 -> 1.8.9 1.8.9 2023-04-17 15:20:53 -04:00
Brian Vaughn c53a47fe38 Update README 2023-04-17 14:11:26 -04:00
Devin Frenze dd73de86d2 fix scrollDirection when direction is RTL 2022-11-30 13:29:17 -05:00
Brian Vaughn 51ec3f896e 1.8.7 -> 1.8.8 2022-10-31 11:23:25 -04:00
Brian Vaughn 39b645a9fb Merge pull request #686 from bvaughn/list-scrollbar-size
List scrollbar size
2022-10-31 11:23:07 -04:00
Brian Vaughn e0f05039cf List component should account for (edge case) off-layout scroll bar size 2022-10-31 11:21:05 -04:00
Brian Vaughn 3dac371e9e Prettier 2022-10-31 10:35:29 -04:00
Brian Vaughn c06bd873dd Upgrade dependencies to try fixing install problem with fsevents/sharp/node-gyp 2022-04-23 10:21:03 -04:00
Brian Vaughn 5b37ad53d1 1.8.6 -> 1.8.7 2022-04-23 10:04:16 -04:00
Brian Vaughn 095081353e Merge pull request #638 from rebelliard/master
Support React 18 as a peer-dependency
2022-04-23 06:44:34 -07:00
Rafael E. Belliard 93fe471066 Switch travis' node to LTS 2022-04-22 00:07:41 +02:00
Rafael E. Belliard 2d19e666f9 Add React 18 to the allowed peer dependency range 2022-04-22 00:07:31 +02:00
Brian Vaughn b0a470cc26 Changed Open Collective badge style 2021-06-02 15:32:12 -04:00
Brian Vaughn 8f758a8132 Added Open Collective sponsor links 2021-06-02 15:28:10 -04:00
Brian Vaughn d80bef25fe 1.8.5 -> 1.8.6 1.8.6 2020-10-29 15:55:18 -04:00
Brian Vaughn c057b19bd0 Merge pull request #531 from levigunz/master
Bump for React 17
2020-10-29 15:53:50 -04:00
Levi Gunsallus 9c887af9de Bump for React 17 2020-10-23 12:19:09 -05:00
Brian Vaughn 1f343d5d3c Merge pull request #402 from lylpixin2121/master
docs: add readme-zh_CN
2020-01-17 19:38:30 -08:00
douge.lyl f25c5216a2 docs: add readme-zh_CN 2020-01-17 16:49:51 +08:00
douge.lyl 8506d4354a docs: add readme-zh_CN 2020-01-17 16:02:42 +08:00
Brian Vaughn ffc99e578a Merge pull request #385 from maclockard/patch-1
Declared package side effects free
2019-12-31 08:44:31 -08:00
Brian Vaughn 921dbb37aa Merge pull request #391 from dkunzman77/better-docs
better documentation
2019-12-18 09:38:55 -08:00
Brian Vaughn 31ba105deb Tweaked wording 2019-12-18 09:38:40 -08:00
dkunzman77 1cee24bc78 Update README.md 2019-12-15 19:59:57 -06:00
Douglas Kunzman 18ecff2380 edits 2019-12-15 14:42:08 -06:00
Douglas Kunzman 840884bd88 edits 2019-12-15 14:34:55 -06:00
Douglas Kunzman af7b8c8ee8 edits 2019-12-15 14:31:17 -06:00
Douglas Kunzman d8a6ac1f73 edits 2019-12-15 14:29:40 -06:00
Douglas Kunzman 7abfd2b227 edits 2019-12-15 14:27:01 -06:00
Douglas Kunzman 51490511bb edits 2019-12-15 14:25:43 -06:00
Douglas Kunzman 8a480edc70 edits 2019-12-15 14:24:29 -06:00
Douglas Kunzman 24f1cac37c update to docs 2019-12-15 14:13:50 -06:00
Douglas Kunzman 21028ebe50 better documentation 2019-12-15 14:05:27 -06:00
Mac Lockard 71e0ab7dc5 Declared package side effects free
This sets the package.json field sideEffects to false. This allows for better tree shaking by downstream consumers, see https://webpack.js.org/guides/tree-shaking/#mark-the-file-as-side-effect-free for more information.

I skimmed over all included files and I did not see anything that would count following webpack's definition of tree shaking during a production build.

There is one side effect, but I believe its only used in development builds, so it would be okay to tree shake:
https://github.com/bvaughn/react-window/blob/master/src/createListComponent.js#L127-L136

For more details on how this field works and why it matter see the discussion here: https://github.com/react-dnd/react-dnd/pull/1577
2019-11-21 12:45:03 -08:00
Brian Vaughn c43a2eeaa9 Merge pull request #369 from bvaughn/dependabot/npm_and_yarn/macaddress-0.2.9
Bump macaddress from 0.2.8 to 0.2.9
2019-10-31 15:25:59 -07:00
Brian Vaughn 20e52ee3c0 Merge pull request #368 from bvaughn/dependabot/npm_and_yarn/stringstream-0.0.6
Bump stringstream from 0.0.5 to 0.0.6
2019-10-31 15:25:52 -07:00
dependabot[bot] 6490b81823 Bump macaddress from 0.2.8 to 0.2.9
Bumps [macaddress](https://github.com/scravy/node-macaddress) from 0.2.8 to 0.2.9.
- [Release notes](https://github.com/scravy/node-macaddress/releases)
- [Commits](https://github.com/scravy/node-macaddress/compare/0.2.8...0.2.9)

Signed-off-by: dependabot[bot] <support@github.com>
2019-10-31 21:49:09 +00:00
dependabot[bot] d965d4e9e3 Bump stringstream from 0.0.5 to 0.0.6
Bumps [stringstream](https://github.com/mhart/StringStream) from 0.0.5 to 0.0.6.
- [Release notes](https://github.com/mhart/StringStream/releases)
- [Commits](https://github.com/mhart/StringStream/compare/v0.0.5...v0.0.6)

Signed-off-by: dependabot[bot] <support@github.com>
2019-10-31 21:49:09 +00:00
Brian Vaughn 3ae1ac1077 Merge pull request #364 from bvaughn/dependabot/npm_and_yarn/website/macaddress-0.2.9
Bump macaddress from 0.2.8 to 0.2.9 in /website
2019-10-31 14:47:53 -07:00