impaktapps-ui-builder 0.0.412 → 0.0.591

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 (74) hide show
  1. package/dist/impaktapps-ui-builder.es.js +2170 -1539
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +14 -14
  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/buildConfig.d.ts +1 -1
  7. package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +35 -2
  8. package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +2 -2
  9. package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +18 -0
  10. package/dist/src/impaktapps-ui-builder/builder/build/uischema/button.d.ts +1 -6
  11. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +10 -12
  12. package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +15 -0
  13. package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +71 -122
  14. package/dist/src/impaktapps-ui-builder/builder/build/uischema/file.d.ts +6 -6
  15. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +4 -106
  16. package/dist/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.d.ts +58 -45
  17. package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +1 -0
  18. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +74 -99
  19. package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +17 -2
  20. package/dist/src/impaktapps-ui-builder/builder/build/uischema/valueTab.d.ts +17 -2
  21. package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +1 -0
  22. package/dist/src/impaktapps-ui-builder/builder/services/component.d.ts +4 -2
  23. package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +2 -1
  24. package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +3 -1
  25. package/dist/src/impaktapps-ui-builder/runtime/services/events.d.ts +1 -1
  26. package/dist/src/impaktapps-ui-builder/runtime/services/interface.d.ts +1 -0
  27. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +2 -1
  28. package/package.json +1 -1
  29. package/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.ts +1 -1
  30. package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +5 -5
  31. package/src/impaktapps-ui-builder/builder/build/buildDate.ts +1 -1
  32. package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +1 -1
  33. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +7 -2
  34. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +13 -2
  35. package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +1 -1
  36. package/src/impaktapps-ui-builder/builder/build/buildSchema.ts +0 -1
  37. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +1 -5
  38. package/src/impaktapps-ui-builder/builder/build/buildTable.ts +17 -1
  39. package/src/impaktapps-ui-builder/builder/build/buildTreeMap.ts +3 -0
  40. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -1
  41. package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +50 -27
  42. package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +3 -2
  43. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +86 -73
  44. package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +2 -7
  45. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +88 -90
  46. package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +30 -47
  47. package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +3 -13
  48. package/src/impaktapps-ui-builder/builder/build/uischema/emptyBox.ts +1 -1
  49. package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +34 -56
  50. package/src/impaktapps-ui-builder/builder/build/uischema/file.ts +2 -12
  51. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +7 -118
  52. package/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.ts +82 -72
  53. package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +1 -1
  54. package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +15 -11
  55. package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +1 -6
  56. package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +5 -7
  57. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +85 -101
  58. package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +1 -6
  59. package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +12 -12
  60. package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +13 -13
  61. package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +1 -0
  62. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +0 -2
  63. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +355 -165
  64. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +1 -1
  65. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +533 -315
  66. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +1 -0
  67. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +397 -264
  68. package/src/impaktapps-ui-builder/builder/services/component.ts +26 -9
  69. package/src/impaktapps-ui-builder/builder/services/event.ts +17 -7
  70. package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +19 -3
  71. package/src/impaktapps-ui-builder/builder/services/utils.ts +0 -1
  72. package/src/impaktapps-ui-builder/runtime/services/events.ts +31 -18
  73. package/src/impaktapps-ui-builder/runtime/services/interface.ts +1 -0
  74. package/src/impaktapps-ui-builder/runtime/services/service.ts +134 -15
@@ -7,13 +7,16 @@ export default {
7
7
  label: "LeaderBoard",
8
8
  divider: true,
9
9
  },
10
- style:{wrapperStyle:{
11
- height: {xs:850,sm:1000}
12
- }},
10
+ style: {
11
+ },
13
12
  wrapperStyle: {
14
13
  position: "relative",
15
14
  width: "100%",
16
- // height: {xs:800,sm:1000}
15
+ },
16
+ componentsBoxStyle: {
17
+ display: "flex",
18
+ flexDirection: "column",
19
+ gap: "20px",
17
20
  }
