@wordpress/interface 9.35.1-next.v.202607070741.0 → 9.36.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,14 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 9.36.0 (2026-07-14)
6
+
7
+ ### Enhancements
8
+
9
+ - `ComplementaryArea`: Use the emphasis font-weight token for headings ([#80093](https://github.com/WordPress/gutenberg/pull/80093)).
10
+
11
+ - Widen React peer dependency ranges to `^18 || ^19` to support both React 18 and React 19 environments ([#80024](https://github.com/WordPress/gutenberg/pull/80024)).
12
+
5
13
  ## 9.35.0 (2026-07-01)
6
14
 
7
15
  ## 9.34.0 (2026-06-24)
@@ -131,14 +131,14 @@
131
131
  }
132
132
  .interface-complementary-area h2 {
133
133
  font-size: 13px;
134
- font-weight: 499;
134
+ font-weight: var(--wpds-typography-font-weight-emphasis, 600);
135
135
  color: #1e1e1e;
136
136
  margin-bottom: 1.5em;
137
137
  }
138
138
  .interface-complementary-area h3 {
139
139
  font-size: 11px;
140
140
  text-transform: uppercase;
141
- font-weight: 499;
141
+ font-weight: var(--wpds-typography-font-weight-emphasis, 600);
142
142
  color: #1e1e1e;
143
143
  margin-bottom: 1.5em;
144
144
  }
@@ -131,14 +131,14 @@
131
131
  }
132
132
  .interface-complementary-area h2 {
133
133
  font-size: 13px;
134
- font-weight: 499;
134
+ font-weight: var(--wpds-typography-font-weight-emphasis, 600);
135
135
  color: #1e1e1e;
136
136
  margin-bottom: 1.5em;
137
137
  }
138
138
  .interface-complementary-area h3 {
139
139
  font-size: 11px;
140
140
  text-transform: uppercase;
141
- font-weight: 499;
141
+ font-weight: var(--wpds-typography-font-weight-emphasis, 600);
142
142
  color: #1e1e1e;
143
143
  margin-bottom: 1.5em;
144
144
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/interface",
3
- "version": "9.35.1-next.v.202607070741.0+a51d59513",
3
+ "version": "9.36.0",
4
4
  "description": "Interface module for WordPress. The package contains shared functionality across the modern JavaScript-based WordPress screens.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -52,19 +52,19 @@
52
52
  "build-module/store/index.mjs"
53
53
  ],
54
54
  "dependencies": {
55
- "@wordpress/a11y": "^4.50.1-next.v.202607070741.0+a51d59513",
56
- "@wordpress/admin-ui": "^2.5.1-next.v.202607070741.0+a51d59513",
57
- "@wordpress/base-styles": "^10.3.1-next.v.202607070741.0+a51d59513",
58
- "@wordpress/components": "^37.0.1-next.v.202607070741.0+a51d59513",
59
- "@wordpress/compose": "^8.3.1-next.v.202607070741.0+a51d59513",
60
- "@wordpress/data": "^10.50.1-next.v.202607070741.0+a51d59513",
61
- "@wordpress/deprecated": "^4.50.1-next.v.202607070741.0+a51d59513",
62
- "@wordpress/element": "^8.2.1-next.v.202607070741.0+a51d59513",
63
- "@wordpress/i18n": "^6.23.1-next.v.202607070741.0+a51d59513",
64
- "@wordpress/icons": "^15.1.1-next.v.202607070741.0+a51d59513",
65
- "@wordpress/plugins": "^7.50.1-next.v.202607070741.0+a51d59513",
66
- "@wordpress/preferences": "^4.50.1-next.v.202607070741.0+a51d59513",
67
- "@wordpress/viewport": "^6.50.1-next.v.202607070741.0+a51d59513",
55
+ "@wordpress/a11y": "^4.51.0",
56
+ "@wordpress/admin-ui": "^2.6.0",
57
+ "@wordpress/base-styles": "^11.0.0",
58
+ "@wordpress/components": "^37.0.0",
59
+ "@wordpress/compose": "^8.4.0",
60
+ "@wordpress/data": "^10.51.0",
61
+ "@wordpress/deprecated": "^4.51.0",
62
+ "@wordpress/element": "^8.3.0",
63
+ "@wordpress/i18n": "^6.24.0",
64
+ "@wordpress/icons": "^15.2.0",
65
+ "@wordpress/plugins": "^7.51.0",
66
+ "@wordpress/preferences": "^4.51.0",
67
+ "@wordpress/viewport": "^6.51.0",
68
68
  "clsx": "^2.1.1"
69
69
  },
70
70
  "devDependencies": {
@@ -72,11 +72,11 @@
72
72
  "@testing-library/react": "^16.3.2"
73
73
  },
74
74
  "peerDependencies": {
75
- "react": "^18.0.0",
76
- "react-dom": "^18.0.0"
75
+ "react": "^18 || ^19",
76
+ "react-dom": "^18 || ^19"
77
77
  },
78
78
  "publishConfig": {
79
79
  "access": "public"
80
80
  },
81
- "gitHead": "f637726e370c8b23695ed9af82adbe171ad235d8"
81
+ "gitHead": "e9a74f9c14095a34398ecd4d1f7a908e55051205"
82
82
  }
@@ -36,7 +36,7 @@
36
36
 
37
37
  h2 {
38
38
  font-size: $default-font-size;
39
- font-weight: $font-weight-medium;
39
+ font-weight: var(--wpds-typography-font-weight-emphasis);
40
40
  color: $gray-900;
41
41
  margin-bottom: 1.5em;
42
42
  }
@@ -45,7 +45,7 @@
45
45
  h3 {
46
46
  font-size: 11px;
47
47
  text-transform: uppercase;
48
- font-weight: $font-weight-medium;
48
+ font-weight: var(--wpds-typography-font-weight-emphasis);
49
49
  color: $gray-900;
50
50
  margin-bottom: 1.5em;
51
51
  }