@superdispatch/ui 0.13.0 → 0.16.0-alpha.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 (76) hide show
  1. package/dist-node/index.js +4051 -508
  2. package/dist-node/index.js.map +1 -1
  3. package/dist-src/dialog/DialogOverrides.js +8 -0
  4. package/dist-src/index.js +3 -1
  5. package/dist-src/info-card/InfoCard.js +1 -11
  6. package/dist-src/utils/mergeRefs.js +10 -7
  7. package/dist-src/v5/adaptive-toolbar/AdaptiveToolbar.js +146 -0
  8. package/dist-src/v5/app-bar/AppBarOverrides.js +9 -0
  9. package/dist-src/v5/autocomplete/AutocompleteOverrides.js +63 -0
  10. package/dist-src/v5/avatar/AvatarOverrides.js +21 -0
  11. package/dist-src/v5/avatar-button/AvatarButton.js +146 -0
  12. package/dist-src/v5/button/Button.js +32 -0
  13. package/dist-src/v5/button/ButtonOverrides.js +238 -0
  14. package/dist-src/v5/card/CardOverrides.js +16 -0
  15. package/dist-src/v5/card-button/CardButton.js +135 -0
  16. package/dist-src/v5/checkbox/CheckboxField.js +37 -0
  17. package/dist-src/v5/checkbox/CheckboxGroudField.js +32 -0
  18. package/dist-src/v5/checkbox/CheckboxOverrides.js +71 -0
  19. package/dist-src/v5/chip/ChipOverrides.js +106 -0
  20. package/dist-src/v5/columns/Column.js +75 -0
  21. package/dist-src/v5/columns/Columns.js +28 -0
  22. package/dist-src/v5/description-list/DescriptionList.js +114 -0
  23. package/dist-src/v5/dialog/DialogOverrides.js +43 -0
  24. package/dist-src/v5/drawer/DrawerActions.js +69 -0
  25. package/dist-src/v5/drawer/DrawerContent.js +15 -0
  26. package/dist-src/v5/drawer/DrawerList.js +31 -0
  27. package/dist-src/v5/drawer/DrawerOverrides.js +17 -0
  28. package/dist-src/v5/drawer/DrawerTitle.js +119 -0
  29. package/dist-src/v5/grid/GridStack.js +33 -0
  30. package/dist-src/v5/grid/InlineGrid.js +34 -0
  31. package/dist-src/v5/icon-button/IconButtonOverrides.js +60 -0
  32. package/dist-src/v5/index.js +38 -0
  33. package/dist-src/v5/info-card/InfoCard.js +59 -0
  34. package/dist-src/v5/inline/Inline.js +56 -0
  35. package/dist-src/v5/link/LinkOverrides.js +46 -0
  36. package/dist-src/v5/list/ListOverrides.js +16 -0
  37. package/dist-src/v5/menu/MenuOverrides.js +34 -0
  38. package/dist-src/v5/overflow-text/OverflowText.js +84 -0
  39. package/dist-src/v5/pagination/PaginationOverrides.js +35 -0
  40. package/dist-src/v5/paper/PaperOverrides.js +13 -0
  41. package/dist-src/v5/props/AlignProps.js +15 -0
  42. package/dist-src/v5/props/CollapseProp.js +3 -0
  43. package/dist-src/v5/props/ResponsiveProp.js +42 -0
  44. package/dist-src/v5/props/SpaceProp.js +28 -0
  45. package/dist-src/v5/radio/RadioField.js +36 -0
  46. package/dist-src/v5/radio/RadioGroupField.js +38 -0
  47. package/dist-src/v5/radio/RadioOverrides.js +49 -0
  48. package/dist-src/v5/responsive/CollapseBreakpoint.js +15 -0
  49. package/dist-src/v5/responsive/ResponsiveContext.js +31 -0
  50. package/dist-src/v5/snackbar/Snackbar.js +53 -0
  51. package/dist-src/v5/snackbar/SnackbarContent.js +105 -0
  52. package/dist-src/v5/snackbar/SnackbarOverrides.js +35 -0
  53. package/dist-src/v5/snackbar/SnackbarStack.js +113 -0
  54. package/dist-src/v5/stack/Stack.js +43 -0
  55. package/dist-src/v5/svg-icon/SvgIconOverrides.js +33 -0
  56. package/dist-src/v5/switch/SwitchOverrides.js +88 -0
  57. package/dist-src/v5/tabs/TabsOverrides.js +45 -0
  58. package/dist-src/v5/tag/Tag.js +118 -0
  59. package/dist-src/v5/text-field/TextFieldOverrides.js +205 -0
  60. package/dist-src/v5/theme/Color.js +77 -0
  61. package/dist-src/v5/theme/CssBaselineOverrides.js +8 -0
  62. package/dist-src/v5/theme/SuperDispatchTheme.js +2 -0
  63. package/dist-src/v5/theme/ThemeProvider.js +142 -0
  64. package/dist-src/v5/tiles/Tiles.js +94 -0
  65. package/dist-src/v5/toolbar/ToolbarOverrides.js +15 -0
  66. package/dist-src/v5/tooltip/TooltipOverrides.js +42 -0
  67. package/dist-src/v5/typography/TypographyOverrides.js +121 -0
  68. package/dist-src/v5/utils/VisibilityObserver.js +53 -0
  69. package/dist-src/v5/utils/isEmptyReactNode.js +3 -0
  70. package/dist-src/v5/utils/mergeRefs.js +20 -0
  71. package/dist-src/v5/utils/renderChildren.js +8 -0
  72. package/dist-src/v5/utils/useUID.js +6 -0
  73. package/dist-types/index.d.ts +643 -37
  74. package/dist-web/index.js +4214 -673
  75. package/dist-web/index.js.map +1 -1
  76. package/package.json +9 -3
@@ -1,12 +1,18 @@
1
1
  /// <reference types="react" />
2
- import { ButtonProps as ButtonProps$1, ToolbarProps, AvatarClassKey, AvatarTypeMap, ButtonBaseProps, CheckboxProps, FormControlLabelProps, FormControlProps, FormGroupProps, FormLabelProps, FormHelperTextProps, TypographyProps, TooltipProps, ListProps, ListTypeMap, GridProps, CardClassKey, CardProps, CardContentProps, RadioProps, RadioGroupProps, SnackbarContentProps as SnackbarContentProps$1, SnackbarContentClassKey as SnackbarContentClassKey$1, SnackbarProps as SnackbarProps$1, Theme } from '@material-ui/core';
3
- import { RefAttributes, ForwardRefExoticComponent, Key, ReactNode, MouseEvent, ButtonHTMLAttributes, Ref, ElementType, HTMLAttributes, ReactElement, ConsumerProps } from 'react';
4
- import { ClassNameMap } from '@material-ui/styles';
2
+ import { ToolbarProps, AvatarTypeMap, ButtonBaseProps, CheckboxProps, FormControlLabelProps, FormControlProps, FormGroupProps, FormLabelProps, FormHelperTextProps, TypographyProps, TooltipProps, Theme, ExtendList, ListTypeMap, CardProps, CardContentProps, RadioProps, RadioGroupProps, SnackbarContentProps as SnackbarContentProps$2, SnackbarContentClassKey as SnackbarContentClassKey$2, SnackbarProps as SnackbarProps$2 } from '@mui/material';
3
+ import { RefAttributes, ForwardRefExoticComponent, Key, ReactNode, MouseEvent, ButtonHTMLAttributes, Ref, ElementType, HTMLAttributes, ConsumerProps, ReactElement } from 'react';
4
+ import { LoadingButtonProps } from '@mui/lab';
5
5
  import { Property } from 'csstype';
