@lavalogic/scoria 0.19.1 → 0.19.2
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.
|
@@ -38,19 +38,16 @@
|
|
|
38
38
|
const tooltipContext = getContext<TooltipContext>(TooltipContext.identifier);
|
|
39
39
|
|
|
40
40
|
const groups: Array<HeaderGroup<T>> = $derived.by(() => {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
return [];
|
|
41
|
+
void tableContext.table.columnVisibility;
|
|
42
|
+
void Object.keys(tableContext.table.columnVisibility);
|
|
43
|
+
void tableContext.table.columnPinning.left?.size;
|
|
44
|
+
void tableContext.table.columnPinning.right?.size;
|
|
45
|
+
|
|
46
|
+
return side === 'left'
|
|
47
|
+
? tableContext.table.getLeftHeaderGroups()
|
|
48
|
+
: side === 'right'
|
|
49
|
+
? tableContext.table.getRightHeaderGroups()
|
|
50
|
+
: tableContext.table.getCenterHeaderGroups();
|
|
54
51
|
});
|
|
55
52
|
|
|
56
53
|
const iconNames = {
|