impaktapps-ui-builder 1.0.484 → 1.0.485
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 +3 -6
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +3 -3
- 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 +2 -1
package/package.json
CHANGED
|
@@ -30,9 +30,6 @@ export const buildTable = (config: any, componentScope: string) => {
|
|
|
30
30
|
if (config.paginateExpandedRows) {
|
|
31
31
|
table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
|
|
32
32
|
}
|
|
33
|
-
if (config.treeStructure) {
|
|
34
|
-
table.config.main.treeStructure = config.treeStructure === "YES" ? "flatTreeMap" : false;
|
|
35
|
-
}
|
|
36
33
|
if (config.SelectionAvailable) {
|
|
37
34
|
table.config.main.Selection = config.SelectionAvailable === "YES" ? true : false
|
|
38
35
|
};
|
|
@@ -650,7 +650,6 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
650
650
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
651
651
|
// getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
|
|
652
652
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
653
|
-
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
654
653
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
655
654
|
getInputField("defaultColumnSize", "Default Column Size"), , emptyBox("LazyLoadingTableEmpty3")
|
|
656
655
|
]),
|
|
@@ -190,7 +190,8 @@ export default (funcParams: funcParamsProps) => {
|
|
|
190
190
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
191
191
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
192
192
|
{ key: "globalFilter", value: paginationValues.globalFilter ?? '' },
|
|
193
|
-
{ key: "
|
|
193
|
+
{ key: "parentIds", value: paginationValues.parentIds},
|
|
194
|
+
{ key: "isExpandAll", value: paginationValues.isExpandAll},
|
|
194
195
|
]
|
|
195
196
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
196
197
|
return response?.data;
|