@hitachivantara/uikit-react-core 5.95.0 → 5.96.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.
@@ -22,8 +22,6 @@ import { DialogProps } from '@mui/material/Dialog';
22
22
  import { DialogTitleProps } from '@mui/material/DialogTitle';
23
23
  import { DividerProps } from '@mui/material/Divider';
24
24
  import { DrawerProps } from '@mui/material/Drawer';
25
- import { ds3 } from '@hitachivantara/uikit-styles';
26
- import { ds5 } from '@hitachivantara/uikit-styles';
27
25
  import { EmotionCache } from '@emotion/cache';
28
26
  import { EmotionContext } from '@hitachivantara/uikit-react-shared';
29
27
  import { ExtractNames } from '@hitachivantara/uikit-react-utils';
@@ -61,7 +59,6 @@ import { MutableRefObject } from 'react';
61
59
  import { OptionGroupProps } from '@mui/base/OptionGroup';
62
60
  import { OptionOwnProps } from '@mui/base/Option';
63
61
  import { OptionsObject } from 'notistack';
64
- import { pentahoPlus } from '@hitachivantara/uikit-styles';
65
62
  import { PopperProps } from '@mui/base/Popper';
66
63
  import { PopperProps as PopperProps_2 } from 'react-popper';
67
64
  import { PropGetter } from 'react-table';
@@ -97,7 +94,6 @@ import { TableState } from 'react-table';
97
94
  import { TabProps } from '@mui/material/Tab';
98
95
  import { TabsProps } from '@mui/material/Tabs';
99
96
  import { theme } from '@hitachivantara/uikit-styles';
100
- import { themes } from '@hitachivantara/uikit-styles';
101
97
  import { TooltipProps } from '@mui/material/Tooltip';
102
98
  import { TransitionProps } from '@mui/material/transitions';
103
99
  import { UseColumnOrderInstanceProps } from 'react-table';
@@ -867,9 +863,9 @@ export declare const dropDownMenuClasses: {
867
863
  menuList: string;
868
864
  };
869
865
 
870
- export { ds3 }
866
+ export declare const ds3: any;
871
867
 
872
- export { ds5 }
868
+ export declare const ds5: any;
873
869
 
874
870
  export { EmotionContext }
875
871
 
@@ -960,6 +956,7 @@ export declare const getPrevNextFocus: (nodeId?: string) => {
960
956
  prevFocus: any;
961
957
  };
962
958
 
959
+ /** @deprecated */
963
960
  export declare const getVarValue: (cssVar: string, rootElementId?: string) => string | undefined;
964
961
 
