made tables more feature complete and started splitting of all the data handling to dataset.ts

This commit is contained in:
Chris Kruining 2024-12-10 15:07:45 +01:00
parent 17e49c23d8
commit 977670b9e0
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
7 changed files with 325 additions and 123 deletions

View file

@ -0,0 +1,5 @@
export type { Column } from './table';
export type { DataSet, GroupNode, RowNode, Node } from './dataset';
export { SelectionMode, Table } from './table';
export { createDataSet, toSorted, toGrouped } from './dataset';