@vaadin/vaadin-lumo-styles 23.0.0-alpha5 → 23.0.0-beta1

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.js CHANGED
@@ -174,9 +174,10 @@ const color = css`
174
174
  color: var(--lumo-header-text-color);
175
175
  }
176
176
 
177
- a:any-link {
177
+ a:where(:any-link) {
178
178
  color: var(--lumo-primary-text-color);
179
179
  }
180
+
180
181
  a:not(:any-link) {
181
182
  color: var(--lumo-disabled-text-color);
182
183
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-lumo-styles",
3
- "version": "23.0.0-alpha5",
3
+ "version": "23.0.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -42,8 +42,8 @@
42
42
  "@polymer/iron-icon": "^3.0.0",
43
43
  "@polymer/iron-iconset-svg": "^3.0.0",
44
44
  "@polymer/polymer": "^3.0.0",
45
- "@vaadin/icon": "23.0.0-alpha5",
46
- "@vaadin/vaadin-themable-mixin": "23.0.0-alpha5"
45
+ "@vaadin/icon": "23.0.0-beta1",
46
+ "@vaadin/vaadin-themable-mixin": "23.0.0-beta1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "gulp": "^4.0.2",
@@ -52,5 +52,5 @@
52
52
  "gulp-sort": "^2.0.0",
53
53
  "gulp-svgmin": "^4.1.0"
54
54
  },
55
- "gitHead": "74f9294964eb8552d96578c14af6ad214f5257bc"
55
+ "gitHead": "467244b76021176c109df675799b07029b293e58"
56
56
  }
package/typography.js CHANGED
@@ -103,7 +103,7 @@ const typography = css`
103
103
  text-decoration: none;
104
104
  }
105
105
 
106
- a:any-link:hover {
106
+ a:where(:any-link):hover {
107
107
  text-decoration: underline;
108
108
  }
109
109
 
package/version.js CHANGED
@@ -5,7 +5,7 @@
5
5
  */
6
6
  class Lumo extends HTMLElement {
7
7
  static get version() {
8
- return '23.0.0-alpha5';
8
+ return '23.0.0-beta1';
9
9
  }
10
10
  }
11
11