@hitachivantara/uikit-react-core 5.97.0 → 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.
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("react/jsx-runtime");
4
+ const React = require("react");
5
+ const uikitReactUtils = require("@hitachivantara/uikit-react-utils");
6
+ const icons = require("../icons.cjs");
7
+ const StatusIcon_styles = require("./StatusIcon.styles.cjs");
8
+ const IconContainer = require("../IconContainer/IconContainer.cjs");
9
+ const variantIconMap = {
10
+ success: "Success",
11
+ warning: "Caution",
12
+ error: "Fail",
13
+ info: "Info"
14
+ };
15
+ const HvStatusIcon = React.forwardRef(function HvStatusIcon2(props, ref) {
16
+ const {
17
+ classes: classesProp,
18
+ className,
19
+ variant = "default",
20
+ customIcon,
21
+ size = "sm",
22
+ type = "full"
23
+ } = uikitReactUtils.useDefaultProps("HvStatusIcon", props);
24
+ const { classes, cx } = StatusIcon_styles.useClasses(classesProp);
25
+ return /* @__PURE__ */ jsxRuntime.jsx(
26
+ "div",
27
+ {
28
+ ref,
29
+ "data-variant": variant,
30
+ "data-type": type,
31
+ "data-size": size,
32
+ className: cx(classes.root, className),
33
+ children: /* @__PURE__ */ jsxRuntime.jsx(IconContainer.HvIconContainer, { size, children: customIcon || /* @__PURE__ */ jsxRuntime.jsx(
34
+ icons.HvIcon,
35
+ {
36
+ compact: true,
37
+ className: classes.icon,
38
+ name: variantIconMap[variant]
39
+ }
40
+ ) })
41
+ }
42
+ );
43
+ });
44
+ exports.statusIconClasses = StatusIcon_styles.staticClasses;
45
+ exports.HvStatusIcon = HvStatusIcon;
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const uikitReactUtils = require("@hitachivantara/uikit-react-utils");
4
+ const uikitStyles = require("@hitachivantara/uikit-styles");
5
+ const notificationMap = {
6
+ success: "positive",
7
+ warning: "warning",
8
+ error: "negative",
9
+ default: "info",
10
+ info: "info",
11
+ accent: "accent"
12
+ };
13
+ const { staticClasses, useClasses } = uikitReactUtils.createClasses("HvStatusIcon", {
14
+ root: {
15
+ display: "inline-flex",
16
+ lineHeight: 0,
17
+ flexShrink: 0,
18
+ padding: uikitStyles.theme.space.xxs,
19
+ "--icsize": "auto",
20
+ [`&[data-size=xs]`]: { borderRadius: uikitStyles.theme.radii.base },
21
+ [`&[data-size=sm]`]: { borderRadius: uikitStyles.theme.radii.base },
22
+ [`&[data-size=md]`]: { borderRadius: uikitStyles.theme.radii.round },
23
+ [`&[data-size=lg]`]: { borderRadius: uikitStyles.theme.radii.large },
24
+ [`&[data-size=xl]`]: { borderRadius: uikitStyles.theme.radii.large },
25
+ [`:not([data-type="simple"])`]: {
26
+ outline: "1px solid currentcolor"
27
+ },
28
+ ...Object.fromEntries(
29
+ Object.entries(notificationMap).map(([variant, color]) => [
30
+ [`&[data-variant="${variant}"]`],
31
+ {
32
+ color: uikitStyles.theme.colors[color],
33
+ outline: `1px solid ${uikitStyles.theme.colors[`${color}Border`]}`,
34
+ backgroundColor: uikitStyles.theme.colors[`${color}Dimmed`],
35
+ [`&[data-type="simple"]`]: {
36
+ outline: "none",
37
+ backgroundColor: "transparent"
38
+ }
39
+ }
40
+ ])
41
+ ),
42
+ [`&[data-variant="default"]`]: {
43
+ color: uikitStyles.theme.colors.text,
44
+ backgroundColor: uikitStyles.theme.colors.bgContainerSecondary,
45
+ outline: `1px solid ${uikitStyles.theme.colors.borderSubtle}`,
46
+ [`&[data-type="simple"]`]: {
47
+ outline: "none",
48
+ backgroundColor: "transparent"
49
+ }
50
+ }
51
+ },
52
+ icon: {
53
+ fontSize: "inherit"
54
+ }
55
+ });
56
+ exports.staticClasses = staticClasses;
57
+ exports.useClasses = useClasses;
@@ -231,6 +231,8 @@ const SnackbarProvider_styles = require("./SnackbarProvider/SnackbarProvider.sty
231
231
  const SnackbarProvider = require("./SnackbarProvider/SnackbarProvider.cjs");
232
232
  const Stack_styles = require("./Stack/Stack.styles.cjs");
233
233
  const Stack = require("./Stack/Stack.cjs");
234
+ const StatusIcon_styles = require("./StatusIcon/StatusIcon.styles.cjs");
235
+ const StatusIcon = require("./StatusIcon/StatusIcon.cjs");
234
236
  const Switch_styles = require("./Switch/Switch.styles.cjs");
235
237
  const Switch = require("./Switch/Switch.cjs");
236
238
  const useHvTable = require("./Table/hooks/useHvTable.cjs");
@@ -575,6 +577,8 @@ exports.HvSnackbarProvider = SnackbarProvider.HvSnackbarProvider;
575
577
  exports.useHvSnackbar = SnackbarProvider.useHvSnackbar;
576
578
  exports.stackClasses = Stack_styles.staticClasses;
577
579
  exports.HvStack = Stack.HvStack;
580
+ exports.statusIconClasses = StatusIcon_styles.staticClasses;
581
+ exports.HvStatusIcon = StatusIcon.HvStatusIcon;
578
582
  exports.switchClasses = Switch_styles.staticClasses;
579
583
  exports.HvSwitch = Switch.HvSwitch;
580
584
  exports.useHvData = useHvTable.useHvTable;
@@ -21,6 +21,10 @@ const ds3 = uikitStyles.mergeTheme(uikitStyles.ds3, {
21
21
  classes: {
22
22
  root: {
23
23
  borderRadius: 0
24
+ },
25
+ messageIcon: {
26
+ color: "inherit !important",
27
+ padding: 0
24
28
  }
25
29
  }
26
30
  },
@@ -1202,6 +1206,9 @@ const ds3 = uikitStyles.mergeTheme(uikitStyles.ds3, {
1202
1206
  maxHeight: "calc(100% - (2 * 100px))"
1203
1207
  }
1204
1208
  }
1209
+ },
1210
+ HvStatusIcon: {
1211
+ type: "simple"
1205
1212
  }
1206
1213
  }
1207
1214
  });
@@ -78,6 +78,14 @@ const ds5 = uikitStyles.mergeTheme(uikitStyles.ds5, {
78
78
  }
79
79
  }
