@wordpress/keyboard-shortcuts 5.1.0 → 5.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 +5 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 5.2.0 (2024-06-26)
|
6
|
+
|
5
7
|
## 5.1.0 (2024-06-15)
|
6
8
|
|
7
9
|
## 5.0.0 (2024-05-31)
|
@@ -126,7 +128,7 @@
|
|
126
128
|
|
127
129
|
## 3.1.1 (2022-02-10)
|
128
130
|
|
129
|
-
### Bug
|
131
|
+
### Bug Fixes
|
130
132
|
|
131
133
|
- Removed unused `@wordpress/compose` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
|
132
134
|
|
@@ -134,7 +136,7 @@
|
|
134
136
|
|
135
137
|
## 3.0.0 (2021-07-29)
|
136
138
|
|
137
|
-
### Breaking
|
139
|
+
### Breaking Changes
|
138
140
|
|
139
141
|
- 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).
|
140
142
|
|
@@ -153,7 +155,7 @@
|
|
153
155
|
|
154
156
|
## 1.13.0 (2020-12-17)
|
155
157
|
|
156
|
-
### New
|
158
|
+
### New Features
|
157
159
|
|
158
160
|
- Added a store definition `store` for the keyboard shortcuts namespace to use with `@wordpress/data` API ([#26655](https://github.com/WordPress/gutenberg/pull/26655)).
|
159
161
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wordpress/keyboard-shortcuts",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.2.0",
|
4
4
|
"description": "Handling keyboard shortcuts.",
|
5
5
|
"author": "The WordPress Contributors",
|
6
6
|
"license": "GPL-2.0-or-later",
|
@@ -27,9 +27,9 @@
|
|
27
27
|
"react-native": "src/index",
|
28
28
|
"dependencies": {
|
29
29
|
"@babel/runtime": "^7.16.0",
|
30
|
-
"@wordpress/data": "^10.
|
31
|
-
"@wordpress/element": "^6.
|
32
|
-
"@wordpress/keycodes": "^4.
|
30
|
+
"@wordpress/data": "^10.2.0",
|
31
|
+
"@wordpress/element": "^6.2.0",
|
32
|
+
"@wordpress/keycodes": "^4.2.0"
|
33
33
|
},
|
34
34
|
"peerDependencies": {
|
35
35
|
"react": "^18.0.0"
|
@@ -37,5 +37,5 @@
|
|
37
37
|
"publishConfig": {
|
38
38
|
"access": "public"
|
39
39
|
},
|
40
|
-
"gitHead": "
|
40
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
41
41
|
}
|