impaktapps-ui-builder 0.0.101-alpha.252 → 0.0.101-alpha.254
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 +9 -5
- 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 +7 -3
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +8 -9
|
@@ -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,8 @@ export default function Card(theme: any): {
|
|
|
106
108
|
background: string;
|
|
107
109
|
justifyContent: string;
|
|
108
110
|
width: string;
|
|
109
|
-
|
|
111
|
+
margin: string;
|
|
112
|
+
marginLeft: string;
|
|
110
113
|
height: number;
|
|
111
114
|
position?: undefined;
|
|
112
115
|
left?: undefined;
|
|
@@ -133,9 +136,10 @@ export default function Card(theme: any): {
|
|
|
133
136
|
background: string;
|
|
134
137
|
justifyContent: string;
|
|
135
138
|
width: string;
|
|
139
|
+
margin: string;
|
|
136
140
|
position: string;
|
|
137
141
|
left: string;
|
|
138
|
-
|
|
142
|
+
marginLeft?: undefined;
|
|
139
143
|
height?: undefined;
|
|
140
144
|
};
|
|
141
145
|
};
|
|
@@ -161,11 +165,11 @@ export default function Card(theme: any): {
|
|
|
161
165
|
textWrap: string;
|
|
162
166
|
background: string;
|
|
163
167
|
width: string;
|
|
168
|
+
margin: string;
|
|
164
169
|
marginTop: {
|
|
165
170
|
xs: string;
|
|
166
171
|
md: string;
|
|
167
172
|
};
|
|
168
|
-
lineHeight: string;
|
|
169
173
|
};
|
|
170
174
|
layout: number;
|
|
171
175
|
wrapperStyle?: undefined;
|
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,8 @@ export default function Card(theme){
|
|
|
101
101
|
background: "inherit",
|
|
102
102
|
justifyContent: "flex-start",
|
|
103
103
|
width: "auto",
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
margin: "-8px",
|
|
105
|
+
marginLeft: "-24px",
|
|
106
106
|
height: 0
|
|
107
107
|
},
|
|
108
108
|
// layout: 1,
|
|
@@ -126,9 +126,9 @@ export default function Card(theme){
|
|
|
126
126
|
background: "inherit",
|
|
127
127
|
justifyContent: "flex-start",
|
|
128
128
|
width: "auto",
|
|
129
|
-
|
|
129
|
+
margin: "-8px",
|
|
130
130
|
position: "absolute",
|
|
131
|
-
left: "
|
|
131
|
+
left: "24px"
|
|
132
132
|
},
|
|
133
133
|
// layout: 11,
|
|
134
134
|
},
|
|
@@ -151,10 +151,9 @@ export default function Card(theme){
|
|
|
151
151
|
justifyContent: "center",
|
|
152
152
|
textWrap: "wrap",
|
|
153
153
|
background: "inherit",
|
|
154
|
-
width: "100
|
|
155
|
-
|
|
154
|
+
width: "calc(100%+8px)",
|
|
155
|
+
margin: "-8px",
|
|
156
156
|
marginTop: {xs: "0px", md: "12px"},
|
|
157
|
-
lineHeight: "1",
|
|
158
157
|
},
|
|
159
158
|
layout: 12,
|
|
160
159
|
},
|