react-data-table v6.11.6 Release Notes

Release Date: 2020-11-11 // over 3 years ago
  • 🛠 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 or expandOnRowDoubleClicked then those click events will be ignored when clicking on your custom cell. To allow RowClicked events you can add data-tag="allowRowEvents" to your custom cell component elements. If your custom cell component is more complex and has nested elements you want to add data-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

Previous changes from v6.11.5

  • 🛠 Fixes

    • #675 pagination select option font color should now display correctly in dark mode