react-magma-dom 4.7.0-next.5 → 4.7.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.
Files changed (28) hide show
  1. package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +6 -6
  2. package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +12 -12
  3. package/dist/components/Combobox/ComboboxInput.d.ts +3 -1
  4. package/dist/components/Combobox/index.d.ts +25 -12
  5. package/dist/components/Datagrid/Datagrid.stories.d.ts +8 -8
  6. package/dist/components/DatePicker/index.d.ts +4 -0
  7. package/dist/components/Dropdown/Dropdown.d.ts +8 -0
  8. package/dist/components/Dropdown/Dropdown.stories.d.ts +1 -0
  9. package/dist/components/IconButton/IconButton.stories.d.ts +4 -4
  10. package/dist/components/Input/Input.stories.d.ts +36 -33
  11. package/dist/components/InputBase/index.d.ts +13 -4
  12. package/dist/components/Select/ItemsList.d.ts +6 -3
  13. package/dist/components/Select/SelectContainer.d.ts +1 -1
  14. package/dist/components/Select/SelectTriggerButton.d.ts +3 -1
  15. package/dist/components/Select/index.d.ts +22 -2
  16. package/dist/components/Table/Table.stories.d.ts +36 -36
  17. package/dist/components/Tag/Tag.stories.d.ts +68 -68
  18. package/dist/components/Textarea/Textarea.stories.d.ts +6 -6
  19. package/dist/components/ToggleButton/ToggleButton.stories.d.ts +24 -24
  20. package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +12 -12
  21. package/dist/esm/index.js +2479 -247
  22. package/dist/esm/index.js.map +1 -1
  23. package/dist/properties.json +148 -102
  24. package/dist/react-magma-dom.cjs.development.js +259 -156
  25. package/dist/react-magma-dom.cjs.development.js.map +1 -1
  26. package/dist/react-magma-dom.cjs.production.min.js +1 -1
  27. package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
  28. package/package.json +2 -1
