react-magma-dom 4.7.0-next.12 → 4.7.0-next.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +22 -22
- package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +44 -44
- package/dist/components/Datagrid/Datagrid.stories.d.ts +8 -8
- package/dist/components/IconButton/IconButton.stories.d.ts +4 -4
- package/dist/components/Input/Input.stories.d.ts +69 -69
- package/dist/components/Stepper/ResponsiveStepperContainer.d.ts +17 -0
- package/dist/components/Stepper/Step.d.ts +5 -1
- package/dist/components/Stepper/Stepper.d.ts +13 -0
- package/dist/components/Stepper/Stepper.stories.d.ts +2 -0
- package/dist/components/Stepper/index.d.ts +1 -0
- package/dist/components/Table/Table.stories.d.ts +132 -132
- package/dist/components/Tag/Tag.stories.d.ts +58 -58
- package/dist/components/Textarea/Textarea.stories.d.ts +22 -22
- package/dist/components/ToggleButton/ToggleButton.stories.d.ts +88 -88
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +44 -44
- package/dist/esm/index.js +237 -144
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/properties.json +72 -6
- package/dist/react-magma-dom.cjs.development.js +215 -104
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -33,16 +33,16 @@ export declare const ControlledPagination: {
|
|
|
33
33
|
suppressHydrationWarning?: boolean;
|
|
34
34
|
accessKey?: string;
|
|
35
35
|
className?: string;
|
|
36
|
-
contentEditable?: boolean | "
|
|
36
|
+
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
37
37
|
contextMenu?: string;
|
|
38
38
|
dir?: string;
|
|
39
|
-
draggable?: boolean | "
|
|
39
|
+
draggable?: boolean | "true" | "false";
|
|
40
40
|
hidden?: boolean;
|
|
41
41
|
id?: string;
|
|
42
42
|
lang?: string;
|
|
43
43
|
placeholder?: string;
|
|
44
44
|
slot?: string;
|
|
45
|
-
spellCheck?: boolean | "
|
|
45
|
+
spellCheck?: boolean | "true" | "false";
|
|
46
46
|
style?: React.CSSProperties;
|
|
47
47
|
tabIndex?: number;
|
|
48
48
|
title?: string;
|
|
@@ -72,47 +72,47 @@ export declare const ControlledPagination: {
|
|
|
72
72
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
73
73
|
is?: string;
|
|
74
74
|
'aria-activedescendant'?: string;
|
|
75
|
-
'aria-atomic'?: boolean | "
|
|
76
|
-
'aria-autocomplete'?: "
|
|
77
|
-
'aria-busy'?: boolean | "
|
|
78
|
-
'aria-checked'?: boolean | "
|
|
75
|
+
'aria-atomic'?: boolean | "true" | "false";
|
|
76
|
+
'aria-autocomplete'?: "list" | "none" | "inline" | "both";
|
|
77
|
+
'aria-busy'?: boolean | "true" | "false";
|
|
78
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed";
|
|
79
79
|
'aria-colcount'?: number;
|
|
80
80
|
'aria-colindex'?: number;
|
|
81
81
|
'aria-colspan'?: number;
|
|
82
82
|
'aria-controls'?: string;
|
|
83
|
-
'aria-current'?: boolean | "time" | "
|
|
83
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
84
84
|
'aria-describedby'?: string;
|
|
85
85
|
'aria-details'?: string;
|
|
86
|
-
'aria-disabled'?: boolean | "
|
|
86
|
+
'aria-disabled'?: boolean | "true" | "false";
|
|
87
87
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
88
88
|
'aria-errormessage'?: string;
|
|
89
|
-
'aria-expanded'?: boolean | "
|
|
89
|
+
'aria-expanded'?: boolean | "true" | "false";
|
|
90
90
|
'aria-flowto'?: string;
|
|
91
|
-
'aria-grabbed'?: boolean | "
|
|
92
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
93
|
-
'aria-hidden'?: boolean | "
|
|
94
|
-
'aria-invalid'?: boolean | "
|
|
91
|
+
'aria-grabbed'?: boolean | "true" | "false";
|
|
92
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
93
|
+
'aria-hidden'?: boolean | "true" | "false";
|
|
94
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
95
95
|
'aria-keyshortcuts'?: string;
|
|
96
96
|
'aria-label'?: string;
|
|
97
97
|
'aria-labelledby'?: string;
|
|
98
98
|
'aria-level'?: number;
|
|
99
99
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
100
|
-
'aria-modal'?: boolean | "
|
|
101
|
-
'aria-multiline'?: boolean | "
|
|
102
|
-
'aria-multiselectable'?: boolean | "
|
|
100
|
+
'aria-modal'?: boolean | "true" | "false";
|
|
101
|
+
'aria-multiline'?: boolean | "true" | "false";
|
|
102
|
+
'aria-multiselectable'?: boolean | "true" | "false";
|
|
103
103
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
104
104
|
'aria-owns'?: string;
|
|
105
105
|
'aria-placeholder'?: string;
|
|
106
106
|
'aria-posinset'?: number;
|
|
107
|
-
'aria-pressed'?: boolean | "
|
|
108
|
-
'aria-readonly'?: boolean | "
|
|
109
|
-
'aria-relevant'?: "text" | "
|
|
110
|
-
'aria-required'?: boolean | "
|
|
107
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
108
|
+
'aria-readonly'?: boolean | "true" | "false";
|
|
109
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
110
|
+
'aria-required'?: boolean | "true" | "false";
|
|
111
111
|
'aria-roledescription'?: string;
|
|
112
112
|
'aria-rowcount'?: number;
|
|
113
113
|
'aria-rowindex'?: number;
|
|
114
114
|
'aria-rowspan'?: number;
|
|
115
|
-
'aria-selected'?: boolean | "
|
|
115
|
+
'aria-selected'?: boolean | "true" | "false";
|
|
116
116
|
'aria-setsize'?: number;
|
|
117
117
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
118
118
|
'aria-valuemax'?: number;
|
|
@@ -316,16 +316,16 @@ export declare const PaginationInverse: {
|
|
|
316
316
|
suppressHydrationWarning?: boolean;
|
|
317
317
|
accessKey?: string;
|
|
318
318
|
className?: string;
|
|
319
|
-
contentEditable?: boolean | "
|
|
319
|
+
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
320
320
|
contextMenu?: string;
|
|
321
321
|
dir?: string;
|
|
322
|
-
draggable?: boolean | "
|
|
322
|
+
draggable?: boolean | "true" | "false";
|
|
323
323
|
hidden?: boolean;
|
|
324
324
|
id?: string;
|
|
325
325
|
lang?: string;
|
|
326
326
|
placeholder?: string;
|
|
327
327
|
slot?: string;
|
|
328
|
-
spellCheck?: boolean | "
|
|
328
|
+
spellCheck?: boolean | "true" | "false";
|
|
329
329
|
style?: React.CSSProperties;
|
|
330
330
|
tabIndex?: number;
|
|
331
331
|
title?: string;
|
|
@@ -355,47 +355,47 @@ export declare const PaginationInverse: {
|
|
|
355
355
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
356
356
|
is?: string;
|
|
357
357
|
'aria-activedescendant'?: string;
|
|
358
|
-
'aria-atomic'?: boolean | "
|
|
359
|
-
'aria-autocomplete'?: "
|
|
360
|
-
'aria-busy'?: boolean | "
|
|
361
|
-
'aria-checked'?: boolean | "
|
|
358
|
+
'aria-atomic'?: boolean | "true" | "false";
|
|
359
|
+
'aria-autocomplete'?: "list" | "none" | "inline" | "both";
|
|
360
|
+
'aria-busy'?: boolean | "true" | "false";
|
|
361
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed";
|
|
362
362
|
'aria-colcount'?: number;
|
|
363
363
|
'aria-colindex'?: number;
|
|
364
364
|
'aria-colspan'?: number;
|
|
365
365
|
'aria-controls'?: string;
|
|
366
|
-
'aria-current'?: boolean | "time" | "
|
|
366
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
367
367
|
'aria-describedby'?: string;
|
|
368
368
|
'aria-details'?: string;
|
|
369
|
-
'aria-disabled'?: boolean | "
|
|
369
|
+
'aria-disabled'?: boolean | "true" | "false";
|
|
370
370
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
371
371
|
'aria-errormessage'?: string;
|
|
372
|
-
'aria-expanded'?: boolean | "
|
|
372
|
+
'aria-expanded'?: boolean | "true" | "false";
|
|
373
373
|
'aria-flowto'?: string;
|
|
374
|
-
'aria-grabbed'?: boolean | "
|
|
375
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
376
|
-
'aria-hidden'?: boolean | "
|
|
377
|
-
'aria-invalid'?: boolean | "
|
|
374
|
+
'aria-grabbed'?: boolean | "true" | "false";
|
|
375
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
376
|
+
'aria-hidden'?: boolean | "true" | "false";
|
|
377
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
378
378
|
'aria-keyshortcuts'?: string;
|
|
379
379
|
'aria-label'?: string;
|
|
380
380
|
'aria-labelledby'?: string;
|
|
381
381
|
'aria-level'?: number;
|
|
382
382
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
383
|
-
'aria-modal'?: boolean | "
|
|
384
|
-
'aria-multiline'?: boolean | "
|
|
385
|
-
'aria-multiselectable'?: boolean | "
|
|
383
|
+
'aria-modal'?: boolean | "true" | "false";
|
|
384
|
+
'aria-multiline'?: boolean | "true" | "false";
|
|
385
|
+
'aria-multiselectable'?: boolean | "true" | "false";
|
|
386
386
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
387
387
|
'aria-owns'?: string;
|
|
388
388
|
'aria-placeholder'?: string;
|
|
389
389
|
'aria-posinset'?: number;
|
|
390
|
-
'aria-pressed'?: boolean | "
|
|
391
|
-
'aria-readonly'?: boolean | "
|
|
392
|
-
'aria-relevant'?: "text" | "
|
|
393
|
-
'aria-required'?: boolean | "
|
|
390
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
391
|
+
'aria-readonly'?: boolean | "true" | "false";
|
|
392
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
393
|
+
'aria-required'?: boolean | "true" | "false";
|
|
394
394
|
'aria-roledescription'?: string;
|
|
395
395
|
'aria-rowcount'?: number;
|
|
396
396
|
'aria-rowindex'?: number;
|
|
397
397
|
'aria-rowspan'?: number;
|
|
398
|
-
'aria-selected'?: boolean | "
|
|
398
|
+
'aria-selected'?: boolean | "true" | "false";
|
|
399
399
|
'aria-setsize'?: number;
|
|
400
400
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
401
401
|
'aria-valuemax'?: number;
|
|
@@ -590,16 +590,16 @@ export declare const RowColors: {
|
|
|
590
590
|
suppressHydrationWarning?: boolean;
|
|
591
591
|
accessKey?: string;
|
|
592
592
|
className?: string;
|
|
593
|
-
contentEditable?: boolean | "
|
|
593
|
+
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
594
594
|
contextMenu?: string;
|
|
595
595
|
dir?: string;
|
|
596
|
-
draggable?: boolean | "
|
|
596
|
+
draggable?: boolean | "true" | "false";
|
|
597
597
|
hidden?: boolean;
|
|
598
598
|
id?: string;
|
|
599
599
|
lang?: string;
|
|
600
600
|
placeholder?: string;
|
|
601
601
|
slot?: string;
|
|
602
|
-
spellCheck?: boolean | "
|
|
602
|
+
spellCheck?: boolean | "true" | "false";
|
|
603
603
|
style?: React.CSSProperties;
|
|
604
604
|
tabIndex?: number;
|
|
605
605
|
title?: string;
|
|
@@ -629,47 +629,47 @@ export declare const RowColors: {
|
|
|
629
629
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
630
630
|
is?: string;
|
|
631
631
|
'aria-activedescendant'?: string;
|
|
632
|
-
'aria-atomic'?: boolean | "
|
|
633
|
-
'aria-autocomplete'?: "
|
|
634
|
-
'aria-busy'?: boolean | "
|
|
635
|
-
'aria-checked'?: boolean | "
|
|
632
|
+
'aria-atomic'?: boolean | "true" | "false";
|
|
633
|
+
'aria-autocomplete'?: "list" | "none" | "inline" | "both";
|
|
634
|
+
'aria-busy'?: boolean | "true" | "false";
|
|
635
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed";
|
|
636
636
|
'aria-colcount'?: number;
|
|
637
637
|
'aria-colindex'?: number;
|
|
638
638
|
'aria-colspan'?: number;
|
|
639
639
|
'aria-controls'?: string;
|
|
640
|
-
'aria-current'?: boolean | "time" | "
|
|
640
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
641
641
|
'aria-describedby'?: string;
|
|
642
642
|
'aria-details'?: string;
|
|
643
|
-
'aria-disabled'?: boolean | "
|
|
643
|
+
'aria-disabled'?: boolean | "true" | "false";
|
|
644
644
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
645
645
|
'aria-errormessage'?: string;
|
|
646
|
-
'aria-expanded'?: boolean | "
|
|
646
|
+
'aria-expanded'?: boolean | "true" | "false";
|
|
647
647
|
'aria-flowto'?: string;
|
|
648
|
-
'aria-grabbed'?: boolean | "
|
|
649
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
650
|
-
'aria-hidden'?: boolean | "
|
|
651
|
-
'aria-invalid'?: boolean | "
|
|
648
|
+
'aria-grabbed'?: boolean | "true" | "false";
|
|
649
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
650
|
+
'aria-hidden'?: boolean | "true" | "false";
|
|
651
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
652
652
|
'aria-keyshortcuts'?: string;
|
|
653
653
|
'aria-label'?: string;
|
|
654
654
|
'aria-labelledby'?: string;
|
|
655
655
|
'aria-level'?: number;
|
|
656
656
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
657
|
-
'aria-modal'?: boolean | "
|
|
658
|
-
'aria-multiline'?: boolean | "
|
|
659
|
-
'aria-multiselectable'?: boolean | "
|
|
657
|
+
'aria-modal'?: boolean | "true" | "false";
|
|
658
|
+
'aria-multiline'?: boolean | "true" | "false";
|
|
659
|
+
'aria-multiselectable'?: boolean | "true" | "false";
|
|
660
660
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
661
661
|
'aria-owns'?: string;
|
|
662
662
|
'aria-placeholder'?: string;
|
|
663
663
|
'aria-posinset'?: number;
|
|
664
|
-
'aria-pressed'?: boolean | "
|
|
665
|
-
'aria-readonly'?: boolean | "
|
|
666
|
-
'aria-relevant'?: "text" | "
|
|
667
|
-
'aria-required'?: boolean | "
|
|
664
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
665
|
+
'aria-readonly'?: boolean | "true" | "false";
|
|
666
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
667
|
+
'aria-required'?: boolean | "true" | "false";
|
|
668
668
|
'aria-roledescription'?: string;
|
|
669
669
|
'aria-rowcount'?: number;
|
|
670
670
|
'aria-rowindex'?: number;
|
|
671
671
|
'aria-rowspan'?: number;
|
|
672
|
-
'aria-selected'?: boolean | "
|
|
672
|
+
'aria-selected'?: boolean | "true" | "false";
|
|
673
673
|
'aria-setsize'?: number;
|
|
674
674
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
675
675
|
'aria-valuemax'?: number;
|
|
@@ -863,16 +863,16 @@ export declare const RowColorsInverse: {
|
|
|
863
863
|
suppressHydrationWarning?: boolean;
|
|
864
864
|
accessKey?: string;
|
|
865
865
|
className?: string;
|
|
866
|
-
contentEditable?: boolean | "
|
|
866
|
+
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
867
867
|
contextMenu?: string;
|
|
868
868
|
dir?: string;
|
|
869
|
-
draggable?: boolean | "
|
|
869
|
+
draggable?: boolean | "true" | "false";
|
|
870
870
|
hidden?: boolean;
|
|
871
871
|
id?: string;
|
|
872
872
|
lang?: string;
|
|
873
873
|
placeholder?: string;
|
|
874
874
|
slot?: string;
|
|
875
|
-
spellCheck?: boolean | "
|
|
875
|
+
spellCheck?: boolean | "true" | "false";
|
|
876
876
|
style?: React.CSSProperties;
|
|
877
877
|
tabIndex?: number;
|
|
878
878
|
title?: string;
|
|
@@ -902,47 +902,47 @@ export declare const RowColorsInverse: {
|
|
|
902
902
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
903
903
|
is?: string;
|
|
904
904
|
'aria-activedescendant'?: string;
|
|
905
|
-
'aria-atomic'?: boolean | "
|
|
906
|
-
'aria-autocomplete'?: "
|
|
907
|
-
'aria-busy'?: boolean | "
|
|
908
|
-
'aria-checked'?: boolean | "
|
|
905
|
+
'aria-atomic'?: boolean | "true" | "false";
|
|
906
|
+
'aria-autocomplete'?: "list" | "none" | "inline" | "both";
|
|
907
|
+
'aria-busy'?: boolean | "true" | "false";
|
|
908
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed";
|
|
909
909
|
'aria-colcount'?: number;
|
|
910
910
|
'aria-colindex'?: number;
|
|
911
911
|
'aria-colspan'?: number;
|
|
912
912
|
'aria-controls'?: string;
|
|
913
|
-
'aria-current'?: boolean | "time" | "
|
|
913
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
914
914
|
'aria-describedby'?: string;
|
|
915
915
|
'aria-details'?: string;
|
|
916
|
-
'aria-disabled'?: boolean | "
|
|
916
|
+
'aria-disabled'?: boolean | "true" | "false";
|
|
917
917
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
918
918
|
'aria-errormessage'?: string;
|
|
919
|
-
'aria-expanded'?: boolean | "
|
|
919
|
+
'aria-expanded'?: boolean | "true" | "false";
|
|
920
920
|
'aria-flowto'?: string;
|
|
921
|
-
'aria-grabbed'?: boolean | "
|
|
922
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
923
|
-
'aria-hidden'?: boolean | "
|
|
924
|
-
'aria-invalid'?: boolean | "
|
|
921
|
+
'aria-grabbed'?: boolean | "true" | "false";
|
|
922
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
923
|
+
'aria-hidden'?: boolean | "true" | "false";
|
|
924
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
925
925
|
'aria-keyshortcuts'?: string;
|
|
926
926
|
'aria-label'?: string;
|
|
927
927
|
'aria-labelledby'?: string;
|
|
928
928
|
'aria-level'?: number;
|
|
929
929
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
930
|
-
'aria-modal'?: boolean | "
|
|
931
|
-
'aria-multiline'?: boolean | "
|
|
932
|
-
'aria-multiselectable'?: boolean | "
|
|
930
|
+
'aria-modal'?: boolean | "true" | "false";
|
|
931
|
+
'aria-multiline'?: boolean | "true" | "false";
|
|
932
|
+
'aria-multiselectable'?: boolean | "true" | "false";
|
|
933
933
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
934
934
|
'aria-owns'?: string;
|
|
935
935
|
'aria-placeholder'?: string;
|
|
936
936
|
'aria-posinset'?: number;
|
|
937
|
-
'aria-pressed'?: boolean | "
|
|
938
|
-
'aria-readonly'?: boolean | "
|
|
939
|
-
'aria-relevant'?: "text" | "
|
|
940
|
-
'aria-required'?: boolean | "
|
|
937
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
938
|
+
'aria-readonly'?: boolean | "true" | "false";
|
|
939
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
940
|
+
'aria-required'?: boolean | "true" | "false";
|
|
941
941
|
'aria-roledescription'?: string;
|
|
942
942
|
'aria-rowcount'?: number;
|
|
943
943
|
'aria-rowindex'?: number;
|
|
944
944
|
'aria-rowspan'?: number;
|
|
945
|
-
'aria-selected'?: boolean | "
|
|
945
|
+
'aria-selected'?: boolean | "true" | "false";
|
|
946
946
|
'aria-setsize'?: number;
|
|
947
947
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
948
948
|
'aria-valuemax'?: number;
|
|
@@ -1136,16 +1136,16 @@ export declare const Sortable: {
|
|
|
1136
1136
|
suppressHydrationWarning?: boolean;
|
|
1137
1137
|
accessKey?: string;
|
|
1138
1138
|
className?: string;
|
|
1139
|
-
contentEditable?: boolean | "
|
|
1139
|
+
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
1140
1140
|
contextMenu?: string;
|
|
1141
1141
|
dir?: string;
|
|
1142
|
-
draggable?: boolean | "
|
|
1142
|
+
draggable?: boolean | "true" | "false";
|
|
1143
1143
|
hidden?: boolean;
|
|
1144
1144
|
id?: string;
|
|
1145
1145
|
lang?: string;
|
|
1146
1146
|
placeholder?: string;
|
|
1147
1147
|
slot?: string;
|
|
1148
|
-
spellCheck?: boolean | "
|
|
1148
|
+
spellCheck?: boolean | "true" | "false";
|
|
1149
1149
|
style?: React.CSSProperties;
|
|
1150
1150
|
tabIndex?: number;
|
|
1151
1151
|
title?: string;
|
|
@@ -1175,47 +1175,47 @@ export declare const Sortable: {
|
|
|
1175
1175
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
1176
1176
|
is?: string;
|
|
1177
1177
|
'aria-activedescendant'?: string;
|
|
1178
|
-
'aria-atomic'?: boolean | "
|
|
1179
|
-
'aria-autocomplete'?: "
|
|
1180
|
-
'aria-busy'?: boolean | "
|
|
1181
|
-
'aria-checked'?: boolean | "
|
|
1178
|
+
'aria-atomic'?: boolean | "true" | "false";
|
|
1179
|
+
'aria-autocomplete'?: "list" | "none" | "inline" | "both";
|
|
1180
|
+
'aria-busy'?: boolean | "true" | "false";
|
|
1181
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed";
|
|
1182
1182
|
'aria-colcount'?: number;
|
|
1183
1183
|
'aria-colindex'?: number;
|
|
1184
1184
|
'aria-colspan'?: number;
|
|
1185
1185
|
'aria-controls'?: string;
|
|
1186
|
-
'aria-current'?: boolean | "time" | "
|
|
1186
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
1187
1187
|
'aria-describedby'?: string;
|
|
1188
1188
|
'aria-details'?: string;
|
|
1189
|
-
'aria-disabled'?: boolean | "
|
|
1189
|
+
'aria-disabled'?: boolean | "true" | "false";
|
|
1190
1190
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
1191
1191
|
'aria-errormessage'?: string;
|
|
1192
|
-
'aria-expanded'?: boolean | "
|
|
1192
|
+
'aria-expanded'?: boolean | "true" | "false";
|
|
1193
1193
|
'aria-flowto'?: string;
|
|
1194
|
-
'aria-grabbed'?: boolean | "
|
|
1195
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
1196
|
-
'aria-hidden'?: boolean | "
|
|
1197
|
-
'aria-invalid'?: boolean | "
|
|
1194
|
+
'aria-grabbed'?: boolean | "true" | "false";
|
|
1195
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
1196
|
+
'aria-hidden'?: boolean | "true" | "false";
|
|
1197
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
1198
1198
|
'aria-keyshortcuts'?: string;
|
|
1199
1199
|
'aria-label'?: string;
|
|
1200
1200
|
'aria-labelledby'?: string;
|
|
1201
1201
|
'aria-level'?: number;
|
|
1202
1202
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
1203
|
-
'aria-modal'?: boolean | "
|
|
1204
|
-
'aria-multiline'?: boolean | "
|
|
1205
|
-
'aria-multiselectable'?: boolean | "
|
|
1203
|
+
'aria-modal'?: boolean | "true" | "false";
|
|
1204
|
+
'aria-multiline'?: boolean | "true" | "false";
|
|
1205
|
+
'aria-multiselectable'?: boolean | "true" | "false";
|
|
1206
1206
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
1207
1207
|
'aria-owns'?: string;
|
|
1208
1208
|
'aria-placeholder'?: string;
|
|
1209
1209
|
'aria-posinset'?: number;
|
|
1210
|
-
'aria-pressed'?: boolean | "
|
|
1211
|
-
'aria-readonly'?: boolean | "
|
|
1212
|
-
'aria-relevant'?: "text" | "
|
|
1213
|
-
'aria-required'?: boolean | "
|
|
1210
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
1211
|
+
'aria-readonly'?: boolean | "true" | "false";
|
|
1212
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
1213
|
+
'aria-required'?: boolean | "true" | "false";
|
|
1214
1214
|
'aria-roledescription'?: string;
|
|
1215
1215
|
'aria-rowcount'?: number;
|
|
1216
1216
|
'aria-rowindex'?: number;
|
|
1217
1217
|
'aria-rowspan'?: number;
|
|
1218
|
-
'aria-selected'?: boolean | "
|
|
1218
|
+
'aria-selected'?: boolean | "true" | "false";
|
|
1219
1219
|
'aria-setsize'?: number;
|
|
1220
1220
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
1221
1221
|
'aria-valuemax'?: number;
|
|
@@ -1409,16 +1409,16 @@ export declare const WithDropdown: {
|
|
|
1409
1409
|
suppressHydrationWarning?: boolean;
|
|
1410
1410
|
accessKey?: string;
|
|
1411
1411
|
className?: string;
|
|
1412
|
-
contentEditable?: boolean | "
|
|
1412
|
+
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
1413
1413
|
contextMenu?: string;
|
|
1414
1414
|
dir?: string;
|
|
1415
|
-
draggable?: boolean | "
|
|
1415
|
+
draggable?: boolean | "true" | "false";
|
|
1416
1416
|
hidden?: boolean;
|
|
1417
1417
|
id?: string;
|
|
1418
1418
|
lang?: string;
|
|
1419
1419
|
placeholder?: string;
|
|
1420
1420
|
slot?: string;
|
|
1421
|
-
spellCheck?: boolean | "
|
|
1421
|
+
spellCheck?: boolean | "true" | "false";
|
|
1422
1422
|
style?: React.CSSProperties;
|
|
1423
1423
|
tabIndex?: number;
|
|
1424
1424
|
title?: string;
|
|
@@ -1448,47 +1448,47 @@ export declare const WithDropdown: {
|
|
|
1448
1448
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
1449
1449
|
is?: string;
|
|
1450
1450
|
'aria-activedescendant'?: string;
|
|
1451
|
-
'aria-atomic'?: boolean | "
|
|
1452
|
-
'aria-autocomplete'?: "
|
|
1453
|
-
'aria-busy'?: boolean | "
|
|
1454
|
-
'aria-checked'?: boolean | "
|
|
1451
|
+
'aria-atomic'?: boolean | "true" | "false";
|
|
1452
|
+
'aria-autocomplete'?: "list" | "none" | "inline" | "both";
|
|
1453
|
+
'aria-busy'?: boolean | "true" | "false";
|
|
1454
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed";
|
|
1455
1455
|
'aria-colcount'?: number;
|
|
1456
1456
|
'aria-colindex'?: number;
|
|
1457
1457
|
'aria-colspan'?: number;
|
|
1458
1458
|
'aria-controls'?: string;
|
|
1459
|
-
'aria-current'?: boolean | "time" | "
|
|
1459
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
1460
1460
|
'aria-describedby'?: string;
|
|
1461
1461
|
'aria-details'?: string;
|
|
1462
|
-
'aria-disabled'?: boolean | "
|
|
1462
|
+
'aria-disabled'?: boolean | "true" | "false";
|
|
1463
1463
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
1464
1464
|
'aria-errormessage'?: string;
|
|
1465
|
-
'aria-expanded'?: boolean | "
|
|
1465
|
+
'aria-expanded'?: boolean | "true" | "false";
|
|
1466
1466
|
'aria-flowto'?: string;
|
|
1467
|
-
'aria-grabbed'?: boolean | "
|
|
1468
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
1469
|
-
'aria-hidden'?: boolean | "
|
|
1470
|
-
'aria-invalid'?: boolean | "
|
|
1467
|
+
'aria-grabbed'?: boolean | "true" | "false";
|
|
1468
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
1469
|
+
'aria-hidden'?: boolean | "true" | "false";
|
|
1470
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
1471
1471
|
'aria-keyshortcuts'?: string;
|
|
1472
1472
|
'aria-label'?: string;
|
|
1473
1473
|
'aria-labelledby'?: string;
|
|
1474
1474
|
'aria-level'?: number;
|
|
1475
1475
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
1476
|
-
'aria-modal'?: boolean | "
|
|
1477
|
-
'aria-multiline'?: boolean | "
|
|
1478
|
-
'aria-multiselectable'?: boolean | "
|
|
1476
|
+
'aria-modal'?: boolean | "true" | "false";
|
|
1477
|
+
'aria-multiline'?: boolean | "true" | "false";
|
|
1478
|
+
'aria-multiselectable'?: boolean | "true" | "false";
|
|
1479
1479
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
1480
1480
|
'aria-owns'?: string;
|
|
1481
1481
|
'aria-placeholder'?: string;
|
|
1482
1482
|
'aria-posinset'?: number;
|
|
1483
|
-
'aria-pressed'?: boolean | "
|
|
1484
|
-
'aria-readonly'?: boolean | "
|
|
1485
|
-
'aria-relevant'?: "text" | "
|
|
1486
|
-
'aria-required'?: boolean | "
|
|
1483
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
1484
|
+
'aria-readonly'?: boolean | "true" | "false";
|
|
1485
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
1486
|
+
'aria-required'?: boolean | "true" | "false";
|
|
1487
1487
|
'aria-roledescription'?: string;
|
|
1488
1488
|
'aria-rowcount'?: number;
|
|
1489
1489
|
'aria-rowindex'?: number;
|
|
1490
1490
|
'aria-rowspan'?: number;
|
|
1491
|
-
'aria-selected'?: boolean | "
|
|
1491
|
+
'aria-selected'?: boolean | "true" | "false";
|
|
1492
1492
|
'aria-setsize'?: number;
|
|
1493
1493
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
1494
1494
|
'aria-valuemax'?: number;
|