@swc-react/table 0.38.0 → 0.39.0

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.
Files changed (2) hide show
  1. package/next.d.ts +5 -0
  2. 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.38.0",
3
+ "version": "0.39.0",
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.38.0"
33
+ "@spectrum-web-components/table": "^0.39.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "next": "~13.4"
@@ -40,5 +40,5 @@
40
40
  "optional": true
41
41
  }
42
42
  },
43
- "gitHead": "9a099b7543672f2fd4030833ab813b16c2cad62e"
43
+ "gitHead": "1a4b3c2d32e51b7f22a7f1196c3c0270512e7c4c"
44
44
  }