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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.1-alpha.2",
3
+ "version": "1.0.1-alpha.4",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -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"),