impaktapps-ui-builder 1.0.454 → 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 +1 -4
- 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/builder/elements/UiSchema/event/schema.ts +1 -0
|
@@ -8263,7 +8263,6 @@ 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
8267
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
8269
8268
|
getInputField("defaultColumnSize", "Default Column Size"),
|
|
@@ -9521,6 +9520,7 @@ const EventSchema = {
|
|
|
9521
9520
|
oneOf: [
|
|
9522
9521
|
{ title: "RankProvider", const: "RankProvider" },
|
|
9523
9522
|
{ title: "Download File", const: "downloadFile" },
|
|
9523
|
+
{ title: "Download File Stream", const: "downloadFileStream" },
|
|
9524
9524
|
{ title: "downloadFileFromUrl", const: "downloadFileFromUrl" }
|
|
9525
9525
|
]
|
|
9526
9526
|
},
|
|
@@ -11785,9 +11785,6 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11785
11785
|
if (config2.lazyLoading) {
|
|
11786
11786
|
table.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
|
|
11787
11787
|
}
|
|
11788
|
-
if (config2.lazyLoadTree) {
|
|
11789
|
-
table.config.main.lazyTree = config2.lazyLoadTree === "YES" ? true : false;
|
|
11790
|
-
}
|
|
11791
11788
|
if (config2.defaultColumnSize) {
|
|
11792
11789
|
table.config.main.defaultColumnSize = config2.defaultColumnSize;
|
|
11793
11790
|
}
|