Skip to content

Releases: jbetancur/react-data-table-component

v6.9.7

14 Jul 16:20

Choose a tag to compare

This is a license change from MIT to Apache-2.0.

v6.9.6

05 Jul 00:32

Choose a tag to compare

Typings

  • #596 add typing for column.id

v6.9.5

05 Jul 00:12
02c88fb

Choose a tag to compare

Fixes

  • #615 Fixes issue where overflow/wrapping CSS was being applied to custom cells when using columns[].cell. In any case, RDT will no longer apply any CSS to a custom cell. Pro tip: If using columns[].cell and your intention is to add a button or clickable element make sure you add button: true to your column definition
  • #61 Accessibility. Add the missing role for rowheader

v6.9.3

28 May 14:39
44c82db

Choose a tag to compare

Features

  • #556 You can now specify a custom sort function on a column using column[x].sortFunction Thank you @ondratra

Fixes

  • #587 use rowCount instead of data.length for pagination. Thanks @jpuckety

v6.9.2

19 May 12:37
8d85692

Choose a tag to compare

Fixes

  • #574 Fixed pagination disappearing in certain browsers. This was caused when a flex element wrapped DataTable.

Performance

  • Slight optimization to prevent columns from re-rendering on any state change

v6.9.1

01 May 01:18
e80d3bc

Choose a tag to compare

Fixes

  • #565 paginationServerOptions is no longer required when using typescript

v6.9.0

27 Apr 04:14

Choose a tag to compare

Features

  • #524 - when using paginationServer and selectableRows when you sort or page the selected row state will clear by default. From a UX perspective, this is the recommended default for most use cases. However, there may be cases where you will need to override this behavior. Thanks to @MaxInertia's open-source contribution you can now override with a new prop paginationServerOptions: {persistSelectedOnPageChange | persistSelectedOnSort}.

v6.8.0

23 Apr 01:28
2606628

Choose a tag to compare

Features & Fixes

  • #500 Built-in Pagination Component
    • fix an issue where pagination would disappear when zooming in/out or would not display at all in Firefox
    • add responsive pagination when the screen width is less than 599px
    • Fixes to disabled button theme contrast

v6.7.1

13 Apr 18:48

Choose a tag to compare

Fixes

  • fix the wrong type for direction should be auto, not autodetect

v6.7.0

13 Apr 04:53
db97da6

Choose a tag to compare

Features

  • #532 #514 #536 You can now force language direction on RDT using direction="auto | rtl | ltr"} The default setting is auto which, in browser environments will detect the dir attribute on the html or body tags. For SSR environments this check is bypassed so you may want to use direction="rtl" if you need to support an rtl language

Fixes

#521 - when using selectableRowsHighlight with stripedRows you can now see the selection on an odd row