@vaadin/vaadin-lumo-styles 23.0.0-alpha3 → 23.0.0-beta2

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
  }
@@ -121,11 +121,11 @@ const inputField = css`
121
121
  --lumo-text-field-size: var(--lumo-size-s);
122
122
  }
123
123
 
124
- :host([theme~='small'][has-label]) [part='label'] {
124
+ :host([theme~='small']) [part='label'] {
125
125
  font-size: var(--lumo-font-size-xs);
126
126
  }
127
127
 
128
- :host([theme~='small'][has-label]) [part='error-message'] {
128
+ :host([theme~='small']) [part='error-message'] {
129
129
  font-size: var(--lumo-font-size-xxs);
130
130
  }
131
131
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-lumo-styles",
3
- "version": "23.0.0-alpha3",
3
+ "version": "23.0.0-beta2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -18,6 +18,7 @@
18
18
  },
19
19
  "main": "all-imports.js",
20
20
  "module": "all-imports.js",
21
+ "type": "module",
21
22
  "scripts": {
22
23
  "icons": "gulp icons"
23
24
  },
@@ -41,8 +42,8 @@
41
42
  "@polymer/iron-icon": "^3.0.0",
42
43
  "@polymer/iron-iconset-svg": "^3.0.0",
43
44
  "@polymer/polymer": "^3.0.0",
44
- "@vaadin/icon": "23.0.0-alpha3",
45
- "@vaadin/vaadin-themable-mixin": "23.0.0-alpha3"
45
+ "@vaadin/icon": "23.0.0-beta2",
46
+ "@vaadin/vaadin-themable-mixin": "23.0.0-beta2"
46
47
  },
47
48
  "devDependencies": {
48
49
  "gulp": "^4.0.2",
@@ -51,5 +52,5 @@
51
52
  "gulp-sort": "^2.0.0",
52
53
  "gulp-svgmin": "^4.1.0"
53
54
  },
54
- "gitHead": "490037919a9e054cc002c1b3be0c94a1603e1a44"
55
+ "gitHead": "a276f7a0fd00e5459b87267468e0dd0d4fb6f7f3"
55
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-alpha3';
8
+ return '23.0.0-beta2';
9
9
  }
10
10
  }
11
11