impaktapps-ui-builder 0.0.101-alpha.78 → 0.0.101-alpha.79
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 +20 -20
- 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 +8 -8
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +8 -8
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +4 -4
package/package.json
CHANGED
|
@@ -487,11 +487,11 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
487
487
|
borderRadius: 0,
|
|
488
488
|
boxShadow: 0,
|
|
489
489
|
backgroundColor: "transparent",
|
|
490
|
-
color: theme.
|
|
491
|
-
borderTop: `0.5px solid ${theme.
|
|
490
|
+
color: theme.palette.error.main,
|
|
491
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
492
492
|
"&:hover": {
|
|
493
|
-
color: theme.
|
|
494
|
-
backgroundColor: theme.
|
|
493
|
+
color: theme.palette.error.contrastText,
|
|
494
|
+
backgroundColor: theme.palette.error.main,
|
|
495
495
|
boxShadow: "none"
|
|
496
496
|
}
|
|
497
497
|
}
|
|
@@ -611,11 +611,11 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
611
611
|
borderRadius: 0,
|
|
612
612
|
boxShadow: 0,
|
|
613
613
|
backgroundColor: "transparent",
|
|
614
|
-
color: theme.
|
|
615
|
-
borderTop: `0.5px solid ${theme.
|
|
614
|
+
color: theme.palette.error.main,
|
|
615
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
616
616
|
"&:hover": {
|
|
617
|
-
color: theme.
|
|
618
|
-
backgroundColor: theme.
|
|
617
|
+
color: theme.palette.error.contrastText,
|
|
618
|
+
backgroundColor: theme.palette.error.main,
|
|
619
619
|
boxShadow: "none"
|
|
620
620
|
}
|
|
621
621
|
}
|
|
@@ -649,11 +649,11 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
649
649
|
borderRadius: 0,
|
|
650
650
|
boxShadow: 0,
|
|
651
651
|
backgroundColor: "transparent",
|
|
652
|
-
color: theme.
|
|
653
|
-
borderTop: `0.5px solid ${theme.
|
|
652
|
+
color: theme.palette.error.main,
|
|
653
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
654
654
|
"&:hover": {
|
|
655
|
-
color: theme.
|
|
656
|
-
backgroundColor: theme.
|
|
655
|
+
color: theme.palette.error.contrastText,
|
|
656
|
+
backgroundColor: theme.palette.error.main,
|
|
657
657
|
boxShadow: "none"
|
|
658
658
|
}
|
|
659
659
|
}
|
|
@@ -773,11 +773,11 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
773
773
|
borderRadius: 0,
|
|
774
774
|
boxShadow: 0,
|
|
775
775
|
backgroundColor: "transparent",
|
|
776
|
-
color: theme.
|
|
777
|
-
borderTop: `0.5px solid ${theme.
|
|
776
|
+
color: theme.palette.error.main,
|
|
777
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
778
778
|
"&:hover": {
|
|
779
|
-
color: theme.
|
|
780
|
-
backgroundColor: theme.
|
|
779
|
+
color: theme.palette.error.contrastText,
|
|
780
|
+
backgroundColor: theme.palette.error.main,
|
|
781
781
|
boxShadow: "none"
|
|
782
782
|
}
|
|
783
783
|
}
|
|
@@ -463,11 +463,11 @@ export const EventUiSchema: any = (theme) => {
|
|
|
463
463
|
borderRadius: 0,
|
|
464
464
|
boxShadow: 0,
|
|
465
465
|
backgroundColor: "transparent",
|
|
466
|
-
color: theme.
|
|
467
|
-
borderTop: `0.5px solid ${theme.
|
|
466
|
+
color: theme.palette.error.main,
|
|
467
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
468
468
|
"&:hover": {
|
|
469
|
-
color: theme.
|
|
470
|
-
backgroundColor: theme.
|
|
469
|
+
color: theme.palette.error.contrastText,
|
|
470
|
+
backgroundColor: theme.palette.error.main,
|
|
471
471
|
boxShadow: "none"
|
|
472
472
|
}
|
|
473
473
|
}
|