@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 +1 -1
- package/build/components/index.cjs +1 -1
- package/build/components/plugin-area/index.cjs +1 -1
- package/build/components/plugin-context/index.cjs +1 -1
- package/build-module/api/{index.js → index.mjs} +1 -1
- package/build-module/components/{index.js → index.mjs} +3 -3
- package/build-module/components/plugin-area/{index.js → index.mjs} +4 -4
- package/build-module/components/plugin-context/{index.js → index.mjs} +1 -1
- package/build-module/components/plugin-error-boundary/{index.js → index.mjs} +1 -1
- package/build-module/index.mjs +4 -0
- package/build-module/types.mjs +1 -0
- package/package.json +11 -12
- package/build-module/index.js +0 -4
- package/build-module/types.js +0 -1
- /package/build-module/api/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/components/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/components/plugin-area/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/components/plugin-context/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/components/plugin-error-boundary/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/{types.js.map → types.mjs.map} +0 -0
package/LICENSE.md
CHANGED
|
@@ -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")
|
|
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")
|
|
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")
|
|
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,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// packages/plugins/src/components/index.ts
|
|
2
|
-
import { default as default2 } from "./plugin-area/index.
|
|
3
|
-
import { usePluginContext, withPluginContext } from "./plugin-context/index.
|
|
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.
|
|
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.
|
|
7
|
-
import { PluginErrorBoundary } from "../plugin-error-boundary/index.
|
|
8
|
-
import { getPlugins } from "../../api/index.
|
|
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.
|
|
72
|
+
//# 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.
|
|
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.
|
|
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"
|
|
@@ -44,13 +43,13 @@
|
|
|
44
43
|
"wpScript": true,
|
|
45
44
|
"types": "build-types",
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@wordpress/components": "^
|
|
48
|
-
"@wordpress/compose": "^7.
|
|
49
|
-
"@wordpress/deprecated": "^4.
|
|
50
|
-
"@wordpress/element": "^6.
|
|
51
|
-
"@wordpress/hooks": "^4.
|
|
52
|
-
"@wordpress/icons": "^11.
|
|
53
|
-
"@wordpress/is-shallow-equal": "^5.
|
|
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": "
|
|
62
|
+
"gitHead": "fd315436f44683a993d5f053789b5279d95b2872"
|
|
64
63
|
}
|
package/build-module/index.js
DELETED
package/build-module/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=types.js.map
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|