@vaadin/card 25.0.0-alpha19 → 25.0.0-alpha20
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/card",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-alpha20",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,21 +33,21 @@
|
|
|
33
33
|
"web-component"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@vaadin/component-base": "25.0.0-
|
|
37
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
36
|
+
"@vaadin/component-base": "25.0.0-alpha20",
|
|
37
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha20",
|
|
38
38
|
"lit": "^3.0.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@vaadin/avatar": "25.0.0-
|
|
42
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
43
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
41
|
+
"@vaadin/avatar": "25.0.0-alpha20",
|
|
42
|
+
"@vaadin/chai-plugins": "25.0.0-alpha20",
|
|
43
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha20",
|
|
44
44
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha20",
|
|
46
46
|
"sinon": "^21.0.0"
|
|
47
47
|
},
|
|
48
48
|
"web-types": [
|
|
49
49
|
"web-types.json",
|
|
50
50
|
"web-types.lit.json"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "c948aae591a30b432f3784000d4677674cae56e0"
|
|
53
53
|
}
|
|
@@ -31,7 +31,8 @@ export const cardStyles = css`
|
|
|
31
31
|
|
|
32
32
|
/* Could be an inset outline on the host as well, but let's reserve that for a potential focus outline */
|
|
33
33
|
:host::before {
|
|
34
|
-
border: var(--vaadin-card-border-width, 0) solid
|
|
34
|
+
border: var(--vaadin-card-border-width, 0) solid
|
|
35
|
+
var(--vaadin-card-border-color, var(--vaadin-border-color-secondary));
|
|
35
36
|
border-radius: inherit;
|
|
36
37
|
content: '';
|
|
37
38
|
inset: 0;
|
|
@@ -133,7 +134,7 @@ export const cardStyles = css`
|
|
|
133
134
|
}
|
|
134
135
|
|
|
135
136
|
::slotted([slot='title']) {
|
|
136
|
-
color: var(--vaadin-card-title-color, var(--vaadin-color)) !important;
|
|
137
|
+
color: var(--vaadin-card-title-color, var(--vaadin-text-color)) !important;
|
|
137
138
|
font-size: var(--vaadin-card-title-font-size, inherit) !important;
|
|
138
139
|
font-weight: var(--vaadin-card-title-font-weight, 500) !important;
|
|
139
140
|
line-height: var(--vaadin-card-title-line-height, inherit) !important;
|
|
@@ -141,7 +142,7 @@ export const cardStyles = css`
|
|
|
141
142
|
}
|
|
142
143
|
|
|
143
144
|
::slotted([slot='subtitle']) {
|
|
144
|
-
color: var(--vaadin-card-subtitle-color, var(--vaadin-color-
|
|
145
|
+
color: var(--vaadin-card-subtitle-color, var(--vaadin-text-color-secondary)) !important;
|
|
145
146
|
font-size: var(--vaadin-card-subtitle-font-size, inherit) !important;
|
|
146
147
|
font-weight: var(--vaadin-card-subtitle-font-weight, 400) !important;
|
|
147
148
|
line-height: var(--vaadin-card-subtitle-line-height, inherit) !important;
|
package/web-types.json
CHANGED