react-virtualized
Advanced tools
Changelog
2.5.0
Added AutoSizer
component for wrapping FlexTable
or VirtualScroll
and growing to fill the parent container. This should hopefully simplify usage of these components.
Changelog
2.4.0
FlexTable
and VirtualScroll
offer new callback property onRowsRendered
to be invoked with a params object { startIndex, stopIndex }
after rows have been rendered.
Changelog
2.3.0
FlexTable
's rowClassName
property can now be either a string or a function in order to support dynamic row classes (eg. alternating colors).
Changelog
2.1.1
Fixed a few minor FlexTable font styles to use relative sizes instead of custom ones
Changelog
2.1.0
Added optional noRowsRenderer
property to VirtualScroll
and FlexTable
.
This property can be used to render loading indicators or placeholder content for empty lists.
Changelog
2.0.0
Set shouldPureComponentUpdate
on component prototypes instead of instances.
Dropped half-ass support for React 0.13. This module has always depended on React 0.14 but it was checking in previous versions and trying to be backwards compatible with 0.13. Since that check is no longer in place, this is a major version bump (even though there is no real new functionality being added).
Changelog
1.0.4
Fixed package.json dependencies by moving classnames
, raf
, and react-pure-render
out of peerDependencies
and into dependencies
.
Changelog
1.0.3
Same as version 1.0.2; published just to update NPM keyword and description.
Changelog
1.0.2
Removed default row-border styling from FlexTable and added new :rowClassName property.