impaktapps-ui-builder 0.0.362 → 0.0.364

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.362",
3
+ "version": "0.0.364",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -28,7 +28,7 @@ export const buildStepper = (config, componentScope) => {
28
28
  stepper.config.main.completeText = config.completeText || "Complete Text";
29
29
  stepper.config.main.orientation = config.orientation || "horizontal";
30
30
  if (config.sectionLabels) {
31
- stepper.config.main.label = config.sectionLabels.map((e, i: number) => {
31
+ stepper.config.main.steps = config.sectionLabels.map((e, i: number) => {
32
32
  return { label: e.label, id: i }
33
33
  });
34
34
  }
@@ -175,7 +175,7 @@ export default (funcParams: funcParamsProps) => {
175
175
  const path = funcParams.dynamicData?.tableButtonPath || funcParams.dynamicData.path.split(".")[0];
176
176
  await this.callHandler("onReset", functionParameters)
177
177
  if (eventGroups?.["onReset"]?.[path] === undefined) {
178
- functionParameters?.handleNext()
178
+ functionParameters?.handleReset()
179
179
  }
180
180
  },
181
181
  callHandler: async function (eventType: string, functionParameters?: any) {