impaktapps-ui-builder 1.0.242 → 1.0.244

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.
@@ -9447,6 +9447,7 @@ const EventSchema = {
9447
9447
  { title: "Row Movement", const: "onRowMovement" },
9448
9448
  { title: "Download", const: "onDownload" },
9449
9449
  { title: "Fail", const: "Fail" },
9450
+ { title: "onClose", const: "onClose" },
9450
9451
  { title: "Key Down", const: "onKeyDown" },
9451
9452
  { title: "Set Style", const: "setStyle" }
9452
9453
  ]
@@ -10882,6 +10883,9 @@ var service = (funcParams) => {
10882
10883
  onFileDelete: async function() {
10883
10884
  this.callHandler("onFileDelete");
10884
10885
  },
10886
+ onClose: function() {
10887
+ this.callHandler("onClose");
10888
+ },
10885
10889
  onMount: function() {
10886
10890
  this.callHandler("onMount");
10887
10891
  },
@@ -12721,7 +12725,7 @@ const PopUP = {
12721
12725
  },
12722
12726
  main: {
12723
12727
  label: "PopUp",
12724
- onClick: "onClick",
12728
+ onClose: "onClose",
12725
12729
  fullScreen: false,
12726
12730
  fullWidth: false,
12727
12731
  maxWidth: false,