@wordpress/base-styles 6.9.1 → 6.10.1-next.2f1c7c01b.0

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 6.10.0 (2025-10-29)
6
+
7
+ ### Enhancements
8
+
9
+ - Update `$font-weight-medium` to 499 ([#72473](https://github.com/WordPress/gutenberg/pull/72473)).
10
+
5
11
  ## 6.9.0 (2025-10-17)
6
12
 
7
13
  ## 6.8.0 (2025-10-01)
package/_variables.scss CHANGED
@@ -37,7 +37,7 @@ $font-line-height-2x-large: 40px;
37
37
 
38
38
  // Weights
39
39
  $font-weight-regular: 400;
40
- $font-weight-medium: 500;
40
+ $font-weight-medium: 499; // ensures fallback to 400 (instead of 600)
41
41
 
42
42
  // Families
43
43
  $font-family-headings: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "6.9.1",
3
+ "version": "6.10.1-next.2f1c7c01b.0",
4
4
  "description": "Base SCSS utilities and variables for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -27,5 +27,5 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "5f84bafdec1bed05247c1080c12f6a237951b862"
30
+ "gitHead": "c6ddcdf455bc02567a2c9e03de6862a2061b85e8"
31
31
  }