@swc-react/table 0.40.0 → 0.40.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.
Files changed (2) hide show
  1. package/next.d.ts +135 -135
  2. package/package.json +3 -3
package/next.d.ts CHANGED
@@ -3,23 +3,22 @@
3
3
  export declare const Table: import("react").ComponentType<Partial<{
4
4
  dir?: string | undefined;
5
5
  role?: import("react").AriaRole | undefined;
6
- slot?: string | undefined;
7
- style?: import("react").CSSProperties | undefined;
8
- title?: string | undefined;
9
- tabIndex?: number | undefined;
10
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
11
6
  accessKey?: string | undefined;
12
7
  draggable?: (boolean | "true" | "false") | undefined;
13
8
  hidden?: boolean | undefined;
14
9
  lang?: string | undefined;
10
+ title?: string | undefined;
15
11
  translate?: "yes" | "no" | undefined;
16
12
  className?: string | undefined;
17
13
  id?: string | undefined;
18
14
  prefix?: string | undefined;
15
+ slot?: string | undefined;
19
16
  children?: import("react").ReactNode;
17
+ style?: import("react").CSSProperties | undefined;
20
18
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
21
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
19
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
22
20
  nonce?: string | undefined;
21
+ tabIndex?: number | undefined;
23
22
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
24
23
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
25
24
  'aria-selected'?: (boolean | "true" | "false") | undefined;
@@ -68,16 +67,17 @@ export declare const Table: import("react").ComponentType<Partial<{
68
67
  'aria-colindextext'?: string | undefined;
69
68
  'aria-colspan'?: number | undefined;
70
69
  'aria-controls'?: string | undefined;
71
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
70
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
72
71
  'aria-describedby'?: string | undefined;
73
72
  'aria-description'?: string | undefined;
74
73
  'aria-details'?: string | undefined;
75
- 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
74
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
75
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
76
76
  'aria-errormessage'?: string | undefined;
77
77
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
78
78
  'aria-flowto'?: string | undefined;
79
79
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
80
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
80
+ 'aria-haspopup'?: boolean | "true" | "false" | "grid" | "dialog" | "menu" | "listbox" | "tree" | undefined;
81
81
  'aria-keyshortcuts'?: string | undefined;
82
82
  'aria-label'?: string | undefined;
83
83
  'aria-labelledby'?: string | undefined;
@@ -273,16 +273,6 @@ export declare const Table: import("react").ComponentType<Partial<{
273
273
  readonly attributes: NamedNodeMap;
274
274
  readonly localName: string;
275
275
  size: import("@spectrum-web-components/base").ElementSize;
276
- animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
277
- blur: () => void;
278
- click: () => void;
279
- focus: () => void;
280
- scroll: {
281
- (options?: ScrollToOptions | undefined): void;
282
- (x: number, y: number): void;
283
- };
284
- autofocus: boolean;
285
- normalize: () => void;
286
276
  readonly renderRoot: HTMLElement | ShadowRoot;
287
277
  isUpdatePending: boolean;
288
278
  hasUpdated: boolean;
@@ -305,6 +295,7 @@ export declare const Table: import("react").ComponentType<Partial<{
305
295
  outerText: string;
306
296
  spellcheck: boolean;
307
297
  attachInternals: () => ElementInternals;
298
+ click: () => void;
308
299
  addEventListener: {
309
300
  <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
310
301
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
@@ -368,6 +359,10 @@ export declare const Table: import("react").ComponentType<Partial<{
368
359
  removeAttributeNode: (attr: Attr) => Attr;
369
360
  requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
370
361
  requestPointerLock: () => void;
362
+ scroll: {
363
+ (options?: ScrollToOptions | undefined): void;
364
+ (x: number, y: number): void;
365
+ };
371
366
  scrollBy: {
372
367
  (options?: ScrollToOptions | undefined): void;
373
368
  (x: number, y: number): void;
@@ -409,6 +404,7 @@ export declare const Table: import("react").ComponentType<Partial<{
409
404
  isSameNode: (otherNode: Node | null) => boolean;
410
405
  lookupNamespaceURI: (prefix: string | null) => string | null;
411
406
  lookupPrefix: (namespace: string | null) => string | null;
407
+ normalize: () => void;
412
408
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
413
409
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
414
410
  readonly ATTRIBUTE_NODE: number;
@@ -466,6 +462,7 @@ export declare const Table: import("react").ComponentType<Partial<{
466
462
  ariaValueMin: string | null;
467
463
  ariaValueNow: string | null;
468
464
  ariaValueText: string | null;
465
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
469
466
  getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
470
467
  after: (...nodes: (string | Node)[]) => void;
471
468
  before: (...nodes: (string | Node)[]) => void;
@@ -585,7 +582,10 @@ export declare const Table: import("react").ComponentType<Partial<{
585
582
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
586
583
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
587
584
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
585
+ autofocus: boolean;
588
586
  readonly dataset: DOMStringMap;
587
+ blur: () => void;
588
+ focus: () => void;
589
589
  emphasized: boolean;
590
590
  selected: string[];
591
591
  readonly renderOptions: import("lit-html").RenderOptions;
@@ -606,23 +606,22 @@ export declare const Table: import("react").ComponentType<Partial<{
606
606
  export declare const TableBody: import("react").ComponentType<Partial<{
607
607
  dir?: string | undefined;
608
608
  role?: import("react").AriaRole | undefined;
609
- slot?: string | undefined;
610
- style?: import("react").CSSProperties | undefined;
611
- title?: string | undefined;
612
- tabIndex?: number | undefined;
613
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
614
609
  accessKey?: string | undefined;
615
610
  draggable?: (boolean | "true" | "false") | undefined;
616
611
  hidden?: boolean | undefined;
617
612
  lang?: string | undefined;
613
+ title?: string | undefined;
618
614
  translate?: "yes" | "no" | undefined;
619
615
  className?: string | undefined;
620
616
  id?: string | undefined;
621
617
  prefix?: string | undefined;
618
+ slot?: string | undefined;
622
619
  children?: import("react").ReactNode;
620
+ style?: import("react").CSSProperties | undefined;
623
621
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
624
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
622
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
625
623
  nonce?: string | undefined;
624
+ tabIndex?: number | undefined;
626
625
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
627
626
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
628
627
  'aria-selected'?: (boolean | "true" | "false") | undefined;
@@ -671,16 +670,17 @@ export declare const TableBody: import("react").ComponentType<Partial<{
671
670
  'aria-colindextext'?: string | undefined;
672
671
  'aria-colspan'?: number | undefined;
673
672
  'aria-controls'?: string | undefined;
674
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
673
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
675
674
  'aria-describedby'?: string | undefined;
676
675
  'aria-description'?: string | undefined;
677
676
  'aria-details'?: string | undefined;
678
- 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
677
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
678
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
679
679
  'aria-errormessage'?: string | undefined;
680
680
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
681
681
  'aria-flowto'?: string | undefined;
682
682
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
683
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
683
+ 'aria-haspopup'?: boolean | "true" | "false" | "grid" | "dialog" | "menu" | "listbox" | "tree" | undefined;
684
684
  'aria-keyshortcuts'?: string | undefined;
685
685
  'aria-label'?: string | undefined;
686
686
  'aria-labelledby'?: string | undefined;
@@ -875,16 +875,6 @@ export declare const TableBody: import("react").ComponentType<Partial<{
875
875
  } & {
876
876
  readonly attributes: NamedNodeMap;
877
877
  readonly localName: string;
878
- animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
879
- blur: () => void;
880
- click: () => void;
881
- focus: (options?: FocusOptions | undefined) => void;
882
- scroll: {
883
- (options?: ScrollToOptions | undefined): void;
884
- (x: number, y: number): void;
885
- };
886
- autofocus: boolean;
887
- normalize: () => void;
888
878
  readonly renderRoot: HTMLElement | ShadowRoot;
889
879
  isUpdatePending: boolean;
890
880
  hasUpdated: boolean;
@@ -907,6 +897,7 @@ export declare const TableBody: import("react").ComponentType<Partial<{
907
897
  outerText: string;
908
898
  spellcheck: boolean;
909
899
  attachInternals: () => ElementInternals;
900
+ click: () => void;
910
901
  addEventListener: {
911
902
  <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
912
903
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
@@ -970,6 +961,10 @@ export declare const TableBody: import("react").ComponentType<Partial<{
970
961
  removeAttributeNode: (attr: Attr) => Attr;
971
962
  requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
972
963
  requestPointerLock: () => void;
964
+ scroll: {
965
+ (options?: ScrollToOptions | undefined): void;
966
+ (x: number, y: number): void;
967
+ };
973
968
  scrollBy: {
974
969
  (options?: ScrollToOptions | undefined): void;
975
970
  (x: number, y: number): void;
@@ -1011,6 +1006,7 @@ export declare const TableBody: import("react").ComponentType<Partial<{
1011
1006
  isSameNode: (otherNode: Node | null) => boolean;
1012
1007
  lookupNamespaceURI: (prefix: string | null) => string | null;
1013
1008
  lookupPrefix: (namespace: string | null) => string | null;
1009
+ normalize: () => void;
1014
1010
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
1015
1011
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
1016
1012
  readonly ATTRIBUTE_NODE: number;
@@ -1068,6 +1064,7 @@ export declare const TableBody: import("react").ComponentType<Partial<{
1068
1064
  ariaValueMin: string | null;
1069
1065
  ariaValueNow: string | null;
1070
1066
  ariaValueText: string | null;
1067
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
1071
1068
  getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
1072
1069
  after: (...nodes: (string | Node)[]) => void;
1073
1070
  before: (...nodes: (string | Node)[]) => void;
@@ -1187,7 +1184,10 @@ export declare const TableBody: import("react").ComponentType<Partial<{
1187
1184
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1188
1185
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1189
1186
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1187
+ autofocus: boolean;
1190
1188
  readonly dataset: DOMStringMap;
1189
+ blur: () => void;
1190
+ focus: (options?: FocusOptions | undefined) => void;
1191
1191
  readonly renderOptions: import("lit-html").RenderOptions;
1192
1192
  isLTR: boolean;
1193
1193
  hasVisibleFocusInTree: () => boolean;
@@ -1195,23 +1195,22 @@ export declare const TableBody: import("react").ComponentType<Partial<{
1195
1195
  export declare const TableCell: import("react").ComponentType<Partial<{
1196
1196
  dir?: string | undefined;
1197
1197
  role?: import("react").AriaRole | undefined;
1198
- slot?: string | undefined;
1199
- style?: import("react").CSSProperties | undefined;
1200
- title?: string | undefined;
1201
- tabIndex?: number | undefined;
1202
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
1203
1198
  accessKey?: string | undefined;
1204
1199
  draggable?: (boolean | "true" | "false") | undefined;
1205
1200
  hidden?: boolean | undefined;
1206
1201
  lang?: string | undefined;
1202
+ title?: string | undefined;
1207
1203
  translate?: "yes" | "no" | undefined;
1208
1204
  className?: string | undefined;
1209
1205
  id?: string | undefined;
1210
1206
  prefix?: string | undefined;
1207
+ slot?: string | undefined;
1211
1208
  children?: import("react").ReactNode;
1209
+ style?: import("react").CSSProperties | undefined;
1212
1210
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
1213
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1211
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1214
1212
  nonce?: string | undefined;
1213
+ tabIndex?: number | undefined;
1215
1214
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
1216
1215
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1217
1216
  'aria-selected'?: (boolean | "true" | "false") | undefined;
@@ -1260,16 +1259,17 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1260
1259
  'aria-colindextext'?: string | undefined;
1261
1260
  'aria-colspan'?: number | undefined;
1262
1261
  'aria-controls'?: string | undefined;
1263
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
1262
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
1264
1263
  'aria-describedby'?: string | undefined;
1265
1264
  'aria-description'?: string | undefined;
1266
1265
  'aria-details'?: string | undefined;
1267
- 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
1266
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
1267
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
1268
1268
  'aria-errormessage'?: string | undefined;
1269
1269
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
1270
1270
  'aria-flowto'?: string | undefined;
1271
1271
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
1272
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
1272
+ 'aria-haspopup'?: boolean | "true" | "false" | "grid" | "dialog" | "menu" | "listbox" | "tree" | undefined;
1273
1273
  'aria-keyshortcuts'?: string | undefined;
1274
1274
  'aria-label'?: string | undefined;
1275
1275
  'aria-labelledby'?: string | undefined;
@@ -1464,16 +1464,6 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1464
1464
  } & {
1465
1465
  readonly attributes: NamedNodeMap;
1466
1466
  readonly localName: string;
1467
- animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
1468
- blur: () => void;
1469
- click: () => void;
1470
- focus: (options?: FocusOptions | undefined) => void;
1471
- scroll: {
1472
- (options?: ScrollToOptions | undefined): void;
1473
- (x: number, y: number): void;
1474
- };
1475
- autofocus: boolean;
1476
- normalize: () => void;
1477
1467
  readonly renderRoot: HTMLElement | ShadowRoot;
1478
1468
  isUpdatePending: boolean;
1479
1469
  hasUpdated: boolean;
@@ -1496,6 +1486,7 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1496
1486
  outerText: string;
1497
1487
  spellcheck: boolean;
1498
1488
  attachInternals: () => ElementInternals;
1489
+ click: () => void;
1499
1490
  addEventListener: {
1500
1491
  <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
1501
1492
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
@@ -1559,6 +1550,10 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1559
1550
  removeAttributeNode: (attr: Attr) => Attr;
1560
1551
  requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
1561
1552
  requestPointerLock: () => void;
1553
+ scroll: {
1554
+ (options?: ScrollToOptions | undefined): void;
1555
+ (x: number, y: number): void;
1556
+ };
1562
1557
  scrollBy: {
1563
1558
  (options?: ScrollToOptions | undefined): void;
1564
1559
  (x: number, y: number): void;
@@ -1600,6 +1595,7 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1600
1595
  isSameNode: (otherNode: Node | null) => boolean;
1601
1596
  lookupNamespaceURI: (prefix: string | null) => string | null;
1602
1597
  lookupPrefix: (namespace: string | null) => string | null;
1598
+ normalize: () => void;
1603
1599
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
1604
1600
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
1605
1601
  readonly ATTRIBUTE_NODE: number;
@@ -1657,6 +1653,7 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1657
1653
  ariaValueMin: string | null;
1658
1654
  ariaValueNow: string | null;
1659
1655
  ariaValueText: string | null;
1656
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
1660
1657
  getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
1661
1658
  after: (...nodes: (string | Node)[]) => void;
1662
1659
  before: (...nodes: (string | Node)[]) => void;
@@ -1776,7 +1773,10 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1776
1773
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1777
1774
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1778
1775
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1776
+ autofocus: boolean;
1779
1777
  readonly dataset: DOMStringMap;
1778
+ blur: () => void;
1779
+ focus: (options?: FocusOptions | undefined) => void;
1780
1780
  readonly renderOptions: import("lit-html").RenderOptions;
1781
1781
  isLTR: boolean;
1782
1782
  hasVisibleFocusInTree: () => boolean;
@@ -1784,23 +1784,22 @@ export declare const TableCell: import("react").ComponentType<Partial<{
1784
1784
  export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
1785
1785
  dir?: string | undefined;
1786
1786
  role?: import("react").AriaRole | undefined;
1787
- slot?: string | undefined;
1788
- style?: import("react").CSSProperties | undefined;
1789
- title?: string | undefined;
1790
- tabIndex?: number | undefined;
1791
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
1792
1787
  accessKey?: string | undefined;
1793
1788
  draggable?: (boolean | "true" | "false") | undefined;
1794
1789
  hidden?: boolean | undefined;
1795
1790
  lang?: string | undefined;
1791
+ title?: string | undefined;
1796
1792
  translate?: "yes" | "no" | undefined;
1797
1793
  className?: string | undefined;
1798
1794
  id?: string | undefined;
1799
1795
  prefix?: string | undefined;
1796
+ slot?: string | undefined;
1800
1797
  children?: import("react").ReactNode;
1798
+ style?: import("react").CSSProperties | undefined;
1801
1799
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
1802
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1800
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1803
1801
  nonce?: string | undefined;
1802
+ tabIndex?: number | undefined;
1804
1803
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
1805
1804
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1806
1805
  'aria-selected'?: (boolean | "true" | "false") | undefined;
@@ -1849,16 +1848,17 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
1849
1848
  'aria-colindextext'?: string | undefined;
1850
1849
  'aria-colspan'?: number | undefined;
1851
1850
  'aria-controls'?: string | undefined;
1852
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
1851
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
1853
1852
  'aria-describedby'?: string | undefined;
1854
1853
  'aria-description'?: string | undefined;
1855
1854
  'aria-details'?: string | undefined;
1856
- 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
1855
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
1856
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
1857
1857
  'aria-errormessage'?: string | undefined;
1858
1858
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
1859
1859
  'aria-flowto'?: string | undefined;
1860
1860
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
1861
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
1861
+ 'aria-haspopup'?: boolean | "true" | "false" | "grid" | "dialog" | "menu" | "listbox" | "tree" | undefined;
1862
1862
  'aria-keyshortcuts'?: string | undefined;
1863
1863
  'aria-label'?: string | undefined;
1864
1864
  'aria-labelledby'?: string | undefined;
@@ -2053,17 +2053,6 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2053
2053
  } & {
2054
2054
  readonly attributes: NamedNodeMap;
2055
2055
  readonly localName: string;
2056
- animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
2057
- blur: () => void;
2058
- click: () => void;
2059
- focus: (options?: FocusOptions | undefined) => void;
2060
- scroll: {
2061
- (options?: ScrollToOptions | undefined): void;
2062
- (x: number, y: number): void;
2063
- };
2064
- disabled: boolean;
2065
- autofocus: boolean;
2066
- normalize: () => void;
2067
2056
  checked: boolean;
2068
2057
  readonly renderRoot: HTMLElement | ShadowRoot;
2069
2058
  isUpdatePending: boolean;
@@ -2087,6 +2076,7 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2087
2076
  outerText: string;
2088
2077
  spellcheck: boolean;
2089
2078
  attachInternals: () => ElementInternals;
2079
+ click: () => void;
2090
2080
  addEventListener: {
2091
2081
  <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
2092
2082
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
@@ -2150,6 +2140,10 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2150
2140
  removeAttributeNode: (attr: Attr) => Attr;
2151
2141
  requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
2152
2142
  requestPointerLock: () => void;
2143
+ scroll: {
2144
+ (options?: ScrollToOptions | undefined): void;
2145
+ (x: number, y: number): void;
2146
+ };
2153
2147
  scrollBy: {
2154
2148
  (options?: ScrollToOptions | undefined): void;
2155
2149
  (x: number, y: number): void;
@@ -2191,6 +2185,7 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2191
2185
  isSameNode: (otherNode: Node | null) => boolean;
2192
2186
  lookupNamespaceURI: (prefix: string | null) => string | null;
2193
2187
  lookupPrefix: (namespace: string | null) => string | null;
2188
+ normalize: () => void;
2194
2189
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
2195
2190
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
2196
2191
  readonly ATTRIBUTE_NODE: number;
@@ -2248,6 +2243,7 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2248
2243
  ariaValueMin: string | null;
2249
2244
  ariaValueNow: string | null;
2250
2245
  ariaValueText: string | null;
2246
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
2251
2247
  getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
2252
2248
  after: (...nodes: (string | Node)[]) => void;
2253
2249
  before: (...nodes: (string | Node)[]) => void;
@@ -2367,7 +2363,11 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2367
2363
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2368
2364
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2369
2365
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
2366
+ autofocus: boolean;
2370
2367
  readonly dataset: DOMStringMap;
2368
+ blur: () => void;
2369
+ focus: (options?: FocusOptions | undefined) => void;
2370
+ disabled: boolean;
2371
2371
  indeterminate: boolean;
2372
2372
  emphasized: boolean;
2373
2373
  headCell: boolean;
@@ -2380,23 +2380,22 @@ export declare const TableCheckboxCell: import("react").ComponentType<Partial<{
2380
2380
  export declare const TableHead: import("react").ComponentType<Partial<{
2381
2381
  dir?: string | undefined;
2382
2382
  role?: import("react").AriaRole | undefined;
2383
- slot?: string | undefined;
2384
- style?: import("react").CSSProperties | undefined;
2385
- title?: string | undefined;
2386
- tabIndex?: number | undefined;
2387
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
2388
2383
  accessKey?: string | undefined;
2389
2384
  draggable?: (boolean | "true" | "false") | undefined;
2390
2385
  hidden?: boolean | undefined;
2391
2386
  lang?: string | undefined;
2387
+ title?: string | undefined;
2392
2388
  translate?: "yes" | "no" | undefined;
2393
2389
  className?: string | undefined;
2394
2390
  id?: string | undefined;
2395
2391
  prefix?: string | undefined;
2392
+ slot?: string | undefined;
2396
2393
  children?: import("react").ReactNode;
2394
+ style?: import("react").CSSProperties | undefined;
2397
2395
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
2398
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
2396
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
2399
2397
  nonce?: string | undefined;
2398
+ tabIndex?: number | undefined;
2400
2399
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
2401
2400
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
2402
2401
  'aria-selected'?: (boolean | "true" | "false") | undefined;
@@ -2445,16 +2444,17 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2445
2444
  'aria-colindextext'?: string | undefined;
2446
2445
  'aria-colspan'?: number | undefined;
2447
2446
  'aria-controls'?: string | undefined;
2448
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
2447
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
2449
2448
  'aria-describedby'?: string | undefined;
2450
2449
  'aria-description'?: string | undefined;
2451
2450
  'aria-details'?: string | undefined;
2452
- 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
2451
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
2452
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
2453
2453
  'aria-errormessage'?: string | undefined;
2454
2454
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
2455
2455
  'aria-flowto'?: string | undefined;
2456
2456
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
2457
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
2457
+ 'aria-haspopup'?: boolean | "true" | "false" | "grid" | "dialog" | "menu" | "listbox" | "tree" | undefined;
2458
2458
  'aria-keyshortcuts'?: string | undefined;
2459
2459
  'aria-label'?: string | undefined;
2460
2460
  'aria-labelledby'?: string | undefined;
@@ -2649,16 +2649,6 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2649
2649
  } & {
2650
2650
  readonly attributes: NamedNodeMap;
2651
2651
  readonly localName: string;
2652
- animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
2653
- blur: () => void;
2654
- click: () => void;
2655
- focus: (options?: FocusOptions | undefined) => void;
2656
- scroll: {
2657
- (options?: ScrollToOptions | undefined): void;
2658
- (x: number, y: number): void;
2659
- };
2660
- autofocus: boolean;
2661
- normalize: () => void;
2662
2652
  readonly renderRoot: HTMLElement | ShadowRoot;
2663
2653
  isUpdatePending: boolean;
2664
2654
  hasUpdated: boolean;
@@ -2681,6 +2671,7 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2681
2671
  outerText: string;
2682
2672
  spellcheck: boolean;
2683
2673
  attachInternals: () => ElementInternals;
2674
+ click: () => void;
2684
2675
  addEventListener: {
2685
2676
  <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
2686
2677
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
@@ -2744,6 +2735,10 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2744
2735
  removeAttributeNode: (attr: Attr) => Attr;
2745
2736
  requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
2746
2737
  requestPointerLock: () => void;
2738
+ scroll: {
2739
+ (options?: ScrollToOptions | undefined): void;
2740
+ (x: number, y: number): void;
2741
+ };
2747
2742
  scrollBy: {
2748
2743
  (options?: ScrollToOptions | undefined): void;
2749
2744
  (x: number, y: number): void;
@@ -2785,6 +2780,7 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2785
2780
  isSameNode: (otherNode: Node | null) => boolean;
2786
2781
  lookupNamespaceURI: (prefix: string | null) => string | null;
2787
2782
  lookupPrefix: (namespace: string | null) => string | null;
2783
+ normalize: () => void;
2788
2784
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
2789
2785
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
2790
2786
  readonly ATTRIBUTE_NODE: number;
@@ -2842,6 +2838,7 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2842
2838
  ariaValueMin: string | null;
2843
2839
  ariaValueNow: string | null;
2844
2840
  ariaValueText: string | null;
2841
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
2845
2842
  getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
2846
2843
  after: (...nodes: (string | Node)[]) => void;
2847
2844
  before: (...nodes: (string | Node)[]) => void;
@@ -2961,7 +2958,10 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2961
2958
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2962
2959
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2963
2960
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
2961
+ autofocus: boolean;
2964
2962
  readonly dataset: DOMStringMap;
2963
+ blur: () => void;
2964
+ focus: (options?: FocusOptions | undefined) => void;
2965
2965
  selected?: boolean | undefined;
2966
2966
  readonly renderOptions: import("lit-html").RenderOptions;
2967
2967
  isLTR: boolean;
@@ -2970,23 +2970,22 @@ export declare const TableHead: import("react").ComponentType<Partial<{
2970
2970
  export declare const TableHeadCell: import("react").ComponentType<Partial<{
2971
2971
  dir?: string | undefined;
2972
2972
  role?: import("react").AriaRole | undefined;
2973
- slot?: string | undefined;
2974
- style?: import("react").CSSProperties | undefined;
2975
- title?: string | undefined;
2976
- tabIndex?: number | undefined;
2977
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
2978
2973
  accessKey?: string | undefined;
2979
2974
  draggable?: (boolean | "true" | "false") | undefined;
2980
2975
  hidden?: boolean | undefined;
2981
2976
  lang?: string | undefined;
2977
+ title?: string | undefined;
2982
2978
  translate?: "yes" | "no" | undefined;
2983
2979
  className?: string | undefined;
2984
2980
  id?: string | undefined;
2985
2981
  prefix?: string | undefined;
2982
+ slot?: string | undefined;
2986
2983
  children?: import("react").ReactNode;
2984
+ style?: import("react").CSSProperties | undefined;
2987
2985
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
2988
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
2986
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
2989
2987
  nonce?: string | undefined;
2988
+ tabIndex?: number | undefined;
2990
2989
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
2991
2990
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
2992
2991
  'aria-selected'?: (boolean | "true" | "false") | undefined;
@@ -3035,16 +3034,17 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3035
3034
  'aria-colindextext'?: string | undefined;
3036
3035
  'aria-colspan'?: number | undefined;
3037
3036
  'aria-controls'?: string | undefined;
3038
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
3037
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
3039
3038
  'aria-describedby'?: string | undefined;
3040
3039
  'aria-description'?: string | undefined;
3041
3040
  'aria-details'?: string | undefined;
3042
- 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
3041
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
3042
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
3043
3043
  'aria-errormessage'?: string | undefined;
3044
3044
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
3045
3045
  'aria-flowto'?: string | undefined;
3046
3046
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
3047
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
3047
+ 'aria-haspopup'?: boolean | "true" | "false" | "grid" | "dialog" | "menu" | "listbox" | "tree" | undefined;
3048
3048
  'aria-keyshortcuts'?: string | undefined;
3049
3049
  'aria-label'?: string | undefined;
3050
3050
  'aria-labelledby'?: string | undefined;
@@ -3239,16 +3239,6 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3239
3239
  } & {
3240
3240
  readonly attributes: NamedNodeMap;
3241
3241
  readonly localName: string;
3242
- animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
3243
- blur: () => void;
3244
- click: () => void;
3245
- focus: (options?: FocusOptions | undefined) => void;
3246
- scroll: {
3247
- (options?: ScrollToOptions | undefined): void;
3248
- (x: number, y: number): void;
3249
- };
3250
- autofocus: boolean;
3251
- normalize: () => void;
3252
3242
  readonly renderRoot: HTMLElement | ShadowRoot;
3253
3243
  isUpdatePending: boolean;
3254
3244
  hasUpdated: boolean;
@@ -3271,6 +3261,7 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3271
3261
  outerText: string;
3272
3262
  spellcheck: boolean;
3273
3263
  attachInternals: () => ElementInternals;
3264
+ click: () => void;
3274
3265
  addEventListener: {
3275
3266
  <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
3276
3267
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
@@ -3334,6 +3325,10 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3334
3325
  removeAttributeNode: (attr: Attr) => Attr;
3335
3326
  requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
3336
3327
  requestPointerLock: () => void;
3328
+ scroll: {
3329
+ (options?: ScrollToOptions | undefined): void;
3330
+ (x: number, y: number): void;
3331
+ };
3337
3332
  scrollBy: {
3338
3333
  (options?: ScrollToOptions | undefined): void;
3339
3334
  (x: number, y: number): void;
@@ -3375,6 +3370,7 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3375
3370
  isSameNode: (otherNode: Node | null) => boolean;
3376
3371
  lookupNamespaceURI: (prefix: string | null) => string | null;
3377
3372
  lookupPrefix: (namespace: string | null) => string | null;
3373
+ normalize: () => void;
3378
3374
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
3379
3375
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
3380
3376
  readonly ATTRIBUTE_NODE: number;
@@ -3432,6 +3428,7 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3432
3428
  ariaValueMin: string | null;
3433
3429
  ariaValueNow: string | null;
3434
3430
  ariaValueText: string | null;
3431
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
3435
3432
  getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
3436
3433
  after: (...nodes: (string | Node)[]) => void;
3437
3434
  before: (...nodes: (string | Node)[]) => void;
@@ -3551,12 +3548,15 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3551
3548
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
3552
3549
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
3553
3550
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
3551
+ autofocus: boolean;
3554
3552
  readonly dataset: DOMStringMap;
3553
+ blur: () => void;
3554
+ focus: (options?: FocusOptions | undefined) => void;
3555
3555
  readonly renderOptions: import("lit-html").RenderOptions;
3556
3556
  isLTR: boolean;
3557
3557
  hasVisibleFocusInTree: () => boolean;
3558
3558
  sortable: boolean;
3559
- sortDirection: "desc" | "asc" | undefined;
3559
+ sortDirection: "asc" | "desc" | undefined;
3560
3560
  sortKey: string;
3561
3561
  } & {
3562
3562
  sorted: (e: CustomEvent<any>) => void;
@@ -3564,23 +3564,22 @@ export declare const TableHeadCell: import("react").ComponentType<Partial<{
3564
3564
  export declare const TableRow: import("react").ComponentType<Partial<{
3565
3565
  dir?: string | undefined;
3566
3566
  role?: import("react").AriaRole | undefined;
3567
- slot?: string | undefined;
3568
- style?: import("react").CSSProperties | undefined;
3569
- title?: string | undefined;
3570
- tabIndex?: number | undefined;
3571
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
3572
3567
  accessKey?: string | undefined;
3573
3568
  draggable?: (boolean | "true" | "false") | undefined;
3574
3569
  hidden?: boolean | undefined;
3575
3570
  lang?: string | undefined;
3571
+ title?: string | undefined;
3576
3572
  translate?: "yes" | "no" | undefined;
3577
3573
  className?: string | undefined;
3578
3574
  id?: string | undefined;
3579
3575
  prefix?: string | undefined;
3576
+ slot?: string | undefined;
3580
3577
  children?: import("react").ReactNode;
3578
+ style?: import("react").CSSProperties | undefined;
3581
3579
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
3582
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
3580
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
3583
3581
  nonce?: string | undefined;
3582
+ tabIndex?: number | undefined;
3584
3583
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
3585
3584
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
3586
3585
  'aria-selected'?: (boolean | "true" | "false") | undefined;
@@ -3629,16 +3628,17 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3629
3628
  'aria-colindextext'?: string | undefined;
3630
3629
  'aria-colspan'?: number | undefined;
3631
3630
  'aria-controls'?: string | undefined;
3632
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
3631
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
3633
3632
  'aria-describedby'?: string | undefined;
3634
3633
  'aria-description'?: string | undefined;
3635
3634
  'aria-details'?: string | undefined;
3636
- 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
3635
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
3636
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
3637
3637
  'aria-errormessage'?: string | undefined;
3638
3638
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
3639
3639
  'aria-flowto'?: string | undefined;
3640
3640
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
3641
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
3641
+ 'aria-haspopup'?: boolean | "true" | "false" | "grid" | "dialog" | "menu" | "listbox" | "tree" | undefined;
3642
3642
  'aria-keyshortcuts'?: string | undefined;
3643
3643
  'aria-label'?: string | undefined;
3644
3644
  'aria-labelledby'?: string | undefined;
@@ -3833,16 +3833,6 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3833
3833
  } & {
3834
3834
  readonly attributes: NamedNodeMap;
3835
3835
  readonly localName: string;
3836
- animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
3837
- blur: () => void;
3838
- click: () => void;
3839
- focus: (options?: FocusOptions | undefined) => void;
3840
- scroll: {
3841
- (options?: ScrollToOptions | undefined): void;
3842
- (x: number, y: number): void;
3843
- };
3844
- autofocus: boolean;
3845
- normalize: () => void;
3846
3836
  readonly renderRoot: HTMLElement | ShadowRoot;
3847
3837
  isUpdatePending: boolean;
3848
3838
  hasUpdated: boolean;
@@ -3865,6 +3855,7 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3865
3855
  outerText: string;
3866
3856
  spellcheck: boolean;
3867
3857
  attachInternals: () => ElementInternals;
3858
+ click: () => void;
3868
3859
  addEventListener: {
3869
3860
  <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
3870
3861
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
@@ -3928,6 +3919,10 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3928
3919
  removeAttributeNode: (attr: Attr) => Attr;
3929
3920
  requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
3930
3921
  requestPointerLock: () => void;
3922
+ scroll: {
3923
+ (options?: ScrollToOptions | undefined): void;
3924
+ (x: number, y: number): void;
3925
+ };
3931
3926
  scrollBy: {
3932
3927
  (options?: ScrollToOptions | undefined): void;
3933
3928
  (x: number, y: number): void;
@@ -3969,6 +3964,7 @@ export declare const TableRow: import("react").ComponentType<Partial<{
3969
3964
  isSameNode: (otherNode: Node | null) => boolean;
3970
3965
  lookupNamespaceURI: (prefix: string | null) => string | null;
3971
3966
  lookupPrefix: (namespace: string | null) => string | null;
3967
+ normalize: () => void;
3972
3968
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
3973
3969
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
3974
3970
  readonly ATTRIBUTE_NODE: number;
@@ -4026,6 +4022,7 @@ export declare const TableRow: import("react").ComponentType<Partial<{
4026
4022
  ariaValueMin: string | null;
4027
4023
  ariaValueNow: string | null;
4028
4024
  ariaValueText: string | null;
4025
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
4029
4026
  getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
4030
4027
  after: (...nodes: (string | Node)[]) => void;
4031
4028
  before: (...nodes: (string | Node)[]) => void;
@@ -4145,7 +4142,10 @@ export declare const TableRow: import("react").ComponentType<Partial<{
4145
4142
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
4146
4143
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
4147
4144
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
4145
+ autofocus: boolean;
4148
4146
  readonly dataset: DOMStringMap;
4147
+ blur: () => void;
4148
+ focus: (options?: FocusOptions | undefined) => void;
4149
4149
  checkboxCells: import("table/src").TableCheckboxCell[];
4150
4150
  selectable: boolean;
4151
4151
  selected: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc-react/table",
3
- "version": "0.40.0",
3
+ "version": "0.40.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.40.0"
33
+ "@spectrum-web-components/table": "^0.40.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": "24d5569a839da94892ecfd125428779587ffb1f5"
43
+ "gitHead": "a75c4f83094c505d64658dbc7de20b5f18a8fde1"
44
44
  }