impaktapps-ui-builder 1.0.429 → 1.0.431

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.429",
3
+ "version": "1.0.431",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -36,9 +36,9 @@ export const buildTable = (config: any, componentScope: string) => {
36
36
  if (config.paginateExpandedRows) {
37
37
  table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
38
38
  }
39
- if (config.treeStructure) {
40
- table.config.main.treeStructure = config.treeStructure === "YES" ? "flatTreeMap" : false;
41
- }
39
+ // if (config.treeStructure) {
40
+ // table.config.main.treeStructure = config.treeStructure === "YES" ? "flatTreeMap" : false;
41
+ // }
42
42
  if (config.SelectionAvailable) {
43
43
  table.config.main.Selection = config.SelectionAvailable === "YES" ? true : false
44
44
  };
@@ -651,7 +651,7 @@ export const buildPropertiesSection = function (type: String) {
651
651
  getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
652
652
  // getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
653
653
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
654
- getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
654
+ // getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
655
655
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
656
656
  getInputField("defaultColumnSize", "Default Column Size"),
657
657
  getInputField("subRowsExpansionPageSize", "Page Size for Subrows Expansion") , emptyBox("LazyLoadingTableEmpty3")
@@ -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: "expandedRowIds", value: paginationValues.expandedRowIds ?? [] },
194
- { key: "subRowsPagination", value: paginationValues.subRowsPagination || [] },
194
+ // { key: "subRowsPagination", value: paginationValues.subRowsPagination || [] },
195
195
  { key: "parentId", value: paginationValues.parentId },
196
196
  { key: "prevRowCount", value: paginationValues.prevRowCount },
197
197
  { key: "newDataCount", value: paginationValues.newDataCount },