impaktapps-ui-builder 0.0.300 → 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.
|
@@ -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);
|