react-virtualized
Advanced tools
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.
Changelog
2.6.0
VirtualScroll
and FlexTable
now support dynamic row heights by accepting a function as the rowHeight
property.