impaktapps-ui-builder 0.0.382-alpha.336 → 0.0.382-alpha.337

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.382-alpha.336",
3
+ "version": "0.0.382-alpha.337",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -130,7 +130,10 @@ export default (funcParams: funcParamsProps) => {
130
130
  });
131
131
  },
132
132
  onClick: async function () {
133
+ alert("Loading");
134
+ // funcParams.dynamicData()
133
135
  await this.callHandler("onClick");
136
+ alert("end");
134
137
  },
135
138
  onFileDownload: async function () {
136
139
  await this.callHandler("onDownload");
@@ -160,6 +163,7 @@ export default (funcParams: funcParamsProps) => {
160
163
  },
161
164
  onChange: async function () {
162
165
  if (eventGroups.onChange) {
166
+
163
167
  const ChangeEventsKeysArray = Object.keys(eventGroups.onChange);
164
168
  await Promise.all(
165
169
  ChangeEventsKeysArray.map(async (componentName: string) => {
@@ -173,6 +177,7 @@ export default (funcParams: funcParamsProps) => {
173
177
  }
174
178
  })
175
179
  );
180
+
176
181
  }
177
182
  },
178
183
  updateConfigApiBody: async function (paramValue, apiBody) {
@@ -234,7 +239,7 @@ export default (funcParams: funcParamsProps) => {
234
239
  config: eventConfig,
235
240
  componentName: path
236
241
  })
237
- console.log("valll", res);
242
+ // console.log("valll", res);
238
243
  }
239
244
  }
240
245
  },