@hitachivantara/uikit-react-core 5.96.3 → 5.98.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/cjs/AppSwitcher/Action/Action.cjs +1 -1
  2. package/dist/cjs/BreadCrumb/utils.cjs +1 -1
  3. package/dist/cjs/FilterGroup/Counter/Counter.cjs +1 -1
  4. package/dist/cjs/Header/Navigation/MenuBar/Bar.cjs +1 -1
  5. package/dist/cjs/InlineEditor/InlineEditor.cjs +1 -1
  6. package/dist/cjs/List/List.cjs +3 -3
  7. package/dist/cjs/StatusIcon/StatusIcon.cjs +45 -0
  8. package/dist/cjs/StatusIcon/StatusIcon.styles.cjs +57 -0
  9. package/dist/cjs/Table/hooks/useHvRowSelection.cjs +4 -4
  10. package/dist/cjs/TextArea/TextArea.cjs +1 -1
  11. package/dist/cjs/TimePicker/Placeholder.cjs +2 -2
  12. package/dist/cjs/TimePicker/TimePicker.cjs +2 -2
  13. package/dist/cjs/TreeView/TreeItem/TreeItem.cjs +1 -1
  14. package/dist/cjs/TreeView/TreeItem/useHvTreeItem.cjs +1 -19
  15. package/dist/cjs/VerticalNavigation/TreeView/TreeViewItem.cjs +2 -2
  16. package/dist/cjs/hooks/useForkRef.cjs +1 -19
  17. package/dist/cjs/hooks/useImageLoaded.cjs +3 -9
  18. package/dist/cjs/index.cjs +4 -0
  19. package/dist/cjs/themes/ds3.cjs +7 -0
  20. package/dist/cjs/themes/ds5.cjs +11 -0
  21. package/dist/cjs/themes/pentahoPlus.cjs +3 -9
  22. package/dist/cjs/utils/Callout.cjs +10 -5
  23. package/dist/esm/AppSwitcher/Action/Action.js +1 -1
  24. package/dist/esm/BreadCrumb/utils.js +1 -1
  25. package/dist/esm/FilterGroup/Counter/Counter.js +1 -1
  26. package/dist/esm/Header/Navigation/MenuBar/Bar.js +1 -1
  27. package/dist/esm/InlineEditor/InlineEditor.js +1 -1
  28. package/dist/esm/List/List.js +3 -3
  29. package/dist/esm/StatusIcon/StatusIcon.js +46 -0
  30. package/dist/esm/StatusIcon/StatusIcon.styles.js +57 -0
  31. package/dist/esm/Table/hooks/useHvRowSelection.js +4 -4
  32. package/dist/esm/TextArea/TextArea.js +1 -1
  33. package/dist/esm/TimePicker/Placeholder.js +2 -2
  34. package/dist/esm/TimePicker/TimePicker.js +2 -2
  35. package/dist/esm/TreeView/TreeItem/TreeItem.js +1 -1
  36. package/dist/esm/TreeView/TreeItem/useHvTreeItem.js +2 -2
  37. package/dist/esm/VerticalNavigation/TreeView/TreeViewItem.js +2 -2
  38. package/dist/esm/hooks/useForkRef.js +2 -2
  39. package/dist/esm/hooks/useImageLoaded.js +3 -9
  40. package/dist/esm/index.js +63 -59
  41. package/dist/esm/themes/ds3.js +7 -0
  42. package/dist/esm/themes/ds5.js +11 -0
  43. package/dist/esm/themes/pentahoPlus.js +3 -9
  44. package/dist/esm/utils/Callout.js +10 -5
  45. package/dist/types/index.d.ts +119 -82
  46. package/package.json +5 -5
@@ -5749,7 +5749,7 @@ export { HvSize }
5749
5749
  */
5750
5750
  export declare const HvSkeleton: (props: HvSkeletonProps) => JSX_2.Element;
5751
5751
 
5752
- export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_133>;
5752
+ export declare type HvSkeletonClasses = ExtractNames<typeof useClasses_134>;
5753
5753
 
