Skip to content

Version 3.2.0

Compare
Choose a tag to compare
@patorjk patorjk released this 16 Jul 02:26
· 236 commits to master since this release
1bd92e6
  • Added setFilterChipProps option - An option to set props on the filter chips (#1387)
  • Refactored out unsafe_componentWillMount - Should now allow the table to run in strict mode without warnings (#1388, #1261)
  • Added currentTableData to tableMeta parameter of customBodyRender. This field is an array of objects, where each object points to a row of data in the table and provides the dataIndex to the external data. This resolves consistency problems with tableMeta.tableData. If there is a version 4 of mui-datatables, tableMeta.tableData will be removed. (#1405, #933)
  • Added jumpToPage option - This option, if true, adds a "Jump to Page" dropdown to the table footer that allows users to navigate to a specific page. (#1398)
  • Added TableViewCol and Checkbox to components property. This allows custom versions to be inputted. For example, using a checkbox with a different color. The large-data-set example has been updated to show custom versions of these components in action. (#1399, #1250 (comment), #1255, #1249)
  • Added customHeadLabelRender column option. This creates a custom render function for the table's header cell label. The label's display in other areas (such as the View Columns popover), will still use the column's label. (#955 (comment))
  • Fix to allow using a component in textLabels.body.noMatch without getting a warning. (#1403, #1401)
  • Deprecation typo fix. (#1402)
  • Fixed issue with dragging columns that have nested mui-datatables in their expanded rows. (#1406)
  • Fixed issue with setCellProps. (#1414)
  • Fixed issue with customFilterListOptions.update. (#1407)
  • Replaced classnames package with clsx. This is the package Material UI uses. It has the same API as classnames but is faster and smaller. Thanks to @cahna (#1409).
  • Example updates with clsx. Thanks to @wdh2100 (#1415)
  • Several components refactored into hooks. Thanks to @wdh2100 (#1351, #1349, #1347)