@hitachivantara/uikit-react-core 5.97.0 → 5.99.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 (111) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/AppSwitcher/Action/Action.cjs +4 -1
  3. package/dist/cjs/BaseRadio/BaseRadio.cjs +2 -2
  4. package/dist/cjs/BaseSwitch/BaseSwitch.cjs +2 -2
  5. package/dist/cjs/Card/Header/Header.styles.cjs +3 -1
  6. package/dist/cjs/CheckBox/CheckBox.cjs +2 -2
  7. package/dist/cjs/ColorPicker/Fields/Fields.cjs +0 -1
  8. package/dist/cjs/ColorPicker/Fields/Fields.styles.cjs +1 -3
  9. package/dist/cjs/ColorPicker/Picker/Picker.cjs +0 -1
  10. package/dist/cjs/ColorPicker/Picker/Picker.styles.cjs +1 -3
  11. package/dist/cjs/ColorPicker/PresetColors/PresetColors.cjs +0 -1
  12. package/dist/cjs/ColorPicker/PresetColors/PresetColors.styles.cjs +1 -3
  13. package/dist/cjs/ColorPicker/SavedColors/SavedColors.cjs +0 -1
  14. package/dist/cjs/ColorPicker/SavedColors/SavedColors.styles.cjs +1 -3
  15. package/dist/cjs/Dialog/Content/Content.cjs +26 -0
  16. package/dist/cjs/Dialog/Content/Content.styles.cjs +5 -2
  17. package/dist/cjs/Dialog/Dialog.styles.cjs +3 -1
  18. package/dist/cjs/Dialog/Title/Title.cjs +2 -2
  19. package/dist/cjs/DropdownButton/DropdownButton.cjs +2 -2
  20. package/dist/cjs/QueryBuilder/ConfirmationDialog.cjs +32 -0
  21. package/dist/cjs/QueryBuilder/QueryBuilder.cjs +4 -4
  22. package/dist/cjs/QueryBuilder/Rule/{Attribute/Attribute.cjs → Attribute.cjs} +3 -4
  23. package/dist/cjs/QueryBuilder/Rule/{Operator/Operator.cjs → Operator.cjs} +3 -4
  24. package/dist/cjs/QueryBuilder/Rule/Rule.cjs +3 -4
  25. package/dist/cjs/QueryBuilder/Rule/Rule.styles.cjs +46 -50
  26. package/dist/cjs/QueryBuilder/{RuleGroup/RuleGroup.cjs → RuleGroup.cjs} +9 -9
  27. package/dist/cjs/QueryBuilder/{Rule/Value/BooleanValue → Value}/BooleanValue.cjs +3 -5
  28. package/dist/cjs/QueryBuilder/{Rule/Value/DateTimeValue → Value}/DateTimeValue.cjs +67 -40
  29. package/dist/cjs/QueryBuilder/{Rule/Value/EmptyValue → Value}/EmptyValue.cjs +1 -1
  30. package/dist/cjs/QueryBuilder/{Rule/Value/NumericValue → Value}/NumericValue.cjs +33 -8
  31. package/dist/cjs/QueryBuilder/{Rule/Value/TextValue → Value}/TextValue.cjs +9 -5
  32. package/dist/cjs/QueryBuilder/{Rule/Value → Value}/Value.cjs +7 -9
  33. package/dist/cjs/Radio/Radio.cjs +3 -3
  34. package/dist/cjs/Section/Section.cjs +43 -18
  35. package/dist/cjs/Section/Section.styles.cjs +14 -2
  36. package/dist/cjs/Select/Select.cjs +2 -2
  37. package/dist/cjs/StatusIcon/StatusIcon.cjs +45 -0
  38. package/dist/cjs/StatusIcon/StatusIcon.styles.cjs +57 -0
  39. package/dist/cjs/Switch/Switch.cjs +1 -1
  40. package/dist/cjs/Table/TableSection/TableSection.styles.cjs +1 -7
  41. package/dist/cjs/TagsInput/TagsInput.cjs +2 -2
  42. package/dist/cjs/TextArea/TextArea.cjs +2 -2
  43. package/dist/cjs/VerticalNavigation/TreeView/TreeViewItem.cjs +2 -2
  44. package/dist/cjs/index.cjs +4 -0
  45. package/dist/cjs/providers/Provider.cjs +1 -4
  46. package/dist/cjs/themes/ds3.cjs +23 -0
  47. package/dist/cjs/themes/ds5.cjs +31 -0
  48. package/dist/cjs/themes/pentahoPlus.cjs +52 -24
  49. package/dist/cjs/utils/Callout.cjs +10 -5
  50. package/dist/esm/AppSwitcher/Action/Action.js +4 -1
  51. package/dist/esm/BaseRadio/BaseRadio.js +2 -2
  52. package/dist/esm/BaseSwitch/BaseSwitch.js +2 -2
  53. package/dist/esm/Card/Header/Header.styles.js +3 -1
  54. package/dist/esm/CheckBox/CheckBox.js +2 -2
  55. package/dist/esm/ColorPicker/Fields/Fields.js +1 -3
  56. package/dist/esm/ColorPicker/Fields/Fields.styles.js +1 -3
  57. package/dist/esm/ColorPicker/Picker/Picker.js +1 -3
  58. package/dist/esm/ColorPicker/Picker/Picker.styles.js +1 -3
  59. package/dist/esm/ColorPicker/PresetColors/PresetColors.js +1 -3
  60. package/dist/esm/ColorPicker/PresetColors/PresetColors.styles.js +1 -3
  61. package/dist/esm/ColorPicker/SavedColors/SavedColors.js +1 -3
  62. package/dist/esm/ColorPicker/SavedColors/SavedColors.styles.js +1 -3
  63. package/dist/esm/Dialog/Content/Content.js +27 -1
  64. package/dist/esm/Dialog/Content/Content.styles.js +5 -2
  65. package/dist/esm/Dialog/Dialog.styles.js +3 -1
  66. package/dist/esm/Dialog/Title/Title.js +3 -3
  67. package/dist/esm/DropdownButton/DropdownButton.js +2 -2
  68. package/dist/esm/QueryBuilder/ConfirmationDialog.js +32 -0
  69. package/dist/esm/QueryBuilder/QueryBuilder.js +4 -4
  70. package/dist/esm/QueryBuilder/Rule/{Attribute/Attribute.js → Attribute.js} +4 -5
  71. package/dist/esm/QueryBuilder/Rule/{Operator/Operator.js → Operator.js} +4 -5
  72. package/dist/esm/QueryBuilder/Rule/Rule.js +4 -6
  73. package/dist/esm/QueryBuilder/Rule/Rule.styles.js +47 -51
  74. package/dist/esm/QueryBuilder/{RuleGroup/RuleGroup.js → RuleGroup.js} +9 -9
  75. package/dist/esm/QueryBuilder/{Rule/Value/BooleanValue → Value}/BooleanValue.js +3 -5
  76. package/dist/esm/QueryBuilder/{Rule/Value/DateTimeValue → Value}/DateTimeValue.js +63 -35
  77. package/dist/esm/QueryBuilder/{Rule/Value/EmptyValue → Value}/EmptyValue.js +1 -1
  78. package/dist/esm/QueryBuilder/{Rule/Value/NumericValue → Value}/NumericValue.js +33 -8
  79. package/dist/esm/QueryBuilder/{Rule/Value/TextValue → Value}/TextValue.js +9 -5
  80. package/dist/esm/QueryBuilder/{Rule/Value → Value}/Value.js +7 -9
  81. package/dist/esm/Radio/Radio.js +3 -3
  82. package/dist/esm/Section/Section.js +44 -19
  83. package/dist/esm/Section/Section.styles.js +14 -2
  84. package/dist/esm/Select/Select.js +2 -2
  85. package/dist/esm/StatusIcon/StatusIcon.js +46 -0
  86. package/dist/esm/StatusIcon/StatusIcon.styles.js +57 -0
  87. package/dist/esm/Switch/Switch.js +1 -1
  88. package/dist/esm/Table/TableSection/TableSection.styles.js +1 -7
  89. package/dist/esm/TagsInput/TagsInput.js +2 -2
  90. package/dist/esm/TextArea/TextArea.js +2 -2
  91. package/dist/esm/VerticalNavigation/TreeView/TreeViewItem.js +2 -2
  92. package/dist/esm/index.js +63 -59
  93. package/dist/esm/providers/Provider.js +2 -5
  94. package/dist/esm/themes/ds3.js +23 -0
  95. package/dist/esm/themes/ds5.js +31 -0
  96. package/dist/esm/themes/pentahoPlus.js +52 -24
  97. package/dist/esm/utils/Callout.js +10 -5
  98. package/dist/types/index.d.ts +159 -114
  99. package/package.json +6 -6
  100. package/dist/cjs/QueryBuilder/ConfirmationDialog/ConfirmationDialog.cjs +0 -53
  101. package/dist/cjs/QueryBuilder/ConfirmationDialog/ConfirmationDialog.styles.cjs +0 -11
  102. package/dist/cjs/QueryBuilder/Rule/Value/DateTimeValue/DateTimeValue.styles.cjs +0 -37
  103. package/dist/cjs/QueryBuilder/Rule/Value/DateTimeValue/utils.cjs +0 -36
  104. package/dist/cjs/QueryBuilder/Rule/Value/NumericValue/Numeric.styles.cjs +0 -34
  105. package/dist/cjs/QueryBuilder/Rule/Value/TextValue/TextValue.styles.cjs +0 -13
  106. package/dist/esm/QueryBuilder/ConfirmationDialog/ConfirmationDialog.js +0 -53
  107. package/dist/esm/QueryBuilder/ConfirmationDialog/ConfirmationDialog.styles.js +0 -11
  108. package/dist/esm/QueryBuilder/Rule/Value/DateTimeValue/DateTimeValue.styles.js +0 -37
  109. package/dist/esm/QueryBuilder/Rule/Value/DateTimeValue/utils.js +0 -34
  110. package/dist/esm/QueryBuilder/Rule/Value/NumericValue/Numeric.styles.js +0 -34
  111. package/dist/esm/QueryBuilder/Rule/Value/TextValue/TextValue.styles.js +0 -13
