impaktapps-ui-builder 0.0.382-alpha.337 → 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,9 +9198,9 @@ var service = (funcParams) => {
|
|
|
9198
9198
|
});
|
|
9199
9199
|
},
|
|
9200
9200
|
onClick: async function() {
|
|
9201
|
-
|
|
9201
|
+
funcParams.dynamicData(true);
|
|
9202
9202
|
await this.callHandler("onClick");
|
|
9203
|
-
|
|
9203
|
+
funcParams.dynamicData(true);
|
|
9204
9204
|
},
|
|
9205
9205
|
onFileDownload: async function() {
|
|
9206
9206
|
await this.callHandler("onDownload");
|
|
@@ -9231,6 +9231,7 @@ var service = (funcParams) => {
|
|
|
9231
9231
|
},
|
|
9232
9232
|
onChange: async function() {
|
|
9233
9233
|
if (eventGroups.onChange) {
|
|
9234
|
+
funcParams.dynamicData(true);
|
|
9234
9235
|
const ChangeEventsKeysArray = Object.keys(eventGroups.onChange);
|
|
9235
9236
|
await Promise.all(
|
|
9236
9237
|
ChangeEventsKeysArray.map(async (componentName) => {
|
|
@@ -9242,6 +9243,7 @@ var service = (funcParams) => {
|
|
|
9242
9243
|
}
|
|
9243
9244
|
})
|
|
9244
9245
|
);
|
|
9246
|
+
funcParams.dynamicData(false);
|
|
9245
9247
|
}
|
|
9246
9248
|
},
|
|
9247
9249
|
updateConfigApiBody: async function(paramValue, apiBody) {
|