Skip to content

v1.4.1

Compare
Choose a tag to compare
@github-actions github-actions released this 29 Jul 14:49
· 166 commits to main since this release

New Features

Render nested objects in the table

It's now possible to render content from a nested object in the table, by passing a column key with a dot notation. For example, if your data looks like this:

{
  // ...
  progress: {
      amount: 42
  }
}

You can render the contents of this column by setting progress.amount as the column key:

const columns = [
    // ...
    {
      text: "Progress",
      key: "progress.amount",
    },
]

Bug Fixes

A reactivity issue was fixed in the table, leading to it not always correctly rendering an updated items list.

What's Changed

Full Changelog: v1.4.0...v1.4.1