Releases: material-table-core/core
Releases · material-table-core/core
v3.0.5
Release v3.0.5
v3.0.3
Release v3.0.3
v0.0.3-next
Release v0.0.3-next
v3.0.2
Release v3.0.2
v3.0.1
Release v3.0.1
v3.0.0
3.0.0 (2021-05-29)
Breaking Changes
- Prop Mutation: The mutation of data and columns to add the tableData object was removed. This will remove the object reference for the callbacks as well, so that if you rely on object comparision to find your data, this will no longer work
(Breaking Changes) (Thread):
onRowClick={(event, clickedRow)=> {
// Will now always return undefined because reference changed
const existingRow = data.find(d => d === clickedRow)
}
Instead this works:
onRowClick={(event, clickedRow)=> {
// Finding the object with an internal id/unique property
const existingRow = data.find(d => d.id === clickedRow.id)
// Accessing the index
const existingRow = data[clickedRow.tableData.id]
}
Bug Fixes
- MTableRow: dont override enter on button elements (5387af47)
v2.3.40
Release v2.3.40
v2.3.39
Release v2.3.39
v2.3.38
Release v2.3.38
v2.3.37
Release v2.3.37