impaktapps-ui-builder 1.0.57 → 1.0.58

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,8 +12,7 @@ declare const _default: (funcParams: funcParamsProps) => {
12
12
  onCellRenderer: (cellParams: any) => {};
13
13
  onClick: () => void;
14
14
  onKeyDown: () => void;
15
- onDeletePopupNo: () => void;
16
- onDeletePopupYes: () => void;
15
+ onFileDelete: () => void;
17
16
  onMount: () => void;
18
17
  onFileDownload: () => void;
19
18
  onFileUpload: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.57",
3
+ "version": "1.0.58",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -46,14 +46,16 @@ export const EventSchema = {
46
46
  { title: "Start", const: "onStart" },
47
47
  { title: "Cell Render", const: "onCellRenderer" },
48
48
  { title: "Upload", const: "onUpload" },
49
+ { title: "FileDelete", const: "onFileDelete" },
50
+ { title: "Download", const: "onDownload" },
49
51
  { title: "Back", const: "onBack" },
50
52
  { title: "Next", const: "onNext" },
51
53
  { title: "Row Movement", const: "onRowMovement" },
52
54
  { title: "Download", const: "onDownload" },
53
55
  { title: "Fail", const: "Fail" },
54
56
  { title: "Key Down", const: "onKeyDown" },
55
- { title: "PopUP NO Event", const: "onDeletePopupNo" },
56
- { title: "PopUP Yes Event", const: "onDeletePopupYes" },
57
+
58
+
57
59
  ]
58
60
  },
59
61
  Handler: {
@@ -236,11 +236,8 @@ export default (funcParams: funcParamsProps) => {
236
236
  onKeyDown: function () {
237
237
  this.callHandler("onKeyDown")
238
238
  },
239
- onDeletePopupNo: function () {
240
- this.callHandler("onDeletePopupNo")
241
- },
242
- onDeletePopupYes: function () {
243
- this.callHandler("onDeletePopupYes")
239
+ onFileDelete: function () {
240
+ this.callHandler("onFileDelete")
244
241
  },
245
242
  onMount: function () {
246
243
  this.callHandler("onMount")