@syncfusion/ej2-angular-documenteditor 20.2.38-ngcc → 20.2.39

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 (203) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +113 -0
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +262 -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 +506 -0
  11. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  13. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  14. package/package.json +27 -13
  15. package/schematics/utils/lib-details.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/bootstrap-dark.css +9 -1
  23. package/styles/bootstrap.css +9 -1
  24. package/styles/bootstrap4.css +9 -1
  25. package/styles/bootstrap5-dark.css +10 -3
  26. package/styles/bootstrap5.css +10 -3
  27. package/styles/document-editor/_all.scss +3 -0
  28. package/styles/document-editor/_bootstrap-dark-definition.scss +544 -0
  29. package/styles/document-editor/_bootstrap-definition.scss +543 -0
  30. package/styles/document-editor/_bootstrap4-definition.scss +556 -0
  31. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  32. package/styles/document-editor/_bootstrap5-definition.scss +557 -0
  33. package/styles/document-editor/_fabric-dark-definition.scss +546 -0
  34. package/styles/document-editor/_fabric-definition.scss +545 -0
  35. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  36. package/styles/document-editor/_fluent-definition.scss +566 -0
  37. package/styles/document-editor/_fusionnew-definition.scss +557 -0
  38. package/styles/document-editor/_highcontrast-definition.scss +545 -0
  39. package/styles/document-editor/_highcontrast-light-definition.scss +2985 -0
  40. package/styles/document-editor/_layout.scss +216 -0
  41. package/styles/document-editor/_material-dark-definition.scss +562 -0
  42. package/styles/document-editor/_material-definition.scss +562 -0
  43. package/styles/document-editor/_material3-definition.scss +557 -0
  44. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  45. package/styles/document-editor/_tailwind-definition.scss +554 -0
  46. package/styles/document-editor/_theme.scss +3391 -0
  47. package/styles/document-editor/bootstrap-dark.css +5 -0
  48. package/styles/document-editor/bootstrap-dark.scss +4 -1
  49. package/styles/document-editor/bootstrap.css +5 -0
  50. package/styles/document-editor/bootstrap.scss +4 -1
  51. package/styles/document-editor/bootstrap4.css +5 -0
  52. package/styles/document-editor/bootstrap4.scss +4 -1
  53. package/styles/document-editor/bootstrap5-dark.css +5 -0
  54. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  55. package/styles/document-editor/bootstrap5.css +5 -0
  56. package/styles/document-editor/bootstrap5.scss +4 -1
  57. package/styles/document-editor/fabric-dark.css +5 -0
  58. package/styles/document-editor/fabric-dark.scss +4 -1
  59. package/styles/document-editor/fabric.css +5 -0
  60. package/styles/document-editor/fabric.scss +4 -1
  61. package/styles/document-editor/fluent-dark.css +5 -0
  62. package/styles/document-editor/fluent-dark.scss +4 -1
  63. package/styles/document-editor/fluent.css +5 -0
  64. package/styles/document-editor/fluent.scss +4 -1
  65. package/styles/document-editor/highcontrast-light.css +18 -14
  66. package/styles/document-editor/highcontrast-light.scss +4 -1
  67. package/styles/document-editor/highcontrast.css +5 -0
  68. package/styles/document-editor/highcontrast.scss +4 -1
  69. package/styles/document-editor/icons/_bootstrap-dark.scss +607 -0
  70. package/styles/document-editor/icons/_bootstrap.scss +607 -0
  71. package/styles/document-editor/icons/_bootstrap4.scss +592 -0
  72. package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
  73. package/styles/document-editor/icons/_bootstrap5.scss +642 -0
  74. package/styles/document-editor/icons/_fabric-dark.scss +607 -0
  75. package/styles/document-editor/icons/_fabric.scss +607 -0
  76. package/styles/document-editor/icons/_fluent-dark.scss +1 -0
  77. package/styles/document-editor/icons/_fluent.scss +640 -0
  78. package/styles/document-editor/icons/_fusionnew.scss +642 -0
  79. package/styles/document-editor/icons/_highcontrast-light.scss +612 -0
  80. package/styles/document-editor/icons/_highcontrast.scss +607 -0
  81. package/styles/document-editor/icons/_material-dark.scss +600 -0
  82. package/styles/document-editor/icons/_material.scss +600 -0
  83. package/styles/document-editor/icons/_material3.scss +642 -0
  84. package/styles/document-editor/icons/_tailwind-dark.scss +642 -0
  85. package/styles/document-editor/icons/_tailwind.scss +642 -0
  86. package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +171 -0
  87. package/styles/document-editor/material-dark.css +5 -0
  88. package/styles/document-editor/material-dark.scss +4 -1
  89. package/styles/document-editor/material.css +5 -0
  90. package/styles/document-editor/material.scss +4 -1
  91. package/styles/document-editor/tailwind-dark.css +5 -0
  92. package/styles/document-editor/tailwind-dark.scss +4 -1
  93. package/styles/document-editor/tailwind.css +5 -0
  94. package/styles/document-editor/tailwind.scss +4 -1
  95. package/styles/document-editor-container/_all.scss +2 -0
  96. package/styles/document-editor-container/_bootstrap-dark-definition.scss +127 -0
  97. package/styles/document-editor-container/_bootstrap-definition.scss +127 -0
  98. package/styles/document-editor-container/_bootstrap4-definition.scss +143 -0
  99. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  100. package/styles/document-editor-container/_bootstrap5-definition.scss +153 -0
  101. package/styles/document-editor-container/_definition.scss +11 -0
  102. package/styles/document-editor-container/_fabric-dark-definition.scss +132 -0
  103. package/styles/document-editor-container/_fabric-definition.scss +129 -0
  104. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  105. package/styles/document-editor-container/_fluent-definition.scss +154 -0
  106. package/styles/document-editor-container/_fusionnew-definition.scss +153 -0
  107. package/styles/document-editor-container/_highcontrast-definition.scss +130 -0
  108. package/styles/document-editor-container/_highcontrast-light-definition.scss +133 -0
  109. package/styles/document-editor-container/_layout.scss +87 -0
  110. package/styles/document-editor-container/_material-dark-definition.scss +131 -0
  111. package/styles/document-editor-container/_material-definition.scss +130 -0
  112. package/styles/document-editor-container/_material3-definition.scss +153 -0
  113. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  114. package/styles/document-editor-container/_tailwind-definition.scss +147 -0
  115. package/styles/document-editor-container/_theme.scss +2001 -0
  116. package/styles/document-editor-container/bootstrap-dark.css +4 -1
  117. package/styles/document-editor-container/bootstrap-dark.scss +5 -1
  118. package/styles/document-editor-container/bootstrap.css +4 -1
  119. package/styles/document-editor-container/bootstrap.scss +5 -1
  120. package/styles/document-editor-container/bootstrap4.css +4 -1
  121. package/styles/document-editor-container/bootstrap4.scss +5 -1
  122. package/styles/document-editor-container/bootstrap5-dark.css +5 -3
  123. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  124. package/styles/document-editor-container/bootstrap5.css +5 -3
  125. package/styles/document-editor-container/bootstrap5.scss +5 -1
  126. package/styles/document-editor-container/fabric-dark.css +4 -1
  127. package/styles/document-editor-container/fabric-dark.scss +5 -1
  128. package/styles/document-editor-container/fabric.css +4 -1
  129. package/styles/document-editor-container/fabric.scss +5 -1
  130. package/styles/document-editor-container/fluent-dark.css +5 -3
  131. package/styles/document-editor-container/fluent-dark.scss +5 -1
  132. package/styles/document-editor-container/fluent.css +5 -3
  133. package/styles/document-editor-container/fluent.scss +5 -1
  134. package/styles/document-editor-container/highcontrast-light.css +18 -15
  135. package/styles/document-editor-container/highcontrast-light.scss +5 -1
  136. package/styles/document-editor-container/highcontrast.css +4 -1
  137. package/styles/document-editor-container/highcontrast.scss +5 -1
  138. package/styles/document-editor-container/icons/_bootstrap-dark.scss +397 -0
  139. package/styles/document-editor-container/icons/_bootstrap.scss +397 -0
  140. package/styles/document-editor-container/icons/_bootstrap4.scss +397 -0
  141. package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
  142. package/styles/document-editor-container/icons/_bootstrap5.scss +423 -0
  143. package/styles/document-editor-container/icons/_fabric-dark.scss +397 -0
  144. package/styles/document-editor-container/icons/_fabric.scss +397 -0
  145. package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
  146. package/styles/document-editor-container/icons/_fluent.scss +423 -0
  147. package/styles/document-editor-container/icons/_fusionnew.scss +423 -0
  148. package/styles/document-editor-container/icons/_highcontrast-light.scss +397 -0
  149. package/styles/document-editor-container/icons/_highcontrast.scss +397 -0
  150. package/styles/document-editor-container/icons/_material-dark.scss +399 -0
  151. package/styles/document-editor-container/icons/_material.scss +399 -0
  152. package/styles/document-editor-container/icons/_material3.scss +423 -0
  153. package/styles/document-editor-container/icons/_tailwind-dark.scss +423 -0
  154. package/styles/document-editor-container/icons/_tailwind.scss +423 -0
  155. package/styles/document-editor-container/material-dark.css +4 -1
  156. package/styles/document-editor-container/material-dark.scss +5 -1
  157. package/styles/document-editor-container/material.css +4 -1
  158. package/styles/document-editor-container/material.scss +5 -1
  159. package/styles/document-editor-container/tailwind-dark.css +5 -3
  160. package/styles/document-editor-container/tailwind-dark.scss +5 -1
  161. package/styles/document-editor-container/tailwind.css +5 -3
  162. package/styles/document-editor-container/tailwind.scss +5 -1
  163. package/styles/fabric-dark.css +9 -1
  164. package/styles/fabric.css +9 -1
  165. package/styles/fluent-dark.css +10 -3
  166. package/styles/fluent.css +10 -3
  167. package/styles/highcontrast-light.css +22 -15
  168. package/styles/highcontrast.css +9 -1
  169. package/styles/material-dark.css +9 -1
  170. package/styles/material.css +9 -1
  171. package/styles/tailwind-dark.css +10 -3
  172. package/styles/tailwind.css +10 -3
  173. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  174. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -574
  175. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  176. package/@syncfusion/ej2-angular-documenteditor.js +0 -544
  177. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  178. package/CHANGELOG.md +0 -2992
  179. package/dist/ej2-angular-documenteditor.umd.js +0 -841
  180. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  181. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  182. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  183. package/ej2-angular-documenteditor.d.ts +0 -6
  184. package/ej2-angular-documenteditor.metadata.json +0 -1
  185. package/postinstall/tagchange.js +0 -18
  186. package/schematics/collection.json +0 -15
  187. package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
  188. package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
  189. package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
  190. package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
  191. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  192. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  193. package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
  194. package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
  195. package/schematics/generators/documenteditorcontainer-default/schema.json +0 -124
  196. package/schematics/ng-add/index.d.ts +0 -3
  197. package/schematics/ng-add/index.js +0 -9
  198. package/schematics/ng-add/schema.d.ts +0 -13
  199. package/schematics/ng-add/schema.js +0 -2
  200. package/schematics/ng-add/schema.json +0 -34
  201. package/schematics/tsconfig.json +0 -25
  202. package/schematics/utils/lib-details.d.ts +0 -4
  203. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,25 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { DocumentEditorContainerComponent } from './documenteditorcontainer.component';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * NgModule definition for the DocumentEditorContainer component.
