@hitachivantara/uikit-react-lab 5.3.5 → 5.3.7
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/components/StepNavigation/SimpleNavigation/Dot/Dot.cjs.map +1 -1
- package/dist/cjs/components/StepNavigation/StepNavigation.cjs +5 -5
- package/dist/cjs/components/StepNavigation/StepNavigation.cjs.map +1 -1
- package/dist/cjs/components/Wizard/Wizard.cjs.map +1 -1
- package/dist/cjs/components/Wizard/WizardContainer/WizardContainer.cjs +1 -0
- package/dist/cjs/components/Wizard/WizardContainer/WizardContainer.cjs.map +1 -1
- package/dist/cjs/components/Wizard/WizardTitle/WizardTitle.cjs +7 -5
- package/dist/cjs/components/Wizard/WizardTitle/WizardTitle.cjs.map +1 -1
- package/dist/esm/components/StepNavigation/SimpleNavigation/Dot/Dot.js.map +1 -1
- package/dist/esm/components/StepNavigation/StepNavigation.js +5 -5
- package/dist/esm/components/StepNavigation/StepNavigation.js.map +1 -1
- package/dist/esm/components/Wizard/Wizard.js.map +1 -1
- package/dist/esm/components/Wizard/WizardContainer/WizardContainer.js +1 -0
- package/dist/esm/components/Wizard/WizardContainer/WizardContainer.js.map +1 -1
- package/dist/esm/components/Wizard/WizardTitle/WizardTitle.js +7 -5
- package/dist/esm/components/Wizard/WizardTitle/WizardTitle.js.map +1 -1
- package/dist/types/index.d.ts +4 -4
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { HvAvatarSize } from '@hitachivantara/uikit-react-core';
|
|
|
3
3
|
import { HvBaseProps } from '@hitachivantara/uikit-react-core';
|
|
4
4
|
import { HvBreakpoints } from '@hitachivantara/uikit-react-core';
|
|
5
5
|
import { HvButtonProps } from '@hitachivantara/uikit-react-core';
|
|
6
|
-
import {
|
|
6
|
+
import { HvDialogProps } from '@hitachivantara/uikit-react-core';
|
|
7
7
|
import type { JSX as JSX_2 } from '@emotion/react/jsx-runtime';
|
|
8
8
|
import { ModalProps } from '@mui/material';
|
|
9
9
|
import { default as React_2 } from 'react';
|
|
@@ -167,7 +167,7 @@ export declare type HvWizardContainerClasses = {
|
|
|
167
167
|
closeButton?: string;
|
|
168
168
|
};
|
|
169
169
|
|
|
170
|
-
export declare interface HvWizardContainerProps extends Omit<HvBaseProps, "onClose"> {
|
|
170
|
+
export declare interface HvWizardContainerProps extends Omit<HvBaseProps, "onClose">, Pick<HvDialogProps, "maxWidth" | "fullWidth"> {
|
|
171
171
|
/** Current state of the Wizard. */
|
|
172
172
|
open: boolean;
|
|
173
173
|
/** Function executed on close. */
|
|
@@ -213,7 +213,7 @@ declare type HvWizardContextProp = {
|
|
|
213
213
|
setTab: Dispatch<SetStateAction<number>>;
|
|
214
214
|
};
|
|
215
215
|
|
|
216
|
-
export declare interface HvWizardProps extends HvBaseProps {
|
|
216
|
+
export declare interface HvWizardProps extends HvBaseProps, Pick<HvDialogProps, "maxWidth" | "fullWidth"> {
|
|
217
217
|
/** Current state of the Wizard. */
|
|
218
218
|
open: boolean;
|
|
219
219
|
/** Function executed on close. */
|
|
@@ -282,7 +282,7 @@ export declare interface HvWizardTitleProps extends HvBaseProps {
|
|
|
282
282
|
summary?: string;
|
|
283
283
|
};
|
|
284
284
|
/** Custom object to define type, size and width of the StepNavigation component */
|
|
285
|
-
customStep?: Pick<
|
|
285
|
+
customStep?: Pick<HvStepNavigationProps, "type" | "stepSize" | "width">;
|
|
286
286
|
/** A Jss Object used to override or extend the styles applied to the empty state Wizard. */
|
|
287
287
|
classes?: HvWizardTitleClasses;
|
|
288
288
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-lab",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Hitachi Vantara UI Kit Team",
|
|
6
6
|
"description": "Contributed React components for the NEXT UI Kit.",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@emotion/cache": "^11.10.5",
|
|
33
|
-
"@hitachivantara/uikit-react-core": "^5.
|
|
33
|
+
"@hitachivantara/uikit-react-core": "^5.8.1",
|
|
34
34
|
"clsx": "^1.2.1",
|
|
35
35
|
"usehooks-ts": "^2.9.1"
|
|
36
36
|
},
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"access": "public",
|
|
42
42
|
"directory": "package"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "26926baeded1a7e543655d96170f985bad7c4cbe",
|
|
45
45
|
"main": "dist/cjs/index.cjs",
|
|
46
46
|
"exports": {
|
|
47
47
|
".": {
|