@cleavelandprice/ngx-lib 3.2.1 → 3.2.2

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.
Files changed (51) hide show
  1. package/esm2020/quill/cleavelandprice-ngx-lib-quill.mjs +5 -0
  2. package/esm2020/quill/components/editor/editor.component.mjs +296 -0
  3. package/esm2020/quill/mention/cleavelandprice-ngx-lib-quill-mention.mjs +5 -0
  4. package/esm2020/quill/mention/components/editor/editor.component.mjs +152 -0
  5. package/esm2020/quill/mention/model/dialog-data.mjs +2 -0
  6. package/esm2020/quill/mention/public_api.mjs +2 -0
  7. package/esm2020/quill/mention/quill-mention.module.mjs +63 -0
  8. package/esm2020/quill/model/buttons.mjs +51 -0
  9. package/esm2020/quill/model/config.mjs +40 -0
  10. package/esm2020/quill/model/dialog-data.mjs +2 -0
  11. package/esm2020/quill/model/icons.mjs +9 -0
  12. package/esm2020/quill/model/tooltips.mjs +54 -0
  13. package/esm2020/quill/public_api.mjs +8 -0
  14. package/esm2020/quill/quill.module.mjs +65 -0
  15. package/fesm2015/cleavelandprice-ngx-lib-quill-mention.mjs +212 -0
  16. package/fesm2015/cleavelandprice-ngx-lib-quill-mention.mjs.map +1 -0
  17. package/fesm2015/cleavelandprice-ngx-lib-quill.mjs +505 -0
  18. package/fesm2015/cleavelandprice-ngx-lib-quill.mjs.map +1 -0
  19. package/fesm2020/cleavelandprice-ngx-lib-quill-mention.mjs +207 -0
  20. package/fesm2020/cleavelandprice-ngx-lib-quill-mention.mjs.map +1 -0
  21. package/fesm2020/cleavelandprice-ngx-lib-quill.mjs +500 -0
  22. package/fesm2020/cleavelandprice-ngx-lib-quill.mjs.map +1 -0
  23. package/package.json +16 -8
  24. package/{quill-editor → quill}/components/editor/editor.component.d.ts +4 -9
  25. package/{quill-editor → quill}/index.d.ts +1 -1
  26. package/quill/mention/components/editor/editor.component.d.ts +20 -0
  27. package/quill/mention/index.d.ts +5 -0
  28. package/quill/mention/model/dialog-data.d.ts +5 -0
  29. package/quill/mention/public_api.d.ts +1 -0
  30. package/quill/mention/quill-mention.module.d.ts +17 -0
  31. package/{quill-editor → quill}/model/buttons.d.ts +0 -0
  32. package/{quill-editor → quill}/model/config.d.ts +0 -1
  33. package/{quill-editor → quill}/model/dialog-data.d.ts +1 -3
  34. package/{quill-editor → quill}/model/icons.d.ts +0 -0
  35. package/{quill-editor → quill}/model/tooltips.d.ts +0 -0
  36. package/{quill-editor → quill}/public_api.d.ts +2 -1
  37. package/quill/quill.module.d.ts +17 -0
  38. package/esm2020/quill-editor/cleavelandprice-ngx-lib-quill-editor.mjs +0 -5
  39. package/esm2020/quill-editor/components/editor/editor.component.mjs +0 -289
  40. package/esm2020/quill-editor/model/buttons.mjs +0 -51
  41. package/esm2020/quill-editor/model/config.mjs +0 -40
  42. package/esm2020/quill-editor/model/dialog-data.mjs +0 -2
  43. package/esm2020/quill-editor/model/icons.mjs +0 -9
  44. package/esm2020/quill-editor/model/tooltips.mjs +0 -54
  45. package/esm2020/quill-editor/public_api.mjs +0 -7
  46. package/esm2020/quill-editor/quill-editor.module.mjs +0 -65
  47. package/fesm2015/cleavelandprice-ngx-lib-quill-editor.mjs +0 -506
  48. package/fesm2015/cleavelandprice-ngx-lib-quill-editor.mjs.map +0 -1
  49. package/fesm2020/cleavelandprice-ngx-lib-quill-editor.mjs +0 -500
  50. package/fesm2020/cleavelandprice-ngx-lib-quill-editor.mjs.map +0 -1
  51. package/quill-editor/quill-editor.module.d.ts +0 -17
