react-magma-dom 4.6.0-next.4 → 4.6.0-next.6
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/Button/Button.stories.d.ts +1 -0
- package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +4 -4
- package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +8 -8
- 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 +15 -15
- package/dist/components/Spinner/index.d.ts +5 -0
- package/dist/components/Table/Table.stories.d.ts +24 -24
- package/dist/components/Tag/Tag.stories.d.ts +18 -18
- package/dist/components/Textarea/Textarea.stories.d.ts +4 -4
- package/dist/components/ToggleButton/ToggleButton.stories.d.ts +16 -16
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +8 -8
- package/dist/components/TreeView/TreeView.stories.d.ts +6 -0
- package/dist/components/TreeView/TreeViewContext.d.ts +2 -0
- package/dist/components/TreeView/useTreeView.d.ts +15 -0
- package/dist/esm/index.js +140 -117
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +143 -87
- package/dist/react-magma-dom.cjs.development.js +137 -114
- 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
|
@@ -7,6 +7,11 @@ export interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
7
7
|
*/
|
|
8
8
|
color?: string;
|
|
9
9
|
isInverse?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Use when Spinner does not need the "img" role (ex: button loading state)
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
noRole?: boolean;
|
|
10
15
|
/**
|
|
11
16
|
* The height and width of the spinner. Can be a string or number; if number is provided, the size is in px.
|
|
12
17
|
* @default 16
|
|
@@ -80,7 +80,7 @@ export declare const ControlledPagination: {
|
|
|
80
80
|
'aria-colindex'?: number;
|
|
81
81
|
'aria-colspan'?: number;
|
|
82
82
|
'aria-controls'?: string;
|
|
83
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
83
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
84
84
|
'aria-describedby'?: string;
|
|
85
85
|
'aria-details'?: string;
|
|
86
86
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -89,7 +89,7 @@ export declare const ControlledPagination: {
|
|
|
89
89
|
'aria-expanded'?: boolean | "true" | "false";
|
|
90
90
|
'aria-flowto'?: string;
|
|
91
91
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
92
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
92
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
93
93
|
'aria-hidden'?: boolean | "true" | "false";
|
|
94
94
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
95
95
|
'aria-keyshortcuts'?: string;
|
|
@@ -106,7 +106,7 @@ export declare const ControlledPagination: {
|
|
|
106
106
|
'aria-posinset'?: number;
|
|
107
107
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
108
108
|
'aria-readonly'?: boolean | "true" | "false";
|
|
109
|
-
'aria-relevant'?: "text" | "
|
|
109
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
110
110
|
'aria-required'?: boolean | "true" | "false";
|
|
111
111
|
'aria-roledescription'?: string;
|
|
112
112
|
'aria-rowcount'?: number;
|
|
@@ -114,7 +114,7 @@ export declare const ControlledPagination: {
|
|
|
114
114
|
'aria-rowspan'?: number;
|
|
115
115
|
'aria-selected'?: boolean | "true" | "false";
|
|
116
116
|
'aria-setsize'?: number;
|
|
117
|
-
'aria-sort'?: "
|
|
117
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
118
118
|
'aria-valuemax'?: number;
|
|
119
119
|
'aria-valuemin'?: number;
|
|
120
120
|
'aria-valuenow'?: number;
|
|
@@ -363,7 +363,7 @@ export declare const PaginationInverse: {
|
|
|
363
363
|
'aria-colindex'?: number;
|
|
364
364
|
'aria-colspan'?: number;
|
|
365
365
|
'aria-controls'?: string;
|
|
366
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
366
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
367
367
|
'aria-describedby'?: string;
|
|
368
368
|
'aria-details'?: string;
|
|
369
369
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -372,7 +372,7 @@ export declare const PaginationInverse: {
|
|
|
372
372
|
'aria-expanded'?: boolean | "true" | "false";
|
|
373
373
|
'aria-flowto'?: string;
|
|
374
374
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
375
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
375
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
376
376
|
'aria-hidden'?: boolean | "true" | "false";
|
|
377
377
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
378
378
|
'aria-keyshortcuts'?: string;
|
|
@@ -389,7 +389,7 @@ export declare const PaginationInverse: {
|
|
|
389
389
|
'aria-posinset'?: number;
|
|
390
390
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
391
391
|
'aria-readonly'?: boolean | "true" | "false";
|
|
392
|
-
'aria-relevant'?: "text" | "
|
|
392
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
393
393
|
'aria-required'?: boolean | "true" | "false";
|
|
394
394
|
'aria-roledescription'?: string;
|
|
395
395
|
'aria-rowcount'?: number;
|
|
@@ -397,7 +397,7 @@ export declare const PaginationInverse: {
|
|
|
397
397
|
'aria-rowspan'?: number;
|
|
398
398
|
'aria-selected'?: boolean | "true" | "false";
|
|
399
399
|
'aria-setsize'?: number;
|
|
400
|
-
'aria-sort'?: "
|
|
400
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
401
401
|
'aria-valuemax'?: number;
|
|
402
402
|
'aria-valuemin'?: number;
|
|
403
403
|
'aria-valuenow'?: number;
|
|
@@ -637,7 +637,7 @@ export declare const RowColors: {
|
|
|
637
637
|
'aria-colindex'?: number;
|
|
638
638
|
'aria-colspan'?: number;
|
|
639
639
|
'aria-controls'?: string;
|
|
640
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
640
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
641
641
|
'aria-describedby'?: string;
|
|
642
642
|
'aria-details'?: string;
|
|
643
643
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -646,7 +646,7 @@ export declare const RowColors: {
|
|
|
646
646
|
'aria-expanded'?: boolean | "true" | "false";
|
|
647
647
|
'aria-flowto'?: string;
|
|
648
648
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
649
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
649
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
650
650
|
'aria-hidden'?: boolean | "true" | "false";
|
|
651
651
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
652
652
|
'aria-keyshortcuts'?: string;
|
|
@@ -663,7 +663,7 @@ export declare const RowColors: {
|
|
|
663
663
|
'aria-posinset'?: number;
|
|
664
664
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
665
665
|
'aria-readonly'?: boolean | "true" | "false";
|
|
666
|
-
'aria-relevant'?: "text" | "
|
|
666
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
667
667
|
'aria-required'?: boolean | "true" | "false";
|
|
668
668
|
'aria-roledescription'?: string;
|
|
669
669
|
'aria-rowcount'?: number;
|
|
@@ -671,7 +671,7 @@ export declare const RowColors: {
|
|
|
671
671
|
'aria-rowspan'?: number;
|
|
672
672
|
'aria-selected'?: boolean | "true" | "false";
|
|
673
673
|
'aria-setsize'?: number;
|
|
674
|
-
'aria-sort'?: "
|
|
674
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
675
675
|
'aria-valuemax'?: number;
|
|
676
676
|
'aria-valuemin'?: number;
|
|
677
677
|
'aria-valuenow'?: number;
|
|
@@ -910,7 +910,7 @@ export declare const RowColorsInverse: {
|
|
|
910
910
|
'aria-colindex'?: number;
|
|
911
911
|
'aria-colspan'?: number;
|
|
912
912
|
'aria-controls'?: string;
|
|
913
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
913
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
914
914
|
'aria-describedby'?: string;
|
|
915
915
|
'aria-details'?: string;
|
|
916
916
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -919,7 +919,7 @@ export declare const RowColorsInverse: {
|
|
|
919
919
|
'aria-expanded'?: boolean | "true" | "false";
|
|
920
920
|
'aria-flowto'?: string;
|
|
921
921
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
922
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
922
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
923
923
|
'aria-hidden'?: boolean | "true" | "false";
|
|
924
924
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
925
925
|
'aria-keyshortcuts'?: string;
|
|
@@ -936,7 +936,7 @@ export declare const RowColorsInverse: {
|
|
|
936
936
|
'aria-posinset'?: number;
|
|
937
937
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
938
938
|
'aria-readonly'?: boolean | "true" | "false";
|
|
939
|
-
'aria-relevant'?: "text" | "
|
|
939
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
940
940
|
'aria-required'?: boolean | "true" | "false";
|
|
941
941
|
'aria-roledescription'?: string;
|
|
942
942
|
'aria-rowcount'?: number;
|
|
@@ -944,7 +944,7 @@ export declare const RowColorsInverse: {
|
|
|
944
944
|
'aria-rowspan'?: number;
|
|
945
945
|
'aria-selected'?: boolean | "true" | "false";
|
|
946
946
|
'aria-setsize'?: number;
|
|
947
|
-
'aria-sort'?: "
|
|
947
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
948
948
|
'aria-valuemax'?: number;
|
|
949
949
|
'aria-valuemin'?: number;
|
|
950
950
|
'aria-valuenow'?: number;
|
|
@@ -1183,7 +1183,7 @@ export declare const Sortable: {
|
|
|
1183
1183
|
'aria-colindex'?: number;
|
|
1184
1184
|
'aria-colspan'?: number;
|
|
1185
1185
|
'aria-controls'?: string;
|
|
1186
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
1186
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
1187
1187
|
'aria-describedby'?: string;
|
|
1188
1188
|
'aria-details'?: string;
|
|
1189
1189
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -1192,7 +1192,7 @@ export declare const Sortable: {
|
|
|
1192
1192
|
'aria-expanded'?: boolean | "true" | "false";
|
|
1193
1193
|
'aria-flowto'?: string;
|
|
1194
1194
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
1195
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
1195
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
1196
1196
|
'aria-hidden'?: boolean | "true" | "false";
|
|
1197
1197
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
1198
1198
|
'aria-keyshortcuts'?: string;
|
|
@@ -1209,7 +1209,7 @@ export declare const Sortable: {
|
|
|
1209
1209
|
'aria-posinset'?: number;
|
|
1210
1210
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
1211
1211
|
'aria-readonly'?: boolean | "true" | "false";
|
|
1212
|
-
'aria-relevant'?: "text" | "
|
|
1212
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
1213
1213
|
'aria-required'?: boolean | "true" | "false";
|
|
1214
1214
|
'aria-roledescription'?: string;
|
|
1215
1215
|
'aria-rowcount'?: number;
|
|
@@ -1217,7 +1217,7 @@ export declare const Sortable: {
|
|
|
1217
1217
|
'aria-rowspan'?: number;
|
|
1218
1218
|
'aria-selected'?: boolean | "true" | "false";
|
|
1219
1219
|
'aria-setsize'?: number;
|
|
1220
|
-
'aria-sort'?: "
|
|
1220
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
1221
1221
|
'aria-valuemax'?: number;
|
|
1222
1222
|
'aria-valuemin'?: number;
|
|
1223
1223
|
'aria-valuenow'?: number;
|
|
@@ -1456,7 +1456,7 @@ export declare const WithDropdown: {
|
|
|
1456
1456
|
'aria-colindex'?: number;
|
|
1457
1457
|
'aria-colspan'?: number;
|
|
1458
1458
|
'aria-controls'?: string;
|
|
1459
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
1459
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
1460
1460
|
'aria-describedby'?: string;
|
|
1461
1461
|
'aria-details'?: string;
|
|
1462
1462
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -1465,7 +1465,7 @@ export declare const WithDropdown: {
|
|
|
1465
1465
|
'aria-expanded'?: boolean | "true" | "false";
|
|
1466
1466
|
'aria-flowto'?: string;
|
|
1467
1467
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
1468
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
1468
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
1469
1469
|
'aria-hidden'?: boolean | "true" | "false";
|
|
1470
1470
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
1471
1471
|
'aria-keyshortcuts'?: string;
|
|
@@ -1482,7 +1482,7 @@ export declare const WithDropdown: {
|
|
|
1482
1482
|
'aria-posinset'?: number;
|
|
1483
1483
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
1484
1484
|
'aria-readonly'?: boolean | "true" | "false";
|
|
1485
|
-
'aria-relevant'?: "text" | "
|
|
1485
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
1486
1486
|
'aria-required'?: boolean | "true" | "false";
|
|
1487
1487
|
'aria-roledescription'?: string;
|
|
1488
1488
|
'aria-rowcount'?: number;
|
|
@@ -1490,7 +1490,7 @@ export declare const WithDropdown: {
|
|
|
1490
1490
|
'aria-rowspan'?: number;
|
|
1491
1491
|
'aria-selected'?: boolean | "true" | "false";
|
|
1492
1492
|
'aria-setsize'?: number;
|
|
1493
|
-
'aria-sort'?: "
|
|
1493
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
1494
1494
|
'aria-valuemax'?: number;
|
|
1495
1495
|
'aria-valuemin'?: number;
|
|
1496
1496
|
'aria-valuenow'?: number;
|
|
@@ -40,11 +40,6 @@ export declare const WithDelete: {
|
|
|
40
40
|
isClickable?: boolean;
|
|
41
41
|
isInverse?: boolean;
|
|
42
42
|
theme?: import("../..").ThemeInterface;
|
|
43
|
-
slot?: string;
|
|
44
|
-
style?: React.CSSProperties;
|
|
45
|
-
title?: string;
|
|
46
|
-
translate?: "yes" | "no";
|
|
47
|
-
children?: React.ReactNode;
|
|
48
43
|
defaultChecked?: boolean;
|
|
49
44
|
defaultValue?: string | number | readonly string[];
|
|
50
45
|
suppressContentEditableWarning?: boolean;
|
|
@@ -59,8 +54,12 @@ export declare const WithDelete: {
|
|
|
59
54
|
id?: string;
|
|
60
55
|
lang?: string;
|
|
61
56
|
placeholder?: string;
|
|
57
|
+
slot?: string;
|
|
62
58
|
spellCheck?: boolean | "true" | "false";
|
|
59
|
+
style?: React.CSSProperties;
|
|
63
60
|
tabIndex?: number;
|
|
61
|
+
title?: string;
|
|
62
|
+
translate?: "yes" | "no";
|
|
64
63
|
radioGroup?: string;
|
|
65
64
|
role?: React.AriaRole;
|
|
66
65
|
about?: string;
|
|
@@ -93,7 +92,7 @@ export declare const WithDelete: {
|
|
|
93
92
|
'aria-colindex'?: number;
|
|
94
93
|
'aria-colspan'?: number;
|
|
95
94
|
'aria-controls'?: string;
|
|
96
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
95
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
97
96
|
'aria-describedby'?: string;
|
|
98
97
|
'aria-details'?: string;
|
|
99
98
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -102,7 +101,7 @@ export declare const WithDelete: {
|
|
|
102
101
|
'aria-expanded'?: boolean | "true" | "false";
|
|
103
102
|
'aria-flowto'?: string;
|
|
104
103
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
105
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
104
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
106
105
|
'aria-hidden'?: boolean | "true" | "false";
|
|
107
106
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
108
107
|
'aria-keyshortcuts'?: string;
|
|
@@ -119,7 +118,7 @@ export declare const WithDelete: {
|
|
|
119
118
|
'aria-posinset'?: number;
|
|
120
119
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
121
120
|
'aria-readonly'?: boolean | "true" | "false";
|
|
122
|
-
'aria-relevant'?: "text" | "
|
|
121
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
123
122
|
'aria-required'?: boolean | "true" | "false";
|
|
124
123
|
'aria-roledescription'?: string;
|
|
125
124
|
'aria-rowcount'?: number;
|
|
@@ -127,11 +126,12 @@ export declare const WithDelete: {
|
|
|
127
126
|
'aria-rowspan'?: number;
|
|
128
127
|
'aria-selected'?: boolean | "true" | "false";
|
|
129
128
|
'aria-setsize'?: number;
|
|
130
|
-
'aria-sort'?: "
|
|
129
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
131
130
|
'aria-valuemax'?: number;
|
|
132
131
|
'aria-valuemin'?: number;
|
|
133
132
|
'aria-valuenow'?: number;
|
|
134
133
|
'aria-valuetext'?: string;
|
|
134
|
+
children?: React.ReactNode;
|
|
135
135
|
dangerouslySetInnerHTML?: {
|
|
136
136
|
__html: string;
|
|
137
137
|
};
|
|
@@ -306,11 +306,6 @@ export declare const WithDelete: {
|
|
|
306
306
|
isClickable?: boolean;
|
|
307
307
|
isInverse?: boolean;
|
|
308
308
|
theme?: import("../..").ThemeInterface;
|
|
309
|
-
slot?: string;
|
|
310
|
-
style?: React.CSSProperties;
|
|
311
|
-
title?: string;
|
|
312
|
-
translate?: "yes" | "no";
|
|
313
|
-
children?: React.ReactNode;
|
|
314
309
|
defaultChecked?: boolean;
|
|
315
310
|
defaultValue?: string | number | readonly string[];
|
|
316
311
|
suppressContentEditableWarning?: boolean;
|
|
@@ -325,8 +320,12 @@ export declare const WithDelete: {
|
|
|
325
320
|
id?: string;
|
|
326
321
|
lang?: string;
|
|
327
322
|
placeholder?: string;
|
|
323
|
+
slot?: string;
|
|
328
324
|
spellCheck?: boolean | "true" | "false";
|
|
325
|
+
style?: React.CSSProperties;
|
|
329
326
|
tabIndex?: number;
|
|
327
|
+
title?: string;
|
|
328
|
+
translate?: "yes" | "no";
|
|
330
329
|
radioGroup?: string;
|
|
331
330
|
role?: React.AriaRole;
|
|
332
331
|
about?: string;
|
|
@@ -359,7 +358,7 @@ export declare const WithDelete: {
|
|
|
359
358
|
'aria-colindex'?: number;
|
|
360
359
|
'aria-colspan'?: number;
|
|
361
360
|
'aria-controls'?: string;
|
|
362
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
361
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
363
362
|
'aria-describedby'?: string;
|
|
364
363
|
'aria-details'?: string;
|
|
365
364
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -368,7 +367,7 @@ export declare const WithDelete: {
|
|
|
368
367
|
'aria-expanded'?: boolean | "true" | "false";
|
|
369
368
|
'aria-flowto'?: string;
|
|
370
369
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
371
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
370
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
372
371
|
'aria-hidden'?: boolean | "true" | "false";
|
|
373
372
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
374
373
|
'aria-keyshortcuts'?: string;
|
|
@@ -385,7 +384,7 @@ export declare const WithDelete: {
|
|
|
385
384
|
'aria-posinset'?: number;
|
|
386
385
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
387
386
|
'aria-readonly'?: boolean | "true" | "false";
|
|
388
|
-
'aria-relevant'?: "text" | "
|
|
387
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
389
388
|
'aria-required'?: boolean | "true" | "false";
|
|
390
389
|
'aria-roledescription'?: string;
|
|
391
390
|
'aria-rowcount'?: number;
|
|
@@ -393,11 +392,12 @@ export declare const WithDelete: {
|
|
|
393
392
|
'aria-rowspan'?: number;
|
|
394
393
|
'aria-selected'?: boolean | "true" | "false";
|
|
395
394
|
'aria-setsize'?: number;
|
|
396
|
-
'aria-sort'?: "
|
|
395
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
397
396
|
'aria-valuemax'?: number;
|
|
398
397
|
'aria-valuemin'?: number;
|
|
399
398
|
'aria-valuenow'?: number;
|
|
400
399
|
'aria-valuetext'?: string;
|
|
400
|
+
children?: React.ReactNode;
|
|
401
401
|
dangerouslySetInnerHTML?: {
|
|
402
402
|
__html: string;
|
|
403
403
|
};
|
|
@@ -92,7 +92,7 @@ export declare const OnClear: {
|
|
|
92
92
|
'aria-colindex'?: number;
|
|
93
93
|
'aria-colspan'?: number;
|
|
94
94
|
'aria-controls'?: string;
|
|
95
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
95
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
96
96
|
'aria-describedby'?: string;
|
|
97
97
|
'aria-details'?: string;
|
|
98
98
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -101,7 +101,7 @@ export declare const OnClear: {
|
|
|
101
101
|
'aria-expanded'?: boolean | "true" | "false";
|
|
102
102
|
'aria-flowto'?: string;
|
|
103
103
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
104
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
104
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
105
105
|
'aria-hidden'?: boolean | "true" | "false";
|
|
106
106
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
107
107
|
'aria-keyshortcuts'?: string;
|
|
@@ -118,7 +118,7 @@ export declare const OnClear: {
|
|
|
118
118
|
'aria-posinset'?: number;
|
|
119
119
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
120
120
|
'aria-readonly'?: boolean | "true" | "false";
|
|
121
|
-
'aria-relevant'?: "text" | "
|
|
121
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
122
122
|
'aria-required'?: boolean | "true" | "false";
|
|
123
123
|
'aria-roledescription'?: string;
|
|
124
124
|
'aria-rowcount'?: number;
|
|
@@ -126,7 +126,7 @@ export declare const OnClear: {
|
|
|
126
126
|
'aria-rowspan'?: number;
|
|
127
127
|
'aria-selected'?: boolean | "true" | "false";
|
|
128
128
|
'aria-setsize'?: number;
|
|
129
|
-
'aria-sort'?: "
|
|
129
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
130
130
|
'aria-valuemax'?: number;
|
|
131
131
|
'aria-valuemin'?: number;
|
|
132
132
|
'aria-valuenow'?: number;
|
|
@@ -79,7 +79,7 @@ export declare const Text: {
|
|
|
79
79
|
'aria-colindex'?: number;
|
|
80
80
|
'aria-colspan'?: number;
|
|
81
81
|
'aria-controls'?: string;
|
|
82
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
82
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
83
83
|
'aria-describedby'?: string;
|
|
84
84
|
'aria-details'?: string;
|
|
85
85
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -88,7 +88,7 @@ export declare const Text: {
|
|
|
88
88
|
'aria-expanded'?: boolean | "true" | "false";
|
|
89
89
|
'aria-flowto'?: string;
|
|
90
90
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
91
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
91
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
92
92
|
'aria-hidden'?: boolean | "true" | "false";
|
|
93
93
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
94
94
|
'aria-keyshortcuts'?: string;
|
|
@@ -104,7 +104,7 @@ export declare const Text: {
|
|
|
104
104
|
'aria-posinset'?: number;
|
|
105
105
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
106
106
|
'aria-readonly'?: boolean | "true" | "false";
|
|
107
|
-
'aria-relevant'?: "text" | "
|
|
107
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
108
108
|
'aria-required'?: boolean | "true" | "false";
|
|
109
109
|
'aria-roledescription'?: string;
|
|
110
110
|
'aria-rowcount'?: number;
|
|
@@ -112,7 +112,7 @@ export declare const Text: {
|
|
|
112
112
|
'aria-rowspan'?: number;
|
|
113
113
|
'aria-selected'?: boolean | "true" | "false";
|
|
114
114
|
'aria-setsize'?: number;
|
|
115
|
-
'aria-sort'?: "
|
|
115
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
116
116
|
'aria-valuemax'?: number;
|
|
117
117
|
'aria-valuemin'?: number;
|
|
118
118
|
'aria-valuenow'?: number;
|
|
@@ -357,7 +357,7 @@ export declare const Text: {
|
|
|
357
357
|
'aria-colindex'?: number;
|
|
358
358
|
'aria-colspan'?: number;
|
|
359
359
|
'aria-controls'?: string;
|
|
360
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
360
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
361
361
|
'aria-describedby'?: string;
|
|
362
362
|
'aria-details'?: string;
|
|
363
363
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -366,7 +366,7 @@ export declare const Text: {
|
|
|
366
366
|
'aria-expanded'?: boolean | "true" | "false";
|
|
367
367
|
'aria-flowto'?: string;
|
|
368
368
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
369
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
369
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
370
370
|
'aria-hidden'?: boolean | "true" | "false";
|
|
371
371
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
372
372
|
'aria-keyshortcuts'?: string;
|
|
@@ -383,7 +383,7 @@ export declare const Text: {
|
|
|
383
383
|
'aria-posinset'?: number;
|
|
384
384
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
385
385
|
'aria-readonly'?: boolean | "true" | "false";
|
|
386
|
-
'aria-relevant'?: "text" | "
|
|
386
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
387
387
|
'aria-required'?: boolean | "true" | "false";
|
|
388
388
|
'aria-roledescription'?: string;
|
|
389
389
|
'aria-rowcount'?: number;
|
|
@@ -391,7 +391,7 @@ export declare const Text: {
|
|
|
391
391
|
'aria-rowspan'?: number;
|
|
392
392
|
'aria-selected'?: boolean | "true" | "false";
|
|
393
393
|
'aria-setsize'?: number;
|
|
394
|
-
'aria-sort'?: "
|
|
394
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
395
395
|
'aria-valuemax'?: number;
|
|
396
396
|
'aria-valuemin'?: number;
|
|
397
397
|
'aria-valuenow'?: number;
|
|
@@ -641,7 +641,7 @@ export declare const TextAndIcon: {
|
|
|
641
641
|
'aria-colindex'?: number;
|
|
642
642
|
'aria-colspan'?: number;
|
|
643
643
|
'aria-controls'?: string;
|
|
644
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
644
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
645
645
|
'aria-describedby'?: string;
|
|
646
646
|
'aria-details'?: string;
|
|
647
647
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -650,7 +650,7 @@ export declare const TextAndIcon: {
|
|
|
650
650
|
'aria-expanded'?: boolean | "true" | "false";
|
|
651
651
|
'aria-flowto'?: string;
|
|
652
652
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
653
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
653
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
654
654
|
'aria-hidden'?: boolean | "true" | "false";
|
|
655
655
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
656
656
|
'aria-keyshortcuts'?: string;
|
|
@@ -666,7 +666,7 @@ export declare const TextAndIcon: {
|
|
|
666
666
|
'aria-posinset'?: number;
|
|
667
667
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
668
668
|
'aria-readonly'?: boolean | "true" | "false";
|
|
669
|
-
'aria-relevant'?: "text" | "
|
|
669
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
670
670
|
'aria-required'?: boolean | "true" | "false";
|
|
671
671
|
'aria-roledescription'?: string;
|
|
672
672
|
'aria-rowcount'?: number;
|
|
@@ -674,7 +674,7 @@ export declare const TextAndIcon: {
|
|
|
674
674
|
'aria-rowspan'?: number;
|
|
675
675
|
'aria-selected'?: boolean | "true" | "false";
|
|
676
676
|
'aria-setsize'?: number;
|
|
677
|
-
'aria-sort'?: "
|
|
677
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
678
678
|
'aria-valuemax'?: number;
|
|
679
679
|
'aria-valuemin'?: number;
|
|
680
680
|
'aria-valuenow'?: number;
|
|
@@ -919,7 +919,7 @@ export declare const TextAndIcon: {
|
|
|
919
919
|
'aria-colindex'?: number;
|
|
920
920
|
'aria-colspan'?: number;
|
|
921
921
|
'aria-controls'?: string;
|
|
922
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
922
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
923
923
|
'aria-describedby'?: string;
|
|
924
924
|
'aria-details'?: string;
|
|
925
925
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -928,7 +928,7 @@ export declare const TextAndIcon: {
|
|
|
928
928
|
'aria-expanded'?: boolean | "true" | "false";
|
|
929
929
|
'aria-flowto'?: string;
|
|
930
930
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
931
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
931
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
932
932
|
'aria-hidden'?: boolean | "true" | "false";
|
|
933
933
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
934
934
|
'aria-keyshortcuts'?: string;
|
|
@@ -945,7 +945,7 @@ export declare const TextAndIcon: {
|
|
|
945
945
|
'aria-posinset'?: number;
|
|
946
946
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
947
947
|
'aria-readonly'?: boolean | "true" | "false";
|
|
948
|
-
'aria-relevant'?: "text" | "
|
|
948
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
949
949
|
'aria-required'?: boolean | "true" | "false";
|
|
950
950
|
'aria-roledescription'?: string;
|
|
951
951
|
'aria-rowcount'?: number;
|
|
@@ -953,7 +953,7 @@ export declare const TextAndIcon: {
|
|
|
953
953
|
'aria-rowspan'?: number;
|
|
954
954
|
'aria-selected'?: boolean | "true" | "false";
|
|
955
955
|
'aria-setsize'?: number;
|
|
956
|
-
'aria-sort'?: "
|
|
956
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
957
957
|
'aria-valuemax'?: number;
|
|
958
958
|
'aria-valuemin'?: number;
|
|
959
959
|
'aria-valuenow'?: number;
|
|
@@ -74,7 +74,7 @@ export declare const AlignmentExample: {
|
|
|
74
74
|
'aria-colindex'?: number;
|
|
75
75
|
'aria-colspan'?: number;
|
|
76
76
|
'aria-controls'?: string;
|
|
77
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
77
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
78
78
|
'aria-describedby'?: string;
|
|
79
79
|
'aria-details'?: string;
|
|
80
80
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -83,7 +83,7 @@ export declare const AlignmentExample: {
|
|
|
83
83
|
'aria-expanded'?: boolean | "true" | "false";
|
|
84
84
|
'aria-flowto'?: string;
|
|
85
85
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
86
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
86
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
87
87
|
'aria-hidden'?: boolean | "true" | "false";
|
|
88
88
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
89
89
|
'aria-keyshortcuts'?: string;
|
|
@@ -100,7 +100,7 @@ export declare const AlignmentExample: {
|
|
|
100
100
|
'aria-posinset'?: number;
|
|
101
101
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
102
102
|
'aria-readonly'?: boolean | "true" | "false";
|
|
103
|
-
'aria-relevant'?: "text" | "
|
|
103
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
104
104
|
'aria-required'?: boolean | "true" | "false";
|
|
105
105
|
'aria-roledescription'?: string;
|
|
106
106
|
'aria-rowcount'?: number;
|
|
@@ -108,7 +108,7 @@ export declare const AlignmentExample: {
|
|
|
108
108
|
'aria-rowspan'?: number;
|
|
109
109
|
'aria-selected'?: boolean | "true" | "false";
|
|
110
110
|
'aria-setsize'?: number;
|
|
111
|
-
'aria-sort'?: "
|
|
111
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
112
112
|
'aria-valuemax'?: number;
|
|
113
113
|
'aria-valuemin'?: number;
|
|
114
114
|
'aria-valuenow'?: number;
|
|
@@ -348,7 +348,7 @@ export declare const DifferentToggleButtons: {
|
|
|
348
348
|
'aria-colindex'?: number;
|
|
349
349
|
'aria-colspan'?: number;
|
|
350
350
|
'aria-controls'?: string;
|
|
351
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
351
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
352
352
|
'aria-describedby'?: string;
|
|
353
353
|
'aria-details'?: string;
|
|
354
354
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -357,7 +357,7 @@ export declare const DifferentToggleButtons: {
|
|
|
357
357
|
'aria-expanded'?: boolean | "true" | "false";
|
|
358
358
|
'aria-flowto'?: string;
|
|
359
359
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
360
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
360
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
361
361
|
'aria-hidden'?: boolean | "true" | "false";
|
|
362
362
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
363
363
|
'aria-keyshortcuts'?: string;
|
|
@@ -374,7 +374,7 @@ export declare const DifferentToggleButtons: {
|
|
|
374
374
|
'aria-posinset'?: number;
|
|
375
375
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
376
376
|
'aria-readonly'?: boolean | "true" | "false";
|
|
377
|
-
'aria-relevant'?: "text" | "
|
|
377
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
378
378
|
'aria-required'?: boolean | "true" | "false";
|
|
379
379
|
'aria-roledescription'?: string;
|
|
380
380
|
'aria-rowcount'?: number;
|
|
@@ -382,7 +382,7 @@ export declare const DifferentToggleButtons: {
|
|
|
382
382
|
'aria-rowspan'?: number;
|
|
383
383
|
'aria-selected'?: boolean | "true" | "false";
|
|
384
384
|
'aria-setsize'?: number;
|
|
385
|
-
'aria-sort'?: "
|
|
385
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
386
386
|
'aria-valuemax'?: number;
|
|
387
387
|
'aria-valuemin'?: number;
|
|
388
388
|
'aria-valuenow'?: number;
|