@hitachivantara/uikit-react-core 5.83.1 → 5.84.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 (33) hide show
  1. package/dist/cjs/FileUploader/DropZone/DropZone.cjs +29 -14
  2. package/dist/cjs/FileUploader/DropZone/DropZone.styles.cjs +14 -26
  3. package/dist/cjs/FileUploader/FileUploader.cjs +12 -12
  4. package/dist/cjs/FileUploader/FileUploader.styles.cjs +8 -0
  5. package/dist/cjs/FileUploader/utils.cjs +0 -1
  6. package/dist/cjs/FormElement/Suggestions/Suggestions.cjs +1 -1
  7. package/dist/cjs/FormElement/Suggestions/Suggestions.styles.cjs +1 -0
  8. package/dist/cjs/Select/Select.cjs +5 -3
  9. package/dist/cjs/Select/Select.styles.cjs +7 -1
  10. package/dist/cjs/index.cjs +2 -0
  11. package/dist/esm/FileUploader/DropZone/DropZone.js +30 -15
  12. package/dist/esm/FileUploader/DropZone/DropZone.js.map +1 -1
  13. package/dist/esm/FileUploader/DropZone/DropZone.styles.js +14 -26
  14. package/dist/esm/FileUploader/DropZone/DropZone.styles.js.map +1 -1
  15. package/dist/esm/FileUploader/FileUploader.js +14 -13
  16. package/dist/esm/FileUploader/FileUploader.js.map +1 -1
  17. package/dist/esm/FileUploader/FileUploader.styles.js +8 -0
  18. package/dist/esm/FileUploader/FileUploader.styles.js.map +1 -0
  19. package/dist/esm/FileUploader/utils.js +1 -2
  20. package/dist/esm/FileUploader/utils.js.map +1 -1
  21. package/dist/esm/FormElement/Suggestions/Suggestions.js +2 -2
  22. package/dist/esm/FormElement/Suggestions/Suggestions.js.map +1 -1
  23. package/dist/esm/FormElement/Suggestions/Suggestions.styles.js +1 -0
  24. package/dist/esm/FormElement/Suggestions/Suggestions.styles.js.map +1 -1
  25. package/dist/esm/ListContainer/ListItem/ListItem.js.map +1 -1
  26. package/dist/esm/Select/Select.js +5 -3
  27. package/dist/esm/Select/Select.js.map +1 -1
  28. package/dist/esm/Select/Select.styles.js +7 -1
  29. package/dist/esm/Select/Select.styles.js.map +1 -1
  30. package/dist/esm/index.js +128 -126
  31. package/dist/esm/index.js.map +1 -1
  32. package/dist/types/index.d.ts +311 -252
  33. package/package.json +6 -6
@@ -633,6 +633,23 @@ declare const DEFAULT_LABELS: {
633
633
  };
634
634
 
