Skip to content

Latest commit

 

History

History
386 lines (211 loc) · 15 KB

CHANGELOG.md

File metadata and controls

386 lines (211 loc) · 15 KB

4.3.4 (2021-10-03)

4.3.3 (2021-09-22)

4.3.2 (2021-09-22)

New Features
Bug Fixes
  • regression of optional detail panel function (6d55e366)

4.3.1 (2021-08-31)

Chores
New Features
  • MaterialTable: aggregate gropuings in localStoarge under material-table-groupings refactor(MTableGroupbar): map groupings feat(MTableGroupbar): clean up local storage when groupings are deleted (0dd33f20)
Bug Fixes
  • typos in comments and components (cc2b40e3)
Refactors
  • cleanup unused imports (e3cc8fba)
  • persist an array instead of object (5bf5e92a)

4.3.0 (2021-08-07)

Bug Fixes
  • transpiler issues, move back to babel (20e9a1e7)

4.2.3 (2021-08-06)

Chores

4.2.2 (2021-08-06)

Chores
New Features
  • add type module to package.json and fix esbuild issues (e44ce4f3)
Bug Fixes
  • issue with jest and modules (64842a9b)

4.2.1 (2021-08-05)

Bug Fixes

4.2.0 (2021-08-05)

Breaking Changes
  • rename onDoubleRowClick to onRowDoubleClick (32a7f3ac)
Chores
Refactors
  • create MTableCustomIcon component (b1f8e617)

4.1.0 (2021-08-01)

Chores
  • clean up how persisting row click events are handled (d735ef84)
  • change to force consumers to override (48a08aa3)
Bug Fixes
  • persist row click events, single and double click (6337c3bf)
Other Changes

4.0.0 (2021-07-31)

Chores
  • update tests to start testing pre and post build (e9d57280)
  • change transpiler (2d11d942)

3.2.5 (2021-07-29)

Bug Fixes
  • issue when programmatically hiding a shown detail panel #282 (4696507d)

3.2.4 (2021-07-27)

3.2.3 (2021-07-27)

3.2.2 (2021-07-27)

Chores
  • switch back to babel, still issues with esbuild (b88892be)

3.2.1 (2021-07-27)

Chores
  • use esbuild for transpiing instead of babel (e8383429)
Other Changes
  • //github.com/material-table-core/core (c2566924)

3.2.0 (2021-07-27)

Fix issues with pagination/when we receive new data with the same ID. Our solution was to add an internal UUID prop for each row upon receiving new external data. Issue #272 has all you need to know

Other Changes

3.1.2 (2021-07-26)

3.1.1 (2021-07-26)

Other Changes
  • //github.com/material-table-core/core (72fbd53d)

3.1.0 (2021-07-19)

New Features
  • detail npanel animation (94a3a66e)
  • add row id and provide telling warning for common errors (39d5d35b)
Other Changes
  • //github.com/material-table-core/core (3f31e92e)

3.1.0 (2021-07-19)

New Features
  • detail npanel animation (94a3a66e)
  • add row id and provide telling warning for common errors (39d5d35b)
Other Changes
  • //github.com/material-table-core/core (3f31e92e)

3.1.0 (2021-07-19)

New Features
  • detail npanel animation (94a3a66e)
  • add row id and provide telling warning for common errors (39d5d35b)
Other Changes
  • //github.com/material-table-core/core (3f31e92e)

3.0.18 (2021-07-19)

3.0.17 (2021-07-14)

Other Changes

3.0.16 (2021-07-08)

Chores
Documentation Changes
  • create branch of current version (85df956a)
Refactors

3.0.15 (2021-07-08)

Chores
Documentation Changes
  • create branch of current version (85df956a)
Refactors

3.0.14 (2021-07-07)

Bug Fixes
  • Move duble click to syntheic events (fcf963da)
  • Proptype fix for tabelcell (101d2900)

3.0.13 (2021-07-02)

Chores
  • removla of wrong spreaded values of tablecell (b4b04c6d)
New Features
Bug Fixes
  • only apply drag style if dragging (04b538f0)
  • Update m-table-body-row on 'NaN' margin-left error. (2d4a85c5)
Other Changes
  • //github.com/material-table-core/core (eef03a06)

3.0.12 (2021-06-27)

Chores
  • mrge edit cell validate fixes (09e6487d)

3.0.11 (2021-06-27)

Bug Fixes
  • Hook edit cell up to validate (88bb78f0)
Other Changes

3.0.10 (2021-06-26)

Other Changes

3.0.9 (2021-06-26)

Other Changes

3.0.8 (2021-06-26)

3.0.7 (2021-06-19)

Bug Fixes
  • Fallback for change of columns (d4302655)

3.0.6 (2021-06-10)

Bug Fixes
  • PRevent column width to be set in stone it not resizing (6c430c53)
Other Changes

3.0.5 (2021-06-08)

Other Changes
  • //github.com/material-table-core/core (2dcf3f8a)

3.0.4 (2021-06-08)

3.0.3 (2021-06-08)

Documentation Changes
Other Changes
  • //github.com/material-table-core/core (5e9ec31b)

3.0.2 (2021-06-03)

3.0.1 (2021-06-01)

Bug Fixes
  • Set width of columns without mutations (4e08c89a)

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)

2.3.40 (2021-05-22)

2.3.39 (2021-05-14)

2.3.38 (2021-05-13)

2.3.38 (2021-05-13)

2.3.37 (2021-05-03)

Documentation Changes

2.3.37 (2021-05-03)

Documentation Changes

2.3.38 (2021-05-02)

Documentation Changes

2.3.37 (2021-05-02)

Documentation Changes