impaktapps-ui-builder 1.0.484 → 1.0.485

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.
@@ -8264,7 +8264,6 @@ const buildPropertiesSection = function(type) {
8264
8264
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8265
8265
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
8266
8266
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
8267
- getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
8268
8267
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
8269
8268
  getInputField("defaultColumnSize", "Default Column Size"),
8270
8269
  ,
@@ -10967,14 +10966,15 @@ var service = (funcParams) => {
10967
10966
  return response == null ? void 0 : response.data;
10968
10967
  },
10969
10968
  onPaginationChange: async function(paginationValues) {
10970
- var _a, _b;
10969
+ var _a;
10971
10970
  const apiBody = [
10972
10971
  { key: "size", value: paginationValues.pagination.pageSize },
10973
10972
  { key: "pageIndex", value: paginationValues.pagination.pageIndex },
10974
10973
  { key: "sorting", value: paginationValues.sorting || [] },
10975
10974
  { key: "filters", value: paginationValues.tableColumnConfig || [] },
10976
10975
  { key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
10977
- { key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] }
10976
+ { key: "parentIds", value: paginationValues.parentIds },
10977
+ { key: "isExpandAll", value: paginationValues.isExpandAll }
10978
10978
  ];
10979
10979
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
10980
10980
  return response == null ? void 0 : response.data;
@@ -11808,9 +11808,6 @@ const buildTable = (config2, componentScope2) => {
11808
11808
  if (config2.paginateExpandedRows) {
11809
11809
  table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
11810
11810
  }
11811
- if (config2.treeStructure) {
11812
- table.config.main.treeStructure = config2.treeStructure === "YES" ? "flatTreeMap" : false;
11813
- }
11814
11811
  if (config2.SelectionAvailable) {
11815
11812
  table.config.main.Selection = config2.SelectionAvailable === "YES" ? true : false;
11816
11813
  }