@hitachivantara/uikit-react-core 5.66.3 → 5.66.5

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.
@@ -48,12 +48,15 @@ const HvStack = (props) => {
48
48
  orientation: processedDirection === "column" ? "horizontal" : "vertical",
49
49
  flexItem: processedDirection === "row",
50
50
  role: "separator",
51
+ classes: {
52
+ root: classes.divider
53
+ },
51
54
  ...dividerProps
52
55
  }
53
56
  );
54
57
  }
55
58
  return divider;
56
- }, [divider, dividerProps, processedDirection]);
59
+ }, [classes.divider, divider, dividerProps, processedDirection]);
57
60
  return /* @__PURE__ */ jsxRuntime.jsx(
58
61
  "div",
59
62
  {
@@ -12,6 +12,9 @@ const { staticClasses, useClasses } = classes.createClasses("HvStack", {
12
12
  row: {
13
13
  flexDirection: "row"
14
14
  },
15
+ divider: {
16
+ borderColor: uikitStyles.theme.colors.atmo4
17
+ },
15
18
  xs: {
16
19
  gap: uikitStyles.theme.space.xs
17
20
  },
@@ -45,12 +45,15 @@ const HvStack = (props) => {
45
45
  orientation: processedDirection === "column" ? "horizontal" : "vertical",
46
46
  flexItem: processedDirection === "row",
47
47
  role: "separator",
48
+ classes: {
49
+ root: classes.divider
50
+ },
48
51
  ...dividerProps
49
52
  }
50
53
  );
51
54
  }
52
55
  return divider;
53
- }, [divider, dividerProps, processedDirection]);
56
+ }, [classes.divider, divider, dividerProps, processedDirection]);
54
57
  return /* @__PURE__ */ jsx(
55
58
  "div",
56
59
  {
@@ -1 +1 @@
1
- {"version":3,"file":"Stack.js","sources":["../../../src/Stack/Stack.tsx"],"sourcesContent":["import { Children, useCallback, useMemo, useRef } from \"react\";\nimport MuiDivider, {\n DividerProps as MuiDividerProps,\n} from \"@mui/material/Divider\";\nimport { useTheme } from \"@mui/material/styles\";\nimport { HvBreakpoints } from \"@hitachivantara/uikit-styles\";\n\nimport { HvFocus } from \"../Focus\";\nimport { useDefaultProps } from \"../hooks/useDefaultProps\";\nimport { useWidth } from \"../hooks/useWidth\";\nimport { HvBaseProps } from \"../types/generic\";\nimport { ExtractNames } from \"../utils/classes\";\nimport { staticClasses, useClasses } from \"./Stack.styles\";\n\nexport { staticClasses as stackClasses };\n\nexport type HvStackClasses = ExtractNames<typeof useClasses>;\n\nexport type HvStackDirection = \"column\" | \"row\" | Partial<HvStackBreakpoints>;\nexport interface HvStackBreakpoints extends Record<HvBreakpoints, string> {}\n\nexport interface HvStackProps extends HvBaseProps {\n /** The direction of the stack. Can be either a string or an object that states the direction for each breakpoint. */\n direction?: HvStackDirection;\n /** The spacing between elements of the stack. */\n spacing?: HvBreakpoints;\n /** The divider component to be used between the stack elements.\n * - If `true` the Material-UI Divider component will be used.\n * - If a React node is passed then the custom divider will be used.\n */\n divider?: boolean | React.ReactNode;\n /** The properties to pass on to the Material-UI component. */\n dividerProps?: MuiDividerProps;\n /** Sets whether or not there should be arrow navigation between the stack elements. */\n withNavigation?: boolean;\n /** A Jss Object used to override or extend the styles applied to the component. */\n classes?: HvStackClasses;\n}\n\n/**\n * @returns {string} - Returns a direction for the stack: column or row. If the\n * `direction` property is a string and a valid direction then we\n * use it. If it's an object with multiple directions by breakpoint\n * we use the appropriate one or search for the nearest breakpoint\n * smaller than the current one to use.\n */\nconst getDirection = (direction: any, width: any, breakpoints: any) => {\n if (typeof direction === \"string\") return direction;\n\n for (let i = breakpoints.indexOf(width); i >= 0; i -= 1) {\n if (direction[breakpoints[i]] !== undefined) {\n return direction[breakpoints[i]];\n }\n }\n return \"column\";\n};\n\n/**\n * A Stack component allows the organization of its children in a vertical or horizontal layout.\n *\n * It also allows the specification of the spacing between the stack elements and the addition of a divider between the elements.\n */\nexport const HvStack = (props: HvStackProps) => {\n const {\n classes: classesProp,\n className,\n children,\n direction = \"column\",\n spacing = \"sm\",\n divider = false,\n withNavigation = false,\n dividerProps = {},\n ...others\n } = useDefaultProps(\"HvStack\", props);\n const { classes, cx } = useClasses(classesProp);\n\n const width = useWidth();\n const containerRef = useRef(null);\n const { breakpoints } = useTheme();\n\n const processedDirection = useMemo(\n () => getDirection(direction, width, breakpoints.keys),\n [direction, width, breakpoints],\n );\n\n /**\n * @returns {node} - The divider component to use. If the property `divider` is\n * set to `true` then the Material-UI divider is used, otherwise\n * we use the custom divider the user passed.\n */\n const getDividerComponent = useCallback(() => {\n if (typeof divider === \"boolean\" && divider) {\n return (\n <MuiDivider\n orientation={\n processedDirection === \"column\" ? \"horizontal\" : \"vertical\"\n }\n flexItem={processedDirection === \"row\"}\n role=\"separator\"\n {...dividerProps}\n />\n );\n }\n return divider;\n }, [divider, dividerProps, processedDirection]);\n\n return (\n <div\n ref={containerRef}\n className={cx(\n classes.root,\n classes[processedDirection],\n classes[spacing],\n className,\n )}\n {...others}\n >\n {Children.map(children, (child, i) => {\n return (\n <>\n {divider && i !== 0 && getDividerComponent()}\n {withNavigation ? (\n <HvFocus\n rootRef={containerRef}\n focusDisabled={false}\n strategy=\"grid\"\n navigationJump={\n processedDirection === \"column\"\n ? 1\n : Children.count(children) || 0\n }\n filterClass=\"child\"\n >\n <div className=\"child\">{child}</div>\n </HvFocus>\n ) : (\n child\n )}\n </>\n );\n })}\n </div>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;AA8CA,MAAM,eAAe,CAAC,WAAgB,OAAY,gBAAqB;AACrE,MAAI,OAAO,cAAc;AAAiB,WAAA;AAEjC,WAAA,IAAI,YAAY,QAAQ,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG;AACvD,QAAI,UAAU,YAAY,CAAC,CAAC,MAAM,QAAW;AACpC,aAAA,UAAU,YAAY,CAAC,CAAC;AAAA,IACjC;AAAA,EACF;AACO,SAAA;AACT;AAOa,MAAA,UAAU,CAAC,UAAwB;AACxC,QAAA;AAAA,IACJ,SAAS;AAAA,IACT;AAAA,IACA;AAAA,IACA,YAAY;AAAA,IACZ,UAAU;AAAA,IACV,UAAU;AAAA,IACV,iBAAiB;AAAA,IACjB,eAAe,CAAC;AAAA,IAChB,GAAG;AAAA,EAAA,IACD,gBAAgB,WAAW,KAAK;AACpC,QAAM,EAAE,SAAS,GAAG,IAAI,WAAW,WAAW;AAE9C,QAAM,QAAQ;AACR,QAAA,eAAe,OAAO,IAAI;AAC1B,QAAA,EAAE,gBAAgB;AAExB,QAAM,qBAAqB;AAAA,IACzB,MAAM,aAAa,WAAW,OAAO,YAAY,IAAI;AAAA,IACrD,CAAC,WAAW,OAAO,WAAW;AAAA,EAAA;AAQ1B,QAAA,sBAAsB,YAAY,MAAM;AACxC,QAAA,OAAO,YAAY,aAAa,SAAS;AAEzC,aAAA;AAAA,QAAC;AAAA,QAAA;AAAA,UACC,aACE,uBAAuB,WAAW,eAAe;AAAA,UAEnD,UAAU,uBAAuB;AAAA,UACjC,MAAK;AAAA,UACJ,GAAG;AAAA,QAAA;AAAA,MAAA;AAAA,IAGV;AACO,WAAA;AAAA,EACN,GAAA,CAAC,SAAS,cAAc,kBAAkB,CAAC;AAG5C,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,KAAK;AAAA,MACL,WAAW;AAAA,QACT,QAAQ;AAAA,QACR,QAAQ,kBAAkB;AAAA,QAC1B,QAAQ,OAAO;AAAA,QACf;AAAA,MACF;AAAA,MACC,GAAG;AAAA,MAEH,UAAS,SAAA,IAAI,UAAU,CAAC,OAAO,MAAM;AACpC,eAEK,qBAAA,UAAA,EAAA,UAAA;AAAA,UAAW,WAAA,MAAM,KAAK,oBAAoB;AAAA,UAC1C,iBACC;AAAA,YAAC;AAAA,YAAA;AAAA,cACC,SAAS;AAAA,cACT,eAAe;AAAA,cACf,UAAS;AAAA,cACT,gBACE,uBAAuB,WACnB,IACA,SAAS,MAAM,QAAQ,KAAK;AAAA,cAElC,aAAY;AAAA,cAEZ,UAAC,oBAAA,OAAA,EAAI,WAAU,SAAS,UAAM,OAAA;AAAA,YAAA;AAAA,UAAA,IAGhC;AAAA,QAEJ,EAAA,CAAA;AAAA,MAAA,CAEH;AAAA,IAAA;AAAA,EAAA;AAGP;"}
1
+ {"version":3,"file":"Stack.js","sources":["../../../src/Stack/Stack.tsx"],"sourcesContent":["import { Children, useCallback, useMemo, useRef } from \"react\";\nimport MuiDivider, {\n DividerProps as MuiDividerProps,\n} from \"@mui/material/Divider\";\nimport { useTheme } from \"@mui/material/styles\";\nimport { HvBreakpoints } from \"@hitachivantara/uikit-styles\";\n\nimport { HvFocus } from \"../Focus\";\nimport { useDefaultProps } from \"../hooks/useDefaultProps\";\nimport { useWidth } from \"../hooks/useWidth\";\nimport { HvBaseProps } from \"../types/generic\";\nimport { ExtractNames } from \"../utils/classes\";\nimport { staticClasses, useClasses } from \"./Stack.styles\";\n\nexport { staticClasses as stackClasses };\n\nexport type HvStackClasses = ExtractNames<typeof useClasses>;\n\nexport type HvStackDirection = \"column\" | \"row\" | Partial<HvStackBreakpoints>;\nexport interface HvStackBreakpoints extends Record<HvBreakpoints, string> {}\n\nexport interface HvStackProps extends HvBaseProps {\n /** The direction of the stack. Can be either a string or an object that states the direction for each breakpoint. */\n direction?: HvStackDirection;\n /** The spacing between elements of the stack. */\n spacing?: HvBreakpoints;\n /** The divider component to be used between the stack elements.\n * - If `true` the Material-UI Divider component will be used.\n * - If a React node is passed then the custom divider will be used.\n */\n divider?: boolean | React.ReactNode;\n /** The properties to pass on to the Material-UI component. */\n dividerProps?: MuiDividerProps;\n /** Sets whether or not there should be arrow navigation between the stack elements. */\n withNavigation?: boolean;\n /** A Jss Object used to override or extend the styles applied to the component. */\n classes?: HvStackClasses;\n}\n\n/**\n * @returns {string} - Returns a direction for the stack: column or row. If the\n * `direction` property is a string and a valid direction then we\n * use it. If it's an object with multiple directions by breakpoint\n * we use the appropriate one or search for the nearest breakpoint\n * smaller than the current one to use.\n */\nconst getDirection = (direction: any, width: any, breakpoints: any) => {\n if (typeof direction === \"string\") return direction;\n\n for (let i = breakpoints.indexOf(width); i >= 0; i -= 1) {\n if (direction[breakpoints[i]] !== undefined) {\n return direction[breakpoints[i]];\n }\n }\n return \"column\";\n};\n\n/**\n * A Stack component allows the organization of its children in a vertical or horizontal layout.\n *\n * It also allows the specification of the spacing between the stack elements and the addition of a divider between the elements.\n */\nexport const HvStack = (props: HvStackProps) => {\n const {\n classes: classesProp,\n className,\n children,\n direction = \"column\",\n spacing = \"sm\",\n divider = false,\n withNavigation = false,\n dividerProps = {},\n ...others\n } = useDefaultProps(\"HvStack\", props);\n const { classes, cx } = useClasses(classesProp);\n\n const width = useWidth();\n const containerRef = useRef(null);\n const { breakpoints } = useTheme();\n\n const processedDirection = useMemo(\n () => getDirection(direction, width, breakpoints.keys),\n [direction, width, breakpoints],\n );\n\n /**\n * @returns {node} - The divider component to use. If the property `divider` is\n * set to `true` then the Material-UI divider is used, otherwise\n * we use the custom divider the user passed.\n */\n const getDividerComponent = useCallback(() => {\n if (typeof divider === \"boolean\" && divider) {\n return (\n <MuiDivider\n orientation={\n processedDirection === \"column\" ? \"horizontal\" : \"vertical\"\n }\n flexItem={processedDirection === \"row\"}\n role=\"separator\"\n classes={{\n root: classes.divider,\n }}\n {...dividerProps}\n />\n );\n }\n return divider;\n }, [classes.divider, divider, dividerProps, processedDirection]);\n\n return (\n <div\n ref={containerRef}\n className={cx(\n classes.root,\n classes[processedDirection],\n classes[spacing],\n className,\n )}\n {...others}\n >\n {Children.map(children, (child, i) => {\n return (\n <>\n {divider && i !== 0 && getDividerComponent()}\n {withNavigation ? (\n <HvFocus\n rootRef={containerRef}\n focusDisabled={false}\n strategy=\"grid\"\n navigationJump={\n processedDirection === \"column\"\n ? 1\n : Children.count(children) || 0\n }\n filterClass=\"child\"\n >\n <div className=\"child\">{child}</div>\n </HvFocus>\n ) : (\n child\n )}\n </>\n );\n })}\n </div>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;AA8CA,MAAM,eAAe,CAAC,WAAgB,OAAY,gBAAqB;AACrE,MAAI,OAAO,cAAc;AAAiB,WAAA;AAEjC,WAAA,IAAI,YAAY,QAAQ,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG;AACvD,QAAI,UAAU,YAAY,CAAC,CAAC,MAAM,QAAW;AACpC,aAAA,UAAU,YAAY,CAAC,CAAC;AAAA,IACjC;AAAA,EACF;AACO,SAAA;AACT;AAOa,MAAA,UAAU,CAAC,UAAwB;AACxC,QAAA;AAAA,IACJ,SAAS;AAAA,IACT;AAAA,IACA;AAAA,IACA,YAAY;AAAA,IACZ,UAAU;AAAA,IACV,UAAU;AAAA,IACV,iBAAiB;AAAA,IACjB,eAAe,CAAC;AAAA,IAChB,GAAG;AAAA,EAAA,IACD,gBAAgB,WAAW,KAAK;AACpC,QAAM,EAAE,SAAS,GAAG,IAAI,WAAW,WAAW;AAE9C,QAAM,QAAQ;AACR,QAAA,eAAe,OAAO,IAAI;AAC1B,QAAA,EAAE,gBAAgB;AAExB,QAAM,qBAAqB;AAAA,IACzB,MAAM,aAAa,WAAW,OAAO,YAAY,IAAI;AAAA,IACrD,CAAC,WAAW,OAAO,WAAW;AAAA,EAAA;AAQ1B,QAAA,sBAAsB,YAAY,MAAM;AACxC,QAAA,OAAO,YAAY,aAAa,SAAS;AAEzC,aAAA;AAAA,QAAC;AAAA,QAAA;AAAA,UACC,aACE,uBAAuB,WAAW,eAAe;AAAA,UAEnD,UAAU,uBAAuB;AAAA,UACjC,MAAK;AAAA,UACL,SAAS;AAAA,YACP,MAAM,QAAQ;AAAA,UAChB;AAAA,UACC,GAAG;AAAA,QAAA;AAAA,MAAA;AAAA,IAGV;AACO,WAAA;AAAA,EAAA,GACN,CAAC,QAAQ,SAAS,SAAS,cAAc,kBAAkB,CAAC;AAG7D,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,KAAK;AAAA,MACL,WAAW;AAAA,QACT,QAAQ;AAAA,QACR,QAAQ,kBAAkB;AAAA,QAC1B,QAAQ,OAAO;AAAA,QACf;AAAA,MACF;AAAA,MACC,GAAG;AAAA,MAEH,UAAS,SAAA,IAAI,UAAU,CAAC,OAAO,MAAM;AACpC,eAEK,qBAAA,UAAA,EAAA,UAAA;AAAA,UAAW,WAAA,MAAM,KAAK,oBAAoB;AAAA,UAC1C,iBACC;AAAA,YAAC;AAAA,YAAA;AAAA,cACC,SAAS;AAAA,cACT,eAAe;AAAA,cACf,UAAS;AAAA,cACT,gBACE,uBAAuB,WACnB,IACA,SAAS,MAAM,QAAQ,KAAK;AAAA,cAElC,aAAY;AAAA,cAEZ,UAAC,oBAAA,OAAA,EAAI,WAAU,SAAS,UAAM,OAAA;AAAA,YAAA;AAAA,UAAA,IAGhC;AAAA,QAEJ,EAAA,CAAA;AAAA,MAAA,CAEH;AAAA,IAAA;AAAA,EAAA;AAGP;"}
@@ -10,6 +10,9 @@ const { staticClasses, useClasses } = createClasses("HvStack", {
10
10
  row: {
11
11
  flexDirection: "row"
12
12
  },
13
+ divider: {
14
+ borderColor: theme.colors.atmo4
15
+ },
13
16
  xs: {
14
17
  gap: theme.space.xs
15
18
  },
@@ -1 +1 @@
1
- {"version":3,"file":"Stack.styles.js","sources":["../../../src/Stack/Stack.styles.tsx"],"sourcesContent":["import { theme } from \"@hitachivantara/uikit-styles\";\n\nimport { createClasses } from \"../utils/classes\";\n\nexport const { staticClasses, useClasses } = createClasses(\"HvStack\", {\n root: {\n display: \"flex\",\n },\n column: {\n flexDirection: \"column\",\n },\n row: {\n flexDirection: \"row\",\n },\n xs: {\n gap: theme.space.xs,\n },\n sm: {\n gap: theme.space.sm,\n },\n md: {\n gap: theme.spacing(4),\n },\n lg: {\n gap: theme.spacing(6),\n },\n xl: {\n gap: theme.spacing(11),\n },\n});\n"],"names":[],"mappings":";;AAIO,MAAM,EAAE,eAAe,eAAe,cAAc,WAAW;AAAA,EACpE,MAAM;AAAA,IACJ,SAAS;AAAA,EACX;AAAA,EACA,QAAQ;AAAA,IACN,eAAe;AAAA,EACjB;AAAA,EACA,KAAK;AAAA,IACH,eAAe;AAAA,EACjB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,MAAM;AAAA,EACnB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,MAAM;AAAA,EACnB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,QAAQ,CAAC;AAAA,EACtB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,QAAQ,CAAC;AAAA,EACtB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,QAAQ,EAAE;AAAA,EACvB;AACF,CAAC;"}
1
+ {"version":3,"file":"Stack.styles.js","sources":["../../../src/Stack/Stack.styles.tsx"],"sourcesContent":["import { theme } from \"@hitachivantara/uikit-styles\";\n\nimport { createClasses } from \"../utils/classes\";\n\nexport const { staticClasses, useClasses } = createClasses(\"HvStack\", {\n root: {\n display: \"flex\",\n },\n column: {\n flexDirection: \"column\",\n },\n row: {\n flexDirection: \"row\",\n },\n divider: {\n borderColor: theme.colors.atmo4,\n },\n xs: {\n gap: theme.space.xs,\n },\n sm: {\n gap: theme.space.sm,\n },\n md: {\n gap: theme.spacing(4),\n },\n lg: {\n gap: theme.spacing(6),\n },\n xl: {\n gap: theme.spacing(11),\n },\n});\n"],"names":[],"mappings":";;AAIO,MAAM,EAAE,eAAe,eAAe,cAAc,WAAW;AAAA,EACpE,MAAM;AAAA,IACJ,SAAS;AAAA,EACX;AAAA,EACA,QAAQ;AAAA,IACN,eAAe;AAAA,EACjB;AAAA,EACA,KAAK;AAAA,IACH,eAAe;AAAA,EACjB;AAAA,EACA,SAAS;AAAA,IACP,aAAa,MAAM,OAAO;AAAA,EAC5B;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,MAAM;AAAA,EACnB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,MAAM;AAAA,EACnB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,QAAQ,CAAC;AAAA,EACtB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,QAAQ,CAAC;AAAA,EACtB;AAAA,EACA,IAAI;AAAA,IACF,KAAK,MAAM,QAAQ,EAAE;AAAA,EACvB;AACF,CAAC;"}
@@ -569,8 +569,8 @@ export declare const checkValidHexColorValue: (value?: string) => boolean;
569
569
 
570
570
  export declare const colorPickerClasses: {
571
571
  colorPicker: "HvColorPicker-colorPicker";
572
- label: "HvColorPicker-label";
573
572
  description: "HvColorPicker-description";
573
+ label: "HvColorPicker-label";
574
574
  root: "HvColorPicker-root";
575
575
  panel: "HvColorPicker-panel";
576
576
  headerColorValue: "HvColorPicker-headerColorValue";
@@ -623,8 +623,8 @@ name: Name, stylesObject: Record<ClassName, CSSInterpolation>): {
623
623
  export declare const createTheme: (props: HvCreateThemeProps) => HvTheme | HvThemeStructure;
624
624
 
625
625
  export declare const datePickerClasses: {
626
- label: "HvDatePicker-label";
627
626
  description: "HvDatePicker-description";
627
+ label: "HvDatePicker-label";
628
628
  root: "HvDatePicker-root";
629
629
  panel: "HvDatePicker-panel";
630
630
  icon: "HvDatePicker-icon";
@@ -789,8 +789,8 @@ declare interface Descriptor {
789
789
  }
790
790
 
791
791
  export declare const dialogActionClasses: {
792
- spacing: "HvDialog-Action-spacing";
793
792
  root: "HvDialog-Action-root";
793
+ spacing: "HvDialog-Action-spacing";
794
794
  fullscreen: "HvDialog-Action-fullscreen";
795
795
  };
796
796
 
@@ -843,8 +843,8 @@ export declare const drawerClasses: {
843
843
  };
844
844
 
845
845
  export declare const dropdownClasses: {
846
- label: "HvDropdown-label";
847
846
  description: "HvDropdown-description";
847
+ label: "HvDropdown-label";
848
848
  root: "HvDropdown-root";
849
849
  placeholder: "HvDropdown-placeholder";
850
850
  disabled: "HvDropdown-disabled";
@@ -913,8 +913,8 @@ export declare const fileUploaderPreviewClasses: {
913
913
  };
914
914
 
915
915
  export declare const filterGroupClasses: {
916
- label: "HvFilterGroup-label";
917
916
  description: "HvFilterGroup-description";
917
+ label: "HvFilterGroup-label";
918
918
  root: "HvFilterGroup-root";
919
919
  error: "HvFilterGroup-error";
920
920
  labelContainer: "HvFilterGroup-labelContainer";
@@ -7070,6 +7070,7 @@ export declare const HvTypography: <C extends ElementType<any, keyof JSX_2.Intri
7070
7070
  display: string;
7071
7071
  "5xlTitle": string;
7072
7072
  "4xlTitle": string;
7073
+ link: string;
7073
7074
  title1: string;
7074
7075
  title2: string;
7075
7076
  title3: string;
@@ -7085,7 +7086,6 @@ export declare const HvTypography: <C extends ElementType<any, keyof JSX_2.Intri
7085
7086
  xxsTitle: string;
7086
7087
  sectionTitle: string;
7087
7088
  placeholderText: string;
7088
- link: string;
7089
7089
  disabledText: string;
7090
7090
  selectedNavText: string;
7091
7091
  vizTextDisabled: string;
@@ -7656,8 +7656,8 @@ export declare const inlineEditorClasses: {
7656
7656
  };
7657
7657
 
7658
7658
  export declare const inputClasses: {
7659
- label: "HvInput-label";
7660
7659
  description: "HvInput-description";
7660
+ label: "HvInput-label";
7661
7661
  root: "HvInput-root";
7662
7662
  inputBorderContainer: "HvInput-inputBorderContainer";
7663
7663
  inputRoot: "HvInput-inputRoot";
@@ -7808,9 +7808,9 @@ export declare const multiButtonClasses: {
7808
7808
  splitDisabled: "HvMultiButton-splitDisabled";
7809
7809
  multiple: "HvMultiButton-multiple";
7810
7810
  primaryGhost: "HvMultiButton-primaryGhost";
7811
- primarySubtle: "HvMultiButton-primarySubtle";
7812
7811
  splitGroup: "HvMultiButton-splitGroup";
7813
7812
  splitGroupDisabled: "HvMultiButton-splitGroupDisabled";
7813
+ primarySubtle: "HvMultiButton-primarySubtle";
7814
7814
  splitContainer: "HvMultiButton-splitContainer";
7815
7815
  firstButton: "HvMultiButton-firstButton";
7816
7816
  lastButton: "HvMultiButton-lastButton";
@@ -8050,8 +8050,8 @@ export declare const sectionClasses: {
8050
8050
  };
8051
8051
 
8052
8052
  export declare const selectClasses: {
8053
- label: "HvSelect-label";
8054
8053
  description: "HvSelect-description";
8054
+ label: "HvSelect-label";
8055
8055
  root: "HvSelect-root";
8056
8056
  panel: "HvSelect-panel";
8057
8057
  disabled: "HvSelect-disabled";
@@ -8068,8 +8068,8 @@ export declare const selectClasses: {
8068
8068
  export declare const selectionListClasses: {
8069
8069
  vertical: "HvSelectionList-vertical";
8070
8070
  horizontal: "HvSelectionList-horizontal";
8071
- label: "HvSelectionList-label";
8072
8071
  description: "HvSelectionList-description";
8072
+ label: "HvSelectionList-label";
8073
8073
  root: "HvSelectionList-root";
8074
8074
  listbox: "HvSelectionList-listbox";
8075
8075
  error: "HvSelectionList-error";
@@ -8157,6 +8157,7 @@ export declare const stackClasses: {
8157
8157
  lg: "HvStack-lg";
8158
8158
  xl: "HvStack-xl";
8159
8159
  root: "HvStack-root";
8160
+ divider: "HvStack-divider";
8160
8161
  row: "HvStack-row";
8161
8162
  column: "HvStack-column";
8162
8163
  };
@@ -8316,8 +8317,8 @@ export declare const tagClasses: {
8316
8317
  };
8317
8318
 
8318
8319
  export declare const tagsInputClasses: {
8319
- label: "HvTagsInput-label";
8320
8320
  description: "HvTagsInput-description";
8321
+ label: "HvTagsInput-label";
8321
8322
  root: "HvTagsInput-root";
8322
8323
  disabled: "HvTagsInput-disabled";
8323
8324
  readOnly: "HvTagsInput-readOnly";
@@ -8344,8 +8345,8 @@ export declare const tagsInputClasses: {
8344
8345
  };
8345
8346
 
8346
8347
  export declare const textAreaClasses: {
8347
- label: "HvTextArea-label";
8348
8348
  description: "HvTextArea-description";
8349
+ label: "HvTextArea-label";
8349
8350
  root: "HvTextArea-root";
8350
8351
  disabled: "HvTextArea-disabled";
8351
8352
  input: "HvTextArea-input";
@@ -8369,8 +8370,8 @@ export declare const timeAgoClasses: {
8369
8370
  export declare type TimeFormat = "12" | "24";
8370
8371
 
8371
8372
  export declare const timePickerClasses: {
8372
- label: "HvTimePicker-label";
8373
8373
  description: "HvTimePicker-description";
8374
+ label: "HvTimePicker-label";
8374
8375
  root: "HvTimePicker-root";
8375
8376
  placeholder: "HvTimePicker-placeholder";
8376
8377
  icon: "HvTimePicker-icon";
@@ -8420,8 +8421,8 @@ export declare const treeViewClasses: {
8420
8421
 
8421
8422
  export declare const treeViewItemClasses: {
8422
8423
  content: "HvVerticalNavigationTreeViewItem-content";
8423
- label: "HvVerticalNavigationTreeViewItem-label";
8424
8424
  link: "HvVerticalNavigationTreeViewItem-link";
8425
+ label: "HvVerticalNavigationTreeViewItem-label";
8425
8426
  disabled: "HvVerticalNavigationTreeViewItem-disabled";
8426
8427
  selectable: "HvVerticalNavigationTreeViewItem-selectable";
8427
8428
  selected: "HvVerticalNavigationTreeViewItem-selected";
@@ -8461,6 +8462,7 @@ export declare const typographyClasses: {
8461
8462
  display: "HvTypography-display";
8462
8463
  "5xlTitle": "HvTypography-5xlTitle";
8463
8464
  "4xlTitle": "HvTypography-4xlTitle";
8465
+ link: "HvTypography-link";
8464
8466
  title1: "HvTypography-title1";
8465
8467
  title2: "HvTypography-title2";
8466
8468
  title3: "HvTypography-title3";
@@ -8476,7 +8478,6 @@ export declare const typographyClasses: {
8476
8478
  xxsTitle: "HvTypography-xxsTitle";
8477
8479
  sectionTitle: "HvTypography-sectionTitle";
8478
8480
  placeholderText: "HvTypography-placeholderText";
8479
- link: "HvTypography-link";
8480
8481
  disabledText: "HvTypography-disabledText";
8481
8482
  selectedNavText: "HvTypography-selectedNavText";
8482
8483
  vizTextDisabled: "HvTypography-vizTextDisabled";
@@ -8500,11 +8501,12 @@ export declare type UseBulkActionsProps = (<D extends object = Record<string, un
8500
8501
  pluginName: string;
8501
8502
  };
8502
8503
 
8503
- declare const useClasses: (classesProp?: Partial<Record<"display" | "5xlTitle" | "4xlTitle" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | "xxlTitle" | "lTitle" | "sTitle" | "xxsTitle" | "sectionTitle" | "placeholderText" | "link" | "disabledText" | "selectedNavText" | "vizTextDisabled" | "xsInlineLink" | "root" | "disabled" | "isLink" | "noWrap" | "3xlTitle" | "xlTitle" | "mTitle" | "xsTitle" | "highlightText" | "normalText" | "vizText", string>>, addStatic?: boolean) => {
8504
+ declare const useClasses: (classesProp?: Partial<Record<"display" | "5xlTitle" | "4xlTitle" | "link" | "title1" | "title2" | "title3" | "title4" | "label" | "body" | "captionLabel" | "caption1" | "caption2" | "xxlTitle" | "lTitle" | "sTitle" | "xxsTitle" | "sectionTitle" | "placeholderText" | "disabledText" | "selectedNavText" | "vizTextDisabled" | "xsInlineLink" | "root" | "disabled" | "isLink" | "noWrap" | "3xlTitle" | "xlTitle" | "mTitle" | "xsTitle" | "highlightText" | "normalText" | "vizText", string>>, addStatic?: boolean) => {
8504
8505
  classes: {
8505
8506
  display: string;
8506
8507
  "5xlTitle": string;
8507
8508
  "4xlTitle": string;
8509
+ link: string;
8508
8510
  title1: string;
8509
8511
  title2: string;
8510
8512
  title3: string;
@@ -8520,7 +8522,6 @@ declare const useClasses: (classesProp?: Partial<Record<"display" | "5xlTitle" |
8520
8522
  xxsTitle: string;
8521
8523
  sectionTitle: string;
8522
8524
  placeholderText: string;
8523
- link: string;
8524
8525
  disabledText: string;
8525
8526
  selectedNavText: string;
8526
8527
  vizTextDisabled: string;
@@ -8648,7 +8649,7 @@ declare const useClasses_104: (classesProp?: Partial<Record<"snackItemRoot", str
8648
8649
  cx: (...args: any) => string;
8649
8650
  };
8650
8651
 
8651
- declare const useClasses_105: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "row" | "column", string>>, addStatic?: boolean) => {
8652
+ declare const useClasses_105: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "divider" | "row" | "column", string>>, addStatic?: boolean) => {
8652
8653
  classes: {
8653
8654
  xs: string;
8654
8655
  sm: string;
@@ -8656,6 +8657,7 @@ declare const useClasses_105: (classesProp?: Partial<Record<"xs" | "sm" | "md" |
8656
8657
  lg: string;
8657
8658
  xl: string;
8658
8659
  root: string;
8660
+ divider: string;
8659
8661
  row: string;
8660
8662
  column: string;
8661
8663
  };
@@ -8717,10 +8719,10 @@ declare const useClasses_109: (classesProp?: Partial<Record<"root", string>>, ad
8717
8719
  cx: (...args: any) => string;
8718
8720
  };
8719
8721
 
8720
- declare const useClasses_11: (classesProp?: Partial<Record<"label" | "description" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "error" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8722
+ declare const useClasses_11: (classesProp?: Partial<Record<"description" | "label" | "root" | "panel" | "disabled" | "readOnly" | "select" | "popper" | "error" | "invalid" | "labelContainer" | "panelOpenedUp" | "panelOpenedDown", string>>, addStatic?: boolean) => {
8721
8723
  classes: {
8722
- label: string;
8723
8724
  description: string;
8725
+ label: string;
8724
8726
  root: string;
8725
8727
  panel: string;
8726
8728
  disabled: string;
@@ -8789,10 +8791,10 @@ declare const useClasses_112: (classesProp?: Partial<Record<"root" | "indicator"
8789
8791
  cx: (...args: any) => string;
8790
8792
  };
8791
8793
 
8792
- declare const useClasses_113: (classesProp?: Partial<Record<"label" | "description" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "error" | "invalid" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
8794
+ declare const useClasses_113: (classesProp?: Partial<Record<"description" | "label" | "root" | "disabled" | "readOnly" | "input" | "tagsList" | "error" | "invalid" | "labelContainer" | "resizable" | "suggestionsContainer" | "suggestionList" | "inputExtension" | "chipRoot" | "listItemGutters" | "listItemRoot" | "characterCounter" | "tagInputContainerRoot" | "tagInputRoot" | "tagSelected" | "tagInputBorderContainer" | "tagInputRootFocused" | "tagInputRootEmpty" | "singleLine", string>>, addStatic?: boolean) => {
8793
8795
  classes: {
8794
- label: string;
8795
8796
  description: string;
8797
+ label: string;
8796
8798
  root: string;
8797
8799
  disabled: string;
8798
8800
  readOnly: string;
@@ -8824,10 +8826,10 @@ declare const useClasses_113: (classesProp?: Partial<Record<"label" | "descripti
8824
8826
  cx: (...args: any) => string;
8825
8827
  };
8826
8828
 
8827
- declare const useClasses_114: (classesProp?: Partial<Record<"label" | "description" | "root" | "disabled" | "input" | "error" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8829
+ declare const useClasses_114: (classesProp?: Partial<Record<"description" | "label" | "root" | "disabled" | "input" | "error" | "invalid" | "labelContainer" | "resizable" | "inputResizable" | "characterCounter" | "baseInput", string>>, addStatic?: boolean) => {
8828
8830
  classes: {
8829
- label: string;
8830
8831
  description: string;
8832
+ label: string;
8831
8833
  root: string;
8832
8834
  disabled: string;
8833
8835
  input: string;
@@ -8857,10 +8859,10 @@ declare const useClasses_115: (classesProp?: Partial<Record<"root", string>>, ad
8857
8859
  cx: (...args: any) => string;
8858
8860
  };
8859
8861
 
8860
- declare const useClasses_116: (classesProp?: Partial<Record<"label" | "description" | "root" | "placeholder" | "icon" | "error" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8862
+ declare const useClasses_116: (classesProp?: Partial<Record<"description" | "label" | "root" | "placeholder" | "icon" | "error" | "labelContainer" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "placeholderDisabled" | "dropdownPanel" | "timePopperContainer", string>>, addStatic?: boolean) => {
8861
8863
  classes: {
8862
- label: string;
8863
8864
  description: string;
8865
+ label: string;
8864
8866
  root: string;
8865
8867
  placeholder: string;
8866
8868
  icon: string;
@@ -9044,11 +9046,11 @@ declare const useClasses_126: (classesProp?: Partial<Record<"root", string>>, ad
9044
9046
  cx: (...args: any) => string;
9045
9047
  };
9046
9048
 
9047
- declare const useClasses_127: (classesProp?: Partial<Record<"content" | "label" | "link" | "disabled" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
9049
+ declare const useClasses_127: (classesProp?: Partial<Record<"content" | "link" | "label" | "disabled" | "selectable" | "selected" | "hide" | "expanded" | "unselectable" | "group" | "node" | "focused" | "expandable" | "labelIcon" | "collapsed" | "minimized" | "unselected" | "labelExpandable", string>>, addStatic?: boolean) => {
9048
9050
  classes: {
9049
9051
  content: string;
9050
- label: string;
9051
9052
  link: string;
9053
+ label: string;
9052
9054
  disabled: string;
9053
9055
  selectable: string;
9054
9056
  selected: string;
@@ -9129,12 +9131,12 @@ declare const useClasses_14: (classesProp?: Partial<Record<"root", string>>, add
9129
9131
  cx: (...args: any) => string;
9130
9132
  };
9131
9133
 
9132
- declare const useClasses_15: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "description" | "root" | "listbox" | "error" | "invalid", string>>, addStatic?: boolean) => {
9134
+ declare const useClasses_15: (classesProp?: Partial<Record<"vertical" | "horizontal" | "description" | "label" | "root" | "listbox" | "error" | "invalid", string>>, addStatic?: boolean) => {
9133
9135
  classes: {
9134
9136
  vertical: string;
9135
9137
  horizontal: string;
9136
- label: string;
9137
9138
  description: string;
9139
+ label: string;
9138
9140
  root: string;
9139
9141
  listbox: string;
9140
9142
  error: string;
@@ -9719,10 +9721,10 @@ declare const useClasses_44: (classesProp?: Partial<Record<"image" | "slide", st
9719
9721
  cx: (...args: any) => string;
9720
9722
  };
9721
9723
 
9722
- declare const useClasses_45: (classesProp?: Partial<Record<"label" | "description" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "icon" | "error" | "adornmentButton" | "labelContainer" | "inputRootDisabled" | "adornmentsBox" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
9724
+ declare const useClasses_45: (classesProp?: Partial<Record<"description" | "label" | "root" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "icon" | "error" | "adornmentButton" | "labelContainer" | "inputRootDisabled" | "adornmentsBox" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
9723
9725
  classes: {
9724
- label: string;
9725
9726
  description: string;
9727
+ label: string;
9726
9728
  root: string;
9727
9729
  inputBorderContainer: string;
9728
9730
  inputRoot: string;
@@ -9791,11 +9793,11 @@ declare const useClasses_47: (classesProp?: Partial<Record<"vertical" | "horizon
9791
9793
  cx: (...args: any) => string;
9792
9794
  };
9793
9795
 
9794
- declare const useClasses_48: (classesProp?: Partial<Record<"colorPicker" | "label" | "description" | "root" | "panel" | "headerColorValue" | "recommendedColorsRoot" | "labelContainer" | "headerColorIcon" | "colorPickerIcon" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
9796
+ declare const useClasses_48: (classesProp?: Partial<Record<"colorPicker" | "description" | "label" | "root" | "panel" | "headerColorValue" | "recommendedColorsRoot" | "labelContainer" | "headerColorIcon" | "colorPickerIcon" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
9795
9797
  classes: {
9796
9798
  colorPicker: string;
9797
- label: string;
9798
9799
  description: string;
9800
+ label: string;
9799
9801
  root: string;
9800
9802
  panel: string;
9801
9803
  headerColorValue: string;
@@ -9994,10 +9996,10 @@ declare const useClasses_56: (classesProp?: Partial<Record<"root" | "sortDropdow
9994
9996
  cx: (...args: any) => string;
9995
9997
  };
9996
9998
 
9997
- declare const useClasses_57: (classesProp?: Partial<Record<"label" | "description" | "root" | "placeholder" | "disabled" | "readOnly" | "placeholderClosed" | "error" | "arrow" | "dropdown" | "labelContainer" | "selectionDisabled" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
9999
+ declare const useClasses_57: (classesProp?: Partial<Record<"description" | "label" | "root" | "placeholder" | "disabled" | "readOnly" | "placeholderClosed" | "error" | "arrow" | "dropdown" | "labelContainer" | "selectionDisabled" | "dropdownHeader" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "dropdownListContainer" | "rootList", string>>, addStatic?: boolean) => {
9998
10000
  classes: {
9999
- label: string;
10000
10001
  description: string;
10002
+ label: string;
10001
10003
  root: string;
10002
10004
  placeholder: string;
10003
10005
  disabled: string;
@@ -10039,10 +10041,10 @@ declare const useClasses_58: (classesProp?: Partial<Record<"selection" | "select
10039
10041
  cx: (...args: any) => string;
10040
10042
  };
10041
10043
 
10042
- declare const useClasses_59: (classesProp?: Partial<Record<"label" | "description" | "root" | "panel" | "icon" | "inputText" | "action" | "error" | "dropdown" | "labelContainer" | "actionContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "dateText", string>>, addStatic?: boolean) => {
10044
+ declare const useClasses_59: (classesProp?: Partial<Record<"description" | "label" | "root" | "panel" | "icon" | "inputText" | "action" | "error" | "dropdown" | "labelContainer" | "actionContainer" | "dropdownHeaderInvalid" | "dropdownHeaderOpen" | "leftContainer" | "rightContainer" | "dateText", string>>, addStatic?: boolean) => {
10043
10045
  classes: {
10044
- label: string;
10045
10046
  description: string;
10047
+ label: string;
10046
10048
  root: string;
10047
10049
  panel: string;
10048
10050
  icon: string;
@@ -10108,10 +10110,10 @@ declare const useClasses_61: (classesProp?: Partial<Record<"root" | "textContent
10108
10110
  cx: (...args: any) => string;
10109
10111
  };
10110
10112
 
10111
- declare const useClasses_62: (classesProp?: Partial<Record<"spacing" | "root" | "fullscreen", string>>, addStatic?: boolean) => {
10113
+ declare const useClasses_62: (classesProp?: Partial<Record<"root" | "spacing" | "fullscreen", string>>, addStatic?: boolean) => {
10112
10114
  classes: {
10113
- spacing: string;
10114
10115
  root: string;
10116
+ spacing: string;
10115
10117
  fullscreen: string;
10116
10118
  };
10117
10119
  css: {
@@ -10247,10 +10249,10 @@ declare const useClasses_7: (classesProp?: Partial<Record<"root", string>>, addS
10247
10249
  cx: (...args: any) => string;
10248
10250
  };
10249
10251
 
10250
- declare const useClasses_70: (classesProp?: Partial<Record<"label" | "description" | "root" | "error" | "labelContainer", string>>, addStatic?: boolean) => {
10252
+ declare const useClasses_70: (classesProp?: Partial<Record<"description" | "label" | "root" | "error" | "labelContainer", string>>, addStatic?: boolean) => {
10251
10253
  classes: {
10252
- label: string;
10253
10254
  description: string;
10255
+ label: string;
10254
10256
  root: string;
10255
10257
  error: string;
10256
10258
  labelContainer: string;
@@ -10572,7 +10574,7 @@ declare const useClasses_87: (classesProp?: Partial<Record<"root" | "formContain
10572
10574
  cx: (...args: any) => string;
10573
10575
  };
10574
10576
 
10575
- declare const useClasses_88: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "split" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "splitDisabled" | "multiple" | "primaryGhost" | "primarySubtle" | "splitGroup" | "splitGroupDisabled" | "splitContainer" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
10577
+ declare const useClasses_88: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "split" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "splitDisabled" | "multiple" | "primaryGhost" | "splitGroup" | "splitGroupDisabled" | "primarySubtle" | "splitContainer" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
10576
10578
  classes: {
10577
10579
  secondary: string;
10578
10580
  primary: string;
@@ -10586,9 +10588,9 @@ declare const useClasses_88: (classesProp?: Partial<Record<"secondary" | "primar
10586
10588
  splitDisabled: string;
10587
10589
  multiple: string;
10588
10590
  primaryGhost: string;
10589
- primarySubtle: string;
10590
10591
  splitGroup: string;
10591
10592
  splitGroupDisabled: string;
10593
+ primarySubtle: string;
10592
10594
  splitContainer: string;
10593
10595
  firstButton: string;
10594
10596
  lastButton: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/uikit-react-core",
3
- "version": "5.66.3",
3
+ "version": "5.66.5",
4
4
  "private": false,
5
5
  "author": "Hitachi Vantara UI Kit Team",
6
6
  "description": "Core React components for the NEXT Design System.",
@@ -33,9 +33,9 @@
33
33
  "@emotion/css": "^11.11.2",
34
34
  "@emotion/serialize": "^1.1.2",
35
35
  "@emotion/utils": "^1.2.1",
36
- "@hitachivantara/uikit-react-icons": "^5.9.10",
37
- "@hitachivantara/uikit-react-shared": "^5.1.40",
38
- "@hitachivantara/uikit-styles": "^5.29.0",
36
+ "@hitachivantara/uikit-react-icons": "^5.9.12",
37
+ "@hitachivantara/uikit-react-shared": "^5.1.42",
38
+ "@hitachivantara/uikit-styles": "^5.30.1",
39
39
  "@internationalized/date": "^3.2.0",
40
40
  "@mui/base": "^5.0.0-beta.34",
41
41
  "@popperjs/core": "^2.11.8",
@@ -62,7 +62,7 @@
62
62
  "access": "public",
63
63
  "directory": "package"
64
64
  },
65
- "gitHead": "aa70266feefb36505607cda84343b5ff0fae35bc",
65
+ "gitHead": "29b8dea9901fde2e15a3eda6ee07cde5d6d2e756",
66
66
  "exports": {
67
67
  ".": {
68
68
  "require": "./dist/cjs/index.cjs",