965
962
  export declare const globalActionsClasses: {
@@ -1313,9 +1310,9 @@ export declare interface HvAvatarProps extends HvBaseProps {
1313
1310
  /** A string representing the type of avatar to display, circular or square. */
1314
1311
  variant?: HvAvatarVariant;
1315
1312
  /** A string representing the color of the avatar border that represents its status. */
1316
- status?: string;
1313
+ status?: HvColorAny;
1317
1314
  /** A string representing the color of the avatar badge. */
1318
- badge?: string;
1315
+ badge?: HvColorAny;
1319
1316
  /** Attributes applied to the avatar element. */
1320
1317
  avatarProps?: AvatarProps;
1321
1318
  /** A Jss Object used to override or extend the styles applied to the component. */
@@ -2009,7 +2006,7 @@ export declare const HvButton: <C extends React.ElementType = "button">(props: {
2009
2006
  component?: C | undefined;
2010
2007
  } & {
2011
2008
  children?: ReactNode | undefined;
2012
- } & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "radius" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "radius" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never) & {
2009
+ } & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never) & {
2013
2010
  ref?: PolymorphicRef<C> | undefined;
2014
2011
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
2015
2012
 
@@ -3679,6 +3676,11 @@ declare type HvFooterProps_2<D extends object = Record<string, unknown>> = HvTab
3679
3676
  * analogous to MUI's [`FormControl`](https://mui.com/material-ui/api/form-control/) component.
3680
3677
  *
3681
3678
  * It is used internally to build UI Kit's form components (eg. `HvInput`, `HvDatePicker`), and can be used to build custom form components.
3679
+ *
3680
+ * It exposes the common properties to be shared between all form components: `required`, `disabled`, `readOnly`, and `status`.
3681
+ *
3682
+ * Along with the properties above, form components also share the `value`/`defaultValue` and `onChange` props,
3683
+ * used to control the value of the form component, analogous to the native `input` component.
3682
3684
  */
3683
3685
  export declare const HvFormElement: {
3684
3686
  (props: HvFormElementProps): JSX_2.Element;
@@ -3742,6 +3744,10 @@ export declare type HvFormStatus = "standBy" | "valid" | "invalid" | "empty";
3742
3744
  /**
3743
3745
  * Global Actions are actions that affect the entire page they live in.
3744
3746
  * They should persist while scrolling down the screen.
3747
+ *
3748
+ * It uses `variant="global"` by default, rendering an `h1` element and applying sticky positioning.
3749
+ * Use `variant="section"` to group related content blocks.
3750
+ * Use it sparingly, as it introduces strong visual separation, which may not always be necessary.
3745
3751
  */
3746
3752
  export declare const HvGlobalActions: ForwardRefExoticComponent<HvGlobalActionsProps & RefAttributes<HTMLDivElement>>;
3747
3753
 
@@ -4006,7 +4012,7 @@ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useC
4006
4012
  * As defined by Design System, a tooltip with the button’s label should always be displayed when hovering an icon only button.
4007
4013
  * This component provides this behavior out of the box.
4008
4014
  */
4009
- export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "icon" | "title" | "children" | "ref" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon"> & {
4015
+ export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon"> & {
4010
4016
  /** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
4011
4017
  title: React.ReactNode;
4012
4018
  /** Number of milliseconds to wait before showing the tooltip. @default 500 */
@@ -4019,7 +4025,7 @@ export declare const HvIconButton: <C extends React.ElementType = "button">(prop
4019
4025
  component?: C | undefined;
4020
4026
  } & {
4021
4027
  children?: ReactNode | undefined;
4022
- } & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "disabled" | "title" | "selected" | "variant" | "size" | "radius" | "component" | "className" | "overrideIconColors" | "placement" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "radius" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "radius" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never), "icon" | "title" | "children" | "ref" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon">> extends infer T_1 ? T_1 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "disabled" | "title" | "selected" | "variant" | "size" | "radius" | "component" | "className" | "overrideIconColors" | "placement" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "radius" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T_2 ? T_2 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "disabled" | "icon" | "selected" | "variant" | "size" | "radius" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T_2 extends any ? T_2 : never : never : never), "icon" | "title" | "children" | "ref" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon">> ? T_1 extends any ? T_1 : never : never : never) & {
4028
+ } & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "radius" | "variant" | "selected" | "title" | "component" | "className" | "overrideIconColors" | "placement" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T extends any ? T : never : never : never), "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon">> extends infer T_1 ? T_1 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "radius" | "variant" | "selected" | "title" | "component" | "className" | "overrideIconColors" | "placement" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> extends infer T_2 ? T_2 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "variant" | "selected" | "component" | "className" | "focusableWhenDisabled" | "startIcon" | "endIcon" | "overrideIconColors"> ? T_2 extends any ? T_2 : never : never : never), "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon">> ? T_1 extends any ? T_1 : never : never : never) & {
4023
4029
  ref?: PolymorphicRef<C> | undefined;
4024
4030
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
4025
4031
 
@@ -4094,7 +4100,7 @@ export declare interface HvInfoMessageProps extends HvTypographyProps<"label"> {
4094
4100
  * An Inline Editor allows the user to edit a record without making a major switch
4095
4101
  * between viewing and editing, making it an efficient method of updating a record.
4096
4102
  */
4097
- export declare const HvInlineEditor: <C extends React.ElementType = <InputElement extends HTMLElement = HTMLInputElement | HTMLTextAreaElement>(props: HvInputProps<InputElement> & RefAttributes<InputElement>) => React.ReactElement<any> | null>(props: {
4103
+ export declare const HvInlineEditor: <C extends React.ElementType = <InputElement extends HTMLElement = HTMLTextAreaElement | HTMLInputElement>(props: HvInputProps<InputElement> & RefAttributes<InputElement>) => React.ReactElement<any> | null>(props: {
4098
4104
  /** The value of the form element. */
4099
4105
  value?: string;
4100
4106
  /** The default value of the form element. */
@@ -4134,7 +4140,7 @@ export declare const HvInlineEditor: <C extends React.ElementType = <InputElemen
4134
4140
  component?: C | undefined;
4135
4141
  } & {
4136
4142
  children?: ReactNode | undefined;
4137
- } & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "placeholder" | "disabled" | "variant" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "buttonProps" | "showIcon" | "typographyProps"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "placeholder" | "disabled" | "variant" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "buttonProps" | "showIcon" | "typographyProps"> ? T extends any ? T : never : never : never) & {
4143
+ } & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "variant" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "buttonProps" | "showIcon" | "typographyProps"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "variant" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "buttonProps" | "showIcon" | "typographyProps"> ? T extends any ? T : never : never : never) & {
4138
4144
  ref?: PolymorphicRef<C> | undefined;
4139
4145
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
4140
4146
 
@@ -4170,7 +4176,7 @@ export declare type HvInlineEditorProps<C extends React.ElementType = typeof HvI
4170
4176
  /**
4171
4177
  The Input is a UI control that allows users to enter and edit text, typically used for collecting user-provided information.
4172
4178
  */
4173
- export declare const HvInput: <InputElement extends HTMLElement = HTMLInputElement | HTMLTextAreaElement>(props: HvInputProps<InputElement> & RefAttributes<InputElement>) => React.ReactElement<any> | null;
4179
+ export declare const HvInput: <InputElement extends HTMLElement = HTMLTextAreaElement | HTMLInputElement>(props: HvInputProps<InputElement> & RefAttributes<InputElement>) => React.ReactElement<any> | null;
4174
4180
 
4175
4181
  export declare type HvInputClasses = ExtractNames<typeof useClasses_47>;
4176
4182
 
@@ -5939,7 +5945,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
5939
5945
  * A snackbar provider to control the stacking of multiple snackbars in the app.
5940
5946
  *
5941
5947
  * This component uses of the [Notistack](https://github.com/iamhosseindhv/notistack) library.
5942
- * Please refer to its [API Reference](https://notistack.com/v2.x/api-reference) for more complex usage scenarios.
5948
+ * Please refer to its [API Reference](https://notistack.com/api-reference) for more complex usage scenarios.
5943
5949
  */
5944
5950
  export declare const HvSnackbarProvider: (props: HvSnackbarProviderProps) => JSX_2.Element;
5945
5951
 
@@ -7593,13 +7599,13 @@ export declare const listContainerClasses: {
7593
7599
  export declare const listItemClasses: {
7594
7600
  root: string;
7595
7601
  focus: string;
7596
- startAdornment: string;
7597
- endAdornment: string;
7598
7602
  gutters: string;
7599
7603
  condensed: string;
7600
7604
  interactive: string;
7601
7605
  selected: string;
7602
7606
  disabled: string;
7607
+ startAdornment: string;
7608
+ endAdornment: string;
7603
7609
  withStartAdornment: string;
7604
7610
  withEndAdornment: string;
7605
7611
  };
@@ -7711,7 +7717,7 @@ export declare const panelClasses: {
7711
7717
  root: string;
7712
7718
  };
7713
7719
 
7714
- export { pentahoPlus }
7720
+ export declare const pentahoPlus: any;
7715
7721
 
7716
7722
  declare type PolymorphicComponent<C extends React.ElementType, Props = {}> = React.PropsWithChildren<Props & AsProp<C>> & FixComponentProps<Omit<React.ComponentPropsWithoutRef<C>, PropsToOmit<C, Props>>>;
7717
7723
 
@@ -8196,7 +8202,11 @@ export declare const textAreaClasses: {
8196
8202
 
8197
8203
  export { theme }
8198
8204
 
8199
- export { themes }
8205
+ export declare const themes: {
8206
+ ds3: any;
8207
+ ds5: any;
8208
+ pentahoPlus: any;
8209
+ };
8200
8210
 
8201
8211
  export declare const timeAgoClasses: {
8202
8212
  root: string;
@@ -8338,7 +8348,7 @@ export declare const useClasses: (classesProp?: Partial<Record<"xs" | "sm" | "md
8338
8348
  readonly cx: (...args: any) => string;
8339
8349
  };
8340
8350
 
8341
- declare const useClasses_10: (classesProp?: Partial<Record<"root" | "childGutter" | "labelDisabled", string>>, addStatic?: boolean) => {
8351
+ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "labelDisabled" | "childGutter", string>>, addStatic?: boolean) => {
8342
8352
  readonly classes: {
8343
8353
  root: string;
8344
8354
  labelDisabled: string;
@@ -8348,7 +8358,7 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "childGutter
8348
8358
  readonly cx: (...args: any) => string;
8349
8359
  };
8350
8360
 
8351
- declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "positionSticky" | "positionFixed" | "notSelectedRoot", string>>, addStatic?: boolean) => {
8361
+ declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected" | "positionSticky" | "positionFixed" | "notSelectedRoot" | "notSelected", string>>, addStatic?: boolean) => {
8352
8362
  readonly classes: {
8353
8363
  root: string;
8354
8364
  positionSticky: string;
@@ -8361,7 +8371,7 @@ declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected"
8361
8371
  readonly cx: (...args: any) => string;
8362
8372
  };
8363
8373
 
8364
- declare const useClasses_101: (classesProp?: Partial<Record<"text" | "root" | "icon" | "button" | "notSelected", string>>, addStatic?: boolean) => {
8374
+ declare const useClasses_101: (classesProp?: Partial<Record<"text" | "button" | "icon" | "root" | "notSelected", string>>, addStatic?: boolean) => {
8365
8375
  readonly classes: {
8366
8376
  root: string;
8367
8377
  icon: string;
@@ -8383,7 +8393,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root" | "positionFi
8383
8393
  readonly cx: (...args: any) => string;
8384
8394
  };
8385
8395
 
8386
- declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8396
+ declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8387
8397
  readonly classes: {
8388
8398
  root: string;
8389
8399
  hidden: string;
@@ -8406,7 +8416,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"root", string>>, ad
8406
8416
  readonly cx: (...args: any) => string;
8407
8417
  };
8408
8418
 
8409
- declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "labelContainer" | "rootDisabled" | "sliderBase" | "sliderContainer" | "sliderRoot" | "rootRange" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
8419
+ declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "error" | "labelContainer" | "rootDisabled" | "sliderBase" | "sliderContainer" | "trackDragging" | "trackStandBy" | "sliderRoot" | "rootRange" | "handleContainer" | "handle" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
8410
8420
  readonly classes: {
8411
8421
  sliderBase: string;
8412
8422
  rootDisabled: string;
@@ -8445,7 +8455,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOrig
8445
8455
  readonly cx: (...args: any) => string;
8446
8456
  };
8447
8457
 
8448
- declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "root" | "action" | "default" | "success" | "error" | "message" | "messageText" | "iconVariant" | "messageSpan", string>>, addStatic?: boolean) => {
8458
+ declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "root" | "success" | "error" | "message" | "action" | "messageText" | "iconVariant" | "messageSpan", string>>, addStatic?: boolean) => {
8449
8459
  readonly classes: {
8450
8460
  root: string;
8451
8461
  success: string;
@@ -8472,7 +8482,7 @@ declare const useClasses_108: (classesProp?: Partial<Record<"snackItemRoot", str
8472
8482
  readonly cx: (...args: any) => string;
8473
8483
  };
8474
8484
 
8475
- declare const useClasses_109: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "divider" | "row" | "column", string>>, addStatic?: boolean) => {
8485
+ declare const useClasses_109: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "column" | "row" | "root" | "divider", string>>, addStatic?: boolean) => {
8476
8486
  readonly classes: {
8477
8487
  root: string;
8478
8488
  column: string;
@@ -8498,7 +8508,7 @@ declare const useClasses_11: (classesProp?: Partial<Record<"root" | "gutter" | "
8498
8508
  readonly cx: (...args: any) => string;
8499
8509
  };
8500
8510
 
8501
- declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "invalidSwitch" | "error" | "switchContainer", string>>, addStatic?: boolean) => {
8511
+ declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "error" | "switchContainer" | "invalidSwitch", string>>, addStatic?: boolean) => {
8502
8512
  readonly classes: {
8503
8513
  root: string;
8504
8514
  label: string;
@@ -8518,7 +8528,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
8518
8528
  readonly cx: (...args: any) => string;
8519
8529
  };
8520
8530
 
8521
- declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8531
+ declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8522
8532
  readonly classes: {
8523
8533
  root: string;
8524
8534
  header: string;
@@ -8550,7 +8560,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHead
8550
8560
  readonly cx: (...args: any) => string;
8551
8561
  };
8552
8562
 
8553
- declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm" | "md" | "root" | "disabled" | "icon" | "selected" | "button" | "categorical" | "hasIcon" | "deleteIcon" | "clickable" | "focusVisible" | "outlined" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
8563
+ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm" | "md" | "button" | "icon" | "disabled" | "root" | "categorical" | "hasIcon" | "deleteIcon" | "clickable" | "selected" | "focusVisible" | "outlined" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
8554
8564
  readonly classes: {
8555
8565
  root: string;
8556
8566
  hasIcon: string;
@@ -8589,7 +8599,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating"
8589
8599
  readonly cx: (...args: any) => string;
8590
8600
  };
8591
8601
 
8592
- declare const useClasses_117: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8602
+ declare const useClasses_117: (classesProp?: Partial<Record<"disabled" | "root" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8593
8603
  readonly classes: {
8594
8604
  root: string;
8595
8605
  focusVisible: string;
@@ -8600,7 +8610,7 @@ declare const useClasses_117: (classesProp?: Partial<Record<"root" | "disabled"
8600
8610
  readonly cx: (...args: any) => string;
8601
8611
  };
8602
8612
 
8603
- declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "invalid" | "disabled" | "readOnly" | "input" | "tagInputRoot" | "tagsList" | "error" | "singleLine" | "inputExtension" | "description" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty", string>>, addStatic?: boolean) => {
8613
+ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "tagsList" | "singleLine" | "inputExtension" | "input" | "readOnly" | "description" | "invalid" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty", string>>, addStatic?: boolean) => {
8604
8614
  readonly classes: {
8605
8615
  listItemGutters: string;
8606
8616
  listItemRoot: string;
@@ -8632,7 +8642,7 @@ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "
8632
8642
  readonly cx: (...args: any) => string;
8633
8643
  };
8634
8644
 
8635
- declare const useClasses_119: (classesProp?: Partial<Record<"label" | "root" | "invalid" | "disabled" | "input" | "error" | "description" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8645
+ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "input" | "description" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8636
8646
  readonly classes: {
8637
8647
  root: string;
8638
8648
  disabled: string;
@@ -8651,7 +8661,7 @@ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "root" | "
8651
8661
  readonly cx: (...args: any) => string;
8652
8662
  };
8653
8663
 
8654
- declare const useClasses_12: (classesProp?: Partial<Record<"root" | "warningText" | "topGutter" | "defaultIcon" | "show" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8664
+ declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "defaultIcon" | "warningText" | "topGutter" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8655
8665
  readonly classes: {
8656
8666
  root: string;
8657
8667
  defaultIcon: string;
@@ -8673,7 +8683,7 @@ declare const useClasses_120: (classesProp?: Partial<Record<"root", string>>, ad
8673
8683
  readonly cx: (...args: any) => string;
8674
8684
  };
8675
8685
 
8676
- declare const useClasses_121: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "icon" | "error" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8686
+ declare const useClasses_121: (classesProp?: Partial<Record<"label" | "icon" | "root" | "error" | "placeholder" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8677
8687
  readonly classes: {
8678
8688
  root: string;
8679
8689
  labelContainer: string;
@@ -8701,7 +8711,7 @@ declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, ad
8701
8711
  readonly cx: (...args: any) => string;
8702
8712
  };
8703
8713
 
8704
- declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label" | "root" | "disabled" | "focused" | "selected" | "expanded" | "group" | "iconContainer", string>>, addStatic?: boolean) => {
8714
+ declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "root" | "selected" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8705
8715
  readonly classes: {
8706
8716
  root: string;
8707
8717
  group: string;
@@ -8717,7 +8727,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label"
8717
8727
  readonly cx: (...args: any) => string;
8718
8728
  };
8719
8729
 
8720
- declare const useClasses_124: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "focused" | "selected" | "expanded" | "iconContainer", string>>, addStatic?: boolean) => {
8730
+ declare const useClasses_124: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "root" | "selected" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8721
8731
  readonly classes: {
8722
8732
  root: string;
8723
8733
  expanded: string;
@@ -8754,7 +8764,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "title" | "
8754
8764
  readonly cx: (...args: any) => string;
8755
8765
  };
8756
8766
 
8757
- declare const useClasses_127: (classesProp?: Partial<Record<"root" | "hide", string>>, addStatic?: boolean) => {
8767
+ declare const useClasses_127: (classesProp?: Partial<Record<"hide" | "root", string>>, addStatic?: boolean) => {
8758
8768
  readonly classes: {
8759
8769
  root: string;
8760
8770
  hide: string;
@@ -8786,7 +8796,7 @@ declare const useClasses_129: (classesProp?: Partial<Record<"root" | "list" | "p
8786
8796
  readonly cx: (...args: any) => string;
8787
8797
  };
8788
8798
 
8789
- declare const useClasses_13: (classesProp?: Partial<Record<"label" | "root" | "panel" | "invalid" | "disabled" | "readOnly" | "select" | "popper" | "error" | "description" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8799
+ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "panel" | "popper" | "error" | "select" | "readOnly" | "description" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8790
8800
  readonly classes: {
8791
8801
  root: string;
8792
8802
  disabled: string;
@@ -8806,7 +8816,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "root" | "p
8806
8816
  readonly cx: (...args: any) => string;
8807
8817
  };
8808
8818
 
8809
- declare const useClasses_130: (classesProp?: Partial<Record<"root" | "listItemSelected" | "listItemDisabled" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8819
+ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "listItemDisabled" | "listItemSelected" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8810
8820
  readonly classes: {
8811
8821
  root: string;
8812
8822
  listItemSelected: string;
@@ -8827,7 +8837,7 @@ declare const useClasses_131: (classesProp?: Partial<Record<"root", string>>, ad
8827
8837
  readonly cx: (...args: any) => string;
8828
8838
  };
8829
8839
 
8830
- declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "focused" | "icon" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
8840
+ declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label" | "link" | "hide" | "expanded" | "icon" | "disabled" | "selected" | "selectable" | "unselectable" | "group" | "node" | "focused" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
8831
8841
  readonly classes: {
8832
8842
  node: string;
8833
8843
  content: string;
@@ -8853,7 +8863,7 @@ declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label"
8853
8863
  readonly cx: (...args: any) => string;
8854
8864
  };
8855
8865
 
8856
- declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" | "root" | "circle" | "square" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8866
+ declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" | "circle" | "square" | "root" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8857
8867
  readonly classes: {
8858
8868
  root: string;
8859
8869
  content: string;
@@ -8867,7 +8877,7 @@ declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" |
8867
8877
  readonly cx: (...args: any) => string;
8868
8878
  };
8869
8879
 
8870
- declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "root" | "semantic" | "disabled" | "icon" | "secondarySubtle" | "ghost" | "secondaryGhost" | "contained" | "primaryGhost" | "subtle" | "startIcon" | "endIcon" | "focusVisible", string>>, addStatic?: boolean) => {
8880
+ declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "semantic" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "icon" | "disabled" | "root" | "contained" | "subtle" | "ghost" | "startIcon" | "endIcon" | "focusVisible", string>>, addStatic?: boolean) => {
8871
8881
  readonly classes: {
8872
8882
  root: string;
8873
8883
  startIcon: string;
@@ -8907,7 +8917,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root", string>>, add
8907
8917
  readonly cx: (...args: any) => string;
8908
8918
  };
8909
8919
 
8910
- declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "invalid" | "listbox" | "error" | "description", string>>, addStatic?: boolean) => {
8920
+ declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "error" | "description" | "invalid", string>>, addStatic?: boolean) => {
8911
8921
  readonly classes: {
8912
8922
  root: string;
8913
8923
  error: string;
@@ -8922,7 +8932,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizon
8922
8932
  readonly cx: (...args: any) => string;
8923
8933
  };
8924
8934
 
8925
- declare const useClasses_18: (classesProp?: Partial<Record<"root" | "list" | "popper" | "portal", string>>, addStatic?: boolean) => {
8935
+ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "popper" | "list" | "portal", string>>, addStatic?: boolean) => {
8926
8936
  readonly classes: {
8927
8937
  root: string;
8928
8938
  list: string;
@@ -8933,7 +8943,7 @@ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "list" | "po
8933
8943
  readonly cx: (...args: any) => string;
8934
8944
  };
8935
8945
 
8936
- declare const useClasses_19: (classesProp?: Partial<Record<"root" | "invalid" | "disabled" | "multiline" | "readOnly" | "focused" | "input" | "inputReadOnly" | "inputRoot" | "resizable" | "inputBorderContainer" | "inputRootInvalid" | "inputRootReadOnly" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "inputDisabled" | "inputResizable", string>>, addStatic?: boolean) => {
8946
+ declare const useClasses_19: (classesProp?: Partial<Record<"disabled" | "root" | "inputRoot" | "input" | "readOnly" | "invalid" | "focused" | "multiline" | "resizable" | "inputBorderContainer" | "inputRootInvalid" | "inputRootReadOnly" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "inputDisabled" | "inputReadOnly" | "inputResizable", string>>, addStatic?: boolean) => {
8937
8947
  readonly classes: {
8938
8948
  root: string;
8939
8949
  disabled: string;
@@ -8958,7 +8968,7 @@ declare const useClasses_19: (classesProp?: Partial<Record<"root" | "invalid" |
8958
8968
  readonly cx: (...args: any) => string;
8959
8969
  };
8960
8970
 
8961
- declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | "5xlTitle" | "4xlTitle" | "xxlTitle" | "lTitle" | "sTitle" | "xxsTitle" | "sectionTitle" | "placeholderText" | "link" | "disabledText" | "selectedNavText" | "vizTextDisabled" | "xsInlineLink" | "root" | "disabled" | "isLink" | "noWrap" | "3xlTitle" | "xlTitle" | "mTitle" | "xsTitle" | "highlightText" | "normalText" | "vizText", string>>, addStatic?: boolean) => {
8971
+ declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | "5xlTitle" | "4xlTitle" | "xxlTitle" | "lTitle" | "sTitle" | "xxsTitle" | "sectionTitle" | "placeholderText" | "link" | "disabledText" | "selectedNavText" | "vizTextDisabled" | "xsInlineLink" | "disabled" | "root" | "isLink" | "noWrap" | "3xlTitle" | "xlTitle" | "mTitle" | "xsTitle" | "highlightText" | "normalText" | "vizText", string>>, addStatic?: boolean) => {
8962
8972
  readonly classes: {
8963
8973
  root: string;
8964
8974
  disabled: string;
@@ -8999,7 +9009,7 @@ declare const useClasses_2: (classesProp?: Partial<Record<"display" | "title1" |
8999
9009
  readonly cx: (...args: any) => string;
9000
9010
  };
9001
9011
 
9002
- declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "root" | "headerOpen" | "headerDisabled" | "headerReadOnly" | "placeholder" | "panel" | "inputExtensionOpen" | "anchor" | "selection" | "arrowContainer" | "panelOpenedUp" | "panelOpenedDown" | "rootDisabled" | "headerOpenUp" | "headerOpenDown" | "arrow" | "selectionDisabled" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
9012
+ declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "root" | "headerOpen" | "panel" | "placeholder" | "selection" | "arrowContainer" | "panelOpenedUp" | "panelOpenedDown" | "rootDisabled" | "headerOpenUp" | "headerOpenDown" | "headerDisabled" | "headerReadOnly" | "arrow" | "selectionDisabled" | "inputExtensionOpen" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
9003
9013
  readonly classes: {
9004
9014
  root: string;
9005
9015
  rootDisabled: string;
@@ -9029,7 +9039,7 @@ declare const useClasses_20: (classesProp?: Partial<Record<"container" | "header
9029
9039
  readonly cx: (...args: any) => string;
9030
9040
  };
9031
9041
 
9032
- declare const useClasses_21: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "hidden", string>>, addStatic?: boolean) => {
9042
+ declare const useClasses_21: (classesProp?: Partial<Record<"container" | "label" | "hidden" | "disabled" | "root", string>>, addStatic?: boolean) => {
9033
9043
  readonly classes: {
9034
9044
  root: string;
9035
9045
  hidden: string;
@@ -9049,7 +9059,7 @@ declare const useClasses_22: (classesProp?: Partial<Record<"root", string>>, add
9049
9059
  readonly cx: (...args: any) => string;
9050
9060
  };
9051
9061
 
9052
- declare const useClasses_23: (classesProp?: Partial<Record<"root" | "button" | "actionContainer" | "dropDownMenu" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
9062
+ declare const useClasses_23: (classesProp?: Partial<Record<"button" | "root" | "actionContainer" | "dropDownMenu" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
9053
9063
  readonly classes: {
9054
9064
  root: string;
9055
9065
  button: string;
@@ -9062,7 +9072,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"root" | "button" | "
9062
9072
  readonly cx: (...args: any) => string;
9063
9073
  };
9064
9074
 
9065
- declare const useClasses_24: (classesProp?: Partial<Record<"container" | "root" | "icon" | "iconSelected" | "baseContainer" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
9075
+ declare const useClasses_24: (classesProp?: Partial<Record<"container" | "icon" | "root" | "iconSelected" | "baseContainer" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
9066
9076
  readonly classes: {
9067
9077
  root: string;
9068
9078
  container: string;
@@ -9076,7 +9086,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"container" | "root"
9076
9086
  readonly cx: (...args: any) => string;
9077
9087
  };
9078
9088
 
9079
- declare const useClasses_25: (classesProp?: Partial<Record<"root" | "title" | "single" | "actionsContainer" | "open" | "item" | "titleAnchor" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
9089
+ declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "root" | "title" | "item" | "titleAnchor" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "actionsContainer" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
9080
9090
  readonly classes: {
9081
9091
  root: string;
9082
9092
  item: string;
@@ -9100,7 +9110,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"root" | "title" | "s
9100
9110
  readonly cx: (...args: any) => string;
9101
9111
  };
9102
9112
 
9103
- declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "root" | "disabled" | "icon" | "title" | "selected" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
9113
+ declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "root" | "selected" | "title" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
9104
9114
  readonly classes: {
9105
9115
  root: string;
9106
9116
  icon: string;
@@ -9116,7 +9126,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "root"
9116
9126
  readonly cx: (...args: any) => string;
9117
9127
  };
9118
9128
 
9119
- declare const useClasses_27: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "square" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
9129
+ declare const useClasses_27: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "square" | "root" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
9120
9130
  readonly classes: {
9121
9131
  root: string;
9122
9132
  img: string;
@@ -9137,7 +9147,7 @@ declare const useClasses_27: (classesProp?: Partial<Record<"container" | "xs" |
9137
9147
  readonly cx: (...args: any) => string;
9138
9148
  };
9139
9149
 
9140
- declare const useClasses_28: (classesProp?: Partial<Record<"root" | "row" | "column" | "highlight" | "toBack", string>>, addStatic?: boolean) => {
9150
+ declare const useClasses_28: (classesProp?: Partial<Record<"column" | "row" | "root" | "highlight" | "toBack", string>>, addStatic?: boolean) => {
9141
9151
  readonly classes: {
9142
9152
  root: string;
9143
9153
  row: string;
@@ -9165,7 +9175,7 @@ declare const useClasses_29: (classesProp?: Partial<Record<"root" | "badgePositi
9165
9175
  readonly cx: (...args: any) => string;
9166
9176
  };
9167
9177
 
9168
- declare const useClasses_3: (classesProp?: Partial<Record<"root" | "disabled", string>>, addStatic?: boolean) => {
9178
+ declare const useClasses_3: (classesProp?: Partial<Record<"disabled" | "root", string>>, addStatic?: boolean) => {
9169
9179
  readonly classes: {
9170
9180
  root: string;
9171
9181
  disabled: string;
@@ -9185,7 +9195,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "rootClosed"
9185
9195
  readonly cx: (...args: any) => string;
9186
9196
  };
9187
9197
 
9188
- declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "root" | "action" | "default" | "success" | "error" | "message" | "actionContainer" | "messageContainer" | "iconContainer" | "messageActions" | "closeAction" | "baseVariant" | "outContainer" | "actionsInnerContainer", string>>, addStatic?: boolean) => {
9198
+ declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "root" | "success" | "error" | "message" | "action" | "actionContainer" | "messageContainer" | "iconContainer" | "messageActions" | "closeAction" | "baseVariant" | "outContainer" | "actionsInnerContainer", string>>, addStatic?: boolean) => {
9189
9199
  readonly classes: {
9190
9200
  root: string;
9191
9201
  success: string;
@@ -9209,7 +9219,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning"
9209
9219
  readonly cx: (...args: any) => string;
9210
9220
  };
9211
9221
 
9212
- declare const useClasses_32: (classesProp?: Partial<Record<"root" | "checked" | "semantic" | "indeterminate" | "disabled" | "icon" | "focusVisible", string>>, addStatic?: boolean) => {
9222
+ declare const useClasses_32: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "root" | "checked" | "focusVisible" | "indeterminate", string>>, addStatic?: boolean) => {
9213
9223
  readonly classes: {
9214
9224
  root: string;
9215
9225
  disabled: string;
@@ -9223,7 +9233,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"root" | "checked" |
9223
9233
  readonly cx: (...args: any) => string;
9224
9234
  };
9225
9235
 
9226
- declare const useClasses_33: (classesProp?: Partial<Record<"root" | "checked" | "semantic" | "disabled" | "icon" | "focusVisible", string>>, addStatic?: boolean) => {
9236
+ declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" | "disabled" | "root" | "checked" | "focusVisible", string>>, addStatic?: boolean) => {
9227
9237
  readonly classes: {
9228
9238
  root: string;
9229
9239
  disabled: string;
@@ -9236,7 +9246,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"root" | "checked" |
9236
9246
  readonly cx: (...args: any) => string;
9237
9247
  };
9238
9248
 
9239
- declare const useClasses_34: (classesProp?: Partial<Record<"root" | "checked" | "disabled" | "readOnly" | "switch" | "switchBase" | "track" | "thumb" | "focusVisible", string>>, addStatic?: boolean) => {
9249
+ declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "root" | "checked" | "track" | "switch" | "readOnly" | "focusVisible" | "switchBase" | "thumb", string>>, addStatic?: boolean) => {
9240
9250
  readonly classes: {
9241
9251
  root: string;
9242
9252
  switch: string;
@@ -9266,7 +9276,7 @@ declare const useClasses_35: (classesProp?: Partial<Record<"link" | "root" | "a"
9266
9276
  readonly cx: (...args: any) => string;
9267
9277
  };
9268
9278
 
9269
- declare const useClasses_36: (classesProp?: Partial<Record<"root" | "semantic" | "divider" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages", string>>, addStatic?: boolean) => {
9279
+ declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages" | "divider", string>>, addStatic?: boolean) => {
9270
9280
  readonly classes: {
9271
9281
  root: string;
9272
9282
  semantic: string;
@@ -9280,7 +9290,7 @@ declare const useClasses_36: (classesProp?: Partial<Record<"root" | "semantic" |
9280
9290
  readonly cx: (...args: any) => string;
9281
9291
  };
9282
9292
 
9283
- declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "root" | "checked" | "semantic" | "indeterminate" | "disabled" | "checkbox" | "focusVisible" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
9293
+ declare const useClasses_37: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "checkbox" | "disabled" | "root" | "checked" | "focusVisible" | "indeterminate" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
9284
9294
  readonly classes: {
9285
9295
  root: string;
9286
9296
  container: string;
@@ -9321,7 +9331,7 @@ declare const useClasses_39: (classesProp?: Partial<Record<"root" | "invalid" |
9321
9331
  readonly cx: (...args: any) => string;
9322
9332
  };
9323
9333
 
9324
- declare const useClasses_4: (classesProp?: Partial<Record<"root" | "disabled" | "focused" | "selected" | "focus" | "focusDisabled", string>>, addStatic?: boolean) => {
9334
+ declare const useClasses_4: (classesProp?: Partial<Record<"disabled" | "root" | "selected" | "focus" | "focusDisabled" | "focused", string>>, addStatic?: boolean) => {
9325
9335
  readonly classes: {
9326
9336
  root: string;
9327
9337
  selected: string;
@@ -9357,7 +9367,7 @@ declare const useClasses_40: (classesProp?: Partial<Record<"root" | "focusSelect
9357
9367
  readonly cx: (...args: any) => string;
9358
9368
  };
9359
9369
 
9360
- declare const useClasses_41: (classesProp?: Partial<Record<"root" | "icon" | "selectable" | "selected" | "semanticBar" | "semanticContainer", string>>, addStatic?: boolean) => {
9370
+ declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "root" | "selected" | "selectable" | "semanticBar" | "semanticContainer", string>>, addStatic?: boolean) => {
9361
9371
  readonly classes: {
9362
9372
  root: string;
9363
9373
  selected: string;
@@ -9370,7 +9380,7 @@ declare const useClasses_41: (classesProp?: Partial<Record<"root" | "icon" | "se
9370
9380
  readonly cx: (...args: any) => string;
9371
9381
  };
9372
9382
 
9373
- declare const useClasses_42: (classesProp?: Partial<Record<"content" | "root" | "title" | "titleShort" | "subheader" | "action", string>>, addStatic?: boolean) => {
9383
+ declare const useClasses_42: (classesProp?: Partial<Record<"content" | "root" | "action" | "title" | "titleShort" | "subheader", string>>, addStatic?: boolean) => {
9374
9384
  readonly classes: {
9375
9385
  root: string;
9376
9386
  titleShort: string;
@@ -9400,7 +9410,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"root" | "media", str
9400
9410
  readonly cx: (...args: any) => string;
9401
9411
  };
9402
9412
 
9403
- declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "root" | "panel" | "title" | "controls" | "counterContainer" | "thumbnail" | "thumbnailSelected" | "dot" | "main" | "counter" | "actions" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected", string>>, addStatic?: boolean) => {
9413
+ declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "dot" | "root" | "panel" | "main" | "title" | "controls" | "counter" | "actions" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "counterContainer" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected" | "thumbnail" | "thumbnailSelected", string>>, addStatic?: boolean) => {
9404
9414
  readonly classes: {
9405
9415
  root: string;
9406
9416
  xs: string;
@@ -9440,7 +9450,7 @@ declare const useClasses_46: (classesProp?: Partial<Record<"image" | "slide", st
9440
9450
  readonly cx: (...args: any) => string;
9441
9451
  };
9442
9452
 
9443
- declare const useClasses_47: (classesProp?: Partial<Record<"label" | "root" | "input" | "icon" | "error" | "inputRoot" | "inputExtension" | "adornmentsBox" | "description" | "adornmentButton" | "labelContainer" | "inputBorderContainer" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList", string>>, addStatic?: boolean) => {
9453
+ declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "root" | "error" | "inputRoot" | "inputExtension" | "adornmentsBox" | "input" | "description" | "adornmentButton" | "labelContainer" | "inputBorderContainer" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList", string>>, addStatic?: boolean) => {
9444
9454
  readonly classes: {
9445
9455
  root: string;
9446
9456
  labelContainer: string;
@@ -9466,7 +9476,7 @@ declare const useClasses_47: (classesProp?: Partial<Record<"label" | "root" | "i
9466
9476
  readonly cx: (...args: any) => string;
9467
9477
  };
9468
9478
 
9469
- declare const useClasses_48: (classesProp?: Partial<Record<"root" | "icon" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeTextContainer" | "pageSizeOptionsSelect" | "totalPagesTextContainer" | "pageNavigator" | "iconContainer" | "pageSizeRoot" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
9479
+ declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "iconContainer" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeRoot" | "pageSizeTextContainer" | "totalPagesTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
9470
9480
  readonly classes: {
9471
9481
  root: string;
9472
9482
  pageSizeOptions: string;
@@ -9488,7 +9498,7 @@ declare const useClasses_48: (classesProp?: Partial<Record<"root" | "icon" | "pa
9488
9498
  readonly cx: (...args: any) => string;
9489
9499
  };
9490
9500
 
9491
- declare const useClasses_49: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "invalid" | "error" | "group" | "selectAll", string>>, addStatic?: boolean) => {
9501
+ declare const useClasses_49: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "error" | "group" | "invalid" | "selectAll", string>>, addStatic?: boolean) => {
9492
9502
  readonly classes: {
9493
9503
  root: string;
9494
9504
  label: string;
@@ -9511,7 +9521,7 @@ declare const useClasses_5: (classesProp?: Partial<Record<"root", string>>, addS
9511
9521
  readonly cx: (...args: any) => string;
9512
9522
  };
9513
9523
 
9514
- declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "panel" | "headerColorValue" | "recommendedColorsRoot" | "description" | "labelContainer" | "headerColorIcon" | "colorPickerIcon" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
9524
+ declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "panel" | "description" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
9515
9525
  readonly classes: {
9516
9526
  root: string;
9517
9527
  labelContainer: string;
@@ -9531,7 +9541,7 @@ declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicke
9531
9541
  readonly cx: (...args: any) => string;
9532
9542
  };
9533
9543
 
9534
- declare const useClasses_51: (classesProp?: Partial<Record<"root" | "fixed" | "disableGutters" | "maxWidthXs" | "maxWidthSm" | "maxWidthMd" | "maxWidthLg" | "maxWidthXl", string>>, addStatic?: boolean) => {
9544
+ declare const useClasses_51: (classesProp?: Partial<Record<"fixed" | "root" | "disableGutters" | "maxWidthXs" | "maxWidthSm" | "maxWidthMd" | "maxWidthLg" | "maxWidthXl", string>>, addStatic?: boolean) => {
9535
9545
  readonly classes: {
9536
9546
  root: string;
9537
9547
  disableGutters: string;
@@ -9557,7 +9567,7 @@ declare const useClasses_52: (classesProp?: Partial<Record<"root" | "section" |
9557
9567
  readonly cx: (...args: any) => string;
9558
9568
  };
9559
9569
 
9560
- declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "head" | "variantListactions" | "variantListcheckbox" | "variantList" | "footer" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantListHead" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing", string>>, addStatic?: boolean) => {
9570
+ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "footer" | "head" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "variantListHead" | "variantListactions" | "variantListcheckbox" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing", string>>, addStatic?: boolean) => {
9561
9571
  readonly classes: {
9562
9572
  root: string;
9563
9573
  head: string;
@@ -9588,7 +9598,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "he
9588
9598
  readonly cx: (...args: any) => string;
9589
9599
  };
9590
9600
 
9591
- declare const useClasses_54: (classesProp?: Partial<Record<"body" | "root" | "selected" | "head" | "variantList" | "expanded" | "footer" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
9601
+ declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "root" | "selected" | "footer" | "head" | "variantList" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
9592
9602
  readonly classes: {
9593
9603
  root: string;
9594
9604
  head: string;
@@ -9605,7 +9615,7 @@ declare const useClasses_54: (classesProp?: Partial<Record<"body" | "root" | "se
9605
9615
  readonly cx: (...args: any) => string;
9606
9616
  };
9607
9617
 
9608
- declare const useClasses_55: (classesProp?: Partial<Record<"body" | "root" | "head" | "sortButton" | "variantList" | "resizer" | "footer" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortable" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
9618
+ declare const useClasses_55: (classesProp?: Partial<Record<"body" | "resizer" | "root" | "footer" | "head" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortable" | "sortButton" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
9609
9619
  readonly classes: {
9610
9620
  root: string;
9611
9621
  head: string;
@@ -9673,7 +9683,7 @@ declare const useClasses_58: (classesProp?: Partial<Record<"root" | "sortDropdow
9673
9683
  readonly cx: (...args: any) => string;
9674
9684
  };
9675
9685
 
9676
- declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "disabled" | "readOnly" | "placeholderClosed" | "error" | "description" | "labelContainer" | "dropdown" | "arrow" | "selectionDisabled" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
9686
+ declare const useClasses_59: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "placeholder" | "readOnly" | "description" | "labelContainer" | "dropdown" | "arrow" | "selectionDisabled" | "placeholderClosed" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
9677
9687
  readonly classes: {
9678
9688
  root: string;
9679
9689
  labelContainer: string;
@@ -9697,17 +9707,17 @@ declare const useClasses_59: (classesProp?: Partial<Record<"label" | "root" | "p
9697
9707
  readonly cx: (...args: any) => string;
9698
9708
  };
9699
9709
 
9700
- declare const useClasses_6: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "condensed" | "focus" | "interactive" | "startAdornment" | "endAdornment" | "gutters" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
9710
+ declare const useClasses_6: (classesProp?: Partial<Record<"condensed" | "disabled" | "root" | "selected" | "focus" | "interactive" | "gutters" | "startAdornment" | "endAdornment" | "withStartAdornment" | "withEndAdornment", string>>, addStatic?: boolean) => {
9701
9711
  readonly classes: {
9702
9712
  root: string;
9703
9713
  focus: string;
9704
- startAdornment: string;
9705
- endAdornment: string;
9706
9714
  gutters: string;
9707
9715
  condensed: string;
9708
9716
  interactive: string;
9709
9717
  selected: string;
9710
9718
  disabled: string;
9719
+ startAdornment: string;
9720
+ endAdornment: string;
9711
9721
  withStartAdornment: string;
9712
9722
  withEndAdornment: string;
9713
9723
  };
@@ -9729,7 +9739,7 @@ declare const useClasses_60: (classesProp?: Partial<Record<"listContainer" | "vi
9729
9739
  readonly cx: (...args: any) => string;
9730
9740
  };
9731
9741
 
9732
- declare const useClasses_61: (classesProp?: Partial<Record<"container" | "label" | "root" | "panel" | "icon" | "inputText" | "action" | "error" | "description" | "labelContainer" | "dropdown" | "actionContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "dateText", string>>, addStatic?: boolean) => {
9742
+ declare const useClasses_61: (classesProp?: Partial<Record<"container" | "label" | "icon" | "root" | "panel" | "error" | "action" | "description" | "labelContainer" | "dropdown" | "actionContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "inputText" | "dateText", string>>, addStatic?: boolean) => {
9733
9743
  readonly classes: {
9734
9744
  root: string;
9735
9745
  actionContainer: string;
@@ -9753,7 +9763,7 @@ declare const useClasses_61: (classesProp?: Partial<Record<"container" | "label"
9753
9763
  readonly cx: (...args: any) => string;
9754
9764
  };
9755
9765
 
9756
- declare const useClasses_62: (classesProp?: Partial<Record<"root" | "titleText" | "messageContainer" | "fullscreen" | "textWithIcon", string>>, addStatic?: boolean) => {
9766
+ declare const useClasses_62: (classesProp?: Partial<Record<"root" | "messageContainer" | "fullscreen" | "textWithIcon" | "titleText", string>>, addStatic?: boolean) => {
9757
9767
  readonly classes: {
9758
9768
  root: string;
9759
9769
  fullscreen: string;
@@ -9784,7 +9794,7 @@ declare const useClasses_64: (classesProp?: Partial<Record<"root" | "spacing" |
9784
9794
  readonly cx: (...args: any) => string;
9785
9795
  };
9786
9796
 
9787
- declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "paper" | "success" | "error" | "fullscreen" | "closeButton" | "fullHeight" | "statusBar", string>>, addStatic?: boolean) => {
9797
+ declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "success" | "error" | "fullscreen" | "closeButton" | "paper" | "fullHeight" | "statusBar", string>>, addStatic?: boolean) => {
9788
9798
  readonly classes: {
9789
9799
  root: string;
9790
9800
  background: string;
@@ -9801,7 +9811,7 @@ declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "backgrou
9801
9811
  readonly cx: (...args: any) => string;
9802
9812
  };
9803
9813
 
9804
- declare const useClasses_66: (classesProp?: Partial<Record<"horizontal" | "root" | "icon" | "radio" | "radioRoot", string>>, addStatic?: boolean) => {
9814
+ declare const useClasses_66: (classesProp?: Partial<Record<"horizontal" | "radio" | "icon" | "root" | "radioRoot", string>>, addStatic?: boolean) => {
9805
9815
  readonly classes: {
9806
9816
  root: string;
9807
9817
  horizontal: string;
@@ -9813,7 +9823,7 @@ declare const useClasses_66: (classesProp?: Partial<Record<"horizontal" | "root"
9813
9823
  readonly cx: (...args: any) => string;
9814
9824
  };
9815
9825
 
9816
- declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "invalid" | "error" | "group", string>>, addStatic?: boolean) => {
9826
+ declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "error" | "group" | "invalid", string>>, addStatic?: boolean) => {
9817
9827
  readonly classes: {
9818
9828
  root: string;
9819
9829
  label: string;
@@ -9827,7 +9837,7 @@ declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizon
9827
9837
  readonly cx: (...args: any) => string;
9828
9838
  };
9829
9839
 
9830
- declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "paper" | "closeButton", string>>, addStatic?: boolean) => {
9840
+ declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "closeButton" | "paper", string>>, addStatic?: boolean) => {
9831
9841
  readonly classes: {
9832
9842
  root: string;
9833
9843
  paper: string;
@@ -9838,7 +9848,7 @@ declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root"
9838
9848
  readonly cx: (...args: any) => string;
9839
9849
  };
9840
9850
 
9841
- declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "titleContainer" | "actionContainer" | "messageContainer" | "iconContainer" | "containerMessageOnly" | "textContainer", string>>, addStatic?: boolean) => {
9851
+ declare const useClasses_69: (classesProp?: Partial<Record<"container" | "root" | "actionContainer" | "messageContainer" | "iconContainer" | "containerMessageOnly" | "titleContainer" | "textContainer", string>>, addStatic?: boolean) => {
9842
9852
  readonly classes: {
9843
9853
  root: string;
9844
9854
  container: string;
@@ -9873,7 +9883,7 @@ declare const useClasses_70: (classesProp?: Partial<Record<"overlay" | "previewB
9873
9883
  readonly cx: (...args: any) => string;
9874
9884
  };
9875
9885
 
9876
- declare const useClasses_71: (classesProp?: Partial<Record<"root" | "icon" | "progressbarContainer" | "previewContainer" | "progressbar" | "removeButton" | "progressbarBack" | "nameText" | "progressTextContainer" | "fail", string>>, addStatic?: boolean) => {
9886
+ declare const useClasses_71: (classesProp?: Partial<Record<"icon" | "progressbar" | "root" | "removeButton" | "progressbarContainer" | "progressbarBack" | "nameText" | "progressTextContainer" | "previewContainer" | "fail", string>>, addStatic?: boolean) => {
9877
9887
  readonly classes: {
9878
9888
  root: string;
9879
9889
  progressbar: string;
@@ -9898,7 +9908,7 @@ declare const useClasses_72: (classesProp?: Partial<Record<"root", string>>, add
9898
9908
  readonly cx: (...args: any) => string;
9899
9909
  };
9900
9910
 
9901
- declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" | "dragAction" | "dropZoneContainerDisabled" | "dropZoneLabelsGroup" | "inputArea" | "dropArea" | "dropZoneAreaLabels" | "dropZoneAreaIcon" | "dropZoneLabel" | "dragText" | "selectFilesText", string>>, addStatic?: boolean) => {
9911
+ declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" | "dropZoneLabelsGroup" | "dragAction" | "dropZoneContainerDisabled" | "inputArea" | "dropArea" | "dropZoneAreaLabels" | "dropZoneAreaIcon" | "dropZoneLabel" | "dragText" | "selectFilesText", string>>, addStatic?: boolean) => {
9902
9912
  readonly classes: {
9903
9913
  dropZoneContainer: string;
9904
9914
  dropZoneLabelsGroup: string;
@@ -9928,7 +9938,7 @@ declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "e
9928
9938
  readonly cx: (...args: any) => string;
9929
9939
  };
9930
9940
 
9931
- declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "rightSidePanel" | "applyButton" | "dropdown" | "baseDropdownSelection" | "leftSidePanel" | "actionBar", string>>, addStatic?: boolean) => {
9941
+ declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "dropdown" | "baseDropdownSelection" | "rightSidePanel" | "leftSidePanel" | "actionBar" | "applyButton", string>>, addStatic?: boolean) => {
9932
9942
  readonly classes: {
9933
9943
  dropdown: string;
9934
9944
  panel: string;
@@ -9945,7 +9955,7 @@ declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" |
9945
9955
  readonly cx: (...args: any) => string;
9946
9956
  };
9947
9957
 
9948
- declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "root" | "separator" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
9958
+ declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "separator" | "root" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
9949
9959
  readonly classes: {
9950
9960
  root: string;
9951
9961
  name: string;
@@ -9958,7 +9968,7 @@ declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "r
9958
9968
  readonly cx: (...args: any) => string;
9959
9969
  };
9960
9970
 
9961
- declare const useClasses_77: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "actions" | "positionSticky" | "positionFixed" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton", string>>, addStatic?: boolean) => {
9971
+ declare const useClasses_77: (classesProp?: Partial<Record<"name" | "root" | "section" | "actions" | "wrapper" | "positionSticky" | "positionFixed" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton" | "sectionName", string>>, addStatic?: boolean) => {
9962
9972
  readonly classes: {
9963
9973
  root: string;
9964
9974
  positionSticky: string;
@@ -10017,7 +10027,7 @@ declare const useClasses_78: (classesProp?: Partial<Record<"container" | "root"
10017
10027
  readonly cx: (...args: any) => string;
10018
10028
  };
10019
10029
 
10020
- declare const useClasses_79: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root" | "fixed", string>>, addStatic?: boolean) => {
10030
+ declare const useClasses_79: (classesProp?: Partial<Record<"backgroundColor" | "header" | "fixed" | "root", string>>, addStatic?: boolean) => {
10021
10031
  readonly classes: {
10022
10032
  root: string;
10023
10033
  header: string;
@@ -10028,7 +10038,7 @@ declare const useClasses_79: (classesProp?: Partial<Record<"backgroundColor" | "
10028
10038
  readonly cx: (...args: any) => string;
10029
10039
  };
10030
10040
 
10031
- declare const useClasses_8: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
10041
+ declare const useClasses_8: (classesProp?: Partial<Record<"icon" | "disabled" | "root" | "adornment" | "adornmentIcon" | "hideIcon" | "adornmentButton", string>>, addStatic?: boolean) => {
10032
10042
  readonly classes: {
10033
10043
  root: string;
10034
10044
  icon: string;
@@ -10050,7 +10060,7 @@ declare const useClasses_80: (classesProp?: Partial<Record<"root", string>>, add
10050
10060
  readonly cx: (...args: any) => string;
10051
10061
  };
10052
10062
 
10053
- declare const useClasses_81: (classesProp?: Partial<Record<"root" | "separator" | "brandName", string>>, addStatic?: boolean) => {
10063
+ declare const useClasses_81: (classesProp?: Partial<Record<"separator" | "root" | "brandName", string>>, addStatic?: boolean) => {
10054
10064
  readonly classes: {
10055
10065
  root: string;
10056
10066
  separator: string;
@@ -10060,7 +10070,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"root" | "separator"
10060
10070
  readonly cx: (...args: any) => string;
10061
10071
  };
10062
10072
 
10063
- declare const useClasses_82: (classesProp?: Partial<Record<"root" | "active" | "list" | "hidden" | "menu" | "menubar", string>>, addStatic?: boolean) => {
10073
+ declare const useClasses_82: (classesProp?: Partial<Record<"hidden" | "menu" | "menubar" | "active" | "root" | "list", string>>, addStatic?: boolean) => {
10064
10074
  readonly classes: {
10065
10075
  root: string;
10066
10076
  menu: string;
@@ -10073,7 +10083,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"root" | "active" | "
10073
10083
  readonly cx: (...args: any) => string;
10074
10084
  };
10075
10085
 
10076
- declare const useClasses_83: (classesProp?: Partial<Record<"link" | "root" | "selected" | "button" | "menu" | "menubar" | "item", string>>, addStatic?: boolean) => {
10086
+ declare const useClasses_83: (classesProp?: Partial<Record<"link" | "button" | "menu" | "menubar" | "root" | "selected" | "item", string>>, addStatic?: boolean) => {
10077
10087
  readonly classes: {
10078
10088
  root: string;
10079
10089
  menu: string;
@@ -10095,7 +10105,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, add
10095
10105
  readonly cx: (...args: any) => string;
10096
10106
  };
10097
10107
 
10098
- declare const useClasses_85: (classesProp?: Partial<Record<"text" | "root" | "input" | "icon" | "button" | "inputRoot" | "inputBorderContainer" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
10108
+ declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "root" | "inputRoot" | "input" | "inputBorderContainer" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
10099
10109
  readonly classes: {
10100
10110
  root: string;
10101
10111
  inputBorderContainer: string;
@@ -10137,7 +10147,7 @@ declare const useClasses_87: (classesProp?: Partial<Record<"a", string>>, addSta
10137
10147
  readonly cx: (...args: any) => string;
10138
10148
  };
10139
10149
 
10140
- declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "itemSelector" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "selectAllSelector", string>>, addStatic?: boolean) => {
10150
+ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "itemSelector" | "selectAllSelector", string>>, addStatic?: boolean) => {
10141
10151
  readonly classes: {
10142
10152
  root: string;
10143
10153
  virtualizedRoot: string;
@@ -10154,7 +10164,7 @@ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "it
10154
10164
  readonly cx: (...args: any) => string;
10155
10165
  };
10156
10166
 
10157
- declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "loadingBar" | "blur" | "barContainer" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
10167
+ declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "loadingBar" | "blur" | "barContainer" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
10158
10168
  readonly classes: {
10159
10169
  root: string;
10160
10170
  barContainer: string;
@@ -10198,7 +10208,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "formContain
10198
10208
  readonly cx: (...args: any) => string;
10199
10209
  };
10200
10210
 
10201
- declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "multiple" | "splitGroup" | "primaryGhost" | "splitGroupDisabled" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
10211
+ declare const useClasses_92: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "vertical" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "button" | "multiple" | "root" | "splitGroup" | "selected" | "splitGroupDisabled" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
10202
10212
  readonly classes: {
10203
10213
  root: string;
10204
10214
  multiple: string;
@@ -10230,7 +10240,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"tooltipData" | "tool
10230
10240
  readonly cx: (...args: any) => string;
10231
10241
  };
10232
10242
 
10233
- declare const useClasses_94: (classesProp?: Partial<Record<"color" | "root" | "title" | "popper" | "separator" | "tooltip" | "values" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
10243
+ declare const useClasses_94: (classesProp?: Partial<Record<"color" | "separator" | "tooltip" | "root" | "popper" | "values" | "title" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
10234
10244
  readonly classes: {
10235
10245
  root: string;
10236
10246
  tooltip: string;
@@ -10256,7 +10266,7 @@ declare const useClasses_95: (classesProp?: Partial<Record<"root", string>>, add
10256
10266
  readonly cx: (...args: any) => string;
10257
10267
  };
10258
10268
 
10259
- declare const useClasses_96: (classesProp?: Partial<Record<"root" | "progress" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
10269
+ declare const useClasses_96: (classesProp?: Partial<Record<"progress" | "root" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
10260
10270
  readonly classes: {
10261
10271
  root: string;
10262
10272
  progress: string;
@@ -10271,7 +10281,7 @@ declare const useClasses_96: (classesProp?: Partial<Record<"root" | "progress" |
10271
10281
  readonly cx: (...args: any) => string;
10272
10282
  };
10273
10283
 
10274
- declare const useClasses_97: (classesProp?: Partial<Record<"root" | "topGroup" | "subGroup" | "subRulesContainer" | "topActionButtonContainer" | "createConditionButton" | "createGroupButton" | "removeButton" | "combinator" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "actionButtonContainer" | "topRulesContainer" | "buttonBackground", string>>, addStatic?: boolean) => {
10284
+ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "removeButton" | "combinator" | "topGroup" | "subGroup" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "subRulesContainer" | "actionButtonContainer" | "topActionButtonContainer" | "topRulesContainer" | "buttonBackground" | "createConditionButton" | "createGroupButton", string>>, addStatic?: boolean) => {
10275
10285
  readonly classes: {
10276
10286
  root: string;
10277
10287
  topGroup: string;
@@ -10295,7 +10305,7 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "topGroup" |
10295
10305
  readonly cx: (...args: any) => string;
10296
10306
  };
10297
10307
 
10298
- declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "root" | "checked" | "semantic" | "disabled" | "radio" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
10308
+ declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "semantic" | "radio" | "disabled" | "root" | "checked" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
10299
10309
  readonly classes: {
10300
10310
  root: string;
10301
10311
  container: string;
@@ -10312,7 +10322,7 @@ declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label"
10312
10322
  readonly cx: (...args: any) => string;
10313
10323
  };
10314
10324
 
10315
- declare const useClasses_99: (classesProp?: Partial<Record<"text" | "root" | "selected" | "button" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
10325
+ declare const useClasses_99: (classesProp?: Partial<Record<"text" | "button" | "root" | "selected" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
10316
10326
  readonly classes: {
10317
10327
  root: string;
10318
10328
  button: string;
@@ -10752,7 +10762,14 @@ declare interface UseTreeViewSelectionParameters<Multiple extends boolean | unde
10752
10762
  onNodeSelect?: (event: React_2.SyntheticEvent, nodeIds: Exclude<TreeViewSelectionValue<Multiple>, null>) => void;
10753
10763
  }
10754
10764
 
10755
- export declare const useUniqueId: (deterministicId?: string, idPrefix?: string) => string;
10765
+ export declare const useUniqueId: (deterministicId?: string,
10766
+ /**
10767
+ * @deprecated
10768
+ * Users should pick between a fully deterministic or fully generated id
10769
+ * @example
10770
+ * useUniqueId(setId(idPrefix, deterministicId))
10771
+ * */
10772
+ idPrefix?: string) => string;
10756
10773
 
10757
10774
  export declare const useWidth: () => Breakpoint_2;
10758
10775
 
@@ -10833,15 +10850,3 @@ export declare const warningTextClasses: {
10833
10850
  };
10834
10851
 
10835
10852
  export { }
10836
-
10837
- declare namespace _default {
10838
- function process(sourceText: any, sourcePath: any): {
10839
- code: string;
10840
- };
10841
- }
10842
-
10843
- declare namespace _default {
10844
- function process(sourceText: any, sourcePath: any): {
10845
- code: string;
10846
- };
10847
- }