@hitachivantara/uikit-react-core 5.83.1 → 5.84.1

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 (34) 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/MultiButton/MultiButton.js.map +1 -1
  27. package/dist/esm/Select/Select.js +5 -3
  28. package/dist/esm/Select/Select.js.map +1 -1
  29. package/dist/esm/Select/Select.styles.js +7 -1
  30. package/dist/esm/Select/Select.styles.js.map +1 -1
  31. package/dist/esm/index.js +128 -126
  32. package/dist/esm/index.js.map +1 -1
  33. package/dist/types/index.d.ts +314 -252
  34. 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
  /**
@@ -4572,9 +4605,12 @@ declare interface HvMetaBase<D extends object = Record<string, unknown>, H exten
4572
4605
  userProps: any;
4573
4606
  }
4574
4607
 
4608
+ /**
4609
+ * Multi-buttons are grouped sets of buttons displayed horizontally or vertically in the same container.
4610
+ */
4575
4611
  export declare const HvMultiButton: (props: HvMultiButtonProps) => JSX_3.Element;
4576
4612
 
4577
- export declare type HvMultiButtonClasses = ExtractNames<typeof useClasses_90>;
4613
+ export declare type HvMultiButtonClasses = ExtractNames<typeof useClasses_92>;
4578
4614
 
