impaktapps-ui-builder 0.0.595 → 0.0.596

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.595",
3
+ "version": "0.0.596",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -203,6 +203,16 @@ export default (funcParams: funcParamsProps) => {
203
203
  }
204
204
  );
205
205
  const schema = pageData?.schema ?? { type: "object", properties: {} };
206
+ funcParams.store.setSchema(
207
+ (pre: any) => {
208
+ return {
209
+ ...schema, properties:
210
+ { ...schema.properties, ...pre.properties, }
211
+ }
212
+ }
213
+ )
214
+ uiSchema.elements.push(notifyUiSchema);
215
+ funcParams.store.setUiSchema(uiSchema);
206
216
  eventGroups = {}
207
217
  eventGroups = extractEvents(config);
208
218
  executeEventsParameters = {
@@ -216,16 +226,7 @@ export default (funcParams: funcParamsProps) => {
216
226
  store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
217
227
  serviceHolder: this, eventGroups, formDataHolder
218
228
  })
219
- funcParams.store.setSchema(
220
- (pre: any) => {
221
- return {
222
- ...schema, properties:
223
- { ...schema.properties, ...pre.properties, }
224
- }
225
- }
226
- )
227
- uiSchema.elements.push(notifyUiSchema);
228
- funcParams.store.setUiSchema(uiSchema);
229
+
229
230
  },
230
231
  onCellRenderer: (cellParams) => {
231
232
  if (eventGroups.onCellRenderer) {