impaktapps-ui-builder 1.0.424 → 1.0.425

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.424",
3
+ "version": "1.0.425",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -20,6 +20,9 @@ export const buildMultiSelect = (config, componentScope) => {
20
20
  }
21
21
  if (config.lazyLoading) {
22
22
  multipleSelect.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
23
+ if (config.lazyLoading === "YES" && config.pageSize) {
24
+ multipleSelect.config.main.pageSize = config.pageSize;
25
+ }
23
26
  }
24
27
  if (config.toolTip) {
25
28
  multipleSelect.config.main.toolTip = config.toolTip;
@@ -13,6 +13,9 @@ export const buildSelect = (config: any, componentScope: string) => {
13
13
  }
14
14
  if (config.lazyLoading) {
15
15
  selectInputField.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
16
+ if (config.lazyLoading === "YES" && config.pageSize) {
17
+ selectInputField.config.main.pageSize = config.pageSize;
18
+ }
16
19
  }
17
20
  if (config.variant) {
18
21
  selectInputField.config.main.variant = config.variant;
@@ -11,15 +11,9 @@ export const buildTable = (config: any, componentScope: string) => {
11
11
  if (config.lazyLoading) {
12
12
  table.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
13
13
  }
14
- if (config.lazyLoadTree) {
15
- table.config.main.lazyTree = config.lazyLoadTree === "YES" ? true : false;
16
- }
17
14
  if (config.defaultColumnSize) {
18
15
  table.config.main.defaultColumnSize = config.defaultColumnSize
19
16
  }
20
- if (config.subRowsExpansionPageSize) {
21
- table.config.main.subRowsExpansionPageSize = config.subRowsExpansionPageSize
22
- }
23
17
  if (config.enableRowMovement) {
24
18
  table.config.main.enableRowMovement = config.enableRowMovement === "YES" ? true : false;
25
19
  }
@@ -630,7 +630,7 @@ export const buildPropertiesSection = function (type: String) {
630
630
  getRadioInputField("disableDensityToggle", "Disable Density Toggle", ["YES", "NO"]),
631
631
  getRadioInputField("disableDownloadFile", "Disable Download File", ["YES", "NO"]),
632
632
  getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
633
- getInputField("selectKey", "Selection Key"),
633
+ getInputField("selectKey", "Selection Key"),//defaultColumnSize
634
634
  getMultiSelectField("filteringOptions", "Filtering Options"),
635
635
  getSelectField("maxPageSize", "Max Page Size", [
636
636
  { label: "10", value: 10 },
@@ -648,13 +648,11 @@ export const buildPropertiesSection = function (type: String) {
648
648
  buildWrapper("Tree Table Properties", [
649
649
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
650
650
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
651
- getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
652
651
  // getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
653
652
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
654
653
  getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
655
654
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
656
- getInputField("defaultColumnSize", "Default Column Size"),
657
- getInputField("subRowsExpansionPageSize", "Page Size for Subrows Expansion") , emptyBox("LazyLoadingTableEmpty3")
655
+ getInputField("defaultColumnSize", "Default Column Size"), , emptyBox("LazyLoadingTableEmpty3")
658
656
  ]),
659
657
  getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
660
658
  sizeHolder,
@@ -678,6 +676,7 @@ export const buildPropertiesSection = function (type: String) {
678
676
  case "Select":
679
677
  uiSchema.elements = [
680
678
  getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
679
+ getInputField("pageSize", "Single Page Size"),
681
680
  getRadioInputField("freeSolo", "FreeSolo", ["YES", "NO"]),
682
681
  getSelectField("variant", "Variant", [
683
682
  { label: "Outlined", value: "outlined" },
@@ -691,12 +690,13 @@ export const buildPropertiesSection = function (type: String) {
691
690
  { label: "Right", value: "right" },
692
691
  { label: "Bottom", value: "bottom" }
693
692
  ]),
694
- emptyBox("SelectEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
693
+ emptyBox("SelectEmpty", { xs: 0, sm: 0, md: 0, lg: 6 })
695
694
  ]
696
695
  break;
697
696
  case "MultipleSelect":
698
697
  uiSchema.elements = [
699
698
  getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
699
+ getInputField("pageSize", "Single Page Size"),
700
700
  getSelectField("variant", "Variant", [
701
701
  { label: "Outlined", value: "outlined" },
702
702
  { label: "Filled", value: "filled" },
@@ -190,25 +190,20 @@ export default (funcParams: funcParamsProps) => {
190
190
  { key: "sorting", value: paginationValues.sorting || [] },
191
191
  { key: "filters", value: paginationValues.tableColumnConfig || [] },
192
192
  { key: "globalFilter", value: paginationValues.globalFilter ?? '' },
193
- { key: "expandedRowIds", value: paginationValues.expandedRowIds ?? [] },
194
- { key: "subRowsPagination", value: paginationValues.subRowsPagination || [] },
195
- { key: "loadChildOnly", value: paginationValues.loadChildOnly || false },
196
- { key: "parentId", value: paginationValues.parentId },
197
- { key: "prevRowCount", value: paginationValues.prevRowCount },
198
- { key: "newDataCount", value: paginationValues.newDataCount },
193
+ { key: "expandedRowIds", value: paginationValues.expandedRowIds ?? [] }
199
194
  ]
200
195
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
201
196
  return response?.data;
202
197
  },
203
198
  getSelectOptions: async function (param) {
204
- if (param.serachValue !== "" && param.serachValue !== undefined) {
205
- const apiBody = [
206
- { key: "searchValue", value: param.serachValue },
207
- { key: "currentValue", value: param.currentValue }
208
- ]
209
- const response = await this.callExecuteEvents(param, apiBody, "onLoad");
210
- return response?.data;
211
- }
199
+ const apiBody = [
200
+ { key: "searchValue", value: param.serachValue },
201
+ { key: "currentValue", value: param.currentValue },
202
+ { key: "currentPage", value: param.currentPage },
203
+ { key: "limit", value: param.limit },
204
+ ]
205
+ const response = await this.callExecuteEvents(param, apiBody, "onLoad");
206
+ return response?.data;
212
207
  },
213
208
  onChange: function () {
214
209
  if (!eventGroups.onChange) return;