635
635
  declare const DEFAULT_LABELS_10: {
636
+ /** Apply button label. */
637
+ applyLabel: string;
638
+ /** Cancel button label. */
639
+ cancelLabel: string;
640
+ /** Clear button label. */
641
+ clearLabel: string;
642
+ /** Placeholder label. */
643
+ placeholder: string;
644
+ /** SearchBox placeholder label. */
645
+ searchBoxPlaceholder: string;
646
+ /** Select All placeholder label. */
647
+ selectAll: string;
648
+ /** Multi selection conjunction placeholder label. */
649
+ multiSelectionConjunction: string;
650
+ };
651
+
652
+ declare const DEFAULT_LABELS_11: {
636
653
  /** The text at the top of the kpi. */
637
654
  title: string;
638
655
  /** The text in the middle of the kpi. */
@@ -729,20 +746,23 @@ declare const DEFAULT_LABELS_8: {
729
746
  };
730
747
 
731
748
  declare const DEFAULT_LABELS_9: {
732
- /** Apply button label. */
733
- applyLabel: string;
734
- /** Cancel button label. */
735
- cancelLabel: string;
736
- /** Clear button label. */
737
- clearLabel: string;
738
- /** Placeholder label. */
739
- placeholder: string;
740
- /** SearchBox placeholder label. */
741
- searchBoxPlaceholder: string;
742
- /** Select All placeholder label. */
743
- selectAll: string;
744
- /** Multi selection conjunction placeholder label. */
745
- multiSelectionConjunction: string;
749
+ /** Extensions of the accepted file types */
750
+ acceptedFiles: string;
751
+ /** Dropzone area label. @deprecated use `label` prop instead */
752
+ dropzone: string;
753
+ /** Size file warning label. */
754
+ sizeWarning: string;
755
+ /** Size file warning label. */
756
+ drag: string;
757
+ /** Size file warning label. */
758
+ selectFiles: string;
759
+ /** Theming sheet used to style components */
760
+ dropFiles: string;
761
+ /** Message to display when file size is greater than allowed */
762
+ fileSizeError: string;
763
+ /** Message to display when file type is greater than allowed */
764
+ fileTypeError: string;
765
+ removeFileButtonLabel: string;
746
766
  };
747
767
 
748
768
  declare type DefaultAttributes = (typeof defaultAttributes)[number];
@@ -880,6 +900,10 @@ export declare const fileClasses: {
880
900
  fail: string;
881
901
  };
882
902
 
903
+ export declare const fileUploaderClasses: {
904
+ root: string;
905
+ };
906
+
883
907
  export declare const fileUploaderPreviewClasses: {
884
908
  previewButton: string;
885
909
  overlay: string;
@@ -3273,39 +3297,43 @@ export declare interface HvDropdownProps<Multiple extends boolean = boolean, Opt
3273
3297
 
3274
3298
  export declare type HvDropdownStatus = "standBy" | "valid" | "invalid";
3275
3299
 
3276
- declare interface HvDropZoneLabels {
3300
+ declare type HvDropZoneClasses = ExtractNames<typeof useClasses_73>;
3301
+
3302
+ declare type HvDropZoneLabels = Partial<typeof DEFAULT_LABELS_9>;
3303
+
3304
+ declare interface HvDropZoneProps extends Pick<HvFormElementProps, "id" | "disabled" | "label"> {
3277
3305
  /**
3278
- * Extensions of the accepted file types
3306
+ * Labels to present in FileUploader.
3279
3307
  */
3280
- acceptedFiles?: string;
3308
+ labels?: HvDropZoneLabels;
3281
3309
  /**
3282
- * Dropzone area label.
3310
+ * Whether the Dropzone should accept multiple files at once.
3283
3311
  */
3284
- dropzone?: string;
3312
+ multiple?: boolean;
3285
3313
  /**
3286
- * Size file warning label.
3314
+ * Files extensions accepted for upload.
3287
3315
  */
3288
- sizeWarning?: string;
3316
+ accept?: React.InputHTMLAttributes<HTMLInputElement>["accept"];
3289
3317
  /**
3290
- * Size file warning label.
3291
- */
3292
- drag?: string;
3318
+ * Max upload size
3319
+ * */
3320
+ maxFileSize: number;
3293
3321
  /**
3294
- * Size file warning label.
3322
+ * Function responsible for processing files added to the drop zone.
3295
3323
  */
3296
- selectFiles?: string;
3324
+ onFilesAdded?: HvFilesAddedEvent;
3297
3325
  /**
3298
- * Theming sheet used to style components
3299
- * */
3300
- dropFiles?: string;
3326
+ * Whether the DropZone should hide labels or not.
3327
+ */
3328
+ hideLabels?: boolean;
3301
3329
  /**
3302
- * Message to display when file size is greater than allowed
3303
- * */
3304
- fileSizeError?: string;
3330
+ * Attributes applied to the input element.
3331
+ */
3332
+ inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
3305
3333
  /**
3306
- * Message to display when file type is greater than allowed
3307
- * */
3308
- fileTypeError?: string;
3334
+ * A Jss Object used to override or extend the styles applied to the component.
3335
+ */
3336
+ classes?: HvDropZoneClasses;
3309
3337
  }
3310
3338
 
3311
3339
  /**
@@ -3405,14 +3433,14 @@ export declare type HvFilesAddedEvent = (files: HvFileData[]) => void;
3405
3433
  * Lets the user choose one or more files from their device storage. Once chosen,
3406
3434
  * the files can be uploaded to a server or manipulated on the client side.
3407
3435
  *
3408
- * Accepted file types follow the format of the html input accept attribute. Please check https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file for more details.
3436
+ * Accepted file types follow the format of the html [input accept attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file).
3409
3437
  */
3410
3438
  export declare const HvFileUploader: (props: HvFileUploaderProps) => JSX_3.Element;
3411
3439
 
3440
+ export declare type HvFileUploaderClasses = ExtractNames<typeof useClasses_72>;
3441
+
3412
3442
  export declare interface HvFileUploaderLabels extends HvDropZoneLabels {
3413
- /**
3414
- * Value of aria-label to apply to remove file button in FileList
3415
- * */
3443
+ /** Value of aria-label to apply to remove file button in FileList */
3416
3444
  removeFileButtonLabel?: string;
3417
3445
  }
3418
3446
 
@@ -3447,11 +3475,15 @@ export declare interface HvFileUploaderPreviewProps extends Omit<HvButtonProps,
3447
3475
  classes?: HvFileUploaderPreviewClasses;
3448
3476
  }
3449
3477
 
3450
- export declare interface HvFileUploaderProps extends HvBaseProps {
3478
+ export declare interface HvFileUploaderProps extends HvFormElementProps {
3451
3479
  /**
3452
3480
  * An object containing all the labels.
3453
3481
  */
3454
3482
  labels?: HvFileUploaderLabels;
3483
+ /**
3484
+ * An object used to override or extend the styles applied to the component.
3485
+ */
3486
+ classes?: HvFileUploaderClasses;
3455
3487
  /**
3456
3488
  * The files to upload.
3457
3489
  */
@@ -3468,9 +3500,9 @@ export declare interface HvFileUploaderProps extends HvBaseProps {
3468
3500
  * Max upload size
3469
3501
  * */
3470
3502
  maxFileSize?: number;
3471
- /**
3472
- * Files extensions accepted for upload.
3473
- */
3503
+ /** File types accepted for uploading. @see [HTML input file accept](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept) */
3504
+ accept?: HvDropZoneProps["accept"];
3505
+ /** Files extensions accepted for upload. @deprecated use `accept` instead */
3474
3506
  acceptedFiles?: string[];
3475
3507
  /**
3476
3508
  * Callback fired when files are added.
@@ -3497,9 +3529,9 @@ export declare interface HvFileUploaderProps extends HvBaseProps {
3497
3529
  */
3498
3530
  export declare const HvFilterGroup: ForwardRefExoticComponent<HvFilterGroupProps & RefAttributes<HTMLDivElement>>;
3499
3531
 
3500
- export declare type HvFilterGroupClasses = ExtractNames<typeof useClasses_72>;
3532
+ export declare type HvFilterGroupClasses = ExtractNames<typeof useClasses_74>;
3501
3533
 
3502
- declare type HvFilterGroupContentClasses = ExtractNames<typeof useClasses_73>;
3534
+ declare type HvFilterGroupContentClasses = ExtractNames<typeof useClasses_75>;
3503
3535
 
3504
3536
  declare interface HvFilterGroupContentProps extends Omit<HvBaseDropdownProps, "onChange"> {
3505
3537
  description?: React.ReactNode;
@@ -3530,7 +3562,7 @@ export declare type HvFilterGroupFilters = {
3530
3562
 
3531
3563
  export declare type HvFilterGroupHorizontalPlacement = "left" | "right";
3532
3564
 
3533
- export declare type HvFilterGroupLabels = Partial<typeof DEFAULT_LABELS_9>;
3565
+ export declare type HvFilterGroupLabels = Partial<typeof DEFAULT_LABELS_10>;
3534
3566
 
3535
3567
  export declare interface HvFilterGroupProps extends Omit<HvFormElementProps, "classes" | "onChange" | "defaultValue" | "statusMessage"> {
3536
3568
  /** The initial value of the input when in single calendar mode. */
@@ -3632,7 +3664,7 @@ export declare type HvFocusStrategies = "listbox" | "menu" | "card" | "grid";
3632
3664
  */
3633
3665
  export declare const HvFooter: ForwardRefExoticComponent<HvFooterProps & RefAttributes<HTMLElement>>;
3634
3666
 
3635
- export declare type HvFooterClasses = ExtractNames<typeof useClasses_74>;
3667
+ export declare type HvFooterClasses = ExtractNames<typeof useClasses_76>;
3636
3668
 
3637
3669
  declare type HvFooterPropGetter<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer> = HvPropGetter<D, H, HvUseTableFooterProps, {
3638
3670
  column: HvHeaderGroup<D, H>;
@@ -3724,7 +3756,7 @@ export declare type HvFormStatus = "standBy" | "valid" | "invalid" | "empty";
3724
3756
  */
3725
3757
  export declare const HvGlobalActions: ForwardRefExoticComponent<HvGlobalActionsProps & RefAttributes<HTMLDivElement>>;
3726
3758
 
3727
- export declare type HvGlobalActionsClasses = ExtractNames<typeof useClasses_75>;
3759
+ export declare type HvGlobalActionsClasses = ExtractNames<typeof useClasses_77>;
3728
3760
 
3729
3761
  export declare type HvGlobalActionsHeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
3730
3762
 
@@ -3776,7 +3808,7 @@ export declare type HvGlobalActionsVariant = "global" | "section";
3776
3808
  */
3777
3809
  export declare const HvGrid: ForwardRefExoticComponent<Omit<HvGridProps, "ref"> & RefAttributes<HTMLDivElement>>;
3778
3810
 
3779
- export declare type HvGridClasses = ExtractNames<typeof useClasses_76>;
3811
+ export declare type HvGridClasses = ExtractNames<typeof useClasses_78>;
3780
3812
 
3781
3813
  export declare type HvGridDirection = "row" | "row-reverse" | "column" | "column-reverse";
3782
3814
 
@@ -3876,7 +3908,7 @@ export declare const HvHeader: ForwardRefExoticComponent<HvHeaderProps & RefAttr
3876
3908
 
3877
3909
  export declare const HvHeaderActions: ForwardRefExoticComponent<HvHeaderActionsProps & RefAttributes<HTMLDivElement>>;
3878
3910
 
3879
- export declare type HvHeaderActionsClasses = ExtractNames<typeof useClasses_78>;
3911
+ export declare type HvHeaderActionsClasses = ExtractNames<typeof useClasses_80>;
3880
3912
 
3881
3913
  export declare interface HvHeaderActionsProps extends HvBaseProps {
3882
3914
  classes?: HvHeaderActionsClasses;
@@ -3887,7 +3919,7 @@ export declare interface HvHeaderActionsProps extends HvBaseProps {
3887
3919
  */
3888
3920
  export declare const HvHeaderBrand: ForwardRefExoticComponent<HvHeaderBrandProps & RefAttributes<HTMLDivElement>>;
3889
3921
 
3890
- export declare type HvHeaderBrandClasses = ExtractNames<typeof useClasses_79>;
3922
+ export declare type HvHeaderBrandClasses = ExtractNames<typeof useClasses_81>;
3891
3923
 
3892
3924
  export declare interface HvHeaderBrandProps extends HvBaseProps {
3893
3925
  logo?: React.ReactNode;
@@ -3895,7 +3927,7 @@ export declare interface HvHeaderBrandProps extends HvBaseProps {
3895
3927
  classes?: HvHeaderBrandClasses;
3896
3928
  }
3897
3929
 
3898
- export declare type HvHeaderClasses = ExtractNames<typeof useClasses_77>;
3930
+ export declare type HvHeaderClasses = ExtractNames<typeof useClasses_79>;
3899
3931
 
3900
3932
  declare interface HvHeaderGroup<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer> extends HvColumnInstance<D, H>, Omit<UseTableHeaderGroupProps<D>, "headers"> {
3901
3933
  headers: Array<HvHeaderGroup<D, H>>;
@@ -3903,7 +3935,7 @@ declare interface HvHeaderGroup<D extends object = Record<string, unknown>, H ex
3903
3935
 
3904
3936
  export declare const HvHeaderMenuBar: (props: HvHeaderMenuBarProps) => JSX_3.Element;
3905
3937
 
3906
- declare type HvHeaderMenuBarClasses = ExtractNames<typeof useClasses_80>;
3938
+ declare type HvHeaderMenuBarClasses = ExtractNames<typeof useClasses_82>;
3907
3939
 
3908
3940
  declare interface HvHeaderMenuBarProps extends HvBaseProps<HTMLDivElement, "onClick"> {
3909
3941
  data: HvHeaderNavigationItemProp[];
@@ -3916,7 +3948,7 @@ declare interface HvHeaderMenuBarProps extends HvBaseProps<HTMLDivElement, "onCl
3916
3948
 
3917
3949
  export declare const HvHeaderMenuItem: (props: HvHeaderMenuItemProps) => JSX_3.Element;
3918
3950
 
3919
- declare type HvHeaderMenuItemClasses = ExtractNames<typeof useClasses_81>;
3951
+ declare type HvHeaderMenuItemClasses = ExtractNames<typeof useClasses_83>;
3920
3952
 
3921
3953
  declare interface HvHeaderMenuItemProps extends HvBaseProps<HTMLDivElement, "onClick"> {
3922
3954
  item: HvHeaderNavigationItemProp;
@@ -3929,7 +3961,7 @@ declare interface HvHeaderMenuItemProps extends HvBaseProps<HTMLDivElement, "onC
3929
3961
 
3930
3962
  export declare const HvHeaderNavigation: ForwardRefExoticComponent<HvHeaderNavigationProps & RefAttributes<HTMLElement>>;
3931
3963
 
3932
- export declare type HvHeaderNavigationClasses = ExtractNames<typeof useClasses_82>;
3964
+ export declare type HvHeaderNavigationClasses = ExtractNames<typeof useClasses_84>;
3933
3965
 
3934
3966
  export declare interface HvHeaderNavigationItemProp {
3935
3967
  id: string;
@@ -3988,7 +4020,7 @@ export declare interface HvHooks<D extends object = Record<string, unknown>, H e
3988
4020
  useFinalInstance: Array<(instance: HvTableInstance<D, H>) => void>;
3989
4021
  }
3990
4022
 
3991
- export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useClasses_99>;
4023
+ export declare type HvHorizontalScrollListItemClasses = ExtractNames<typeof useClasses_101>;
3992
4024
 
3993
4025
  /**
3994
4026
  * The `HvIconButton` component wraps a `HvTooltip` with a label around a `HvButton` with only an icon as its content.
@@ -4087,7 +4119,7 @@ export declare const HvInlineEditor: <C extends ElementType<any, keyof JSX_2.Int
4087
4119
  ref?: PolymorphicRef<C> | undefined;
4088
4120
  } & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
4089
4121
 
4090
- export declare type HvInlineEditorClasses = ExtractNames<typeof useClasses_83>;
4122
+ export declare type HvInlineEditorClasses = ExtractNames<typeof useClasses_85>;
4091
4123
 
4092
4124
  export declare type HvInlineEditorProps<C extends React.ElementType = typeof HvInput> = PolymorphicComponentRef<C, {
4093
4125
  /** The value of the form element. */
@@ -4262,9 +4294,9 @@ export declare interface HvKnobProperty {
4262
4294
  */
4263
4295
  export declare const HvKpi: (props: HvKpiProps) => JSX_3.Element;
4264
4296
 
4265
- export declare type HvKpiClasses = ExtractNames<typeof useClasses_84>;
4297
+ export declare type HvKpiClasses = ExtractNames<typeof useClasses_86>;
4266
4298
 
4267
- export declare type HvKpiLabelProps = Partial<typeof DEFAULT_LABELS_10>;
4299
+ export declare type HvKpiLabelProps = Partial<typeof DEFAULT_LABELS_11>;
4268
4300
 
4269
4301
  export declare interface HvKpiProps extends HvBaseProps<HTMLDivElement, "children"> {
4270
4302
  /**
@@ -4340,7 +4372,7 @@ export declare interface HvLeftControlProps extends HvBaseProps {
4340
4372
 
4341
4373
  export declare const HvLink: (props: HvLinkProps) => JSX_3.Element;
4342
4374
 
4343
- export declare type HvLinkClasses = ExtractNames<typeof useClasses_85>;
4375
+ export declare type HvLinkClasses = ExtractNames<typeof useClasses_87>;
4344
4376
 
4345
4377
  export declare interface HvLinkProps extends HvBaseProps<HTMLAnchorElement, "onClick"> {
4346
4378
  onClick?: (event: React.MouseEvent<HTMLAnchorElement>, data: any) => void;
@@ -4356,7 +4388,7 @@ export declare interface HvLinkProps extends HvBaseProps<HTMLAnchorElement, "onC
4356
4388
  */
4357
4389
  export declare const HvList: (props: HvListProps) => JSX_3.Element | null;
4358
4390
 
4359
- export declare type HvListClasses = ExtractNames<typeof useClasses_86>;
4391
+ export declare type HvListClasses = ExtractNames<typeof useClasses_88>;
4360
4392
 
4361
4393
  /**
4362
4394
  * A <b>list</b> is any enumeration of a set of items.
@@ -4384,7 +4416,8 @@ export declare interface HvListContainerProps extends HvBaseProps<HTMLUListEleme
4384
4416
  }
4385
4417
 
4386
4418
  /**
4387
- * ListItem description/documentation paragraph
4419
+ * Implements the listitem pattern, akin to the `<li>` element.
4420
+ * Should be composed within a `<HvListContainer>` component.
4388
4421
  */
4389
4422
  export declare const HvListItem: ForwardRefExoticComponent<HvListItemProps & RefAttributes<HTMLLIElement>>;
4390
4423
 
@@ -4509,7 +4542,7 @@ export declare interface HvListValue extends Record<string, any> {
4509
4542
  */
4510
4543
  export declare const HvLoading: ForwardRefExoticComponent<HvLoadingProps & RefAttributes<HTMLDivElement>>;
4511
4544
 
4512
- export declare type HvLoadingClasses = ExtractNames<typeof useClasses_87>;
4545
+ export declare type HvLoadingClasses = ExtractNames<typeof useClasses_89>;
4513
4546
 
4514
4547
  /**
4515
4548
  * A component that wraps `children` with an `HvLoading` component and
@@ -4522,7 +4555,7 @@ export declare type HvLoadingClasses = ExtractNames<typeof useClasses_87>;
4522
4555
  * */
4523
4556
  export declare const HvLoadingContainer: ForwardRefExoticComponent<HvLoadingContainerProps & RefAttributes<HTMLDivElement>>;
4524
4557
 
4525
- export declare type HvLoadingContainerClasses = ExtractNames<typeof useClasses_88>;
4558
+ export declare type HvLoadingContainerClasses = ExtractNames<typeof useClasses_90>;
4526
4559
 
4527
4560
  export declare interface HvLoadingContainerProps extends HvBaseProps<HTMLDivElement>, Pick<HvLoadingProps, "label" | "small" | "hidden"> {
4528
4561
  opacity?: number;
@@ -4547,7 +4580,7 @@ export declare interface HvLoadingProps extends HvBaseProps {
4547
4580
  */
4548
4581
  export declare const HvLogin: ForwardRefExoticComponent<HvLoginProps & RefAttributes<HTMLDivElement>>;
4549
4582
 
4550
- export declare type HvLoginClasses = ExtractNames<typeof useClasses_89>;
4583
+ export declare type HvLoginClasses = ExtractNames<typeof useClasses_91>;
4551
4584
 
4552
4585
  export declare interface HvLoginProps extends HvBaseProps {
4553
4586
  /**
@@ -4574,7 +4607,7 @@ declare interface HvMetaBase<D extends object = Record<string, unknown>, H exten
4574
4607
 
4575
4608
  export declare const HvMultiButton: (props: HvMultiButtonProps) => JSX_3.Element;
4576
4609
 
4577
- export declare type HvMultiButtonClasses = ExtractNames<typeof useClasses_90>;
4610
+ export declare type HvMultiButtonClasses = ExtractNames<typeof useClasses_92>;
4578
4611
 
4579
4612
  export declare interface HvMultiButtonProps extends HvBaseProps {
4580
4613
  /** If all the buttons are disabled. */
@@ -4649,7 +4682,7 @@ export declare interface HvOptionProps<OptionValue extends {}> extends Omit<HvLi
4649
4682
  */
4650
4683
  export declare const HvOverflowTooltip: (props: HvOverflowTooltipProps) => JSX_3.Element;
4651
4684
 
4652
- export declare type HvOverflowTooltipClasses = ExtractNames<typeof useClasses_91>;
4685
+ export declare type HvOverflowTooltipClasses = ExtractNames<typeof useClasses_93>;
4653
4686
 
4654
4687
  export declare interface HvOverflowTooltipProps extends HvBaseProps {
4655
4688
  /** The node that will be rendered inside the tooltip. */
@@ -4718,7 +4751,7 @@ export declare interface HvPaginationProps extends HvBaseProps {
4718
4751
  */
4719
4752
  export declare const HvPanel: ForwardRefExoticComponent<HvPanelProps & RefAttributes<HTMLDivElement>>;
4720
4753
 
4721
- export declare type HvPanelClasses = ExtractNames<typeof useClasses_93>;
4754
+ export declare type HvPanelClasses = ExtractNames<typeof useClasses_95>;
4722
4755
 
4723
4756
  export declare interface HvPanelProps extends HvBaseProps {
4724
4757
  /** A Jss Object used to override or extend the styles applied. */
@@ -4729,7 +4762,7 @@ export declare type HvPolarizedColorKeys = "positive" | "positive_120" | "positi
4729
4762
 
4730
4763
  export declare const HvProgressBar: (props: HvProgressBarProps) => JSX_3.Element;
4731
4764
 
4732
- export declare type HvProgressBarClasses = ExtractNames<typeof useClasses_94>;
4765
+ export declare type HvProgressBarClasses = ExtractNames<typeof useClasses_96>;
4733
4766
 
4734
4767
  /**
4735
4768
  * ProgressBar provides feedback about a process that is taking place in the application.
@@ -4856,7 +4889,7 @@ export declare interface HvQueryBuilderChangedQuery extends Omit<HvQueryBuilderQ
4856
4889
  rules: Array<Omit<HvQueryBuilderQueryRule, "id"> | HvQueryBuilderChangedQuery>;
4857
4890
  }
4858
4891
 
4859
- export declare type HvQueryBuilderClasses = ExtractNames<typeof useClasses_95>;
4892
+ export declare type HvQueryBuilderClasses = ExtractNames<typeof useClasses_97>;
4860
4893
 
4861
4894
  declare interface HvQueryBuilderContextValue {
4862
4895
  dispatchAction: React.Dispatch<QueryAction>;
@@ -5110,7 +5143,7 @@ export declare type HvQueryBuilderRenderers = Record<string, ValueRenderer>;
5110
5143
  */
5111
5144
  export declare const HvRadio: ForwardRefExoticComponent<Omit<HvRadioProps, "ref"> & RefAttributes<HTMLButtonElement>>;
5112
5145
 
5113
- export declare type HvRadioClasses = ExtractNames<typeof useClasses_96>;
5146
+ export declare type HvRadioClasses = ExtractNames<typeof useClasses_98>;
5114
5147
 
5115
5148
  /**
5116
5149
  * A group of radio buttons.
@@ -5331,7 +5364,7 @@ declare type HvRowPropGetter<D extends object = Record<string, unknown>, H exten
5331
5364
  */
5332
5365
  export declare const HvScrollToHorizontal: (props: HvScrollToHorizontalProps) => JSX_3.Element;
5333
5366
 
5334
- export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_100>;
5367
+ export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_102>;
5335
5368
 
5336
5369
  /** @deprecated use `HvScrollToOption` */
5337
5370
  export declare type HvScrollToHorizontalOption = HvScrollToOption;
@@ -5416,7 +5449,7 @@ export declare type HvScrollToTooltipPositions = "left" | "right" | "top" | "bot
5416
5449
  */
5417
5450
  export declare const HvScrollToVertical: (props: HvScrollToVerticalProps) => JSX_3.Element;
5418
5451
 
5419
- export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_98>;
5452
+ export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_100>;
5420
5453
 
5421
5454
  /** @deprecated use `HvScrollToOption` */
5422
5455
  export declare type HvScrollToVerticalOption = HvScrollToOption;
@@ -5492,7 +5525,7 @@ export declare interface HvScrollToVerticalProps extends HvBaseProps<HTMLOListEl
5492
5525
  */
5493
5526
  export declare const HvSection: ForwardRefExoticComponent<HvSectionProps & RefAttributes<HTMLDivElement>>;
5494
5527
 
5495
- export declare type HvSectionClasses = ExtractNames<typeof useClasses_101>;
5528
+ export declare type HvSectionClasses = ExtractNames<typeof useClasses_103>;
5496
5529
 
5497
5530
  export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>, "title" | "onToggle"> {
5498
5531
  /** The title of the section */
@@ -5622,7 +5655,7 @@ export declare type HvSequentialColorKeys = "cat1" | "cat1_100" | "cat1_200" | "
5622
5655
 
5623
5656
  export declare const HvSimpleGrid: (props: HvSimpleGridProps) => JSX_3.Element;
5624
5657
 
5625
- export declare type HvSimpleGridClasses = ExtractNames<typeof useClasses_102>;
5658
+ export declare type HvSimpleGridClasses = ExtractNames<typeof useClasses_104>;
5626
5659
 
5627
5660
  /** Grid component that enables you to create columns of equal width and define your own breakpoints and responsive behavior. */
5628
5661
  export declare interface HvSimpleGridProps extends HvBaseProps {
@@ -5669,7 +5702,7 @@ export { HvSize }
5669
5702
  */
5670
5703
  export declare const HvSkeleton: (props: HvSkeletonProps) => JSX_3.Element;
5671
5704
 
5672
- export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_131>;
5705
+ export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_133>;
5673
5706
 
5674
5707
  export declare interface HvSkeletonProps extends HvBaseProps {
5675
5708
  /** Whether the skeleton element is hidden or not. */
@@ -5693,7 +5726,7 @@ export declare interface HvSkeletonProps extends HvBaseProps {
5693
5726
  */
5694
5727
  export declare const HvSlider: ForwardRefExoticComponent<HvSliderProps & RefAttributes<SliderRef>>;
5695
5728
 
5696
- export declare type HvSliderClasses = ExtractNames<typeof useClasses_103>;
5729
+ export declare type HvSliderClasses = ExtractNames<typeof useClasses_105>;
5697
5730
 
5698
5731
  export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onChange" | "onBlur"> {
5699
5732
  /** The slider name. */
@@ -5793,11 +5826,11 @@ export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onCh
5793
5826
  */
5794
5827
  export declare const HvSnackbar: ForwardRefExoticComponent<Omit<HvSnackbarProps, "ref"> & RefAttributes<unknown>>;
5795
5828
 
5796
- export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_104>;
5829
+ export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_106>;
5797
5830
 
5798
5831
  export declare const HvSnackbarContent: ForwardRefExoticComponent<Omit<HvSnackbarContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
5799
5832
 
5800
- export declare type HvSnackbarContentClasses = ExtractNames<typeof useClasses_105>;
5833
+ export declare type HvSnackbarContentClasses = ExtractNames<typeof useClasses_107>;
5801
5834
 
5802
5835
  export declare interface HvSnackbarContentProps extends Omit<SnackbarContentProps, "variant" | "action" | "classes"> {
5803
5836
  /** The message to display. */
@@ -5873,7 +5906,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
5873
5906
 
5874
5907
  export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, container, ...others }: HvSnackbarProviderProps) => JSX_3.Element;
5875
5908
 
5876
- export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_106>;
5909
+ export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_108>;
5877
5910
 
5878
5911
  export declare interface HvSnackbarProviderProps {
5879
5912
  /** Your component tree. */
@@ -5906,7 +5939,7 @@ export declare const HvStack: (props: HvStackProps) => JSX_3.Element;
5906
5939
  export declare interface HvStackBreakpoints extends Record<HvBreakpoints, string> {
5907
5940
  }
5908
5941
 
5909
- export declare type HvStackClasses = ExtractNames<typeof useClasses_107>;
5942
+ export declare type HvStackClasses = ExtractNames<typeof useClasses_109>;
5910
5943
 
5911
5944
  export declare type HvStackDirection = "column" | "row" | Partial<HvStackBreakpoints>;
5912
5945
 
@@ -5983,7 +6016,7 @@ export declare type HvSupportColors = Record<HvSupportColorKeys, string>;
5983
6016
  */
5984
6017
  export declare const HvSwitch: ForwardRefExoticComponent<Omit<HvSwitchProps, "ref"> & RefAttributes<HTMLButtonElement>>;
5985
6018
 
5986
- export declare type HvSwitchClasses = ExtractNames<typeof useClasses_108>;
6019
+ export declare type HvSwitchClasses = ExtractNames<typeof useClasses_110>;
5987
6020
 
5988
6021
  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>;
5989
6022
 
@@ -6094,7 +6127,7 @@ export declare interface HvSwitchProps extends Omit<SwitchProps, "color" | "onCh
6094
6127
 
6095
6128
  export declare const HvTab: ForwardRefExoticComponent<Omit<HvTabProps, "ref"> & RefAttributes<HTMLDivElement>>;
6096
6129
 
6097
- export declare type HvTabClasses = ExtractNames<typeof useClasses_109>;
6130
+ export declare type HvTabClasses = ExtractNames<typeof useClasses_111>;
6098
6131
 
6099
6132
  /**
6100
6133
  * A table gathers relational data. It displays values arranged to allow quick numerical analysis like comparison and sorting.
@@ -6114,7 +6147,7 @@ export declare const HvTable: ForwardRefExoticComponent<HvTableProps & RefAttrib
6114
6147
  */
6115
6148
  export declare const HvTableBody: ForwardRefExoticComponent<HvTableBodyProps & RefAttributes<HTMLElement>>;
6116
6149
 
6117
- export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_111>;
6150
+ export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_113>;
6118
6151
 
6119
6152
  export declare interface HvTableBodyProps extends HvBaseProps<HTMLTableSectionElement, "children"> {
6120
6153
  /**
@@ -6202,7 +6235,7 @@ export declare interface HvTableColumnOptions<D extends object = Record<string,
6202
6235
  */
6203
6236
  export declare const HvTableContainer: ForwardRefExoticComponent<HvTableContainerProps & RefAttributes<HTMLElement>>;
6204
6237
 
6205
- export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_110>;
6238
+ export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_112>;
6206
6239
 
6207
6240
  export declare interface HvTableContainerProps extends HvBaseProps<HTMLDivElement, "children"> {
6208
6241
  /**
@@ -6226,7 +6259,7 @@ export declare type HvTableDefinitionConfig<D extends object = Record<string, un
6226
6259
  */
6227
6260
  export declare const HvTableHead: ForwardRefExoticComponent<HvTableHeadProps & RefAttributes<HTMLElement>>;
6228
6261
 
6229
- export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_112>;
6262
+ export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_114>;
6230
6263
 
6231
6264
  /**
6232
6265
  * `HvTableHeader` acts as a `th` element and inherits styles from its context
@@ -6399,7 +6432,7 @@ export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement
6399
6432
  */
6400
6433
  export declare const HvTableSection: ForwardRefExoticComponent<HvTableSectionProps & RefAttributes<HTMLDivElement>>;
6401
6434
 
6402
- export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_130>;
6435
+ export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_132>;
6403
6436
 
6404
6437
  export declare interface HvTableSectionProps extends HvSectionProps {
6405
6438
  }
@@ -6429,7 +6462,7 @@ export declare interface HvTabProps extends Omit<TabProps, "children"> {
6429
6462
  */
6430
6463
  export declare const HvTabs: ForwardRefExoticComponent<Omit<HvTabsProps, "ref"> & RefAttributes<HTMLDivElement>>;
6431
6464
 
6432
- export declare type HvTabsClasses = ExtractNames<typeof useClasses_114>;
6465
+ export declare type HvTabsClasses = ExtractNames<typeof useClasses_116>;
6433
6466
 
6434
6467
  export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
6435
6468
  /**
@@ -6461,7 +6494,7 @@ export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
6461
6494
  */
6462
6495
  export declare const HvTag: ForwardRefExoticComponent<Omit<HvTagProps, "ref"> & RefAttributes<HTMLElement>>;
6463
6496
 
6464
- export declare type HvTagClasses = ExtractNames<typeof useClasses_113>;
6497
+ export declare type HvTagClasses = ExtractNames<typeof useClasses_115>;
6465
6498
 
6466
6499
  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>;
6467
6500
 
@@ -6504,7 +6537,7 @@ export declare interface HvTagProps extends Omit<HvButtonBaseProps, "type" | "co
6504
6537
  */
6505
6538
  export declare const HvTagsInput: ForwardRefExoticComponent<HvTagsInputProps & RefAttributes<HTMLUListElement>>;
6506
6539
 
6507
- export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_115>;
6540
+ export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_117>;
6508
6541
 
6509
6542
  export declare interface HvTagsInputProps extends Omit<HvInputProps, "onChange" | "onBlur" | "onFocus" | "onKeyDown" | "value" | "defaultValue"> {
6510
6543
  /** The value of the form element. */
@@ -6555,7 +6588,7 @@ export declare interface HvTagSuggestion extends HvInputSuggestion {
6555
6588
  */
6556
6589
  export declare const HvTextArea: ForwardRefExoticComponent<HvTextAreaProps & RefAttributes<HTMLTextAreaElement>>;
6557
6590
 
6558
- export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_116>;
6591
+ export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_118>;
6559
6592
 
6560
6593
  export declare interface HvTextAreaProps extends Omit<HvBaseInputProps, "onChange" | "onBlur" | "rows" | "classes" | "onFocus" | "placeholder"> {
6561
6594
  /** The placeholder value of the text area. */
@@ -6737,7 +6770,7 @@ export declare const HvTimeAgo: <C extends ElementType<any, keyof JSX_2.Intrinsi
6737
6770
  ref?: PolymorphicRef<C> | undefined;
6738
6771
  } & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
6739
6772
 
6740
- export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_117>;
6773
+ export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_119>;
6741
6774
 
6742
6775
  export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = PolymorphicComponentRef<C, {
6743
6776
  /**
@@ -6773,7 +6806,7 @@ export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = Polymorp
6773
6806
  */
6774
6807
  export declare const HvTimePicker: ForwardRefExoticComponent<HvTimePickerProps & RefAttributes<HTMLDivElement>>;
6775
6808
 
6776
- export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_118>;
6809
+ export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_120>;
6777
6810
 
6778
6811
  export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
6779
6812
 
@@ -6850,7 +6883,7 @@ export declare interface HvToggleButtonProps extends HvBaseProps<HTMLButtonEleme
6850
6883
  */
6851
6884
  export declare const HvTooltip: ForwardRefExoticComponent<Omit<HvTooltipProps, "ref"> & RefAttributes<unknown>>;
6852
6885
 
6853
- export declare type HvTooltipClasses = ExtractNames<typeof useClasses_92>;
6886
+ export declare type HvTooltipClasses = ExtractNames<typeof useClasses_94>;
6854
6887
 
6855
6888
  export declare type HvTooltipPlacementType = TooltipProps["placement"];
6856
6889
 
@@ -6897,7 +6930,7 @@ export declare interface HvTooltipProps extends Omit<TooltipProps, "classes"> {
6897
6930
  containerId?: string;
6898
6931
  }
6899
6932
 
6900
- declare type HvTreeContentClasses = ExtractNames<typeof useClasses_121>;
6933
+ declare type HvTreeContentClasses = ExtractNames<typeof useClasses_123>;
6901
6934
 
6902
6935
  export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLElement> {
6903
6936
  /** className applied to the root element. */
@@ -6918,7 +6951,7 @@ export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLEle
6918
6951
 
6919
6952
  export declare const HvTreeItem: ForwardRefExoticComponent<HvTreeItemProps & RefAttributes<HTMLLIElement>>;
6920
6953
 
6921
- export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_120>;
6954
+ export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_122>;
6922
6955
 
6923
6956
  export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElement> {
6924
6957
  /** The element id */
@@ -6973,7 +7006,7 @@ export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElemen
6973
7006
  */
6974
7007
  export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
6975
7008
 
6976
- export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_119>;
7009
+ export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_121>;
6977
7010
 
6978
7011
  export declare interface HvTreeViewProps<Multiple extends boolean | undefined> extends HvBaseProps<HTMLUListElement>, DefaultTreeViewPluginParameters<Multiple> {
6979
7012
  /** A Jss Object used to override or extend the styles applied. */
@@ -7129,7 +7162,7 @@ export declare const HvVerticalNavigation: ForwardRefExoticComponent<HvVerticalN
7129
7162
 
7130
7163
  export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) => JSX_3.Element;
7131
7164
 
7132
- export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_125>;
7165
+ export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_127>;
7133
7166
 
7134
7167
  export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonProps, "classes" | "icon"> {
7135
7168
  /** A Jss Object used to override or extend the styles applied to the component. */
@@ -7142,18 +7175,18 @@ export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonPr
7142
7175
 
7143
7176
  export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) => JSX_3.Element;
7144
7177
 
7145
- export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_124>;
7178
+ export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_126>;
7146
7179
 
7147
7180
  export declare interface HvVerticalNavigationActionsProps extends HvBaseProps {
7148
7181
  /** A Jss Object used to override or extend the styles applied to the component. */
7149
7182
  classes?: HvVerticalNavigationActionsClasses;
7150
7183
  }
7151
7184
 
7152
- export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_122>;
7185
+ export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_124>;
7153
7186
 
7154
7187
  export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) => JSX_3.Element | null;
7155
7188
 
7156
- export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_123>;
7189
+ export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_125>;
7157
7190
 
7158
7191
  export declare interface HvVerticalNavigationHeaderProps extends HvBaseProps {
7159
7192
  /** The title text to show on header. */
@@ -7200,7 +7233,7 @@ export declare interface HvVerticalNavigationProps extends HvBaseProps<HTMLDivEl
7200
7233
 
7201
7234
  export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) => JSX_3.Element;
7202
7235
 
7203
- export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_127>;
7236
+ export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_129>;
7204
7237
 
7205
7238
  export declare interface HvVerticalNavigationSliderProps extends Omit<HvListContainerProps, "classes"> {
7206
7239
  /** A Jss Object used to override or extend the styles applied. */
@@ -7228,7 +7261,7 @@ export declare interface HvVerticalNavigationSliderProps extends Omit<HvListCont
7228
7261
 
7229
7262
  export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) => JSX_3.Element;
7230
7263
 
7231
- export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_126>;
7264
+ export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_128>;
7232
7265
 
7233
7266
  export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLDivElement, "onChange" | "onToggle"> {
7234
7267
  /** A Jss Object used to override or extend the styles applied. */
@@ -7272,11 +7305,11 @@ export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLD
7272
7305
 
7273
7306
  export declare const HvVerticalNavigationTreeView: ForwardRefExoticComponent<HvVerticalNavigationTreeViewProps & RefAttributes<HTMLUListElement>>;
7274
7307
 
7275
- export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_128>;
7308
+ export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_130>;
7276
7309
 
7277
7310
  export declare const HvVerticalNavigationTreeViewItem: ForwardRefExoticComponent<HvVerticalNavigationTreeViewItemProps & RefAttributes<unknown>>;
7278
7311
 
7279
- export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_129>;
7312
+ export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_131>;
7280
7313
 
7281
7314
  export declare interface HvVerticalNavigationTreeViewItemProps {
7282
7315
  /**
@@ -7380,7 +7413,7 @@ export declare interface HvVerticalNavigationTreeViewProps extends HvBaseProps<H
7380
7413
  disabledItemsFocusable?: boolean;
7381
7414
  }
7382
7415
 
7383
- export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useClasses_97>;
7416
+ export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useClasses_99>;
7384
7417
 
7385
7418
  /**
7386
7419
  * Provides the user with a descriptive text, signaling an error, for when the form element is in an invalid state.
@@ -8327,7 +8360,30 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "gutter" | "
8327
8360
  readonly cx: (...args: any) => string;
8328
8361
  };
8329
8362
 
8330
- declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "positionFixed" | "positionSticky" | "notSelectedRoot", string>>, addStatic?: boolean) => {
8363
+ declare const useClasses_100: (classesProp?: Partial<Record<"root" | "positionFixed" | "positionAbsolute", string>>, addStatic?: boolean) => {
8364
+ readonly classes: {
8365
+ root: string;
8366
+ positionAbsolute: string;
8367
+ positionFixed: string;
8368
+ };
8369
+ readonly css: any;
8370
+ readonly cx: (...args: any) => string;
8371
+ };
8372
+
8373
+ declare const useClasses_101: (classesProp?: Partial<Record<"root" | "selected" | "button" | "text" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
8374
+ readonly classes: {
8375
+ root: string;
8376
+ button: string;
8377
+ text: string;
8378
+ selected: string;
8379
+ bullet: string;
8380
+ bulletSelected: string;
8381
+ };
8382
+ readonly css: any;
8383
+ readonly cx: (...args: any) => string;
8384
+ };
8385
+
8386
+ declare const useClasses_102: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "positionFixed" | "positionSticky" | "notSelectedRoot", string>>, addStatic?: boolean) => {
8331
8387
  readonly classes: {
8332
8388
  root: string;
8333
8389
  positionSticky: string;
@@ -8340,7 +8396,7 @@ declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected"
8340
8396
  readonly cx: (...args: any) => string;
8341
8397
  };
8342
8398
 
8343
- declare const useClasses_101: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8399
+ declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8344
8400
  readonly classes: {
8345
8401
  root: string;
8346
8402
  hidden: string;
@@ -8355,7 +8411,7 @@ declare const useClasses_101: (classesProp?: Partial<Record<"content" | "header"
8355
8411
  readonly cx: (...args: any) => string;
8356
8412
  };
8357
8413
 
8358
- declare const useClasses_102: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8414
+ declare const useClasses_104: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8359
8415
  readonly classes: {
8360
8416
  root: string;
8361
8417
  };
@@ -8363,7 +8419,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root", string>>, ad
8363
8419
  readonly cx: (...args: any) => string;
8364
8420
  };
8365
8421
 
8366
- declare const useClasses_103: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "labelContainer" | "rootDisabled" | "handle" | "sliderBase" | "sliderContainer" | "sliderRoot" | "rootRange" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
8422
+ declare const useClasses_105: (classesProp?: Partial<Record<"label" | "root" | "trackDragging" | "trackStandBy" | "handleContainer" | "error" | "labelContainer" | "rootDisabled" | "handle" | "sliderBase" | "sliderContainer" | "sliderRoot" | "rootRange" | "handleContainerDisabled" | "handleHiddenContainer" | "labelIncluded" | "onlyInput" | "sliderTooltip", string>>, addStatic?: boolean) => {
8367
8423
  readonly classes: {
8368
8424
  sliderBase: string;
8369
8425
  rootDisabled: string;
@@ -8388,7 +8444,7 @@ declare const useClasses_103: (classesProp?: Partial<Record<"label" | "root" | "
8388
8444
  readonly cx: (...args: any) => string;
8389
8445
  };
8390
8446
 
8391
- declare const useClasses_104: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
8447
+ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
8392
8448
  readonly classes: {
8393
8449
  root: string;
8394
8450
  anchorOriginTopRight: string;
@@ -8402,7 +8458,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"root" | "anchorOrig
8402
8458
  readonly cx: (...args: any) => string;
8403
8459
  };
8404
8460
 
8405
- declare const useClasses_105: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "success" | "error" | "message" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
8461
+ declare const useClasses_107: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "success" | "error" | "message" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
8406
8462
  readonly classes: {
8407
8463
  root: string;
8408
8464
  success: string;
@@ -8419,7 +8475,7 @@ declare const useClasses_105: (classesProp?: Partial<Record<"warning" | "root" |
8419
8475
  readonly cx: (...args: any) => string;
8420
8476
  };
8421
8477
 
8422
- declare const useClasses_106: (classesProp?: Partial<Record<"snackItemRoot", string>>, addStatic?: boolean) => {
8478
+ declare const useClasses_108: (classesProp?: Partial<Record<"snackItemRoot", string>>, addStatic?: boolean) => {
8423
8479
  readonly classes: {
8424
8480
  snackItemRoot: string;
8425
8481
  };
@@ -8427,7 +8483,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"snackItemRoot", str
8427
8483
  readonly cx: (...args: any) => string;
8428
8484
  };
8429
8485
 
8430
- declare const useClasses_107: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "divider" | "row" | "column", string>>, addStatic?: boolean) => {
8486
+ declare const useClasses_109: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "divider" | "row" | "column", string>>, addStatic?: boolean) => {
8431
8487
  readonly classes: {
8432
8488
  root: string;
8433
8489
  column: string;
@@ -8443,44 +8499,44 @@ declare const useClasses_107: (classesProp?: Partial<Record<"xs" | "sm" | "md" |
8443
8499
  readonly cx: (...args: any) => string;
8444
8500
  };
8445
8501
 
8446
- declare const useClasses_108: (classesProp?: Partial<Record<"label" | "root" | "invalidSwitch" | "error" | "switchContainer", string>>, addStatic?: boolean) => {
8502
+ declare const useClasses_11: (classesProp?: Partial<Record<"root" | "warningText" | "topGutter" | "defaultIcon" | "show" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8447
8503
  readonly classes: {
8448
8504
  root: string;
8449
- label: string;
8450
- error: string;
8451
- switchContainer: string;
8452
- invalidSwitch: string;
8505
+ defaultIcon: string;
8506
+ warningText: string;
8507
+ show: string;
8508
+ topGutter: string;
8509
+ hideText: string;
8510
+ topBorder: string;
8453
8511
  };
8454
8512
  readonly css: any;
8455
8513
  readonly cx: (...args: any) => string;
8456
8514
  };
8457
8515
 
8458
- declare const useClasses_109: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8516
+ declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "invalidSwitch" | "error" | "switchContainer", string>>, addStatic?: boolean) => {
8459
8517
  readonly classes: {
8460
8518
  root: string;
8461
- focusVisible: string;
8462
- selected: string;
8463
- disabled: string;
8519
+ label: string;
8520
+ error: string;
8521
+ switchContainer: string;
8522
+ invalidSwitch: string;
8464
8523
  };
8465
8524
  readonly css: any;
8466
8525
  readonly cx: (...args: any) => string;
8467
8526
  };
8468
8527
 
8469
- declare const useClasses_11: (classesProp?: Partial<Record<"root" | "warningText" | "topGutter" | "defaultIcon" | "show" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8528
+ declare const useClasses_111: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8470
8529
  readonly classes: {
8471
8530
  root: string;
8472
- defaultIcon: string;
8473
- warningText: string;
8474
- show: string;
8475
- topGutter: string;
8476
- hideText: string;
8477
- topBorder: string;
8531
+ focusVisible: string;
8532
+ selected: string;
8533
+ disabled: string;
8478
8534
  };
8479
8535
  readonly css: any;
8480
8536
  readonly cx: (...args: any) => string;
8481
8537
  };
8482
8538
 
8483
- declare const useClasses_110: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8539
+ declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8484
8540
  readonly classes: {
8485
8541
  root: string;
8486
8542
  };
@@ -8488,7 +8544,7 @@ declare const useClasses_110: (classesProp?: Partial<Record<"root", string>>, ad
8488
8544
  readonly cx: (...args: any) => string;
8489
8545
  };
8490
8546
 
8491
- declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8547
+ declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8492
8548
  readonly classes: {
8493
8549
  root: string;
8494
8550
  };
@@ -8496,7 +8552,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
8496
8552
  readonly cx: (...args: any) => string;
8497
8553
  };
8498
8554
 
8499
- declare const useClasses_112: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
8555
+ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
8500
8556
  readonly classes: {
8501
8557
  root: string;
8502
8558
  stickyHeader: string;
@@ -8505,7 +8561,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"root" | "stickyHead
8505
8561
  readonly cx: (...args: any) => string;
8506
8562
  };
8507
8563
 
8508
- declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "icon" | "selected" | "button" | "deleteIcon" | "focusVisible" | "clickable" | "categorical" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
8564
+ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "icon" | "selected" | "button" | "deleteIcon" | "focusVisible" | "clickable" | "categorical" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
8509
8565
  readonly classes: {
8510
8566
  root: string;
8511
8567
  categorical: string;
@@ -8527,7 +8583,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "
8527
8583
  readonly cx: (...args: any) => string;
8528
8584
  };
8529
8585
 
8530
- declare const useClasses_114: (classesProp?: Partial<Record<"root" | "floating" | "flexContainer" | "scroller" | "indicator", string>>, addStatic?: boolean) => {
8586
+ declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating" | "flexContainer" | "scroller" | "indicator", string>>, addStatic?: boolean) => {
8531
8587
  readonly classes: {
8532
8588
  root: string;
8533
8589
  indicator: string;
@@ -8539,7 +8595,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "floating"
8539
8595
  readonly cx: (...args: any) => string;
8540
8596
  };
8541
8597
 
8542
- declare const useClasses_115: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "error" | "description" | "labelContainer" | "invalid" | "resizable" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
8598
+ declare const useClasses_117: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "error" | "description" | "labelContainer" | "invalid" | "resizable" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
8543
8599
  readonly classes: {
8544
8600
  input: string;
8545
8601
  listItemGutters: string;
@@ -8571,7 +8627,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "root" | "
8571
8627
  readonly cx: (...args: any) => string;
8572
8628
  };
8573
8629
 
8574
- declare const useClasses_116: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "input" | "error" | "description" | "labelContainer" | "invalid" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8630
+ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "input" | "error" | "description" | "labelContainer" | "invalid" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8575
8631
  readonly classes: {
8576
8632
  root: string;
8577
8633
  disabled: string;
@@ -8590,7 +8646,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"label" | "root" | "
8590
8646
  readonly cx: (...args: any) => string;
8591
8647
  };
8592
8648
 
8593
- declare const useClasses_117: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8649
+ declare const useClasses_119: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8594
8650
  readonly classes: {
8595
8651
  root: string;
8596
8652
  };
@@ -8598,7 +8654,27 @@ declare const useClasses_117: (classesProp?: Partial<Record<"root", string>>, ad
8598
8654
  readonly cx: (...args: any) => string;
8599
8655
  };
8600
8656
 
8601
- declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "icon" | "error" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8657
+ declare const useClasses_12: (classesProp?: Partial<Record<"label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "error" | "description" | "labelContainer" | "invalid" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8658
+ readonly classes: {
8659
+ root: string;
8660
+ disabled: string;
8661
+ readOnly: string;
8662
+ invalid: string;
8663
+ labelContainer: string;
8664
+ label: string;
8665
+ description: string;
8666
+ select: string;
8667
+ popper: string;
8668
+ panel: string;
8669
+ panelOpenedUp: string;
8670
+ panelOpenedDown: string;
8671
+ error: string;
8672
+ };
8673
+ readonly css: any;
8674
+ readonly cx: (...args: any) => string;
8675
+ };
8676
+
8677
+ declare const useClasses_120: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "icon" | "error" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8602
8678
  readonly classes: {
8603
8679
  root: string;
8604
8680
  labelContainer: string;
@@ -8618,7 +8694,7 @@ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "
8618
8694
  readonly cx: (...args: any) => string;
8619
8695
  };
8620
8696
 
8621
- declare const useClasses_119: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8697
+ declare const useClasses_121: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8622
8698
  readonly classes: {
8623
8699
  root: string;
8624
8700
  };
@@ -8626,27 +8702,7 @@ declare const useClasses_119: (classesProp?: Partial<Record<"root", string>>, ad
8626
8702
  readonly cx: (...args: any) => string;
8627
8703
  };
8628
8704
 
8629
- declare const useClasses_12: (classesProp?: Partial<Record<"label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "error" | "description" | "labelContainer" | "invalid" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8630
- readonly classes: {
8631
- root: string;
8632
- disabled: string;
8633
- readOnly: string;
8634
- invalid: string;
8635
- labelContainer: string;
8636
- label: string;
8637
- description: string;
8638
- select: string;
8639
- popper: string;
8640
- panel: string;
8641
- panelOpenedUp: string;
8642
- panelOpenedDown: string;
8643
- error: string;
8644
- };
8645
- readonly css: any;
8646
- readonly cx: (...args: any) => string;
8647
- };
8648
-
8649
- declare const useClasses_120: (classesProp?: Partial<Record<"content" | "label" | "root" | "disabled" | "selected" | "expanded" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8705
+ declare const useClasses_122: (classesProp?: Partial<Record<"content" | "label" | "root" | "disabled" | "selected" | "expanded" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8650
8706
  readonly classes: {
8651
8707
  root: string;
8652
8708
  group: string;
@@ -8662,7 +8718,7 @@ declare const useClasses_120: (classesProp?: Partial<Record<"content" | "label"
8662
8718
  readonly cx: (...args: any) => string;
8663
8719
  };
8664
8720
 
8665
- declare const useClasses_121: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "selected" | "expanded" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8721
+ declare const useClasses_123: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "selected" | "expanded" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8666
8722
  readonly classes: {
8667
8723
  root: string;
8668
8724
  expanded: string;
@@ -8676,7 +8732,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"label" | "root" | "
8676
8732
  readonly cx: (...args: any) => string;
8677
8733
  };
8678
8734
 
8679
- declare const useClasses_122: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
8735
+ declare const useClasses_124: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
8680
8736
  readonly classes: {
8681
8737
  root: string;
8682
8738
  collapsed: string;
@@ -8687,7 +8743,7 @@ declare const useClasses_122: (classesProp?: Partial<Record<"root" | "slider" |
8687
8743
  readonly cx: (...args: any) => string;
8688
8744
  };
8689
8745
 
8690
- declare const useClasses_123: (classesProp?: Partial<Record<"root" | "title" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
8746
+ declare const useClasses_125: (classesProp?: Partial<Record<"root" | "title" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
8691
8747
  readonly classes: {
8692
8748
  root: string;
8693
8749
  minimized: string;
@@ -8699,7 +8755,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"root" | "title" | "
8699
8755
  readonly cx: (...args: any) => string;
8700
8756
  };
8701
8757
 
8702
- declare const useClasses_124: (classesProp?: Partial<Record<"root" | "hide", string>>, addStatic?: boolean) => {
8758
+ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "hide", string>>, addStatic?: boolean) => {
8703
8759
  readonly classes: {
8704
8760
  root: string;
8705
8761
  hide: string;
@@ -8708,7 +8764,7 @@ declare const useClasses_124: (classesProp?: Partial<Record<"root" | "hide", str
8708
8764
  readonly cx: (...args: any) => string;
8709
8765
  };
8710
8766
 
8711
- declare const useClasses_125: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
8767
+ declare const useClasses_127: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
8712
8768
  readonly classes: {
8713
8769
  action: string;
8714
8770
  noIcon: string;
@@ -8718,7 +8774,7 @@ declare const useClasses_125: (classesProp?: Partial<Record<"action" | "minimize
8718
8774
  readonly cx: (...args: any) => string;
8719
8775
  };
8720
8776
 
8721
- declare const useClasses_126: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "collapsed" | "popup" | "navigationPopup", string>>, addStatic?: boolean) => {
8777
+ declare const useClasses_128: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "collapsed" | "popup" | "navigationPopup", string>>, addStatic?: boolean) => {
8722
8778
  readonly classes: {
8723
8779
  root: string;
8724
8780
  list: string;
@@ -8731,7 +8787,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "listItem"
8731
8787
  readonly cx: (...args: any) => string;
8732
8788
  };
8733
8789
 
8734
- declare const useClasses_127: (classesProp?: Partial<Record<"root" | "listItemSelected" | "listItemDisabled" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8790
+ declare const useClasses_129: (classesProp?: Partial<Record<"root" | "listItemSelected" | "listItemDisabled" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8735
8791
  readonly classes: {
8736
8792
  root: string;
8737
8793
  listItemSelected: string;
@@ -8744,7 +8800,30 @@ declare const useClasses_127: (classesProp?: Partial<Record<"root" | "listItemSe
8744
8800
  readonly cx: (...args: any) => string;
8745
8801
  };
8746
8802
 
8747
- declare const useClasses_128: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8803
+ declare const useClasses_13: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "icon" | "secondarySubtle" | "ghost" | "secondaryGhost" | "contained" | "primaryGhost" | "primarySubtle" | "subtle" | "focusVisible" | "startIcon" | "endIcon", string>>, addStatic?: boolean) => {
8804
+ readonly classes: {
8805
+ root: string;
8806
+ startIcon: string;
8807
+ endIcon: string;
8808
+ focusVisible: string;
8809
+ disabled: string;
8810
+ icon: string;
8811
+ contained: string;
8812
+ subtle: string;
8813
+ ghost: string;
8814
+ semantic: string;
8815
+ primary: string;
8816
+ primarySubtle: string;
8817
+ primaryGhost: string;
8818
+ secondarySubtle: string;
8819
+ secondaryGhost: string;
8820
+ secondary: string;
8821
+ };
8822
+ readonly css: any;
8823
+ readonly cx: (...args: any) => string;
8824
+ };
8825
+
8826
+ declare const useClasses_130: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8748
8827
  readonly classes: {
8749
8828
  root: string;
8750
8829
  };
@@ -8752,7 +8831,7 @@ declare const useClasses_128: (classesProp?: Partial<Record<"root", string>>, ad
8752
8831
  readonly cx: (...args: any) => string;
8753
8832
  };
8754
8833
 
8755
- declare const useClasses_129: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "icon" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "labelIcon" | "collapsed" | "minimized" | "expandable" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
8834
+ declare const useClasses_131: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "icon" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "labelIcon" | "collapsed" | "minimized" | "expandable" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
8756
8835
  readonly classes: {
8757
8836
  node: string;
8758
8837
  content: string;
@@ -8778,30 +8857,7 @@ declare const useClasses_129: (classesProp?: Partial<Record<"content" | "label"
8778
8857
  readonly cx: (...args: any) => string;
8779
8858
  };
8780
8859
 
8781
- declare const useClasses_13: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "icon" | "secondarySubtle" | "ghost" | "secondaryGhost" | "contained" | "primaryGhost" | "primarySubtle" | "subtle" | "focusVisible" | "startIcon" | "endIcon", string>>, addStatic?: boolean) => {
8782
- readonly classes: {
8783
- root: string;
8784
- startIcon: string;
8785
- endIcon: string;
8786
- focusVisible: string;
8787
- disabled: string;
8788
- icon: string;
8789
- contained: string;
8790
- subtle: string;
8791
- ghost: string;
8792
- semantic: string;
8793
- primary: string;
8794
- primarySubtle: string;
8795
- primaryGhost: string;
8796
- secondarySubtle: string;
8797
- secondaryGhost: string;
8798
- secondary: string;
8799
- };
8800
- readonly css: any;
8801
- readonly cx: (...args: any) => string;
8802
- };
8803
-
8804
- declare const useClasses_130: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8860
+ declare const useClasses_132: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8805
8861
  readonly classes: {
8806
8862
  root: string;
8807
8863
  header: string;
@@ -8816,7 +8872,7 @@ declare const useClasses_130: (classesProp?: Partial<Record<"content" | "header"
8816
8872
  readonly cx: (...args: any) => string;
8817
8873
  };
8818
8874
 
8819
- declare const useClasses_131: (classesProp?: Partial<Record<"content" | "root" | "circle" | "text" | "square" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8875
+ declare const useClasses_133: (classesProp?: Partial<Record<"content" | "root" | "circle" | "text" | "square" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8820
8876
  readonly classes: {
8821
8877
  root: string;
8822
8878
  content: string;
@@ -9811,7 +9867,33 @@ declare const useClasses_71: (classesProp?: Partial<Record<"root" | "icon" | "pr
9811
9867
  readonly cx: (...args: any) => string;
9812
9868
  };
9813
9869
 
9814
- declare const useClasses_72: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
9870
+ declare const useClasses_72: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
9871
+ readonly classes: {
9872
+ root: string;
9873
+ };
9874
+ readonly css: any;
9875
+ readonly cx: (...args: any) => string;
9876
+ };
9877
+
9878
+ declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" | "dragAction" | "dropZoneContainerDisabled" | "dropZoneLabelsGroup" | "inputArea" | "dropArea" | "dropZoneAreaLabels" | "dropZoneAreaIcon" | "dropZoneLabel" | "dragText" | "selectFilesText", string>>, addStatic?: boolean) => {
9879
+ readonly classes: {
9880
+ dropZoneContainer: string;
9881
+ dropZoneLabelsGroup: string;
9882
+ dragAction: string;
9883
+ dropZoneContainerDisabled: string;
9884
+ inputArea: string;
9885
+ dropArea: string;
9886
+ dropZoneAreaLabels: string;
9887
+ dropZoneAreaIcon: string;
9888
+ dropZoneLabel: string;
9889
+ dragText: string;
9890
+ selectFilesText: string;
9891
+ };
9892
+ readonly css: any;
9893
+ readonly cx: (...args: any) => string;
9894
+ };
9895
+
9896
+ declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
9815
9897
  readonly classes: {
9816
9898
  root: string;
9817
9899
  label: string;
@@ -9823,7 +9905,7 @@ declare const useClasses_72: (classesProp?: Partial<Record<"label" | "root" | "e
9823
9905
  readonly cx: (...args: any) => string;
9824
9906
  };
9825
9907
 
9826
- declare const useClasses_73: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "rightSidePanel" | "applyButton" | "dropdown" | "baseDropdownSelection" | "leftSidePanel" | "actionBar", string>>, addStatic?: boolean) => {
9908
+ declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "rightSidePanel" | "applyButton" | "dropdown" | "baseDropdownSelection" | "leftSidePanel" | "actionBar", string>>, addStatic?: boolean) => {
9827
9909
  readonly classes: {
9828
9910
  dropdown: string;
9829
9911
  panel: string;
@@ -9840,7 +9922,7 @@ declare const useClasses_73: (classesProp?: Partial<Record<"space" | "header" |
9840
9922
  readonly cx: (...args: any) => string;
9841
9923
  };
9842
9924
 
9843
- declare const useClasses_74: (classesProp?: Partial<Record<"name" | "small" | "root" | "separator" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
9925
+ declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "root" | "separator" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
9844
9926
  readonly classes: {
9845
9927
  root: string;
9846
9928
  name: string;
@@ -9853,7 +9935,7 @@ declare const useClasses_74: (classesProp?: Partial<Record<"name" | "small" | "r
9853
9935
  readonly cx: (...args: any) => string;
9854
9936
  };
9855
9937
 
9856
- declare const useClasses_75: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "positionFixed" | "positionSticky" | "actions" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton", string>>, addStatic?: boolean) => {
9938
+ declare const useClasses_77: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "positionFixed" | "positionSticky" | "actions" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton", string>>, addStatic?: boolean) => {
9857
9939
  readonly classes: {
9858
9940
  root: string;
9859
9941
  positionSticky: string;
@@ -9872,7 +9954,7 @@ declare const useClasses_75: (classesProp?: Partial<Record<"name" | "root" | "se
9872
9954
  readonly cx: (...args: any) => string;
9873
9955
  };
9874
9956
 
9875
- declare const useClasses_76: (classesProp?: Partial<Record<"container" | "root" | "direction-xs-column" | "direction-xs-row-reverse" | "wrap-xs-nowrap" | "wrap-xs-wrap-reverse" | "item" | "zeroMinWidth" | "spacing-xs-1" | "spacing-xs-2" | "spacing-xs-3" | "spacing-xs-4" | "spacing-xs-5" | "spacing-xs-6" | "spacing-xs-7" | "spacing-xs-8" | "spacing-xs-9" | "spacing-xs-10" | "grid-xs-auto" | "grid-xs-true" | "grid-xs-1" | "grid-xs-2" | "grid-xs-3" | "grid-xs-4" | "grid-xs-5" | "grid-xs-6" | "grid-xs-7" | "grid-xs-8" | "grid-xs-9" | "grid-xs-10" | "grid-xs-11" | "grid-xs-12" | "direction-xs-reverse", string>>, addStatic?: boolean) => {
9957
+ declare const useClasses_78: (classesProp?: Partial<Record<"container" | "root" | "direction-xs-column" | "direction-xs-row-reverse" | "wrap-xs-nowrap" | "wrap-xs-wrap-reverse" | "item" | "zeroMinWidth" | "spacing-xs-1" | "spacing-xs-2" | "spacing-xs-3" | "spacing-xs-4" | "spacing-xs-5" | "spacing-xs-6" | "spacing-xs-7" | "spacing-xs-8" | "spacing-xs-9" | "spacing-xs-10" | "grid-xs-auto" | "grid-xs-true" | "grid-xs-1" | "grid-xs-2" | "grid-xs-3" | "grid-xs-4" | "grid-xs-5" | "grid-xs-6" | "grid-xs-7" | "grid-xs-8" | "grid-xs-9" | "grid-xs-10" | "grid-xs-11" | "grid-xs-12" | "direction-xs-reverse", string>>, addStatic?: boolean) => {
9876
9958
  readonly classes: {
9877
9959
  root: string;
9878
9960
  container: string;
@@ -9912,7 +9994,7 @@ declare const useClasses_76: (classesProp?: Partial<Record<"container" | "root"
9912
9994
  readonly cx: (...args: any) => string;
9913
9995
  };
9914
9996
 
9915
- declare const useClasses_77: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root" | "fixed", string>>, addStatic?: boolean) => {
9997
+ declare const useClasses_79: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root" | "fixed", string>>, addStatic?: boolean) => {
9916
9998
  readonly classes: {
9917
9999
  root: string;
9918
10000
  header: string;
@@ -9923,7 +10005,7 @@ declare const useClasses_77: (classesProp?: Partial<Record<"backgroundColor" | "
9923
10005
  readonly cx: (...args: any) => string;
9924
10006
  };
9925
10007
 
9926
- declare const useClasses_78: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10008
+ declare const useClasses_8: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
9927
10009
  readonly classes: {
9928
10010
  root: string;
9929
10011
  };
@@ -9931,25 +10013,25 @@ declare const useClasses_78: (classesProp?: Partial<Record<"root", string>>, add
9931
10013
  readonly cx: (...args: any) => string;
9932
10014
  };
9933
10015
 
9934
- declare const useClasses_79: (classesProp?: Partial<Record<"root" | "separator" | "brandName", string>>, addStatic?: boolean) => {
10016
+ declare const useClasses_80: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
9935
10017
  readonly classes: {
9936
10018
  root: string;
9937
- separator: string;
9938
- brandName: string;
9939
10019
  };
9940
10020
  readonly css: any;
9941
10021
  readonly cx: (...args: any) => string;
9942
10022
  };
9943
10023
 
9944
- declare const useClasses_8: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10024
+ declare const useClasses_81: (classesProp?: Partial<Record<"root" | "separator" | "brandName", string>>, addStatic?: boolean) => {
9945
10025
  readonly classes: {
9946
10026
  root: string;
10027
+ separator: string;
10028
+ brandName: string;
9947
10029
  };
9948
10030
  readonly css: any;
9949
10031
  readonly cx: (...args: any) => string;
9950
10032
  };
9951
10033
 
9952
- declare const useClasses_80: (classesProp?: Partial<Record<"root" | "active" | "list" | "hidden" | "menu" | "menubar", string>>, addStatic?: boolean) => {
10034
+ declare const useClasses_82: (classesProp?: Partial<Record<"root" | "active" | "list" | "hidden" | "menu" | "menubar", string>>, addStatic?: boolean) => {
9953
10035
  readonly classes: {
9954
10036
  root: string;
9955
10037
  menu: string;
@@ -9962,7 +10044,7 @@ declare const useClasses_80: (classesProp?: Partial<Record<"root" | "active" | "
9962
10044
  readonly cx: (...args: any) => string;
9963
10045
  };
9964
10046
 
9965
- declare const useClasses_81: (classesProp?: Partial<Record<"link" | "root" | "selected" | "button" | "menu" | "menubar" | "item", string>>, addStatic?: boolean) => {
10047
+ declare const useClasses_83: (classesProp?: Partial<Record<"link" | "root" | "selected" | "button" | "menu" | "menubar" | "item", string>>, addStatic?: boolean) => {
9966
10048
  readonly classes: {
9967
10049
  root: string;
9968
10050
  menu: string;
@@ -9976,7 +10058,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"link" | "root" | "se
9976
10058
  readonly cx: (...args: any) => string;
9977
10059
  };
9978
10060
 
9979
- declare const useClasses_82: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10061
+ declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
9980
10062
  readonly classes: {
9981
10063
  root: string;
9982
10064
  };
@@ -9984,7 +10066,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"root", string>>, add
9984
10066
  readonly cx: (...args: any) => string;
9985
10067
  };
9986
10068
 
9987
- declare const useClasses_83: (classesProp?: Partial<Record<"root" | "inputBorderContainer" | "inputRoot" | "input" | "icon" | "button" | "text" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
10069
+ declare const useClasses_85: (classesProp?: Partial<Record<"root" | "inputBorderContainer" | "inputRoot" | "input" | "icon" | "button" | "text" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
9988
10070
  readonly classes: {
9989
10071
  root: string;
9990
10072
  inputBorderContainer: string;
@@ -10001,7 +10083,7 @@ declare const useClasses_83: (classesProp?: Partial<Record<"root" | "inputBorder
10001
10083
  readonly cx: (...args: any) => string;
10002
10084
  };
10003
10085
 
10004
- declare const useClasses_84: (classesProp?: Partial<Record<"root" | "visualIndicatorContainer" | "comparisons" | "comparisonContainer" | "comparisonComposition" | "indicatorsContainer" | "indicatorText" | "indicatorUnit" | "spacingToTheRight" | "trendLine", string>>, addStatic?: boolean) => {
10086
+ declare const useClasses_86: (classesProp?: Partial<Record<"root" | "visualIndicatorContainer" | "comparisons" | "comparisonContainer" | "comparisonComposition" | "indicatorsContainer" | "indicatorText" | "indicatorUnit" | "spacingToTheRight" | "trendLine", string>>, addStatic?: boolean) => {
10005
10087
  readonly classes: {
10006
10088
  root: string;
10007
10089
  visualIndicatorContainer: string;
@@ -10018,7 +10100,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root" | "visualIndic
10018
10100
  readonly cx: (...args: any) => string;
10019
10101
  };
10020
10102
 
10021
- declare const useClasses_85: (classesProp?: Partial<Record<"a", string>>, addStatic?: boolean) => {
10103
+ declare const useClasses_87: (classesProp?: Partial<Record<"a", string>>, addStatic?: boolean) => {
10022
10104
  readonly classes: {
10023
10105
  a: string;
10024
10106
  };
@@ -10026,7 +10108,7 @@ declare const useClasses_85: (classesProp?: Partial<Record<"a", string>>, addSta
10026
10108
  readonly cx: (...args: any) => string;
10027
10109
  };
10028
10110
 
10029
- declare const useClasses_86: (classesProp?: Partial<Record<"link" | "root" | "itemSelector" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "selectAllSelector", string>>, addStatic?: boolean) => {
10111
+ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "itemSelector" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "selectAllSelector", string>>, addStatic?: boolean) => {
10030
10112
  readonly classes: {
10031
10113
  root: string;
10032
10114
  virtualizedRoot: string;
@@ -10043,7 +10125,7 @@ declare const useClasses_86: (classesProp?: Partial<Record<"link" | "root" | "it
10043
10125
  readonly cx: (...args: any) => string;
10044
10126
  };
10045
10127
 
10046
- declare const useClasses_87: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "loadingBar" | "blur" | "regular" | "barContainer" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
10128
+ declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "loadingBar" | "blur" | "regular" | "barContainer" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
10047
10129
  readonly classes: {
10048
10130
  root: string;
10049
10131
  barContainer: string;
@@ -10061,35 +10143,35 @@ declare const useClasses_87: (classesProp?: Partial<Record<"overlay" | "label" |
10061
10143
  readonly cx: (...args: any) => string;
10062
10144
  };
10063
10145
 
10064
- declare const useClasses_88: (classesProp?: Partial<Record<"root" | "loading", string>>, addStatic?: boolean) => {
10146
+ declare const useClasses_9: (classesProp?: Partial<Record<"root" | "childGutter" | "labelDisabled", string>>, addStatic?: boolean) => {
10065
10147
  readonly classes: {
10066
10148
  root: string;
10067
- loading: string;
10149
+ labelDisabled: string;
10150
+ childGutter: string;
10068
10151
  };
10069
10152
  readonly css: any;
10070
10153
  readonly cx: (...args: any) => string;
10071
10154
  };
10072
10155
 
10073
- declare const useClasses_89: (classesProp?: Partial<Record<"root" | "formContainer", string>>, addStatic?: boolean) => {
10156
+ declare const useClasses_90: (classesProp?: Partial<Record<"root" | "loading", string>>, addStatic?: boolean) => {
10074
10157
  readonly classes: {
10075
10158
  root: string;
10076
- formContainer: string;
10159
+ loading: string;
10077
10160
  };
10078
10161
  readonly css: any;
10079
10162
  readonly cx: (...args: any) => string;
10080
10163
  };
10081
10164
 
10082
- declare const useClasses_9: (classesProp?: Partial<Record<"root" | "childGutter" | "labelDisabled", string>>, addStatic?: boolean) => {
10165
+ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "formContainer", string>>, addStatic?: boolean) => {
10083
10166
  readonly classes: {
10084
10167
  root: string;
10085
- labelDisabled: string;
10086
- childGutter: string;
10168
+ formContainer: string;
10087
10169
  };
10088
10170
  readonly css: any;
10089
10171
  readonly cx: (...args: any) => string;
10090
10172
  };
10091
10173
 
10092
- declare const useClasses_90: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "multiple" | "splitGroup" | "primaryGhost" | "primarySubtle" | "splitGroupDisabled" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
10174
+ declare const useClasses_92: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "multiple" | "splitGroup" | "primaryGhost" | "primarySubtle" | "splitGroupDisabled" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
10093
10175
  readonly classes: {
10094
10176
  root: string;
10095
10177
  multiple: string;
@@ -10111,7 +10193,7 @@ declare const useClasses_90: (classesProp?: Partial<Record<"secondary" | "primar
10111
10193
  readonly cx: (...args: any) => string;
10112
10194
  };
10113
10195
 
10114
- declare const useClasses_91: (classesProp?: Partial<Record<"tooltipData" | "tooltipAnchor" | "tooltipAnchorParagraph", string>>, addStatic?: boolean) => {
10196
+ declare const useClasses_93: (classesProp?: Partial<Record<"tooltipData" | "tooltipAnchor" | "tooltipAnchorParagraph", string>>, addStatic?: boolean) => {
10115
10197
  readonly classes: {
10116
10198
  tooltipData: string;
10117
10199
  tooltipAnchor: string;
@@ -10121,7 +10203,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"tooltipData" | "tool
10121
10203
  readonly cx: (...args: any) => string;
10122
10204
  };
10123
10205
 
10124
- declare const useClasses_92: (classesProp?: Partial<Record<"color" | "root" | "title" | "popper" | "separator" | "tooltip" | "values" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
10206
+ declare const useClasses_94: (classesProp?: Partial<Record<"color" | "root" | "title" | "popper" | "separator" | "tooltip" | "values" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
10125
10207
  readonly classes: {
10126
10208
  root: string;
10127
10209
  tooltip: string;
@@ -10139,7 +10221,7 @@ declare const useClasses_92: (classesProp?: Partial<Record<"color" | "root" | "t
10139
10221
  readonly cx: (...args: any) => string;
10140
10222
  };
10141
10223
 
10142
- declare const useClasses_93: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10224
+ declare const useClasses_95: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10143
10225
  readonly classes: {
10144
10226
  root: string;
10145
10227
  };
@@ -10147,7 +10229,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"root", string>>, add
10147
10229
  readonly cx: (...args: any) => string;
10148
10230
  };
10149
10231
 
10150
- declare const useClasses_94: (classesProp?: Partial<Record<"root" | "progress" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
10232
+ declare const useClasses_96: (classesProp?: Partial<Record<"root" | "progress" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
10151
10233
  readonly classes: {
10152
10234
  root: string;
10153
10235
  progress: string;
@@ -10162,7 +10244,7 @@ declare const useClasses_94: (classesProp?: Partial<Record<"root" | "progress" |
10162
10244
  readonly cx: (...args: any) => string;
10163
10245
  };
10164
10246
 
10165
- declare const useClasses_95: (classesProp?: Partial<Record<"root" | "topGroup" | "subGroup" | "subRulesContainer" | "topActionButtonContainer" | "createConditionButton" | "createGroupButton" | "removeButton" | "combinator" | "topCombinator" | "combinatorButton" | "topRemoveButton" | "topRemoveButtonDisabled" | "rulesContainer" | "actionButtonContainer" | "topRulesContainer" | "buttonBackground", string>>, addStatic?: boolean) => {
10247
+ 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) => {
10166
10248
  readonly classes: {
10167
10249
  root: string;
10168
10250
  topGroup: string;
@@ -10186,7 +10268,7 @@ declare const useClasses_95: (classesProp?: Partial<Record<"root" | "topGroup" |
10186
10268
  readonly cx: (...args: any) => string;
10187
10269
  };
10188
10270
 
10189
- declare const useClasses_96: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "semantic" | "radio" | "checked" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
10271
+ declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "semantic" | "radio" | "checked" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
10190
10272
  readonly classes: {
10191
10273
  root: string;
10192
10274
  container: string;
@@ -10203,7 +10285,7 @@ declare const useClasses_96: (classesProp?: Partial<Record<"container" | "label"
10203
10285
  readonly cx: (...args: any) => string;
10204
10286
  };
10205
10287
 
10206
- declare const useClasses_97: (classesProp?: Partial<Record<"root" | "icon" | "button" | "text" | "notSelected", string>>, addStatic?: boolean) => {
10288
+ declare const useClasses_99: (classesProp?: Partial<Record<"root" | "icon" | "button" | "text" | "notSelected", string>>, addStatic?: boolean) => {
10207
10289
  readonly classes: {
10208
10290
  root: string;
10209
10291
  icon: string;
@@ -10215,29 +10297,6 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "icon" | "bu
10215
10297
  readonly cx: (...args: any) => string;
10216
10298
  };
10217
10299
 
10218
- declare const useClasses_98: (classesProp?: Partial<Record<"root" | "positionFixed" | "positionAbsolute", string>>, addStatic?: boolean) => {
10219
- readonly classes: {
10220
- root: string;
10221
- positionAbsolute: string;
10222
- positionFixed: string;
10223
- };
10224
- readonly css: any;
10225
- readonly cx: (...args: any) => string;
10226
- };
10227
-
10228
- declare const useClasses_99: (classesProp?: Partial<Record<"root" | "selected" | "button" | "text" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
10229
- readonly classes: {
10230
- root: string;
10231
- button: string;
10232
- text: string;
10233
- selected: string;
10234
- bullet: string;
10235
- bulletSelected: string;
10236
- };
10237
- readonly css: any;
10238
- readonly cx: (...args: any) => string;
10239
- };
10240
-
10241
10300
  export declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: React.RefObject<T>, handler: (event: HvClickOutsideEvent) => void) => void;
10242
10301
 
10243
10302
  export declare const useComputation: (valueFn: Function, valueFallback?: Function) => (Function | undefined)[];