react-magma-dom 3.7.0 → 3.8.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 (53) 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 +10 -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/IconButton/IconButton.stories.d.ts +4 -4
  12. package/dist/components/IndeterminateCheckbox/index.d.ts +4 -0
  13. package/dist/components/Input/Input.stories.d.ts +27 -27
  14. package/dist/components/InputBase/index.d.ts +2 -2
  15. package/dist/components/Modal/Modal.d.ts +5 -0
  16. package/dist/components/Modal/Modal.stories.d.ts +1 -0
  17. package/dist/components/Pagination/Pagination.d.ts +1 -1
  18. package/dist/components/Select/shared.d.ts +10 -9
  19. package/dist/components/Table/Table.d.ts +3 -2
  20. package/dist/components/Table/Table.stories.d.ts +48 -48
  21. package/dist/components/Tabs/TabScrollSpyPanel.d.ts +10 -0
  22. package/dist/components/Tabs/Tabs.stories.d.ts +2 -0
  23. package/dist/components/Tabs/TabsScrollSpyContainer.d.ts +9 -0
  24. package/dist/components/Tabs/index.d.ts +2 -0
  25. package/dist/components/Tabs/utils.d.ts +3 -0
  26. package/dist/components/Tag/Tag.stories.d.ts +16 -16
  27. package/dist/components/Textarea/Textarea.stories.d.ts +8 -8
  28. package/dist/components/TimePicker/TimePicker.stories.d.ts +2 -0
  29. package/dist/components/TimePicker/useTimePicker.d.ts +2 -2
  30. package/dist/components/ToggleButton/ToggleButton.stories.d.ts +32 -32
  31. package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +16 -16
  32. package/dist/components/Tooltip/index.d.ts +4 -3
  33. package/dist/components/TreeView/TreeItem.d.ts +5 -0
  34. package/dist/components/TreeView/TreeItemContext.d.ts +15 -0
  35. package/dist/components/TreeView/TreeView.d.ts +5 -0
  36. package/dist/components/TreeView/TreeView.stories.d.ts +88 -0
  37. package/dist/components/TreeView/TreeViewContext.d.ts +28 -0
  38. package/dist/components/TreeView/index.d.ts +5 -0
  39. package/dist/components/TreeView/useTreeItem.d.ts +84 -0
  40. package/dist/components/TreeView/useTreeView.d.ts +75 -0
  41. package/dist/components/TreeView/utils.d.ts +44 -0
  42. package/dist/components/Typography/index.d.ts +1 -1
  43. package/dist/esm/index.js +2748 -653
  44. package/dist/esm/index.js.map +1 -1
  45. package/dist/index.d.ts +4 -0
  46. package/dist/properties.json +824 -98
  47. package/dist/react-magma-dom.cjs.development.js +2633 -609
  48. package/dist/react-magma-dom.cjs.development.js.map +1 -1
  49. package/dist/react-magma-dom.cjs.production.min.js +1 -1
  50. package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
  51. package/dist/theme/styled.d.ts +1 -1
  52. package/dist/utils/index.d.ts +1 -0
  53. package/package.json +3 -3
@@ -146,12 +146,12 @@ export interface InputBaseStylesProps {
146
146
  isClearable?: boolean;
147
147
  }
148
148
  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>;
149
+ export declare const InputWrapper: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, InputWrapperStylesProps, object>;
150
150
  export declare const IconButtonContainer: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
151
151
  iconPosition?: InputIconPosition;
152
152
  inputSize?: InputSize;
153
153
  theme: ThemeInterface;
154
154
  isClickable?: boolean;
155
155
  hasChildren?: boolean;
156
- }, ThemeInterface>;
156
+ }, object>;
157
157
  export declare const InputBase: React.ForwardRefExoticComponent<InputBaseProps & React.RefAttributes<HTMLInputElement>>;
