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/dist/impaktapps-ui-builder.es.js +0 -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 +3 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
|
@@ -8260,7 +8260,6 @@ const buildPropertiesSection = function(type) {
|
|
|
8260
8260
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
8261
8261
|
getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
|
|
8262
8262
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
8263
|
-
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
8264
8263
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
8265
8264
|
getInputField("defaultColumnSize", "Default Column Size"),
|
|
8266
8265
|
getInputField("subRowsExpansionPageSize", "Page Size for Subrows Expansion"),
|
|
@@ -10933,7 +10932,6 @@ var service = (funcParams) => {
|
|
|
10933
10932
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10934
10933
|
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
|
|
10935
10934
|
{ key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] },
|
|
10936
|
-
{ key: "subRowsPagination", value: paginationValues.subRowsPagination || [] },
|
|
10937
10935
|
{ key: "parentId", value: paginationValues.parentId },
|
|
10938
10936
|
{ key: "prevRowCount", value: paginationValues.prevRowCount },
|
|
10939
10937
|
{ key: "newDataCount", value: paginationValues.newDataCount }
|
|
@@ -11773,9 +11771,6 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11773
11771
|
if (config2.paginateExpandedRows) {
|
|
11774
11772
|
table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
|
|
11775
11773
|
}
|
|
11776
|
-
if (config2.treeStructure) {
|
|
11777
|
-
table.config.main.treeStructure = config2.treeStructure === "YES" ? "flatTreeMap" : false;
|
|
11778
|
-
}
|
|
11779
11774
|
if (config2.SelectionAvailable) {
|
|
11780
11775
|
table.config.main.Selection = config2.SelectionAvailable === "YES" ? true : false;
|
|
11781
11776
|
}
|