impaktapps-ui-builder 1.0.80 → 1.0.81
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/package.json
CHANGED
|
@@ -92,11 +92,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
92
92
|
functionsProvider: funcParams.functionsProvider,
|
|
93
93
|
serviceHolder: this, eventGroups, formDataHolder
|
|
94
94
|
}
|
|
95
|
-
|
|
96
|
-
config: {}, componentName: "",
|
|
97
|
-
store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
|
|
98
|
-
serviceHolder: this, eventGroups, formDataHolder: {}
|
|
99
|
-
})
|
|
95
|
+
|
|
100
96
|
funcParams.store.setSchema(
|
|
101
97
|
(pre: any) => {
|
|
102
98
|
return {
|
|
@@ -105,6 +101,12 @@ export default (funcParams: funcParamsProps) => {
|
|
|
105
101
|
}
|
|
106
102
|
}
|
|
107
103
|
)
|
|
104
|
+
await executeRefreshHandler({
|
|
105
|
+
config: {}, componentName: "",
|
|
106
|
+
store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
|
|
107
|
+
serviceHolder: this, eventGroups, formDataHolder: {}
|
|
108
|
+
})
|
|
109
|
+
|
|
108
110
|
uiSchema.elements.push(notifyUiSchema);
|
|
109
111
|
funcParams.store.setUiSchema(uiSchema);
|
|
110
112
|
},
|