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
|
@@ -561,18 +561,19 @@ const PageMasterUiSchema = (theme) => {
|
|
|
561
561
|
},
|
|
562
562
|
style: {
|
|
563
563
|
position: "absolute",
|
|
564
|
+
padding: "10px 0px",
|
|
564
565
|
bottom: 0,
|
|
565
566
|
left: 0,
|
|
566
567
|
width: "50%",
|
|
567
568
|
borderRadius: 0,
|
|
568
569
|
boxShadow: 0,
|
|
569
570
|
backgroundColor: "transparent",
|
|
570
|
-
color: theme.palette.primary.main,
|
|
571
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
572
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
571
|
+
color: theme.myTheme.palette.primary.main,
|
|
572
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
573
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
573
574
|
"&:hover": {
|
|
574
|
-
color: theme.palette.primary.contrastText,
|
|
575
|
-
backgroundColor: theme.palette.primary.main,
|
|
575
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
576
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
576
577
|
boxShadow: "none"
|
|
577
578
|
}
|
|
578
579
|
}
|
|
@@ -682,18 +683,19 @@ const PageMasterUiSchema = (theme) => {
|
|
|
682
683
|
},
|
|
683
684
|
style: {
|
|
684
685
|
position: "absolute",
|
|
686
|
+
padding: "10px 0px",
|
|
685
687
|
bottom: 0,
|
|
686
688
|
left: 0,
|
|
687
689
|
width: "50%",
|
|
688
690
|
borderRadius: 0,
|
|
689
691
|
boxShadow: 0,
|
|
690
692
|
backgroundColor: "transparent",
|
|
691
|
-
color: theme.palette.primary.main,
|
|
692
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
693
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
693
|
+
color: theme.myTheme.palette.primary.main,
|
|
694
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
695
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
694
696
|
"&:hover": {
|
|
695
|
-
color: theme.palette.primary.contrastText,
|
|
696
|
-
backgroundColor: theme.palette.primary.main,
|
|
697
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
698
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
697
699
|
boxShadow: "none"
|
|
698
700
|
}
|
|
699
701
|
}
|
|
@@ -6861,18 +6863,19 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6861
6863
|
},
|
|
6862
6864
|
style: {
|
|
6863
6865
|
position: "absolute",
|
|
6866
|
+
padding: "10px 0px",
|
|
6864
6867
|
bottom: 0,
|
|
6865
6868
|
left: 0,
|
|
6866
6869
|
width: "50%",
|
|
6867
6870
|
borderRadius: 0,
|
|
6868
6871
|
boxShadow: 0,
|
|
6869
6872
|
backgroundColor: "transparent",
|
|
6870
|
-
color: theme.palette.primary.main,
|
|
6871
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
6872
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
6873
|
+
color: theme.myTheme.palette.primary.main,
|
|
6874
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
6875
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
6873
6876
|
"&:hover": {
|
|
6874
|
-
color: theme.palette.primary.contrastText,
|
|
6875
|
-
backgroundColor: theme.palette.primary.main,
|
|
6877
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
6878
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
6876
6879
|
boxShadow: "none"
|
|
6877
6880
|
}
|
|
6878
6881
|
}
|
|
@@ -6982,18 +6985,19 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6982
6985
|
},
|
|
6983
6986
|
style: {
|
|
6984
6987
|
position: "absolute",
|
|
6988
|
+
padding: "10px 0px",
|
|
6985
6989
|
bottom: 0,
|
|
6986
6990
|
left: 0,
|
|
6987
6991
|
width: "50%",
|
|
6988
6992
|
borderRadius: 0,
|
|
6989
6993
|
boxShadow: 0,
|
|
6990
6994
|
backgroundColor: "transparent",
|
|
6991
|
-
color: theme.palette.primary.main,
|
|
6992
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
6993
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
6995
|
+
color: theme.myTheme.palette.primary.main,
|
|
6996
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
6997
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
6994
6998
|
"&:hover": {
|
|
6995
|
-
color: theme.palette.primary.contrastText,
|
|
6996
|
-
backgroundColor: theme.palette.primary.main,
|
|
6999
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
7000
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
6997
7001
|
boxShadow: "none"
|
|
6998
7002
|
}
|
|
6999
7003
|
}
|
|
@@ -9277,18 +9281,19 @@ const EventUiSchema = (theme) => {
|
|
|
9277
9281
|
},
|
|
9278
9282
|
style: {
|
|
9279
9283
|
position: "absolute",
|
|
9284
|
+
padding: "10px 0px",
|
|
9280
9285
|
bottom: 0,
|
|
9281
9286
|
left: 0,
|
|
9282
9287
|
width: "50%",
|
|
9283
9288
|
borderRadius: 0,
|
|
9284
9289
|
boxShadow: 0,
|
|
9285
9290
|
backgroundColor: "transparent",
|
|
9286
|
-
color: theme.palette.primary.main,
|
|
9287
|
-
borderTop: `0.5px solid ${theme.palette.grey[600]}`,
|
|
9288
|
-
borderRight: `0.5px solid ${theme.palette.grey[600]}`,
|
|
9291
|
+
color: theme.myTheme.palette.primary.main,
|
|
9292
|
+
borderTop: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
9293
|
+
borderRight: `0.5px solid ${theme.myTheme.palette.grey[600]}`,
|
|
9289
9294
|
"&:hover": {
|
|
9290
|
-
color: theme.palette.primary.contrastText,
|
|
9291
|
-
backgroundColor: theme.palette.primary.main,
|
|
9295
|
+
color: theme.myTheme.palette.primary.contrastText,
|
|
9296
|
+
backgroundColor: theme.myTheme.palette.primary.main,
|
|
9292
9297
|
boxShadow: "none"
|
|
9293
9298
|
}
|
|
9294
9299
|
}
|