impaktapps-ui-builder 0.0.382-alpha.325 → 0.0.382-alpha.326
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.
|
@@ -9145,6 +9145,9 @@ var service = (funcParams) => {
|
|
|
9145
9145
|
serviceHolder: { downloadFile: downloadFile$1, download: doDownload },
|
|
9146
9146
|
eventGroups
|
|
9147
9147
|
};
|
|
9148
|
+
const handleButtonClick = lodash.exports.debounce(async function() {
|
|
9149
|
+
await this.callHandler("onClick");
|
|
9150
|
+
}, 300);
|
|
9148
9151
|
return {
|
|
9149
9152
|
setPage: async function() {
|
|
9150
9153
|
funcParams.store.setFormdata({});
|
|
@@ -9175,7 +9178,7 @@ var service = (funcParams) => {
|
|
|
9175
9178
|
});
|
|
9176
9179
|
},
|
|
9177
9180
|
onClick: async function() {
|
|
9178
|
-
|
|
9181
|
+
handleButtonClick();
|
|
9179
9182
|
},
|
|
9180
9183
|
onFileDownload: async function() {
|
|
9181
9184
|
await this.callHandler("onDownload");
|