@vaadin/vertical-layout 25.0.0-alpha5 → 25.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vertical-layout",
3
- "version": "25.0.0-alpha5",
3
+ "version": "25.0.0-alpha7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,19 +34,19 @@
34
34
  "web-component"
35
35
  ],
36
36
  "dependencies": {
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",
37
+ "@vaadin/component-base": "25.0.0-alpha7",
38
+ "@vaadin/vaadin-lumo-styles": "25.0.0-alpha7",
39
+ "@vaadin/vaadin-themable-mixin": "25.0.0-alpha7",
40
40
  "lit": "^3.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@vaadin/chai-plugins": "25.0.0-alpha5",
44
- "@vaadin/test-runner-commands": "25.0.0-alpha5",
43
+ "@vaadin/chai-plugins": "25.0.0-alpha7",
44
+ "@vaadin/test-runner-commands": "25.0.0-alpha7",
45
45
  "@vaadin/testing-helpers": "^2.0.0"
46
46
  },
47
47
  "web-types": [
48
48
  "web-types.json",
49
49
  "web-types.lit.json"
50
50
  ],
51
- "gitHead": "7dc87bb2a3cae81ed53259fa10b58f990d50c6fd"
51
+ "gitHead": "87f72707ce6866892f8be5782fa0da008e87dcbc"
52
52
  }
@@ -7,7 +7,7 @@ import { html, LitElement } from 'lit';
7
7
  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
- import { CSSInjectionMixin } from '@vaadin/vaadin-themable-mixin/css-injection-mixin.js';
10
+ import { LumoInjectionMixin } from '@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js';
11
11
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
12
12
  import { verticalLayoutStyles } from './styles/vaadin-vertical-layout-core-styles.js';
13
13
 
@@ -37,7 +37,7 @@ import { verticalLayoutStyles } from './styles/vaadin-vertical-layout-core-style
37
37
  * @mixes ThemableMixin
38
38
  * @mixes ElementMixin
39
39
  */
40
- class VerticalLayout extends ThemableMixin(ElementMixin(CSSInjectionMixin(PolylitMixin(LitElement)))) {
40
+ class VerticalLayout extends ThemableMixin(ElementMixin(LumoInjectionMixin(PolylitMixin(LitElement)))) {
41
41
  static get is() {
42
42
  return 'vaadin-vertical-layout';
43
43
  }
@@ -46,6 +46,12 @@ class VerticalLayout extends ThemableMixin(ElementMixin(CSSInjectionMixin(Polyli
46
46
  return verticalLayoutStyles;
47
47
  }
48
48
 
49
+ static get lumoInjector() {
50
+ return {
51
+ includeBaseStyles: true,
52
+ };
53
+ }
54
+
49
55
  /** @protected */
50
56
  render() {
51
57
  return html`<slot></slot>`;
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/vertical-layout",
4
- "version": "25.0.0-alpha5",
4
+ "version": "25.0.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/vertical-layout",
4
- "version": "25.0.0-alpha5",
4
+ "version": "25.0.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {