@swiftwc/ui 0.0.0-dev.30 → 0.0.0-dev.31

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.
@@ -400,12 +400,12 @@
400
400
  font-feature-settings: var(--host--font-feature-settings, normal);
401
401
  font-variation-settings: var(--host--font-variation-settings, normal);
402
402
  }
403
- html:has(body > v-keyboard[system-font=Inter]) {
403
+ :where(html:has(body > v-keyboard[system-font=Inter])) {
404
404
  --host--font-family: Verdana, Inter, sans-serif;
405
405
  --host--font-feature-settings: 'liga' 1, 'calt' 1;
406
406
  }
407
407
  @supports (font-variation-settings: normal) {
408
- html:has(body > v-keyboard[system-font=Inter]) {
408
+ :where(html:has(body > v-keyboard[system-font=Inter])) {
409
409
  --host--font-family: Verdana, InterVariable, sans-serif;
410
410
  }
411
411
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swiftwc/ui",
3
- "version": "0.0.0-dev.30",
3
+ "version": "0.0.0-dev.31",
4
4
  "description": "Elegant SwiftUI-inspired web components for standalone web apps and web extensions.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -122,7 +122,7 @@
122
122
 
123
123
  font-variation-settings: var(--host--font-variation-settings, normal);
124
124
 
125
- &:has(body > v-keyboard[system-font='Inter']) {
125
+ :where(&:has(body > v-keyboard[system-font='Inter'])) {
126
126
  --host--font-family: Verdana, Inter, sans-serif;
127
127
 
128
128
  --host--font-feature-settings: 'liga' 1, 'calt' 1;