18
21
  },
19
22
  elements: [
@@ -24,23 +27,25 @@ export default {
24
27
  main: {
25
28
  url: "https://my.alfred.edu/zoom/_images/foster-lake.jpg",
26
29
  },
27
- containerStyle: {
28
- objectFit: "cover",
29
- position: "absolute",
30
- top: { xs: "90px", "md": "60px" },
31
- left: { "xs": "calc(50% - 50px)", "sm": "calc(50% - 50px)", "md": "calc(50% - 100px)" },
32
- width: { "xs": "100px", "sm": "100px", "md": "200px" },
33
- border: "5px solid rgb(179, 198, 255)",
34
- height: { "xs": "100px", "sm": "100px", "md": "200px" },
35
- borderRadius: "50%"
36
-
37
- },
38
30
  style: {
39
- objectFit: "cover",
40
- width: "100%",
41
- height: "100%",
42
- borderRadius: "50%"
43
-
31
+ imageStyle: {
32
+ objectFit: "cover",
33
+ width: "100%",
34
+ height: "100%",
35
+ borderRadius: "50%"
36
+ },
37
+ containerStyle: {
38
+ objectFit: "cover",
39
+ position: "absolute",
40
+ top: { xs: "90px", "md": "60px" },
41
+ left: { "xs": "calc(50% - 50px)", "sm": "calc(50% - 50px)", "md": "calc(50% - 100px)" },
42
+ width: { "xs": "100px", "sm": "100px", "md": "200px" },
43
+ border: "5px solid rgb(179, 198, 255)",
44
+ height: { "xs": "100px", "sm": "100px", "md": "200px" },
45
+ borderRadius: "50%"
46
+
47
+ },
48
+
44
49
  },
45
50
  layout: 6,
46
51
  },
@@ -48,7 +53,7 @@ export default {
48
53
  widget: "Image",
49
54
  },
50
55
  },
51
-
56
+
52
57
  {
53
58
  type: "Control",
54
59
  scope: "#/properties/leaderBoard/properties/secondImage",
@@ -56,23 +61,26 @@ export default {
56
61
  main: {
57
62
  url: "https://my.alfred.edu/zoom/_images/foster-lake.jpg",
58
63
  },
59
- containerStyle: {
60
- objectFit: "cover",
61
- position: "absolute",
62
- top: { xs: "160px", "md": "130px" },
63
- left: { "xs": "calc(25% - 45px)", "sm": "calc(25% - 45px)", "md": "calc(25% - 90px)" },
64
- width: { "xs": "80px", "sm": "80px", "md": "180px" },
65
- border: "5px solid rgb(179, 198, 255)",
66
- height: { "xs": "80px", "sm": "80px", "md": "180px" },
67
- borderRadius: "50%"
68
-
69
- },
70
64
  style: {
71
- objectFit: "cover",
72
- width: "100%",
73
- height: "100%",
74
- borderRadius: "50%"
75
-
65
+ imageStyle: {
66
+ objectFit: "cover",
67
+ width: "100%",
68
+ height: "100%",
69
+ borderRadius: "50%"
70
+
71
+ },
72
+ containerStyle: {
73
+ objectFit: "cover",
74
+ position: "absolute",
75
+ top: { xs: "160px", "md": "130px" },
76
+ left: { "xs": "calc(25% - 45px)", "sm": "calc(25% - 45px)", "md": "calc(25% - 90px)" },
77
+ width: { "xs": "80px", "sm": "80px", "md": "180px" },
78
+ border: "5px solid rgb(179, 198, 255)",
79
+ height: { "xs": "80px", "sm": "80px", "md": "180px" },
80
+ borderRadius: "50%"
81
+
82
+ },
83
+
76
84
  },
77
85
  layout: 6,
78
86
  },
@@ -87,23 +95,25 @@ export default {
87
95
  main: {
88
96
  url: "https://my.alfred.edu/zoom/_images/foster-lake.jpg",
89
97
  },
90
- containerStyle: {
91
- objectFit: "cover",
92
- position: "absolute",
93
- top: { xs: "160px", "md": "130px" },
94
- left: { "xs": "calc(75% - 42.5px)", "sm": "calc(75% - 42.5px)", "md": "calc(75% - 85px)" },
95
- width: { "xs": "80px", "sm": "80px", "md": "180px" },
96
- border: "5px solid rgb(179, 198, 255)",
97
- height: { "xs": "80px", "sm": "80px", "md": "180px" },
98
- borderRadius: "50%"
99
-
100
- },
101
98
  style: {
102
- objectFit: "cover",
103
- width: "100%",
104
- height: "100%",
105
- borderRadius: "50%"
106
-
99
+ imageStyle: {
100
+ objectFit: "cover",
101
+ width: "100%",
102
+ height: "100%",
103
+ borderRadius: "50%"
104
+ },
105
+ containerStyle: {
106
+ objectFit: "cover",
107
+ position: "absolute",
108
+ top: { xs: "160px", "md": "130px" },
109
+ left: { "xs": "calc(75% - 42.5px)", "sm": "calc(75% - 42.5px)", "md": "calc(75% - 85px)" },
110
+ width: { "xs": "80px", "sm": "80px", "md": "180px" },
111
+ border: "5px solid rgb(179, 198, 255)",
112
+ height: { "xs": "80px", "sm": "80px", "md": "180px" },
113
+ borderRadius: "50%"
114
+
115
+ },
116
+
107
117
  },
108
118
  layout: 6,
109
119
  },
@@ -132,7 +142,7 @@ export default {
132
142
  fontWeight: "bold",
133
143
  borderRadius: "50%",
134
144
  zIndex: 7
135
-
145
+
136
146
  },
137
147
  layout: 6,
138
148
  },
