@dative-gpi/foundation-shared-components 1.0.152 → 1.0.153
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/components/FSCard.vue +4 -4
- package/package.json +4 -4
package/components/FSCard.vue
CHANGED
|
@@ -168,7 +168,7 @@ export default defineComponent({
|
|
|
168
168
|
"--fs-card-padding" : sizeToVar(props.padding),
|
|
169
169
|
"--fs-card-height" : sizeToVar(props.height),
|
|
170
170
|
"--fs-card-width" : sizeToVar(props.width),
|
|
171
|
-
"--fs-card-max-width"
|
|
171
|
+
"--fs-card-max-width" : sizeToVar(props.maxWidth, "unset"),
|
|
172
172
|
"--fs-card-background-color": backgrounds.base,
|
|
173
173
|
"--fs-card-border-color" : borderColor.value,
|
|
174
174
|
"--fs-card-color" : darks.base,
|
|
@@ -181,7 +181,7 @@ export default defineComponent({
|
|
|
181
181
|
"--fs-card-padding" : sizeToVar(props.padding),
|
|
182
182
|
"--fs-card-height" : sizeToVar(props.height),
|
|
183
183
|
"--fs-card-width" : sizeToVar(props.width),
|
|
184
|
-
"--fs-card-max-width"
|
|
184
|
+
"--fs-card-max-width" : sizeToVar(props.maxWidth, "unset"),
|
|
185
185
|
"--fs-card-background-color": colors.value.light,
|
|
186
186
|
"--fs-card-border-color" : borderColor.value,
|
|
187
187
|
"--fs-card-color" : colors.value.lightContrast!,
|
|
@@ -194,7 +194,7 @@ export default defineComponent({
|
|
|
194
194
|
"--fs-card-padding" : sizeToVar(props.padding),
|
|
195
195
|
"--fs-card-height" : sizeToVar(props.height),
|
|
196
196
|
"--fs-card-width" : sizeToVar(props.width),
|
|
197
|
-
"--fs-card-max-width"
|
|
197
|
+
"--fs-card-max-width" : sizeToVar(props.maxWidth, "unset"),
|
|
198
198
|
"--fs-card-background-color": colors.value.base,
|
|
199
199
|
"--fs-card-border-color" : borderColor.value,
|
|
200
200
|
"--fs-card-color" : colors.value.baseContrast!,
|
|
@@ -207,7 +207,7 @@ export default defineComponent({
|
|
|
207
207
|
"--fs-card-padding" : sizeToVar(props.padding),
|
|
208
208
|
"--fs-card-height" : sizeToVar(props.height),
|
|
209
209
|
"--fs-card-width" : sizeToVar(props.width),
|
|
210
|
-
"--fs-card-max-width"
|
|
210
|
+
"--fs-card-max-width" : sizeToVar(props.maxWidth, "unset"),
|
|
211
211
|
"--fs-card-background-color": gradients.value.base,
|
|
212
212
|
"--fs-card-border-color" : borderColor.value,
|
|
213
213
|
"--fs-card-color" : colors.value.lightContrast!,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-shared-components",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.153",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "1.0.
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.153",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.153"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@dative-gpi/bones-ui": "^1.0.0",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"sass": "1.71.1",
|
|
36
36
|
"sass-loader": "13.3.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "91509afb15dcc9a8baf13c9594c2b5d1da394f7f"
|
|
39
39
|
}
|