impaktapps-ui-builder 1.0.445 → 1.0.447-test.1
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/dist/impaktapps-ui-builder.es.js +6 -6
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +3 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +3 -3
- package/src/impaktapps-ui-builder/runtime/services/service.ts +0 -1
|
@@ -8265,9 +8265,10 @@ const buildPropertiesSection = function(type) {
|
|
|
8265
8265
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
8266
8266
|
getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
|
|
8267
8267
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
8268
|
+
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
8268
8269
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
8269
8270
|
getInputField("defaultColumnSize", "Default Column Size"),
|
|
8270
|
-
|
|
8271
|
+
,
|
|
8271
8272
|
emptyBox$1("LazyLoadingTableEmpty3")
|
|
8272
8273
|
]),
|
|
8273
8274
|
getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
|
|
@@ -10972,8 +10973,7 @@ var service = (funcParams) => {
|
|
|
10972
10973
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10973
10974
|
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
|
|
10974
10975
|
{ key: "parentId", value: paginationValues.parentId },
|
|
10975
|
-
{ key: "startIndex", value: paginationValues.startIndex }
|
|
10976
|
-
{ key: "batchSize", value: paginationValues.batchSize }
|
|
10976
|
+
{ key: "startIndex", value: paginationValues.startIndex }
|
|
10977
10977
|
];
|
|
10978
10978
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
10979
10979
|
return response == null ? void 0 : response.data;
|
|
@@ -11792,9 +11792,6 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11792
11792
|
if (config2.defaultColumnSize) {
|
|
11793
11793
|
table.config.main.defaultColumnSize = config2.defaultColumnSize;
|
|
11794
11794
|
}
|
|
11795
|
-
if (config2.subRowsExpansionPageSize) {
|
|
11796
|
-
table.config.main.subRowsExpansionPageSize = config2.subRowsExpansionPageSize;
|
|
11797
|
-
}
|
|
11798
11795
|
if (config2.enableRowMovement) {
|
|
11799
11796
|
table.config.main.enableRowMovement = config2.enableRowMovement === "YES" ? true : false;
|
|
11800
11797
|
}
|
|
@@ -11810,6 +11807,9 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11810
11807
|
if (config2.paginateExpandedRows) {
|
|
11811
11808
|
table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
|
|
11812
11809
|
}
|
|
11810
|
+
if (config2.treeStructure) {
|
|
11811
|
+
table.config.main.treeStructure = config2.treeStructure === "YES" ? "flatTreeMap" : false;
|
|
11812
|
+
}
|
|
11813
11813
|
if (config2.SelectionAvailable) {
|
|
11814
11814
|
table.config.main.Selection = config2.SelectionAvailable === "YES" ? true : false;
|
|
11815
11815
|
}
|