Skip to content

Releases: material-table-core/core

v3.0.5

08 Jun 21:23
Compare
Choose a tag to compare

Release v3.0.5

v3.0.3

08 Jun 16:51
Compare
Choose a tag to compare

Release v3.0.3

v0.0.3-next

08 Jun 21:36
Compare
Choose a tag to compare
v0.0.3-next Pre-release
Pre-release

Release v0.0.3-next

v3.0.2

03 Jun 20:39
Compare
Choose a tag to compare

Release v3.0.2

v3.0.1

01 Jun 08:51
Compare
Choose a tag to compare

Release v3.0.1

v3.0.0

29 May 22:44
Compare
Choose a tag to compare

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

22 May 21:38
Compare
Choose a tag to compare

Release v2.3.40

v2.3.39

14 May 19:57
Compare
Choose a tag to compare

Release v2.3.39

v2.3.38

13 May 19:12
Compare
Choose a tag to compare

Release v2.3.38

v2.3.37

03 May 12:15
Compare
Choose a tag to compare

Release v2.3.37