impaktapps-ui-builder 0.0.382-alpha.60 → 0.0.382-alpha.6000

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 (48) hide show
  1. package/dist/impaktapps-ui-builder.es.js +1839 -1272
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +15 -15
  4. package/dist/impaktapps-ui-builder.umd.js.map +1 -1
  5. package/dist/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.d.ts +0 -1
  6. package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +2 -35
  7. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +12 -10
  8. package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +18 -15
  9. package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +121 -70
  10. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +108 -1
  11. package/dist/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.d.ts +8 -5
  12. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +102 -53
  13. package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +2 -17
  14. package/dist/src/impaktapps-ui-builder/builder/build/uischema/valueTab.d.ts +2 -17
  15. package/dist/src/impaktapps-ui-builder/builder/services/component.d.ts +4 -2
  16. package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +3 -2
  17. package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +3 -1
  18. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +0 -1
  19. package/package.json +1 -1
  20. package/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.ts +0 -1
  21. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +26 -30
  22. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +21 -30
  23. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +6 -6
  24. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -3
  25. package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +27 -50
  26. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +49 -30
  27. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +10 -9
  28. package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +36 -16
  29. package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +6 -1
  30. package/src/impaktapps-ui-builder/builder/build/uischema/emptyBox.ts +1 -1
  31. package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +125 -99
  32. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +108 -108
  33. package/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.ts +9 -5
  34. package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +1 -1
  35. package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +12 -2
  36. package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +6 -1
  37. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +58 -84
  38. package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +6 -1
  39. package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +12 -12
  40. package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +12 -12
  41. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +440 -448
  42. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +515 -456
  43. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +367 -520
  44. package/src/impaktapps-ui-builder/builder/services/component.ts +25 -7
  45. package/src/impaktapps-ui-builder/builder/services/event.ts +17 -9
  46. package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +19 -3
  47. package/src/impaktapps-ui-builder/runtime/services/events.ts +4 -14
  48. package/src/impaktapps-ui-builder/runtime/services/service.ts +0 -5
