impaktapps-ui-builder 1.0.117 → 1.0.118

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.
@@ -10507,23 +10507,14 @@ var service = (funcParams) => {
10507
10507
  if (((_b = eventGroups == null ? void 0 : eventGroups[eventType]) == null ? void 0 : _b[path]) !== void 0) {
10508
10508
  (_c = eventGroups == null ? void 0 : eventGroups[eventType]) == null ? void 0 : _c[path].map((eventConfig) => {
10509
10509
  executeEventsParameters.store.functionParameters = functionParameters;
10510
- if (eventConfig.Handler === "refresh") {
10511
- executeEvents({
10512
- ...executeEventsParameters,
10513
- config: eventConfig,
10514
- componentName: path,
10515
- formDataHolder
10516
- }).then((res) => {
10517
- if (!lodash.exports.isEmpty(formDataHolder)) {
10518
- funcParams.store.setFormdata((pre) => ({ ...pre, ...formDataHolder }));
10519
- }
10520
- });
10521
- } else {
10522
- executeEvents({
10523
- ...executeEventsParameters,
10524
- config: eventConfig,
10525
- componentName: path
10526
- });
10510
+ executeEvents({
10511
+ ...executeEventsParameters,
10512
+ config: eventConfig,
10513
+ componentName: path,
10514
+ formDataHolder
10515
+ });
10516
+ if (!lodash.exports.isEmpty(formDataHolder)) {
10517
+ funcParams.store.setFormdata((pre) => ({ ...pre, ...formDataHolder }));
10527
10518
  }
10528
10519
  });
10529
10520
  }