@vaadin/card 24.8.0-alpha5 → 24.8.0-alpha7
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 +8 -8
- package/src/vaadin-card.js +2 -0
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/card",
|
|
3
|
-
"version": "24.8.0-
|
|
3
|
+
"version": "24.8.0-alpha7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"web-component"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vaadin/component-base": "24.8.0-
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "24.8.0-
|
|
39
|
-
"@vaadin/vaadin-material-styles": "24.8.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "24.8.0-
|
|
37
|
+
"@vaadin/component-base": "24.8.0-alpha7",
|
|
38
|
+
"@vaadin/vaadin-lumo-styles": "24.8.0-alpha7",
|
|
39
|
+
"@vaadin/vaadin-material-styles": "24.8.0-alpha7",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "24.8.0-alpha7",
|
|
41
41
|
"lit": "^3.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@vaadin/chai-plugins": "24.8.0-
|
|
45
|
-
"@vaadin/test-runner-commands": "24.8.0-
|
|
44
|
+
"@vaadin/chai-plugins": "24.8.0-alpha7",
|
|
45
|
+
"@vaadin/test-runner-commands": "24.8.0-alpha7",
|
|
46
46
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
47
47
|
"sinon": "^18.0.0"
|
|
48
48
|
},
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"web-types.json",
|
|
51
51
|
"web-types.lit.json"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "7e65e14cbdcc372ab89620ba00e04251291d3c63"
|
|
54
54
|
}
|
package/src/vaadin-card.js
CHANGED
|
@@ -236,6 +236,8 @@ class Card extends ElementMixin(ThemableMixin(PolylitMixin(LitElement))) {
|
|
|
236
236
|
height: auto;
|
|
237
237
|
aspect-ratio: var(--vaadin-card-media-aspect-ratio, 16/9);
|
|
238
238
|
object-fit: cover;
|
|
239
|
+
/* Fixes an issue where an icon overflows the card boundaries on Firefox: https://github.com/vaadin/web-components/issues/8641 */
|
|
240
|
+
overflow: hidden;
|
|
239
241
|
}
|
|
240
242
|
|
|
241
243
|
:host([theme~='horizontal']:is([theme~='cover-media'], [theme~='stretch-media'])) {
|
package/web-types.json
CHANGED