react-magma-dom 3.5.1 → 3.6.0

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 (30) hide show
  1. package/dist/components/Accordion/AccordionButton.d.ts +5 -0
  2. package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +2 -2
  3. package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +4 -4
  4. package/dist/components/Datagrid/Datagrid.stories.d.ts +8 -8
  5. package/dist/components/Dropdown/Dropdown.stories.d.ts +3 -1
  6. package/dist/components/Dropdown/DropdownExpandableMenuButton.d.ts +8 -0
  7. package/dist/components/Dropdown/DropdownExpandableMenuGroup.d.ts +7 -0
  8. package/dist/components/Dropdown/DropdownExpandableMenuItem.d.ts +18 -0
  9. package/dist/components/Dropdown/DropdownExpandableMenuListItem.d.ts +8 -0
  10. package/dist/components/Dropdown/DropdownExpandableMenuPanel.d.ts +5 -0
  11. package/dist/components/Dropdown/index.d.ts +6 -0
  12. package/dist/components/Input/Input.stories.d.ts +348 -21
  13. package/dist/components/InputBase/index.d.ts +5 -0
  14. package/dist/components/PasswordInput/PasswordInput.stories.d.ts +1 -0
  15. package/dist/components/PasswordInput/index.d.ts +6 -0
  16. package/dist/components/Table/Table.stories.d.ts +13 -12
  17. package/dist/components/Table/TablePagination.d.ts +2 -1
  18. package/dist/components/Tag/Tag.stories.d.ts +4 -4
  19. package/dist/components/Textarea/Textarea.stories.d.ts +4 -4
  20. package/dist/components/ToggleButton/ToggleButton.stories.d.ts +8 -8
  21. package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +4 -4
  22. package/dist/esm/index.js +9681 -12469
  23. package/dist/esm/index.js.map +1 -1
  24. package/dist/index.d.ts +5 -0
  25. package/dist/properties.json +331 -93
  26. package/dist/react-magma-dom.cjs.development.js +7122 -8339
  27. package/dist/react-magma-dom.cjs.development.js.map +1 -1
  28. package/dist/react-magma-dom.cjs.production.min.js +1 -1
  29. package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
  30. package/package.json +1 -1
