@syncfusion/ej2-angular-documenteditor 22.2.8-ngcc → 22.2.8

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 (152) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +116 -0
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +269 -0
  4. package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
  5. package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
  6. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
  7. package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
  8. package/esm2020/src/index.mjs +8 -0
  9. package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +516 -0
  11. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +516 -0
  13. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  14. package/package.json +27 -13
  15. package/schematics/utils/lib-details.d.ts +2 -2
  16. package/src/document-editor/documenteditor-all.module.d.ts +6 -0
  17. package/src/document-editor/documenteditor.component.d.ts +3 -0
  18. package/src/document-editor/documenteditor.module.d.ts +6 -0
  19. package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
  20. package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
  21. package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
  22. package/styles/document-editor/_all.scss +3 -0
  23. package/styles/document-editor/_bootstrap-dark-definition.scss +547 -0
  24. package/styles/document-editor/_bootstrap-definition.scss +546 -0
  25. package/styles/document-editor/_bootstrap4-definition.scss +559 -0
  26. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  27. package/styles/document-editor/_bootstrap5-definition.scss +560 -0
  28. package/styles/document-editor/_fabric-dark-definition.scss +549 -0
  29. package/styles/document-editor/_fabric-definition.scss +548 -0
  30. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  31. package/styles/document-editor/_fluent-definition.scss +569 -0
  32. package/styles/document-editor/_fusionnew-definition.scss +560 -0
  33. package/styles/document-editor/_highcontrast-definition.scss +548 -0
  34. package/styles/document-editor/_highcontrast-light-definition.scss +2988 -0
  35. package/styles/document-editor/_layout.scss +216 -0
  36. package/styles/document-editor/_material-dark-definition.scss +565 -0
  37. package/styles/document-editor/_material-definition.scss +565 -0
  38. package/styles/document-editor/_material3-dark-definition.scss +1 -0
  39. package/styles/document-editor/_material3-definition.scss +560 -0
  40. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  41. package/styles/document-editor/_tailwind-definition.scss +557 -0
  42. package/styles/document-editor/_theme.scss +3539 -0
  43. package/styles/document-editor/bootstrap-dark.scss +4 -1
  44. package/styles/document-editor/bootstrap.scss +4 -1
  45. package/styles/document-editor/bootstrap4.scss +4 -1
  46. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  47. package/styles/document-editor/bootstrap5.scss +4 -1
  48. package/styles/document-editor/fabric-dark.scss +4 -1
  49. package/styles/document-editor/fabric.scss +4 -1
  50. package/styles/document-editor/fluent-dark.scss +4 -1
  51. package/styles/document-editor/fluent.scss +4 -1
  52. package/styles/document-editor/highcontrast-light.scss +4 -1
  53. package/styles/document-editor/highcontrast.scss +4 -1
  54. package/styles/document-editor/icons/_bootstrap-dark.scss +660 -0
  55. package/styles/document-editor/icons/_bootstrap.scss +660 -0
  56. package/styles/document-editor/icons/_bootstrap4.scss +645 -0
  57. package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
  58. package/styles/document-editor/icons/_bootstrap5.scss +699 -0
  59. package/styles/document-editor/icons/_fabric-dark.scss +660 -0
  60. package/styles/document-editor/icons/_fabric.scss +660 -0
  61. package/styles/document-editor/icons/_fluent-dark.scss +1 -0
  62. package/styles/document-editor/icons/_fluent.scss +702 -0
  63. package/styles/document-editor/icons/_fusionnew.scss +696 -0
  64. package/styles/document-editor/icons/_highcontrast-light.scss +665 -0
  65. package/styles/document-editor/icons/_highcontrast.scss +660 -0
  66. package/styles/document-editor/icons/_material-dark.scss +653 -0
  67. package/styles/document-editor/icons/_material.scss +653 -0
  68. package/styles/document-editor/icons/_material3-dark.scss +1 -0
  69. package/styles/document-editor/icons/_material3.scss +696 -0
  70. package/styles/document-editor/icons/_tailwind-dark.scss +696 -0
  71. package/styles/document-editor/icons/_tailwind.scss +699 -0
  72. package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +174 -0
  73. package/styles/document-editor/material-dark.scss +4 -1
  74. package/styles/document-editor/material.scss +4 -1
  75. package/styles/document-editor/material3-dark.scss +4 -1
  76. package/styles/document-editor/material3.scss +4 -1
  77. package/styles/document-editor/tailwind-dark.scss +4 -1
  78. package/styles/document-editor/tailwind.scss +4 -1
  79. package/styles/document-editor-container/_all.scss +2 -0
  80. package/styles/document-editor-container/_bootstrap-dark-definition.scss +133 -0
  81. package/styles/document-editor-container/_bootstrap-definition.scss +133 -0
  82. package/styles/document-editor-container/_bootstrap4-definition.scss +149 -0
  83. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  84. package/styles/document-editor-container/_bootstrap5-definition.scss +159 -0
  85. package/styles/document-editor-container/_definition.scss +12 -0
  86. package/styles/document-editor-container/_fabric-dark-definition.scss +138 -0
  87. package/styles/document-editor-container/_fabric-definition.scss +135 -0
  88. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  89. package/styles/document-editor-container/_fluent-definition.scss +160 -0
  90. package/styles/document-editor-container/_fusionnew-definition.scss +159 -0
  91. package/styles/document-editor-container/_highcontrast-definition.scss +136 -0
  92. package/styles/document-editor-container/_highcontrast-light-definition.scss +139 -0
  93. package/styles/document-editor-container/_layout.scss +87 -0
  94. package/styles/document-editor-container/_material-dark-definition.scss +137 -0
  95. package/styles/document-editor-container/_material-definition.scss +136 -0
  96. package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
  97. package/styles/document-editor-container/_material3-definition.scss +163 -0
  98. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  99. package/styles/document-editor-container/_tailwind-definition.scss +153 -0
  100. package/styles/document-editor-container/_theme.scss +2406 -0
  101. package/styles/document-editor-container/bootstrap-dark.scss +5 -1
  102. package/styles/document-editor-container/bootstrap.scss +5 -1
  103. package/styles/document-editor-container/bootstrap4.scss +5 -1
  104. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  105. package/styles/document-editor-container/bootstrap5.scss +5 -1
  106. package/styles/document-editor-container/fabric-dark.scss +5 -1
  107. package/styles/document-editor-container/fabric.scss +5 -1
  108. package/styles/document-editor-container/fluent-dark.scss +5 -1
  109. package/styles/document-editor-container/fluent.scss +5 -1
  110. package/styles/document-editor-container/highcontrast-light.scss +5 -1
  111. package/styles/document-editor-container/highcontrast.scss +5 -1
  112. package/styles/document-editor-container/icons/_bootstrap-dark.scss +482 -0
  113. package/styles/document-editor-container/icons/_bootstrap.scss +482 -0
  114. package/styles/document-editor-container/icons/_bootstrap4.scss +482 -0
  115. package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
  116. package/styles/document-editor-container/icons/_bootstrap5.scss +509 -0
  117. package/styles/document-editor-container/icons/_fabric-dark.scss +483 -0
  118. package/styles/document-editor-container/icons/_fabric.scss +482 -0
  119. package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
  120. package/styles/document-editor-container/icons/_fluent.scss +508 -0
  121. package/styles/document-editor-container/icons/_fusionnew.scss +508 -0
  122. package/styles/document-editor-container/icons/_highcontrast-light.scss +482 -0
  123. package/styles/document-editor-container/icons/_highcontrast.scss +482 -0
  124. package/styles/document-editor-container/icons/_material-dark.scss +484 -0
  125. package/styles/document-editor-container/icons/_material.scss +484 -0
  126. package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
  127. package/styles/document-editor-container/icons/_material3.scss +507 -0
  128. package/styles/document-editor-container/icons/_tailwind-dark.scss +508 -0
  129. package/styles/document-editor-container/icons/_tailwind.scss +508 -0
  130. package/styles/document-editor-container/material-dark.scss +5 -1
  131. package/styles/document-editor-container/material.scss +5 -1
  132. package/styles/document-editor-container/material3-dark.scss +5 -1
  133. package/styles/document-editor-container/material3.scss +5 -1
  134. package/styles/document-editor-container/tailwind-dark.scss +5 -1
  135. package/styles/document-editor-container/tailwind.scss +5 -1
  136. package/styles/material3-dark.css +0 -56
  137. package/styles/material3-dark.scss +1 -0
  138. package/styles/material3.css +0 -111
  139. package/styles/material3.scss +1 -0
  140. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  141. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -583
  142. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  143. package/@syncfusion/ej2-angular-documenteditor.js +0 -553
  144. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  145. package/CHANGELOG.md +0 -3549
  146. package/dist/ej2-angular-documenteditor.umd.js +0 -1250
  147. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  148. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  149. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  150. package/ej2-angular-documenteditor.d.ts +0 -6
  151. package/ej2-angular-documenteditor.metadata.json +0 -1
  152. package/postinstall/tagchange.js +0 -18
