@swc-react/table 0.38.0 → 0.39.1
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.
- package/next.d.ts +5 -0
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -586,6 +586,7 @@ export declare const Table: import("react").ComponentType<Partial<{
|
|
|
586
586
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
587
587
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
588
588
|
readonly dataset: DOMStringMap;
|
|
589
|
+
emphasized: boolean;
|
|
589
590
|
selected: string[];
|
|
590
591
|
readonly renderOptions: import("lit-html").RenderOptions;
|
|
591
592
|
isLTR: boolean;
|
|
@@ -594,6 +595,8 @@ export declare const Table: import("react").ComponentType<Partial<{
|
|
|
594
595
|
items: Record<string, unknown>[];
|
|
595
596
|
itemValue: (_item: unknown, index: number) => string;
|
|
596
597
|
scroller: boolean;
|
|
598
|
+
quiet: boolean;
|
|
599
|
+
density?: "compact" | "spacious" | undefined;
|
|
597
600
|
renderItem: (item: Record<string, unknown>, index: number) => import("lit-html").TemplateResult<2 | 1>;
|
|
598
601
|
scrollToIndex: (index?: number | undefined) => void;
|
|
599
602
|
} & {
|
|
@@ -2366,6 +2369,8 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
|
|
|
2366
2369
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
2367
2370
|
readonly dataset: DOMStringMap;
|
|
2368
2371
|
indeterminate: boolean;
|
|
2372
|
+
emphasized: boolean;
|
|
2373
|
+
headCell: boolean;
|
|
2369
2374
|
checkbox: import("checkbox/src").Checkbox;
|
|
2370
2375
|
selectsSingle: boolean;
|
|
2371
2376
|
readonly renderOptions: import("lit-html").RenderOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/table",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.39.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@lit-labs/react": "^1.1.1",
|
|
33
|
-
"@spectrum-web-components/table": "^0.
|
|
33
|
+
"@spectrum-web-components/table": "^0.39.1"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"next": "~13.4"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"optional": true
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "d374f8645b54b978d830c95ff777b5b1e9172ac7"
|
|
44
44
|
}
|