impaktapps-ui-builder 0.0.101-alpha.251 → 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 +8 -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 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +8 -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,6 +108,7 @@ export default function Card(theme: any): {
|
|
|
106
108
|
background: string;
|
|
107
109
|
justifyContent: string;
|
|
108
110
|
width: string;
|
|
111
|
+
margin: string;
|
|
109
112
|
height: number;
|
|
110
113
|
position?: undefined;
|
|
111
114
|
left?: undefined;
|
|
@@ -132,6 +135,7 @@ export default function Card(theme: any): {
|
|
|
132
135
|
background: string;
|
|
133
136
|
justifyContent: string;
|
|
134
137
|
width: string;
|
|
138
|
+
margin: string;
|
|
135
139
|
position: string;
|
|
136
140
|
left: string;
|
|
137
141
|
height?: undefined;
|
|
@@ -159,6 +163,7 @@ export default function Card(theme: any): {
|
|
|
159
163
|
textWrap: string;
|
|
160
164
|
background: string;
|
|
161
165
|
width: string;
|
|
166
|
+
margin: string;
|
|
162
167
|
marginTop: {
|
|
163
168
|
xs: string;
|
|
164
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
|
},
|
|
@@ -91,7 +91,7 @@ export default function Card(theme){
|
|
|
91
91
|
scope: "#/properties/programType",
|
|
92
92
|
config: {
|
|
93
93
|
main: {
|
|
94
|
-
heading: "",
|
|
94
|
+
heading: "$",
|
|
95
95
|
},
|
|
96
96
|
style: {
|
|
97
97
|
color: "black",
|
|
@@ -101,7 +101,7 @@ export default function Card(theme){
|
|
|
101
101
|
background: "inherit",
|
|
102
102
|
justifyContent: "flex-start",
|
|
103
103
|
width: "auto",
|
|
104
|
-
|
|
104
|
+
margin: "-8px",
|
|
105
105
|
height: 0
|
|
106
106
|
},
|
|
107
107
|
// layout: 1,
|
|
@@ -125,9 +125,9 @@ export default function Card(theme){
|
|
|
125
125
|
background: "inherit",
|
|
126
126
|
justifyContent: "flex-start",
|
|
127
127
|
width: "auto",
|
|
128
|
-
|
|
128
|
+
margin: "-8px",
|
|
129
129
|
position: "absolute",
|
|
130
|
-
left: "
|
|
130
|
+
left: "8px"
|
|
131
131
|
},
|
|
132
132
|
// layout: 11,
|
|
133
133
|
},
|
|
@@ -150,8 +150,8 @@ export default function Card(theme){
|
|
|
150
150
|
justifyContent: "center",
|
|
151
151
|
textWrap: "wrap",
|
|
152
152
|
background: "inherit",
|
|
153
|
-
width: "100
|
|
154
|
-
|
|
153
|
+
width: "calc(100%+8px)",
|
|
154
|
+
margin: "-8px",
|
|
155
155
|
marginTop: {xs: "0px", md: "12px"},
|
|
156
156
|
lineHeight: "1",
|
|
157
157
|
},
|