impaktapps-ui-builder 0.0.382-alpha.332 → 0.0.382-alpha.334
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 +6 -3
- 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/runtime/services/events.d.ts +4 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/runtime/services/events.ts +2 -2
- package/src/impaktapps-ui-builder/runtime/services/service.ts +6 -2
|
@@ -8897,7 +8897,6 @@ const executeEvents = async (params2) => {
|
|
|
8897
8897
|
await executeEvents({ ...params2, config: actionConfig, parentEventOutput: finalResponse });
|
|
8898
8898
|
}
|
|
8899
8899
|
}
|
|
8900
|
-
return finalResponse;
|
|
8901
8900
|
};
|
|
8902
8901
|
async function executeEventsHandler(params2) {
|
|
8903
8902
|
var _a, _b, _c;
|
|
@@ -9095,7 +9094,7 @@ function asyncOperation() {
|
|
|
9095
9094
|
resolve("Operation completed successfully!");
|
|
9096
9095
|
reject(new Error("Operation failed!"));
|
|
9097
9096
|
}
|
|
9098
|
-
},
|
|
9097
|
+
}, 50);
|
|
9099
9098
|
});
|
|
9100
9099
|
}
|
|
9101
9100
|
let compType;
|
|
@@ -9302,7 +9301,11 @@ var service = (funcParams) => {
|
|
|
9302
9301
|
if (((_b = eventGroups == null ? void 0 : eventGroups[eventType]) == null ? void 0 : _b[path]) !== void 0) {
|
|
9303
9302
|
for (const eventConfig of (_c = eventGroups == null ? void 0 : eventGroups[eventType]) == null ? void 0 : _c[path]) {
|
|
9304
9303
|
executeEventsParameters.store.functionParameters = functionParameters;
|
|
9305
|
-
await
|
|
9304
|
+
await executeEvents({
|
|
9305
|
+
...executeEventsParameters,
|
|
9306
|
+
config: eventConfig,
|
|
9307
|
+
componentName: path
|
|
9308
|
+
});
|
|
9306
9309
|
}
|
|
9307
9310
|
}
|
|
9308
9311
|
},
|