@wordpress/keycodes 4.36.1-next.738bb1424.0 → 4.36.1-next.76cff8c98.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/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// packages/keycodes/src/index.ts
|
|
2
2
|
import { __ } from "@wordpress/i18n";
|
|
3
|
-
import { isAppleOS } from "./platform.
|
|
3
|
+
import { isAppleOS } from "./platform.mjs";
|
|
4
4
|
var BACKSPACE = 8;
|
|
5
5
|
var TAB = 9;
|
|
6
6
|
var ENTER = 13;
|
|
@@ -179,4 +179,4 @@ export {
|
|
|
179
179
|
rawShortcut,
|
|
180
180
|
shortcutAriaLabel
|
|
181
181
|
};
|
|
182
|
-
//# sourceMappingURL=index.
|
|
182
|
+
//# sourceMappingURL=index.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/keycodes",
|
|
3
|
-
"version": "4.36.1-next.
|
|
3
|
+
"version": "4.36.1-next.76cff8c98.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,13 +29,12 @@
|
|
|
29
29
|
"build-types",
|
|
30
30
|
"*.md"
|
|
31
31
|
],
|
|
32
|
-
"type": "module",
|
|
33
32
|
"main": "build/index.cjs",
|
|
34
|
-
"module": "build-module/index.
|
|
33
|
+
"module": "build-module/index.mjs",
|
|
35
34
|
"exports": {
|
|
36
35
|
".": {
|
|
37
36
|
"types": "./build-types/index.d.ts",
|
|
38
|
-
"import": "./build-module/index.
|
|
37
|
+
"import": "./build-module/index.mjs",
|
|
39
38
|
"require": "./build/index.cjs"
|
|
40
39
|
},
|
|
41
40
|
"./package.json": "./package.json"
|
|
@@ -45,10 +44,10 @@
|
|
|
45
44
|
"types": "build-types",
|
|
46
45
|
"sideEffects": false,
|
|
47
46
|
"dependencies": {
|
|
48
|
-
"@wordpress/i18n": "^6.9.1-next.
|
|
47
|
+
"@wordpress/i18n": "^6.9.1-next.76cff8c98.0"
|
|
49
48
|
},
|
|
50
49
|
"publishConfig": {
|
|
51
50
|
"access": "public"
|
|
52
51
|
},
|
|
53
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "368727f14b858e75179e140967c2d9ec965c8790"
|
|
54
53
|
}
|
|
File without changes
|
|
File without changes
|