react-virtualized
Advanced tools
Changelog
5.3.0
Separated CommonJS and UMD builds and pointed package.json's main
target at the CommonJS build.
Also moved the ES6 modules build from /es
to /dist/es
to reduce the amount of clutter in the packaged dir.
Changelog
5.2.4
Changed Grid
child key
attributes again to reduce the number of elements created as a result of scrolling.
This dramatically improves perforamance without introducing any known regressions.
Thanks to @cesarandreu for consulting on this release.
Changelog
5.2.3
Reverted transform: translate
positioning to old top
/ left
positioning to address performance concerns reported via PR #124 and issue #94.
Changelog
5.2.2
Updated ES6 module build to be Rollup-friendly by way of es2015-rollup
Babel preset.
Also cleaned up NPM package to suppress unnecessary files (via new .npmignore
).
Changelog
5.2.1
Fixes long-standing slow wheel scrolling issue that affected certain browsers such as Firefox (see issue #2). Big thanks to James Long (@jlongster), Markus Stange (@mstange), and Dan Abramov (@gaearon) for their help with this fix.
Changelog
5.2.0
Added optional onResize
callback property to AutoSizer
. This method is invoked any time the AutoSizer
detects a resize. It is passed width
and height
named parameters.
Added optional minWidth
and maxWidth
properties to FlexColumn
to enable greater flexibility with regard to table-column layout.
Changelog
5.1.1
Marked FlexColumn
width
property as required since ommitting this property can lead to uneven column layouts.
Changelog
5.1.0
Added ColumnSizer
high-order component for auto-calculating column widths for Grid
cells.
Changelog
5.0.1
Added webkit-transform
style to Grid
cells for iOS 8 support.