All Versions
38
Latest Version
Avg Release Cycle
10 days
Latest Release
1593 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v6.11.6 Changes
November 11, 2020๐ Fixes
- #684 addresses an issue if you were using custom cells then any properly that enabled RowClick events did not fire a click event back to the RowClick handler. If you are using properties such as:
onRowClicked
,onRowDoubleClicked
,expandOnRowClicked
orexpandOnRowDoubleClicked
then those click events will be ignored when clicking on your custom cell. To allowRowClicked
events you can adddata-tag="allowRowEvents"
to your custom cell component elements. If your custom cell component is more complex and has nested elements you want to adddata-tag="allowRowEvents"
to the innermost element or on the elements you want to propagate the click event to. For example:row => <h2 data-tag="allowRowEvents">{row.title}</h2>
๐ง Maintenance
- โก๏ธ #715 Update eslint libs and fix various lint errors
- #684 addresses an issue if you were using custom cells then any properly that enabled RowClick events did not fire a click event back to the RowClick handler. If you are using properties such as:
-
v6.11.5 Changes
September 21, 2020๐ Fixes
- #675 pagination select option font color should now display correctly in dark mode
-
v6.11.4 Changes
September 15, 2020๐ Fixes
- ๐ #639 fixed an issue where Table Header, Subheader, and Pagination would disappear when scrolling horizontally in response mode
-
v6.11.3 Changes
September 04, 2020โจ Enhancements
- ๐ #662 Thanks to @Jim-IndRez RDT now has several needed fixes and improvements to Accessibility
-
v6.11.2 Changes
August 26, 2020๐ Fixes
- โช #665 Thanks to @julioxavierr for catching this. This fix restores generic types but as an optional param. e.g. IDataTableComponent or IDataTableComponent<...>
-
v6.11.1 Changes
August 24, 2020 -
v6.11.0 Changes
August 02, 2020๐ Features
- ๐ #632 you can now pass a callback with access to the row props when using conditional styling. See Conditional Row Objects for more details
-
v6.10.0 Changes
August 02, 2020๐ Features
- ๐ #642 you can now access a rowIndex from column[]:
cell
,format
orselector
. Additionally,cell
can also access the column config as well as the id (as rendered in the DOM) of the row i.e. (row, rowIndex, column, id). See the README for more details https://github.com/jbetancur/react-data-table-component#columns
๐ Fixes/ Potentially Breaking with Typescript is you previously used IDataTableProps
0๏ธโฃ If you are importing RDT typescript interfaces such as
IDataTableProps
, they will no longer require you to pass any arguments as and you can just set the type toIDataTableProps
. This better supports a common pattern where you may want to set default props on your table and pass through the props using a wrapping component:const DBase: React.FC<IDataTableProps> = props => (<DataData {...props} dense />)
- ๐ #642 you can now access a rowIndex from column[]:
-
v6.9.8 Changes
July 26, 2020๐ Fixes
- ๐ป #637 on some browsers border-radius (e.g. a bordered card/paper) was being ignored on the table
- #622 thanks to @hajnalbendeguz typings improved typings for onRowClicked and onRowDoubleClicked
-
v6.9.7 Changes
July 14, 2020This is a license change from MIT to Apache-2.0.