All Versions
256
Latest Version
Avg Release Cycle
71 days
Latest Release
-

Changelog History
Page 24

  • v3.0.0 Changes

    ๐Ÿ’… 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...

  • v2.8.0 Changes

    ๐Ÿ”„ 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.)

  • v2.7.5 Changes

    Defer loading of element resize code until componentDidMount to avoid undefined document and body references. This was breaking server-side rendering.

  • v2.7.4 Changes

    ๐Ÿ— Uglify dist build to remove dead code.

  • v2.7.2 Changes

    ๐Ÿ‘Œ Improved checks for undefined document and window in hopes of better supporting server-side rendering.

  • v2.7.1 Changes

    Replaced invalid rowHeight instanceof Number check with typeof rowHeight === 'number' in VirtualScroll.

  • v2.7.0 Changes

    โšก๏ธ 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).

  • v2.6.2 Changes

    โž• Added check for undefined document before accessing attachEvent to avoid causing problems with server-side rendering.

  • v2.6.1 Changes

    ๐Ÿ›  Cell title now only set if rendered cell contents are a string. This fixes issue #35.

  • v2.6.0 Changes

    ๐Ÿ‘ VirtualScroll and FlexTable now support dynamic row heights by accepting a function as the rowHeight property.