Grid.js v3.0.0-alpha.1 Release Notes

Release Date: 2020-11-08 // over 3 years ago
  • 🐛 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'
      }]
    }