impaktapps-ui-builder 0.0.101-alpha.251 → 0.0.101-alpha.252
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 +2 -1
- 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 +2 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +2 -1
|
@@ -106,6 +106,7 @@ export default function Card(theme: any): {
|
|
|
106
106
|
background: string;
|
|
107
107
|
justifyContent: string;
|
|
108
108
|
width: string;
|
|
109
|
+
padding: number;
|
|
109
110
|
height: number;
|
|
110
111
|
position?: undefined;
|
|
111
112
|
left?: undefined;
|
|
@@ -134,6 +135,7 @@ export default function Card(theme: any): {
|
|
|
134
135
|
width: string;
|
|
135
136
|
position: string;
|
|
136
137
|
left: string;
|
|
138
|
+
padding?: undefined;
|
|
137
139
|
height?: undefined;
|
|
138
140
|
};
|
|
139
141
|
};
|
package/package.json
CHANGED
|
@@ -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,6 +101,7 @@ export default function Card(theme){
|
|
|
101
101
|
background: "inherit",
|
|
102
102
|
justifyContent: "flex-start",
|
|
103
103
|
width: "auto",
|
|
104
|
+
padding: 0,
|
|
104
105
|
// margin: "-8px",
|
|
105
106
|
height: 0
|
|
106
107
|
},
|