impaktapps-ui-builder 1.0.451 → 1.0.454
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 +2 -5
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +0 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -0
|
@@ -8265,7 +8265,6 @@ 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"]),
|
|
8269
8268
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
8270
8269
|
getInputField("defaultColumnSize", "Default Column Size"),
|
|
8271
8270
|
,
|
|
@@ -10972,7 +10971,8 @@ var service = (funcParams) => {
|
|
|
10972
10971
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
10973
10972
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10974
10973
|
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
|
|
10975
|
-
{ key: "parentIds", value: paginationValues.parentIds }
|
|
10974
|
+
{ key: "parentIds", value: paginationValues.parentIds },
|
|
10975
|
+
{ key: "isExpandAll", value: paginationValues.isExpandAll }
|
|
10976
10976
|
];
|
|
10977
10977
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
10978
10978
|
return response == null ? void 0 : response.data;
|
|
@@ -11806,9 +11806,6 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11806
11806
|
if (config2.paginateExpandedRows) {
|
|
11807
11807
|
table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
|
|
11808
11808
|
}
|
|
11809
|
-
if (config2.treeStructure) {
|
|
11810
|
-
table.config.main.treeStructure = config2.treeStructure === "YES" ? "flatTreeMap" : false;
|
|
11811
|
-
}
|
|
11812
11809
|
if (config2.SelectionAvailable) {
|
|
11813
11810
|
table.config.main.Selection = config2.SelectionAvailable === "YES" ? true : false;
|
|
11814
11811
|
}
|