All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.
3.1.0 (2020-12-02)
- using createRef instead of useRef in header and footer (64b2371)
3.0.2 (2020-11-15)
- sort: button background-color (c8838a0)
3.0.1 (2020-11-15)
3.0.0-alpha.2 (2020-11-08)
Note: Version bump only for package gridjs
3.0.0-alpha.1 (2020-11-08)
- plugin: PluginRenderer should either accept PluginID or PluginPosition (a95bba1)
- removing the checkbox plugin from gridjs (a88a91b)
- checkbox: shared store (374500c)
- checkbox: updating the TD and TH renderer (a5337ef)
- header: adding plugin config to column (6582928)
- plugin: types (5240c89)
- plugin: types (a0c2a6e)
- shadowTable: simplyfing the ShadowTable component (290416a)
- row: adding cell(index: number) function (c15ed37)
- adding Lerna (f1a0563)
- plugin: adding PluginBaseComponent (892cbb1)
columns.selector
has been replaced withcolumns.data
, e.g:
{
columns: [{
data: (row) => row.name.first, // instead of `selector`
name: 'First Name'
}, {
data: (row) => row.name.last,
name: 'Last Name'
}]
}