@@ -28,6 +28,11 @@ export interface ModalProps extends React.HTMLAttributes<HTMLDivElement> {
28
28
  * The content of the modal header
29
29
  */
30
30
  header?: React.ReactNode;
31
+ /**
32
+ * If true, closing the modal handled on the consumer side
33
+ * @default false
34
+ */
35
+ isModalClosingControlledManually?: boolean;
31
36
  /**
32
37
  * If true, clicking the backdrop will not dismiss the modal
33
38
  * @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,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>;
@@ -1,4 +1,5 @@
1
1
  import * as React from 'react';
2
+ import { ThemeInterface } from '../../theme/magma';
2
3
  /**
3
4
  * @children required
4
5
  */
@@ -86,10 +87,10 @@ export declare const TableContainer: import("@emotion/styled-base").StyledCompon
86
87
  minWidth: number;
87
88
  hasSquareCorners?: boolean;
88
89
  isInverse?: boolean;
89
- }, import("../..").ThemeInterface>;
90
+ }, ThemeInterface>;
90
91
  export declare const StyledTable: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, {
91
92
  isInverse?: boolean;
92
93
  minWidth: number;
93
- }, import("../..").ThemeInterface>;
94
+ }, ThemeInterface>;
94
95
  export declare const Table: React.ForwardRefExoticComponent<TableProps & React.RefAttributes<HTMLTableElement>>;
95
96
  export {};
@@ -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,27 +69,27 @@ 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" | "list" | "inline" | "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;
80
80
  'aria-colindex'?: number;
81
81
  'aria-colspan'?: number;
82
82
  'aria-controls'?: string;
83
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
83
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
84
84
  'aria-describedby'?: string;
85
85
  'aria-details'?: string;
86
86
  'aria-disabled'?: boolean | "true" | "false";
