Skip to content

Latest commit

 

History

History
83 lines (42 loc) · 3.02 KB

CHANGELOG.md

File metadata and controls

83 lines (42 loc) · 3.02 KB

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

3.1.0 (2020-12-02)

Bug Fixes

  • using createRef instead of useRef in header and footer (64b2371)

3.0.2 (2020-11-15)

Bug Fixes

  • sort: button background-color (c8838a0)

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 (2020-11-08)

Note: Version bump only for package gridjs

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