@wordpress/primitives 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
 
@@ -43,7 +43,7 @@ __export(svg_exports, {
43
43
  Stop: () => Stop
44
44
  });
45
45
  module.exports = __toCommonJS(svg_exports);
46
- var import_clsx = __toESM(require("clsx"), 1);
46
+ var import_clsx = __toESM(require("clsx"));
47
47
  var import_element = require("@wordpress/element");
48
48
  var import_jsx_runtime = require("react/jsx-runtime");
49
49
  var Circle = (props) => (0, import_element.createElement)("circle", props);
@@ -3,4 +3,4 @@ var BlockQuotation = "blockquote";
3
3
  export {
4
4
  BlockQuotation
5
5
  };
6
- //# sourceMappingURL=index.js.map
6
+ //# sourceMappingURL=index.mjs.map
@@ -3,4 +3,4 @@ var HorizontalRule = "hr";
3
3
  export {
4
4
  HorizontalRule
5
5
  };
6
- //# sourceMappingURL=index.js.map
6
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1,6 @@
1
+ // packages/primitives/src/index.js
2
+ export * from "./svg/index.mjs";
3
+ export * from "./horizontal-rule/index.mjs";
4
+ export * from "./block-quotation/index.mjs";
5
+ export * from "./view/index.mjs";
6
+ //# sourceMappingURL=index.mjs.map
@@ -44,4 +44,4 @@ export {
44
44
  SVG,
45
45
  Stop
46
46
  };
47
- //# sourceMappingURL=index.js.map
47
+ //# sourceMappingURL=index.mjs.map
@@ -3,4 +3,4 @@ var View = "div";
3
3
  export {
4
4
  View
5
5
  };
6
- //# sourceMappingURL=index.js.map
6
+ //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/primitives",
3
- "version": "4.36.1-next.738bb1424.0",
3
+ "version": "4.36.1-next.76cff8c98.0",
4
4
  "description": "WordPress cross-platform primitives.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -30,13 +30,12 @@
30
30
  "build-types",
31
31
  "*.md"
32
32
  ],
33
- "type": "module",
34
33
  "main": "build/index.cjs",
35
- "module": "build-module/index.js",
34
+ "module": "build-module/index.mjs",
36
35
  "exports": {
37
36
  ".": {
38
37
  "types": "./build-types/index.d.ts",
39
- "import": "./build-module/index.js",
38
+ "import": "./build-module/index.mjs",
40
39
  "require": "./build/index.cjs"
41
40
  },
42
41
  "./package.json": "./package.json"
@@ -48,7 +47,7 @@
48
47
  "src/**/*.scss"
49
48
  ],
50
49
  "dependencies": {
51
- "@wordpress/element": "^6.36.1-next.738bb1424.0",
50
+ "@wordpress/element": "^6.36.1-next.76cff8c98.0",
52
51
  "clsx": "^2.1.1"
53
52
  },
54
53
  "peerDependencies": {
@@ -57,5 +56,5 @@
57
56
  "publishConfig": {
58
57
  "access": "public"
59
58
  },
60
- "gitHead": "ab1b004c0d61c295aa34bc86ea07f979343983ce"
59
+ "gitHead": "368727f14b858e75179e140967c2d9ec965c8790"
61
60
  }
@@ -1,6 +0,0 @@
1
- // packages/primitives/src/index.js
2
- export * from "./svg/index.js";
3
- export * from "./horizontal-rule/index.js";
4
- export * from "./block-quotation/index.js";
5
- export * from "./view/index.js";
6
- //# sourceMappingURL=index.js.map
File without changes