impaktapps-ui-builder 1.0.452 → 1.0.455-test.11
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 -9
- 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 -6
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +0 -2
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +1 -0
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
|
@@ -8263,9 +8263,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8263
8263
|
buildWrapper("Tree Table Properties", [
|
|
8264
8264
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
8265
8265
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
8266
|
-
getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
|
|
8267
8266
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
8268
|
-
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
8269
8267
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
8270
8268
|
getInputField("defaultColumnSize", "Default Column Size"),
|
|
8271
8269
|
,
|
|
@@ -9522,6 +9520,7 @@ const EventSchema = {
|
|
|
9522
9520
|
oneOf: [
|
|
9523
9521
|
{ title: "RankProvider", const: "RankProvider" },
|
|
9524
9522
|
{ title: "Download File", const: "downloadFile" },
|
|
9523
|
+
{ title: "Download File Stream", const: "downloadFileStream" },
|
|
9525
9524
|
{ title: "downloadFileFromUrl", const: "downloadFileFromUrl" }
|
|
9526
9525
|
]
|
|
9527
9526
|
},
|
|
@@ -10973,7 +10972,7 @@ var service = (funcParams) => {
|
|
|
10973
10972
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10974
10973
|
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
|
|
10975
10974
|
{ key: "parentIds", value: paginationValues.parentIds },
|
|
10976
|
-
{ key: "
|
|
10975
|
+
{ key: "isExpandAll", value: paginationValues.isExpandAll }
|
|
10977
10976
|
];
|
|
10978
10977
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
10979
10978
|
return response == null ? void 0 : response.data;
|
|
@@ -11786,9 +11785,6 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11786
11785
|
if (config2.lazyLoading) {
|
|
11787
11786
|
table.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
|
|
11788
11787
|
}
|
|
11789
|
-
if (config2.lazyLoadTree) {
|
|
11790
|
-
table.config.main.lazyTree = config2.lazyLoadTree === "YES" ? true : false;
|
|
11791
|
-
}
|
|
11792
11788
|
if (config2.defaultColumnSize) {
|
|
11793
11789
|
table.config.main.defaultColumnSize = config2.defaultColumnSize;
|
|
11794
11790
|
}
|
|
@@ -11807,9 +11803,6 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11807
11803
|
if (config2.paginateExpandedRows) {
|
|
11808
11804
|
table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
|
|
11809
11805
|
}
|
|
11810
|
-
if (config2.treeStructure) {
|
|
11811
|
-
table.config.main.treeStructure = config2.treeStructure === "YES" ? "flatTreeMap" : false;
|
|
11812
|
-
}
|
|
11813
11806
|
if (config2.SelectionAvailable) {
|
|
11814
11807
|
table.config.main.Selection = config2.SelectionAvailable === "YES" ? true : false;
|
|
11815
11808
|
}
|