@wordpress/keyboard-shortcuts 5.0.2 → 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 +7 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 5.2.0 (2024-06-26)
|
6
|
+
|
7
|
+
## 5.1.0 (2024-06-15)
|
8
|
+
|
5
9
|
## 5.0.0 (2024-05-31)
|
6
10
|
|
7
11
|
### Breaking Changes
|
@@ -124,7 +128,7 @@
|
|
124
128
|
|
125
129
|
## 3.1.1 (2022-02-10)
|
126
130
|
|
127
|
-
### Bug
|
131
|
+
### Bug Fixes
|
128
132
|
|
129
133
|
- Removed unused `@wordpress/compose` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
|
130
134
|
|
@@ -132,7 +136,7 @@
|
|
132
136
|
|
133
137
|
## 3.0.0 (2021-07-29)
|
134
138
|
|
135
|
-
### Breaking
|
139
|
+
### Breaking Changes
|
136
140
|
|
137
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).
|
138
142
|
|
@@ -151,7 +155,7 @@
|
|
151
155
|
|
152
156
|
## 1.13.0 (2020-12-17)
|
153
157
|
|
154
|
-
### New
|
158
|
+
### New Features
|
155
159
|
|
156
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)).
|
157
161
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wordpress/keyboard-shortcuts",
|
3
|
-
"version": "5.0
|
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.0
|
31
|
-
"@wordpress/element": "^6.0
|
32
|
-
"@wordpress/keycodes": "^4.0
|
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
|
}
|