@wordpress/keycodes 4.1.0 → 4.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 +4 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.2.0 (2024-06-26)
|
|
6
|
+
|
|
5
7
|
## 4.1.0 (2024-06-15)
|
|
6
8
|
|
|
7
9
|
## 4.0.0 (2024-05-31)
|
|
@@ -137,7 +139,7 @@
|
|
|
137
139
|
|
|
138
140
|
## 2.18.0 (2021-01-05)
|
|
139
141
|
|
|
140
|
-
###
|
|
142
|
+
### Enhancements
|
|
141
143
|
|
|
142
144
|
- Include TypeScript type declarations ([#19520](https://github.com/WordPress/gutenberg/pull/19520))
|
|
143
145
|
|
|
@@ -155,6 +157,6 @@
|
|
|
155
157
|
|
|
156
158
|
## 2.0.0 (2018-09-05)
|
|
157
159
|
|
|
158
|
-
### Breaking
|
|
160
|
+
### Breaking Changes
|
|
159
161
|
|
|
160
162
|
- Change how required built-ins are polyfilled with Babel 7 ([#9171](https://github.com/WordPress/gutenberg/pull/9171)). If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/keycodes",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Keycodes utilities for WordPress. Used to check for keyboard events across browsers/operating systems.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@babel/runtime": "^7.16.0",
|
|
32
|
-
"@wordpress/i18n": "^5.
|
|
32
|
+
"@wordpress/i18n": "^5.2.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
38
38
|
}
|