@vaadin/vaadin-lumo-styles 24.0.0-alpha6 → 24.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/color.d.ts CHANGED
@@ -3,5 +3,3 @@ import type { CSSResult } from 'lit';
3
3
  export const colorBase: CSSResult;
4
4
 
5
5
  export const color: CSSResult;
6
-
7
- export const colorLegacy: CSSResult;
package/color.js CHANGED
@@ -197,13 +197,4 @@ const color = css`
197
197
 
198
198
  registerStyles('', color, { moduleId: 'lumo-color' });
199
199
 
200
- const colorLegacy = css`
201
- :host {
202
- color: var(--lumo-body-text-color) !important;
203
- background-color: var(--lumo-base-color) !important;
204
- }
205
- `;
206
-
207
- registerStyles('', [color, colorLegacy], { moduleId: 'lumo-color-legacy' });
208
-
209
- export { colorBase, color, colorLegacy };
200
+ export { colorBase, color };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-lumo-styles",
3
- "version": "24.0.0-alpha6",
3
+ "version": "24.0.0-alpha7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -41,8 +41,8 @@
41
41
  ],
42
42
  "dependencies": {
43
43
  "@polymer/polymer": "^3.0.0",
44
- "@vaadin/icon": "24.0.0-alpha6",
45
- "@vaadin/vaadin-themable-mixin": "24.0.0-alpha6"
44
+ "@vaadin/icon": "24.0.0-alpha7",
45
+ "@vaadin/vaadin-themable-mixin": "24.0.0-alpha7"
46
46
  },
47
47
  "devDependencies": {
48
48
  "gulp": "^4.0.2",
@@ -51,5 +51,5 @@
51
51
  "gulp-sort": "^2.0.0",
52
52
  "gulp-svgmin": "^4.1.0"
53
53
  },
54
- "gitHead": "0004ac92b6e5f415b5fa949e0582d1d11e527b1f"
54
+ "gitHead": "aeb4535336813636736759e0a5de148b26bfc3b6"
55
55
  }
package/version.js CHANGED
@@ -5,7 +5,7 @@
5
5
  */
6
6
  class Lumo extends HTMLElement {
7
7
  static get version() {
8
- return '24.0.0-alpha6';
8
+ return '24.0.0-alpha7';
9
9
  }
10
10
  }
11
11