4579
4615
  export declare interface HvMultiButtonProps extends HvBaseProps {
4580
4616
  /** If all the buttons are disabled. */
@@ -4649,7 +4685,7 @@ export declare interface HvOptionProps<OptionValue extends {}> extends Omit<HvLi
4649
4685
  */
4650
4686
  export declare const HvOverflowTooltip: (props: HvOverflowTooltipProps) => JSX_3.Element;
4651
4687
 
4652
- export declare type HvOverflowTooltipClasses = ExtractNames<typeof useClasses_91>;
4688
+ export declare type HvOverflowTooltipClasses = ExtractNames<typeof useClasses_93>;
4653
4689
 
4654
4690
  export declare interface HvOverflowTooltipProps extends HvBaseProps {
4655
4691
  /** The node that will be rendered inside the tooltip. */
@@ -4718,7 +4754,7 @@ export declare interface HvPaginationProps extends HvBaseProps {
4718
4754
  */
4719
4755
  export declare const HvPanel: ForwardRefExoticComponent<HvPanelProps & RefAttributes<HTMLDivElement>>;
4720
4756
 
4721
- export declare type HvPanelClasses = ExtractNames<typeof useClasses_93>;
4757
+ export declare type HvPanelClasses = ExtractNames<typeof useClasses_95>;
4722
4758
 
4723
4759
  export declare interface HvPanelProps extends HvBaseProps {
4724
4760
  /** A Jss Object used to override or extend the styles applied. */
@@ -4729,7 +4765,7 @@ export declare type HvPolarizedColorKeys = "positive" | "positive_120" | "positi
4729
4765
 
4730
4766
  export declare const HvProgressBar: (props: HvProgressBarProps) => JSX_3.Element;
4731
4767
 
4732
- export declare type HvProgressBarClasses = ExtractNames<typeof useClasses_94>;
4768
+ export declare type HvProgressBarClasses = ExtractNames<typeof useClasses_96>;
4733
4769
 
4734
4770
  /**
4735
4771
  * ProgressBar provides feedback about a process that is taking place in the application.
@@ -4856,7 +4892,7 @@ export declare interface HvQueryBuilderChangedQuery extends Omit<HvQueryBuilderQ
4856
4892
  rules: Array<Omit<HvQueryBuilderQueryRule, "id"> | HvQueryBuilderChangedQuery>;
4857
4893
  }
4858
4894
 
4859
- export declare type HvQueryBuilderClasses = ExtractNames<typeof useClasses_95>;
4895
+ export declare type HvQueryBuilderClasses = ExtractNames<typeof useClasses_97>;
4860
4896
 
4861
4897
  declare interface HvQueryBuilderContextValue {
4862
4898
  dispatchAction: React.Dispatch<QueryAction>;
@@ -5110,7 +5146,7 @@ export declare type HvQueryBuilderRenderers = Record<string, ValueRenderer>;
5110
5146
  */
5111
5147
  export declare const HvRadio: ForwardRefExoticComponent<Omit<HvRadioProps, "ref"> & RefAttributes<HTMLButtonElement>>;
5112
5148
 
5113
- export declare type HvRadioClasses = ExtractNames<typeof useClasses_96>;
5149
+ export declare type HvRadioClasses = ExtractNames<typeof useClasses_98>;
5114
5150
 
5115
5151
  /**
5116
5152
  * A group of radio buttons.
@@ -5331,7 +5367,7 @@ declare type HvRowPropGetter<D extends object = Record<string, unknown>, H exten
5331
5367
  */
5332
5368
  export declare const HvScrollToHorizontal: (props: HvScrollToHorizontalProps) => JSX_3.Element;
5333
5369
 
5334
- export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_100>;
5370
+ export declare type HvScrollToHorizontalClasses = ExtractNames<typeof useClasses_102>;
5335
5371
 
5336
5372
  /** @deprecated use `HvScrollToOption` */
5337
5373
  export declare type HvScrollToHorizontalOption = HvScrollToOption;
@@ -5416,7 +5452,7 @@ export declare type HvScrollToTooltipPositions = "left" | "right" | "top" | "bot
5416
5452
  */
5417
5453
  export declare const HvScrollToVertical: (props: HvScrollToVerticalProps) => JSX_3.Element;
5418
5454
 
5419
- export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_98>;
5455
+ export declare type HvScrollToVerticalClasses = ExtractNames<typeof useClasses_100>;
5420
5456
 
5421
5457
  /** @deprecated use `HvScrollToOption` */
5422
5458
  export declare type HvScrollToVerticalOption = HvScrollToOption;
@@ -5492,7 +5528,7 @@ export declare interface HvScrollToVerticalProps extends HvBaseProps<HTMLOListEl
5492
5528
  */
5493
5529
  export declare const HvSection: ForwardRefExoticComponent<HvSectionProps & RefAttributes<HTMLDivElement>>;
5494
5530
 
5495
- export declare type HvSectionClasses = ExtractNames<typeof useClasses_101>;
5531
+ export declare type HvSectionClasses = ExtractNames<typeof useClasses_103>;
5496
5532
 
5497
5533
  export declare interface HvSectionProps extends Omit<HvBaseProps<HTMLDivElement>, "title" | "onToggle"> {
5498
5534
  /** The title of the section */
@@ -5622,7 +5658,7 @@ export declare type HvSequentialColorKeys = "cat1" | "cat1_100" | "cat1_200" | "
5622
5658
 
5623
5659
  export declare const HvSimpleGrid: (props: HvSimpleGridProps) => JSX_3.Element;
5624
5660
 
5625
- export declare type HvSimpleGridClasses = ExtractNames<typeof useClasses_102>;
5661
+ export declare type HvSimpleGridClasses = ExtractNames<typeof useClasses_104>;
5626
5662
 
5627
5663
  /** Grid component that enables you to create columns of equal width and define your own breakpoints and responsive behavior. */
5628
5664
  export declare interface HvSimpleGridProps extends HvBaseProps {
@@ -5669,7 +5705,7 @@ export { HvSize }
5669
5705
  */
5670
5706
  export declare const HvSkeleton: (props: HvSkeletonProps) => JSX_3.Element;
5671
5707
 
5672
- export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_131>;
5708
+ export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_133>;
5673
5709
 
5674
5710
  export declare interface HvSkeletonProps extends HvBaseProps {
5675
5711
  /** Whether the skeleton element is hidden or not. */
@@ -5693,7 +5729,7 @@ export declare interface HvSkeletonProps extends HvBaseProps {
5693
5729
  */
5694
5730
  export declare const HvSlider: ForwardRefExoticComponent<HvSliderProps & RefAttributes<SliderRef>>;
5695
5731
 
5696
- export declare type HvSliderClasses = ExtractNames<typeof useClasses_103>;
5732
+ export declare type HvSliderClasses = ExtractNames<typeof useClasses_105>;
5697
5733
 
5698
5734
  export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onChange" | "onBlur"> {
5699
5735
  /** The slider name. */
@@ -5793,11 +5829,11 @@ export declare interface HvSliderProps extends HvBaseProps<HTMLDivElement, "onCh
5793
5829
  */
5794
5830
  export declare const HvSnackbar: ForwardRefExoticComponent<Omit<HvSnackbarProps, "ref"> & RefAttributes<unknown>>;
5795
5831
 
5796
- export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_104>;
5832
+ export declare type HvSnackbarClasses = ExtractNames<typeof useClasses_106>;
5797
5833
 
5798
5834
  export declare const HvSnackbarContent: ForwardRefExoticComponent<Omit<HvSnackbarContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
5799
5835
 
5800
- export declare type HvSnackbarContentClasses = ExtractNames<typeof useClasses_105>;
5836
+ export declare type HvSnackbarContentClasses = ExtractNames<typeof useClasses_107>;
5801
5837
 
5802
5838
  export declare interface HvSnackbarContentProps extends Omit<SnackbarContentProps, "variant" | "action" | "classes"> {
5803
5839
  /** The message to display. */
@@ -5873,7 +5909,7 @@ export declare interface HvSnackbarProps extends Omit<SnackbarProps, "action" |
5873
5909
 
5874
5910
  export declare const HvSnackbarProvider: ({ children, notistackClassesOverride, maxSnack, autoHideDuration, anchorOrigin, classes: classesProp, className, container, ...others }: HvSnackbarProviderProps) => JSX_3.Element;
5875
5911
 
5876
- export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_106>;
5912
+ export declare type HvSnackbarProviderClasses = ExtractNames<typeof useClasses_108>;
5877
5913
 
5878
5914
  export declare interface HvSnackbarProviderProps {
5879
5915
  /** Your component tree. */
@@ -5906,7 +5942,7 @@ export declare const HvStack: (props: HvStackProps) => JSX_3.Element;
5906
5942
  export declare interface HvStackBreakpoints extends Record<HvBreakpoints, string> {
5907
5943
  }
5908
5944
 
5909
- export declare type HvStackClasses = ExtractNames<typeof useClasses_107>;
5945
+ export declare type HvStackClasses = ExtractNames<typeof useClasses_109>;
5910
5946
 
5911
5947
  export declare type HvStackDirection = "column" | "row" | Partial<HvStackBreakpoints>;
5912
5948
 
@@ -5983,7 +6019,7 @@ export declare type HvSupportColors = Record<HvSupportColorKeys, string>;
5983
6019
  */
5984
6020
  export declare const HvSwitch: ForwardRefExoticComponent<Omit<HvSwitchProps, "ref"> & RefAttributes<HTMLButtonElement>>;
5985
6021
 
5986
- export declare type HvSwitchClasses = ExtractNames<typeof useClasses_108>;
6022
+ export declare type HvSwitchClasses = ExtractNames<typeof useClasses_110>;
5987
6023
 
5988
6024
  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
6025
 
@@ -6094,7 +6130,7 @@ export declare interface HvSwitchProps extends Omit<SwitchProps, "color" | "onCh
6094
6130
 
6095
6131
  export declare const HvTab: ForwardRefExoticComponent<Omit<HvTabProps, "ref"> & RefAttributes<HTMLDivElement>>;
6096
6132
 
6097
- export declare type HvTabClasses = ExtractNames<typeof useClasses_109>;
6133
+ export declare type HvTabClasses = ExtractNames<typeof useClasses_111>;
6098
6134
 
6099
6135
  /**
6100
6136
  * A table gathers relational data. It displays values arranged to allow quick numerical analysis like comparison and sorting.
@@ -6114,7 +6150,7 @@ export declare const HvTable: ForwardRefExoticComponent<HvTableProps & RefAttrib
6114
6150
  */
6115
6151
  export declare const HvTableBody: ForwardRefExoticComponent<HvTableBodyProps & RefAttributes<HTMLElement>>;
6116
6152
 
6117
- export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_111>;
6153
+ export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_113>;
6118
6154
 
6119
6155
  export declare interface HvTableBodyProps extends HvBaseProps<HTMLTableSectionElement, "children"> {
6120
6156
  /**
@@ -6202,7 +6238,7 @@ export declare interface HvTableColumnOptions<D extends object = Record<string,
6202
6238
  */
6203
6239
  export declare const HvTableContainer: ForwardRefExoticComponent<HvTableContainerProps & RefAttributes<HTMLElement>>;
6204
6240
 
6205
- export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_110>;
6241
+ export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_112>;
6206
6242
 
6207
6243
  export declare interface HvTableContainerProps extends HvBaseProps<HTMLDivElement, "children"> {
6208
6244
  /**
@@ -6226,7 +6262,7 @@ export declare type HvTableDefinitionConfig<D extends object = Record<string, un
6226
6262
  */
6227
6263
  export declare const HvTableHead: ForwardRefExoticComponent<HvTableHeadProps & RefAttributes<HTMLElement>>;
6228
6264
 
6229
- export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_112>;
6265
+ export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_114>;
6230
6266
 
6231
6267
  /**
6232
6268
  * `HvTableHeader` acts as a `th` element and inherits styles from its context
@@ -6399,7 +6435,7 @@ export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement
6399
6435
  */
6400
6436
  export declare const HvTableSection: ForwardRefExoticComponent<HvTableSectionProps & RefAttributes<HTMLDivElement>>;
6401
6437
 
6402
- export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_130>;
6438
+ export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_132>;
6403
6439
 
6404
6440
  export declare interface HvTableSectionProps extends HvSectionProps {
6405
6441
  }
@@ -6429,7 +6465,7 @@ export declare interface HvTabProps extends Omit<TabProps, "children"> {
6429
6465
  */
6430
6466
  export declare const HvTabs: ForwardRefExoticComponent<Omit<HvTabsProps, "ref"> & RefAttributes<HTMLDivElement>>;
6431
6467
 
6432
- export declare type HvTabsClasses = ExtractNames<typeof useClasses_114>;
6468
+ export declare type HvTabsClasses = ExtractNames<typeof useClasses_116>;
6433
6469
 
6434
6470
  export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
6435
6471
  /**
@@ -6461,7 +6497,7 @@ export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
6461
6497
  */
6462
6498
  export declare const HvTag: ForwardRefExoticComponent<Omit<HvTagProps, "ref"> & RefAttributes<HTMLElement>>;
6463
6499
 
6464
- export declare type HvTagClasses = ExtractNames<typeof useClasses_113>;
6500
+ export declare type HvTagClasses = ExtractNames<typeof useClasses_115>;
6465
6501
 
6466
6502
  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
6503
 
@@ -6504,7 +6540,7 @@ export declare interface HvTagProps extends Omit<HvButtonBaseProps, "type" | "co
6504
6540
  */
6505
6541
  export declare const HvTagsInput: ForwardRefExoticComponent<HvTagsInputProps & RefAttributes<HTMLUListElement>>;
6506
6542
 
6507
- export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_115>;
6543
+ export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_117>;
6508
6544
 
6509
6545
  export declare interface HvTagsInputProps extends Omit<HvInputProps, "onChange" | "onBlur" | "onFocus" | "onKeyDown" | "value" | "defaultValue"> {
6510
6546
  /** The value of the form element. */
@@ -6555,7 +6591,7 @@ export declare interface HvTagSuggestion extends HvInputSuggestion {
6555
6591
  */
6556
6592
  export declare const HvTextArea: ForwardRefExoticComponent<HvTextAreaProps & RefAttributes<HTMLTextAreaElement>>;
6557
6593
 
6558
- export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_116>;
6594
+ export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_118>;
6559
6595
 
6560
6596
  export declare interface HvTextAreaProps extends Omit<HvBaseInputProps, "onChange" | "onBlur" | "rows" | "classes" | "onFocus" | "placeholder"> {
6561
6597
  /** The placeholder value of the text area. */
@@ -6737,7 +6773,7 @@ export declare const HvTimeAgo: <C extends ElementType<any, keyof JSX_2.Intrinsi
6737
6773
  ref?: PolymorphicRef<C> | undefined;
6738
6774
  } & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
6739
6775
 
6740
- export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_117>;
6776
+ export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_119>;
6741
6777
 
6742
6778
  export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = PolymorphicComponentRef<C, {
6743
6779
  /**
@@ -6773,7 +6809,7 @@ export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = Polymorp
6773
6809
  */
6774
6810
  export declare const HvTimePicker: ForwardRefExoticComponent<HvTimePickerProps & RefAttributes<HTMLDivElement>>;
6775
6811
 
6776
- export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_118>;
6812
+ export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_120>;
6777
6813
 
6778
6814
  export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
6779
6815
 
@@ -6850,7 +6886,7 @@ export declare interface HvToggleButtonProps extends HvBaseProps<HTMLButtonEleme
6850
6886
  */
6851
6887
  export declare const HvTooltip: ForwardRefExoticComponent<Omit<HvTooltipProps, "ref"> & RefAttributes<unknown>>;
6852
6888
 
6853
- export declare type HvTooltipClasses = ExtractNames<typeof useClasses_92>;
6889
+ export declare type HvTooltipClasses = ExtractNames<typeof useClasses_94>;
6854
6890
 
6855
6891
  export declare type HvTooltipPlacementType = TooltipProps["placement"];
6856
6892
 
@@ -6897,7 +6933,7 @@ export declare interface HvTooltipProps extends Omit<TooltipProps, "classes"> {
6897
6933
  containerId?: string;
6898
6934
  }
6899
6935
 
6900
- declare type HvTreeContentClasses = ExtractNames<typeof useClasses_121>;
6936
+ declare type HvTreeContentClasses = ExtractNames<typeof useClasses_123>;
6901
6937
 
6902
6938
  export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLElement> {
6903
6939
  /** className applied to the root element. */
@@ -6918,7 +6954,7 @@ export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLEle
6918
6954
 
6919
6955
  export declare const HvTreeItem: ForwardRefExoticComponent<HvTreeItemProps & RefAttributes<HTMLLIElement>>;
6920
6956
 
6921
- export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_120>;
6957
+ export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_122>;
6922
6958
 
6923
6959
  export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElement> {
6924
6960
  /** The element id */
@@ -6973,7 +7009,7 @@ export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElemen
6973
7009
  */
6974
7010
  export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
6975
7011
 
6976
- export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_119>;
7012
+ export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_121>;
6977
7013
 
6978
7014
  export declare interface HvTreeViewProps<Multiple extends boolean | undefined> extends HvBaseProps<HTMLUListElement>, DefaultTreeViewPluginParameters<Multiple> {
6979
7015
  /** A Jss Object used to override or extend the styles applied. */
@@ -7129,7 +7165,7 @@ export declare const HvVerticalNavigation: ForwardRefExoticComponent<HvVerticalN
7129
7165
 
7130
7166
  export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) => JSX_3.Element;
7131
7167
 
7132
- export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_125>;
7168
+ export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_127>;
7133
7169
 
7134
7170
  export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonProps, "classes" | "icon"> {
7135
7171
  /** A Jss Object used to override or extend the styles applied to the component. */
@@ -7142,18 +7178,18 @@ export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonPr
7142
7178
 
7143
7179
  export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) => JSX_3.Element;
7144
7180
 
7145
- export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_124>;
7181
+ export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_126>;
7146
7182
 
7147
7183
  export declare interface HvVerticalNavigationActionsProps extends HvBaseProps {
7148
7184
  /** A Jss Object used to override or extend the styles applied to the component. */
7149
7185
  classes?: HvVerticalNavigationActionsClasses;
7150
7186
  }
7151
7187
 
7152
- export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_122>;
7188
+ export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_124>;
7153
7189
 
7154
7190
  export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) => JSX_3.Element | null;
7155
7191
 
7156
- export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_123>;
7192
+ export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_125>;
7157
7193
 
7158
7194
  export declare interface HvVerticalNavigationHeaderProps extends HvBaseProps {
7159
7195
  /** The title text to show on header. */
@@ -7200,7 +7236,7 @@ export declare interface HvVerticalNavigationProps extends HvBaseProps<HTMLDivEl
7200
7236
 
7201
7237
  export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) => JSX_3.Element;
7202
7238
 
7203
- export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_127>;
7239
+ export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_129>;
7204
7240
 
7205
7241
  export declare interface HvVerticalNavigationSliderProps extends Omit<HvListContainerProps, "classes"> {
7206
7242
  /** A Jss Object used to override or extend the styles applied. */
@@ -7228,7 +7264,7 @@ export declare interface HvVerticalNavigationSliderProps extends Omit<HvListCont
7228
7264
 
7229
7265
  export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) => JSX_3.Element;
7230
7266
 
7231
- export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_126>;
7267
+ export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_128>;
7232
7268
 
7233
7269
  export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLDivElement, "onChange" | "onToggle"> {
7234
7270
  /** A Jss Object used to override or extend the styles applied. */
@@ -7272,11 +7308,11 @@ export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLD
7272
7308
 
7273
7309
  export declare const HvVerticalNavigationTreeView: ForwardRefExoticComponent<HvVerticalNavigationTreeViewProps & RefAttributes<HTMLUListElement>>;
7274
7310
 
7275
- export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_128>;
7311
+ export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_130>;
7276
7312
 
7277
7313
  export declare const HvVerticalNavigationTreeViewItem: ForwardRefExoticComponent<HvVerticalNavigationTreeViewItemProps & RefAttributes<unknown>>;
7278
7314
 
7279
- export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_129>;
7315
+ export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_131>;
7280
7316
 
7281
7317
  export declare interface HvVerticalNavigationTreeViewItemProps {
7282
7318
  /**
@@ -7380,7 +7416,7 @@ export declare interface HvVerticalNavigationTreeViewProps extends HvBaseProps<H
7380
7416
  disabledItemsFocusable?: boolean;
7381
7417
  }
7382
7418
 
7383
- export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useClasses_97>;
7419
+ export declare type HvVerticalScrollListItemClasses = ExtractNames<typeof useClasses_99>;
7384
7420
 
7385
7421
  /**
7386
7422
  * Provides the user with a descriptive text, signaling an error, for when the form element is in an invalid state.
@@ -8327,7 +8363,30 @@ declare const useClasses_10: (classesProp?: Partial<Record<"root" | "gutter" | "
8327
8363
  readonly cx: (...args: any) => string;
8328
8364
  };
8329
8365
 
8330
- declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "positionFixed" | "positionSticky" | "notSelectedRoot", string>>, addStatic?: boolean) => {
8366
+ declare const useClasses_100: (classesProp?: Partial<Record<"root" | "positionFixed" | "positionAbsolute", string>>, addStatic?: boolean) => {
8367
+ readonly classes: {
8368
+ root: string;
8369
+ positionAbsolute: string;
8370
+ positionFixed: string;
8371
+ };
8372
+ readonly css: any;
8373
+ readonly cx: (...args: any) => string;
8374
+ };
8375
+
8376
+ declare const useClasses_101: (classesProp?: Partial<Record<"root" | "selected" | "button" | "text" | "bullet" | "bulletSelected", string>>, addStatic?: boolean) => {
8377
+ readonly classes: {
8378
+ root: string;
8379
+ button: string;
8380
+ text: string;
8381
+ selected: string;
8382
+ bullet: string;
8383
+ bulletSelected: string;
8384
+ };
8385
+ readonly css: any;
8386
+ readonly cx: (...args: any) => string;
8387
+ };
8388
+
8389
+ declare const useClasses_102: (classesProp?: Partial<Record<"root" | "selected" | "notSelected" | "positionFixed" | "positionSticky" | "notSelectedRoot", string>>, addStatic?: boolean) => {
8331
8390
  readonly classes: {
8332
8391
  root: string;
8333
8392
  positionSticky: string;
@@ -8340,7 +8399,7 @@ declare const useClasses_100: (classesProp?: Partial<Record<"root" | "selected"
8340
8399
  readonly cx: (...args: any) => string;
8341
8400
  };
8342
8401
 
8343
- declare const useClasses_101: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8402
+ declare const useClasses_103: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8344
8403
  readonly classes: {
8345
8404
  root: string;
8346
8405
  hidden: string;
@@ -8355,7 +8414,7 @@ declare const useClasses_101: (classesProp?: Partial<Record<"content" | "header"
8355
8414
  readonly cx: (...args: any) => string;
8356
8415
  };
8357
8416
 
8358
- declare const useClasses_102: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8417
+ declare const useClasses_104: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8359
8418
  readonly classes: {
8360
8419
  root: string;
8361
8420
  };
@@ -8363,7 +8422,7 @@ declare const useClasses_102: (classesProp?: Partial<Record<"root", string>>, ad
8363
8422
  readonly cx: (...args: any) => string;
8364
8423
  };
8365
8424
 
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) => {
8425
+ 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
8426
  readonly classes: {
8368
8427
  sliderBase: string;
8369
8428
  rootDisabled: string;
@@ -8388,7 +8447,7 @@ declare const useClasses_103: (classesProp?: Partial<Record<"label" | "root" | "
8388
8447
  readonly cx: (...args: any) => string;
8389
8448
  };
8390
8449
 
8391
- declare const useClasses_104: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
8450
+ declare const useClasses_106: (classesProp?: Partial<Record<"root" | "anchorOriginTopRight" | "anchorOriginBottomRight" | "anchorOriginTopLeft" | "anchorOriginBottomLeft" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
8392
8451
  readonly classes: {
8393
8452
  root: string;
8394
8453
  anchorOriginTopRight: string;
@@ -8402,7 +8461,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"root" | "anchorOrig
8402
8461
  readonly cx: (...args: any) => string;
8403
8462
  };
8404
8463
 
8405
- declare const useClasses_105: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "success" | "error" | "message" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
8464
+ declare const useClasses_107: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "success" | "error" | "message" | "messageSpan" | "messageText" | "iconVariant", string>>, addStatic?: boolean) => {
8406
8465
  readonly classes: {
8407
8466
  root: string;
8408
8467
  success: string;
@@ -8419,7 +8478,7 @@ declare const useClasses_105: (classesProp?: Partial<Record<"warning" | "root" |
8419
8478
  readonly cx: (...args: any) => string;
8420
8479
  };
8421
8480
 
8422
- declare const useClasses_106: (classesProp?: Partial<Record<"snackItemRoot", string>>, addStatic?: boolean) => {
8481
+ declare const useClasses_108: (classesProp?: Partial<Record<"snackItemRoot", string>>, addStatic?: boolean) => {
8423
8482
  readonly classes: {
8424
8483
  snackItemRoot: string;
8425
8484
  };
@@ -8427,7 +8486,7 @@ declare const useClasses_106: (classesProp?: Partial<Record<"snackItemRoot", str
8427
8486
  readonly cx: (...args: any) => string;
8428
8487
  };
8429
8488
 
8430
- declare const useClasses_107: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "divider" | "row" | "column", string>>, addStatic?: boolean) => {
8489
+ declare const useClasses_109: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "divider" | "row" | "column", string>>, addStatic?: boolean) => {
8431
8490
  readonly classes: {
8432
8491
  root: string;
8433
8492
  column: string;
@@ -8443,44 +8502,44 @@ declare const useClasses_107: (classesProp?: Partial<Record<"xs" | "sm" | "md" |
8443
8502
  readonly cx: (...args: any) => string;
8444
8503
  };
8445
8504
 
8446
- declare const useClasses_108: (classesProp?: Partial<Record<"label" | "root" | "invalidSwitch" | "error" | "switchContainer", string>>, addStatic?: boolean) => {
8505
+ declare const useClasses_11: (classesProp?: Partial<Record<"root" | "warningText" | "topGutter" | "defaultIcon" | "show" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8447
8506
  readonly classes: {
8448
8507
  root: string;
8449
- label: string;
8450
- error: string;
8451
- switchContainer: string;
8452
- invalidSwitch: string;
8508
+ defaultIcon: string;
8509
+ warningText: string;
8510
+ show: string;
8511
+ topGutter: string;
8512
+ hideText: string;
8513
+ topBorder: string;
8453
8514
  };
8454
8515
  readonly css: any;
8455
8516
  readonly cx: (...args: any) => string;
8456
8517
  };
8457
8518
 
8458
- declare const useClasses_109: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8519
+ declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "invalidSwitch" | "error" | "switchContainer", string>>, addStatic?: boolean) => {
8459
8520
  readonly classes: {
8460
8521
  root: string;
8461
- focusVisible: string;
8462
- selected: string;
8463
- disabled: string;
8522
+ label: string;
8523
+ error: string;
8524
+ switchContainer: string;
8525
+ invalidSwitch: string;
8464
8526
  };
8465
8527
  readonly css: any;
8466
8528
  readonly cx: (...args: any) => string;
8467
8529
  };
8468
8530
 
8469
- declare const useClasses_11: (classesProp?: Partial<Record<"root" | "warningText" | "topGutter" | "defaultIcon" | "show" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8531
+ declare const useClasses_111: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8470
8532
  readonly classes: {
8471
8533
  root: string;
8472
- defaultIcon: string;
8473
- warningText: string;
8474
- show: string;
8475
- topGutter: string;
8476
- hideText: string;
8477
- topBorder: string;
8534
+ focusVisible: string;
8535
+ selected: string;
8536
+ disabled: string;
8478
8537
  };
8479
8538
  readonly css: any;
8480
8539
  readonly cx: (...args: any) => string;
8481
8540
  };
8482
8541
 
8483
- declare const useClasses_110: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8542
+ declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8484
8543
  readonly classes: {
8485
8544
  root: string;
8486
8545
  };
@@ -8488,7 +8547,7 @@ declare const useClasses_110: (classesProp?: Partial<Record<"root", string>>, ad
8488
8547
  readonly cx: (...args: any) => string;
8489
8548
  };
8490
8549
 
8491
- declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8550
+ declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8492
8551
  readonly classes: {
8493
8552
  root: string;
8494
8553
  };
@@ -8496,7 +8555,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
8496
8555
  readonly cx: (...args: any) => string;
8497
8556
  };
8498
8557
 
8499
- declare const useClasses_112: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
8558
+ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
8500
8559
  readonly classes: {
8501
8560
  root: string;
8502
8561
  stickyHeader: string;
@@ -8505,7 +8564,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"root" | "stickyHead
8505
8564
  readonly cx: (...args: any) => string;
8506
8565
  };
8507
8566
 
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) => {
8567
+ 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
8568
  readonly classes: {
8510
8569
  root: string;
8511
8570
  categorical: string;
@@ -8527,7 +8586,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"label" | "root" | "
8527
8586
  readonly cx: (...args: any) => string;
8528
8587
  };
8529
8588
 
8530
- declare const useClasses_114: (classesProp?: Partial<Record<"root" | "floating" | "flexContainer" | "scroller" | "indicator", string>>, addStatic?: boolean) => {
8589
+ declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating" | "flexContainer" | "scroller" | "indicator", string>>, addStatic?: boolean) => {
8531
8590
  readonly classes: {
8532
8591
  root: string;
8533
8592
  indicator: string;
@@ -8539,7 +8598,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "floating"
8539
8598
  readonly cx: (...args: any) => string;
8540
8599
  };
8541
8600
 
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) => {
8601
+ 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
8602
  readonly classes: {
8544
8603
  input: string;
8545
8604
  listItemGutters: string;
@@ -8571,7 +8630,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "root" | "
8571
8630
  readonly cx: (...args: any) => string;
8572
8631
  };
8573
8632
 
8574
- declare const useClasses_116: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "input" | "error" | "description" | "labelContainer" | "invalid" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8633
+ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "input" | "error" | "description" | "labelContainer" | "invalid" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8575
8634
  readonly classes: {
8576
8635
  root: string;
8577
8636
  disabled: string;
@@ -8590,7 +8649,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"label" | "root" | "
8590
8649
  readonly cx: (...args: any) => string;
8591
8650
  };
8592
8651
 
8593
- declare const useClasses_117: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8652
+ declare const useClasses_119: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8594
8653
  readonly classes: {
8595
8654
  root: string;
8596
8655
  };
@@ -8598,7 +8657,27 @@ declare const useClasses_117: (classesProp?: Partial<Record<"root", string>>, ad
8598
8657
  readonly cx: (...args: any) => string;
8599
8658
  };
8600
8659
 
8601
- declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "icon" | "error" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8660
+ declare const useClasses_12: (classesProp?: Partial<Record<"label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "error" | "description" | "labelContainer" | "invalid" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8661
+ readonly classes: {
8662
+ root: string;
8663
+ disabled: string;
8664
+ readOnly: string;
8665
+ invalid: string;
8666
+ labelContainer: string;
8667
+ label: string;
8668
+ description: string;
8669
+ select: string;
8670
+ popper: string;
8671
+ panel: string;
8672
+ panelOpenedUp: string;
8673
+ panelOpenedDown: string;
8674
+ error: string;
8675
+ };
8676
+ readonly css: any;
8677
+ readonly cx: (...args: any) => string;
8678
+ };
8679
+
8680
+ declare const useClasses_120: (classesProp?: Partial<Record<"label" | "root" | "placeholder" | "icon" | "error" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8602
8681
  readonly classes: {
8603
8682
  root: string;
8604
8683
  labelContainer: string;
@@ -8618,35 +8697,15 @@ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "root" | "
8618
8697
  readonly cx: (...args: any) => string;
8619
8698
  };
8620
8699
 
8621
- declare const useClasses_119: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8622
- readonly classes: {
8623
- root: string;
8624
- };
8625
- readonly css: any;
8626
- readonly cx: (...args: any) => string;
8627
- };
8628
-
8629
- declare const useClasses_12: (classesProp?: Partial<Record<"label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "error" | "description" | "labelContainer" | "invalid" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8700
+ declare const useClasses_121: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8630
8701
  readonly classes: {
8631
8702
  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
8703
  };
8645
8704
  readonly css: any;
8646
8705
  readonly cx: (...args: any) => string;
8647
8706
  };
8648
8707
 
8649
- declare const useClasses_120: (classesProp?: Partial<Record<"content" | "label" | "root" | "disabled" | "selected" | "expanded" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8708
+ declare const useClasses_122: (classesProp?: Partial<Record<"content" | "label" | "root" | "disabled" | "selected" | "expanded" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8650
8709
  readonly classes: {
8651
8710
  root: string;
8652
8711
  group: string;
@@ -8662,7 +8721,7 @@ declare const useClasses_120: (classesProp?: Partial<Record<"content" | "label"
8662
8721
  readonly cx: (...args: any) => string;
8663
8722
  };
8664
8723
 
8665
- declare const useClasses_121: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "selected" | "expanded" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8724
+ declare const useClasses_123: (classesProp?: Partial<Record<"label" | "root" | "disabled" | "selected" | "expanded" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8666
8725
  readonly classes: {
8667
8726
  root: string;
8668
8727
  expanded: string;
@@ -8676,7 +8735,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"label" | "root" | "
8676
8735
  readonly cx: (...args: any) => string;
8677
8736
  };
8678
8737
 
8679
- declare const useClasses_122: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
8738
+ declare const useClasses_124: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
8680
8739
  readonly classes: {
8681
8740
  root: string;
8682
8741
  collapsed: string;
@@ -8687,7 +8746,7 @@ declare const useClasses_122: (classesProp?: Partial<Record<"root" | "slider" |
8687
8746
  readonly cx: (...args: any) => string;
8688
8747
  };
8689
8748
 
8690
- declare const useClasses_123: (classesProp?: Partial<Record<"root" | "title" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
8749
+ declare const useClasses_125: (classesProp?: Partial<Record<"root" | "title" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
8691
8750
  readonly classes: {
8692
8751
  root: string;
8693
8752
  minimized: string;
@@ -8699,7 +8758,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"root" | "title" | "
8699
8758
  readonly cx: (...args: any) => string;
8700
8759
  };
8701
8760
 
8702
- declare const useClasses_124: (classesProp?: Partial<Record<"root" | "hide", string>>, addStatic?: boolean) => {
8761
+ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "hide", string>>, addStatic?: boolean) => {
8703
8762
  readonly classes: {
8704
8763
  root: string;
8705
8764
  hide: string;
@@ -8708,7 +8767,7 @@ declare const useClasses_124: (classesProp?: Partial<Record<"root" | "hide", str
8708
8767
  readonly cx: (...args: any) => string;
8709
8768
  };
8710
8769
 
8711
- declare const useClasses_125: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
8770
+ declare const useClasses_127: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
8712
8771
  readonly classes: {
8713
8772
  action: string;
8714
8773
  noIcon: string;
@@ -8718,7 +8777,7 @@ declare const useClasses_125: (classesProp?: Partial<Record<"action" | "minimize
8718
8777
  readonly cx: (...args: any) => string;
8719
8778
  };
8720
8779
 
8721
- declare const useClasses_126: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "collapsed" | "popup" | "navigationPopup", string>>, addStatic?: boolean) => {
8780
+ declare const useClasses_128: (classesProp?: Partial<Record<"root" | "listItem" | "list" | "collapsed" | "popup" | "navigationPopup", string>>, addStatic?: boolean) => {
8722
8781
  readonly classes: {
8723
8782
  root: string;
8724
8783
  list: string;
@@ -8731,7 +8790,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "listItem"
8731
8790
  readonly cx: (...args: any) => string;
8732
8791
  };
8733
8792
 
8734
- declare const useClasses_127: (classesProp?: Partial<Record<"root" | "listItemSelected" | "listItemDisabled" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8793
+ declare const useClasses_129: (classesProp?: Partial<Record<"root" | "listItemSelected" | "listItemDisabled" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8735
8794
  readonly classes: {
8736
8795
  root: string;
8737
8796
  listItemSelected: string;
@@ -8744,15 +8803,38 @@ declare const useClasses_127: (classesProp?: Partial<Record<"root" | "listItemSe
8744
8803
  readonly cx: (...args: any) => string;
8745
8804
  };
8746
8805
 
8747
- declare const useClasses_128: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8806
+ 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) => {
8748
8807
  readonly classes: {
8749
8808
  root: string;
8809
+ startIcon: string;
8810
+ endIcon: string;
8811
+ focusVisible: string;
8812
+ disabled: string;
8813
+ icon: string;
8814
+ contained: string;
8815
+ subtle: string;
8816
+ ghost: string;
8817
+ semantic: string;
8818
+ primary: string;
8819
+ primarySubtle: string;
8820
+ primaryGhost: string;
8821
+ secondarySubtle: string;
8822
+ secondaryGhost: string;
8823
+ secondary: string;
8750
8824
  };
8751
8825
  readonly css: any;
8752
8826
  readonly cx: (...args: any) => string;
8753
8827
  };
8754
8828
 
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) => {
8829
+ declare const useClasses_130: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8830
+ readonly classes: {
8831
+ root: string;
8832
+ };
8833
+ readonly css: any;
8834
+ readonly cx: (...args: any) => string;
8835
+ };
8836
+
8837
+ 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
8838
  readonly classes: {
8757
8839
  node: string;
8758
8840
  content: string;
@@ -8778,30 +8860,7 @@ declare const useClasses_129: (classesProp?: Partial<Record<"content" | "label"
8778
8860
  readonly cx: (...args: any) => string;
8779
8861
  };
8780
8862
 
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) => {
8863
+ declare const useClasses_132: (classesProp?: Partial<Record<"content" | "header" | "root" | "hidden" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8805
8864
  readonly classes: {
8806
8865
  root: string;
8807
8866
  header: string;
@@ -8816,7 +8875,7 @@ declare const useClasses_130: (classesProp?: Partial<Record<"content" | "header"
8816
8875
  readonly cx: (...args: any) => string;
8817
8876
  };
8818
8877
 
8819
- declare const useClasses_131: (classesProp?: Partial<Record<"content" | "root" | "circle" | "text" | "square" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8878
+ declare const useClasses_133: (classesProp?: Partial<Record<"content" | "root" | "circle" | "text" | "square" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8820
8879
  readonly classes: {
8821
8880
  root: string;
8822
8881
  content: string;
@@ -9811,7 +9870,33 @@ declare const useClasses_71: (classesProp?: Partial<Record<"root" | "icon" | "pr
9811
9870
  readonly cx: (...args: any) => string;
9812
9871
  };
9813
9872
 
9814
- declare const useClasses_72: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
9873
+ declare const useClasses_72: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
9874
+ readonly classes: {
9875
+ root: string;
9876
+ };
9877
+ readonly css: any;
9878
+ readonly cx: (...args: any) => string;
9879
+ };
9880
+
9881
+ declare const useClasses_73: (classesProp?: Partial<Record<"dropZoneContainer" | "dragAction" | "dropZoneContainerDisabled" | "dropZoneLabelsGroup" | "inputArea" | "dropArea" | "dropZoneAreaLabels" | "dropZoneAreaIcon" | "dropZoneLabel" | "dragText" | "selectFilesText", string>>, addStatic?: boolean) => {
9882
+ readonly classes: {
9883
+ dropZoneContainer: string;
9884
+ dropZoneLabelsGroup: string;
9885
+ dragAction: string;
9886
+ dropZoneContainerDisabled: string;
9887
+ inputArea: string;
9888
+ dropArea: string;
9889
+ dropZoneAreaLabels: string;
9890
+ dropZoneAreaIcon: string;
9891
+ dropZoneLabel: string;
9892
+ dragText: string;
9893
+ selectFilesText: string;
9894
+ };
9895
+ readonly css: any;
9896
+ readonly cx: (...args: any) => string;
9897
+ };
9898
+
9899
+ declare const useClasses_74: (classesProp?: Partial<Record<"label" | "root" | "error" | "description" | "labelContainer", string>>, addStatic?: boolean) => {
9815
9900
  readonly classes: {
9816
9901
  root: string;
9817
9902
  label: string;
@@ -9823,7 +9908,7 @@ declare const useClasses_72: (classesProp?: Partial<Record<"label" | "root" | "e
9823
9908
  readonly cx: (...args: any) => string;
9824
9909
  };
9825
9910
 
9826
- declare const useClasses_73: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "rightSidePanel" | "applyButton" | "dropdown" | "baseDropdownSelection" | "leftSidePanel" | "actionBar", string>>, addStatic?: boolean) => {
9911
+ declare const useClasses_75: (classesProp?: Partial<Record<"space" | "header" | "root" | "panel" | "rightSidePanel" | "applyButton" | "dropdown" | "baseDropdownSelection" | "leftSidePanel" | "actionBar", string>>, addStatic?: boolean) => {
9827
9912
  readonly classes: {
9828
9913
  dropdown: string;
9829
9914
  panel: string;
@@ -9840,7 +9925,7 @@ declare const useClasses_73: (classesProp?: Partial<Record<"space" | "header" |
9840
9925
  readonly cx: (...args: any) => string;
9841
9926
  };
9842
9927
 
9843
- declare const useClasses_74: (classesProp?: Partial<Record<"name" | "small" | "root" | "separator" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
9928
+ declare const useClasses_76: (classesProp?: Partial<Record<"name" | "small" | "root" | "separator" | "rightContainer" | "copyright", string>>, addStatic?: boolean) => {
9844
9929
  readonly classes: {
9845
9930
  root: string;
9846
9931
  name: string;
@@ -9853,7 +9938,7 @@ declare const useClasses_74: (classesProp?: Partial<Record<"name" | "small" | "r
9853
9938
  readonly cx: (...args: any) => string;
9854
9939
  };
9855
9940
 
9856
- declare const useClasses_75: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "positionFixed" | "positionSticky" | "actions" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton", string>>, addStatic?: boolean) => {
9941
+ declare const useClasses_77: (classesProp?: Partial<Record<"name" | "root" | "section" | "wrapper" | "sectionName" | "positionFixed" | "positionSticky" | "actions" | "global" | "globalSectionArea" | "globalWrapperComplement" | "backButton", string>>, addStatic?: boolean) => {
9857
9942
  readonly classes: {
9858
9943
  root: string;
9859
9944
  positionSticky: string;
@@ -9872,7 +9957,7 @@ declare const useClasses_75: (classesProp?: Partial<Record<"name" | "root" | "se
9872
9957
  readonly cx: (...args: any) => string;
9873
9958
  };
9874
9959
 
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) => {
9960
+ 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
9961
  readonly classes: {
9877
9962
  root: string;
9878
9963
  container: string;
@@ -9912,7 +9997,7 @@ declare const useClasses_76: (classesProp?: Partial<Record<"container" | "root"
9912
9997
  readonly cx: (...args: any) => string;
9913
9998
  };
9914
9999
 
9915
- declare const useClasses_77: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root" | "fixed", string>>, addStatic?: boolean) => {
10000
+ declare const useClasses_79: (classesProp?: Partial<Record<"backgroundColor" | "header" | "root" | "fixed", string>>, addStatic?: boolean) => {
9916
10001
  readonly classes: {
9917
10002
  root: string;
9918
10003
  header: string;
@@ -9923,7 +10008,7 @@ declare const useClasses_77: (classesProp?: Partial<Record<"backgroundColor" | "
9923
10008
  readonly cx: (...args: any) => string;
9924
10009
  };
9925
10010
 
9926
- declare const useClasses_78: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10011
+ declare const useClasses_8: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
9927
10012
  readonly classes: {
9928
10013
  root: string;
9929
10014
  };
@@ -9931,25 +10016,25 @@ declare const useClasses_78: (classesProp?: Partial<Record<"root", string>>, add
9931
10016
  readonly cx: (...args: any) => string;
9932
10017
  };
9933
10018
 
9934
- declare const useClasses_79: (classesProp?: Partial<Record<"root" | "separator" | "brandName", string>>, addStatic?: boolean) => {
10019
+ declare const useClasses_80: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
9935
10020
  readonly classes: {
9936
10021
  root: string;
9937
- separator: string;
9938
- brandName: string;
9939
10022
  };
9940
10023
  readonly css: any;
9941
10024
  readonly cx: (...args: any) => string;
9942
10025
  };
9943
10026
 
9944
- declare const useClasses_8: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10027
+ declare const useClasses_81: (classesProp?: Partial<Record<"root" | "separator" | "brandName", string>>, addStatic?: boolean) => {
9945
10028
  readonly classes: {
9946
10029
  root: string;
10030
+ separator: string;
10031
+ brandName: string;
9947
10032
  };
9948
10033
  readonly css: any;
9949
10034
  readonly cx: (...args: any) => string;
9950
10035
  };
9951
10036
 
9952
- declare const useClasses_80: (classesProp?: Partial<Record<"root" | "active" | "list" | "hidden" | "menu" | "menubar", string>>, addStatic?: boolean) => {
10037
+ declare const useClasses_82: (classesProp?: Partial<Record<"root" | "active" | "list" | "hidden" | "menu" | "menubar", string>>, addStatic?: boolean) => {
9953
10038
  readonly classes: {
9954
10039
  root: string;
9955
10040
  menu: string;
@@ -9962,7 +10047,7 @@ declare const useClasses_80: (classesProp?: Partial<Record<"root" | "active" | "
9962
10047
  readonly cx: (...args: any) => string;
9963
10048
  };
9964
10049
 
9965
- declare const useClasses_81: (classesProp?: Partial<Record<"link" | "root" | "selected" | "button" | "menu" | "menubar" | "item", string>>, addStatic?: boolean) => {
10050
+ declare const useClasses_83: (classesProp?: Partial<Record<"link" | "root" | "selected" | "button" | "menu" | "menubar" | "item", string>>, addStatic?: boolean) => {
9966
10051
  readonly classes: {
9967
10052
  root: string;
9968
10053
  menu: string;
@@ -9976,7 +10061,7 @@ declare const useClasses_81: (classesProp?: Partial<Record<"link" | "root" | "se
9976
10061
  readonly cx: (...args: any) => string;
9977
10062
  };
9978
10063
 
9979
- declare const useClasses_82: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10064
+ declare const useClasses_84: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
9980
10065
  readonly classes: {
9981
10066
  root: string;
9982
10067
  };
@@ -9984,7 +10069,7 @@ declare const useClasses_82: (classesProp?: Partial<Record<"root", string>>, add
9984
10069
  readonly cx: (...args: any) => string;
9985
10070
  };
9986
10071
 
9987
- declare const useClasses_83: (classesProp?: Partial<Record<"root" | "inputBorderContainer" | "inputRoot" | "input" | "icon" | "button" | "text" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
10072
+ declare const useClasses_85: (classesProp?: Partial<Record<"root" | "inputBorderContainer" | "inputRoot" | "input" | "icon" | "button" | "text" | "largeText" | "textEmpty" | "iconVisible", string>>, addStatic?: boolean) => {
9988
10073
  readonly classes: {
9989
10074
  root: string;
9990
10075
  inputBorderContainer: string;
@@ -10001,7 +10086,7 @@ declare const useClasses_83: (classesProp?: Partial<Record<"root" | "inputBorder
10001
10086
  readonly cx: (...args: any) => string;
10002
10087
  };
10003
10088
 
10004
- declare const useClasses_84: (classesProp?: Partial<Record<"root" | "visualIndicatorContainer" | "comparisons" | "comparisonContainer" | "comparisonComposition" | "indicatorsContainer" | "indicatorText" | "indicatorUnit" | "spacingToTheRight" | "trendLine", string>>, addStatic?: boolean) => {
10089
+ declare const useClasses_86: (classesProp?: Partial<Record<"root" | "visualIndicatorContainer" | "comparisons" | "comparisonContainer" | "comparisonComposition" | "indicatorsContainer" | "indicatorText" | "indicatorUnit" | "spacingToTheRight" | "trendLine", string>>, addStatic?: boolean) => {
10005
10090
  readonly classes: {
10006
10091
  root: string;
10007
10092
  visualIndicatorContainer: string;
@@ -10018,7 +10103,7 @@ declare const useClasses_84: (classesProp?: Partial<Record<"root" | "visualIndic
10018
10103
  readonly cx: (...args: any) => string;
10019
10104
  };
10020
10105
 
10021
- declare const useClasses_85: (classesProp?: Partial<Record<"a", string>>, addStatic?: boolean) => {
10106
+ declare const useClasses_87: (classesProp?: Partial<Record<"a", string>>, addStatic?: boolean) => {
10022
10107
  readonly classes: {
10023
10108
  a: string;
10024
10109
  };
@@ -10026,7 +10111,7 @@ declare const useClasses_85: (classesProp?: Partial<Record<"a", string>>, addSta
10026
10111
  readonly cx: (...args: any) => string;
10027
10112
  };
10028
10113
 
10029
- declare const useClasses_86: (classesProp?: Partial<Record<"link" | "root" | "itemSelector" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "selectAllSelector", string>>, addStatic?: boolean) => {
10114
+ declare const useClasses_88: (classesProp?: Partial<Record<"link" | "root" | "itemSelector" | "item" | "virtualizedRoot" | "selectorRoot" | "selectorContainer" | "box" | "truncate" | "selectAllSelector", string>>, addStatic?: boolean) => {
10030
10115
  readonly classes: {
10031
10116
  root: string;
10032
10117
  virtualizedRoot: string;
@@ -10043,7 +10128,7 @@ declare const useClasses_86: (classesProp?: Partial<Record<"link" | "root" | "it
10043
10128
  readonly cx: (...args: any) => string;
10044
10129
  };
10045
10130
 
10046
- declare const useClasses_87: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "loadingBar" | "blur" | "regular" | "barContainer" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
10131
+ declare const useClasses_89: (classesProp?: Partial<Record<"overlay" | "label" | "small" | "root" | "hidden" | "loadingBar" | "blur" | "regular" | "barContainer" | "smallColor" | "regularColor", string>>, addStatic?: boolean) => {
10047
10132
  readonly classes: {
10048
10133
  root: string;
10049
10134
  barContainer: string;
@@ -10061,35 +10146,35 @@ declare const useClasses_87: (classesProp?: Partial<Record<"overlay" | "label" |
10061
10146
  readonly cx: (...args: any) => string;
10062
10147
  };
10063
10148
 
10064
- declare const useClasses_88: (classesProp?: Partial<Record<"root" | "loading", string>>, addStatic?: boolean) => {
10149
+ declare const useClasses_9: (classesProp?: Partial<Record<"root" | "childGutter" | "labelDisabled", string>>, addStatic?: boolean) => {
10065
10150
  readonly classes: {
10066
10151
  root: string;
10067
- loading: string;
10152
+ labelDisabled: string;
10153
+ childGutter: string;
10068
10154
  };
10069
10155
  readonly css: any;
10070
10156
  readonly cx: (...args: any) => string;
10071
10157
  };
10072
10158
 
10073
- declare const useClasses_89: (classesProp?: Partial<Record<"root" | "formContainer", string>>, addStatic?: boolean) => {
10159
+ declare const useClasses_90: (classesProp?: Partial<Record<"root" | "loading", string>>, addStatic?: boolean) => {
10074
10160
  readonly classes: {
10075
10161
  root: string;
10076
- formContainer: string;
10162
+ loading: string;
10077
10163
  };
10078
10164
  readonly css: any;
10079
10165
  readonly cx: (...args: any) => string;
10080
10166
  };
10081
10167
 
10082
- declare const useClasses_9: (classesProp?: Partial<Record<"root" | "childGutter" | "labelDisabled", string>>, addStatic?: boolean) => {
10168
+ declare const useClasses_91: (classesProp?: Partial<Record<"root" | "formContainer", string>>, addStatic?: boolean) => {
10083
10169
  readonly classes: {
10084
10170
  root: string;
10085
- labelDisabled: string;
10086
- childGutter: string;
10171
+ formContainer: string;
10087
10172
  };
10088
10173
  readonly css: any;
10089
10174
  readonly cx: (...args: any) => string;
10090
10175
  };
10091
10176
 
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) => {
10177
+ 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
10178
  readonly classes: {
10094
10179
  root: string;
10095
10180
  multiple: string;
@@ -10111,7 +10196,7 @@ declare const useClasses_90: (classesProp?: Partial<Record<"secondary" | "primar
10111
10196
  readonly cx: (...args: any) => string;
10112
10197
  };
10113
10198
 
10114
- declare const useClasses_91: (classesProp?: Partial<Record<"tooltipData" | "tooltipAnchor" | "tooltipAnchorParagraph", string>>, addStatic?: boolean) => {
10199
+ declare const useClasses_93: (classesProp?: Partial<Record<"tooltipData" | "tooltipAnchor" | "tooltipAnchorParagraph", string>>, addStatic?: boolean) => {
10115
10200
  readonly classes: {
10116
10201
  tooltipData: string;
10117
10202
  tooltipAnchor: string;
@@ -10121,7 +10206,7 @@ declare const useClasses_91: (classesProp?: Partial<Record<"tooltipData" | "tool
10121
10206
  readonly cx: (...args: any) => string;
10122
10207
  };
10123
10208
 
10124
- declare const useClasses_92: (classesProp?: Partial<Record<"color" | "root" | "title" | "popper" | "separator" | "tooltip" | "values" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
10209
+ declare const useClasses_94: (classesProp?: Partial<Record<"color" | "root" | "title" | "popper" | "separator" | "tooltip" | "values" | "tooltipMulti" | "valuesContainer" | "separatorColor" | "valueWrapper", string>>, addStatic?: boolean) => {
10125
10210
  readonly classes: {
10126
10211
  root: string;
10127
10212
  tooltip: string;
@@ -10139,7 +10224,7 @@ declare const useClasses_92: (classesProp?: Partial<Record<"color" | "root" | "t
10139
10224
  readonly cx: (...args: any) => string;
10140
10225
  };
10141
10226
 
10142
- declare const useClasses_93: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10227
+ declare const useClasses_95: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
10143
10228
  readonly classes: {
10144
10229
  root: string;
10145
10230
  };
@@ -10147,7 +10232,7 @@ declare const useClasses_93: (classesProp?: Partial<Record<"root", string>>, add
10147
10232
  readonly cx: (...args: any) => string;
10148
10233
  };
10149
10234
 
10150
- declare const useClasses_94: (classesProp?: Partial<Record<"root" | "progress" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
10235
+ declare const useClasses_96: (classesProp?: Partial<Record<"root" | "progress" | "progressBar" | "progressBarLabel" | "progressContainer" | "progressDone" | "progressBarContainer" | "progressError", string>>, addStatic?: boolean) => {
10151
10236
  readonly classes: {
10152
10237
  root: string;
10153
10238
  progress: string;
@@ -10162,7 +10247,7 @@ declare const useClasses_94: (classesProp?: Partial<Record<"root" | "progress" |
10162
10247
  readonly cx: (...args: any) => string;
10163
10248
  };
10164
10249
 
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) => {
10250
+ 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
10251
  readonly classes: {
10167
10252
  root: string;
10168
10253
  topGroup: string;
@@ -10186,7 +10271,7 @@ declare const useClasses_95: (classesProp?: Partial<Record<"root" | "topGroup" |
10186
10271
  readonly cx: (...args: any) => string;
10187
10272
  };
10188
10273
 
10189
- declare const useClasses_96: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "semantic" | "radio" | "checked" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
10274
+ declare const useClasses_98: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "semantic" | "radio" | "checked" | "focusVisible" | "invalidContainer" | "invalidRadio", string>>, addStatic?: boolean) => {
10190
10275
  readonly classes: {
10191
10276
  root: string;
10192
10277
  container: string;
@@ -10203,7 +10288,7 @@ declare const useClasses_96: (classesProp?: Partial<Record<"container" | "label"
10203
10288
  readonly cx: (...args: any) => string;
10204
10289
  };
10205
10290
 
10206
- declare const useClasses_97: (classesProp?: Partial<Record<"root" | "icon" | "button" | "text" | "notSelected", string>>, addStatic?: boolean) => {
10291
+ declare const useClasses_99: (classesProp?: Partial<Record<"root" | "icon" | "button" | "text" | "notSelected", string>>, addStatic?: boolean) => {
10207
10292
  readonly classes: {
10208
10293
  root: string;
10209
10294
  icon: string;
@@ -10215,29 +10300,6 @@ declare const useClasses_97: (classesProp?: Partial<Record<"root" | "icon" | "bu
10215
10300
  readonly cx: (...args: any) => string;
10216
10301
  };
10217
10302
 
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
10303
  export declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: React.RefObject<T>, handler: (event: HvClickOutsideEvent) => void) => void;
10242
10304
 
10243
10305
  export declare const useComputation: (valueFn: Function, valueFallback?: Function) => (Function | undefined)[];