Skip to content

3.0.0-alpha.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@afshinm afshinm released this 08 Nov 17:18
· 835 commits to master since this release

3.0.0-alpha.1 (2020-11-08)

Bug Fixes

  • 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)

Features

  • row: adding cell(index: number) function (c15ed37)
  • adding Lerna (f1a0563)
  • plugin: adding PluginBaseComponent (892cbb1)

BREAKING CHANGES

  • columns.selector has been replaced with columns.data, e.g:
{
  columns: [{
    data: (row) => row.name.first, // instead of `selector`
    name: 'First Name'
  }, {
    data: (row) => row.name.last,
    name: 'Last Name'
  }]
}