impaktapps-ui-builder 0.0.412 → 0.0.592-alpha.1

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 (79) hide show
  1. package/dist/impaktapps-ui-builder.es.js +2348 -1644
  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 +1 -1
  6. package/dist/src/impaktapps-ui-builder/builder/build/buildCard.d.ts +1 -1
  7. package/dist/src/impaktapps-ui-builder/builder/build/buildConfig.d.ts +1 -1
  8. package/dist/src/impaktapps-ui-builder/builder/build/buildUiSchema.d.ts +1 -1
  9. package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +35 -2
  10. package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +2 -2
  11. package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +20 -0
  12. package/dist/src/impaktapps-ui-builder/builder/build/uischema/button.d.ts +1 -6
  13. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +106 -87
  14. package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +15 -0
  15. package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +71 -122
  16. package/dist/src/impaktapps-ui-builder/builder/build/uischema/file.d.ts +6 -6
  17. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +4 -106
  18. package/dist/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.d.ts +58 -45
  19. package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +1 -0
  20. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +74 -99
  21. package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +17 -2
  22. package/dist/src/impaktapps-ui-builder/builder/build/uischema/valueTab.d.ts +17 -2
  23. package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +1 -0
  24. package/dist/src/impaktapps-ui-builder/builder/services/component.d.ts +4 -2
  25. package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +2 -1
  26. package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +3 -1
  27. package/dist/src/impaktapps-ui-builder/runtime/services/events.d.ts +1 -1
  28. package/dist/src/impaktapps-ui-builder/runtime/services/interface.d.ts +1 -0
  29. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +2 -1
  30. package/package.json +1 -1
  31. package/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.ts +1 -1
  32. package/src/impaktapps-ui-builder/builder/build/buildCard.ts +6 -6
  33. package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +5 -5
  34. package/src/impaktapps-ui-builder/builder/build/buildDate.ts +1 -1
  35. package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +1 -1
  36. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +7 -2
  37. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +13 -2
  38. package/src/impaktapps-ui-builder/builder/build/buildProgressBar.ts +1 -1
  39. package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +1 -1
  40. package/src/impaktapps-ui-builder/builder/build/buildSchema.ts +0 -1
  41. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +1 -5
  42. package/src/impaktapps-ui-builder/builder/build/buildTable.ts +17 -1
  43. package/src/impaktapps-ui-builder/builder/build/buildTreeMap.ts +3 -0
  44. package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +7 -7
  45. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -1
  46. package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +50 -27
  47. package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +3 -2
  48. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +100 -70
  49. package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +2 -7
  50. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +114 -74
  51. package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +30 -47
  52. package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +4 -14
  53. package/src/impaktapps-ui-builder/builder/build/uischema/emptyBox.ts +1 -1
  54. package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +34 -56
  55. package/src/impaktapps-ui-builder/builder/build/uischema/file.ts +2 -12
  56. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +7 -118
  57. package/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.ts +78 -69
  58. package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +1 -1
  59. package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +15 -11
  60. package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +1 -6
  61. package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +5 -7
  62. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +85 -101
  63. package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +1 -6
  64. package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +12 -12
  65. package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +13 -13
  66. package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +1 -0
  67. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +0 -2
  68. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +346 -172
  69. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +1 -1
  70. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +540 -315
  71. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +1 -0
  72. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +388 -264
  73. package/src/impaktapps-ui-builder/builder/services/component.ts +26 -9
  74. package/src/impaktapps-ui-builder/builder/services/event.ts +42 -6
  75. package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +19 -3
  76. package/src/impaktapps-ui-builder/builder/services/utils.ts +0 -1
  77. package/src/impaktapps-ui-builder/runtime/services/events.ts +31 -18
  78. package/src/impaktapps-ui-builder/runtime/services/interface.ts +1 -0
  79. package/src/impaktapps-ui-builder/runtime/services/service.ts +135 -15
