impaktapps-ui-builder 1.0.58 → 1.0.59

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.
@@ -12,7 +12,7 @@ declare const _default: (funcParams: funcParamsProps) => {
12
12
  onCellRenderer: (cellParams: any) => {};
13
13
  onClick: () => void;
14
14
  onKeyDown: () => void;
15
- onFileDelete: () => void;
15
+ onFileDelete: () => Promise<void>;
16
16
  onMount: () => void;
17
17
  onFileDownload: () => void;
18
18
  onFileUpload: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -236,7 +236,7 @@ export default (funcParams: funcParamsProps) => {
236
236
  onKeyDown: function () {
237
237
  this.callHandler("onKeyDown")
238
238
  },
239
- onFileDelete: function () {
239
+ onFileDelete: async function () {
240
240
  this.callHandler("onFileDelete")
241
241
  },
242
242
  onMount: function () {