@elementor/editor-components 3.32.0-43

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/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # Editor Components
2
+
3
+ > [!WARNING]
4
+ > This package is under development and not ready for production use.
@@ -0,0 +1,3 @@
1
+ declare function init(): void;
2
+
3
+ export { init };
@@ -0,0 +1,3 @@
1
+ declare function init(): void;
2
+
3
+ export { init };
package/dist/index.js ADDED
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ init: () => init
24
+ });
25
+ module.exports = __toCommonJS(index_exports);
26
+
27
+ // src/init.ts
28
+ function init() {
29
+ }
30
+ // Annotate the CommonJS export names for ESM import in node:
31
+ 0 && (module.exports = {
32
+ init
33
+ });
34
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts","../src/init.ts"],"sourcesContent":["export { init } from './init';\n","export function init() {}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAO,SAAS,OAAO;AAAC;","names":[]}
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ // src/init.ts
2
+ function init() {
3
+ }
4
+ export {
5
+ init
6
+ };
7
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/init.ts"],"sourcesContent":["export function init() {}\n"],"mappings":";AAAO,SAAS,OAAO;AAAC;","names":[]}
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@elementor/editor-components",
3
+ "description": "Elementor editor components",
4
+ "version": "3.32.0-43",
5
+ "private": false,
6
+ "author": "Elementor Team",
7
+ "homepage": "https://elementor.com/",
8
+ "license": "GPL-3.0-or-later",
9
+ "main": "dist/index.js",
10
+ "module": "dist/index.mjs",
11
+ "types": "dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.mjs",
16
+ "require": "./dist/index.js"
17
+ },
18
+ "./package.json": "./package.json"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/elementor/elementor.git",
23
+ "directory": "packages/core/editor-components"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/elementor/elementor/issues"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "files": [
32
+ "README.md",
33
+ "CHANGELOG.md",
34
+ "/dist",
35
+ "/src",
36
+ "!**/__tests__"
37
+ ],
38
+ "scripts": {
39
+ "build": "tsup --config=../../tsup.build.ts",
40
+ "dev": "tsup --config=../../tsup.dev.ts"
41
+ },
42
+ "dependencies": {},
43
+ "peerDependencies": {
44
+ "react": "^18.3.1",
45
+ "react-dom": "^18.3.1"
46
+ },
47
+ "devDependencies": {
48
+ "tsup": "^8.5.0"
49
+ }
50
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export { init } from './init';
package/src/init.ts ADDED
@@ -0,0 +1 @@
1
+ export function init() {}