@@ -1,553 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
2
- import { ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
3
- import { BookmarkDialog, BordersAndShadingDialog, BulletsAndNumberingDialog, CellOptionsDialog, CollaborativeEditing, ColumnsDialog, ContextMenu, DocumentEditor, DocumentEditorContainer, Editor, EditorHistory, FontDialog, HyperlinkDialog, ImageResizer, ListDialog, OptionsPane, PageSetupDialog, ParagraphDialog, Print, Search, Selection, SfdtExport, SpellCheckDialog, SpellChecker, StyleDialog, StylesDialog, TableDialog, TableOfContentsDialog, TableOptionsDialog, TablePropertiesDialog, TextExport, Toolbar, WordExport } from '@syncfusion/ej2-documenteditor';
4
- import { CommonModule } from '@angular/common';
5
-
6
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
7
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
8
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
9
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
10
- return c > 3 && r && Object.defineProperty(target, key, r), r;
11
- };
12
- var __metadata = (this && this.__metadata) || function (k, v) {
13
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
14
- };
15
- const inputs = ['acceptTab', 'autoResizeOnVisibilityChange', 'currentUser', 'defaultPasteOption', 'documentEditorSettings', 'documentName', 'documentSettings', 'enableAutoFocus', 'enableBookmarkDialog', 'enableBordersAndShadingDialog', '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'];
16
- const outputs = ['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'];
17
- const twoWays = [];
18
- /**
19
- * `ejs-documenteditor` represents the Angular Document Editor Component.
20
- * ```html
21
- * <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>
22
- * ```
23
- */
24
- let DocumentEditorComponent = class DocumentEditorComponent extends DocumentEditor {
25
- /**
26
- * @param {?} ngEle
27
- * @param {?} srenderer
28
- * @param {?} viewContainerRef
29
- * @param {?} injector
30
- */
31
- constructor(ngEle, srenderer, viewContainerRef, injector) {
32
- super();
33
- this.ngEle = ngEle;
34
- this.srenderer = srenderer;
35
- this.viewContainerRef = viewContainerRef;
36
- this.injector = injector;
37
- this.element = this.ngEle.nativeElement;
38
- this.injectedModules = this.injectedModules || [];
39
- try {
40
- let mod = this.injector.get('DocumentEditorPrint');
41
- if (this.injectedModules.indexOf(mod) === -1) {
42
- this.injectedModules.push(mod);
43
- }
44
- }
45
- catch (_a) { }
46
- try {
47
- let mod = this.injector.get('DocumentEditorSfdtExport');
48
- if (this.injectedModules.indexOf(mod) === -1) {
49
- this.injectedModules.push(mod);
50
- }
51
- }
52
- catch (_b) { }
53
- try {
54
- let mod = this.injector.get('DocumentEditorWordExport');
55
- if (this.injectedModules.indexOf(mod) === -1) {
56
- this.injectedModules.push(mod);
57
- }
58
- }
59
- catch (_c) { }
60
- try {
61
- let mod = this.injector.get('DocumentEditorTextExport');
62
- if (this.injectedModules.indexOf(mod) === -1) {
63
- this.injectedModules.push(mod);
64
- }
65
- }
66
- catch (_d) { }
67
- try {
68
- let mod = this.injector.get('DocumentEditorSelection');
69
- if (this.injectedModules.indexOf(mod) === -1) {
70
- this.injectedModules.push(mod);
71
- }
72
- }
73
- catch (_e) { }
74
- try {
75
- let mod = this.injector.get('DocumentEditorSearch');
76
- if (this.injectedModules.indexOf(mod) === -1) {
77
- this.injectedModules.push(mod);
78
- }
79
- }
80
- catch (_f) { }
81
- try {
82
- let mod = this.injector.get('DocumentEditorEditor');
83
- if (this.injectedModules.indexOf(mod) === -1) {
84
- this.injectedModules.push(mod);
85
- }
86
- }
87
- catch (_g) { }
88
- try {
89
- let mod = this.injector.get('DocumentEditorEditorHistory');
90
- if (this.injectedModules.indexOf(mod) === -1) {
91
- this.injectedModules.push(mod);
92
- }
93
- }
94
- catch (_h) { }
95
- try {
96
- let mod = this.injector.get('DocumentEditorOptionsPane');
97
- if (this.injectedModules.indexOf(mod) === -1) {
98
- this.injectedModules.push(mod);
99
- }
100
- }
101
- catch (_j) { }
102
- try {
103
- let mod = this.injector.get('DocumentEditorContextMenu');
104
- if (this.injectedModules.indexOf(mod) === -1) {
105
- this.injectedModules.push(mod);
106
- }
107
- }
108
- catch (_k) { }
109
- try {
110
- let mod = this.injector.get('DocumentEditorImageResizer');
111
- if (this.injectedModules.indexOf(mod) === -1) {
112
- this.injectedModules.push(mod);
113
- }
114
- }
115
- catch (_l) { }
116
- try {
117
- let mod = this.injector.get('DocumentEditorHyperlinkDialog');
118
- if (this.injectedModules.indexOf(mod) === -1) {
119
- this.injectedModules.push(mod);
120
- }
121
- }
122
- catch (_m) { }
123
- try {
124
- let mod = this.injector.get('DocumentEditorTableDialog');
125
- if (this.injectedModules.indexOf(mod) === -1) {
126
- this.injectedModules.push(mod);
127
- }
128
- }
129
- catch (_o) { }
130
- try {
131
- let mod = this.injector.get('DocumentEditorBookmarkDialog');
132
- if (this.injectedModules.indexOf(mod) === -1) {
133
- this.injectedModules.push(mod);
134
- }
135
- }
136
- catch (_p) { }
137
- try {
138
- let mod = this.injector.get('DocumentEditorTableOfContentsDialog');
139
- if (this.injectedModules.indexOf(mod) === -1) {
140
- this.injectedModules.push(mod);
141
- }
142
- }
143
- catch (_q) { }
144
- try {
145
- let mod = this.injector.get('DocumentEditorPageSetupDialog');
146
- if (this.injectedModules.indexOf(mod) === -1) {
147
- this.injectedModules.push(mod);
148
- }
149
- }
150
- catch (_r) { }
151
- try {
152
- let mod = this.injector.get('DocumentEditorParagraphDialog');
153
- if (this.injectedModules.indexOf(mod) === -1) {
154
- this.injectedModules.push(mod);
155
- }
156
- }
157
- catch (_s) { }
158
- try {
159
- let mod = this.injector.get('DocumentEditorListDialog');
160
- if (this.injectedModules.indexOf(mod) === -1) {
161
- this.injectedModules.push(mod);
162
- }
163
- }
164
- catch (_t) { }
165
- try {
166
- let mod = this.injector.get('DocumentEditorStyleDialog');
167
- if (this.injectedModules.indexOf(mod) === -1) {
168
- this.injectedModules.push(mod);
169
- }
170
- }
171
- catch (_u) { }
172
- try {
173
- let mod = this.injector.get('DocumentEditorStylesDialog');
174
- if (this.injectedModules.indexOf(mod) === -1) {
175
- this.injectedModules.push(mod);
176
- }
177
- }
178
- catch (_v) { }
179
- try {
180
- let mod = this.injector.get('DocumentEditorBulletsAndNumberingDialog');
181
- if (this.injectedModules.indexOf(mod) === -1) {
182
- this.injectedModules.push(mod);
183
- }
184
- }
185
- catch (_w) { }
186
- try {
187
- let mod = this.injector.get('DocumentEditorFontDialog');
188
- if (this.injectedModules.indexOf(mod) === -1) {
189
- this.injectedModules.push(mod);
190
- }
191
- }
192
- catch (_x) { }
193
- try {
194
- let mod = this.injector.get('DocumentEditorTablePropertiesDialog');
195
- if (this.injectedModules.indexOf(mod) === -1) {
196
- this.injectedModules.push(mod);
197
- }
198
- }
199
- catch (_y) { }
200
- try {
201
- let mod = this.injector.get('DocumentEditorBordersAndShadingDialog');
202
- if (this.injectedModules.indexOf(mod) === -1) {
203
- this.injectedModules.push(mod);
204
- }
205
- }
206
- catch (_z) { }
207
- try {
208
- let mod = this.injector.get('DocumentEditorTableOptionsDialog');
209
- if (this.injectedModules.indexOf(mod) === -1) {
210
- this.injectedModules.push(mod);
211
- }
212
- }
213
- catch (_0) { }
214
- try {
215
- let mod = this.injector.get('DocumentEditorCellOptionsDialog');
216
- if (this.injectedModules.indexOf(mod) === -1) {
217
- this.injectedModules.push(mod);
218
- }
219
- }
220
- catch (_1) { }
221
- try {
222
- let mod = this.injector.get('DocumentEditorSpellChecker');
223
- if (this.injectedModules.indexOf(mod) === -1) {
224
- this.injectedModules.push(mod);
225
- }
226
- }
227
- catch (_2) { }
228
- try {
229
- let mod = this.injector.get('DocumentEditorSpellCheckDialog');
230
- if (this.injectedModules.indexOf(mod) === -1) {
231
- this.injectedModules.push(mod);
232
- }
233
- }
234
- catch (_3) { }
235
- try {
236
- let mod = this.injector.get('DocumentEditorCollaborativeEditing');
237
- if (this.injectedModules.indexOf(mod) === -1) {
238
- this.injectedModules.push(mod);
239
- }
240
- }
241
- catch (_4) { }
242
- try {
243
- let mod = this.injector.get('DocumentEditorColumnsDialog');
244
- if (this.injectedModules.indexOf(mod) === -1) {
245
- this.injectedModules.push(mod);
246
- }
247
- }
248
- catch (_5) { }
249
- this.registerEvents(outputs);
250
- this.addTwoWay.call(this, twoWays);
251
- setValue('currentInstance', this, this.viewContainerRef);
252
- this.context = new ComponentBase();
253
- }
254
- /**
255
- * @return {?}
256
- */
257
- ngOnInit() {
258
- this.context.ngOnInit(this);
259
- }
260
- /**
261
- * @return {?}
262
- */
263
- ngAfterViewInit() {
264
- this.context.ngAfterViewInit(this);
265
- }
266
- /**
267
- * @return {?}
268
- */
269
- ngOnDestroy() {
270
- this.context.ngOnDestroy(this);
271
- }
272
- /**
273
- * @return {?}
274
- */
275
- ngAfterContentChecked() {
276
- this.context.ngAfterContentChecked(this);
277
- }
278
- };
279
- DocumentEditorComponent.decorators = [
280
- { type: Component, args: [{
281
- selector: 'ejs-documenteditor',
282
- inputs: inputs,
283
- outputs: outputs,
284
- template: '',
285
- changeDetection: ChangeDetectionStrategy.OnPush,
286
- queries: {}
287
- },] },
288
- ];
289
- /**
290
- * @nocollapse
291
- */
292
- DocumentEditorComponent.ctorParameters = () => [
293
- { type: ElementRef, },
294
- { type: Renderer2, },
295
- { type: ViewContainerRef, },
296
- { type: Injector, },
297
- ];
298
- DocumentEditorComponent = __decorate([
299
- ComponentMixins([ComponentBase]),
300
- __metadata("design:paramtypes", [ElementRef,
301
- Renderer2,
302
- ViewContainerRef,
303
- Injector])
304
- ], DocumentEditorComponent);
305
-
306
- /**
307
- * NgModule definition for the DocumentEditor component.
308
- */
309
- class DocumentEditorModule {
310
- }
311
- DocumentEditorModule.decorators = [
312
- { type: NgModule, args: [{
313
- imports: [CommonModule],
314
- declarations: [
315
- DocumentEditorComponent
316
- ],
317
- exports: [
318
- DocumentEditorComponent
319
- ]
320
- },] },
321
- ];
322
- /**
323
- * @nocollapse
324
- */
325
- DocumentEditorModule.ctorParameters = () => [];
326
-
327
- const PrintService = { provide: 'DocumentEditorPrint', useValue: Print };
328
- const SfdtExportService = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport };
329
- const WordExportService = { provide: 'DocumentEditorWordExport', useValue: WordExport };
330
- const TextExportService = { provide: 'DocumentEditorTextExport', useValue: TextExport };
331
- const SelectionService = { provide: 'DocumentEditorSelection', useValue: Selection };
332
- const SearchService = { provide: 'DocumentEditorSearch', useValue: Search };
333
- const EditorService = { provide: 'DocumentEditorEditor', useValue: Editor };
334
- const EditorHistoryService = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory };
335
- const OptionsPaneService = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane };
336
- const ContextMenuService = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu };
337
- const ImageResizerService = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer };
338
- const HyperlinkDialogService = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog };
339
- const TableDialogService = { provide: 'DocumentEditorTableDialog', useValue: TableDialog };
340
- const BookmarkDialogService = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog };
341
- const TableOfContentsDialogService = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog };
342
- const PageSetupDialogService = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog };
343
- const ParagraphDialogService = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog };
344
- const ListDialogService = { provide: 'DocumentEditorListDialog', useValue: ListDialog };
345
- const StyleDialogService = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog };
346
- const StylesDialogService = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog };
347
- const BulletsAndNumberingDialogService = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog };
348
- const FontDialogService = { provide: 'DocumentEditorFontDialog', useValue: FontDialog };
349
- const TablePropertiesDialogService = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog };
350
- const BordersAndShadingDialogService = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog };
351
- const TableOptionsDialogService = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog };
352
- const CellOptionsDialogService = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog };
353
- const SpellCheckerService = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker };
354
- const SpellCheckDialogService = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog };
355
- const CollaborativeEditingService = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing };
356
- const ColumnsDialogService = { provide: 'DocumentEditorColumnsDialog', useValue: ColumnsDialog };
357
- /**
358
- * NgModule definition for the DocumentEditor component with providers.
359
- */
360
- class DocumentEditorAllModule {
361
- }
362
- DocumentEditorAllModule.decorators = [
363
- { type: NgModule, args: [{
364
- imports: [CommonModule, DocumentEditorModule],
365
- exports: [
366
- DocumentEditorModule
367
- ],
368
- providers: [
369
- PrintService,
370
- SfdtExportService,
371
- WordExportService,
372
- TextExportService,
373
- SelectionService,
374
- SearchService,
375
- EditorService,
376
- EditorHistoryService,
377
- OptionsPaneService,
378
- ContextMenuService,
379
- ImageResizerService,
380
- HyperlinkDialogService,
381
- TableDialogService,
382
- BookmarkDialogService,
383
- TableOfContentsDialogService,
384
- PageSetupDialogService,
385
- ParagraphDialogService,
386
- ListDialogService,
387
- StyleDialogService,
388
- StylesDialogService,
389
- BulletsAndNumberingDialogService,
390
- FontDialogService,
391
- TablePropertiesDialogService,
392
- BordersAndShadingDialogService,
393
- TableOptionsDialogService,
394
- CellOptionsDialogService,
395
- SpellCheckerService,
396
- SpellCheckDialogService,
397
- CollaborativeEditingService,
398
- ColumnsDialogService
399
- ]
400
- },] },
401
- ];
402
- /**
403
- * @nocollapse
404
- */
405
- DocumentEditorAllModule.ctorParameters = () => [];
406
-
407
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
408
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
409
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
410
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
411
- return c > 3 && r && Object.defineProperty(target, key, r), r;
412
- };
413
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
414
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
415
- };
416
- const inputs$1 = ['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'];
417
- const outputs$1 = ['beforeAcceptRejectChanges', 'beforeCommentAction', 'beforePaneSwitch', 'commentDelete', 'contentChange', 'contentControl', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'destroyed', 'documentChange', 'selectionChange', 'serviceFailure', 'toolbarClick', 'trackChange', 'beforeXmlHttpRequestSend'];
418
- const twoWays$1 = [];
419
- /**
420
- * `ejs-documenteditor-container` represents the Angular Document Editor Container.
421
- * ```html
422
- * <ejs-documenteditor-container></ejs-documenteditor-container>
423
- * ```
424
- */
425
- let DocumentEditorContainerComponent = class DocumentEditorContainerComponent extends DocumentEditorContainer {
426
- /**
427
- * @param {?} ngEle
428
- * @param {?} srenderer
429
- * @param {?} viewContainerRef
430
- * @param {?} injector
431
- */
432
- constructor(ngEle, srenderer, viewContainerRef, injector) {
433
- super();
434
- this.ngEle = ngEle;
435
- this.srenderer = srenderer;
436
- this.viewContainerRef = viewContainerRef;
437
- this.injector = injector;
438
- this.element = this.ngEle.nativeElement;
439
- this.injectedModules = this.injectedModules || [];
440
- try {
441
- let mod = this.injector.get('DocumentEditorToolbar');
442
- if (this.injectedModules.indexOf(mod) === -1) {
443
- this.injectedModules.push(mod);
444
- }
445
- }
446
- catch (_a) { }
447
- this.registerEvents(outputs$1);
448
- this.addTwoWay.call(this, twoWays$1);
449
- setValue('currentInstance', this, this.viewContainerRef);
450
- this.context = new ComponentBase();
451
- }
452
- /**
453
- * @return {?}
454
- */
455
- ngOnInit() {
456
- this.context.ngOnInit(this);
457
- }
458
- /**
459
- * @return {?}
460
- */
461
- ngAfterViewInit() {
462
- this.context.ngAfterViewInit(this);
463
- }
464
- /**
465
- * @return {?}
466
- */
467
- ngOnDestroy() {
468
- this.context.ngOnDestroy(this);
469
- }
470
- /**
471
- * @return {?}
472
- */
473
- ngAfterContentChecked() {
474
- this.context.ngAfterContentChecked(this);
475
- }
476
- };
477
- DocumentEditorContainerComponent.decorators = [
478
- { type: Component, args: [{
479
- selector: 'ejs-documenteditorcontainer',
480
- inputs: inputs$1,
481
- outputs: outputs$1,
482
- template: '',
483
- changeDetection: ChangeDetectionStrategy.OnPush,
484
- queries: {}
485
- },] },
486
- ];
487
- /**
488
- * @nocollapse
489
- */
490
- DocumentEditorContainerComponent.ctorParameters = () => [
491
- { type: ElementRef, },
492
- { type: Renderer2, },
493
- { type: ViewContainerRef, },
494
- { type: Injector, },
495
- ];
496
- DocumentEditorContainerComponent = __decorate$1([
497
- ComponentMixins([ComponentBase]),
498
- __metadata$1("design:paramtypes", [ElementRef,
499
- Renderer2,
500
- ViewContainerRef,
501
- Injector])
502
- ], DocumentEditorContainerComponent);
503
-
504
- /**
505
- * NgModule definition for the DocumentEditorContainer component.
506
- */
507
- class DocumentEditorContainerModule {
508
- }
509
- DocumentEditorContainerModule.decorators = [
510
- { type: NgModule, args: [{
511
- imports: [CommonModule],
512
- declarations: [
513
- DocumentEditorContainerComponent
514
- ],
515
- exports: [
516
- DocumentEditorContainerComponent
517
- ]
518
- },] },
519
- ];
520
- /**
521
- * @nocollapse
522
- */
523
- DocumentEditorContainerModule.ctorParameters = () => [];
524
-
525
- const ToolbarService = { provide: 'DocumentEditorToolbar', useValue: Toolbar };
526
- /**
527
- * NgModule definition for the DocumentEditorContainer component with providers.
528
- */
529
- class DocumentEditorContainerAllModule {
530
- }
531
- DocumentEditorContainerAllModule.decorators = [
532
- { type: NgModule, args: [{
533
- imports: [CommonModule, DocumentEditorContainerModule],
534
- exports: [
535
- DocumentEditorContainerModule
536
- ],
537
- providers: [
538
- ToolbarService
539
- ]
540
- },] },
541
- ];
542
- /**
543
- * @nocollapse
544
- */
545
- DocumentEditorContainerAllModule.ctorParameters = () => [];
546
-
547
- /**
548
- * Generated bundle index. Do not edit.
549
- */
550
-
551
- export { DocumentEditorComponent, DocumentEditorModule, DocumentEditorAllModule, PrintService, SfdtExportService, WordExportService, TextExportService, SelectionService, SearchService, EditorService, EditorHistoryService, OptionsPaneService, ContextMenuService, ImageResizerService, HyperlinkDialogService, TableDialogService, BookmarkDialogService, TableOfContentsDialogService, PageSetupDialogService, ParagraphDialogService, ListDialogService, StyleDialogService, StylesDialogService, BulletsAndNumberingDialogService, FontDialogService, TablePropertiesDialogService, BordersAndShadingDialogService, TableOptionsDialogService, CellOptionsDialogService, SpellCheckerService, SpellCheckDialogService, CollaborativeEditingService, ColumnsDialogService, DocumentEditorContainerComponent, DocumentEditorContainerModule, DocumentEditorContainerAllModule, ToolbarService, inputs$1 as ɵc, outputs$1 as ɵd, inputs as ɵa, outputs as ɵb };
552
- export { CharacterRangeType, FontScriptType, FontHintType, LocaleId, SectionBreakType, Dictionary, WUniqueFormat, WUniqueFormats, XmlHttpRequestHandler, internalZoomFactorChange, contentChangeEvent, documentChangeEvent, selectionChangeEvent, zoomFactorChangeEvent, beforeFieldFillEvent, afterFieldFillEvent, afterFormFieldFillEvent, beforeFormFieldFillEvent, serviceFailureEvent, viewChangeEvent, customContextMenuSelectEvent, customContextMenuBeforeOpenEvent, contentControlEvent, commentBeginEvent, commentEndEvent, beforeCommentActionEvent, commentDeleteEvent, revisionActionEvent, beforePaneSwitchEvent, requestNavigateEvent, actionCompleteEvent, trackChangeEvent, searchResultsChangeEvent, keyDownEvent, toolbarClickEvent, beforeFileOpenEvent, internalviewChangeEvent, beforeXmlHttpRequestSend, protectionTypeChangeEvent, internalDocumentEditorSettingsChange, internalStyleCollectionChange, defaultFont, internalAutoResize, beforeAutoResize, sectionsProperty, fontSubstitutionTableProperty, characterFormatProperty, paragraphFormatProperty, listsProperty, abstractListsProperty, backgroundProperty, stylesProperty, commentsProperty, revisionsProperty, customXmlProperty, defaultTabWidthProperty, formattingProperty, trackChangesProperty, protectionTypeProperty, enforcementProperty, hashValueProperty, saltValueProperty, cryptProviderTypeProperty, cryptAlgorithmClassProperty, cryptAlgorithmTypeProperty, cryptAlgorithmSidProperty, cryptSpinCountProperty, doNotUseHTMLParagraphAutoSpacingProperty, alignTablesRowByRowProperty, formFieldShadingProperty, lastParagraphMarkCopiedProperty, footnotesProperty, endnotesProperty, compatibilityModeProperty, themeFontLanguagesProperty, themesProperty, nameProperty, basedOnProperty, nextProperty, linkProperty, localeIdProperty, localeIdFarEastProperty, localeIdBidiProperty, boldProperty, italicProperty, underlineProperty, baselineAlignmentProperty, strikethroughProperty, highlightColorProperty, fontSizeProperty, fontColorProperty, fontFamilyProperty, styleNameProperty, bidiProperty, bdoProperty, breakClearTypeProperty, fontSizeBidiProperty, fontFamilyBidiProperty, boldBidiProperty, italicBidiProperty, allCapsProperty, complexScriptProperty, fontFamilyAsciiProperty, fontFamilyFarEastProperty, fontFamilyNonFarEastProperty, revisionIdsProperty, listIdProperty, characterSpacingProperty, scalingProperty, listLevelNumberProperty, leftIndentProperty, rightIndentProperty, firstLineIndentProperty, textAlignmentProperty, afterSpacingProperty, beforeSpacingProperty, spaceAfterAutoProperty, spaceBeforeAutoProperty, lineSpacingProperty, lineSpacingTypeProperty, listFormatProperty, keepWithNextProperty, widowControlProperty, keepLinesTogetherProperty, outlineLevelProperty, contextualSpacingProperty, bordersProperty, tabsProperty, headerDistanceProperty, footerDistanceProperty, differentFirstPageProperty, differentOddAndEvenPagesProperty, pageWidthProperty, pageHeightProperty, leftMarginProperty, rightMarginProperty, topMarginProperty, bottomMarginProperty, restartPageNumberingProperty, pageStartingNumberProperty, endnoteNumberFormatProperty, footNoteNumberFormatProperty, restartIndexForFootnotesProperty, restartIndexForEndnotesProperty, initialFootNoteNumberProperty, initialEndNoteNumberProperty, pageNumberStyleProperty, columnsProperty, numberOfColumnsProperty, equalWidthProperty, lineBetweenColumnsProperty, breakCodeProperty, cellWidthProperty, columnSpanProperty, rowSpanProperty, verticalAlignmentProperty, allowBreakAcrossPagesProperty, isHeaderProperty, heightTypeProperty, beforeWidthProperty, afterWidthProperty, gridBeforeProperty, gridBeforeWidthProperty, gridBeforeWidthTypeProperty, gridAfterProperty, gridAfterWidthProperty, gridAfterWidthTypeProperty, allowAutoFitProperty, cellSpacingProperty, shadingProperty, tableAlignmentProperty, preferredWidthProperty, preferredWidthTypeProperty, horizontalPositionAbsProperty, textureProperty, backgroundColorProperty, foregroundColorProperty, shadowProperty, hasNoneStyleProperty, verticalProperty, horizontalProperty, diagonalUpProperty, diagonalDownProperty, lineStyleProperty, lineWidthProperty, layoutProperty, dataFormatProperty, yValueProperty, chartDataProperty, categoryXNameProperty, lineProperty, foreColorProperty, patternProperty, layoutXProperty, layoutYProperty, directionProperty, endStyleProperty, numberValueProperty, markerStyleProperty, markerColorProperty, markerSizeProperty, forwardProperty, backwardProperty, interceptProperty, isDisplayRSquaredProperty, isDisplayEquationProperty, seriesNameProperty, dataLabelProperty, errorBarProperty, seriesFormatProperty, trendLinesProperty, dataPointsProperty, firstSliceAngleProperty, holeSizeProperty, isLegendKeyProperty, isBubbleSizeProperty, isCategoryNameProperty, isSeriesNameProperty, isValueProperty, isPercentageProperty, isLeaderLinesProperty, showSeriesKeysProperty, hasHorizontalBorderProperty, hasVerticalBorderProperty, hasBordersProperty, categoryTypeProperty, chartCategoryProperty, chartSeriesProperty, chartAreaProperty, chartTitleAreaProperty, plotAreaProperty, chartLegendProperty, chartPrimaryCategoryAxisProperty, chartPrimaryValueAxisProperty, chartTitleProperty, chartTypeProperty, gapWidthProperty, overlapProperty, chartDataTableProperty, textProperty, shapeIdProperty, alternativeTextProperty, visibleProperty, belowTextProperty, widthProperty, heightProperty, widthScaleProperty, heightScaleProperty, lineFormatProperty, fillFormatProperty, textWrappingStyleProperty, textWrappingTypeProperty, verticalRelativePercentProperty, horizontalRelativePercentProperty, heightRelativePercentProperty, widthRelativePercentProperty, zOrderPositionProperty, layoutInCellProperty, lockAnchorProperty, autoShapeTypeProperty, textFrameProperty, colorProperty, fillProperty, textVerticalAlignmentProperty, imageStringProperty, metaFileImageStringProperty, lengthProperty, isInlineImageProperty, isMetaFileProperty, topProperty, bottomProperty, rightProperty, leftProperty, getImageHeightProperty, getImageWidthProperty, hasFieldEndProperty, formFieldDataProperty, fieldTypeProperty, enabledProperty, helpTextProperty, statusTextProperty, textInputProperty, checkBoxProperty, dropDownListProperty, maxLengthProperty, defaultValueProperty, formatProperty, sizeTypeProperty, sizeProperty, checkedProperty, dropDownItemsProperty, selectedIndexProperty, commentIdProperty, commentCharacterTypeProperty, authorProperty, initialProperty, dateProperty, doneProperty, replyCommentsProperty, revisionTypeProperty, revisionIdProperty, itemIDProperty, xmlProperty, footnoteTypeProperty, symbolCodeProperty, symbolFontNameProperty, customMarkerProperty, inlinesProperty, contentControlPropertiesProperty, lockContentControlProperty, lockContentsProperty, tagProperty, titleProperty, hasPlaceHolderTextProperty, multiLineProperty, isTemporaryProperty, dateCalendarTypeProperty, dateStorageFormatProperty, dateDisplayLocaleProperty, dateDisplayFormatProperty, isCheckedProperty, uncheckedStateProperty, checkedStateProperty, contentControlListItemsProperty, xmlMappingProperty, fontProperty, valueProperty, displayTextProperty, isMappedProperty, isWordMlProperty, prefixMappingProperty, xPathProperty, storeItemIdProperty, customXmlPartProperty, idProperty, cellFormatProperty, rowFormatProperty, cellsProperty, rowsProperty, descriptionProperty, wrapTextAroundProperty, positioningProperty, tableFormatProperty, allowOverlapProperty, distanceTopProperty, distanceRightProperty, distanceLeftProperty, distanceBottomProperty, verticalOriginProperty, verticalPositionProperty, horizontalOriginProperty, horizontalAlignmentProperty, horizontalPositionProperty, blocksProperty, headerProperty, footerProperty, evenHeaderProperty, evenFooterProperty, firstPageHeaderProperty, firstPageFooterProperty, headersFootersProperty, sectionFormatProperty, listLevelPatternProperty, followCharacterProperty, startAtProperty, restartLevelProperty, levelNumberProperty, numberFormatProperty, abstractListIdProperty, levelsProperty, overrideListLevelProperty, levelOverridesProperty, separatorProperty, continuationSeparatorProperty, continuationNoticeProperty, bookmarkTypeProperty, propertiesProperty, tabJustificationProperty, positionProperty, deletePositionProperty, leaderProperty, tabLeaderProperty, editRangeIdProperty, columnFirstProperty, columnLastProperty, userProperty, groupProperty, editableRangeStartProperty, spaceProperty, fontSchemeProperty, fontSchemeNameProperty, majorFontSchemeProperty, minorFontSchemeProperty, fontSchemeListProperty, fontTypefaceProperty, typefaceProperty, panoseProperty, typeProperty, majorUnitProperty, maximumValueProperty, minimumValueProperty, hasMajorGridLinesProperty, hasMinorGridLinesProperty, majorTickMarkProperty, minorTickMarkProperty, tickLabelPositionProperty, rgbProperty, appearanceProperty, lineFormatTypeProperty, allowSpaceOfSameStyleInTableProperty, weightProperty, inlineFormatProperty, fontNameProperty, isCompressedProperty, columnIndexProperty, imagesProperty, isAfterParagraphMarkProperty, isAfterCellMarkProperty, isAfterRowMarkProperty, gridProperty, columnCountProperty, isAfterTableMarkProperty, Print, ContextMenu, CommentReviewPane, CommentPane, CommentView, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, StylesDialog, SpellCheckDialog, CheckBoxFormFieldDialog, TextFormFieldDialog, DropDownFormFieldDialog, FormFieldPopUp, ColumnsDialog, Editor, ImageResizer, ImageResizingPoints, SelectedImageInfo, TableResizer, HelperMethods, Point, Base64, WrapPosition, CollaborativeEditing, EditorHistory, BaseHistoryInfo, HistoryInfo, ModifiedLevel, ModifiedParagraphFormat, RowHistoryFormat, TableHistoryInfo, TableFormatHistoryInfo, RowFormatHistoryInfo, CellFormatHistoryInfo, CellHistoryFormat, WSectionFormat, WColumnFormat, WStyle, WParagraphStyle, WCharacterStyle, WStyles, WCharacterFormat, WListFormat, WTabStop, WParagraphFormat, WTableFormat, WRowFormat, WCellFormat, WBorder, WBorders, WShading, WList, WAbstractList, WListLevel, WLevelOverride, AddUserDialog, EnforceProtectionDialog, UnProtectDocumentDialog, RestrictEditing, Search, OptionsPane, TextSearch, SearchWidgetInfo, TextSearchResult, TextSearchResults, Selection, SelectionCharacterFormat, SelectionBorder, SelectionBorders, SelectionParagraphFormat, SelectionHeaderFooter, SelectionSectionFormat, SelectionTableFormat, SelectionCellFormat, SelectionRowFormat, SelectionImageFormat, SelectionColumnFormat, TextPosition, SelectionWidgetInfo, Hyperlink, ImageInfo, SpellChecker, Optimized, Regular, Revision, RevisionCollection, TrackChangesPane, ChangesSingleView, DocumentHelper, LayoutViewer, PageLayoutViewer, WebLayoutViewer, ColumnLayout, Rect, Padding, Margin, Widget, BlockContainer, BodyWidget, HeaderFooterWidget, BlockWidget, FootNoteWidget, ParagraphWidget, TablePosition, TableWidget, TableRowWidget, TableCellWidget, LineWidget, ElementBox, FieldElementBox, FormField, TextFormField, CheckBoxFormField, DropDownFormField, TextElementBox, Footnote, FootnoteElementBox, ErrorTextElementBox, FieldTextElementBox, TabElementBox, BookmarkElementBox, ContentControl, ContentControlProperties, ContentControlListItems, CheckBoxState, XmlMapping, CustomXmlPart, ShapeCommon, ShapeBase, ShapeElementBox, TextFrame, LineFormat, FillFormat, ImageElementBox, ListTextElementBox, EditRangeEndElementBox, EditRangeStartElementBox, ChartElementBox, ChartArea, ChartCategory, ChartData, ChartLegend, ChartSeries, ChartErrorBar, ChartSeriesFormat, ChartDataLabels, ChartTrendLines, ChartTitleArea, ChartDataFormat, ChartFill, ChartLayout, ChartCategoryAxis, ChartDataTable, CommentCharacterElementBox, CommentElementBox, Page, WTableHolder, WColumn, ColumnSizeInfo, BreakElementBox, Layout, Renderer, SfdtReader, TextHelper, Zoom, WordExport, TextExport, SfdtExport, HtmlExport, FontScheme, FontSchemeStruct, Themes, MajorMinorFontScheme, DocumentEditorSettings, DocumentSettings, AutoResizeSettings, DocumentEditor, ServerActionSettings, FormFieldSettings, CollaborativeEditingSettings, ContainerServerActionSettings, Toolbar, DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';
553
- //# sourceMappingURL=ej2-angular-documenteditor.js.map