@vaadin/card 25.0.0-alpha4 → 25.0.0-alpha5
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-alpha5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"web-component"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vaadin/component-base": "25.0.0-
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
39
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
37
|
+
"@vaadin/component-base": "25.0.0-alpha5",
|
|
38
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha5",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha5",
|
|
40
40
|
"lit": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
44
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
43
|
+
"@vaadin/chai-plugins": "25.0.0-alpha5",
|
|
44
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha5",
|
|
45
45
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
46
46
|
"sinon": "^18.0.0"
|
|
47
47
|
},
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"web-types.json",
|
|
50
50
|
"web-types.lit.json"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "7dc87bb2a3cae81ed53259fa10b58f990d50c6fd"
|
|
53
53
|
}
|
package/src/vaadin-card.js
CHANGED
|
@@ -8,8 +8,9 @@ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
|
8
8
|
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
9
9
|
import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
|
|
10
10
|
import { generateUniqueId } from '@vaadin/component-base/src/unique-id-utils.js';
|
|
11
|
+
import { CSSInjectionMixin } from '@vaadin/vaadin-themable-mixin/css-injection-mixin.js';
|
|
11
12
|
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
|
|
12
|
-
import { cardStyles } from './styles/vaadin-card-styles.js';
|
|
13
|
+
import { cardStyles } from './styles/vaadin-card-core-styles.js';
|
|
13
14
|
|
|
14
15
|
/**
|
|
15
16
|
* `<vaadin-card>` is a versatile container for grouping related content and actions.
|
|
@@ -51,7 +52,7 @@ import { cardStyles } from './styles/vaadin-card-styles.js';
|
|
|
51
52
|
* @mixes ElementMixin
|
|
52
53
|
* @mixes ThemableMixin
|
|
53
54
|
*/
|
|
54
|
-
class Card extends ElementMixin(ThemableMixin(PolylitMixin(LitElement))) {
|
|
55
|
+
class Card extends ElementMixin(ThemableMixin(CSSInjectionMixin(PolylitMixin(LitElement)))) {
|
|
55
56
|
static get is() {
|
|
56
57
|
return 'vaadin-card';
|
|
57
58
|
}
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED
|
File without changes
|
|
File without changes
|