impaktapps-ui-builder 0.0.101-alpha.263 → 0.0.101-alpha.265

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.
@@ -10551,7 +10551,7 @@ var service = (funcParams) => {
10551
10551
  { key: "searchValue", value: param.serachValue },
10552
10552
  { key: "currentValue", value: param.currentValue }
10553
10553
  ];
10554
- const response = await this.callExecuteEvents(param, apiBody);
10554
+ const response = await this.callExecuteEvents(param, apiBody, "onLoad");
10555
10555
  return response == null ? void 0 : response.data;
10556
10556
  }
10557
10557
  },
@@ -11215,6 +11215,7 @@ var Table = {
11215
11215
  main: {
11216
11216
  onMount: "onMount",
11217
11217
  enableExpandAll: true,
11218
+ headerIcons: {},
11218
11219
  allRowData: [],
11219
11220
  downloadAllData: false,
11220
11221
  columns: {
@@ -12620,7 +12621,7 @@ const buildUiSchema = (config2, store2) => {
12620
12621
  }
12621
12622
  if (cellElem.elementType == "tableHeader") {
12622
12623
  const headerElem = buildUiSchema(cellElem, store2);
12623
- tableHeaderElements.push(headerElem);
12624
+ tableHeaderElements.push({ widget: headerElem });
12624
12625
  return false;
12625
12626
  }
12626
12627
  const tableElem = {
@@ -12634,8 +12635,8 @@ const buildUiSchema = (config2, store2) => {
12634
12635
  }
12635
12636
  });
12636
12637
  elements.elements = rowElements;
12637
- elements.config.main.action = tableActionElement;
12638
- elements.config.main.headerIcons = tableHeaderElements;
12638
+ elements.config.action = tableActionElement;
12639
+ elements.config.main.headerIcons.elements = tableHeaderElements;
12639
12640
  } else if (config2.type == "Array") {
12640
12641
  elements.options.detail.elements = config2.elements.map((e, elemInd) => {
12641
12642
  return buildUiSchema(e, store2);