impaktapps-ui-builder 1.0.201 → 1.0.202

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.
Files changed (80) hide show
  1. package/dist/impaktapps-ui-builder.es.js +1103 -298
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +13 -13
  4. package/dist/impaktapps-ui-builder.umd.js.map +1 -1
  5. package/dist/src/impaktapps-ui-builder/builder/build/buildAreaGraph.d.ts +2 -0
  6. package/dist/src/impaktapps-ui-builder/builder/build/buildCamera.d.ts +1 -0
  7. package/dist/src/impaktapps-ui-builder/builder/build/buildConfig.d.ts +1 -0
  8. package/dist/src/impaktapps-ui-builder/builder/build/buildGroupButton.d.ts +1 -0
  9. package/dist/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.d.ts +1 -0
  10. package/dist/src/impaktapps-ui-builder/builder/build/buildOTP_inputs.d.ts +1 -0
  11. package/dist/src/impaktapps-ui-builder/builder/build/buildPdfViewer.d.ts +1 -0
  12. package/dist/src/impaktapps-ui-builder/builder/build/buildPopover.d.ts +1 -0
  13. package/dist/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.d.ts +2 -0
  14. package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +1 -0
  15. package/dist/src/impaktapps-ui-builder/builder/build/uischema/buttonGroup.d.ts +22 -0
  16. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +173 -197
  17. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +25 -5
  18. package/dist/src/impaktapps-ui-builder/builder/build/uischema/hierarchyChart.d.ts +22 -0
  19. package/dist/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.d.ts +1 -0
  20. package/dist/src/impaktapps-ui-builder/builder/build/uischema/pdfViewer.d.ts +19 -0
  21. package/dist/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.d.ts +1 -0
  22. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +1 -1
  23. package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +3 -1
  24. package/dist/src/impaktapps-ui-builder/builder/services/utils.d.ts +2 -1
  25. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +3 -0
  26. package/package.json +1 -1
  27. package/src/impaktapps-ui-builder/builder/build/buildAreaGraph.ts +22 -14
  28. package/src/impaktapps-ui-builder/builder/build/buildArray.ts +10 -6
  29. package/src/impaktapps-ui-builder/builder/build/buildCamera.ts +50 -0
  30. package/src/impaktapps-ui-builder/builder/build/buildCard.ts +10 -10
  31. package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +19 -7
  32. package/src/impaktapps-ui-builder/builder/build/buildDate.ts +32 -16
  33. package/src/impaktapps-ui-builder/builder/build/buildDownloadFile.ts +6 -0
  34. package/src/impaktapps-ui-builder/builder/build/buildEmptyBox.ts +4 -0
  35. package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +42 -43
  36. package/src/impaktapps-ui-builder/builder/build/buildGroupButton.ts +24 -0
  37. package/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.ts +35 -0
  38. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +3 -3
  39. package/src/impaktapps-ui-builder/builder/build/buildImage.ts +6 -3
  40. package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +3 -3
  41. package/src/impaktapps-ui-builder/builder/build/buildMetricCard.tsx +2 -2
  42. package/src/impaktapps-ui-builder/builder/build/buildMultiSelect.ts +9 -0
  43. package/src/impaktapps-ui-builder/builder/build/buildOTP_inputs.ts +44 -0
  44. package/src/impaktapps-ui-builder/builder/build/buildPdfViewer.ts +16 -0
  45. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +3 -3
  46. package/src/impaktapps-ui-builder/builder/build/buildPop.ts +1 -0
  47. package/src/impaktapps-ui-builder/builder/build/buildPopover.ts +40 -0
  48. package/src/impaktapps-ui-builder/builder/build/buildProgressBar.ts +31 -21
  49. package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +6 -0
  50. package/src/impaktapps-ui-builder/builder/build/buildSelect.ts +9 -0
  51. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +3 -3
  52. package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +72 -0
  53. package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +2 -0
  54. package/src/impaktapps-ui-builder/builder/build/buildTable.ts +4 -3
  55. package/src/impaktapps-ui-builder/builder/build/buildText.ts +9 -0
  56. package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +37 -0
  57. package/src/impaktapps-ui-builder/builder/build/buildUplaodFile.ts +6 -0
  58. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +7 -2
  59. package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +2 -1
  60. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +237 -22
  61. package/src/impaktapps-ui-builder/builder/build/uischema/buttonGroup.ts +17 -0
  62. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +142 -188
  63. package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +0 -1
  64. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +22 -6
  65. package/src/impaktapps-ui-builder/builder/build/uischema/hierarchyChart.ts +13 -0
  66. package/src/impaktapps-ui-builder/builder/build/uischema/metricCard.ts +1 -1
  67. package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +2 -0
  68. package/src/impaktapps-ui-builder/builder/build/uischema/pdfViewer.ts +18 -0
  69. package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +2 -0
  70. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +5 -6
  71. package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +3 -1
  72. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +89 -2
  73. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +17 -0
  74. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +3 -4
  75. package/src/impaktapps-ui-builder/builder/services/component.ts +149 -107
  76. package/src/impaktapps-ui-builder/builder/services/event.ts +3 -0
  77. package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +4 -1
  78. package/src/impaktapps-ui-builder/builder/services/utils.ts +15 -3
  79. package/src/impaktapps-ui-builder/runtime/services/downloadFile.ts +6 -7
  80. package/src/impaktapps-ui-builder/runtime/services/service.ts +34 -5
