impaktapps-ui-builder 1.0.430 → 1.0.431

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.430",
3
+ "version": "1.0.431",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -11,9 +11,15 @@ 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
+ }
14
17
  if (config.defaultColumnSize) {
15
18
  table.config.main.defaultColumnSize = config.defaultColumnSize
16
19
  }
20
+ if (config.subRowsExpansionPageSize) {
21
+ table.config.main.subRowsExpansionPageSize = config.subRowsExpansionPageSize
22
+ }
17
23
  if (config.enableRowMovement) {
18
24
  table.config.main.enableRowMovement = config.enableRowMovement === "YES" ? true : false;
19
25
  }
@@ -30,9 +36,9 @@ export const buildTable = (config: any, componentScope: string) => {
30
36
  if (config.paginateExpandedRows) {
31
37
  table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
32
38
  }
33
- if (config.treeStructure) {
34
- table.config.main.treeStructure = config.treeStructure === "YES" ? "flatTreeMap" : false;
35
- }
39
+ // if (config.treeStructure) {
40
+ // table.config.main.treeStructure = config.treeStructure === "YES" ? "flatTreeMap" : false;
41
+ // }
36
42
  if (config.SelectionAvailable) {
37
43
  table.config.main.Selection = config.SelectionAvailable === "YES" ? true : false
38
44
  };
@@ -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"),//defaultColumnSize
633
+ getInputField("selectKey", "Selection Key"),
634
634
  getMultiSelectField("filteringOptions", "Filtering Options"),
635
635
  getSelectField("maxPageSize", "Max Page Size", [
636
636
  { label: "10", value: 10 },
@@ -648,11 +648,13 @@ 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"]),
651
652
  // getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
652
653
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
653
- getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
654
+ // getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
654
655
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
655
- getInputField("defaultColumnSize", "Default Column Size"), , emptyBox("LazyLoadingTableEmpty3")
656
+ getInputField("defaultColumnSize", "Default Column Size"),
657
+ getInputField("subRowsExpansionPageSize", "Page Size for Subrows Expansion") , emptyBox("LazyLoadingTableEmpty3")
656
658
  ]),
657
659
  getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
658
660
  sizeHolder,
@@ -49,7 +49,7 @@ export const ComponentSchema: any = {
49
49
  { title: "Upload", const: "UploadFile" },
50
50
  { title: "Tree ", const: "TreeMap" },
51
51
  { title: "Thought of the day", const: "Thought" },
52
- { title: "PDF", const: "PdfViewer" }
52
+ { title: "PDF", const: "PdfViewer"}
53
53
  ],
54
54
  },
55
55
  elementType: {
@@ -103,35 +103,35 @@ export const ComponentSchema: any = {
103
103
  { title: "Standard", const: "standard" },
104
104
  ],
105
105
  },
106
- positionVertical: {
106
+ positionVertical:{
107
107
  oneOf: [
108
108
  { title: "Top", const: "top" },
109
109
  { title: "Center", const: "center" },
110
110
  { title: "Bottom", const: "bottom" }
111
111
  ],
112
112
  },
113
- positionHorizontal: {
113
+ positionHorizontal:{
114
114
  oneOf: [
115
115
  { title: "Left", const: "left" },
116
116
  { title: "Center", const: "center" },
117
117
  { title: "Right", const: "right" }
118
118
  ],
119
119
  },
120
- contentVertical: {
120
+ contentVertical:{
121
121
  oneOf: [
122
122
  { title: "Top", const: "top" },
123
123
  { title: "Center", const: "center" },
124
124
  { title: "Bottom", const: "bottom" }
125
125
  ],
126
126
  },
127
- contentHorizontal: {
127
+ contentHorizontal:{
128
128
  oneOf: [
129
129
  { title: "Left", const: "left" },
130
130
  { title: "Center", const: "center" },
131
131
  { title: "Right", const: "right" }
132
132
  ],
133
133
  },
134
- toolTipPosition: {
134
+ toolTipPosition:{
135
135
  oneOf: [
136
136
  { title: "Top", const: "top" },
137
137
  { title: "Left", const: "left" },
@@ -495,11 +495,6 @@ export const ComponentSchema: any = {
495
495
  { title: "Detail Icon", const: "DetailIcon" },
496
496
  { title: "Report View Icon", const: "ReportViewIcon" },
497
497
  { title: "Payout", const: "Payout" },
498
- { title: "Info Outlined", const: "InfoOutlinedIcon" },
499
- { title: "Territory Add", const: "TerritoryAdd" },
500
- { title: "Territory Edit", const: "TerritoryEdit" },
501
- { title: "Territory Delete", const: "TerritoryDelete" },
502
- { title: "Git Compare", const: "GitCompare" },
503
498
  ],
504
499
  },
505
500
  color: {
@@ -190,7 +190,11 @@ 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 ?? [] }
193
+ { key: "expandedRowIds", value: paginationValues.expandedRowIds ?? [] },
194
+ // { key: "subRowsPagination", value: paginationValues.subRowsPagination || [] },
195
+ { key: "parentId", value: paginationValues.parentId },
196
+ { key: "prevRowCount", value: paginationValues.prevRowCount },
197
+ { key: "newDataCount", value: paginationValues.newDataCount },
194
198
  ]
195
199
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
196
200
  return response?.data;