@wordpress/interface 9.33.0 → 9.33.1

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,7 +2,13 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
- ## 9.33.0 (2026-06-04)
5
+ ## 9.33.1 (2026-06-16)
6
+
7
+ ## 9.33.0 (2026-06-10)
8
+
9
+ ### Documentation
10
+
11
+ - Fix documentation typos ([#78686](https://github.com/WordPress/gutenberg/pull/78686)).
6
12
 
7
13
  ## 9.32.0 (2026-05-27)
8
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/interface",
3
- "version": "9.33.0",
3
+ "version": "9.33.1",
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",
@@ -41,7 +41,6 @@
41
41
  "./package.json": "./package.json",
42
42
  "./build-style/": "./build-style/"
43
43
  },
44
- "react-native": "src/index",
45
44
  "sideEffects": [
46
45
  "build-style/**",
47
46
  "src/**/*.scss",
@@ -53,21 +52,25 @@
53
52
  "build-module/store/index.mjs"
54
53
  ],
55
54
  "dependencies": {
56
- "@wordpress/a11y": "^4.48.0",
57
- "@wordpress/admin-ui": "^2.3.0",
58
- "@wordpress/base-styles": "^9.1.0",
59
- "@wordpress/components": "^35.0.0",
60
- "@wordpress/compose": "^8.1.0",
61
- "@wordpress/data": "^10.48.0",
62
- "@wordpress/deprecated": "^4.48.0",
63
- "@wordpress/element": "^8.0.0",
64
- "@wordpress/i18n": "^6.21.0",
65
- "@wordpress/icons": "^13.3.0",
66
- "@wordpress/plugins": "^7.48.0",
67
- "@wordpress/preferences": "^4.48.0",
68
- "@wordpress/viewport": "^6.48.0",
55
+ "@wordpress/a11y": "^4.48.1",
56
+ "@wordpress/admin-ui": "^2.3.1",
57
+ "@wordpress/base-styles": "^10.0.1",
58
+ "@wordpress/components": "^35.0.1",
59
+ "@wordpress/compose": "^8.1.1",
60
+ "@wordpress/data": "^10.48.1",
61
+ "@wordpress/deprecated": "^4.48.1",
62
+ "@wordpress/element": "^8.0.1",
63
+ "@wordpress/i18n": "^6.21.1",
64
+ "@wordpress/icons": "^14.0.1",
65
+ "@wordpress/plugins": "^7.48.1",
66
+ "@wordpress/preferences": "^4.48.1",
67
+ "@wordpress/viewport": "^6.48.1",
69
68
  "clsx": "^2.1.1"
70
69
  },
70
+ "devDependencies": {
71
+ "@testing-library/dom": "^10.4.1",
72
+ "@testing-library/react": "^16.3.2"
73
+ },
71
74
  "peerDependencies": {
72
75
  "react": "^18.0.0",
73
76
  "react-dom": "^18.0.0"
@@ -75,5 +78,5 @@
75
78
  "publishConfig": {
76
79
  "access": "public"
77
80
  },
78
- "gitHead": "e7856693aeb4e2522d13608cd32c994e4a97cb9c"
81
+ "gitHead": "99df7432c5c7cb83ba41146fd1f57f3c19004305"
79
82
  }
@@ -16,7 +16,7 @@ Identifier of the complementary area. The string is saved on the store and allow
16
16
 
17
17
  - Type: `String`
18
18
  - Required: No
19
- - Default: Concatenation of `name` of the plugin extracted from the context (when available) with the `targe` of the sidebar passed as a property.
19
+ - Default: Concatenation of `name` of the plugin extracted from the context (when available) with the `target` of the sidebar passed as a property.
20
20
 
21
21
  ### target
22
22
 
@@ -1,2 +0,0 @@
1
- export { default as ComplementaryArea } from './complementary-area';
2
- export { default as PinnedItems } from './pinned-items';