@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
  ## Gutenberg
2
2
 
3
- Copyright 2016-2025 by the contributors
3
+ Copyright 2016-2026 by the contributors
4
4
 
5
5
  **License for Contributions (on and after April 15, 2021)**
6
6
 
@@ -1,6 +1,6 @@
1
1
  // packages/keycodes/src/index.ts
2
2
  import { __ } from "@wordpress/i18n";
3
- import { isAppleOS } from "./platform.js";
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.js.map
182
+ //# sourceMappingURL=index.mjs.map
@@ -12,4 +12,4 @@ function isAppleOS(_window) {
12
12
  export {
13
13
  isAppleOS
14
14
  };
15
- //# sourceMappingURL=platform.js.map
15
+ //# sourceMappingURL=platform.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/keycodes",
3
- "version": "4.36.1-next.738bb1424.0",
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.js",
33
+ "module": "build-module/index.mjs",
35
34
  "exports": {
36
35
  ".": {
37
36
  "types": "./build-types/index.d.ts",
38
- "import": "./build-module/index.js",
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.738bb1424.0"
47
+ "@wordpress/i18n": "^6.9.1-next.76cff8c98.0"
49
48
  },
50
49
  "publishConfig": {
51
50
  "access": "public"
52
51
  },
53
- "gitHead": "ab1b004c0d61c295aa34bc86ea07f979343983ce"
52
+ "gitHead": "368727f14b858e75179e140967c2d9ec965c8790"
54
53
  }
File without changes