@wordpress/escape-html 3.36.1-next.738bb1424.0 → 3.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
 
package/build/index.cjs CHANGED
@@ -39,7 +39,7 @@ __export(index_exports, {
39
39
  isValidAttributeName: () => isValidAttributeName
40
40
  });
41
41
  module.exports = __toCommonJS(index_exports);
42
- var import_escape_greater = __toESM(require("./escape-greater.cjs"), 1);
42
+ var import_escape_greater = __toESM(require("./escape-greater.cjs"));
43
43
  var REGEXP_INVALID_ATTRIBUTE_NAME = /[\u007F-\u009F "'>/="\uFDD0-\uFDEF]/;
44
44
  function escapeAmpersand(value) {
45
45
  return value.replace(/&(?!([a-z0-9]+|#[0-9]+|#x[a-f0-9]+);)/gi, "&");
@@ -5,4 +5,4 @@ function __unstableEscapeGreaterThan(value) {
5
5
  export {
6
6
  __unstableEscapeGreaterThan as default
7
7
  };
8
- //# sourceMappingURL=escape-greater.js.map
8
+ //# sourceMappingURL=escape-greater.mjs.map
@@ -1,5 +1,5 @@
1
1
  // packages/escape-html/src/index.ts
2
- import __unstableEscapeGreaterThan from "./escape-greater.js";
2
+ import __unstableEscapeGreaterThan from "./escape-greater.mjs";
3
3
  var REGEXP_INVALID_ATTRIBUTE_NAME = /[\u007F-\u009F "'>/="\uFDD0-\uFDEF]/;
4
4
  function escapeAmpersand(value) {
5
5
  return value.replace(/&(?!([a-z0-9]+|#[0-9]+|#x[a-f0-9]+);)/gi, "&");
@@ -33,4 +33,4 @@ export {
33
33
  escapeQuotationMark,
34
34
  isValidAttributeName
35
35
  };
36
- //# sourceMappingURL=index.js.map
36
+ //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/escape-html",
3
- "version": "3.36.1-next.738bb1424.0",
3
+ "version": "3.36.1-next.76cff8c98.0",
4
4
  "description": "Escape HTML utils.",
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"
@@ -47,5 +46,5 @@
47
46
  "publishConfig": {
48
47
  "access": "public"
49
48
  },
50
- "gitHead": "ab1b004c0d61c295aa34bc86ea07f979343983ce"
49
+ "gitHead": "368727f14b858e75179e140967c2d9ec965c8790"
51
50
  }
File without changes