impaktapps-ui-builder 0.0.412-a → 0.0.412-b
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/dist/impaktapps-ui-builder.es.js +6 -3
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +3 -3
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/runtime/services/events.ts +2 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +4 -2
|
@@ -8546,7 +8546,8 @@ function executeRefreshHandler(params2) {
|
|
|
8546
8546
|
return executeEvents({ ...params2, config: compEventConfig, componentName });
|
|
8547
8547
|
}));
|
|
8548
8548
|
})).then(() => {
|
|
8549
|
-
|
|
8549
|
+
const updatedData = _.cloneDeep(params2.store.ctx.core.data);
|
|
8550
|
+
params2.store.setFormdata(updatedData);
|
|
8550
8551
|
});
|
|
8551
8552
|
}
|
|
8552
8553
|
function executeApiRequest(params2) {
|
|
@@ -8883,7 +8884,8 @@ var service = (funcParams) => {
|
|
|
8883
8884
|
}
|
|
8884
8885
|
}
|
|
8885
8886
|
})).then((res) => {
|
|
8886
|
-
|
|
8887
|
+
const updatedData = _.cloneDeep(funcParams.store.ctx.core.data);
|
|
8888
|
+
funcParams.store.setFormdata(updatedData);
|
|
8887
8889
|
});
|
|
8888
8890
|
}
|
|
8889
8891
|
},
|
|
@@ -8947,7 +8949,8 @@ var service = (funcParams) => {
|
|
|
8947
8949
|
componentName: path
|
|
8948
8950
|
});
|
|
8949
8951
|
})).then((res) => {
|
|
8950
|
-
|
|
8952
|
+
const updatedData = _.cloneDeep(funcParams.store.ctx.core.data);
|
|
8953
|
+
funcParams.store.setFormdata(updatedData);
|
|
8951
8954
|
});
|
|
8952
8955
|
}
|
|
8953
8956
|
},
|