impaktapps-ui-builder 1.0.484 → 1.0.486

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.
@@ -8088,7 +8088,8 @@ const buildPropertiesSection = function(type) {
8088
8088
  getSelectField("variant", "Variant"),
8089
8089
  getInputField("toolTip", "Tooltip"),
8090
8090
  getSelectField("toolTipPosition", "Tooltip Position"),
8091
- emptyBox$1("Radio", { xs: 6, sm: 6, md: 8, lg: 9 }),
8091
+ getSelectField("iconName", "Start Icon"),
8092
+ emptyBox$1("Radio", { xs: 0, sm: 0, md: 0, lg: 6 }),
8092
8093
  getArrayControl("InputFormatingAndMasking", "formatElement", "Format Element"),
8093
8094
  getInputField("keyName", "Event Key Name")
8094
8095
  ];
@@ -8264,7 +8265,6 @@ const buildPropertiesSection = function(type) {
8264
8265
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8265
8266
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
8266
8267
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
8267
- getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
8268
8268
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
8269
8269
  getInputField("defaultColumnSize", "Default Column Size"),
8270
8270
  ,
@@ -10967,14 +10967,15 @@ var service = (funcParams) => {
10967
10967
  return response == null ? void 0 : response.data;
10968
10968
  },
10969
10969
  onPaginationChange: async function(paginationValues) {
10970
- var _a, _b;
10970
+ var _a;
10971
10971
  const apiBody = [
10972
10972
  { key: "size", value: paginationValues.pagination.pageSize },
10973
10973
  { key: "pageIndex", value: paginationValues.pagination.pageIndex },
10974
10974
  { key: "sorting", value: paginationValues.sorting || [] },
10975
10975
  { key: "filters", value: paginationValues.tableColumnConfig || [] },
10976
10976
  { key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
10977
- { key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] }
10977
+ { key: "parentIds", value: paginationValues.parentIds },
10978
+ { key: "isExpandAll", value: paginationValues.isExpandAll }
10978
10979
  ];
10979
10980
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
10980
10981
  return response == null ? void 0 : response.data;
@@ -11651,6 +11652,9 @@ const buildTextField = (config2, componentScope2) => {
11651
11652
  if (config2.toolTipPosition) {
11652
11653
  inputField.config.main.toolTipPosition = config2.toolTipPosition;
11653
11654
  }
11655
+ if (config2.iconName) {
11656
+ inputField.config.main.startIcon = config2.iconName;
11657
+ }
11654
11658
  inputField.config.main.errorMessage = `${config2.name} is empty or invalid`;
11655
11659
  inputField.scope = componentScope2;
11656
11660
  return inputField;
@@ -11808,9 +11812,6 @@ const buildTable = (config2, componentScope2) => {
11808
11812
  if (config2.paginateExpandedRows) {
11809
11813
  table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
11810
11814
  }
11811
- if (config2.treeStructure) {
11812
- table.config.main.treeStructure = config2.treeStructure === "YES" ? "flatTreeMap" : false;
11813
- }
11814
11815
  if (config2.SelectionAvailable) {
11815
11816
  table.config.main.Selection = config2.SelectionAvailable === "YES" ? true : false;
11816
11817
  }