@@ -0,0 +1,2 @@
1
+ declare const buildAreaGraph: (config: any, componentScope: string) => any;
2
+ export default buildAreaGraph;
@@ -0,0 +1 @@
1
+ export declare const buildCamera: (config: any, componentScope: string) => any;
@@ -2,3 +2,4 @@ declare const _default: (FormData: any) => any;
2
2
  export default _default;
3
3
  export declare const createLayoutFormat: (layout: any[], type?: string) => any;
4
4
  export declare const flatObjectValueInArray: (config?: any[]) => any[];
5
+ export declare const createKeyValueMap: (config?: any[]) => any;
@@ -0,0 +1 @@
1
+ export declare const buildButtonGroup: (config: any, componentScope: string) => any;
@@ -0,0 +1 @@
1
+ export declare const buildHierarchyChart: (config: any, componentScope: any, store: any) => any;
@@ -0,0 +1 @@
1
+ export declare const buildOTP_Input: (config: any, componentScope: any) => any;
@@ -0,0 +1 @@
1
+ export declare const buildPdfViewer: (config: any, componentScope: string) => any;
@@ -0,0 +1 @@
1
+ export declare const buildPopOver: (config: any, componentScope: any) => any;
@@ -0,0 +1,2 @@
1
+ declare const buildStackBarLineGraph: (config: any, componentScope: string) => any;
2
+ export default buildStackBarLineGraph;
@@ -13,6 +13,7 @@ declare const Box: {
13
13
  };
14
14
  main: {
15
15
  iconName: string;
16
+ onClick: string;
16
17
  };
17
18
  style: {};
18
19
  };
