impaktapps-ui-builder 0.0.397 → 0.0.399
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 -6
- 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/services/event.d.ts +1 -1
- package/dist/src/impaktapps-ui-builder/runtime/services/interface.d.ts +1 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/services/event.ts +6 -8
- package/src/impaktapps-ui-builder/runtime/services/interface.ts +2 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +6 -4
|
@@ -8284,11 +8284,9 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
|
|
|
8284
8284
|
}
|
|
8285
8285
|
}
|
|
8286
8286
|
if (functionsName) {
|
|
8287
|
-
schema2.inBuiltFunctionType.oneOf = [
|
|
8288
|
-
schema2.properties.inBuiltFunctionType.oneOf
|
|
8289
|
-
|
|
8290
|
-
...functionsName
|
|
8291
|
-
]
|
|
8287
|
+
schema2.properties.inBuiltFunctionType.oneOf = [
|
|
8288
|
+
...schema2.properties.inBuiltFunctionType.oneOf,
|
|
8289
|
+
...functionsName
|
|
8292
8290
|
];
|
|
8293
8291
|
}
|
|
8294
8292
|
store22.setSchema(schema2);
|
|
@@ -8636,7 +8634,8 @@ var service = (funcParams) => {
|
|
|
8636
8634
|
userValue: funcParams.userValue,
|
|
8637
8635
|
service: funcParams.service,
|
|
8638
8636
|
serviceHolder: { downloadFile: downloadFile$1, download: doDownload },
|
|
8639
|
-
eventGroups
|
|
8637
|
+
eventGroups,
|
|
8638
|
+
functionsProvider: funcParams.functionsProvider
|
|
8640
8639
|
};
|
|
8641
8640
|
return {
|
|
8642
8641
|
setPage: async function() {
|
|
@@ -8648,6 +8647,7 @@ var service = (funcParams) => {
|
|
|
8648
8647
|
dynamicData: funcParams.dynamicData,
|
|
8649
8648
|
userValue: funcParams.userValue,
|
|
8650
8649
|
service: funcParams.service,
|
|
8650
|
+
functionsProvider: funcParams.functionsProvider,
|
|
8651
8651
|
serviceHolder: this,
|
|
8652
8652
|
eventGroups
|
|
8653
8653
|
};
|