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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.300",
3
+ "version": "0.0.301",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -69,16 +69,25 @@ export default (funcParams: funcParamsProps) => {
69
69
  store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
70
70
  serviceHolder: this, eventGroups
71
71
  }
72
- await executeRefreshHandler(executeEventsParameters)
72
+ await executeRefreshHandler( {
73
+ config: {}, componentName: "",
74
+ store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
75
+ serviceHolder: this, eventGroups
76
+ })
73
77
  funcParams.store.setSchema(
74
- (pre: any) => {
75
- return {
76
- ...funcParams.schema, properties:
77
- { ...funcParams.schema.properties, ...pre.properties, }
78
- }
79
- })
78
+ funcParams.schema
79
+ // (pre: any) => {
80
+ // return {
81
+ // ...funcParams.schema, properties:
82
+ // { ...funcParams.schema.properties, ...pre.properties, }
83
+ // }
84
+ // }
85
+ )
80
86
  funcParams.uiSchema.elements.push(notifyUiSchema);
81
87
  funcParams.store.setUiSchema(funcParams.uiSchema);
88
+
89
+
90
+
82
91
  },
83
92
  onClick: async function () {
84
93
  const path = funcParams.dynamicData?.tableButtonPath || funcParams.dynamicData.path.split(".")[0];