@@ -0,0 +1,22 @@
1
+ declare const _default: {
2
+ type: string;
3
+ scope: string;
4
+ options: {
5
+ widget: string;
6
+ };
7
+ config: {
8
+ layout: {
9
+ xs: number;
10
+ sm: number;
11
+ md: number;
12
+ lg: number;
13
+ };
14
+ main: {
15
+ variant: string;
16
+ styleDefault: boolean;
17
+ size: string;
18
+ };
19
+ style: {};
20
+ };
21
+ };
22
+ export default _default;
@@ -2,28 +2,30 @@ export default function Card(theme: any): {
2
2
  type: string;
3
3
  config: {
4
4
  main: {};
5
- wrapperStyle: {
6
- position: string;
7
- top: string;
8
- transform: string;
9
- marginBottom: number;
10
- };
11
- componentsBoxStyle: {
12
- boxShadow: string;
13
- flexDirection: string;
14
- flexWrap: string;
15
- width: string;
16
- background: string;
17
- border: string;
18
- borderRadius: string;
19
- padding: string;
20
- height: string;
21
- alignItems: string;
22
- marginLeft: string;
23
- "&: hover": {
5
+ style: {
6
+ wrapperStyle: {
7
+ position: string;
8
+ top: string;
9
+ transform: string;
10
+ marginBottom: number;
11
+ borderRadius: string;
12
+ fontFamily: string;
13
+ };
14
+ componentsBoxStyle: {
15
+ boxShadow: string;
16
+ flexDirection: string;
17
+ overflow: string;
18
+ flexWrap: string;
19
+ width: string;
24
20
  background: string;
25
- border: string;
26
- "& p": {
21
+ borderRadius: string;
22
+ padding: string;
23
+ height: string;
24
+ minHeight: string;
25
+ position: string;
26
+ marginLeft: string;
27
+ "&: hover": {
28
+ background: string;
27
29
  color: string;
28
30
  };
29
31
  };
@@ -37,204 +39,178 @@ export default function Card(theme: any): {
37
39
  };
38
40
  elements: ({
39
41
  type: string;
42
+ scope: string;
40
43
  config: {
41
- layout: number;
42
- main?: undefined;
43
- style?: undefined;
44
- };
45
- elements: {
46
- type: string;
47
- config: {
48
- main: {
49
- columnSpacing: number;
50
- gap: number;
51
- };
52
- wrapperStyle: {
53
- background: string;
54
- marginBottom: number;
44
+ main: {
45
+ url: string;
46
+ heading?: undefined;
47
+ };
48
+ style: {
49
+ containerStyle: {
50
+ position: string;
51
+ color: string;
52
+ top: string;
53
+ right: string;
54
+ display: string;
55
+ justifyContent: string;
56
+ alignItems: string;
55
57
  };
56
- componentsBoxStyle: {
57
- flexDirection: string;
58
- flexWrap: string;
58
+ imageStyle: {
59
+ color: string;
59
60
  width: string;
60
61
  height: string;
61
- background: string;
62
- borderRadius: string;
63
- paddingRight: number;
62
+ padding: string;
63
+ margin: string;
64
64
  };
65
- layout: number;
65
+ color?: undefined;
66
+ fontSize?: undefined;
67
+ fontWeight?: undefined;
68
+ fontFamily?: undefined;
69
+ justifyContent?: undefined;
70
+ background?: undefined;
71
+ position?: undefined;
72
+ top?: undefined;
73
+ left?: undefined;
74
+ display?: undefined;
75
+ maxWidth?: undefined;
76
+ whiteSpace?: undefined;
77
+ overflowX?: undefined;
78
+ scrollbarWidth?: undefined;
79
+ "&::-webkit-scrollbar"?: undefined;
80
+ width?: undefined;
81
+ margin?: undefined;
82
+ marginBottom?: undefined;
83
+ marginTop?: undefined;
84
+ lineHeight?: undefined;
85
+ overflowY?: undefined;
86
+ paddingLeft?: undefined;
87
+ };
88
+ };
89
+ options: {
90
+ widget: string;
91
+ };
92
+ } | {
93
+ type: string;
94
+ scope: string;
95
+ config: {
96
+ main: {
97
+ heading: string;
98
+ url?: undefined;
66
99
  };
67
- elements: ({
68
- type: string;
69
- config: {
70
- main: {
71
- columnSpacing: number;
72
- gap: number;
73
- heading?: undefined;
74
- };
75
- wrapperStyle: {
76
- background: string;
77
- marginBottom: number;
78
- };
79
- componentsBoxStyle: {
80
- flexDirection: string;
81
- flexWrap: string;
82
- width: string;
83
- height: string;
84
- background: string;
85
- borderRadius: string;
86
- marginLeft: string;
87
- marginTop: string;
88
- justifyContent: string;
89
- position: string;
90
- };
91
- layout: number;
92
- style?: undefined;
100
+ style: {
101
+ color: string;
102
+ fontSize: string;
103
+ fontWeight: number;
104
+ fontFamily: string;
105
+ justifyContent: string;
106
+ background: string;
107
+ position: string;
108
+ top: string;
109
+ left: string;
110
+ display: string;
111
+ maxWidth: string;
112
+ whiteSpace: string;
113
+ overflowX: string;
114
+ scrollbarWidth: string;
115
+ "&::-webkit-scrollbar": {
116
+ display: string;
93
117
  };
94
- elements: ({
95
- type: string;
96
- scope: string;
97
- config: {
98
- main: {
99
- heading: string;
100
- };
101
- style: {
102
- color: string;
103
- display: string;
104
- fontSize: {
105
- xs: string;
106
- md: string;
107
- };
108
- fontWeight: string;
109
- background: string;
110
- justifyContent: string;
111
- width: string;
112
- margin: string;
113
- marginLeft: string;
114
- height: number;
115
- marginTop?: undefined;
116
- position?: undefined;
117
- left?: undefined;
118
- whiteSpace?: undefined;
119
- overflowX?: undefined;
120
- overflowY?: undefined;
121
- scrollbarWidth?: undefined;
122
- msOverflowStyle?: undefined;
123
- maxWidth?: undefined;
124
- "&::-webkit-scrollbar"?: undefined;
125
- };
126
- };
127
- options: {
128
- widget: string;
129
- };
130
- } | {
131
- type: string;
132
- scope: string;
133
- config: {
134
- main: {
135
- heading: string;
136
- };
137
- style: {
138
- color: string;
139
- display: string;
140
- fontSize: {
141
- xs: string;
142
- md: string;
143
- };
144
- fontWeight: string;
145
- background: string;
146
- justifyContent: string;
147
- width: string;
148
- margin: string;
149
- marginTop: string;
150
- position: string;
151
- left: string;
152
- whiteSpace: string;
153
- overflowX: string;
154
- overflowY: string;
155
- scrollbarWidth: string;
156
- msOverflowStyle: string;
157
- maxWidth: string;
158
- "&::-webkit-scrollbar": {
159
- display: string;
160
- };
161
- marginLeft?: undefined;
162
- height?: undefined;
163
- };
164
- };
165
- options: {
166
- widget: string;
167
- };
168
- })[];
169
- scope?: undefined;
170
- options?: undefined;
171
- } | {
172
- type: string;
173
- scope: string;
174
- config: {
175
- main: {
176
- heading: string;
177
- columnSpacing?: undefined;
178
- gap?: undefined;
179
- };
180
- style: {
181
- color: string;
182
- fontSize: string;
183
- justifyContent: string;
184
- whiteSpace: string;
185
- overflowX: string;
186
- overflowY: string;
187
- scrollbarWidth: string;
188
- msOverflowStyle: string;
189
- background: string;
190
- width: string;
191
- margin: string;
192
- marginTop: {
193
- xs: string;
194
- md: string;
195
- };
196
- "&::-webkit-scrollbar": {
197
- display: string;
198
- };
199
- };
200
- layout: number;
201
- wrapperStyle?: undefined;
202
- componentsBoxStyle?: undefined;
118
+ containerStyle?: undefined;
119
+ imageStyle?: undefined;
120
+ width?: undefined;
121
+ margin?: undefined;
122
+ marginBottom?: undefined;
123
+ marginTop?: undefined;
124
+ lineHeight?: undefined;
125
+ overflowY?: undefined;
126
+ paddingLeft?: undefined;
127
+ };
128
+ };
129
+ options: {
130
+ widget: string;
131
+ };
132
+ } | {
133
+ type: string;
134
+ scope: string;
135
+ config: {
136
+ main: {
137
+ heading: string;
138
+ url?: undefined;
139
+ };
140
+ style: {
141
+ color: string;
142
+ display: string;
143
+ fontSize: {
144
+ xs: string;
145
+ md: string;
203
146
  };
204
- options: {
205
- widget: string;
147
+ fontWeight: number;
148
+ background: string;
149
+ justifyContent: string;
150
+ width: string;
151
+ margin: string;
152
+ marginBottom: string;
153
+ marginTop: string;
154
+ lineHeight: string;
155
+ maxWidth: string;
156
+ whiteSpace: string;
157
+ overflowX: string;
158
+ overflowY: string;
159
+ scrollbarWidth: string;
160
+ "&::-webkit-scrollbar": {
161
+ display: string;
206
162
  };
207
- elements?: undefined;
208
- })[];
209
- }[];
210
- scope?: undefined;
211
- options?: undefined;
163
+ containerStyle?: undefined;
164
+ imageStyle?: undefined;
165
+ fontFamily?: undefined;
166
+ position?: undefined;
167
+ top?: undefined;
168
+ left?: undefined;
169
+ paddingLeft?: undefined;
170
+ };
171
+ };
172
+ options: {
173
+ widget: string;
174
+ };
212
175
  } | {
213
176
  type: string;
214
177
  scope: string;
215
178
  config: {
216
179
  main: {
217
- url: string;
180
+ heading: string;
181
+ url?: undefined;
218
182
  };
219
183
  style: {
220
- containerStyle: {
221
- height: string;
184
+ color: string;
185
+ fontSize: string;
186
+ fontWeight: string;
187
+ justifyContent: string;
188
+ background: string;
189
+ margin: string;
190
+ paddingLeft: string;
191
+ marginBottom: string;
192
+ maxWidth: string;
193
+ whiteSpace: string;
194
+ overflowX: string;
195
+ scrollbarWidth: string;
196
+ "&::-webkit-scrollbar": {
222
197
  display: string;
223
- justifyContent: string;
224
- };
225
- imageStyle: {
226
- width: string;
227
- fontSize: string;
228
- padding: string;
229
- margin: string;
230
- height: string;
231
198
  };
199
+ containerStyle?: undefined;
200
+ imageStyle?: undefined;
201
+ fontFamily?: undefined;
202
+ position?: undefined;
203
+ top?: undefined;
204
+ left?: undefined;
205
+ display?: undefined;
206
+ width?: undefined;
207
+ marginTop?: undefined;
208
+ lineHeight?: undefined;
209
+ overflowY?: undefined;
232
210
  };
233
- layout: number;
234
211
  };
235
212
  options: {
236
213
  widget: string;
237
214
  };
238
- elements?: undefined;
239
215
  })[];
240
216
  };
@@ -20,7 +20,6 @@ export declare const BarGraph: {
20
20
  labelStyle: {
21
21
  margin: {};
22
22
  };
23
- barStyle: {};
24
23
  };
25
24
  };
26
25
  };
@@ -46,7 +45,6 @@ export declare const PieGraph: {
46
45
  labelStyle: {
47
46
  margin: {};
48
47
  };
49
- pieStyle: {};
50
48
  };
51
49
  };
52
50
  };
@@ -72,7 +70,6 @@ export declare const LineGraph: {
72
70
  labelStyle: {
73
71
  margin: {};
74
72
  };
75
- lineStyle: {};
76
73
  };
77
74
  };
78
75
  };
@@ -98,7 +95,6 @@ export declare const HorizontalBarGraph: {
98
95
  labelStyle: {
99
96
  margin: {};
100
97
  };
101
- barStyle: {};
102
98
  };
103
99
  };
104
100
  };
@@ -124,7 +120,31 @@ export declare const AreaBarGraph: {
124
120
  labelStyle: {
125
121
  margin: {};
126
122
  };
127
- barStyle: {};
123
+ };
124
+ };
125
+ };
126
+ export declare const StackBarLineG: {
127
+ type: string;
128
+ scope: string;
129
+ options: {
130
+ widget: string;
131
+ };
132
+ config: {
133
+ layout: {
134
+ xs: number;
135
+ sm: number;
136
+ md: number;
137
+ lg: number;
138
+ };
139
+ main: {
140
+ type: string;
141
+ legendLabels: any;
142
+ };
143
+ style: {
144
+ containerStyle: {};
145
+ labelStyle: {
146
+ margin: {};
147
+ };
128
148
  };
129
149
  };
130
150
  };
@@ -0,0 +1,22 @@
1
+ export declare const HierarchyChart: {
2
+ type: string;
3
+ scope: string;
4
+ options: {
5
+ widget: string;
6
+ };
7
+ config: {
8
+ layout: {
9
+ xs: number;
10
+ sm: number;
11
+ md: number;
12
+ lg: number;
13
+ };
14
+ main: {};
15
+ style: {
16
+ containerStyle: {};
17
+ labelStyle: {
18
+ margin: {};
19
+ };
20
+ };
21
+ };
22
+ };
@@ -18,6 +18,7 @@ declare const _default: {
18
18
  variant: string;
19
19
  options: any[];
20
20
  };
21
+ style: {};
21
22
  };
