react-magma-dom 3.7.0 → 3.9.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 (62) hide show
  1. package/dist/components/AlertBase/index.d.ts +2 -1
  2. package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +8 -8
  3. package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +16 -16
  4. package/dist/components/Checkbox/index.d.ts +5 -0
  5. package/dist/components/Combobox/ComboboxInput.d.ts +3 -3
  6. package/dist/components/Datagrid/Datagrid.stories.d.ts +8 -8
  7. package/dist/components/DatePicker/DatePicker.stories.d.ts +11 -0
  8. package/dist/components/DatePicker/utils.d.ts +1 -0
  9. package/dist/components/Dropdown/DropdownMenuItem.d.ts +2 -1
  10. package/dist/components/Grid/Grid.d.ts +2 -2
  11. package/dist/components/Hyperlink/Hyperlink.stories.d.ts +30 -2
  12. package/dist/components/Hyperlink/index.d.ts +19 -3
  13. package/dist/components/IconButton/IconButton.stories.d.ts +4 -4
  14. package/dist/components/IndeterminateCheckbox/index.d.ts +4 -0
  15. package/dist/components/Input/Input.stories.d.ts +46 -27
  16. package/dist/components/InputBase/index.d.ts +10 -2
  17. package/dist/components/Modal/Modal.d.ts +9 -0
  18. package/dist/components/Modal/Modal.stories.d.ts +1 -0
  19. package/dist/components/Pagination/Pagination.d.ts +1 -1
  20. package/dist/components/ProgressBar/ProgressBar.stories.d.ts +15 -0
  21. package/dist/components/ProgressBar/index.d.ts +1 -1
  22. package/dist/components/Select/shared.d.ts +10 -9
  23. package/dist/components/Stepper/Step.d.ts +53 -0
  24. package/dist/components/Stepper/Stepper.d.ts +53 -0
  25. package/dist/components/Stepper/Stepper.stories.d.ts +6 -0
  26. package/dist/components/Stepper/index.d.ts +2 -0
  27. package/dist/components/Table/Table.d.ts +3 -2
  28. package/dist/components/Table/Table.stories.d.ts +48 -48
  29. package/dist/components/Tabs/TabScrollSpyPanel.d.ts +10 -0
  30. package/dist/components/Tabs/Tabs.stories.d.ts +2 -0
  31. package/dist/components/Tabs/TabsScrollSpyContainer.d.ts +9 -0
  32. package/dist/components/Tabs/index.d.ts +2 -0
  33. package/dist/components/Tabs/utils.d.ts +3 -0
  34. package/dist/components/Tag/Tag.stories.d.ts +16 -16
  35. package/dist/components/Textarea/Textarea.stories.d.ts +8 -8
  36. package/dist/components/TimePicker/TimePicker.stories.d.ts +2 -0
  37. package/dist/components/TimePicker/useTimePicker.d.ts +2 -2
  38. package/dist/components/ToggleButton/ToggleButton.stories.d.ts +32 -32
  39. package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +16 -16
  40. package/dist/components/Tooltip/index.d.ts +4 -3
  41. package/dist/components/TreeView/TreeItem.d.ts +5 -0
  42. package/dist/components/TreeView/TreeItemContext.d.ts +15 -0
  43. package/dist/components/TreeView/TreeView.d.ts +5 -0
  44. package/dist/components/TreeView/TreeView.stories.d.ts +88 -0
  45. package/dist/components/TreeView/TreeViewContext.d.ts +28 -0
  46. package/dist/components/TreeView/index.d.ts +5 -0
  47. package/dist/components/TreeView/useTreeItem.d.ts +84 -0
  48. package/dist/components/TreeView/useTreeView.d.ts +75 -0
  49. package/dist/components/TreeView/utils.d.ts +44 -0
  50. package/dist/components/Typography/index.d.ts +1 -1
  51. package/dist/esm/index.js +3245 -737
  52. package/dist/esm/index.js.map +1 -1
  53. package/dist/i18n/interface.d.ts +5 -0
  54. package/dist/index.d.ts +7 -1
  55. package/dist/properties.json +1104 -128
  56. package/dist/react-magma-dom.cjs.development.js +2971 -540
  57. package/dist/react-magma-dom.cjs.development.js.map +1 -1
  58. package/dist/react-magma-dom.cjs.production.min.js +1 -1
  59. package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
  60. package/dist/theme/styled.d.ts +1 -1
  61. package/dist/utils/index.d.ts +1 -0
  62. package/package.json +3 -3
