impaktapps-ui-builder 1.0.452 → 1.0.455

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.452",
3
+ "version": "1.0.455",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -11,9 +11,6 @@ export const buildTable = (config: any, componentScope: string) => {
11
11
  if (config.lazyLoading) {
12
12
  table.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
13
13
  }
14
- if (config.lazyLoadTree) {
15
- table.config.main.lazyTree = config.lazyLoadTree === "YES" ? true : false;
16
- }
17
14
  if (config.defaultColumnSize) {
18
15
  table.config.main.defaultColumnSize = config.defaultColumnSize
19
16
  }
@@ -33,9 +30,6 @@ export const buildTable = (config: any, componentScope: string) => {
33
30
  if (config.paginateExpandedRows) {
34
31
  table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
35
32
  }
36
- if (config.treeStructure) {
37
- table.config.main.treeStructure = config.treeStructure === "YES" ? "flatTreeMap" : false;
38
- }
39
33
  if (config.SelectionAvailable) {
40
34
  table.config.main.Selection = config.SelectionAvailable === "YES" ? true : false
41
35
  };
@@ -648,10 +648,8 @@ export const buildPropertiesSection = function (type: String) {
648
648
  buildWrapper("Tree Table Properties", [
649
649
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
650
650
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
651
- getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
652
651
  // getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
653
652
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
654
- getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
655
653
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
656
654
  getInputField("defaultColumnSize", "Default Column Size"), , emptyBox("LazyLoadingTableEmpty3")
657
655
  ]),
@@ -191,7 +191,7 @@ export default (funcParams: funcParamsProps) => {
191
191
  { key: "filters", value: paginationValues.tableColumnConfig || [] },
192
192
  { key: "globalFilter", value: paginationValues.globalFilter ?? '' },
193
193
  { key: "parentIds", value: paginationValues.parentIds},
194
- { key: "areAllRowsExpanded", value: paginationValues.areAllRowsExpanded},
194
+ { key: "isExpandAll", value: paginationValues.isExpandAll},
195
195
  ]
196
196
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
197
197
  return response?.data;