22
23
  };
23
24
  export default _default;
@@ -0,0 +1,19 @@
1
+ declare const _default: {
2
+ type: string;
3
+ scope: string;
4
+ options: {
5
+ widget: string;
6
+ };
7
+ config: {
8
+ layout: {
9
+ xs: number;
10
+ sm: number;
11
+ md: number;
12
+ lg: number;
13
+ };
14
+ main: {
15
+ title: string;
16
+ };
17
+ };
18
+ };
19
+ export default _default;
@@ -16,6 +16,7 @@ declare const _default: {
16
16
  type: string;
17
17
  freeSole: boolean;
18
18
  };
19
+ style: {};
19
20
  };
20
21
  };
21
22
  export default _default;
@@ -1,4 +1,4 @@
1
- export declare const TableSection: (theme: any) => {
1
+ export declare const TableSection: (theme: any, scopeName?: string) => {
2
2
  type: string;
3
3
  elements: {
4
4
  type: string;
@@ -3,9 +3,11 @@ declare const _default: {
3
3
  config: {
4
4
  layout: number;
5
5
  main: {
6
- rowSpacing: number;
7
6
  divider: boolean;
8
7
  label: string;
8
+ rowSpacing: number;
9
+ columnSpacing: number;
10
+ spacing: number;
9
11
  };
10
12
  defaultStyle: boolean;
11
13
  };
@@ -1,10 +1,11 @@
1
1
  declare const clearFromSessionStorage: () => void;
2
2
  export default clearFromSessionStorage;
3
+ export declare const validateAndShowErrors: (store: any) => boolean;
3
4
  export declare const getNavigationHistory: (config: any, path: string | undefined) => {
4
5
  pageName: string;
5
6
  };
6
7
  export declare const saveFormdataInSessionStorage: (formData: any, path?: string) => any;
7
8
  export declare const getFormdataFromSessionStorage: (path?: string) => any;
8
9
  export declare function saveHandler(store: any, service: any, submitHandler: any): Promise<void>;
9
- export declare const navigateHandler: (store: any, isSubmitted: any, pageName?: string | boolean) => void;
10
+ export declare const navigateHandler: (store: any, isSubmitted: any, pageName?: string | boolean, errorMessage?: string) => void;
10
11
  export declare function okHandler(store: any): void;
@@ -11,16 +11,19 @@ interface funcParamsProps {
11
11
  export declare const extractEvents: (eventConfig: any) => any;
12
12
  declare const _default: (funcParams: funcParamsProps) => {
13
13
  setPage: () => Promise<void>;
14
+ getStyle: () => {};
14
15
  onCellRenderer: (cellParams: any) => {};
15
16
  onClick: () => void;
16
17
  onKeyDown: () => void;
17
18
  onFileDelete: () => Promise<void>;
19
+ onClose: () => void;
18
20
  onMount: () => void;
19
21
  onFileDownload: () => void;
20
22
  onFileUpload: () => void;
21
23
  backHandler: () => void;
22
24
  onRowMovement: (paginationValues: any) => Promise<any>;
23
25
  onPaginationChange: (paginationValues: any) => Promise<any>;
26
+ onNodeExpandChange: (param: any) => Promise<any>;
24
27
  getSelectOptions: (param: any) => Promise<any>;
25
28
  onChange: () => void;
26
29
  callExecuteEvents: (paramValue: any, apiBody: any, eventType: string) => Promise<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.201",
3
+ "version": "1.0.202",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",