compote-ui 0.42.6 → 0.42.7
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.
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
import {
|
|
11
11
|
alignClass,
|
|
12
12
|
columnSizeStyle,
|
|
13
|
-
getAllRowsSelectionState,
|
|
13
|
+
// getAllRowsSelectionState,
|
|
14
14
|
getBooleanCellValue,
|
|
15
15
|
getColumnMeta,
|
|
16
16
|
getPinningStyle,
|
|
17
17
|
getRowSelectionState,
|
|
18
|
-
getSelectedRowCount,
|
|
18
|
+
// getSelectedRowCount,
|
|
19
19
|
getUrlCellValue,
|
|
20
20
|
justifyClass,
|
|
21
21
|
openUrlCell,
|
|
@@ -53,11 +53,14 @@
|
|
|
53
53
|
const tableColumnCount = $derived(visibleColumnCount + (isRowSelectionEnabled ? 1 : 0));
|
|
54
54
|
const renderedColumnCount = $derived(tableColumnCount + 1);
|
|
55
55
|
const headerGroupCount = $derived(headerGroups.length);
|
|
56
|
-
const allRowsSelectionState = $derived(
|
|
57
|
-
getAllRowsSelectionState(table, table.store.state.rowSelection)
|
|
58
|
-
);
|
|
59
|
-
const selectedRowCount = $derived(getSelectedRowCount(table, table.store.state.rowSelection));
|
|
60
|
-
const isColumnResizing = $derived(table.store.state.columnResizing.isResizingColumn !== false);
|
|
56
|
+
// const allRowsSelectionState = $derived(
|
|
57
|
+
// getAllRowsSelectionState(table, table.store.state.rowSelection)
|
|
58
|
+
// );
|
|
59
|
+
// const selectedRowCount = $derived(getSelectedRowCount(table, table.store.state.rowSelection));
|
|
60
|
+
// const isColumnResizing = $derived(table.store.state.columnResizing.isResizingColumn !== false);
|
|
61
|
+
const allRowsSelectionState = $derived<boolean | 'indeterminate'>(false);
|
|
62
|
+
const selectedRowCount = $derived(0);
|
|
63
|
+
const isColumnResizing = $derived(false);
|
|
61
64
|
</script>
|
|
62
65
|
|
|
63
66
|
<div
|