next-helios-fe 1.8.50 → 1.8.52
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/index.js +1 -1
- package/package.json +1 -1
- package/src/components/content-container/wizard/index.tsx +8 -0
- package/src/components/form/input/date.tsx +1 -0
- package/src/components/form/input/time.tsx +1 -0
- package/src/components/form/other/multipleSelect.tsx +1 -0
- package/src/components/form/other/phoneNumber.tsx +1 -0
- package/src/components/form/other/select.tsx +1 -0
package/package.json
CHANGED
@@ -221,6 +221,10 @@ export const Wizard: WizardComponent = ({
|
|
221
221
|
});
|
222
222
|
return prev - 1;
|
223
223
|
});
|
224
|
+
} else {
|
225
|
+
setActiveTab((prev) => {
|
226
|
+
return prev - 1;
|
227
|
+
});
|
224
228
|
}
|
225
229
|
}}
|
226
230
|
>
|
@@ -261,6 +265,10 @@ export const Wizard: WizardComponent = ({
|
|
261
265
|
});
|
262
266
|
return prev + 1;
|
263
267
|
});
|
268
|
+
} else {
|
269
|
+
setActiveTab((prev) => {
|
270
|
+
return prev + 1;
|
271
|
+
});
|
264
272
|
}
|
265
273
|
}
|
266
274
|
}}
|