compote-ui 0.43.12 → 0.43.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -60,12 +60,6 @@
|
|
|
60
60
|
const isRowSelectionEnabled = $derived(Boolean(table.options.enableRowSelection));
|
|
61
61
|
const isMultiRowSelectionEnabled = $derived(table.options.enableMultiRowSelection !== false);
|
|
62
62
|
const headerGroupCount = $derived(headerGroups.length);
|
|
63
|
-
const visibleColumnIds = $derived(
|
|
64
|
-
table
|
|
65
|
-
.getVisibleLeafColumns()
|
|
66
|
-
.map((column) => column.id)
|
|
67
|
-
.join('|')
|
|
68
|
-
);
|
|
69
63
|
const allRowsSelectionState = $derived.by(() => {
|
|
70
64
|
getReactiveTableState(table);
|
|
71
65
|
return getAllRowsSelectionState(table);
|
|
@@ -79,7 +79,6 @@
|
|
|
79
79
|
const tableColumnCount = $derived(visibleColumnCount + (isRowSelectionEnabled ? 1 : 0));
|
|
80
80
|
const renderedColumnCount = $derived(tableColumnCount + 1);
|
|
81
81
|
const headerGroupCount = $derived(headerGroups.length);
|
|
82
|
-
const visibleColumnIds = $derived(visibleLeafColumns.map((column) => column.id).join('|'));
|
|
83
82
|
const allRowsSelectionState = $derived.by(() => {
|
|
84
83
|
getReactiveTableState(table);
|
|
85
84
|
return getAllRowsSelectionState(table);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "compote-ui",
|
|
3
|
-
"version": "0.43.
|
|
3
|
+
"version": "0.43.14",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite dev --open",
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"@sveltejs/vite-plugin-svelte": "7.1.2",
|
|
66
66
|
"@tailwindcss/vite": "^4.2.4",
|
|
67
67
|
"@tanstack/svelte-virtual": "^3.13.24",
|
|
68
|
+
"@tanstack/table-core": "^8.21.3",
|
|
68
69
|
"@types/node": "^22.19.18",
|
|
69
70
|
"eslint": "^10.4.0",
|
|
70
71
|
"eslint-config-prettier": "^10.1.8",
|