80
80
  },
81
+ HvCallout: {
82
+ classes: {
83
+ messageIcon: {
84
+ color: "inherit !important",
85
+ padding: 0
86
+ }
87
+ }
88
+ },
81
89
  HvDropdownButton: {
82
90
  classes: {
83
91
  open: {
@@ -118,6 +126,9 @@ const ds5 = uikitStyles.mergeTheme(uikitStyles.ds5, {
118
126
  }
119
127
  }
120
128
  },
129
+ HvStatusIcon: {
130
+ type: "simple"
131
+ },
121
132
  HvTab: {
122
133
  classes: {
123
134
  root: {
@@ -53,8 +53,6 @@ const pentahoPlus = uikitStyles.mergeTheme(uikitStyles.pentahoPlus, {
53
53
  {
54
54
  backgroundColor: uikitStyles.theme.mix(`${color}Dimmed`, 0.5, "dimmer"),
55
55
  "--icolor": uikitStyles.theme.colors[color],
56
- "--outline": uikitStyles.theme.colors[`${color}Border`],
57
- "--bg": uikitStyles.theme.colors[`${color}Subtle`],
58
56
  "--title": uikitStyles.theme.colors[`${color}Deep`]
59
57
  }
60
58
  ])
@@ -65,11 +63,7 @@ const pentahoPlus = uikitStyles.mergeTheme(uikitStyles.pentahoPlus, {
65
63
  }
66
64
  },
67
65
  messageIcon: {
68
- alignSelf: "start",
69
- borderRadius: uikitStyles.theme.radii.round,
70
- color: "var(--icolor)",
71
- outline: `1px solid var(--outline)`,
72
- backgroundColor: "var(--bg)"
66
+ alignSelf: "start"
73
67
  },
74
68
  messageTitle: {
75
69
  color: "var(--title)"
@@ -291,7 +285,7 @@ const pentahoPlus = uikitStyles.mergeTheme(uikitStyles.pentahoPlus, {
291
285
  sm: { fontSize: 20, padding: 2 },
292
286
  md: { fontSize: 26, padding: 3 },
293
287
  lg: { fontSize: 36, padding: 6 },
294
- xl: { fontSize: 48, padding: 8 }
288
+ xl: { fontSize: 48, padding: 5 }
295
289
  }
296
290
  },
297
291
  HvInlineEditor: {
@@ -9,6 +9,7 @@ const icons = require("../icons.cjs");
9
9
  const iconVariant = require("./iconVariant.cjs");
10
10
  const ActionsGeneric = require("../ActionsGeneric/ActionsGeneric.cjs");
11
11
  const Button = require("../Button/Button.cjs");
12
+ const StatusIcon = require("../StatusIcon/StatusIcon.cjs");
12
13
  const _interopDefault = (e) => e && e.__esModule ? e : { default: e };
13
14
  const SnackbarContent__default = /* @__PURE__ */ _interopDefault(SnackbarContent);
14
15
  const { useClasses } = uikitReactUtils.createClasses("HvCallout", {
@@ -48,10 +49,7 @@ const { useClasses } = uikitReactUtils.createClasses("HvCallout", {
48
49
  overflow: "hidden",
49
50
  wordBreak: "break-word"
50
51
  },
51
- messageIcon: {
52
- lineHeight: 0,
53
- flexShrink: 0
54
- },
52
+ messageIcon: {},
55
53
  messageTitle: {
56
54
  display: "block",
57
55
  fontWeight: uikitStyles.theme.fontWeights.semibold
@@ -117,7 +115,14 @@ const HvCallout = React.forwardRef(function HvCallout2(props, ref) {
117
115
  action: classes.action
118
116
  },
119
117
  message: /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
120
- icon && /* @__PURE__ */ jsxRuntime.jsx("div", { className: classes.messageIcon, children: icon }),
118
+ icon && /* @__PURE__ */ jsxRuntime.jsx(
119
+ StatusIcon.HvStatusIcon,
120
+ {
121
+ className: classes.messageIcon,
122
+ variant: variant === "default" ? "info" : variant,
123
+ customIcon
124
+ }
125
+ ),
121
126
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: classes.messageContent, children: [
122
127
  title && /* @__PURE__ */ jsxRuntime.jsx("b", { className: classes.messageTitle, children: title }),
123
128
  children
@@ -0,0 +1,46 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ import { useDefaultProps } from "@hitachivantara/uikit-react-utils";
4
+ import { HvIcon } from "../icons.js";
5
+ import { useClasses } from "./StatusIcon.styles.js";
6
+ import { staticClasses } from "./StatusIcon.styles.js";
7
+ import { HvIconContainer } from "../IconContainer/IconContainer.js";
8
+ const variantIconMap = {
9
+ success: "Success",
10
+ warning: "Caution",
11
+ error: "Fail",
12
+ info: "Info"
13
+ };
14
+ const HvStatusIcon = forwardRef(function HvStatusIcon2(props, ref) {
15
+ const {
16
+ classes: classesProp,
17
+ className,
18
+ variant = "default",
19
+ customIcon,
20
+ size = "sm",
21
+ type = "full"
22
+ } = useDefaultProps("HvStatusIcon", props);
23
+ const { classes, cx } = useClasses(classesProp);
24
+ return /* @__PURE__ */ jsx(
25
+ "div",
26
+ {
27
+ ref,
28
+ "data-variant": variant,
29
+ "data-type": type,
30
+ "data-size": size,
31
+ className: cx(classes.root, className),
32
+ children: /* @__PURE__ */ jsx(HvIconContainer, { size, children: customIcon || /* @__PURE__ */ jsx(
33
+ HvIcon,
34
+ {
35
+ compact: true,
36
+ className: classes.icon,
37
+ name: variantIconMap[variant]
38
+ }
39
+ ) })
40
+ }
41
+ );
42
+ });
43
+ export {
44
+ HvStatusIcon,
45
+ staticClasses as statusIconClasses
46
+ };
@@ -0,0 +1,57 @@
1
+ import { createClasses } from "@hitachivantara/uikit-react-utils";
2
+ import { theme } from "@hitachivantara/uikit-styles";
3
+ const notificationMap = {
4
+ success: "positive",
5
+ warning: "warning",
6
+ error: "negative",
7
+ default: "info",
8
+ info: "info",
9
+ accent: "accent"
10
+ };
11
+ const { staticClasses, useClasses } = createClasses("HvStatusIcon", {
12
+ root: {
13
+ display: "inline-flex",
14
+ lineHeight: 0,
15
+ flexShrink: 0,
16
+ padding: theme.space.xxs,
17
+ "--icsize": "auto",
18
+ [`&[data-size=xs]`]: { borderRadius: theme.radii.base },
19
+ [`&[data-size=sm]`]: { borderRadius: theme.radii.base },
20
+ [`&[data-size=md]`]: { borderRadius: theme.radii.round },
21
+ [`&[data-size=lg]`]: { borderRadius: theme.radii.large },
22
+ [`&[data-size=xl]`]: { borderRadius: theme.radii.large },
23
+ [`:not([data-type="simple"])`]: {
24
+ outline: "1px solid currentcolor"
25
+ },
26
+ ...Object.fromEntries(
27
+ Object.entries(notificationMap).map(([variant, color]) => [
28
+ [`&[data-variant="${variant}"]`],
29
+ {
30
+ color: theme.colors[color],
31
+ outline: `1px solid ${theme.colors[`${color}Border`]}`,
32
+ backgroundColor: theme.colors[`${color}Dimmed`],
33
+ [`&[data-type="simple"]`]: {
34
+ outline: "none",
35
+ backgroundColor: "transparent"
36
+ }
37
+ }
38
+ ])
39
+ ),
40
+ [`&[data-variant="default"]`]: {
41
+ color: theme.colors.text,
42
+ backgroundColor: theme.colors.bgContainerSecondary,
43
+ outline: `1px solid ${theme.colors.borderSubtle}`,
44
+ [`&[data-type="simple"]`]: {
45
+ outline: "none",
46
+ backgroundColor: "transparent"
47
+ }
48
+ }
49
+ },
50
+ icon: {
51
+ fontSize: "inherit"
52
+ }
53
+ });
54
+ export {
55
+ staticClasses,
56
+ useClasses
57
+ };
package/dist/esm/index.js CHANGED
@@ -229,24 +229,26 @@ import { staticClasses as staticClasses93 } from "./SnackbarProvider/SnackbarPro
229
229
  import { HvSnackbarProvider, useHvSnackbar } from "./SnackbarProvider/SnackbarProvider.js";
230
230
  import { staticClasses as staticClasses94 } from "./Stack/Stack.styles.js";
231
231
  import { HvStack } from "./Stack/Stack.js";
232
- import { staticClasses as staticClasses95 } from "./Switch/Switch.styles.js";
232
+ import { staticClasses as staticClasses95 } from "./StatusIcon/StatusIcon.styles.js";
233
+ import { HvStatusIcon } from "./StatusIcon/StatusIcon.js";
234
+ import { staticClasses as staticClasses96 } from "./Switch/Switch.styles.js";
233
235
  import { HvSwitch } from "./Switch/Switch.js";
234
236
  import { useHvTable, useHvTable as useHvTable2 } from "./Table/hooks/useHvTable.js";
235
- import { staticClasses as staticClasses96 } from "./Table/Table.styles.js";
237
+ import { staticClasses as staticClasses97 } from "./Table/Table.styles.js";
236
238
  import { HvTable } from "./Table/Table.js";
237
- import { staticClasses as staticClasses97 } from "./Table/TableContainer/TableContainer.styles.js";
239
+ import { staticClasses as staticClasses98 } from "./Table/TableContainer/TableContainer.styles.js";
238
240
  import { HvTableContainer } from "./Table/TableContainer/TableContainer.js";
239
- import { staticClasses as staticClasses98 } from "./Table/TableSection/TableSection.styles.js";
241
+ import { staticClasses as staticClasses99 } from "./Table/TableSection/TableSection.styles.js";
240
242
  import { HvTableSection } from "./Table/TableSection/TableSection.js";
241
- import { staticClasses as staticClasses99 } from "./Table/TableBody/TableBody.styles.js";
243
+ import { staticClasses as staticClasses100 } from "./Table/TableBody/TableBody.styles.js";
242
244
  import { HvTableBody } from "./Table/TableBody/TableBody.js";
243
- import { staticClasses as staticClasses100 } from "./Table/TableHead/TableHead.styles.js";
245
+ import { staticClasses as staticClasses101 } from "./Table/TableHead/TableHead.styles.js";
244
246
  import { HvTableHead } from "./Table/TableHead/TableHead.js";
245
- import { staticClasses as staticClasses101 } from "./Table/TableHeader/TableHeader.styles.js";
247
+ import { staticClasses as staticClasses102 } from "./Table/TableHeader/TableHeader.styles.js";
246
248
  import { HvTableHeader } from "./Table/TableHeader/TableHeader.js";
247
- import { staticClasses as staticClasses102 } from "./Table/TableRow/TableRow.styles.js";
249
+ import { staticClasses as staticClasses103 } from "./Table/TableRow/TableRow.styles.js";
248
250
  import { HvTableRow } from "./Table/TableRow/TableRow.js";
249
- import { staticClasses as staticClasses103 } from "./Table/TableCell/TableCell.styles.js";
251
+ import { staticClasses as staticClasses104 } from "./Table/TableCell/TableCell.styles.js";
250
252
  import { HvTableCell } from "./Table/TableCell/TableCell.js";
251
253
  import { useHvTableStyles } from "./Table/hooks/useHvTableStyles.js";
252
254
  import { useHvSortBy } from "./Table/hooks/useHvSortBy.js";
@@ -265,48 +267,48 @@ import { HvDateColumnCell } from "./Table/renderers/DateColumnCell.js";
265
267
  import { HvDropdownColumnCell } from "./Table/renderers/DropdownColumnCell.js";
266
268
  import { HvProgressColumnCell } from "./Table/renderers/ProgressColumnCell.js";
267
269
  import { HvSwitchColumnCell } from "./Table/renderers/SwitchColumnCell.js";
268
- import { staticClasses as staticClasses104 } from "./Tabs/Tabs.styles.js";
270
+ import { staticClasses as staticClasses105 } from "./Tabs/Tabs.styles.js";
269
271
  import { HvTabs } from "./Tabs/Tabs.js";
270
- import { staticClasses as staticClasses105 } from "./Tabs/Tab/Tab.styles.js";
272
+ import { staticClasses as staticClasses106 } from "./Tabs/Tab/Tab.styles.js";
271
273
  import { HvTab } from "./Tabs/Tab/Tab.js";
272
- import { staticClasses as staticClasses106 } from "./Tag/Tag.styles.js";
274
+ import { staticClasses as staticClasses107 } from "./Tag/Tag.styles.js";
273
275
  import { HvTag } from "./Tag/Tag.js";
274
- import { staticClasses as staticClasses107 } from "./TagsInput/TagsInput.styles.js";
276
+ import { staticClasses as staticClasses108 } from "./TagsInput/TagsInput.styles.js";
275
277
  import { HvTagsInput } from "./TagsInput/TagsInput.js";
276
- import { staticClasses as staticClasses108 } from "./TextArea/TextArea.styles.js";
278
+ import { staticClasses as staticClasses109 } from "./TextArea/TextArea.styles.js";
277
279
  import { HvTextArea } from "./TextArea/TextArea.js";
278
- import { staticClasses as staticClasses109 } from "./TimeAgo/TimeAgo.styles.js";
280
+ import { staticClasses as staticClasses110 } from "./TimeAgo/TimeAgo.styles.js";
279
281
  import { HvTimeAgo } from "./TimeAgo/TimeAgo.js";
280
- import { staticClasses as staticClasses110 } from "./TimePicker/TimePicker.styles.js";
282
+ import { staticClasses as staticClasses111 } from "./TimePicker/TimePicker.styles.js";
281
283
  import { HvTimePicker } from "./TimePicker/TimePicker.js";
282
284
  import { HvToggleButton } from "./ToggleButton/ToggleButton.js";
283
- import { staticClasses as staticClasses111 } from "./Tooltip/Tooltip.styles.js";
285
+ import { staticClasses as staticClasses112 } from "./Tooltip/Tooltip.styles.js";
284
286
  import { HvTooltip } from "./Tooltip/Tooltip.js";
285
- import { staticClasses as staticClasses112 } from "./TreeView/TreeView.styles.js";
287
+ import { staticClasses as staticClasses113 } from "./TreeView/TreeView.styles.js";
286
288
  import { HvTreeView } from "./TreeView/TreeView.js";
287
- import { staticClasses as staticClasses113 } from "./TreeView/TreeItem/TreeItem.styles.js";
289
+ import { staticClasses as staticClasses114 } from "./TreeView/TreeItem/TreeItem.styles.js";
288
290
  import { HvTreeItem } from "./TreeView/TreeItem/TreeItem.js";
289
291
  import { useHvTreeItem } from "./TreeView/TreeItem/useHvTreeItem.js";
290
- import { staticClasses as staticClasses114 } from "./VerticalNavigation/VerticalNavigation.styles.js";
292
+ import { staticClasses as staticClasses115 } from "./VerticalNavigation/VerticalNavigation.styles.js";
291
293
  import { HvVerticalNavigation } from "./VerticalNavigation/VerticalNavigation.js";
292
- import { staticClasses as staticClasses115 } from "./VerticalNavigation/Header/Header.styles.js";
294
+ import { staticClasses as staticClasses116 } from "./VerticalNavigation/Header/Header.styles.js";
293
295
  import { HvVerticalNavigationHeader } from "./VerticalNavigation/Header/Header.js";
294
- import { staticClasses as staticClasses116 } from "./VerticalNavigation/Actions/Actions.styles.js";
296
+ import { staticClasses as staticClasses117 } from "./VerticalNavigation/Actions/Actions.styles.js";
295
297
  import { HvVerticalNavigationActions } from "./VerticalNavigation/Actions/Actions.js";
296
- import { staticClasses as staticClasses117 } from "./VerticalNavigation/Actions/Action.styles.js";
298
+ import { staticClasses as staticClasses118 } from "./VerticalNavigation/Actions/Action.styles.js";
297
299
  import { HvVerticalNavigationAction } from "./VerticalNavigation/Actions/Action.js";
298
- import { staticClasses as staticClasses118 } from "./VerticalNavigation/Navigation/Navigation.styles.js";
300
+ import { staticClasses as staticClasses119 } from "./VerticalNavigation/Navigation/Navigation.styles.js";
299
301
  import { HvVerticalNavigationTree } from "./VerticalNavigation/Navigation/Navigation.js";
300
- import { staticClasses as staticClasses119 } from "./VerticalNavigation/NavigationSlider/NavigationSlider.styles.js";
302
+ import { staticClasses as staticClasses120 } from "./VerticalNavigation/NavigationSlider/NavigationSlider.styles.js";
301
303
  import { HvVerticalNavigationSlider } from "./VerticalNavigation/NavigationSlider/NavigationSlider.js";
302
- import { staticClasses as staticClasses120 } from "./VerticalNavigation/TreeView/TreeView.styles.js";
304
+ import { staticClasses as staticClasses121 } from "./VerticalNavigation/TreeView/TreeView.styles.js";
303
305
  import { HvVerticalNavigationTreeView } from "./VerticalNavigation/TreeView/TreeView.js";
304
- import { staticClasses as staticClasses121 } from "./VerticalNavigation/TreeView/TreeViewItem.styles.js";
306
+ import { staticClasses as staticClasses122 } from "./VerticalNavigation/TreeView/TreeViewItem.styles.js";
305
307
  import { HvVerticalNavigationTreeViewItem } from "./VerticalNavigation/TreeView/TreeViewItem.js";
306
308
  import { VerticalNavigationContext } from "./VerticalNavigation/VerticalNavigationContext.js";
307
309
  import { HvIconButton } from "./IconButton/IconButton.js";
308
- import { HvIconContainer, staticClasses as staticClasses122, staticClasses as staticClasses123, useClasses } from "./IconContainer/IconContainer.js";
309
- import { staticClasses as staticClasses124 } from "./Skeleton/Skeleton.styles.js";
310
+ import { HvIconContainer, staticClasses as staticClasses123, staticClasses as staticClasses124, useClasses } from "./IconContainer/IconContainer.js";
311
+ import { staticClasses as staticClasses125 } from "./Skeleton/Skeleton.styles.js";
310
312
  import { HvSkeleton } from "./Skeleton/Skeleton.js";
311
313
  import { EmotionContext, HvThemeContext, defaultCacheKey, defaultEmotionCache } from "@hitachivantara/uikit-react-shared";
312
314
  export {
@@ -417,6 +419,7 @@ export {
417
419
  HvSnackbarContent,
418
420
  HvSnackbarProvider,
419
421
  HvStack,
422
+ HvStatusIcon,
420
423
  HvSuggestions,
421
424
  HvSwitch,
422
425
  HvSwitchColumnCell,
@@ -454,8 +457,8 @@ export {
454
457
  VerticalNavigationContext,
455
458
  staticClasses17 as accordionClasses,
456
459
  staticClasses18 as actionBarClasses,
457
- staticClasses117 as actionClasses,
458
- staticClasses116 as actionsClasses,
460
+ staticClasses118 as actionClasses,
461
+ staticClasses117 as actionsClasses,
459
462
  staticClasses19 as actionsGenericClasses,
460
463
  staticClasses7 as adornmentClasses,
461
464
  staticClasses21 as appSwitcherActionClasses,
@@ -539,7 +542,7 @@ export {
539
542
  hvSwitchColumn,
540
543
  hvTagColumn,
541
544
  hvTextColumn,
542
- staticClasses122 as iconContainerClasses,
545
+ staticClasses123 as iconContainerClasses,
543
546
  iconVariant,
544
547
  increaseSize,
545
548
  staticClasses10 as infoMessageClasses,
@@ -583,37 +586,38 @@ export {
583
586
  setId,
584
587
  setUid,
585
588
  staticClasses89 as simpleGridClasses,
586
- staticClasses124 as skeletonClasses,
589
+ staticClasses125 as skeletonClasses,
587
590
  staticClasses90 as sliderClasses,
588
591
  staticClasses91 as snackbarClasses,
589
592
  staticClasses92 as snackbarContentClasses,
590
593
  staticClasses93 as snackbarProviderClasses,
591
594
  staticClasses94 as stackClasses,
592
- staticClasses123 as staticClasses,
595
+ staticClasses124 as staticClasses,
596
+ staticClasses95 as statusIconClasses,
593
597
  staticClasses14 as suggestionsClasses,
594
- staticClasses95 as switchClasses,
595
- staticClasses105 as tabClasses,
596
- staticClasses99 as tableBodyClasses,
597
- staticClasses103 as tableCellClasses,
598
- staticClasses96 as tableClasses,
599
- staticClasses97 as tableContainerClasses,
600
- staticClasses100 as tableHeadClasses,
601
- staticClasses101 as tableHeaderClasses,
602
- staticClasses102 as tableRowClasses,
603
- staticClasses98 as tableSectionClasses,
604
- staticClasses104 as tabsClasses,
605
- staticClasses106 as tagClasses,
606
- staticClasses107 as tagsInputClasses,
607
- staticClasses108 as textAreaClasses,
598
+ staticClasses96 as switchClasses,
599
+ staticClasses106 as tabClasses,
600
+ staticClasses100 as tableBodyClasses,
601
+ staticClasses104 as tableCellClasses,
602
+ staticClasses97 as tableClasses,
603
+ staticClasses98 as tableContainerClasses,
604
+ staticClasses101 as tableHeadClasses,
605
+ staticClasses102 as tableHeaderClasses,
606
+ staticClasses103 as tableRowClasses,
607
+ staticClasses99 as tableSectionClasses,
608
+ staticClasses105 as tabsClasses,
609
+ staticClasses107 as tagClasses,
610
+ staticClasses108 as tagsInputClasses,
611
+ staticClasses109 as textAreaClasses,
608
612
  theme,
609
613
  themes,
610
- staticClasses109 as timeAgoClasses,
611
- staticClasses110 as timePickerClasses,
612
- staticClasses111 as tooltipClasses,
613
- staticClasses113 as treeItemClasses,
614
- staticClasses112 as treeView2Classes,
615
- staticClasses120 as treeViewClasses,
616
- staticClasses121 as treeViewItemClasses,
614
+ staticClasses110 as timeAgoClasses,
615
+ staticClasses111 as timePickerClasses,
616
+ staticClasses112 as tooltipClasses,
617
+ staticClasses114 as treeItemClasses,
618
+ staticClasses113 as treeView2Classes,
619
+ staticClasses121 as treeViewClasses,
620
+ staticClasses122 as treeViewItemClasses,
617
621
  staticClasses as typographyClasses,
618
622
  typographyVariants,
619
623
  uniqueId,
@@ -650,10 +654,10 @@ export {
650
654
  useTheme,
651
655
  useUniqueId,
652
656
  useWidth,
653
- staticClasses114 as verticalNavigationClasses,
654
- staticClasses115 as verticalNavigationHeaderClasses,
655
- staticClasses119 as verticalNavigationSliderClasses,
656
- staticClasses118 as verticalNavigationTreeClasses,
657
+ staticClasses115 as verticalNavigationClasses,
658
+ staticClasses116 as verticalNavigationHeaderClasses,
659
+ staticClasses120 as verticalNavigationSliderClasses,
660
+ staticClasses119 as verticalNavigationTreeClasses,
657
661
  staticClasses86 as verticalScrollListItemClasses,
658
662
  staticClasses11 as warningTextClasses
659
663
  };
@@ -19,6 +19,10 @@ const ds3 = mergeTheme(ds3$1, {
19
19
  classes: {
20
20
  root: {
21
21
  borderRadius: 0
22
+ },
23
+ messageIcon: {
24
+ color: "inherit !important",
25
+ padding: 0
22
26
  }
23
27
  }
24
28
  },
@@ -1200,6 +1204,9 @@ const ds3 = mergeTheme(ds3$1, {
1200
1204
  maxHeight: "calc(100% - (2 * 100px))"
1201
1205
  }
1202
1206
  }
1207
+ },
1208
+ HvStatusIcon: {
1209
+ type: "simple"
1203
1210
  }
1204
1211
  }
1205
1212
  });
@@ -76,6 +76,14 @@ const ds5 = mergeTheme(ds5$1, {
76
76
  }
77
77
  }
78
78
  },
79
+ HvCallout: {
80
+ classes: {
81
+ messageIcon: {
82
+ color: "inherit !important",
83
+ padding: 0
84
+ }
85
+ }
86
+ },
79
87
  HvDropdownButton: {
80
88
  classes: {
81
89
  open: {
@@ -116,6 +124,9 @@ const ds5 = mergeTheme(ds5$1, {
116
124
  }
117
125
  }
118
126
  },
127
+ HvStatusIcon: {
128
+ type: "simple"
129
+ },
119
130
  HvTab: {
120
131
  classes: {
121
132
  root: {
@@ -51,8 +51,6 @@ const pentahoPlus = mergeTheme(pentahoPlus$1, {
51
51
  {
52
52
  backgroundColor: theme.mix(`${color}Dimmed`, 0.5, "dimmer"),
53
53
  "--icolor": theme.colors[color],
54
- "--outline": theme.colors[`${color}Border`],
55
- "--bg": theme.colors[`${color}Subtle`],
56
54
  "--title": theme.colors[`${color}Deep`]
57
55
  }
58
56
  ])
@@ -63,11 +61,7 @@ const pentahoPlus = mergeTheme(pentahoPlus$1, {
63
61
  }
64
62
  },
65
63
  messageIcon: {
66
- alignSelf: "start",
67
- borderRadius: theme.radii.round,
68
- color: "var(--icolor)",
69
- outline: `1px solid var(--outline)`,
70
- backgroundColor: "var(--bg)"
64
+ alignSelf: "start"
71
65
  },
72
66
  messageTitle: {
73
67
  color: "var(--title)"
@@ -289,7 +283,7 @@ const pentahoPlus = mergeTheme(pentahoPlus$1, {
289
283
  sm: { fontSize: 20, padding: 2 },
290
284
  md: { fontSize: 26, padding: 3 },
291
285
  lg: { fontSize: 36, padding: 6 },
292
- xl: { fontSize: 48, padding: 8 }
286
+ xl: { fontSize: 48, padding: 5 }
293
287
  }
294
288
  },
295
289
  HvInlineEditor: {
@@ -7,6 +7,7 @@ import { HvIcon } from "../icons.js";
7
7
  import { iconVariant } from "./iconVariant.js";
8
8
  import { HvActionsGeneric } from "../ActionsGeneric/ActionsGeneric.js";
9
9
  import { HvButton } from "../Button/Button.js";
10
+ import { HvStatusIcon } from "../StatusIcon/StatusIcon.js";
10
11
  const { useClasses } = createClasses("HvCallout", {
11
12
  root: {
12
13
  position: "relative",
@@ -44,10 +45,7 @@ const { useClasses } = createClasses("HvCallout", {
44
45
  overflow: "hidden",
45
46
  wordBreak: "break-word"
46
47
  },
47
- messageIcon: {
48
- lineHeight: 0,
49
- flexShrink: 0
50
- },
48
+ messageIcon: {},
51
49
  messageTitle: {
52
50
  display: "block",
53
51
  fontWeight: theme.fontWeights.semibold
@@ -113,7 +111,14 @@ const HvCallout = forwardRef(function HvCallout2(props, ref) {
113
111
  action: classes.action
114
112
  },
115
113
  message: /* @__PURE__ */ jsxs(Fragment, { children: [
116
- icon && /* @__PURE__ */ jsx("div", { className: classes.messageIcon, children: icon }),
114
+ icon && /* @__PURE__ */ jsx(
115
+ HvStatusIcon,
116
+ {
117
+ className: classes.messageIcon,
118
+ variant: variant === "default" ? "info" : variant,
119
+ customIcon
120
+ }
121
+ ),
117
122
  /* @__PURE__ */ jsxs("div", { className: classes.messageContent, children: [
118
123
  title && /* @__PURE__ */ jsx("b", { className: classes.messageTitle, children: title }),
119
124
  children
@@ -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. */
@@ -6825,7 +6852,7 @@ export declare const HvTimeAgo: <C extends React.ElementType = "p">(props: {
6825
6852
  ref?: PolymorphicRef<C> | undefined;
6826
6853
  } & RefAttributes<unknown>) => React.ReactElement<any> | null;
6827
6854
 
6828
- export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_120>;
6855
+ export declare type HvTimeAgoClasses = ExtractNames<typeof useClasses_121>;
6829
6856
 
6830
6857
  export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = PolymorphicComponentRef<C, {
6831
6858
  /**
@@ -6861,7 +6888,7 @@ export declare type HvTimeAgoProps<C extends React.ElementType = "p"> = Polymorp
6861
6888
  */
6862
6889
  export declare const HvTimePicker: ForwardRefExoticComponent<HvTimePickerProps & RefAttributes<HTMLDivElement>>;
6863
6890
 
6864
- export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_121>;
6891
+ export declare type HvTimePickerClasses = ExtractNames<typeof useClasses_122>;
6865
6892
 
6866
6893
  export declare type HvTimePickerClassKey = "root" | "input" | "label" | "placeholder" | "timePopperContainer" | "separator" | "periodContainer" | "formElementRoot" | "dropdownPlaceholder" | "iconBaseRoot" | "error" | "labelContainer" | "description" | "dropdownHeaderInvalid" | "dropdownPlaceholderDisabled" | "dropdownHeaderOpen";
6867
6894
 
@@ -6989,7 +7016,7 @@ export declare interface HvTooltipProps extends Omit<TooltipProps, "classes"> {
6989
7016
  containerId?: string;
6990
7017
  }
6991
7018
 
6992
- declare type HvTreeContentClasses = ExtractNames<typeof useClasses_124>;
7019
+ declare type HvTreeContentClasses = ExtractNames<typeof useClasses_125>;
6993
7020
 
6994
7021
  export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLElement> {
6995
7022
  /** className applied to the root element. */
@@ -7010,7 +7037,7 @@ export declare interface HvTreeContentProps extends React.HTMLAttributes<HTMLEle
7010
7037
 
7011
7038
  export declare const HvTreeItem: ForwardRefExoticComponent<HvTreeItemProps & RefAttributes<HTMLLIElement>>;
7012
7039
 
7013
- export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_123>;
7040
+ export declare type HvTreeItemClasses = ExtractNames<typeof useClasses_124>;
7014
7041
 
7015
7042
  export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElement> {
7016
7043
  /** The element id */
@@ -7060,7 +7087,7 @@ export declare interface HvTreeItemProps extends React.HTMLAttributes<HTMLElemen
7060
7087
  */
7061
7088
  export declare const HvTreeView: <Multiple extends boolean | undefined>(props: HvTreeViewProps<Multiple> & RefAttributes<HTMLUListElement>) => React.ReactElement<any> | null;
7062
7089
 
7063
- export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_122>;
7090
+ export declare type HvTreeViewClasses = ExtractNames<typeof useClasses_123>;
7064
7091
 
7065
7092
  export declare interface HvTreeViewProps<Multiple extends boolean | undefined> extends HvBaseProps<HTMLUListElement>, DefaultTreeViewPluginParameters<Multiple> {
7066
7093
  /** A Jss Object used to override or extend the styles applied. */
@@ -7192,7 +7219,7 @@ export declare const HvVerticalNavigation: ForwardRefExoticComponent<HvVerticalN
7192
7219
 
7193
7220
  export declare const HvVerticalNavigationAction: (props: HvVerticalNavigationActionProps) => JSX_2.Element;
7194
7221
 
7195
- export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_128>;
7222
+ export declare type HvVerticalNavigationActionClasses = ExtractNames<typeof useClasses_129>;
7196
7223
 
7197
7224
  export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonProps, "classes" | "icon"> {
7198
7225
  /** A Jss Object used to override or extend the styles applied to the component. */
@@ -7205,18 +7232,18 @@ export declare interface HvVerticalNavigationActionProps extends Omit<HvButtonPr
7205
7232
 
7206
7233
  export declare const HvVerticalNavigationActions: (props: HvVerticalNavigationActionsProps) => JSX_2.Element;
7207
7234
 
7208
- export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_127>;
7235
+ export declare type HvVerticalNavigationActionsClasses = ExtractNames<typeof useClasses_128>;
7209
7236
 
7210
7237
  export declare interface HvVerticalNavigationActionsProps extends HvBaseProps {
7211
7238
  /** A Jss Object used to override or extend the styles applied to the component. */
7212
7239
  classes?: HvVerticalNavigationActionsClasses;
7213
7240
  }
7214
7241
 
7215
- export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_125>;
7242
+ export declare type HvVerticalNavigationClasses = ExtractNames<typeof useClasses_126>;
7216
7243
 
7217
7244
  export declare const HvVerticalNavigationHeader: (props: HvVerticalNavigationHeaderProps) => JSX_2.Element | null;
7218
7245
 
7219
- export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_126>;
7246
+ export declare type HvVerticalNavigationHeaderClasses = ExtractNames<typeof useClasses_127>;
7220
7247
 
7221
7248
  export declare interface HvVerticalNavigationHeaderProps extends HvBaseProps {
7222
7249
  /** The title text to show on header. */
@@ -7263,7 +7290,7 @@ export declare interface HvVerticalNavigationProps extends HvBaseProps<HTMLDivEl
7263
7290
 
7264
7291
  export declare const HvVerticalNavigationSlider: (props: HvVerticalNavigationSliderProps) => JSX_2.Element;
7265
7292
 
7266
- export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_130>;
7293
+ export declare type HvVerticalNavigationSliderClasses = ExtractNames<typeof useClasses_131>;
7267
7294
 
7268
7295
  export declare interface HvVerticalNavigationSliderProps extends Omit<HvListContainerProps, "classes"> {
7269
7296
  /** A Jss Object used to override or extend the styles applied. */
@@ -7291,7 +7318,7 @@ export declare interface HvVerticalNavigationSliderProps extends Omit<HvListCont
7291
7318
 
7292
7319
  export declare const HvVerticalNavigationTree: (props: HvVerticalNavigationTreeProps) => JSX_2.Element;
7293
7320
 
7294
- export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_129>;
7321
+ export declare type HvVerticalNavigationTreeClasses = ExtractNames<typeof useClasses_130>;
7295
7322
 
7296
7323
  export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLDivElement, "onChange" | "onToggle"> {
7297
7324
  /** A Jss Object used to override or extend the styles applied. */
@@ -7335,11 +7362,11 @@ export declare interface HvVerticalNavigationTreeProps extends HvBaseProps<HTMLD
7335
7362
 
7336
7363
  export declare const HvVerticalNavigationTreeView: ForwardRefExoticComponent<HvVerticalNavigationTreeViewProps & RefAttributes<HTMLUListElement>>;
7337
7364
 
7338
- export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_131>;
7365
+ export declare type HvVerticalNavigationTreeViewClasses = ExtractNames<typeof useClasses_132>;
7339
7366
 
7340
7367
  export declare const HvVerticalNavigationTreeViewItem: ForwardRefExoticComponent<HvVerticalNavigationTreeViewItemProps & RefAttributes<unknown>>;
7341
7368
 
7342
- export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_132>;
7369
+ export declare type HvVerticalNavigationTreeViewItemClasses = ExtractNames<typeof useClasses_133>;
7343
7370
 
7344
7371
  export declare interface HvVerticalNavigationTreeViewItemProps {
7345
7372
  /**
@@ -7993,6 +8020,11 @@ declare const staticClasses: {
7993
8020
  export { staticClasses as iconContainerClasses }
7994
8021
  export { staticClasses }
7995
8022
 
8023
+ export declare const statusIconClasses: {
8024
+ root: string;
8025
+ icon: string;
8026
+ };
8027
+
7996
8028
  declare type StringKey<D> = Extract<keyof D, string>;
7997
8029
 
7998
8030
  export declare const suggestionsClasses: {
@@ -8506,7 +8538,16 @@ declare const useClasses_11: (classesProp?: Partial<Record<"root" | "gutter" | "
8506
8538
  readonly cx: (...args: any) => string;
8507
8539
  };
8508
8540
 
8509
- 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) => {
8510
8551
  readonly classes: {
8511
8552
  root: string;
8512
8553
  label: string;
@@ -8518,7 +8559,7 @@ declare const useClasses_110: (classesProp?: Partial<Record<"label" | "root" | "
8518
8559
  readonly cx: (...args: any) => string;
8519
8560
  };
8520
8561
 
8521
- declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8562
+ declare const useClasses_112: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8522
8563
  readonly classes: {
8523
8564
  root: string;
8524
8565
  };
@@ -8526,7 +8567,7 @@ declare const useClasses_111: (classesProp?: Partial<Record<"root", string>>, ad
8526
8567
  readonly cx: (...args: any) => string;
8527
8568
  };
8528
8569
 
8529
- 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) => {
8530
8571
  readonly classes: {
8531
8572
  root: string;
8532
8573
  header: string;
@@ -8541,7 +8582,7 @@ declare const useClasses_112: (classesProp?: Partial<Record<"content" | "header"
8541
8582
  readonly cx: (...args: any) => string;
8542
8583
  };
8543
8584
 
8544
- declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8585
+ declare const useClasses_114: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8545
8586
  readonly classes: {
8546
8587
  root: string;
8547
8588
  };
@@ -8549,7 +8590,7 @@ declare const useClasses_113: (classesProp?: Partial<Record<"root", string>>, ad
8549
8590
  readonly cx: (...args: any) => string;
8550
8591
  };
8551
8592
 
8552
- 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) => {
8553
8594
  readonly classes: {
8554
8595
  root: string;
8555
8596
  stickyHeader: string;
@@ -8558,7 +8599,7 @@ declare const useClasses_114: (classesProp?: Partial<Record<"root" | "stickyHead
8558
8599
  readonly cx: (...args: any) => string;
8559
8600
  };
8560
8601
 
8561
- declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm" | "md" | "button" | "icon" | "disabled" | "root" | "categorical" | "hasIcon" | "deleteIcon" | "clickable" | "selected" | "focusVisible" | "outlined" | "chipRoot" | "tagButton" | "disabledDeleteIcon" | "categoricalFocus" | "categoricalDisabled", string>>, addStatic?: boolean) => {
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) => {
8562
8603
  readonly classes: {
8563
8604
  root: string;
8564
8605
  hasIcon: string;
@@ -8585,7 +8626,7 @@ declare const useClasses_115: (classesProp?: Partial<Record<"label" | "xs" | "sm
8585
8626
  readonly cx: (...args: any) => string;
8586
8627
  };
8587
8628
 
8588
- 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) => {
8589
8630
  readonly classes: {
8590
8631
  root: string;
8591
8632
  indicator: string;
@@ -8597,7 +8638,7 @@ declare const useClasses_116: (classesProp?: Partial<Record<"root" | "floating"
8597
8638
  readonly cx: (...args: any) => string;
8598
8639
  };
8599
8640
 
8600
- 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) => {
8601
8642
  readonly classes: {
8602
8643
  root: string;
8603
8644
  focusVisible: string;
@@ -8608,7 +8649,7 @@ declare const useClasses_117: (classesProp?: Partial<Record<"disabled" | "root"
8608
8649
  readonly cx: (...args: any) => string;
8609
8650
  };
8610
8651
 
8611
- declare const useClasses_118: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "error" | "tagsList" | "singleLine" | "inputExtension" | "input" | "readOnly" | "description" | "invalid" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty", string>>, addStatic?: boolean) => {
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) => {
8612
8653
  readonly classes: {
8613
8654
  listItemGutters: string;
8614
8655
  listItemRoot: string;
@@ -8640,7 +8681,21 @@ declare const useClasses_118: (classesProp?: Partial<Record<"label" | "disabled"
8640
8681
  readonly cx: (...args: any) => string;
8641
8682
  };
8642
8683
 
8643
- 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) => {
8644
8699
  readonly classes: {
8645
8700
  root: string;
8646
8701
  disabled: string;
@@ -8659,21 +8714,7 @@ declare const useClasses_119: (classesProp?: Partial<Record<"label" | "disabled"
8659
8714
  readonly cx: (...args: any) => string;
8660
8715
  };
8661
8716
 
8662
- declare const useClasses_12: (classesProp?: Partial<Record<"show" | "root" | "defaultIcon" | "warningText" | "topGutter" | "hideText" | "topBorder", string>>, addStatic?: boolean) => {
8663
- readonly classes: {
8664
- root: string;
8665
- defaultIcon: string;
8666
- warningText: string;
8667
- show: string;
8668
- topGutter: string;
8669
- hideText: string;
8670
- topBorder: string;
8671
- };
8672
- readonly css: any;
8673
- readonly cx: (...args: any) => string;
8674
- };
8675
-
8676
- declare const useClasses_120: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8717
+ declare const useClasses_121: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8677
8718
  readonly classes: {
8678
8719
  root: string;
8679
8720
  };
@@ -8681,7 +8722,7 @@ declare const useClasses_120: (classesProp?: Partial<Record<"root", string>>, ad
8681
8722
  readonly cx: (...args: any) => string;
8682
8723
  };
8683
8724
 
8684
- 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) => {
8685
8726
  readonly classes: {
8686
8727
  root: string;
8687
8728
  labelContainer: string;
@@ -8701,7 +8742,7 @@ declare const useClasses_121: (classesProp?: Partial<Record<"label" | "icon" | "
8701
8742
  readonly cx: (...args: any) => string;
8702
8743
  };
8703
8744
 
8704
- declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8745
+ declare const useClasses_123: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8705
8746
  readonly classes: {
8706
8747
  root: string;
8707
8748
  };
@@ -8709,7 +8750,7 @@ declare const useClasses_122: (classesProp?: Partial<Record<"root", string>>, ad
8709
8750
  readonly cx: (...args: any) => string;
8710
8751
  };
8711
8752
 
8712
- 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) => {
8713
8754
  readonly classes: {
8714
8755
  root: string;
8715
8756
  group: string;
@@ -8725,7 +8766,7 @@ declare const useClasses_123: (classesProp?: Partial<Record<"content" | "label"
8725
8766
  readonly cx: (...args: any) => string;
8726
8767
  };
8727
8768
 
8728
- 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) => {
8729
8770
  readonly classes: {
8730
8771
  root: string;
8731
8772
  expanded: string;
@@ -8739,7 +8780,7 @@ declare const useClasses_124: (classesProp?: Partial<Record<"label" | "expanded"
8739
8780
  readonly cx: (...args: any) => string;
8740
8781
  };
8741
8782
 
8742
- 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) => {
8743
8784
  readonly classes: {
8744
8785
  root: string;
8745
8786
  collapsed: string;
@@ -8750,7 +8791,7 @@ declare const useClasses_125: (classesProp?: Partial<Record<"root" | "slider" |
8750
8791
  readonly cx: (...args: any) => string;
8751
8792
  };
8752
8793
 
8753
- 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) => {
8754
8795
  readonly classes: {
8755
8796
  root: string;
8756
8797
  minimized: string;
@@ -8762,7 +8803,7 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root" | "title" | "
8762
8803
  readonly cx: (...args: any) => string;
8763
8804
  };
8764
8805
 
8765
- 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) => {
8766
8807
  readonly classes: {
8767
8808
  root: string;
8768
8809
  hide: string;
@@ -8771,7 +8812,7 @@ declare const useClasses_127: (classesProp?: Partial<Record<"hide" | "root", str
8771
8812
  readonly cx: (...args: any) => string;
8772
8813
  };
8773
8814
 
8774
- 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) => {
8775
8816
  readonly classes: {
8776
8817
  action: string;
8777
8818
  noIcon: string;
@@ -8781,19 +8822,6 @@ declare const useClasses_128: (classesProp?: Partial<Record<"action" | "minimize
8781
8822
  readonly cx: (...args: any) => string;
8782
8823
  };
8783
8824
 
8784
- declare const useClasses_129: (classesProp?: Partial<Record<"root" | "list" | "popup" | "listItem" | "collapsed" | "navigationPopup", string>>, addStatic?: boolean) => {
8785
- readonly classes: {
8786
- root: string;
8787
- list: string;
8788
- listItem: string;
8789
- collapsed: string;
8790
- popup: string;
8791
- navigationPopup: string;
8792
- };
8793
- readonly css: any;
8794
- readonly cx: (...args: any) => string;
8795
- };
8796
-
8797
8825
  declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled" | "root" | "panel" | "popper" | "error" | "select" | "readOnly" | "description" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8798
8826
  readonly classes: {
8799
8827
  root: string;
@@ -8814,7 +8842,20 @@ declare const useClasses_13: (classesProp?: Partial<Record<"label" | "disabled"
8814
8842
  readonly cx: (...args: any) => string;
8815
8843
  };
8816
8844
 
8817
- 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) => {
8818
8859
  readonly classes: {
8819
8860
  root: string;
8820
8861
  listItemSelected: string;
@@ -8827,7 +8868,7 @@ declare const useClasses_130: (classesProp?: Partial<Record<"root" | "listItemDi
8827
8868
  readonly cx: (...args: any) => string;
8828
8869
  };
8829
8870
 
8830
- declare const useClasses_131: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8871
+ declare const useClasses_132: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
8831
8872
  readonly classes: {
8832
8873
  root: string;
8833
8874
  };
@@ -8835,7 +8876,7 @@ declare const useClasses_131: (classesProp?: Partial<Record<"root", string>>, ad
8835
8876
  readonly cx: (...args: any) => string;
8836
8877
  };
8837
8878
 
8838
- declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label" | "link" | "hide" | "expanded" | "icon" | "disabled" | "selected" | "selectable" | "unselectable" | "group" | "node" | "focused" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
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) => {
8839
8880
  readonly classes: {
8840
8881
  node: string;
8841
8882
  content: string;
@@ -8861,7 +8902,7 @@ declare const useClasses_132: (classesProp?: Partial<Record<"content" | "label"
8861
8902
  readonly cx: (...args: any) => string;
8862
8903
  };
8863
8904
 
8864
- 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) => {
8865
8906
  readonly classes: {
8866
8907
  root: string;
8867
8908
  content: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/uikit-react-core",
3
- "version": "5.97.0",
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.5.0",
36
- "@hitachivantara/uikit-react-utils": "^0.2.40",
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": "acfc9b4224682aaebdf1c171e80eb1bfc2632a47",
64
+ "gitHead": "3b3c13424f41d3ab57653e51d7b0108193eff962",
65
65
  "exports": {
66
66
  ".": {
67
67
  "types": "./dist/types/index.d.ts",