87
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "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;
@@ -114,7 +114,7 @@ export declare const ControlledPagination: {
114
114
  'aria-rowspan'?: number;
115
115
  'aria-selected'?: boolean | "true" | "false";
116
116
  'aria-setsize'?: number;
117
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
117
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
118
118
  'aria-valuemax'?: number;
119
119
  'aria-valuemin'?: number;
120
120
  'aria-valuenow'?: number;
@@ -317,7 +317,7 @@ export declare const PaginationInverse: {
317
317
  suppressHydrationWarning?: boolean;
318
318
  accessKey?: string;
319
319
  className?: string;
320
- contentEditable?: boolean | "inherit" | "true" | "false";
320
+ contentEditable?: boolean | "true" | "false" | "inherit";
321
321
  contextMenu?: string;
322
322
  dir?: string;
323
323
  draggable?: boolean | "true" | "false";
@@ -353,27 +353,27 @@ export declare const PaginationInverse: {
353
353
  results?: number;
354
354
  security?: string;
355
355
  unselectable?: "on" | "off";
356
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
356
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
357
357
  is?: string;
358
358
  'aria-activedescendant'?: string;
359
359
  'aria-atomic'?: boolean | "true" | "false";
360
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
360
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
361
361
  'aria-busy'?: boolean | "true" | "false";
362
362
  'aria-checked'?: boolean | "true" | "false" | "mixed";
363
363
  'aria-colcount'?: number;
364
364
  'aria-colindex'?: number;
365
365
  'aria-colspan'?: number;
366
366
  'aria-controls'?: string;
367
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
367
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
368
368
  'aria-describedby'?: string;
369
369
  'aria-details'?: string;
370
370
  'aria-disabled'?: boolean | "true" | "false";
371
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
371
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
372
372
  'aria-errormessage'?: string;
373
373
  'aria-expanded'?: boolean | "true" | "false";
374
374
  'aria-flowto'?: string;
375
375
  'aria-grabbed'?: boolean | "true" | "false";
376
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
376
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
377
377
  'aria-hidden'?: boolean | "true" | "false";
378
378
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
379
379
  'aria-keyshortcuts'?: string;
@@ -390,7 +390,7 @@ export declare const PaginationInverse: {
390
390
  'aria-posinset'?: number;
391
391
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
392
392
  'aria-readonly'?: boolean | "true" | "false";
393
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
393
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
394
394
  'aria-required'?: boolean | "true" | "false";
395
395
  'aria-roledescription'?: string;
396
396
  'aria-rowcount'?: number;
@@ -398,7 +398,7 @@ export declare const PaginationInverse: {
398
398
  'aria-rowspan'?: number;
399
399
  'aria-selected'?: boolean | "true" | "false";
400
400
  'aria-setsize'?: number;
401
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
401
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
402
402
  'aria-valuemax'?: number;
403
403
  'aria-valuemin'?: number;
404
404
  'aria-valuenow'?: number;
@@ -592,7 +592,7 @@ export declare const RowColors: {
592
592
  suppressHydrationWarning?: boolean;
593
593
  accessKey?: string;
594
594
  className?: string;
595
- contentEditable?: boolean | "inherit" | "true" | "false";
595
+ contentEditable?: boolean | "true" | "false" | "inherit";
596
596
  contextMenu?: string;
597
597
  dir?: string;
598
598
  draggable?: boolean | "true" | "false";
@@ -628,27 +628,27 @@ export declare const RowColors: {
628
628
  results?: number;
629
629
  security?: string;
630
630
  unselectable?: "on" | "off";
631
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
631
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
632
632
  is?: string;
633
633
  'aria-activedescendant'?: string;
634
634
  'aria-atomic'?: boolean | "true" | "false";
635
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
635
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
636
636
  'aria-busy'?: boolean | "true" | "false";
637
637
  'aria-checked'?: boolean | "true" | "false" | "mixed";
638
638
  'aria-colcount'?: number;
639
639
  'aria-colindex'?: number;
640
640
  'aria-colspan'?: number;
641
641
  'aria-controls'?: string;
642
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
642
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
643
643
  'aria-describedby'?: string;
644
644
  'aria-details'?: string;
645
645
  'aria-disabled'?: boolean | "true" | "false";
646
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
646
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
647
647
  'aria-errormessage'?: string;
648
648
  'aria-expanded'?: boolean | "true" | "false";
649
649
  'aria-flowto'?: string;
650
650
  'aria-grabbed'?: boolean | "true" | "false";
651
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
651
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
652
652
  'aria-hidden'?: boolean | "true" | "false";
653
653
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
654
654
  'aria-keyshortcuts'?: string;
@@ -665,7 +665,7 @@ export declare const RowColors: {
665
665
  'aria-posinset'?: number;
666
666
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
667
667
  'aria-readonly'?: boolean | "true" | "false";
668
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
668
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
669
669
  'aria-required'?: boolean | "true" | "false";
670
670
  'aria-roledescription'?: string;
671
671
  'aria-rowcount'?: number;
@@ -673,7 +673,7 @@ export declare const RowColors: {
673
673
  'aria-rowspan'?: number;
674
674
  'aria-selected'?: boolean | "true" | "false";
675
675
  'aria-setsize'?: number;
676
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
676
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
677
677
  'aria-valuemax'?: number;
678
678
  'aria-valuemin'?: number;
679
679
  'aria-valuenow'?: number;
@@ -866,7 +866,7 @@ export declare const RowColorsInverse: {
866
866
  suppressHydrationWarning?: boolean;
867
867
  accessKey?: string;
868
868
  className?: string;
869
- contentEditable?: boolean | "inherit" | "true" | "false";
869
+ contentEditable?: boolean | "true" | "false" | "inherit";
870
870
  contextMenu?: string;
871
871
  dir?: string;
872
872
  draggable?: boolean | "true" | "false";
@@ -902,27 +902,27 @@ export declare const RowColorsInverse: {
902
902
  results?: number;
903
903
  security?: string;
904
904
  unselectable?: "on" | "off";
905
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
905
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
906
906
  is?: string;
907
907
  'aria-activedescendant'?: string;
908
908
  'aria-atomic'?: boolean | "true" | "false";
909
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
909
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
910
910
  'aria-busy'?: boolean | "true" | "false";
911
911
  'aria-checked'?: boolean | "true" | "false" | "mixed";
912
912
  'aria-colcount'?: number;
913
913
  'aria-colindex'?: number;
914
914
  'aria-colspan'?: number;
915
915
  'aria-controls'?: string;
916
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
916
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
917
917
  'aria-describedby'?: string;
918
918
  'aria-details'?: string;
919
919
  'aria-disabled'?: boolean | "true" | "false";
920
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
920
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
921
921
  'aria-errormessage'?: string;
922
922
  'aria-expanded'?: boolean | "true" | "false";
923
923
  'aria-flowto'?: string;
924
924
  'aria-grabbed'?: boolean | "true" | "false";
925
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
925
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
926
926
  'aria-hidden'?: boolean | "true" | "false";
927
927
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
928
928
  'aria-keyshortcuts'?: string;
@@ -939,7 +939,7 @@ export declare const RowColorsInverse: {
939
939
  'aria-posinset'?: number;
940
940
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
941
941
  'aria-readonly'?: boolean | "true" | "false";
942
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
942
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
943
943
  'aria-required'?: boolean | "true" | "false";
944
944
  'aria-roledescription'?: string;
945
945
  'aria-rowcount'?: number;
@@ -947,7 +947,7 @@ export declare const RowColorsInverse: {
947
947
  'aria-rowspan'?: number;
948
948
  'aria-selected'?: boolean | "true" | "false";
949
949
  'aria-setsize'?: number;
950
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
950
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
951
951
  'aria-valuemax'?: number;
952
952
  'aria-valuemin'?: number;
953
953
  'aria-valuenow'?: number;
@@ -1140,7 +1140,7 @@ export declare const Sortable: {
1140
1140
  suppressHydrationWarning?: boolean;
1141
1141
  accessKey?: string;
1142
1142
  className?: string;
1143
- contentEditable?: boolean | "inherit" | "true" | "false";
1143
+ contentEditable?: boolean | "true" | "false" | "inherit";
1144
1144
  contextMenu?: string;
1145
1145
  dir?: string;
1146
1146
  draggable?: boolean | "true" | "false";
@@ -1176,27 +1176,27 @@ export declare const Sortable: {
1176
1176
  results?: number;
1177
1177
  security?: string;
1178
1178
  unselectable?: "on" | "off";
1179
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
1179
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
1180
1180
  is?: string;
1181
1181
  'aria-activedescendant'?: string;
1182
1182
  'aria-atomic'?: boolean | "true" | "false";
1183
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
1183
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
1184
1184
  'aria-busy'?: boolean | "true" | "false";
1185
1185
  'aria-checked'?: boolean | "true" | "false" | "mixed";
1186
1186
  'aria-colcount'?: number;
1187
1187
  'aria-colindex'?: number;
1188
1188
  'aria-colspan'?: number;
1189
1189
  'aria-controls'?: string;
1190
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
1190
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
1191
1191
  'aria-describedby'?: string;
1192
1192
  'aria-details'?: string;
1193
1193
  'aria-disabled'?: boolean | "true" | "false";
1194
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
1194
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
1195
1195
  'aria-errormessage'?: string;
1196
1196
  'aria-expanded'?: boolean | "true" | "false";
1197
1197
  'aria-flowto'?: string;
1198
1198
  'aria-grabbed'?: boolean | "true" | "false";
1199
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
1199
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
1200
1200
  'aria-hidden'?: boolean | "true" | "false";
1201
1201
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
1202
1202
  'aria-keyshortcuts'?: string;
@@ -1213,7 +1213,7 @@ export declare const Sortable: {
1213
1213
  'aria-posinset'?: number;
1214
1214
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
1215
1215
  'aria-readonly'?: boolean | "true" | "false";
1216
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
1216
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
1217
1217
  'aria-required'?: boolean | "true" | "false";
1218
1218
  'aria-roledescription'?: string;
1219
1219
  'aria-rowcount'?: number;
@@ -1221,7 +1221,7 @@ export declare const Sortable: {
1221
1221
  'aria-rowspan'?: number;
1222
1222
  'aria-selected'?: boolean | "true" | "false";
1223
1223
  'aria-setsize'?: number;
1224
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
1224
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
1225
1225
  'aria-valuemax'?: number;
1226
1226
  'aria-valuemin'?: number;
1227
1227
  'aria-valuenow'?: number;
@@ -1414,7 +1414,7 @@ export declare const WithDropdown: {
1414
1414
  suppressHydrationWarning?: boolean;
1415
1415
  accessKey?: string;
1416
1416
  className?: string;
1417
- contentEditable?: boolean | "inherit" | "true" | "false";
1417
+ contentEditable?: boolean | "true" | "false" | "inherit";
1418
1418
  contextMenu?: string;
1419
1419
  dir?: string;
1420
1420
  draggable?: boolean | "true" | "false";
@@ -1450,27 +1450,27 @@ export declare const WithDropdown: {
1450
1450
  results?: number;
1451
1451
  security?: string;
1452
1452
  unselectable?: "on" | "off";
1453
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
1453
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
1454
1454
  is?: string;
1455
1455
  'aria-activedescendant'?: string;
1456
1456
  'aria-atomic'?: boolean | "true" | "false";
1457
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
1457
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both";
1458
1458
  'aria-busy'?: boolean | "true" | "false";
1459
1459
  'aria-checked'?: boolean | "true" | "false" | "mixed";
1460
1460
  'aria-colcount'?: number;
1461
1461
  'aria-colindex'?: number;
1462
1462
  'aria-colspan'?: number;
1463
1463
  'aria-controls'?: string;
1464
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
1464
+ 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
1465
1465
  'aria-describedby'?: string;
1466
1466
  'aria-details'?: string;
1467
1467
  'aria-disabled'?: boolean | "true" | "false";
1468
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
1468
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
1469
1469
  'aria-errormessage'?: string;
1470
1470
  'aria-expanded'?: boolean | "true" | "false";
1471
1471
  'aria-flowto'?: string;
1472
1472
  'aria-grabbed'?: boolean | "true" | "false";
1473
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
1473
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
1474
1474
  'aria-hidden'?: boolean | "true" | "false";
1475
1475
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
1476
1476
  'aria-keyshortcuts'?: string;
@@ -1487,7 +1487,7 @@ export declare const WithDropdown: {
1487
1487
  'aria-posinset'?: number;
1488
1488
  'aria-pressed'?: boolean | "true" | "false" | "mixed";
1489
1489
  'aria-readonly'?: boolean | "true" | "false";
1490
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
1490
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
1491
1491
  'aria-required'?: boolean | "true" | "false";
1492
1492
  'aria-roledescription'?: string;
1493
1493
  'aria-rowcount'?: number;
@@ -1495,7 +1495,7 @@ export declare const WithDropdown: {
1495
1495
  'aria-rowspan'?: number;
1496
1496
  'aria-selected'?: boolean | "true" | "false";
1497
1497
  'aria-setsize'?: number;
1498
- 'aria-sort'?: "none" | "other" | "ascending" | "descending";
1498
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
1499
1499
  'aria-valuemax'?: number;
1500
1500
  'aria-valuemin'?: number;
1501
1501
  'aria-valuenow'?: number;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export interface TabScrollSpyPanelProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ icon?: React.ReactElement<any> | React.ReactElement<any>[];
4
+ tabLabel: string;
5
+ /**
6
+ * @internal
7
+ */
8
+ testId?: string;
9
+ }
10
+ export declare const TabScrollSpyPanel: React.ForwardRefExoticComponent<TabScrollSpyPanelProps & React.RefAttributes<HTMLDivElement>>;