@@ -194,10 +204,10 @@ export default {
194
204
  widget: "Box",
195
205
  },
196
206
  },
197
-
198
-
199
-
200
-
207
+
208
+
209
+
210
+
201
211
  {
202
212
  type: "Control",
203
213
  scope: "#/properties/econd",
@@ -231,7 +241,7 @@ export default {
231
241
  animation: 'rotateAnimation 4s infinite',
232
242
  borderRadius: "50%",
233
243
  zIndex: 5
234
-
244
+
235
245
  },
236
246
  layout: 6,
237
247
  },
@@ -239,7 +249,7 @@ export default {
239
249
  widget: "Box",
240
250
  },
241
251
  },
242
-
252
+
243
253
  {
244
254
  type: "Control",
245
255
  scope: "#/properties/first",
@@ -273,8 +283,8 @@ export default {
273
283
  height: { xs: "20px", md: "40px" },
274
284
  borderRadius: "50%",
275
285
  zIndex: 5
276
-
277
-
286
+
287
+
278
288
  },
279
289
  layout: 6,
280
290
  },
@@ -304,7 +314,7 @@ export default {
304
314
  width: { xs: "20px", md: "40px" },
305
315
  border: { xs: "2px solid rgb(179, 198, 255)", md: "5px solid rgb(179, 198, 255)" },
306
316
  height: { xs: "20px", md: "40px" },
307
-
317
+
308
318
  '@keyframes rotateAnimation': {
309
319
  from: {
310
320
  transform: 'rotate(0deg)',
@@ -316,8 +326,8 @@ export default {
316
326
  animation: 'rotateAnimation 4s infinite',
317
327
  borderRadius: "50%",
318
328
  zIndex: 5
319
-
320
-
329
+
330
+
321
331
  },
322
332
  layout: 6,
323
333
  },
@@ -330,7 +340,7 @@ export default {
330
340
  scope: "#/properties/leaderBoard/properties/table",
331
341
  options: {
332
342
  widget: "Table",
333
-
343
+
334
344
  },
335
345
  elements: [],
336
346
  config: {
@@ -339,22 +349,22 @@ export default {
339
349
  fontWeight: 900,
340
350
  background: "rgb(179, 198, 255)"
341
351
  },
342
- position: "absolute",
343
352
  top: { xs: "300px", sm: "300px", md: "390px", lg: "390px" },
344
353
  // top:"390px",
345
354
  border: "2px solid rgb(179, 198, 255)",
346
355
  width: "95%",
347
- left: "2.5%"
348
-
356
+ left: "2.5%",
357
+ margin: "auto"
358
+
349
359
  },
350
-
360
+
351
361
  main: {
352
362
  disableAction: true,
353
363
  disableSelection: true,
354
-
364
+
355
365
  },
356
366
  },
357
-
367
+
358
368
  }
359
369
  ],
