impaktapps-ui-builder 1.0.2 → 1.0.3

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.2",
3
+ "version": "1.0.3",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -20,9 +20,6 @@ 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
- }
26
23
  if (config.paginateExpandedRows) {
27
24
  table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
28
25
  }
@@ -511,7 +511,6 @@ 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"]),
515
514
  emptyBox("LazyLoadingTableEmpty2"), emptyBox("LazyLoadingTableEmpty3")
516
515
  ]),
517
516
  getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
@@ -262,7 +262,7 @@ export default (funcParams: funcParamsProps) => {
262
262
  { key: "size", value: paginationValues.pagination.pageSize },
263
263
  { key: "pageIndex", value: paginationValues.pagination.pageIndex },
264
264
  { key: "sorting", value: paginationValues.sorting || [] },
265
- { key: "filters", value: paginationValues.columnFilters || [] },
265
+ { key: "filters", value: paginationValues.tableColumnConfig|| [] },
266
266
  { key: "globalFilter", value: paginationValues.globalFilter ?? '' }
267
267
  ]
268
268
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");