impaktapps-ui-builder 0.0.595 → 0.0.751
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/dist/impaktapps-ui-builder.es.js +2200 -1675
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +14 -14
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildCard.d.ts +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildTable.d.ts +0 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildUiSchema.d.ts +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +23 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/button.d.ts +0 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +170 -82
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +55 -2
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +52 -23
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.d.ts +10 -301
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/progressBar.d.ts +6 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +50 -2
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/{lazyLoadingTable.d.ts → thoughtOfTheDay.d.ts} +6 -4
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/timer.d.ts +1 -14
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +1 -1
- package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.d.ts +3 -0
- package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.d.ts +3 -0
- package/dist/src/impaktapps-ui-builder/builder/services/component.d.ts +8 -2
- package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +5 -0
- package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +5 -0
- package/dist/src/impaktapps-ui-builder/builder/services/utils.d.ts +4 -4
- package/dist/src/impaktapps-ui-builder/lib/index.d.ts +1 -1
- package/package.json +5 -1
- package/src/impaktapps-ui-builder/builder/build/buildCard.ts +11 -7
- package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +21 -13
- package/src/impaktapps-ui-builder/builder/build/buildInputSlider.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildLeaderboard.ts +18 -13
- package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +10 -2
- package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +7 -16
- package/src/impaktapps-ui-builder/builder/build/buildProgressBar.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildRankCard.ts +4 -10
- package/src/impaktapps-ui-builder/builder/build/buildSchema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +19 -4
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +23 -29
- package/src/impaktapps-ui-builder/builder/build/buildTextArea.ts +6 -0
- package/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.ts +22 -0
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +27 -12
- package/src/impaktapps-ui-builder/builder/build/buildUplaodFile.ts +16 -19
- package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +10 -10
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +111 -56
- package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +1 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +188 -90
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +11 -11
- package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +3 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +44 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/file.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +13 -29
- package/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.ts +10 -367
- package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/progressBar.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/rankCard.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +3 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/runnerBoyProgressBar.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +45 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/thoughtOfTheDay.ts +14 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/timer.ts +2 -16
- package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +3 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +3 -3
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +37 -2
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +283 -182
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +4 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +344 -130
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +4 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +194 -80
- package/src/impaktapps-ui-builder/builder/services/component.ts +105 -26
- package/src/impaktapps-ui-builder/builder/services/event.ts +50 -9
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +32 -14
- package/src/impaktapps-ui-builder/builder/services/utils.ts +13 -13
- package/src/impaktapps-ui-builder/lib/index.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/events.ts +26 -23
- package/src/impaktapps-ui-builder/runtime/services/service.ts +52 -52
- package/src/impaktapps-ui-builder/builder/build/uischema/lazyLoadingTable.ts +0 -15
|
@@ -1,370 +1,13 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
type: "
|
|
2
|
+
type: "Control",
|
|
3
|
+
scope: "#/properties/path",
|
|
4
|
+
|
|
5
|
+
options: {
|
|
6
|
+
widget: "LeaderBoard",
|
|
7
|
+
},
|
|
3
8
|
config: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
label: "LeaderBoard",
|
|
8
|
-
divider: true,
|
|
9
|
-
},
|
|
10
|
-
style: {
|
|
11
|
-
},
|
|
12
|
-
wrapperStyle: {
|
|
13
|
-
position: "relative",
|
|
14
|
-
width: "100%",
|
|
15
|
-
},
|
|
16
|
-
componentsBoxStyle: {
|
|
17
|
-
display: "flex",
|
|
18
|
-
flexDirection: "column",
|
|
19
|
-
gap: "20px",
|
|
20
|
-
}
|
|
9
|
+
layout: { xs: 12, sm: 12, md: 12, lg: 12 },
|
|
10
|
+
main: {
|
|
11
|
+
},
|
|
21
12
|
},
|
|
22
|
-
|
|
23
|
-
{
|
|
24
|
-
type: "Control",
|
|
25
|
-
scope: "#/properties/leaderBoard/properties/firstImage",
|
|
26
|
-
config: {
|
|
27
|
-
main: {
|
|
28
|
-
url: "https://my.alfred.edu/zoom/_images/foster-lake.jpg",
|
|
29
|
-
},
|
|
30
|
-
style: {
|
|
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
|
-
|
|
49
|
-
},
|
|
50
|
-
layout: 6,
|
|
51
|
-
},
|
|
52
|
-
options: {
|
|
53
|
-
widget: "Image",
|
|
54
|
-
},
|
|
55
|
-
},
|
|
56
|
-
|
|
57
|
-
{
|
|
58
|
-
type: "Control",
|
|
59
|
-
scope: "#/properties/leaderBoard/properties/secondImage",
|
|
60
|
-
config: {
|
|
61
|
-
main: {
|
|
62
|
-
url: "https://my.alfred.edu/zoom/_images/foster-lake.jpg",
|
|
63
|
-
},
|
|
64
|
-
style: {
|
|
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
|
-
|
|
84
|
-
},
|
|
85
|
-
layout: 6,
|
|
86
|
-
},
|
|
87
|
-
options: {
|
|
88
|
-
widget: "Image",
|
|
89
|
-
},
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
type: "Control",
|
|
93
|
-
scope: "#/properties/leaderBoard/properties/thirdImage",
|
|
94
|
-
config: {
|
|
95
|
-
main: {
|
|
96
|
-
url: "https://my.alfred.edu/zoom/_images/foster-lake.jpg",
|
|
97
|
-
},
|
|
98
|
-
style: {
|
|
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
|
-
|
|
117
|
-
},
|
|
118
|
-
layout: 6,
|
|
119
|
-
},
|
|
120
|
-
options: {
|
|
121
|
-
widget: "Image",
|
|
122
|
-
},
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
type: "Control",
|
|
126
|
-
scope: "#/properties/leaderBoard/properties/firstName",
|
|
127
|
-
config: {
|
|
128
|
-
main: {
|
|
129
|
-
heading: "Satendra Raghav",
|
|
130
|
-
},
|
|
131
|
-
style: {
|
|
132
|
-
objectFit: "cover",
|
|
133
|
-
position: "absolute",
|
|
134
|
-
display: "flex",
|
|
135
|
-
justifyContent: "center",
|
|
136
|
-
alignItems: "center",
|
|
137
|
-
color: "black",
|
|
138
|
-
top: { xs: "190px", md: "270px" },
|
|
139
|
-
fontSize: { xs: "12px", md: "20px" },
|
|
140
|
-
left: 'calc(50% - 90px)',
|
|
141
|
-
width: "180px",
|
|
142
|
-
fontWeight: "bold",
|
|
143
|
-
borderRadius: "50%",
|
|
144
|
-
zIndex: 7
|
|
145
|
-
|
|
146
|
-
},
|
|
147
|
-
layout: 6,
|
|
148
|
-
},
|
|
149
|
-
options: {
|
|
150
|
-
widget: "Box",
|
|
151
|
-
},
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
type: "Control",
|
|
155
|
-
scope: "#/properties/leaderBoard/properties/secondName",
|
|
156
|
-
config: {
|
|
157
|
-
main: {
|
|
158
|
-
heading: "Satendra Raghav",
|
|
159
|
-
},
|
|
160
|
-
style: {
|
|
161
|
-
objectFit: "cover",
|
|
162
|
-
position: "absolute",
|
|
163
|
-
display: "flex",
|
|
164
|
-
justifyContent: "center",
|
|
165
|
-
alignItems: "center",
|
|
166
|
-
color: "black",
|
|
167
|
-
top: { xs: "240px", md: "320px" },
|
|
168
|
-
fontSize: { xs: "12px", md: "20px" },
|
|
169
|
-
left: 'calc(25% - 90px)',
|
|
170
|
-
width: "180px",
|
|
171
|
-
fontWeight: "bold",
|
|
172
|
-
borderRadius: "50%"
|
|
173
|
-
},
|
|
174
|
-
layout: 6,
|
|
175
|
-
},
|
|
176
|
-
options: {
|
|
177
|
-
widget: "Box",
|
|
178
|
-
},
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
type: "Control",
|
|
182
|
-
scope: "#/properties/leaderBoard/properties/thirdName",
|
|
183
|
-
config: {
|
|
184
|
-
main: {
|
|
185
|
-
heading: "Satendra Raghav",
|
|
186
|
-
},
|
|
187
|
-
style: {
|
|
188
|
-
objectFit: "cover",
|
|
189
|
-
position: "absolute",
|
|
190
|
-
display: "flex",
|
|
191
|
-
justifyContent: "center",
|
|
192
|
-
alignItems: "center",
|
|
193
|
-
color: "black",
|
|
194
|
-
top: { xs: "240px", md: "320px" },
|
|
195
|
-
fontSize: { xs: "12px", md: "20px" },
|
|
196
|
-
left: 'calc(75% - 90px)',
|
|
197
|
-
width: "180px",
|
|
198
|
-
fontWeight: "bold",
|
|
199
|
-
borderRadius: "50%"
|
|
200
|
-
},
|
|
201
|
-
layout: 6,
|
|
202
|
-
},
|
|
203
|
-
options: {
|
|
204
|
-
widget: "Box",
|
|
205
|
-
},
|
|
206
|
-
},
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
{
|
|
212
|
-
type: "Control",
|
|
213
|
-
scope: "#/properties/econd",
|
|
214
|
-
config: {
|
|
215
|
-
main: {
|
|
216
|
-
heading: "2",
|
|
217
|
-
},
|
|
218
|
-
style: {
|
|
219
|
-
objectFit: "cover",
|
|
220
|
-
position: "absolute",
|
|
221
|
-
display: "flex",
|
|
222
|
-
justifyContent: "center",
|
|
223
|
-
alignItems: "center",
|
|
224
|
-
textShadow: "2px 2px 5px #5065C7",
|
|
225
|
-
background: "green",
|
|
226
|
-
color: "white",
|
|
227
|
-
top: { xs: "225px", md: "280px" },
|
|
228
|
-
fontSize: { xs: "12px", md: "16px" },
|
|
229
|
-
left: { xs: 'calc(25% - 12px)', md: "calc(25% - 16px)" },
|
|
230
|
-
width: { xs: "20px", md: "40px" },
|
|
231
|
-
border: { xs: "2px solid rgb(179, 198, 255)", md: "5px solid rgb(179, 198, 255)" },
|
|
232
|
-
height: { xs: "20px", md: "40px" },
|
|
233
|
-
'@keyframes rotateAnimation': {
|
|
234
|
-
from: {
|
|
235
|
-
transform: 'rotate(0deg)',
|
|
236
|
-
},
|
|
237
|
-
to: {
|
|
238
|
-
transform: 'rotate(360deg)',
|
|
239
|
-
},
|
|
240
|
-
},
|
|
241
|
-
animation: 'rotateAnimation 4s infinite',
|
|
242
|
-
borderRadius: "50%",
|
|
243
|
-
zIndex: 5
|
|
244
|
-
|
|
245
|
-
},
|
|
246
|
-
layout: 6,
|
|
247
|
-
},
|
|
248
|
-
options: {
|
|
249
|
-
widget: "Box",
|
|
250
|
-
},
|
|
251
|
-
},
|
|
252
|
-
|
|
253
|
-
{
|
|
254
|
-
type: "Control",
|
|
255
|
-
scope: "#/properties/first",
|
|
256
|
-
config: {
|
|
257
|
-
main: {
|
|
258
|
-
heading: "1",
|
|
259
|
-
},
|
|
260
|
-
style: {
|
|
261
|
-
objectFit: "cover",
|
|
262
|
-
position: "absolute",
|
|
263
|
-
display: "flex",
|
|
264
|
-
justifyContent: "center",
|
|
265
|
-
alignItems: "center",
|
|
266
|
-
textShadow: "2px 2px 5px #5065C7",
|
|
267
|
-
background: "green",
|
|
268
|
-
color: "white",
|
|
269
|
-
top: { xs: "175px", md: "230px" },
|
|
270
|
-
fontSize: { xs: "12px", md: "16px" },
|
|
271
|
-
left: { xs: 'calc(50% - 12px)', md: "calc(50% - 16px)" },
|
|
272
|
-
'@keyframes rotateAnimation': {
|
|
273
|
-
from: {
|
|
274
|
-
transform: 'rotate(0deg)',
|
|
275
|
-
},
|
|
276
|
-
to: {
|
|
277
|
-
transform: 'rotate(360deg)',
|
|
278
|
-
},
|
|
279
|
-
},
|
|
280
|
-
animation: 'rotateAnimation 4s infinite',
|
|
281
|
-
width: { xs: "20px", md: "40px" },
|
|
282
|
-
border: { xs: "2px solid rgb(179, 198, 255)", md: "5px solid rgb(179, 198, 255)" },
|
|
283
|
-
height: { xs: "20px", md: "40px" },
|
|
284
|
-
borderRadius: "50%",
|
|
285
|
-
zIndex: 5
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
},
|
|
289
|
-
layout: 6,
|
|
290
|
-
},
|
|
291
|
-
options: {
|
|
292
|
-
widget: "Box",
|
|
293
|
-
},
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
type: "Control",
|
|
297
|
-
scope: "#/properties/third",
|
|
298
|
-
config: {
|
|
299
|
-
main: {
|
|
300
|
-
heading: "3",
|
|
301
|
-
},
|
|
302
|
-
style: {
|
|
303
|
-
objectFit: "cover",
|
|
304
|
-
position: "absolute",
|
|
305
|
-
display: "flex",
|
|
306
|
-
justifyContent: "center",
|
|
307
|
-
alignItems: "center",
|
|
308
|
-
textShadow: "2px 2px 5px #5065C7",
|
|
309
|
-
background: "green",
|
|
310
|
-
color: "white",
|
|
311
|
-
top: { xs: "225px", md: "280px" },
|
|
312
|
-
fontSize: { xs: "12px", md: "16px" },
|
|
313
|
-
left: { xs: 'calc(75% - 12px)', md: "calc(75% - 16px)" },
|
|
314
|
-
width: { xs: "20px", md: "40px" },
|
|
315
|
-
border: { xs: "2px solid rgb(179, 198, 255)", md: "5px solid rgb(179, 198, 255)" },
|
|
316
|
-
height: { xs: "20px", md: "40px" },
|
|
317
|
-
|
|
318
|
-
'@keyframes rotateAnimation': {
|
|
319
|
-
from: {
|
|
320
|
-
transform: 'rotate(0deg)',
|
|
321
|
-
},
|
|
322
|
-
to: {
|
|
323
|
-
transform: 'rotate(360deg)',
|
|
324
|
-
},
|
|
325
|
-
},
|
|
326
|
-
animation: 'rotateAnimation 4s infinite',
|
|
327
|
-
borderRadius: "50%",
|
|
328
|
-
zIndex: 5
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
},
|
|
332
|
-
layout: 6,
|
|
333
|
-
},
|
|
334
|
-
options: {
|
|
335
|
-
widget: "Box",
|
|
336
|
-
},
|
|
337
|
-
},
|
|
338
|
-
{
|
|
339
|
-
type: "Control",
|
|
340
|
-
scope: "#/properties/leaderBoard/properties/table",
|
|
341
|
-
options: {
|
|
342
|
-
widget: "Table",
|
|
343
|
-
|
|
344
|
-
},
|
|
345
|
-
elements: [],
|
|
346
|
-
config: {
|
|
347
|
-
style: {
|
|
348
|
-
tableHeadstyle: {
|
|
349
|
-
fontWeight: 900,
|
|
350
|
-
background: "rgb(179, 198, 255)"
|
|
351
|
-
},
|
|
352
|
-
top: { xs: "300px", sm: "300px", md: "390px", lg: "390px" },
|
|
353
|
-
// top:"390px",
|
|
354
|
-
border: "2px solid rgb(179, 198, 255)",
|
|
355
|
-
width: "95%",
|
|
356
|
-
left: "2.5%",
|
|
357
|
-
margin: "auto"
|
|
358
|
-
|
|
359
|
-
},
|
|
360
|
-
|
|
361
|
-
main: {
|
|
362
|
-
disableAction: true,
|
|
363
|
-
disableSelection: true,
|
|
364
|
-
|
|
365
|
-
},
|
|
366
|
-
},
|
|
367
|
-
|
|
368
|
-
}
|
|
369
|
-
],
|
|
370
|
-
};
|
|
13
|
+
};
|
|
@@ -19,7 +19,7 @@ export const refreshSectionUiSchema = {
|
|
|
19
19
|
widget: "InputField",
|
|
20
20
|
},
|
|
21
21
|
config: {
|
|
22
|
-
layout: { xs:
|
|
22
|
+
layout: { xs: 12, sm: 6, md: 4, lg: 4 },
|
|
23
23
|
main: {
|
|
24
24
|
label: "Value",
|
|
25
25
|
},
|
|
@@ -33,7 +33,7 @@ export const refreshSectionUiSchema = {
|
|
|
33
33
|
widget: "EmptyBox",
|
|
34
34
|
},
|
|
35
35
|
config: {
|
|
36
|
-
layout: { xs: 0, sm:
|
|
36
|
+
layout: { xs: 0, sm: 6, md: 4, lg: 4 },
|
|
37
37
|
main: {
|
|
38
38
|
|
|
39
39
|
},
|
|
@@ -47,7 +47,7 @@ export const refreshSectionUiSchema = {
|
|
|
47
47
|
widget: "EmptyBox",
|
|
48
48
|
},
|
|
49
49
|
config: {
|
|
50
|
-
layout: { xs: 0, sm:
|
|
50
|
+
layout: { xs: 0, sm: 0, md: 4, lg: 4 },
|
|
51
51
|
main: {
|
|
52
52
|
|
|
53
53
|
},
|
|
@@ -35,6 +35,29 @@ export const TableSection = (theme) => {
|
|
|
35
35
|
},
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
|
+
{
|
|
39
|
+
widget: {
|
|
40
|
+
type: "Control",
|
|
41
|
+
scope: "#/properties/Paste_Component",
|
|
42
|
+
|
|
43
|
+
options: {
|
|
44
|
+
widget: "IconButton",
|
|
45
|
+
},
|
|
46
|
+
config: {
|
|
47
|
+
main: {
|
|
48
|
+
// color: "info",
|
|
49
|
+
onClick: "copyPasteElement",
|
|
50
|
+
size: "small",
|
|
51
|
+
icon: "PasteIcon",
|
|
52
|
+
iconLabel: "Paste",
|
|
53
|
+
styleDefault: true,
|
|
54
|
+
},
|
|
55
|
+
style: {
|
|
56
|
+
mt: "6px",
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
}
|
|
60
|
+
},
|
|
38
61
|
]
|
|
39
62
|
},
|
|
40
63
|
disableAction: true,
|
|
@@ -95,7 +118,28 @@ export const TableSection = (theme) => {
|
|
|
95
118
|
},
|
|
96
119
|
},
|
|
97
120
|
},
|
|
98
|
-
}
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
header: "Copy",
|
|
124
|
+
field: "Copy_Component",
|
|
125
|
+
flex: 1,
|
|
126
|
+
widget: {
|
|
127
|
+
type: "Control",
|
|
128
|
+
scope: "#/properties/Copy_Component",
|
|
129
|
+
options: {
|
|
130
|
+
widget: "IconButton",
|
|
131
|
+
},
|
|
132
|
+
config: {
|
|
133
|
+
main: {
|
|
134
|
+
icon: "FileCopyIcon",
|
|
135
|
+
// color: "error",
|
|
136
|
+
onClick: "copyPasteElement",
|
|
137
|
+
styleDefault: true,
|
|
138
|
+
disabled: false
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
},
|
|
142
|
+
},
|
|
99
143
|
]
|
|
100
144
|
}]
|
|
101
145
|
}
|
|
@@ -8,25 +8,11 @@ export default {
|
|
|
8
8
|
layout: {
|
|
9
9
|
xs: 12,
|
|
10
10
|
sm: 12,
|
|
11
|
-
md:
|
|
12
|
-
lg:
|
|
11
|
+
md: 6,
|
|
12
|
+
lg: 6,
|
|
13
13
|
},
|
|
14
14
|
main : {},
|
|
15
15
|
style : {
|
|
16
|
-
digitContainer : {
|
|
17
|
-
borderRadius : "4px",
|
|
18
|
-
textShawdow : 'none',
|
|
19
|
-
width : "22%"
|
|
20
|
-
},
|
|
21
|
-
container : {
|
|
22
|
-
// backgroundColor : "rgb(249 249 249)",
|
|
23
|
-
backgroundColor : "#FFFFFF",
|
|
24
|
-
borderRadius : "18px"
|
|
25
|
-
},
|
|
26
|
-
|
|
27
|
-
containerLabelColor : {
|
|
28
|
-
color : "red"
|
|
29
|
-
}
|
|
30
16
|
}
|
|
31
17
|
}
|
|
32
18
|
}
|
|
@@ -18,7 +18,7 @@ export const ValidationSection = {
|
|
|
18
18
|
widget: "SelectInputField",
|
|
19
19
|
},
|
|
20
20
|
config: {
|
|
21
|
-
layout: { xs:
|
|
21
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
22
22
|
main: {
|
|
23
23
|
label: "Validation Type",
|
|
24
24
|
},
|
|
@@ -32,7 +32,7 @@ export const ValidationSection = {
|
|
|
32
32
|
widget: "InputField",
|
|
33
33
|
},
|
|
34
34
|
config: {
|
|
35
|
-
layout: { xs:
|
|
35
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
36
36
|
main: {
|
|
37
37
|
label: "Validation Value",
|
|
38
38
|
},
|
|
@@ -45,7 +45,7 @@ export const ValidationSection = {
|
|
|
45
45
|
widget: "EmptyBox"
|
|
46
46
|
},
|
|
47
47
|
config: {
|
|
48
|
-
layout: {xs: 0, sm: 4}
|
|
48
|
+
layout: {xs: 0, sm: 0, md: 4}
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
],
|
|
@@ -18,7 +18,7 @@ export const ValueTab = {
|
|
|
18
18
|
widget: "InputField",
|
|
19
19
|
},
|
|
20
20
|
config: {
|
|
21
|
-
layout: { xs:
|
|
21
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
22
22
|
main: {
|
|
23
23
|
label: "Label",
|
|
24
24
|
},
|
|
@@ -32,7 +32,7 @@ export const ValueTab = {
|
|
|
32
32
|
widget: "InputField",
|
|
33
33
|
},
|
|
34
34
|
config: {
|
|
35
|
-
layout: { xs:
|
|
35
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
36
36
|
main: {
|
|
37
37
|
label: "Value",
|
|
38
38
|
|
|
@@ -46,7 +46,7 @@ export const ValueTab = {
|
|
|
46
46
|
widget: "EmptyBox"
|
|
47
47
|
},
|
|
48
48
|
config: {
|
|
49
|
-
layout: { xs: 0, sm:
|
|
49
|
+
layout: { xs: 0, sm: 0, md: 4, lg: 4 },
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
],
|