impaktapps-ui-builder 0.0.101-alpha.81 → 0.0.101-alpha.83
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 +44 -23
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +9 -9
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +17 -9
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +16 -8
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +9 -4
package/package.json
CHANGED
|
@@ -407,14 +407,15 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
407
407
|
config: {
|
|
408
408
|
layout: 11,
|
|
409
409
|
main: {
|
|
410
|
-
heading: "Are you sure you want to delete ?",
|
|
410
|
+
heading: "Are you sure you want to delete this Component ?",
|
|
411
411
|
},
|
|
412
412
|
style:{
|
|
413
|
-
fontSize: "20px",
|
|
414
413
|
"&.MuiTypography-root": {
|
|
415
414
|
padding: "0px 20px",
|
|
416
415
|
textAlign: "center",
|
|
417
|
-
lineHeight: "1",
|
|
416
|
+
lineHeight: "1.2",
|
|
417
|
+
fontWeight: "normal",
|
|
418
|
+
fontSize: "18px",
|
|
418
419
|
marginBottom: theme.spacing(5)
|
|
419
420
|
}
|
|
420
421
|
}
|
|
@@ -445,7 +446,8 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
445
446
|
},
|
|
446
447
|
style: {
|
|
447
448
|
position: "absolute",
|
|
448
|
-
padding: "
|
|
449
|
+
padding: "8px 0px",
|
|
450
|
+
fontSize: "16px",
|
|
449
451
|
bottom: 0,
|
|
450
452
|
left: 0,
|
|
451
453
|
width: "50%",
|
|
@@ -481,7 +483,8 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
481
483
|
},
|
|
482
484
|
style: {
|
|
483
485
|
position: "absolute",
|
|
484
|
-
padding: "
|
|
486
|
+
padding: "8px 0px",
|
|
487
|
+
fontSize: "16px",
|
|
485
488
|
bottom: 0,
|
|
486
489
|
right: 0,
|
|
487
490
|
width: "50%",
|
|
@@ -532,14 +535,16 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
532
535
|
config: {
|
|
533
536
|
layout: 11,
|
|
534
537
|
main: {
|
|
535
|
-
heading: "Are you sure you want to delete ?",
|
|
538
|
+
heading: "Are you sure you want to delete this Event ?",
|
|
536
539
|
},
|
|
537
540
|
style:{
|
|
538
541
|
fontSize: "20px",
|
|
539
542
|
"&.MuiTypography-root": {
|
|
540
543
|
padding: "0px 20px",
|
|
541
544
|
textAlign: "center",
|
|
542
|
-
lineHeight: "1",
|
|
545
|
+
lineHeight: "1.2",
|
|
546
|
+
fontWeight: "normal",
|
|
547
|
+
fontSize: "18px",
|
|
543
548
|
marginBottom: theme.spacing(5)
|
|
544
549
|
}
|
|
545
550
|
}
|
|
@@ -570,7 +575,8 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
570
575
|
},
|
|
571
576
|
style: {
|
|
572
577
|
position: "absolute",
|
|
573
|
-
padding: "
|
|
578
|
+
padding: "8px 0px",
|
|
579
|
+
fontSize: "16px",
|
|
574
580
|
bottom: 0,
|
|
575
581
|
left: 0,
|
|
576
582
|
width: "50%",
|
|
@@ -606,7 +612,8 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
606
612
|
},
|
|
607
613
|
style: {
|
|
608
614
|
position: "absolute",
|
|
609
|
-
padding: "
|
|
615
|
+
padding: "8px 0px",
|
|
616
|
+
fontSize: "16px",
|
|
610
617
|
bottom: 0,
|
|
611
618
|
right: 0,
|
|
612
619
|
width: "50%",
|
|
@@ -671,6 +678,7 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
671
678
|
bottom: "24px",
|
|
672
679
|
borderBottom: `1px solid ${theme.palette.common.black}29`,
|
|
673
680
|
borderTop: `1px solid ${theme.palette.common.black}29`,
|
|
681
|
+
backgroundColor: theme.palette.background.default,
|
|
674
682
|
},
|
|
675
683
|
},
|
|
676
684
|
},
|
|
@@ -569,14 +569,16 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
569
569
|
config: {
|
|
570
570
|
layout: 11,
|
|
571
571
|
main: {
|
|
572
|
-
heading: "Are you sure you want to delete ?",
|
|
572
|
+
heading: "Are you sure you want to delete this Component ?",
|
|
573
573
|
},
|
|
574
574
|
style:{
|
|
575
575
|
fontSize: "20px",
|
|
576
576
|
"&.MuiTypography-root": {
|
|
577
577
|
padding: "0px 20px",
|
|
578
578
|
textAlign: "center",
|
|
579
|
-
lineHeight: "1",
|
|
579
|
+
lineHeight: "1.2",
|
|
580
|
+
fontWeight: "normal",
|
|
581
|
+
fontSize: "18px",
|
|
580
582
|
marginBottom: theme.spacing(5)
|
|
581
583
|
}
|
|
582
584
|
}
|
|
@@ -607,7 +609,8 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
607
609
|
},
|
|
608
610
|
style: {
|
|
609
611
|
position: "absolute",
|
|
610
|
-
padding: "
|
|
612
|
+
padding: "8px 0px",
|
|
613
|
+
fontSize: "16px",
|
|
611
614
|
bottom: 0,
|
|
612
615
|
left: 0,
|
|
613
616
|
width: "50%",
|
|
@@ -643,7 +646,8 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
643
646
|
},
|
|
644
647
|
style: {
|
|
645
648
|
position: "absolute",
|
|
646
|
-
padding: "
|
|
649
|
+
padding: "8px 0px",
|
|
650
|
+
fontSize: "16px",
|
|
647
651
|
bottom: 0,
|
|
648
652
|
right: 0,
|
|
649
653
|
width: "50%",
|
|
@@ -694,14 +698,16 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
694
698
|
config: {
|
|
695
699
|
layout: 11,
|
|
696
700
|
main: {
|
|
697
|
-
heading: "Are you sure you want to delete ?",
|
|
701
|
+
heading: "Are you sure you want to delete this Event ?",
|
|
698
702
|
},
|
|
699
703
|
style:{
|
|
700
704
|
fontSize: "20px",
|
|
701
705
|
"&.MuiTypography-root": {
|
|
702
706
|
padding: "0px 20px",
|
|
703
707
|
textAlign: "center",
|
|
704
|
-
lineHeight: "1",
|
|
708
|
+
lineHeight: "1.2",
|
|
709
|
+
fontWeight: "normal",
|
|
710
|
+
fontSize: "18px",
|
|
705
711
|
marginBottom: theme.spacing(5)
|
|
706
712
|
}
|
|
707
713
|
}
|
|
@@ -732,7 +738,8 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
732
738
|
},
|
|
733
739
|
style: {
|
|
734
740
|
position: "absolute",
|
|
735
|
-
padding: "
|
|
741
|
+
padding: "8px 0px",
|
|
742
|
+
fontSize: "16px",
|
|
736
743
|
bottom: 0,
|
|
737
744
|
left: 0,
|
|
738
745
|
width: "50%",
|
|
@@ -768,7 +775,8 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
768
775
|
},
|
|
769
776
|
style: {
|
|
770
777
|
position: "absolute",
|
|
771
|
-
padding: "
|
|
778
|
+
padding: "8px 0px",
|
|
779
|
+
fontSize: "16px",
|
|
772
780
|
bottom: 0,
|
|
773
781
|
right: 0,
|
|
774
782
|
width: "50%",
|
|
@@ -382,14 +382,16 @@ export const EventUiSchema: any = (theme) => {
|
|
|
382
382
|
config: {
|
|
383
383
|
layout: 11,
|
|
384
384
|
main: {
|
|
385
|
-
heading: "Are you sure you want to delete ?",
|
|
385
|
+
heading: "Are you sure you want to delete this Event ?",
|
|
386
386
|
},
|
|
387
387
|
style:{
|
|
388
388
|
fontSize: "20px",
|
|
389
389
|
"&.MuiTypography-root": {
|
|
390
390
|
padding: "0px 20px",
|
|
391
391
|
textAlign: "center",
|
|
392
|
-
lineHeight: "1",
|
|
392
|
+
lineHeight: "1.2",
|
|
393
|
+
fontWeight: "normal",
|
|
394
|
+
fontSize: "18px",
|
|
393
395
|
marginBottom: theme.spacing(5)
|
|
394
396
|
}
|
|
395
397
|
}
|
|
@@ -421,7 +423,8 @@ export const EventUiSchema: any = (theme) => {
|
|
|
421
423
|
},
|
|
422
424
|
style: {
|
|
423
425
|
position: "absolute",
|
|
424
|
-
padding: "
|
|
426
|
+
padding: "8px 0px",
|
|
427
|
+
fontSize: "16px",
|
|
425
428
|
bottom: 0,
|
|
426
429
|
left: 0,
|
|
427
430
|
width: "50%",
|
|
@@ -457,7 +460,8 @@ export const EventUiSchema: any = (theme) => {
|
|
|
457
460
|
},
|
|
458
461
|
style: {
|
|
459
462
|
position: "absolute",
|
|
460
|
-
padding: "
|
|
463
|
+
padding: "8px 0px",
|
|
464
|
+
fontSize: "16px",
|
|
461
465
|
bottom: 0,
|
|
462
466
|
right: 0,
|
|
463
467
|
width: "50%",
|
|
@@ -497,6 +501,7 @@ export const EventUiSchema: any = (theme) => {
|
|
|
497
501
|
bottom: "24px",
|
|
498
502
|
borderBottom: `1px solid ${theme.palette.common.black}29`,
|
|
499
503
|
borderTop: `1px solid ${theme.palette.common.black}29`,
|
|
504
|
+
backgroundColor: theme.palette.background.default,
|
|
500
505
|
},
|
|
501
506
|
},
|
|
502
507
|
},
|