All Versions
38
Latest Version
Avg Release Cycle
10 days
Latest Release
1057 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v6.5.0 Changes
April 11, 2020๐ Features
- #518 when using pagination and
selectableRows
, you may now use the new propselectableRowsVisibleOnly
to restrict selected rows to only those on the current page. If you use Gmail then this should be familiar #530 You can now specify an "All" in the pagination select dropdown using
paginationComponentOptions={{ selectAllRowsItem: true, }}
๐ Fixes
- ๐ป #522 No longer throw a typescript error for
selectableRowsComponentProps
.selectableRowsComponentProps
is generic in that the props depend on which UI library you are integrating with. - โ๏ธ Typos in README
- #518 when using pagination and
-
v6.4.0 Changes
April 05, 2020 -
v6.3.6 Changes
April 04, 2020๐ Fixes
- #509 fix
onSelectedRowsChange
typings
- #509 fix
-
v6.3.5 Changes
April 01, 2020๐ Fixes
- ๐ #506 fixes an issue where RDT buttons were causing a submit when
DataTable
is wrapped with a<form>
tag
๐ง Maintenance
- โฌ๏ธ bump dependencies
- ๐ #506 fixes an issue where RDT buttons were causing a submit when
-
v6.3.4 Changes
March 31, 2020๐ Fixes
- #492 added missing
selectableRowsComponent
andselectableRowsComponentProps
to typings
- #492 added missing
-
v6.3.1 Changes
February 22, 2020 -
v6.3.0 Changes
February 08, 2020๐ New Features
- #449 As a convenience, you can now
column[].omit
.omit
takes a boolean on whether to render the column or not. - ๐
#431
expandableRowsHideExpander
is a new prop that allows you to completely hide the expander cell. This is useful when usingexpandOnRowClicked
orexpandOnRowDoubleClicked
where you may not want or need the expander button to show. Additionally, you can now applycustomStyles
via the newexpanderCell
customStyle.
๐ Fixes
- ๐ #428 Wrapping RDT with a flex element would cause a vertical scroll bar to appear. This should now be fixed.
- #449 As a convenience, you can now
-
v6.2.3 Changes
January 31, 2020๐ Fixes
- ๐
#445 column.wrap should now work. If you need to override the default wrap behavior you can utilize
customStyles
and overridecells: { style }
- ๐
#445 column.wrap should now work. If you need to override the default wrap behavior you can utilize
-
v6.2.2 Changes
January 29, 2020๐ Fixes
- ๐ป #434 column
selector
is no longer required when defining a column and it will no longer throw an exception or a typescript error as there are use cases when you don't need a selector (e.g. action columns). However, if you want to display data and/or sort aselector
must be used - ๐
#443 no longer throw typescript errors for
customStyles
๐ง Maintenance
- โก๏ธ Update Dependancies
- โ Remove unused Dev Dependancies
- โก๏ธ Update Test snapshots
- ๐ป #434 column
-
v6.2.1 Changes
January 11, 2020๐ Fixes
- ๐ #420 -when inlining a function into
selectableRowsSelected
whereonSeletedRowsChange
triggers a state change should no longer breakselectableRows
. It's however recommended that you do not use an inline function as this causes an unnecessary re-render of RDT. In both casesselectableRows
should no longer break. Refer to how React re-renders based on equality for background info. - #424 - when using typescript
columns[].name
will now accept a number or a React component
- ๐ #420 -when inlining a function into