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

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