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

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.
@@ -9198,7 +9198,9 @@ var service = (funcParams) => {
9198
9198
  });
9199
9199
  },
9200
9200
  onClick: async function() {
9201
+ funcParams.dynamicData(true);
9201
9202
  await this.callHandler("onClick");
9203
+ funcParams.dynamicData(true);
9202
9204
  },
9203
9205
  onFileDownload: async function() {
9204
9206
  await this.callHandler("onDownload");
@@ -9229,6 +9231,7 @@ var service = (funcParams) => {
9229
9231
  },
9230
9232
  onChange: async function() {
9231
9233
  if (eventGroups.onChange) {
9234
+ funcParams.dynamicData(true);
9232
9235
  const ChangeEventsKeysArray = Object.keys(eventGroups.onChange);
9233
9236
  await Promise.all(
9234
9237
  ChangeEventsKeysArray.map(async (componentName) => {
@@ -9240,6 +9243,7 @@ var service = (funcParams) => {
9240
9243
  }
9241
9244
  })
9242
9245
  );
9246
+ funcParams.dynamicData(false);
9243
9247
  }
9244
9248
  },
9245
9249
  updateConfigApiBody: async function(paramValue, apiBody) {
@@ -9293,12 +9297,11 @@ var service = (funcParams) => {
9293
9297
  if (((_b = eventGroups == null ? void 0 : eventGroups[eventType]) == null ? void 0 : _b[path]) !== void 0) {
9294
9298
  for (const eventConfig of (_c = eventGroups == null ? void 0 : eventGroups[eventType]) == null ? void 0 : _c[path]) {
9295
9299
  executeEventsParameters.store.functionParameters = functionParameters;
9296
- const res = await executeEvents({
9300
+ await executeEvents({
9297
9301
  ...executeEventsParameters,
9298
9302
  config: eventConfig,
9299
9303
  componentName: path
9300
9304
  });
9301
- console.log("valll", res);
9302
9305
  }
9303
9306
  }
9304
9307
  },