impaktapps-ui-builder 1.0.57 → 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.
@@ -8966,14 +8966,14 @@ const EventSchema = {
8966
8966
  { title: "Start", const: "onStart" },
8967
8967
  { title: "Cell Render", const: "onCellRenderer" },
8968
8968
  { title: "Upload", const: "onUpload" },
8969
+ { title: "FileDelete", const: "onFileDelete" },
8970
+ { title: "Download", const: "onDownload" },
8969
8971
  { title: "Back", const: "onBack" },
8970
8972
  { title: "Next", const: "onNext" },
8971
8973
  { title: "Row Movement", const: "onRowMovement" },
8972
8974
  { title: "Download", const: "onDownload" },
8973
8975
  { title: "Fail", const: "Fail" },
8974
- { title: "Key Down", const: "onKeyDown" },
8975
- { title: "PopUP NO Event", const: "onDeletePopupNo" },
8976
- { title: "PopUP Yes Event", const: "onDeletePopupYes" }
8976
+ { title: "Key Down", const: "onKeyDown" }
8977
8977
  ]
8978
8978
  },
8979
8979
  Handler: {
@@ -10500,11 +10500,8 @@ var service = (funcParams) => {
10500
10500
  onKeyDown: function() {
10501
10501
  this.callHandler("onKeyDown");
10502
10502
  },
10503
- onDeletePopupNo: function() {
10504
- this.callHandler("onDeletePopupNo");
10505
- },
10506
- onDeletePopupYes: function() {
10507
- this.callHandler("onDeletePopupYes");
10503
+ onFileDelete: async function() {
10504
+ this.callHandler("onFileDelete");
10508
10505
  },
10509
10506
  onMount: function() {
10510
10507
  this.callHandler("onMount");