@@ -876,9 +876,9 @@ export declare const dropDownMenuClasses: {
876
876
  menuList: string;
877
877
  };
878
878
 
879
- export declare const ds3: any;
879
+ export declare const ds3: HvThemeStructure<string>;
880
880
 
881
- export declare const ds5: any;
881
+ export declare const ds5: HvThemeStructure<string>;
882
882
 
883
883
  export { EmotionContext }
884
884
 
@@ -2019,7 +2019,7 @@ export declare const HvButton: <C extends React.ElementType = "button">(props: {
2019
2019
  component?: C | undefined;
2020
2020
  } & {
2021
2021
  children?: ReactNode | undefined;
2022
- } & (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) & {
2022
+ } & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "component" | "className" | "selected" | "startIcon" | "endIcon" | "variant" | "overrideIconColors" | "focusableWhenDisabled"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "component" | "className" | "selected" | "startIcon" | "endIcon" | "variant" | "overrideIconColors" | "focusableWhenDisabled"> ? T extends any ? T : never : never : never) & {
2023
2023
  ref?: PolymorphicRef<C> | undefined;
2024
2024
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
2025
2025
 
@@ -2046,7 +2046,7 @@ export declare const HvButtonBase: <C extends React.ElementType = "button">(prop
2046
2046
  component?: C | undefined;
2047
2047
  } & {
2048
2048
  children?: ReactNode | undefined;
2049
- } & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "selected" | "component" | "focusableWhenDisabled"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "selected" | "component" | "focusableWhenDisabled"> ? T extends any ? T : never : never : never) & {
2049
+ } & (Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "component" | "selected" | "focusableWhenDisabled"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "classes" | "disabled" | "component" | "selected" | "focusableWhenDisabled"> ? T extends any ? T : never : never : never) & {
2050
2050
  ref?: PolymorphicRef<C> | undefined;
2051
2051
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
2052
2052
 
@@ -4025,7 +4025,7 @@ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useC
4025
4025
  * As defined by Design System, a tooltip with the button’s label should always be displayed when hovering an icon only button.
4026
4026
  * This component provides this behavior out of the box.
4027
4027
  */
4028
- export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "children" | "ref" | "icon" | "title" | "component" | "focusableWhenDisabled" | "startIcon" | "endIcon"> & {
4028
+ export declare const HvIconButton: <C extends React.ElementType = "button">(props: Omit<HvButtonProps<C>, "children" | "ref" | "icon" | "title" | "component" | "startIcon" | "endIcon" | "focusableWhenDisabled"> & {
4029
4029
  /** Label to be displayed in the tooltip when hovered. This label will be used as the button's `aria-label`. */
4030
4030
  title: React.ReactNode;
4031
4031
  /** Number of milliseconds to wait before showing the tooltip. @default 500 */
@@ -4038,7 +4038,7 @@ export declare const HvIconButton: <C extends React.ElementType = "button">(prop
4038
4038
  component?: C | undefined;
4039
4039
  } & {
4040
4040
  children?: ReactNode | undefined;
4041
- } & (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) & {
4041
+ } & (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "radius" | "title" | "component" | "className" | "selected" | "variant" | "overrideIconColors" | "placement" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "component" | "className" | "selected" | "startIcon" | "endIcon" | "variant" | "overrideIconColors" | "focusableWhenDisabled"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "component" | "className" | "selected" | "startIcon" | "endIcon" | "variant" | "overrideIconColors" | "focusableWhenDisabled"> ? T extends any ? T : never : never : never), "children" | "ref" | "icon" | "title" | "component" | "startIcon" | "endIcon" | "focusableWhenDisabled">> extends infer T_1 ? T_1 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "disabled" | "radius" | "title" | "component" | "className" | "selected" | "variant" | "overrideIconColors" | "placement" | "enterDelay" | "tooltipProps" | Exclude<keyof (Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "component" | "className" | "selected" | "startIcon" | "endIcon" | "variant" | "overrideIconColors" | "focusableWhenDisabled"> extends infer T_2 ? T_2 extends Omit<PropsWithoutRef<ComponentProps<C>>, "color" | "classes" | "size" | "icon" | "disabled" | "radius" | "component" | "className" | "selected" | "startIcon" | "endIcon" | "variant" | "overrideIconColors" | "focusableWhenDisabled"> ? T_2 extends any ? T_2 : never : never : never), "children" | "ref" | "icon" | "title" | "component" | "startIcon" | "endIcon" | "focusableWhenDisabled">> ? T_1 extends any ? T_1 : never : never : never) & {
4042
4042
  ref?: PolymorphicRef<C> | undefined;
4043
4043
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
4044
4044
 
@@ -4153,7 +4153,7 @@ export declare const HvInlineEditor: <C extends React.ElementType = <InputElemen
4153
4153
  component?: C | undefined;
4154
4154
  } & {
4155
4155
  children?: ReactNode | undefined;
4156
- } & (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) & {
4156
+ } & (Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "variant" | "buttonProps" | "showIcon" | "typographyProps"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "value" | "classes" | "disabled" | "component" | "onBlur" | "onChange" | "onKeyDown" | "defaultValue" | "placeholder" | "variant" | "buttonProps" | "showIcon" | "typographyProps"> ? T extends any ? T : never : never : never) & {
4157
4157
  ref?: PolymorphicRef<C> | undefined;
4158
4158
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
4159
4159
 
@@ -4897,7 +4897,7 @@ export declare interface HvProviderProps {
4897
4897
  emotionCache?: EmotionCache;
4898
4898
  /**
4899
4899
  * List of themes to be used by UI Kit.
4900
- * You can provide your own themes created with the `createTheme` utility and/or the default themes `ds3` and `ds5` provided by UI Kit.
4900
+ * You can provide your own themes created with the `createTheme` utility and/or the default themes provided by UI Kit.
4901
4901
  *
4902
4902
  * If no value is provided, the `ds5` theme will be used.
4903
4903
  */
@@ -4912,7 +4912,7 @@ export declare interface HvProviderProps {
4912
4912
  * The active color mode. It must be one of the color modes of the active theme.
4913
4913
  *
4914
4914
  * If no value is provided, the first color mode defined in the active theme is used.
4915
- * For the default themes `ds3` and `ds5`, the `dawn` color mode is the one used.
4915
+ * For the default themes, the `dawn` color mode is the one used.
4916
4916
  */
4917
4917
  colorMode?: string;
4918
4918
  }
@@ -5577,6 +5577,8 @@ export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>
5577
5577
  title?: React.ReactNode;
5578
5578
  /** Whether or not the section is expandable. */
5579
5579
  expandable?: boolean;
5580
+ /** Whether or not the section header is expandable. If true, the header will be clickable and will toggle the section content. */
5581
+ expandableHeader?: boolean;
5580
5582
  /** Whether the section is open or not, if this property is defined the accordion must be fully controlled. */
5581
5583
  expanded?: boolean;
5582
5584
  /** When uncontrolled, defines the initial expanded state. */
@@ -5749,7 +5751,7 @@ export { HvSize }
5749
5751
  */
5750
5752
  export declare const HvSkeleton: (props: HvSkeletonProps) => JSX_2.Element;
5751
5753
 
5752
- export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_133>;
5754
+ export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_134>;
5753
5755
 
5754
5756
  export declare interface HvSkeletonProps extends HvBaseProps {
5755
5757
  /** Whether the skeleton element is hidden or not. */
@@ -6018,6 +6020,33 @@ export declare interface HvStackProps extends HvBaseProps {
6018
6020
  classes?: HvStackClasses;
6019
6021
  }
6020
6022
 
6023
+ /**
6024
+ * A status icon represents the status of a process or an entity.
6025
+ *
6026
+ * @experimental
6027
+ * This component is experimental and its API might change in future releases.
6028
+ */
6029
+ export declare const HvStatusIcon: ForwardRefExoticComponent<HvStatusIconProps & RefAttributes<HTMLDivElement>>;
6030
+
6031
+ export declare type HvStatusIconClasses = ExtractNames<typeof useClasses_110>;
6032
+
6033
+ export declare interface HvStatusIconProps extends HvBaseProps {
6034
+ /** Variant of the snackbar. */
6035
+ variant?: HvStatusIconVariant;
6036
+ /** Custom icon to replace the variant default. */
6037
+ customIcon?: React.ReactNode;
6038
+ /** The size of the icon. */
6039
+ size?: HvSize;
6040
+ /** The type of status icon. */
6041
+ type?: HvStatusIconType;
6042
+ /** A Jss Object used to override or extend the styles applied to the component. */
6043
+ classes?: HvStatusIconClasses;
6044
+ }
6045
+
6046
+ export declare type HvStatusIconType = "full" | "simple";
6047
+
6048
+ export declare type HvStatusIconVariant = HvCalloutVariant;
6049
+
6021
6050
  export declare const hvStringFallback: (value: any) => string;
6022
6051
 
6023
6052
  export declare interface HvSuggestion {
@@ -6072,7 +6101,7 @@ export declare type HvSupportColors = Record<HvSupportColorKeys, string>;
6072
6101
  */
6073
6102
  export declare const HvSwitch: ForwardRefExoticComponent<Omit<HvSwitchProps, "ref"> & RefAttributes<HTMLButtonElement>>;
6074
6103
 
6075
- export declare type HvSwitchClasses = ExtractNames<typeof useClasses_110>;
6104
+ export declare type HvSwitchClasses = ExtractNames<typeof useClasses_111>;
6076
6105
 
6077
6106
  export declare function hvSwitchColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer>(col: HvTableColumnConfig<D, H>, switchLabel: string, falseLabel?: string, trueLabel?: string, switchProps?: HvBaseSwitchProps): HvTableColumnConfig<D, H>;
6078
6107
 
@@ -6183,7 +6212,7 @@ export declare interface HvSwitchProps extends Omit<SwitchProps, "color" | "onCh
6183
6212
 
6184
6213
  export declare const HvTab: ForwardRefExoticComponent<Omit<HvTabProps, "ref"> & RefAttributes<HTMLDivElement>>;
6185
6214
 
6186
- export declare type HvTabClasses = ExtractNames<typeof useClasses_117>;
6215
+ export declare type HvTabClasses = ExtractNames<typeof useClasses_118>;
6187
6216
 
6188
6217
  /**
6189
6218
  * A table gathers relational data. It displays values arranged to allow quick numerical analysis like comparison and sorting.
@@ -6203,7 +6232,7 @@ export declare const HvTable: ForwardRefExoticComponent<HvTableProps & RefAttrib
6203
6232
  */
6204
6233
  export declare const HvTableBody: ForwardRefExoticComponent<HvTableBodyProps & RefAttributes<HTMLElement>>;
6205
6234
 
6206
- export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_113>;
6235
+ export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_114>;
6207
6236
 
6208
6237
  export declare interface HvTableBodyProps extends HvBaseProps<HTMLTableSectionElement, "children"> {
6209
6238
  /**
@@ -6291,7 +6320,7 @@ export declare interface HvTableColumnOptions<D extends object = Record<string,
6291
6320
  */
6292
6321
  export declare const HvTableContainer: ForwardRefExoticComponent<HvTableContainerProps & RefAttributes<HTMLElement>>;
6293
6322
 
6294
- export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_111>;
6323
+ export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_112>;
6295
6324
 
6296
6325
  export declare interface HvTableContainerProps extends HvBaseProps<HTMLDivElement, "children"> {
6297
6326
  /**
@@ -6315,7 +6344,7 @@ export declare type HvTableDefinitionConfig<D extends object = Record<string, un
6315
6344
  */
6316
6345
  export declare const HvTableHead: ForwardRefExoticComponent<HvTableHeadProps & RefAttributes<HTMLElement>>;
6317
6346
 
6318
- export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_114>;
6347
+ export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_115>;
6319
6348
 
6320
6349
  /**
6321
6350
  * `HvTableHeader` acts as a `th` element and inherits styles from its context
@@ -6488,7 +6517,7 @@ export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement
6488
6517
  */
6489
6518
  export declare const HvTableSection: ForwardRefExoticComponent<HvTableSectionProps & RefAttributes<HTMLDivElement>>;
6490
6519
 
6491
- export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_112>;
6520
+ export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_113>;
6492
6521
 
6493
6522
  export declare interface HvTableSectionProps extends HvSectionProps {
6494
6523
  }
@@ -6518,7 +6547,7 @@ export declare interface HvTabProps extends Omit<TabProps, "children"> {
6518
6547
  */
6519
6548
  export declare const HvTabs: ForwardRefExoticComponent<Omit<HvTabsProps, "ref"> & RefAttributes<HTMLDivElement>>;
6520
6549
 
6521
- export declare type HvTabsClasses = ExtractNames<typeof useClasses_116>;
6550
+ export declare type HvTabsClasses = ExtractNames<typeof useClasses_117>;
6522
6551
 
6523
6552
  export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
6524
6553
  /**
@@ -6547,7 +6576,7 @@ export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
6547
6576
  */
6548
6577
  export declare const HvTag: ForwardRefExoticComponent<Omit<HvTagProps, "ref"> & RefAttributes<HTMLElement>>;
6549
6578
 
6550
- export declare type HvTagClasses = ExtractNames<typeof useClasses_115>;
6579
+ export declare type HvTagClasses = ExtractNames<typeof useClasses_116>;
6551
6580
 
6552
6581
  export declare function hvTagColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer, A extends object = Record<string, unknown>>(col: HvTableColumnConfig<D, H>, valueDataKey: keyof A, colorDataKey: keyof A, textColorDataKey: keyof A, fromRowData?: boolean, tagProps?: HvTagProps): HvTableColumnConfig<D, H>;
6553
6582
 
@@ -6594,7 +6623,7 @@ export declare interface HvTagProps extends Omit<HvButtonBaseProps, "type" | "co
6594
6623
  */
6595
6624
  export declare const HvTagsInput: ForwardRefExoticComponent<HvTagsInputProps & RefAttributes<HTMLElement>>;
6596
6625
 
6597
- export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_118>;
6626
+ export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_119>;
6598
6627
 
6599
6628
  export declare interface HvTagsInputProps extends Omit<HvInputProps, "onChange" | "onBlur" | "onFocus" | "onKeyDown" | "value" | "defaultValue"> {
6600
6629
  /** The value of the form element. */
@@ -6645,7 +6674,7 @@ export declare interface HvTagSuggestion extends HvInputSuggestion {
6645
6674
  */
6646
6675
  export declare const HvTextArea: ForwardRefExoticComponent<HvTextAreaProps & RefAttributes<HTMLTextAreaElement>>;
6647
6676
 
6648
- export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_119>;
6677
+ export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_120>;
6649
6678
 
6650
6679
  export declare interface HvTextAreaProps extends Omit<HvBaseInputProps, "onChange" | "onBlur" | "rows" | "classes" | "onFocus" | "placeholder"> {
6651
6680
  /** The placeholder value of the text area. */
@@ -6825,7 +6854,7 @@ export declare const HvTimeAgo: <C extends React.ElementType = "p">(props: {
6825
6854
  ref?: PolymorphicRef<C> | undefined;
6826
6855
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
6827
6856
 
6828
- export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_120>;
6857
+ export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_121>;
6829
6858
 
6830
6859
  export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = PolymorphicComponentRef<C, {
6831
6860
  /**
@@ -6861,7 +6890,7 @@ export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = Polymorp
6861
6890
  */
6862
6891
  export declare const HvTimePicker: ForwardRefExoticComponent<HvTimePickerProps & RefAttributes<HTMLDivElement>>;
6863
6892
 
6864
- export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_121>;
6893
+ export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_122>;
6865
6894
 
6866
6895
  export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
6867
6896
 
@@ -6989,7 +7018,7 @@ export declare interface HvTooltipProps extends Omit<TooltipProps, "classes"> {
6989
7018
  containerId?: string;
6990
7019
  }
6991
7020
 
6992
- declare type HvTreeContentClasses = ExtractNames<typeof useClasses_124>;
7021
+ declare type HvTreeContentClasses = ExtractNames<typeof useClasses_125>;
6993
7022
 
6994
7023
  export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLElement> {
6995
7024
  /** className applied to the root element. */
@@ -7010,7 +7039,7 @@ export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLEle
7010
7039
 
7011
7040
  export declare const HvTreeItem: ForwardRefExoticComponent<HvTreeItemProps & RefAttributes<HTMLLIElement>>;
7012
7041
 
7013
- export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_123>;
7042
+ export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_124>;
7014
7043
 
7015
7044
  export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElement> {
7016
7045
  /** The element id */
@@ -7060,7 +7089,7 @@ export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElemen
7060
7089
  */
7061
7090
  export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) => React.ReactElement<any> | null;
7062
7091
 
7063
- export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_122>;
7092
+ export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_123>;
7064
7093
 
7065
7094
  export declare interface HvTreeViewProps<Multiple extends boolean | undefined> extends HvBaseProps<HTMLUListElement>, DefaultTreeViewPluginParameters<Multiple> {
7066
7095
  /** A Jss Object used to override or extend the styles applied. */
@@ -7132,7 +7161,7 @@ export declare const HvTypography: <C extends React.ElementType = "p">(props: {
7132
7161
  component?: C | undefined;
7133
7162
  } & {
7134
7163
  children?: ReactNode | undefined;
7135
- } & (Omit<PropsWithoutRef<ComponentProps<C>>, "link" | "classes" | "disabled" | "variant" | "component" | "noWrap" | "paragraph"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "link" | "classes" | "disabled" | "variant" | "component" | "noWrap" | "paragraph"> ? T extends any ? T : never : never : never) & {
7164
+ } & (Omit<PropsWithoutRef<ComponentProps<C>>, "link" | "classes" | "disabled" | "component" | "variant" | "noWrap" | "paragraph"> extends infer T ? T extends Omit<PropsWithoutRef<ComponentProps<C>>, "link" | "classes" | "disabled" | "component" | "variant" | "noWrap" | "paragraph"> ? T extends any ? T : never : never : never) & {
7136
7165
  ref?: PolymorphicRef<C> | undefined;
7137
7166
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
7138
7167
 
@@ -7192,7 +7221,7 @@ export declare const HvVerticalNavigation: ForwardRefExoticComponent<HvVerticalN
7192
7221
 
7193
7222
  export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) => JSX_2.Element;
7194
7223
 
7195
- export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_128>;
7224
+ export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_129>;
7196
7225
 
7197
7226
  export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonProps, "classes" | "icon"> {
7198
7227
  /** A Jss Object used to override or extend the styles applied to the component. */
@@ -7205,18 +7234,18 @@ export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonPr
7205
7234
 
7206
7235
  export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) => JSX_2.Element;
7207
7236
 
7208
- export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_127>;
7237
+ export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_128>;
7209
7238
 
7210
7239
  export declare interface HvVerticalNavigationActionsProps extends HvBaseProps {
7211
7240
  /** A Jss Object used to override or extend the styles applied to the component. */
7212
7241
  classes?: HvVerticalNavigationActionsClasses;
7213
7242
  }
7214
7243
 
7215
- export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_125>;
7244
+ export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_126>;
7216
7245
 
7217
7246
  export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) => JSX_2.Element | null;
7218
7247
 
7219
- export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_126>;
7248
+ export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_127>;
7220
7249
 
7221
7250
  export declare interface HvVerticalNavigationHeaderProps extends HvBaseProps {
7222
7251
  /** The title text to show on header. */
@@ -7263,7 +7292,7 @@ export declare interface HvVerticalNavigationProps extends HvBaseProps<HTMLDivEl
7263
7292
 
7264
7293
  export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) => JSX_2.Element;
7265
7294
 
7266
- export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_130>;
7295
+ export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_131>;
7267
7296
 
7268
7297
  export declare interface HvVerticalNavigationSliderProps extends Omit<HvListContainerProps, "classes"> {
7269
7298
  /** A Jss Object used to override or extend the styles applied. */
@@ -7291,7 +7320,7 @@ export declare interface HvVerticalNavigationSliderProps extends Omit<HvListCont
7291
7320
 
7292
7321
  export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) => JSX_2.Element;
7293
7322
 
7294
- export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_129>;
7323
+ export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_130>;
7295
7324
 
7296
7325
  export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLDivElement, "onChange" | "onToggle"> {
7297
7326
  /** A Jss Object used to override or extend the styles applied. */
@@ -7335,11 +7364,11 @@ export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLD
7335
7364
 
7336
7365
  export declare const HvVerticalNavigationTreeView: ForwardRefExoticComponent<HvVerticalNavigationTreeViewProps & RefAttributes<HTMLUListElement>>;
7337
7366
 
7338
- export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_131>;
7367
+ export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_132>;
7339
7368
 
7340
7369
  export declare const HvVerticalNavigationTreeViewItem: ForwardRefExoticComponent<HvVerticalNavigationTreeViewItemProps & RefAttributes<unknown>>;
7341
7370
 
7342
- export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_132>;
7371
+ export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_133>;
7343
7372
 
7344
7373
  export declare interface HvVerticalNavigationTreeViewItemProps {
7345
7374
  /**
@@ -7715,7 +7744,7 @@ export declare const panelClasses: {
7715
7744
  root: string;
7716
7745
  };
7717
7746
 
7718
- export declare const pentahoPlus: any;
7747
+ export declare const pentahoPlus: HvThemeStructure<string>;
7719
7748
 
7720
7749
  declare type PolymorphicComponent<C extends React.ElementType, Props = {}> = React.PropsWithChildren<Props & AsProp<C>> & FixComponentProps<Omit<React.ComponentPropsWithoutRef<C>, PropsToOmit<C, Props>>>;
7721
7750
 
@@ -7859,6 +7888,7 @@ export declare const sectionClasses: {
7859
7888
  root: string;
7860
7889
  hidden: string;
7861
7890
  header: string;
7891
+ headerExpandable: string;
7862
7892
  content: string;
7863
7893
  hasHeader: string;
7864
7894
  spaceTop: string;
@@ -7993,6 +8023,11 @@ declare const staticClasses: {
7993
8023
  export { staticClasses as iconContainerClasses }
7994
8024
  export { staticClasses }
7995
8025
 
8026
+ export declare const statusIconClasses: {
8027
+ root: string;
8028
+ icon: string;
8029
+ };
8030
+
7996
8031
  declare type StringKey<D> = Extract<keyof D, string>;
7997
8032
 
7998
8033
  export declare const suggestionsClasses: {
@@ -8201,9 +8236,9 @@ export declare const textAreaClasses: {
8201
8236
  export { theme }
8202
8237
 
8203
8238
  export declare const themes: {
8204
- ds3: any;
8205
- ds5: any;
8206
- pentahoPlus: any;
8239
+ ds3: HvThemeStructure<string>;
8240
+ ds5: HvThemeStructure<string>;
8241
+ pentahoPlus: HvThemeStructure<string>;
8207
8242
  };
8208
8243
 
8209
8244
  export declare const timeAgoClasses: {
@@ -8391,11 +8426,12 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root" | "positionFi
8391
8426
  readonly cx: (...args: any) => string;
8392
8427
  };
8393
8428
 
8394
- declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8429
+ declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "headerExpandable" | "hasHeader" | "spaceTop" | "actions" | "raisedHeader", string>>, addStatic?: boolean) => {
8395
8430
  readonly classes: {
8396
8431
  root: string;
8397
8432
  hidden: string;
8398
8433
  header: string;
8434
+ headerExpandable: string;
8399
8435
  content: string;
8400
8436
  hasHeader: string;
8401
8437
  spaceTop: string;
@@ -8453,7 +8489,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOrig
8453
8489
  readonly cx: (...args: any) => string;
8454
8490
  };
8455
8491
 
8456
- declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "root" | "success" | "error" | "message" | "action" | "messageText" | "iconVariant" | "messageSpan", string>>, addStatic?: boolean) => {
8492
+ declare const useClasses_107: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "root" | "action" | "error" | "success" | "message" | "messageText" | "iconVariant" | "messageSpan", string>>, addStatic?: boolean) => {
8457
8493
  readonly classes: {
8458
8494
  root: string;
8459
8495
  success: string;
@@ -8506,7 +8542,16 @@ declare const useClasses_11: (classesProp?: Partial<Record<"root" | "gutter" | "
8506
8542
  readonly cx: (...args: any) => string;
8507
8543
  };
8508
8544
 
8509
- declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "error" | "switchContainer" | "invalidSwitch", string>>, addStatic?: boolean) => {
8545
+ declare const useClasses_110: (classesProp?: Partial<Record<"icon" | "root", string>>, addStatic?: boolean) => {
8546
+ readonly classes: {
8547
+ root: string;
8548
+ icon: string;
8549
+ };
8550
+ readonly css: any;
8551
+ readonly cx: (...args: any) => string;
8552
+ };
8553
+
8554
+ declare const useClasses_111: (classesProp?: Partial<Record<"label" | "root" | "error" | "switchContainer" | "invalidSwitch", string>>, addStatic?: boolean) => {
8510
8555
  readonly classes: {
8511
8556
  root: string;
8512
8557
  label: string;
@@ -8518,7 +8563,7 @@ declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "
8518
8563
  readonly cx: (...args: any) => string;
8519
8564
  };
8520
8565
 
8521
- declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8566
+ declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8522
8567
  readonly classes: {
8523
8568
  root: string;
8524
8569
  };
@@ -8526,7 +8571,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
8526
8571
  readonly cx: (...args: any) => string;
8527
8572
  };
8528
8573
 
8529
- declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8574
+ declare const useClasses_113: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "hasHeader" | "spaceTop" | "actions" | "raisedHeader", string>>, addStatic?: boolean) => {
8530
8575
  readonly classes: {
8531
8576
  root: string;
8532
8577
  header: string;
@@ -8541,7 +8586,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header"
8541
8586
  readonly cx: (...args: any) => string;
8542
8587
  };
8543
8588
 
8544
- declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8589
+ declare const useClasses_114: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8545
8590
  readonly classes: {
8546
8591
  root: string;
8547
8592
  };
@@ -8549,7 +8594,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, ad
8549
8594
  readonly cx: (...args: any) => string;
8550
8595
  };
8551
8596
 
8552
- declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
8597
+ declare const useClasses_115: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
8553
8598
  readonly classes: {
8554
8599
  root: string;
8555
8600
  stickyHeader: string;
@@ -8558,7 +8603,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHead
8558
8603
  readonly cx: (...args: any) => string;
8559
8604
  };
8560
8605
 
8561
- 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) => {
8606
+ declare const useClasses_116: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "label" | "button" | "icon" | "disabled" | "root" | "categorical" | "selected" | "focusVisible" | "hasIcon" | "deleteIcon" | "clickable" | "outlined" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
8562
8607
  readonly classes: {
8563
8608
  root: string;
8564
8609
  hasIcon: string;
@@ -8585,7 +8630,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm
8585
8630
  readonly cx: (...args: any) => string;
8586
8631
  };
8587
8632
 
8588
- declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating" | "indicator" | "scroller" | "flexContainer", string>>, addStatic?: boolean) => {
8633
+ declare const useClasses_117: (classesProp?: Partial<Record<"root" | "floating" | "indicator" | "scroller" | "flexContainer", string>>, addStatic?: boolean) => {
8589
8634
  readonly classes: {
8590
8635
  root: string;
8591
8636
  indicator: string;
@@ -8597,7 +8642,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating"
8597
8642
  readonly cx: (...args: any) => string;
8598
8643
  };
8599
8644
 
8600
- declare const useClasses_117: (classesProp?: Partial<Record<"disabled" | "root" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8645
+ declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "root" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8601
8646
  readonly classes: {
8602
8647
  root: string;
8603
8648
  focusVisible: string;
@@ -8608,7 +8653,7 @@ declare const useClasses_117: (classesProp?: Partial<Record<"disabled" | "root"
8608
8653
  readonly cx: (...args: any) => string;
8609
8654
  };
8610
8655
 
8611
- 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) => {
8656
+ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "input" | "readOnly" | "description" | "error" | "invalid" | "tagsList" | "singleLine" | "inputExtension" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty", string>>, addStatic?: boolean) => {
8612
8657
  readonly classes: {
8613
8658
  listItemGutters: string;
8614
8659
  listItemRoot: string;
@@ -8640,7 +8685,21 @@ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "disabled"
8640
8685
  readonly cx: (...args: any) => string;
8641
8686
  };
8642
8687
 
8643
- declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "input" | "description" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8688
+ declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "defaultIcon" | "warningText" | "topGutter" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8689
+ readonly classes: {
8690
+ root: string;
8691
+ defaultIcon: string;
8692
+ warningText: string;
8693
+ show: string;
8694
+ topGutter: string;
8695
+ hideText: string;
8696
+ topBorder: string;
8697
+ };
8698
+ readonly css: any;
8699
+ readonly cx: (...args: any) => string;
8700
+ };
8701
+
8702
+ declare const useClasses_120: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "input" | "description" | "error" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8644
8703
  readonly classes: {
8645
8704
  root: string;
8646
8705
  disabled: string;
@@ -8659,21 +8718,7 @@ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled"
8659
8718
  readonly cx: (...args: any) => string;
8660
8719
  };
8661
8720
 
8662
- declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "defaultIcon" | "warningText" | "topGutter" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8663
- readonly classes: {
8664
- root: string;
8665
- defaultIcon: string;
8666
- warningText: string;
8667
- show: string;
8668
- topGutter: string;
8669
- hideText: string;
8670
- topBorder: string;
8671
- };
8672
- readonly css: any;
8673
- readonly cx: (...args: any) => string;
8674
- };
8675
-
8676
- declare const useClasses_120: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8721
+ declare const useClasses_121: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8677
8722
  readonly classes: {
8678
8723
  root: string;
8679
8724
  };
@@ -8681,7 +8726,7 @@ declare const useClasses_120: (classesProp?: Partial<Record<"root", string>>, ad
8681
8726
  readonly cx: (...args: any) => string;
8682
8727
  };
8683
8728
 
8684
- declare const useClasses_121: (classesProp?: Partial<Record<"label" | "icon" | "root" | "error" | "placeholder" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8729
+ declare const useClasses_122: (classesProp?: Partial<Record<"label" | "icon" | "root" | "placeholder" | "description" | "error" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8685
8730
  readonly classes: {
8686
8731
  root: string;
8687
8732
  labelContainer: string;
@@ -8701,7 +8746,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"label" | "icon" | "
8701
8746
  readonly cx: (...args: any) => string;
8702
8747
  };
8703
8748
 
8704
- declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8749
+ declare const useClasses_123: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8705
8750
  readonly classes: {
8706
8751
  root: string;
8707
8752
  };
@@ -8709,7 +8754,7 @@ declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, ad
8709
8754
  readonly cx: (...args: any) => string;
8710
8755
  };
8711
8756
 
8712
- declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "root" | "selected" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8757
+ declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "root" | "selected" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8713
8758
  readonly classes: {
8714
8759
  root: string;
8715
8760
  group: string;
@@ -8725,7 +8770,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label"
8725
8770
  readonly cx: (...args: any) => string;
8726
8771
  };
8727
8772
 
8728
- declare const useClasses_124: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "root" | "selected" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8773
+ declare const useClasses_125: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "root" | "selected" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8729
8774
  readonly classes: {
8730
8775
  root: string;
8731
8776
  expanded: string;
@@ -8739,7 +8784,7 @@ declare const useClasses_124: (classesProp?: Partial<Record<"label" | "expanded"
8739
8784
  readonly cx: (...args: any) => string;
8740
8785
  };
8741
8786
 
8742
- declare const useClasses_125: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
8787
+ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
8743
8788
  readonly classes: {
8744
8789
  root: string;
8745
8790
  collapsed: string;
@@ -8750,7 +8795,7 @@ declare const useClasses_125: (classesProp?: Partial<Record<"root" | "slider" |
8750
8795
  readonly cx: (...args: any) => string;
8751
8796
  };
8752
8797
 
8753
- declare const useClasses_126: (classesProp?: Partial<Record<"root" | "title" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
8798
+ declare const useClasses_127: (classesProp?: Partial<Record<"root" | "title" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
8754
8799
  readonly classes: {
8755
8800
  root: string;
8756
8801
  minimized: string;
@@ -8762,7 +8807,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "title" | "
8762
8807
  readonly cx: (...args: any) => string;
8763
8808
  };
8764
8809
 
8765
- declare const useClasses_127: (classesProp?: Partial<Record<"hide" | "root", string>>, addStatic?: boolean) => {
8810
+ declare const useClasses_128: (classesProp?: Partial<Record<"hide" | "root", string>>, addStatic?: boolean) => {
8766
8811
  readonly classes: {
8767
8812
  root: string;
8768
8813
  hide: string;
@@ -8771,7 +8816,7 @@ declare const useClasses_127: (classesProp?: Partial<Record<"hide" | "root", str
8771
8816
  readonly cx: (...args: any) => string;
8772
8817
  };
8773
8818
 
8774
- declare const useClasses_128: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
8819
+ declare const useClasses_129: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
8775
8820
  readonly classes: {
8776
8821
  action: string;
8777
8822
  noIcon: string;
@@ -8781,20 +8826,7 @@ declare const useClasses_128: (classesProp?: Partial<Record<"action" | "minimize
8781
8826
  readonly cx: (...args: any) => string;
8782
8827
  };
8783
8828
 
8784
- declare const useClasses_129: (classesProp?: Partial<Record<"root" | "list" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
8785
- readonly classes: {
8786
- root: string;
8787
- list: string;
8788
- listItem: string;
8789
- collapsed: string;
8790
- popup: string;
8791
- navigationPopup: string;
8792
- };
8793
- readonly css: any;
8794
- readonly cx: (...args: any) => string;
8795
- };
8796
-
8797
- declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "panel" | "popper" | "error" | "select" | "readOnly" | "description" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8829
+ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "panel" | "popper" | "select" | "readOnly" | "description" | "error" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8798
8830
  readonly classes: {
8799
8831
  root: string;
8800
8832
  disabled: string;
@@ -8814,7 +8846,20 @@ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled"
8814
8846
  readonly cx: (...args: any) => string;
8815
8847
  };
8816
8848
 
8817
- declare const useClasses_130: (classesProp?: Partial<Record<"root" | "listItemDisabled" | "listItemSelected" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8849
+ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "list" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
8850
+ readonly classes: {
8851
+ root: string;
8852
+ list: string;
8853
+ listItem: string;
8854
+ collapsed: string;
8855
+ popup: string;
8856
+ navigationPopup: string;
8857
+ };
8858
+ readonly css: any;
8859
+ readonly cx: (...args: any) => string;
8860
+ };
8861
+
8862
+ declare const useClasses_131: (classesProp?: Partial<Record<"root" | "listItemDisabled" | "listItemSelected" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8818
8863
  readonly classes: {
8819
8864
  root: string;
8820
8865
  listItemSelected: string;
@@ -8827,7 +8872,7 @@ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "listItemDi
8827
8872
  readonly cx: (...args: any) => string;
8828
8873
  };
8829
8874
 
8830
- declare const useClasses_131: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8875
+ declare const useClasses_132: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8831
8876
  readonly classes: {
8832
8877
  root: string;
8833
8878
  };
@@ -8835,7 +8880,7 @@ declare const useClasses_131: (classesProp?: Partial<Record<"root", string>>, ad
8835
8880
  readonly cx: (...args: any) => string;
8836
8881
  };
8837
8882
 
8838
- 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) => {
8883
+ declare const useClasses_133: (classesProp?: Partial<Record<"hide" | "content" | "label" | "link" | "expanded" | "icon" | "disabled" | "unselectable" | "selected" | "group" | "expandable" | "selectable" | "node" | "focused" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
8839
8884
  readonly classes: {
8840
8885
  node: string;
8841
8886
  content: string;
@@ -8861,7 +8906,7 @@ declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label"
8861
8906
  readonly cx: (...args: any) => string;
8862
8907
  };
8863
8908
 
8864
- declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" | "circle" | "square" | "root" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8909
+ declare const useClasses_134: (classesProp?: Partial<Record<"text" | "circle" | "content" | "square" | "root" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8865
8910
  readonly classes: {
8866
8911
  root: string;
8867
8912
  content: string;
@@ -8875,7 +8920,7 @@ declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" |
8875
8920
  readonly cx: (...args: any) => string;
8876
8921
  };
8877
8922
 
8878
- 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) => {
8923
+ declare const useClasses_14: (classesProp?: Partial<Record<"primary" | "primarySubtle" | "secondary" | "semantic" | "secondaryGhost" | "primaryGhost" | "secondarySubtle" | "icon" | "disabled" | "root" | "contained" | "startIcon" | "endIcon" | "focusVisible" | "subtle" | "ghost", string>>, addStatic?: boolean) => {
8879
8924
  readonly classes: {
8880
8925
  root: string;
8881
8926
  startIcon: string;
@@ -8915,7 +8960,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root", string>>, add
8915
8960
  readonly cx: (...args: any) => string;
8916
8961
  };
8917
8962
 
8918
- declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "error" | "description" | "invalid", string>>, addStatic?: boolean) => {
8963
+ declare const useClasses_17: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "listbox" | "root" | "description" | "error" | "invalid", string>>, addStatic?: boolean) => {
8919
8964
  readonly classes: {
8920
8965
  root: string;
8921
8966
  error: string;
@@ -8941,7 +8986,7 @@ declare const useClasses_18: (classesProp?: Partial<Record<"root" | "popper" | "
8941
8986
  readonly cx: (...args: any) => string;
8942
8987
  };
8943
8988
 
8944
- 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) => {
8989
+ declare const useClasses_19: (classesProp?: Partial<Record<"disabled" | "root" | "input" | "readOnly" | "invalid" | "inputRoot" | "focused" | "multiline" | "resizable" | "inputBorderContainer" | "inputRootInvalid" | "inputRootReadOnly" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "inputDisabled" | "inputReadOnly" | "inputResizable", string>>, addStatic?: boolean) => {
8945
8990
  readonly classes: {
8946
8991
  root: string;
8947
8992
  disabled: string;
@@ -9108,7 +9153,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"open" | "single" | "
9108
9153
  readonly cx: (...args: any) => string;
9109
9154
  };
9110
9155
 
9111
- declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "root" | "selected" | "title" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
9156
+ declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon" | "disabled" | "root" | "title" | "selected" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
9112
9157
  readonly classes: {
9113
9158
  root: string;
9114
9159
  icon: string;
@@ -9124,7 +9169,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"typography" | "icon"
9124
9169
  readonly cx: (...args: any) => string;
9125
9170
  };
9126
9171
 
9127
- declare const useClasses_27: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "square" | "root" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
9172
+ declare const useClasses_27: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "container" | "square" | "root" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
9128
9173
  readonly classes: {
9129
9174
  root: string;
9130
9175
  img: string;
@@ -9193,7 +9238,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "rootClosed"
9193
9238
  readonly cx: (...args: any) => string;
9194
9239
  };
9195
9240
 
9196
- 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) => {
9241
+ declare const useClasses_31: (classesProp?: Partial<Record<"accent" | "warning" | "info" | "default" | "root" | "action" | "error" | "success" | "message" | "actionContainer" | "messageContainer" | "iconContainer" | "messageActions" | "closeAction" | "baseVariant" | "outContainer" | "actionsInnerContainer", string>>, addStatic?: boolean) => {
9197
9242
  readonly classes: {
9198
9243
  root: string;
9199
9244
  success: string;
@@ -9244,7 +9289,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"semantic" | "icon" |
9244
9289
  readonly cx: (...args: any) => string;
9245
9290
  };
9246
9291
 
9247
- declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "root" | "checked" | "track" | "switch" | "readOnly" | "focusVisible" | "switchBase" | "thumb", string>>, addStatic?: boolean) => {
9292
+ declare const useClasses_34: (classesProp?: Partial<Record<"disabled" | "root" | "track" | "switch" | "readOnly" | "checked" | "focusVisible" | "switchBase" | "thumb", string>>, addStatic?: boolean) => {
9248
9293
  readonly classes: {
9249
9294
  root: string;
9250
9295
  switch: string;
@@ -9274,7 +9319,7 @@ declare const useClasses_35: (classesProp?: Partial<Record<"link" | "root" | "a"
9274
9319
  readonly cx: (...args: any) => string;
9275
9320
  };
9276
9321
 
9277
- declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages" | "divider", string>>, addStatic?: boolean) => {
9322
+ declare const useClasses_36: (classesProp?: Partial<Record<"semantic" | "root" | "actions" | "selectAll" | "selectAllContainer" | "selectAllPages" | "divider", string>>, addStatic?: boolean) => {
9278
9323
  readonly classes: {
9279
9324
  root: string;
9280
9325
  semantic: string;
@@ -9378,7 +9423,7 @@ declare const useClasses_41: (classesProp?: Partial<Record<"icon" | "root" | "se
9378
9423
  readonly cx: (...args: any) => string;
9379
9424
  };
9380
9425
 
9381
- declare const useClasses_42: (classesProp?: Partial<Record<"content" | "root" | "action" | "title" | "titleShort" | "subheader", string>>, addStatic?: boolean) => {
9426
+ declare const useClasses_42: (classesProp?: Partial<Record<"content" | "root" | "title" | "action" | "subheader" | "titleShort", string>>, addStatic?: boolean) => {
9382
9427
  readonly classes: {
9383
9428
  root: string;
9384
9429
  titleShort: string;
@@ -9408,7 +9453,7 @@ declare const useClasses_44: (classesProp?: Partial<Record<"root" | "media", str
9408
9453
  readonly cx: (...args: any) => string;
9409
9454
  };
9410
9455
 
9411
- 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) => {
9456
+ declare const useClasses_45: (classesProp?: Partial<Record<"xs" | "dot" | "root" | "panel" | "main" | "title" | "controls" | "actions" | "counter" | "fullscreen" | "closeButton" | "mainContainer" | "pageCounter" | "mainXs" | "mainFullscreen" | "counterContainer" | "slideControls" | "slidesViewport" | "slidesContainer" | "dots" | "dotsXs" | "dotSelected" | "thumbnail" | "thumbnailSelected", string>>, addStatic?: boolean) => {
9412
9457
  readonly classes: {
9413
9458
  root: string;
9414
9459
  xs: string;
@@ -9448,7 +9493,7 @@ declare const useClasses_46: (classesProp?: Partial<Record<"image" | "slide", st
9448
9493
  readonly cx: (...args: any) => string;
9449
9494
  };
9450
9495
 
9451
- 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) => {
9496
+ declare const useClasses_47: (classesProp?: Partial<Record<"label" | "icon" | "root" | "input" | "description" | "error" | "inputRoot" | "inputExtension" | "adornmentsBox" | "adornmentButton" | "labelContainer" | "inputBorderContainer" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList", string>>, addStatic?: boolean) => {
9452
9497
  readonly classes: {
9453
9498
  root: string;
9454
9499
  labelContainer: string;
@@ -9496,7 +9541,7 @@ declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "ic
9496
9541
  readonly cx: (...args: any) => string;
9497
9542
  };
9498
9543
 
9499
- declare const useClasses_49: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "error" | "group" | "invalid" | "selectAll", string>>, addStatic?: boolean) => {
9544
+ declare const useClasses_49: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "group" | "error" | "invalid" | "selectAll", string>>, addStatic?: boolean) => {
9500
9545
  readonly classes: {
9501
9546
  root: string;
9502
9547
  label: string;
@@ -9596,7 +9641,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "root" | "fo
9596
9641
  readonly cx: (...args: any) => string;
9597
9642
  };
9598
9643
 
9599
- declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "root" | "selected" | "footer" | "head" | "variantList" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
9644
+ declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" | "root" | "footer" | "head" | "selected" | "variantList" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
9600
9645
  readonly classes: {
9601
9646
  root: string;
9602
9647
  head: string;
@@ -9681,7 +9726,7 @@ declare const useClasses_58: (classesProp?: Partial<Record<"root" | "sortDropdow
9681
9726
  readonly cx: (...args: any) => string;
9682
9727
  };
9683
9728
 
9684
- 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) => {
9729
+ declare const useClasses_59: (classesProp?: Partial<Record<"dropdown" | "label" | "disabled" | "root" | "placeholder" | "readOnly" | "description" | "error" | "labelContainer" | "arrow" | "selectionDisabled" | "placeholderClosed" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
9685
9730
  readonly classes: {
9686
9731
  root: string;
9687
9732
  labelContainer: string;
@@ -9737,7 +9782,7 @@ declare const useClasses_60: (classesProp?: Partial<Record<"listContainer" | "vi
9737
9782
  readonly cx: (...args: any) => string;
9738
9783
  };
9739
9784
 
9740
- 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) => {
9785
+ declare const useClasses_61: (classesProp?: Partial<Record<"dropdown" | "container" | "label" | "icon" | "root" | "panel" | "action" | "description" | "error" | "labelContainer" | "actionContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "inputText" | "dateText", string>>, addStatic?: boolean) => {
9741
9786
  readonly classes: {
9742
9787
  root: string;
9743
9788
  actionContainer: string;
@@ -9792,7 +9837,7 @@ declare const useClasses_64: (classesProp?: Partial<Record<"root" | "spacing" |
9792
9837
  readonly cx: (...args: any) => string;
9793
9838
  };
9794
9839
 
9795
- declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "success" | "error" | "fullscreen" | "closeButton" | "paper" | "fullHeight" | "statusBar", string>>, addStatic?: boolean) => {
9840
+ declare const useClasses_65: (classesProp?: Partial<Record<"warning" | "background" | "root" | "error" | "success" | "paper" | "statusBar" | "fullscreen" | "closeButton" | "fullHeight", string>>, addStatic?: boolean) => {
9796
9841
  readonly classes: {
9797
9842
  root: string;
9798
9843
  background: string;
@@ -9821,7 +9866,7 @@ declare const useClasses_66: (classesProp?: Partial<Record<"horizontal" | "radio
9821
9866
  readonly cx: (...args: any) => string;
9822
9867
  };
9823
9868
 
9824
- declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "error" | "group" | "invalid", string>>, addStatic?: boolean) => {
9869
+ declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "group" | "error" | "invalid", string>>, addStatic?: boolean) => {
9825
9870
  readonly classes: {
9826
9871
  root: string;
9827
9872
  label: string;
@@ -9835,7 +9880,7 @@ declare const useClasses_67: (classesProp?: Partial<Record<"vertical" | "horizon
9835
9880
  readonly cx: (...args: any) => string;
9836
9881
  };
9837
9882
 
9838
- declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "closeButton" | "paper", string>>, addStatic?: boolean) => {
9883
+ declare const useClasses_68: (classesProp?: Partial<Record<"background" | "root" | "paper" | "closeButton", string>>, addStatic?: boolean) => {
9839
9884
  readonly classes: {
9840
9885
  root: string;
9841
9886
  paper: string;
@@ -9924,7 +9969,7 @@ declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" |
9924
9969
  readonly cx: (...args: any) => string;
9925
9970
  };
9926
9971
 
9927
- declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
9972
+ declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "description" | "error" | "labelContainer", string>>, addStatic?: boolean) => {
9928
9973
  readonly classes: {
9929
9974
  root: string;
9930
9975
  label: string;
@@ -9936,7 +9981,7 @@ declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "e
9936
9981
  readonly cx: (...args: any) => string;
9937
9982
  };
9938
9983
 
9939
- declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "dropdown" | "baseDropdownSelection" | "rightSidePanel" | "leftSidePanel" | "actionBar" | "applyButton", string>>, addStatic?: boolean) => {
9984
+ declare const useClasses_75: (classesProp?: Partial<Record<"dropdown" | "space" | "header" | "root" | "panel" | "baseDropdownSelection" | "rightSidePanel" | "leftSidePanel" | "actionBar" | "applyButton", string>>, addStatic?: boolean) => {
9940
9985
  readonly classes: {
9941
9986
  dropdown: string;
9942
9987
  panel: string;
@@ -10103,7 +10148,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, add
10103
10148
  readonly cx: (...args: any) => string;
10104
10149
  };
10105
10150
 
10106
- declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "root" | "inputRoot" | "input" | "inputBorderContainer" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
10151
+ declare const useClasses_85: (classesProp?: Partial<Record<"text" | "button" | "icon" | "root" | "input" | "inputRoot" | "inputBorderContainer" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
10107
10152
  readonly classes: {
10108
10153
  root: string;
10109
10154
  inputBorderContainer: string;
@@ -10162,7 +10207,7 @@ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "it
10162
10207
  readonly cx: (...args: any) => string;
10163
10208
  };
10164
10209
 
10165
- declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "loadingBar" | "blur" | "barContainer" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
10210
+ declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "hidden" | "root" | "blur" | "loadingBar" | "barContainer" | "regular" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
10166
10211
  readonly classes: {
10167
10212
  root: string;
10168
10213
  barContainer: string;
@@ -10238,7 +10283,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"tooltipData" | "tool
10238
10283
  readonly cx: (...args: any) => string;
10239
10284
  };
10240
10285
 
10241
- declare const useClasses_94: (classesProp?: Partial<Record<"color" | "separator" | "tooltip" | "root" | "popper" | "values" | "title" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
10286
+ declare const useClasses_94: (classesProp?: Partial<Record<"tooltip" | "color" | "values" | "separator" | "root" | "popper" | "title" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
10242
10287
  readonly classes: {
10243
10288
  root: string;
10244
10289
  tooltip: string;