7
+ */
8
+ export class DocumentEditorContainerModule {
9
+ }
10
+ DocumentEditorContainerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
+ DocumentEditorContainerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, declarations: [DocumentEditorContainerComponent], imports: [CommonModule], exports: [DocumentEditorContainerComponent] });
12
+ DocumentEditorContainerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, imports: [[CommonModule]] });
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, decorators: [{
14
+ type: NgModule,
15
+ args: [{
16
+ imports: [CommonModule],
17
+ declarations: [
18
+ DocumentEditorContainerComponent
19
+ ],
20
+ exports: [
21
+ DocumentEditorContainerComponent
22
+ ]
23
+ }]
24
+ }] });
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG9jdW1lbnRlZGl0b3Jjb250YWluZXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2RvY3VtZW50LWVkaXRvci1jb250YWluZXIvZG9jdW1lbnRlZGl0b3Jjb250YWluZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxnQ0FBZ0MsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQUV2Rjs7R0FFRztBQVVILE1BQU0sT0FBTyw2QkFBNkI7OzBIQUE3Qiw2QkFBNkI7MkhBQTdCLDZCQUE2QixpQkFObEMsZ0NBQWdDLGFBRjFCLFlBQVksYUFLbEIsZ0NBQWdDOzJIQUczQiw2QkFBNkIsWUFSN0IsQ0FBQyxZQUFZLENBQUM7MkZBUWQsNkJBQTZCO2tCQVR6QyxRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsWUFBWSxFQUFFO3dCQUNWLGdDQUFnQztxQkFDbkM7b0JBQ0QsT0FBTyxFQUFFO3dCQUNMLGdDQUFnQztxQkFDbkM7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IERvY3VtZW50RWRpdG9yQ29udGFpbmVyQ29tcG9uZW50IH0gZnJvbSAnLi9kb2N1bWVudGVkaXRvcmNvbnRhaW5lci5jb21wb25lbnQnO1xuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBEb2N1bWVudEVkaXRvckNvbnRhaW5lciBjb21wb25lbnQuXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gICAgZGVjbGFyYXRpb25zOiBbXG4gICAgICAgIERvY3VtZW50RWRpdG9yQ29udGFpbmVyQ29tcG9uZW50XG4gICAgXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIERvY3VtZW50RWRpdG9yQ29udGFpbmVyQ29tcG9uZW50XG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBEb2N1bWVudEVkaXRvckNvbnRhaW5lck1vZHVsZSB7IH0iXX0=
@@ -0,0 +1,8 @@
1
+ export { DocumentEditorComponent } from './document-editor/documenteditor.component';
2
+ export { DocumentEditorModule } from './document-editor/documenteditor.module';
3
+ export { 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 } from './document-editor/documenteditor-all.module';
4
+ export { DocumentEditorContainerComponent } from './document-editor-container/documenteditorcontainer.component';
5
+ export { DocumentEditorContainerModule } from './document-editor-container/documenteditorcontainer.module';
6
+ export { DocumentEditorContainerAllModule, ToolbarService } from './document-editor-container/documenteditorcontainer-all.module';
7
+ export * from '@syncfusion/ej2-documenteditor';
8
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFDLE1BQU0sNENBQTRDLENBQUM7QUFDcEYsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDL0UsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFlBQVksRUFBRSxpQkFBaUIsRUFBRSxpQkFBaUIsRUFBRSxpQkFBaUIsRUFBRSxnQkFBZ0IsRUFBRSxhQUFhLEVBQUUsYUFBYSxFQUFFLG9CQUFvQixFQUFFLGtCQUFrQixFQUFFLGtCQUFrQixFQUFFLG1CQUFtQixFQUFFLHNCQUFzQixFQUFFLGtCQUFrQixFQUFFLHFCQUFxQixFQUFFLDRCQUE0QixFQUFFLHNCQUFzQixFQUFFLHNCQUFzQixFQUFFLGlCQUFpQixFQUFFLGtCQUFrQixFQUFFLG1CQUFtQixFQUFFLGdDQUFnQyxFQUFFLGlCQUFpQixFQUFFLDRCQUE0QixFQUFFLDhCQUE4QixFQUFFLHlCQUF5QixFQUFFLHdCQUF3QixFQUFFLG1CQUFtQixFQUFFLHVCQUF1QixFQUFFLDJCQUEyQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDaHVCLE9BQU8sRUFBRSxnQ0FBZ0MsRUFBQyxNQUFNLCtEQUErRCxDQUFDO0FBQ2hILE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLDREQUE0RCxDQUFDO0FBQzNHLE9BQU8sRUFBRSxnQ0FBZ0MsRUFBRSxjQUFjLEVBQUUsTUFBTSxnRUFBZ0UsQ0FBQztBQUNsSSxjQUFjLGdDQUFnQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgRG9jdW1lbnRFZGl0b3JDb21wb25lbnR9IGZyb20gJy4vZG9jdW1lbnQtZWRpdG9yL2RvY3VtZW50ZWRpdG9yLmNvbXBvbmVudCc7XG5leHBvcnQgeyBEb2N1bWVudEVkaXRvck1vZHVsZSB9IGZyb20gJy4vZG9jdW1lbnQtZWRpdG9yL2RvY3VtZW50ZWRpdG9yLm1vZHVsZSc7XG5leHBvcnQgeyBEb2N1bWVudEVkaXRvckFsbE1vZHVsZSwgUHJpbnRTZXJ2aWNlLCBTZmR0RXhwb3J0U2VydmljZSwgV29yZEV4cG9ydFNlcnZpY2UsIFRleHRFeHBvcnRTZXJ2aWNlLCBTZWxlY3Rpb25TZXJ2aWNlLCBTZWFyY2hTZXJ2aWNlLCBFZGl0b3JTZXJ2aWNlLCBFZGl0b3JIaXN0b3J5U2VydmljZSwgT3B0aW9uc1BhbmVTZXJ2aWNlLCBDb250ZXh0TWVudVNlcnZpY2UsIEltYWdlUmVzaXplclNlcnZpY2UsIEh5cGVybGlua0RpYWxvZ1NlcnZpY2UsIFRhYmxlRGlhbG9nU2VydmljZSwgQm9va21hcmtEaWFsb2dTZXJ2aWNlLCBUYWJsZU9mQ29udGVudHNEaWFsb2dTZXJ2aWNlLCBQYWdlU2V0dXBEaWFsb2dTZXJ2aWNlLCBQYXJhZ3JhcGhEaWFsb2dTZXJ2aWNlLCBMaXN0RGlhbG9nU2VydmljZSwgU3R5bGVEaWFsb2dTZXJ2aWNlLCBTdHlsZXNEaWFsb2dTZXJ2aWNlLCBCdWxsZXRzQW5kTnVtYmVyaW5nRGlhbG9nU2VydmljZSwgRm9udERpYWxvZ1NlcnZpY2UsIFRhYmxlUHJvcGVydGllc0RpYWxvZ1NlcnZpY2UsIEJvcmRlcnNBbmRTaGFkaW5nRGlhbG9nU2VydmljZSwgVGFibGVPcHRpb25zRGlhbG9nU2VydmljZSwgQ2VsbE9wdGlvbnNEaWFsb2dTZXJ2aWNlLCBTcGVsbENoZWNrZXJTZXJ2aWNlLCBTcGVsbENoZWNrRGlhbG9nU2VydmljZSwgQ29sbGFib3JhdGl2ZUVkaXRpbmdTZXJ2aWNlIH0gZnJvbSAnLi9kb2N1bWVudC1lZGl0b3IvZG9jdW1lbnRlZGl0b3ItYWxsLm1vZHVsZSc7XG5leHBvcnQgeyBEb2N1bWVudEVkaXRvckNvbnRhaW5lckNvbXBvbmVudH0gZnJvbSAnLi9kb2N1bWVudC1lZGl0b3ItY29udGFpbmVyL2RvY3VtZW50ZWRpdG9yY29udGFpbmVyLmNvbXBvbmVudCc7XG5leHBvcnQgeyBEb2N1bWVudEVkaXRvckNvbnRhaW5lck1vZHVsZSB9IGZyb20gJy4vZG9jdW1lbnQtZWRpdG9yLWNvbnRhaW5lci9kb2N1bWVudGVkaXRvcmNvbnRhaW5lci5tb2R1bGUnO1xuZXhwb3J0IHsgRG9jdW1lbnRFZGl0b3JDb250YWluZXJBbGxNb2R1bGUsIFRvb2xiYXJTZXJ2aWNlIH0gZnJvbSAnLi9kb2N1bWVudC1lZGl0b3ItY29udGFpbmVyL2RvY3VtZW50ZWRpdG9yY29udGFpbmVyLWFsbC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnQHN5bmNmdXNpb24vZWoyLWRvY3VtZW50ZWRpdG9yJzsiXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public_api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3luY2Z1c2lvbi1lajItYW5ndWxhci1kb2N1bWVudGVkaXRvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3N5bmNmdXNpb24tZWoyLWFuZ3VsYXItZG9jdW1lbnRlZGl0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWNfYXBpJztcbiJdfQ==
@@ -0,0 +1,506 @@
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, DocumentEditorContainer, Toolbar } from '@syncfusion/ej2-documenteditor';
6
+ export * from '@syncfusion/ej2-documenteditor';
7
+ import { CommonModule } from '@angular/common';
8
+
9
+ const inputs$1 = ['acceptTab', 'currentUser', 'defaultPasteOption', 'documentEditorSettings', 'documentName', 'documentSettings', 'enableBookmarkDialog', 'enableBordersAndShadingDialog', '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', '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
+ this.registerEvents(outputs$1);
231
+ this.addTwoWay.call(this, twoWays$1);
232
+ setValue('currentInstance', this, this.viewContainerRef);
233
+ this.context = new ComponentBase();
234
+ }
235
+ ngOnInit() {
236
+ this.context.ngOnInit(this);
237
+ }
238
+ ngAfterViewInit() {
239
+ this.context.ngAfterViewInit(this);
240
+ }
241
+ ngOnDestroy() {
242
+ this.context.ngOnDestroy(this);
243
+ }
244
+ ngAfterContentChecked() {
245
+ this.context.ngAfterContentChecked(this);
246
+ }
247
+ };
248
+ 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 });
249
+ DocumentEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DocumentEditorComponent, selector: "ejs-documenteditor", inputs: { acceptTab: "acceptTab", currentUser: "currentUser", defaultPasteOption: "defaultPasteOption", documentEditorSettings: "documentEditorSettings", documentName: "documentName", documentSettings: "documentSettings", enableBookmarkDialog: "enableBookmarkDialog", enableBordersAndShadingDialog: "enableBordersAndShadingDialog", 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", 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 });
250
+ DocumentEditorComponent = __decorate([
251
+ ComponentMixins([ComponentBase])
252
+ ], DocumentEditorComponent);
253
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorComponent, decorators: [{
254
+ type: Component,
255
+ args: [{
256
+ selector: 'ejs-documenteditor',
257
+ inputs: inputs$1,
258
+ outputs: outputs$1,
259
+ template: '',
260
+ changeDetection: ChangeDetectionStrategy.OnPush,
261
+ queries: {}
262
+ }]
263
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
264
+
265
+ /**
266
+ * NgModule definition for the DocumentEditor component.
267
+ */
268
+ class DocumentEditorModule {
269
+ }
270
+ DocumentEditorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
271
+ DocumentEditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorModule, declarations: [DocumentEditorComponent], imports: [CommonModule], exports: [DocumentEditorComponent] });
272
+ DocumentEditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorModule, imports: [[CommonModule]] });
273
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorModule, decorators: [{
274
+ type: NgModule,
275
+ args: [{
276
+ imports: [CommonModule],
277
+ declarations: [
278
+ DocumentEditorComponent
279
+ ],
280
+ exports: [
281
+ DocumentEditorComponent
282
+ ]
283
+ }]
284
+ }] });
285
+
286
+ const PrintService = { provide: 'DocumentEditorPrint', useValue: Print };
287
+ const SfdtExportService = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport };
288
+ const WordExportService = { provide: 'DocumentEditorWordExport', useValue: WordExport };
289
+ const TextExportService = { provide: 'DocumentEditorTextExport', useValue: TextExport };
290
+ const SelectionService = { provide: 'DocumentEditorSelection', useValue: Selection };
291
+ const SearchService = { provide: 'DocumentEditorSearch', useValue: Search };
292
+ const EditorService = { provide: 'DocumentEditorEditor', useValue: Editor };
293
+ const EditorHistoryService = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory };
294
+ const OptionsPaneService = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane };
295
+ const ContextMenuService = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu };
296
+ const ImageResizerService = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer };
297
+ const HyperlinkDialogService = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog };
298
+ const TableDialogService = { provide: 'DocumentEditorTableDialog', useValue: TableDialog };
299
+ const BookmarkDialogService = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog };
300
+ const TableOfContentsDialogService = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog };
301
+ const PageSetupDialogService = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog };
302
+ const ParagraphDialogService = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog };
303
+ const ListDialogService = { provide: 'DocumentEditorListDialog', useValue: ListDialog };
304
+ const StyleDialogService = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog };
305
+ const StylesDialogService = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog };
306
+ const BulletsAndNumberingDialogService = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog };
307
+ const FontDialogService = { provide: 'DocumentEditorFontDialog', useValue: FontDialog };
308
+ const TablePropertiesDialogService = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog };
309
+ const BordersAndShadingDialogService = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog };
310
+ const TableOptionsDialogService = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog };
311
+ const CellOptionsDialogService = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog };
312
+ const SpellCheckerService = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker };
313
+ const SpellCheckDialogService = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog };
314
+ const CollaborativeEditingService = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing };
315
+ /**
316
+ * NgModule definition for the DocumentEditor component with providers.
317
+ */
318
+ class DocumentEditorAllModule {
319
+ }
320
+ DocumentEditorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
321
+ DocumentEditorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorAllModule, imports: [CommonModule, DocumentEditorModule], exports: [DocumentEditorModule] });
322
+ DocumentEditorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorAllModule, providers: [
323
+ PrintService,
324
+ SfdtExportService,
325
+ WordExportService,
326
+ TextExportService,
327
+ SelectionService,
328
+ SearchService,
329
+ EditorService,
330
+ EditorHistoryService,
331
+ OptionsPaneService,
332
+ ContextMenuService,
333
+ ImageResizerService,
334
+ HyperlinkDialogService,
335
+ TableDialogService,
336
+ BookmarkDialogService,
337
+ TableOfContentsDialogService,
338
+ PageSetupDialogService,
339
+ ParagraphDialogService,
340
+ ListDialogService,
341
+ StyleDialogService,
342
+ StylesDialogService,
343
+ BulletsAndNumberingDialogService,
344
+ FontDialogService,
345
+ TablePropertiesDialogService,
346
+ BordersAndShadingDialogService,
347
+ TableOptionsDialogService,
348
+ CellOptionsDialogService,
349
+ SpellCheckerService,
350
+ SpellCheckDialogService,
351
+ CollaborativeEditingService
352
+ ], imports: [[CommonModule, DocumentEditorModule], DocumentEditorModule] });
353
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorAllModule, decorators: [{
354
+ type: NgModule,
355
+ args: [{
356
+ imports: [CommonModule, DocumentEditorModule],
357
+ exports: [
358
+ DocumentEditorModule
359
+ ],
360
+ providers: [
361
+ PrintService,
362
+ SfdtExportService,
363
+ WordExportService,
364
+ TextExportService,
365
+ SelectionService,
366
+ SearchService,
367
+ EditorService,
368
+ EditorHistoryService,
369
+ OptionsPaneService,
370
+ ContextMenuService,
371
+ ImageResizerService,
372
+ HyperlinkDialogService,
373
+ TableDialogService,
374
+ BookmarkDialogService,
375
+ TableOfContentsDialogService,
376
+ PageSetupDialogService,
377
+ ParagraphDialogService,
378
+ ListDialogService,
379
+ StyleDialogService,
380
+ StylesDialogService,
381
+ BulletsAndNumberingDialogService,
382
+ FontDialogService,
383
+ TablePropertiesDialogService,
384
+ BordersAndShadingDialogService,
385
+ TableOptionsDialogService,
386
+ CellOptionsDialogService,
387
+ SpellCheckerService,
388
+ SpellCheckDialogService,
389
+ CollaborativeEditingService
390
+ ]
391
+ }]
392
+ }] });
393
+
394
+ const inputs = ['currentUser', 'documentEditorSettings', 'documentSettings', 'enableComment', 'enableCsp', 'enableLocalPaste', 'enableLockAndEdit', 'enablePersistence', 'enableRtl', 'enableSpellCheck', 'enableToolbar', 'enableTrackChanges', 'headers', 'height', 'layoutType', 'locale', 'restrictEditing', 'serverActionSettings', 'serviceUrl', 'showPropertiesPane', 'toolbarItems', 'userColor', 'width', 'zIndex'];
395
+ const outputs = ['beforeCommentAction', 'beforePaneSwitch', 'commentDelete', 'contentChange', 'contentControl', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'destroyed', 'documentChange', 'selectionChange', 'serviceFailure', 'toolbarClick', 'trackChange', 'beforeXmlHttpRequestSend'];
396
+ const twoWays = [];
397
+ /**
398
+ * `ejs-documenteditor-container` represents the Angular Document Editor Container.
399
+ * ```html
400
+ * <ejs-documenteditor-container></ejs-documenteditor-container>
401
+ * ```
402
+ */
403
+ let DocumentEditorContainerComponent = class DocumentEditorContainerComponent extends DocumentEditorContainer {
404
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
405
+ super();
406
+ this.ngEle = ngEle;
407
+ this.srenderer = srenderer;
408
+ this.viewContainerRef = viewContainerRef;
409
+ this.injector = injector;
410
+ this.element = this.ngEle.nativeElement;
411
+ this.injectedModules = this.injectedModules || [];
412
+ try {
413
+ let mod = this.injector.get('DocumentEditorToolbar');
414
+ if (this.injectedModules.indexOf(mod) === -1) {
415
+ this.injectedModules.push(mod);
416
+ }
417
+ }
418
+ catch (_a) { }
419
+ this.registerEvents(outputs);
420
+ this.addTwoWay.call(this, twoWays);
421
+ setValue('currentInstance', this, this.viewContainerRef);
422
+ this.context = new ComponentBase();
423
+ }
424
+ ngOnInit() {
425
+ this.context.ngOnInit(this);
426
+ }
427
+ ngAfterViewInit() {
428
+ this.context.ngAfterViewInit(this);
429
+ }
430
+ ngOnDestroy() {
431
+ this.context.ngOnDestroy(this);
432
+ }
433
+ ngAfterContentChecked() {
434
+ this.context.ngAfterContentChecked(this);
435
+ }
436
+ };
437
+ 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 });
438
+ DocumentEditorContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DocumentEditorContainerComponent, selector: "ejs-documenteditorcontainer", inputs: { currentUser: "currentUser", documentEditorSettings: "documentEditorSettings", documentSettings: "documentSettings", 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: { 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 });
439
+ DocumentEditorContainerComponent = __decorate([
440
+ ComponentMixins([ComponentBase])
441
+ ], DocumentEditorContainerComponent);
442
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerComponent, decorators: [{
443
+ type: Component,
444
+ args: [{
445
+ selector: 'ejs-documenteditorcontainer',
446
+ inputs: inputs,
447
+ outputs: outputs,
448
+ template: '',
449
+ changeDetection: ChangeDetectionStrategy.OnPush,
450
+ queries: {}
451
+ }]
452
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
453
+
454
+ /**
455
+ * NgModule definition for the DocumentEditorContainer component.
456
+ */
457
+ class DocumentEditorContainerModule {
458
+ }
459
+ DocumentEditorContainerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
460
+ DocumentEditorContainerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, declarations: [DocumentEditorContainerComponent], imports: [CommonModule], exports: [DocumentEditorContainerComponent] });
461
+ DocumentEditorContainerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, imports: [[CommonModule]] });
462
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerModule, decorators: [{
463
+ type: NgModule,
464
+ args: [{
465
+ imports: [CommonModule],
466
+ declarations: [
467
+ DocumentEditorContainerComponent
468
+ ],
469
+ exports: [
470
+ DocumentEditorContainerComponent
471
+ ]
472
+ }]
473
+ }] });
474
+
475
+ const ToolbarService = { provide: 'DocumentEditorToolbar', useValue: Toolbar };
476
+ /**
477
+ * NgModule definition for the DocumentEditorContainer component with providers.
478
+ */
479
+ class DocumentEditorContainerAllModule {
480
+ }
481
+ DocumentEditorContainerAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
482
+ DocumentEditorContainerAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerAllModule, imports: [CommonModule, DocumentEditorContainerModule], exports: [DocumentEditorContainerModule] });
483
+ DocumentEditorContainerAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerAllModule, providers: [
484
+ ToolbarService
485
+ ], imports: [[CommonModule, DocumentEditorContainerModule], DocumentEditorContainerModule] });
486
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DocumentEditorContainerAllModule, decorators: [{
487
+ type: NgModule,
488
+ args: [{
489
+ imports: [CommonModule, DocumentEditorContainerModule],
490
+ exports: [
491
+ DocumentEditorContainerModule
492
+ ],
493
+ providers: [
494
+ ToolbarService
495
+ ]
496
+ }]
497
+ }] });
498
+
499
+ // Mapping root file for package generation
500
+
501
+ /**
502
+ * Generated bundle index. Do not edit.
503
+ */
504
+
505
+ export { BookmarkDialogService, BordersAndShadingDialogService, BulletsAndNumberingDialogService, CellOptionsDialogService, CollaborativeEditingService, 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 };
506
+ //# sourceMappingURL=syncfusion-ej2-angular-documenteditor.mjs.map