@@ -1,557 +1,404 @@
1
- export const EventUiSchema: any = (theme) => {
2
- const uiSchema = {
3
- type: "HorizontalLayout",
4
- heading: "Component",
5
- elements: [
6
- // {
7
- // type: "WrapperLayout",
8
- // config: {
9
- // main: {
10
- // rowSpacing: 1,
11
- // header: true
12
- // },
13
- // defaultStyle: true
14
- // },
15
- // elements: [
16
- // {
17
- // type: "Control",
18
- // scope: "#/properties/Component",
1
+ import { getSelectField } from "../../../build/uischema/buildPropertiesSection";
19
2
 
20
- // options: {
21
- // widget: "Box",
22
- // },
23
- // config: {
24
- // layout: {xs:12,sm:12,md:2},
25
- // main: {
26
- // heading: "Component",
27
- // },
28
- // style:{
29
- // "float":"left",
30
- // }
31
- // },
32
- // },
33
-
34
- // {
35
- // type: "Control",
36
- // scope: "#/properties/pageName",
37
-
38
- // options: {
39
- // widget: "Box",
40
- // },
41
- // config: {
42
- // layout: {xs:7,sm:7,md:9},
43
- // main: {
44
- // heading: " ",
45
- // },
46
- // style: {
47
- // float: "right",
48
- // width:"auto",
49
- // fontSize:"12px",
50
- // color:"gray",
51
- // paddingTop:"10px"
52
- // },
53
- // },
54
- // },
55
-
56
- // {
57
- // type: "Control",
58
- // scope: "#/properties/Back_Button",
3
+ export const EventUiSchema: any = {
4
+ type: "HorizontalLayout",
5
+ elements: [
6
+ {
7
+ type: "WrapperLayout",
8
+ config: {
9
+ main: {
10
+ rowSpacing: 1,
11
+ header: true
12
+ },
13
+ defaultStyle: true
14
+ },
15
+ elements: [
16
+ {
17
+ type: "Control",
18
+ scope: "#/properties/Component",
59
19
 
60
- // options: {
61
- // widget: "IconButton",
62
- // },
63
- // config: {
64
- // layout: {xs:2,sm:2,md:0.5},
65
- // main: {
66
- // icon: "BackIcon",
67
- // styleDefault: true,
68
- // size: "small",
69
- // onClick: "backHandler",
70
- // tooltipMessage: "Back",
71
- // },
72
- // style: {
73
- // float: "right",
74
- // },
75
- // },
76
- // },
77
- // ],
78
- // },
79
- {
80
- type: "TabLayout",
81
- config: {
82
- main: {
83
- tabLabels: ["Core", "Response Event"],
84
- defaultStyle: true,
85
- id: "event"
20
+ options: {
21
+ widget: "Box",
22
+ },
23
+ config: {
24
+ layout: {xs:12,sm:12,md:2},
25
+ main: {
26
+ heading: "Component",
27
+ },
28
+ style:{
29
+ "float":"left",
30
+ }
86
31
  },
87
32
  },
33
+
34
+ {
35
+ type: "Control",
36
+ scope: "#/properties/pageName",
37
+
38
+ options: {
39
+ widget: "Box",
40
+ },
41
+ config: {
42
+ layout: {xs:7,sm:7,md:9},
43
+ main: {
44
+ heading: " ",
45
+ },
46
+ style: {
47
+ float: "right",
48
+ width:"auto",
49
+ fontSize:"12px",
50
+ color:"gray",
51
+ paddingTop:"10px"
52
+ },
53
+ },
54
+ },
55
+
56
+ {
57
+ type: "Control",
58
+ scope: "#/properties/Back_Button",
59
+
60
+ options: {
61
+ widget: "IconButton",
62
+ },
63
+ config: {
64
+ layout: {xs:2,sm:2,md:0.5},
65
+ main: {
66
+ icon: "BackIcon",
67
+ styleDefault: true,
68
+ size: "small",
69
+ onClick: "backHandler",
70
+ tooltipMessage: "Back",
71
+ },
72
+ style: {
73
+ float: "right",
74
+ },
75
+ },
76
+ },
77
+ ],
78
+ },
79
+ {
80
+ type: "TabLayout",
81
+ config: {
82
+ main: {
83
+ tabLabels: ["Core", "Response Event"],
84
+ defaultStyle: true,
85
+ id: "event"
86
+ },
87
+ },
88
88
 
89
- elements: [
90
- {
91
- type: "HorizontalLayout",
92
- elements: [
93
- {
94
- type: "Control",
95
- scope: `#/properties/eventType`,
96
-
97
- options: {
98
- widget: "SelectInputField",
99
- },
100
- config: {
101
- layout: { xs: 11, sm: 4, md: 4, lg: 4 },
102
- main: {
103
- label: "Event Type",
104
- type: "text",
105
-
106
- },
89
+ elements: [
90
+ {
91
+ type: "HorizontalLayout",
92
+ elements: [
93
+ {
94
+ type: "Control",
95
+ scope: `#/properties/eventType`,
96
+
97
+ options: {
98
+ widget: "SelectInputField",
99
+ },
100
+ config: {
101
+ layout: { xs: 11, sm: 11, md: 5.5, lg: 5.5 },
102
+ main: {
103
+ label: "Event Type",
104
+ type: "text",
105
+
107
106
  },
108
107
  },
109
- {
110
- type: "Control",
111
- scope: `#/properties/Handler`,
112
-
113
- options: {
114
- widget: "SelectInputField",
108
+ },
109
+ getSelectField("Handler", "Handler", [
110
+ { label: "Custom", value: "custom" },
111
+ { label: "Api", value: "api" },
112
+ { label: "Inbuilt Function", value: "inBuiltFunction" },
113
+ { label: "Refresh", value: "refresh" },
114
+ ]),
115
+ ],
116
+ },
117
+ {
118
+ type: "WrapperLayout",
119
+ config: {
120
+ main: {
121
+ // label: "Success Case Event",
122
+ divider: true,
123
+ },
124
+ wrapperStyle: {
125
+ border: "1px solid gray"
126
+ },
127
+ },
128
+ elements: [
129
+ {
130
+ type: "Control",
131
+ scope: "#/properties/heading",
132
+
133
+ options: {
134
+ widget: "Box",
135
+ },
136
+ config: {
137
+ layout: 8,
138
+ main: {
139
+ heading: "Response Event",
115
140
  },
116
- config: {
117
- layout: { xs: 11, sm: 4, md: 4, lg: 4 },
118
- main: {
119
- label: "Handler",
120
- type: "text",
121
- },
141
+ style: {
142
+ fontFamily: "Roboto",
143
+ fontWeight: "500",
144
+ paddingLeft: "-10px",
145
+ fontSize: "20px",
122
146
  },
123
147
  },
124
- {
125
- type: "Control",
126
- scope: "#/properties/emptyBox",
127
- options: {
128
- widget: "EmptyBox"
129
- },
130
- config: {
131
- layout: { xs: 0, sm: 4 }
132
- }
133
- }
134
- ],
135
- },
136
- {
137
- type: "Control",
138
- scope: "#/properties/events",
139
- options: {
140
- widget: "Table",
141
148
  },
142
- config: {
143
- main: {
144
- headerIcons: {
145
- elements: [
146
- {
147
- widget: {
148
- type: "Control",
149
- scope: "#/properties/New_Record",
150
-
151
- options: {
152
- widget: "IconButton",
153
- },
154
- config: {
155
- main: {
156
- // color: "info",
157
- onClick: "addEvent",
158
- size: "small",
159
- icon: "AddIcon",
160
- iconLabel: "Add New",
161
- styleDefault: true,
162
- },
163
- style: {
164
- mt: "6px",
165
- },
166
- },
167
- }
168
- },
169
- ]
149
+ {
150
+ type: "Control",
151
+ scope: "#/properties/AddButton",
152
+ options: {
153
+ widget: "IconButton",
154
+ },
155
+ config: {
156
+ layout: 3,
157
+ main: {
158
+ icon: "AddIcon",
159
+ styleDefault: true,
160
+ size: "small",
161
+ onClick: "addEvent",
162
+ tooltipMessage: "Back",
163
+ },
164
+ style: {
165
+ float: "right",
170
166
  },
171
- disableAction: true,
172
- disableSelection: true,
173
- enableDrag: true,
174
-
175
167
  },
176
168
  },
177
- elements: [
178
-
179
- {
180
- accessorKey: "eventType",
181
- header: "Event Type",
169
+
170
+ {
171
+ type: "Control",
172
+ scope: "#/properties/events",
173
+ options: {
174
+ widget: "Table",
182
175
  },
183
- {
184
- accessorKey: "Handler",
185
- header: "Handler",
176
+ config: {
177
+ main: {
178
+ disableAction: true,
179
+ disableSelection: true,
180
+ enableDrag: true,
181
+
182
+ },
186
183
  },
187
- {
188
- accessorKey: "Edit_Approve_Records",
189
- header: "Edit Widget",
190
- widget: {
191
- type: "Control",
192
- scope: "#/properties/Edit_Records",
193
- options: {
194
- widget: "IconButton",
195
- },
196
- config: {
197
- main: {
198
- // color: "info",
199
- size: "small",
200
- icon: "EditIcon",
201
- tooltipMessage: "Edit This Record",
202
- onClick: "editEvent",
184
+ elements: [
185
+
186
+ {
187
+ accessorKey: "eventType",
188
+ header: "Event Type",
189
+ },
190
+ {
191
+ accessorKey: "Handler",
192
+ header: "Handler",
193
+ },
194
+ {
195
+ accessorKey: "Edit_Approve_Records",
196
+ header: "Edit Widget",
197
+ widget: {
198
+ type: "Control",
199
+ scope: "#/properties/Edit_Records",
200
+ options: {
201
+ widget: "IconButton",
203
202
  },
204
- style: {
205
- color: "#3949ab",
203
+ config: {
204
+ main: {
205
+ color: "info",
206
+ size: "small",
207
+ icon: "EditIcon",
208
+ tooltipMessage: "Edit This Record",
209
+ onClick: "editEvent",
210
+ },
211
+ style: {
212
+ color: "#3949ab",
213
+ },
206
214
  },
207
215
  },
208
216
  },
209
- },
210
- {
211
- accessorKey: "Reject_Records",
212
- header: "Delete",
213
- widget: {
214
- type: "Control",
215
- scope: "#/properties/RejectButton",
216
- options: {
217
- widget: "IconButton",
218
- },
219
- config: {
220
- main: {
221
- icon: "RejectIcon",
222
- color: "error",
223
- tooltipMessage: "Reject This Record",
224
- onClick: "deleteEvent",
217
+ {
218
+ accessorKey: "Reject_Records",
219
+ header: "Delete",
220
+ widget: {
221
+ type: "Control",
222
+ scope: "#/properties/RejectButton",
223
+ options: {
224
+ widget: "IconButton",
225
+ },
226
+ config: {
227
+ main: {
228
+ icon: "RejectIcon",
229
+ color: "error",
230
+ tooltipMessage: "Reject This Record",
231
+ onClick: "deletePopUpEvent",
232
+ },
225
233
  },
226
234
  },
227
235
  },
228
- },
229
- ]
230
- }
231
- ],
236
+ ]
237
+ }]
238
+ }
239
+ ],
240
+ },
241
+ {
242
+ type: "Control",
243
+ scope: "#/properties/popUpEvent",
244
+ options: {
245
+ widget: "PopUp"
232
246
  },
233
- {
234
- type: "Control",
235
- scope: "#/properties/EmptyBox",
236
- options: {
237
- widget: "EmptyBox",
247
+ config: {
248
+ layout: {
249
+ xs: 12,
250
+ sm: 12,
251
+ md: 12,
252
+ lg: 12,
238
253
  },
239
- config: {
240
- layout: { xs: 0, sm: 4, md: 4, lg: 4 },
254
+ main: {
241
255
  },
242
256
  },
243
- {
244
- type: "Control",
245
- scope: "#/properties/EmptyBox",
246
- options: {
247
- widget: "EmptyBox",
257
+ elements:
258
+ [
259
+ {
260
+ type: "Control",
261
+ scope: "#/properties/label",
262
+ options: {
263
+ widget: "Box",
264
+ },
265
+ config: {
266
+ layout: 12,
267
+ main: {
268
+ heading: "Are you sure you want to delete ?",
269
+ },
270
+ style:{
271
+ marginTop: "-40px"
272
+ }
273
+ },
274
+ },
275
+ {
276
+ type: "Control",
277
+ scope: "#/properties/EmptyBox",
278
+ options: {
279
+ widget: "EmptyBox",
280
+ },
281
+ config: {
282
+ main:{},
283
+ layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 },
284
+ },
285
+ },
286
+ {
287
+ type: "Control",
288
+ scope: "#/properties/ConfirmDeleteEventButton",
289
+ options: {
290
+ widget: "Button",
291
+ },
292
+ config: {
293
+ layout: 3,
294
+ main: {
295
+ name: "Yes",
296
+ startIcon: "ApproveIcon",
297
+ variant: "contained",
298
+ color: "info",
299
+ type: "text",
300
+ onClick: "deleteEvent",
301
+ size: "small",
302
+ },
303
+ },
304
+ },
305
+ {
306
+ type: "Control",
307
+ scope: "#/properties/CancelDeleteEventButton",
308
+ options: {
309
+ widget: "Button",
310
+ },
311
+ config: {
312
+ layout: 3,
313
+ main: {
314
+ name: "No",
315
+ startIcon: "ApproveIcon",
316
+ variant: "contained",
317
+ color: "info",
318
+ type: "text",
319
+ onClick: "deletePopUpEvent",
320
+ size: "small",
321
+ },
322
+ },
323
+ },
324
+ ]
325
+ },
326
+
327
+ {
328
+ type: "Control",
329
+ scope: "#/properties/proc",
330
+ config: {
331
+ layout: { xs: 11, sm: 11, md: 6, lg: 6 },
332
+ },
333
+ options: {
334
+ widget: "EmptyBox",
335
+ },
336
+ },
337
+ {
338
+ type: "Control",
339
+ scope: "#/properties/btn",
340
+ options: {
341
+ widget: "Button",
342
+ },
343
+
344
+ config: {
345
+ layout: {
346
+ xs: 11,
347
+ sm: 11,
348
+ md: 2.5,
349
+ lg: 2.5,
248
350
  },
249
- config: {
250
- layout: { xs: 0, sm: 4, md: 4, lg: 4 },
351
+ main: {
352
+ name: "Ok",
353
+ startIcon: "ApproveIcon",
354
+ variant: "contained",
355
+ color: "info",
356
+ type: "text",
357
+ onClick: "okHandler",
358
+ size: "small",
251
359
  },
252
- },
253
- {
254
- type: "Control",
255
- scope: "#/properties/btn",
256
- options: {
257
- widget: "Button",
360
+ style: {
361
+ marginBottom: "8px",
362
+ float: "right",
258
363
  },
364
+ },
365
+ },
366
+ {
367
+ type: "Control",
368
+ scope: "#/properties/btnSubmit",
369
+ options: {
370
+ widget: "Button",
371
+ },
259
372
 
260
- config: {
261
- layout: 1.8,
262
- main: {
263
- name: "Ok",
264
- startIcon: "ApproveIcon",
265
- variant: "contained",
266
- // color: "info",
267
- type: "text",
268
- onClick: "okHandler",
269
- size: "medium",
270
- },
271
- style: {
272
- float: "right",
273
- },
373
+ config: {
374
+ layout: {
375
+ xs: 11,
376
+ sm: 11,
377
+ md: 2.5,
378
+ lg: 2.5,
274
379
  },
275
- },
276
- {
277
- type: "Control",
278
- scope: "#/properties/btnSubmit",
279
- options: {
280
- widget: "Button",
380
+ main: {
381
+ name: "Save & Exit",
382
+ startIcon: "ApproveIcon",
383
+ variant: "contained",
384
+ color: "info",
385
+ type: "text",
386
+ onClick: "saveHandler",
387
+ size: "small",
281
388
  },
282
-
283
- config: {
284
- layout: 1.8,
285
- main: {
286
- name: "Save & Exit",
287
- startIcon: "ApproveIcon",
288
- variant: "contained",
289
- // color: "info",
290
- type: "text",
291
- onClick: "saveHandler",
292
- size: "medium",
293
- },
294
- style: {
295
- float: "right",
296
- },
389
+ style: {
390
+ marginBottom: "8px",
391
+ float: "right",
297
392
  },
298
393
  },
299
- {
300
- type: "Control",
301
- scope: "#/properties/notify",
302
- options: {
303
- widget: "Notify",
304
- },
305
- layout: 6,
394
+ },
395
+ {
396
+ type: "Control",
397
+ scope: "#/properties/notify",
398
+ options: {
399
+ widget: "Notify",
306
400
  },
307
- {
308
- type: "HorizontalLayout",
309
- config: {
310
- layout: 12,
311
- style: {
312
- position: "absolute",
313
- bottom: 5,
314
- overflow: 'hidden'
315
- }
316
- },
317
- elements: [
318
- {
319
-
320
- type: "Control",
321
- scope: "#/properties/FooterText",
322
- options: {
323
- widget: "Box",
324
- },
325
- config: {
326
- layout: 9.5,
327
- main: {
328
- heading: "Copywriter@ACT21.IO"
329
- },
330
- style: {
331
- color: theme?.palette?.text.disabled || "#AFAFAF",
332
- fontSize: '12px',
333
- textAlign: 'center'
334
- }
335
- },
336
- },
337
- {
338
- type: "HorizontalLayout",
339
- config: {
340
- layout: 2.5,
341
- style: {
342
- }
343
- },
344
- elements: [
345
- {
346
- type: "Control",
347
- scope: "#/properties/EmptyBox",
348
- options: {
349
- widget: "EmptyBox",
350
- },
351
- config: {
352
- layout: 6,
353
- style: {
354
- flexGrow: 1
355
- }
356
- },
357
- },
358
- {
359
- type: "Control",
360
- scope: "#/properties/backIcon",
361
- options: {
362
- widget: "Box",
363
- },
364
- config: {
365
- layout: 1,
366
- main: {
367
- iconName: 'PrevIcon',
368
- onClick: "backHandler"
369
- },
370
- style: {
371
- fill: theme.palette.primary.main,
372
- width: 20,
373
- height: 20,
374
- display: 'flex',
375
- alignItems: 'center',
376
- justifyContent: 'center',
377
- marginRight: '-8px',
378
- cursor: 'pointer',
379
- ':hover': {
380
- fill: theme.palette.primary.dark,
381
- }
382
- }
383
- }
384
- },
385
- {
386
- type: "Control",
387
- scope: "#/properties/text",
388
-
389
- options: {
390
- widget: "Box",
391
- },
392
- config: {
393
- layout: 5,
394
- main: {
395
- heading: "Previous Page",
396
- onClick: "backHandler"
397
- },
398
- style: {
399
- width: 'fit-content',
400
- color: theme.palette.primary.main,
401
- fontSize: "12px",
402
- cursor: 'pointer',
403
- marginLeft: '2px',
404
- marginRight: 0,
405
- ':hover': {
406
- color: theme.palette.primary.dark,
407
- }
408
- }
409
- },
410
- },
411
- ],
412
- },
413
- ]
401
+ layout: 6,
414
402
  }
415
- // {
416
- // type: "HorizontalLayout",
417
- // config: {
418
- // style: {
419
- // position: "fixed",
420
- // bottom: 5,
421
- // overflow: 'visible',
422
- // margin: "0",
423
- // width: "100vw",
424
- // }
425
- // },
426
- // elements: [
427
- // {
428
- // type: "Control",
429
- // scope: "#/properties/EmptyBox",
430
- // options: {
431
- // widget: "EmptyBox",
432
- // },
433
- // config: {
434
- // layout: { xs: 0, sm: 4, md: 4, lg: 4 },
435
- // },
436
- // },
437
- // {
438
-
439
- // type: "Control",
440
- // scope: "#/properties/FooterText",
441
- // options: {
442
- // widget: "Box",
443
- // },
444
- // config: {
445
- // layout: { xs: 11, sm: 4, md: 4, lg: 4 },
446
- // main: {
447
- // heading: "Copywriter@ACT21.IO"
448
- // },
449
- // style: {
450
- // color: theme?.palette?.text.disabled || "#AFAFAF",
451
- // fontSize: '12px',
452
- // }
453
- // },
454
- // },
455
- // {
456
- // type: "HorizontalLayout",
457
- // config: {
458
- // layout: { xs: 11, sm: 4, md: 4, lg: 4 },
459
- // },
460
- // elements: [
461
- // {
462
- // type: "Control",
463
- // scope: "#/properties/EmptyBox",
464
- // options: {
465
- // widget: "EmptyBox",
466
- // },
467
- // config: {
468
- // layout: 2,
469
- // },
470
- // },
471
- // {
472
- // type: "Control",
473
- // scope: "#/properties/backIcon",
474
- // options: {
475
- // widget: "Box",
476
- // },
477
- // config: {
478
- // layout: 1,
479
- // main: {
480
- // iconName: 'PrevIcon',
481
- // onClick: "backHandler"
482
- // },
483
- // style: {
484
- // fill: theme.palette.primary.dark,
485
- // width: 20,
486
- // height: 20,
487
- // display: 'flex',
488
- // alignItems: 'center',
489
- // justifyContent: 'center',
490
- // marginRight: '-8px',
491
- // cursor: 'pointer'
492
- // }
493
- // }
494
- // },
495
- // {
496
- // type: "Control",
497
- // scope: "#/properties/text",
498
-
499
- // options: {
500
- // widget: "Box",
501
- // },
502
- // config: {
503
- // layout: 9,
504
- // main: {
505
- // heading: "Previous Page",
506
- // onClick: "backHandler"
507
- // },
508
- // style: {
509
- // color: theme.palette.primary.dark,
510
- // fontSize: "12px",
511
- // cursor: 'pointer',
512
- // marginLeft: '-6px'
513
- // }
514
- // },
515
- // },
516
- // ],
517
- // },
518
- // // {
519
- // // type: "Control",
520
- // // scope: "#/properties/pageName",
521
-
522
- // // options: {
523
- // // widget: "Box",
524
- // // },
525
- // // config: {
526
- // // layout: 9.7,
527
- // // main: {
528
- // // heading: " ",
529
- // // },
530
- // // style: {
531
- // // color: theme.palette.text.disabled,
532
- // // // float: 'right',
533
- // // textAlign: 'right',
534
- // // // width: 'fit-content',
535
- // // fontSize: "12px",
536
- // // marginTop: '-16px',
537
- // // // marginRight: '100px'
538
- // // // marginLeft: '-6px'
539
- // // }
540
- // // },
541
- // // },
542
- // // {
543
- // // type: "Control",
544
- // // scope: "#/properties/emptyBox",
545
- // // options: {
546
- // // widget: "EmptyBox",
547
- // // },
548
- // // config: {
549
- // // layout: 2.3
550
- // // }
551
- // // },
552
- // ]
553
- // }
554
- ],
555
- };
556
- return uiSchema
557
- }
403
+ ],
404
+ };