Skip to content

Releases: jbetancur/react-data-table-component

7.0.0-alpha-15

13 Jun 17:36
614a1b7

Choose a tag to compare

7.0.0-alpha-15 Pre-release
Pre-release

🔧 Fixes 🔧

  • #497 allow de-selection of rows when using selectableRowsSingle

7.0.0-alpha-14

13 Jun 01:06
618f885

Choose a tag to compare

7.0.0-alpha-14 Pre-release
Pre-release

🥃 🥃 New Features 🥃 🥃

  • #497 single row selection feature is now available via a new prop selectableRowsSingle . If you want to change the built in checkbox to a radio button you can pass selectableRowsComponentProps={{ type: 'radio' }} or pass in your own custom/ui library Radio button using both selectableRowsComponent and selectableRowsComponentProps

7.0.0-alpha-13

12 Jun 17:46
6a5668b

Choose a tag to compare

7.0.0-alpha-13 Pre-release
Pre-release

🔥 🔥 🔥 BREAKING CHANGES 🔥 🔥 🔥

  • #818 expandableRowsComponent no longer accepts JSX and must now be passed in as a function/class. e.g:
    GOOD:
    expandableRowsComponent={MyExpander}
    BAD:
    expandableRowsComponent={<MyExpander />}

Features

  • #818 added a new prop: expandableRowsComponentProps now allows you to pass extra props to your custom expandableRowsComponent.

Documentation

  • #817 Fix typos in README, remove unnescessary gitattribute

7.0.0-alpha-11

19 May 10:37

Choose a tag to compare

7.0.0-alpha-11 Pre-release
Pre-release

Fixes

  • #809 fixed typings for component related props

7.0.0-alpha-10

24 Apr 02:28

Choose a tag to compare

7.0.0-alpha-10 Pre-release
Pre-release
  • #785 fixes pagination select dropdown icon which was overlapping on larger numbers (e.g. 100, 1000 etc)
  • #793 fixes double horizontal bar in some browsers. Thanks @HoangNguyen17193

7.0.0-alpha-8

23 Feb 03:43

Choose a tag to compare

7.0.0-alpha-8 Pre-release
Pre-release

Fixes

  • Update Peer Dependencies to support React 17

Installation

npm install react-data-table-component@next
or
yarn add react-data-table-component@next

v6.11.7

23 Feb 03:47

Choose a tag to compare

Fixes

  • update peerDependencies for React 17
  • #767 when using fixedHeader only show scroll bars when needed

7.0.0-alpha-7

22 Feb 13:35
8150fe6

Choose a tag to compare

7.0.0-alpha-7 Pre-release
Pre-release

Fixes

  • #780 column centering show now work for both cells and cols

7.0.0-alpha-6

22 Feb 02:08
da875bf

Choose a tag to compare

7.0.0-alpha-6 Pre-release
Pre-release

🔥 Breaking Changes 🔥

  • sortFunction prop signature has changed, This was necessary because RDT is moving to function only selectors which are more flexible and performant. Additionally, this allows the API user greater control over how they sort. See the README for details Custom Sort Function.

Fixes

  • Cleanup of stale sorting logic and CSS styles
  • #612 and #699 The TableHeadRow is no longer disabled when in a loading state. Instead, each TableCol is disabled from sorting
  • #772 fixes a potential performance issue with large data sets and conditionalCells and `conditionalRows1
  • #775 sortServer should now disable internal sorting as it did in v6

Deprecation

  • #770 string selectors will display a console warning on non prod builds recommended you migrate to function selectors. This change is rather painless: selector: 'name' becomes selector: row => row.name. This not only allows for typing but also no longer requires an expensive regex/reduce function to loop through a row to "get' the prop

7.0.0-alpha-5

20 Jan 02:08
0ab8555

Choose a tag to compare

7.0.0-alpha-5 Pre-release
Pre-release
  • implements #756
  • fixes initial row rendering