You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
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)
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)