@@ -33,7 +33,7 @@ export declare const ControlledPagination: {
33
33
  suppressHydrationWarning?: boolean;
34
34
  accessKey?: string;
35
35
  className?: string;
36
- contentEditable?: boolean | "inherit" | "true" | "false";
36
+ contentEditable?: boolean | "true" | "false" | "inherit";
37
37
  contextMenu?: string;
38
38
  dir?: string;
39
39
  draggable?: boolean | "true" | "false";
@@ -69,11 +69,11 @@ export declare const ControlledPagination: {
69
69
  results?: number;
70
70
  security?: string;
71
71
  unselectable?: "on" | "off";
72
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
72
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
73
73
  is?: string;
74
74
  'aria-activedescendant'?: string;
75
75
  'aria-atomic'?: boolean | "true" | "false";
76
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
76
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
77
77
  'aria-busy'?: boolean | "true" | "false";
78
78
  'aria-checked'?: boolean | "true" | "false" | "mixed";
79
79
  'aria-colcount'?: number;
@@ -84,12 +84,12 @@ export declare const ControlledPagination: {
84
84
  'aria-describedby'?: string;
85
85
  'aria-details'?: string;
86
86
  'aria-disabled'?: boolean | "true" | "false";
87
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
87
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
88
88
  'aria-errormessage'?: string;
89
89
  'aria-expanded'?: boolean | "true" | "false";
90
90
  'aria-flowto'?: string;
91
91
  'aria-grabbed'?: boolean | "true" | "false";
92
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
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'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
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;
@@ -316,7 +316,7 @@ export declare const PaginationInverse: {
316
316
  suppressHydrationWarning?: boolean;
317
317
  accessKey?: string;
318
318
  className?: string;
319
- contentEditable?: boolean | "inherit" | "true" | "false";
319
+ contentEditable?: boolean | "true" | "false" | "inherit";
320
320
  contextMenu?: string;
321
321
  dir?: string;
322
322
  draggable?: boolean | "true" | "false";
@@ -352,11 +352,11 @@ export declare const PaginationInverse: {
352
352
  results?: number;
353
353
  security?: string;
354
354
  unselectable?: "on" | "off";
355
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
355
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
356
356
  is?: string;
357
357
  'aria-activedescendant'?: string;
358
358
  'aria-atomic'?: boolean | "true" | "false";
359
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
359
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
360
360
  'aria-busy'?: boolean | "true" | "false";
361
361
  'aria-checked'?: boolean | "true" | "false" | "mixed";
362
362
  'aria-colcount'?: number;
@@ -367,12 +367,12 @@ export declare const PaginationInverse: {
367
367
  'aria-describedby'?: string;
368
368
  'aria-details'?: string;
369
369
  'aria-disabled'?: boolean | "true" | "false";
370
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
370
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
371
371
  'aria-errormessage'?: string;
372
372
  'aria-expanded'?: boolean | "true" | "false";
373
373
  'aria-flowto'?: string;
374
374
  'aria-grabbed'?: boolean | "true" | "false";
375
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
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'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
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;
@@ -590,7 +590,7 @@ export declare const RowColors: {
590
590
  suppressHydrationWarning?: boolean;
591
591
  accessKey?: string;
592
592
  className?: string;
593
- contentEditable?: boolean | "inherit" | "true" | "false";
593
+ contentEditable?: boolean | "true" | "false" | "inherit";
594
594
  contextMenu?: string;
595
595
  dir?: string;
596
596
  draggable?: boolean | "true" | "false";
@@ -626,11 +626,11 @@ export declare const RowColors: {
626
626
  results?: number;
627
627
  security?: string;
628
628
  unselectable?: "on" | "off";
629
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
629
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
630
630
  is?: string;
631
631
  'aria-activedescendant'?: string;
632
632
  'aria-atomic'?: boolean | "true" | "false";
633
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
633
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
634
634
  'aria-busy'?: boolean | "true" | "false";
635
635
  'aria-checked'?: boolean | "true" | "false" | "mixed";
636
636
  'aria-colcount'?: number;
@@ -641,12 +641,12 @@ export declare const RowColors: {
641
641
  'aria-describedby'?: string;
642
642
  'aria-details'?: string;
643
643
  'aria-disabled'?: boolean | "true" | "false";
644
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
644
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
645
645
  'aria-errormessage'?: string;
646
646
  'aria-expanded'?: boolean | "true" | "false";
647
647
  'aria-flowto'?: string;
648
648
  'aria-grabbed'?: boolean | "true" | "false";
649
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
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'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
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;
@@ -863,7 +863,7 @@ export declare const RowColorsInverse: {
863
863
  suppressHydrationWarning?: boolean;
864
864
  accessKey?: string;
865
865
  className?: string;
866
- contentEditable?: boolean | "inherit" | "true" | "false";
866
+ contentEditable?: boolean | "true" | "false" | "inherit";
867
867
  contextMenu?: string;
868
868
  dir?: string;
869
869
  draggable?: boolean | "true" | "false";
@@ -899,11 +899,11 @@ export declare const RowColorsInverse: {
899
899
  results?: number;
900
900
  security?: string;
901
901
  unselectable?: "on" | "off";
902
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
902
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
903
903
  is?: string;
904
904
  'aria-activedescendant'?: string;
905
905
  'aria-atomic'?: boolean | "true" | "false";
906
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
906
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
907
907
  'aria-busy'?: boolean | "true" | "false";
908
908
  'aria-checked'?: boolean | "true" | "false" | "mixed";
909
909
  'aria-colcount'?: number;
@@ -914,12 +914,12 @@ export declare const RowColorsInverse: {
914
914
  'aria-describedby'?: string;
915
915
  'aria-details'?: string;
916
916
  'aria-disabled'?: boolean | "true" | "false";
917
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
917
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
918
918
  'aria-errormessage'?: string;
919
919
  'aria-expanded'?: boolean | "true" | "false";
920
920
  'aria-flowto'?: string;
921
921
  'aria-grabbed'?: boolean | "true" | "false";
922
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
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'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
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;
@@ -1136,7 +1136,7 @@ export declare const Sortable: {
1136
1136
  suppressHydrationWarning?: boolean;
1137
1137
  accessKey?: string;
1138
1138
  className?: string;
1139
- contentEditable?: boolean | "inherit" | "true" | "false";
1139
+ contentEditable?: boolean | "true" | "false" | "inherit";
1140
1140
  contextMenu?: string;
1141
1141
  dir?: string;
1142
1142
  draggable?: boolean | "true" | "false";
@@ -1172,11 +1172,11 @@ export declare const Sortable: {
1172
1172
  results?: number;
1173
1173
  security?: string;
1174
1174
  unselectable?: "on" | "off";
1175
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
1175
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
1176
1176
  is?: string;
1177
1177
  'aria-activedescendant'?: string;
1178
1178
  'aria-atomic'?: boolean | "true" | "false";
1179
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
1179
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
1180
1180
  'aria-busy'?: boolean | "true" | "false";
1181
1181
  'aria-checked'?: boolean | "true" | "false" | "mixed";
1182
1182
  'aria-colcount'?: number;
@@ -1187,12 +1187,12 @@ export declare const Sortable: {
1187
1187
  'aria-describedby'?: string;
1188
1188
  'aria-details'?: string;
1189
1189
  'aria-disabled'?: boolean | "true" | "false";
1190
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
1190
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
1191
1191
  'aria-errormessage'?: string;
1192
1192
  'aria-expanded'?: boolean | "true" | "false";
1193
1193
  'aria-flowto'?: string;
1194
1194
  'aria-grabbed'?: boolean | "true" | "false";
1195
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
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'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
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;
@@ -1409,7 +1409,7 @@ export declare const WithDropdown: {
1409
1409
  suppressHydrationWarning?: boolean;
1410
1410
  accessKey?: string;
1411
1411
  className?: string;
1412
- contentEditable?: boolean | "inherit" | "true" | "false";
1412
+ contentEditable?: boolean | "true" | "false" | "inherit";
1413
1413
  contextMenu?: string;
1414
1414
  dir?: string;
1415
1415
  draggable?: boolean | "true" | "false";
@@ -1445,11 +1445,11 @@ export declare const WithDropdown: {
1445
1445
  results?: number;
1446
1446
  security?: string;
1447
1447
  unselectable?: "on" | "off";
1448
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
1448
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
1449
1449
  is?: string;
1450
1450
  'aria-activedescendant'?: string;
1451
1451
  'aria-atomic'?: boolean | "true" | "false";
1452
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
1452
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
1453
1453
  'aria-busy'?: boolean | "true" | "false";
1454
1454
  'aria-checked'?: boolean | "true" | "false" | "mixed";
1455
1455
  'aria-colcount'?: number;
@@ -1460,12 +1460,12 @@ export declare const WithDropdown: {
1460
1460
  'aria-describedby'?: string;
1461
1461
  'aria-details'?: string;
1462
1462
  'aria-disabled'?: boolean | "true" | "false";
1463
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
1463
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
1464
1464
  'aria-errormessage'?: string;
1465
1465
  'aria-expanded'?: boolean | "true" | "false";
1466
1466
  'aria-flowto'?: string;
1467
1467
  'aria-grabbed'?: boolean | "true" | "false";
1468
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
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'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
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;
@@ -40,17 +40,52 @@ export declare const WithDelete: {
40
40
  isClickable?: boolean;
41
41
  isInverse?: boolean;
42
42
  theme?: import("../..").ThemeInterface;
43
- translate?: "yes" | "no";
44
- hidden?: boolean;
43
+ defaultChecked?: boolean;
44
+ defaultValue?: string | number | readonly string[];
45
+ suppressContentEditableWarning?: boolean;
46
+ suppressHydrationWarning?: boolean;
47
+ accessKey?: string;
45
48
  className?: string;
49
+ contentEditable?: boolean | "true" | "false" | "inherit";
50
+ contextMenu?: string;
51
+ dir?: string;
52
+ draggable?: boolean | "true" | "false";
53
+ hidden?: boolean;
46
54
  id?: string;
47
55
  lang?: string;
56
+ placeholder?: string;
57
+ slot?: string;
58
+ spellCheck?: boolean | "true" | "false";
48
59
  style?: React.CSSProperties;
49
- role?: React.AriaRole;
50
60
  tabIndex?: number;
61
+ title?: string;
62
+ translate?: "yes" | "no";
63
+ radioGroup?: string;
64
+ role?: React.AriaRole;
65
+ about?: string;
66
+ datatype?: string;
67
+ inlist?: any;
68
+ prefix?: string;
69
+ property?: string;
70
+ resource?: string;
71
+ typeof?: string;
72
+ vocab?: string;
73
+ autoCapitalize?: string;
74
+ autoCorrect?: string;
75
+ autoSave?: string;
76
+ itemProp?: string;
77
+ itemScope?: boolean;
78
+ itemType?: string;
79
+ itemID?: string;
80
+ itemRef?: string;
81
+ results?: number;
82
+ security?: string;
83
+ unselectable?: "on" | "off";
84
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
85
+ is?: string;
51
86
  'aria-activedescendant'?: string;
52
87
  'aria-atomic'?: boolean | "true" | "false";
53
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
88
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
54
89
  'aria-busy'?: boolean | "true" | "false";
55
90
  'aria-checked'?: boolean | "true" | "false" | "mixed";
56
91
  'aria-colcount'?: number;
@@ -61,12 +96,12 @@ export declare const WithDelete: {
61
96
  'aria-describedby'?: string;
62
97
  'aria-details'?: string;
63
98
  'aria-disabled'?: boolean | "true" | "false";
64
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
99
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
65
100
  'aria-errormessage'?: string;
66
101
  'aria-expanded'?: boolean | "true" | "false";
67
102
  'aria-flowto'?: string;
68
103
  'aria-grabbed'?: boolean | "true" | "false";
69
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
104
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
70
105
  'aria-hidden'?: boolean | "true" | "false";
71
106
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
72
107
  'aria-keyshortcuts'?: string;
@@ -83,7 +118,7 @@ export declare const WithDelete: {
83
118
  'aria-posinset'?: number;
84
119
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
85
120
  'aria-readonly'?: boolean | "true" | "false";
86
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
121
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
87
122
  'aria-required'?: boolean | "true" | "false";
88
123
  'aria-roledescription'?: string;
89
124
  'aria-rowcount'?: number;
@@ -259,20 +294,40 @@ export declare const WithDelete: {
259
294
  onAnimationIterationCapture?: (event: React.AnimationEvent<HTMLButtonElement>) => void;
260
295
  onTransitionEnd?: (event: React.TransitionEvent<HTMLButtonElement>) => void;
261
296
  onTransitionEndCapture?: (event: React.TransitionEvent<HTMLButtonElement>) => void;
297
+ } | {
298
+ onClick?: never;
299
+ onDelete?: () => void;
300
+ color?: TagColor;
301
+ size?: TagSize;
302
+ labelText?: React.ReactNode;
303
+ disabled?: boolean;
304
+ testId?: string;
305
+ icon?: React.ReactElement<import("react-magma-icons").IconProps, string | ((props: any) => React.ReactElement<any, any>) | (new (props: any) => React.Component<any, any, any>)>;
306
+ isClickable?: boolean;
307
+ isInverse?: boolean;
308
+ theme?: import("../..").ThemeInterface;
262
309
  defaultChecked?: boolean;
263
310
  defaultValue?: string | number | readonly string[];
264
311
  suppressContentEditableWarning?: boolean;
265
312
  suppressHydrationWarning?: boolean;
266
313
  accessKey?: string;
267
- contentEditable?: boolean | "inherit" | "true" | "false";
314
+ className?: string;
315
+ contentEditable?: boolean | "true" | "false" | "inherit";
268
316
  contextMenu?: string;
269
317
  dir?: string;
270
318
  draggable?: boolean | "true" | "false";
319
+ hidden?: boolean;
320
+ id?: string;
321
+ lang?: string;
271
322
  placeholder?: string;
272
323
  slot?: string;
273
324
  spellCheck?: boolean | "true" | "false";
325
+ style?: React.CSSProperties;
326
+ tabIndex?: number;
274
327
  title?: string;
328
+ translate?: "yes" | "no";
275
329
  radioGroup?: string;
330
+ role?: React.AriaRole;
276
331
  about?: string;
277
332
  datatype?: string;
278
333
  inlist?: any;
@@ -292,31 +347,11 @@ export declare const WithDelete: {
292
347
  results?: number;
293
348
  security?: string;
294
349
  unselectable?: "on" | "off";
295
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
350
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
296
351
  is?: string;
297
- } | {
298
- onClick?: never;
299
- onDelete?: () => void;
300
- color?: TagColor;
301
- size?: TagSize;
302
- labelText?: React.ReactNode;
303
- disabled?: boolean;
304
- testId?: string;
305
- icon?: React.ReactElement<import("react-magma-icons").IconProps, string | ((props: any) => React.ReactElement<any, any>) | (new (props: any) => React.Component<any, any, any>)>;
306
- isClickable?: boolean;
307
- isInverse?: boolean;
308
- theme?: import("../..").ThemeInterface;
309
- translate?: "yes" | "no";
310
- hidden?: boolean;
311
- className?: string;
312
- id?: string;
313
- lang?: string;
314
- style?: React.CSSProperties;
315
- role?: React.AriaRole;
316
- tabIndex?: number;
317
352
  'aria-activedescendant'?: string;
318
353
  'aria-atomic'?: boolean | "true" | "false";
319
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
354
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
320
355
  'aria-busy'?: boolean | "true" | "false";
321
356
  'aria-checked'?: boolean | "true" | "false" | "mixed";
322
357
  'aria-colcount'?: number;
@@ -327,12 +362,12 @@ export declare const WithDelete: {
327
362
  'aria-describedby'?: string;
328
363
  'aria-details'?: string;
329
364
  'aria-disabled'?: boolean | "true" | "false";
330
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
365
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
331
366
  'aria-errormessage'?: string;
332
367
  'aria-expanded'?: boolean | "true" | "false";
333
368
  'aria-flowto'?: string;
334
369
  'aria-grabbed'?: boolean | "true" | "false";
335
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
370
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
336
371
  'aria-hidden'?: boolean | "true" | "false";
337
372
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
338
373
  'aria-keyshortcuts'?: string;
@@ -349,7 +384,7 @@ export declare const WithDelete: {
349
384
  'aria-posinset'?: number;
350
385
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
351
386
  'aria-readonly'?: boolean | "true" | "false";
352
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
387
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
353
388
  'aria-required'?: boolean | "true" | "false";
354
389
  'aria-roledescription'?: string;
355
390
  'aria-rowcount'?: number;
@@ -525,40 +560,5 @@ export declare const WithDelete: {
525
560
  onAnimationIterationCapture?: (event: React.AnimationEvent<HTMLButtonElement>) => void;
526
561
  onTransitionEnd?: (event: React.TransitionEvent<HTMLButtonElement>) => void;
527
562
  onTransitionEndCapture?: (event: React.TransitionEvent<HTMLButtonElement>) => void;
528
- defaultChecked?: boolean;
529
- defaultValue?: string | number | readonly string[];
530
- suppressContentEditableWarning?: boolean;
531
- suppressHydrationWarning?: boolean;
532
- accessKey?: string;
533
- contentEditable?: boolean | "inherit" | "true" | "false";
534
- contextMenu?: string;
535
- dir?: string;
536
- draggable?: boolean | "true" | "false";
537
- placeholder?: string;
538
- slot?: string;
539
- spellCheck?: boolean | "true" | "false";
540
- title?: string;
541
- radioGroup?: string;
542
- about?: string;
543
- datatype?: string;
544
- inlist?: any;
545
- prefix?: string;
546
- property?: string;
547
- resource?: string;
548
- typeof?: string;
549
- vocab?: string;
550
- autoCapitalize?: string;
551
- autoCorrect?: string;
552
- autoSave?: string;
553
- itemProp?: string;
554
- itemScope?: boolean;
555
- itemType?: string;
556
- itemID?: string;
557
- itemRef?: string;
558
- results?: number;
559
- security?: string;
560
- unselectable?: "on" | "off";
561
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
562
- is?: string;
563
563
  };
564
564
  };
@@ -46,7 +46,7 @@ export declare const OnClear: {
46
46
  suppressHydrationWarning?: boolean;
47
47
  accessKey?: string;
48
48
  className?: string;
49
- contentEditable?: boolean | "inherit" | "true" | "false";
49
+ contentEditable?: boolean | "true" | "false" | "inherit";
50
50
  contextMenu?: string;
51
51
  dir?: string;
52
52
  draggable?: boolean | "true" | "false";
@@ -81,11 +81,11 @@ export declare const OnClear: {
81
81
  results?: number;
82
82
  security?: string;
83
83
  unselectable?: "on" | "off";
84
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
84
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
85
85
  is?: string;
86
86
  'aria-activedescendant'?: string;
87
87
  'aria-atomic'?: boolean | "true" | "false";
88
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
88
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
89
89
  'aria-busy'?: boolean | "true" | "false";
90
90
  'aria-checked'?: boolean | "true" | "false" | "mixed";
91
91
  'aria-colcount'?: number;
@@ -96,12 +96,12 @@ export declare const OnClear: {
96
96
  'aria-describedby'?: string;
97
97
  'aria-details'?: string;
98
98
  'aria-disabled'?: boolean | "true" | "false";
99
- 'aria-dropeffect'?: "none" | "copy" | "move" | "link" | "execute" | "popup";
99
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
100
100
  'aria-errormessage'?: string;
101
101
  'aria-expanded'?: boolean | "true" | "false";
102
102
  'aria-flowto'?: string;
103
103
  'aria-grabbed'?: boolean | "true" | "false";
104
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
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'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
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;