impaktapps-ui-builder 1.0.56 → 1.0.57-alpha.2

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: {
@@ -10329,6 +10329,7 @@ var service = (funcParams) => {
10329
10329
  eventGroups = {};
10330
10330
  pageData = await funcParams.pageDataProvider();
10331
10331
  const config2 = pageData == null ? void 0 : pageData.config;
10332
+ funcParams == null ? void 0 : funcParams.setExternaldata();
10332
10333
  const uiSchema = pageData == null ? void 0 : pageData.uiSchema;
10333
10334
  const event2 = new CustomEvent("pageNameChanged", {
10334
10335
  detail: { pageName: config2.label, hasBackIcon: true }
@@ -10500,11 +10501,8 @@ var service = (funcParams) => {
10500
10501
  onKeyDown: function() {
10501
10502
  this.callHandler("onKeyDown");
10502
10503
  },
10503
- onDeletePopupNo: function() {
10504
- this.callHandler("onDeletePopupNo");
10505
- },
10506
- onDeletePopupYes: function() {
10507
- this.callHandler("onDeletePopupYes");
10504
+ onFileDelete: function() {
10505
+ this.callHandler("onFileDelete");
10508
10506
  },
10509
10507
  onMount: function() {
10510
10508
  this.callHandler("onMount");
@@ -12430,7 +12428,7 @@ const buildSchema = (config2, tableName, isArrayType) => {
12430
12428
  });
12431
12429
  } else {
12432
12430
  config2.elements.map((e, elemInd) => {
12433
- buildSchema(e, config2.name, config2.type === "PopUp");
12431
+ buildSchema(e);
12434
12432
  });
12435
12433
  }
12436
12434
  }