@hitachivantara/uikit-react-lab 6.1.9 → 6.1.10
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/Blade/Blade.js +134 -173
- package/dist/Blade/Blade.styles.js +54 -69
- package/dist/Blades/Blades.js +70 -101
- package/dist/Blades/Blades.styles.js +7 -10
- package/dist/Dashboard/Dashboard.js +57 -60
- package/dist/Dashboard/Dashboard.styles.js +6 -10
- package/dist/Flow/Background/Background.js +10 -16
- package/dist/Flow/Controls/Controls.js +77 -91
- package/dist/Flow/DroppableFlow.js +135 -200
- package/dist/Flow/Empty/Empty.js +12 -9
- package/dist/Flow/Empty/Empty.styles.js +12 -15
- package/dist/Flow/Flow.js +28 -30
- package/dist/Flow/Flow.styles.js +12 -18
- package/dist/Flow/FlowContext/FlowContext.js +22 -23
- package/dist/Flow/FlowContext/NodeMetaContext.js +36 -39
- package/dist/Flow/Minimap/Minimap.js +15 -28
- package/dist/Flow/Minimap/Minimap.styles.js +4 -9
- package/dist/Flow/Node/BaseNode.js +144 -190
- package/dist/Flow/Node/BaseNode.styles.js +122 -133
- package/dist/Flow/Node/Node.js +90 -108
- package/dist/Flow/Node/Node.styles.js +30 -40
- package/dist/Flow/Node/Parameters/ParamRenderer.js +17 -14
- package/dist/Flow/Node/Parameters/Select.js +33 -38
- package/dist/Flow/Node/Parameters/Slider.js +27 -29
- package/dist/Flow/Node/Parameters/Text.js +17 -17
- package/dist/Flow/Node/utils.js +44 -49
- package/dist/Flow/Sidebar/Sidebar.js +115 -137
- package/dist/Flow/Sidebar/Sidebar.styles.js +21 -22
- package/dist/Flow/Sidebar/SidebarGroup/SidebarGroup.js +57 -60
- package/dist/Flow/Sidebar/SidebarGroup/SidebarGroup.styles.js +27 -33
- package/dist/Flow/Sidebar/SidebarGroup/SidebarGroupItem/DraggableSidebarGroupItem.js +27 -47
- package/dist/Flow/Sidebar/SidebarGroup/SidebarGroupItem/SidebarGroupItem.js +14 -32
- package/dist/Flow/Sidebar/SidebarGroup/SidebarGroupItem/SidebarGroupItem.styles.js +17 -23
- package/dist/Flow/base.js +5 -5
- package/dist/Flow/hooks/useFlowContext.js +5 -5
- package/dist/Flow/hooks/useFlowInstance.js +5 -4
- package/dist/Flow/hooks/useFlowNode.js +92 -113
- package/dist/Flow/hooks/useFlowNodeMeta.js +7 -7
- package/dist/Flow/hooks/useNode.js +136 -154
- package/dist/Flow/hooks/useNodeId.js +8 -7
- package/dist/Flow/nodes/DashboardNode.js +64 -86
- package/dist/Flow/nodes/DashboardNode.styles.js +8 -14
- package/dist/Flow/nodes/StickyNode.js +370 -435
- package/dist/StepNavigation/DefaultNavigation/DefaultNavigation.js +36 -52
- package/dist/StepNavigation/DefaultNavigation/Step/Step.js +40 -51
- package/dist/StepNavigation/DefaultNavigation/Step/Step.styles.js +22 -33
- package/dist/StepNavigation/DefaultNavigation/utils.js +38 -30
- package/dist/StepNavigation/SimpleNavigation/Dot/Dot.js +24 -41
- package/dist/StepNavigation/SimpleNavigation/Dot/Dot.styles.js +13 -16
- package/dist/StepNavigation/SimpleNavigation/SimpleNavigation.js +35 -47
- package/dist/StepNavigation/SimpleNavigation/utils.js +10 -11
- package/dist/StepNavigation/StepNavigation.js +136 -179
- package/dist/StepNavigation/StepNavigation.styles.js +29 -32
- package/dist/Wizard/Wizard.js +81 -104
- package/dist/Wizard/Wizard.styles.js +4 -7
- package/dist/Wizard/WizardActions/WizardActions.js +111 -131
- package/dist/Wizard/WizardActions/WizardActions.styles.js +19 -20
- package/dist/Wizard/WizardContainer/WizardContainer.js +19 -28
- package/dist/Wizard/WizardContainer/WizardContainer.styles.js +8 -14
- package/dist/Wizard/WizardContent/WizardContent.js +103 -120
- package/dist/Wizard/WizardContent/WizardContent.styles.js +33 -36
- package/dist/Wizard/WizardContext/WizardContext.js +10 -13
- package/dist/Wizard/WizardTitle/WizardTitle.js +74 -79
- package/dist/Wizard/WizardTitle/WizardTitle.styles.js +12 -15
- package/dist/index.d.ts +1 -1
- package/dist/index.js +30 -81
- package/package.json +6 -6
- package/dist/StepNavigation/utils.js +0 -8
|
@@ -1,38 +1,35 @@
|
|
|
1
1
|
import { createClasses } from "@hitachivantara/uikit-react-core";
|
|
2
|
-
import { theme } from "@hitachivantara/uikit-styles";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
2
|
+
import { theme as theme$1 } from "@hitachivantara/uikit-styles";
|
|
3
|
+
//#region src/Wizard/WizardContent/WizardContent.styles.tsx
|
|
4
|
+
var { staticClasses, useClasses } = createClasses("HvWizardContent", {
|
|
5
|
+
contentContainer: {
|
|
6
|
+
position: "relative",
|
|
7
|
+
padding: 20,
|
|
8
|
+
marginLeft: 0,
|
|
9
|
+
minHeight: 400,
|
|
10
|
+
overflowX: "hidden"
|
|
11
|
+
},
|
|
12
|
+
fixedHeight: { minHeight: "calc(100vh - 387px)" },
|
|
13
|
+
summaryRef: {
|
|
14
|
+
flex: 1,
|
|
15
|
+
overflowY: "auto",
|
|
16
|
+
overflowX: "hidden"
|
|
17
|
+
},
|
|
18
|
+
summarySticky: {
|
|
19
|
+
position: "sticky",
|
|
20
|
+
top: 0,
|
|
21
|
+
zIndex: 1
|
|
22
|
+
},
|
|
23
|
+
summaryContainer: {
|
|
24
|
+
position: "absolute",
|
|
25
|
+
top: 0,
|
|
26
|
+
minWidth: 280,
|
|
27
|
+
boxShadow: theme$1.colors.shadow,
|
|
28
|
+
backgroundColor: theme$1.colors.bgContainer,
|
|
29
|
+
transition: "transform 0.3s",
|
|
30
|
+
transitionTimingFunction: "ease-in-out",
|
|
31
|
+
overflowY: "scroll"
|
|
32
|
+
}
|
|
34
33
|
});
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
useClasses
|
|
38
|
-
};
|
|
34
|
+
//#endregion
|
|
35
|
+
export { staticClasses, useClasses };
|
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
import { createContext } from "react";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
setTab: () => {
|
|
11
|
-
}
|
|
2
|
+
//#region src/Wizard/WizardContext/WizardContext.tsx
|
|
3
|
+
var HvWizardContext = createContext({
|
|
4
|
+
context: {},
|
|
5
|
+
setContext: () => {},
|
|
6
|
+
summary: false,
|
|
7
|
+
setSummary: () => {},
|
|
8
|
+
tab: 0,
|
|
9
|
+
setTab: () => {}
|
|
12
10
|
});
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
};
|
|
11
|
+
//#endregion
|
|
12
|
+
export { HvWizardContext as default };
|
|
@@ -1,82 +1,77 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useContext, useState, useEffect } from "react";
|
|
3
|
-
import { HvDialogTitle, HvTypography, HvButton } from "@hitachivantara/uikit-react-core";
|
|
4
|
-
import { Report } from "@hitachivantara/uikit-react-icons";
|
|
5
|
-
import { useClasses } from "./WizardTitle.styles.js";
|
|
6
|
-
import { staticClasses } from "./WizardTitle.styles.js";
|
|
7
|
-
import HvWizardContext from "../WizardContext/WizardContext.js";
|
|
8
1
|
import { HvStepNavigation } from "../../StepNavigation/StepNavigation.js";
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}) => {
|
|
25
|
-
const { context, setSummary, tab, setTab } = useContext(HvWizardContext);
|
|
26
|
-
const { classes } = useClasses(classesProp);
|
|
27
|
-
const [steps, setSteps] = useState([]);
|
|
28
|
-
useEffect(() => {
|
|
29
|
-
return () => {
|
|
30
|
-
setSummary(false);
|
|
31
|
-
};
|
|
32
|
-
}, [setSummary]);
|
|
33
|
-
const toggleSummary = () => {
|
|
34
|
-
setSummary((prevValue) => !prevValue);
|
|
35
|
-
};
|
|
36
|
-
useEffect(() => {
|
|
37
|
-
const contextArray = Object.entries(context);
|
|
38
|
-
if (!contextArray.length) return;
|
|
39
|
-
const updatedSteps = contextArray.map(
|
|
40
|
-
([, childState], index) => ({
|
|
41
|
-
title: childState?.["data-title"] ?? childState?.name ?? `${index + 1}`,
|
|
42
|
-
state: switchTabState(childState, tab, index),
|
|
43
|
-
onClick: () => setTab(index)
|
|
44
|
-
})
|
|
45
|
-
);
|
|
46
|
-
setSteps(updatedSteps);
|
|
47
|
-
}, [context, tab, setTab]);
|
|
48
|
-
return /* @__PURE__ */ jsxs(HvDialogTitle, { className: classes.root, showIcon: false, children: [
|
|
49
|
-
title && /* @__PURE__ */ jsx(HvTypography, { variant: "title3", component: "div", children: title }),
|
|
50
|
-
!!steps.length && /* @__PURE__ */ jsx(
|
|
51
|
-
HvStepNavigation,
|
|
52
|
-
{
|
|
53
|
-
className: classes.stepContainer,
|
|
54
|
-
steps,
|
|
55
|
-
type: "Default",
|
|
56
|
-
stepSize: "xs",
|
|
57
|
-
width: {
|
|
58
|
-
xs: 200,
|
|
59
|
-
sm: 350,
|
|
60
|
-
md: 600,
|
|
61
|
-
lg: 800,
|
|
62
|
-
xl: 1e3
|
|
63
|
-
},
|
|
64
|
-
...customStep
|
|
65
|
-
}
|
|
66
|
-
),
|
|
67
|
-
hasSummary && /* @__PURE__ */ jsx(
|
|
68
|
-
HvButton,
|
|
69
|
-
{
|
|
70
|
-
variant: "secondarySubtle",
|
|
71
|
-
className: classes.summaryButton,
|
|
72
|
-
onClick: toggleSummary,
|
|
73
|
-
startIcon: /* @__PURE__ */ jsx(Report, {}),
|
|
74
|
-
children: `${labels.summary ?? "Summary"}`
|
|
75
|
-
}
|
|
76
|
-
)
|
|
77
|
-
] });
|
|
2
|
+
import HvWizardContext from "../WizardContext/WizardContext.js";
|
|
3
|
+
import { useClasses } from "./WizardTitle.styles.js";
|
|
4
|
+
import { useContext, useEffect, useState } from "react";
|
|
5
|
+
import { HvButton, HvDialogTitle, HvTypography } from "@hitachivantara/uikit-react-core";
|
|
6
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
import { Report } from "@hitachivantara/uikit-react-icons";
|
|
8
|
+
//#region src/Wizard/WizardTitle/WizardTitle.tsx
|
|
9
|
+
var switchTabState = (state, currentTab, index) => {
|
|
10
|
+
if (state?.loading) return "Pending";
|
|
11
|
+
if (index === currentTab) return "Current";
|
|
12
|
+
if (state?.valid) return "Completed";
|
|
13
|
+
if (state?.disabled) return "Disabled";
|
|
14
|
+
if (state?.valid === null) return "Enabled";
|
|
15
|
+
if (state?.touched && state?.valid === false) return "Failed";
|
|
16
|
+
return "Enabled";
|
|
78
17
|
};
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
18
|
+
var HvWizardTitle = ({ title, hasSummary = false, labels = {}, classes: classesProp, customStep = {} }) => {
|
|
19
|
+
const { context, setSummary, tab, setTab } = useContext(HvWizardContext);
|
|
20
|
+
const { classes } = useClasses(classesProp);
|
|
21
|
+
const [steps, setSteps] = useState([]);
|
|
22
|
+
useEffect(() => {
|
|
23
|
+
return () => {
|
|
24
|
+
setSummary(false);
|
|
25
|
+
};
|
|
26
|
+
}, [setSummary]);
|
|
27
|
+
const toggleSummary = () => {
|
|
28
|
+
setSummary((prevValue) => !prevValue);
|
|
29
|
+
};
|
|
30
|
+
useEffect(() => {
|
|
31
|
+
const contextArray = Object.entries(context);
|
|
32
|
+
if (!contextArray.length) return;
|
|
33
|
+
setSteps(contextArray.map(([, childState], index) => ({
|
|
34
|
+
title: childState?.["data-title"] ?? childState?.name ?? `${index + 1}`,
|
|
35
|
+
state: switchTabState(childState, tab, index),
|
|
36
|
+
onClick: () => setTab(index)
|
|
37
|
+
})));
|
|
38
|
+
}, [
|
|
39
|
+
context,
|
|
40
|
+
tab,
|
|
41
|
+
setTab
|
|
42
|
+
]);
|
|
43
|
+
return /* @__PURE__ */ jsxs(HvDialogTitle, {
|
|
44
|
+
className: classes.root,
|
|
45
|
+
showIcon: false,
|
|
46
|
+
children: [
|
|
47
|
+
title && /* @__PURE__ */ jsx(HvTypography, {
|
|
48
|
+
variant: "title3",
|
|
49
|
+
component: "div",
|
|
50
|
+
children: title
|
|
51
|
+
}),
|
|
52
|
+
!!steps.length && /* @__PURE__ */ jsx(HvStepNavigation, {
|
|
53
|
+
className: classes.stepContainer,
|
|
54
|
+
steps,
|
|
55
|
+
type: "Default",
|
|
56
|
+
stepSize: "xs",
|
|
57
|
+
width: {
|
|
58
|
+
xs: 200,
|
|
59
|
+
sm: 350,
|
|
60
|
+
md: 600,
|
|
61
|
+
lg: 800,
|
|
62
|
+
xl: 1e3
|
|
63
|
+
},
|
|
64
|
+
...customStep
|
|
65
|
+
}),
|
|
66
|
+
hasSummary && /* @__PURE__ */ jsx(HvButton, {
|
|
67
|
+
variant: "secondarySubtle",
|
|
68
|
+
className: classes.summaryButton,
|
|
69
|
+
onClick: toggleSummary,
|
|
70
|
+
startIcon: /* @__PURE__ */ jsx(Report, {}),
|
|
71
|
+
children: `${labels.summary ?? "Summary"}`
|
|
72
|
+
})
|
|
73
|
+
]
|
|
74
|
+
});
|
|
82
75
|
};
|
|
76
|
+
//#endregion
|
|
77
|
+
export { HvWizardTitle };
|
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
import { createClasses } from "@hitachivantara/uikit-react-core";
|
|
2
|
-
import { theme } from "@hitachivantara/uikit-styles";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
2
|
+
import { theme as theme$1 } from "@hitachivantara/uikit-styles";
|
|
3
|
+
//#region src/Wizard/WizardTitle/WizardTitle.styles.tsx
|
|
4
|
+
var { staticClasses, useClasses } = createClasses("HvWizardTitle", {
|
|
5
|
+
root: {
|
|
6
|
+
backgroundColor: theme$1.colors.bgPage,
|
|
7
|
+
justifyContent: "space-between",
|
|
8
|
+
paddingRight: theme$1.space.sm
|
|
9
|
+
},
|
|
10
|
+
summaryButton: {},
|
|
11
|
+
stepContainer: { margin: "auto" }
|
|
13
12
|
});
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
useClasses
|
|
17
|
-
};
|
|
13
|
+
//#endregion
|
|
14
|
+
export { staticClasses, useClasses };
|
package/dist/index.d.ts
CHANGED
|
@@ -1246,7 +1246,6 @@ export declare function useHvNode(props: HvUseNodeParams): {
|
|
|
1246
1246
|
is?: string | undefined;
|
|
1247
1247
|
exportparts?: string | undefined;
|
|
1248
1248
|
part?: string | undefined;
|
|
1249
|
-
children?: ReactNode | Iterable<ReactNode>;
|
|
1250
1249
|
"aria-activedescendant"?: string | undefined;
|
|
1251
1250
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
1252
1251
|
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -1300,6 +1299,7 @@ export declare function useHvNode(props: HvUseNodeParams): {
|
|
|
1300
1299
|
"aria-valuemin"?: number | undefined;
|
|
1301
1300
|
"aria-valuenow"?: number | undefined;
|
|
1302
1301
|
"aria-valuetext"?: string | undefined;
|
|
1302
|
+
children?: ReactNode | undefined;
|
|
1303
1303
|
dangerouslySetInnerHTML?: {
|
|
1304
1304
|
__html: string | TrustedHTML;
|
|
1305
1305
|
} | undefined;
|
package/dist/index.js
CHANGED
|
@@ -1,93 +1,42 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DEFAULT_LABELS, HvFlowBaseNode } from "./Flow/Node/BaseNode.js";
|
|
1
|
+
import { staticClasses } from "./Blade/Blade.styles.js";
|
|
3
2
|
import { HvBlade } from "./Blade/Blade.js";
|
|
3
|
+
import { staticClasses as staticClasses$1 } from "./Blades/Blades.styles.js";
|
|
4
4
|
import { HvBlades } from "./Blades/Blades.js";
|
|
5
|
+
import { staticClasses as staticClasses$2 } from "./Dashboard/Dashboard.styles.js";
|
|
5
6
|
import { HvDashboard } from "./Dashboard/Dashboard.js";
|
|
6
|
-
import { HvDashboardNode } from "./Flow/nodes/DashboardNode.js";
|
|
7
|
-
import { HvFlow } from "./Flow/Flow.js";
|
|
8
7
|
import { HvFlowBackground } from "./Flow/Background/Background.js";
|
|
8
|
+
import { useFlowInstance } from "./Flow/hooks/useFlowInstance.js";
|
|
9
|
+
import { useFlowInputNodes, useFlowNode, useFlowNodeEdges, useFlowNodeInputEdges, useFlowNodeIntersections, useFlowNodeOutputEdges, useFlowNodeParents, useFlowNodeUtils, useFlowOutputNodes } from "./Flow/hooks/useFlowNode.js";
|
|
10
|
+
import { useNodeMetaRegistry } from "./Flow/FlowContext/NodeMetaContext.js";
|
|
11
|
+
import { useFlowContext } from "./Flow/hooks/useFlowContext.js";
|
|
12
|
+
import { useFlowNodeMeta } from "./Flow/hooks/useFlowNodeMeta.js";
|
|
13
|
+
import { useHvNode } from "./Flow/hooks/useNode.js";
|
|
9
14
|
import { HvFlowControls } from "./Flow/Controls/Controls.js";
|
|
10
|
-
import {
|
|
15
|
+
import { staticClasses as staticClasses$5 } from "./Flow/Minimap/Minimap.styles.js";
|
|
11
16
|
import { HvFlowMinimap } from "./Flow/Minimap/Minimap.js";
|
|
12
|
-
import {
|
|
17
|
+
import { staticClasses as staticClasses$7 } from "./Flow/Sidebar/Sidebar.styles.js";
|
|
13
18
|
import { HvFlowSidebar } from "./Flow/Sidebar/Sidebar.js";
|
|
19
|
+
import { HvFlowEmpty } from "./Flow/Empty/Empty.js";
|
|
20
|
+
import { staticClasses as staticClasses$3 } from "./Flow/Node/BaseNode.styles.js";
|
|
21
|
+
import { DEFAULT_LABELS, HvFlowBaseNode } from "./Flow/Node/BaseNode.js";
|
|
22
|
+
import { staticClasses as staticClasses$6 } from "./Flow/Node/Node.styles.js";
|
|
23
|
+
import { HvFlowNode } from "./Flow/Node/Node.js";
|
|
24
|
+
import { staticClasses as staticClasses$4 } from "./Flow/Flow.styles.js";
|
|
25
|
+
import { HvFlow } from "./Flow/Flow.js";
|
|
26
|
+
import { staticClasses as staticClasses$8 } from "./Flow/nodes/DashboardNode.styles.js";
|
|
27
|
+
import { HvDashboardNode } from "./Flow/nodes/DashboardNode.js";
|
|
28
|
+
import { StickyNode } from "./Flow/nodes/StickyNode.js";
|
|
29
|
+
import { staticClasses as staticClasses$9 } from "./StepNavigation/StepNavigation.styles.js";
|
|
14
30
|
import { HvStepNavigation } from "./StepNavigation/StepNavigation.js";
|
|
15
|
-
import {
|
|
31
|
+
import { staticClasses as staticClasses$11 } from "./Wizard/Wizard.styles.js";
|
|
32
|
+
import HvWizardContext from "./Wizard/WizardContext/WizardContext.js";
|
|
33
|
+
import { staticClasses as staticClasses$10 } from "./Wizard/WizardActions/WizardActions.styles.js";
|
|
16
34
|
import { HvWizardActions } from "./Wizard/WizardActions/WizardActions.js";
|
|
35
|
+
import { staticClasses as staticClasses$12 } from "./Wizard/WizardContainer/WizardContainer.styles.js";
|
|
17
36
|
import { HvWizardContainer } from "./Wizard/WizardContainer/WizardContainer.js";
|
|
37
|
+
import { staticClasses as staticClasses$13 } from "./Wizard/WizardContent/WizardContent.styles.js";
|
|
18
38
|
import { HvWizardContent } from "./Wizard/WizardContent/WizardContent.js";
|
|
39
|
+
import { staticClasses as staticClasses$14 } from "./Wizard/WizardTitle/WizardTitle.styles.js";
|
|
19
40
|
import { HvWizardTitle } from "./Wizard/WizardTitle/WizardTitle.js";
|
|
20
|
-
import {
|
|
21
|
-
|
|
22
|
-
import { staticClasses as staticClasses2 } from "./Blades/Blades.styles.js";
|
|
23
|
-
import { staticClasses as staticClasses3 } from "./Dashboard/Dashboard.styles.js";
|
|
24
|
-
import { staticClasses as staticClasses4 } from "./Flow/Node/BaseNode.styles.js";
|
|
25
|
-
import { staticClasses as staticClasses5 } from "./Flow/Flow.styles.js";
|
|
26
|
-
import { staticClasses as staticClasses6 } from "./Flow/Minimap/Minimap.styles.js";
|
|
27
|
-
import { staticClasses as staticClasses7 } from "./Flow/Node/Node.styles.js";
|
|
28
|
-
import { staticClasses as staticClasses8 } from "./Flow/Sidebar/Sidebar.styles.js";
|
|
29
|
-
import { staticClasses as staticClasses9 } from "./Flow/nodes/DashboardNode.styles.js";
|
|
30
|
-
import { staticClasses as staticClasses10 } from "./StepNavigation/StepNavigation.styles.js";
|
|
31
|
-
import { useFlowContext } from "./Flow/hooks/useFlowContext.js";
|
|
32
|
-
import { useFlowInputNodes, useFlowNode, useFlowNodeEdges, useFlowNodeInputEdges, useFlowNodeIntersections, useFlowNodeOutputEdges, useFlowNodeParents, useFlowNodeUtils, useFlowOutputNodes } from "./Flow/hooks/useFlowNode.js";
|
|
33
|
-
import { useFlowInstance } from "./Flow/hooks/useFlowInstance.js";
|
|
34
|
-
import { useFlowNodeMeta } from "./Flow/hooks/useFlowNodeMeta.js";
|
|
35
|
-
import { useHvNode } from "./Flow/hooks/useNode.js";
|
|
36
|
-
import { useNodeMetaRegistry } from "./Flow/FlowContext/NodeMetaContext.js";
|
|
37
|
-
import { staticClasses as staticClasses11 } from "./Wizard/WizardActions/WizardActions.styles.js";
|
|
38
|
-
import { staticClasses as staticClasses12 } from "./Wizard/Wizard.styles.js";
|
|
39
|
-
import { staticClasses as staticClasses13 } from "./Wizard/WizardContainer/WizardContainer.styles.js";
|
|
40
|
-
import { staticClasses as staticClasses14 } from "./Wizard/WizardContent/WizardContent.styles.js";
|
|
41
|
-
import { staticClasses as staticClasses15 } from "./Wizard/WizardTitle/WizardTitle.styles.js";
|
|
42
|
-
export {
|
|
43
|
-
DEFAULT_LABELS,
|
|
44
|
-
HvBlade,
|
|
45
|
-
HvBlades,
|
|
46
|
-
HvDashboard,
|
|
47
|
-
HvDashboardNode,
|
|
48
|
-
HvFlow,
|
|
49
|
-
HvFlowBackground,
|
|
50
|
-
HvFlowBaseNode,
|
|
51
|
-
HvFlowControls,
|
|
52
|
-
HvFlowEmpty,
|
|
53
|
-
HvFlowMinimap,
|
|
54
|
-
HvFlowNode,
|
|
55
|
-
HvFlowSidebar,
|
|
56
|
-
HvStepNavigation,
|
|
57
|
-
HvWizard,
|
|
58
|
-
HvWizardActions,
|
|
59
|
-
HvWizardContainer,
|
|
60
|
-
HvWizardContent,
|
|
61
|
-
default2 as HvWizardContext,
|
|
62
|
-
HvWizardTitle,
|
|
63
|
-
StickyNode,
|
|
64
|
-
staticClasses as bladeClasses,
|
|
65
|
-
staticClasses2 as bladesClasses,
|
|
66
|
-
staticClasses3 as dashboardClasses,
|
|
67
|
-
staticClasses4 as flowBaseNodeClasses,
|
|
68
|
-
staticClasses5 as flowClasses,
|
|
69
|
-
staticClasses6 as flowMinimapClasses,
|
|
70
|
-
staticClasses7 as flowNodeClasses,
|
|
71
|
-
staticClasses8 as flowSidebarClasses,
|
|
72
|
-
staticClasses9 as hvDashboardNodeClasses,
|
|
73
|
-
staticClasses10 as stepNavigationClasses,
|
|
74
|
-
useFlowContext,
|
|
75
|
-
useFlowInputNodes,
|
|
76
|
-
useFlowInstance,
|
|
77
|
-
useFlowNode,
|
|
78
|
-
useFlowNodeEdges,
|
|
79
|
-
useFlowNodeInputEdges,
|
|
80
|
-
useFlowNodeIntersections,
|
|
81
|
-
useFlowNodeMeta,
|
|
82
|
-
useFlowNodeOutputEdges,
|
|
83
|
-
useFlowNodeParents,
|
|
84
|
-
useFlowNodeUtils,
|
|
85
|
-
useFlowOutputNodes,
|
|
86
|
-
useHvNode,
|
|
87
|
-
useNodeMetaRegistry,
|
|
88
|
-
staticClasses11 as wizardActionsClasses,
|
|
89
|
-
staticClasses12 as wizardClasses,
|
|
90
|
-
staticClasses13 as wizardContainerClasses,
|
|
91
|
-
staticClasses14 as wizardContentClasses,
|
|
92
|
-
staticClasses15 as wizardTitleClasses
|
|
93
|
-
};
|
|
41
|
+
import { HvWizard } from "./Wizard/Wizard.js";
|
|
42
|
+
export { DEFAULT_LABELS, HvBlade, HvBlades, HvDashboard, HvDashboardNode, HvFlow, HvFlowBackground, HvFlowBaseNode, HvFlowControls, HvFlowEmpty, HvFlowMinimap, HvFlowNode, HvFlowSidebar, HvStepNavigation, HvWizard, HvWizardActions, HvWizardContainer, HvWizardContent, HvWizardContext, HvWizardTitle, StickyNode, staticClasses as bladeClasses, staticClasses$1 as bladesClasses, staticClasses$2 as dashboardClasses, staticClasses$3 as flowBaseNodeClasses, staticClasses$4 as flowClasses, staticClasses$5 as flowMinimapClasses, staticClasses$6 as flowNodeClasses, staticClasses$7 as flowSidebarClasses, staticClasses$8 as hvDashboardNodeClasses, staticClasses$9 as stepNavigationClasses, useFlowContext, useFlowInputNodes, useFlowInstance, useFlowNode, useFlowNodeEdges, useFlowNodeInputEdges, useFlowNodeIntersections, useFlowNodeMeta, useFlowNodeOutputEdges, useFlowNodeParents, useFlowNodeUtils, useFlowOutputNodes, useHvNode, useNodeMetaRegistry, staticClasses$10 as wizardActionsClasses, staticClasses$11 as wizardClasses, staticClasses$12 as wizardContainerClasses, staticClasses$13 as wizardContentClasses, staticClasses$14 as wizardTitleClasses };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-lab",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Hitachi Vantara UI Kit Team",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"@dnd-kit/core": "^6.1.0",
|
|
35
35
|
"@dnd-kit/modifiers": "^6.0.1",
|
|
36
36
|
"@emotion/css": "^11.11.0",
|
|
37
|
-
"@hitachivantara/uikit-react-core": "^6.
|
|
38
|
-
"@hitachivantara/uikit-react-icons": "^6.0.
|
|
39
|
-
"@hitachivantara/uikit-react-utils": "^6.2.
|
|
40
|
-
"@hitachivantara/uikit-styles": "^6.1.
|
|
37
|
+
"@hitachivantara/uikit-react-core": "^6.9.0",
|
|
38
|
+
"@hitachivantara/uikit-react-icons": "^6.0.5",
|
|
39
|
+
"@hitachivantara/uikit-react-utils": "^6.2.3",
|
|
40
|
+
"@hitachivantara/uikit-styles": "^6.1.1",
|
|
41
41
|
"@types/react-grid-layout": "^1.3.5",
|
|
42
42
|
"react-grid-layout": "^1.4.4",
|
|
43
43
|
"reactflow": "^11.10.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"access": "public",
|
|
53
53
|
"directory": "package"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "65c4f4394e8f8c7cccb58203e1c08c6832434638",
|
|
56
56
|
"exports": {
|
|
57
57
|
".": {
|
|
58
58
|
"types": "./dist/index.d.ts",
|