@hitachivantara/uikit-react-core 5.58.3 → 5.59.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.
- package/dist/cjs/BulkActions/BulkActions.styles.cjs +13 -1
- package/dist/cjs/BulkActions/BulkActions.styles.cjs.map +1 -1
- package/dist/cjs/Button/Button.styles.cjs.map +1 -1
- package/dist/cjs/DropDownMenu/DropDownMenu.cjs +12 -20
- package/dist/cjs/DropDownMenu/DropDownMenu.cjs.map +1 -1
- package/dist/cjs/DropDownMenu/DropDownMenu.styles.cjs +4 -34
- package/dist/cjs/DropDownMenu/DropDownMenu.styles.cjs.map +1 -1
- package/dist/cjs/DropdownButton/DropdownButton.cjs +57 -0
- package/dist/cjs/DropdownButton/DropdownButton.cjs.map +1 -0
- package/dist/cjs/DropdownButton/DropdownButton.styles.cjs +65 -0
- package/dist/cjs/DropdownButton/DropdownButton.styles.cjs.map +1 -0
- package/dist/cjs/IconButton/IconButton.cjs +2 -1
- package/dist/cjs/IconButton/IconButton.cjs.map +1 -1
- package/dist/cjs/MultiButton/MultiButton.cjs +20 -5
- package/dist/cjs/MultiButton/MultiButton.cjs.map +1 -1
- package/dist/cjs/MultiButton/MultiButton.styles.cjs +56 -326
- package/dist/cjs/MultiButton/MultiButton.styles.cjs.map +1 -1
- package/dist/cjs/Select/Select.cjs +6 -2
- package/dist/cjs/Select/Select.cjs.map +1 -1
- package/dist/cjs/Snackbar/SnackbarContent/SnackbarContent.styles.cjs +0 -3
- package/dist/cjs/Snackbar/SnackbarContent/SnackbarContent.styles.cjs.map +1 -1
- package/dist/esm/BulkActions/BulkActions.styles.js +13 -1
- package/dist/esm/BulkActions/BulkActions.styles.js.map +1 -1
- package/dist/esm/Button/Button.styles.js.map +1 -1
- package/dist/esm/DropDownMenu/DropDownMenu.js +12 -20
- package/dist/esm/DropDownMenu/DropDownMenu.js.map +1 -1
- package/dist/esm/DropDownMenu/DropDownMenu.styles.js +4 -34
- package/dist/esm/DropDownMenu/DropDownMenu.styles.js.map +1 -1
- package/dist/esm/DropdownButton/DropdownButton.js +58 -0
- package/dist/esm/DropdownButton/DropdownButton.js.map +1 -0
- package/dist/esm/DropdownButton/DropdownButton.styles.js +65 -0
- package/dist/esm/DropdownButton/DropdownButton.styles.js.map +1 -0
- package/dist/esm/IconButton/IconButton.js +2 -1
- package/dist/esm/IconButton/IconButton.js.map +1 -1
- package/dist/esm/MultiButton/MultiButton.js +22 -7
- package/dist/esm/MultiButton/MultiButton.js.map +1 -1
- package/dist/esm/MultiButton/MultiButton.styles.js +56 -326
- package/dist/esm/MultiButton/MultiButton.styles.js.map +1 -1
- package/dist/esm/Select/Select.js +6 -2
- package/dist/esm/Select/Select.js.map +1 -1
- package/dist/esm/Snackbar/SnackbarContent/SnackbarContent.styles.js +0 -3
- package/dist/esm/Snackbar/SnackbarContent/SnackbarContent.styles.js.map +1 -1
- package/dist/types/index.d.ts +96 -94
- package/package.json +5 -5
- package/dist/cjs/Select/SelectButton.cjs +0 -92
- package/dist/cjs/Select/SelectButton.cjs.map +0 -1
- package/dist/esm/Select/SelectButton.js +0 -92
- package/dist/esm/Select/SelectButton.js.map +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1117,7 +1117,7 @@ export declare type HvAccentColors = Record<HvAccentColorKeys, string>;
|
|
|
1117
1117
|
*/
|
|
1118
1118
|
export declare const HvAccordion: (props: HvAccordionProps) => JSX_3.Element;
|
|
1119
1119
|
|
|
1120
|
-
export declare type HvAccordionClasses = ExtractNames<typeof
|
|
1120
|
+
export declare type HvAccordionClasses = ExtractNames<typeof useClasses_19>;
|
|
1121
1121
|
|
|
1122
1122
|
export declare interface HvAccordionProps extends HvBaseProps<HTMLDivElement, "onChange" | "children"> {
|
|
1123
1123
|
/**
|
|
@@ -1164,14 +1164,14 @@ export declare interface HvAccordionProps extends HvBaseProps<HTMLDivElement, "o
|
|
|
1164
1164
|
|
|
1165
1165
|
export declare const HvActionBar: (props: HvActionBarProps) => JSX_3.Element;
|
|
1166
1166
|
|
|
1167
|
-
export declare type HvActionBarClasses = ExtractNames<typeof
|
|
1167
|
+
export declare type HvActionBarClasses = ExtractNames<typeof useClasses_20>;
|
|
1168
1168
|
|
|
1169
1169
|
export declare interface HvActionBarProps extends HvBaseProps {
|
|
1170
1170
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
1171
1171
|
classes?: HvActionBarClasses;
|
|
1172
1172
|
}
|
|
1173
1173
|
|
|
1174
|
-
declare type HvActionContainerClasses = ExtractNames<typeof
|
|
1174
|
+
declare type HvActionContainerClasses = ExtractNames<typeof useClasses_28>;
|
|
1175
1175
|
|
|
1176
1176
|
declare interface HvActionContainerProps extends HvBaseProps<HTMLButtonElement>, Pick<Partial<HvActionsGenericProps>, "onAction"> {
|
|
1177
1177
|
/** Function called when clicking on the close button. */
|
|
@@ -1205,7 +1205,7 @@ export declare interface HvActionGeneric {
|
|
|
1205
1205
|
|
|
1206
1206
|
export declare const HvActionsGeneric: (props: HvActionsGenericProps) => JSX_3.Element | null;
|
|
1207
1207
|
|
|
1208
|
-
export declare type HvActionsGenericClasses = ExtractNames<typeof
|
|
1208
|
+
export declare type HvActionsGenericClasses = ExtractNames<typeof useClasses_21>;
|
|
1209
1209
|
|
|
1210
1210
|
export declare interface HvActionsGenericProps extends HvBaseProps {
|
|
1211
1211
|
/**
|
|
@@ -1291,7 +1291,7 @@ export declare interface HvAppSwitcherActionApplication {
|
|
|
1291
1291
|
color?: HvColorAny;
|
|
1292
1292
|
}
|
|
1293
1293
|
|
|
1294
|
-
export declare type HvAppSwitcherActionClasses = ExtractNames<typeof
|
|
1294
|
+
export declare type HvAppSwitcherActionClasses = ExtractNames<typeof useClasses_23>;
|
|
1295
1295
|
|
|
1296
1296
|
export declare interface HvAppSwitcherActionProps extends HvBaseProps {
|
|
1297
1297
|
/** The application data to be used to render the Action object. */
|
|
@@ -1304,7 +1304,7 @@ export declare interface HvAppSwitcherActionProps extends HvBaseProps {
|
|
|
1304
1304
|
classes?: HvAppSwitcherActionClasses;
|
|
1305
1305
|
}
|
|
1306
1306
|
|
|
1307
|
-
export declare type HvAppSwitcherClasses = ExtractNames<typeof
|
|
1307
|
+
export declare type HvAppSwitcherClasses = ExtractNames<typeof useClasses_22>;
|
|
1308
1308
|
|
|
1309
1309
|
export declare interface HvAppSwitcherProps extends HvBaseProps {
|
|
1310
1310
|
/** Number of columns to render. One, two, or whatever fits the component's width. */
|
|
@@ -1343,14 +1343,14 @@ export declare type HvAtmosphereColors = Record<HvAtmosphereColorKeys, string>;
|
|
|
1343
1343
|
*/
|
|
1344
1344
|
export declare const HvAvatar: ForwardRefExoticComponent<HvAvatarProps & RefAttributes<any>>;
|
|
1345
1345
|
|
|
1346
|
-
export declare type HvAvatarClasses = ExtractNames<typeof
|
|
1346
|
+
export declare type HvAvatarClasses = ExtractNames<typeof useClasses_24>;
|
|
1347
1347
|
|
|
1348
1348
|
/**
|
|
1349
1349
|
* The AvatarGroup component is used to group multiple avatars.
|
|
1350
1350
|
*/
|
|
1351
1351
|
export declare const HvAvatarGroup: ForwardRefExoticComponent<HvAvatarGroupProps & RefAttributes<HTMLDivElement>>;
|
|
1352
1352
|
|
|
1353
|
-
export declare type HvAvatarGroupClasses = ExtractNames<typeof
|
|
1353
|
+
export declare type HvAvatarGroupClasses = ExtractNames<typeof useClasses_25>;
|
|
1354
1354
|
|
|
1355
1355
|
export declare interface HvAvatarGroupProps extends HvBaseProps {
|
|
1356
1356
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
@@ -1418,7 +1418,7 @@ export declare type HvAvatarVariant = "circular" | "square";
|
|
|
1418
1418
|
*/
|
|
1419
1419
|
export declare const HvBadge: (props: HvBadgeProps) => JSX_3.Element;
|
|
1420
1420
|
|
|
1421
|
-
export declare type HvBadgeClasses = ExtractNames<typeof
|
|
1421
|
+
export declare type HvBadgeClasses = ExtractNames<typeof useClasses_26>;
|
|
1422
1422
|
|
|
1423
1423
|
export declare interface HvBadgeProps extends HvBaseProps {
|
|
1424
1424
|
/**
|
|
@@ -1459,11 +1459,11 @@ export declare const HvBanner: (props: HvBannerProps) => JSX_3.Element;
|
|
|
1459
1459
|
|
|
1460
1460
|
export declare type HvBannerActionPosition = "auto" | "inline" | "bottom-right";
|
|
1461
1461
|
|
|
1462
|
-
export declare type HvBannerClasses = ExtractNames<typeof
|
|
1462
|
+
export declare type HvBannerClasses = ExtractNames<typeof useClasses_27>;
|
|
1463
1463
|
|
|
1464
1464
|
export declare const HvBannerContent: ForwardRefExoticComponent<Omit<HvBannerContentProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
1465
1465
|
|
|
1466
|
-
export declare type HvBannerContentClasses = ExtractNames<typeof
|
|
1466
|
+
export declare type HvBannerContentClasses = ExtractNames<typeof useClasses_29>;
|
|
1467
1467
|
|
|
1468
1468
|
export declare interface HvBannerContentProps extends Omit<SnackbarContentProps, "variant" | "classes" | "onClose"> {
|
|
1469
1469
|
/** The message to display. */
|
|
@@ -1551,7 +1551,7 @@ export declare type HvBannerVariant = "success" | "warning" | "error" | "default
|
|
|
1551
1551
|
*/
|
|
1552
1552
|
export declare const HvBaseCheckBox: ForwardRefExoticComponent<Omit<HvBaseCheckBoxProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
1553
1553
|
|
|
1554
|
-
export declare type HvBaseCheckBoxClasses = ExtractNames<typeof
|
|
1554
|
+
export declare type HvBaseCheckBoxClasses = ExtractNames<typeof useClasses_30>;
|
|
1555
1555
|
|
|
1556
1556
|
export declare interface HvBaseCheckBoxProps extends Omit<CheckboxProps, "onChange" | "classes"> {
|
|
1557
1557
|
/**
|
|
@@ -1628,7 +1628,7 @@ export declare type HvBaseColors = Record<HvBaseColorKeys, string>;
|
|
|
1628
1628
|
|
|
1629
1629
|
export declare const HvBaseDropdown: ForwardRefExoticComponent<Omit<HvBaseDropdownProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
1630
1630
|
|
|
1631
|
-
export declare type HvBaseDropdownClasses = ExtractNames<typeof
|
|
1631
|
+
export declare type HvBaseDropdownClasses = ExtractNames<typeof useClasses_18>;
|
|
1632
1632
|
|
|
1633
1633
|
export declare interface HvBaseDropdownProps extends HvBaseProps {
|
|
1634
1634
|
/**
|
|
@@ -1723,7 +1723,7 @@ export declare interface HvBaseDropdownProps extends HvBaseProps {
|
|
|
1723
1723
|
*/
|
|
1724
1724
|
export declare const HvBaseInput: (props: HvBaseInputProps) => JSX_3.Element;
|
|
1725
1725
|
|
|
1726
|
-
export declare type HvBaseInputClasses = ExtractNames<typeof
|
|
1726
|
+
export declare type HvBaseInputClasses = ExtractNames<typeof useClasses_17>;
|
|
1727
1727
|
|
|
1728
1728
|
export declare interface HvBaseInputProps extends Omit<InputProps, "onChange" | "classes"> {
|
|
1729
1729
|
/** The input name. */
|
|
@@ -1770,7 +1770,7 @@ export declare type HvBaseProps<E extends HTMLElement = HTMLDivElement, K extend
|
|
|
1770
1770
|
*/
|
|
1771
1771
|
export declare const HvBaseRadio: ForwardRefExoticComponent<Omit<HvBaseRadioProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
1772
1772
|
|
|
1773
|
-
export declare type HvBaseRadioClasses = ExtractNames<typeof
|
|
1773
|
+
export declare type HvBaseRadioClasses = ExtractNames<typeof useClasses_31>;
|
|
1774
1774
|
|
|
1775
1775
|
export declare interface HvBaseRadioProps extends Omit<RadioProps, "onChange" | "classes"> {
|
|
1776
1776
|
/**
|
|
@@ -1848,7 +1848,7 @@ export declare interface HvBaseRadioProps extends Omit<RadioProps, "onChange" |
|
|
|
1848
1848
|
*/
|
|
1849
1849
|
export declare const HvBaseSwitch: ForwardRefExoticComponent<Omit<HvBaseSwitchProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
1850
1850
|
|
|
1851
|
-
export declare type HvBaseSwitchClasses = ExtractNames<typeof
|
|
1851
|
+
export declare type HvBaseSwitchClasses = ExtractNames<typeof useClasses_32>;
|
|
1852
1852
|
|
|
1853
1853
|
export declare interface HvBaseSwitchProps extends Omit<SwitchProps, "onChange" | "classes"> {
|
|
1854
1854
|
/**
|
|
@@ -1938,7 +1938,7 @@ export declare type HvBoxProps = <C extends React.ElementType = "div">(props: Hv
|
|
|
1938
1938
|
*/
|
|
1939
1939
|
export declare const HvBreadCrumb: (props: HvBreadCrumbProps) => JSX_3.Element;
|
|
1940
1940
|
|
|
1941
|
-
export declare type HvBreadCrumbClasses = ExtractNames<typeof
|
|
1941
|
+
export declare type HvBreadCrumbClasses = ExtractNames<typeof useClasses_33>;
|
|
1942
1942
|
|
|
1943
1943
|
export declare interface HvBreadCrumbPathElement extends Record<string, any> {
|
|
1944
1944
|
label: string;
|
|
@@ -1970,7 +1970,7 @@ export { HvBreakpoints }
|
|
|
1970
1970
|
*/
|
|
1971
1971
|
export declare const HvBulkActions: (props: HvBulkActionsProps) => JSX_3.Element;
|
|
1972
1972
|
|
|
1973
|
-
export declare type HvBulkActionsClasses = ExtractNames<typeof
|
|
1973
|
+
export declare type HvBulkActionsClasses = ExtractNames<typeof useClasses_35>;
|
|
1974
1974
|
|
|
1975
1975
|
export declare type HvBulkActionsPropGetter<D extends object> = PropGetter<D, HvTAbleBulkActionsProps>;
|
|
1976
1976
|
|
|
@@ -2069,7 +2069,7 @@ export declare const HvButton: <C extends ElementType<any, keyof JSX_2.Intrinsic
|
|
|
2069
2069
|
ref?: PolymorphicRef<C> | undefined;
|
|
2070
2070
|
} & RefAttributes<unknown>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
2071
2071
|
|
|
2072
|
-
export declare type HvButtonClasses = ExtractNames<typeof
|
|
2072
|
+
export declare type HvButtonClasses = ExtractNames<typeof useClasses_12>;
|
|
2073
2073
|
|
|
2074
2074
|
export declare type HvButtonProps<C extends React.ElementType = "button"> = PolymorphicComponentRef<C, {
|
|
2075
2075
|
/** Use the variant prop to change the visual style of the button. */
|
|
@@ -2444,7 +2444,7 @@ export declare interface HvCharCounterProps extends HvBaseProps {
|
|
|
2444
2444
|
*/
|
|
2445
2445
|
export declare const HvCheckBox: ForwardRefExoticComponent<Omit<HvCheckBoxProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
2446
2446
|
|
|
2447
|
-
export declare type HvCheckBoxClasses = ExtractNames<typeof
|
|
2447
|
+
export declare type HvCheckBoxClasses = ExtractNames<typeof useClasses_36>;
|
|
2448
2448
|
|
|
2449
2449
|
/**
|
|
2450
2450
|
* A checkbox group is a type of selection list that allows the user to select multiple options through the use of checkboxes.
|
|
@@ -3174,11 +3174,11 @@ declare interface HvDropdownListProps {
|
|
|
3174
3174
|
}
|
|
3175
3175
|
|
|
3176
3176
|
/**
|
|
3177
|
-
* A
|
|
3177
|
+
* A dropdown menu is a graphical control element, similar to a list box, that allows the user to choose a value from a list.
|
|
3178
3178
|
*/
|
|
3179
3179
|
export declare const HvDropDownMenu: (props: HvDropDownMenuProps) => JSX_3.Element;
|
|
3180
3180
|
|
|
3181
|
-
export declare type HvDropDownMenuClasses = ExtractNames<typeof
|
|
3181
|
+
export declare type HvDropDownMenuClasses = ExtractNames<typeof useClasses_34>;
|
|
3182
3182
|
|
|
3183
3183
|
export declare interface HvDropDownMenuProps extends HvBaseProps<HTMLDivElement, "onClick"> {
|
|
3184
3184
|
/** Icon. */
|
|
@@ -4650,11 +4650,11 @@ export declare const hvNumberFallback: (value: any) => number | "—";
|
|
|
4650
4650
|
|
|
4651
4651
|
export declare const HvOption: <OptionValue extends {}>(props: HvOptionProps<OptionValue> & RefAttributes<HTMLLIElement>) => ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
4652
4652
|
|
|
4653
|
-
export declare type HvOptionClasses = ExtractNames<typeof
|
|
4653
|
+
export declare type HvOptionClasses = ExtractNames<typeof useClasses_13>;
|
|
4654
4654
|
|
|
4655
4655
|
export declare const HvOptionGroup: ForwardRefExoticComponent<Omit<HvOptionGroupProps, "ref"> & RefAttributes<HTMLLIElement>>;
|
|
4656
4656
|
|
|
4657
|
-
export declare type HvOptionGroupClasses = ExtractNames<typeof
|
|
4657
|
+
export declare type HvOptionGroupClasses = ExtractNames<typeof useClasses_14>;
|
|
4658
4658
|
|
|
4659
4659
|
export declare interface HvOptionGroupProps extends OptionGroupProps {
|
|
4660
4660
|
classes?: HvOptionGroupClasses;
|
|
@@ -5674,7 +5674,7 @@ export declare type HvSelectClasses = ExtractNames<typeof useClasses_11>;
|
|
|
5674
5674
|
*/
|
|
5675
5675
|
export declare const HvSelectionList: ForwardRefExoticComponent<HvSelectionListProps & RefAttributes<HTMLUListElement>>;
|
|
5676
5676
|
|
|
5677
|
-
export declare type HvSelectionListClasses = ExtractNames<typeof
|
|
5677
|
+
export declare type HvSelectionListClasses = ExtractNames<typeof useClasses_15>;
|
|
5678
5678
|
|
|
5679
5679
|
export declare interface HvSelectionListProps extends HvBaseProps<HTMLUListElement, "onChange"> {
|
|
5680
5680
|
/** The form element name. */
|
|
@@ -5732,7 +5732,7 @@ export declare interface HvSelectionListProps extends HvBaseProps<HTMLUListEleme
|
|
|
5732
5732
|
classes?: HvSelectionListClasses;
|
|
5733
5733
|
}
|
|
5734
5734
|
|
|
5735
|
-
export declare interface HvSelectProps<OptionValue extends {}, Multiple extends boolean = false> extends Omit<HvFormElementProps, "value" | "defaultValue" | "onChange">, Pick<UseSelectParameters<OptionValue, Multiple>, "name" | "required" | "disabled" | "multiple" | "open" | "defaultOpen" | "value" | "defaultValue" | "buttonRef" | "options" | "getSerializedValue" | "onChange" | "onOpenChange"> {
|
|
5735
|
+
export declare interface HvSelectProps<OptionValue extends {}, Multiple extends boolean = false> extends Omit<HvFormElementProps, "value" | "defaultValue" | "onChange">, Pick<UseSelectParameters<OptionValue, Multiple>, "name" | "required" | "disabled" | "multiple" | "open" | "defaultOpen" | "value" | "defaultValue" | "buttonRef" | "options" | "getSerializedValue" | "onChange" | "onOpenChange">, Pick<HvButtonProps, "size" | "variant"> {
|
|
5736
5736
|
classes?: HvSelectClasses;
|
|
5737
5737
|
placeholder?: React.ReactNode;
|
|
5738
5738
|
autoComplete?: string;
|
|
@@ -6097,7 +6097,7 @@ export declare interface HvSuggestion {
|
|
|
6097
6097
|
|
|
6098
6098
|
export declare const HvSuggestions: ForwardRefExoticComponent<HvSuggestionsProps & RefAttributes<unknown>>;
|
|
6099
6099
|
|
|
6100
|
-
export declare type HvSuggestionsClasses = ExtractNames<typeof
|
|
6100
|
+
export declare type HvSuggestionsClasses = ExtractNames<typeof useClasses_16>;
|
|
6101
6101
|
|
|
6102
6102
|
export declare interface HvSuggestionsProps extends HvBaseProps {
|
|
6103
6103
|
/** Whether suggestions is visible. */
|
|
@@ -7921,14 +7921,15 @@ export declare const multiButtonClasses: {
|
|
|
7921
7921
|
selected: "HvMultiButton-selected";
|
|
7922
7922
|
button: "HvMultiButton-button";
|
|
7923
7923
|
secondaryGhost: "HvMultiButton-secondaryGhost";
|
|
7924
|
+
splitDisabled: "HvMultiButton-splitDisabled";
|
|
7925
|
+
multiple: "HvMultiButton-multiple";
|
|
7924
7926
|
primaryGhost: "HvMultiButton-primaryGhost";
|
|
7925
7927
|
primarySubtle: "HvMultiButton-primarySubtle";
|
|
7926
7928
|
splitGroup: "HvMultiButton-splitGroup";
|
|
7927
7929
|
splitGroupDisabled: "HvMultiButton-splitGroupDisabled";
|
|
7930
|
+
splitContainer: "HvMultiButton-splitContainer";
|
|
7928
7931
|
firstButton: "HvMultiButton-firstButton";
|
|
7929
7932
|
lastButton: "HvMultiButton-lastButton";
|
|
7930
|
-
splitContainer: "HvMultiButton-splitContainer";
|
|
7931
|
-
splitDisabled: "HvMultiButton-splitDisabled";
|
|
7932
7933
|
};
|
|
7933
7934
|
|
|
7934
7935
|
export declare const multiSelectionEventHandler: (evt: any, index: number, selectionAnchor: any, allValues: any[], selectedState: boolean[], selectionCheck: any) => any[];
|
|
@@ -9025,10 +9026,23 @@ declare const useClasses_119: (classesProp?: Partial<Record<"root" | "slider" |
|
|
|
9025
9026
|
cx: (...args: any) => string;
|
|
9026
9027
|
};
|
|
9027
9028
|
|
|
9028
|
-
declare const useClasses_12: (classesProp?: Partial<Record<"root" | "
|
|
9029
|
+
declare const useClasses_12: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "secondarySubtle" | "ghost" | "icon" | "secondaryGhost" | "primaryGhost" | "primarySubtle" | "startIcon" | "endIcon" | "focusVisible" | "subtle", string>>, addStatic?: boolean) => {
|
|
9029
9030
|
classes: {
|
|
9031
|
+
secondary: string;
|
|
9032
|
+
primary: string;
|
|
9030
9033
|
root: string;
|
|
9031
|
-
|
|
9034
|
+
disabled: string;
|
|
9035
|
+
semantic: string;
|
|
9036
|
+
secondarySubtle: string;
|
|
9037
|
+
ghost: string;
|
|
9038
|
+
icon: string;
|
|
9039
|
+
secondaryGhost: string;
|
|
9040
|
+
primaryGhost: string;
|
|
9041
|
+
primarySubtle: string;
|
|
9042
|
+
startIcon: string;
|
|
9043
|
+
endIcon: string;
|
|
9044
|
+
focusVisible: string;
|
|
9045
|
+
subtle: string;
|
|
9032
9046
|
};
|
|
9033
9047
|
css: {
|
|
9034
9048
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9177,7 +9191,19 @@ declare const useClasses_128: (classesProp?: Partial<Record<"content" | "root" |
|
|
|
9177
9191
|
cx: (...args: any) => string;
|
|
9178
9192
|
};
|
|
9179
9193
|
|
|
9180
|
-
declare const useClasses_13: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9194
|
+
declare const useClasses_13: (classesProp?: Partial<Record<"root" | "highlighted", string>>, addStatic?: boolean) => {
|
|
9195
|
+
classes: {
|
|
9196
|
+
root: string;
|
|
9197
|
+
highlighted: string;
|
|
9198
|
+
};
|
|
9199
|
+
css: {
|
|
9200
|
+
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9201
|
+
(...args: CSSInterpolation[]): string;
|
|
9202
|
+
};
|
|
9203
|
+
cx: (...args: any) => string;
|
|
9204
|
+
};
|
|
9205
|
+
|
|
9206
|
+
declare const useClasses_14: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9181
9207
|
classes: {
|
|
9182
9208
|
root: string;
|
|
9183
9209
|
};
|
|
@@ -9188,7 +9214,7 @@ declare const useClasses_13: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9188
9214
|
cx: (...args: any) => string;
|
|
9189
9215
|
};
|
|
9190
9216
|
|
|
9191
|
-
declare const
|
|
9217
|
+
declare const useClasses_15: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "description" | "root" | "listbox" | "error" | "invalid", string>>, addStatic?: boolean) => {
|
|
9192
9218
|
classes: {
|
|
9193
9219
|
vertical: string;
|
|
9194
9220
|
horizontal: string;
|
|
@@ -9206,7 +9232,7 @@ declare const useClasses_14: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
9206
9232
|
cx: (...args: any) => string;
|
|
9207
9233
|
};
|
|
9208
9234
|
|
|
9209
|
-
declare const
|
|
9235
|
+
declare const useClasses_16: (classesProp?: Partial<Record<"root" | "list" | "popper", string>>, addStatic?: boolean) => {
|
|
9210
9236
|
classes: {
|
|
9211
9237
|
root: string;
|
|
9212
9238
|
list: string;
|
|
@@ -9219,7 +9245,7 @@ declare const useClasses_15: (classesProp?: Partial<Record<"root" | "list" | "po
|
|
|
9219
9245
|
cx: (...args: any) => string;
|
|
9220
9246
|
};
|
|
9221
9247
|
|
|
9222
|
-
declare const
|
|
9248
|
+
declare const useClasses_17: (classesProp?: Partial<Record<"root" | "disabled" | "readOnly" | "inputBorderContainer" | "inputRootReadOnly" | "inputRoot" | "inputRootFocused" | "inputRootMultiline" | "input" | "inputReadOnly" | "invalid" | "resizable" | "inputRootInvalid" | "inputRootDisabled" | "inputDisabled" | "inputResizable", string>>, addStatic?: boolean) => {
|
|
9223
9249
|
classes: {
|
|
9224
9250
|
root: string;
|
|
9225
9251
|
disabled: string;
|
|
@@ -9245,7 +9271,7 @@ declare const useClasses_16: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9245
9271
|
cx: (...args: any) => string;
|
|
9246
9272
|
};
|
|
9247
9273
|
|
|
9248
|
-
declare const
|
|
9274
|
+
declare const useClasses_18: (classesProp?: Partial<Record<"container" | "header" | "anchor" | "root" | "headerOpen" | "headerDisabled" | "headerReadOnly" | "placeholder" | "panel" | "inputExtensionOpen" | "panelOpenedUp" | "panelOpenedDown" | "selection" | "arrowContainer" | "arrow" | "rootDisabled" | "headerOpenUp" | "headerOpenDown" | "selectionDisabled" | "inputExtensionLeftPosition" | "inputExtensionOpenShadow" | "inputExtensionFloatRight" | "inputExtensionFloatLeft", string>>, addStatic?: boolean) => {
|
|
9249
9275
|
classes: {
|
|
9250
9276
|
container: string;
|
|
9251
9277
|
header: string;
|
|
@@ -9278,7 +9304,7 @@ declare const useClasses_17: (classesProp?: Partial<Record<"container" | "header
|
|
|
9278
9304
|
cx: (...args: any) => string;
|
|
9279
9305
|
};
|
|
9280
9306
|
|
|
9281
|
-
declare const
|
|
9307
|
+
declare const useClasses_19: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "hidden", string>>, addStatic?: boolean) => {
|
|
9282
9308
|
classes: {
|
|
9283
9309
|
container: string;
|
|
9284
9310
|
label: string;
|
|
@@ -9293,9 +9319,16 @@ declare const useClasses_18: (classesProp?: Partial<Record<"container" | "label"
|
|
|
9293
9319
|
cx: (...args: any) => string;
|
|
9294
9320
|
};
|
|
9295
9321
|
|
|
9296
|
-
declare const
|
|
9322
|
+
declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" | "selected" | "focus" | "focusDisabled" | "focused" | "externalReference" | "falseFocus", string>>, addStatic?: boolean) => {
|
|
9297
9323
|
classes: {
|
|
9298
9324
|
root: string;
|
|
9325
|
+
disabled: string;
|
|
9326
|
+
selected: string;
|
|
9327
|
+
focus: string;
|
|
9328
|
+
focusDisabled: string;
|
|
9329
|
+
focused: string;
|
|
9330
|
+
externalReference: string;
|
|
9331
|
+
falseFocus: string;
|
|
9299
9332
|
};
|
|
9300
9333
|
css: {
|
|
9301
9334
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9304,16 +9337,9 @@ declare const useClasses_19: (classesProp?: Partial<Record<"root", string>>, add
|
|
|
9304
9337
|
cx: (...args: any) => string;
|
|
9305
9338
|
};
|
|
9306
9339
|
|
|
9307
|
-
declare const
|
|
9340
|
+
declare const useClasses_20: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9308
9341
|
classes: {
|
|
9309
9342
|
root: string;
|
|
9310
|
-
disabled: string;
|
|
9311
|
-
selected: string;
|
|
9312
|
-
focus: string;
|
|
9313
|
-
focusDisabled: string;
|
|
9314
|
-
focused: string;
|
|
9315
|
-
externalReference: string;
|
|
9316
|
-
falseFocus: string;
|
|
9317
9343
|
};
|
|
9318
9344
|
css: {
|
|
9319
9345
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9322,7 +9348,7 @@ declare const useClasses_2: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9322
9348
|
cx: (...args: any) => string;
|
|
9323
9349
|
};
|
|
9324
9350
|
|
|
9325
|
-
declare const
|
|
9351
|
+
declare const useClasses_21: (classesProp?: Partial<Record<"root" | "button" | "actionContainer" | "dropDownMenu" | "dropDownMenuButton" | "dropDownMenuButtonSelected", string>>, addStatic?: boolean) => {
|
|
9326
9352
|
classes: {
|
|
9327
9353
|
root: string;
|
|
9328
9354
|
button: string;
|
|
@@ -9338,7 +9364,7 @@ declare const useClasses_20: (classesProp?: Partial<Record<"root" | "button" | "
|
|
|
9338
9364
|
cx: (...args: any) => string;
|
|
9339
9365
|
};
|
|
9340
9366
|
|
|
9341
|
-
declare const
|
|
9367
|
+
declare const useClasses_22: (classesProp?: Partial<Record<"root" | "title" | "single" | "actionsContainer" | "open" | "item" | "titleAnchor" | "itemSelected" | "itemDisabled" | "itemTrigger" | "itemIcon" | "itemTitle" | "itemInfoIcon" | "footerContainer" | "closed" | "dual" | "fluid", string>>, addStatic?: boolean) => {
|
|
9342
9368
|
classes: {
|
|
9343
9369
|
root: string;
|
|
9344
9370
|
title: string;
|
|
@@ -9365,7 +9391,7 @@ declare const useClasses_21: (classesProp?: Partial<Record<"root" | "title" | "s
|
|
|
9365
9391
|
cx: (...args: any) => string;
|
|
9366
9392
|
};
|
|
9367
9393
|
|
|
9368
|
-
declare const
|
|
9394
|
+
declare const useClasses_23: (classesProp?: Partial<Record<"typography" | "root" | "disabled" | "icon" | "title" | "selected" | "iconUrl" | "iconInfo" | "titleAnchor", string>>, addStatic?: boolean) => {
|
|
9369
9395
|
classes: {
|
|
9370
9396
|
typography: string;
|
|
9371
9397
|
root: string;
|
|
@@ -9384,7 +9410,7 @@ declare const useClasses_22: (classesProp?: Partial<Record<"typography" | "root"
|
|
|
9384
9410
|
cx: (...args: any) => string;
|
|
9385
9411
|
};
|
|
9386
9412
|
|
|
9387
|
-
declare const
|
|
9413
|
+
declare const useClasses_24: (classesProp?: Partial<Record<"container" | "xs" | "sm" | "md" | "lg" | "xl" | "root" | "square" | "img" | "status" | "fallback" | "avatar" | "badge" | "circular", string>>, addStatic?: boolean) => {
|
|
9388
9414
|
classes: {
|
|
9389
9415
|
container: string;
|
|
9390
9416
|
xs: string;
|
|
@@ -9408,7 +9434,7 @@ declare const useClasses_23: (classesProp?: Partial<Record<"container" | "xs" |
|
|
|
9408
9434
|
cx: (...args: any) => string;
|
|
9409
9435
|
};
|
|
9410
9436
|
|
|
9411
|
-
declare const
|
|
9437
|
+
declare const useClasses_25: (classesProp?: Partial<Record<"root" | "row" | "column", string>>, addStatic?: boolean) => {
|
|
9412
9438
|
classes: {
|
|
9413
9439
|
root: string;
|
|
9414
9440
|
row: string;
|
|
@@ -9421,7 +9447,7 @@ declare const useClasses_24: (classesProp?: Partial<Record<"root" | "row" | "col
|
|
|
9421
9447
|
cx: (...args: any) => string;
|
|
9422
9448
|
};
|
|
9423
9449
|
|
|
9424
|
-
declare const
|
|
9450
|
+
declare const useClasses_26: (classesProp?: Partial<Record<"root" | "badge" | "badgeContainer" | "badgePosition" | "showCount" | "showLabel" | "badgeIcon" | "badgeOneDigit", string>>, addStatic?: boolean) => {
|
|
9425
9451
|
classes: {
|
|
9426
9452
|
root: string;
|
|
9427
9453
|
badge: string;
|
|
@@ -9439,7 +9465,7 @@ declare const useClasses_25: (classesProp?: Partial<Record<"root" | "badge" | "b
|
|
|
9439
9465
|
cx: (...args: any) => string;
|
|
9440
9466
|
};
|
|
9441
9467
|
|
|
9442
|
-
declare const
|
|
9468
|
+
declare const useClasses_27: (classesProp?: Partial<Record<"root" | "rootClosed" | "anchorOriginTopCenter" | "anchorOriginBottomCenter", string>>, addStatic?: boolean) => {
|
|
9443
9469
|
classes: {
|
|
9444
9470
|
root: string;
|
|
9445
9471
|
rootClosed: string;
|
|
@@ -9453,7 +9479,7 @@ declare const useClasses_26: (classesProp?: Partial<Record<"root" | "rootClosed"
|
|
|
9453
9479
|
cx: (...args: any) => string;
|
|
9454
9480
|
};
|
|
9455
9481
|
|
|
9456
|
-
declare const
|
|
9482
|
+
declare const useClasses_28: (classesProp?: Partial<Record<"actionContainer" | "actionsInnerContainer" | "closeAction" | "iconContainer", string>>, addStatic?: boolean) => {
|
|
9457
9483
|
classes: {
|
|
9458
9484
|
actionContainer: string;
|
|
9459
9485
|
actionsInnerContainer: string;
|
|
@@ -9467,7 +9493,7 @@ declare const useClasses_27: (classesProp?: Partial<Record<"actionContainer" | "
|
|
|
9467
9493
|
cx: (...args: any) => string;
|
|
9468
9494
|
};
|
|
9469
9495
|
|
|
9470
|
-
declare const
|
|
9496
|
+
declare const useClasses_29: (classesProp?: Partial<Record<"warning" | "root" | "action" | "default" | "error" | "message" | "success" | "baseVariant" | "outContainer", string>>, addStatic?: boolean) => {
|
|
9471
9497
|
classes: {
|
|
9472
9498
|
warning: string;
|
|
9473
9499
|
root: string;
|
|
@@ -9486,12 +9512,9 @@ declare const useClasses_28: (classesProp?: Partial<Record<"warning" | "root" |
|
|
|
9486
9512
|
cx: (...args: any) => string;
|
|
9487
9513
|
};
|
|
9488
9514
|
|
|
9489
|
-
declare const
|
|
9515
|
+
declare const useClasses_3: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9490
9516
|
classes: {
|
|
9491
9517
|
root: string;
|
|
9492
|
-
disabled: string;
|
|
9493
|
-
icon: string;
|
|
9494
|
-
focusVisible: string;
|
|
9495
9518
|
};
|
|
9496
9519
|
css: {
|
|
9497
9520
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9500,9 +9523,12 @@ declare const useClasses_29: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9500
9523
|
cx: (...args: any) => string;
|
|
9501
9524
|
};
|
|
9502
9525
|
|
|
9503
|
-
declare const
|
|
9526
|
+
declare const useClasses_30: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9504
9527
|
classes: {
|
|
9505
9528
|
root: string;
|
|
9529
|
+
disabled: string;
|
|
9530
|
+
icon: string;
|
|
9531
|
+
focusVisible: string;
|
|
9506
9532
|
};
|
|
9507
9533
|
css: {
|
|
9508
9534
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
@@ -9511,7 +9537,7 @@ declare const useClasses_3: (classesProp?: Partial<Record<"root", string>>, addS
|
|
|
9511
9537
|
cx: (...args: any) => string;
|
|
9512
9538
|
};
|
|
9513
9539
|
|
|
9514
|
-
declare const
|
|
9540
|
+
declare const useClasses_31: (classesProp?: Partial<Record<"root" | "disabled" | "icon" | "focusVisible", string>>, addStatic?: boolean) => {
|
|
9515
9541
|
classes: {
|
|
9516
9542
|
root: string;
|
|
9517
9543
|
disabled: string;
|
|
@@ -9525,7 +9551,7 @@ declare const useClasses_30: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9525
9551
|
cx: (...args: any) => string;
|
|
9526
9552
|
};
|
|
9527
9553
|
|
|
9528
|
-
declare const
|
|
9554
|
+
declare const useClasses_32: (classesProp?: Partial<Record<"root" | "disabled" | "readOnly" | "switch" | "switchBase" | "track" | "checked" | "focusVisible" | "thumb", string>>, addStatic?: boolean) => {
|
|
9529
9555
|
classes: {
|
|
9530
9556
|
root: string;
|
|
9531
9557
|
disabled: string;
|
|
@@ -9544,7 +9570,7 @@ declare const useClasses_31: (classesProp?: Partial<Record<"root" | "disabled" |
|
|
|
9544
9570
|
cx: (...args: any) => string;
|
|
9545
9571
|
};
|
|
9546
9572
|
|
|
9547
|
-
declare const
|
|
9573
|
+
declare const useClasses_33: (classesProp?: Partial<Record<"link" | "root" | "a" | "centerContainer" | "separatorContainer" | "orderedList" | "currentPage", string>>, addStatic?: boolean) => {
|
|
9548
9574
|
classes: {
|
|
9549
9575
|
link: string;
|
|
9550
9576
|
root: string;
|
|
@@ -9561,7 +9587,7 @@ declare const useClasses_32: (classesProp?: Partial<Record<"link" | "root" | "a"
|
|
|
9561
9587
|
cx: (...args: any) => string;
|
|
9562
9588
|
};
|
|
9563
9589
|
|
|
9564
|
-
declare const
|
|
9590
|
+
declare const useClasses_34: (classesProp?: Partial<Record<"container" | "root" | "icon" | "iconSelected" | "baseContainer" | "menuListRoot" | "menuList", string>>, addStatic?: boolean) => {
|
|
9565
9591
|
classes: {
|
|
9566
9592
|
container: string;
|
|
9567
9593
|
root: string;
|
|
@@ -9578,7 +9604,7 @@ declare const useClasses_33: (classesProp?: Partial<Record<"container" | "root"
|
|
|
9578
9604
|
cx: (...args: any) => string;
|
|
9579
9605
|
};
|
|
9580
9606
|
|
|
9581
|
-
declare const
|
|
9607
|
+
declare const useClasses_35: (classesProp?: Partial<Record<"root" | "semantic" | "divider" | "selectAll" | "actions" | "selectAllContainer" | "selectAllPages", string>>, addStatic?: boolean) => {
|
|
9582
9608
|
classes: {
|
|
9583
9609
|
root: string;
|
|
9584
9610
|
semantic: string;
|
|
@@ -9595,7 +9621,7 @@ declare const useClasses_34: (classesProp?: Partial<Record<"root" | "semantic" |
|
|
|
9595
9621
|
cx: (...args: any) => string;
|
|
9596
9622
|
};
|
|
9597
9623
|
|
|
9598
|
-
declare const
|
|
9624
|
+
declare const useClasses_36: (classesProp?: Partial<Record<"container" | "label" | "root" | "disabled" | "checkbox" | "focusVisible" | "invalidContainer" | "invalidCheckbox", string>>, addStatic?: boolean) => {
|
|
9599
9625
|
classes: {
|
|
9600
9626
|
container: string;
|
|
9601
9627
|
label: string;
|
|
@@ -9613,31 +9639,6 @@ declare const useClasses_35: (classesProp?: Partial<Record<"container" | "label"
|
|
|
9613
9639
|
cx: (...args: any) => string;
|
|
9614
9640
|
};
|
|
9615
9641
|
|
|
9616
|
-
declare const useClasses_36: (classesProp?: Partial<Record<"secondary" | "primary" | "root" | "disabled" | "semantic" | "secondarySubtle" | "ghost" | "icon" | "secondaryGhost" | "primaryGhost" | "primarySubtle" | "startIcon" | "endIcon" | "focusVisible" | "subtle", string>>, addStatic?: boolean) => {
|
|
9617
|
-
classes: {
|
|
9618
|
-
secondary: string;
|
|
9619
|
-
primary: string;
|
|
9620
|
-
root: string;
|
|
9621
|
-
disabled: string;
|
|
9622
|
-
semantic: string;
|
|
9623
|
-
secondarySubtle: string;
|
|
9624
|
-
ghost: string;
|
|
9625
|
-
icon: string;
|
|
9626
|
-
secondaryGhost: string;
|
|
9627
|
-
primaryGhost: string;
|
|
9628
|
-
primarySubtle: string;
|
|
9629
|
-
startIcon: string;
|
|
9630
|
-
endIcon: string;
|
|
9631
|
-
focusVisible: string;
|
|
9632
|
-
subtle: string;
|
|
9633
|
-
};
|
|
9634
|
-
css: {
|
|
9635
|
-
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
|
9636
|
-
(...args: CSSInterpolation[]): string;
|
|
9637
|
-
};
|
|
9638
|
-
cx: (...args: any) => string;
|
|
9639
|
-
};
|
|
9640
|
-
|
|
9641
9642
|
declare const useClasses_37: (classesProp?: Partial<Record<"root" | "focusSelection" | "calendarMonthlyCell" | "calendarMonthlyCellSelected" | "rangeCalendarContainer" | "singleCalendar", string>>, addStatic?: boolean) => {
|
|
9642
9643
|
classes: {
|
|
9643
9644
|
root: string;
|
|
@@ -10634,7 +10635,7 @@ declare const useClasses_86: (classesProp?: Partial<Record<"root" | "formContain
|
|
|
10634
10635
|
cx: (...args: any) => string;
|
|
10635
10636
|
};
|
|
10636
10637
|
|
|
10637
|
-
declare const useClasses_87: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "split" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "
|
|
10638
|
+
declare const useClasses_87: (classesProp?: Partial<Record<"secondary" | "primary" | "vertical" | "split" | "root" | "secondarySubtle" | "selected" | "button" | "secondaryGhost" | "splitDisabled" | "multiple" | "primaryGhost" | "primarySubtle" | "splitGroup" | "splitGroupDisabled" | "splitContainer" | "firstButton" | "lastButton", string>>, addStatic?: boolean) => {
|
|
10638
10639
|
classes: {
|
|
10639
10640
|
secondary: string;
|
|
10640
10641
|
primary: string;
|
|
@@ -10645,14 +10646,15 @@ declare const useClasses_87: (classesProp?: Partial<Record<"secondary" | "primar
|
|
|
10645
10646
|
selected: string;
|
|
10646
10647
|
button: string;
|
|
10647
10648
|
secondaryGhost: string;
|
|
10649
|
+
splitDisabled: string;
|
|
10650
|
+
multiple: string;
|
|
10648
10651
|
primaryGhost: string;
|
|
10649
10652
|
primarySubtle: string;
|
|
10650
10653
|
splitGroup: string;
|
|
10651
10654
|
splitGroupDisabled: string;
|
|
10655
|
+
splitContainer: string;
|
|
10652
10656
|
firstButton: string;
|
|
10653
10657
|
lastButton: string;
|
|
10654
|
-
splitContainer: string;
|
|
10655
|
-
splitDisabled: string;
|
|
10656
10658
|
};
|
|
10657
10659
|
css: {
|
|
10658
10660
|
(template: TemplateStringsArray, ...args: CSSInterpolation[]): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-core",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.59.0",
|
|
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.
|
|
37
|
-
"@hitachivantara/uikit-react-shared": "^5.1.
|
|
38
|
-
"@hitachivantara/uikit-styles": "^5.
|
|
36
|
+
"@hitachivantara/uikit-react-icons": "^5.9.2",
|
|
37
|
+
"@hitachivantara/uikit-react-shared": "^5.1.34",
|
|
38
|
+
"@hitachivantara/uikit-styles": "^5.24.0",
|
|
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": "
|
|
65
|
+
"gitHead": "8e5b105c16009cc9383a55e5e00eb5832932ceed",
|
|
66
66
|
"main": "dist/cjs/index.cjs",
|
|
67
67
|
"exports": {
|
|
68
68
|
".": {
|