impaktapps-ui-builder 0.0.101-alpha.66 → 0.0.101-alpha.68
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/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.d.ts +4 -1
- package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +4 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +0 -20
- package/src/impaktapps-ui-builder/builder/services/event.ts +1 -1
|
@@ -8917,7 +8917,7 @@ const EventSchema = {
|
|
|
8917
8917
|
disabled: true
|
|
8918
8918
|
},
|
|
8919
8919
|
pageName: {
|
|
8920
|
-
path: []
|
|
8920
|
+
path: [{ label: "defaultLabel", path: "defaultPath" }]
|
|
8921
8921
|
}
|
|
8922
8922
|
},
|
|
8923
8923
|
required: ["eventType", "Handler"]
|
|
@@ -9756,7 +9756,7 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
|
|
|
9756
9756
|
});
|
|
9757
9757
|
}
|
|
9758
9758
|
console.log("pathArray>>", pathArray);
|
|
9759
|
-
schema2.properties.pageName.path = pathArray;
|
|
9759
|
+
schema2.properties.pageName.path = _.cloneDeep(pathArray);
|
|
9760
9760
|
return schema2;
|
|
9761
9761
|
},
|
|
9762
9762
|
okHandler: () => okHandler(store2),
|