Skip to content

Releases: jbetancur/react-data-table-component

v1.4.2

21 Feb 04:08
502c64d

Choose a tag to compare

  • increase subheader padding - give the subheader a little room to breath ;)

v1.4.1

21 Feb 03:27
404d9b4

Choose a tag to compare

Release Notes

New Feature

  • Implement an optional subheader component that appears between the Table Header and the Table Header. This is useful for adding actions, text or a component that pertain to the table data

v1.4.0

05 Feb 16:27
61e6915

Choose a tag to compare

This version

  • Extend Theming support
  • Memoize theme so it does not merge on every re-render
  • Add Theme demo examples

Breaking change

Fixed in 1.3.0 (catching up release notes)

  • Memoize sorting Closes #65
  • Cleans up superfluous state props
  • fix decorate columns - was not being called. decorate columns mainly assigns unique keys to columns items
  • fix context header animations

v1.2.0

16 Jan 19:46
ca78216

Choose a tag to compare

Important Fixes

  • Fixes broken row expanders #60
    • Fixes pagination when expanding rows
  • Missing keyField now uses array index
    • It is recommended that your data row always has a unique identifier #59

v1.1.0

16 Jan 00:56
4992057

Choose a tag to compare

New Features

  • 💥 column.button applies formatting when you want to use custom cells that contain buttons

Fixes

  • Various Cell Alignment and padding issues
  • Refactor some repeated code to be mode dry/testable

v1.0.1

09 Jan 04:14

Choose a tag to compare

  • Pagination should only show when rows greater than 0
    • This was causing the pagination buttons to become enabled on zero rows.

v1.0.0

09 Jan 03:15

Choose a tag to compare

This is a GA release includes built-in pagination as well as some under the hood improvements.

  • 💥 Pagination feature
  • Upgrade to React 16.3
    • Migrate functionality to React. Context
    • remove lifecycle polyfills
    • convert to pure/functional/memoization where it made sense
  • Unit/Integration testing
    • ❤️ Migrate away from enzyme to react-testing-library
    • Add missing test cases
  • General clean up docs/code

For more info see https://github.com/jbetancur/react-data-table-component/milestone/1?closed=1

v0.13.0

09 Oct 18:23

Choose a tag to compare

Bugs Fixes

  • Fixed issue where if underlying data was changed and the table data is sorted, that the table would revert back to the default sorted state.
  • Prevent re-renders on data change using deep equal.

Enhancements

  • Adds small amount of top/bottom row padding to rows
  • Bolder font for sort focus

v0.11.0

18 Jun 19:06

Choose a tag to compare

Bug Fixes

  • Prop Types warnings fixed for [TableHeader] actions/contextActions

Potential Breaking Changes

  • REMOVED TableHeader actions being hidden when progessPending is false. It was decided to keep the onus on the API user instead of the library as this offers created control

v0.10.0

18 Jun 16:18

Choose a tag to compare

Bug Fixes

  • Fixes issue where TableHeader actions were not allowing content to overflow (e.g. menus, dropdowns)

Potential Breaking Changes

  • TableHeader actions will only be displayed when progressPending is false (not in progress)