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/dist/impaktapps-ui-builder.es.js +2 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildStepper.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
package/package.json
CHANGED
|
@@ -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.
|
|
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?.
|
|
178
|
+
functionParameters?.handleReset()
|
|
179
179
|
}
|
|
180
180
|
},
|
|
181
181
|
callHandler: async function (eventType: string, functionParameters?: any) {
|