impaktapps-ui-builder 0.0.101-alpha.252 → 0.0.101-alpha.253
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 +7 -3
- 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 +5 -2
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +7 -8
|
@@ -82,6 +82,8 @@ export default function Card(theme: any): {
|
|
|
82
82
|
height: string;
|
|
83
83
|
background: string;
|
|
84
84
|
borderRadius: string;
|
|
85
|
+
marginLeft: string;
|
|
86
|
+
marginTop: string;
|
|
85
87
|
justifyContent: string;
|
|
86
88
|
position: string;
|
|
87
89
|
};
|
|
@@ -106,7 +108,7 @@ export default function Card(theme: any): {
|
|
|
106
108
|
background: string;
|
|
107
109
|
justifyContent: string;
|
|
108
110
|
width: string;
|
|
109
|
-
|
|
111
|
+
margin: string;
|
|
110
112
|
height: number;
|
|
111
113
|
position?: undefined;
|
|
112
114
|
left?: undefined;
|
|
@@ -133,9 +135,9 @@ export default function Card(theme: any): {
|
|
|
133
135
|
background: string;
|
|
134
136
|
justifyContent: string;
|
|
135
137
|
width: string;
|
|
138
|
+
margin: string;
|
|
136
139
|
position: string;
|
|
137
140
|
left: string;
|
|
138
|
-
padding?: undefined;
|
|
139
141
|
height?: undefined;
|
|
140
142
|
};
|
|
141
143
|
};
|
|
@@ -161,6 +163,7 @@ export default function Card(theme: any): {
|
|
|
161
163
|
textWrap: string;
|
|
162
164
|
background: string;
|
|
163
165
|
width: string;
|
|
166
|
+
margin: string;
|
|
164
167
|
marginTop: {
|
|
165
168
|
xs: string;
|
|
166
169
|
md: string;
|
package/package.json
CHANGED
|
@@ -78,8 +78,8 @@ export default function Card(theme){
|
|
|
78
78
|
height: "0",
|
|
79
79
|
background: "transparent",
|
|
80
80
|
borderRadius: "0px",
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
marginLeft: "-10px",
|
|
82
|
+
marginTop: "-8px",
|
|
83
83
|
justifyContent: "start",
|
|
84
84
|
position: "relative"
|
|
85
85
|
},
|
|
@@ -101,8 +101,7 @@ export default function Card(theme){
|
|
|
101
101
|
background: "inherit",
|
|
102
102
|
justifyContent: "flex-start",
|
|
103
103
|
width: "auto",
|
|
104
|
-
|
|
105
|
-
// margin: "-8px",
|
|
104
|
+
margin: "-8px",
|
|
106
105
|
height: 0
|
|
107
106
|
},
|
|
108
107
|
// layout: 1,
|
|
@@ -126,9 +125,9 @@ export default function Card(theme){
|
|
|
126
125
|
background: "inherit",
|
|
127
126
|
justifyContent: "flex-start",
|
|
128
127
|
width: "auto",
|
|
129
|
-
|
|
128
|
+
margin: "-8px",
|
|
130
129
|
position: "absolute",
|
|
131
|
-
left: "
|
|
130
|
+
left: "8px"
|
|
132
131
|
},
|
|
133
132
|
// layout: 11,
|
|
134
133
|
},
|
|
@@ -151,8 +150,8 @@ export default function Card(theme){
|
|
|
151
150
|
justifyContent: "center",
|
|
152
151
|
textWrap: "wrap",
|
|
153
152
|
background: "inherit",
|
|
154
|
-
width: "100
|
|
155
|
-
|
|
153
|
+
width: "calc(100%+8px)",
|
|
154
|
+
margin: "-8px",
|
|
156
155
|
marginTop: {xs: "0px", md: "12px"},
|
|
157
156
|
lineHeight: "1",
|
|
158
157
|
},
|