Skip to content

Releases: bryanmylee/svelte-headless-table

v0.8.3

24 May 18:20
Compare
Choose a tag to compare

Default behavior is to link data rows to sub-rows.

v0.8.2

24 May 18:14
Compare
Choose a tag to compare

Allow data rows to link selection state to sub-rows.

This will be useful when doing server-side grouping.

v0.8.1

24 May 14:17
Compare
Choose a tag to compare

Expose disabled prop on HeaderCell for addGroupBy.

Full Changelog: v0.8.0...v0.8.1

v0.8.0 `addSelectedRows`

24 May 13:51
Compare
Choose a tag to compare

This release brings stable IDs for easier tracking of selected rows!

What's Changed

Full Changelog: v0.7.1...v0.8.0

v0.7.1

22 May 03:25
Compare
Choose a tag to compare

Expose ArraySetStore methods for public use.

ArraySetStore exposes toggle, clear, add, and remove methods on a Writable store representing a set of values.

v0.7.0 `addGroupBy`

22 May 03:02
c45dadc
Compare
Choose a tag to compare

What's Changed

Implemented row aggregation functionality by values.

Extended the plugin system to provide stable metadata between plugin transformations. This allows for more advanced row transformations that affect the final id, while providing a way for plugins to store metadata on table components that remain stable.

Improved cloning semantics for TableComponent and all subclasses. TableComponent now implements Clonable, which requires a clone method. Cloning must be implemented by each subclass and must use the new keyword to create new instances to prevent shared instance properties. Therefore, deprecated getCloned and renamed to unsafeClone.

Full Changelog: v0.6.1...v0.7.0

v0.6.1

17 May 06:59
Compare
Choose a tag to compare

Fix default arguments for addExpandedRows.

Full Changelog: v0.6.0...v0.6.1

BREAKING: Rename plugins to `addX`, introduce display columns, `addSubRows` and `addExpandedRows`

16 May 16:21
975c357
Compare
Choose a tag to compare
Merge pull request #12 from bryanmylee/rename-plugins

rename: useX -> addX

Deprecate `useTable` for `table.createViewModel`

13 May 08:42
5f7eaf9
Compare
Choose a tag to compare
Merge pull request #8 from bryanmylee/rename-useTable

`table.createViewModel`

Pagination fixes

13 May 07:21
6c69e6e
Compare
Choose a tag to compare

Differentiate between transformations that affect the actual row count and transformations that only affect the view.