@wordpress/interface 6.0.3 → 6.2.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 +9 -5
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 6.2.0 (2024-06-26)
|
|
6
|
+
|
|
7
|
+
## 6.1.0 (2024-06-15)
|
|
8
|
+
|
|
5
9
|
## 6.0.0 (2024-05-31)
|
|
6
10
|
|
|
7
11
|
### Breaking Changes
|
|
@@ -24,7 +28,7 @@
|
|
|
24
28
|
|
|
25
29
|
## 5.30.0 (2024-03-06)
|
|
26
30
|
|
|
27
|
-
|
|
31
|
+
### Breaking Changes
|
|
28
32
|
|
|
29
33
|
- Removed `MoreMenuDropdown` component ([#59095](https://github.com/WordPress/gutenberg/pull/59095)).
|
|
30
34
|
|
|
@@ -132,7 +136,7 @@
|
|
|
132
136
|
|
|
133
137
|
## 4.2.1 (2022-02-10)
|
|
134
138
|
|
|
135
|
-
### Bug
|
|
139
|
+
### Bug Fixes
|
|
136
140
|
|
|
137
141
|
- Removed unused `@wordpress/deprecated` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
|
|
138
142
|
|
|
@@ -140,13 +144,13 @@
|
|
|
140
144
|
|
|
141
145
|
## 4.1.0 (2021-09-09)
|
|
142
146
|
|
|
143
|
-
### New
|
|
147
|
+
### New Features
|
|
144
148
|
|
|
145
149
|
- Add support for editor 'feature' preferences. Adds an `isFeatureActive` selector, a `toggleFeature` action, a `MoreMenuDropdown` component, and a `MoreMenuFeatureToggle` component. ([#33774](https://github.com/WordPress/gutenberg/pull/33774)).
|
|
146
150
|
|
|
147
151
|
## 4.0.0 (2021-07-29)
|
|
148
152
|
|
|
149
|
-
### Breaking
|
|
153
|
+
### Breaking Changes
|
|
150
154
|
|
|
151
155
|
- Upgraded React components to work with v17.0 ([#29118](https://github.com/WordPress/gutenberg/pull/29118)). There are no new features in React v17.0 as explained in the [blog post](https://reactjs.org/blog/2020/10/20/react-v17.html).
|
|
152
156
|
|
|
@@ -181,7 +185,7 @@
|
|
|
181
185
|
|
|
182
186
|
## 0.11.0 (2020-12-17)
|
|
183
187
|
|
|
184
|
-
### New
|
|
188
|
+
### New Features
|
|
185
189
|
|
|
186
190
|
- Added a store definition `store` for the interface namespace to use with `@wordpress/data` API ([#26655](https://github.com/WordPress/gutenberg/pull/26655)).
|
|
187
191
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/interface",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.2.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",
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@babel/runtime": "^7.16.0",
|
|
36
|
-
"@wordpress/a11y": "^4.0
|
|
37
|
-
"@wordpress/components": "^28.0
|
|
38
|
-
"@wordpress/compose": "^7.0
|
|
39
|
-
"@wordpress/data": "^10.0
|
|
40
|
-
"@wordpress/deprecated": "^4.0
|
|
41
|
-
"@wordpress/element": "^6.0
|
|
42
|
-
"@wordpress/i18n": "^5.0
|
|
43
|
-
"@wordpress/icons": "^10.0
|
|
44
|
-
"@wordpress/plugins": "^7.0
|
|
45
|
-
"@wordpress/preferences": "^4.0
|
|
46
|
-
"@wordpress/private-apis": "^1.0
|
|
47
|
-
"@wordpress/viewport": "^6.0
|
|
36
|
+
"@wordpress/a11y": "^4.2.0",
|
|
37
|
+
"@wordpress/components": "^28.2.0",
|
|
38
|
+
"@wordpress/compose": "^7.2.0",
|
|
39
|
+
"@wordpress/data": "^10.2.0",
|
|
40
|
+
"@wordpress/deprecated": "^4.2.0",
|
|
41
|
+
"@wordpress/element": "^6.2.0",
|
|
42
|
+
"@wordpress/i18n": "^5.2.0",
|
|
43
|
+
"@wordpress/icons": "^10.2.0",
|
|
44
|
+
"@wordpress/plugins": "^7.2.0",
|
|
45
|
+
"@wordpress/preferences": "^4.2.0",
|
|
46
|
+
"@wordpress/private-apis": "^1.2.0",
|
|
47
|
+
"@wordpress/viewport": "^6.2.0",
|
|
48
48
|
"clsx": "^2.1.1"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
58
58
|
}
|