@wordpress/base-styles 6.8.1-next.ff1cebbba.0 → 6.10.1-next.36001005c.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 +8 -0
- package/_variables.scss +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 6.10.0-next.0 (2025-10-22)
|
|
6
|
+
|
|
7
|
+
### Enhancements
|
|
8
|
+
|
|
9
|
+
- Update `$font-weight-medium` to 499 ([#72473](https://github.com/WordPress/gutenberg/pull/72473)).
|
|
10
|
+
|
|
11
|
+
## 6.9.0 (2025-10-17)
|
|
12
|
+
|
|
5
13
|
## 6.8.0 (2025-10-01)
|
|
6
14
|
|
|
7
15
|
## 6.7.0 (2025-09-17)
|
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:
|
|
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.
|
|
3
|
+
"version": "6.10.1-next.36001005c.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": "
|
|
30
|
+
"gitHead": "b73a8a22e779c59efb8f911e32b681652f237d60"
|
|
31
31
|
}
|