@vaadin/vertical-layout 25.0.0-alpha4 → 25.0.0-alpha6

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-alpha4",
3
+ "version": "25.0.0-alpha6",
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-alpha4",
38
- "@vaadin/vaadin-lumo-styles": "25.0.0-alpha4",
39
- "@vaadin/vaadin-themable-mixin": "25.0.0-alpha4",
37
+ "@vaadin/component-base": "25.0.0-alpha6",
38
+ "@vaadin/vaadin-lumo-styles": "25.0.0-alpha6",
39
+ "@vaadin/vaadin-themable-mixin": "25.0.0-alpha6",
40
40
  "lit": "^3.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@vaadin/chai-plugins": "25.0.0-alpha4",
44
- "@vaadin/test-runner-commands": "25.0.0-alpha4",
43
+ "@vaadin/chai-plugins": "25.0.0-alpha6",
44
+ "@vaadin/test-runner-commands": "25.0.0-alpha6",
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": "ce4421f0daf26027b863b91787a474e4cc264344"
51
+ "gitHead": "cd1d084198d2b326c58d44bb39fa4845b71ce551"
52
52
  }
@@ -7,9 +7,9 @@ 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
- import { verticalLayoutStyles } from './styles/vaadin-vertical-layout-styles.js';
12
+ import { verticalLayoutStyles } from './styles/vaadin-vertical-layout-core-styles.js';
13
13
 
14
14
  /**
15
15
  * `<vaadin-vertical-layout>` provides a simple way to vertically align your HTML elements.
@@ -37,7 +37,7 @@ import { verticalLayoutStyles } from './styles/vaadin-vertical-layout-styles.js'
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
  }
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-alpha4",
4
+ "version": "25.0.0-alpha6",
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-alpha4",
4
+ "version": "25.0.0-alpha6",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {