impaktapps-ui-builder 0.0.393-alpha.2 → 0.0.393-alpha.3
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.
|
@@ -8612,8 +8612,23 @@ var service = (funcParams) => {
|
|
|
8612
8612
|
serviceHolder: this,
|
|
8613
8613
|
eventGroups
|
|
8614
8614
|
};
|
|
8615
|
+
await executeRefreshHandler({
|
|
8616
|
+
config: {},
|
|
8617
|
+
componentName: "",
|
|
8618
|
+
store: funcParams.store,
|
|
8619
|
+
dynamicData: funcParams.dynamicData,
|
|
8620
|
+
userValue: funcParams.userValue,
|
|
8621
|
+
service: funcParams.service,
|
|
8622
|
+
serviceHolder: this,
|
|
8623
|
+
eventGroups
|
|
8624
|
+
});
|
|
8615
8625
|
funcParams.store.setSchema(
|
|
8616
|
-
|
|
8626
|
+
(pre) => {
|
|
8627
|
+
return {
|
|
8628
|
+
...funcParams.schema,
|
|
8629
|
+
properties: { ...funcParams.schema.properties, ...pre.properties }
|
|
8630
|
+
};
|
|
8631
|
+
}
|
|
8617
8632
|
);
|
|
8618
8633
|
funcParams.uiSchema.elements.push(notifyUiSchema);
|
|
8619
8634
|
funcParams.store.setUiSchema(funcParams.uiSchema);
|