5754
5754
  export declare interface HvSkeletonProps extends HvBaseProps {
5755
5755
  /** Whether the skeleton element is hidden or not. */
@@ -6018,6 +6018,33 @@ export declare interface HvStackProps extends HvBaseProps {
6018
6018
  classes?: HvStackClasses;
6019
6019
  }
6020
6020
 
6021
+ /**
6022
+ * A status icon represents the status of a process or an entity.
6023
+ *
6024
+ * @experimental
6025
+ * This component is experimental and its API might change in future releases.
6026
+ */
6027
+ export declare const HvStatusIcon: ForwardRefExoticComponent<HvStatusIconProps & RefAttributes<HTMLDivElement>>;
6028
+
6029
+ export declare type HvStatusIconClasses = ExtractNames<typeof useClasses_110>;
6030
+
6031
+ export declare interface HvStatusIconProps extends HvBaseProps {
6032
+ /** Variant of the snackbar. */
6033
+ variant?: HvStatusIconVariant;
6034
+ /** Custom icon to replace the variant default. */
6035
+ customIcon?: React.ReactNode;
6036
+ /** The size of the icon. */
6037
+ size?: HvSize;
6038
+ /** The type of status icon. */
6039
+ type?: HvStatusIconType;
6040
+ /** A Jss Object used to override or extend the styles applied to the component. */
6041
+ classes?: HvStatusIconClasses;
6042
+ }
6043
+
6044
+ export declare type HvStatusIconType = "full" | "simple";
6045
+
6046
+ export declare type HvStatusIconVariant = HvCalloutVariant;
6047
+
6021
6048
  export declare const hvStringFallback: (value: any) => string;
6022
6049
 
6023
6050
  export declare interface HvSuggestion {
@@ -6072,7 +6099,7 @@ export declare type HvSupportColors = Record<HvSupportColorKeys, string>;
6072
6099
  */
6073
6100
  export declare const HvSwitch: ForwardRefExoticComponent<Omit<HvSwitchProps, "ref"> & RefAttributes<HTMLButtonElement>>;
6074
6101
 
6075
- export declare type HvSwitchClasses = ExtractNames<typeof useClasses_110>;
6102
+ export declare type HvSwitchClasses = ExtractNames<typeof useClasses_111>;
6076
6103
 
6077
6104
  export declare function hvSwitchColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer>(col: HvTableColumnConfig<D, H>, switchLabel: string, falseLabel?: string, trueLabel?: string, switchProps?: HvBaseSwitchProps): HvTableColumnConfig<D, H>;
6078
6105
 
@@ -6183,7 +6210,7 @@ export declare interface HvSwitchProps extends Omit<SwitchProps, "color" | "onCh
6183
6210
 
6184
6211
  export declare const HvTab: ForwardRefExoticComponent<Omit<HvTabProps, "ref"> & RefAttributes<HTMLDivElement>>;
6185
6212
 
6186
- export declare type HvTabClasses = ExtractNames<typeof useClasses_117>;
6213
+ export declare type HvTabClasses = ExtractNames<typeof useClasses_118>;
6187
6214
 
6188
6215
  /**
6189
6216
  * A table gathers relational data. It displays values arranged to allow quick numerical analysis like comparison and sorting.
@@ -6203,7 +6230,7 @@ export declare const HvTable: ForwardRefExoticComponent<HvTableProps & RefAttrib
6203
6230
  */
6204
6231
  export declare const HvTableBody: ForwardRefExoticComponent<HvTableBodyProps & RefAttributes<HTMLElement>>;
6205
6232
 
6206
- export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_113>;
6233
+ export declare type HvTableBodyClasses = ExtractNames<typeof useClasses_114>;
6207
6234
 
6208
6235
  export declare interface HvTableBodyProps extends HvBaseProps<HTMLTableSectionElement, "children"> {
6209
6236
  /**
@@ -6291,7 +6318,7 @@ export declare interface HvTableColumnOptions<D extends object = Record<string,
6291
6318
  */
6292
6319
  export declare const HvTableContainer: ForwardRefExoticComponent<HvTableContainerProps & RefAttributes<HTMLElement>>;
6293
6320
 
6294
- export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_111>;
6321
+ export declare type HvTableContainerClasses = ExtractNames<typeof useClasses_112>;
6295
6322
 
6296
6323
  export declare interface HvTableContainerProps extends HvBaseProps<HTMLDivElement, "children"> {
6297
6324
  /**
@@ -6315,7 +6342,7 @@ export declare type HvTableDefinitionConfig<D extends object = Record<string, un
6315
6342
  */
6316
6343
  export declare const HvTableHead: ForwardRefExoticComponent<HvTableHeadProps & RefAttributes<HTMLElement>>;
6317
6344
 
6318
- export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_114>;
6345
+ export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_115>;
6319
6346
 
6320
6347
  /**
6321
6348
  * `HvTableHeader` acts as a `th` element and inherits styles from its context
@@ -6488,7 +6515,7 @@ export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement
6488
6515
  */
6489
6516
  export declare const HvTableSection: ForwardRefExoticComponent<HvTableSectionProps & RefAttributes<HTMLDivElement>>;
6490
6517
 
6491
- export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_112>;
6518
+ export declare type HvTableSectionClasses = ExtractNames<typeof useClasses_113>;
6492
6519
 
6493
6520
  export declare interface HvTableSectionProps extends HvSectionProps {
6494
6521
  }
@@ -6518,7 +6545,7 @@ export declare interface HvTabProps extends Omit<TabProps, "children"> {
6518
6545
  */
6519
6546
  export declare const HvTabs: ForwardRefExoticComponent<Omit<HvTabsProps, "ref"> & RefAttributes<HTMLDivElement>>;
6520
6547
 
6521
- export declare type HvTabsClasses = ExtractNames<typeof useClasses_116>;
6548
+ export declare type HvTabsClasses = ExtractNames<typeof useClasses_117>;
6522
6549
 
6523
6550
  export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
6524
6551
  /**
@@ -6547,7 +6574,7 @@ export declare interface HvTabsProps extends Omit<TabsProps, "onChange"> {
6547
6574
  */
6548
6575
  export declare const HvTag: ForwardRefExoticComponent<Omit<HvTagProps, "ref"> & RefAttributes<HTMLElement>>;
6549
6576
 
6550
- export declare type HvTagClasses = ExtractNames<typeof useClasses_115>;
6577
+ export declare type HvTagClasses = ExtractNames<typeof useClasses_116>;
6551
6578
 
6552
6579
  export declare function hvTagColumn<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer, A extends object = Record<string, unknown>>(col: HvTableColumnConfig<D, H>, valueDataKey: keyof A, colorDataKey: keyof A, textColorDataKey: keyof A, fromRowData?: boolean, tagProps?: HvTagProps): HvTableColumnConfig<D, H>;
6553
6580
 
@@ -6594,7 +6621,7 @@ export declare interface HvTagProps extends Omit<HvButtonBaseProps, "type" | "co
6594
6621
  */
6595
6622
  export declare const HvTagsInput: ForwardRefExoticComponent<HvTagsInputProps & RefAttributes<HTMLElement>>;
6596
6623
 
6597
- export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_118>;
6624
+ export declare type HvTagsInputClasses = ExtractNames<typeof useClasses_119>;
6598
6625
 
6599
6626
  export declare interface HvTagsInputProps extends Omit<HvInputProps, "onChange" | "onBlur" | "onFocus" | "onKeyDown" | "value" | "defaultValue"> {
6600
6627
  /** The value of the form element. */
@@ -6645,7 +6672,7 @@ export declare interface HvTagSuggestion extends HvInputSuggestion {
6645
6672
  */
6646
6673
  export declare const HvTextArea: ForwardRefExoticComponent<HvTextAreaProps & RefAttributes<HTMLTextAreaElement>>;
6647
6674
 
6648
- export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_119>;
6675
+ export declare type HvTextAreaClasses = ExtractNames<typeof useClasses_120>;
6649
6676
 
6650
6677
  export declare interface HvTextAreaProps extends Omit<HvBaseInputProps, "onChange" | "onBlur" | "rows" | "classes" | "onFocus" | "placeholder"> {
6651
6678
  /** The placeholder value of the text area. */
@@ -6762,11 +6789,7 @@ export { HvThemeContextValue }
6762
6789
 
6763
6790
  export declare type HvThemeCustomizationProps = HvExtraDeepPartialProps<Omit<HvThemeStructure, "colors" | "name" | "base">> & {
6764
6791
  colors?: {
6765
- modes?: {
6766
- [key: string]: Partial<HvThemeColorModeStructure> & {
6767
- [key: string]: string;
6768
- };
6769
- };
6792
+ modes?: Record<string, Partial<HvThemeColorModeStructure> & Record<string, string>>;
6770
6793
  };
6771
6794
  };
6772
6795
 
@@ -6829,7 +6852,7 @@ export declare const HvTimeAgo: <C extends React.ElementType = "p">(props: {
6829
6852
  ref?: PolymorphicRef<C> | undefined;
6830
6853
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
6831
6854
 
6832
- export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_120>;
6855
+ export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_121>;
6833
6856
 
6834
6857
  export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = PolymorphicComponentRef<C, {
6835
6858
  /**
@@ -6865,7 +6888,7 @@ export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = Polymorp
6865
6888
  */
6866
6889
  export declare const HvTimePicker: ForwardRefExoticComponent<HvTimePickerProps & RefAttributes<HTMLDivElement>>;
6867
6890
 
6868
- export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_121>;
6891
+ export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_122>;
6869
6892
 
6870
6893
  export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
6871
6894
 
@@ -6993,7 +7016,7 @@ export declare interface HvTooltipProps extends Omit<TooltipProps, "classes"> {
6993
7016
  containerId?: string;
6994
7017
  }
6995
7018
 
6996
- declare type HvTreeContentClasses = ExtractNames<typeof useClasses_124>;
7019
+ declare type HvTreeContentClasses = ExtractNames<typeof useClasses_125>;
6997
7020
 
6998
7021
  export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLElement> {
6999
7022
  /** className applied to the root element. */
@@ -7014,7 +7037,7 @@ export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLEle
7014
7037
 
7015
7038
  export declare const HvTreeItem: ForwardRefExoticComponent<HvTreeItemProps & RefAttributes<HTMLLIElement>>;
7016
7039
 
7017
- export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_123>;
7040
+ export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_124>;
7018
7041
 
7019
7042
  export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElement> {
7020
7043
  /** The element id */
@@ -7064,7 +7087,7 @@ export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElemen
7064
7087
  */
7065
7088
  export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) => React.ReactElement<any> | null;
7066
7089
 
7067
- export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_122>;
7090
+ export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_123>;
7068
7091
 
7069
7092
  export declare interface HvTreeViewProps<Multiple extends boolean | undefined> extends HvBaseProps<HTMLUListElement>, DefaultTreeViewPluginParameters<Multiple> {
7070
7093
  /** A Jss Object used to override or extend the styles applied. */
@@ -7196,7 +7219,7 @@ export declare const HvVerticalNavigation: ForwardRefExoticComponent<HvVerticalN
7196
7219
 
7197
7220
  export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) => JSX_2.Element;
7198
7221
 
7199
- export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_128>;
7222
+ export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_129>;
7200
7223
 
7201
7224
  export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonProps, "classes" | "icon"> {
7202
7225
  /** A Jss Object used to override or extend the styles applied to the component. */
@@ -7209,18 +7232,18 @@ export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonPr
7209
7232
 
7210
7233
  export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) => JSX_2.Element;
7211
7234
 
7212
- export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_127>;
7235
+ export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_128>;
7213
7236
 
7214
7237
  export declare interface HvVerticalNavigationActionsProps extends HvBaseProps {
7215
7238
  /** A Jss Object used to override or extend the styles applied to the component. */
7216
7239
  classes?: HvVerticalNavigationActionsClasses;
7217
7240
  }
7218
7241
 
7219
- export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_125>;
7242
+ export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_126>;
7220
7243
 
7221
7244
  export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) => JSX_2.Element | null;
7222
7245
 
7223
- export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_126>;
7246
+ export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_127>;
7224
7247
 
7225
7248
  export declare interface HvVerticalNavigationHeaderProps extends HvBaseProps {
7226
7249
  /** The title text to show on header. */
@@ -7267,7 +7290,7 @@ export declare interface HvVerticalNavigationProps extends HvBaseProps<HTMLDivEl
7267
7290
 
7268
7291
  export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) => JSX_2.Element;
7269
7292
 
7270
- export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_130>;
7293
+ export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_131>;
7271
7294
 
7272
7295
  export declare interface HvVerticalNavigationSliderProps extends Omit<HvListContainerProps, "classes"> {
7273
7296
  /** A Jss Object used to override or extend the styles applied. */
@@ -7295,7 +7318,7 @@ export declare interface HvVerticalNavigationSliderProps extends Omit<HvListCont
7295
7318
 
7296
7319
  export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) => JSX_2.Element;
7297
7320
 
7298
- export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_129>;
7321
+ export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_130>;
7299
7322
 
7300
7323
  export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLDivElement, "onChange" | "onToggle"> {
7301
7324
  /** A Jss Object used to override or extend the styles applied. */
@@ -7339,11 +7362,11 @@ export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLD
7339
7362
 
7340
7363
  export declare const HvVerticalNavigationTreeView: ForwardRefExoticComponent<HvVerticalNavigationTreeViewProps & RefAttributes<HTMLUListElement>>;
7341
7364
 
7342
- export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_131>;
7365
+ export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_132>;
7343
7366
 
7344
7367
  export declare const HvVerticalNavigationTreeViewItem: ForwardRefExoticComponent<HvVerticalNavigationTreeViewItemProps & RefAttributes<unknown>>;
7345
7368
 
7346
- export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_132>;
7369
+ export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_133>;
7347
7370
 
7348
7371
  export declare interface HvVerticalNavigationTreeViewItemProps {
7349
7372
  /**
@@ -7997,6 +8020,11 @@ declare const staticClasses: {
7997
8020
  export { staticClasses as iconContainerClasses }
7998
8021
  export { staticClasses }
7999
8022
 
8023
+ export declare const statusIconClasses: {
8024
+ root: string;
8025
+ icon: string;
8026
+ };
8027
+
8000
8028
  declare type StringKey<D> = Extract<keyof D, string>;
8001
8029
 
8002
8030
  export declare const suggestionsClasses: {
@@ -8510,7 +8538,16 @@ declare const useClasses_11: (classesProp?: Partial<Record<"root" | "gutter" | "
8510
8538
  readonly cx: (...args: any) => string;
8511
8539
  };
8512
8540
 
8513
- declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "error" | "switchContainer" | "invalidSwitch", string>>, addStatic?: boolean) => {
8541
+ declare const useClasses_110: (classesProp?: Partial<Record<"icon" | "root", string>>, addStatic?: boolean) => {
8542
+ readonly classes: {
8543
+ root: string;
8544
+ icon: string;
8545
+ };
8546
+ readonly css: any;
8547
+ readonly cx: (...args: any) => string;
8548
+ };
8549
+
8550
+ declare const useClasses_111: (classesProp?: Partial<Record<"label" | "root" | "error" | "switchContainer" | "invalidSwitch", string>>, addStatic?: boolean) => {
8514
8551
  readonly classes: {
8515
8552
  root: string;
8516
8553
  label: string;
@@ -8522,7 +8559,7 @@ declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "
8522
8559
  readonly cx: (...args: any) => string;
8523
8560
  };
8524
8561
 
8525
- declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8562
+ declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8526
8563
  readonly classes: {
8527
8564
  root: string;
8528
8565
  };
@@ -8530,7 +8567,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
8530
8567
  readonly cx: (...args: any) => string;
8531
8568
  };
8532
8569
 
8533
- declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8570
+ declare const useClasses_113: (classesProp?: Partial<Record<"content" | "header" | "hidden" | "root" | "actions" | "hasHeader" | "spaceTop" | "raisedHeader", string>>, addStatic?: boolean) => {
8534
8571
  readonly classes: {
8535
8572
  root: string;
8536
8573
  header: string;
@@ -8545,7 +8582,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header"
8545
8582
  readonly cx: (...args: any) => string;
8546
8583
  };
8547
8584
 
8548
- declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8585
+ declare const useClasses_114: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8549
8586
  readonly classes: {
8550
8587
  root: string;
8551
8588
  };
@@ -8553,7 +8590,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, ad
8553
8590
  readonly cx: (...args: any) => string;
8554
8591
  };
8555
8592
 
8556
- declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
8593
+ declare const useClasses_115: (classesProp?: Partial<Record<"root" | "stickyHeader", string>>, addStatic?: boolean) => {
8557
8594
  readonly classes: {
8558
8595
  root: string;
8559
8596
  stickyHeader: string;
@@ -8562,7 +8599,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHead
8562
8599
  readonly cx: (...args: any) => string;
8563
8600
  };
8564
8601
 
8565
- declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm" | "md" | "button" | "icon" | "disabled" | "root" | "categorical" | "hasIcon" | "deleteIcon" | "clickable" | "selected" | "focusVisible" | "outlined" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
8602
+ declare const useClasses_116: (classesProp?: Partial<Record<"label" | "xs" | "sm" | "md" | "button" | "icon" | "disabled" | "root" | "categorical" | "hasIcon" | "deleteIcon" | "clickable" | "selected" | "focusVisible" | "outlined" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
8566
8603
  readonly classes: {
8567
8604
  root: string;
8568
8605
  hasIcon: string;
@@ -8589,7 +8626,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm
8589
8626
  readonly cx: (...args: any) => string;
8590
8627
  };
8591
8628
 
8592
- declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating" | "indicator" | "scroller" | "flexContainer", string>>, addStatic?: boolean) => {
8629
+ declare const useClasses_117: (classesProp?: Partial<Record<"root" | "floating" | "indicator" | "scroller" | "flexContainer", string>>, addStatic?: boolean) => {
8593
8630
  readonly classes: {
8594
8631
  root: string;
8595
8632
  indicator: string;
@@ -8601,7 +8638,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating"
8601
8638
  readonly cx: (...args: any) => string;
8602
8639
  };
8603
8640
 
8604
- declare const useClasses_117: (classesProp?: Partial<Record<"disabled" | "root" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8641
+ declare const useClasses_118: (classesProp?: Partial<Record<"disabled" | "root" | "selected" | "focusVisible", string>>, addStatic?: boolean) => {
8605
8642
  readonly classes: {
8606
8643
  root: string;
8607
8644
  focusVisible: string;
@@ -8612,7 +8649,7 @@ declare const useClasses_117: (classesProp?: Partial<Record<"disabled" | "root"
8612
8649
  readonly cx: (...args: any) => string;
8613
8650
  };
8614
8651
 
8615
- declare const useClasses_118: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "tagsList" | "singleLine" | "inputExtension" | "input" | "readOnly" | "description" | "invalid" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty", string>>, addStatic?: boolean) => {
8652
+ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "tagsList" | "singleLine" | "inputExtension" | "input" | "readOnly" | "description" | "invalid" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty", string>>, addStatic?: boolean) => {
8616
8653
  readonly classes: {
8617
8654
  listItemGutters: string;
8618
8655
  listItemRoot: string;
@@ -8644,7 +8681,21 @@ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "disabled"
8644
8681
  readonly cx: (...args: any) => string;
8645
8682
  };
8646
8683
 
8647
- declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "input" | "description" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8684
+ declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "defaultIcon" | "warningText" | "topGutter" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8685
+ readonly classes: {
8686
+ root: string;
8687
+ defaultIcon: string;
8688
+ warningText: string;
8689
+ show: string;
8690
+ topGutter: string;
8691
+ hideText: string;
8692
+ topBorder: string;
8693
+ };
8694
+ readonly css: any;
8695
+ readonly cx: (...args: any) => string;
8696
+ };
8697
+
8698
+ declare const useClasses_120: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "input" | "description" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8648
8699
  readonly classes: {
8649
8700
  root: string;
8650
8701
  disabled: string;
@@ -8663,21 +8714,7 @@ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled"
8663
8714
  readonly cx: (...args: any) => string;
8664
8715
  };
8665
8716
 
8666
- declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "defaultIcon" | "warningText" | "topGutter" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8667
- readonly classes: {
8668
- root: string;
8669
- defaultIcon: string;
8670
- warningText: string;
8671
- show: string;
8672
- topGutter: string;
8673
- hideText: string;
8674
- topBorder: string;
8675
- };
8676
- readonly css: any;
8677
- readonly cx: (...args: any) => string;
8678
- };
8679
-
8680
- declare const useClasses_120: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8717
+ declare const useClasses_121: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8681
8718
  readonly classes: {
8682
8719
  root: string;
8683
8720
  };
@@ -8685,7 +8722,7 @@ declare const useClasses_120: (classesProp?: Partial<Record<"root", string>>, ad
8685
8722
  readonly cx: (...args: any) => string;
8686
8723
  };
8687
8724
 
8688
- declare const useClasses_121: (classesProp?: Partial<Record<"label" | "icon" | "root" | "error" | "placeholder" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8725
+ declare const useClasses_122: (classesProp?: Partial<Record<"label" | "icon" | "root" | "error" | "placeholder" | "description" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8689
8726
  readonly classes: {
8690
8727
  root: string;
8691
8728
  labelContainer: string;
@@ -8705,7 +8742,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"label" | "icon" | "
8705
8742
  readonly cx: (...args: any) => string;
8706
8743
  };
8707
8744
 
8708
- declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8745
+ declare const useClasses_123: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8709
8746
  readonly classes: {
8710
8747
  root: string;
8711
8748
  };
@@ -8713,7 +8750,7 @@ declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, ad
8713
8750
  readonly cx: (...args: any) => string;
8714
8751
  };
8715
8752
 
8716
- declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "root" | "selected" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8753
+ declare const useClasses_124: (classesProp?: Partial<Record<"content" | "label" | "expanded" | "disabled" | "root" | "selected" | "group" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8717
8754
  readonly classes: {
8718
8755
  root: string;
8719
8756
  group: string;
@@ -8729,7 +8766,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label"
8729
8766
  readonly cx: (...args: any) => string;
8730
8767
  };
8731
8768
 
8732
- declare const useClasses_124: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "root" | "selected" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8769
+ declare const useClasses_125: (classesProp?: Partial<Record<"label" | "expanded" | "disabled" | "root" | "selected" | "focused" | "iconContainer", string>>, addStatic?: boolean) => {
8733
8770
  readonly classes: {
8734
8771
  root: string;
8735
8772
  expanded: string;
@@ -8743,7 +8780,7 @@ declare const useClasses_124: (classesProp?: Partial<Record<"label" | "expanded"
8743
8780
  readonly cx: (...args: any) => string;
8744
8781
  };
8745
8782
 
8746
- declare const useClasses_125: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
8783
+ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "slider" | "collapsed" | "childData", string>>, addStatic?: boolean) => {
8747
8784
  readonly classes: {
8748
8785
  root: string;
8749
8786
  collapsed: string;
@@ -8754,7 +8791,7 @@ declare const useClasses_125: (classesProp?: Partial<Record<"root" | "slider" |
8754
8791
  readonly cx: (...args: any) => string;
8755
8792
  };
8756
8793
 
8757
- declare const useClasses_126: (classesProp?: Partial<Record<"root" | "title" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
8794
+ declare const useClasses_127: (classesProp?: Partial<Record<"root" | "title" | "backButton" | "minimized" | "collapseButton", string>>, addStatic?: boolean) => {
8758
8795
  readonly classes: {
8759
8796
  root: string;
8760
8797
  minimized: string;
@@ -8766,7 +8803,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "title" | "
8766
8803
  readonly cx: (...args: any) => string;
8767
8804
  };
8768
8805
 
8769
- declare const useClasses_127: (classesProp?: Partial<Record<"hide" | "root", string>>, addStatic?: boolean) => {
8806
+ declare const useClasses_128: (classesProp?: Partial<Record<"hide" | "root", string>>, addStatic?: boolean) => {
8770
8807
  readonly classes: {
8771
8808
  root: string;
8772
8809
  hide: string;
@@ -8775,7 +8812,7 @@ declare const useClasses_127: (classesProp?: Partial<Record<"hide" | "root", str
8775
8812
  readonly cx: (...args: any) => string;
8776
8813
  };
8777
8814
 
8778
- declare const useClasses_128: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
8815
+ declare const useClasses_129: (classesProp?: Partial<Record<"action" | "minimized" | "noIcon", string>>, addStatic?: boolean) => {
8779
8816
  readonly classes: {
8780
8817
  action: string;
8781
8818
  noIcon: string;
@@ -8785,19 +8822,6 @@ declare const useClasses_128: (classesProp?: Partial<Record<"action" | "minimize
8785
8822
  readonly cx: (...args: any) => string;
8786
8823
  };
8787
8824
 
8788
- declare const useClasses_129: (classesProp?: Partial<Record<"root" | "list" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
8789
- readonly classes: {
8790
- root: string;
8791
- list: string;
8792
- listItem: string;
8793
- collapsed: string;
8794
- popup: string;
8795
- navigationPopup: string;
8796
- };
8797
- readonly css: any;
8798
- readonly cx: (...args: any) => string;
8799
- };
8800
-
8801
8825
  declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "panel" | "popper" | "error" | "select" | "readOnly" | "description" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8802
8826
  readonly classes: {
8803
8827
  root: string;
@@ -8818,7 +8842,20 @@ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled"
8818
8842
  readonly cx: (...args: any) => string;
8819
8843
  };
8820
8844
 
8821
- declare const useClasses_130: (classesProp?: Partial<Record<"root" | "listItemDisabled" | "listItemSelected" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8845
+ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "list" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
8846
+ readonly classes: {
8847
+ root: string;
8848
+ list: string;
8849
+ listItem: string;
8850
+ collapsed: string;
8851
+ popup: string;
8852
+ navigationPopup: string;
8853
+ };
8854
+ readonly css: any;
8855
+ readonly cx: (...args: any) => string;
8856
+ };
8857
+
8858
+ declare const useClasses_131: (classesProp?: Partial<Record<"root" | "listItemDisabled" | "listItemSelected" | "listItemFocus" | "listContainer" | "forwardButton", string>>, addStatic?: boolean) => {
8822
8859
  readonly classes: {
8823
8860
  root: string;
8824
8861
  listItemSelected: string;
@@ -8831,7 +8868,7 @@ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "listItemDi
8831
8868
  readonly cx: (...args: any) => string;
8832
8869
  };
8833
8870
 
8834
- declare const useClasses_131: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8871
+ declare const useClasses_132: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8835
8872
  readonly classes: {
8836
8873
  root: string;
8837
8874
  };
@@ -8839,7 +8876,7 @@ declare const useClasses_131: (classesProp?: Partial<Record<"root", string>>, ad
8839
8876
  readonly cx: (...args: any) => string;
8840
8877
  };
8841
8878
 
8842
- declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label" | "link" | "hide" | "expanded" | "icon" | "disabled" | "selected" | "selectable" | "unselectable" | "group" | "node" | "focused" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
8879
+ declare const useClasses_133: (classesProp?: Partial<Record<"content" | "label" | "link" | "hide" | "expanded" | "icon" | "disabled" | "selected" | "selectable" | "unselectable" | "group" | "node" | "focused" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
8843
8880
  readonly classes: {
8844
8881
  node: string;
8845
8882
  content: string;
@@ -8865,7 +8902,7 @@ declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label"
8865
8902
  readonly cx: (...args: any) => string;
8866
8903
  };
8867
8904
 
8868
- declare const useClasses_133: (classesProp?: Partial<Record<"text" | "content" | "circle" | "square" | "root" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8905
+ declare const useClasses_134: (classesProp?: Partial<Record<"text" | "content" | "circle" | "square" | "root" | "pulse" | "wave", string>>, addStatic?: boolean) => {
8869
8906
  readonly classes: {
8870
8907
  root: string;
8871
8908
  content: string;
@@ -10630,9 +10667,9 @@ export declare function useHvTreeItem(nodeId: string): {
10630
10667
  expanded: boolean;
10631
10668
  selected: boolean;
10632
10669
  focused: boolean;
10633
- handleExpansion: (event: React_2.MouseEvent) => void;
10634
- handleSelection: (event: React_2.MouseEvent) => void;
10635
- preventSelection: (event: React_2.MouseEvent) => void;
10670
+ handleExpansion: (event: React.MouseEvent) => void;
10671
+ handleSelection: (event: React.MouseEvent) => void;
10672
+ preventSelection: (event: React.MouseEvent) => void;
10636
10673
  };
10637
10674
 
10638
10675
  export declare const useImageLoaded: (src?: string, srcSet?: string) => string | boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/uikit-react-core",
3
- "version": "5.96.3",
3
+ "version": "5.98.0",
4
4
  "private": false,
5
5
  "author": "Hitachi Vantara UI Kit Team",
6
6
  "description": "Core React components for the NEXT Design System.",
@@ -32,9 +32,9 @@
32
32
  "dependencies": {
33
33
  "@emotion/cache": "^11.11.0",
34
34
  "@emotion/serialize": "^1.1.2",
35
- "@hitachivantara/uikit-react-shared": "^5.4.6",
36
- "@hitachivantara/uikit-react-utils": "^0.2.39",
37
- "@hitachivantara/uikit-styles": "^5.48.2",
35
+ "@hitachivantara/uikit-react-shared": "^5.5.1",
36
+ "@hitachivantara/uikit-react-utils": "^0.2.41",
37
+ "@hitachivantara/uikit-styles": "^5.49.0",
38
38
  "@internationalized/date": "^3.2.0",
39
39
  "@mui/base": "5.0.0-beta.68",
40
40
  "@popperjs/core": "^2.11.8",
@@ -61,7 +61,7 @@
61
61
  "access": "public",
62
62
  "directory": "package"
63
63
  },
64
- "gitHead": "e8e37e375a8b3101ac3d223d1a08ca06b53b43de",
64
+ "gitHead": "3b3c13424f41d3ab57653e51d7b0108193eff962",
65
65
  "exports": {
66
66
  ".": {
67
67
  "types": "./dist/types/index.d.ts",