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.
package/package.json
CHANGED
|
@@ -130,10 +130,11 @@ export default (funcParams: funcParamsProps) => {
|
|
|
130
130
|
});
|
|
131
131
|
},
|
|
132
132
|
onClick: async function () {
|
|
133
|
-
alert("Loading");
|
|
134
|
-
|
|
133
|
+
// alert("Loading");
|
|
134
|
+
funcParams.dynamicData(true);
|
|
135
135
|
await this.callHandler("onClick");
|
|
136
|
-
alert("end");
|
|
136
|
+
// alert("end");
|
|
137
|
+
funcParams.dynamicData(true);
|
|
137
138
|
},
|
|
138
139
|
onFileDownload: async function () {
|
|
139
140
|
await this.callHandler("onDownload");
|
|
@@ -163,7 +164,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
163
164
|
},
|
|
164
165
|
onChange: async function () {
|
|
165
166
|
if (eventGroups.onChange) {
|
|
166
|
-
|
|
167
|
+
funcParams.dynamicData(true);
|
|
167
168
|
const ChangeEventsKeysArray = Object.keys(eventGroups.onChange);
|
|
168
169
|
await Promise.all(
|
|
169
170
|
ChangeEventsKeysArray.map(async (componentName: string) => {
|
|
@@ -177,7 +178,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
177
178
|
}
|
|
178
179
|
})
|
|
179
180
|
);
|
|
180
|
-
|
|
181
|
+
funcParams.dynamicData(false);
|
|
181
182
|
}
|
|
182
183
|
},
|
|
183
184
|
updateConfigApiBody: async function (paramValue, apiBody) {
|