All Versions
76
Latest Version
Avg Release Cycle
13 days
Latest Release
1258 days ago

Changelog History
Page 6

  • v7.0.0-beta.20 Changes

    • Internals have been reworked to use useReducer instead of useState for stability and architecture
    • ๐Ÿšš The state option has been removed in favor of using a custom reducer
    • The reducer option has been changed to a new function signature: function (newState, action, oldState) => newState
    • ๐Ÿ‘ The setState table instance method is no longer supported
    • The dispatch table instanced method was added
    • The ReactTable.actions export is now a plain object of action types mapped to identically named action strings
    • ๐Ÿ”Œ The ReactTable.reducerHandlers export was added, which is a plain object of plugin hook names mapped to their respective reducer functions
  • v7.0.0-beta.19 Changes

    • โž• Added an isAggregated boolean parameter to the aggregate function signature
  • v7.0.0-beta.16 Changes

    • โœ‚ Removed service workers from examples
    • ๐Ÿ›  Fixed a memory leak when instance was referenced in function closures
    • ๐Ÿ›  Fixed an issue where the table would infinitely rerender due to incorrect effect dependencies
    • ๐Ÿ›  Fixed an issue where row grouping and row selection would not work properly together.
  • v7.0.0-beta.15 Changes

    • ๐Ÿ›  Fixed an issue where defaultGetResetPageDeps was using data instead of rows
  • v7.0.0-beta.14 Changes

    • โœ‚ Removed
      • disablePageResetOnDataChange option. use the getResetPageDeps option now.
    • โž• Added
      • getResetPageDeps option
      • getResetFilterDeps option
      • getResetSortByDeps option
      • getResetGroupByDeps option
      • getResetExpandedDeps option
  • v7.0.0-beta.13 Changes

    • โž• Added options
      • defaultCanSort
      • defaultCanFilter
      • defaultCanGroupBy
      • column.defaultCanSort
      • column.defaultCanFilter
      • column.defaultCanGroupBy
    • ๐Ÿ“‡ Renamed
      • disableGrouping to disableGroupBy
      • disableSorting to disableSortBy
      • disableGroupBy to disableGroupBy
      • column.disableGrouping to column.disableGroupBy
      • column.disableSorting to column.disableSortBy
      • column.disableGroupBy to column.disableGroupBy
    • โœ‚ Removed propType definitions. Since types are now being maintained, it makes little sense to also maintain these. Cooincidentally, this also saves some bundle size in some scenarios where they may not be removed properly by a developer's bundler.
  • v7.0.0-beta.0 Changes

    • ๐Ÿ“š Massive changes to the entire project and library. Please consult the README and documentation for more information regarding these changes.
  • v6.8.6 Changes

    ๐Ÿ›  Fixes & Optimizations

    • Since resolveData is now capable of materializing data on it's own, the data prop is no longer required as a prop-type.
  • v6.8.4 Changes

    ๐Ÿ›  Fixes & Optimizations

    • Only run resolveData prop when data prop has changed, not any others.
  • v6.8.3 Changes

    ๐Ÿ›  Fixes & Optimizations

    • ๐Ÿ‘ Allow the resolveData prop to alter or materialize new data when the data prop changes.