All Versions
11
Latest Version
Avg Release Cycle
17 days
Latest Release
1466 days ago

Changelog History
Page 2

  • v3.0.0-alpha.1 Changes

    November 08, 2020

    ๐Ÿ› 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'
      }]
    }