@@ -1,80 +1,27 @@
1
- export const componentBasicUiSchema: any = {
1
+ export const componentBasicUiSchema: any = (theme)=>{
2
+ const uiSchema = {
2
3
  type: "HorizontalLayout",
4
+ heading: "Component",
3
5
  elements: [
4
6
  {
5
- type: "WrapperLayout",
7
+ type: "Control",
8
+ scope: "#/properties/pageName",
9
+
10
+ options: {
11
+ widget: "Box",
12
+ },
6
13
  config: {
14
+ layout: 12,
7
15
  main: {
8
- rowSpacing: 1,
9
- header:true
10
- },
11
- defaultStyle:true
12
- },
13
- elements: [
14
-
15
- {
16
- type: "Control",
17
- scope: "#/properties/Component",
18
-
19
- options: {
20
- widget: "Box",
21
- },
22
- config: {
23
- layout: {xs:12,sm:12,md:2},
24
- main: {
25
- heading: "Component",
26
- },
27
- style:{
28
- "float":"left",
29
- }
30
- },
31
- },
32
-
33
- {
34
- type: "Control",
35
- scope: "#/properties/pageName",
36
-
37
- options: {
38
- widget: "Box",
39
- },
40
- config: {
41
- layout: {xs:7,sm:7,md:9},
42
- main: {
43
- heading: " ",
44
- },
45
- style: {
46
- float: "right",
47
- width:"auto",
48
- fontSize:"12px",
49
- color:"gray",
50
- paddingTop:"10px"
51
- },
52
- },
16
+ heading: " ",
53
17
  },
54
-
55
- {
56
- type: "Control",
57
- scope: "#/properties/Back_Button",
58
-
59
- options: {
60
- widget: "IconButton",
61
- },
62
- config: {
63
- layout: {xs:2,sm:2,md:0.5},
64
- main: {
65
- icon: "BackIcon",
66
- styleDefault: true,
67
- size: "small",
68
- onClick: "backHandler",
69
- tooltipMessage: "Back",
70
- },
71
- style: {
72
- float: "right",
73
- },
74
- },
18
+ style: {
19
+ marginLeft: theme.spacing(3),
20
+ width:"auto",
21
+ fontSize:"12px",
22
+ color:"gray",
75
23
  },
76
-
77
- ],
24
+ },
78
25
  },
79
26
  {
80
27
  type: "TabLayout",
@@ -98,7 +45,7 @@ export const componentBasicUiSchema: any = {
98
45
  widget: "SelectInputField",
99
46
  },
100
47
  config: {
101
- layout: { xs: 12, sm: 12, md: 6, lg: 6 },
48
+ layout: { xs: 6, sm: 6, md: 4, lg: 4 },
102
49
  main: {
103
50
  label: "Type",
104
51
  },
@@ -112,12 +59,7 @@ export const componentBasicUiSchema: any = {
112
59
  widget: "InputField",
113
60
  },
114
61
  config: {
115
- layout: {
116
- xs: 12,
117
- sm: 12,
118
- md: 6,
119
- lg: 6,
120
- },
62
+ layout: { xs: 6, sm: 6, md: 4, lg: 4 },
121
63
  main: {
122
64
  label: "Name",
123
65
  options: [],
@@ -134,12 +76,7 @@ export const componentBasicUiSchema: any = {
134
76
  widget: "InputField",
135
77
  },
136
78
  config: {
137
- layout: {
138
- xs: 12,
139
- sm: 12,
140
- md: 6,
141
- lg: 6,
142
- },
79
+ layout: { xs: 6, sm: 6, md: 4, lg: 4 },
143
80
  main: {
144
81
  label: "Label",
145
82
  options: [],
@@ -155,12 +92,7 @@ export const componentBasicUiSchema: any = {
155
92
  widget: "SelectInputField",
156
93
  },
157
94
  config: {
158
- layout: {
159
- xs: 12,
160
- sm: 12,
161
- md: 6,
162
- lg: 6,
163
- },
95
+ layout: { xs: 6, sm: 6, md: 4, lg: 4 },
164
96
  main: {
165
97
  label: "Column Format",
166
98
 
@@ -171,7 +103,17 @@ export const componentBasicUiSchema: any = {
171
103
  type: "Control",
172
104
  scope: "#/properties/proc",
173
105
  config: {
174
- layout: { xs: 11, sm: 11, md: 6, lg: 6 },
106
+ layout: { xs: 0, sm: 0, md: 4, lg: 4 },
107
+ },
108
+ options: {
109
+ widget: "EmptyBox",
110
+ },
111
+ },
112
+ {
113
+ type: "Control",
114
+ scope: "#/properties/proc",
115
+ config: {
116
+ layout: { xs: 0, sm: 0, md: 4, lg: 4 },
175
117
  },
176
118
  options: {
177
119
  widget: "EmptyBox",
@@ -180,7 +122,7 @@ export const componentBasicUiSchema: any = {
180
122
  {
181
123
  type: "Control",
182
124
  scope: "#/properties/layout",
183
- layout: 11.5,
125
+ layout: 12,
184
126
  options: {
185
127
  detail: {
186
128
  type: "HorizontalLayout",
@@ -192,12 +134,7 @@ export const componentBasicUiSchema: any = {
192
134
  widget: "SelectInputField",
193
135
  },
194
136
  config: {
195
- layout: {
196
- xs: 11,
197
- sm: 11,
198
- md: 5.5,
199
- lg: 5.5,
200
- },
137
+ layout: { xs: 6, sm: 6, md: 4, lg: 4 },
201
138
  main: {
202
139
  label: "Screen Size",
203
140
 
@@ -212,12 +149,7 @@ export const componentBasicUiSchema: any = {
212
149
  widget: "InputField",
213
150
  },
214
151
  config: {
215
- layout: {
216
- xs: 11,
217
- sm: 11,
218
- md: 5.5,
219
- lg: 5.5,
220
- },
152
+ layout: { xs: 6, sm: 6, md: 4, lg: 4 },
221
153
  main: {
222
154
  label: "Value",
223
155
  type:"number",
@@ -228,6 +160,16 @@ export const componentBasicUiSchema: any = {
228
160
  },
229
161
  },
230
162
  },
163
+ {
164
+ type: "Control",
165
+ scope: "#/properties/proc",
166
+ config: {
167
+ layout: { xs: 0, sm: 0, md: 4, lg: 4 },
168
+ },
169
+ options: {
170
+ widget: "EmptyBox",
171
+ },
172
+ },
231
173
  ],
232
174
  },
233
175
  },
@@ -236,16 +178,201 @@ export const componentBasicUiSchema: any = {
236
178
  },
237
179
  ],
238
180
  },
239
-
240
181
  {
241
182
  type: "Control",
242
- scope: "#/properties/proc",
183
+ scope: "#/properties/popUpComponentSection",
184
+ options: {
185
+ widget: "PopUp"
186
+ },
187
+ config: {
188
+ layout: {
189
+ xs: 12,
190
+ sm: 12,
191
+ md: 12,
192
+ lg: 12,
193
+ },
194
+ main: {
195
+ },
196
+ style: {
197
+ "& .MuiPaper-root":{
198
+ width: '30%',
199
+ },
200
+ "& .MuiTypography-root":{
201
+ padding: 0
202
+ },
203
+ }
204
+ },
205
+ elements:
206
+ [
207
+ {
208
+ type: "Control",
209
+ scope: "#/properties/label",
210
+ options: {
211
+ widget: "Box",
212
+ },
213
+ config: {
214
+ layout: 12,
215
+ main: {
216
+ heading: "Are you sure you want to delete ?",
217
+ },
218
+ style:{
219
+ marginTop: "-40px"
220
+ }
221
+ },
222
+ },
223
+ {
224
+ type: "Control",
225
+ scope: "#/properties/EmptyBox",
226
+ options: {
227
+ widget: "EmptyBox",
228
+ },
229
+ config: {
230
+ main:{},
231
+ layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 },
232
+ },
233
+ },
234
+ {
235
+ type: "Control",
236
+ scope: "#/properties/ConfirmDeleteCompButton",
237
+ options: {
238
+ widget: "Button",
239
+ },
240
+ config: {
241
+ layout: 3,
242
+ main: {
243
+ name: "Yes",
244
+ startIcon: "ApproveIcon",
245
+ variant: "contained",
246
+ color: "error",
247
+ type: "text",
248
+ onClick: "deleteComponents",
249
+ size: "small",
250
+ },
251
+ },
252
+ },
253
+ {
254
+ type: "Control",
255
+ scope: "#/properties/CancelDeleteCompButton",
256
+ options: {
257
+ widget: "Button",
258
+ },
259
+ config: {
260
+ layout: 3,
261
+ main: {
262
+ name: "No",
263
+ startIcon: "ApproveIcon",
264
+ variant: "contained",
265
+ color: "info",
266
+ type: "text",
267
+ onClick: "deletePopUpComponent",
268
+ size: "small",
269
+ },
270
+ },
271
+ },
272
+ ]
273
+ },
274
+ {
275
+ type: "Control",
276
+ scope: "#/properties/popUpEventSection",
277
+ options: {
278
+ widget: "PopUp"
279
+ },
243
280
  config: {
244
- layout: { xs: 11, sm: 11, md: 6, lg: 6 },
281
+ layout: {
282
+ xs: 12,
283
+ sm: 12,
284
+ md: 12,
285
+ lg: 12,
286
+ },
287
+ main: {
288
+ },
289
+ style: {
290
+ "& .MuiPaper-root":{
291
+ width: '30%',
292
+ },
293
+ "& .MuiTypography-root":{
294
+ padding: 0
295
+ },
296
+ }
245
297
  },
298
+ elements:
299
+ [
300
+ {
301
+ type: "Control",
302
+ scope: "#/properties/label",
303
+ options: {
304
+ widget: "Box",
305
+ },
306
+ config: {
307
+ layout: 12,
308
+ main: {
309
+ heading: "Are you sure you want to delete ?",
310
+ },
311
+ style:{
312
+ marginTop: "-40px"
313
+ }
314
+ },
315
+ },
316
+ {
317
+ type: "Control",
318
+ scope: "#/properties/EmptyBox",
319
+ options: {
320
+ widget: "EmptyBox",
321
+ },
322
+ config: {
323
+ main:{},
324
+ layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 },
325
+ },
326
+ },
327
+ {
328
+ type: "Control",
329
+ scope: "#/properties/ConfirmDeleteEventButton",
330
+ options: {
331
+ widget: "Button",
332
+ },
333
+ config: {
334
+ layout: 3,
335
+ main: {
336
+ name: "Yes",
337
+ startIcon: "ApproveIcon",
338
+ variant: "contained",
339
+ color: "info",
340
+ type: "text",
341
+ onClick: "deleteEvent",
342
+ size: "small",
343
+ },
344
+ },
345
+ },
346
+ {
347
+ type: "Control",
348
+ scope: "#/properties/CancelDeleteEventButton",
349
+ options: {
350
+ widget: "Button",
351
+ },
352
+ config: {
353
+ layout: 3,
354
+ main: {
355
+ name: "No",
356
+ startIcon: "ApproveIcon",
357
+ variant: "contained",
358
+ color: "info",
359
+ type: "text",
360
+ onClick: "deletePopUpEvent",
361
+ size: "small",
362
+ },
363
+ },
364
+ },
365
+ ]
366
+ },
367
+ {
368
+ type: "Control",
369
+ scope: "#/properties/EmptyBox",
246
370
  options: {
247
371
  widget: "EmptyBox",
248
372
  },
373
+ config: {
374
+ layout: { xs: 4, sm: 8 },
375
+ },
249
376
  },
250
377
  {
251
378
  type: "Control",
@@ -255,24 +382,15 @@ export const componentBasicUiSchema: any = {
255
382
  },
256
383
 
257
384
  config: {
258
- layout: {
259
- xs: 11,
260
- sm: 11,
261
- md: 2.5,
262
- lg: 2.5,
263
- },
385
+ layout: { xs: 4, sm: 2 },
264
386
  main: {
265
387
  name: "Ok",
266
388
  startIcon: "ApproveIcon",
267
389
  variant: "contained",
268
- color: "info",
390
+ // color: "info",
269
391
  type: "text",
270
392
  onClick: "okHandler",
271
- size: "small",
272
- },
273
- style: {
274
- marginBottom: "8px",
275
- float: "right",
393
+ size: "medium",
276
394
  },
277
395
  },
278
396
  },
@@ -284,24 +402,15 @@ export const componentBasicUiSchema: any = {
284
402
  },
285
403
 
286
404
  config: {
287
- layout: {
288
- xs: 11,
289
- sm: 11,
290
- md: 2.5,
291
- lg: 2.5,
292
- },
405
+ layout: { xs: 4, sm: 2 },
293
406
  main: {
294
407
  name: "Save & Exit",
295
408
  startIcon: "ApproveIcon",
296
409
  variant: "contained",
297
- color: "info",
410
+ // color: "info",
298
411
  type: "text",
299
412
  onClick: "saveHandler",
300
- size: "small",
301
- },
302
- style: {
303
- marginBottom: "8px",
304
- float: "right",
413
+ size: "medium",
305
414
  },
306
415
  },
307
416
  },
@@ -312,48 +421,113 @@ export const componentBasicUiSchema: any = {
312
421
  widget: "Notify",
313
422
  },
314
423
  layout: 6,
424
+ },
425
+ {
426
+ type: "HorizontalLayout",
427
+ config: {
428
+ main: {
429
+ direction: 'row'
430
+ },
431
+ style: {
432
+ flexDirection: "row",
433
+ position: "absolute",
434
+ bottom: 0,
435
+ marginBottom: '-8px',
436
+ height: 'fit-content',
437
+ overflow: 'hidden',
438
+ zIndex: 1000,
439
+ width: 'inherit'
440
+ }
441
+ },
442
+ elements: [
443
+ {
444
+
445
+ type: "Control",
446
+ scope: "#/properties/FooterText",
447
+ options: {
448
+ widget: "Box",
449
+ },
450
+ config: {
451
+ main: {
452
+ heading: "Copywriter@ACT21.IO"
453
+ },
454
+ style: {
455
+ color: theme?.palette?.text.disabled || "#AFAFAF",
456
+ fontSize: '12px',
457
+ textAlign: 'center',
458
+ lineHeight: 1,
459
+ width: 'fit-content',
460
+ left: '50%',
461
+ position: 'relative',
462
+ margin: 0,
463
+ flexGrow: 1,
464
+ height: 0
465
+ }
466
+ },
467
+ },
468
+ {
469
+ type: "Control",
470
+ scope: "#/properties/backIcon",
471
+ options: {
472
+ widget: "Box",
473
+ },
474
+ config: {
475
+ main: {
476
+ iconName: 'PrevIcon',
477
+ onClick: "backHandler",
478
+ width: 'fit-content',
479
+ },
480
+ style: {
481
+ fill: theme.palette.primary.main,
482
+ width: 20,
483
+ height: 0,
484
+ margin: 0,
485
+ top: 0,
486
+ right: {xs: '12px', sm: '84px'},
487
+ position: 'absolute',
488
+ fontSize: '12px',
489
+ cursor: 'pointer',
490
+ ':hover': {
491
+ fill: theme.palette.primary.dark,
492
+ }
493
+ }
494
+ }
495
+ },
496
+ {
497
+ type: "Control",
498
+ scope: "#/properties/text",
499
+
500
+ options: {
501
+ widget: "Box",
502
+ },
503
+ config: {
504
+ main: {
505
+ heading: "Previous Page",
506
+ onClick: "backHandler"
507
+ },
508
+ style: {
509
+ display: {xs: 'none', sm: "flex"},
510
+ textAlign: 'left',
511
+ lineHeight: 1,
512
+ height: 0,
513
+ width: 'fit-content',
514
+ color: theme.palette.primary.main,
515
+ fontSize: "12px",
516
+ cursor: 'pointer',
517
+ marginLeft: '2px',
518
+ marginRight: 0,
519
+ top: 3,
520
+ right: '12px',
521
+ position: 'absolute',
522
+ ':hover': {
523
+ color: theme.palette.primary.dark,
524
+ }
525
+ }
526
+ },
527
+ },
528
+ ]
315
529
  }
316
530
  ],
317
531
  };
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
- // {
336
- // type: "Control",
337
- // scope: "#/properties/homeBtn",
338
-
339
- // options: {
340
- // widget: "Button",
341
- // },
342
- // config: {
343
- // layout: {xs:2,sm:2,md:1},
344
- // main: {
345
- // name: "🏠",
346
- // },
347
- // style: {
348
- // marginRight:'auto',
349
- // marginLeft:"auto",
350
- // width:"20px",
351
-
352
- // // background:"inherit",
353
- // // boxShadow:"none",
354
- // float:"left",
355
- // borderRadius:"50%"
356
-
357
- // },
358
- // },
359
- // },
532
+ return uiSchema
533
+ }
@@ -42,5 +42,5 @@ export const PageMasterSchema = {
42
42
  },
43
43
  }
44
44
  },
45
- required:["template","name"]
45
+ required:["template","name", "label"]
46
46
  }