360
370
  };
@@ -6,7 +6,7 @@ export default {
6
6
  widget: "MultipleSelect",
7
7
  },
8
8
  config: {
9
- layout: { xs: 11, sm: 11, md: 5.5, lg: 5.5 },
9
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
10
10
  main: {
11
11
  label: "",
12
12
  type: "text",
@@ -19,12 +19,7 @@ export const refreshSectionUiSchema = {
19
19
  widget: "InputField",
20
20
  },
21
21
  config: {
22
- layout: {
23
- xs: 11,
24
- sm: 11,
25
- md: 5.5,
26
- lg: 5.5,
27
- },
22
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
28
23
  main: {
29
24
  label: "Value",
30
25
  },
@@ -38,12 +33,21 @@ export const refreshSectionUiSchema = {
38
33
  widget: "EmptyBox",
39
34
  },
40
35
  config: {
41
- layout: {
42
- xs: 11,
43
- sm: 11,
44
- md: 5.5,
45
- lg: 5.5,
36
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
37
+ main: {
38
+
46
39
  },
40
+ },
41
+ },
42
+ {
43
+ type: "Control",
44
+ scope: "#/properties/emptyBox",
45
+
46
+ options: {
47
+ widget: "EmptyBox",
48
+ },
49
+ config: {
50
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
47
51
  main: {
48
52
 
49
53
  },
@@ -6,12 +6,7 @@ export default {
6
6
  widget: "SelectInputField",
7
7
  },
8
8
  config: {
9
- "layout": {
10
- "xs": 11,
11
- "sm": 11,
12
- "md": 5.5,
13
- "lg": 5.5
14
- },
9
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
15
10
  main: {
16
11
  label: "",
17
12
  type: "text",
@@ -4,17 +4,15 @@ export default {
4
4
  options: {
5
5
  widget: "Table",
6
6
  },
7
- elements:[],
7
+ elements: [],
8
8
  config: {
9
9
  main: {
10
- onMount:"onMount",
11
- //@ts-ignore
12
- allRowData:[],
13
- downloadAllData:false,
10
+ onMount: "onMount",
11
+ enableExpandAll: true,
12
+ allRowData: [],
13
+ downloadAllData: false,
14
14
  columns: {
15
- //@ts-ignore
16
15
  dataColumns: [],
17
- //@ts-ignore
18
16
  actionColumns: [],
19
17
  },
20
18
  },
@@ -1,124 +1,108 @@
1
- export const TableSection = {
2
- type: "HorizontalLayout",
3
- elements: [
4
- {
5
- type: "WrapperLayout",
6
- config: {
7
- main: {
8
- // label: "Table Columns",
9
- // divider: true,
10
- },
11
- wrapperStyle: {
12
- border:"1px solid gray"
1
+ export const TableSection = (theme) => {
2
+ const uiSchema = {
3
+ type: "HorizontalLayout",
4
+ elements: [
5
+ {
6
+ type: "Control",
7
+ scope: "#/properties/elements",
8
+ options: {
9
+ widget: "Table",
10
+ },
11
+ config: {
12
+ main: {
13
+ headerIcons: {
14
+ elements: [
15
+ {
16
+ widget: {
17
+ type: "Control",
18
+ scope: "#/properties/New_Record",
19
+
20
+ options: {
21
+ widget: "IconButton",
22
+ },
23
+ config: {
24
+ main: {
25
+ color: "info",
26
+ onClick: "widgetAddClickHandler",
27
+ size: "small",
28
+ icon: "AddIcon",
29
+ iconLabel: "Add New",
30
+ styleDefault: true,
31
+ },
32
+ style: {
33
+ mt: "6px",
34
+ },
35
+ },
36
+ }
37
+ },
38
+ ]
13
39
  },
40
+ disableAction: true,
41
+ disableSelection: true,
42
+ enableDrag: true,
43
+
44
+ },
45
+ },
46
+ elements: [
47
+ {
48
+ accessorKey: "name",
49
+ header: "Name"
50
+ },
51
+ {
52
+ accessorKey: "type",
53
+ header: "Type"
14
54
  },
15
- elements: [
16
- {
55
+ {
56
+ header: "Edit Record",
57
+ field: "Reject_Records",
58
+ flex: 1,
59
+ widget: {
17
60
  type: "Control",
18
- scope: "#/properties/programType",
19
-
61
+ scope: "#/properties/RejectButton",
20
62
  options: {
21
- widget: "Box",
63
+ widget: "IconButton",
22
64
  },
23
65
  config: {
24
- layout: 8,
25
66
  main: {
26
- heading: "Components Table",
67
+ icon: "EditIcon",
68
+ color: "primary",
69
+ onClick: "editComponents",
70
+ tooltipMessage: "Reject This Record",
27
71
  },
72
+
28
73
  style: {
29
- fontFamily: "Roboto",
30
- fontWeight: "500",
31
- paddingLeft:"-10px",
32
- fontSize: "20px",},
74
+ color: theme.palette.primary.main,
75
+ },
33
76
  },
34
77
  },
35
- {
78
+ },
79
+ {
80
+ header: "Delete",
81
+ field: "Reject_Records",
82
+ flex: 1,
83
+ widget: {
36
84
  type: "Control",
37
- scope: "#/properties/Back_Button",
38
-
85
+ scope: "#/properties/RejectButton",
39
86
  options: {
40
87
  widget: "IconButton",
41
88
  },
42
89
  config: {
43
- layout: 3,
44
90
  main: {
45
- icon: "AddIcon",
46
- styleDefault: true,
47
- size: "small",
48
- onClick: "widgetAddClickHandler",
49
- tooltipMessage: "Add New",
50
- },
51
- style: {
52
- float: "right",
91
+ icon: "RejectIcon",
92
+ color: "error",
93
+ onClick: "deletePopUpComponent",
94
+ tooltipMessage: "Reject This Record",
53
95
  },
54
96
  },
55
97
  },
56
- {
57
- type: "Control",
58
- scope: "#/properties/elements",
59
- options: {
60
- widget: "Table",
61
- },
62
- config: {
63
- main: {
64
- disableAction: true,
65
- disableSelection: true,
66
- enableDrag: true,
67
-
68
- },
69
- },
70
- elements:[
71
- {
72
- accessorKey: "name",
73
- header: "Name"
74
- },
75
- {
76
- accessorKey: "type",
77
- header: "Type"
78
- },
79
- {
80
- header: "Edit Record",
81
- field: "Reject_Records",
82
- flex: 1,
83
- widget: {
84
- type: "Control",
85
- scope: "#/properties/RejectButton",
86
- options: {
87
- widget: "IconButton",
88
- },
89
- config: {
90
- main: {
91
- icon: "EditIcon",
92
- color: "primary",
93
- onClick: "editComponents",
94
- tooltipMessage: "Reject This Record",
95
- },
96
- },
97
- },
98
- },
99
- {
100
- header: "Delete",
101
- field: "Reject_Records",
102
- flex: 1,
103
- widget: {
104
- type: "Control",
105
- scope: "#/properties/RejectButton",
106
- options: {
107
- widget: "IconButton",
108
- },
109
- config: {
110
- main: {
111
- icon: "RejectIcon",
112
- color: "error",
113
- onClick: "deleteComponents",
114
- tooltipMessage: "Reject This Record",
115
- },
116
- },
117
- },
118
- }
119
- ]
120
- }]}
121
- ]}
98
+ }
99
+ ]
100
+ }]
101
+ }
102
+
103
+ return uiSchema
104
+ }
105
+ // ]}
122
106
 
123
107
  export const TableSectionSchema = {
124
108
  columns: {
@@ -6,12 +6,7 @@ export default {
6
6
  widget: "InputField",
7
7
  },
8
8
  config: {
9
- layout: {
10
- xs: 11,
11
- sm: 11,
12
- md: 5.5,
13
- lg: 5.5,
14
- },
9
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
15
10
  main: {
16
11
  label: "",
17
12
  },
@@ -18,12 +18,7 @@ export const ValidationSection = {
18
18
  widget: "SelectInputField",
19
19
  },
20
20
  config: {
21
- layout: {
22
- xs: 11,
23
- sm: 11,
24
- md: 5.5,
25
- lg: 5.5,
26
- },
21
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
27
22
  main: {
28
23
  label: "Validation Type",
29
24
  },
@@ -37,16 +32,21 @@ export const ValidationSection = {
37
32
  widget: "InputField",
38
33
  },
39
34
  config: {
40
- layout: {
41
- xs: 11,
42
- sm: 11,
43
- md: 5.5,
44
- lg: 5.5,
45
- },
35
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
46
36
  main: {
47
37
  label: "Validation Value",
48
38
  },
49
39
  },
40
+ },
41
+ {
42
+ type: "Control",
43
+ scope: "#/properties/emptyBox",
44
+ options: {
45
+ widget: "EmptyBox"
46
+ },
47
+ config: {
48
+ layout: {xs: 0, sm: 4}
49
+ }
50
50
  }
51
51
  ],
52
52
  },
@@ -6,7 +6,7 @@ export const ValueTab = {
6
6
  {
7
7
  type: "Control",
8
8
  scope: "#/properties/value",
9
- layout: 11.5,
9
+ layout: 12,
10
10
  options: {
11
11
  detail: {
12
12
  type: "HorizontalLayout",
@@ -18,12 +18,7 @@ export const ValueTab = {
18
18
  widget: "InputField",
19
19
  },
20
20
  config: {
21
- layout: {
22
- xs: 11,
23
- sm: 11,
24
- md: 5.5,
25
- lg: 5.5,
26
- },
21
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
27
22
  main: {
28
23
  label: "Label",
29
24
  },
@@ -37,18 +32,23 @@ export const ValueTab = {
37
32
  widget: "InputField",
38
33
  },
39
34
  config: {
40
- layout: {
41
- xs: 11,
42
- sm: 11,
43
- md: 5.5,
44
- lg: 5.5,
45
- },
35
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
46
36
  main: {
47
37
  label: "Value",
48
38
 
49
39
  },
50
40
  },
51
41
  },
42
+ {
43
+ type: "Control",
44
+ scope: "#/properties/emptyBox",
45
+ options: {
46
+ widget: "EmptyBox"
47
+ },
48
+ config: {
49
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
50
+ }
51
+ }
52
52
  ],
53
53
  },
54
54
  },
@@ -4,6 +4,7 @@ export default {
4
4
  main: {
5
5
  rowSpacing: 3,
6
6
  divider: true,
7
+ label: "Default Label",
7
8
  },
8
9
  defaultStyle: true,
9
10
  },