impaktapps-ui-builder 1.0.1-alpha.2 → 1.0.1-alpha.4
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 +4 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- 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 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -0
package/package.json
CHANGED
|
@@ -20,6 +20,9 @@ export const buildTable = (config: any, componentScope: string) => {
|
|
|
20
20
|
if (config.enableExpandAll) {
|
|
21
21
|
table.config.main.enableExpandAll = config.enableExpandAll === "YES" ? true : false;
|
|
22
22
|
}
|
|
23
|
+
if (config.filterFromLeafRows) {
|
|
24
|
+
table.config.main.filterFromLeafRows = config.filterFromLeafRows === "YES" ? true : false;
|
|
25
|
+
}
|
|
23
26
|
if (config.paginateExpandedRows) {
|
|
24
27
|
table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
|
|
25
28
|
}
|
|
@@ -511,6 +511,7 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
511
511
|
// getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
|
|
512
512
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
513
513
|
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
514
|
+
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
514
515
|
emptyBox("LazyLoadingTableEmpty2"), emptyBox("LazyLoadingTableEmpty3")
|
|
515
516
|
]),
|
|
516
517
|
getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
|