@swc-react/table 0.34.1-rc.0 → 0.35.1-rc.15

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 +115 -51
  2. package/package.json +3 -3
package/next.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
+ /// <reference types="react" />
2
3
  export declare const Table: import("react").ComponentType<Partial<{
3
4
  dir?: string | undefined;
4
5
  role?: import("react").AriaRole | undefined;
@@ -7,7 +8,6 @@ export declare const Table: import("react").ComponentType<Partial<{
7
8
  title?: string | undefined;
8
9
  tabIndex?: number | undefined;
9
10
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
10
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
11
11
  accessKey?: string | undefined;
12
12
  draggable?: (boolean | "true" | "false") | undefined;
13
13
  hidden?: boolean | undefined;
@@ -20,20 +20,26 @@ export declare const Table: import("react").ComponentType<Partial<{
20
20
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
21
21
  inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
22
22
  nonce?: string | undefined;
23
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
24
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
23
25
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
24
26
  defaultChecked?: boolean | undefined;
25
27
  defaultValue?: string | number | readonly string[] | undefined;
26
28
  suppressContentEditableWarning?: boolean | undefined;
27
29
  suppressHydrationWarning?: boolean | undefined;
30
+ autoFocus?: boolean | undefined;
28
31
  contextMenu?: string | undefined;
29
32
  placeholder?: string | undefined;
30
33
  spellCheck?: (boolean | "true" | "false") | undefined;
31
34
  radioGroup?: string | undefined;
32
35
  about?: string | undefined;
36
+ content?: string | undefined;
33
37
  datatype?: string | undefined;
34
38
  inlist?: any;
35
39
  property?: string | undefined;
40
+ rel?: string | undefined;
36
41
  resource?: string | undefined;
42
+ rev?: string | undefined;
37
43
  typeof?: string | undefined;
38
44
  vocab?: string | undefined;
39
45
  autoCapitalize?: string | undefined;
@@ -52,14 +58,18 @@ export declare const Table: import("react").ComponentType<Partial<{
52
58
  'aria-activedescendant'?: string | undefined;
53
59
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
54
60
  'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
61
+ 'aria-braillelabel'?: string | undefined;
62
+ 'aria-brailleroledescription'?: string | undefined;
55
63
  'aria-busy'?: (boolean | "true" | "false") | undefined;
56
64
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
57
65
  'aria-colcount'?: number | undefined;
58
66
  'aria-colindex'?: number | undefined;
67
+ 'aria-colindextext'?: string | undefined;
59
68
  'aria-colspan'?: number | undefined;
60
69
  'aria-controls'?: string | undefined;
61
70
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
62
71
  'aria-describedby'?: string | undefined;
72
+ 'aria-description'?: string | undefined;
63
73
  'aria-details'?: string | undefined;
64
74
  'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
65
75
  'aria-errormessage'?: string | undefined;
@@ -67,7 +77,6 @@ export declare const Table: import("react").ComponentType<Partial<{
67
77
  'aria-flowto'?: string | undefined;
68
78
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
69
79
  'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "grid" | "listbox" | "tree" | "false" | undefined;
70
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
71
80
  'aria-keyshortcuts'?: string | undefined;
72
81
  'aria-label'?: string | undefined;
73
82
  'aria-labelledby'?: string | undefined;
@@ -87,6 +96,7 @@ export declare const Table: import("react").ComponentType<Partial<{
87
96
  'aria-roledescription'?: string | undefined;
88
97
  'aria-rowcount'?: number | undefined;
89
98
  'aria-rowindex'?: number | undefined;
99
+ 'aria-rowindextext'?: string | undefined;
90
100
  'aria-rowspan'?: number | undefined;
91
101
  'aria-selected'?: (boolean | "true" | "false") | undefined;
92
102
  'aria-setsize'?: number | undefined;
@@ -95,7 +105,7 @@ export declare const Table: import("react").ComponentType<Partial<{
95
105
  'aria-valuenow'?: number | undefined;
96
106
  'aria-valuetext'?: string | undefined;
97
107
  dangerouslySetInnerHTML?: {
98
- __html: string;
108
+ __html: string | TrustedHTML;
99
109
  } | undefined;
100
110
  onCopy?: import("react").ClipboardEventHandler<import("table/src").Table> | undefined;
101
111
  onCopyCapture?: import("react").ClipboardEventHandler<import("table/src").Table> | undefined;
@@ -273,15 +283,13 @@ export declare const Table: import("react").ComponentType<Partial<{
273
283
  };
274
284
  autofocus: boolean;
275
285
  normalize: () => void;
276
- selected: string[];
277
- readonly renderOptions: import("lit-html").RenderOptions;
278
- connectedCallback: () => void;
279
- disconnectedCallback: () => void;
280
286
  readonly renderRoot: HTMLElement | ShadowRoot;
281
287
  isUpdatePending: boolean;
282
288
  hasUpdated: boolean;
283
289
  addController: (controller: import("lit").ReactiveController) => void;
284
290
  removeController: (controller: import("lit").ReactiveController) => void;
291
+ connectedCallback: () => void;
292
+ disconnectedCallback: () => void;
285
293
  attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
286
294
  requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
287
295
  readonly updateComplete: Promise<boolean>;
@@ -578,6 +586,8 @@ export declare const Table: import("react").ComponentType<Partial<{
578
586
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
579
587
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
580
588
  readonly dataset: DOMStringMap;
589
+ selected: string[];
590
+ readonly renderOptions: import("lit-html").RenderOptions;
581
591
  isLTR: boolean;
582
592
  hasVisibleFocusInTree: () => boolean;
583
593
  selects: "single" | "multiple" | undefined;
@@ -598,7 +608,6 @@ export declare const TableBody: import("react").ComponentType<Partial<{
598
608
  title?: string | undefined;
599
609
  tabIndex?: number | undefined;
600
610
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
601
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
602
611
  accessKey?: string | undefined;
603
612
  draggable?: (boolean | "true" | "false") | undefined;
604
613
  hidden?: boolean | undefined;
@@ -611,20 +620,26 @@ export declare const TableBody: import("react").ComponentType<Partial<{
611
620
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
612
621
  inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
613
622
  nonce?: string | undefined;
623
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
624
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
614
625
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
615
626
  defaultChecked?: boolean | undefined;
616
627
  defaultValue?: string | number | readonly string[] | undefined;
617
628
  suppressContentEditableWarning?: boolean | undefined;
618
629
  suppressHydrationWarning?: boolean | undefined;
630
+ autoFocus?: boolean | undefined;
619
631
  contextMenu?: string | undefined;
620
632
  placeholder?: string | undefined;
621
633
  spellCheck?: (boolean | "true" | "false") | undefined;
622
634
  radioGroup?: string | undefined;
623
635
  about?: string | undefined;
636
+ content?: string | undefined;
624
637
  datatype?: string | undefined;
625
638
  inlist?: any;
626
639
  property?: string | undefined;
640
+ rel?: string | undefined;
627
641
  resource?: string | undefined;
642
+ rev?: string | undefined;
628
643
  typeof?: string | undefined;
629
644
  vocab?: string | undefined;
630
645
  autoCapitalize?: string | undefined;
@@ -643,14 +658,18 @@ export declare const TableBody: import("react").ComponentType<Partial<{
643
658
  'aria-activedescendant'?: string | undefined;
644
659
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
645
660
  'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
661
+ 'aria-braillelabel'?: string | undefined;
662
+ 'aria-brailleroledescription'?: string | undefined;
646
663
  'aria-busy'?: (boolean | "true" | "false") | undefined;
647
664
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
648
665
  'aria-colcount'?: number | undefined;
649
666
  'aria-colindex'?: number | undefined;
667
+ 'aria-colindextext'?: string | undefined;
650
668
  'aria-colspan'?: number | undefined;
651
669
  'aria-controls'?: string | undefined;
652
670
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
653
671
  'aria-describedby'?: string | undefined;
672
+ 'aria-description'?: string | undefined;
654
673
  'aria-details'?: string | undefined;
655
674
  'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
656
675
  'aria-errormessage'?: string | undefined;
@@ -658,7 +677,6 @@ export declare const TableBody: import("react").ComponentType<Partial<{
658
677
  'aria-flowto'?: string | undefined;
659
678
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
660
679
  'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "grid" | "listbox" | "tree" | "false" | undefined;
661
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
662
680
  'aria-keyshortcuts'?: string | undefined;
663
681
  'aria-label'?: string | undefined;
664
682
  'aria-labelledby'?: string | undefined;
@@ -678,6 +696,7 @@ export declare const TableBody: import("react").ComponentType<Partial<{
678
696
  'aria-roledescription'?: string | undefined;
679
697
  'aria-rowcount'?: number | undefined;
680
698
  'aria-rowindex'?: number | undefined;
699
+ 'aria-rowindextext'?: string | undefined;
681
700
  'aria-rowspan'?: number | undefined;
682
701
  'aria-selected'?: (boolean | "true" | "false") | undefined;
683
702
  'aria-setsize'?: number | undefined;
@@ -686,7 +705,7 @@ export declare const TableBody: import("react").ComponentType<Partial<{
686
705
  'aria-valuenow'?: number | undefined;
687
706
  'aria-valuetext'?: string | undefined;
688
707
  dangerouslySetInnerHTML?: {
689
- __html: string;
708
+ __html: string | TrustedHTML;
690
709
  } | undefined;
691
710
  onCopy?: import("react").ClipboardEventHandler<import("table/src").TableBody> | undefined;
692
711
  onCopyCapture?: import("react").ClipboardEventHandler<import("table/src").TableBody> | undefined;
@@ -863,14 +882,13 @@ export declare const TableBody: import("react").ComponentType<Partial<{
863
882
  };
864
883
  autofocus: boolean;
865
884
  normalize: () => void;
866
- readonly renderOptions: import("lit-html").RenderOptions;
867
- connectedCallback: () => void;
868
- disconnectedCallback: () => void;
869
885
  readonly renderRoot: HTMLElement | ShadowRoot;
870
886
  isUpdatePending: boolean;
871
887
  hasUpdated: boolean;
872
888
  addController: (controller: import("lit").ReactiveController) => void;
873
889
  removeController: (controller: import("lit").ReactiveController) => void;
890
+ connectedCallback: () => void;
891
+ disconnectedCallback: () => void;
874
892
  attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
875
893
  requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
876
894
  readonly updateComplete: Promise<boolean>;
@@ -1167,6 +1185,7 @@ export declare const TableBody: import("react").ComponentType<Partial<{
1167
1185
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1168
1186
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1169
1187
  readonly dataset: DOMStringMap;
1188
+ readonly renderOptions: import("lit-html").RenderOptions;
1170
1189
  isLTR: boolean;
1171
1190
  hasVisibleFocusInTree: () => boolean;
1172
1191
  } & {}> & import("react").RefAttributes<import("table/src").TableBody>>;
@@ -1178,7 +1197,6 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1178
1197
  title?: string | undefined;
1179
1198
  tabIndex?: number | undefined;
1180
1199
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
1181
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1182
1200
  accessKey?: string | undefined;
1183
1201
  draggable?: (boolean | "true" | "false") | undefined;
1184
1202
  hidden?: boolean | undefined;
@@ -1191,20 +1209,26 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1191
1209
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
1192
1210
  inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1193
1211
  nonce?: string | undefined;
1212
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
1213
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1194
1214
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
1195
1215
  defaultChecked?: boolean | undefined;
1196
1216
  defaultValue?: string | number | readonly string[] | undefined;
1197
1217
  suppressContentEditableWarning?: boolean | undefined;
1198
1218
  suppressHydrationWarning?: boolean | undefined;
1219
+ autoFocus?: boolean | undefined;
1199
1220
  contextMenu?: string | undefined;
1200
1221
  placeholder?: string | undefined;
1201
1222
  spellCheck?: (boolean | "true" | "false") | undefined;
1202
1223
  radioGroup?: string | undefined;
1203
1224
  about?: string | undefined;
1225
+ content?: string | undefined;
1204
1226
  datatype?: string | undefined;
1205
1227
  inlist?: any;
1206
1228
  property?: string | undefined;
1229
+ rel?: string | undefined;
1207
1230
  resource?: string | undefined;
1231
+ rev?: string | undefined;
1208
1232
  typeof?: string | undefined;
1209
1233
  vocab?: string | undefined;
1210
1234
  autoCapitalize?: string | undefined;
@@ -1223,14 +1247,18 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1223
1247
  'aria-activedescendant'?: string | undefined;
1224
1248
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
1225
1249
  'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
1250
+ 'aria-braillelabel'?: string | undefined;
1251
+ 'aria-brailleroledescription'?: string | undefined;
1226
1252
  'aria-busy'?: (boolean | "true" | "false") | undefined;
1227
1253
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
1228
1254
  'aria-colcount'?: number | undefined;
1229
1255
  'aria-colindex'?: number | undefined;
1256
+ 'aria-colindextext'?: string | undefined;
1230
1257
  'aria-colspan'?: number | undefined;
1231
1258
  'aria-controls'?: string | undefined;
1232
1259
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
1233
1260
  'aria-describedby'?: string | undefined;
1261
+ 'aria-description'?: string | undefined;
1234
1262
  'aria-details'?: string | undefined;
1235
1263
  'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
1236
1264
  'aria-errormessage'?: string | undefined;
@@ -1238,7 +1266,6 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1238
1266
  'aria-flowto'?: string | undefined;
1239
1267
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
1240
1268
  'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "grid" | "listbox" | "tree" | "false" | undefined;
1241
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
1242
1269
  'aria-keyshortcuts'?: string | undefined;
1243
1270
  'aria-label'?: string | undefined;
1244
1271
  'aria-labelledby'?: string | undefined;
@@ -1258,6 +1285,7 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1258
1285
  'aria-roledescription'?: string | undefined;
1259
1286
  'aria-rowcount'?: number | undefined;
1260
1287
  'aria-rowindex'?: number | undefined;
1288
+ 'aria-rowindextext'?: string | undefined;
1261
1289
  'aria-rowspan'?: number | undefined;
1262
1290
  'aria-selected'?: (boolean | "true" | "false") | undefined;
1263
1291
  'aria-setsize'?: number | undefined;
@@ -1266,7 +1294,7 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1266
1294
  'aria-valuenow'?: number | undefined;
1267
1295
  'aria-valuetext'?: string | undefined;
1268
1296
  dangerouslySetInnerHTML?: {
1269
- __html: string;
1297
+ __html: string | TrustedHTML;
1270
1298
  } | undefined;
1271
1299
  onCopy?: import("react").ClipboardEventHandler<import("table/src").TableCell> | undefined;
1272
1300
  onCopyCapture?: import("react").ClipboardEventHandler<import("table/src").TableCell> | undefined;
@@ -1443,14 +1471,13 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1443
1471
  };
1444
1472
  autofocus: boolean;
1445
1473
  normalize: () => void;
1446
- readonly renderOptions: import("lit-html").RenderOptions;
1447
- connectedCallback: () => void;
1448
- disconnectedCallback: () => void;
1449
1474
  readonly renderRoot: HTMLElement | ShadowRoot;
1450
1475
  isUpdatePending: boolean;
1451
1476
  hasUpdated: boolean;
1452
1477
  addController: (controller: import("lit").ReactiveController) => void;
1453
1478
  removeController: (controller: import("lit").ReactiveController) => void;
1479
+ connectedCallback: () => void;
1480
+ disconnectedCallback: () => void;
1454
1481
  attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
1455
1482
  requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
1456
1483
  readonly updateComplete: Promise<boolean>;
@@ -1747,6 +1774,7 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1747
1774
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1748
1775
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1749
1776
  readonly dataset: DOMStringMap;
1777
+ readonly renderOptions: import("lit-html").RenderOptions;
1750
1778
  isLTR: boolean;
1751
1779
  hasVisibleFocusInTree: () => boolean;
1752
1780
  } & {}> & import("react").RefAttributes<import("table/src").TableCell>>;
@@ -1758,7 +1786,6 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
1758
1786
  title?: string | undefined;
1759
1787
  tabIndex?: number | undefined;
1760
1788
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
1761
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1762
1789
  accessKey?: string | undefined;
1763
1790
  draggable?: (boolean | "true" | "false") | undefined;
1764
1791
  hidden?: boolean | undefined;
@@ -1771,20 +1798,26 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
1771
1798
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
1772
1799
  inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1773
1800
  nonce?: string | undefined;
1801
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
1802
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1774
1803
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
1775
1804
  defaultChecked?: boolean | undefined;
1776
1805
  defaultValue?: string | number | readonly string[] | undefined;
1777
1806
  suppressContentEditableWarning?: boolean | undefined;
1778
1807
  suppressHydrationWarning?: boolean | undefined;
1808
+ autoFocus?: boolean | undefined;
1779
1809
  contextMenu?: string | undefined;
1780
1810
  placeholder?: string | undefined;
1781
1811
  spellCheck?: (boolean | "true" | "false") | undefined;
1782
1812
  radioGroup?: string | undefined;
1783
1813
  about?: string | undefined;
1814
+ content?: string | undefined;
1784
1815
  datatype?: string | undefined;
1785
1816
  inlist?: any;
1786
1817
  property?: string | undefined;
1818
+ rel?: string | undefined;
1787
1819
  resource?: string | undefined;
1820
+ rev?: string | undefined;
1788
1821
  typeof?: string | undefined;
1789
1822
  vocab?: string | undefined;
1790
1823
  autoCapitalize?: string | undefined;
@@ -1803,14 +1836,18 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
1803
1836
  'aria-activedescendant'?: string | undefined;
1804
1837
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
1805
1838
  'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
1839
+ 'aria-braillelabel'?: string | undefined;
1840
+ 'aria-brailleroledescription'?: string | undefined;
1806
1841
  'aria-busy'?: (boolean | "true" | "false") | undefined;
1807
1842
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
1808
1843
  'aria-colcount'?: number | undefined;
1809
1844
  'aria-colindex'?: number | undefined;
1845
+ 'aria-colindextext'?: string | undefined;
1810
1846
  'aria-colspan'?: number | undefined;
1811
1847
  'aria-controls'?: string | undefined;
1812
1848
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
1813
1849
  'aria-describedby'?: string | undefined;
1850
+ 'aria-description'?: string | undefined;
1814
1851
  'aria-details'?: string | undefined;
1815
1852
  'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
1816
1853
  'aria-errormessage'?: string | undefined;
@@ -1818,7 +1855,6 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
1818
1855
  'aria-flowto'?: string | undefined;
1819
1856
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
1820
1857
  'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "grid" | "listbox" | "tree" | "false" | undefined;
1821
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
1822
1858
  'aria-keyshortcuts'?: string | undefined;
1823
1859
  'aria-label'?: string | undefined;
1824
1860
  'aria-labelledby'?: string | undefined;
@@ -1838,6 +1874,7 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
1838
1874
  'aria-roledescription'?: string | undefined;
1839
1875
  'aria-rowcount'?: number | undefined;
1840
1876
  'aria-rowindex'?: number | undefined;
1877
+ 'aria-rowindextext'?: string | undefined;
1841
1878
  'aria-rowspan'?: number | undefined;
1842
1879
  'aria-selected'?: (boolean | "true" | "false") | undefined;
1843
1880
  'aria-setsize'?: number | undefined;
@@ -1846,7 +1883,7 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
1846
1883
  'aria-valuenow'?: number | undefined;
1847
1884
  'aria-valuetext'?: string | undefined;
1848
1885
  dangerouslySetInnerHTML?: {
1849
- __html: string;
1886
+ __html: string | TrustedHTML;
1850
1887
  } | undefined;
1851
1888
  onCopy?: import("react").ClipboardEventHandler<import("table/src").TableCheckboxCell> | undefined;
1852
1889
  onCopyCapture?: import("react").ClipboardEventHandler<import("table/src").TableCheckboxCell> | undefined;
@@ -2025,17 +2062,13 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2025
2062
  autofocus: boolean;
2026
2063
  normalize: () => void;
2027
2064
  checked: boolean;
2028
- indeterminate: boolean;
2029
- checkbox: import("checkbox/src").Checkbox;
2030
- selectsSingle: boolean;
2031
- readonly renderOptions: import("lit-html").RenderOptions;
2032
- connectedCallback: () => void;
2033
- disconnectedCallback: () => void;
2034
2065
  readonly renderRoot: HTMLElement | ShadowRoot;
2035
2066
  isUpdatePending: boolean;
2036
2067
  hasUpdated: boolean;
2037
2068
  addController: (controller: import("lit").ReactiveController) => void;
2038
2069
  removeController: (controller: import("lit").ReactiveController) => void;
2070
+ connectedCallback: () => void;
2071
+ disconnectedCallback: () => void;
2039
2072
  attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
2040
2073
  requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
2041
2074
  readonly updateComplete: Promise<boolean>;
@@ -2332,6 +2365,10 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2332
2365
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2333
2366
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
2334
2367
  readonly dataset: DOMStringMap;
2368
+ indeterminate: boolean;
2369
+ checkbox: import("checkbox/src").Checkbox;
2370
+ selectsSingle: boolean;
2371
+ readonly renderOptions: import("lit-html").RenderOptions;
2335
2372
  isLTR: boolean;
2336
2373
  hasVisibleFocusInTree: () => boolean;
2337
2374
  } & {}> & import("react").RefAttributes<import("table/src").TableCheckboxCell>>;
@@ -2343,7 +2380,6 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2343
2380
  title?: string | undefined;
2344
2381
  tabIndex?: number | undefined;
2345
2382
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
2346
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
2347
2383
  accessKey?: string | undefined;
2348
2384
  draggable?: (boolean | "true" | "false") | undefined;
2349
2385
  hidden?: boolean | undefined;
@@ -2356,20 +2392,26 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2356
2392
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
2357
2393
  inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
2358
2394
  nonce?: string | undefined;
2395
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
2396
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
2359
2397
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
2360
2398
  defaultChecked?: boolean | undefined;
2361
2399
  defaultValue?: string | number | readonly string[] | undefined;
2362
2400
  suppressContentEditableWarning?: boolean | undefined;
2363
2401
  suppressHydrationWarning?: boolean | undefined;
2402
+ autoFocus?: boolean | undefined;
2364
2403
  contextMenu?: string | undefined;
2365
2404
  placeholder?: string | undefined;
2366
2405
  spellCheck?: (boolean | "true" | "false") | undefined;
2367
2406
  radioGroup?: string | undefined;
2368
2407
  about?: string | undefined;
2408
+ content?: string | undefined;
2369
2409
  datatype?: string | undefined;
2370
2410
  inlist?: any;
2371
2411
  property?: string | undefined;
2412
+ rel?: string | undefined;
2372
2413
  resource?: string | undefined;
2414
+ rev?: string | undefined;
2373
2415
  typeof?: string | undefined;
2374
2416
  vocab?: string | undefined;
2375
2417
  autoCapitalize?: string | undefined;
@@ -2388,14 +2430,18 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2388
2430
  'aria-activedescendant'?: string | undefined;
2389
2431
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
2390
2432
  'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
2433
+ 'aria-braillelabel'?: string | undefined;
2434
+ 'aria-brailleroledescription'?: string | undefined;
2391
2435
  'aria-busy'?: (boolean | "true" | "false") | undefined;
2392
2436
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
2393
2437
  'aria-colcount'?: number | undefined;
2394
2438
  'aria-colindex'?: number | undefined;
2439
+ 'aria-colindextext'?: string | undefined;
2395
2440
  'aria-colspan'?: number | undefined;
2396
2441
  'aria-controls'?: string | undefined;
2397
2442
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
2398
2443
  'aria-describedby'?: string | undefined;
2444
+ 'aria-description'?: string | undefined;
2399
2445
  'aria-details'?: string | undefined;
2400
2446
  'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
2401
2447
  'aria-errormessage'?: string | undefined;
@@ -2403,7 +2449,6 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2403
2449
  'aria-flowto'?: string | undefined;
2404
2450
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
2405
2451
  'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "grid" | "listbox" | "tree" | "false" | undefined;
2406
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
2407
2452
  'aria-keyshortcuts'?: string | undefined;
2408
2453
  'aria-label'?: string | undefined;
2409
2454
  'aria-labelledby'?: string | undefined;
@@ -2423,6 +2468,7 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2423
2468
  'aria-roledescription'?: string | undefined;
2424
2469
  'aria-rowcount'?: number | undefined;
2425
2470
  'aria-rowindex'?: number | undefined;
2471
+ 'aria-rowindextext'?: string | undefined;
2426
2472
  'aria-rowspan'?: number | undefined;
2427
2473
  'aria-selected'?: (boolean | "true" | "false") | undefined;
2428
2474
  'aria-setsize'?: number | undefined;
@@ -2431,7 +2477,7 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2431
2477
  'aria-valuenow'?: number | undefined;
2432
2478
  'aria-valuetext'?: string | undefined;
2433
2479
  dangerouslySetInnerHTML?: {
2434
- __html: string;
2480
+ __html: string | TrustedHTML;
2435
2481
  } | undefined;
2436
2482
  onCopy?: import("react").ClipboardEventHandler<import("table/src").TableHead> | undefined;
2437
2483
  onCopyCapture?: import("react").ClipboardEventHandler<import("table/src").TableHead> | undefined;
@@ -2608,15 +2654,13 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2608
2654
  };
2609
2655
  autofocus: boolean;
2610
2656
  normalize: () => void;
2611
- selected?: boolean | undefined;
2612
- readonly renderOptions: import("lit-html").RenderOptions;
2613
- connectedCallback: () => void;
2614
- disconnectedCallback: () => void;
2615
2657
  readonly renderRoot: HTMLElement | ShadowRoot;
2616
2658
  isUpdatePending: boolean;
2617
2659
  hasUpdated: boolean;
2618
2660
  addController: (controller: import("lit").ReactiveController) => void;
2619
2661
  removeController: (controller: import("lit").ReactiveController) => void;
2662
+ connectedCallback: () => void;
2663
+ disconnectedCallback: () => void;
2620
2664
  attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
2621
2665
  requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
2622
2666
  readonly updateComplete: Promise<boolean>;
@@ -2913,6 +2957,8 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2913
2957
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2914
2958
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
2915
2959
  readonly dataset: DOMStringMap;
2960
+ selected?: boolean | undefined;
2961
+ readonly renderOptions: import("lit-html").RenderOptions;
2916
2962
  isLTR: boolean;
2917
2963
  hasVisibleFocusInTree: () => boolean;
2918
2964
  } & {}> & import("react").RefAttributes<import("table/src").TableHead>>;
@@ -2924,7 +2970,6 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
2924
2970
  title?: string | undefined;
2925
2971
  tabIndex?: number | undefined;
2926
2972
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
2927
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
2928
2973
  accessKey?: string | undefined;
2929
2974
  draggable?: (boolean | "true" | "false") | undefined;
2930
2975
  hidden?: boolean | undefined;
@@ -2937,20 +2982,26 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
2937
2982
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
2938
2983
  inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
2939
2984
  nonce?: string | undefined;
2985
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
2986
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
2940
2987
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
2941
2988
  defaultChecked?: boolean | undefined;
2942
2989
  defaultValue?: string | number | readonly string[] | undefined;
2943
2990
  suppressContentEditableWarning?: boolean | undefined;
2944
2991
  suppressHydrationWarning?: boolean | undefined;
2992
+ autoFocus?: boolean | undefined;
2945
2993
  contextMenu?: string | undefined;
2946
2994
  placeholder?: string | undefined;
2947
2995
  spellCheck?: (boolean | "true" | "false") | undefined;
2948
2996
  radioGroup?: string | undefined;
2949
2997
  about?: string | undefined;
2998
+ content?: string | undefined;
2950
2999
  datatype?: string | undefined;
2951
3000
  inlist?: any;
2952
3001
  property?: string | undefined;
3002
+ rel?: string | undefined;
2953
3003
  resource?: string | undefined;
3004
+ rev?: string | undefined;
2954
3005
  typeof?: string | undefined;
2955
3006
  vocab?: string | undefined;
2956
3007
  autoCapitalize?: string | undefined;
@@ -2969,14 +3020,18 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
2969
3020
  'aria-activedescendant'?: string | undefined;
2970
3021
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
2971
3022
  'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
3023
+ 'aria-braillelabel'?: string | undefined;
3024
+ 'aria-brailleroledescription'?: string | undefined;
2972
3025
  'aria-busy'?: (boolean | "true" | "false") | undefined;
2973
3026
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
2974
3027
  'aria-colcount'?: number | undefined;
2975
3028
  'aria-colindex'?: number | undefined;
3029
+ 'aria-colindextext'?: string | undefined;
2976
3030
  'aria-colspan'?: number | undefined;
2977
3031
  'aria-controls'?: string | undefined;
2978
3032
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
2979
3033
  'aria-describedby'?: string | undefined;
3034
+ 'aria-description'?: string | undefined;
2980
3035
  'aria-details'?: string | undefined;
2981
3036
  'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
2982
3037
  'aria-errormessage'?: string | undefined;
@@ -2984,7 +3039,6 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
2984
3039
  'aria-flowto'?: string | undefined;
2985
3040
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
2986
3041
  'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "grid" | "listbox" | "tree" | "false" | undefined;
2987
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
2988
3042
  'aria-keyshortcuts'?: string | undefined;
2989
3043
  'aria-label'?: string | undefined;
2990
3044
  'aria-labelledby'?: string | undefined;
@@ -3004,6 +3058,7 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3004
3058
  'aria-roledescription'?: string | undefined;
3005
3059
  'aria-rowcount'?: number | undefined;
3006
3060
  'aria-rowindex'?: number | undefined;
3061
+ 'aria-rowindextext'?: string | undefined;
3007
3062
  'aria-rowspan'?: number | undefined;
3008
3063
  'aria-selected'?: (boolean | "true" | "false") | undefined;
3009
3064
  'aria-setsize'?: number | undefined;
@@ -3012,7 +3067,7 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3012
3067
  'aria-valuenow'?: number | undefined;
3013
3068
  'aria-valuetext'?: string | undefined;
3014
3069
  dangerouslySetInnerHTML?: {
3015
- __html: string;
3070
+ __html: string | TrustedHTML;
3016
3071
  } | undefined;
3017
3072
  onCopy?: import("react").ClipboardEventHandler<import("table/src").TableHeadCell> | undefined;
3018
3073
  onCopyCapture?: import("react").ClipboardEventHandler<import("table/src").TableHeadCell> | undefined;
@@ -3189,14 +3244,13 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3189
3244
  };
3190
3245
  autofocus: boolean;
3191
3246
  normalize: () => void;
3192
- readonly renderOptions: import("lit-html").RenderOptions;
3193
- connectedCallback: () => void;
3194
- disconnectedCallback: () => void;
3195
3247
  readonly renderRoot: HTMLElement | ShadowRoot;
3196
3248
  isUpdatePending: boolean;
3197
3249
  hasUpdated: boolean;
3198
3250
  addController: (controller: import("lit").ReactiveController) => void;
3199
3251
  removeController: (controller: import("lit").ReactiveController) => void;
3252
+ connectedCallback: () => void;
3253
+ disconnectedCallback: () => void;
3200
3254
  attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
3201
3255
  requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
3202
3256
  readonly updateComplete: Promise<boolean>;
@@ -3493,6 +3547,7 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3493
3547
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
3494
3548
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
3495
3549
  readonly dataset: DOMStringMap;
3550
+ readonly renderOptions: import("lit-html").RenderOptions;
3496
3551
  isLTR: boolean;
3497
3552
  hasVisibleFocusInTree: () => boolean;
3498
3553
  sortable: boolean;
@@ -3509,7 +3564,6 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3509
3564
  title?: string | undefined;
3510
3565
  tabIndex?: number | undefined;
3511
3566
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
3512
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
3513
3567
  accessKey?: string | undefined;
3514
3568
  draggable?: (boolean | "true" | "false") | undefined;
3515
3569
  hidden?: boolean | undefined;
@@ -3522,20 +3576,26 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3522
3576
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
3523
3577
  inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
3524
3578
  nonce?: string | undefined;
3579
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
3580
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
3525
3581
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
3526
3582
  defaultChecked?: boolean | undefined;
3527
3583
  defaultValue?: string | number | readonly string[] | undefined;
3528
3584
  suppressContentEditableWarning?: boolean | undefined;
3529
3585
  suppressHydrationWarning?: boolean | undefined;
3586
+ autoFocus?: boolean | undefined;
3530
3587
  contextMenu?: string | undefined;
3531
3588
  placeholder?: string | undefined;
3532
3589
  spellCheck?: (boolean | "true" | "false") | undefined;
3533
3590
  radioGroup?: string | undefined;
3534
3591
  about?: string | undefined;
3592
+ content?: string | undefined;
3535
3593
  datatype?: string | undefined;
3536
3594
  inlist?: any;
3537
3595
  property?: string | undefined;
3596
+ rel?: string | undefined;
3538
3597
  resource?: string | undefined;
3598
+ rev?: string | undefined;
3539
3599
  typeof?: string | undefined;
3540
3600
  vocab?: string | undefined;
3541
3601
  autoCapitalize?: string | undefined;
@@ -3554,14 +3614,18 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3554
3614
  'aria-activedescendant'?: string | undefined;
3555
3615
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
3556
3616
  'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
3617
+ 'aria-braillelabel'?: string | undefined;
3618
+ 'aria-brailleroledescription'?: string | undefined;
3557
3619
  'aria-busy'?: (boolean | "true" | "false") | undefined;
3558
3620
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
3559
3621
  'aria-colcount'?: number | undefined;
3560
3622
  'aria-colindex'?: number | undefined;
3623
+ 'aria-colindextext'?: string | undefined;
3561
3624
  'aria-colspan'?: number | undefined;
3562
3625
  'aria-controls'?: string | undefined;
3563
3626
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
3564
3627
  'aria-describedby'?: string | undefined;
3628
+ 'aria-description'?: string | undefined;
3565
3629
  'aria-details'?: string | undefined;
3566
3630
  'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
3567
3631
  'aria-errormessage'?: string | undefined;
@@ -3569,7 +3633,6 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3569
3633
  'aria-flowto'?: string | undefined;
3570
3634
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
3571
3635
  'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "grid" | "listbox" | "tree" | "false" | undefined;
3572
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
3573
3636
  'aria-keyshortcuts'?: string | undefined;
3574
3637
  'aria-label'?: string | undefined;
3575
3638
  'aria-labelledby'?: string | undefined;
@@ -3589,6 +3652,7 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3589
3652
  'aria-roledescription'?: string | undefined;
3590
3653
  'aria-rowcount'?: number | undefined;
3591
3654
  'aria-rowindex'?: number | undefined;
3655
+ 'aria-rowindextext'?: string | undefined;
3592
3656
  'aria-rowspan'?: number | undefined;
3593
3657
  'aria-selected'?: (boolean | "true" | "false") | undefined;
3594
3658
  'aria-setsize'?: number | undefined;
@@ -3597,7 +3661,7 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3597
3661
  'aria-valuenow'?: number | undefined;
3598
3662
  'aria-valuetext'?: string | undefined;
3599
3663
  dangerouslySetInnerHTML?: {
3600
- __html: string;
3664
+ __html: string | TrustedHTML;
3601
3665
  } | undefined;
3602
3666
  onCopy?: import("react").ClipboardEventHandler<import("table/src").TableRow> | undefined;
3603
3667
  onCopyCapture?: import("react").ClipboardEventHandler<import("table/src").TableRow> | undefined;
@@ -3774,18 +3838,13 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3774
3838
  };
3775
3839
  autofocus: boolean;
3776
3840
  normalize: () => void;
3777
- checkboxCells: import("table/src").TableCheckboxCell[];
3778
- selectable: boolean;
3779
- selected: boolean;
3780
- value: string;
3781
- readonly renderOptions: import("lit-html").RenderOptions;
3782
- connectedCallback: () => void;
3783
- disconnectedCallback: () => void;
3784
3841
  readonly renderRoot: HTMLElement | ShadowRoot;
3785
3842
  isUpdatePending: boolean;
3786
3843
  hasUpdated: boolean;
3787
3844
  addController: (controller: import("lit").ReactiveController) => void;
3788
3845
  removeController: (controller: import("lit").ReactiveController) => void;
3846
+ connectedCallback: () => void;
3847
+ disconnectedCallback: () => void;
3789
3848
  attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
3790
3849
  requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
3791
3850
  readonly updateComplete: Promise<boolean>;
@@ -4082,6 +4141,11 @@ export declare const TableRow: import("react").ComponentType<Partial<{
4082
4141
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
4083
4142
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
4084
4143
  readonly dataset: DOMStringMap;
4144
+ checkboxCells: import("table/src").TableCheckboxCell[];
4145
+ selectable: boolean;
4146
+ selected: boolean;
4147
+ value: string;
4148
+ readonly renderOptions: import("lit-html").RenderOptions;
4085
4149
  isLTR: boolean;
4086
4150
  hasVisibleFocusInTree: () => boolean;
4087
4151
  } & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc-react/table",
3
- "version": "0.34.1-rc.0+1647bfed5",
3
+ "version": "0.35.1-rc.15+9b76319e4",
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.34.1-rc.0+1647bfed5"
33
+ "@spectrum-web-components/table": "^0.35.1-rc.15+9b76319e4"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "next": "~13.4"
@@ -40,5 +40,5 @@
40
40
  "optional": true
41
41
  }
42
42
  },
43
- "gitHead": "1647bfed54cb29f3513343cd0d2c2d9e73e1c508"
43
+ "gitHead": "9b76319e4f1cc7cb0dd03e9d9debf544e5bed4e9"
44
44
  }