@@ -0,0 +1,500 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, forwardRef, Component, Optional, Inject, ViewChild, Input, Output, NgModule, SkipSelf } from '@angular/core';
3
+ import * as i3 from '@angular/forms';
4
+ import { NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
5
+ import * as i1 from '@angular/material/dialog';
6
+ import { MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog';
7
+ import * as i6 from 'ngx-quill';
8
+ import { QuillEditorComponent, QuillModule as QuillModule$1 } from 'ngx-quill';
9
+ import * as i2 from '@angular/common';
10
+ import { CommonModule } from '@angular/common';
11
+ import * as i4 from '@angular/material/icon';
12
+ import { MatIconModule } from '@angular/material/icon';
13
+ import * as i5 from '@angular/material/tooltip';
14
+ import { MatTooltipModule } from '@angular/material/tooltip';
15
+ import { MatButtonModule } from '@angular/material/button';
16
+
17
+ class Buttons {
18
+ constructor() {
19
+ //#region Font Style
20
+ this.bold = true;
21
+ this.italic = true;
22
+ this.strike = true;
23
+ this.underline = true;
24
+ //#endregion
25
+ //#region Media
26
+ this.link = true;
27
+ this.image = true;
28
+ this.video = true;
29
+ //#endregion
30
+ //#region Block Style
31
+ this.blockquote = true;
32
+ this.codeblock = true;
33
+ //#endregion
34
+ //#region Heading Style
35
+ this.h1 = true;
36
+ this.h2 = true;
37
+ //#endregion
38
+ //#region Color
39
+ this.color = true;
40
+ //#endregion
41
+ //#region List Style
42
+ this.bulleted = true;
43
+ this.ordered = true;
44
+ //#endregion
45
+ //#region Script Style
46
+ this.subScript = true;
47
+ this.superScript = true;
48
+ //#endregion
49
+ //#region Indent Style
50
+ this.increaseIndent = true;
51
+ this.decreaseIndent = true;
52
+ //#endregion
53
+ //#region DropDowns
54
+ this.align = true;
55
+ this.font = true;
56
+ this.fontSize = true;
57
+ this.headingStyle = true;
58
+ //#endregion
59
+ //#region Single Buttons
60
+ this.clean = true;
61
+ this.formula = true;
62
+ this.rtl = true;
63
+ this.editorSize = true;
64
+ //#endregion
65
+ }
66
+ }
67
+
68
+ class Icons {
69
+ constructor() {
70
+ this.maximize = 'open_in_full';
71
+ this.minimize = 'close_fullscreen';
72
+ this.popout = 'open_in_full';
73
+ this.popin = 'done';
74
+ }
75
+ }
76
+
77
+ class Tooltips {
78
+ constructor() {
79
+ //#region Font Style
80
+ this.bold = 'Bold';
81
+ this.italic = 'Italic';
82
+ this.strike = 'Strikethrough';
83
+ this.underline = 'Underline';
84
+ //#endregion
85
+ //#region Media
86
+ this.link = 'Link';
87
+ this.image = 'Insert Image';
88
+ this.video = 'Insert Video';
89
+ //#endregion
90
+ //#region Block Style
91
+ this.blockquote = 'Blockquote';
92
+ this.codeblock = 'Code Block';
93
+ //#endregion
94
+ //#region Heading Style
95
+ this.h1 = 'Heading 1';
96
+ this.h2 = 'Heading 2';
97
+ //#endregion
98
+ //#region Color
99
+ this.color = 'Font / Background Color';
100
+ //#endregion
101
+ //#region List Style
102
+ this.bulleted = 'Bulleted List';
103
+ this.ordered = 'Ordered List';
104
+ //#endregion
105
+ //#region Script Style
106
+ this.subScript = 'Subscript';
107
+ this.superScript = 'Superscript';
108
+ //#endregion
109
+ //#region Indent Style
110
+ this.increaseIndent = 'Increase Indent';
111
+ this.decreaseIndent = 'Decrease Indent';
112
+ //#endregion
113
+ //#region DropDowns
114
+ this.align = 'Align';
115
+ this.font = 'Font';
116
+ this.fontSize = 'Font Size';
117
+ this.headingStyle = 'Heading';
118
+ //#endregion
119
+ //#region Single Buttons
120
+ this.clean = 'Clean';
121
+ this.formula = 'Formula';
122
+ this.rtl = 'Right-To-Left';
123
+ this.maximize = 'Maximize';
124
+ this.minimize = 'Minimize';
125
+ this.popout = 'Popout';
126
+ this.popin = 'Done';
127
+ //#endregion
128
+ }
129
+ }
130
+
131
+ class Config {
132
+ constructor() {
133
+ this.buttons = new Buttons();
134
+ this.tooltips = new Tooltips();
135
+ this.icons = new Icons();
136
+ //#region These can be overriden via @Input()
137
+ this.format = 'html';
138
+ this.height = '50vh';
139
+ this.width = '100%';
140
+ this.fullscreenHeight = '85vh';
141
+ this.fullscreenWidth = '100%';
142
+ this.enableTooltips = true;
143
+ this.fullscreen = false;
144
+ this.fullscreenMode = 'popout';
145
+ this.readonly = false;
146
+ this.applyReadonlyStyle = true;
147
+ this.showToolbar = true;
148
+ this.showBorder = true;
149
+ //#region Optional Quill modules
150
+ this.imageResizeModule = true;
151
+ this.imageDropModule = true;
152
+ //mentionModule = true;
153
+ this.syntaxModule = true;
154
+ //#endregion
155
+ //#endregion
156
+ //#region Groups
157
+ this.showBlockStyle = () => this.buttons.blockquote || this.buttons.codeblock;
158
+ this.showFontStyle = () => this.buttons.bold || this.buttons.italic || this.buttons.strike || this.buttons.underline;
159
+ this.showQuickHeadingStyle = () => this.buttons.h1 || this.buttons.h2;
160
+ this.showIndentStyle = () => this.buttons.decreaseIndent || this.buttons.increaseIndent;
161
+ this.showListStyle = () => this.buttons.bulleted || this.buttons.ordered;
162
+ this.showMedia = () => this.buttons.link || this.buttons.image || this.buttons.video;
163
+ this.showScriptStyle = () => this.buttons.subScript || this.buttons.superScript;
164
+ //#endregion
165
+ }
166
+ }
167
+
168
+ class EditorComponent {
169
+ //#endregion
170
+ constructor(data, dialogRef,
171
+ //private activeDirectoryService: ActiveDirectoryService,
172
+ dialog) {
173
+ this.data = data;
174
+ this.dialogRef = dialogRef;
175
+ this.dialog = dialog;
176
+ this.onChange = (_) => { }; // Invoked when the model has been changed
177
+ this.onTouched = () => { }; // Invoked when the model has been touched
178
+ //#endregion
179
+ this.config = new Config();
180
+ //@Input() users: User[] | undefined;
181
+ //#region These can be passed in as @Input(), or use values from config
182
+ this.format = this.config.format;
183
+ this.height = this.config.height;
184
+ this.width = this.config.width;
185
+ this.fullscreenHeight = this.config.fullscreenHeight;
186
+ this.fullscreenWidth = this.config.fullscreenWidth;
187
+ this.fullscreenMode = this.config.fullscreenMode;
188
+ //#endregion
189
+ //#endregion
190
+ this.fullscreenChanged = new EventEmitter();
191
+ //#region Passthrough events
192
+ this.onBlur = new EventEmitter();
193
+ this.onContentChanged = new EventEmitter();
194
+ this.onEditorChanged = new EventEmitter();
195
+ this.onEditorCreated = new EventEmitter();
196
+ this.onFocus = new EventEmitter();
197
+ this.onSelectionChanged = new EventEmitter();
198
+ }
199
+ ngOnInit() {
200
+ this.initialize();
201
+ /*if (!this.users) {
202
+ this.activeDirectoryService.getUsers().subscribe(users =>
203
+ this.users = users
204
+ );
205
+ }*/
206
+ }
207
+ initialize() {
208
+ this.config = this.config ?? this.data?.config ?? new Config();
209
+ this.value = this.value ?? this.data?.value;
210
+ this.imageResizeModule = this.imageResizeModule !== undefined ?
211
+ this.imageResizeModule :
212
+ this.imageResizeModule ?? this.config.imageResizeModule;
213
+ this.imageDropModule = this.imageDropModule !== undefined ?
214
+ this.imageDropModule :
215
+ this.imageDropModule ?? this.config.imageDropModule;
216
+ /*this.mentionModule = this.mentionModule !== undefined ?
217
+ this.mentionModule :
218
+ this.mentionModule ?? this.config.mentionModule;*/
219
+ this.syntaxModule = this.syntaxModule !== undefined ?
220
+ this.syntaxModule :
221
+ this.syntaxModule ?? this.config.syntaxModule;
222
+ // Moved to client responsibility
223
+ /*if (this.imageDropModule) {
224
+ Quill.register('modules/imageDrop', ImageDrop);
225
+ }*/
226
+ this.placeholder = this.placeholder ?? this.data?.placeholder;
227
+ //this.users = this.users ?? this.data?.users;
228
+ this.format = this.format ?? this.data?.format ?? this.config.format;
229
+ this.height = this.height ?? this.data?.height ?? this.config.height;
230
+ this.width = this.width ?? this.data?.width ?? this.config.width;
231
+ this.fullscreenHeight = this.fullscreenHeight ?? this.data?.maxHeight ?? this.config.fullscreenHeight;
232
+ this.fullscreenWidth = this.fullscreenWidth ?? this.data?.maxWidth ?? this.config.fullscreenWidth;
233
+ this.fullscreenMode = this.fullscreenMode ?? this.data?.fullscreenMode ?? this.config.fullscreenMode;
234
+ this.enableTooltips = this.enableTooltips !== undefined ?
235
+ this.enableTooltips :
236
+ this.data?.enableTooltips ?? this.config.enableTooltips;
237
+ this.fullscreen = this.fullscreen !== undefined ?
238
+ this.fullscreen :
239
+ this.data?.fullscreen ?? this.config.fullscreen;
240
+ this.readonly = this.readonly !== undefined ?
241
+ this.readonly :
242
+ this.data?.readonly ?? this.config.readonly;
243
+ this.applyReadonlyStyle = this.applyReadonlyStyle !== undefined ?
244
+ this.applyReadonlyStyle :
245
+ this.data?.applyReadonlyStyle ?? this.config.applyReadonlyStyle;
246
+ this.showToolbar = this.showToolbar !== undefined ?
247
+ this.showToolbar :
248
+ this.data?.showToolbar ?? this.config.showToolbar;
249
+ this.showBorder = this.showBorder !== undefined ?
250
+ this.showBorder :
251
+ this.data?.showBorder ?? this.config.showBorder;
252
+ }
253
+ toggleFullscreen() {
254
+ if (this.fullscreenMode === 'expand') {
255
+ this.fullscreen = !this.fullscreen;
256
+ this.fullscreenChanged.emit(this.fullscreen);
257
+ }
258
+ else {
259
+ if (this.fullscreen) {
260
+ this.dialogRef.close(this.value);
261
+ this.fullscreenChanged.emit(false);
262
+ }
263
+ else {
264
+ const data = {
265
+ value: this.value,
266
+ config: this.config,
267
+ placeholder: this.placeholder,
268
+ format: this.format,
269
+ height: this.fullscreenHeight,
270
+ width: '100%',
271
+ maxHeight: this.fullscreenHeight,
272
+ maxWidth: '100%',
273
+ enableTooltips: this.enableTooltips,
274
+ fullscreen: true,
275
+ fullscreenMode: this.fullscreenMode,
276
+ readonly: this.readonly,
277
+ applyReadonlyStyle: this.applyReadonlyStyle,
278
+ showToolbar: this.showToolbar,
279
+ showBorder: this.showBorder
280
+ //users: this.users
281
+ };
282
+ this.dialog.open(EditorComponent, {
283
+ disableClose: true,
284
+ width: this.fullscreenWidth,
285
+ height: this.fullscreenHeight,
286
+ data
287
+ })
288
+ .afterClosed()
289
+ .subscribe(value => {
290
+ this.value = value;
291
+ this.updateChanges();
292
+ });
293
+ this.fullscreenChanged.emit(true);
294
+ }
295
+ }
296
+ }
297
+ tooltip(val) {
298
+ return this.enableTooltips ? val : '';
299
+ }
300
+ get modules() {
301
+ //if (!this.users) { return undefined; }
302
+ const modules = {};
303
+ if (!this.showToolbar) {
304
+ modules['toolbar'] = [];
305
+ }
306
+ if (this.imageResizeModule) {
307
+ modules['imageResize'] = {};
308
+ }
309
+ if (this.imageDropModule) {
310
+ modules['imageDrop'] = true;
311
+ }
312
+ if (this.syntaxModule) {
313
+ modules['syntax'] = true;
314
+ }
315
+ /*if (this.mentionModule) {
316
+ modules['mention'] = {
317
+ allowedChars: /^[A-Za-z\sÅÄÖåäö]*$/,
318
+
319
+ onSelect: (item: DOMStringMap, insertItem: any) => {
320
+ const editor = this.editor!.quillEditor
321
+ insertItem(item)
322
+ // necessary because quill-mention triggers changes as 'api' instead of 'user'
323
+ editor.insertText(editor.getLength() - 1, '', 'user')
324
+ },
325
+
326
+ source: (searchTerm: string, renderList: any) => {
327
+ if (searchTerm.length === 0) {
328
+ renderList(this.users?.map(u => ({ value: `${u.displayName} (${u.sAMAccountName.toLowerCase()})` })), searchTerm)
329
+ } else {
330
+ const matches: any[] = []
331
+
332
+ this.users!.forEach((entry) => {
333
+ if (
334
+ entry.displayName.toLowerCase().indexOf(searchTerm.toLowerCase()) !== -1 ||
335
+ entry.sAMAccountName.toLowerCase().indexOf(searchTerm.toLowerCase()) !== -1
336
+ ) {
337
+ matches.push({ value: `${entry.displayName} (${entry.sAMAccountName.toLowerCase()})` })
338
+ }
339
+ })
340
+
341
+ renderList(matches, searchTerm)
342
+ }
343
+ }
344
+ };
345
+ }*/
346
+ return modules;
347
+ }
348
+ //#region ControlValueAccessor methods
349
+ // Method that is invoked on an update of a model.
350
+ updateChanges() {
351
+ this.onChange(this.value);
352
+ }
353
+ //#region ControlValueAccessor Overrides
354
+ // Writes a new item to the element.
355
+ writeValue(value) {
356
+ this.value = value;
357
+ this.updateChanges();
358
+ }
359
+ // Registers a callback function that should be called when the control's value changes in the UI.
360
+ registerOnChange(fn) {
361
+ this.onChange = fn;
362
+ }
363
+ // Registers a callback function that should be called when the control receives a blur event.
364
+ registerOnTouched(fn) {
365
+ this.onTouched = fn;
366
+ }
367
+ }
368
+ EditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: EditorComponent, deps: [{ token: MAT_DIALOG_DATA, optional: true }, { token: i1.MatDialogRef, optional: true }, { token: i1.MatDialog }], target: i0.ɵɵFactoryTarget.Component });
369
+ EditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: EditorComponent, selector: "cpquill-editor", inputs: { config: "config", placeholder: "placeholder", format: "format", height: "height", width: "width", fullscreenHeight: "fullscreenHeight", fullscreenWidth: "fullscreenWidth", fullscreenMode: "fullscreenMode", enableTooltips: "enableTooltips", fullscreen: "fullscreen", readonly: "readonly", applyReadonlyStyle: "applyReadonlyStyle", showToolbar: "showToolbar", showBorder: "showBorder", imageResizeModule: "imageResizeModule", imageDropModule: "imageDropModule", syntaxModule: "syntaxModule" }, outputs: { fullscreenChanged: "fullscreenChanged", onBlur: "onBlur", onContentChanged: "onContentChanged", onEditorChanged: "onEditorChanged", onEditorCreated: "onEditorCreated", onFocus: "onFocus", onSelectionChanged: "onSelectionChanged" }, providers: [{
370
+ provide: NG_VALUE_ACCESSOR,
371
+ useExisting: forwardRef(() => EditorComponent),
372
+ multi: true
373
+ }], viewQueries: [{ propertyName: "editor", first: true, predicate: QuillEditorComponent, descendants: true }], ngImport: i0, template: "<ng-container>\r\n <form>\r\n <quill-editor name=\"editor\"\r\n [(ngModel)]=\"value\"\r\n (ngModelChange)=\"updateChanges()\"\r\n\r\n [placeholder]=\"placeholder\"\r\n [format]=\"format\"\r\n [style.height]=\"fullscreen ? fullscreenHeight : height\"\r\n [style.width]=\"fullscreen ? fullscreenWidth : width\"\r\n [readOnly]=\"readonly\"\r\n [class.readonly]=\"readonly && applyReadonlyStyle\"\r\n [class.no-toolbar]=\"!showToolbar\"\r\n [class.no-border]=\"!showBorder\"\r\n [modules]=\"modules\"\r\n \r\n (onBlur)=\"onBlur.emit($event)\"\r\n (onContentChanged)=\"onContentChanged.emit($event)\"\r\n (onEditorChanged)=\"onEditorChanged.emit($event)\"\r\n (onEditorCreated)=\"onEditorCreated.emit()\"\r\n (onFocus)=\"onFocus.emit($event)\"\r\n (onSelectionChanged)=\"onSelectionChanged.emit($event)\">\r\n \r\n <div quill-editor-toolbar *ngIf=\"showToolbar\">\r\n <ng-container [ngTemplateOutlet]=\"toolbar\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"editorSize\"></ng-container>\r\n </div>\r\n </quill-editor>\r\n </form>\r\n</ng-container>\r\n\r\n<ng-template #toolbar>\r\n <div>\r\n <ng-container [ngTemplateOutlet]=\"fontStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"blockStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"headingStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"listStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"scriptStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"indentStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"rtl\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"fontSize\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"heading\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"color\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"font\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"align\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"clean\"></ng-container>\r\n <nt-container [ngTemplateOutlet]=\"formula\"></nt-container>\r\n <ng-container [ngTemplateOutlet]=\"media\"></ng-container>\r\n </div>\r\n</ng-template>\r\n\r\n<ng-template #fontStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showFontStyle\">\r\n <button class=\"ql-bold\" *ngIf=\"config.buttons.bold\" [matTooltip]=\"tooltip(config.tooltips.bold)\"></button>\r\n <button class=\"ql-italic\" *ngIf=\"config.buttons.italic\" [matTooltip]=\"tooltip(config.tooltips.italic)\"></button>\r\n <button class=\"ql-underline\" *ngIf=\"config.buttons.underline\" [matTooltip]=\"tooltip(config.tooltips.underline)\"></button>\r\n <button class=\"ql-strike\" *ngIf=\"config.buttons.strike\" [matTooltip]=\"tooltip(config.tooltips.strike)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #blockStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showBlockStyle\">\r\n <button class=\"ql-blockquote\" *ngIf=\"config.buttons.blockquote\" [matTooltip]=\"tooltip(config.tooltips.blockquote)\"></button>\r\n <button class=\"ql-code-block\" *ngIf=\"config.buttons.codeblock\" [matTooltip]=\"tooltip(config.tooltips.codeblock)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #headingStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showQuickHeadingStyle\">\r\n <button class=\"ql-header\" value=\"1\" *ngIf=\"config.buttons.h1\" [matTooltip]=\"tooltip(config.tooltips.h1)\"></button>\r\n <button class=\"ql-header\" value=\"2\" *ngIf=\"config.buttons.h2\" [matTooltip]=\"tooltip(config.tooltips.h2)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #listStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showListStyle\">\r\n <button class=\"ql-list\" value=\"ordered\" *ngIf=\"config.buttons.ordered\" [matTooltip]=\"tooltip(config.tooltips.ordered)\"></button>\r\n <button class=\"ql-list\" value=\"bullet\" *ngIf=\"config.buttons.bulleted\" [matTooltip]=\"tooltip(config.tooltips.bulleted)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #scriptStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showScriptStyle\">\r\n <button class=\"ql-script\" value=\"sub\" *ngIf=\"config.buttons.subScript\" [matTooltip]=\"tooltip(config.tooltips.subScript)\"></button>\r\n <button class=\"ql-script\" value=\"super\" *ngIf=\"config.buttons.superScript\" [matTooltip]=\"tooltip(config.tooltips.superScript)\"></button>\r\n </span>\r\n</ng-template>\r\n \r\n<ng-template #indentStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showIndentStyle\">\r\n <button class=\"ql-indent\" value=\"-1\" *ngIf=\"config.buttons.decreaseIndent\" [matTooltip]=\"tooltip(config.tooltips.decreaseIndent)\"></button>\r\n <button class=\"ql-indent\" value=\"+1\" *ngIf=\"config.buttons.increaseIndent\" [matTooltip]=\"tooltip(config.tooltips.increaseIndent)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #rtl>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.rtl\">\r\n <button class=\"ql-direction\" value=\"rtl\" [matTooltip]=\"tooltip(config.tooltips.rtl)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #fontSize>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.fontSize\" [matTooltip]=\"tooltip(config.tooltips.fontSize)\">\r\n <select class=\"ql-size\">\r\n <option value=\"small\"></option>\r\n <option selected></option>\r\n <option value=\"large\"></option>\r\n <option value=\"huge\"></option>\r\n </select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #heading>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.headingStyle\" [matTooltip]=\"tooltip(config.tooltips.headingStyle)\">\r\n <select class=\"ql-header\">\r\n <option value=\"1\"></option>\r\n <option value=\"2\"></option>\r\n <option value=\"3\"></option>\r\n <option value=\"4\"></option>\r\n <option value=\"5\"></option>\r\n <option value=\"6\"></option>\r\n <option selected=\"selected\"></option>\r\n </select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #color>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.color\" [matTooltip]=\"tooltip(config.tooltips.color)\">\r\n <select class=\"ql-color\"></select>\r\n <select class=\"ql-background\"></select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #font>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.font\" [matTooltip]=\"tooltip(config.tooltips.font)\">\r\n <select class=\"ql-font\">\r\n <option selected></option>\r\n <option value=\"serif\"></option>\r\n <option value=\"monospace\"></option>\r\n </select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #align>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.align\" [matTooltip]=\"tooltip(config.tooltips.align)\">\r\n <select class=\"ql-align\">\r\n <option selected></option>\r\n <option value=\"center\"></option>\r\n <option value=\"right\"></option>\r\n <option value=\"justify\"></option>\r\n </select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #clean>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.clean\" [matTooltip]=\"tooltip(config.tooltips.clean)\">\r\n <button class=\"ql-clean\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #media>\r\n <span class=\"ql-formats\" *ngIf=\"config.showMedia\">\r\n <button class=\"ql-link\" *ngIf=\"config.buttons.link\" [matTooltip]=\"tooltip(config.tooltips.link)\"></button>\r\n <button class=\"ql-image\" *ngIf=\"config.buttons.image\" [matTooltip]=\"tooltip(config.tooltips.image)\"></button>\r\n <button class=\"ql-video\" *ngIf=\"config.buttons.video\" [matTooltip]=\"tooltip(config.tooltips.video)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #editorSize>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.editorSize\">\r\n <button id=\"fullscreen\"\r\n [matTooltip]=\"tooltip(fullscreen ?\r\n (fullscreenMode === 'expand' ? config.tooltips.minimize : config.tooltips.popin) :\r\n (fullscreenMode === 'expand' ? config.tooltips.maximize : config.tooltips.popout))\">\r\n\r\n <mat-icon (click)=\"toggleFullscreen()\">\r\n {{ fullscreen ?\r\n (fullscreenMode === 'expand' ? config.icons.minimize : config.icons.popin) :\r\n (fullscreenMode === 'expand' ? config.icons.maximize : config.icons.popout)\r\n }}\r\n </mat-icon>\r\n </button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #formula>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.formula\" [matTooltip]=\"tooltip(config.tooltips.formula)\">\r\n <button class=\"ql-formula\"></button>\r\n </span>\r\n</ng-template>", styles: [".ql-toolbar{display:grid;grid-template-columns:1fr auto}mat-icon{color:#ff4500}quill-editor.readonly .ql-toolbar{opacity:.5}::ng-deep quill-editor.no-toolbar .ql-toolbar{height:0;padding:0;visibility:hidden}::ng-deep quill-editor.no-border .ql-container{border:none}::ng-deep quill-editor.readonly .ql-container{background-color:#f5f5f5!important}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i5.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }, { kind: "component", type: i6.QuillEditorComponent, selector: "quill-editor" }] });
374
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: EditorComponent, decorators: [{
375
+ type: Component,
376
+ args: [{ selector: 'cpquill-editor', providers: [{
377
+ provide: NG_VALUE_ACCESSOR,
378
+ useExisting: forwardRef(() => EditorComponent),
379
+ multi: true
380
+ }], template: "<ng-container>\r\n <form>\r\n <quill-editor name=\"editor\"\r\n [(ngModel)]=\"value\"\r\n (ngModelChange)=\"updateChanges()\"\r\n\r\n [placeholder]=\"placeholder\"\r\n [format]=\"format\"\r\n [style.height]=\"fullscreen ? fullscreenHeight : height\"\r\n [style.width]=\"fullscreen ? fullscreenWidth : width\"\r\n [readOnly]=\"readonly\"\r\n [class.readonly]=\"readonly && applyReadonlyStyle\"\r\n [class.no-toolbar]=\"!showToolbar\"\r\n [class.no-border]=\"!showBorder\"\r\n [modules]=\"modules\"\r\n \r\n (onBlur)=\"onBlur.emit($event)\"\r\n (onContentChanged)=\"onContentChanged.emit($event)\"\r\n (onEditorChanged)=\"onEditorChanged.emit($event)\"\r\n (onEditorCreated)=\"onEditorCreated.emit()\"\r\n (onFocus)=\"onFocus.emit($event)\"\r\n (onSelectionChanged)=\"onSelectionChanged.emit($event)\">\r\n \r\n <div quill-editor-toolbar *ngIf=\"showToolbar\">\r\n <ng-container [ngTemplateOutlet]=\"toolbar\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"editorSize\"></ng-container>\r\n </div>\r\n </quill-editor>\r\n </form>\r\n</ng-container>\r\n\r\n<ng-template #toolbar>\r\n <div>\r\n <ng-container [ngTemplateOutlet]=\"fontStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"blockStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"headingStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"listStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"scriptStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"indentStyle\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"rtl\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"fontSize\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"heading\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"color\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"font\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"align\"></ng-container>\r\n <ng-container [ngTemplateOutlet]=\"clean\"></ng-container>\r\n <nt-container [ngTemplateOutlet]=\"formula\"></nt-container>\r\n <ng-container [ngTemplateOutlet]=\"media\"></ng-container>\r\n </div>\r\n</ng-template>\r\n\r\n<ng-template #fontStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showFontStyle\">\r\n <button class=\"ql-bold\" *ngIf=\"config.buttons.bold\" [matTooltip]=\"tooltip(config.tooltips.bold)\"></button>\r\n <button class=\"ql-italic\" *ngIf=\"config.buttons.italic\" [matTooltip]=\"tooltip(config.tooltips.italic)\"></button>\r\n <button class=\"ql-underline\" *ngIf=\"config.buttons.underline\" [matTooltip]=\"tooltip(config.tooltips.underline)\"></button>\r\n <button class=\"ql-strike\" *ngIf=\"config.buttons.strike\" [matTooltip]=\"tooltip(config.tooltips.strike)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #blockStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showBlockStyle\">\r\n <button class=\"ql-blockquote\" *ngIf=\"config.buttons.blockquote\" [matTooltip]=\"tooltip(config.tooltips.blockquote)\"></button>\r\n <button class=\"ql-code-block\" *ngIf=\"config.buttons.codeblock\" [matTooltip]=\"tooltip(config.tooltips.codeblock)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #headingStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showQuickHeadingStyle\">\r\n <button class=\"ql-header\" value=\"1\" *ngIf=\"config.buttons.h1\" [matTooltip]=\"tooltip(config.tooltips.h1)\"></button>\r\n <button class=\"ql-header\" value=\"2\" *ngIf=\"config.buttons.h2\" [matTooltip]=\"tooltip(config.tooltips.h2)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #listStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showListStyle\">\r\n <button class=\"ql-list\" value=\"ordered\" *ngIf=\"config.buttons.ordered\" [matTooltip]=\"tooltip(config.tooltips.ordered)\"></button>\r\n <button class=\"ql-list\" value=\"bullet\" *ngIf=\"config.buttons.bulleted\" [matTooltip]=\"tooltip(config.tooltips.bulleted)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #scriptStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showScriptStyle\">\r\n <button class=\"ql-script\" value=\"sub\" *ngIf=\"config.buttons.subScript\" [matTooltip]=\"tooltip(config.tooltips.subScript)\"></button>\r\n <button class=\"ql-script\" value=\"super\" *ngIf=\"config.buttons.superScript\" [matTooltip]=\"tooltip(config.tooltips.superScript)\"></button>\r\n </span>\r\n</ng-template>\r\n \r\n<ng-template #indentStyle>\r\n <span class=\"ql-formats\" *ngIf=\"config.showIndentStyle\">\r\n <button class=\"ql-indent\" value=\"-1\" *ngIf=\"config.buttons.decreaseIndent\" [matTooltip]=\"tooltip(config.tooltips.decreaseIndent)\"></button>\r\n <button class=\"ql-indent\" value=\"+1\" *ngIf=\"config.buttons.increaseIndent\" [matTooltip]=\"tooltip(config.tooltips.increaseIndent)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #rtl>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.rtl\">\r\n <button class=\"ql-direction\" value=\"rtl\" [matTooltip]=\"tooltip(config.tooltips.rtl)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #fontSize>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.fontSize\" [matTooltip]=\"tooltip(config.tooltips.fontSize)\">\r\n <select class=\"ql-size\">\r\n <option value=\"small\"></option>\r\n <option selected></option>\r\n <option value=\"large\"></option>\r\n <option value=\"huge\"></option>\r\n </select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #heading>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.headingStyle\" [matTooltip]=\"tooltip(config.tooltips.headingStyle)\">\r\n <select class=\"ql-header\">\r\n <option value=\"1\"></option>\r\n <option value=\"2\"></option>\r\n <option value=\"3\"></option>\r\n <option value=\"4\"></option>\r\n <option value=\"5\"></option>\r\n <option value=\"6\"></option>\r\n <option selected=\"selected\"></option>\r\n </select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #color>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.color\" [matTooltip]=\"tooltip(config.tooltips.color)\">\r\n <select class=\"ql-color\"></select>\r\n <select class=\"ql-background\"></select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #font>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.font\" [matTooltip]=\"tooltip(config.tooltips.font)\">\r\n <select class=\"ql-font\">\r\n <option selected></option>\r\n <option value=\"serif\"></option>\r\n <option value=\"monospace\"></option>\r\n </select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #align>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.align\" [matTooltip]=\"tooltip(config.tooltips.align)\">\r\n <select class=\"ql-align\">\r\n <option selected></option>\r\n <option value=\"center\"></option>\r\n <option value=\"right\"></option>\r\n <option value=\"justify\"></option>\r\n </select>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #clean>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.clean\" [matTooltip]=\"tooltip(config.tooltips.clean)\">\r\n <button class=\"ql-clean\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #media>\r\n <span class=\"ql-formats\" *ngIf=\"config.showMedia\">\r\n <button class=\"ql-link\" *ngIf=\"config.buttons.link\" [matTooltip]=\"tooltip(config.tooltips.link)\"></button>\r\n <button class=\"ql-image\" *ngIf=\"config.buttons.image\" [matTooltip]=\"tooltip(config.tooltips.image)\"></button>\r\n <button class=\"ql-video\" *ngIf=\"config.buttons.video\" [matTooltip]=\"tooltip(config.tooltips.video)\"></button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #editorSize>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.editorSize\">\r\n <button id=\"fullscreen\"\r\n [matTooltip]=\"tooltip(fullscreen ?\r\n (fullscreenMode === 'expand' ? config.tooltips.minimize : config.tooltips.popin) :\r\n (fullscreenMode === 'expand' ? config.tooltips.maximize : config.tooltips.popout))\">\r\n\r\n <mat-icon (click)=\"toggleFullscreen()\">\r\n {{ fullscreen ?\r\n (fullscreenMode === 'expand' ? config.icons.minimize : config.icons.popin) :\r\n (fullscreenMode === 'expand' ? config.icons.maximize : config.icons.popout)\r\n }}\r\n </mat-icon>\r\n </button>\r\n </span>\r\n</ng-template>\r\n\r\n<ng-template #formula>\r\n <span class=\"ql-formats\" *ngIf=\"config.buttons.formula\" [matTooltip]=\"tooltip(config.tooltips.formula)\">\r\n <button class=\"ql-formula\"></button>\r\n </span>\r\n</ng-template>", styles: [".ql-toolbar{display:grid;grid-template-columns:1fr auto}mat-icon{color:#ff4500}quill-editor.readonly .ql-toolbar{opacity:.5}::ng-deep quill-editor.no-toolbar .ql-toolbar{height:0;padding:0;visibility:hidden}::ng-deep quill-editor.no-border .ql-container{border:none}::ng-deep quill-editor.readonly .ql-container{background-color:#f5f5f5!important}\n"] }]
381
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
382
+ type: Optional
383
+ }, {
384
+ type: Inject,
385
+ args: [MAT_DIALOG_DATA]
386
+ }] }, { type: i1.MatDialogRef, decorators: [{
387
+ type: Optional
388
+ }] }, { type: i1.MatDialog }]; }, propDecorators: { editor: [{
389
+ type: ViewChild,
390
+ args: [QuillEditorComponent, { static: false }]
391
+ }], config: [{
392
+ type: Input
393
+ }], placeholder: [{
394
+ type: Input
395
+ }], format: [{
396
+ type: Input
397
+ }], height: [{
398
+ type: Input
399
+ }], width: [{
400
+ type: Input
401
+ }], fullscreenHeight: [{
402
+ type: Input
403
+ }], fullscreenWidth: [{
404
+ type: Input
405
+ }], fullscreenMode: [{
406
+ type: Input
407
+ }], enableTooltips: [{
408
+ type: Input
409
+ }], fullscreen: [{
410
+ type: Input
411
+ }], readonly: [{
412
+ type: Input
413
+ }], applyReadonlyStyle: [{
414
+ type: Input
415
+ }], showToolbar: [{
416
+ type: Input
417
+ }], showBorder: [{
418
+ type: Input
419
+ }], imageResizeModule: [{
420
+ type: Input
421
+ }], imageDropModule: [{
422
+ type: Input
423
+ }], syntaxModule: [{
424
+ type: Input
425
+ }], fullscreenChanged: [{
426
+ type: Output
427
+ }], onBlur: [{
428
+ type: Output
429
+ }], onContentChanged: [{
430
+ type: Output
431
+ }], onEditorChanged: [{
432
+ type: Output
433
+ }], onEditorCreated: [{
434
+ type: Output
435
+ }], onFocus: [{
436
+ type: Output
437
+ }], onSelectionChanged: [{
438
+ type: Output
439
+ }] } });
440
+
441
+ class QuillModule {
442
+ constructor(parentModule) {
443
+ if (parentModule) {
444
+ throw new Error('QuillModule is already loaded. Import it in the AppModule only');
445
+ }
446
+ }
447
+ static forRoot() {
448
+ return {
449
+ ngModule: QuillModule
450
+ };
451
+ }
452
+ }
453
+ QuillModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: QuillModule, deps: [{ token: QuillModule, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.NgModule });
454
+ QuillModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.1", ngImport: i0, type: QuillModule, declarations: [EditorComponent], imports: [CommonModule,
455
+ FormsModule,
456
+ ReactiveFormsModule,
457
+ MatButtonModule,
458
+ MatDialogModule,
459
+ MatIconModule,
460
+ MatTooltipModule, i6.QuillModule], exports: [EditorComponent] });
461
+ QuillModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: QuillModule, imports: [CommonModule,
462
+ FormsModule,
463
+ ReactiveFormsModule,
464
+ MatButtonModule,
465
+ MatDialogModule,
466
+ MatIconModule,
467
+ MatTooltipModule,
468
+ QuillModule$1.forRoot()] });
469
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: QuillModule, decorators: [{
470
+ type: NgModule,
471
+ args: [{
472
+ declarations: [
473
+ EditorComponent
474
+ ],
475
+ imports: [
476
+ CommonModule,
477
+ FormsModule,
478
+ ReactiveFormsModule,
479
+ MatButtonModule,
480
+ MatDialogModule,
481
+ MatIconModule,
482
+ MatTooltipModule,
483
+ QuillModule$1.forRoot()
484
+ ],
485
+ exports: [
486
+ EditorComponent
487
+ ]
488
+ }]
489
+ }], ctorParameters: function () { return [{ type: QuillModule, decorators: [{
490
+ type: Optional
491
+ }, {
492
+ type: SkipSelf
493
+ }] }]; } });
494
+
495
+ /**
496
+ * Generated bundle index. Do not edit.
497
+ */
498
+
499
+ export { Buttons, Config, EditorComponent, Icons, QuillModule, Tooltips };
500
+ //# sourceMappingURL=cleavelandprice-ngx-lib-quill.mjs.map