impaktapps-ui-builder 0.0.101-alpha.79 → 0.0.101-alpha.80
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 +30 -25
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- 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 +12 -10
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +12 -10
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +6 -5
package/package.json
CHANGED
|
@@ -445,18 +445,19 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
445
445
|
},
|
|
446
446
|
style: {
|
|
447
447
|
position: "absolute",
|
|
448
|
+
padding: "10px 0px",
|
|
448
449
|
bottom: 0,
|
|
449
450
|
left: 0,
|
|
450
451
|
width: "50%",
|
|
451
452
|
borderRadius: 0,
|
|
452
453
|
boxShadow: 0,
|
|
453
454
|
backgroundColor: "transparent",
|
|
454
|
-
color: theme.palette.primary.main,
|
|
455
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
456
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
455
|
+
color: theme.myTheme.palette.primary.main,
|
|
456
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
457
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
457
458
|
"&:hover": {
|
|
458
|
-
color: theme.palette.primary.contrastText,
|
|
459
|
-
backgroundColor: theme.palette.primary.main,
|
|
459
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
460
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
460
461
|
boxShadow: "none"
|
|
461
462
|
}
|
|
462
463
|
}
|
|
@@ -569,18 +570,19 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
569
570
|
},
|
|
570
571
|
style: {
|
|
571
572
|
position: "absolute",
|
|
573
|
+
padding: "10px 0px",
|
|
572
574
|
bottom: 0,
|
|
573
575
|
left: 0,
|
|
574
576
|
width: "50%",
|
|
575
577
|
borderRadius: 0,
|
|
576
578
|
boxShadow: 0,
|
|
577
579
|
backgroundColor: "transparent",
|
|
578
|
-
color: theme.palette.primary.main,
|
|
579
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
580
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
580
|
+
color: theme.myTheme.palette.primary.main,
|
|
581
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
582
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
581
583
|
"&:hover": {
|
|
582
|
-
color: theme.palette.primary.contrastText,
|
|
583
|
-
backgroundColor: theme.palette.primary.main,
|
|
584
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
585
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
584
586
|
boxShadow: "none"
|
|
585
587
|
}
|
|
586
588
|
}
|
|
@@ -607,18 +607,19 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
607
607
|
},
|
|
608
608
|
style: {
|
|
609
609
|
position: "absolute",
|
|
610
|
+
padding: "10px 0px",
|
|
610
611
|
bottom: 0,
|
|
611
612
|
left: 0,
|
|
612
613
|
width: "50%",
|
|
613
614
|
borderRadius: 0,
|
|
614
615
|
boxShadow: 0,
|
|
615
616
|
backgroundColor: "transparent",
|
|
616
|
-
color: theme.palette.primary.main,
|
|
617
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
618
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
617
|
+
color: theme.myTheme.palette.primary.main,
|
|
618
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
619
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
619
620
|
"&:hover": {
|
|
620
|
-
color: theme.palette.primary.contrastText,
|
|
621
|
-
backgroundColor: theme.palette.primary.main,
|
|
621
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
622
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
622
623
|
boxShadow: "none"
|
|
623
624
|
}
|
|
624
625
|
}
|
|
@@ -731,18 +732,19 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
731
732
|
},
|
|
732
733
|
style: {
|
|
733
734
|
position: "absolute",
|
|
735
|
+
padding: "10px 0px",
|
|
734
736
|
bottom: 0,
|
|
735
737
|
left: 0,
|
|
736
738
|
width: "50%",
|
|
737
739
|
borderRadius: 0,
|
|
738
740
|
boxShadow: 0,
|
|
739
741
|
backgroundColor: "transparent",
|
|
740
|
-
color: theme.palette.primary.main,
|
|
741
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
742
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
742
|
+
color: theme.myTheme.palette.primary.main,
|
|
743
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
744
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
743
745
|
"&:hover": {
|
|
744
|
-
color: theme.palette.primary.contrastText,
|
|
745
|
-
backgroundColor: theme.palette.primary.main,
|
|
746
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
747
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
746
748
|
boxShadow: "none"
|
|
747
749
|
}
|
|
748
750
|
}
|
|
@@ -421,18 +421,19 @@ export const EventUiSchema: any = (theme) => {
|
|
|
421
421
|
},
|
|
422
422
|
style: {
|
|
423
423
|
position: "absolute",
|
|
424
|
+
padding: "10px 0px",
|
|
424
425
|
bottom: 0,
|
|
425
426
|
left: 0,
|
|
426
427
|
width: "50%",
|
|
427
428
|
borderRadius: 0,
|
|
428
429
|
boxShadow: 0,
|
|
429
430
|
backgroundColor: "transparent",
|
|
430
|
-
color: theme.palette.primary.main,
|
|
431
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
432
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
431
|
+
color: theme.myTheme.palette.primary.main,
|
|
432
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
433
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
433
434
|
"&:hover": {
|
|
434
|
-
color: theme.palette.primary.contrastText,
|
|
435
|
-
backgroundColor: theme.palette.primary.main,
|
|
435
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
436
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
436
437
|
boxShadow: "none"
|
|
437
438
|
}
|
|
438
439
|
}
|