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

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: function() {
10504
+ this.callHandler("onFileDelete");
10508
10505
  },
10509
10506
  onMount: function() {
10510
10507
  this.callHandler("onMount");
@@ -11035,6 +11032,9 @@ var Tabsection = {
11035
11032
  const buildTabSection = (config2, componentScope2) => {
11036
11033
  const tab = _.cloneDeep(Tabsection);
11037
11034
  tab.scope = componentScope2;
11035
+ if (config2.style) {
11036
+ tab.config.style = JSON.parse(config2.style);
11037
+ }
11038
11038
  if (config2.lazyLoad) {
11039
11039
  tab.config.main.lazyLoad = config2.lazyLoad === "YES" ? true : false;
11040
11040
  }
@@ -12430,7 +12430,7 @@ const buildSchema = (config2, tableName, isArrayType) => {
12430
12430
  });
12431
12431
  } else {
12432
12432
  config2.elements.map((e, elemInd) => {
12433
- buildSchema(e, config2.name, config2.type === "PopUp");
12433
+ buildSchema(e);
12434
12434
  });
12435
12435
  }
12436
12436
  }