Gridjs Versions Save

Advanced table plugin

3.4.0

3 years ago

3.4.0 (2021-03-13)

Bug Fixes

  • MessageRow should only consider the visible columns (1f8f3a8)

Features

  • adding th content element (d2df219)

3.3.0

3 years ago

3.3.0 (2021-02-07)

Features

  • adding tr className to the config object (8265d10)

BREAKING CHANGES

3.2.2

3 years ago

3.2.2 (2021-01-15)

:rocket: New Feature

Committers: 2

3.2.1

3 years ago

3.2.1 (2021-01-01)

Bug Fixes

  • MessageRow click won't trigger rowClick event (5e13468)

3.2.0

3 years ago

3.2.0 (2020-12-14)

Features

  • grid: extending className config and improving the pagination plugin a11y (c4aa44d)

3.1.0

3 years ago

3.1.0 (2020-12-02)

Bug Fixes

3.0.2

3 years ago

3.0.2 (2020-11-15)

Bug Fixes

  • sort: button background-color (c8838a0)

3.0.1

3 years ago

3.0.1 (2020-11-15)

Bug Fixes

  • sort: button width and height (95a1221)
  • sort: using SVG icons and fixing the border issue (94ba245)

3.0.0-alpha.2

3 years ago

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

Note: Version bump only for package gridjs

3.0.0-alpha.1

3 years ago

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'
  }]
}