@syncfusion/ej2-angular-documenteditor 26.2.4 → 26.2.5-ngcc
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/@syncfusion/ej2-angular-documenteditor.es5.js +592 -0
- package/@syncfusion/ej2-angular-documenteditor.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-documenteditor.js +562 -0
- package/@syncfusion/ej2-angular-documenteditor.js.map +1 -0
- package/dist/ej2-angular-documenteditor.umd.js +1277 -0
- package/dist/ej2-angular-documenteditor.umd.js.map +1 -0
- package/dist/ej2-angular-documenteditor.umd.min.js +11 -0
- package/dist/ej2-angular-documenteditor.umd.min.js.map +1 -0
- package/ej2-angular-documenteditor.d.ts +6 -0
- package/ej2-angular-documenteditor.metadata.json +1 -0
- package/license +10 -0
- package/package.json +15 -29
- package/schematics/utils/lib-details.ts +2 -2
- package/src/document-editor/documenteditor-all.module.d.ts +0 -6
- package/src/document-editor/documenteditor.component.d.ts +0 -3
- package/src/document-editor/documenteditor.module.d.ts +0 -6
- package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +0 -6
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +0 -3
- package/src/document-editor-container/documenteditorcontainer.module.d.ts +0 -6
- package/CHANGELOG.md +0 -3952
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +0 -119
- package/esm2020/src/document-editor/documenteditor.component.mjs +0 -276
- package/esm2020/src/document-editor/documenteditor.module.mjs +0 -25
- package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +0 -29
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +0 -66
- package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +0 -25
- package/esm2020/src/index.mjs +0 -8
- package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +0 -524
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +0 -524
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +0 -1
- package/syncfusion-ej2-angular-documenteditor.d.ts +0 -5
@@ -1,524 +0,0 @@
|
|
1
|
-
import { __decorate } from 'tslib';
|
2
|
-
import * as i0 from '@angular/core';
|
3
|
-
import { Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
4
|
-
import { setValue, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
|
5
|
-
import { DocumentEditor, Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing, ColumnsDialog, CollaborativeEditingHandler, DocumentEditorContainer, Toolbar } from '@syncfusion/ej2-documenteditor';
|
6
|
-
export * from '@syncfusion/ej2-documenteditor';
|
7
|
-
import { CommonModule } from '@angular/common';
|
8
|
-
|
9
|
-
const inputs$1 = ['acceptTab', 'autoResizeOnVisibilityChange', 'currentUser', 'defaultPasteOption', 'documentEditorSettings', 'documentName', 'documentSettings', 'enableAutoFocus', 'enableBookmarkDialog', 'enableBordersAndShadingDialog', 'enableCollaborativeEditing', 'enableColumnsDialog', 'enableComment', 'enableContextMenu', 'enableCursorOnReadOnly', 'enableEditor', 'enableEditorHistory', 'enableFontDialog', 'enableFootnoteAndEndnoteDialog', 'enableFormField', 'enableHyperlinkDialog', 'enableImageResizer', 'enableListDialog', 'enableLocalPaste', 'enableLockAndEdit', 'enableOptionsPane', 'enablePageSetupDialog', 'enableParagraphDialog', 'enablePersistence', 'enablePrint', 'enableRtl', 'enableSearch', 'enableSelection', 'enableSfdtExport', 'enableSpellCheck', 'enableStyleDialog', 'enableTableDialog', 'enableTableOfContentsDialog', 'enableTableOptionsDialog', 'enableTablePropertiesDialog', 'enableTextExport', 'enableTrackChanges', 'enableWordExport', 'headers', 'height', 'isReadOnly', 'layoutType', 'locale', 'pageGap', 'pageOutline', 'serverActionSettings', 'serviceUrl', 'showComments', 'showRevisions', 'useCtrlClickToFollowHyperlink', 'userColor', 'width', 'zIndex', 'zoomFactor'];
|
10
|
-
const outputs$1 = ['actionComplete', 'afterFormFieldFill', 'beforeAcceptRejectChanges', 'beforeCommentAction', 'beforeFileOpen', 'beforeFormFieldFill', 'beforePaneSwitch', 'commentBegin', 'commentDelete', 'commentEnd', 'contentChange', 'contentControl', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'destroyed', 'documentChange', 'keyDown', 'requestNavigate', 'searchResultsChange', 'selectionChange', 'serviceFailure', 'trackChange', 'viewChange', 'zoomFactorChange', 'beforeXmlHttpRequestSend'];
|
11
|
-
const twoWays$1 = [];
|
12
|
-
/**
|
13
|
-
* `ejs-documenteditor` represents the Angular Document Editor Component.
|
14
|
-
* ```html
|
15
|
-
* <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>
|
16
|
-
* ```
|
17
|
-
*/
|
18
|
-
let DocumentEditorComponent = class DocumentEditorComponent extends DocumentEditor {
|
19
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
20
|
-
super();
|
21
|
-
this.ngEle = ngEle;
|
22
|
-
this.srenderer = srenderer;
|
23
|
-
this.viewContainerRef = viewContainerRef;
|
24
|
-
this.injector = injector;
|
25
|
-
this.element = this.ngEle.nativeElement;
|
26
|
-
this.injectedModules = this.injectedModules || [];
|
27
|
-
try {
|
28
|
-
let mod = this.injector.get('DocumentEditorPrint');
|
29
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
30
|
-
this.injectedModules.push(mod);
|
31
|
-
}
|
32
|
-
}
|
33
|
-
catch (_a) { }
|
34
|
-
try {
|
35
|
-
let mod = this.injector.get('DocumentEditorSfdtExport');
|
36
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
37
|
-
this.injectedModules.push(mod);
|
38
|
-
}
|
39
|
-
}
|
40
|
-
catch (_b) { }
|
41
|
-
try {
|
42
|
-
let mod = this.injector.get('DocumentEditorWordExport');
|
43
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
44
|
-
this.injectedModules.push(mod);
|
45
|
-
}
|
46
|
-
}
|
47
|
-
catch (_c) { }
|
48
|
-
try {
|
49
|
-
let mod = this.injector.get('DocumentEditorTextExport');
|
50
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
51
|
-
this.injectedModules.push(mod);
|
52
|
-
}
|
53
|
-
}
|
54
|
-
catch (_d) { }
|
55
|
-
try {
|
56
|
-
let mod = this.injector.get('DocumentEditorSelection');
|
57
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
58
|
-
this.injectedModules.push(mod);
|
59
|
-
}
|
60
|
-
}
|
61
|
-
catch (_e) { }
|
62
|
-
try {
|
63
|
-
let mod = this.injector.get('DocumentEditorSearch');
|
64
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
65
|
-
this.injectedModules.push(mod);
|
66
|
-
}
|
67
|
-
}
|
68
|
-
catch (_f) { }
|
69
|
-
try {
|
70
|
-
let mod = this.injector.get('DocumentEditorEditor');
|
71
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
72
|
-
this.injectedModules.push(mod);
|
73
|
-
}
|
74
|
-
}
|
75
|
-
catch (_g) { }
|
76
|
-
try {
|
77
|
-
let mod = this.injector.get('DocumentEditorEditorHistory');
|
78
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
79
|
-
this.injectedModules.push(mod);
|
80
|
-
}
|
81
|
-
}
|
82
|
-
catch (_h) { }
|
83
|
-
try {
|
84
|
-
let mod = this.injector.get('DocumentEditorOptionsPane');
|
85
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
86
|
-
this.injectedModules.push(mod);
|
87
|
-
}
|
88
|
-
}
|
89
|
-
catch (_j) { }
|
90
|
-
try {
|
91
|
-
let mod = this.injector.get('DocumentEditorContextMenu');
|
92
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
93
|
-
this.injectedModules.push(mod);
|
94
|
-
}
|
95
|
-
}
|
96
|
-
catch (_k) { }
|
97
|
-
try {
|
98
|
-
let mod = this.injector.get('DocumentEditorImageResizer');
|
99
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
100
|
-
this.injectedModules.push(mod);
|
101
|
-
}
|
102
|
-
}
|
103
|
-
catch (_l) { }
|
104
|
-
try {
|
105
|
-
let mod = this.injector.get('DocumentEditorHyperlinkDialog');
|
106
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
107
|
-
this.injectedModules.push(mod);
|
108
|
-
}
|
109
|
-
}
|
110
|
-
catch (_m) { }
|
111
|
-
try {
|
112
|
-
let mod = this.injector.get('DocumentEditorTableDialog');
|
113
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
114
|
-
this.injectedModules.push(mod);
|
115
|
-
}
|
116
|
-
}
|
117
|
-
catch (_o) { }
|
118
|
-
try {
|
119
|
-
let mod = this.injector.get('DocumentEditorBookmarkDialog');
|
120
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
121
|
-
this.injectedModules.push(mod);
|
122
|
-
}
|
123
|
-
}
|
124
|
-
catch (_p) { }
|
125
|
-
try {
|
126
|
-
let mod = this.injector.get('DocumentEditorTableOfContentsDialog');
|
127
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
128
|
-
this.injectedModules.push(mod);
|
129
|
-
}
|
130
|
-
}
|
131
|
-
catch (_q) { }
|
132
|
-
try {
|
133
|
-
let mod = this.injector.get('DocumentEditorPageSetupDialog');
|
134
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
135
|
-
this.injectedModules.push(mod);
|
136
|
-
}
|
137
|
-
}
|
138
|
-
catch (_r) { }
|
139
|
-
try {
|
140
|
-
let mod = this.injector.get('DocumentEditorParagraphDialog');
|
141
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
142
|
-
this.injectedModules.push(mod);
|
143
|
-
}
|
144
|
-
}
|
145
|
-
catch (_s) { }
|
146
|
-
try {
|
147
|
-
let mod = this.injector.get('DocumentEditorListDialog');
|
148
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
149
|
-
this.injectedModules.push(mod);
|
150
|
-
}
|
151
|
-
}
|
152
|
-
catch (_t) { }
|
153
|
-
try {
|
154
|
-
let mod = this.injector.get('DocumentEditorStyleDialog');
|
155
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
156
|
-
this.injectedModules.push(mod);
|
157
|
-
}
|
158
|
-
}
|
159
|
-
catch (_u) { }
|
160
|
-
try {
|
161
|
-
let mod = this.injector.get('DocumentEditorStylesDialog');
|
162
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
163
|
-
this.injectedModules.push(mod);
|
164
|
-
}
|
165
|
-
}
|
166
|
-
catch (_v) { }
|
167
|
-
try {
|
168
|
-
let mod = this.injector.get('DocumentEditorBulletsAndNumberingDialog');
|
169
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
170
|
-
this.injectedModules.push(mod);
|
171
|
-
}
|
172
|
-
}
|
173
|
-
catch (_w) { }
|
174
|
-
try {
|
175
|
-
let mod = this.injector.get('DocumentEditorFontDialog');
|
176
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
177
|
-
this.injectedModules.push(mod);
|
178
|
-
}
|
179
|
-
}
|
180
|
-
catch (_x) { }
|
181
|
-
try {
|
182
|
-
let mod = this.injector.get('DocumentEditorTablePropertiesDialog');
|
183
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
184
|
-
this.injectedModules.push(mod);
|
185
|
-
}
|
186
|
-
}
|
187
|
-
catch (_y) { }
|
188
|
-
try {
|
189
|
-
let mod = this.injector.get('DocumentEditorBordersAndShadingDialog');
|
190
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
191
|
-
this.injectedModules.push(mod);
|
192
|
-
}
|
193
|
-
}
|
194
|
-
catch (_z) { }
|
195
|
-
try {
|
196
|
-
let mod = this.injector.get('DocumentEditorTableOptionsDialog');
|
197
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
198
|
-
this.injectedModules.push(mod);
|
199
|
-
}
|
200
|
-
}
|
201
|
-
catch (_0) { }
|
202
|
-
try {
|
203
|
-
let mod = this.injector.get('DocumentEditorCellOptionsDialog');
|
204
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
205
|
-
this.injectedModules.push(mod);
|
206
|
-
}
|
207
|
-
}
|
208
|
-
catch (_1) { }
|
209
|
-
try {
|
210
|
-
let mod = this.injector.get('DocumentEditorSpellChecker');
|
211
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
212
|
-
this.injectedModules.push(mod);
|
213
|
-
}
|
214
|
-
}
|
215
|
-
catch (_2) { }
|
216
|
-
try {
|
217
|
-
let mod = this.injector.get('DocumentEditorSpellCheckDialog');
|
218
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
219
|
-
this.injectedModules.push(mod);
|
220
|
-
}
|
221
|
-
}
|
222
|
-
catch (_3) { }
|
223
|
-
try {
|
224
|
-
let mod = this.injector.get('DocumentEditorCollaborativeEditing');
|
225
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
226
|
-
this.injectedModules.push(mod);
|
227
|
-
}
|
228
|
-
}
|
229
|
-
catch (_4) { }
|
230
|
-
try {
|
231
|
-
let mod = this.injector.get('DocumentEditorColumnsDialog');
|
232
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
233
|
-
this.injectedModules.push(mod);
|
234
|
-
}
|
235
|
-
}
|
236
|
-
catch (_5) { }
|
237
|
-
try {
|
238
|
-
let mod = this.injector.get('DocumentEditorCollaborativeEditingHandler');
|
239
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
240
|
-
this.injectedModules.push(mod);
|
241
|
-
}
|
242
|
-
}
|
243
|
-
catch (_6) { }
|
244
|
-
this.registerEvents(outputs$1);
|
245
|
-
this.addTwoWay.call(this, twoWays$1);
|
246
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
247
|
-
this.context = new ComponentBase();
|
248
|
-
}
|
249
|
-
ngOnInit() {
|
250
|
-
this.context.ngOnInit(this);
|
251
|
-
}
|
252
|
-
ngAfterViewInit() {
|
253
|
-
this.context.ngAfterViewInit(this);
|
254
|
-
}
|
255
|
-
ngOnDestroy() {
|
256
|
-
this.context.ngOnDestroy(this);
|
257
|
-
}
|
258
|
-
ngAfterContentChecked() {
|
259
|
-
this.context.ngAfterContentChecked(this);
|
260
|
-
}
|
261
|
-
};
|
262
|
-
DocumentEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
263
|
-
DocumentEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DocumentEditorComponent, selector: "ejs-documenteditor", inputs: { acceptTab: "acceptTab", autoResizeOnVisibilityChange: "autoResizeOnVisibilityChange", currentUser: "currentUser", defaultPasteOption: "defaultPasteOption", documentEditorSettings: "documentEditorSettings", documentName: "documentName", documentSettings: "documentSettings", enableAutoFocus: "enableAutoFocus", enableBookmarkDialog: "enableBookmarkDialog", enableBordersAndShadingDialog: "enableBordersAndShadingDialog", enableCollaborativeEditing: "enableCollaborativeEditing", enableColumnsDialog: "enableColumnsDialog", enableComment: "enableComment", enableContextMenu: "enableContextMenu", enableCursorOnReadOnly: "enableCursorOnReadOnly", enableEditor: "enableEditor", enableEditorHistory: "enableEditorHistory", enableFontDialog: "enableFontDialog", enableFootnoteAndEndnoteDialog: "enableFootnoteAndEndnoteDialog", enableFormField: "enableFormField", enableHyperlinkDialog: "enableHyperlinkDialog", enableImageResizer: "enableImageResizer", enableListDialog: "enableListDialog", enableLocalPaste: "enableLocalPaste", enableLockAndEdit: "enableLockAndEdit", enableOptionsPane: "enableOptionsPane", enablePageSetupDialog: "enablePageSetupDialog", enableParagraphDialog: "enableParagraphDialog", enablePersistence: "enablePersistence", enablePrint: "enablePrint", enableRtl: "enableRtl", enableSearch: "enableSearch", enableSelection: "enableSelection", enableSfdtExport: "enableSfdtExport", enableSpellCheck: "enableSpellCheck", enableStyleDialog: "enableStyleDialog", enableTableDialog: "enableTableDialog", enableTableOfContentsDialog: "enableTableOfContentsDialog", enableTableOptionsDialog: "enableTableOptionsDialog", enableTablePropertiesDialog: "enableTablePropertiesDialog", enableTextExport: "enableTextExport", enableTrackChanges: "enableTrackChanges", enableWordExport: "enableWordExport", headers: "headers", height: "height", isReadOnly: "isReadOnly", layoutType: "layoutType", locale: "locale", pageGap: "pageGap", pageOutline: "pageOutline", serverActionSettings: "serverActionSettings", serviceUrl: "serviceUrl", showComments: "showComments", showRevisions: "showRevisions", useCtrlClickToFollowHyperlink: "useCtrlClickToFollowHyperlink", userColor: "userColor", width: "width", zIndex: "zIndex", zoomFactor: "zoomFactor" }, outputs: { actionComplete: "actionComplete", afterFormFieldFill: "afterFormFieldFill", beforeAcceptRejectChanges: "beforeAcceptRejectChanges", beforeCommentAction: "beforeCommentAction", beforeFileOpen: "beforeFileOpen", beforeFormFieldFill: "beforeFormFieldFill", beforePaneSwitch: "beforePaneSwitch", commentBegin: "commentBegin", commentDelete: "commentDelete", commentEnd: "commentEnd", contentChange: "contentChange", contentControl: "contentControl", created: "created", customContextMenuBeforeOpen: "customContextMenuBeforeOpen", customContextMenuSelect: "customContextMenuSelect", destroyed: "destroyed", documentChange: "documentChange", keyDown: "keyDown", requestNavigate: "requestNavigate", searchResultsChange: "searchResultsChange", selectionChange: "selectionChange", serviceFailure: "serviceFailure", trackChange: "trackChange", viewChange: "viewChange", zoomFactorChange: "zoomFactorChange", beforeXmlHttpRequestSend: "beforeXmlHttpRequestSend" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
264
|
-
DocumentEditorComponent = __decorate([
|
265
|
-
ComponentMixins([ComponentBase])
|
266
|
-
], DocumentEditorComponent);
|
267
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorComponent, decorators: [{
|
268
|
-
type: Component,
|
269
|
-
args: [{
|
270
|
-
selector: 'ejs-documenteditor',
|
271
|
-
inputs: inputs$1,
|
272
|
-
outputs: outputs$1,
|
273
|
-
template: '',
|
274
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
275
|
-
queries: {}
|
276
|
-
}]
|
277
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
278
|
-
|
279
|
-
/**
|
280
|
-
* NgModule definition for the DocumentEditor component.
|
281
|
-
*/
|
282
|
-
class DocumentEditorModule {
|
283
|
-
}
|
284
|
-
DocumentEditorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
285
|
-
DocumentEditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorModule, declarations: [DocumentEditorComponent], imports: [CommonModule], exports: [DocumentEditorComponent] });
|
286
|
-
DocumentEditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorModule, imports: [[CommonModule]] });
|
287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorModule, decorators: [{
|
288
|
-
type: NgModule,
|
289
|
-
args: [{
|
290
|
-
imports: [CommonModule],
|
291
|
-
declarations: [
|
292
|
-
DocumentEditorComponent
|
293
|
-
],
|
294
|
-
exports: [
|
295
|
-
DocumentEditorComponent
|
296
|
-
]
|
297
|
-
}]
|
298
|
-
}] });
|
299
|
-
|
300
|
-
const PrintService = { provide: 'DocumentEditorPrint', useValue: Print };
|
301
|
-
const SfdtExportService = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport };
|
302
|
-
const WordExportService = { provide: 'DocumentEditorWordExport', useValue: WordExport };
|
303
|
-
const TextExportService = { provide: 'DocumentEditorTextExport', useValue: TextExport };
|
304
|
-
const SelectionService = { provide: 'DocumentEditorSelection', useValue: Selection };
|
305
|
-
const SearchService = { provide: 'DocumentEditorSearch', useValue: Search };
|
306
|
-
const EditorService = { provide: 'DocumentEditorEditor', useValue: Editor };
|
307
|
-
const EditorHistoryService = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory };
|
308
|
-
const OptionsPaneService = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane };
|
309
|
-
const ContextMenuService = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu };
|
310
|
-
const ImageResizerService = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer };
|
311
|
-
const HyperlinkDialogService = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog };
|
312
|
-
const TableDialogService = { provide: 'DocumentEditorTableDialog', useValue: TableDialog };
|
313
|
-
const BookmarkDialogService = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog };
|
314
|
-
const TableOfContentsDialogService = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog };
|
315
|
-
const PageSetupDialogService = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog };
|
316
|
-
const ParagraphDialogService = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog };
|
317
|
-
const ListDialogService = { provide: 'DocumentEditorListDialog', useValue: ListDialog };
|
318
|
-
const StyleDialogService = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog };
|
319
|
-
const StylesDialogService = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog };
|
320
|
-
const BulletsAndNumberingDialogService = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog };
|
321
|
-
const FontDialogService = { provide: 'DocumentEditorFontDialog', useValue: FontDialog };
|
322
|
-
const TablePropertiesDialogService = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog };
|
323
|
-
const BordersAndShadingDialogService = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog };
|
324
|
-
const TableOptionsDialogService = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog };
|
325
|
-
const CellOptionsDialogService = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog };
|
326
|
-
const SpellCheckerService = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker };
|
327
|
-
const SpellCheckDialogService = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog };
|
328
|
-
const CollaborativeEditingService = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing };
|
329
|
-
const ColumnsDialogService = { provide: 'DocumentEditorColumnsDialog', useValue: ColumnsDialog };
|
330
|
-
const CollaborativeEditingHandlerService = { provide: 'DocumentEditorCollaborativeEditingHandler', useValue: CollaborativeEditingHandler };
|
331
|
-
/**
|
332
|
-
* NgModule definition for the DocumentEditor component with providers.
|
333
|
-
*/
|
334
|
-
class DocumentEditorAllModule {
|
335
|
-
}
|
336
|
-
DocumentEditorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
337
|
-
DocumentEditorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorAllModule, imports: [CommonModule, DocumentEditorModule], exports: [DocumentEditorModule] });
|
338
|
-
DocumentEditorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorAllModule, providers: [
|
339
|
-
PrintService,
|
340
|
-
SfdtExportService,
|
341
|
-
WordExportService,
|
342
|
-
TextExportService,
|
343
|
-
SelectionService,
|
344
|
-
SearchService,
|
345
|
-
EditorService,
|
346
|
-
EditorHistoryService,
|
347
|
-
OptionsPaneService,
|
348
|
-
ContextMenuService,
|
349
|
-
ImageResizerService,
|
350
|
-
HyperlinkDialogService,
|
351
|
-
TableDialogService,
|
352
|
-
BookmarkDialogService,
|
353
|
-
TableOfContentsDialogService,
|
354
|
-
PageSetupDialogService,
|
355
|
-
ParagraphDialogService,
|
356
|
-
ListDialogService,
|
357
|
-
StyleDialogService,
|
358
|
-
StylesDialogService,
|
359
|
-
BulletsAndNumberingDialogService,
|
360
|
-
FontDialogService,
|
361
|
-
TablePropertiesDialogService,
|
362
|
-
BordersAndShadingDialogService,
|
363
|
-
TableOptionsDialogService,
|
364
|
-
CellOptionsDialogService,
|
365
|
-
SpellCheckerService,
|
366
|
-
SpellCheckDialogService,
|
367
|
-
CollaborativeEditingService,
|
368
|
-
ColumnsDialogService,
|
369
|
-
CollaborativeEditingHandlerService
|
370
|
-
], imports: [[CommonModule, DocumentEditorModule], DocumentEditorModule] });
|
371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorAllModule, decorators: [{
|
372
|
-
type: NgModule,
|
373
|
-
args: [{
|
374
|
-
imports: [CommonModule, DocumentEditorModule],
|
375
|
-
exports: [
|
376
|
-
DocumentEditorModule
|
377
|
-
],
|
378
|
-
providers: [
|
379
|
-
PrintService,
|
380
|
-
SfdtExportService,
|
381
|
-
WordExportService,
|
382
|
-
TextExportService,
|
383
|
-
SelectionService,
|
384
|
-
SearchService,
|
385
|
-
EditorService,
|
386
|
-
EditorHistoryService,
|
387
|
-
OptionsPaneService,
|
388
|
-
ContextMenuService,
|
389
|
-
ImageResizerService,
|
390
|
-
HyperlinkDialogService,
|
391
|
-
TableDialogService,
|
392
|
-
BookmarkDialogService,
|
393
|
-
TableOfContentsDialogService,
|
394
|
-
PageSetupDialogService,
|
395
|
-
ParagraphDialogService,
|
396
|
-
ListDialogService,
|
397
|
-
StyleDialogService,
|
398
|
-
StylesDialogService,
|
399
|
-
BulletsAndNumberingDialogService,
|
400
|
-
FontDialogService,
|
401
|
-
TablePropertiesDialogService,
|
402
|
-
BordersAndShadingDialogService,
|
403
|
-
TableOptionsDialogService,
|
404
|
-
CellOptionsDialogService,
|
405
|
-
SpellCheckerService,
|
406
|
-
SpellCheckDialogService,
|
407
|
-
CollaborativeEditingService,
|
408
|
-
ColumnsDialogService,
|
409
|
-
CollaborativeEditingHandlerService
|
410
|
-
]
|
411
|
-
}]
|
412
|
-
}] });
|
413
|
-
|
414
|
-
const inputs = ['autoResizeOnVisibilityChange', 'currentUser', 'documentEditorSettings', 'documentSettings', 'enableAutoFocus', 'enableComment', 'enableCsp', 'enableLocalPaste', 'enableLockAndEdit', 'enablePersistence', 'enableRtl', 'enableSpellCheck', 'enableToolbar', 'enableTrackChanges', 'headers', 'height', 'layoutType', 'locale', 'restrictEditing', 'serverActionSettings', 'serviceUrl', 'showPropertiesPane', 'toolbarItems', 'userColor', 'width', 'zIndex'];
|
415
|
-
const outputs = ['beforeAcceptRejectChanges', 'beforeCommentAction', 'beforePaneSwitch', 'commentDelete', 'contentChange', 'contentControl', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'destroyed', 'documentChange', 'selectionChange', 'serviceFailure', 'toolbarClick', 'trackChange', 'beforeXmlHttpRequestSend'];
|
416
|
-
const twoWays = [];
|
417
|
-
/**
|
418
|
-
* `ejs-documenteditor-container` represents the Angular Document Editor Container.
|
419
|
-
* ```html
|
420
|
-
* <ejs-documenteditor-container></ejs-documenteditor-container>
|
421
|
-
* ```
|
422
|
-
*/
|
423
|
-
let DocumentEditorContainerComponent = class DocumentEditorContainerComponent extends DocumentEditorContainer {
|
424
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
425
|
-
super();
|
426
|
-
this.ngEle = ngEle;
|
427
|
-
this.srenderer = srenderer;
|
428
|
-
this.viewContainerRef = viewContainerRef;
|
429
|
-
this.injector = injector;
|
430
|
-
this.element = this.ngEle.nativeElement;
|
431
|
-
this.injectedModules = this.injectedModules || [];
|
432
|
-
try {
|
433
|
-
let mod = this.injector.get('DocumentEditorToolbar');
|
434
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
435
|
-
this.injectedModules.push(mod);
|
436
|
-
}
|
437
|
-
}
|
438
|
-
catch (_a) { }
|
439
|
-
this.registerEvents(outputs);
|
440
|
-
this.addTwoWay.call(this, twoWays);
|
441
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
442
|
-
this.context = new ComponentBase();
|
443
|
-
}
|
444
|
-
ngOnInit() {
|
445
|
-
this.context.ngOnInit(this);
|
446
|
-
}
|
447
|
-
ngAfterViewInit() {
|
448
|
-
this.context.ngAfterViewInit(this);
|
449
|
-
}
|
450
|
-
ngOnDestroy() {
|
451
|
-
this.context.ngOnDestroy(this);
|
452
|
-
}
|
453
|
-
ngAfterContentChecked() {
|
454
|
-
this.context.ngAfterContentChecked(this);
|
455
|
-
}
|
456
|
-
};
|
457
|
-
DocumentEditorContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
458
|
-
DocumentEditorContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DocumentEditorContainerComponent, selector: "ejs-documenteditorcontainer", inputs: { autoResizeOnVisibilityChange: "autoResizeOnVisibilityChange", currentUser: "currentUser", documentEditorSettings: "documentEditorSettings", documentSettings: "documentSettings", enableAutoFocus: "enableAutoFocus", enableComment: "enableComment", enableCsp: "enableCsp", enableLocalPaste: "enableLocalPaste", enableLockAndEdit: "enableLockAndEdit", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSpellCheck: "enableSpellCheck", enableToolbar: "enableToolbar", enableTrackChanges: "enableTrackChanges", headers: "headers", height: "height", layoutType: "layoutType", locale: "locale", restrictEditing: "restrictEditing", serverActionSettings: "serverActionSettings", serviceUrl: "serviceUrl", showPropertiesPane: "showPropertiesPane", toolbarItems: "toolbarItems", userColor: "userColor", width: "width", zIndex: "zIndex" }, outputs: { beforeAcceptRejectChanges: "beforeAcceptRejectChanges", beforeCommentAction: "beforeCommentAction", beforePaneSwitch: "beforePaneSwitch", commentDelete: "commentDelete", contentChange: "contentChange", contentControl: "contentControl", created: "created", customContextMenuBeforeOpen: "customContextMenuBeforeOpen", customContextMenuSelect: "customContextMenuSelect", destroyed: "destroyed", documentChange: "documentChange", selectionChange: "selectionChange", serviceFailure: "serviceFailure", toolbarClick: "toolbarClick", trackChange: "trackChange", beforeXmlHttpRequestSend: "beforeXmlHttpRequestSend" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
459
|
-
DocumentEditorContainerComponent = __decorate([
|
460
|
-
ComponentMixins([ComponentBase])
|
461
|
-
], DocumentEditorContainerComponent);
|
462
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerComponent, decorators: [{
|
463
|
-
type: Component,
|
464
|
-
args: [{
|
465
|
-
selector: 'ejs-documenteditorcontainer',
|
466
|
-
inputs: inputs,
|
467
|
-
outputs: outputs,
|
468
|
-
template: '',
|
469
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
470
|
-
queries: {}
|
471
|
-
}]
|
472
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
473
|
-
|
474
|
-
/**
|
475
|
-
* NgModule definition for the DocumentEditorContainer component.
|
476
|
-
*/
|
477
|
-
class DocumentEditorContainerModule {
|
478
|
-
}
|
479
|
-
DocumentEditorContainerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
480
|
-
DocumentEditorContainerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, declarations: [DocumentEditorContainerComponent], imports: [CommonModule], exports: [DocumentEditorContainerComponent] });
|
481
|
-
DocumentEditorContainerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, imports: [[CommonModule]] });
|
482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, decorators: [{
|
483
|
-
type: NgModule,
|
484
|
-
args: [{
|
485
|
-
imports: [CommonModule],
|
486
|
-
declarations: [
|
487
|
-
DocumentEditorContainerComponent
|
488
|
-
],
|
489
|
-
exports: [
|
490
|
-
DocumentEditorContainerComponent
|
491
|
-
]
|
492
|
-
}]
|
493
|
-
}] });
|
494
|
-
|
495
|
-
const ToolbarService = { provide: 'DocumentEditorToolbar', useValue: Toolbar };
|
496
|
-
/**
|
497
|
-
* NgModule definition for the DocumentEditorContainer component with providers.
|
498
|
-
*/
|
499
|
-
class DocumentEditorContainerAllModule {
|
500
|
-
}
|
501
|
-
DocumentEditorContainerAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
502
|
-
DocumentEditorContainerAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerAllModule, imports: [CommonModule, DocumentEditorContainerModule], exports: [DocumentEditorContainerModule] });
|
503
|
-
DocumentEditorContainerAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerAllModule, providers: [
|
504
|
-
ToolbarService
|
505
|
-
], imports: [[CommonModule, DocumentEditorContainerModule], DocumentEditorContainerModule] });
|
506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerAllModule, decorators: [{
|
507
|
-
type: NgModule,
|
508
|
-
args: [{
|
509
|
-
imports: [CommonModule, DocumentEditorContainerModule],
|
510
|
-
exports: [
|
511
|
-
DocumentEditorContainerModule
|
512
|
-
],
|
513
|
-
providers: [
|
514
|
-
ToolbarService
|
515
|
-
]
|
516
|
-
}]
|
517
|
-
}] });
|
518
|
-
|
519
|
-
/**
|
520
|
-
* Generated bundle index. Do not edit.
|
521
|
-
*/
|
522
|
-
|
523
|
-
export { BookmarkDialogService, BordersAndShadingDialogService, BulletsAndNumberingDialogService, CellOptionsDialogService, CollaborativeEditingHandlerService, CollaborativeEditingService, ColumnsDialogService, ContextMenuService, DocumentEditorAllModule, DocumentEditorComponent, DocumentEditorContainerAllModule, DocumentEditorContainerComponent, DocumentEditorContainerModule, DocumentEditorModule, EditorHistoryService, EditorService, FontDialogService, HyperlinkDialogService, ImageResizerService, ListDialogService, OptionsPaneService, PageSetupDialogService, ParagraphDialogService, PrintService, SearchService, SelectionService, SfdtExportService, SpellCheckDialogService, SpellCheckerService, StyleDialogService, StylesDialogService, TableDialogService, TableOfContentsDialogService, TableOptionsDialogService, TablePropertiesDialogService, TextExportService, ToolbarService, WordExportService };
|
524
|
-
//# sourceMappingURL=syncfusion-ej2-angular-documenteditor.mjs.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"syncfusion-ej2-angular-documenteditor.mjs","sources":["../../src/document-editor/documenteditor.component.ts","../../src/document-editor/documenteditor.module.ts","../../src/document-editor/documenteditor-all.module.ts","../../src/document-editor-container/documenteditorcontainer.component.ts","../../src/document-editor-container/documenteditorcontainer.module.ts","../../src/document-editor-container/documenteditorcontainer-all.module.ts","../../syncfusion-ej2-angular-documenteditor.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditor } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const inputs: string[] = ['acceptTab','autoResizeOnVisibilityChange','currentUser','defaultPasteOption','documentEditorSettings','documentName','documentSettings','enableAutoFocus','enableBookmarkDialog','enableBordersAndShadingDialog','enableCollaborativeEditing','enableColumnsDialog','enableComment','enableContextMenu','enableCursorOnReadOnly','enableEditor','enableEditorHistory','enableFontDialog','enableFootnoteAndEndnoteDialog','enableFormField','enableHyperlinkDialog','enableImageResizer','enableListDialog','enableLocalPaste','enableLockAndEdit','enableOptionsPane','enablePageSetupDialog','enableParagraphDialog','enablePersistence','enablePrint','enableRtl','enableSearch','enableSelection','enableSfdtExport','enableSpellCheck','enableStyleDialog','enableTableDialog','enableTableOfContentsDialog','enableTableOptionsDialog','enableTablePropertiesDialog','enableTextExport','enableTrackChanges','enableWordExport','headers','height','isReadOnly','layoutType','locale','pageGap','pageOutline','serverActionSettings','serviceUrl','showComments','showRevisions','useCtrlClickToFollowHyperlink','userColor','width','zIndex','zoomFactor'];\nexport const outputs: string[] = ['actionComplete','afterFormFieldFill','beforeAcceptRejectChanges','beforeCommentAction','beforeFileOpen','beforeFormFieldFill','beforePaneSwitch','commentBegin','commentDelete','commentEnd','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','keyDown','requestNavigate','searchResultsChange','selectionChange','serviceFailure','trackChange','viewChange','zoomFactorChange','beforeXmlHttpRequestSend'];\nexport const twoWays: string[] = [];\n\n/**\n * `ejs-documenteditor` represents the Angular Document Editor Component.\n * ```html\n * <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>\n * ```\n */\n@Component({\n selector: 'ejs-documenteditor',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorComponent extends DocumentEditor implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tactionComplete: any;\n\tafterFormFieldFill: any;\n\tbeforeAcceptRejectChanges: any;\n\tbeforeCommentAction: any;\n\tbeforeFileOpen: any;\n\tbeforeFormFieldFill: any;\n\tbeforePaneSwitch: any;\n\tcommentBegin: any;\n\tcommentDelete: any;\n\tcommentEnd: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tkeyDown: any;\n\trequestNavigate: any;\n\tsearchResultsChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttrackChange: any;\n\tviewChange: any;\n\tzoomFactorChange: any;\n\tpublic beforeXmlHttpRequestSend: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSfdtExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorWordExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTextExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSearch');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorEditor');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorEditorHistory');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorOptionsPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorImageResizer');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorHyperlinkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTableDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorBookmarkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTableOfContentsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorPageSetupDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorParagraphDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorListDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorStyleDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorStylesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorBulletsAndNumberingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorFontDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTablePropertiesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorBordersAndShadingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTableOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorCellOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSpellChecker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSpellCheckDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditing');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorColumnsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditingHandler');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\n\n/**\n * NgModule definition for the DocumentEditor component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DocumentEditorComponent\n ],\n exports: [\n DocumentEditorComponent\n ]\n})\nexport class DocumentEditorModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\nimport { DocumentEditorModule } from './documenteditor.module';\nimport {Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing, ColumnsDialog, CollaborativeEditingHandler} from '@syncfusion/ej2-documenteditor'\n\n\nexport const PrintService: ValueProvider = { provide: 'DocumentEditorPrint', useValue: Print};\nexport const SfdtExportService: ValueProvider = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport};\nexport const WordExportService: ValueProvider = { provide: 'DocumentEditorWordExport', useValue: WordExport};\nexport const TextExportService: ValueProvider = { provide: 'DocumentEditorTextExport', useValue: TextExport};\nexport const SelectionService: ValueProvider = { provide: 'DocumentEditorSelection', useValue: Selection};\nexport const SearchService: ValueProvider = { provide: 'DocumentEditorSearch', useValue: Search};\nexport const EditorService: ValueProvider = { provide: 'DocumentEditorEditor', useValue: Editor};\nexport const EditorHistoryService: ValueProvider = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory};\nexport const OptionsPaneService: ValueProvider = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane};\nexport const ContextMenuService: ValueProvider = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu};\nexport const ImageResizerService: ValueProvider = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer};\nexport const HyperlinkDialogService: ValueProvider = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog};\nexport const TableDialogService: ValueProvider = { provide: 'DocumentEditorTableDialog', useValue: TableDialog};\nexport const BookmarkDialogService: ValueProvider = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog};\nexport const TableOfContentsDialogService: ValueProvider = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog};\nexport const PageSetupDialogService: ValueProvider = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog};\nexport const ParagraphDialogService: ValueProvider = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog};\nexport const ListDialogService: ValueProvider = { provide: 'DocumentEditorListDialog', useValue: ListDialog};\nexport const StyleDialogService: ValueProvider = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog};\nexport const StylesDialogService: ValueProvider = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog};\nexport const BulletsAndNumberingDialogService: ValueProvider = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog};\nexport const FontDialogService: ValueProvider = { provide: 'DocumentEditorFontDialog', useValue: FontDialog};\nexport const TablePropertiesDialogService: ValueProvider = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog};\nexport const BordersAndShadingDialogService: ValueProvider = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog};\nexport const TableOptionsDialogService: ValueProvider = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog};\nexport const CellOptionsDialogService: ValueProvider = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog};\nexport const SpellCheckerService: ValueProvider = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker};\nexport const SpellCheckDialogService: ValueProvider = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog};\nexport const CollaborativeEditingService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing};\nexport const ColumnsDialogService: ValueProvider = { provide: 'DocumentEditorColumnsDialog', useValue: ColumnsDialog};\nexport const CollaborativeEditingHandlerService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditingHandler', useValue: CollaborativeEditingHandler};\n\n/**\n * NgModule definition for the DocumentEditor component with providers.\n */\n@NgModule({\n imports: [CommonModule, DocumentEditorModule],\n exports: [\n DocumentEditorModule\n ],\n providers:[\n PrintService,\n SfdtExportService,\n WordExportService,\n TextExportService,\n SelectionService,\n SearchService,\n EditorService,\n EditorHistoryService,\n OptionsPaneService,\n ContextMenuService,\n ImageResizerService,\n HyperlinkDialogService,\n TableDialogService,\n BookmarkDialogService,\n TableOfContentsDialogService,\n PageSetupDialogService,\n ParagraphDialogService,\n ListDialogService,\n StyleDialogService,\n StylesDialogService,\n BulletsAndNumberingDialogService,\n FontDialogService,\n TablePropertiesDialogService,\n BordersAndShadingDialogService,\n TableOptionsDialogService,\n CellOptionsDialogService,\n SpellCheckerService,\n SpellCheckDialogService,\n CollaborativeEditingService,\n ColumnsDialogService,\n CollaborativeEditingHandlerService\n ]\n})\nexport class DocumentEditorAllModule { }","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const inputs: string[] = ['autoResizeOnVisibilityChange','currentUser','documentEditorSettings','documentSettings','enableAutoFocus','enableComment','enableCsp','enableLocalPaste','enableLockAndEdit','enablePersistence','enableRtl','enableSpellCheck','enableToolbar','enableTrackChanges','headers','height','layoutType','locale','restrictEditing','serverActionSettings','serviceUrl','showPropertiesPane','toolbarItems','userColor','width','zIndex'];\nexport const outputs: string[] = ['beforeAcceptRejectChanges','beforeCommentAction','beforePaneSwitch','commentDelete','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','selectionChange','serviceFailure','toolbarClick','trackChange','beforeXmlHttpRequestSend'];\nexport const twoWays: string[] = [];\n\n/**\n * `ejs-documenteditor-container` represents the Angular Document Editor Container.\n * ```html\n * <ejs-documenteditor-container></ejs-documenteditor-container>\n * ```\n */\n@Component({\n selector: 'ejs-documenteditorcontainer',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tbeforeAcceptRejectChanges: any;\n\tbeforeCommentAction: any;\n\tbeforePaneSwitch: any;\n\tcommentDelete: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttoolbarClick: any;\n\ttrackChange: any;\n\tpublic beforeXmlHttpRequestSend: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\n\n/**\n * NgModule definition for the DocumentEditorContainer component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DocumentEditorContainerComponent\n ],\n exports: [\n DocumentEditorContainerComponent\n ]\n})\nexport class DocumentEditorContainerModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\nimport { DocumentEditorContainerModule } from './documenteditorcontainer.module';\nimport {Toolbar} from '@syncfusion/ej2-documenteditor'\n\n\nexport const ToolbarService: ValueProvider = { provide: 'DocumentEditorToolbar', useValue: Toolbar};\n\n/**\n * NgModule definition for the DocumentEditorContainer component with providers.\n */\n@NgModule({\n imports: [CommonModule, DocumentEditorContainerModule],\n exports: [\n DocumentEditorContainerModule\n ],\n providers:[\n ToolbarService\n ]\n})\nexport class DocumentEditorContainerAllModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["inputs","outputs","twoWays"],"mappings":";;;;;;;;AAMO,MAAMA,QAAM,GAAa,CAAC,WAAW,EAAC,8BAA8B,EAAC,aAAa,EAAC,oBAAoB,EAAC,wBAAwB,EAAC,cAAc,EAAC,kBAAkB,EAAC,iBAAiB,EAAC,sBAAsB,EAAC,+BAA+B,EAAC,4BAA4B,EAAC,qBAAqB,EAAC,eAAe,EAAC,mBAAmB,EAAC,wBAAwB,EAAC,cAAc,EAAC,qBAAqB,EAAC,kBAAkB,EAAC,gCAAgC,EAAC,iBAAiB,EAAC,uBAAuB,EAAC,oBAAoB,EAAC,kBAAkB,EAAC,kBAAkB,EAAC,mBAAmB,EAAC,mBAAmB,EAAC,uBAAuB,EAAC,uBAAuB,EAAC,mBAAmB,EAAC,aAAa,EAAC,WAAW,EAAC,cAAc,EAAC,iBAAiB,EAAC,kBAAkB,EAAC,kBAAkB,EAAC,mBAAmB,EAAC,mBAAmB,EAAC,6BAA6B,EAAC,0BAA0B,EAAC,6BAA6B,EAAC,kBAAkB,EAAC,oBAAoB,EAAC,kBAAkB,EAAC,SAAS,EAAC,QAAQ,EAAC,YAAY,EAAC,YAAY,EAAC,QAAQ,EAAC,SAAS,EAAC,aAAa,EAAC,sBAAsB,EAAC,YAAY,EAAC,cAAc,EAAC,eAAe,EAAC,+BAA+B,EAAC,WAAW,EAAC,OAAO,EAAC,QAAQ,EAAC,YAAY,CAAC,CAAC;AAC7nC,MAAMC,SAAO,GAAa,CAAC,gBAAgB,EAAC,oBAAoB,EAAC,2BAA2B,EAAC,qBAAqB,EAAC,gBAAgB,EAAC,qBAAqB,EAAC,kBAAkB,EAAC,cAAc,EAAC,eAAe,EAAC,YAAY,EAAC,eAAe,EAAC,gBAAgB,EAAC,SAAS,EAAC,6BAA6B,EAAC,yBAAyB,EAAC,WAAW,EAAC,gBAAgB,EAAC,SAAS,EAAC,iBAAiB,EAAC,qBAAqB,EAAC,iBAAiB,EAAC,gBAAgB,EAAC,aAAa,EAAC,YAAY,EAAC,kBAAkB,EAAC,0BAA0B,CAAC,CAAC;AACxf,MAAMC,SAAO,GAAa,EAAE,CAAC;AAEpC;;;;;AAKG;IAYU,uBAAuB,GAAA,MAAvB,uBAAwB,SAAQ,cAAc,CAAA;AAgCvD,IAAA,WAAA,CAAoB,KAAiB,EAAU,SAAoB,EAAU,gBAAiC,EAAU,QAAkB,EAAA;AACtI,QAAA,KAAK,EAAE,CAAC;AADQ,QAAA,IAAK,CAAA,KAAA,GAAL,KAAK,CAAY;AAAU,QAAA,IAAS,CAAA,SAAA,GAAT,SAAS,CAAW;AAAU,QAAA,IAAgB,CAAA,gBAAA,GAAhB,gBAAgB,CAAiB;AAAU,QAAA,IAAQ,CAAA,QAAA,GAAR,QAAQ,CAAU;QAEtI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC;QACxC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,IAAI,EAAE,CAAC;QAClD,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;YACnD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC;YACxD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC;YACxD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC;YACxD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,yBAAyB,CAAC,CAAC;YACvD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC;YACpD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC;YACpD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,6BAA6B,CAAC,CAAC;YAC3D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;YACzD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;YACzD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC;YAC1D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;YAC7D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;YACzD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,8BAA8B,CAAC,CAAC;YAC5D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qCAAqC,CAAC,CAAC;YACnE,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;YAC7D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;YAC7D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC;YACxD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;YACzD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC;YAC1D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,yCAAyC,CAAC,CAAC;YACvE,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC;YACxD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,qCAAqC,CAAC,CAAC;YACnE,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,uCAAuC,CAAC,CAAC;YACrE,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,kCAAkC,CAAC,CAAC;YAChE,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;YAC/D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC;YAC1D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;YAC9D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,oCAAoC,CAAC,CAAC;YAClE,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,6BAA6B,CAAC,CAAC;YAC3D,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;QAEf,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,2CAA2C,CAAC,CAAC;YACzE,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;AAEf,QAAA,IAAI,CAAC,cAAc,CAACD,SAAO,CAAC,CAAC;QAC7B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAEC,SAAO,CAAC,CAAC;QACnC,QAAQ,CAAC,iBAAiB,EAAE,IAAI,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;AACzD,QAAA,IAAI,CAAC,OAAO,GAAI,IAAI,aAAa,EAAE,CAAC;KACvC;IAEM,QAAQ,GAAA;AACX,QAAA,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;KAC/B;IAEM,eAAe,GAAA;AAClB,QAAA,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;KACtC;IAEM,WAAW,GAAA;AACd,QAAA,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;KAClC;IAEM,qBAAqB,GAAA;AAExB,QAAA,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;KAC5C;EAIJ;oHAtRY,uBAAuB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,SAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,QAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAvB,uBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,suGAPtB,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;AAOH,uBAAuB,GAAA,UAAA,CAAA;AADnC,IAAA,eAAe,CAAC,CAAC,aAAa,CAAC,CAAC;CACpB,EAAA,uBAAuB,CAsRnC,CAAA;2FAtRY,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAXnC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,oBAAoB;AAC9B,oBAAA,MAAM,EAAEF,QAAM;AACd,oBAAA,OAAO,EAAEC,SAAO;AAChB,oBAAA,QAAQ,EAAE,EAAE;oBACZ,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,OAAO,EAAE,EAER;iBACJ,CAAA;;;ACrBD;;AAEG;MAUU,oBAAoB,CAAA;;iHAApB,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAApB,oBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,EANzB,YAAA,EAAA,CAAA,uBAAuB,CAFjB,EAAA,OAAA,EAAA,CAAA,YAAY,aAKlB,uBAAuB,CAAA,EAAA,CAAA,CAAA;kHAGlB,oBAAoB,EAAA,OAAA,EAAA,CARpB,CAAC,YAAY,CAAC,CAAA,EAAA,CAAA,CAAA;2FAQd,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAThC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,OAAO,EAAE,CAAC,YAAY,CAAC;AACvB,oBAAA,YAAY,EAAE;wBACV,uBAAuB;AAC1B,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACL,uBAAuB;AAC1B,qBAAA;iBACJ,CAAA;;;ACRM,MAAM,YAAY,GAAkB,EAAE,OAAO,EAAE,qBAAqB,EAAE,QAAQ,EAAE,KAAK,GAAE;AACvF,MAAM,iBAAiB,GAAkB,EAAE,OAAO,EAAE,0BAA0B,EAAE,QAAQ,EAAE,UAAU,GAAE;AACtG,MAAM,iBAAiB,GAAkB,EAAE,OAAO,EAAE,0BAA0B,EAAE,QAAQ,EAAE,UAAU,GAAE;AACtG,MAAM,iBAAiB,GAAkB,EAAE,OAAO,EAAE,0BAA0B,EAAE,QAAQ,EAAE,UAAU,GAAE;AACtG,MAAM,gBAAgB,GAAkB,EAAE,OAAO,EAAE,yBAAyB,EAAE,QAAQ,EAAE,SAAS,GAAE;AACnG,MAAM,aAAa,GAAkB,EAAE,OAAO,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,GAAE;AAC1F,MAAM,aAAa,GAAkB,EAAE,OAAO,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,GAAE;AAC1F,MAAM,oBAAoB,GAAkB,EAAE,OAAO,EAAE,6BAA6B,EAAE,QAAQ,EAAE,aAAa,GAAE;AAC/G,MAAM,kBAAkB,GAAkB,EAAE,OAAO,EAAE,2BAA2B,EAAE,QAAQ,EAAE,WAAW,GAAE;AACzG,MAAM,kBAAkB,GAAkB,EAAE,OAAO,EAAE,2BAA2B,EAAE,QAAQ,EAAE,WAAW,GAAE;AACzG,MAAM,mBAAmB,GAAkB,EAAE,OAAO,EAAE,4BAA4B,EAAE,QAAQ,EAAE,YAAY,GAAE;AAC5G,MAAM,sBAAsB,GAAkB,EAAE,OAAO,EAAE,+BAA+B,EAAE,QAAQ,EAAE,eAAe,GAAE;AACrH,MAAM,kBAAkB,GAAkB,EAAE,OAAO,EAAE,2BAA2B,EAAE,QAAQ,EAAE,WAAW,GAAE;AACzG,MAAM,qBAAqB,GAAkB,EAAE,OAAO,EAAE,8BAA8B,EAAE,QAAQ,EAAE,cAAc,GAAE;AAClH,MAAM,4BAA4B,GAAkB,EAAE,OAAO,EAAE,qCAAqC,EAAE,QAAQ,EAAE,qBAAqB,GAAE;AACvI,MAAM,sBAAsB,GAAkB,EAAE,OAAO,EAAE,+BAA+B,EAAE,QAAQ,EAAE,eAAe,GAAE;AACrH,MAAM,sBAAsB,GAAkB,EAAE,OAAO,EAAE,+BAA+B,EAAE,QAAQ,EAAE,eAAe,GAAE;AACrH,MAAM,iBAAiB,GAAkB,EAAE,OAAO,EAAE,0BAA0B,EAAE,QAAQ,EAAE,UAAU,GAAE;AACtG,MAAM,kBAAkB,GAAkB,EAAE,OAAO,EAAE,2BAA2B,EAAE,QAAQ,EAAE,WAAW,GAAE;AACzG,MAAM,mBAAmB,GAAkB,EAAE,OAAO,EAAE,4BAA4B,EAAE,QAAQ,EAAE,YAAY,GAAE;AAC5G,MAAM,gCAAgC,GAAkB,EAAE,OAAO,EAAE,yCAAyC,EAAE,QAAQ,EAAE,yBAAyB,GAAE;AACnJ,MAAM,iBAAiB,GAAkB,EAAE,OAAO,EAAE,0BAA0B,EAAE,QAAQ,EAAE,UAAU,GAAE;AACtG,MAAM,4BAA4B,GAAkB,EAAE,OAAO,EAAE,qCAAqC,EAAE,QAAQ,EAAE,qBAAqB,GAAE;AACvI,MAAM,8BAA8B,GAAkB,EAAE,OAAO,EAAE,uCAAuC,EAAE,QAAQ,EAAE,uBAAuB,GAAE;AAC7I,MAAM,yBAAyB,GAAkB,EAAE,OAAO,EAAE,kCAAkC,EAAE,QAAQ,EAAE,kBAAkB,GAAE;AAC9H,MAAM,wBAAwB,GAAkB,EAAE,OAAO,EAAE,iCAAiC,EAAE,QAAQ,EAAE,iBAAiB,GAAE;AAC3H,MAAM,mBAAmB,GAAkB,EAAE,OAAO,EAAE,4BAA4B,EAAE,QAAQ,EAAE,YAAY,GAAE;AAC5G,MAAM,uBAAuB,GAAkB,EAAE,OAAO,EAAE,gCAAgC,EAAE,QAAQ,EAAE,gBAAgB,GAAE;AACxH,MAAM,2BAA2B,GAAkB,EAAE,OAAO,EAAE,oCAAoC,EAAE,QAAQ,EAAE,oBAAoB,GAAE;AACpI,MAAM,oBAAoB,GAAkB,EAAE,OAAO,EAAE,6BAA6B,EAAE,QAAQ,EAAE,aAAa,GAAE;AAC/G,MAAM,kCAAkC,GAAkB,EAAE,OAAO,EAAE,2CAA2C,EAAE,QAAQ,EAAE,2BAA2B,GAAE;AAEhK;;AAEG;MAwCU,uBAAuB,CAAA;;oHAAvB,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAvB,uBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,uBAAuB,EAtCtB,OAAA,EAAA,CAAA,YAAY,EAAE,oBAAoB,aAExC,oBAAoB,CAAA,EAAA,CAAA,CAAA;AAoCf,uBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,uBAAuB,EAlCtB,SAAA,EAAA;QACN,YAAY;QACZ,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,gBAAgB;QAChB,aAAa;QACb,aAAa;QACb,oBAAoB;QACpB,kBAAkB;QAClB,kBAAkB;QAClB,mBAAmB;QACnB,sBAAsB;QACtB,kBAAkB;QAClB,qBAAqB;QACrB,4BAA4B;QAC5B,sBAAsB;QACtB,sBAAsB;QACtB,iBAAiB;QACjB,kBAAkB;QAClB,mBAAmB;QACnB,gCAAgC;QAChC,iBAAiB;QACjB,4BAA4B;QAC5B,8BAA8B;QAC9B,yBAAyB;QACzB,wBAAwB;QACxB,mBAAmB;QACnB,uBAAuB;QACvB,2BAA2B;QAC3B,oBAAoB;QACpB,kCAAkC;AACrC,KAAA,EAAA,OAAA,EAAA,CApCQ,CAAC,YAAY,EAAE,oBAAoB,CAAC,EAEzC,oBAAoB,CAAA,EAAA,CAAA,CAAA;2FAoCf,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAvCnC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACN,oBAAA,OAAO,EAAE,CAAC,YAAY,EAAE,oBAAoB,CAAC;AAC7C,oBAAA,OAAO,EAAE;wBACL,oBAAoB;AACvB,qBAAA;AACD,oBAAA,SAAS,EAAC;wBACN,YAAY;wBACZ,iBAAiB;wBACjB,iBAAiB;wBACjB,iBAAiB;wBACjB,gBAAgB;wBAChB,aAAa;wBACb,aAAa;wBACb,oBAAoB;wBACpB,kBAAkB;wBAClB,kBAAkB;wBAClB,mBAAmB;wBACnB,sBAAsB;wBACtB,kBAAkB;wBAClB,qBAAqB;wBACrB,4BAA4B;wBAC5B,sBAAsB;wBACtB,sBAAsB;wBACtB,iBAAiB;wBACjB,kBAAkB;wBAClB,mBAAmB;wBACnB,gCAAgC;wBAChC,iBAAiB;wBACjB,4BAA4B;wBAC5B,8BAA8B;wBAC9B,yBAAyB;wBACzB,wBAAwB;wBACxB,mBAAmB;wBACnB,uBAAuB;wBACvB,2BAA2B;wBAC3B,oBAAoB;wBACpB,kCAAkC;AACrC,qBAAA;iBACJ,CAAA;;;AC1EM,MAAM,MAAM,GAAa,CAAC,8BAA8B,EAAC,aAAa,EAAC,wBAAwB,EAAC,kBAAkB,EAAC,iBAAiB,EAAC,eAAe,EAAC,WAAW,EAAC,kBAAkB,EAAC,mBAAmB,EAAC,mBAAmB,EAAC,WAAW,EAAC,kBAAkB,EAAC,eAAe,EAAC,oBAAoB,EAAC,SAAS,EAAC,QAAQ,EAAC,YAAY,EAAC,QAAQ,EAAC,iBAAiB,EAAC,sBAAsB,EAAC,YAAY,EAAC,oBAAoB,EAAC,cAAc,EAAC,WAAW,EAAC,OAAO,EAAC,QAAQ,CAAC,CAAC;AACjc,MAAM,OAAO,GAAa,CAAC,2BAA2B,EAAC,qBAAqB,EAAC,kBAAkB,EAAC,eAAe,EAAC,eAAe,EAAC,gBAAgB,EAAC,SAAS,EAAC,6BAA6B,EAAC,yBAAyB,EAAC,WAAW,EAAC,gBAAgB,EAAC,iBAAiB,EAAC,gBAAgB,EAAC,cAAc,EAAC,aAAa,EAAC,0BAA0B,CAAC,CAAC;AAC5U,MAAM,OAAO,GAAa,EAAE,CAAC;AAEpC;;;;;AAKG;IAYU,gCAAgC,GAAA,MAAhC,gCAAiC,SAAQ,uBAAuB,CAAA;AAsBzE,IAAA,WAAA,CAAoB,KAAiB,EAAU,SAAoB,EAAU,gBAAiC,EAAU,QAAkB,EAAA;AACtI,QAAA,KAAK,EAAE,CAAC;AADQ,QAAA,IAAK,CAAA,KAAA,GAAL,KAAK,CAAY;AAAU,QAAA,IAAS,CAAA,SAAA,GAAT,SAAS,CAAW;AAAU,QAAA,IAAgB,CAAA,gBAAA,GAAhB,gBAAgB,CAAiB;AAAU,QAAA,IAAQ,CAAA,QAAA,GAAR,QAAQ,CAAU;QAEtI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC;QACxC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,IAAI,EAAE,CAAC;QAClD,IAAI;YACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;YACrD,IAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;AACzC,gBAAA,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACjC,aAAA;AACJ,SAAA;AAAC,QAAA,OAAA,EAAA,EAAM,GAAG;AAEf,QAAA,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;QAC7B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QACnC,QAAQ,CAAC,iBAAiB,EAAE,IAAI,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;AACzD,QAAA,IAAI,CAAC,OAAO,GAAI,IAAI,aAAa,EAAE,CAAC;KACvC;IAEM,QAAQ,GAAA;AACX,QAAA,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;KAC/B;IAEM,eAAe,GAAA;AAClB,QAAA,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;KACtC;IAEM,WAAW,GAAA;AACd,QAAA,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;KAClC;IAEM,qBAAqB,GAAA;AAExB,QAAA,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;KAC5C;EAIJ;6HA1DY,gCAAgC,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,SAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,QAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAhC,gCAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,gCAAgC,+hDAP/B,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;AAOH,gCAAgC,GAAA,UAAA,CAAA;AAD5C,IAAA,eAAe,CAAC,CAAC,aAAa,CAAC,CAAC;CACpB,EAAA,gCAAgC,CA0D5C,CAAA;2FA1DY,gCAAgC,EAAA,UAAA,EAAA,CAAA;kBAX5C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,6BAA6B;AACvC,oBAAA,MAAM,EAAE,MAAM;AACd,oBAAA,OAAO,EAAE,OAAO;AAChB,oBAAA,QAAQ,EAAE,EAAE;oBACZ,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,OAAO,EAAE,EAER;iBACJ,CAAA;;;ACrBD;;AAEG;MAUU,6BAA6B,CAAA;;0HAA7B,6BAA6B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAA7B,6BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,6BAA6B,EANlC,YAAA,EAAA,CAAA,gCAAgC,CAF1B,EAAA,OAAA,EAAA,CAAA,YAAY,aAKlB,gCAAgC,CAAA,EAAA,CAAA,CAAA;2HAG3B,6BAA6B,EAAA,OAAA,EAAA,CAR7B,CAAC,YAAY,CAAC,CAAA,EAAA,CAAA,CAAA;2FAQd,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBATzC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,OAAO,EAAE,CAAC,YAAY,CAAC;AACvB,oBAAA,YAAY,EAAE;wBACV,gCAAgC;AACnC,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACL,gCAAgC;AACnC,qBAAA;iBACJ,CAAA;;;ACRM,MAAM,cAAc,GAAkB,EAAE,OAAO,EAAE,uBAAuB,EAAE,QAAQ,EAAE,OAAO,GAAE;AAEpG;;AAEG;MAUU,gCAAgC,CAAA;;6HAAhC,gCAAgC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAhC,gCAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gCAAgC,EAR/B,OAAA,EAAA,CAAA,YAAY,EAAE,6BAA6B,aAEjD,6BAA6B,CAAA,EAAA,CAAA,CAAA;AAMxB,gCAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gCAAgC,EAJ/B,SAAA,EAAA;QACN,cAAc;AACjB,KAAA,EAAA,OAAA,EAAA,CANQ,CAAC,YAAY,EAAE,6BAA6B,CAAC,EAElD,6BAA6B,CAAA,EAAA,CAAA,CAAA;2FAMxB,gCAAgC,EAAA,UAAA,EAAA,CAAA;kBAT5C,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACN,oBAAA,OAAO,EAAE,CAAC,YAAY,EAAE,6BAA6B,CAAC;AACtD,oBAAA,OAAO,EAAE;wBACL,6BAA6B;AAChC,qBAAA;AACD,oBAAA,SAAS,EAAC;wBACN,cAAc;AACjB,qBAAA;iBACJ,CAAA;;;ACpBD;;AAEG;;;;"}
|