@syncfusion/ej2-angular-documenteditor 19.3.56 → 19.4.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@syncfusion/ej2-angular-documenteditor.es5.js +3 -3
- package/@syncfusion/ej2-angular-documenteditor.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-documenteditor.js +3 -3
- package/@syncfusion/ej2-angular-documenteditor.js.map +1 -1
- package/CHANGELOG.md +104 -0
- package/README.md +1 -1
- package/dist/ej2-angular-documenteditor.umd.js +4 -3
- package/dist/ej2-angular-documenteditor.umd.js.map +1 -1
- package/dist/ej2-angular-documenteditor.umd.min.js +2 -2
- package/dist/ej2-angular-documenteditor.umd.min.js.map +1 -1
- package/ej2-angular-documenteditor.metadata.json +1 -1
- package/package.json +8 -8
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap-dark.css +12 -6
- package/styles/bootstrap.css +12 -6
- package/styles/bootstrap4.css +20 -10
- package/styles/bootstrap5-dark.css +12 -6
- package/styles/bootstrap5.css +12 -6
- package/styles/document-editor/bootstrap-dark.css +4 -2
- package/styles/document-editor/bootstrap.css +4 -2
- package/styles/document-editor/bootstrap4.css +4 -2
- package/styles/document-editor/bootstrap5-dark.css +4 -2
- package/styles/document-editor/bootstrap5.css +4 -2
- package/styles/document-editor/fabric-dark.css +4 -2
- package/styles/document-editor/fabric.css +4 -2
- package/styles/document-editor/highcontrast.css +4 -2
- package/styles/document-editor/material-dark.css +4 -2
- package/styles/document-editor/material.css +4 -2
- package/styles/document-editor/tailwind-dark.css +2 -7
- package/styles/document-editor/tailwind.css +2 -7
- package/styles/document-editor-container/bootstrap-dark.css +8 -4
- package/styles/document-editor-container/bootstrap.css +8 -4
- package/styles/document-editor-container/bootstrap4.css +16 -8
- package/styles/document-editor-container/bootstrap5-dark.css +8 -4
- package/styles/document-editor-container/bootstrap5.css +8 -4
- package/styles/document-editor-container/fabric-dark.css +8 -4
- package/styles/document-editor-container/fabric.css +8 -4
- package/styles/document-editor-container/highcontrast-light.css +8 -4
- package/styles/document-editor-container/highcontrast.css +8 -4
- package/styles/document-editor-container/material-dark.css +8 -4
- package/styles/document-editor-container/material.css +8 -4
- package/styles/document-editor-container/tailwind-dark.css +8 -4
- package/styles/document-editor-container/tailwind.css +8 -4
- package/styles/fabric-dark.css +12 -6
- package/styles/fabric.css +12 -6
- package/styles/highcontrast-light.css +8 -4
- package/styles/highcontrast.css +12 -6
- package/styles/material-dark.css +12 -6
- package/styles/material.css +12 -6
- package/styles/tailwind-dark.css +10 -11
- package/styles/tailwind.css +10 -11
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-angular-documenteditor.umd.js","sources":["~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer-all.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer.component.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor-all.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor.component.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\nimport { DocumentEditorContainerModule } from './documenteditorcontainer.module';\nimport {Toolbar} from '@syncfusion/ej2-documenteditor';\n\n\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'DocumentEditorToolbar', useValue: Toolbar};\n/**\n * NgModule definition for the DocumentEditorContainer component with providers.\n */\nexport class DocumentEditorContainerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DocumentEditorContainerModule],\n exports: [\n DocumentEditorContainerModule\n ],\n providers:[\n ToolbarService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorContainerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\n/**\n * NgModule definition for the DocumentEditorContainer component.\n */\nexport class DocumentEditorContainerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DocumentEditorContainerComponent\n ],\n exports: [\n DocumentEditorContainerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorContainerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['currentUser','documentEditorSettings','enableComment','enableCsp','enableLocalPaste','enableLockAndEdit','enablePersistence','enableRtl','enableSpellCheck','enableToolbar','enableTrackChanges','headers','height','layoutType','locale','restrictEditing','serverActionSettings','serviceUrl','showPropertiesPane','toolbarItems','userColor','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['beforeCommentAction','beforePaneSwitch','commentDelete','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','selectionChange','serviceFailure','toolbarClick','trackChange','beforeXmlHttpRequestSend'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-documenteditor-container` represents the Angular Document Editor Container.\n * ```html\n * <ejs-documenteditor-container></ejs-documenteditor-container>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tbeforeCommentAction: any;\n\tbeforePaneSwitch: any;\n\tcommentDelete: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttoolbarClick: any;\n\ttrackChange: any;\npublic beforeXmlHttpRequestSend: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-documenteditorcontainer',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DocumentEditorContainerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerComponent.ctorParameters;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.context;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.tagObjects;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforeCommentAction;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforePaneSwitch;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.commentDelete;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.contentChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.contentControl;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.created;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.destroyed;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.documentChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.selectionChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.serviceFailure;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.toolbarClick;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.trackChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforeXmlHttpRequestSend;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.registerEvents;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.addTwoWay;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.ngEle;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.srenderer;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.viewContainerRef;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\nimport { DocumentEditorModule } from './documenteditor.module';\nimport {Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing} from '@syncfusion/ej2-documenteditor';\n\n\nexport const /** @type {?} */ PrintService: ValueProvider = { provide: 'DocumentEditorPrint', useValue: Print};\nexport const /** @type {?} */ SfdtExportService: ValueProvider = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport};\nexport const /** @type {?} */ WordExportService: ValueProvider = { provide: 'DocumentEditorWordExport', useValue: WordExport};\nexport const /** @type {?} */ TextExportService: ValueProvider = { provide: 'DocumentEditorTextExport', useValue: TextExport};\nexport const /** @type {?} */ SelectionService: ValueProvider = { provide: 'DocumentEditorSelection', useValue: Selection};\nexport const /** @type {?} */ SearchService: ValueProvider = { provide: 'DocumentEditorSearch', useValue: Search};\nexport const /** @type {?} */ EditorService: ValueProvider = { provide: 'DocumentEditorEditor', useValue: Editor};\nexport const /** @type {?} */ EditorHistoryService: ValueProvider = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory};\nexport const /** @type {?} */ OptionsPaneService: ValueProvider = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ ImageResizerService: ValueProvider = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer};\nexport const /** @type {?} */ HyperlinkDialogService: ValueProvider = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog};\nexport const /** @type {?} */ TableDialogService: ValueProvider = { provide: 'DocumentEditorTableDialog', useValue: TableDialog};\nexport const /** @type {?} */ BookmarkDialogService: ValueProvider = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog};\nexport const /** @type {?} */ TableOfContentsDialogService: ValueProvider = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog};\nexport const /** @type {?} */ PageSetupDialogService: ValueProvider = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog};\nexport const /** @type {?} */ ParagraphDialogService: ValueProvider = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog};\nexport const /** @type {?} */ ListDialogService: ValueProvider = { provide: 'DocumentEditorListDialog', useValue: ListDialog};\nexport const /** @type {?} */ StyleDialogService: ValueProvider = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog};\nexport const /** @type {?} */ StylesDialogService: ValueProvider = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog};\nexport const /** @type {?} */ BulletsAndNumberingDialogService: ValueProvider = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog};\nexport const /** @type {?} */ FontDialogService: ValueProvider = { provide: 'DocumentEditorFontDialog', useValue: FontDialog};\nexport const /** @type {?} */ TablePropertiesDialogService: ValueProvider = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog};\nexport const /** @type {?} */ BordersAndShadingDialogService: ValueProvider = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog};\nexport const /** @type {?} */ TableOptionsDialogService: ValueProvider = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog};\nexport const /** @type {?} */ CellOptionsDialogService: ValueProvider = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog};\nexport const /** @type {?} */ SpellCheckerService: ValueProvider = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker};\nexport const /** @type {?} */ SpellCheckDialogService: ValueProvider = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog};\nexport const /** @type {?} */ CollaborativeEditingService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing};\n/**\n * NgModule definition for the DocumentEditor component with providers.\n */\nexport class DocumentEditorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DocumentEditorModule],\n exports: [\n DocumentEditorModule\n ],\n providers:[\n PrintService,\n SfdtExportService,\n WordExportService,\n TextExportService,\n SelectionService,\n SearchService,\n EditorService,\n EditorHistoryService,\n OptionsPaneService,\n ContextMenuService,\n ImageResizerService,\n HyperlinkDialogService,\n TableDialogService,\n BookmarkDialogService,\n TableOfContentsDialogService,\n PageSetupDialogService,\n ParagraphDialogService,\n ListDialogService,\n StyleDialogService,\n StylesDialogService,\n BulletsAndNumberingDialogService,\n FontDialogService,\n TablePropertiesDialogService,\n BordersAndShadingDialogService,\n TableOptionsDialogService,\n CellOptionsDialogService,\n SpellCheckerService,\n SpellCheckDialogService,\n CollaborativeEditingService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\n/**\n * NgModule definition for the DocumentEditor component.\n */\nexport class DocumentEditorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DocumentEditorComponent\n ],\n exports: [\n DocumentEditorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditor } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['acceptTab','currentUser','defaultPasteOption','documentEditorSettings','documentName','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'];\nexport const /** @type {?} */ outputs: string[] = ['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'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-documenteditor` represents the Angular Document Editor Component.\n * ```html\n * <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorComponent extends DocumentEditor implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionComplete: any;\n\tafterFormFieldFill: any;\n\tbeforeCommentAction: any;\n\tbeforeFileOpen: any;\n\tbeforeFormFieldFill: any;\n\tbeforePaneSwitch: any;\n\tcommentBegin: any;\n\tcommentDelete: any;\n\tcommentEnd: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tkeyDown: any;\n\trequestNavigate: any;\n\tsearchResultsChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttrackChange: any;\n\tviewChange: any;\n\tzoomFactorChange: any;\npublic beforeXmlHttpRequestSend: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSfdtExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorWordExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTextExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSearch');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorEditor');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorEditorHistory');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorOptionsPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorImageResizer');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorHyperlinkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBookmarkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableOfContentsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorPageSetupDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorParagraphDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorListDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorStyleDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorStylesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBulletsAndNumberingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorFontDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTablePropertiesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBordersAndShadingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCellOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSpellChecker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSpellCheckDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditing');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-documenteditor',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DocumentEditorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorComponent.ctorParameters;\n/** @type {?} */\nDocumentEditorComponent.prototype.context;\n/** @type {?} */\nDocumentEditorComponent.prototype.tagObjects;\n/** @type {?} */\nDocumentEditorComponent.prototype.actionComplete;\n/** @type {?} */\nDocumentEditorComponent.prototype.afterFormFieldFill;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeCommentAction;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeFileOpen;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeFormFieldFill;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforePaneSwitch;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentBegin;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentDelete;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentEnd;\n/** @type {?} */\nDocumentEditorComponent.prototype.contentChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.contentControl;\n/** @type {?} */\nDocumentEditorComponent.prototype.created;\n/** @type {?} */\nDocumentEditorComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nDocumentEditorComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nDocumentEditorComponent.prototype.destroyed;\n/** @type {?} */\nDocumentEditorComponent.prototype.documentChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.keyDown;\n/** @type {?} */\nDocumentEditorComponent.prototype.requestNavigate;\n/** @type {?} */\nDocumentEditorComponent.prototype.searchResultsChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.selectionChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.serviceFailure;\n/** @type {?} */\nDocumentEditorComponent.prototype.trackChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.viewChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.zoomFactorChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeXmlHttpRequestSend;\n/** @type {?} */\nDocumentEditorComponent.prototype.registerEvents;\n/** @type {?} */\nDocumentEditorComponent.prototype.addTwoWay;\n/** @type {?} */\nDocumentEditorComponent.prototype.ngEle;\n/** @type {?} */\nDocumentEditorComponent.prototype.srenderer;\n/** @type {?} */\nDocumentEditorComponent.prototype.viewContainerRef;\n/** @type {?} */\nDocumentEditorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","Toolbar","DocumentEditorContainerComponent","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","__decorate","ChangeDetectionStrategy","outputs","inputs","Component","DocumentEditorContainer","setValue","twoWays","CollaborativeEditing","SpellCheckDialog","SpellChecker","CellOptionsDialog","TableOptionsDialog","BordersAndShadingDialog","TablePropertiesDialog","FontDialog","BulletsAndNumberingDialog","StylesDialog","StyleDialog","ListDialog","ParagraphDialog","PageSetupDialog","TableOfContentsDialog","BookmarkDialog","TableDialog","HyperlinkDialog","ImageResizer","ContextMenu","OptionsPane","EditorHistory","Editor","Search","Selection","TextExport","WordExport","SfdtExport","Print","DocumentEditorComponent","DocumentEditor"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ej2-angular-documenteditor.umd.js","sources":["~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer-all.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer.component.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor-all.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor.component.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\nimport { DocumentEditorContainerModule } from './documenteditorcontainer.module';\nimport {Toolbar} from '@syncfusion/ej2-documenteditor';\n\n\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'DocumentEditorToolbar', useValue: Toolbar};\n/**\n * NgModule definition for the DocumentEditorContainer component with providers.\n */\nexport class DocumentEditorContainerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DocumentEditorContainerModule],\n exports: [\n DocumentEditorContainerModule\n ],\n providers:[\n ToolbarService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorContainerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\n/**\n * NgModule definition for the DocumentEditorContainer component.\n */\nexport class DocumentEditorContainerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DocumentEditorContainerComponent\n ],\n exports: [\n DocumentEditorContainerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorContainerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['currentUser','documentEditorSettings','documentSettings','enableComment','enableCsp','enableLocalPaste','enableLockAndEdit','enablePersistence','enableRtl','enableSpellCheck','enableToolbar','enableTrackChanges','headers','height','layoutType','locale','restrictEditing','serverActionSettings','serviceUrl','showPropertiesPane','toolbarItems','userColor','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['beforeCommentAction','beforePaneSwitch','commentDelete','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','selectionChange','serviceFailure','toolbarClick','trackChange','beforeXmlHttpRequestSend'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-documenteditor-container` represents the Angular Document Editor Container.\n * ```html\n * <ejs-documenteditor-container></ejs-documenteditor-container>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tbeforeCommentAction: any;\n\tbeforePaneSwitch: any;\n\tcommentDelete: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttoolbarClick: any;\n\ttrackChange: any;\npublic beforeXmlHttpRequestSend: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-documenteditorcontainer',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DocumentEditorContainerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerComponent.ctorParameters;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.context;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.tagObjects;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforeCommentAction;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforePaneSwitch;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.commentDelete;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.contentChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.contentControl;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.created;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.destroyed;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.documentChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.selectionChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.serviceFailure;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.toolbarClick;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.trackChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforeXmlHttpRequestSend;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.registerEvents;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.addTwoWay;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.ngEle;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.srenderer;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.viewContainerRef;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\nimport { DocumentEditorModule } from './documenteditor.module';\nimport {Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing} from '@syncfusion/ej2-documenteditor';\n\n\nexport const /** @type {?} */ PrintService: ValueProvider = { provide: 'DocumentEditorPrint', useValue: Print};\nexport const /** @type {?} */ SfdtExportService: ValueProvider = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport};\nexport const /** @type {?} */ WordExportService: ValueProvider = { provide: 'DocumentEditorWordExport', useValue: WordExport};\nexport const /** @type {?} */ TextExportService: ValueProvider = { provide: 'DocumentEditorTextExport', useValue: TextExport};\nexport const /** @type {?} */ SelectionService: ValueProvider = { provide: 'DocumentEditorSelection', useValue: Selection};\nexport const /** @type {?} */ SearchService: ValueProvider = { provide: 'DocumentEditorSearch', useValue: Search};\nexport const /** @type {?} */ EditorService: ValueProvider = { provide: 'DocumentEditorEditor', useValue: Editor};\nexport const /** @type {?} */ EditorHistoryService: ValueProvider = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory};\nexport const /** @type {?} */ OptionsPaneService: ValueProvider = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ ImageResizerService: ValueProvider = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer};\nexport const /** @type {?} */ HyperlinkDialogService: ValueProvider = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog};\nexport const /** @type {?} */ TableDialogService: ValueProvider = { provide: 'DocumentEditorTableDialog', useValue: TableDialog};\nexport const /** @type {?} */ BookmarkDialogService: ValueProvider = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog};\nexport const /** @type {?} */ TableOfContentsDialogService: ValueProvider = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog};\nexport const /** @type {?} */ PageSetupDialogService: ValueProvider = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog};\nexport const /** @type {?} */ ParagraphDialogService: ValueProvider = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog};\nexport const /** @type {?} */ ListDialogService: ValueProvider = { provide: 'DocumentEditorListDialog', useValue: ListDialog};\nexport const /** @type {?} */ StyleDialogService: ValueProvider = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog};\nexport const /** @type {?} */ StylesDialogService: ValueProvider = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog};\nexport const /** @type {?} */ BulletsAndNumberingDialogService: ValueProvider = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog};\nexport const /** @type {?} */ FontDialogService: ValueProvider = { provide: 'DocumentEditorFontDialog', useValue: FontDialog};\nexport const /** @type {?} */ TablePropertiesDialogService: ValueProvider = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog};\nexport const /** @type {?} */ BordersAndShadingDialogService: ValueProvider = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog};\nexport const /** @type {?} */ TableOptionsDialogService: ValueProvider = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog};\nexport const /** @type {?} */ CellOptionsDialogService: ValueProvider = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog};\nexport const /** @type {?} */ SpellCheckerService: ValueProvider = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker};\nexport const /** @type {?} */ SpellCheckDialogService: ValueProvider = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog};\nexport const /** @type {?} */ CollaborativeEditingService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing};\n/**\n * NgModule definition for the DocumentEditor component with providers.\n */\nexport class DocumentEditorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DocumentEditorModule],\n exports: [\n DocumentEditorModule\n ],\n providers:[\n PrintService,\n SfdtExportService,\n WordExportService,\n TextExportService,\n SelectionService,\n SearchService,\n EditorService,\n EditorHistoryService,\n OptionsPaneService,\n ContextMenuService,\n ImageResizerService,\n HyperlinkDialogService,\n TableDialogService,\n BookmarkDialogService,\n TableOfContentsDialogService,\n PageSetupDialogService,\n ParagraphDialogService,\n ListDialogService,\n StyleDialogService,\n StylesDialogService,\n BulletsAndNumberingDialogService,\n FontDialogService,\n TablePropertiesDialogService,\n BordersAndShadingDialogService,\n TableOptionsDialogService,\n CellOptionsDialogService,\n SpellCheckerService,\n SpellCheckDialogService,\n CollaborativeEditingService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\n/**\n * NgModule definition for the DocumentEditor component.\n */\nexport class DocumentEditorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DocumentEditorComponent\n ],\n exports: [\n DocumentEditorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditor } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['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'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-documenteditor` represents the Angular Document Editor Component.\n * ```html\n * <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorComponent extends DocumentEditor implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionComplete: any;\n\tafterFormFieldFill: any;\n\tbeforeCommentAction: any;\n\tbeforeFileOpen: any;\n\tbeforeFormFieldFill: any;\n\tbeforePaneSwitch: any;\n\tcommentBegin: any;\n\tcommentDelete: any;\n\tcommentEnd: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tkeyDown: any;\n\trequestNavigate: any;\n\tsearchResultsChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttrackChange: any;\n\tviewChange: any;\n\tzoomFactorChange: any;\npublic beforeXmlHttpRequestSend: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSfdtExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorWordExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTextExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSearch');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorEditor');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorEditorHistory');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorOptionsPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorImageResizer');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorHyperlinkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBookmarkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableOfContentsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorPageSetupDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorParagraphDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorListDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorStyleDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorStylesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBulletsAndNumberingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorFontDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTablePropertiesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBordersAndShadingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCellOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSpellChecker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSpellCheckDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditing');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-documenteditor',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DocumentEditorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorComponent.ctorParameters;\n/** @type {?} */\nDocumentEditorComponent.prototype.context;\n/** @type {?} */\nDocumentEditorComponent.prototype.tagObjects;\n/** @type {?} */\nDocumentEditorComponent.prototype.actionComplete;\n/** @type {?} */\nDocumentEditorComponent.prototype.afterFormFieldFill;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeCommentAction;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeFileOpen;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeFormFieldFill;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforePaneSwitch;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentBegin;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentDelete;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentEnd;\n/** @type {?} */\nDocumentEditorComponent.prototype.contentChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.contentControl;\n/** @type {?} */\nDocumentEditorComponent.prototype.created;\n/** @type {?} */\nDocumentEditorComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nDocumentEditorComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nDocumentEditorComponent.prototype.destroyed;\n/** @type {?} */\nDocumentEditorComponent.prototype.documentChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.keyDown;\n/** @type {?} */\nDocumentEditorComponent.prototype.requestNavigate;\n/** @type {?} */\nDocumentEditorComponent.prototype.searchResultsChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.selectionChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.serviceFailure;\n/** @type {?} */\nDocumentEditorComponent.prototype.trackChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.viewChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.zoomFactorChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeXmlHttpRequestSend;\n/** @type {?} */\nDocumentEditorComponent.prototype.registerEvents;\n/** @type {?} */\nDocumentEditorComponent.prototype.addTwoWay;\n/** @type {?} */\nDocumentEditorComponent.prototype.ngEle;\n/** @type {?} */\nDocumentEditorComponent.prototype.srenderer;\n/** @type {?} */\nDocumentEditorComponent.prototype.viewContainerRef;\n/** @type {?} */\nDocumentEditorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","Toolbar","DocumentEditorContainerComponent","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","__decorate","ChangeDetectionStrategy","outputs","inputs","Component","DocumentEditorContainer","setValue","twoWays","CollaborativeEditing","SpellCheckDialog","SpellChecker","CellOptionsDialog","TableOptionsDialog","BordersAndShadingDialog","TablePropertiesDialog","FontDialog","BulletsAndNumberingDialog","StylesDialog","StyleDialog","ListDialog","ParagraphDialog","PageSetupDialog","TableOfContentsDialog","BookmarkDialog","TableDialog","HyperlinkDialog","ImageResizer","ContextMenu","OptionsPane","EditorHistory","Editor","Search","Selection","TextExport","WordExport","SfdtExport","Print","DocumentEditorComponent","DocumentEditor"],"mappings":"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"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-documenteditor.umd.min.js
|
|
3
|
-
* version : 19.
|
|
3
|
+
* version : 19.4.42
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
8
|
* applicable laws.
|
|
9
9
|
*/
|
|
10
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-documenteditor"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-documenteditor","@angular/common"],t):t(e["ej2-angular-documenteditor"]={},e.ng.core,e.ej2.angular.base,e.ej2.documenteditor,e.ng.common)}(this,function(e,t,o,n,r){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])};return function(t,o){function n(){this.constructor=t}e(t,o),t.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),a=this&&this.__decorate||function(e,t,o,n){var r,i=arguments.length,a=i<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,o,n);else for(var l=e.length-1;l>=0;l--)(r=e[l])&&(a=(i<3?r(a):i>3?r(t,o,a):r(t,o))||a);return i>3&&a&&Object.defineProperty(t,o,a),a},l=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},c=["acceptTab","currentUser","defaultPasteOption","documentEditorSettings","documentName","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"],d=["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"],s=[];e.DocumentEditorComponent=function(e){function t(t,n,r,i){var a=e.call(this)||this;a.ngEle=t,a.srenderer=n,a.viewContainerRef=r,a.injector=i,a.element=a.ngEle.nativeElement,a.injectedModules=a.injectedModules||[];try{var l=a.injector.get("DocumentEditorPrint");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(c){}try{l=a.injector.get("DocumentEditorSfdtExport");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(u){}try{l=a.injector.get("DocumentEditorWordExport");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(m){}try{l=a.injector.get("DocumentEditorTextExport");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(g){}try{l=a.injector.get("DocumentEditorSelection");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(p){}try{l=a.injector.get("DocumentEditorSearch");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(h){}try{l=a.injector.get("DocumentEditorEditor");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(C){}try{l=a.injector.get("DocumentEditorEditorHistory");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(E){}try{l=a.injector.get("DocumentEditorOptionsPane");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(D){}try{l=a.injector.get("DocumentEditorContextMenu");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(f){}try{l=a.injector.get("DocumentEditorImageResizer");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(S){}try{l=a.injector.get("DocumentEditorHyperlinkDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(v){}try{l=a.injector.get("DocumentEditorTableDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(y){}try{l=a.injector.get("DocumentEditorBookmarkDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(b){}try{l=a.injector.get("DocumentEditorTableOfContentsDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(x){}try{l=a.injector.get("DocumentEditorPageSetupDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(F){}try{l=a.injector.get("DocumentEditorParagraphDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(j){}try{l=a.injector.get("DocumentEditorListDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(T){}try{l=a.injector.get("DocumentEditorStyleDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(M){}try{l=a.injector.get("DocumentEditorStylesDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(P){}try{l=a.injector.get("DocumentEditorBulletsAndNumberingDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(O){}try{l=a.injector.get("DocumentEditorFontDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(B){}try{l=a.injector.get("DocumentEditorTablePropertiesDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(R){}try{l=a.injector.get("DocumentEditorBordersAndShadingDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(W){}try{l=a.injector.get("DocumentEditorTableOptionsDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(k){}try{l=a.injector.get("DocumentEditorCellOptionsDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(w){}try{l=a.injector.get("DocumentEditorSpellChecker");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(I){}try{l=a.injector.get("DocumentEditorSpellCheckDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(H){}try{l=a.injector.get("DocumentEditorCollaborativeEditing");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(V){}return a.registerEvents(d),a.addTwoWay.call(a,s),o.setValue("currentInstance",a,a.viewContainerRef),a.context=new o.ComponentBase,a}return i(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(n.DocumentEditor),e.DocumentEditorComponent.decorators=[{type:t.Component,args:[{selector:"ejs-documenteditor",inputs:c,outputs:d,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.DocumentEditorComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.DocumentEditorComponent=a([o.ComponentMixins([o.ComponentBase]),l("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.DocumentEditorComponent);var u=function(){return function(){}}();u.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule],declarations:[e.DocumentEditorComponent],exports:[e.DocumentEditorComponent]}]}],u.ctorParameters=function(){return[]};var m={provide:"DocumentEditorPrint",useValue:n.Print},g={provide:"DocumentEditorSfdtExport",useValue:n.SfdtExport},p={provide:"DocumentEditorWordExport",useValue:n.WordExport},h={provide:"DocumentEditorTextExport",useValue:n.TextExport},C={provide:"DocumentEditorSelection",useValue:n.Selection},E={provide:"DocumentEditorSearch",useValue:n.Search},D={provide:"DocumentEditorEditor",useValue:n.Editor},f={provide:"DocumentEditorEditorHistory",useValue:n.EditorHistory},S={provide:"DocumentEditorOptionsPane",useValue:n.OptionsPane},v={provide:"DocumentEditorContextMenu",useValue:n.ContextMenu},y={provide:"DocumentEditorImageResizer",useValue:n.ImageResizer},b={provide:"DocumentEditorHyperlinkDialog",useValue:n.HyperlinkDialog},x={provide:"DocumentEditorTableDialog",useValue:n.TableDialog},F={provide:"DocumentEditorBookmarkDialog",useValue:n.BookmarkDialog},j={provide:"DocumentEditorTableOfContentsDialog",useValue:n.TableOfContentsDialog},T={provide:"DocumentEditorPageSetupDialog",useValue:n.PageSetupDialog},M={provide:"DocumentEditorParagraphDialog",useValue:n.ParagraphDialog},P={provide:"DocumentEditorListDialog",useValue:n.ListDialog},O={provide:"DocumentEditorStyleDialog",useValue:n.StyleDialog},B={provide:"DocumentEditorStylesDialog",useValue:n.StylesDialog},R={provide:"DocumentEditorBulletsAndNumberingDialog",useValue:n.BulletsAndNumberingDialog},W={provide:"DocumentEditorFontDialog",useValue:n.FontDialog},k={provide:"DocumentEditorTablePropertiesDialog",useValue:n.TablePropertiesDialog},w={provide:"DocumentEditorBordersAndShadingDialog",useValue:n.BordersAndShadingDialog},I={provide:"DocumentEditorTableOptionsDialog",useValue:n.TableOptionsDialog},H={provide:"DocumentEditorCellOptionsDialog",useValue:n.CellOptionsDialog},V={provide:"DocumentEditorSpellChecker",useValue:n.SpellChecker},L={provide:"DocumentEditorSpellCheckDialog",useValue:n.SpellCheckDialog},A={provide:"DocumentEditorCollaborativeEditing",useValue:n.CollaborativeEditing},z=function(){return function(){}}();z.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule,u],exports:[u],providers:[m,g,p,h,C,E,D,f,S,v,y,b,x,F,j,T,M,P,O,B,R,W,k,w,I,H,V,L,A]}]}],z.ctorParameters=function(){return[]};var _=this&&this.__decorate||function(e,t,o,n){var r,i=arguments.length,a=i<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,o,n);else for(var l=e.length-1;l>=0;l--)(r=e[l])&&(a=(i<3?r(a):i>3?r(t,o,a):r(t,o))||a);return i>3&&a&&Object.defineProperty(t,o,a),a},q=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},N=["currentUser","documentEditorSettings","enableComment","enableCsp","enableLocalPaste","enableLockAndEdit","enablePersistence","enableRtl","enableSpellCheck","enableToolbar","enableTrackChanges","headers","height","layoutType","locale","restrictEditing","serverActionSettings","serviceUrl","showPropertiesPane","toolbarItems","userColor","width","zIndex"],U=["beforeCommentAction","beforePaneSwitch","commentDelete","contentChange","contentControl","created","customContextMenuBeforeOpen","customContextMenuSelect","destroyed","documentChange","selectionChange","serviceFailure","toolbarClick","trackChange","beforeXmlHttpRequestSend"],X=[];e.DocumentEditorContainerComponent=function(e){function t(t,n,r,i){var a=e.call(this)||this;a.ngEle=t,a.srenderer=n,a.viewContainerRef=r,a.injector=i,a.element=a.ngEle.nativeElement,a.injectedModules=a.injectedModules||[];try{var l=a.injector.get("DocumentEditorToolbar");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(c){}return a.registerEvents(U),a.addTwoWay.call(a,X),o.setValue("currentInstance",a,a.viewContainerRef),a.context=new o.ComponentBase,a}return i(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(n.DocumentEditorContainer),e.DocumentEditorContainerComponent.decorators=[{type:t.Component,args:[{selector:"ejs-documenteditorcontainer",inputs:N,outputs:U,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.DocumentEditorContainerComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.DocumentEditorContainerComponent=_([o.ComponentMixins([o.ComponentBase]),q("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.DocumentEditorContainerComponent);var Z=function(){return function(){}}();Z.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule],declarations:[e.DocumentEditorContainerComponent],exports:[e.DocumentEditorContainerComponent]}]}],Z.ctorParameters=function(){return[]};var G={provide:"DocumentEditorToolbar",useValue:n.Toolbar},J=function(){return function(){}}();J.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule,Z],exports:[Z],providers:[G]}]}],J.ctorParameters=function(){return[]},e.DocumentEditorModule=u,e.DocumentEditorAllModule=z,e.PrintService=m,e.SfdtExportService=g,e.WordExportService=p,e.TextExportService=h,e.SelectionService=C,e.SearchService=E,e.EditorService=D,e.EditorHistoryService=f,e.OptionsPaneService=S,e.ContextMenuService=v,e.ImageResizerService=y,e.HyperlinkDialogService=b,e.TableDialogService=x,e.BookmarkDialogService=F,e.TableOfContentsDialogService=j,e.PageSetupDialogService=T,e.ParagraphDialogService=M,e.ListDialogService=P,e.StyleDialogService=O,e.StylesDialogService=B,e.BulletsAndNumberingDialogService=R,e.FontDialogService=W,e.TablePropertiesDialogService=k,e.BordersAndShadingDialogService=w,e.TableOptionsDialogService=I,e.CellOptionsDialogService=H,e.SpellCheckerService=V,e.SpellCheckDialogService=L,e.CollaborativeEditingService=A,e.DocumentEditorContainerModule=Z,e.DocumentEditorContainerAllModule=J,e.ToolbarService=G,e.ɵc=N,e.ɵd=U,e.ɵa=c,e.ɵb=d,e.Dictionary=n.Dictionary,e.WUniqueFormat=n.WUniqueFormat,e.WUniqueFormats=n.WUniqueFormats,e.XmlHttpRequestHandler=n.XmlHttpRequestHandler,e.internalZoomFactorChange=n.internalZoomFactorChange,e.contentChangeEvent=n.contentChangeEvent,e.documentChangeEvent=n.documentChangeEvent,e.selectionChangeEvent=n.selectionChangeEvent,e.zoomFactorChangeEvent=n.zoomFactorChangeEvent,e.beforeFieldFillEvent=n.beforeFieldFillEvent,e.afterFieldFillEvent=n.afterFieldFillEvent,e.afterFormFieldFillEvent=n.afterFormFieldFillEvent,e.beforeFormFieldFillEvent=n.beforeFormFieldFillEvent,e.serviceFailureEvent=n.serviceFailureEvent,e.viewChangeEvent=n.viewChangeEvent,e.customContextMenuSelectEvent=n.customContextMenuSelectEvent,e.customContextMenuBeforeOpenEvent=n.customContextMenuBeforeOpenEvent,e.contentControlEvent=n.contentControlEvent,e.commentBeginEvent=n.commentBeginEvent,e.commentEndEvent=n.commentEndEvent,e.beforeCommentActionEvent=n.beforeCommentActionEvent,e.commentDeleteEvent=n.commentDeleteEvent,e.beforePaneSwitchEvent=n.beforePaneSwitchEvent,e.requestNavigateEvent=n.requestNavigateEvent,e.actionCompleteEvent=n.actionCompleteEvent,e.trackChangeEvent=n.trackChangeEvent,e.searchResultsChangeEvent=n.searchResultsChangeEvent,e.keyDownEvent=n.keyDownEvent,e.toolbarClickEvent=n.toolbarClickEvent,e.beforeFileOpenEvent=n.beforeFileOpenEvent,e.internalviewChangeEvent=n.internalviewChangeEvent,e.beforeXmlHttpRequestSend=n.beforeXmlHttpRequestSend,e.Print=n.Print,e.ContextMenu=n.ContextMenu,e.CommentReviewPane=n.CommentReviewPane,e.CommentPane=n.CommentPane,e.CommentView=n.CommentView,e.HyperlinkDialog=n.HyperlinkDialog,e.TableDialog=n.TableDialog,e.BookmarkDialog=n.BookmarkDialog,e.TableOfContentsDialog=n.TableOfContentsDialog,e.PageSetupDialog=n.PageSetupDialog,e.ParagraphDialog=n.ParagraphDialog,e.ListDialog=n.ListDialog,e.StyleDialog=n.StyleDialog,e.BulletsAndNumberingDialog=n.BulletsAndNumberingDialog,e.FontDialog=n.FontDialog,e.TablePropertiesDialog=n.TablePropertiesDialog,e.BordersAndShadingDialog=n.BordersAndShadingDialog,e.TableOptionsDialog=n.TableOptionsDialog,e.CellOptionsDialog=n.CellOptionsDialog,e.StylesDialog=n.StylesDialog,e.SpellCheckDialog=n.SpellCheckDialog,e.CheckBoxFormFieldDialog=n.CheckBoxFormFieldDialog,e.TextFormFieldDialog=n.TextFormFieldDialog,e.DropDownFormFieldDialog=n.DropDownFormFieldDialog,e.FormFieldPopUp=n.FormFieldPopUp,e.Editor=n.Editor,e.ImageResizer=n.ImageResizer,e.ImageResizingPoints=n.ImageResizingPoints,e.SelectedImageInfo=n.SelectedImageInfo,e.TableResizer=n.TableResizer,e.HelperMethods=n.HelperMethods,e.Point=n.Point,e.Base64=n.Base64,e.WrapPosition=n.WrapPosition,e.CollaborativeEditing=n.CollaborativeEditing,e.EditorHistory=n.EditorHistory,e.BaseHistoryInfo=n.BaseHistoryInfo,e.HistoryInfo=n.HistoryInfo,e.ModifiedLevel=n.ModifiedLevel,e.ModifiedParagraphFormat=n.ModifiedParagraphFormat,e.RowHistoryFormat=n.RowHistoryFormat,e.TableHistoryInfo=n.TableHistoryInfo,e.TableFormatHistoryInfo=n.TableFormatHistoryInfo,e.RowFormatHistoryInfo=n.RowFormatHistoryInfo,e.CellFormatHistoryInfo=n.CellFormatHistoryInfo,e.CellHistoryFormat=n.CellHistoryFormat,e.WSectionFormat=n.WSectionFormat,e.WStyle=n.WStyle,e.WParagraphStyle=n.WParagraphStyle,e.WCharacterStyle=n.WCharacterStyle,e.WStyles=n.WStyles,e.WCharacterFormat=n.WCharacterFormat,e.WListFormat=n.WListFormat,e.WTabStop=n.WTabStop,e.WParagraphFormat=n.WParagraphFormat,e.WTableFormat=n.WTableFormat,e.WRowFormat=n.WRowFormat,e.WCellFormat=n.WCellFormat,e.WBorder=n.WBorder,e.WBorders=n.WBorders,e.WShading=n.WShading,e.WList=n.WList,e.WAbstractList=n.WAbstractList,e.WListLevel=n.WListLevel,e.WLevelOverride=n.WLevelOverride,e.AddUserDialog=n.AddUserDialog,e.EnforceProtectionDialog=n.EnforceProtectionDialog,e.UnProtectDocumentDialog=n.UnProtectDocumentDialog,e.RestrictEditing=n.RestrictEditing,e.Search=n.Search,e.OptionsPane=n.OptionsPane,e.TextSearch=n.TextSearch,e.SearchWidgetInfo=n.SearchWidgetInfo,e.TextSearchResult=n.TextSearchResult,e.TextSearchResults=n.TextSearchResults,e.Selection=n.Selection,e.SelectionCharacterFormat=n.SelectionCharacterFormat,e.SelectionParagraphFormat=n.SelectionParagraphFormat,e.SelectionSectionFormat=n.SelectionSectionFormat,e.SelectionTableFormat=n.SelectionTableFormat,e.SelectionCellFormat=n.SelectionCellFormat,e.SelectionRowFormat=n.SelectionRowFormat,e.SelectionImageFormat=n.SelectionImageFormat,e.TextPosition=n.TextPosition,e.SelectionWidgetInfo=n.SelectionWidgetInfo,e.Hyperlink=n.Hyperlink,e.ImageInfo=n.ImageInfo,e.SpellChecker=n.SpellChecker,e.Optimized=n.Optimized,e.Regular=n.Regular,e.Revision=n.Revision,e.RevisionCollection=n.RevisionCollection,e.TrackChangesPane=n.TrackChangesPane,e.ChangesSingleView=n.ChangesSingleView,e.DocumentHelper=n.DocumentHelper,e.LayoutViewer=n.LayoutViewer,e.PageLayoutViewer=n.PageLayoutViewer,e.WebLayoutViewer=n.WebLayoutViewer,e.Rect=n.Rect,e.Padding=n.Padding,e.Margin=n.Margin,e.Widget=n.Widget,e.BlockContainer=n.BlockContainer,e.BodyWidget=n.BodyWidget,e.HeaderFooterWidget=n.HeaderFooterWidget,e.BlockWidget=n.BlockWidget,e.FootNoteWidget=n.FootNoteWidget,e.ParagraphWidget=n.ParagraphWidget,e.TablePosition=n.TablePosition,e.TableWidget=n.TableWidget,e.TableRowWidget=n.TableRowWidget,e.TableCellWidget=n.TableCellWidget,e.LineWidget=n.LineWidget,e.ElementBox=n.ElementBox,e.FieldElementBox=n.FieldElementBox,e.FormField=n.FormField,e.TextFormField=n.TextFormField,e.CheckBoxFormField=n.CheckBoxFormField,e.DropDownFormField=n.DropDownFormField,e.TextElementBox=n.TextElementBox,e.Footnote=n.Footnote,e.FootnoteElementBox=n.FootnoteElementBox,e.ErrorTextElementBox=n.ErrorTextElementBox,e.FieldTextElementBox=n.FieldTextElementBox,e.TabElementBox=n.TabElementBox,e.BookmarkElementBox=n.BookmarkElementBox,e.ContentControl=n.ContentControl,e.ContentControlProperties=n.ContentControlProperties,e.ContentControlListItems=n.ContentControlListItems,e.CheckBoxState=n.CheckBoxState,e.XmlMapping=n.XmlMapping,e.CustomXmlPart=n.CustomXmlPart,e.ShapeCommon=n.ShapeCommon,e.ShapeBase=n.ShapeBase,e.ShapeElementBox=n.ShapeElementBox,e.TextFrame=n.TextFrame,e.LineFormat=n.LineFormat,e.FillFormat=n.FillFormat,e.ImageElementBox=n.ImageElementBox,e.ListTextElementBox=n.ListTextElementBox,e.EditRangeEndElementBox=n.EditRangeEndElementBox,e.EditRangeStartElementBox=n.EditRangeStartElementBox,e.ChartElementBox=n.ChartElementBox,e.ChartArea=n.ChartArea,e.ChartCategory=n.ChartCategory,e.ChartData=n.ChartData,e.ChartLegend=n.ChartLegend,e.ChartSeries=n.ChartSeries,e.ChartErrorBar=n.ChartErrorBar,e.ChartSeriesFormat=n.ChartSeriesFormat,e.ChartDataLabels=n.ChartDataLabels,e.ChartTrendLines=n.ChartTrendLines,e.ChartTitleArea=n.ChartTitleArea,e.ChartDataFormat=n.ChartDataFormat,e.ChartFill=n.ChartFill,e.ChartLayout=n.ChartLayout,e.ChartCategoryAxis=n.ChartCategoryAxis,e.ChartDataTable=n.ChartDataTable,e.CommentCharacterElementBox=n.CommentCharacterElementBox,e.CommentElementBox=n.CommentElementBox,e.Page=n.Page,e.WTableHolder=n.WTableHolder,e.WColumn=n.WColumn,e.ColumnSizeInfo=n.ColumnSizeInfo,e.Layout=n.Layout,e.Renderer=n.Renderer,e.SfdtReader=n.SfdtReader,e.TextHelper=n.TextHelper,e.Zoom=n.Zoom,e.WordExport=n.WordExport,e.TextExport=n.TextExport,e.SfdtExport=n.SfdtExport,e.HtmlExport=n.HtmlExport,e.DocumentEditorSettings=n.DocumentEditorSettings,e.DocumentEditor=n.DocumentEditor,e.ServerActionSettings=n.ServerActionSettings,e.FormFieldSettings=n.FormFieldSettings,e.CollaborativeEditingSettings=n.CollaborativeEditingSettings,e.ContainerServerActionSettings=n.ContainerServerActionSettings,e.Toolbar=n.Toolbar,e.DocumentEditorContainer=n.DocumentEditorContainer,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
10
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-documenteditor"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-documenteditor","@angular/common"],t):t(e["ej2-angular-documenteditor"]={},e.ng.core,e.ej2.angular.base,e.ej2.documenteditor,e.ng.common)}(this,function(e,t,o,n,i){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])};return function(t,o){function n(){this.constructor=t}e(t,o),t.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),a=this&&this.__decorate||function(e,t,o,n){var i,r=arguments.length,a=r<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,o,n);else for(var l=e.length-1;l>=0;l--)(i=e[l])&&(a=(r<3?i(a):r>3?i(t,o,a):i(t,o))||a);return r>3&&a&&Object.defineProperty(t,o,a),a},l=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},c=["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"],d=["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"],s=[];e.DocumentEditorComponent=function(e){function t(t,n,i,r){var a=e.call(this)||this;a.ngEle=t,a.srenderer=n,a.viewContainerRef=i,a.injector=r,a.element=a.ngEle.nativeElement,a.injectedModules=a.injectedModules||[];try{var l=a.injector.get("DocumentEditorPrint");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(c){}try{l=a.injector.get("DocumentEditorSfdtExport");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(u){}try{l=a.injector.get("DocumentEditorWordExport");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(m){}try{l=a.injector.get("DocumentEditorTextExport");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(g){}try{l=a.injector.get("DocumentEditorSelection");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(p){}try{l=a.injector.get("DocumentEditorSearch");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(h){}try{l=a.injector.get("DocumentEditorEditor");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(C){}try{l=a.injector.get("DocumentEditorEditorHistory");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(E){}try{l=a.injector.get("DocumentEditorOptionsPane");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(D){}try{l=a.injector.get("DocumentEditorContextMenu");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(f){}try{l=a.injector.get("DocumentEditorImageResizer");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(S){}try{l=a.injector.get("DocumentEditorHyperlinkDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(v){}try{l=a.injector.get("DocumentEditorTableDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(y){}try{l=a.injector.get("DocumentEditorBookmarkDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(b){}try{l=a.injector.get("DocumentEditorTableOfContentsDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(x){}try{l=a.injector.get("DocumentEditorPageSetupDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(F){}try{l=a.injector.get("DocumentEditorParagraphDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(j){}try{l=a.injector.get("DocumentEditorListDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(T){}try{l=a.injector.get("DocumentEditorStyleDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(M){}try{l=a.injector.get("DocumentEditorStylesDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(P){}try{l=a.injector.get("DocumentEditorBulletsAndNumberingDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(O){}try{l=a.injector.get("DocumentEditorFontDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(B){}try{l=a.injector.get("DocumentEditorTablePropertiesDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(R){}try{l=a.injector.get("DocumentEditorBordersAndShadingDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(W){}try{l=a.injector.get("DocumentEditorTableOptionsDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(k){}try{l=a.injector.get("DocumentEditorCellOptionsDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(w){}try{l=a.injector.get("DocumentEditorSpellChecker");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(I){}try{l=a.injector.get("DocumentEditorSpellCheckDialog");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(H){}try{l=a.injector.get("DocumentEditorCollaborativeEditing");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(V){}return a.registerEvents(d),a.addTwoWay.call(a,s),o.setValue("currentInstance",a,a.viewContainerRef),a.context=new o.ComponentBase,a}return r(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(n.DocumentEditor),e.DocumentEditorComponent.decorators=[{type:t.Component,args:[{selector:"ejs-documenteditor",inputs:c,outputs:d,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.DocumentEditorComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.DocumentEditorComponent=a([o.ComponentMixins([o.ComponentBase]),l("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.DocumentEditorComponent);var u=function(){return function(){}}();u.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule],declarations:[e.DocumentEditorComponent],exports:[e.DocumentEditorComponent]}]}],u.ctorParameters=function(){return[]};var m={provide:"DocumentEditorPrint",useValue:n.Print},g={provide:"DocumentEditorSfdtExport",useValue:n.SfdtExport},p={provide:"DocumentEditorWordExport",useValue:n.WordExport},h={provide:"DocumentEditorTextExport",useValue:n.TextExport},C={provide:"DocumentEditorSelection",useValue:n.Selection},E={provide:"DocumentEditorSearch",useValue:n.Search},D={provide:"DocumentEditorEditor",useValue:n.Editor},f={provide:"DocumentEditorEditorHistory",useValue:n.EditorHistory},S={provide:"DocumentEditorOptionsPane",useValue:n.OptionsPane},v={provide:"DocumentEditorContextMenu",useValue:n.ContextMenu},y={provide:"DocumentEditorImageResizer",useValue:n.ImageResizer},b={provide:"DocumentEditorHyperlinkDialog",useValue:n.HyperlinkDialog},x={provide:"DocumentEditorTableDialog",useValue:n.TableDialog},F={provide:"DocumentEditorBookmarkDialog",useValue:n.BookmarkDialog},j={provide:"DocumentEditorTableOfContentsDialog",useValue:n.TableOfContentsDialog},T={provide:"DocumentEditorPageSetupDialog",useValue:n.PageSetupDialog},M={provide:"DocumentEditorParagraphDialog",useValue:n.ParagraphDialog},P={provide:"DocumentEditorListDialog",useValue:n.ListDialog},O={provide:"DocumentEditorStyleDialog",useValue:n.StyleDialog},B={provide:"DocumentEditorStylesDialog",useValue:n.StylesDialog},R={provide:"DocumentEditorBulletsAndNumberingDialog",useValue:n.BulletsAndNumberingDialog},W={provide:"DocumentEditorFontDialog",useValue:n.FontDialog},k={provide:"DocumentEditorTablePropertiesDialog",useValue:n.TablePropertiesDialog},w={provide:"DocumentEditorBordersAndShadingDialog",useValue:n.BordersAndShadingDialog},I={provide:"DocumentEditorTableOptionsDialog",useValue:n.TableOptionsDialog},H={provide:"DocumentEditorCellOptionsDialog",useValue:n.CellOptionsDialog},V={provide:"DocumentEditorSpellChecker",useValue:n.SpellChecker},L={provide:"DocumentEditorSpellCheckDialog",useValue:n.SpellCheckDialog},A={provide:"DocumentEditorCollaborativeEditing",useValue:n.CollaborativeEditing},z=function(){return function(){}}();z.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule,u],exports:[u],providers:[m,g,p,h,C,E,D,f,S,v,y,b,x,F,j,T,M,P,O,B,R,W,k,w,I,H,V,L,A]}]}],z.ctorParameters=function(){return[]};var _=this&&this.__decorate||function(e,t,o,n){var i,r=arguments.length,a=r<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,o,n);else for(var l=e.length-1;l>=0;l--)(i=e[l])&&(a=(r<3?i(a):r>3?i(t,o,a):i(t,o))||a);return r>3&&a&&Object.defineProperty(t,o,a),a},q=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},N=["currentUser","documentEditorSettings","documentSettings","enableComment","enableCsp","enableLocalPaste","enableLockAndEdit","enablePersistence","enableRtl","enableSpellCheck","enableToolbar","enableTrackChanges","headers","height","layoutType","locale","restrictEditing","serverActionSettings","serviceUrl","showPropertiesPane","toolbarItems","userColor","width","zIndex"],U=["beforeCommentAction","beforePaneSwitch","commentDelete","contentChange","contentControl","created","customContextMenuBeforeOpen","customContextMenuSelect","destroyed","documentChange","selectionChange","serviceFailure","toolbarClick","trackChange","beforeXmlHttpRequestSend"],X=[];e.DocumentEditorContainerComponent=function(e){function t(t,n,i,r){var a=e.call(this)||this;a.ngEle=t,a.srenderer=n,a.viewContainerRef=i,a.injector=r,a.element=a.ngEle.nativeElement,a.injectedModules=a.injectedModules||[];try{var l=a.injector.get("DocumentEditorToolbar");-1===a.injectedModules.indexOf(l)&&a.injectedModules.push(l)}catch(c){}return a.registerEvents(U),a.addTwoWay.call(a,X),o.setValue("currentInstance",a,a.viewContainerRef),a.context=new o.ComponentBase,a}return r(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(n.DocumentEditorContainer),e.DocumentEditorContainerComponent.decorators=[{type:t.Component,args:[{selector:"ejs-documenteditorcontainer",inputs:N,outputs:U,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.DocumentEditorContainerComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.DocumentEditorContainerComponent=_([o.ComponentMixins([o.ComponentBase]),q("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.DocumentEditorContainerComponent);var Z=function(){return function(){}}();Z.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule],declarations:[e.DocumentEditorContainerComponent],exports:[e.DocumentEditorContainerComponent]}]}],Z.ctorParameters=function(){return[]};var G={provide:"DocumentEditorToolbar",useValue:n.Toolbar},J=function(){return function(){}}();J.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule,Z],exports:[Z],providers:[G]}]}],J.ctorParameters=function(){return[]},e.DocumentEditorModule=u,e.DocumentEditorAllModule=z,e.PrintService=m,e.SfdtExportService=g,e.WordExportService=p,e.TextExportService=h,e.SelectionService=C,e.SearchService=E,e.EditorService=D,e.EditorHistoryService=f,e.OptionsPaneService=S,e.ContextMenuService=v,e.ImageResizerService=y,e.HyperlinkDialogService=b,e.TableDialogService=x,e.BookmarkDialogService=F,e.TableOfContentsDialogService=j,e.PageSetupDialogService=T,e.ParagraphDialogService=M,e.ListDialogService=P,e.StyleDialogService=O,e.StylesDialogService=B,e.BulletsAndNumberingDialogService=R,e.FontDialogService=W,e.TablePropertiesDialogService=k,e.BordersAndShadingDialogService=w,e.TableOptionsDialogService=I,e.CellOptionsDialogService=H,e.SpellCheckerService=V,e.SpellCheckDialogService=L,e.CollaborativeEditingService=A,e.DocumentEditorContainerModule=Z,e.DocumentEditorContainerAllModule=J,e.ToolbarService=G,e.ɵc=N,e.ɵd=U,e.ɵa=c,e.ɵb=d,e.Dictionary=n.Dictionary,e.WUniqueFormat=n.WUniqueFormat,e.WUniqueFormats=n.WUniqueFormats,e.XmlHttpRequestHandler=n.XmlHttpRequestHandler,e.internalZoomFactorChange=n.internalZoomFactorChange,e.contentChangeEvent=n.contentChangeEvent,e.documentChangeEvent=n.documentChangeEvent,e.selectionChangeEvent=n.selectionChangeEvent,e.zoomFactorChangeEvent=n.zoomFactorChangeEvent,e.beforeFieldFillEvent=n.beforeFieldFillEvent,e.afterFieldFillEvent=n.afterFieldFillEvent,e.afterFormFieldFillEvent=n.afterFormFieldFillEvent,e.beforeFormFieldFillEvent=n.beforeFormFieldFillEvent,e.serviceFailureEvent=n.serviceFailureEvent,e.viewChangeEvent=n.viewChangeEvent,e.customContextMenuSelectEvent=n.customContextMenuSelectEvent,e.customContextMenuBeforeOpenEvent=n.customContextMenuBeforeOpenEvent,e.contentControlEvent=n.contentControlEvent,e.commentBeginEvent=n.commentBeginEvent,e.commentEndEvent=n.commentEndEvent,e.beforeCommentActionEvent=n.beforeCommentActionEvent,e.commentDeleteEvent=n.commentDeleteEvent,e.beforePaneSwitchEvent=n.beforePaneSwitchEvent,e.requestNavigateEvent=n.requestNavigateEvent,e.actionCompleteEvent=n.actionCompleteEvent,e.trackChangeEvent=n.trackChangeEvent,e.searchResultsChangeEvent=n.searchResultsChangeEvent,e.keyDownEvent=n.keyDownEvent,e.toolbarClickEvent=n.toolbarClickEvent,e.beforeFileOpenEvent=n.beforeFileOpenEvent,e.internalviewChangeEvent=n.internalviewChangeEvent,e.beforeXmlHttpRequestSend=n.beforeXmlHttpRequestSend,e.Print=n.Print,e.ContextMenu=n.ContextMenu,e.CommentReviewPane=n.CommentReviewPane,e.CommentPane=n.CommentPane,e.CommentView=n.CommentView,e.HyperlinkDialog=n.HyperlinkDialog,e.TableDialog=n.TableDialog,e.BookmarkDialog=n.BookmarkDialog,e.TableOfContentsDialog=n.TableOfContentsDialog,e.PageSetupDialog=n.PageSetupDialog,e.ParagraphDialog=n.ParagraphDialog,e.ListDialog=n.ListDialog,e.StyleDialog=n.StyleDialog,e.BulletsAndNumberingDialog=n.BulletsAndNumberingDialog,e.FontDialog=n.FontDialog,e.TablePropertiesDialog=n.TablePropertiesDialog,e.BordersAndShadingDialog=n.BordersAndShadingDialog,e.TableOptionsDialog=n.TableOptionsDialog,e.CellOptionsDialog=n.CellOptionsDialog,e.StylesDialog=n.StylesDialog,e.SpellCheckDialog=n.SpellCheckDialog,e.CheckBoxFormFieldDialog=n.CheckBoxFormFieldDialog,e.TextFormFieldDialog=n.TextFormFieldDialog,e.DropDownFormFieldDialog=n.DropDownFormFieldDialog,e.FormFieldPopUp=n.FormFieldPopUp,e.Editor=n.Editor,e.ImageResizer=n.ImageResizer,e.ImageResizingPoints=n.ImageResizingPoints,e.SelectedImageInfo=n.SelectedImageInfo,e.TableResizer=n.TableResizer,e.HelperMethods=n.HelperMethods,e.Point=n.Point,e.Base64=n.Base64,e.WrapPosition=n.WrapPosition,e.CollaborativeEditing=n.CollaborativeEditing,e.EditorHistory=n.EditorHistory,e.BaseHistoryInfo=n.BaseHistoryInfo,e.HistoryInfo=n.HistoryInfo,e.ModifiedLevel=n.ModifiedLevel,e.ModifiedParagraphFormat=n.ModifiedParagraphFormat,e.RowHistoryFormat=n.RowHistoryFormat,e.TableHistoryInfo=n.TableHistoryInfo,e.TableFormatHistoryInfo=n.TableFormatHistoryInfo,e.RowFormatHistoryInfo=n.RowFormatHistoryInfo,e.CellFormatHistoryInfo=n.CellFormatHistoryInfo,e.CellHistoryFormat=n.CellHistoryFormat,e.WSectionFormat=n.WSectionFormat,e.WStyle=n.WStyle,e.WParagraphStyle=n.WParagraphStyle,e.WCharacterStyle=n.WCharacterStyle,e.WStyles=n.WStyles,e.WCharacterFormat=n.WCharacterFormat,e.WListFormat=n.WListFormat,e.WTabStop=n.WTabStop,e.WParagraphFormat=n.WParagraphFormat,e.WTableFormat=n.WTableFormat,e.WRowFormat=n.WRowFormat,e.WCellFormat=n.WCellFormat,e.WBorder=n.WBorder,e.WBorders=n.WBorders,e.WShading=n.WShading,e.WList=n.WList,e.WAbstractList=n.WAbstractList,e.WListLevel=n.WListLevel,e.WLevelOverride=n.WLevelOverride,e.AddUserDialog=n.AddUserDialog,e.EnforceProtectionDialog=n.EnforceProtectionDialog,e.UnProtectDocumentDialog=n.UnProtectDocumentDialog,e.RestrictEditing=n.RestrictEditing,e.Search=n.Search,e.OptionsPane=n.OptionsPane,e.TextSearch=n.TextSearch,e.SearchWidgetInfo=n.SearchWidgetInfo,e.TextSearchResult=n.TextSearchResult,e.TextSearchResults=n.TextSearchResults,e.Selection=n.Selection,e.SelectionCharacterFormat=n.SelectionCharacterFormat,e.SelectionParagraphFormat=n.SelectionParagraphFormat,e.SelectionSectionFormat=n.SelectionSectionFormat,e.SelectionTableFormat=n.SelectionTableFormat,e.SelectionCellFormat=n.SelectionCellFormat,e.SelectionRowFormat=n.SelectionRowFormat,e.SelectionImageFormat=n.SelectionImageFormat,e.TextPosition=n.TextPosition,e.SelectionWidgetInfo=n.SelectionWidgetInfo,e.Hyperlink=n.Hyperlink,e.ImageInfo=n.ImageInfo,e.SpellChecker=n.SpellChecker,e.Optimized=n.Optimized,e.Regular=n.Regular,e.Revision=n.Revision,e.RevisionCollection=n.RevisionCollection,e.TrackChangesPane=n.TrackChangesPane,e.ChangesSingleView=n.ChangesSingleView,e.DocumentHelper=n.DocumentHelper,e.LayoutViewer=n.LayoutViewer,e.PageLayoutViewer=n.PageLayoutViewer,e.WebLayoutViewer=n.WebLayoutViewer,e.Rect=n.Rect,e.Padding=n.Padding,e.Margin=n.Margin,e.Widget=n.Widget,e.BlockContainer=n.BlockContainer,e.BodyWidget=n.BodyWidget,e.HeaderFooterWidget=n.HeaderFooterWidget,e.BlockWidget=n.BlockWidget,e.FootNoteWidget=n.FootNoteWidget,e.ParagraphWidget=n.ParagraphWidget,e.TablePosition=n.TablePosition,e.TableWidget=n.TableWidget,e.TableRowWidget=n.TableRowWidget,e.TableCellWidget=n.TableCellWidget,e.LineWidget=n.LineWidget,e.ElementBox=n.ElementBox,e.FieldElementBox=n.FieldElementBox,e.FormField=n.FormField,e.TextFormField=n.TextFormField,e.CheckBoxFormField=n.CheckBoxFormField,e.DropDownFormField=n.DropDownFormField,e.TextElementBox=n.TextElementBox,e.Footnote=n.Footnote,e.FootnoteElementBox=n.FootnoteElementBox,e.ErrorTextElementBox=n.ErrorTextElementBox,e.FieldTextElementBox=n.FieldTextElementBox,e.TabElementBox=n.TabElementBox,e.BookmarkElementBox=n.BookmarkElementBox,e.ContentControl=n.ContentControl,e.ContentControlProperties=n.ContentControlProperties,e.ContentControlListItems=n.ContentControlListItems,e.CheckBoxState=n.CheckBoxState,e.XmlMapping=n.XmlMapping,e.CustomXmlPart=n.CustomXmlPart,e.ShapeCommon=n.ShapeCommon,e.ShapeBase=n.ShapeBase,e.ShapeElementBox=n.ShapeElementBox,e.TextFrame=n.TextFrame,e.LineFormat=n.LineFormat,e.FillFormat=n.FillFormat,e.ImageElementBox=n.ImageElementBox,e.ListTextElementBox=n.ListTextElementBox,e.EditRangeEndElementBox=n.EditRangeEndElementBox,e.EditRangeStartElementBox=n.EditRangeStartElementBox,e.ChartElementBox=n.ChartElementBox,e.ChartArea=n.ChartArea,e.ChartCategory=n.ChartCategory,e.ChartData=n.ChartData,e.ChartLegend=n.ChartLegend,e.ChartSeries=n.ChartSeries,e.ChartErrorBar=n.ChartErrorBar,e.ChartSeriesFormat=n.ChartSeriesFormat,e.ChartDataLabels=n.ChartDataLabels,e.ChartTrendLines=n.ChartTrendLines,e.ChartTitleArea=n.ChartTitleArea,e.ChartDataFormat=n.ChartDataFormat,e.ChartFill=n.ChartFill,e.ChartLayout=n.ChartLayout,e.ChartCategoryAxis=n.ChartCategoryAxis,e.ChartDataTable=n.ChartDataTable,e.CommentCharacterElementBox=n.CommentCharacterElementBox,e.CommentElementBox=n.CommentElementBox,e.Page=n.Page,e.WTableHolder=n.WTableHolder,e.WColumn=n.WColumn,e.ColumnSizeInfo=n.ColumnSizeInfo,e.Layout=n.Layout,e.Renderer=n.Renderer,e.SfdtReader=n.SfdtReader,e.TextHelper=n.TextHelper,e.Zoom=n.Zoom,e.WordExport=n.WordExport,e.TextExport=n.TextExport,e.SfdtExport=n.SfdtExport,e.HtmlExport=n.HtmlExport,e.DocumentEditorSettings=n.DocumentEditorSettings,e.DocumentSettings=n.DocumentSettings,e.DocumentEditor=n.DocumentEditor,e.ServerActionSettings=n.ServerActionSettings,e.FormFieldSettings=n.FormFieldSettings,e.CollaborativeEditingSettings=n.CollaborativeEditingSettings,e.ContainerServerActionSettings=n.ContainerServerActionSettings,e.Toolbar=n.Toolbar,e.DocumentEditorContainer=n.DocumentEditorContainer,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
11
11
|
//# sourceMappingURL=ej2-angular-documenteditor.umd.min.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-angular-documenteditor.umd.min.js","sources":["~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor.component.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor-all.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer.component.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer-all.module.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditor } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['acceptTab','currentUser','defaultPasteOption','documentEditorSettings','documentName','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'];\nexport const /** @type {?} */ outputs: string[] = ['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'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-documenteditor` represents the Angular Document Editor Component.\n * ```html\n * <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorComponent extends DocumentEditor implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionComplete: any;\n\tafterFormFieldFill: any;\n\tbeforeCommentAction: any;\n\tbeforeFileOpen: any;\n\tbeforeFormFieldFill: any;\n\tbeforePaneSwitch: any;\n\tcommentBegin: any;\n\tcommentDelete: any;\n\tcommentEnd: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tkeyDown: any;\n\trequestNavigate: any;\n\tsearchResultsChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttrackChange: any;\n\tviewChange: any;\n\tzoomFactorChange: any;\npublic beforeXmlHttpRequestSend: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSfdtExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorWordExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTextExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSearch');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorEditor');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorEditorHistory');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorOptionsPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorImageResizer');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorHyperlinkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBookmarkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableOfContentsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorPageSetupDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorParagraphDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorListDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorStyleDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorStylesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBulletsAndNumberingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorFontDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTablePropertiesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBordersAndShadingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCellOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSpellChecker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSpellCheckDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditing');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-documenteditor',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DocumentEditorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorComponent.ctorParameters;\n/** @type {?} */\nDocumentEditorComponent.prototype.context;\n/** @type {?} */\nDocumentEditorComponent.prototype.tagObjects;\n/** @type {?} */\nDocumentEditorComponent.prototype.actionComplete;\n/** @type {?} */\nDocumentEditorComponent.prototype.afterFormFieldFill;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeCommentAction;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeFileOpen;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeFormFieldFill;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforePaneSwitch;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentBegin;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentDelete;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentEnd;\n/** @type {?} */\nDocumentEditorComponent.prototype.contentChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.contentControl;\n/** @type {?} */\nDocumentEditorComponent.prototype.created;\n/** @type {?} */\nDocumentEditorComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nDocumentEditorComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nDocumentEditorComponent.prototype.destroyed;\n/** @type {?} */\nDocumentEditorComponent.prototype.documentChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.keyDown;\n/** @type {?} */\nDocumentEditorComponent.prototype.requestNavigate;\n/** @type {?} */\nDocumentEditorComponent.prototype.searchResultsChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.selectionChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.serviceFailure;\n/** @type {?} */\nDocumentEditorComponent.prototype.trackChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.viewChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.zoomFactorChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeXmlHttpRequestSend;\n/** @type {?} */\nDocumentEditorComponent.prototype.registerEvents;\n/** @type {?} */\nDocumentEditorComponent.prototype.addTwoWay;\n/** @type {?} */\nDocumentEditorComponent.prototype.ngEle;\n/** @type {?} */\nDocumentEditorComponent.prototype.srenderer;\n/** @type {?} */\nDocumentEditorComponent.prototype.viewContainerRef;\n/** @type {?} */\nDocumentEditorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\n/**\n * NgModule definition for the DocumentEditor component.\n */\nexport class DocumentEditorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DocumentEditorComponent\n ],\n exports: [\n DocumentEditorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\nimport { DocumentEditorModule } from './documenteditor.module';\nimport {Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing} from '@syncfusion/ej2-documenteditor';\n\n\nexport const /** @type {?} */ PrintService: ValueProvider = { provide: 'DocumentEditorPrint', useValue: Print};\nexport const /** @type {?} */ SfdtExportService: ValueProvider = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport};\nexport const /** @type {?} */ WordExportService: ValueProvider = { provide: 'DocumentEditorWordExport', useValue: WordExport};\nexport const /** @type {?} */ TextExportService: ValueProvider = { provide: 'DocumentEditorTextExport', useValue: TextExport};\nexport const /** @type {?} */ SelectionService: ValueProvider = { provide: 'DocumentEditorSelection', useValue: Selection};\nexport const /** @type {?} */ SearchService: ValueProvider = { provide: 'DocumentEditorSearch', useValue: Search};\nexport const /** @type {?} */ EditorService: ValueProvider = { provide: 'DocumentEditorEditor', useValue: Editor};\nexport const /** @type {?} */ EditorHistoryService: ValueProvider = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory};\nexport const /** @type {?} */ OptionsPaneService: ValueProvider = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ ImageResizerService: ValueProvider = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer};\nexport const /** @type {?} */ HyperlinkDialogService: ValueProvider = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog};\nexport const /** @type {?} */ TableDialogService: ValueProvider = { provide: 'DocumentEditorTableDialog', useValue: TableDialog};\nexport const /** @type {?} */ BookmarkDialogService: ValueProvider = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog};\nexport const /** @type {?} */ TableOfContentsDialogService: ValueProvider = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog};\nexport const /** @type {?} */ PageSetupDialogService: ValueProvider = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog};\nexport const /** @type {?} */ ParagraphDialogService: ValueProvider = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog};\nexport const /** @type {?} */ ListDialogService: ValueProvider = { provide: 'DocumentEditorListDialog', useValue: ListDialog};\nexport const /** @type {?} */ StyleDialogService: ValueProvider = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog};\nexport const /** @type {?} */ StylesDialogService: ValueProvider = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog};\nexport const /** @type {?} */ BulletsAndNumberingDialogService: ValueProvider = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog};\nexport const /** @type {?} */ FontDialogService: ValueProvider = { provide: 'DocumentEditorFontDialog', useValue: FontDialog};\nexport const /** @type {?} */ TablePropertiesDialogService: ValueProvider = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog};\nexport const /** @type {?} */ BordersAndShadingDialogService: ValueProvider = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog};\nexport const /** @type {?} */ TableOptionsDialogService: ValueProvider = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog};\nexport const /** @type {?} */ CellOptionsDialogService: ValueProvider = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog};\nexport const /** @type {?} */ SpellCheckerService: ValueProvider = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker};\nexport const /** @type {?} */ SpellCheckDialogService: ValueProvider = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog};\nexport const /** @type {?} */ CollaborativeEditingService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing};\n/**\n * NgModule definition for the DocumentEditor component with providers.\n */\nexport class DocumentEditorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DocumentEditorModule],\n exports: [\n DocumentEditorModule\n ],\n providers:[\n PrintService,\n SfdtExportService,\n WordExportService,\n TextExportService,\n SelectionService,\n SearchService,\n EditorService,\n EditorHistoryService,\n OptionsPaneService,\n ContextMenuService,\n ImageResizerService,\n HyperlinkDialogService,\n TableDialogService,\n BookmarkDialogService,\n TableOfContentsDialogService,\n PageSetupDialogService,\n ParagraphDialogService,\n ListDialogService,\n StyleDialogService,\n StylesDialogService,\n BulletsAndNumberingDialogService,\n FontDialogService,\n TablePropertiesDialogService,\n BordersAndShadingDialogService,\n TableOptionsDialogService,\n CellOptionsDialogService,\n SpellCheckerService,\n SpellCheckDialogService,\n CollaborativeEditingService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['currentUser','documentEditorSettings','enableComment','enableCsp','enableLocalPaste','enableLockAndEdit','enablePersistence','enableRtl','enableSpellCheck','enableToolbar','enableTrackChanges','headers','height','layoutType','locale','restrictEditing','serverActionSettings','serviceUrl','showPropertiesPane','toolbarItems','userColor','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['beforeCommentAction','beforePaneSwitch','commentDelete','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','selectionChange','serviceFailure','toolbarClick','trackChange','beforeXmlHttpRequestSend'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-documenteditor-container` represents the Angular Document Editor Container.\n * ```html\n * <ejs-documenteditor-container></ejs-documenteditor-container>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tbeforeCommentAction: any;\n\tbeforePaneSwitch: any;\n\tcommentDelete: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttoolbarClick: any;\n\ttrackChange: any;\npublic beforeXmlHttpRequestSend: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-documenteditorcontainer',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DocumentEditorContainerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerComponent.ctorParameters;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.context;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.tagObjects;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforeCommentAction;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforePaneSwitch;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.commentDelete;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.contentChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.contentControl;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.created;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.destroyed;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.documentChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.selectionChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.serviceFailure;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.toolbarClick;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.trackChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforeXmlHttpRequestSend;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.registerEvents;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.addTwoWay;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.ngEle;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.srenderer;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.viewContainerRef;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\n/**\n * NgModule definition for the DocumentEditorContainer component.\n */\nexport class DocumentEditorContainerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DocumentEditorContainerComponent\n ],\n exports: [\n DocumentEditorContainerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorContainerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\nimport { DocumentEditorContainerModule } from './documenteditorcontainer.module';\nimport {Toolbar} from '@syncfusion/ej2-documenteditor';\n\n\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'DocumentEditorToolbar', useValue: Toolbar};\n/**\n * NgModule definition for the DocumentEditorContainer component with providers.\n */\nexport class DocumentEditorContainerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DocumentEditorContainerModule],\n exports: [\n DocumentEditorContainerModule\n ],\n providers:[\n ToolbarService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorContainerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["inputs","outputs","twoWays","exports","DocumentEditorComponent","_super","ngEle","srenderer","viewContainerRef","injector","_this","call","this","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","_h","_j","_k","_l","_m","_o","_p","_q","_r","_s","_t","_u","_v","_w","_x","_y","_z","_0","_1","_2","_3","_4","registerEvents","addTwoWay","setValue","context","ComponentBase","__extends","prototype","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","DocumentEditor","decorators","type","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","queries","ctorParameters","ElementRef","Renderer2","ViewContainerRef","Injector","__decorate","ComponentMixins","__metadata","DocumentEditorModule","NgModule","imports","CommonModule","declarations","PrintService","provide","useValue","Print","SfdtExportService","SfdtExport","WordExportService","WordExport","TextExportService","TextExport","SelectionService","Selection","SearchService","Search","EditorService","Editor","EditorHistoryService","EditorHistory","OptionsPaneService","OptionsPane","ContextMenuService","ContextMenu","ImageResizerService","ImageResizer","HyperlinkDialogService","HyperlinkDialog","TableDialogService","TableDialog","BookmarkDialogService","BookmarkDialog","TableOfContentsDialogService","TableOfContentsDialog","PageSetupDialogService","PageSetupDialog","ParagraphDialogService","ParagraphDialog","ListDialogService","ListDialog","StyleDialogService","StyleDialog","StylesDialogService","StylesDialog","BulletsAndNumberingDialogService","BulletsAndNumberingDialog","FontDialogService","FontDialog","TablePropertiesDialogService","TablePropertiesDialog","BordersAndShadingDialogService","BordersAndShadingDialog","TableOptionsDialogService","TableOptionsDialog","CellOptionsDialogService","CellOptionsDialog","SpellCheckerService","SpellChecker","SpellCheckDialogService","SpellCheckDialog","CollaborativeEditingService","CollaborativeEditing","DocumentEditorAllModule","providers","DocumentEditorContainerComponent","DocumentEditorContainer","DocumentEditorContainerModule","ToolbarService","Toolbar","DocumentEditorContainerAllModule"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ej2-angular-documenteditor.umd.min.js","sources":["~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor.component.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor-all.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer.component.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer.module.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor-container/documenteditorcontainer-all.module.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditor } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['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'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-documenteditor` represents the Angular Document Editor Component.\n * ```html\n * <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorComponent extends DocumentEditor implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionComplete: any;\n\tafterFormFieldFill: any;\n\tbeforeCommentAction: any;\n\tbeforeFileOpen: any;\n\tbeforeFormFieldFill: any;\n\tbeforePaneSwitch: any;\n\tcommentBegin: any;\n\tcommentDelete: any;\n\tcommentEnd: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tkeyDown: any;\n\trequestNavigate: any;\n\tsearchResultsChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttrackChange: any;\n\tviewChange: any;\n\tzoomFactorChange: any;\npublic beforeXmlHttpRequestSend: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSfdtExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorWordExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTextExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSearch');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorEditor');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorEditorHistory');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorOptionsPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorImageResizer');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorHyperlinkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBookmarkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableOfContentsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorPageSetupDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorParagraphDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorListDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorStyleDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorStylesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBulletsAndNumberingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorFontDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTablePropertiesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorBordersAndShadingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorTableOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCellOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSpellChecker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorSpellCheckDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditing');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-documenteditor',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DocumentEditorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorComponent.ctorParameters;\n/** @type {?} */\nDocumentEditorComponent.prototype.context;\n/** @type {?} */\nDocumentEditorComponent.prototype.tagObjects;\n/** @type {?} */\nDocumentEditorComponent.prototype.actionComplete;\n/** @type {?} */\nDocumentEditorComponent.prototype.afterFormFieldFill;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeCommentAction;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeFileOpen;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeFormFieldFill;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforePaneSwitch;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentBegin;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentDelete;\n/** @type {?} */\nDocumentEditorComponent.prototype.commentEnd;\n/** @type {?} */\nDocumentEditorComponent.prototype.contentChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.contentControl;\n/** @type {?} */\nDocumentEditorComponent.prototype.created;\n/** @type {?} */\nDocumentEditorComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nDocumentEditorComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nDocumentEditorComponent.prototype.destroyed;\n/** @type {?} */\nDocumentEditorComponent.prototype.documentChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.keyDown;\n/** @type {?} */\nDocumentEditorComponent.prototype.requestNavigate;\n/** @type {?} */\nDocumentEditorComponent.prototype.searchResultsChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.selectionChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.serviceFailure;\n/** @type {?} */\nDocumentEditorComponent.prototype.trackChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.viewChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.zoomFactorChange;\n/** @type {?} */\nDocumentEditorComponent.prototype.beforeXmlHttpRequestSend;\n/** @type {?} */\nDocumentEditorComponent.prototype.registerEvents;\n/** @type {?} */\nDocumentEditorComponent.prototype.addTwoWay;\n/** @type {?} */\nDocumentEditorComponent.prototype.ngEle;\n/** @type {?} */\nDocumentEditorComponent.prototype.srenderer;\n/** @type {?} */\nDocumentEditorComponent.prototype.viewContainerRef;\n/** @type {?} */\nDocumentEditorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\n/**\n * NgModule definition for the DocumentEditor component.\n */\nexport class DocumentEditorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DocumentEditorComponent\n ],\n exports: [\n DocumentEditorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\nimport { DocumentEditorModule } from './documenteditor.module';\nimport {Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing} from '@syncfusion/ej2-documenteditor';\n\n\nexport const /** @type {?} */ PrintService: ValueProvider = { provide: 'DocumentEditorPrint', useValue: Print};\nexport const /** @type {?} */ SfdtExportService: ValueProvider = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport};\nexport const /** @type {?} */ WordExportService: ValueProvider = { provide: 'DocumentEditorWordExport', useValue: WordExport};\nexport const /** @type {?} */ TextExportService: ValueProvider = { provide: 'DocumentEditorTextExport', useValue: TextExport};\nexport const /** @type {?} */ SelectionService: ValueProvider = { provide: 'DocumentEditorSelection', useValue: Selection};\nexport const /** @type {?} */ SearchService: ValueProvider = { provide: 'DocumentEditorSearch', useValue: Search};\nexport const /** @type {?} */ EditorService: ValueProvider = { provide: 'DocumentEditorEditor', useValue: Editor};\nexport const /** @type {?} */ EditorHistoryService: ValueProvider = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory};\nexport const /** @type {?} */ OptionsPaneService: ValueProvider = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ ImageResizerService: ValueProvider = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer};\nexport const /** @type {?} */ HyperlinkDialogService: ValueProvider = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog};\nexport const /** @type {?} */ TableDialogService: ValueProvider = { provide: 'DocumentEditorTableDialog', useValue: TableDialog};\nexport const /** @type {?} */ BookmarkDialogService: ValueProvider = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog};\nexport const /** @type {?} */ TableOfContentsDialogService: ValueProvider = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog};\nexport const /** @type {?} */ PageSetupDialogService: ValueProvider = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog};\nexport const /** @type {?} */ ParagraphDialogService: ValueProvider = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog};\nexport const /** @type {?} */ ListDialogService: ValueProvider = { provide: 'DocumentEditorListDialog', useValue: ListDialog};\nexport const /** @type {?} */ StyleDialogService: ValueProvider = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog};\nexport const /** @type {?} */ StylesDialogService: ValueProvider = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog};\nexport const /** @type {?} */ BulletsAndNumberingDialogService: ValueProvider = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog};\nexport const /** @type {?} */ FontDialogService: ValueProvider = { provide: 'DocumentEditorFontDialog', useValue: FontDialog};\nexport const /** @type {?} */ TablePropertiesDialogService: ValueProvider = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog};\nexport const /** @type {?} */ BordersAndShadingDialogService: ValueProvider = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog};\nexport const /** @type {?} */ TableOptionsDialogService: ValueProvider = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog};\nexport const /** @type {?} */ CellOptionsDialogService: ValueProvider = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog};\nexport const /** @type {?} */ SpellCheckerService: ValueProvider = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker};\nexport const /** @type {?} */ SpellCheckDialogService: ValueProvider = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog};\nexport const /** @type {?} */ CollaborativeEditingService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing};\n/**\n * NgModule definition for the DocumentEditor component with providers.\n */\nexport class DocumentEditorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DocumentEditorModule],\n exports: [\n DocumentEditorModule\n ],\n providers:[\n PrintService,\n SfdtExportService,\n WordExportService,\n TextExportService,\n SelectionService,\n SearchService,\n EditorService,\n EditorHistoryService,\n OptionsPaneService,\n ContextMenuService,\n ImageResizerService,\n HyperlinkDialogService,\n TableDialogService,\n BookmarkDialogService,\n TableOfContentsDialogService,\n PageSetupDialogService,\n ParagraphDialogService,\n ListDialogService,\n StyleDialogService,\n StylesDialogService,\n BulletsAndNumberingDialogService,\n FontDialogService,\n TablePropertiesDialogService,\n BordersAndShadingDialogService,\n TableOptionsDialogService,\n CellOptionsDialogService,\n SpellCheckerService,\n SpellCheckDialogService,\n CollaborativeEditingService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['currentUser','documentEditorSettings','documentSettings','enableComment','enableCsp','enableLocalPaste','enableLockAndEdit','enablePersistence','enableRtl','enableSpellCheck','enableToolbar','enableTrackChanges','headers','height','layoutType','locale','restrictEditing','serverActionSettings','serviceUrl','showPropertiesPane','toolbarItems','userColor','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['beforeCommentAction','beforePaneSwitch','commentDelete','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','selectionChange','serviceFailure','toolbarClick','trackChange','beforeXmlHttpRequestSend'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-documenteditor-container` represents the Angular Document Editor Container.\n * ```html\n * <ejs-documenteditor-container></ejs-documenteditor-container>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tbeforeCommentAction: any;\n\tbeforePaneSwitch: any;\n\tcommentDelete: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttoolbarClick: any;\n\ttrackChange: any;\npublic beforeXmlHttpRequestSend: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-documenteditorcontainer',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DocumentEditorContainerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerComponent.ctorParameters;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.context;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.tagObjects;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforeCommentAction;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforePaneSwitch;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.commentDelete;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.contentChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.contentControl;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.created;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.destroyed;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.documentChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.selectionChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.serviceFailure;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.toolbarClick;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.trackChange;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.beforeXmlHttpRequestSend;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.registerEvents;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.addTwoWay;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.ngEle;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.srenderer;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.viewContainerRef;\n/** @type {?} */\nDocumentEditorContainerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\n/**\n * NgModule definition for the DocumentEditorContainer component.\n */\nexport class DocumentEditorContainerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DocumentEditorContainerComponent\n ],\n exports: [\n DocumentEditorContainerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorContainerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\nimport { DocumentEditorContainerModule } from './documenteditorcontainer.module';\nimport {Toolbar} from '@syncfusion/ej2-documenteditor';\n\n\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'DocumentEditorToolbar', useValue: Toolbar};\n/**\n * NgModule definition for the DocumentEditorContainer component with providers.\n */\nexport class DocumentEditorContainerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DocumentEditorContainerModule],\n exports: [\n DocumentEditorContainerModule\n ],\n providers:[\n ToolbarService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DocumentEditorContainerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDocumentEditorContainerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDocumentEditorContainerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["inputs","outputs","twoWays","exports","DocumentEditorComponent","_super","ngEle","srenderer","viewContainerRef","injector","_this","call","this","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","_h","_j","_k","_l","_m","_o","_p","_q","_r","_s","_t","_u","_v","_w","_x","_y","_z","_0","_1","_2","_3","_4","registerEvents","addTwoWay","setValue","context","ComponentBase","__extends","prototype","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","DocumentEditor","decorators","type","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","queries","ctorParameters","ElementRef","Renderer2","ViewContainerRef","Injector","__decorate","ComponentMixins","__metadata","DocumentEditorModule","NgModule","imports","CommonModule","declarations","PrintService","provide","useValue","Print","SfdtExportService","SfdtExport","WordExportService","WordExport","TextExportService","TextExport","SelectionService","Selection","SearchService","Search","EditorService","Editor","EditorHistoryService","EditorHistory","OptionsPaneService","OptionsPane","ContextMenuService","ContextMenu","ImageResizerService","ImageResizer","HyperlinkDialogService","HyperlinkDialog","TableDialogService","TableDialog","BookmarkDialogService","BookmarkDialog","TableOfContentsDialogService","TableOfContentsDialog","PageSetupDialogService","PageSetupDialog","ParagraphDialogService","ParagraphDialog","ListDialogService","ListDialog","StyleDialogService","StyleDialog","StylesDialogService","StylesDialog","BulletsAndNumberingDialogService","BulletsAndNumberingDialog","FontDialogService","FontDialog","TablePropertiesDialogService","TablePropertiesDialog","BordersAndShadingDialogService","BordersAndShadingDialog","TableOptionsDialogService","TableOptionsDialog","CellOptionsDialogService","CellOptionsDialog","SpellCheckerService","SpellChecker","SpellCheckDialogService","SpellCheckDialog","CollaborativeEditingService","CollaborativeEditing","DocumentEditorAllModule","providers","DocumentEditorContainerComponent","DocumentEditorContainer","DocumentEditorContainerModule","ToolbarService","Toolbar","DocumentEditorContainerAllModule"],"mappings":"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"}
|