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,626 @@
1
+ /**
2
+ * Dragble Editor Angular Component
3
+ *
4
+ * An Angular wrapper for the Dragble Editor SDK.
5
+ */
6
+ import { Component, Input, Output, EventEmitter, } from "@angular/core";
7
+ import * as i0 from "@angular/core";
8
+ const SDK_CDN_URL = "https://sdk.dragble.com/latest/dragble-sdk.min.js";
9
+ // Map of URL -> Promise for caching SDK loads per URL
10
+ const sdkLoadPromises = new Map();
11
+ /**
12
+ * Get the SDK URL to use.
13
+ * @param customUrl - Optional custom SDK URL
14
+ * @returns The SDK URL to load
15
+ */
16
+ function getSDKUrl(customUrl, sdkVersion) {
17
+ if (customUrl && sdkVersion !== undefined) {
18
+ console.warn("[DragbleEditor] sdkVersion is ignored when sdkUrl is provided.");
19
+ }
20
+ return customUrl ?? `https://sdk.dragble.com/${sdkVersion ?? "latest"}/dragble-sdk.min.js`;
21
+ }
22
+ /**
23
+ * Create an SDK module from the global dragble object.
24
+ */
25
+ function createSDKModuleFromGlobal() {
26
+ return {
27
+ dragble: window.dragble,
28
+ createEditor: (config) => {
29
+ const instance = new window.dragble.constructor();
30
+ instance.init(config);
31
+ return instance;
32
+ },
33
+ DragbleSDK: window.dragble.constructor,
34
+ };
35
+ }
36
+ /**
37
+ * Load the SDK from a URL.
38
+ * Supports custom SDK URLs for enterprise self-hosted or specific versions.
39
+ * @param customUrl - Optional custom SDK URL
40
+ */
41
+ function loadSDK(customUrl) {
42
+ const sdkUrl = getSDKUrl(customUrl);
43
+ // Check cache for this specific URL
44
+ const cachedPromise = sdkLoadPromises.get(sdkUrl);
45
+ if (cachedPromise)
46
+ return cachedPromise;
47
+ // Check if already loaded globally (only for default URL to avoid conflicts)
48
+ if (sdkUrl === SDK_CDN_URL && typeof window !== "undefined" && window.dragble) {
49
+ return Promise.resolve(createSDKModuleFromGlobal());
50
+ }
51
+ return loadSDKScript(sdkUrl);
52
+ }
53
+ /**
54
+ * Load the SDK script from a specific URL.
55
+ * Each unique URL is cached separately to support multiple SDK sources.
56
+ * @param sdkUrl - The SDK URL to load
57
+ */
58
+ function loadSDKScript(sdkUrl) {
59
+ // Check cache for this specific URL
60
+ const cachedPromise = sdkLoadPromises.get(sdkUrl);
61
+ if (cachedPromise)
62
+ return cachedPromise;
63
+ const loadPromise = new Promise((resolve, reject) => {
64
+ const script = document.createElement("script");
65
+ script.src = sdkUrl;
66
+ script.async = true;
67
+ script.onload = () => {
68
+ if (window.dragble) {
69
+ // Resolve with SDK module interface
70
+ resolve(createSDKModuleFromGlobal());
71
+ }
72
+ else {
73
+ sdkLoadPromises.delete(sdkUrl);
74
+ reject(new Error("Failed to load Dragble SDK - createEditor not found"));
75
+ }
76
+ };
77
+ script.onerror = () => {
78
+ sdkLoadPromises.delete(sdkUrl);
79
+ reject(new Error(`Failed to load Dragble SDK from ${sdkUrl}`));
80
+ };
81
+ document.head.appendChild(script);
82
+ });
83
+ // Cache the promise for this URL
84
+ sdkLoadPromises.set(sdkUrl, loadPromise);
85
+ return loadPromise;
86
+ }
87
+ // ============================================================================
88
+ // Component
89
+ // ============================================================================
90
+ /**
91
+ * DragbleEditorComponent
92
+ *
93
+ * @example
94
+ * ```html
95
+ * <dragble-editor
96
+ * editorKey="your-editor-key"
97
+ * editorMode="email"
98
+ * (ready)="onReady($event)"
99
+ * (change)="onChange($event)"
100
+ * ></dragble-editor>
101
+ * ```
102
+ *
103
+ * @example
104
+ * ```typescript
105
+ * import { Component, ViewChild } from '@angular/core';
106
+ * import { DragbleEditorComponent } from '@dragble/angular-editor';
107
+ *
108
+ * @Component({
109
+ * selector: 'app-editor',
110
+ * template: `
111
+ * <dragble-editor
112
+ * #editor
113
+ * editorKey="your-editor-key"
114
+ * (ready)="onReady($event)"
115
+ * ></dragble-editor>
116
+ * <button (click)="handleSave()">Save</button>
117
+ * `
118
+ * })
119
+ * export class EditorComponent {
120
+ * @ViewChild('editor') editor!: DragbleEditorComponent;
121
+ *
122
+ * onReady(sdk: DragbleSDK) {
123
+ * console.log('Editor ready!', sdk);
124
+ * }
125
+ *
126
+ * handleSave() {
127
+ * this.editor.saveDesign((design) => {
128
+ * console.log('Design:', design);
129
+ * });
130
+ * }
131
+ * }
132
+ * ```
133
+ */
134
+ export class DragbleEditorComponent {
135
+ constructor() {
136
+ /** Editor mode (email, web, popup) */
137
+ this.editorMode = "email";
138
+ /** Height of the editor */
139
+ this.height = "600px";
140
+ /** Minimum height for the editor */
141
+ this.minHeight = "600px";
142
+ // ========================================================================
143
+ // Outputs
144
+ // ========================================================================
145
+ /** Emitted when the editor is ready */
146
+ this.ready = new EventEmitter();
147
+ /** Emitted when a design is loaded */
148
+ this.load = new EventEmitter();
149
+ /** Emitted when the design changes */
150
+ this.change = new EventEmitter();
151
+ /** Emitted when an error occurs */
152
+ this.error = new EventEmitter();
153
+ /** Emitted when a comment event occurs (create, edit, delete, resolve, reopen) */
154
+ this.commentAction = new EventEmitter();
155
+ // ========================================================================
156
+ // Internal State
157
+ // ========================================================================
158
+ this.containerId = `dragble-editor-${Math.random().toString(36).substr(2, 9)}`;
159
+ this.sdk = null;
160
+ this._isReady = false;
161
+ }
162
+ get isReady() {
163
+ return this._isReady;
164
+ }
165
+ get computedHeight() {
166
+ return typeof this.height === "number" ? `${this.height}px` : this.height;
167
+ }
168
+ get computedMinHeight() {
169
+ return typeof this.minHeight === "number"
170
+ ? `${this.minHeight}px`
171
+ : this.minHeight;
172
+ }
173
+ // ========================================================================
174
+ // Lifecycle
175
+ // ========================================================================
176
+ ngOnInit() {
177
+ // Initialization happens in ngAfterViewInit
178
+ }
179
+ ngAfterViewInit() {
180
+ this.initializeEditor();
181
+ }
182
+ ngOnChanges(changes) {
183
+ if (!this.sdk || !this._isReady)
184
+ return;
185
+ // Watch for design changes
186
+ if (changes["design"] && !changes["design"].firstChange) {
187
+ const newDesign = changes["design"].currentValue;
188
+ if (newDesign) {
189
+ this.sdk.loadDesign(newDesign);
190
+ }
191
+ }
192
+ // Watch for merge tags changes
193
+ if (changes["mergeTags"] && !changes["mergeTags"].firstChange) {
194
+ const newTags = changes["mergeTags"].currentValue;
195
+ if (newTags) {
196
+ this.sdk.setMergeTags(newTags);
197
+ }
198
+ }
199
+ // Watch for modules changes
200
+ if (changes["modules"] && !changes["modules"].firstChange) {
201
+ const newModules = changes["modules"].currentValue;
202
+ if (newModules) {
203
+ this.sdk.setModules(newModules);
204
+ }
205
+ }
206
+ // Watch for display conditions changes
207
+ if (changes["displayConditions"] &&
208
+ !changes["displayConditions"].firstChange) {
209
+ const newConditions = changes["displayConditions"].currentValue;
210
+ if (newConditions) {
211
+ this.sdk.setDisplayConditions(newConditions);
212
+ }
213
+ }
214
+ }
215
+ ngOnDestroy() {
216
+ if (this.sdk) {
217
+ this.sdk.destroy();
218
+ this.sdk = null;
219
+ }
220
+ }
221
+ // ========================================================================
222
+ // Initialization
223
+ // ========================================================================
224
+ async initializeEditor() {
225
+ try {
226
+ const resolvedSdkUrl = getSDKUrl(this.sdkUrl, this.sdkVersion);
227
+ const { createEditor } = await loadSDK(resolvedSdkUrl);
228
+ const config = this.buildConfig();
229
+ const sdk = createEditor(config);
230
+ this.sdk = sdk;
231
+ // Set up event listeners
232
+ sdk.addEventListener("editor:ready", () => {
233
+ this._isReady = true;
234
+ this.ready.emit(sdk);
235
+ });
236
+ sdk.addEventListener("design:loaded", (data) => {
237
+ this.load.emit(data);
238
+ });
239
+ sdk.addEventListener("design:updated", (data) => {
240
+ this.change.emit(data);
241
+ });
242
+ }
243
+ catch (err) {
244
+ const error = err instanceof Error ? err : new Error(String(err));
245
+ console.error("Initialization error:", error.message);
246
+ this.error.emit(error);
247
+ }
248
+ }
249
+ buildConfig() {
250
+ const editorConfig = this.contentType === "module"
251
+ ? {
252
+ ...this.editor,
253
+ contentType: this.contentType,
254
+ minRows: 1,
255
+ maxRows: 1,
256
+ }
257
+ : this.editor;
258
+ // Build collaboration feature config
259
+ let featuresConfig = this.features;
260
+ if (this.collaboration !== undefined) {
261
+ const collaborationConfig = typeof this.collaboration === "object"
262
+ ? {
263
+ ...this.collaboration,
264
+ onComment: (action) => {
265
+ this.commentAction.emit(action);
266
+ },
267
+ }
268
+ : this.collaboration;
269
+ featuresConfig = {
270
+ ...featuresConfig,
271
+ collaboration: collaborationConfig,
272
+ };
273
+ }
274
+ // Build callbacks (merge Angular outputs with user-provided callbacks)
275
+ const callbacks = {
276
+ ...this.callbacks,
277
+ };
278
+ // Build nested options object
279
+ const editorOptions = {
280
+ ...(this.user !== undefined && { user: this.user }),
281
+ ...(this.locale !== undefined && { locale: this.locale }),
282
+ ...(this.translations !== undefined && {
283
+ translations: this.translations,
284
+ }),
285
+ ...(this.textDirection !== undefined && {
286
+ textDirection: this.textDirection,
287
+ }),
288
+ ...(this.language !== undefined && { language: this.language }),
289
+ height: this.height,
290
+ minHeight: this.minHeight,
291
+ ...(this.mergeTags !== undefined && { mergeTags: this.mergeTags }),
292
+ ...(this.specialLinks !== undefined && {
293
+ specialLinks: this.specialLinks,
294
+ }),
295
+ ...(this.modules !== undefined && { modules: this.modules }),
296
+ ...(this.displayConditions !== undefined && {
297
+ displayConditions: this.displayConditions,
298
+ }),
299
+ ...(this.appearance !== undefined && { appearance: this.appearance }),
300
+ ...(this.tools !== undefined && { tools: this.tools }),
301
+ ...(this.customTools !== undefined && { customTools: this.customTools }),
302
+ ...(this.fonts !== undefined && { fonts: this.fonts }),
303
+ ...(this.bodyValues !== undefined && { bodyValues: this.bodyValues }),
304
+ ...(this.header !== undefined && { header: this.header }),
305
+ ...(this.footer !== undefined && { footer: this.footer }),
306
+ ...(editorConfig !== undefined && { editor: editorConfig }),
307
+ ...(this.customCSS !== undefined && { customCSS: this.customCSS }),
308
+ ...(this.customJS !== undefined && { customJS: this.customJS }),
309
+ ...(featuresConfig !== undefined && { features: featuresConfig }),
310
+ ...(this.ai !== undefined && { ai: this.ai }),
311
+ ...this.options,
312
+ };
313
+ return {
314
+ containerId: this.containerId,
315
+ editorKey: this.editorKey,
316
+ ...(this.editorMode !== undefined && { editorMode: this.editorMode }),
317
+ ...(this.designMode !== undefined && { designMode: this.designMode }),
318
+ ...(this.design !== undefined && { design: this.design }),
319
+ ...(this.popup !== undefined && { popup: this.popup }),
320
+ ...(this.editorVersion !== undefined && {
321
+ editorVersion: this.editorVersion,
322
+ }),
323
+ ...(this.editorUrl !== undefined && { editorUrl: this.editorUrl }),
324
+ callbacks,
325
+ options: editorOptions,
326
+ };
327
+ }
328
+ // ========================================================================
329
+ // Public Methods - Full SDK pass-through
330
+ // ========================================================================
331
+ /** Get the underlying SDK instance */
332
+ getEditor() {
333
+ return this.sdk;
334
+ }
335
+ // Design methods
336
+ loadDesign(design, options) {
337
+ this.sdk?.loadDesign(design, options);
338
+ }
339
+ loadBlank() {
340
+ this.sdk?.loadBlank();
341
+ }
342
+ saveDesign(callback) {
343
+ this.sdk?.saveDesign(callback);
344
+ }
345
+ getDesign() {
346
+ return this.sdk?.getDesign();
347
+ }
348
+ // Export methods (async-only)
349
+ exportHtml(options) {
350
+ return this.sdk?.exportHtml(options);
351
+ }
352
+ exportPlainText() {
353
+ return this.sdk?.exportPlainText();
354
+ }
355
+ exportJson() {
356
+ return this.sdk?.exportJson();
357
+ }
358
+ exportImage(options) {
359
+ return this.sdk?.exportImage(options);
360
+ }
361
+ exportPdf(options) {
362
+ return this.sdk?.exportPdf(options);
363
+ }
364
+ exportZip(options) {
365
+ return this.sdk?.exportZip(options);
366
+ }
367
+ getPopupValues() {
368
+ return this.sdk?.getPopupValues();
369
+ }
370
+ // Merge tags
371
+ setMergeTags(config) {
372
+ this.sdk?.setMergeTags(config);
373
+ }
374
+ getMergeTags() {
375
+ return this.sdk?.getMergeTags();
376
+ }
377
+ // Special links
378
+ setSpecialLinks(config) {
379
+ this.sdk?.setSpecialLinks(config);
380
+ }
381
+ getSpecialLinks() {
382
+ return this.sdk?.getSpecialLinks();
383
+ }
384
+ // Modules
385
+ setModulesLoading(loading) {
386
+ this.sdk?.setModulesLoading(loading);
387
+ }
388
+ setModules(modules) {
389
+ this.sdk?.setModules(modules);
390
+ }
391
+ getModules() {
392
+ return this.sdk?.getModules();
393
+ }
394
+ // Fonts
395
+ setFonts(config) {
396
+ this.sdk?.setFonts(config);
397
+ }
398
+ getFonts() {
399
+ return this.sdk?.getFonts();
400
+ }
401
+ // Body values
402
+ setBodyValues(values) {
403
+ this.sdk?.setBodyValues(values);
404
+ }
405
+ getBodyValues() {
406
+ return this.sdk?.getBodyValues();
407
+ }
408
+ // Configuration
409
+ setOptions(options) {
410
+ this.sdk?.setOptions(options);
411
+ }
412
+ setToolsConfig(config) {
413
+ this.sdk?.setToolsConfig(config);
414
+ }
415
+ setEditorMode(mode) {
416
+ this.sdk?.setEditorMode(mode);
417
+ }
418
+ setEditorConfig(config) {
419
+ this.sdk?.setEditorConfig(config);
420
+ }
421
+ getEditorConfig() {
422
+ return this.sdk?.getEditorConfig();
423
+ }
424
+ setLocale(locale) {
425
+ this.sdk?.setLocale(locale);
426
+ }
427
+ setTextDirection(direction) {
428
+ this.sdk?.setTextDirection(direction);
429
+ }
430
+ setAppearance(config) {
431
+ this.sdk?.setAppearance(config);
432
+ }
433
+ setCustomCSS(css) {
434
+ this.sdk?.setCustomCSS(css);
435
+ }
436
+ setCustomJS(js) {
437
+ this.sdk?.setCustomJS(js);
438
+ }
439
+ // Multi-language
440
+ setLanguage(language) {
441
+ this.sdk?.setLanguage(language);
442
+ }
443
+ getLanguage() {
444
+ return this.sdk?.getLanguage();
445
+ }
446
+ // Undo/Redo
447
+ undo() {
448
+ this.sdk?.undo();
449
+ }
450
+ redo() {
451
+ this.sdk?.redo();
452
+ }
453
+ save() {
454
+ this.sdk?.save();
455
+ }
456
+ // Preview
457
+ showPreview(device) {
458
+ this.sdk?.showPreview(device);
459
+ }
460
+ hidePreview() {
461
+ this.sdk?.hidePreview();
462
+ }
463
+ // Tools
464
+ registerTool(config) {
465
+ return this.sdk?.registerTool(config);
466
+ }
467
+ unregisterTool(toolId) {
468
+ return this.sdk?.unregisterTool(toolId);
469
+ }
470
+ getTools() {
471
+ return this.sdk?.getTools();
472
+ }
473
+ // Display conditions
474
+ setDisplayConditions(config) {
475
+ this.sdk?.setDisplayConditions(config);
476
+ }
477
+ audit(optionsOrCallback, callback) {
478
+ if (typeof optionsOrCallback === "function") {
479
+ return this.sdk?.audit(optionsOrCallback);
480
+ }
481
+ if (callback) {
482
+ return this.sdk?.audit(optionsOrCallback, callback);
483
+ }
484
+ return this.sdk?.audit(optionsOrCallback);
485
+ }
486
+ // Collaboration
487
+ showComment(commentId) {
488
+ this.sdk?.showComment(commentId);
489
+ }
490
+ openCommentPanel(rowId) {
491
+ this.sdk?.openCommentPanel(rowId);
492
+ }
493
+ // Events
494
+ addEventListener(event, callback) {
495
+ return this.sdk?.addEventListener(event, callback);
496
+ }
497
+ removeEventListener(event, callback) {
498
+ this.sdk?.removeEventListener(event, callback);
499
+ }
500
+ // Advanced
501
+ registerColumns(cells) {
502
+ this.sdk?.registerColumns(cells);
503
+ }
504
+ setBrandingColors(config) {
505
+ this.sdk?.setBrandingColors(config);
506
+ }
507
+ // Custom widgets
508
+ createWidget(config) {
509
+ return this.sdk?.createWidget(config);
510
+ }
511
+ removeWidget(widgetName) {
512
+ return this.sdk?.removeWidget(widgetName);
513
+ }
514
+ // Undo/Redo state
515
+ canUndo() {
516
+ return this.sdk?.canUndo();
517
+ }
518
+ canRedo() {
519
+ return this.sdk?.canRedo();
520
+ }
521
+ // Tabs
522
+ updateTabs(tabs) {
523
+ this.sdk?.updateTabs(tabs);
524
+ }
525
+ }
526
+ DragbleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DragbleEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
527
+ DragbleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: DragbleEditorComponent, isStandalone: true, selector: "dragble-editor", inputs: { editorKey: "editorKey", design: "design", editorMode: "editorMode", popup: "popup", contentType: "contentType", ai: "ai", locale: "locale", translations: "translations", textDirection: "textDirection", language: "language", appearance: "appearance", tools: "tools", customTools: "customTools", features: "features", mergeTags: "mergeTags", specialLinks: "specialLinks", modules: "modules", displayConditions: "displayConditions", editor: "editor", fonts: "fonts", bodyValues: "bodyValues", header: "header", footer: "footer", customCSS: "customCSS", customJS: "customJS", height: "height", minHeight: "minHeight", options: "options", callbacks: "callbacks", sdkUrl: "sdkUrl", sdkVersion: "sdkVersion", editorVersion: "editorVersion", editorUrl: "editorUrl", collaboration: "collaboration", user: "user", designMode: "designMode" }, outputs: { ready: "ready", load: "load", change: "change", error: "error", commentAction: "commentAction" }, usesOnChanges: true, ngImport: i0, template: `<div
528
+ #container
529
+ [id]="containerId"
530
+ [style.width]="'100%'"
531
+ [style.height]="computedHeight"
532
+ [style.minHeight]="computedMinHeight"
533
+ ></div>`, isInline: true, styles: ["\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n "] });
534
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DragbleEditorComponent, decorators: [{
535
+ type: Component,
536
+ args: [{ selector: "dragble-editor", template: `<div
537
+ #container
538
+ [id]="containerId"
539
+ [style.width]="'100%'"
540
+ [style.height]="computedHeight"
541
+ [style.minHeight]="computedMinHeight"
542
+ ></div>`, standalone: true, styles: ["\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n "] }]
543
+ }], propDecorators: { editorKey: [{
544
+ type: Input
545
+ }], design: [{
546
+ type: Input
547
+ }], editorMode: [{
548
+ type: Input
549
+ }], popup: [{
550
+ type: Input
551
+ }], contentType: [{
552
+ type: Input
553
+ }], ai: [{
554
+ type: Input
555
+ }], locale: [{
556
+ type: Input
557
+ }], translations: [{
558
+ type: Input
559
+ }], textDirection: [{
560
+ type: Input
561
+ }], language: [{
562
+ type: Input
563
+ }], appearance: [{
564
+ type: Input
565
+ }], tools: [{
566
+ type: Input
567
+ }], customTools: [{
568
+ type: Input
569
+ }], features: [{
570
+ type: Input
571
+ }], mergeTags: [{
572
+ type: Input
573
+ }], specialLinks: [{
574
+ type: Input
575
+ }], modules: [{
576
+ type: Input
577
+ }], displayConditions: [{
578
+ type: Input
579
+ }], editor: [{
580
+ type: Input
581
+ }], fonts: [{
582
+ type: Input
583
+ }], bodyValues: [{
584
+ type: Input
585
+ }], header: [{
586
+ type: Input
587
+ }], footer: [{
588
+ type: Input
589
+ }], customCSS: [{
590
+ type: Input
591
+ }], customJS: [{
592
+ type: Input
593
+ }], height: [{
594
+ type: Input
595
+ }], minHeight: [{
596
+ type: Input
597
+ }], options: [{
598
+ type: Input
599
+ }], callbacks: [{
600
+ type: Input
601
+ }], sdkUrl: [{
602
+ type: Input
603
+ }], sdkVersion: [{
604
+ type: Input
605
+ }], editorVersion: [{
606
+ type: Input
607
+ }], editorUrl: [{
608
+ type: Input
609
+ }], collaboration: [{
610
+ type: Input
611
+ }], user: [{
612
+ type: Input
613
+ }], designMode: [{
614
+ type: Input
615
+ }], ready: [{
616
+ type: Output
617
+ }], load: [{
618
+ type: Output
619
+ }], change: [{
620
+ type: Output
621
+ }], error: [{
622
+ type: Output
623
+ }], commentAction: [{
624
+ type: Output
625
+ }] } });
626
+ //# sourceMappingURL=dragble-editor.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dragble-editor.component.js","sourceRoot":"","sources":["../../src/dragble-editor.component.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dragble-editor.component";
3
+ export declare class DragbleEditorModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<DragbleEditorModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DragbleEditorModule, never, [typeof i1.DragbleEditorComponent], [typeof i1.DragbleEditorComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<DragbleEditorModule>;
7
+ }
8
+ //# sourceMappingURL=dragble-editor.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dragble-editor.module.d.ts","sourceRoot":"","sources":["../../src/dragble-editor.module.ts"],"names":[],"mappings":";;AAUA,qBAIa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}