@@ -12,9 +12,9 @@ export declare const IconPositions: {
12
12
  args: {
13
13
  placeholder: string;
14
14
  helperMessage: any;
15
- isInverse?: boolean;
16
15
  testId?: string;
17
16
  iconPosition?: InputIconPosition;
17
+ isInverse?: boolean;
18
18
  containerStyle?: React.CSSProperties;
19
19
  actionable?: boolean;
20
20
  errorMessage?: React.ReactNode;
@@ -35,11 +35,13 @@ export declare const IconPositions: {
35
35
  iconAriaLabel?: string;
36
36
  iconRef?: React.Ref<HTMLButtonElement>;
37
37
  inputStyle?: React.CSSProperties;
38
+ inputWrapperStyle?: React.CSSProperties;
38
39
  isClearable?: boolean;
39
40
  onClear?: () => void;
40
41
  isPredictive?: boolean;
41
42
  onIconClick?: () => void;
42
43
  onIconKeyDown?: (event: any) => void;
44
+ onDateChange?: (event: any) => void;
43
45
  theme?: any;
44
46
  type?: InputType;
45
47
  isPasswordInput?: boolean;
@@ -79,7 +81,7 @@ export declare const IconPositions: {
79
81
  suppressHydrationWarning?: boolean;
80
82
  accessKey?: string;
81
83
  className?: string;
82
- contentEditable?: boolean | "inherit" | "true" | "false";
84
+ contentEditable?: boolean | "true" | "false" | "inherit";
83
85
  contextMenu?: string;
84
86
  dir?: string;
85
87
  draggable?: boolean | "true" | "false";
@@ -114,27 +116,27 @@ export declare const IconPositions: {
114
116
  results?: number;
115
117
  security?: string;
116
118
  unselectable?: "on" | "off";
117
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
119
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
118
120
  is?: string;
119
121
  'aria-activedescendant'?: string;
120
122
  'aria-atomic'?: boolean | "true" | "false";
121
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
123
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
122
124
  'aria-busy'?: boolean | "true" | "false";
123
125
  'aria-checked'?: boolean | "true" | "false" | "mixed";
124
126
  'aria-colcount'?: number;
125
127
  'aria-colindex'?: number;
126
128
  'aria-colspan'?: number;
127
129
  'aria-controls'?: string;
128
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
130
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
129
131
  'aria-describedby'?: string;
130
132
  'aria-details'?: string;
131
133
  'aria-disabled'?: boolean | "true" | "false";
132
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
134
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
133
135
  'aria-errormessage'?: string;
134
136
  'aria-expanded'?: boolean | "true" | "false";
135
137
  'aria-flowto'?: string;
136
138
  'aria-grabbed'?: boolean | "true" | "false";
137
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
139
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
138
140
  'aria-hidden'?: boolean | "true" | "false";
139
141
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
140
142
  'aria-keyshortcuts'?: string;
@@ -151,7 +153,7 @@ export declare const IconPositions: {
151
153
  'aria-posinset'?: number;
152
154
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
153
155
  'aria-readonly'?: boolean | "true" | "false";
154
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
156
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
155
157
  'aria-required'?: boolean | "true" | "false";
156
158
  'aria-roledescription'?: string;
157
159
  'aria-rowcount'?: number;
@@ -159,7 +161,7 @@ export declare const IconPositions: {
159
161
  'aria-rowspan'?: number;
160
162
  'aria-selected'?: boolean | "true" | "false";
161
163
  'aria-setsize'?: number;
162
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
164
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
163
165
  'aria-valuemax'?: number;
164
166
  'aria-valuemin'?: number;
165
167
  'aria-valuenow'?: number;
@@ -340,9 +342,9 @@ export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("
340
342
  export declare const WithChildren: {
341
343
  (args: any): JSX.Element;
342
344
  args: {
343
- isInverse?: boolean;
344
345
  testId?: string;
345
346
  iconPosition?: InputIconPosition;
347
+ isInverse?: boolean;
346
348
  containerStyle?: React.CSSProperties;
347
349
  actionable?: boolean;
348
350
  errorMessage?: React.ReactNode;
@@ -364,11 +366,13 @@ export declare const WithChildren: {
364
366
  iconAriaLabel?: string;
365
367
  iconRef?: React.Ref<HTMLButtonElement>;
366
368
  inputStyle?: React.CSSProperties;
369
+ inputWrapperStyle?: React.CSSProperties;
367
370
  isClearable?: boolean;
368
371
  onClear?: () => void;
369
372
  isPredictive?: boolean;
370
373
  onIconClick?: () => void;
371
374
  onIconKeyDown?: (event: any) => void;
375
+ onDateChange?: (event: any) => void;
372
376
  theme?: any;
373
377
  type?: InputType;
374
378
  isPasswordInput?: boolean;
@@ -409,7 +413,7 @@ export declare const WithChildren: {
409
413
  suppressHydrationWarning?: boolean;
410
414
  accessKey?: string;
411
415
  className?: string;
412
- contentEditable?: boolean | "inherit" | "true" | "false";
416
+ contentEditable?: boolean | "true" | "false" | "inherit";
413
417
  contextMenu?: string;
414
418
  dir?: string;
415
419
  draggable?: boolean | "true" | "false";
@@ -444,27 +448,27 @@ export declare const WithChildren: {
444
448
  results?: number;
445
449
  security?: string;
446
450
  unselectable?: "on" | "off";
447
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
451
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
448
452
  is?: string;
449
453
  'aria-activedescendant'?: string;
450
454
  'aria-atomic'?: boolean | "true" | "false";
451
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
455
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
452
456
  'aria-busy'?: boolean | "true" | "false";
453
457
  'aria-checked'?: boolean | "true" | "false" | "mixed";
454
458
  'aria-colcount'?: number;
455
459
  'aria-colindex'?: number;
456
460
  'aria-colspan'?: number;
457
461
  'aria-controls'?: string;
458
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
462
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
459
463
  'aria-describedby'?: string;
460
464
  'aria-details'?: string;
461
465
  'aria-disabled'?: boolean | "true" | "false";
462
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
466
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
463
467
  'aria-errormessage'?: string;
464
468
  'aria-expanded'?: boolean | "true" | "false";
465
469
  'aria-flowto'?: string;
466
470
  'aria-grabbed'?: boolean | "true" | "false";
467
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
471
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
468
472
  'aria-hidden'?: boolean | "true" | "false";
469
473
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
470
474
  'aria-keyshortcuts'?: string;
@@ -481,7 +485,7 @@ export declare const WithChildren: {
481
485
  'aria-posinset'?: number;
482
486
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
483
487
  'aria-readonly'?: boolean | "true" | "false";
484
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
488
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
485
489
  'aria-required'?: boolean | "true" | "false";
486
490
  'aria-roledescription'?: string;
487
491
  'aria-rowcount'?: number;
@@ -489,7 +493,7 @@ export declare const WithChildren: {
489
493
  'aria-rowspan'?: number;
490
494
  'aria-selected'?: boolean | "true" | "false";
491
495
  'aria-setsize'?: number;
492
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
496
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
493
497
  'aria-valuemax'?: number;
494
498
  'aria-valuemin'?: number;
495
499
  'aria-valuenow'?: number;
@@ -667,9 +671,9 @@ export declare const WithChildren: {
667
671
  export declare const WithTwoIcons: {
668
672
  (args: any): JSX.Element;
669
673
  args: {
670
- isInverse?: boolean;
671
674
  testId?: string;
672
675
  iconPosition?: InputIconPosition;
676
+ isInverse?: boolean;
673
677
  containerStyle?: React.CSSProperties;
674
678
  actionable?: boolean;
675
679
  errorMessage?: React.ReactNode;
@@ -691,11 +695,13 @@ export declare const WithTwoIcons: {
691
695
  iconAriaLabel?: string;
692
696
  iconRef?: React.Ref<HTMLButtonElement>;
693
697
  inputStyle?: React.CSSProperties;
698
+ inputWrapperStyle?: React.CSSProperties;
694
699
  isClearable?: boolean;
695
700
  onClear?: () => void;
696
701
  isPredictive?: boolean;
697
702
  onIconClick?: () => void;
698
703
  onIconKeyDown?: (event: any) => void;
704
+ onDateChange?: (event: any) => void;
699
705
  theme?: any;
700
706
  type?: InputType;
701
707
  isPasswordInput?: boolean;
@@ -736,7 +742,7 @@ export declare const WithTwoIcons: {
736
742
  suppressHydrationWarning?: boolean;
737
743
  accessKey?: string;
738
744
  className?: string;
739
- contentEditable?: boolean | "inherit" | "true" | "false";
745
+ contentEditable?: boolean | "true" | "false" | "inherit";
740
746
  contextMenu?: string;
741
747
  dir?: string;
742
748
  draggable?: boolean | "true" | "false";
@@ -771,27 +777,27 @@ export declare const WithTwoIcons: {
771
777
  results?: number;
772
778
  security?: string;
773
779
  unselectable?: "on" | "off";
774
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
780
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
775
781
  is?: string;
776
782
  'aria-activedescendant'?: string;
777
783
  'aria-atomic'?: boolean | "true" | "false";
778
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
784
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
779
785
  'aria-busy'?: boolean | "true" | "false";
780
786
  'aria-checked'?: boolean | "true" | "false" | "mixed";
781
787
  'aria-colcount'?: number;
782
788
  'aria-colindex'?: number;
783
789
  'aria-colspan'?: number;
784
790
  'aria-controls'?: string;
785
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
791
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
786
792
  'aria-describedby'?: string;
787
793
  'aria-details'?: string;
788
794
  'aria-disabled'?: boolean | "true" | "false";
789
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
795
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
790
796
  'aria-errormessage'?: string;
791
797
  'aria-expanded'?: boolean | "true" | "false";
792
798
  'aria-flowto'?: string;
793
799
  'aria-grabbed'?: boolean | "true" | "false";
794
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
800
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
795
801
  'aria-hidden'?: boolean | "true" | "false";
796
802
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
797
803
  'aria-keyshortcuts'?: string;
@@ -808,7 +814,7 @@ export declare const WithTwoIcons: {
808
814
  'aria-posinset'?: number;
809
815
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
810
816
  'aria-readonly'?: boolean | "true" | "false";
811
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
817
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
812
818
  'aria-required'?: boolean | "true" | "false";
813
819
  'aria-roledescription'?: string;
814
820
  'aria-rowcount'?: number;
@@ -816,7 +822,7 @@ export declare const WithTwoIcons: {
816
822
  'aria-rowspan'?: number;
817
823
  'aria-selected'?: boolean | "true" | "false";
818
824
  'aria-setsize'?: number;
819
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
825
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
820
826
  'aria-valuemax'?: number;
821
827
  'aria-valuemin'?: number;
822
828
  'aria-valuenow'?: number;
@@ -991,3 +997,16 @@ export declare const WithTwoIcons: {
991
997
  };
992
998
  };
993
999
  };
1000
+ export declare const NumberInput: {
1001
+ (args: any): JSX.Element;
1002
+ args: {
1003
+ disabled: boolean;
1004
+ helperMessage: string;
1005
+ isClearable: boolean;
1006
+ };
1007
+ parameters: {
1008
+ controls: {
1009
+ exclude: string[];
1010
+ };
1011
+ };
1012
+ };
@@ -64,6 +64,10 @@ export interface InputBaseProps extends React.InputHTMLAttributes<HTMLInputEleme
64
64
  * Style properties for the input element
65
65
  */
66
66
  inputStyle?: React.CSSProperties;
67
+ /**
68
+ * Style properties for input wrapper element
69
+ */
70
+ inputWrapperStyle?: React.CSSProperties;
67
71
  /**
68
72
  * Total number of characters in an input.
69
73
  */
@@ -99,6 +103,10 @@ export interface InputBaseProps extends React.InputHTMLAttributes<HTMLInputEleme
99
103
  * Action that will fire when icon receives keypress
100
104
  */
101
105
  onIconKeyDown?: (event: any) => void;
106
+ /**
107
+ * Action that will synchronize chosenDate with input value
108
+ */
109
+ onDateChange?: (event: any) => void;
102
110
  /**
103
111
  * @internal
104
112
  */
@@ -146,12 +154,12 @@ export interface InputBaseStylesProps {
146
154
  isClearable?: boolean;
147
155
  }
148
156
  export declare const inputBaseStyles: (props: InputBaseStylesProps) => import("@emotion/utils").SerializedStyles;
149
- export declare const InputWrapper: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, InputWrapperStylesProps, ThemeInterface>;
157
+ export declare const InputWrapper: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, InputWrapperStylesProps, object>;
150
158
  export declare const IconButtonContainer: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
151
159
  iconPosition?: InputIconPosition;
152
160
  inputSize?: InputSize;
153
161
  theme: ThemeInterface;
154
162
  isClickable?: boolean;
155
163
  hasChildren?: boolean;
156
- }, ThemeInterface>;
164
+ }, object>;
157
165
  export declare const InputBase: React.ForwardRefExoticComponent<InputBaseProps & React.RefAttributes<HTMLInputElement>>;
@@ -11,6 +11,10 @@ export declare enum ModalSize {
11
11
  * @children required
12
12
  */
13
13
  export interface ModalProps extends React.HTMLAttributes<HTMLDivElement> {
14
+ /**
15
+ * Custom aria label ONLY for modals that do not have a header
16
+ */
17
+ ariaLabel?: string;
14
18
  /**
15
19
  * The text read by screen readers for the close button
16
20
  * @default "Close dialog"
@@ -28,6 +32,11 @@ export interface ModalProps extends React.HTMLAttributes<HTMLDivElement> {
28
32
  * The content of the modal header
29
33
  */
30
34
  header?: React.ReactNode;
35
+ /**
36
+ * If true, closing the modal handled on the consumer side
37
+ * @default false
38
+ */
39
+ isModalClosingControlledManually?: boolean;
31
40
  /**
32
41
  * If true, clicking the backdrop will not dismiss the modal
33
42
  * @default false
@@ -10,4 +10,5 @@ export declare const RadioInModal: () => JSX.Element;
10
10
  export declare const ModalContentUpdate: () => JSX.Element;
11
11
  export declare const NoHeaderOrFocusableContent: () => JSX.Element;
12
12
  export declare const ModalInAModal: () => JSX.Element;
13
+ export declare const CloseModalWithConfirmation: () => JSX.Element;
13
14
  export declare const Inverse: () => JSX.Element;
@@ -90,5 +90,5 @@ export declare enum PageButtonSize {
90
90
  export declare const NavButton: import("@emotion/styled-base").StyledComponent<({} & import("../IconButton").IconTextButtonProps & React.RefAttributes<HTMLButtonElement>) | ({
91
91
  children?: never;
92
92
  iconPosition?: never;
93
- } & import("../IconButton").IconOnlyButtonProps & React.RefAttributes<HTMLButtonElement>), any, import("../..").ThemeInterface>;
93
+ } & import("../IconButton").IconOnlyButtonProps & React.RefAttributes<HTMLButtonElement>), any, object>;
94
94
  export declare const Pagination: React.ForwardRefExoticComponent<(ControlledPaginationProps & React.RefAttributes<HTMLDivElement>) | (UncontrolledPaginationProps & React.RefAttributes<HTMLDivElement>)>;
@@ -1,5 +1,20 @@
1
+ /// <reference types="react" />
1
2
  import { ProgressBarProps } from '.';
2
3
  declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
3
4
  export default _default;
4
5
  export declare const Default: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ProgressBarProps>;
5
6
  export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ProgressBarProps>;
7
+ export declare const CustomColor: {
8
+ (args: any): JSX.Element;
9
+ args: {
10
+ percentage: number;
11
+ isInverse: boolean;
12
+ height: string;
13
+ color: string;
14
+ };
15
+ parameters: {
16
+ controls: {
17
+ exclude: string[];
18
+ };
19
+ };
20
+ };
@@ -4,7 +4,7 @@ export interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
4
4
  * The color variant of the progress bar
5
5
  * @default ProgressBarColor.primary
6
6
  */
7
- color?: ProgressBarColor;
7
+ color?: ProgressBarColor | string;
8
8
  /**
9
9
  * The height of the progress bar. Can be a string or number; if number is provided height is in px
10
10
  * @default 8
@@ -1,22 +1,23 @@
1
1
  /// <reference types="react" />
2
- export declare const SelectContainer: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, import("../..").ThemeInterface>;
3
- export declare const StyledButton: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, import("../InputBase").InputBaseStylesProps, import("../..").ThemeInterface>;
4
- export declare const SelectText: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, import("../..").ThemeInterface>;
2
+ import { ThemeInterface } from '../../theme/magma';
3
+ export declare const SelectContainer: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, object>;
4
+ export declare const StyledButton: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, import("../InputBase").InputBaseStylesProps, ThemeInterface>;
5
+ export declare const SelectText: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, object>;
5
6
  export declare const StyledCard: import("@emotion/styled-base").StyledComponent<import("../Card").CardProps & import("react").RefAttributes<HTMLDivElement>, {
6
7
  isOpen?: boolean;
7
8
  isInverse?: boolean;
8
- }, import("../..").ThemeInterface>;
9
+ }, ThemeInterface>;
9
10
  export declare const StyledList: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, {
10
11
  isOpen?: boolean;
11
12
  maxHeight: string;
12
- }, import("../..").ThemeInterface>;
13
+ }, object>;
13
14
  export declare const StyledItem: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, {
14
15
  isInverse?: boolean;
15
16
  isFocused?: boolean;
16
- }, import("../..").ThemeInterface>;
17
- export declare const SelectedItemsWrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, import("../..").ThemeInterface>;
17
+ }, ThemeInterface>;
18
+ export declare const SelectedItemsWrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, object>;
18
19
  export declare const SelectedItemButton: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
19
20
  isInverse?: boolean;
20
21
  disabled?: boolean;
21
- }, import("../..").ThemeInterface>;
22
- export declare const IconWrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, import("../..").ThemeInterface>;
22
+ }, ThemeInterface>;
23
+ export declare const IconWrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, object>;
@@ -0,0 +1,53 @@
1
+ import * as React from 'react';
2
+ import { ThemeInterface } from '../../theme/magma';
3
+ import { StepperLayout } from './Stepper';
4
+ export interface StepProps extends React.HTMLAttributes<HTMLDivElement> {
5
+ /**
6
+ * Error state for each step.
7
+ * @default false
8
+ */
9
+ hasError?: boolean;
10
+ /**
11
+ * @internal
12
+ */
13
+ layout?: StepperLayout;
14
+ /**
15
+ * Label beneath each step.
16
+ */
17
+ label?: string;
18
+ /**
19
+ * Sub label beneath each step.
20
+ */
21
+ secondaryLabel?: string;
22
+ /**
23
+ * @internal
24
+ */
25
+ stepStatus?: StepStatus;
26
+ /**
27
+ * @internal
28
+ */
29
+ index?: number;
30
+ /**
31
+ * @internal
32
+ */
33
+ isInverse?: boolean;
34
+ /**
35
+ * @internal
36
+ */
37
+ stepLabel?: string;
38
+ /**
39
+ * @internal
40
+ */
41
+ testId?: string;
42
+ /**
43
+ * @internal
44
+ */
45
+ theme?: ThemeInterface;
46
+ }
47
+ export declare enum StepStatus {
48
+ active = "active",
49
+ completed = "completed",
50
+ incomplete = "incomplete"
51
+ }
52
+ export declare const HiddenLabelText: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css">, ThemeInterface>;
53
+ export declare const Step: React.ForwardRefExoticComponent<StepProps & React.RefAttributes<HTMLDivElement>>;