react-virtualized
Advanced tools
Changelog
3.0.0
CSS styles have been split into two groups: functional styles (eg. position
, overflow
) and presentational styles (eg. text-transform
, color
) and both have been converted to inline styles rather than being loaded as CSS. This was done primarily to simplify usage for universal/isomorphic rendering.
For more information on customizing styles refer to the documentation...
Changelog
2.8.0
Changed Autosizer
component to support a single child instead of the ChildComponent
property.
(For backwards compatibility purposes the ChildComponent
property will continue to be supported.)
Changelog
2.7.5
Defer loading of element resize code until componentDidMount
to avoid undefined document
and body
references.
This was breaking server-side rendering.
Changelog
2.7.2 & 2.7.3
Improved checks for undefined document
and window
in hopes of better supporting server-side rendering.
Changelog
2.7.2 & 2.7.3
Improved checks for undefined document
and window
in hopes of better supporting server-side rendering.
Changelog
2.7.1
Replaced invalid rowHeight instanceof Number
check with typeof rowHeight === 'number'
in VirtualScroll
.
Changelog
2.7.0
Moved onRowsRendered
to componentDidUpdate
(instead of render
) to keep render
free of side-effects.
Added tests to ensure that the callback is only invoked once per start/stop index pair (and not again unless the indices change).
Changelog
2.6.2
Added check for undefined document
before accessing attachEvent
to avoid causing problems with server-side rendering.
Changelog
2.6.1
Cell title
now only set if rendered cell contents are a string. This fixes issue #35.