dragble-angular-editor 1.0.1

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.
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Dragble Editor Angular Module
3
+ *
4
+ * This module is provided for backwards compatibility with non-standalone Angular apps.
5
+ * For Angular 14+ apps using standalone components, you can import DragbleEditorComponent directly.
6
+ */
7
+ import { NgModule } from "@angular/core";
8
+ import { DragbleEditorComponent } from "./dragble-editor.component";
9
+ import * as i0 from "@angular/core";
10
+ export class DragbleEditorModule {
11
+ }
12
+ DragbleEditorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DragbleEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
13
+ DragbleEditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: DragbleEditorModule, imports: [DragbleEditorComponent], exports: [DragbleEditorComponent] });
14
+ DragbleEditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DragbleEditorModule });
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DragbleEditorModule, decorators: [{
16
+ type: NgModule,
17
+ args: [{
18
+ imports: [DragbleEditorComponent],
19
+ exports: [DragbleEditorComponent],
20
+ }]
21
+ }] });
22
+ //# sourceMappingURL=dragble-editor.module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dragble-editor.module.js","sourceRoot":"","sources":["../../src/dragble-editor.module.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;;AAMpE,MAAM,OAAO,mBAAmB;;iHAAnB,mBAAmB;kHAAnB,mBAAmB,YAHpB,sBAAsB,aACtB,sBAAsB;kHAErB,mBAAmB;4FAAnB,mBAAmB;kBAJ/B,QAAQ;mBAAC;oBACR,OAAO,EAAE,CAAC,sBAAsB,CAAC;oBACjC,OAAO,EAAE,CAAC,sBAAsB,CAAC;iBAClC"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Dragble Angular Editor
3
+ *
4
+ * Angular wrapper for the Dragble Editor SDK.
5
+ *
6
+ * @packageDocumentation
7
+ */
8
+ export { DragbleEditorComponent } from "./dragble-editor.component";
9
+ export type { EditorContentTypeValue } from "./dragble-editor.component";
10
+ export { DragbleEditorModule } from "./dragble-editor.module";
11
+ export * from "dragble-types";
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,YAAY,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAG9D,cAAc,eAAe,CAAC"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Dragble Angular Editor
3
+ *
4
+ * Angular wrapper for the Dragble Editor SDK.
5
+ *
6
+ * @packageDocumentation
7
+ */
8
+ // Export the component
9
+ export { DragbleEditorComponent } from "./dragble-editor.component";
10
+ // Export the module
11
+ export { DragbleEditorModule } from "./dragble-editor.module";
12
+ // Re-export all SDK types from the shared types package
13
+ export * from "dragble-types";
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,uBAAuB;AACvB,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,oBAAoB;AACpB,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,wDAAwD;AACxD,cAAc,eAAe,CAAC"}
package/package.json ADDED
@@ -0,0 +1,133 @@
1
+ {
2
+ "name": "dragble-angular-editor",
3
+ "version": "1.0.1",
4
+ "description": "Angular email editor component AI powered drag-and-drop email builder for creating responsive email templates and newsletters. Build HTML emails visually with Dragble.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "build": "ngc && rollup -c",
22
+ "build:watch": "rollup -c -w",
23
+ "dev": "rollup -c -w",
24
+ "test": "jest",
25
+ "lint": "eslint src --ext .ts",
26
+ "typecheck": "tsc --noEmit",
27
+ "clean": "rimraf dist",
28
+ "prepublishOnly": "npm run build",
29
+ "prepare": "husky"
30
+ },
31
+ "keywords": [
32
+ "dragble",
33
+ "email",
34
+ "email-editor",
35
+ "email-builder",
36
+ "email-template",
37
+ "email-template-builder",
38
+ "email-template-editor",
39
+ "email-designer",
40
+ "email-design",
41
+ "html-email",
42
+ "html-email-editor",
43
+ "html-email-builder",
44
+ "responsive-email",
45
+ "newsletter",
46
+ "newsletter-builder",
47
+ "newsletter-editor",
48
+ "newsletter-template",
49
+ "angular",
50
+ "angular-email",
51
+ "angular-email-editor",
52
+ "angular-email-builder",
53
+ "angular-component",
54
+ "editor",
55
+ "template-editor",
56
+ "template-builder",
57
+ "drag-and-drop",
58
+ "drag-drop-editor",
59
+ "visual-editor",
60
+ "wysiwyg",
61
+ "wysiwyg-editor",
62
+ "page-builder",
63
+ "web-page-builder",
64
+ "landing-page-builder",
65
+ "no-code",
66
+ "low-code",
67
+ "design-tool",
68
+ "email-marketing",
69
+ "email-campaign",
70
+ "transactional-email",
71
+ "mailchimp",
72
+ "sendgrid",
73
+ "mjml",
74
+ "embed",
75
+ "embeddable",
76
+ "sdk",
77
+ "content-builder",
78
+ "email-automation"
79
+ ],
80
+ "author": "Dragble",
81
+ "license": "MIT",
82
+ "publishConfig": {
83
+ "access": "public"
84
+ },
85
+ "repository": {
86
+ "type": "git",
87
+ "url": "https://github.com/Dragble/dragble-angular-editor.git"
88
+ },
89
+ "bugs": {
90
+ "url": "https://github.com/Dragble/dragble-angular-editor/issues"
91
+ },
92
+ "homepage": "https://docs.dragble.com",
93
+ "dependencies": {
94
+ "dragble-types": "latest"
95
+ },
96
+ "peerDependencies": {
97
+ "@angular/common": ">=17.0.0",
98
+ "@angular/core": ">=17.0.0"
99
+ },
100
+ "peerDependenciesMeta": {
101
+ "@angular/common": {
102
+ "optional": false
103
+ },
104
+ "@angular/core": {
105
+ "optional": false
106
+ }
107
+ },
108
+ "devDependencies": {
109
+ "@angular/common": "^17.0.0",
110
+ "@angular/compiler": "^17.0.0",
111
+ "@angular/compiler-cli": "^17.0.0",
112
+ "@angular/core": "^17.0.0",
113
+ "@commitlint/cli": "^20.5.0",
114
+ "@commitlint/config-conventional": "^20.5.0",
115
+ "@rollup/plugin-commonjs": "^25.0.7",
116
+ "@rollup/plugin-node-resolve": "^15.2.3",
117
+ "@types/node": "^20.10.4",
118
+ "@typescript-eslint/eslint-plugin": "^6.13.2",
119
+ "@typescript-eslint/parser": "^6.13.2",
120
+ "eslint": "^8.55.0",
121
+ "husky": "^9.1.7",
122
+ "rollup": "^4.9.0",
123
+ "rollup-plugin-copy": "^3.5.0",
124
+ "rollup-plugin-dts": "^6.1.0",
125
+ "rollup-plugin-peer-deps-external": "^2.2.4",
126
+ "rxjs": "^7.8.1",
127
+ "typescript": "^5.3.3",
128
+ "zone.js": "^0.14.2"
129
+ },
130
+ "engines": {
131
+ "node": ">=16.0.0"
132
+ }
133
+ }