6
+ import { MUIStyledCommonProps } from '@mui/system';
7
+ import { StyledComponent } from 'styled-components';
8
+ import { LabComponents } from '@mui/lab/themeAugmentation';
9
+ import { GridProps, ButtonProps as ButtonProps$2, ToolbarProps as ToolbarProps$1, AvatarClassKey, AvatarTypeMap as AvatarTypeMap$1, ButtonBaseProps as ButtonBaseProps$1, CheckboxProps as CheckboxProps$1, FormControlLabelProps as FormControlLabelProps$1, FormControlProps as FormControlProps$1, FormGroupProps as FormGroupProps$1, FormLabelProps as FormLabelProps$1, FormHelperTextProps as FormHelperTextProps$1, TypographyProps as TypographyProps$1, TooltipProps as TooltipProps$1, ListProps, ListTypeMap as ListTypeMap$1, CardClassKey, CardProps as CardProps$1, CardContentProps as CardContentProps$1, RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1, SnackbarContentProps as SnackbarContentProps$3, SnackbarContentClassKey as SnackbarContentClassKey$3, SnackbarProps as SnackbarProps$3, Theme as Theme$1 } from '@material-ui/core';
10
+ import { ClassNameMap } from '@mui/styles';
11
+ import { ClassNameMap as ClassNameMap$1 } from '@material-ui/styles';
6
12
  import { CommonProps } from '@material-ui/core/OverridableComponent';
7
13
  import { Breakpoint } from '@material-ui/core/styles/createBreakpoints';
8
14
 
