impaktapps-ui-builder 0.0.101-alpha.80 → 0.0.101-alpha.81
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 +25 -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 +10 -10
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +10 -10
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +5 -5
package/package.json
CHANGED
|
@@ -452,12 +452,12 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
452
452
|
borderRadius: 0,
|
|
453
453
|
boxShadow: 0,
|
|
454
454
|
backgroundColor: "transparent",
|
|
455
|
-
color: theme.
|
|
456
|
-
borderTop: `0.5px solid ${theme.
|
|
457
|
-
borderRight: `0.5px solid ${theme.
|
|
455
|
+
color: theme.palette.primary.main,
|
|
456
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
457
|
+
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
458
458
|
"&:hover": {
|
|
459
|
-
color: theme.
|
|
460
|
-
backgroundColor: theme.
|
|
459
|
+
color: theme.palette.primary.contrastText,
|
|
460
|
+
backgroundColor: theme.palette.primary.main,
|
|
461
461
|
boxShadow: "none"
|
|
462
462
|
}
|
|
463
463
|
}
|
|
@@ -577,12 +577,12 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
577
577
|
borderRadius: 0,
|
|
578
578
|
boxShadow: 0,
|
|
579
579
|
backgroundColor: "transparent",
|
|
580
|
-
color: theme.
|
|
581
|
-
borderTop: `0.5px solid ${theme.
|
|
582
|
-
borderRight: `0.5px solid ${theme.
|
|
580
|
+
color: theme.palette.primary.main,
|
|
581
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
582
|
+
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
583
583
|
"&:hover": {
|
|
584
|
-
color: theme.
|
|
585
|
-
backgroundColor: theme.
|
|
584
|
+
color: theme.palette.primary.contrastText,
|
|
585
|
+
backgroundColor: theme.palette.primary.main,
|
|
586
586
|
boxShadow: "none"
|
|
587
587
|
}
|
|
588
588
|
}
|
|
@@ -614,12 +614,12 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
614
614
|
borderRadius: 0,
|
|
615
615
|
boxShadow: 0,
|
|
616
616
|
backgroundColor: "transparent",
|
|
617
|
-
color: theme.
|
|
618
|
-
borderTop: `0.5px solid ${theme.
|
|
619
|
-
borderRight: `0.5px solid ${theme.
|
|
617
|
+
color: theme.palette.primary.main,
|
|
618
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
619
|
+
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
620
620
|
"&:hover": {
|
|
621
|
-
color: theme.
|
|
622
|
-
backgroundColor: theme.
|
|
621
|
+
color: theme.palette.primary.contrastText,
|
|
622
|
+
backgroundColor: theme.palette.primary.main,
|
|
623
623
|
boxShadow: "none"
|
|
624
624
|
}
|
|
625
625
|
}
|
|
@@ -739,12 +739,12 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
739
739
|
borderRadius: 0,
|
|
740
740
|
boxShadow: 0,
|
|
741
741
|
backgroundColor: "transparent",
|
|
742
|
-
color: theme.
|
|
743
|
-
borderTop: `0.5px solid ${theme.
|
|
744
|
-
borderRight: `0.5px solid ${theme.
|
|
742
|
+
color: theme.palette.primary.main,
|
|
743
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
744
|
+
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
745
745
|
"&:hover": {
|
|
746
|
-
color: theme.
|
|
747
|
-
backgroundColor: theme.
|
|
746
|
+
color: theme.palette.primary.contrastText,
|
|
747
|
+
backgroundColor: theme.palette.primary.main,
|
|
748
748
|
boxShadow: "none"
|
|
749
749
|
}
|
|
750
750
|
}
|
|
@@ -428,12 +428,12 @@ export const EventUiSchema: any = (theme) => {
|
|
|
428
428
|
borderRadius: 0,
|
|
429
429
|
boxShadow: 0,
|
|
430
430
|
backgroundColor: "transparent",
|
|
431
|
-
color: theme.
|
|
432
|
-
borderTop: `0.5px solid ${theme.
|
|
433
|
-
borderRight: `0.5px solid ${theme.
|
|
431
|
+
color: theme.palette.primary.main,
|
|
432
|
+
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
433
|
+
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
434
434
|
"&:hover": {
|
|
435
|
-
color: theme.
|
|
436
|
-
backgroundColor: theme.
|
|
435
|
+
color: theme.palette.primary.contrastText,
|
|
436
|
+
backgroundColor: theme.palette.primary.main,
|
|
437
437
|
boxShadow: "none"
|
|
438
438
|
}
|
|
439
439
|
}
|