@wordpress/plugins 7.36.1-next.8fd3f8831.0 → 7.37.1-next.06ee73755.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
 
@@ -35,7 +35,7 @@ __export(components_exports, {
35
35
  withPluginContext: () => import_plugin_context.withPluginContext
36
36
  });
37
37
  module.exports = __toCommonJS(components_exports);
38
- var import_plugin_area = __toESM(require("./plugin-area/index.cjs"), 1);
38
+ var import_plugin_area = __toESM(require("./plugin-area/index.cjs"));
39
39
  var import_plugin_context = require("./plugin-context/index.cjs");
40
40
  // Annotate the CommonJS export names for ESM import in node:
41
41
  0 && (module.exports = {
@@ -33,7 +33,7 @@ __export(plugin_area_exports, {
33
33
  default: () => plugin_area_default
34
34
  });
35
35
  module.exports = __toCommonJS(plugin_area_exports);
36
- var import_memize = __toESM(require("memize"), 1);
36
+ var import_memize = __toESM(require("memize"));
37
37
  var import_element = require("@wordpress/element");
38
38
  var import_hooks = require("@wordpress/hooks");
39
39
  var import_is_shallow_equal = require("@wordpress/is-shallow-equal");
@@ -37,7 +37,7 @@ __export(plugin_context_exports, {
37
37
  module.exports = __toCommonJS(plugin_context_exports);
38
38
  var import_element = require("@wordpress/element");
39
39
  var import_compose = require("@wordpress/compose");
40
- var import_deprecated = __toESM(require("@wordpress/deprecated"), 1);
40
+ var import_deprecated = __toESM(require("@wordpress/deprecated"));
41
41
  var import_jsx_runtime = require("react/jsx-runtime");
42
42
  var Context = (0, import_element.createContext)({
43
43
  name: null,
@@ -76,4 +76,4 @@ export {
76
76
  registerPlugin,
77
77
  unregisterPlugin
78
78
  };
79
- //# sourceMappingURL=index.js.map
79
+ //# sourceMappingURL=index.mjs.map
@@ -1,9 +1,9 @@
1
1
  // packages/plugins/src/components/index.ts
2
- import { default as default2 } from "./plugin-area/index.js";
3
- import { usePluginContext, withPluginContext } from "./plugin-context/index.js";
2
+ import { default as default2 } from "./plugin-area/index.mjs";
3
+ import { usePluginContext, withPluginContext } from "./plugin-context/index.mjs";
4
4
  export {
5
5
  default2 as PluginArea,
6
6
  usePluginContext,
7
7
  withPluginContext
8
8
  };
9
- //# sourceMappingURL=index.js.map
9
+ //# sourceMappingURL=index.mjs.map
@@ -3,9 +3,9 @@ import memoize from "memize";
3
3
  import { useMemo, useSyncExternalStore } from "@wordpress/element";
4
4
  import { addAction, removeAction } from "@wordpress/hooks";
5
5
  import { isShallowEqual } from "@wordpress/is-shallow-equal";
6
- import { PluginContextProvider } from "../plugin-context/index.js";
7
- import { PluginErrorBoundary } from "../plugin-error-boundary/index.js";
8
- import { getPlugins } from "../../api/index.js";
6
+ import { PluginContextProvider } from "../plugin-context/index.mjs";
7
+ import { PluginErrorBoundary } from "../plugin-error-boundary/index.mjs";
8
+ import { getPlugins } from "../../api/index.mjs";
9
9
  import { jsx } from "react/jsx-runtime";
10
10
  var getPluginContext = memoize(
11
11
  (icon, name) => ({
@@ -69,4 +69,4 @@ var plugin_area_default = PluginArea;
69
69
  export {
70
70
  plugin_area_default as default
71
71
  };
72
- //# sourceMappingURL=index.js.map
72
+ //# sourceMappingURL=index.mjs.map
@@ -30,4 +30,4 @@ export {
30
30
  usePluginContext,
31
31
  withPluginContext
32
32
  };
33
- //# sourceMappingURL=index.js.map
33
+ //# sourceMappingURL=index.mjs.map
@@ -26,4 +26,4 @@ var PluginErrorBoundary = class extends Component {
26
26
  export {
27
27
  PluginErrorBoundary
28
28
  };
29
- //# sourceMappingURL=index.js.map
29
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1,4 @@
1
+ // packages/plugins/src/index.ts
2
+ export * from "./components/index.mjs";
3
+ export * from "./api/index.mjs";
4
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=types.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/plugins",
3
- "version": "7.36.1-next.8fd3f8831.0",
3
+ "version": "7.37.1-next.06ee73755.0",
4
4
  "description": "Plugins module for WordPress.",
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"
@@ -44,13 +43,13 @@
44
43
  "wpScript": true,
45
44
  "types": "build-types",
46
45
  "dependencies": {
47
- "@wordpress/components": "^31.0.1-next.8fd3f8831.0",
48
- "@wordpress/compose": "^7.36.1-next.8fd3f8831.0",
49
- "@wordpress/deprecated": "^4.36.1-next.8fd3f8831.0",
50
- "@wordpress/element": "^6.36.1-next.8fd3f8831.0",
51
- "@wordpress/hooks": "^4.36.1-next.8fd3f8831.0",
52
- "@wordpress/icons": "^11.3.1-next.8fd3f8831.0",
53
- "@wordpress/is-shallow-equal": "^5.36.1-next.8fd3f8831.0",
46
+ "@wordpress/components": "^32.0.1-next.06ee73755.0",
47
+ "@wordpress/compose": "^7.37.1-next.06ee73755.0",
48
+ "@wordpress/deprecated": "^4.37.1-next.06ee73755.0",
49
+ "@wordpress/element": "^6.37.1-next.06ee73755.0",
50
+ "@wordpress/hooks": "^4.37.1-next.06ee73755.0",
51
+ "@wordpress/icons": "^11.4.1-next.06ee73755.0",
52
+ "@wordpress/is-shallow-equal": "^5.37.1-next.06ee73755.0",
54
53
  "memize": "^2.0.1"
55
54
  },
56
55
  "peerDependencies": {
@@ -60,5 +59,5 @@
60
59
  "publishConfig": {
61
60
  "access": "public"
62
61
  },
63
- "gitHead": "e582b351bc4c4b8734bb087f63a3beec9875c3c7"
62
+ "gitHead": "fd315436f44683a993d5f053789b5279d95b2872"
64
63
  }
@@ -1,4 +0,0 @@
1
- // packages/plugins/src/index.ts
2
- export * from "./components/index.js";
3
- export * from "./api/index.js";
4
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- //# sourceMappingURL=types.js.map
File without changes
File without changes