@@ -92,7 +92,7 @@ export declare const WithDelete: {
92
92
  'aria-colindex'?: number;
93
93
  'aria-colspan'?: number;
94
94
  'aria-controls'?: string;
95
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
95
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
96
96
  'aria-describedby'?: string;
97
97
  'aria-details'?: string;
98
98
  'aria-disabled'?: boolean | "true" | "false";
@@ -126,7 +126,7 @@ export declare const WithDelete: {
126
126
  'aria-rowspan'?: number;
127
127
  'aria-selected'?: boolean | "true" | "false";
128
128
  'aria-setsize'?: number;
129
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
129
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
130
130
  'aria-valuemax'?: number;
131
131
  'aria-valuemin'?: number;
132
132
  'aria-valuenow'?: number;
@@ -359,7 +359,7 @@ export declare const WithDelete: {
359
359
  'aria-colindex'?: number;
360
360
  'aria-colspan'?: number;
361
361
  'aria-controls'?: string;
362
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
362
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
363
363
  'aria-describedby'?: string;
364
364
  'aria-details'?: string;
365
365
  'aria-disabled'?: boolean | "true" | "false";
@@ -393,7 +393,7 @@ export declare const WithDelete: {
393
393
  'aria-rowspan'?: number;
394
394
  'aria-selected'?: boolean | "true" | "false";
395
395
  'aria-setsize'?: number;
396
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
396
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
397
397
  'aria-valuemax'?: number;
398
398
  'aria-valuemin'?: number;
399
399
  'aria-valuenow'?: number;
@@ -13,10 +13,11 @@ export declare const OnClear: {
13
13
  testId?: string;
14
14
  textareaStyle?: React.CSSProperties;
15
15
  value?: string | number | readonly string[];
16
+ maxLength?: number;
17
+ hasCharacterCounter?: boolean;
16
18
  iconPosition?: import("../InputBase").InputIconPosition;
17
19
  actionable?: boolean;
18
20
  errorMessage?: React.ReactNode;
19
- hasCharacterCounter?: boolean;
20
21
  helperMessage?: React.ReactNode;
21
22
  inputLength?: number;
22
23
  isLabelVisuallyHidden?: boolean;
@@ -24,7 +25,6 @@ export declare const OnClear: {
24
25
  labelStyle?: React.CSSProperties;
25
26
  labelText?: React.ReactNode;
26
27
  labelWidth?: number;
27
- maxLength?: number;
28
28
  messageStyle?: React.CSSProperties;
29
29
  autoComplete?: string;
30
30
  autoFocus?: boolean;
@@ -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" | "page" | "step" | "location" | "date";
95
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
96
96
  'aria-describedby'?: string;
97
97
  'aria-details'?: string;
98
98
  'aria-disabled'?: boolean | "true" | "false";
@@ -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'?: "none" | "other" | "ascending" | "descending";
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" | "page" | "step" | "location" | "date";
82
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
83
83
  'aria-describedby'?: string;
84
84
  'aria-details'?: string;
85
85
  'aria-disabled'?: boolean | "true" | "false";
@@ -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'?: "none" | "other" | "ascending" | "descending";
115
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
116
116
  'aria-valuemax'?: number;
117
117
  'aria-valuemin'?: number;
118
118
  'aria-valuenow'?: number;
@@ -358,7 +358,7 @@ export declare const Text: {
358
358
  'aria-colindex'?: number;
359
359
  'aria-colspan'?: number;
360
360
  'aria-controls'?: string;
361
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
361
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
362
362
  'aria-describedby'?: string;
363
363
  'aria-details'?: string;
364
364
  'aria-disabled'?: boolean | "true" | "false";
@@ -392,7 +392,7 @@ export declare const Text: {
392
392
  'aria-rowspan'?: number;
393
393
  'aria-selected'?: boolean | "true" | "false";
394
394
  'aria-setsize'?: number;
395
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
395
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
396
396
  'aria-valuemax'?: number;
397
397
  'aria-valuemin'?: number;
398
398
  'aria-valuenow'?: number;
@@ -643,7 +643,7 @@ export declare const TextAndIcon: {
643
643
  'aria-colindex'?: number;
644
644
  'aria-colspan'?: number;
645
645
  'aria-controls'?: string;
646
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
646
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
647
647
  'aria-describedby'?: string;
648
648
  'aria-details'?: string;
649
649
  'aria-disabled'?: boolean | "true" | "false";
@@ -676,7 +676,7 @@ export declare const TextAndIcon: {
676
676
  'aria-rowspan'?: number;
677
677
  'aria-selected'?: boolean | "true" | "false";
678
678
  'aria-setsize'?: number;
679
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
679
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
680
680
  'aria-valuemax'?: number;
681
681
  'aria-valuemin'?: number;
682
682
  'aria-valuenow'?: number;
@@ -922,7 +922,7 @@ export declare const TextAndIcon: {
922
922
  'aria-colindex'?: number;
923
923
  'aria-colspan'?: number;
924
924
  'aria-controls'?: string;
925
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
925
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
926
926
  'aria-describedby'?: string;
927
927
  'aria-details'?: string;
928
928
  'aria-disabled'?: boolean | "true" | "false";
@@ -956,7 +956,7 @@ export declare const TextAndIcon: {
956
956
  'aria-rowspan'?: number;
957
957
  'aria-selected'?: boolean | "true" | "false";
958
958
  'aria-setsize'?: number;
959
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
959
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
960
960
  'aria-valuemax'?: number;
961
961
  'aria-valuemin'?: number;
962
962
  '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" | "page" | "step" | "location" | "date";
77
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
78
78
  'aria-describedby'?: string;
79
79
  'aria-details'?: string;
80
80
  'aria-disabled'?: boolean | "true" | "false";
@@ -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'?: "none" | "other" | "ascending" | "descending";
111
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
112
112
  'aria-valuemax'?: number;
113
113
  'aria-valuemin'?: number;
114
114
  'aria-valuenow'?: number;
@@ -349,7 +349,7 @@ export declare const DifferentToggleButtons: {
349
349
  'aria-colindex'?: number;
350
350
  'aria-colspan'?: number;
351
351
  'aria-controls'?: string;
352
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
352
+ 'aria-current'?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date";
353
353
  'aria-describedby'?: string;
354
354
  'aria-details'?: string;
355
355
  'aria-disabled'?: boolean | "true" | "false";
@@ -383,7 +383,7 @@ export declare const DifferentToggleButtons: {
383
383
  'aria-rowspan'?: number;
384
384
  'aria-selected'?: boolean | "true" | "false";
385
385
  'aria-setsize'?: number;
386
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
386
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
387
387
  'aria-valuemax'?: number;
388
388
  'aria-valuemin'?: number;
389
389
  'aria-valuenow'?: number;