impaktapps-ui-builder 0.0.299 → 0.0.301
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.
|
@@ -8275,7 +8275,7 @@ var service = (funcParams) => {
|
|
|
8275
8275
|
dynamicData: funcParams.dynamicData,
|
|
8276
8276
|
userValue: funcParams.userValue,
|
|
8277
8277
|
service: funcParams.service,
|
|
8278
|
-
serviceHolder:
|
|
8278
|
+
serviceHolder: { downloadFile: downloadFile$1 },
|
|
8279
8279
|
eventGroups
|
|
8280
8280
|
};
|
|
8281
8281
|
return {
|
|
@@ -8291,14 +8291,18 @@ var service = (funcParams) => {
|
|
|
8291
8291
|
serviceHolder: this,
|
|
8292
8292
|
eventGroups
|
|
8293
8293
|
};
|
|
8294
|
-
await executeRefreshHandler(
|
|
8294
|
+
await executeRefreshHandler({
|
|
8295
|
+
config: {},
|
|
8296
|
+
componentName: "",
|
|
8297
|
+
store: funcParams.store,
|
|
8298
|
+
dynamicData: funcParams.dynamicData,
|
|
8299
|
+
userValue: funcParams.userValue,
|
|
8300
|
+
service: funcParams.service,
|
|
8301
|
+
serviceHolder: this,
|
|
8302
|
+
eventGroups
|
|
8303
|
+
});
|
|
8295
8304
|
funcParams.store.setSchema(
|
|
8296
|
-
|
|
8297
|
-
return {
|
|
8298
|
-
...funcParams.schema,
|
|
8299
|
-
properties: { ...funcParams.schema.properties, ...pre.properties }
|
|
8300
|
-
};
|
|
8301
|
-
}
|
|
8305
|
+
funcParams.schema
|
|
8302
8306
|
);
|
|
8303
8307
|
funcParams.uiSchema.elements.push(notifyUiSchema);
|
|
8304
8308
|
funcParams.store.setUiSchema(funcParams.uiSchema);
|