9
- interface ButtonProps extends RefAttributes<HTMLButtonElement>, Omit<ButtonProps$1, 'color'> {
15
+ interface ButtonProps extends RefAttributes<HTMLButtonElement>, Omit<LoadingButtonProps, 'color' | 'loading' | 'loadingIndicator'> {
10
16
  rel?: string;
11
17
  target?: string;
12
18
  isActive?: boolean;
@@ -26,13 +32,11 @@ interface AdaptiveToolbarProps extends RefAttributes<HTMLDivElement>, Omit<Toolb
26
32
  }
27
33
  declare const AdaptiveToolbar: ForwardRefExoticComponent<AdaptiveToolbarProps>;
28
34
 
29
- declare type AvatarButtonClassKey = 'button' | 'overlay' | 'progress' | 'withIcon' | 'sizeLarge' | Exclude<AvatarClassKey, 'circle'>;
30
35
  interface AvatarButtonProps extends RefAttributes<HTMLButtonElement>, ButtonHTMLAttributes<HTMLButtonElement> {
31
36
  size?: 'small' | 'large';
32
37
  icon?: ReactNode;
33
38
  isLoading?: boolean;
34
39
  avatarRef?: Ref<HTMLDivElement>;
35
- classes?: Partial<ClassNameMap<AvatarButtonClassKey>>;
36
40
  variant?: AvatarTypeMap['props']['variant'];
37
41
  alt?: AvatarTypeMap['props']['alt'];
38
42
  src?: AvatarTypeMap['props']['src'];
@@ -42,7 +46,6 @@ interface AvatarButtonProps extends RefAttributes<HTMLButtonElement>, ButtonHTML
42
46
  }
43
47
  declare const AvatarButton: ForwardRefExoticComponent<AvatarButtonProps>;
44
48
 
45
- declare type CardButtonClassKey = 'root' | 'label' | 'hint' | 'error' | 'primary' | 'disabled' | 'sizeSmall' | 'sizeLarge' | 'icon' | 'startIcon' | 'endIcon';
46
49
  interface CardButtonProps extends RefAttributes<HTMLButtonElement>, ButtonBaseProps {
47
50
  error?: ReactNode;
48
51
  children?: ReactNode;
@@ -51,7 +54,6 @@ interface CardButtonProps extends RefAttributes<HTMLButtonElement>, ButtonBasePr
51
54
  endIcon?: ReactNode;
52
55
  size?: 'small' | 'medium' | 'large';
53
56
  className?: string;
54
- classes?: Partial<ClassNameMap<CardButtonClassKey>>;
55
57
  }
56
58
  declare const CardButton: ForwardRefExoticComponent<CardButtonProps>;
57
59
 
@@ -132,11 +134,6 @@ interface OverflowTextProps extends Omit<TypographyProps, 'noWrap'> {
132
134
  }
133
135
  declare const OverflowText: ForwardRefExoticComponent<OverflowTextProps>;
134
136
 
135
- interface DescriptionListProps {
136
- children?: ReactNode;
137
- size?: 'small' | 'medium' | 'large';
138
- }
139
- declare const DescriptionList: ForwardRefExoticComponent<DescriptionListProps & RefAttributes<HTMLDivElement>>;
140
137
  interface DescriptionListItemProps {
141
138
  icon?: ReactNode;
142
139
  inset?: boolean;
@@ -147,15 +144,29 @@ interface DescriptionListItemProps {
147
144
  fallback?: ReactNode;
148
145
  }
149
146
  declare const DescriptionListItem: ForwardRefExoticComponent<DescriptionListItemProps & RefAttributes<HTMLDivElement>>;
147
+ interface DescriptionListProps {
148
+ children?: ReactNode;
149
+ size?: 'small' | 'medium' | 'large';
150
+ }
151
+ declare const DescriptionList: ForwardRefExoticComponent<DescriptionListProps & RefAttributes<HTMLDivElement>>;
150
152
 
151
153
  declare type DrawerActionsProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'>;
152
154
  declare const DrawerActions: ForwardRefExoticComponent<DrawerActionsProps & RefAttributes<HTMLDivElement>>;
153
155
 
154
156
  declare type DrawerContentProps = HTMLAttributes<HTMLDivElement>;
155
- declare const DrawerContent: ForwardRefExoticComponent<DrawerContentProps & RefAttributes<HTMLDivElement>>;
157
+ declare const DrawerContent: StyledComponent<"div", Theme, MUIStyledCommonProps<Theme>, never>;
156
158
 
157
- declare type DrawerListProps = Omit<ListProps<'div'>, 'component'>;
158
- declare const DrawerList: ForwardRefExoticComponent<Pick<DrawerListProps, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "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" | "key" | "dense" | "subheader" | "disablePadding" | keyof CommonProps<ListTypeMap<{}, "div">>> & RefAttributes<HTMLDivElement>>;
159
+ declare type SuperDispatchTheme = Readonly<Required<Theme & {
160
+ components?: LabComponents;
161
+ }>>;
162
+ declare module '@mui/styles/defaultTheme' {
163
+ interface DefaultTheme extends SuperDispatchTheme {
164
+ }
165
+ }
166
+
167
+ declare const DrawerList: StyledComponent<ExtendList<ListTypeMap<{}, "ul">>, Theme, MUIStyledCommonProps<Theme> & {
168
+ theme: SuperDispatchTheme;
169
+ }, never>;
159
170
 
160
171
  interface DrawerTitleProps extends Omit<HTMLAttributes<HTMLDivElement>, 'color' | 'title'> {
161
172
  children?: ReactNode;
@@ -182,7 +193,6 @@ interface InlineGridProps extends RefAttributes<HTMLDivElement>, Pick<GridProps,
182
193
  */
183
194
  declare const InlineGrid: ForwardRefExoticComponent<InlineGridProps>;
184
195
 
185
- declare type InfoCardClassKey = 'sizeLarge' | 'content' | 'fullWidth' | CardClassKey;
186
196
  interface InfoCardProps extends CardProps {
187
197
  size?: 'medium' | 'large';
188
198
  CardContentProps?: CardContentProps;
@@ -216,31 +226,18 @@ interface RadioGroupFieldProps extends Omit<FormControlProps, 'hiddenLabel' | 'o
216
226
  }
217
227
  declare const RadioGroupField: ForwardRefExoticComponent<RadioGroupFieldProps>;
218
228
 
219
- declare type CollapseBreakpoint = 'sm' | 'md' | 'lg' | 'xl';
220
- declare function useCollapseBreakpoint(collapseBreakpoint: undefined | CollapseBreakpoint): boolean;
221
-
222
- interface ResponsiveContext {
223
- breakpoint?: Breakpoint;
224
- }
225
- interface ResponsiveContextProviderProps {
226
- children?: ReactNode;
227
- defaultBreakpoint?: Breakpoint;
228
- }
229
- declare function ResponsiveContextProvider({ children, defaultBreakpoint, }: ResponsiveContextProviderProps): ReactElement;
230
- declare function useResponsiveContext(): ResponsiveContext;
231
-
232
- declare type SnackbarContentClassKey = SnackbarContentClassKey$1 | 'icon' | 'closeButton' | 'variantError' | 'variantSuccess';
229
+ declare type SnackbarContentClassKey = SnackbarContentClassKey$2 | 'icon' | 'closeButton' | 'variantError' | 'variantSuccess';
233
230
  declare type SnackbarVariant = 'default' | 'error' | 'success';
234
- interface SnackbarContentProps extends RefAttributes<unknown>, Omit<SnackbarContentProps$1, 'classes' | 'message' | 'variant'> {
231
+ interface SnackbarContentProps extends RefAttributes<HTMLDivElement>, Omit<SnackbarContentProps$2, 'classes' | 'message' | 'variant'> {
235
232
  children?: ReactNode;
236
233
  onClose?: () => void;
237
234
  variant?: SnackbarVariant;
238
235
  classes?: Partial<ClassNameMap<SnackbarContentClassKey>>;
239
236
  }
240
- declare const SnackbarContent: ForwardRefExoticComponent<SnackbarContentProps>;
237
+ declare const SnackbarContent: ForwardRefExoticComponent<Pick<SnackbarContentProps, "className" | "style" | "classes" | "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "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" | "action" | "sx" | "variant" | "key" | "elevation" | "square" | "onClose"> & RefAttributes<HTMLDivElement>>;
241
238
 
242
239
  declare type SnackbarCloseReason = 'timeout' | 'explicit';
243
- interface SnackbarProps extends Omit<SnackbarProps$1, 'onClose' | 'message' | 'children'> {
240
+ interface SnackbarProps extends Omit<SnackbarProps$2, 'onClose' | 'message' | 'children'> {
244
241
  children?: ReactNode;
245
242
  variant?: SnackbarVariant;
246
243
  hasCloseButton?: boolean;
@@ -362,8 +359,6 @@ declare enum Color {
362
359
  declare type ColorProp = keyof typeof Color;
363
360
  declare function isColorProp(name: unknown): name is ColorProp;
364
361
 
365
- declare type SuperDispatchTheme = Readonly<Required<Theme>>;
366
-
367
362
  interface ThemeProviderProps {
368
363
  children?: ReactNode;
369
364
  injectFirst?: boolean;
@@ -383,6 +378,7 @@ declare const Tiles: ForwardRefExoticComponent<TilesProps & RefAttributes<HTMLDi
383
378
  declare function isEmptyReactNode(node: ReactNode): node is null | undefined | boolean | string;
384
379
 
385
380
  declare function mergeRefs<T>(...refs: Array<null | undefined | Ref<T>>): (node: T) => void;
381
+ declare function assignRef<T>(ref: Ref<T> | undefined, value: T): void;
386
382
 
387
383
  declare function renderChildren(node: ReactNode): null | ReactElement;
388
384
 
@@ -407,4 +403,614 @@ interface VisibilityObserverProps extends VisibilityObserverOptions {
407
403
  }
408
404
  declare function VisibilityObserver({ render, onChange, ...options }: VisibilityObserverProps): null | ReactElement;
409
405
 
410
- export { AdaptiveToolbar, AdaptiveToolbarItem, AdaptiveToolbarProps, AvatarButton, AvatarButtonClassKey, AvatarButtonProps, Button, ButtonProps, CardButton, CardButtonClassKey, CardButtonProps, CheckboxField, CheckboxFieldProps, CheckboxGroupField, CheckboxGroupFieldProps, CollapseBreakpoint, CollapseProp, Color, ColorProp, ColorVariant, Column, ColumnProps, ColumnWidth, Columns, ColumnsProps, DescriptionList, DescriptionListItem, DescriptionListItemProps, DescriptionListProps, DrawerActions, DrawerActionsProps, DrawerContent, DrawerContentProps, DrawerList, DrawerListProps, DrawerTitle, DrawerTitleProps, ElementVisibility, GridStack, GridStackProps, HorizontalAlign, InfoCard, InfoCardClassKey, InfoCardProps, Inline, InlineGrid, InlineGridProps, InlineProps, NegativeSpaceProp, OverflowText, OverflowTextProps, PartialResponsivePropRecord, RadioField, RadioFieldProps, RadioGroupField, RadioGroupFieldProps, ResponsiveContext, ResponsiveContextProvider, ResponsiveContextProviderProps, ResponsiveProp, ResponsivePropPrimitive, ResponsivePropRecord, ResponsivePropTuple, ResponsivePropTupleInit, Snackbar, SnackbarCloseReason, SnackbarContent, SnackbarContentProps, SnackbarProps, SnackbarStack, SnackbarStackConsumer, SnackbarStackOptions, SnackbarStackProvider, SnackbarStackProviderProps, SnackbarVariant, SpaceProp, Stack, StackProps, SuperDispatchTheme, Tag, TagClassKey, TagProps, ThemeProvider, ThemeProviderProps, Tiles, TilesColumns, TilesProps, TilesSpace, VerticalAlign, VisibilityObserver, VisibilityObserverOptions, VisibilityObserverProps, VisibilityObserverRenderProps, isColorProp, isEmptyReactNode, mergeRefs, parseAlignProp, parseCollapsedBelow, parseResponsiveProp, parseSpaceProp, renderChildren, useCollapseBreakpoint, useResponsiveContext, useResponsiveProp, useResponsivePropRecord, useResponsiveValue, useSnackbarStack, useUID, useVisibilityObserver };
406
+
407
+
408
+ type index_d_AdaptiveToolbarItem = AdaptiveToolbarItem;
409
+ type index_d_AdaptiveToolbarProps = AdaptiveToolbarProps;
410
+ declare const index_d_AdaptiveToolbar: typeof AdaptiveToolbar;
411
+ type index_d_AvatarButtonProps = AvatarButtonProps;
412
+ declare const index_d_AvatarButton: typeof AvatarButton;
413
+ type index_d_ButtonProps = ButtonProps;
414
+ declare const index_d_Button: typeof Button;
415
+ type index_d_CardButtonProps = CardButtonProps;
416
+ declare const index_d_CardButton: typeof CardButton;
417
+ type index_d_CheckboxFieldProps = CheckboxFieldProps;
418
+ declare const index_d_CheckboxField: typeof CheckboxField;
419
+ type index_d_CheckboxGroupFieldProps = CheckboxGroupFieldProps;
420
+ declare const index_d_CheckboxGroupField: typeof CheckboxGroupField;
421
+ type index_d_ColumnWidth = ColumnWidth;
422
+ type index_d_ColumnProps = ColumnProps;
423
+ declare const index_d_Column: typeof Column;
424
+ type index_d_ColumnsProps = ColumnsProps;
425
+ declare const index_d_Columns: typeof Columns;
426
+ type index_d_DescriptionListItemProps = DescriptionListItemProps;
427
+ declare const index_d_DescriptionListItem: typeof DescriptionListItem;
428
+ type index_d_DescriptionListProps = DescriptionListProps;
429
+ declare const index_d_DescriptionList: typeof DescriptionList;
430
+ type index_d_DrawerActionsProps = DrawerActionsProps;
431
+ declare const index_d_DrawerActions: typeof DrawerActions;
432
+ type index_d_DrawerContentProps = DrawerContentProps;
433
+ declare const index_d_DrawerContent: typeof DrawerContent;
434
+ declare const index_d_DrawerList: typeof DrawerList;
435
+ type index_d_DrawerTitleProps = DrawerTitleProps;
436
+ declare const index_d_DrawerTitle: typeof DrawerTitle;
437
+ type index_d_GridStackProps = GridStackProps;
438
+ declare const index_d_GridStack: typeof GridStack;
439
+ type index_d_InlineGridProps = InlineGridProps;
440
+ declare const index_d_InlineGrid: typeof InlineGrid;
441
+ type index_d_InfoCardProps = InfoCardProps;
442
+ declare const index_d_InfoCard: typeof InfoCard;
443
+ type index_d_InlineProps = InlineProps;
444
+ declare const index_d_Inline: typeof Inline;
445
+ type index_d_OverflowTextProps = OverflowTextProps;
446
+ declare const index_d_OverflowText: typeof OverflowText;
447
+ type index_d_VerticalAlign = VerticalAlign;
448
+ type index_d_HorizontalAlign = HorizontalAlign;
449
+ declare const index_d_parseAlignProp: typeof parseAlignProp;
450
+ type index_d_CollapseProp = CollapseProp;
451
+ declare const index_d_parseCollapsedBelow: typeof parseCollapsedBelow;
452
+ type index_d_ResponsivePropPrimitive = ResponsivePropPrimitive;
453
+ type index_d_ResponsivePropTupleInit<_0> = ResponsivePropTupleInit<_0>;
454
+ type index_d_ResponsiveProp<_0> = ResponsiveProp<_0>;
455
+ type index_d_ResponsivePropTuple<_0> = ResponsivePropTuple<_0>;
456
+ declare const index_d_parseResponsiveProp: typeof parseResponsiveProp;
457
+ declare const index_d_useResponsiveProp: typeof useResponsiveProp;
458
+ type index_d_PartialResponsivePropRecord<_0> = PartialResponsivePropRecord<_0>;
459
+ type index_d_ResponsivePropRecord<_0> = ResponsivePropRecord<_0>;
460
+ declare const index_d_useResponsiveValue: typeof useResponsiveValue;
461
+ declare const index_d_useResponsivePropRecord: typeof useResponsivePropRecord;
462
+ type index_d_SpaceProp = SpaceProp;
463
+ type index_d_NegativeSpaceProp = NegativeSpaceProp;
464
+ declare const index_d_parseSpaceProp: typeof parseSpaceProp;
465
+ type index_d_RadioFieldProps = RadioFieldProps;
466
+ declare const index_d_RadioField: typeof RadioField;
467
+ type index_d_RadioGroupFieldProps = RadioGroupFieldProps;
468
+ declare const index_d_RadioGroupField: typeof RadioGroupField;
469
+ type index_d_SnackbarCloseReason = SnackbarCloseReason;
470
+ type index_d_SnackbarProps = SnackbarProps;
471
+ declare const index_d_Snackbar: typeof Snackbar;
472
+ type index_d_SnackbarVariant = SnackbarVariant;
473
+ type index_d_SnackbarContentProps = SnackbarContentProps;
474
+ declare const index_d_SnackbarContent: typeof SnackbarContent;
475
+ type index_d_SnackbarStackOptions = SnackbarStackOptions;
476
+ type index_d_SnackbarStack = SnackbarStack;
477
+ declare const index_d_useSnackbarStack: typeof useSnackbarStack;
478
+ declare const index_d_SnackbarStackConsumer: typeof SnackbarStackConsumer;
479
+ type index_d_SnackbarStackProviderProps = SnackbarStackProviderProps;
480
+ declare const index_d_SnackbarStackProvider: typeof SnackbarStackProvider;
481
+ type index_d_StackProps = StackProps;
482
+ declare const index_d_Stack: typeof Stack;
483
+ type index_d_TagClassKey = TagClassKey;
484
+ type index_d_TagProps = TagProps;
485
+ declare const index_d_Tag: typeof Tag;
486
+ type index_d_ColorVariant = ColorVariant;
487
+ type index_d_Color = Color;
488
+ declare const index_d_Color: typeof Color;
489
+ type index_d_ColorProp = ColorProp;
490
+ declare const index_d_isColorProp: typeof isColorProp;
491
+ type index_d_SuperDispatchTheme = SuperDispatchTheme;
492
+ type index_d_ThemeProviderProps = ThemeProviderProps;
493
+ declare const index_d_ThemeProvider: typeof ThemeProvider;
494
+ type index_d_TilesSpace = TilesSpace;
495
+ type index_d_TilesColumns = TilesColumns;
496
+ type index_d_TilesProps = TilesProps;
497
+ declare const index_d_Tiles: typeof Tiles;
498
+ declare const index_d_isEmptyReactNode: typeof isEmptyReactNode;
499
+ declare const index_d_mergeRefs: typeof mergeRefs;
500
+ declare const index_d_assignRef: typeof assignRef;
501
+ declare const index_d_renderChildren: typeof renderChildren;
502
+ declare const index_d_useUID: typeof useUID;
503
+ type index_d_ElementVisibility = ElementVisibility;
504
+ type index_d_VisibilityObserverOptions = VisibilityObserverOptions;
505
+ declare const index_d_useVisibilityObserver: typeof useVisibilityObserver;
506
+ type index_d_VisibilityObserverRenderProps = VisibilityObserverRenderProps;
507
+ type index_d_VisibilityObserverProps = VisibilityObserverProps;
508
+ declare const index_d_VisibilityObserver: typeof VisibilityObserver;
509
+ declare namespace index_d {
510
+ export {
511
+ index_d_AdaptiveToolbarItem as AdaptiveToolbarItem,
512
+ index_d_AdaptiveToolbarProps as AdaptiveToolbarProps,
513
+ index_d_AdaptiveToolbar as AdaptiveToolbar,
514
+ index_d_AvatarButtonProps as AvatarButtonProps,
515
+ index_d_AvatarButton as AvatarButton,
516
+ index_d_ButtonProps as ButtonProps,
517
+ index_d_Button as Button,
518
+ index_d_CardButtonProps as CardButtonProps,
519
+ index_d_CardButton as CardButton,
520
+ index_d_CheckboxFieldProps as CheckboxFieldProps,
521
+ index_d_CheckboxField as CheckboxField,
522
+ index_d_CheckboxGroupFieldProps as CheckboxGroupFieldProps,
523
+ index_d_CheckboxGroupField as CheckboxGroupField,
524
+ index_d_ColumnWidth as ColumnWidth,
525
+ index_d_ColumnProps as ColumnProps,
526
+ index_d_Column as Column,
527
+ index_d_ColumnsProps as ColumnsProps,
528
+ index_d_Columns as Columns,
529
+ index_d_DescriptionListItemProps as DescriptionListItemProps,
530
+ index_d_DescriptionListItem as DescriptionListItem,
531
+ index_d_DescriptionListProps as DescriptionListProps,
532
+ index_d_DescriptionList as DescriptionList,
533
+ index_d_DrawerActionsProps as DrawerActionsProps,
534
+ index_d_DrawerActions as DrawerActions,
535
+ index_d_DrawerContentProps as DrawerContentProps,
536
+ index_d_DrawerContent as DrawerContent,
537
+ index_d_DrawerList as DrawerList,
538
+ index_d_DrawerTitleProps as DrawerTitleProps,
539
+ index_d_DrawerTitle as DrawerTitle,
540
+ index_d_GridStackProps as GridStackProps,
541
+ index_d_GridStack as GridStack,
542
+ index_d_InlineGridProps as InlineGridProps,
543
+ index_d_InlineGrid as InlineGrid,
544
+ index_d_InfoCardProps as InfoCardProps,
545
+ index_d_InfoCard as InfoCard,
546
+ index_d_InlineProps as InlineProps,
547
+ index_d_Inline as Inline,
548
+ index_d_OverflowTextProps as OverflowTextProps,
549
+ index_d_OverflowText as OverflowText,
550
+ index_d_VerticalAlign as VerticalAlign,
551
+ index_d_HorizontalAlign as HorizontalAlign,
552
+ index_d_parseAlignProp as parseAlignProp,
553
+ index_d_CollapseProp as CollapseProp,
554
+ index_d_parseCollapsedBelow as parseCollapsedBelow,
555
+ index_d_ResponsivePropPrimitive as ResponsivePropPrimitive,
556
+ index_d_ResponsivePropTupleInit as ResponsivePropTupleInit,
557
+ index_d_ResponsiveProp as ResponsiveProp,
558
+ index_d_ResponsivePropTuple as ResponsivePropTuple,
559
+ index_d_parseResponsiveProp as parseResponsiveProp,
560
+ index_d_useResponsiveProp as useResponsiveProp,
561
+ index_d_PartialResponsivePropRecord as PartialResponsivePropRecord,
562
+ index_d_ResponsivePropRecord as ResponsivePropRecord,
563
+ index_d_useResponsiveValue as useResponsiveValue,
564
+ index_d_useResponsivePropRecord as useResponsivePropRecord,
565
+ index_d_SpaceProp as SpaceProp,
566
+ index_d_NegativeSpaceProp as NegativeSpaceProp,
567
+ index_d_parseSpaceProp as parseSpaceProp,
568
+ index_d_RadioFieldProps as RadioFieldProps,
569
+ index_d_RadioField as RadioField,
570
+ index_d_RadioGroupFieldProps as RadioGroupFieldProps,
571
+ index_d_RadioGroupField as RadioGroupField,
572
+ index_d_SnackbarCloseReason as SnackbarCloseReason,
573
+ index_d_SnackbarProps as SnackbarProps,
574
+ index_d_Snackbar as Snackbar,
575
+ index_d_SnackbarVariant as SnackbarVariant,
576
+ index_d_SnackbarContentProps as SnackbarContentProps,
577
+ index_d_SnackbarContent as SnackbarContent,
578
+ index_d_SnackbarStackOptions as SnackbarStackOptions,
579
+ index_d_SnackbarStack as SnackbarStack,
580
+ index_d_useSnackbarStack as useSnackbarStack,
581
+ index_d_SnackbarStackConsumer as SnackbarStackConsumer,
582
+ index_d_SnackbarStackProviderProps as SnackbarStackProviderProps,
583
+ index_d_SnackbarStackProvider as SnackbarStackProvider,
584
+ index_d_StackProps as StackProps,
585
+ index_d_Stack as Stack,
586
+ index_d_TagClassKey as TagClassKey,
587
+ index_d_TagProps as TagProps,
588
+ index_d_Tag as Tag,
589
+ index_d_ColorVariant as ColorVariant,
590
+ index_d_Color as Color,
591
+ index_d_ColorProp as ColorProp,
592
+ index_d_isColorProp as isColorProp,
593
+ index_d_SuperDispatchTheme as SuperDispatchTheme,
594
+ index_d_ThemeProviderProps as ThemeProviderProps,
595
+ index_d_ThemeProvider as ThemeProvider,
596
+ index_d_TilesSpace as TilesSpace,
597
+ index_d_TilesColumns as TilesColumns,
598
+ index_d_TilesProps as TilesProps,
599
+ index_d_Tiles as Tiles,
600
+ index_d_isEmptyReactNode as isEmptyReactNode,
601
+ index_d_mergeRefs as mergeRefs,
602
+ index_d_assignRef as assignRef,
603
+ index_d_renderChildren as renderChildren,
604
+ index_d_useUID as useUID,
605
+ index_d_ElementVisibility as ElementVisibility,
606
+ index_d_VisibilityObserverOptions as VisibilityObserverOptions,
607
+ index_d_useVisibilityObserver as useVisibilityObserver,
608
+ index_d_VisibilityObserverRenderProps as VisibilityObserverRenderProps,
609
+ index_d_VisibilityObserverProps as VisibilityObserverProps,
610
+ index_d_VisibilityObserver as VisibilityObserver,
611
+ };
612
+ }
613
+
614
+ interface ButtonProps$1 extends RefAttributes<HTMLButtonElement>, Omit<ButtonProps$2, 'color'> {
615
+ rel?: string;
616
+ target?: string;
617
+ isActive?: boolean;
618
+ isLoading?: boolean;
619
+ color?: 'primary' | 'error' | 'success' | 'white';
620
+ }
621
+ declare const Button$1: ForwardRefExoticComponent<ButtonProps$1>;
622
+
623
+ interface AdaptiveToolbarItem$1 {
624
+ key: Key;
625
+ label: ReactNode;
626
+ onClick?: (event: MouseEvent<HTMLElement>) => void;
627
+ ButtonProps?: Omit<ButtonProps$1, 'type' | 'onClick'>;
628
+ }
629
+ interface AdaptiveToolbarProps$1 extends RefAttributes<HTMLDivElement>, Omit<ToolbarProps$1, 'children'> {
630
+ items: AdaptiveToolbarItem$1[];
631
+ }
632
+ declare const AdaptiveToolbar$1: ForwardRefExoticComponent<AdaptiveToolbarProps$1>;
633
+
634
+ declare type AvatarButtonClassKey = 'button' | 'overlay' | 'progress' | 'withIcon' | 'sizeLarge' | Exclude<AvatarClassKey, 'circle'>;
635
+ interface AvatarButtonProps$1 extends RefAttributes<HTMLButtonElement>, ButtonHTMLAttributes<HTMLButtonElement> {
636
+ size?: 'small' | 'large';
637
+ icon?: ReactNode;
638
+ isLoading?: boolean;
639
+ avatarRef?: Ref<HTMLDivElement>;
640
+ classes?: Partial<ClassNameMap$1<AvatarButtonClassKey>>;
641
+ variant?: AvatarTypeMap$1['props']['variant'];
642
+ alt?: AvatarTypeMap$1['props']['alt'];
643
+ src?: AvatarTypeMap$1['props']['src'];
644
+ sizes?: AvatarTypeMap$1['props']['sizes'];
645
+ srcSet?: AvatarTypeMap$1['props']['srcSet'];
646
+ imgProps?: AvatarTypeMap$1['props']['imgProps'];
647
+ }
648
+ declare const AvatarButton$1: ForwardRefExoticComponent<AvatarButtonProps$1>;
649
+
650
+ declare type CardButtonClassKey = 'root' | 'label' | 'hint' | 'error' | 'primary' | 'disabled' | 'sizeSmall' | 'sizeLarge' | 'icon' | 'startIcon' | 'endIcon';
651
+ interface CardButtonProps$1 extends RefAttributes<HTMLButtonElement>, ButtonBaseProps$1 {
652
+ error?: ReactNode;
653
+ children?: ReactNode;
654
+ hint?: ReactNode;
655
+ startIcon?: ReactNode;
656
+ endIcon?: ReactNode;
657
+ size?: 'small' | 'medium' | 'large';
658
+ className?: string;
659
+ classes?: Partial<ClassNameMap$1<CardButtonClassKey>>;
660
+ }
661
+ declare const CardButton$1: ForwardRefExoticComponent<CardButtonProps$1>;
662
+
663
+ interface CheckboxFieldProps$1 extends CheckboxProps$1, Pick<FormControlLabelProps$1, 'label'> {
664
+ error?: boolean;
665
+ helperText?: ReactNode;
666
+ FormControlLabelProps?: Omit<FormControlLabelProps$1, 'label' | 'checked' | 'onBlur' | 'onChange' | 'control'>;
667
+ }
668
+ declare const CheckboxField$1: ForwardRefExoticComponent<CheckboxFieldProps$1>;
669
+
670
+ interface CheckboxGroupFieldProps$1 extends Omit<FormControlProps$1, 'hiddenLabel' | 'onChange'> {
671
+ FormGroupProps?: Omit<FormGroupProps$1, 'children'>;
672
+ label?: ReactNode;
673
+ FormLabelProps?: Omit<FormLabelProps$1, 'children'>;
674
+ helperText?: ReactNode;
675
+ FormHelperTextProps?: Omit<FormHelperTextProps$1, 'children'>;
676
+ }
677
+ declare const CheckboxGroupField$1: ForwardRefExoticComponent<CheckboxGroupFieldProps$1>;
678
+
679
+ declare type ResponsivePropPrimitive$1 = boolean | number | string;
680
+ declare type ResponsivePropTupleInit$1<T extends ResponsivePropPrimitive$1> = readonly [mobile: T, tablet?: T, desktop?: T];
681
+ declare type ResponsiveProp$1<T extends ResponsivePropPrimitive$1> = T | ResponsivePropTupleInit$1<T>;
682
+ declare type ResponsivePropTuple$1<T extends ResponsivePropPrimitive$1> = readonly [
683
+ mobile: T,
684
+ tablet: T,
685
+ desktop: T
686
+ ];
687
+ declare function parseResponsiveProp$1<T extends ResponsivePropPrimitive$1>(prop: ResponsiveProp$1<T>): ResponsivePropTuple$1<T>;
688
+ declare function useResponsiveProp$1<T extends ResponsivePropPrimitive$1>(prop: ResponsiveProp$1<T>): ResponsivePropTuple$1<T>;
689
+ interface PartialResponsivePropRecord$1<T> {
690
+ xs: T;
691
+ sm?: T;
692
+ md?: T;
693
+ lg?: T;
694
+ xl?: T;
695
+ }
696
+ declare type ResponsivePropRecord$1<T extends ResponsivePropPrimitive$1> = T | PartialResponsivePropRecord$1<T>;
697
+ declare function useResponsiveValue$1<T>(xs: T, sm: T, md?: T, lg?: T, xl?: T): T;
698
+ declare function useResponsivePropRecord$1<T extends ResponsivePropPrimitive$1>(prop: ResponsivePropRecord$1<T>): T;
699
+
700
+ declare type ColumnWidth$1 = 'adaptive' | 'content' | 'fluid' | '1/2' | '1/3' | '2/3' | '1/4' | '3/4' | '1/5' | '2/5' | '3/5' | '4/5';
701
+ interface ColumnProps$1 {
702
+ children?: ReactNode;
703
+ 'aria-label'?: string;
704
+ 'aria-labelledby'?: string;
705
+ width?: ResponsiveProp$1<ColumnWidth$1>;
706
+ }
707
+ declare const Column$1: ForwardRefExoticComponent<ColumnProps$1 & RefAttributes<HTMLDivElement>>;
708
+
709
+ declare type VerticalAlign$1 = 'top' | 'center' | 'bottom';
710
+ declare type HorizontalAlign$1 = 'left' | 'center' | 'right';
711
+ declare function parseAlignProp$1(align: VerticalAlign$1 | HorizontalAlign$1): Property.AlignItems;
712
+
713
+ declare type CollapseProp$1 = 'tablet' | 'desktop';
714
+ declare function parseCollapsedBelow$1(collapsedBelow: undefined | CollapseProp$1): ResponsivePropTuple$1<boolean>;
715
+
716
+ declare type SpaceProp$1 = 'none' | 'xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge';
717
+ declare type NegativeSpaceProp$1 = '-xxsmall' | '-xsmall' | '-small' | '-medium' | '-large' | '-xlarge' | '-xxlarge';
718
+ declare function parseSpaceProp$1(prop: SpaceProp$1): number;
719
+
720
+ interface ColumnsProps$1 {
721
+ id?: string;
722
+ children?: ReactNode;
723
+ 'aria-label'?: string;
724
+ 'aria-labelledby'?: string;
725
+ ref?: Ref<HTMLDivElement>;
726
+ reverse?: ResponsiveProp$1<boolean>;
727
+ space?: ResponsiveProp$1<SpaceProp$1>;
728
+ align?: ResponsiveProp$1<VerticalAlign$1>;
729
+ collapseBelow?: CollapseProp$1;
730
+ }
731
+ declare const Columns$1: ForwardRefExoticComponent<ColumnsProps$1>;
732
+
733
+ interface OverflowTextProps$1 extends Omit<TypographyProps$1, 'noWrap'> {
734
+ component?: ElementType;
735
+ disableUnderline?: boolean;
736
+ TooltipProps?: Omit<Partial<TooltipProps$1>, 'open' | 'children'>;
737
+ }
738
+ declare const OverflowText$1: ForwardRefExoticComponent<OverflowTextProps$1>;
739
+
740
+ interface DescriptionListProps$1 {
741
+ children?: ReactNode;
742
+ size?: 'small' | 'medium' | 'large';
743
+ }
744
+ declare const DescriptionList$1: ForwardRefExoticComponent<DescriptionListProps$1 & RefAttributes<HTMLDivElement>>;
745
+ interface DescriptionListItemProps$1 {
746
+ icon?: ReactNode;
747
+ inset?: boolean;
748
+ label?: ReactNode;
749
+ labelTypographyProps?: Omit<TypographyProps$1, 'noWrap' | 'variant' | 'component' | 'color'>;
750
+ content?: ReactNode;
751
+ contentTypographyProps?: Omit<OverflowTextProps$1, 'component' | 'color'>;
752
+ fallback?: ReactNode;
753
+ }
754
+ declare const DescriptionListItem$1: ForwardRefExoticComponent<DescriptionListItemProps$1 & RefAttributes<HTMLDivElement>>;
755
+
756
+ declare type DrawerActionsProps$1 = Omit<HTMLAttributes<HTMLDivElement>, 'color'>;
757
+ declare const DrawerActions$1: ForwardRefExoticComponent<DrawerActionsProps$1 & RefAttributes<HTMLDivElement>>;
758
+
759
+ declare type DrawerContentProps$1 = HTMLAttributes<HTMLDivElement>;
760
+ declare const DrawerContent$1: ForwardRefExoticComponent<DrawerContentProps$1 & RefAttributes<HTMLDivElement>>;
761
+
762
+ declare type DrawerListProps = Omit<ListProps<'div'>, 'component'>;
763
+ declare const DrawerList$1: ForwardRefExoticComponent<Pick<DrawerListProps, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "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" | "key" | "dense" | "disablePadding" | "subheader" | keyof CommonProps<ListTypeMap$1<{}, "div">>> & RefAttributes<HTMLDivElement>>;
764
+
765
+ interface DrawerTitleProps$1 extends Omit<HTMLAttributes<HTMLDivElement>, 'color' | 'title'> {
766
+ children?: ReactNode;
767
+ title: ReactNode;
768
+ titleTypographyProps?: Omit<TypographyProps$1, 'children'>;
769
+ subtitle?: ReactNode;
770
+ subtitleTypographyProps?: Omit<TypographyProps$1, 'children'>;
771
+ startAction?: ReactNode;
772
+ endAction?: ReactNode;
773
+ }
774
+ declare const DrawerTitle$1: ForwardRefExoticComponent<DrawerTitleProps$1 & RefAttributes<HTMLDivElement>>;
775
+
776
+ interface GridStackProps$1 extends RefAttributes<HTMLDivElement>, Pick<GridProps, 'style' | 'className' | 'children' | 'spacing' | 'alignItems'> {
777
+ }
778
+ /**
779
+ * @deprecated in favor of `Stack`.
780
+ */
781
+ declare const GridStack$1: ForwardRefExoticComponent<GridStackProps$1>;
782
+
783
+ interface InlineGridProps$1 extends RefAttributes<HTMLDivElement>, Pick<GridProps, 'style' | 'className' | 'children' | 'wrap' | 'spacing' | 'justify' | 'alignItems'> {
784
+ }
785
+ /**
786
+ * @deprecated in favor of `Inline` component.
787
+ */
788
+ declare const InlineGrid$1: ForwardRefExoticComponent<InlineGridProps$1>;
789
+
790
+ declare type InfoCardClassKey = 'sizeLarge' | 'content' | 'fullWidth' | CardClassKey;
791
+ interface InfoCardProps$1 extends CardProps$1 {
792
+ size?: 'medium' | 'large';
793
+ CardContentProps?: CardContentProps$1;
794
+ }
795
+ declare const InfoCard$1: ForwardRefExoticComponent<InfoCardProps$1>;
796
+
797
+ interface InlineProps$1 {
798
+ children?: ReactNode;
799
+ 'aria-label'?: string;
800
+ 'aria-labelledby'?: string;
801
+ noWrap?: ResponsiveProp$1<boolean>;
802
+ space?: ResponsiveProp$1<SpaceProp$1>;
803
+ verticalAlign?: ResponsiveProp$1<VerticalAlign$1>;
804
+ horizontalAlign?: ResponsiveProp$1<HorizontalAlign$1>;
805
+ }
806
+ declare const Inline$1: ForwardRefExoticComponent<InlineProps$1 & RefAttributes<HTMLDivElement>>;
807
+
808
+ interface RadioFieldProps$1 extends Omit<RadioProps$1, 'onBlur' | 'onChange'>, Pick<FormControlLabelProps$1, 'label' | 'onBlur' | 'onChange'> {
809
+ error?: boolean;
810
+ helperText?: ReactNode;
811
+ FormControlLabelProps?: Omit<FormControlLabelProps$1, 'label' | 'error' | 'checked' | 'onBlur' | 'onChange' | 'helperText' | 'control'>;
812
+ }
813
+ declare const RadioField$1: ForwardRefExoticComponent<RadioFieldProps$1>;
814
+
815
+ interface RadioGroupFieldProps$1 extends Omit<FormControlProps$1, 'hiddenLabel' | 'onChange'>, Pick<RadioGroupProps$1, 'name' | 'value' | 'onChange'> {
816
+ RadioGroupProps?: Omit<RadioGroupProps$1, 'value' | 'onChange' | 'children'>;
817
+ label?: ReactNode;
818
+ FormLabelProps?: Omit<FormLabelProps$1, 'children'>;
819
+ helperText?: ReactNode;
820
+ FormHelperTextProps?: Omit<FormHelperTextProps$1, 'children'>;
821
+ }
822
+ declare const RadioGroupField$1: ForwardRefExoticComponent<RadioGroupFieldProps$1>;
823
+
824
+ declare type CollapseBreakpoint = 'sm' | 'md' | 'lg' | 'xl';
825
+ declare function useCollapseBreakpoint(collapseBreakpoint: undefined | CollapseBreakpoint): boolean;
826
+
827
+ interface ResponsiveContext {
828
+ breakpoint?: Breakpoint;
829
+ }
830
+ interface ResponsiveContextProviderProps {
831
+ children?: ReactNode;
832
+ defaultBreakpoint?: Breakpoint;
833
+ }
834
+ declare function ResponsiveContextProvider({ children, defaultBreakpoint, }: ResponsiveContextProviderProps): ReactElement;
835
+ declare function useResponsiveContext(): ResponsiveContext;
836
+
837
+ declare type SnackbarContentClassKey$1 = SnackbarContentClassKey$3 | 'icon' | 'closeButton' | 'variantError' | 'variantSuccess';
838
+ declare type SnackbarVariant$1 = 'default' | 'error' | 'success';
839
+ interface SnackbarContentProps$1 extends RefAttributes<unknown>, Omit<SnackbarContentProps$3, 'classes' | 'message' | 'variant'> {
840
+ children?: ReactNode;
841
+ onClose?: () => void;
842
+ variant?: SnackbarVariant$1;
843
+ classes?: Partial<ClassNameMap$1<SnackbarContentClassKey$1>>;
844
+ }
845
+ declare const SnackbarContent$1: ForwardRefExoticComponent<SnackbarContentProps$1>;
846
+
847
+ declare type SnackbarCloseReason$1 = 'timeout' | 'explicit';
848
+ interface SnackbarProps$1 extends Omit<SnackbarProps$3, 'onClose' | 'message' | 'children'> {
849
+ children?: ReactNode;
850
+ variant?: SnackbarVariant$1;
851
+ hasCloseButton?: boolean;
852
+ onClose?: (reason: SnackbarCloseReason$1) => void;
853
+ }
854
+ declare const Snackbar$1: ForwardRefExoticComponent<SnackbarProps$1>;
855
+
856
+ interface SnackbarStackOptions$1 extends Omit<SnackbarProps$1, 'open' | 'children'> {
857
+ key?: Key;
858
+ }
859
+ interface SnackbarStack$1 {
860
+ clearStack: () => void;
861
+ addSnackbar: (message: ReactNode, options?: SnackbarStackOptions$1) => () => void;
862
+ }
863
+ declare function useSnackbarStack$1(): SnackbarStack$1;
864
+ declare function SnackbarStackConsumer$1({ children, }: ConsumerProps<SnackbarStack$1>): ReactElement;
865
+ interface SnackbarStackProviderProps$1 {
866
+ children: ReactNode;
867
+ }
868
+ declare function SnackbarStackProvider$1({ children, }: SnackbarStackProviderProps$1): ReactElement;
869
+
870
+ interface StackProps$1 {
871
+ children?: ReactNode;
872
+ 'aria-label'?: string;
873
+ 'aria-labelledby'?: string;
874
+ space?: ResponsiveProp$1<SpaceProp$1>;
875
+ align?: ResponsiveProp$1<HorizontalAlign$1>;
876
+ }
877
+ declare const Stack$1: ForwardRefExoticComponent<StackProps$1 & RefAttributes<HTMLDivElement>>;
878
+
879
+ declare type TagClassKey$1 = 'root' | 'colorGrey' | 'colorBlue' | 'colorGreen' | 'colorPurple' | 'colorRed' | 'colorTeal' | 'colorYellow' | 'variantSubtle' | 'variantBold';
880
+ interface TagProps$1 extends RefAttributes<unknown>, Omit<TypographyProps$1, 'ref' | 'classes' | 'color' | 'variant'> {
881
+ classes?: Partial<ClassNameMap$1<TagClassKey$1>>;
882
+ component?: ElementType;
883
+ color: 'grey' | 'blue' | 'green' | 'purple' | 'red' | 'teal' | 'yellow';
884
+ variant: 'subtle' | 'bold';
885
+ fontWeight?: 'regular' | 'bold';
886
+ }
887
+ declare const Tag$1: ForwardRefExoticComponent<TagProps$1>;
888
+
889
+ declare type ColorVariant$1 = 'grey' | 'silver' | 'blue' | 'green' | 'purple' | 'red' | 'teal' | 'yellow';
890
+ declare enum Color$1 {
891
+ White = "#fff",
892
+ White50 = "rgba(255, 255, 255, 0.5)",
893
+ White40 = "rgba(255, 255, 255, 0.4)",
894
+ White20 = "rgba(255, 255, 255, 0.2)",
895
+ White10 = "rgba(255, 255, 255, 0.1)",
896
+ White08 = "rgba(255, 255, 255, 0.08)",
897
+ Transparent = "rgba(0, 0, 0, 0)",
898
+ Black = "#000",
899
+ Black50 = "rgba(0, 0, 0, 0.5)",
900
+ Black20 = "rgba(0, 0, 0, 0.2)",
901
+ /**@deprecated Use Dark100 */
902
+ Grey100 = "#8F949E",
903
+ /**@deprecated Use Dark200 */
904
+ Grey200 = "#6A707C",
905
+ /**@deprecated Use Dark300 */
906
+ Grey300 = "#5B6371",
907
+ /**@deprecated Use Dark400 */
908
+ Grey400 = "#323C4E",
909
+ /**@deprecated Use Dark450 */
910
+ Grey450 = "#222F44",
911
+ /**@deprecated Use Dark500 */
912
+ Grey500 = "#192334",
913
+ Dark100 = "#8F949E",
914
+ Dark200 = "#6A707C",
915
+ Dark300 = "#5B6371",
916
+ Dark400 = "#323C4E",
917
+ Dark450 = "#222F44",
918
+ Dark500 = "#192334",
919
+ Silver100 = "#F6F7F8",
920
+ Silver200 = "#F3F5F8",
921
+ Silver300 = "#E8ECF0",
922
+ Silver400 = "#E1E5EA",
923
+ Silver500 = "#C4CDD5",
924
+ Blue50 = "#EBF4FF",
925
+ Blue75 = "#CCE5FF",
926
+ Blue100 = "#A8D1FF",
927
+ Blue200 = "#66ADFF",
928
+ Blue300 = "#0075FF",
929
+ Blue400 = "#0063DB",
930
+ Blue500 = "#0050B2",
931
+ Green50 = "#ECF9EF",
932
+ Green75 = "#C8F4D1",
933
+ Green100 = "#90EAAE",
934
+ Green200 = "#5DDA87",
935
+ Green300 = "#1FA84D",
936
+ Green400 = "#1E8F46",
937
+ Green500 = "#19803D",
938
+ Purple50 = "#EFEEFC",
939
+ Purple75 = "#DCDBF5",
940
+ Purple100 = "#CBC8EE",
941
+ Purple200 = "#A7A1E8",
942
+ Purple300 = "#6559CF",
943
+ Purple400 = "#473ABB",
944
+ Purple500 = "#3A2F9D",
945
+ Red50 = "#FFEDEB",
946
+ Red75 = "#FDD9D3",
947
+ Red100 = "#FDC2BA",
948
+ Red200 = "#FE988B",
949
+ Red300 = "#EE3017",
950
+ Red400 = "#D9210D",
951
+ Red500 = "#C31909",
952
+ Teal50 = "#E3F6FC",
953
+ Teal75 = "#BEEDF9",
954
+ Teal100 = "#91E3F8",
955
+ Teal200 = "#61D3EF",
956
+ Teal300 = "#00A0CC",
957
+ Teal400 = "#008DB8",
958
+ Teal500 = "#007DA3",
959
+ Yellow50 = "#FFF9E5",
960
+ Yellow75 = "#FFF1C2",
961
+ Yellow100 = "#FFE494",
962
+ Yellow200 = "#FFDC6B",
963
+ Yellow300 = "#FFCB47",
964
+ Yellow400 = "#FFA91F",
965
+ Yellow500 = "#DB7500"
966
+ }
967
+ declare type ColorProp$1 = keyof typeof Color$1;
968
+ declare function isColorProp$1(name: unknown): name is ColorProp$1;
969
+
970
+ declare type SuperDispatchTheme$1 = Readonly<Required<Theme$1>>;
971
+
972
+ interface ThemeProviderProps$1 {
973
+ children?: ReactNode;
974
+ injectFirst?: boolean;
975
+ modifier?: (theme: SuperDispatchTheme$1) => SuperDispatchTheme$1;
976
+ }
977
+ declare function ThemeProvider$1({ modifier, children, injectFirst, }: ThemeProviderProps$1): ReactElement;
978
+
979
+ declare type TilesSpace$1 = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
980
+ declare type TilesColumns$1 = 1 | 2 | 3 | 4 | 5 | 6;
981
+ interface TilesProps$1 {
982
+ children?: ReactNode;
983
+ space?: ResponsivePropRecord$1<TilesSpace$1>;
984
+ columns?: ResponsivePropRecord$1<TilesColumns$1>;
985
+ }
986
+ declare const Tiles$1: ForwardRefExoticComponent<TilesProps$1 & RefAttributes<HTMLDivElement>>;
987
+
988
+ declare function isEmptyReactNode$1(node: ReactNode): node is null | undefined | boolean | string;
989
+
990
+ declare function mergeRefs$1<T>(...refs: Array<null | undefined | Ref<T>>): (node: T) => void;
991
+ declare function assignRef$1<T>(ref: Ref<T> | undefined, value: T): void;
992
+
993
+ declare function renderChildren$1(node: ReactNode): null | ReactElement;
994
+
995
+ declare function useUID$1(defaultID?: string): string;
996
+
997
+ declare type ElementVisibility$1 = 'undetermined' | 'visible' | 'invisible';
998
+ interface VisibilityObserverOptions$1 {
999
+ threshold?: number;
1000
+ marginTop?: string;
1001
+ marginLeft?: string;
1002
+ marginRight?: string;
1003
+ marginBottom?: string;
1004
+ }
1005
+ declare function useVisibilityObserver$1<T extends Element>(node: null | undefined | T, { threshold, marginTop, marginLeft, marginRight, marginBottom, }?: VisibilityObserverOptions$1): ElementVisibility$1;
1006
+ interface VisibilityObserverRenderProps$1 {
1007
+ visibility: ElementVisibility$1;
1008
+ ref: <T extends HTMLElement>(node: null | T) => void;
1009
+ }
1010
+ interface VisibilityObserverProps$1 extends VisibilityObserverOptions$1 {
1011
+ render: (props: VisibilityObserverRenderProps$1) => ReactNode;
1012
+ onChange?: (visibility: ElementVisibility$1) => void;
1013
+ }
1014
+ declare function VisibilityObserver$1({ render, onChange, ...options }: VisibilityObserverProps$1): null | ReactElement;
1015
+
1016
+ export { AdaptiveToolbar$1 as AdaptiveToolbar, AdaptiveToolbarItem$1 as AdaptiveToolbarItem, AdaptiveToolbarProps$1 as AdaptiveToolbarProps, AvatarButton$1 as AvatarButton, AvatarButtonClassKey, AvatarButtonProps$1 as AvatarButtonProps, Button$1 as Button, ButtonProps$1 as ButtonProps, CardButton$1 as CardButton, CardButtonClassKey, CardButtonProps$1 as CardButtonProps, CheckboxField$1 as CheckboxField, CheckboxFieldProps$1 as CheckboxFieldProps, CheckboxGroupField$1 as CheckboxGroupField, CheckboxGroupFieldProps$1 as CheckboxGroupFieldProps, CollapseBreakpoint, CollapseProp$1 as CollapseProp, Color$1 as Color, ColorProp$1 as ColorProp, ColorVariant$1 as ColorVariant, Column$1 as Column, ColumnProps$1 as ColumnProps, ColumnWidth$1 as ColumnWidth, Columns$1 as Columns, ColumnsProps$1 as ColumnsProps, DescriptionList$1 as DescriptionList, DescriptionListItem$1 as DescriptionListItem, DescriptionListItemProps$1 as DescriptionListItemProps, DescriptionListProps$1 as DescriptionListProps, DrawerActions$1 as DrawerActions, DrawerActionsProps$1 as DrawerActionsProps, DrawerContent$1 as DrawerContent, DrawerContentProps$1 as DrawerContentProps, DrawerList$1 as DrawerList, DrawerListProps, DrawerTitle$1 as DrawerTitle, DrawerTitleProps$1 as DrawerTitleProps, ElementVisibility$1 as ElementVisibility, GridStack$1 as GridStack, GridStackProps$1 as GridStackProps, HorizontalAlign$1 as HorizontalAlign, InfoCard$1 as InfoCard, InfoCardClassKey, InfoCardProps$1 as InfoCardProps, Inline$1 as Inline, InlineGrid$1 as InlineGrid, InlineGridProps$1 as InlineGridProps, InlineProps$1 as InlineProps, NegativeSpaceProp$1 as NegativeSpaceProp, OverflowText$1 as OverflowText, OverflowTextProps$1 as OverflowTextProps, PartialResponsivePropRecord$1 as PartialResponsivePropRecord, RadioField$1 as RadioField, RadioFieldProps$1 as RadioFieldProps, RadioGroupField$1 as RadioGroupField, RadioGroupFieldProps$1 as RadioGroupFieldProps, ResponsiveContext, ResponsiveContextProvider, ResponsiveContextProviderProps, ResponsiveProp$1 as ResponsiveProp, ResponsivePropPrimitive$1 as ResponsivePropPrimitive, ResponsivePropRecord$1 as ResponsivePropRecord, ResponsivePropTuple$1 as ResponsivePropTuple, ResponsivePropTupleInit$1 as ResponsivePropTupleInit, Snackbar$1 as Snackbar, SnackbarCloseReason$1 as SnackbarCloseReason, SnackbarContent$1 as SnackbarContent, SnackbarContentProps$1 as SnackbarContentProps, SnackbarProps$1 as SnackbarProps, SnackbarStack$1 as SnackbarStack, SnackbarStackConsumer$1 as SnackbarStackConsumer, SnackbarStackOptions$1 as SnackbarStackOptions, SnackbarStackProvider$1 as SnackbarStackProvider, SnackbarStackProviderProps$1 as SnackbarStackProviderProps, SnackbarVariant$1 as SnackbarVariant, SpaceProp$1 as SpaceProp, Stack$1 as Stack, StackProps$1 as StackProps, SuperDispatchTheme$1 as SuperDispatchTheme, Tag$1 as Tag, TagClassKey$1 as TagClassKey, TagProps$1 as TagProps, ThemeProvider$1 as ThemeProvider, ThemeProviderProps$1 as ThemeProviderProps, Tiles$1 as Tiles, TilesColumns$1 as TilesColumns, TilesProps$1 as TilesProps, TilesSpace$1 as TilesSpace, VerticalAlign$1 as VerticalAlign, VisibilityObserver$1 as VisibilityObserver, VisibilityObserverOptions$1 as VisibilityObserverOptions, VisibilityObserverProps$1 as VisibilityObserverProps, VisibilityObserverRenderProps$1 as VisibilityObserverRenderProps, assignRef$1 as assignRef, isColorProp$1 as isColorProp, isEmptyReactNode$1 as isEmptyReactNode, mergeRefs$1 as mergeRefs, parseAlignProp$1 as parseAlignProp, parseCollapsedBelow$1 as parseCollapsedBelow, parseResponsiveProp$1 as parseResponsiveProp, parseSpaceProp$1 as parseSpaceProp, renderChildren$1 as renderChildren, useCollapseBreakpoint, useResponsiveContext, useResponsiveProp$1 as useResponsiveProp, useResponsivePropRecord$1 as useResponsivePropRecord, useResponsiveValue$1 as useResponsiveValue, useSnackbarStack$1 as useSnackbarStack, useUID$1 as useUID, useVisibilityObserver$1 as useVisibilityObserver, index_d as v5 };