@hitachivantara/uikit-react-lab 5.40.6 → 5.40.8

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.
@@ -12,5 +12,4 @@ const HvWizardContext = React.createContext({
12
12
  setTab: () => {
13
13
  }
14
14
  });
15
- const HvWizardContext$1 = HvWizardContext;
16
- exports.default = HvWizardContext$1;
15
+ exports.default = HvWizardContext;
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const WizardContext = require("./Wizard/WizardContext/WizardContext.cjs");
3
4
  const Blade_styles = require("./Blade/Blade.styles.cjs");
4
5
  const Blade = require("./Blade/Blade.cjs");
5
6
  const Blades_styles = require("./Blades/Blades.styles.cjs");
@@ -37,9 +38,9 @@ const WizardContainer_styles = require("./Wizard/WizardContainer/WizardContainer
37
38
  const WizardContainer = require("./Wizard/WizardContainer/WizardContainer.cjs");
38
39
  const WizardContent_styles = require("./Wizard/WizardContent/WizardContent.styles.cjs");
39
40
  const WizardContent = require("./Wizard/WizardContent/WizardContent.cjs");
40
- const WizardContext = require("./Wizard/WizardContext/WizardContext.cjs");
41
41
  const WizardTitle_styles = require("./Wizard/WizardTitle/WizardTitle.styles.cjs");
42
42
  const WizardTitle = require("./Wizard/WizardTitle/WizardTitle.cjs");
43
+ exports.HvWizardContext = WizardContext.default;
43
44
  exports.bladeClasses = Blade_styles.staticClasses;
44
45
  exports.HvBlade = Blade.HvBlade;
45
46
  exports.bladesClasses = Blades_styles.staticClasses;
@@ -86,6 +87,5 @@ exports.wizardContainerClasses = WizardContainer_styles.staticClasses;
86
87
  exports.HvWizardContainer = WizardContainer.HvWizardContainer;
87
88
  exports.wizardContentClasses = WizardContent_styles.staticClasses;
88
89
  exports.HvWizardContent = WizardContent.HvWizardContent;
89
- exports.HvWizardContext = WizardContext.default;
90
90
  exports.wizardTitleClasses = WizardTitle_styles.staticClasses;
91
91
  exports.HvWizardTitle = WizardTitle.HvWizardTitle;
@@ -10,7 +10,6 @@ const HvWizardContext = createContext({
10
10
  setTab: () => {
11
11
  }
12
12
  });
13
- const HvWizardContext$1 = HvWizardContext;
14
13
  export {
15
- HvWizardContext$1 as default
14
+ HvWizardContext as default
16
15
  };
@@ -1 +1 @@
1
- {"version":3,"file":"WizardContext.js","sources":["../../../../src/Wizard/WizardContext/WizardContext.tsx"],"sourcesContent":["import { createContext, Dispatch, SetStateAction } from \"react\";\n\nexport type HvWizardTab = {\n name?: string;\n valid?: boolean | null;\n mustValidate?: boolean;\n touched?: boolean;\n form?: any;\n children?: React.ReactNode;\n disabled?: boolean;\n loading?: boolean;\n [other: string]: any;\n};\n\nexport type HvWizardTabs = {\n [tab in number]?: HvWizardTab;\n};\n\ntype HvWizardContextProp = {\n context: HvWizardTabs;\n setContext: React.Dispatch<React.SetStateAction<HvWizardTabs>>;\n summary: boolean;\n setSummary: React.Dispatch<React.SetStateAction<boolean>>;\n tab: number;\n setTab: Dispatch<SetStateAction<number>>;\n};\n\nconst HvWizardContext = createContext<HvWizardContextProp>({\n context: {},\n setContext: () => {},\n summary: false,\n setSummary: () => {},\n tab: 0,\n setTab: () => {},\n});\n\nexport default HvWizardContext;\n"],"names":[],"mappings":";AA2BA,MAAM,kBAAkB,cAAmC;AAAA,EACzD,SAAS,CAAC;AAAA,EACV,YAAY,MAAM;AAAA,EAAC;AAAA,EACnB,SAAS;AAAA,EACT,YAAY,MAAM;AAAA,EAAC;AAAA,EACnB,KAAK;AAAA,EACL,QAAQ,MAAM;AAAA,EAAC;AACjB,CAAC;AAED,MAAA,oBAAe;"}
1
+ {"version":3,"file":"WizardContext.js","sources":["../../../../src/Wizard/WizardContext/WizardContext.tsx"],"sourcesContent":["import { createContext, Dispatch, SetStateAction } from \"react\";\n\nexport type HvWizardTab = {\n name?: string;\n valid?: boolean | null;\n mustValidate?: boolean;\n touched?: boolean;\n form?: any;\n children?: React.ReactNode;\n disabled?: boolean;\n loading?: boolean;\n [other: string]: any;\n};\n\nexport type HvWizardTabs = {\n [tab in number]?: HvWizardTab;\n};\n\ntype HvWizardContextProp = {\n context: HvWizardTabs;\n setContext: React.Dispatch<React.SetStateAction<HvWizardTabs>>;\n summary: boolean;\n setSummary: React.Dispatch<React.SetStateAction<boolean>>;\n tab: number;\n setTab: Dispatch<SetStateAction<number>>;\n};\n\nconst HvWizardContext = createContext<HvWizardContextProp>({\n context: {},\n setContext: () => {},\n summary: false,\n setSummary: () => {},\n tab: 0,\n setTab: () => {},\n});\n\nexport default HvWizardContext;\n"],"names":[],"mappings":";AA2BA,MAAM,kBAAkB,cAAmC;AAAA,EACzD,SAAS,CAAC;AAAA,EACV,YAAY,MAAM;AAAA,EAAC;AAAA,EACnB,SAAS;AAAA,EACT,YAAY,MAAM;AAAA,EAAC;AAAA,EACnB,KAAK;AAAA,EACL,QAAQ,MAAM;AAAA,EAAC;AACjB,CAAC;"}
package/dist/esm/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { default as default2 } from "./Wizard/WizardContext/WizardContext.js";
1
2
  import { staticClasses } from "./Blade/Blade.styles.js";
2
3
  import { HvBlade } from "./Blade/Blade.js";
3
4
  import { staticClasses as staticClasses2 } from "./Blades/Blades.styles.js";
@@ -35,7 +36,6 @@ import { staticClasses as staticClasses13 } from "./Wizard/WizardContainer/Wizar
35
36
  import { HvWizardContainer } from "./Wizard/WizardContainer/WizardContainer.js";
36
37
  import { staticClasses as staticClasses14 } from "./Wizard/WizardContent/WizardContent.styles.js";
37
38
  import { HvWizardContent } from "./Wizard/WizardContent/WizardContent.js";
38
- import { default as default2 } from "./Wizard/WizardContext/WizardContext.js";
39
39
  import { staticClasses as staticClasses15 } from "./Wizard/WizardTitle/WizardTitle.styles.js";
40
40
  import { HvWizardTitle } from "./Wizard/WizardTitle/WizardTitle.js";
41
41
  export {
@@ -58,22 +58,22 @@ import { UIEventHandler } from 'react';
58
58
  import { WheelEventHandler } from 'react';
59
59
 
60
60
  export declare const bladeClasses: {
61
- container: "HvBlade-container";
62
- root: "HvBlade-root";
63
- disabled: "HvBlade-disabled";
64
- button: "HvBlade-button";
65
- expanded: "HvBlade-expanded";
66
- heading: "HvBlade-heading";
67
- fullWidth: "HvBlade-fullWidth";
68
- textOnlyLabel: "HvBlade-textOnlyLabel";
61
+ root: string;
62
+ expanded: string;
63
+ fullWidth: string;
64
+ heading: string;
65
+ button: string;
66
+ textOnlyLabel: string;
67
+ container: string;
68
+ disabled: string;
69
69
  };
70
70
 
71
71
  export declare const bladesClasses: {
72
- root: "HvBlades-root";
72
+ root: string;
73
73
  };
74
74
 
75
75
  export declare const dashboardClasses: {
76
- root: "HvDashboard-root";
76
+ root: string;
77
77
  };
78
78
 
79
79
  export declare const DEFAULT_LABELS: {
@@ -116,67 +116,67 @@ declare const DEFAULT_LABELS_6: {
116
116
  };
117
117
 
118
118
  export declare const flowBaseNodeClasses: {
119
- root: "HvFlowBaseNode-root";
120
- title: "HvFlowBaseNode-title";
121
- titleContainer: "HvFlowBaseNode-titleContainer";
122
- mandatory: "HvFlowBaseNode-mandatory";
123
- footerContainer: "HvFlowBaseNode-footerContainer";
124
- handle: "HvFlowBaseNode-handle";
125
- inputContainer: "HvFlowBaseNode-inputContainer";
126
- headerContainer: "HvFlowBaseNode-headerContainer";
127
- inputsTitleContainer: "HvFlowBaseNode-inputsTitleContainer";
128
- outputsTitleContainer: "HvFlowBaseNode-outputsTitleContainer";
129
- contentContainer: "HvFlowBaseNode-contentContainer";
130
- inputsContainer: "HvFlowBaseNode-inputsContainer";
131
- outputsContainer: "HvFlowBaseNode-outputsContainer";
132
- inputGroupContainer: "HvFlowBaseNode-inputGroupContainer";
133
- outputGroupContainer: "HvFlowBaseNode-outputGroupContainer";
134
- outputContainer: "HvFlowBaseNode-outputContainer";
135
- handleConnected: "HvFlowBaseNode-handleConnected";
119
+ root: string;
120
+ headerContainer: string;
121
+ titleContainer: string;
122
+ title: string;
123
+ inputsTitleContainer: string;
124
+ outputsTitleContainer: string;
125
+ contentContainer: string;
126
+ inputsContainer: string;
127
+ outputsContainer: string;
128
+ inputGroupContainer: string;
129
+ outputGroupContainer: string;
130
+ inputContainer: string;
131
+ outputContainer: string;
132
+ handle: string;
133
+ handleConnected: string;
134
+ mandatory: string;
135
+ footerContainer: string;
136
136
  };
137
137
 
138
138
  export declare const flowClasses: {
139
- root: "HvFlow-root";
139
+ root: string;
140
140
  };
141
141
 
142
142
  export declare const flowMinimapClasses: {
143
- root: "HvFlowMinimap-root";
143
+ root: string;
144
144
  };
145
145
 
146
146
  export declare const flowNodeClasses: {
147
- root: "HvFlowNode-root";
148
- title: "HvFlowNode-title";
149
- titleContainer: "HvFlowNode-titleContainer";
150
- mandatory: "HvFlowNode-mandatory";
151
- subtitle: "HvFlowNode-subtitle";
152
- actions: "HvFlowNode-actions";
153
- footerContainer: "HvFlowNode-footerContainer";
154
- handle: "HvFlowNode-handle";
155
- inputContainer: "HvFlowNode-inputContainer";
156
- headerContainer: "HvFlowNode-headerContainer";
157
- inputsTitleContainer: "HvFlowNode-inputsTitleContainer";
158
- outputsTitleContainer: "HvFlowNode-outputsTitleContainer";
159
- contentContainer: "HvFlowNode-contentContainer";
160
- inputsContainer: "HvFlowNode-inputsContainer";
161
- outputsContainer: "HvFlowNode-outputsContainer";
162
- inputGroupContainer: "HvFlowNode-inputGroupContainer";
163
- outputGroupContainer: "HvFlowNode-outputGroupContainer";
164
- outputContainer: "HvFlowNode-outputContainer";
165
- handleConnected: "HvFlowNode-handleConnected";
166
- subtitleContainer: "HvFlowNode-subtitleContainer";
167
- inlineEditRoot: "HvFlowNode-inlineEditRoot";
168
- inlineEditButton: "HvFlowNode-inlineEditButton";
169
- actionsButton: "HvFlowNode-actionsButton";
170
- paramsContainer: "HvFlowNode-paramsContainer";
147
+ root: string;
148
+ title: string;
149
+ titleContainer: string;
150
+ mandatory: string;
151
+ footerContainer: string;
152
+ handle: string;
153
+ inputContainer: string;
154
+ headerContainer: string;
155
+ inputsTitleContainer: string;
156
+ outputsTitleContainer: string;
157
+ contentContainer: string;
158
+ inputsContainer: string;
159
+ outputsContainer: string;
160
+ inputGroupContainer: string;
161
+ outputGroupContainer: string;
162
+ outputContainer: string;
163
+ handleConnected: string;
164
+ subtitleContainer: string;
165
+ subtitle: string;
166
+ inlineEditRoot: string;
167
+ inlineEditButton: string;
168
+ actions: string;
169
+ actionsButton: string;
170
+ paramsContainer: string;
171
171
  };
172
172
 
173
173
  export declare const flowSidebarClasses: {
174
- titleContainer: "HvFlowSidebar-titleContainer";
175
- description: "HvFlowSidebar-description";
176
- contentContainer: "HvFlowSidebar-contentContainer";
177
- drawerPaper: "HvFlowSidebar-drawerPaper";
178
- searchRoot: "HvFlowSidebar-searchRoot";
179
- groupsContainer: "HvFlowSidebar-groupsContainer";
174
+ drawerPaper: string;
175
+ titleContainer: string;
176
+ contentContainer: string;
177
+ description: string;
178
+ searchRoot: string;
179
+ groupsContainer: string;
180
180
  };
181
181
 
182
182
  /**
@@ -334,31 +334,31 @@ export declare const HvDashboardNode: (props: HvDashboardNodeProps) => JSX_2.Ele
334
334
  export declare type HvDashboardNodeClasses = ExtractNames<typeof useClasses_9>;
335
335
 
336
336
  export declare const hvDashboardNodeClasses: {
337
- root: "HvDashboardNode-root";
338
- title: "HvDashboardNode-title";
339
- titleContainer: "HvDashboardNode-titleContainer";
340
- mandatory: "HvDashboardNode-mandatory";
341
- subtitle: "HvDashboardNode-subtitle";
342
- actions: "HvDashboardNode-actions";
343
- empty: "HvDashboardNode-empty";
344
- footerContainer: "HvDashboardNode-footerContainer";
345
- handle: "HvDashboardNode-handle";
346
- inputContainer: "HvDashboardNode-inputContainer";
347
- headerContainer: "HvDashboardNode-headerContainer";
348
- inputsTitleContainer: "HvDashboardNode-inputsTitleContainer";
349
- outputsTitleContainer: "HvDashboardNode-outputsTitleContainer";
350
- contentContainer: "HvDashboardNode-contentContainer";
351
- inputsContainer: "HvDashboardNode-inputsContainer";
352
- outputsContainer: "HvDashboardNode-outputsContainer";
353
- inputGroupContainer: "HvDashboardNode-inputGroupContainer";
354
- outputGroupContainer: "HvDashboardNode-outputGroupContainer";
355
- outputContainer: "HvDashboardNode-outputContainer";
356
- handleConnected: "HvDashboardNode-handleConnected";
357
- subtitleContainer: "HvDashboardNode-subtitleContainer";
358
- inlineEditRoot: "HvDashboardNode-inlineEditRoot";
359
- inlineEditButton: "HvDashboardNode-inlineEditButton";
360
- actionsButton: "HvDashboardNode-actionsButton";
361
- paramsContainer: "HvDashboardNode-paramsContainer";
337
+ root: string;
338
+ title: string;
339
+ titleContainer: string;
340
+ mandatory: string;
341
+ subtitle: string;
342
+ actions: string;
343
+ footerContainer: string;
344
+ handle: string;
345
+ inputContainer: string;
346
+ headerContainer: string;
347
+ inputsTitleContainer: string;
348
+ outputsTitleContainer: string;
349
+ contentContainer: string;
350
+ inputsContainer: string;
351
+ outputsContainer: string;
352
+ inputGroupContainer: string;
353
+ outputGroupContainer: string;
354
+ outputContainer: string;
355
+ handleConnected: string;
356
+ subtitleContainer: string;
357
+ inlineEditRoot: string;
358
+ inlineEditButton: string;
359
+ actionsButton: string;
360
+ paramsContainer: string;
361
+ empty: string;
362
362
  };
363
363
 
364
364
  export declare interface HvDashboardNodeProps extends HvFlowNodeProps, Pick<HvDialogProps, "open" | "onClose">, Pick<HvDashboardProps, "layout"> {
@@ -902,166 +902,162 @@ export declare interface HvWizardTitleProps extends HvBaseProps {
902
902
  }
903
903
 
904
904
  export declare const stepNavigationClasses: {
905
- root: "HvStepNavigation-root";
906
- separator: "HvStepNavigation-separator";
907
- li: "HvStepNavigation-li";
908
- ol: "HvStepNavigation-ol";
909
- titles: "HvStepNavigation-titles";
905
+ root: string;
906
+ titles: string;
907
+ ol: string;
908
+ li: string;
909
+ separator: string;
910
910
  };
911
911
 
912
912
  declare const useClasses: (classesProp?: Partial<Record<"container" | "root" | "disabled" | "button" | "expanded" | "heading" | "fullWidth" | "textOnlyLabel", string>>, addStatic?: boolean) => {
913
- classes: {
914
- container: string;
913
+ readonly classes: {
915
914
  root: string;
916
- disabled: string;
917
- button: string;
918
915
  expanded: string;
919
- heading: string;
920
916
  fullWidth: string;
917
+ heading: string;
918
+ button: string;
921
919
  textOnlyLabel: string;
920
+ container: string;
921
+ disabled: string;
922
922
  };
923
- css: any;
924
- cx: (...args: any) => string;
923
+ readonly css: any;
924
+ readonly cx: (...args: any) => string;
925
925
  };
926
926
 
927
927
  declare const useClasses_10: (classesProp?: Partial<Record<"root" | "separator" | "li" | "ol" | "titles", string>>, addStatic?: boolean) => {
928
- classes: {
928
+ readonly classes: {
929
929
  root: string;
930
- separator: string;
931
- li: string;
932
- ol: string;
933
930
  titles: string;
931
+ ol: string;
932
+ li: string;
933
+ separator: string;
934
934
  };
935
- css: any;
936
- cx: (...args: any) => string;
935
+ readonly css: any;
936
+ readonly cx: (...args: any) => string;
937
937
  };
938
938
 
939
939
  declare const useClasses_11: (classesProp?: Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "root" | "ghost" | "avatar" | "ghostDisabled" | "notCurrent", string>>, addStatic?: boolean) => {
940
- classes: {
940
+ readonly classes: {
941
+ root: string;
942
+ ghost: string;
943
+ ghostDisabled: string;
944
+ notCurrent: string;
941
945
  xs: string;
942
946
  sm: string;
943
947
  md: string;
944
948
  lg: string;
945
949
  xl: string;
946
- root: string;
947
- ghost: string;
948
950
  avatar: string;
949
- ghostDisabled: string;
950
- notCurrent: string;
951
951
  };
952
- css: any;
953
- cx: (...args: any) => string;
952
+ readonly css: any;
953
+ readonly cx: (...args: any) => string;
954
954
  };
955
955
 
956
956
  declare const useClasses_12: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
957
- classes: {
957
+ readonly classes: {
958
958
  root: string;
959
959
  };
960
- css: any;
961
- cx: (...args: any) => string;
960
+ readonly css: any;
961
+ readonly cx: (...args: any) => string;
962
962
  };
963
963
 
964
964
  declare const useClasses_13: (classesProp?: Partial<Record<"actionsContainer" | "buttonWidth" | "buttonsContainer" | "buttonSpacing", string>>, addStatic?: boolean) => {
965
- classes: {
965
+ readonly classes: {
966
966
  actionsContainer: string;
967
967
  buttonWidth: string;
968
968
  buttonsContainer: string;
969
969
  buttonSpacing: string;
970
970
  };
971
- css: any;
972
- cx: (...args: any) => string;
971
+ readonly css: any;
972
+ readonly cx: (...args: any) => string;
973
973
  };
974
974
 
975
975
  declare const useClasses_14: (classesProp?: Partial<Record<"titleContainer" | "messageContainer" | "headerContainer" | "buttonWidth" | "rootSummaryButton" | "stepContainer", string>>, addStatic?: boolean) => {
976
- classes: {
977
- titleContainer: string;
976
+ readonly classes: {
978
977
  messageContainer: string;
979
- headerContainer: string;
978
+ titleContainer: string;
980
979
  buttonWidth: string;
981
980
  rootSummaryButton: string;
981
+ headerContainer: string;
982
982
  stepContainer: string;
983
983
  };
984
- css: any;
985
- cx: (...args: any) => string;
984
+ readonly css: any;
985
+ readonly cx: (...args: any) => string;
986
986
  };
987
987
 
988
988
  declare const useClasses_15: (classesProp?: Partial<Record<"root" | "paper" | "closeButton", string>>, addStatic?: boolean) => {
989
- classes: {
989
+ readonly classes: {
990
990
  root: string;
991
991
  paper: string;
992
992
  closeButton: string;
993
993
  };
994
- css: any;
995
- cx: (...args: any) => string;
994
+ readonly css: any;
995
+ readonly cx: (...args: any) => string;
996
996
  };
997
997
 
998
998
  declare const useClasses_16: (classesProp?: Partial<Record<"contentContainer" | "fixedHeight" | "summaryRef" | "summarySticky" | "summaryContainer", string>>, addStatic?: boolean) => {
999
- classes: {
999
+ readonly classes: {
1000
1000
  contentContainer: string;
1001
1001
  fixedHeight: string;
1002
1002
  summaryRef: string;
1003
1003
  summarySticky: string;
1004
1004
  summaryContainer: string;
1005
1005
  };
1006
- css: any;
1007
- cx: (...args: any) => string;
1006
+ readonly css: any;
1007
+ readonly cx: (...args: any) => string;
1008
1008
  };
1009
1009
 
1010
1010
  declare const useClasses_2: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
1011
- classes: {
1011
+ readonly classes: {
1012
1012
  root: string;
1013
1013
  };
1014
- css: any;
1015
- cx: (...args: any) => string;
1014
+ readonly css: any;
1015
+ readonly cx: (...args: any) => string;
1016
1016
  };
1017
1017
 
1018
1018
  declare const useClasses_3: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
1019
- classes: {
1019
+ readonly classes: {
1020
1020
  root: string;
1021
1021
  };
1022
- css: any;
1023
- cx: (...args: any) => string;
1022
+ readonly css: any;
1023
+ readonly cx: (...args: any) => string;
1024
1024
  };
1025
1025
 
1026
1026
  declare const useClasses_4: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
1027
- classes: {
1027
+ readonly classes: {
1028
1028
  root: string;
1029
1029
  };
1030
- css: any;
1031
- cx: (...args: any) => string;
1030
+ readonly css: any;
1031
+ readonly cx: (...args: any) => string;
1032
1032
  };
1033
1033
 
1034
1034
  declare const useClasses_5: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
1035
- classes: {
1035
+ readonly classes: {
1036
1036
  root: string;
1037
1037
  };
1038
- css: any;
1039
- cx: (...args: any) => string;
1038
+ readonly css: any;
1039
+ readonly cx: (...args: any) => string;
1040
1040
  };
1041
1041
 
1042
1042
  declare const useClasses_6: (classesProp?: Partial<Record<"titleContainer" | "description" | "contentContainer" | "drawerPaper" | "searchRoot" | "groupsContainer", string>>, addStatic?: boolean) => {
1043
- classes: {
1043
+ readonly classes: {
1044
+ drawerPaper: string;
1044
1045
  titleContainer: string;
1045
- description: string;
1046
1046
  contentContainer: string;
1047
- drawerPaper: string;
1047
+ description: string;
1048
1048
  searchRoot: string;
1049
1049
  groupsContainer: string;
1050
1050
  };
1051
- css: any;
1052
- cx: (...args: any) => string;
1051
+ readonly css: any;
1052
+ readonly cx: (...args: any) => string;
1053
1053
  };
1054
1054
 
1055
1055
  declare const useClasses_7: (classesProp?: Partial<Record<"root" | "title" | "titleContainer" | "mandatory" | "footerContainer" | "handle" | "inputContainer" | "headerContainer" | "inputsTitleContainer" | "outputsTitleContainer" | "contentContainer" | "inputsContainer" | "outputsContainer" | "inputGroupContainer" | "outputGroupContainer" | "outputContainer" | "handleConnected", string>>, addStatic?: boolean) => {
1056
- classes: {
1056
+ readonly classes: {
1057
1057
  root: string;
1058
- title: string;
1059
- titleContainer: string;
1060
- mandatory: string;
1061
- footerContainer: string;
1062
- handle: string;
1063
- inputContainer: string;
1064
1058
  headerContainer: string;
1059
+ titleContainer: string;
1060
+ title: string;
1065
1061
  inputsTitleContainer: string;
1066
1062
  outputsTitleContainer: string;
1067
1063
  contentContainer: string;
@@ -1069,21 +1065,23 @@ declare const useClasses_7: (classesProp?: Partial<Record<"root" | "title" | "ti
1069
1065
  outputsContainer: string;
1070
1066
  inputGroupContainer: string;
1071
1067
  outputGroupContainer: string;
1068
+ inputContainer: string;
1072
1069
  outputContainer: string;
1070
+ handle: string;
1073
1071
  handleConnected: string;
1072
+ mandatory: string;
1073
+ footerContainer: string;
1074
1074
  };
1075
- css: any;
1076
- cx: (...args: any) => string;
1075
+ readonly css: any;
1076
+ readonly cx: (...args: any) => string;
1077
1077
  };
1078
1078
 
1079
1079
  declare const useClasses_8: (classesProp?: Partial<Record<"root" | "title" | "titleContainer" | "mandatory" | "subtitle" | "actions" | "footerContainer" | "handle" | "inputContainer" | "headerContainer" | "inputsTitleContainer" | "outputsTitleContainer" | "contentContainer" | "inputsContainer" | "outputsContainer" | "inputGroupContainer" | "outputGroupContainer" | "outputContainer" | "handleConnected" | "subtitleContainer" | "inlineEditRoot" | "inlineEditButton" | "actionsButton" | "paramsContainer", string>>, addStatic?: boolean) => {
1080
- classes: {
1080
+ readonly classes: {
1081
1081
  root: string;
1082
1082
  title: string;
1083
1083
  titleContainer: string;
1084
1084
  mandatory: string;
1085
- subtitle: string;
1086
- actions: string;
1087
1085
  footerContainer: string;
1088
1086
  handle: string;
1089
1087
  inputContainer: string;
@@ -1098,24 +1096,25 @@ declare const useClasses_8: (classesProp?: Partial<Record<"root" | "title" | "ti
1098
1096
  outputContainer: string;
1099
1097
  handleConnected: string;
1100
1098
  subtitleContainer: string;
1099
+ subtitle: string;
1101
1100
  inlineEditRoot: string;
1102
1101
  inlineEditButton: string;
1102
+ actions: string;
1103
1103
  actionsButton: string;
1104
1104
  paramsContainer: string;
1105
1105
  };
1106
- css: any;
1107
- cx: (...args: any) => string;
1106
+ readonly css: any;
1107
+ readonly cx: (...args: any) => string;
1108
1108
  };
1109
1109
 
1110
1110
  declare const useClasses_9: (classesProp?: Partial<Record<"root" | "title" | "titleContainer" | "mandatory" | "subtitle" | "actions" | "empty" | "footerContainer" | "handle" | "inputContainer" | "headerContainer" | "inputsTitleContainer" | "outputsTitleContainer" | "contentContainer" | "inputsContainer" | "outputsContainer" | "inputGroupContainer" | "outputGroupContainer" | "outputContainer" | "handleConnected" | "subtitleContainer" | "inlineEditRoot" | "inlineEditButton" | "actionsButton" | "paramsContainer", string>>, addStatic?: boolean) => {
1111
- classes: {
1111
+ readonly classes: {
1112
1112
  root: string;
1113
1113
  title: string;
1114
1114
  titleContainer: string;
1115
1115
  mandatory: string;
1116
1116
  subtitle: string;
1117
1117
  actions: string;
1118
- empty: string;
1119
1118
  footerContainer: string;
1120
1119
  handle: string;
1121
1120
  inputContainer: string;
@@ -1134,9 +1133,10 @@ declare const useClasses_9: (classesProp?: Partial<Record<"root" | "title" | "ti
1134
1133
  inlineEditButton: string;
1135
1134
  actionsButton: string;
1136
1135
  paramsContainer: string;
1136
+ empty: string;
1137
1137
  };
1138
- css: any;
1139
- cx: (...args: any) => string;
1138
+ readonly css: any;
1139
+ readonly cx: (...args: any) => string;
1140
1140
  };
1141
1141
 
1142
1142
  export declare const useFlowContext: () => HvFlowContextValue<string>;
@@ -1488,37 +1488,37 @@ export declare function useNodeMetaRegistry(): {
1488
1488
  };
1489
1489
 
1490
1490
  export declare const wizardActionsClasses: {
1491
- actionsContainer: "HvWizardActions-actionsContainer";
1492
- buttonWidth: "HvWizardActions-buttonWidth";
1493
- buttonsContainer: "HvWizardActions-buttonsContainer";
1494
- buttonSpacing: "HvWizardActions-buttonSpacing";
1491
+ actionsContainer: string;
1492
+ buttonWidth: string;
1493
+ buttonsContainer: string;
1494
+ buttonSpacing: string;
1495
1495
  };
1496
1496
 
1497
1497
  export declare const wizardClasses: {
1498
- root: "HvWizard-root";
1498
+ root: string;
1499
1499
  };
1500
1500
 
1501
1501
  export declare const wizardContainerClasses: {
1502
- root: "HvWizardContainer-root";
1503
- paper: "HvWizardContainer-paper";
1504
- closeButton: "HvWizardContainer-closeButton";
1502
+ root: string;
1503
+ paper: string;
1504
+ closeButton: string;
1505
1505
  };
1506
1506
 
1507
1507
  export declare const wizardContentClasses: {
1508
- contentContainer: "HvWizardContent-contentContainer";
1509
- fixedHeight: "HvWizardContent-fixedHeight";
1510
- summaryRef: "HvWizardContent-summaryRef";
1511
- summarySticky: "HvWizardContent-summarySticky";
1512
- summaryContainer: "HvWizardContent-summaryContainer";
1508
+ contentContainer: string;
1509
+ fixedHeight: string;
1510
+ summaryRef: string;
1511
+ summarySticky: string;
1512
+ summaryContainer: string;
1513
1513
  };
1514
1514
 
1515
1515
  export declare const wizardTitleClasses: {
1516
- titleContainer: "HvWizardTitle-titleContainer";
1517
- messageContainer: "HvWizardTitle-messageContainer";
1518
- headerContainer: "HvWizardTitle-headerContainer";
1519
- buttonWidth: "HvWizardTitle-buttonWidth";
1520
- rootSummaryButton: "HvWizardTitle-rootSummaryButton";
1521
- stepContainer: "HvWizardTitle-stepContainer";
1516
+ messageContainer: string;
1517
+ titleContainer: string;
1518
+ buttonWidth: string;
1519
+ rootSummaryButton: string;
1520
+ headerContainer: string;
1521
+ stepContainer: string;
1522
1522
  };
1523
1523
 
1524
1524
  export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/uikit-react-lab",
3
- "version": "5.40.6",
3
+ "version": "5.40.8",
4
4
  "private": false,
5
5
  "author": "Hitachi Vantara UI Kit Team",
6
6
  "description": "Contributed React components for the NEXT UI Kit.",
@@ -15,7 +15,7 @@
15
15
  ],
16
16
  "repository": {
17
17
  "type": "git",
18
- "url": "https://github.com/lumada-design/hv-uikit-react.git",
18
+ "url": "git+https://github.com/lumada-design/hv-uikit-react.git",
19
19
  "directory": "packages/lab"
20
20
  },
21
21
  "license": "Apache-2.0",
@@ -33,10 +33,10 @@
33
33
  "@dnd-kit/core": "^6.1.0",
34
34
  "@dnd-kit/modifiers": "^6.0.1",
35
35
  "@emotion/css": "^11.11.0",
36
- "@hitachivantara/uikit-react-core": "^5.73.2",
37
- "@hitachivantara/uikit-react-icons": "^5.12.1",
38
- "@hitachivantara/uikit-react-utils": "^0.2.6",
39
- "@hitachivantara/uikit-styles": "^5.34.1",
36
+ "@hitachivantara/uikit-react-core": "^5.75.0",
37
+ "@hitachivantara/uikit-react-icons": "^5.12.3",
38
+ "@hitachivantara/uikit-react-utils": "^0.2.8",
39
+ "@hitachivantara/uikit-styles": "^5.35.0",
40
40
  "@mui/base": "^5.0.0-beta.40",
41
41
  "@types/react-grid-layout": "^1.3.5",
42
42
  "react-grid-layout": "^1.4.4",
@@ -52,7 +52,7 @@
52
52
  "access": "public",
53
53
  "directory": "package"
54
54
  },
55
- "gitHead": "a3f960a4d21b27d7d7f471cffe09922ccedeef07",
55
+ "gitHead": "aa5244d3de7afa8083e492d2df7ac2891e6bb657",
56
56
  "exports": {
57
57
  ".": {
58
58
  "types": "./dist/types/index.d.ts",