impaktapps-ui-builder 0.0.100 → 0.0.101
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 +1825 -1436
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +16 -16
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.d.ts +1 -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 +90 -23
- 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 -22
- 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/thoughtOfTheDay.d.ts +17 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/timer.d.ts +1 -14
- 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 +1 -1
- package/package.json +5 -1
- package/src/impaktapps-ui-builder/builder/build/buildCard.ts +7 -3
- package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +18 -14
- 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 +4 -15
- package/src/impaktapps-ui-builder/builder/build/buildRankCard.ts +4 -10
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +16 -4
- package/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.ts +22 -0
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +7 -0
- package/src/impaktapps-ui-builder/builder/build/buildUplaodFile.ts +16 -19
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +17 -10
- package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +0 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +102 -46
- package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +44 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +13 -28
- package/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.ts +10 -366
- 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/runnerBoyProgressBar.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +45 -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/elements/UiSchema/Component/schema.ts +5 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +271 -154
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +4 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +327 -120
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +4 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +188 -65
- package/src/impaktapps-ui-builder/builder/services/component.ts +94 -8
- package/src/impaktapps-ui-builder/builder/services/event.ts +19 -4
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +20 -2
- package/src/impaktapps-ui-builder/builder/services/utils.ts +2 -2
- package/src/impaktapps-ui-builder/runtime/services/events.ts +23 -19
|
@@ -178,6 +178,106 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
178
178
|
},
|
|
179
179
|
],
|
|
180
180
|
},
|
|
181
|
+
{
|
|
182
|
+
type: "HorizontalLayout",
|
|
183
|
+
config: {
|
|
184
|
+
layout:{xs:12,sm: 6}
|
|
185
|
+
},
|
|
186
|
+
elements: [
|
|
187
|
+
{
|
|
188
|
+
type: "Control",
|
|
189
|
+
scope: "#/properties/RemoveItemButton",
|
|
190
|
+
options: {
|
|
191
|
+
widget: "IconButton",
|
|
192
|
+
},
|
|
193
|
+
config: {
|
|
194
|
+
layout: { xs: 1, sm: 1 },
|
|
195
|
+
main: {
|
|
196
|
+
onClick: "RemoveItemButton",
|
|
197
|
+
size: "large",
|
|
198
|
+
icon: "RejectIcon",
|
|
199
|
+
styleDefault: true,
|
|
200
|
+
},
|
|
201
|
+
style:{
|
|
202
|
+
marginLeft: "-10px"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
|
|
207
|
+
{
|
|
208
|
+
type: "Control",
|
|
209
|
+
scope: "#/properties/copiedElementDetails",
|
|
210
|
+
|
|
211
|
+
options: {
|
|
212
|
+
widget: "Box",
|
|
213
|
+
},
|
|
214
|
+
config: {
|
|
215
|
+
layout: { xs: 6, sm: 6 },
|
|
216
|
+
main: {
|
|
217
|
+
heading: "No element copied",
|
|
218
|
+
},
|
|
219
|
+
style: {
|
|
220
|
+
color: "#535557",
|
|
221
|
+
marginLeft: "-10px",
|
|
222
|
+
fontSize: "12px",
|
|
223
|
+
marginTop: "4px"
|
|
224
|
+
},
|
|
225
|
+
},
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
type: "Control",
|
|
229
|
+
scope: "#/properties/EmptyBox",
|
|
230
|
+
options: {
|
|
231
|
+
widget: "EmptyBox",
|
|
232
|
+
},
|
|
233
|
+
config: {
|
|
234
|
+
layout: { xs: 1, sm: 5 },
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
type: "Control",
|
|
241
|
+
scope: "#/properties/btn",
|
|
242
|
+
options: {
|
|
243
|
+
widget: "Button",
|
|
244
|
+
},
|
|
245
|
+
|
|
246
|
+
config: {
|
|
247
|
+
layout: { xs: 4, sm: 2 },
|
|
248
|
+
main: {
|
|
249
|
+
name: "Ok",
|
|
250
|
+
startIcon: "ApproveIcon",
|
|
251
|
+
variant: "contained",
|
|
252
|
+
// color: "info",
|
|
253
|
+
type: "text",
|
|
254
|
+
onClick: "okHandler",
|
|
255
|
+
size: "medium",
|
|
256
|
+
},
|
|
257
|
+
},
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
type: "Control",
|
|
261
|
+
scope: "#/properties/btnSubmit",
|
|
262
|
+
options: {
|
|
263
|
+
widget: "Button",
|
|
264
|
+
},
|
|
265
|
+
|
|
266
|
+
config: {
|
|
267
|
+
layout: { xs: 4, sm: 2 },
|
|
268
|
+
main: {
|
|
269
|
+
name: "Save & Exit",
|
|
270
|
+
startIcon: "ApproveIcon",
|
|
271
|
+
variant: "contained",
|
|
272
|
+
// color: "info",
|
|
273
|
+
type: "text",
|
|
274
|
+
onClick: "saveHandler",
|
|
275
|
+
size: "medium",
|
|
276
|
+
},
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
|
|
280
|
+
|
|
181
281
|
{
|
|
182
282
|
type: "Control",
|
|
183
283
|
scope: "#/properties/popUpComponentSection",
|
|
@@ -192,21 +292,16 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
192
292
|
lg: 12,
|
|
193
293
|
},
|
|
194
294
|
main: {
|
|
295
|
+
title: "WARNING!"
|
|
195
296
|
},
|
|
196
297
|
style: {
|
|
197
|
-
"& .MuiPaper-root":{
|
|
198
|
-
width: '30%',
|
|
199
|
-
},
|
|
200
|
-
"& .MuiTypography-root":{
|
|
201
|
-
padding: 0
|
|
202
|
-
},
|
|
203
298
|
}
|
|
204
299
|
},
|
|
205
300
|
elements:
|
|
206
301
|
[
|
|
207
302
|
{
|
|
208
303
|
type: "Control",
|
|
209
|
-
scope: "#/properties/
|
|
304
|
+
scope: "#/properties/popupText",
|
|
210
305
|
options: {
|
|
211
306
|
widget: "Box",
|
|
212
307
|
},
|
|
@@ -216,58 +311,96 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
216
311
|
heading: "Are you sure you want to delete ?",
|
|
217
312
|
},
|
|
218
313
|
style:{
|
|
219
|
-
marginTop: "-
|
|
314
|
+
marginTop: "-20px",
|
|
315
|
+
fontSize: "20px",
|
|
316
|
+
"&.MuiTypography-root": {
|
|
317
|
+
padding: "10px 30px 20px 30px",
|
|
318
|
+
textAlign: "center",
|
|
319
|
+
lineHeight: "1"
|
|
320
|
+
}
|
|
220
321
|
}
|
|
221
322
|
},
|
|
222
323
|
},
|
|
223
324
|
{
|
|
224
|
-
type: "
|
|
225
|
-
scope: "#/properties/EmptyBox",
|
|
226
|
-
options: {
|
|
227
|
-
widget: "EmptyBox",
|
|
228
|
-
},
|
|
325
|
+
type: "WrapperLayout",
|
|
229
326
|
config: {
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
type: "Control",
|
|
236
|
-
scope: "#/properties/ConfirmDeleteCompButton",
|
|
237
|
-
options: {
|
|
238
|
-
widget: "Button",
|
|
327
|
+
layout: 12,
|
|
328
|
+
main: {},
|
|
329
|
+
|
|
239
330
|
},
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
331
|
+
elements: [
|
|
332
|
+
{
|
|
333
|
+
type: "Control",
|
|
334
|
+
scope: "#/properties/CancelDeleteCompButton",
|
|
335
|
+
options: {
|
|
336
|
+
widget: "Button",
|
|
337
|
+
},
|
|
338
|
+
config: {
|
|
339
|
+
layout: 6,
|
|
340
|
+
main: {
|
|
341
|
+
name: "No",
|
|
342
|
+
startIcon: "ApproveIcon",
|
|
343
|
+
variant: "contained",
|
|
344
|
+
color: "info",
|
|
345
|
+
type: "text",
|
|
346
|
+
onClick: "deletePopUpComponent",
|
|
347
|
+
size: "large",
|
|
348
|
+
},
|
|
349
|
+
style: {
|
|
350
|
+
position: "absolute",
|
|
351
|
+
bottom: 0,
|
|
352
|
+
left: 0,
|
|
353
|
+
width: "50%",
|
|
354
|
+
borderRadius: 0,
|
|
355
|
+
boxShadow: 0,
|
|
356
|
+
backgroundColor: "transparent",
|
|
357
|
+
color: theme.palette.primary.main,
|
|
358
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
359
|
+
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
360
|
+
"&:hover": {
|
|
361
|
+
color: theme.palette.primary.contrastText,
|
|
362
|
+
backgroundColor: theme.palette.primary.main,
|
|
363
|
+
boxShadow: "none"
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
},
|
|
250
367
|
},
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
368
|
+
{
|
|
369
|
+
type: "Control",
|
|
370
|
+
scope: "#/properties/ConfirmDeleteCompButton",
|
|
371
|
+
options: {
|
|
372
|
+
widget: "Button",
|
|
373
|
+
},
|
|
374
|
+
config: {
|
|
375
|
+
layout: 6,
|
|
376
|
+
main: {
|
|
377
|
+
name: "Yes",
|
|
378
|
+
startIcon: "ApproveIcon",
|
|
379
|
+
variant: "contained",
|
|
380
|
+
color: "error",
|
|
381
|
+
type: "text",
|
|
382
|
+
onClick: "deleteComponents",
|
|
383
|
+
size: "large",
|
|
384
|
+
},
|
|
385
|
+
style: {
|
|
386
|
+
position: "absolute",
|
|
387
|
+
bottom: 0,
|
|
388
|
+
right: 0,
|
|
389
|
+
width: "50%",
|
|
390
|
+
borderRadius: 0,
|
|
391
|
+
boxShadow: 0,
|
|
392
|
+
backgroundColor: "transparent",
|
|
393
|
+
color: theme.palette.error.main,
|
|
394
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
395
|
+
"&:hover": {
|
|
396
|
+
color: theme.palette.error.contrastText,
|
|
397
|
+
backgroundColor: theme.palette.error.main,
|
|
398
|
+
boxShadow: "none"
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
},
|
|
269
402
|
},
|
|
270
|
-
|
|
403
|
+
]
|
|
271
404
|
},
|
|
272
405
|
]
|
|
273
406
|
},
|
|
@@ -285,21 +418,16 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
285
418
|
lg: 12,
|
|
286
419
|
},
|
|
287
420
|
main: {
|
|
421
|
+
title: "WARNING!"
|
|
288
422
|
},
|
|
289
423
|
style: {
|
|
290
|
-
"& .MuiPaper-root":{
|
|
291
|
-
width: '30%',
|
|
292
|
-
},
|
|
293
|
-
"& .MuiTypography-root":{
|
|
294
|
-
padding: 0
|
|
295
|
-
},
|
|
296
424
|
}
|
|
297
425
|
},
|
|
298
426
|
elements:
|
|
299
427
|
[
|
|
300
428
|
{
|
|
301
429
|
type: "Control",
|
|
302
|
-
scope: "#/properties/
|
|
430
|
+
scope: "#/properties/popupText1",
|
|
303
431
|
options: {
|
|
304
432
|
widget: "Box",
|
|
305
433
|
},
|
|
@@ -309,110 +437,98 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
309
437
|
heading: "Are you sure you want to delete ?",
|
|
310
438
|
},
|
|
311
439
|
style:{
|
|
312
|
-
marginTop: "-
|
|
440
|
+
marginTop: "-20px",
|
|
441
|
+
fontSize: "20px",
|
|
442
|
+
"&.MuiTypography-root": {
|
|
443
|
+
padding: "10px 30px 20px 30px",
|
|
444
|
+
textAlign: "center",
|
|
445
|
+
lineHeight: "1"
|
|
446
|
+
}
|
|
313
447
|
}
|
|
314
448
|
},
|
|
315
449
|
},
|
|
316
450
|
{
|
|
317
|
-
type: "
|
|
318
|
-
scope: "#/properties/EmptyBox",
|
|
319
|
-
options: {
|
|
320
|
-
widget: "EmptyBox",
|
|
321
|
-
},
|
|
451
|
+
type: "WrapperLayout",
|
|
322
452
|
config: {
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
type: "Control",
|
|
329
|
-
scope: "#/properties/ConfirmDeleteEventButton",
|
|
330
|
-
options: {
|
|
331
|
-
widget: "Button",
|
|
453
|
+
layout: 12,
|
|
454
|
+
main: {},
|
|
455
|
+
|
|
332
456
|
},
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
457
|
+
elements: [
|
|
458
|
+
{
|
|
459
|
+
type: "Control",
|
|
460
|
+
scope: "#/properties/CancelDeleteEventButton",
|
|
461
|
+
options: {
|
|
462
|
+
widget: "Button",
|
|
463
|
+
},
|
|
464
|
+
config: {
|
|
465
|
+
layout: 6,
|
|
466
|
+
main: {
|
|
467
|
+
name: "No",
|
|
468
|
+
startIcon: "ApproveIcon",
|
|
469
|
+
variant: "contained",
|
|
470
|
+
color: "info",
|
|
471
|
+
type: "text",
|
|
472
|
+
onClick: "deletePopUpEvent",
|
|
473
|
+
size: "large",
|
|
474
|
+
},
|
|
475
|
+
style: {
|
|
476
|
+
position: "absolute",
|
|
477
|
+
bottom: 0,
|
|
478
|
+
left: 0,
|
|
479
|
+
width: "50%",
|
|
480
|
+
borderRadius: 0,
|
|
481
|
+
boxShadow: 0,
|
|
482
|
+
backgroundColor: "transparent",
|
|
483
|
+
color: theme.palette.primary.main,
|
|
484
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
485
|
+
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
486
|
+
"&:hover": {
|
|
487
|
+
color: theme.palette.primary.contrastText,
|
|
488
|
+
backgroundColor: theme.palette.primary.main,
|
|
489
|
+
boxShadow: "none"
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
},
|
|
343
493
|
},
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
494
|
+
{
|
|
495
|
+
type: "Control",
|
|
496
|
+
scope: "#/properties/ConfirmDeleteEventButton",
|
|
497
|
+
options: {
|
|
498
|
+
widget: "Button",
|
|
499
|
+
},
|
|
500
|
+
config: {
|
|
501
|
+
layout: 6,
|
|
502
|
+
main: {
|
|
503
|
+
name: "Yes",
|
|
504
|
+
startIcon: "ApproveIcon",
|
|
505
|
+
variant: "contained",
|
|
506
|
+
color: "error",
|
|
507
|
+
type: "text",
|
|
508
|
+
onClick: "deleteEvent",
|
|
509
|
+
size: "large",
|
|
510
|
+
},
|
|
511
|
+
style: {
|
|
512
|
+
position: "absolute",
|
|
513
|
+
bottom: 0,
|
|
514
|
+
right: 0,
|
|
515
|
+
width: "50%",
|
|
516
|
+
borderRadius: 0,
|
|
517
|
+
boxShadow: 0,
|
|
518
|
+
backgroundColor: "transparent",
|
|
519
|
+
color: theme.palette.error.main,
|
|
520
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
521
|
+
"&:hover": {
|
|
522
|
+
color: theme.palette.error.contrastText,
|
|
523
|
+
backgroundColor: theme.palette.error.main,
|
|
524
|
+
boxShadow: "none"
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
},
|
|
362
528
|
},
|
|
363
|
-
|
|
529
|
+
]
|
|
364
530
|
},
|
|
365
531
|
]
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
type: "Control",
|
|
369
|
-
scope: "#/properties/EmptyBox",
|
|
370
|
-
options: {
|
|
371
|
-
widget: "EmptyBox",
|
|
372
|
-
},
|
|
373
|
-
config: {
|
|
374
|
-
layout: { xs: 4, sm: 8 },
|
|
375
|
-
},
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
type: "Control",
|
|
379
|
-
scope: "#/properties/btn",
|
|
380
|
-
options: {
|
|
381
|
-
widget: "Button",
|
|
382
|
-
},
|
|
383
|
-
|
|
384
|
-
config: {
|
|
385
|
-
layout: { xs: 4, sm: 2 },
|
|
386
|
-
main: {
|
|
387
|
-
name: "Ok",
|
|
388
|
-
startIcon: "ApproveIcon",
|
|
389
|
-
variant: "contained",
|
|
390
|
-
// color: "info",
|
|
391
|
-
type: "text",
|
|
392
|
-
onClick: "okHandler",
|
|
393
|
-
size: "medium",
|
|
394
|
-
},
|
|
395
|
-
},
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
type: "Control",
|
|
399
|
-
scope: "#/properties/btnSubmit",
|
|
400
|
-
options: {
|
|
401
|
-
widget: "Button",
|
|
402
|
-
},
|
|
403
|
-
|
|
404
|
-
config: {
|
|
405
|
-
layout: { xs: 4, sm: 2 },
|
|
406
|
-
main: {
|
|
407
|
-
name: "Save & Exit",
|
|
408
|
-
startIcon: "ApproveIcon",
|
|
409
|
-
variant: "contained",
|
|
410
|
-
// color: "info",
|
|
411
|
-
type: "text",
|
|
412
|
-
onClick: "saveHandler",
|
|
413
|
-
size: "medium",
|
|
414
|
-
},
|
|
415
|
-
},
|
|
416
532
|
},
|
|
417
533
|
{
|
|
418
534
|
type: "Control",
|
|
@@ -455,13 +571,14 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
455
571
|
color: theme?.palette?.text.disabled || "#AFAFAF",
|
|
456
572
|
fontSize: '12px',
|
|
457
573
|
textAlign: 'center',
|
|
458
|
-
lineHeight:
|
|
574
|
+
lineHeight: 2,
|
|
459
575
|
width: 'fit-content',
|
|
460
576
|
left: '50%',
|
|
461
577
|
position: 'relative',
|
|
462
578
|
margin: 0,
|
|
463
579
|
flexGrow: 1,
|
|
464
|
-
height: 0
|
|
580
|
+
height: 0,
|
|
581
|
+
transform: "translate(-50%,0%)"
|
|
465
582
|
}
|
|
466
583
|
},
|
|
467
584
|
},
|