impaktapps-ui-builder 0.0.101-alpha.228 → 0.0.101-alpha.229
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 +8 -6
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +3 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +5 -3
|
@@ -6,6 +6,7 @@ export default function Card(theme: any): {
|
|
|
6
6
|
position: string;
|
|
7
7
|
top: string;
|
|
8
8
|
transform: string;
|
|
9
|
+
marginBottom: number;
|
|
9
10
|
};
|
|
10
11
|
componentsBoxStyle: {
|
|
11
12
|
boxShadow: string;
|
|
@@ -50,6 +51,7 @@ export default function Card(theme: any): {
|
|
|
50
51
|
};
|
|
51
52
|
wrapperStyle: {
|
|
52
53
|
background: string;
|
|
54
|
+
marginBottom: number;
|
|
53
55
|
};
|
|
54
56
|
componentsBoxStyle: {
|
|
55
57
|
flexDirection: string;
|
|
@@ -58,7 +60,6 @@ export default function Card(theme: any): {
|
|
|
58
60
|
height: string;
|
|
59
61
|
background: string;
|
|
60
62
|
borderRadius: string;
|
|
61
|
-
padding: number;
|
|
62
63
|
};
|
|
63
64
|
layout: number;
|
|
64
65
|
};
|
|
@@ -72,6 +73,7 @@ export default function Card(theme: any): {
|
|
|
72
73
|
};
|
|
73
74
|
wrapperStyle: {
|
|
74
75
|
background: string;
|
|
76
|
+
marginBottom: number;
|
|
75
77
|
};
|
|
76
78
|
componentsBoxStyle: {
|
|
77
79
|
flexDirection: string;
|
package/package.json
CHANGED
|
@@ -6,7 +6,8 @@ export default function Card(theme){
|
|
|
6
6
|
wrapperStyle: {
|
|
7
7
|
position: "relative",
|
|
8
8
|
top: "50%",
|
|
9
|
-
transform: "translateY(-50%)"
|
|
9
|
+
transform: "translateY(-50%)",
|
|
10
|
+
marginBottom: 0
|
|
10
11
|
},
|
|
11
12
|
componentsBoxStyle: {
|
|
12
13
|
boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
|
|
@@ -46,6 +47,7 @@ export default function Card(theme){
|
|
|
46
47
|
},
|
|
47
48
|
wrapperStyle: {
|
|
48
49
|
background: "transparent",
|
|
50
|
+
marginBottom: 0
|
|
49
51
|
},
|
|
50
52
|
componentsBoxStyle: {
|
|
51
53
|
flexDirection: "column",
|
|
@@ -54,7 +56,6 @@ export default function Card(theme){
|
|
|
54
56
|
height: "inherit",
|
|
55
57
|
background: "transparent",
|
|
56
58
|
borderRadius: "0px",
|
|
57
|
-
padding: 0
|
|
58
59
|
},
|
|
59
60
|
layout: 12,
|
|
60
61
|
},
|
|
@@ -68,6 +69,7 @@ export default function Card(theme){
|
|
|
68
69
|
},
|
|
69
70
|
wrapperStyle: {
|
|
70
71
|
background: "transparent",
|
|
72
|
+
marginBottom: 0
|
|
71
73
|
},
|
|
72
74
|
componentsBoxStyle: {
|
|
73
75
|
flexDirection: "row",
|
|
@@ -149,7 +151,7 @@ export default function Card(theme){
|
|
|
149
151
|
textWrap: "wrap",
|
|
150
152
|
background: "inherit",
|
|
151
153
|
width: "calc(100%+8px)",
|
|
152
|
-
margin: "-
|
|
154
|
+
margin: "-8px",
|
|
153
155
|
marginTop: {xs: "0px", md: "12px"},
|
|
154
156
|
lineHeight: "1",
|
|
155
157
|
},
|