Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
7b3d4b5
Initial DynamicSizeList implementation. Only partially functional.
Jun 17, 2018
b6c6d78
Merged master
Jul 4, 2018
b0d2ce1
Mocked randomWords dep
Jul 8, 2018
ec08b3a
Merged master
Oct 5, 2018
df97488
Iterated on DynamicSizeList
Oct 10, 2018
f95828f
Added horizontal scroller to demo page
Oct 10, 2018
f210a41
Tweaked dynamic list demo
Oct 10, 2018
ee0682f
Fixed style cache busting to avoid unnecessary re-renders
Oct 11, 2018
7a4b84f
Prevent items from jumping around while scrolling up after a resize
Oct 11, 2018
eaa849d
Cleanup setTimeout on unmount. Use ResizeObserver.disconnect instead …
Oct 11, 2018
a43cd50
Removed an outdated TODO
Oct 11, 2018
944ad3c
Added a cleanup TODO
Oct 11, 2018
ae340c2
Added scrollToItem() DEV warning
Oct 11, 2018
ad0ddf5
Renamed CellMeasurer to ItemMeasurer
Oct 11, 2018
b378c44
Improved another edge-case item "jumping" after resize issue
Oct 11, 2018
00cb13f
Package version bump for alpha
Oct 12, 2018
da981bb
Added alpha suffix
Oct 12, 2018
343f3c6
Added example sandboxes for dynamic list
Oct 12, 2018
88de301
Added ResizeObserver polyfill and notes to demo
Oct 12, 2018
fc035d8
ItemMeasurer degrades gracefully if ResizeObserver is not supported
Oct 13, 2018
1539cf4
Added edge-case guards for DynamicSizeList in Firefox w.r.t. fast scr…
Oct 13, 2018
d588e1f
Fixed minor formatting bug
Oct 13, 2018
4110d23
Fixed note layout for mobile sizes
Oct 13, 2018
489ff8f
Improved Flow types; added some better inline comments.
Oct 14, 2018
30b0194
Merge branch 'master' into issues/6
Oct 15, 2018
70edaf2
Added DynamicSizeList API page
Oct 15, 2018
3e9ff42
Added an initial test for DynamicSizeList
Oct 16, 2018
8c60135
Merged master
Dec 5, 2018
a0bb848
Changed scroll offset adjustment to prevent interrupting smooth scroll
Dec 7, 2018
94f67ad
Merge branch 'master' into issues/6
Dec 7, 2018
7978b6f
Fixed a dypo in example code
Dec 7, 2018
cdf3a5a
Fixed small regression caught by unit test
Dec 7, 2018
4714399
Update package JSON alpha version
Dec 7, 2018
6bab06b
Fixed small CSS bug
Dec 7, 2018
fe88aeb
Replaced margin top/left hack with scrollBy()
Dec 7, 2018
6709912
Only use findDOMNode as a fallback (with a warning)
Dec 7, 2018
ef4ab16
Merged master
Dec 28, 2018
e69da68
Merge master
piecyk Mar 14, 2019
070ea74
Merge branch 'master' into issues/6
piecyk Apr 2, 2019
ccde38c
Merge pull request #196 from piecyk/issues/6
bvaughn Apr 2, 2019
8fd2ada
Fixed a memory leak in ItemMeasurer.
clangen-nw May 10, 2019
d020ba4
Fix item data not passed to itemKey
edgars-sirokovs May 21, 2019
f866022
Merge pull request #239 from clangen-nw/issues/6
May 27, 2019
e44b6de
Merge pull request #246 from edgars-sirokovs/patch-1
May 27, 2019
0f3e857
Merge branch 'master' into issues/6
May 28, 2019
cc9e3f1
Merged master
Jul 1, 2019
13d48ad
Fixed edge case bug where all items are exactly the same size as esti…
Jul 1, 2019
3522c44
Merged master
Jul 6, 2019
93e7968
Fix umd global for react-dom
trenthogan Jul 9, 2019
bc9192b
Merge pull request #286 from trenthogan/issues/6
Jul 9, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-window",
"version": "1.8.5",
"version": "1.9.0-alpha.1",
"description":
"React components for efficiently rendering large, scrollable lists and tabular data",
"author":
Expand Down
1 change: 1 addition & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const babelConfigEsModules = babel({

const umdGlobals = {
react: 'React',
'react-dom': 'ReactDOM',
};

export default [
Expand Down
Loading