@syncfusion/ej2-angular-documenteditor 26.2.7-ngcc → 26.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3969 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +119 -0
- package/esm2020/src/document-editor/documenteditor.component.mjs +276 -0
- package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
- package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
- package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +524 -0
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +524 -0
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/document-editor/documenteditor-all.module.d.ts +6 -0
- package/src/document-editor/documenteditor.component.d.ts +3 -0
- package/src/document-editor/documenteditor.module.d.ts +6 -0
- package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
- package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
- package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
- package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -592
- package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-documenteditor.js +0 -562
- package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
- package/dist/ej2-angular-documenteditor.umd.js +0 -1277
- package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
- package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
- package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
- package/ej2-angular-documenteditor.d.ts +0 -6
- package/ej2-angular-documenteditor.metadata.json +0 -1
- package/license +0 -10
@@ -1 +0,0 @@
|
|
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[] = ['autoResizeOnVisibilityChange','currentUser','documentEditorSettings','documentSettings','enableAutoFocus','enableComment','enableCsp','enableLocalPaste','enableLockAndEdit','enablePersistence','enableRtl','enableSpellCheck','enableToolbar','enableTrackChanges','headers','height','layoutType','locale','restrictEditing','serverActionSettings','serviceUrl','showPropertiesPane','toolbarItems','userColor','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['beforeAcceptRejectChanges','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\tbeforeAcceptRejectChanges: any;\n\tbeforeCommentAction: any;\n\tbeforePaneSwitch: any;\n\tcommentDelete: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttoolbarClick: any;\n\ttrackChange: any;\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.beforeAcceptRejectChanges;\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, ColumnsDialog, CollaborativeEditingHandler} 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};\nexport const /** @type {?} */ ColumnsDialogService: ValueProvider = { provide: 'DocumentEditorColumnsDialog', useValue: ColumnsDialog};\nexport const /** @type {?} */ CollaborativeEditingHandlerService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditingHandler', useValue: CollaborativeEditingHandler};\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 ColumnsDialogService,\n CollaborativeEditingHandlerService\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','autoResizeOnVisibilityChange','currentUser','defaultPasteOption','documentEditorSettings','documentName','documentSettings','enableAutoFocus','enableBookmarkDialog','enableBordersAndShadingDialog','enableCollaborativeEditing','enableColumnsDialog','enableComment','enableContextMenu','enableCursorOnReadOnly','enableEditor','enableEditorHistory','enableFontDialog','enableFootnoteAndEndnoteDialog','enableFormField','enableHyperlinkDialog','enableImageResizer','enableListDialog','enableLocalPaste','enableLockAndEdit','enableOptionsPane','enablePageSetupDialog','enableParagraphDialog','enablePersistence','enablePrint','enableRtl','enableSearch','enableSelection','enableSfdtExport','enableSpellCheck','enableStyleDialog','enableTableDialog','enableTableOfContentsDialog','enableTableOptionsDialog','enableTablePropertiesDialog','enableTextExport','enableTrackChanges','enableWordExport','headers','height','isReadOnly','layoutType','locale','pageGap','pageOutline','serverActionSettings','serviceUrl','showComments','showRevisions','useCtrlClickToFollowHyperlink','userColor','width','zIndex','zoomFactor'];\nexport const /** @type {?} */ outputs: string[] = ['actionComplete','afterFormFieldFill','beforeAcceptRejectChanges','beforeCommentAction','beforeFileOpen','beforeFormFieldFill','beforePaneSwitch','commentBegin','commentDelete','commentEnd','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','keyDown','requestNavigate','searchResultsChange','selectionChange','serviceFailure','trackChange','viewChange','zoomFactorChange','beforeXmlHttpRequestSend'];\nexport const /** @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\tbeforeAcceptRejectChanges: any;\n\tbeforeCommentAction: any;\n\tbeforeFileOpen: any;\n\tbeforeFormFieldFill: any;\n\tbeforePaneSwitch: any;\n\tcommentBegin: any;\n\tcommentDelete: any;\n\tcommentEnd: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tkeyDown: any;\n\trequestNavigate: any;\n\tsearchResultsChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttrackChange: any;\n\tviewChange: any;\n\tzoomFactorChange: any;\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 try {\n let mod = this.injector.get('DocumentEditorColumnsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditingHandler');\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.beforeAcceptRejectChanges;\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","CollaborativeEditingHandler","ColumnsDialog","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 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* filename: ej2-angular-documenteditor.umd.min.js
|
3
|
-
* version : 26.2.7
|
4
|
-
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
5
|
-
* Use of this code is subject to the terms of our license.
|
6
|
-
* A copy of the current license can be obtained at any time by e-mailing
|
7
|
-
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
8
|
-
* applicable laws.
|
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,L,r,o){"use strict";var n,w,i=this&&this.__extends||(n=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(e,t){e.__proto__=t}:function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])}),function(e,t){function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__decorate||function(e,t,r,o){var n,i=arguments.length,a=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,r):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,o);else for(var p=e.length-1;0<=p;p--)(n=e[p])&&(a=(i<3?n(a):3<i?n(t,r,a):n(t,r))||a);return 3<i&&a&&Object.defineProperty(t,r,a),a},p=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},l=["acceptTab","autoResizeOnVisibilityChange","currentUser","defaultPasteOption","documentEditorSettings","documentName","documentSettings","enableAutoFocus","enableBookmarkDialog","enableBordersAndShadingDialog","enableCollaborativeEditing","enableColumnsDialog","enableComment","enableContextMenu","enableCursorOnReadOnly","enableEditor","enableEditorHistory","enableFontDialog","enableFootnoteAndEndnoteDialog","enableFormField","enableHyperlinkDialog","enableImageResizer","enableListDialog","enableLocalPaste","enableLockAndEdit","enableOptionsPane","enablePageSetupDialog","enableParagraphDialog","enablePersistence","enablePrint","enableRtl","enableSearch","enableSelection","enableSfdtExport","enableSpellCheck","enableStyleDialog","enableTableDialog","enableTableOfContentsDialog","enableTableOptionsDialog","enableTablePropertiesDialog","enableTextExport","enableTrackChanges","enableWordExport","headers","height","isReadOnly","layoutType","locale","pageGap","pageOutline","serverActionSettings","serviceUrl","showComments","showRevisions","useCtrlClickToFollowHyperlink","userColor","width","zIndex","zoomFactor"],H=["actionComplete","afterFormFieldFill","beforeAcceptRejectChanges","beforeCommentAction","beforeFileOpen","beforeFormFieldFill","beforePaneSwitch","commentBegin","commentDelete","commentEnd","contentChange","contentControl","created","customContextMenuBeforeOpen","customContextMenuSelect","destroyed","documentChange","keyDown","requestNavigate","searchResultsChange","selectionChange","serviceFailure","trackChange","viewChange","zoomFactorChange","beforeXmlHttpRequestSend"],V=[];function y(e,t,r,O){var o=w.call(this)||this;o.ngEle=e,o.srenderer=t,o.viewContainerRef=r,o.injector=O,o.element=o.ngEle.nativeElement,o.injectedModules=o.injectedModules||[];try{var n=o.injector.get("DocumentEditorPrint");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(i){}try{n=o.injector.get("DocumentEditorSfdtExport");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(a){}try{n=o.injector.get("DocumentEditorWordExport");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(p){}try{n=o.injector.get("DocumentEditorTextExport");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(l){}try{n=o.injector.get("DocumentEditorSelection");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(y){}try{n=o.injector.get("DocumentEditorSearch");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(c){}try{n=o.injector.get("DocumentEditorEditor");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(P){}try{n=o.injector.get("DocumentEditorEditorHistory");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(s){}try{n=o.injector.get("DocumentEditorOptionsPane");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(d){}try{n=o.injector.get("DocumentEditorContextMenu");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(m){}try{n=o.injector.get("DocumentEditorImageResizer");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(u){}try{n=o.injector.get("DocumentEditorHyperlinkDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(g){}try{n=o.injector.get("DocumentEditorTableDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(h){}try{n=o.injector.get("DocumentEditorBookmarkDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(C){}try{n=o.injector.get("DocumentEditorTableOfContentsDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(f){}try{n=o.injector.get("DocumentEditorPageSetupDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(S){}try{n=o.injector.get("DocumentEditorParagraphDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(b){}try{n=o.injector.get("DocumentEditorListDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(E){}try{n=o.injector.get("DocumentEditorStyleDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(D){}try{n=o.injector.get("DocumentEditorStylesDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(F){}try{n=o.injector.get("DocumentEditorBulletsAndNumberingDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(v){}try{n=o.injector.get("DocumentEditorFontDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(x){}try{n=o.injector.get("DocumentEditorTablePropertiesDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(T){}try{n=o.injector.get("DocumentEditorBordersAndShadingDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(M){}try{n=o.injector.get("DocumentEditorTableOptionsDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(k){}try{n=o.injector.get("DocumentEditorCellOptionsDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(j){}try{n=o.injector.get("DocumentEditorSpellChecker");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(B){}try{n=o.injector.get("DocumentEditorSpellCheckDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(A){}try{n=o.injector.get("DocumentEditorCollaborativeEditing");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(R){}try{n=o.injector.get("DocumentEditorColumnsDialog");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(W){}try{n=o.injector.get("DocumentEditorCollaborativeEditingHandler");-1===o.injectedModules.indexOf(n)&&o.injectedModules.push(n)}catch(I){}return o.registerEvents(H),o.addTwoWay.call(o,V),L.setValue("currentInstance",o,o.viewContainerRef),o.context=new L.ComponentBase,o}e.DocumentEditorComponent=(w=r.DocumentEditor,i(y,w),y.prototype.ngOnInit=function(){this.context.ngOnInit(this)},y.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},y.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},y.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},y),e.DocumentEditorComponent.decorators=[{type:t.Component,args:[{selector:"ejs-documenteditor",inputs:l,outputs:H,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([L.ComponentMixins([L.ComponentBase]),p("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.DocumentEditorComponent);var c,p=function(){},a=(p.decorators=[{type:t.NgModule,args:[{imports:[o.CommonModule],declarations:[e.DocumentEditorComponent],exports:[e.DocumentEditorComponent]}]}],p.ctorParameters=function(){return[]},{provide:"DocumentEditorPrint",useValue:r.Print}),P={provide:"DocumentEditorSfdtExport",useValue:r.SfdtExport},s={provide:"DocumentEditorWordExport",useValue:r.WordExport},d={provide:"DocumentEditorTextExport",useValue:r.TextExport},m={provide:"DocumentEditorSelection",useValue:r.Selection},u={provide:"DocumentEditorSearch",useValue:r.Search},g={provide:"DocumentEditorEditor",useValue:r.Editor},h={provide:"DocumentEditorEditorHistory",useValue:r.EditorHistory},C={provide:"DocumentEditorOptionsPane",useValue:r.OptionsPane},f={provide:"DocumentEditorContextMenu",useValue:r.ContextMenu},S={provide:"DocumentEditorImageResizer",useValue:r.ImageResizer},b={provide:"DocumentEditorHyperlinkDialog",useValue:r.HyperlinkDialog},E={provide:"DocumentEditorTableDialog",useValue:r.TableDialog},D={provide:"DocumentEditorBookmarkDialog",useValue:r.BookmarkDialog},F={provide:"DocumentEditorTableOfContentsDialog",useValue:r.TableOfContentsDialog},v={provide:"DocumentEditorPageSetupDialog",useValue:r.PageSetupDialog},x={provide:"DocumentEditorParagraphDialog",useValue:r.ParagraphDialog},T={provide:"DocumentEditorListDialog",useValue:r.ListDialog},R={provide:"DocumentEditorStyleDialog",useValue:r.StyleDialog},W={provide:"DocumentEditorStylesDialog",useValue:r.StylesDialog},I={provide:"DocumentEditorBulletsAndNumberingDialog",useValue:r.BulletsAndNumberingDialog},O={provide:"DocumentEditorFontDialog",useValue:r.FontDialog},N={provide:"DocumentEditorTablePropertiesDialog",useValue:r.TablePropertiesDialog},z={provide:"DocumentEditorBordersAndShadingDialog",useValue:r.BordersAndShadingDialog},q={provide:"DocumentEditorTableOptionsDialog",useValue:r.TableOptionsDialog},U={provide:"DocumentEditorCellOptionsDialog",useValue:r.CellOptionsDialog},_={provide:"DocumentEditorSpellChecker",useValue:r.SpellChecker},X={provide:"DocumentEditorSpellCheckDialog",useValue:r.SpellCheckDialog},G={provide:"DocumentEditorCollaborativeEditing",useValue:r.CollaborativeEditing},K={provide:"DocumentEditorColumnsDialog",useValue:r.ColumnsDialog},Z={provide:"DocumentEditorCollaborativeEditingHandler",useValue:r.CollaborativeEditingHandler},M=function(){},k=(M.decorators=[{type:t.NgModule,args:[{imports:[o.CommonModule,p],exports:[p],providers:[a,P,s,d,m,u,g,h,C,f,S,b,E,D,F,v,x,T,R,W,I,O,N,z,q,U,_,X,G,K,Z]}]}],M.ctorParameters=function(){return[]},this&&this.__decorate||function(e,t,r,o){var n,i=arguments.length,a=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,r):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,o);else for(var p=e.length-1;0<=p;p--)(n=e[p])&&(a=(i<3?n(a):3<i?n(t,r,a):n(t,r))||a);return 3<i&&a&&Object.defineProperty(t,r,a),a}),j=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},J=["autoResizeOnVisibilityChange","currentUser","documentEditorSettings","documentSettings","enableAutoFocus","enableComment","enableCsp","enableLocalPaste","enableLockAndEdit","enablePersistence","enableRtl","enableSpellCheck","enableToolbar","enableTrackChanges","headers","height","layoutType","locale","restrictEditing","serverActionSettings","serviceUrl","showPropertiesPane","toolbarItems","userColor","width","zIndex"],B=["beforeAcceptRejectChanges","beforeCommentAction","beforePaneSwitch","commentDelete","contentChange","contentControl","created","customContextMenuBeforeOpen","customContextMenuSelect","destroyed","documentChange","selectionChange","serviceFailure","toolbarClick","trackChange","beforeXmlHttpRequestSend"],Y=[];function A(e,t,r,o){var n=c.call(this)||this;n.ngEle=e,n.srenderer=t,n.viewContainerRef=r,n.injector=o,n.element=n.ngEle.nativeElement,n.injectedModules=n.injectedModules||[];try{var i=n.injector.get("DocumentEditorToolbar");-1===n.injectedModules.indexOf(i)&&n.injectedModules.push(i)}catch(a){}return n.registerEvents(B),n.addTwoWay.call(n,Y),L.setValue("currentInstance",n,n.viewContainerRef),n.context=new L.ComponentBase,n}e.DocumentEditorContainerComponent=(i(A,c=r.DocumentEditorContainer),A.prototype.ngOnInit=function(){this.context.ngOnInit(this)},A.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},A.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},A.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},A),e.DocumentEditorContainerComponent.decorators=[{type:t.Component,args:[{selector:"ejs-documenteditorcontainer",inputs:J,outputs:B,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=k([L.ComponentMixins([L.ComponentBase]),j("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.DocumentEditorContainerComponent);i=function(){},i.decorators=[{type:t.NgModule,args:[{imports:[o.CommonModule],declarations:[e.DocumentEditorContainerComponent],exports:[e.DocumentEditorContainerComponent]}]}],i.ctorParameters=function(){return[]},j={provide:"DocumentEditorToolbar",useValue:r.Toolbar},k=function(){};k.decorators=[{type:t.NgModule,args:[{imports:[o.CommonModule,i],exports:[i],providers:[j]}]}],k.ctorParameters=function(){return[]},e.DocumentEditorModule=p,e.DocumentEditorAllModule=M,e.PrintService=a,e.SfdtExportService=P,e.WordExportService=s,e.TextExportService=d,e.SelectionService=m,e.SearchService=u,e.EditorService=g,e.EditorHistoryService=h,e.OptionsPaneService=C,e.ContextMenuService=f,e.ImageResizerService=S,e.HyperlinkDialogService=b,e.TableDialogService=E,e.BookmarkDialogService=D,e.TableOfContentsDialogService=F,e.PageSetupDialogService=v,e.ParagraphDialogService=x,e.ListDialogService=T,e.StyleDialogService=R,e.StylesDialogService=W,e.BulletsAndNumberingDialogService=I,e.FontDialogService=O,e.TablePropertiesDialogService=N,e.BordersAndShadingDialogService=z,e.TableOptionsDialogService=q,e.CellOptionsDialogService=U,e.SpellCheckerService=_,e.SpellCheckDialogService=X,e.CollaborativeEditingService=G,e.ColumnsDialogService=K,e.CollaborativeEditingHandlerService=Z,e.DocumentEditorContainerModule=i,e.DocumentEditorContainerAllModule=k,e.ToolbarService=j,e.ɵc=J,e.ɵd=B,e.ɵa=l,e.ɵb=H,e.CharacterRangeType=r.CharacterRangeType,e.FontScriptType=r.FontScriptType,e.FontHintType=r.FontHintType,e.LocaleId=r.LocaleId,e.SectionBreakType=r.SectionBreakType,e.CONTROL_CHARACTERS=r.CONTROL_CHARACTERS,e.Comment=r.Comment,e.Dictionary=r.Dictionary,e.WUniqueFormat=r.WUniqueFormat,e.WUniqueFormats=r.WUniqueFormats,e.XmlHttpRequestHandler=r.XmlHttpRequestHandler,e.internalZoomFactorChange=r.internalZoomFactorChange,e.contentChangeEvent=r.contentChangeEvent,e.documentChangeEvent=r.documentChangeEvent,e.selectionChangeEvent=r.selectionChangeEvent,e.zoomFactorChangeEvent=r.zoomFactorChangeEvent,e.beforeFieldFillEvent=r.beforeFieldFillEvent,e.afterFieldFillEvent=r.afterFieldFillEvent,e.afterFormFieldFillEvent=r.afterFormFieldFillEvent,e.beforeFormFieldFillEvent=r.beforeFormFieldFillEvent,e.serviceFailureEvent=r.serviceFailureEvent,e.viewChangeEvent=r.viewChangeEvent,e.customContextMenuSelectEvent=r.customContextMenuSelectEvent,e.customContextMenuBeforeOpenEvent=r.customContextMenuBeforeOpenEvent,e.contentControlEvent=r.contentControlEvent,e.commentBeginEvent=r.commentBeginEvent,e.commentEndEvent=r.commentEndEvent,e.beforeCommentActionEvent=r.beforeCommentActionEvent,e.commentDeleteEvent=r.commentDeleteEvent,e.revisionActionEvent=r.revisionActionEvent,e.beforePaneSwitchEvent=r.beforePaneSwitchEvent,e.requestNavigateEvent=r.requestNavigateEvent,e.actionCompleteEvent=r.actionCompleteEvent,e.trackChangeEvent=r.trackChangeEvent,e.searchResultsChangeEvent=r.searchResultsChangeEvent,e.keyDownEvent=r.keyDownEvent,e.toolbarClickEvent=r.toolbarClickEvent,e.beforeFileOpenEvent=r.beforeFileOpenEvent,e.internalviewChangeEvent=r.internalviewChangeEvent,e.beforeXmlHttpRequestSend=r.beforeXmlHttpRequestSend,e.protectionTypeChangeEvent=r.protectionTypeChangeEvent,e.internalDocumentEditorSettingsChange=r.internalDocumentEditorSettingsChange,e.internalStyleCollectionChange=r.internalStyleCollectionChange,e.defaultFont=r.defaultFont,e.internalAutoResize=r.internalAutoResize,e.beforeAutoResize=r.beforeAutoResize,e.trackChanges=r.trackChanges,e.internalOptionPaneChange=r.internalOptionPaneChange,e.sectionsProperty=r.sectionsProperty,e.fontSubstitutionTableProperty=r.fontSubstitutionTableProperty,e.characterFormatProperty=r.characterFormatProperty,e.paragraphFormatProperty=r.paragraphFormatProperty,e.listsProperty=r.listsProperty,e.abstractListsProperty=r.abstractListsProperty,e.backgroundProperty=r.backgroundProperty,e.stylesProperty=r.stylesProperty,e.commentsProperty=r.commentsProperty,e.revisionsProperty=r.revisionsProperty,e.customXmlProperty=r.customXmlProperty,e.defaultTabWidthProperty=r.defaultTabWidthProperty,e.formattingProperty=r.formattingProperty,e.trackChangesProperty=r.trackChangesProperty,e.protectionTypeProperty=r.protectionTypeProperty,e.enforcementProperty=r.enforcementProperty,e.hashValueProperty=r.hashValueProperty,e.saltValueProperty=r.saltValueProperty,e.cryptProviderTypeProperty=r.cryptProviderTypeProperty,e.cryptAlgorithmClassProperty=r.cryptAlgorithmClassProperty,e.cryptAlgorithmTypeProperty=r.cryptAlgorithmTypeProperty,e.cryptAlgorithmSidProperty=r.cryptAlgorithmSidProperty,e.cryptSpinCountProperty=r.cryptSpinCountProperty,e.doNotUseHTMLParagraphAutoSpacingProperty=r.doNotUseHTMLParagraphAutoSpacingProperty,e.alignTablesRowByRowProperty=r.alignTablesRowByRowProperty,e.formFieldShadingProperty=r.formFieldShadingProperty,e.lastParagraphMarkCopiedProperty=r.lastParagraphMarkCopiedProperty,e.footnotesProperty=r.footnotesProperty,e.endnotesProperty=r.endnotesProperty,e.compatibilityModeProperty=r.compatibilityModeProperty,e.themeFontLanguagesProperty=r.themeFontLanguagesProperty,e.themesProperty=r.themesProperty,e.nameProperty=r.nameProperty,e.basedOnProperty=r.basedOnProperty,e.nextProperty=r.nextProperty,e.linkProperty=r.linkProperty,e.localeIdProperty=r.localeIdProperty,e.localeIdFarEastProperty=r.localeIdFarEastProperty,e.localeIdBidiProperty=r.localeIdBidiProperty,e.boldProperty=r.boldProperty,e.italicProperty=r.italicProperty,e.underlineProperty=r.underlineProperty,e.baselineAlignmentProperty=r.baselineAlignmentProperty,e.strikethroughProperty=r.strikethroughProperty,e.highlightColorProperty=r.highlightColorProperty,e.fontSizeProperty=r.fontSizeProperty,e.fontColorProperty=r.fontColorProperty,e.fontFamilyProperty=r.fontFamilyProperty,e.styleNameProperty=r.styleNameProperty,e.bidiProperty=r.bidiProperty,e.bdoProperty=r.bdoProperty,e.breakClearTypeProperty=r.breakClearTypeProperty,e.fontSizeBidiProperty=r.fontSizeBidiProperty,e.fontFamilyBidiProperty=r.fontFamilyBidiProperty,e.boldBidiProperty=r.boldBidiProperty,e.italicBidiProperty=r.italicBidiProperty,e.allCapsProperty=r.allCapsProperty,e.complexScriptProperty=r.complexScriptProperty,e.fontFamilyAsciiProperty=r.fontFamilyAsciiProperty,e.fontFamilyFarEastProperty=r.fontFamilyFarEastProperty,e.fontFamilyNonFarEastProperty=r.fontFamilyNonFarEastProperty,e.revisionIdsProperty=r.revisionIdsProperty,e.listIdProperty=r.listIdProperty,e.characterSpacingProperty=r.characterSpacingProperty,e.scalingProperty=r.scalingProperty,e.listLevelNumberProperty=r.listLevelNumberProperty,e.leftIndentProperty=r.leftIndentProperty,e.rightIndentProperty=r.rightIndentProperty,e.firstLineIndentProperty=r.firstLineIndentProperty,e.textAlignmentProperty=r.textAlignmentProperty,e.afterSpacingProperty=r.afterSpacingProperty,e.beforeSpacingProperty=r.beforeSpacingProperty,e.spaceAfterAutoProperty=r.spaceAfterAutoProperty,e.spaceBeforeAutoProperty=r.spaceBeforeAutoProperty,e.lineSpacingProperty=r.lineSpacingProperty,e.lineSpacingTypeProperty=r.lineSpacingTypeProperty,e.listFormatProperty=r.listFormatProperty,e.keepWithNextProperty=r.keepWithNextProperty,e.widowControlProperty=r.widowControlProperty,e.keepLinesTogetherProperty=r.keepLinesTogetherProperty,e.outlineLevelProperty=r.outlineLevelProperty,e.contextualSpacingProperty=r.contextualSpacingProperty,e.bordersProperty=r.bordersProperty,e.tabsProperty=r.tabsProperty,e.headerDistanceProperty=r.headerDistanceProperty,e.footerDistanceProperty=r.footerDistanceProperty,e.differentFirstPageProperty=r.differentFirstPageProperty,e.differentOddAndEvenPagesProperty=r.differentOddAndEvenPagesProperty,e.pageWidthProperty=r.pageWidthProperty,e.pageHeightProperty=r.pageHeightProperty,e.leftMarginProperty=r.leftMarginProperty,e.rightMarginProperty=r.rightMarginProperty,e.topMarginProperty=r.topMarginProperty,e.bottomMarginProperty=r.bottomMarginProperty,e.restartPageNumberingProperty=r.restartPageNumberingProperty,e.pageStartingNumberProperty=r.pageStartingNumberProperty,e.endnoteNumberFormatProperty=r.endnoteNumberFormatProperty,e.footNoteNumberFormatProperty=r.footNoteNumberFormatProperty,e.restartIndexForFootnotesProperty=r.restartIndexForFootnotesProperty,e.restartIndexForEndnotesProperty=r.restartIndexForEndnotesProperty,e.initialFootNoteNumberProperty=r.initialFootNoteNumberProperty,e.initialEndNoteNumberProperty=r.initialEndNoteNumberProperty,e.pageNumberStyleProperty=r.pageNumberStyleProperty,e.columnsProperty=r.columnsProperty,e.numberOfColumnsProperty=r.numberOfColumnsProperty,e.equalWidthProperty=r.equalWidthProperty,e.lineBetweenColumnsProperty=r.lineBetweenColumnsProperty,e.breakCodeProperty=r.breakCodeProperty,e.cellWidthProperty=r.cellWidthProperty,e.columnSpanProperty=r.columnSpanProperty,e.rowSpanProperty=r.rowSpanProperty,e.verticalAlignmentProperty=r.verticalAlignmentProperty,e.allowBreakAcrossPagesProperty=r.allowBreakAcrossPagesProperty,e.isHeaderProperty=r.isHeaderProperty,e.heightTypeProperty=r.heightTypeProperty,e.beforeWidthProperty=r.beforeWidthProperty,e.afterWidthProperty=r.afterWidthProperty,e.gridBeforeProperty=r.gridBeforeProperty,e.gridBeforeWidthProperty=r.gridBeforeWidthProperty,e.gridBeforeWidthTypeProperty=r.gridBeforeWidthTypeProperty,e.gridAfterProperty=r.gridAfterProperty,e.gridAfterWidthProperty=r.gridAfterWidthProperty,e.gridAfterWidthTypeProperty=r.gridAfterWidthTypeProperty,e.allowAutoFitProperty=r.allowAutoFitProperty,e.cellSpacingProperty=r.cellSpacingProperty,e.shadingProperty=r.shadingProperty,e.tableAlignmentProperty=r.tableAlignmentProperty,e.preferredWidthProperty=r.preferredWidthProperty,e.preferredWidthTypeProperty=r.preferredWidthTypeProperty,e.horizontalPositionAbsProperty=r.horizontalPositionAbsProperty,e.textureProperty=r.textureProperty,e.backgroundColorProperty=r.backgroundColorProperty,e.foregroundColorProperty=r.foregroundColorProperty,e.shadowProperty=r.shadowProperty,e.hasNoneStyleProperty=r.hasNoneStyleProperty,e.verticalProperty=r.verticalProperty,e.horizontalProperty=r.horizontalProperty,e.diagonalUpProperty=r.diagonalUpProperty,e.diagonalDownProperty=r.diagonalDownProperty,e.lineStyleProperty=r.lineStyleProperty,e.lineWidthProperty=r.lineWidthProperty,e.layoutProperty=r.layoutProperty,e.dataFormatProperty=r.dataFormatProperty,e.yValueProperty=r.yValueProperty,e.chartDataProperty=r.chartDataProperty,e.categoryXNameProperty=r.categoryXNameProperty,e.lineProperty=r.lineProperty,e.foreColorProperty=r.foreColorProperty,e.patternProperty=r.patternProperty,e.layoutXProperty=r.layoutXProperty,e.layoutYProperty=r.layoutYProperty,e.directionProperty=r.directionProperty,e.endStyleProperty=r.endStyleProperty,e.numberValueProperty=r.numberValueProperty,e.markerStyleProperty=r.markerStyleProperty,e.markerColorProperty=r.markerColorProperty,e.markerSizeProperty=r.markerSizeProperty,e.forwardProperty=r.forwardProperty,e.backwardProperty=r.backwardProperty,e.interceptProperty=r.interceptProperty,e.isDisplayRSquaredProperty=r.isDisplayRSquaredProperty,e.isDisplayEquationProperty=r.isDisplayEquationProperty,e.seriesNameProperty=r.seriesNameProperty,e.dataLabelProperty=r.dataLabelProperty,e.errorBarProperty=r.errorBarProperty,e.seriesFormatProperty=r.seriesFormatProperty,e.trendLinesProperty=r.trendLinesProperty,e.dataPointsProperty=r.dataPointsProperty,e.firstSliceAngleProperty=r.firstSliceAngleProperty,e.holeSizeProperty=r.holeSizeProperty,e.isLegendKeyProperty=r.isLegendKeyProperty,e.isBubbleSizeProperty=r.isBubbleSizeProperty,e.isCategoryNameProperty=r.isCategoryNameProperty,e.isSeriesNameProperty=r.isSeriesNameProperty,e.isValueProperty=r.isValueProperty,e.isPercentageProperty=r.isPercentageProperty,e.isLeaderLinesProperty=r.isLeaderLinesProperty,e.showSeriesKeysProperty=r.showSeriesKeysProperty,e.hasHorizontalBorderProperty=r.hasHorizontalBorderProperty,e.hasVerticalBorderProperty=r.hasVerticalBorderProperty,e.hasBordersProperty=r.hasBordersProperty,e.categoryTypeProperty=r.categoryTypeProperty,e.chartCategoryProperty=r.chartCategoryProperty,e.chartSeriesProperty=r.chartSeriesProperty,e.chartAreaProperty=r.chartAreaProperty,e.chartTitleAreaProperty=r.chartTitleAreaProperty,e.plotAreaProperty=r.plotAreaProperty,e.chartLegendProperty=r.chartLegendProperty,e.chartPrimaryCategoryAxisProperty=r.chartPrimaryCategoryAxisProperty,e.chartPrimaryValueAxisProperty=r.chartPrimaryValueAxisProperty,e.chartTitleProperty=r.chartTitleProperty,e.chartTypeProperty=r.chartTypeProperty,e.gapWidthProperty=r.gapWidthProperty,e.overlapProperty=r.overlapProperty,e.chartDataTableProperty=r.chartDataTableProperty,e.textProperty=r.textProperty,e.shapeIdProperty=r.shapeIdProperty,e.alternativeTextProperty=r.alternativeTextProperty,e.visibleProperty=r.visibleProperty,e.belowTextProperty=r.belowTextProperty,e.horizontalRuleProperty=r.horizontalRuleProperty,e.widthProperty=r.widthProperty,e.heightProperty=r.heightProperty,e.widthScaleProperty=r.widthScaleProperty,e.heightScaleProperty=r.heightScaleProperty,e.lineFormatProperty=r.lineFormatProperty,e.fillFormatProperty=r.fillFormatProperty,e.textWrappingStyleProperty=r.textWrappingStyleProperty,e.textWrappingTypeProperty=r.textWrappingTypeProperty,e.verticalRelativePercentProperty=r.verticalRelativePercentProperty,e.horizontalRelativePercentProperty=r.horizontalRelativePercentProperty,e.heightRelativePercentProperty=r.heightRelativePercentProperty,e.widthRelativePercentProperty=r.widthRelativePercentProperty,e.zOrderPositionProperty=r.zOrderPositionProperty,e.layoutInCellProperty=r.layoutInCellProperty,e.lockAnchorProperty=r.lockAnchorProperty,e.autoShapeTypeProperty=r.autoShapeTypeProperty,e.textFrameProperty=r.textFrameProperty,e.colorProperty=r.colorProperty,e.fillProperty=r.fillProperty,e.textVerticalAlignmentProperty=r.textVerticalAlignmentProperty,e.imageStringProperty=r.imageStringProperty,e.metaFileImageStringProperty=r.metaFileImageStringProperty,e.lengthProperty=r.lengthProperty,e.isInlineImageProperty=r.isInlineImageProperty,e.isMetaFileProperty=r.isMetaFileProperty,e.topProperty=r.topProperty,e.bottomProperty=r.bottomProperty,e.rightProperty=r.rightProperty,e.leftProperty=r.leftProperty,e.getImageHeightProperty=r.getImageHeightProperty,e.getImageWidthProperty=r.getImageWidthProperty,e.hasFieldEndProperty=r.hasFieldEndProperty,e.formFieldDataProperty=r.formFieldDataProperty,e.fieldTypeProperty=r.fieldTypeProperty,e.isCreatedUsingHtmlSpanTagProperty=r.isCreatedUsingHtmlSpanTagProperty,e.enabledProperty=r.enabledProperty,e.helpTextProperty=r.helpTextProperty,e.statusTextProperty=r.statusTextProperty,e.textInputProperty=r.textInputProperty,e.checkBoxProperty=r.checkBoxProperty,e.dropDownListProperty=r.dropDownListProperty,e.maxLengthProperty=r.maxLengthProperty,e.defaultValueProperty=r.defaultValueProperty,e.formatProperty=r.formatProperty,e.sizeTypeProperty=r.sizeTypeProperty,e.sizeProperty=r.sizeProperty,e.checkedProperty=r.checkedProperty,e.dropDownItemsProperty=r.dropDownItemsProperty,e.selectedIndexProperty=r.selectedIndexProperty,e.commentIdProperty=r.commentIdProperty,e.commentCharacterTypeProperty=r.commentCharacterTypeProperty,e.authorProperty=r.authorProperty,e.initialProperty=r.initialProperty,e.dateProperty=r.dateProperty,e.doneProperty=r.doneProperty,e.replyCommentsProperty=r.replyCommentsProperty,e.revisionTypeProperty=r.revisionTypeProperty,e.revisionIdProperty=r.revisionIdProperty,e.itemIDProperty=r.itemIDProperty,e.xmlProperty=r.xmlProperty,e.footnoteTypeProperty=r.footnoteTypeProperty,e.symbolCodeProperty=r.symbolCodeProperty,e.symbolFontNameProperty=r.symbolFontNameProperty,e.customMarkerProperty=r.customMarkerProperty,e.inlinesProperty=r.inlinesProperty,e.contentControlPropertiesProperty=r.contentControlPropertiesProperty,e.lockContentControlProperty=r.lockContentControlProperty,e.lockContentsProperty=r.lockContentsProperty,e.tagProperty=r.tagProperty,e.titleProperty=r.titleProperty,e.hasPlaceHolderTextProperty=r.hasPlaceHolderTextProperty,e.multiLineProperty=r.multiLineProperty,e.isTemporaryProperty=r.isTemporaryProperty,e.dateCalendarTypeProperty=r.dateCalendarTypeProperty,e.dateStorageFormatProperty=r.dateStorageFormatProperty,e.dateDisplayLocaleProperty=r.dateDisplayLocaleProperty,e.dateDisplayFormatProperty=r.dateDisplayFormatProperty,e.isCheckedProperty=r.isCheckedProperty,e.uncheckedStateProperty=r.uncheckedStateProperty,e.checkedStateProperty=r.checkedStateProperty,e.contentControlListItemsProperty=r.contentControlListItemsProperty,e.xmlMappingProperty=r.xmlMappingProperty,e.fontProperty=r.fontProperty,e.valueProperty=r.valueProperty,e.displayTextProperty=r.displayTextProperty,e.isMappedProperty=r.isMappedProperty,e.isWordMlProperty=r.isWordMlProperty,e.prefixMappingProperty=r.prefixMappingProperty,e.xPathProperty=r.xPathProperty,e.storeItemIdProperty=r.storeItemIdProperty,e.customXmlPartProperty=r.customXmlPartProperty,e.idProperty=r.idProperty,e.cellFormatProperty=r.cellFormatProperty,e.rowFormatProperty=r.rowFormatProperty,e.cellsProperty=r.cellsProperty,e.rowsProperty=r.rowsProperty,e.descriptionProperty=r.descriptionProperty,e.wrapTextAroundProperty=r.wrapTextAroundProperty,e.isLegalStyleNumberingProperty=r.isLegalStyleNumberingProperty,e.positioningProperty=r.positioningProperty,e.tableFormatProperty=r.tableFormatProperty,e.allowOverlapProperty=r.allowOverlapProperty,e.distanceTopProperty=r.distanceTopProperty,e.distanceRightProperty=r.distanceRightProperty,e.distanceLeftProperty=r.distanceLeftProperty,e.distanceBottomProperty=r.distanceBottomProperty,e.verticalOriginProperty=r.verticalOriginProperty,e.verticalPositionProperty=r.verticalPositionProperty,e.horizontalOriginProperty=r.horizontalOriginProperty,e.horizontalAlignmentProperty=r.horizontalAlignmentProperty,e.horizontalPositionProperty=r.horizontalPositionProperty,e.blocksProperty=r.blocksProperty,e.headerProperty=r.headerProperty,e.footerProperty=r.footerProperty,e.evenHeaderProperty=r.evenHeaderProperty,e.evenFooterProperty=r.evenFooterProperty,e.firstPageHeaderProperty=r.firstPageHeaderProperty,e.firstPageFooterProperty=r.firstPageFooterProperty,e.headersFootersProperty=r.headersFootersProperty,e.sectionFormatProperty=r.sectionFormatProperty,e.listLevelPatternProperty=r.listLevelPatternProperty,e.followCharacterProperty=r.followCharacterProperty,e.startAtProperty=r.startAtProperty,e.restartLevelProperty=r.restartLevelProperty,e.levelNumberProperty=r.levelNumberProperty,e.numberFormatProperty=r.numberFormatProperty,e.paraStyleNameProperty=r.paraStyleNameProperty,e.abstractListIdProperty=r.abstractListIdProperty,e.nsidProperty=r.nsidProperty,e.levelsProperty=r.levelsProperty,e.overrideListLevelProperty=r.overrideListLevelProperty,e.levelOverridesProperty=r.levelOverridesProperty,e.separatorProperty=r.separatorProperty,e.continuationSeparatorProperty=r.continuationSeparatorProperty,e.continuationNoticeProperty=r.continuationNoticeProperty,e.bookmarkTypeProperty=r.bookmarkTypeProperty,e.propertiesProperty=r.propertiesProperty,e.tabJustificationProperty=r.tabJustificationProperty,e.positionProperty=r.positionProperty,e.deletePositionProperty=r.deletePositionProperty,e.leaderProperty=r.leaderProperty,e.tabLeaderProperty=r.tabLeaderProperty,e.editRangeIdProperty=r.editRangeIdProperty,e.columnFirstProperty=r.columnFirstProperty,e.columnLastProperty=r.columnLastProperty,e.userProperty=r.userProperty,e.groupProperty=r.groupProperty,e.editableRangeStartProperty=r.editableRangeStartProperty,e.spaceProperty=r.spaceProperty,e.fontSchemeProperty=r.fontSchemeProperty,e.fontSchemeNameProperty=r.fontSchemeNameProperty,e.majorFontSchemeProperty=r.majorFontSchemeProperty,e.minorFontSchemeProperty=r.minorFontSchemeProperty,e.fontSchemeListProperty=r.fontSchemeListProperty,e.fontTypefaceProperty=r.fontTypefaceProperty,e.typefaceProperty=r.typefaceProperty,e.panoseProperty=r.panoseProperty,e.typeProperty=r.typeProperty,e.majorUnitProperty=r.majorUnitProperty,e.isAutoMajorProperty=r.isAutoMajorProperty,e.maximumValueProperty=r.maximumValueProperty,e.minimumValueProperty=r.minimumValueProperty,e.hasMajorGridLinesProperty=r.hasMajorGridLinesProperty,e.hasMinorGridLinesProperty=r.hasMinorGridLinesProperty,e.majorTickMarkProperty=r.majorTickMarkProperty,e.minorTickMarkProperty=r.minorTickMarkProperty,e.tickLabelPositionProperty=r.tickLabelPositionProperty,e.rgbProperty=r.rgbProperty,e.appearanceProperty=r.appearanceProperty,e.lineFormatTypeProperty=r.lineFormatTypeProperty,e.allowSpaceOfSameStyleInTableProperty=r.allowSpaceOfSameStyleInTableProperty,e.weightProperty=r.weightProperty,e.inlineFormatProperty=r.inlineFormatProperty,e.fontNameProperty=r.fontNameProperty,e.isCompressedProperty=r.isCompressedProperty,e.columnIndexProperty=r.columnIndexProperty,e.imagesProperty=r.imagesProperty,e.isAfterParagraphMarkProperty=r.isAfterParagraphMarkProperty,e.isAfterCellMarkProperty=r.isAfterCellMarkProperty,e.isAfterRowMarkProperty=r.isAfterRowMarkProperty,e.gridProperty=r.gridProperty,e.columnCountProperty=r.columnCountProperty,e.isAfterTableMarkProperty=r.isAfterTableMarkProperty,e.incrementalOps=r.incrementalOps,e.Print=r.Print,e.ContextMenu=r.ContextMenu,e.CommentReviewPane=r.CommentReviewPane,e.CommentPane=r.CommentPane,e.CommentView=r.CommentView,e.HyperlinkDialog=r.HyperlinkDialog,e.TableDialog=r.TableDialog,e.BookmarkDialog=r.BookmarkDialog,e.TableOfContentsDialog=r.TableOfContentsDialog,e.PageSetupDialog=r.PageSetupDialog,e.ParagraphDialog=r.ParagraphDialog,e.ListDialog=r.ListDialog,e.StyleDialog=r.StyleDialog,e.BulletsAndNumberingDialog=r.BulletsAndNumberingDialog,e.FontDialog=r.FontDialog,e.TablePropertiesDialog=r.TablePropertiesDialog,e.BordersAndShadingDialog=r.BordersAndShadingDialog,e.TableOptionsDialog=r.TableOptionsDialog,e.CellOptionsDialog=r.CellOptionsDialog,e.StylesDialog=r.StylesDialog,e.SpellCheckDialog=r.SpellCheckDialog,e.CheckBoxFormFieldDialog=r.CheckBoxFormFieldDialog,e.TextFormFieldDialog=r.TextFormFieldDialog,e.DropDownFormFieldDialog=r.DropDownFormFieldDialog,e.FormFieldPopUp=r.FormFieldPopUp,e.ColumnsDialog=r.ColumnsDialog,e.TabDialog=r.TabDialog,e.Editor=r.Editor,e.ImageResizer=r.ImageResizer,e.ImageResizingPoints=r.ImageResizingPoints,e.SelectedImageInfo=r.SelectedImageInfo,e.TableResizer=r.TableResizer,e.HelperMethods=r.HelperMethods,e.Point=r.Point,e.Base64=r.Base64,e.WrapPosition=r.WrapPosition,e.CollaborativeEditing=r.CollaborativeEditing,e.EditorHistory=r.EditorHistory,e.BaseHistoryInfo=r.BaseHistoryInfo,e.HistoryInfo=r.HistoryInfo,e.ModifiedLevel=r.ModifiedLevel,e.ModifiedParagraphFormat=r.ModifiedParagraphFormat,e.RowHistoryFormat=r.RowHistoryFormat,e.TableHistoryInfo=r.TableHistoryInfo,e.TableFormatHistoryInfo=r.TableFormatHistoryInfo,e.RowFormatHistoryInfo=r.RowFormatHistoryInfo,e.CellFormatHistoryInfo=r.CellFormatHistoryInfo,e.CellHistoryFormat=r.CellHistoryFormat,e.WSectionFormat=r.WSectionFormat,e.WColumnFormat=r.WColumnFormat,e.WStyle=r.WStyle,e.WParagraphStyle=r.WParagraphStyle,e.WCharacterStyle=r.WCharacterStyle,e.WTableStyle=r.WTableStyle,e.WStyles=r.WStyles,e.WCharacterFormat=r.WCharacterFormat,e.WListFormat=r.WListFormat,e.WTabStop=r.WTabStop,e.WParagraphFormat=r.WParagraphFormat,e.WTableFormat=r.WTableFormat,e.WRowFormat=r.WRowFormat,e.WCellFormat=r.WCellFormat,e.WBorder=r.WBorder,e.WBorders=r.WBorders,e.WShading=r.WShading,e.WList=r.WList,e.WAbstractList=r.WAbstractList,e.WListLevel=r.WListLevel,e.WLevelOverride=r.WLevelOverride,e.AddUserDialog=r.AddUserDialog,e.EnforceProtectionDialog=r.EnforceProtectionDialog,e.UnProtectDocumentDialog=r.UnProtectDocumentDialog,e.RestrictEditing=r.RestrictEditing,e.Search=r.Search,e.OptionsPane=r.OptionsPane,e.TextSearch=r.TextSearch,e.SearchWidgetInfo=r.SearchWidgetInfo,e.TextSearchResult=r.TextSearchResult,e.TextSearchResults=r.TextSearchResults,e.Selection=r.Selection,e.SelectionCharacterFormat=r.SelectionCharacterFormat,e.SelectionBorder=r.SelectionBorder,e.SelectionBorders=r.SelectionBorders,e.SelectionParagraphFormat=r.SelectionParagraphFormat,e.SelectionHeaderFooter=r.SelectionHeaderFooter,e.SelectionSectionFormat=r.SelectionSectionFormat,e.SelectionTableFormat=r.SelectionTableFormat,e.SelectionCellFormat=r.SelectionCellFormat,e.SelectionRowFormat=r.SelectionRowFormat,e.SelectionImageFormat=r.SelectionImageFormat,e.SelectionColumnFormat=r.SelectionColumnFormat,e.TextPosition=r.TextPosition,e.SelectionWidgetInfo=r.SelectionWidgetInfo,e.Hyperlink=r.Hyperlink,e.ImageSizeInfo=r.ImageSizeInfo,e.SpellChecker=r.SpellChecker,e.Optimized=r.Optimized,e.Regular=r.Regular,e.Revision=r.Revision,e.RevisionCollection=r.RevisionCollection,e.TrackChangesPane=r.TrackChangesPane,e.ChangesSingleView=r.ChangesSingleView,e.DocumentHelper=r.DocumentHelper,e.LayoutViewer=r.LayoutViewer,e.PageLayoutViewer=r.PageLayoutViewer,e.WebLayoutViewer=r.WebLayoutViewer,e.ColumnLayout=r.ColumnLayout,e.Rect=r.Rect,e.Padding=r.Padding,e.Margin=r.Margin,e.Widget=r.Widget,e.BlockContainer=r.BlockContainer,e.BodyWidget=r.BodyWidget,e.HeaderFooterWidget=r.HeaderFooterWidget,e.BlockWidget=r.BlockWidget,e.FootNoteWidget=r.FootNoteWidget,e.ParagraphWidget=r.ParagraphWidget,e.TablePosition=r.TablePosition,e.TableWidget=r.TableWidget,e.TableRowWidget=r.TableRowWidget,e.TableCellWidget=r.TableCellWidget,e.LineWidget=r.LineWidget,e.ElementBox=r.ElementBox,e.FieldElementBox=r.FieldElementBox,e.FormField=r.FormField,e.TextFormField=r.TextFormField,e.CheckBoxFormField=r.CheckBoxFormField,e.DropDownFormField=r.DropDownFormField,e.TextElementBox=r.TextElementBox,e.Footnote=r.Footnote,e.FootnoteElementBox=r.FootnoteElementBox,e.ErrorTextElementBox=r.ErrorTextElementBox,e.FieldTextElementBox=r.FieldTextElementBox,e.TabElementBox=r.TabElementBox,e.BookmarkElementBox=r.BookmarkElementBox,e.ContentControl=r.ContentControl,e.ContentControlProperties=r.ContentControlProperties,e.ContentControlListItems=r.ContentControlListItems,e.CheckBoxState=r.CheckBoxState,e.XmlMapping=r.XmlMapping,e.CustomXmlPart=r.CustomXmlPart,e.ShapeCommon=r.ShapeCommon,e.ShapeBase=r.ShapeBase,e.ShapeElementBox=r.ShapeElementBox,e.TextFrame=r.TextFrame,e.LineFormat=r.LineFormat,e.FillFormat=r.FillFormat,e.ImageElementBox=r.ImageElementBox,e.ListTextElementBox=r.ListTextElementBox,e.EditRangeEndElementBox=r.EditRangeEndElementBox,e.EditRangeStartElementBox=r.EditRangeStartElementBox,e.ChartElementBox=r.ChartElementBox,e.ChartArea=r.ChartArea,e.ChartCategory=r.ChartCategory,e.ChartData=r.ChartData,e.ChartLegend=r.ChartLegend,e.ChartSeries=r.ChartSeries,e.ChartErrorBar=r.ChartErrorBar,e.ChartSeriesFormat=r.ChartSeriesFormat,e.ChartDataLabels=r.ChartDataLabels,e.ChartTrendLines=r.ChartTrendLines,e.ChartTitleArea=r.ChartTitleArea,e.ChartDataFormat=r.ChartDataFormat,e.ChartFill=r.ChartFill,e.ChartLayout=r.ChartLayout,e.ChartCategoryAxis=r.ChartCategoryAxis,e.ChartDataTable=r.ChartDataTable,e.CommentCharacterElementBox=r.CommentCharacterElementBox,e.CommentElementBox=r.CommentElementBox,e.Page=r.Page,e.WTableHolder=r.WTableHolder,e.WColumn=r.WColumn,e.ColumnSizeInfo=r.ColumnSizeInfo,e.CommentEditInfo=r.CommentEditInfo,e.BreakElementBox=r.BreakElementBox,e.TabStopListInfo=r.TabStopListInfo,e.FootnoteEndnoteMarkerElementBox=r.FootnoteEndnoteMarkerElementBox,e.Layout=r.Layout,e.Renderer=r.Renderer,e.SfdtReader=r.SfdtReader,e.TextHelper=r.TextHelper,e.Zoom=r.Zoom,e.WordExport=r.WordExport,e.TextExport=r.TextExport,e.SfdtExport=r.SfdtExport,e.HtmlExport=r.HtmlExport,e.FontScheme=r.FontScheme,e.FontSchemeStruct=r.FontSchemeStruct,e.Themes=r.Themes,e.MajorMinorFontScheme=r.MajorMinorFontScheme,e.CollaborativeEditingHandler=r.CollaborativeEditingHandler,e.DocumentEditorSettings=r.DocumentEditorSettings,e.DocumentSettings=r.DocumentSettings,e.AutoResizeSettings=r.AutoResizeSettings,e.DocumentEditor=r.DocumentEditor,e.ServerActionSettings=r.ServerActionSettings,e.FormFieldSettings=r.FormFieldSettings,e.CollaborativeEditingSettings=r.CollaborativeEditingSettings,e.ContainerServerActionSettings=r.ContainerServerActionSettings,e.Toolbar=r.Toolbar,e.DocumentEditorContainer=r.DocumentEditorContainer,Object.defineProperty(e,"__esModule",{value:!0})});
|
11
|
-
//# sourceMappingURL=ej2-angular-documenteditor.umd.min.js.map
|
@@ -1 +0,0 @@
|
|
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-container/documenteditorcontainer.component.ts","~/@syncfusion/ej2-angular-documenteditor/src/document-editor/documenteditor-all.module.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 inputs: string[] = ['acceptTab','autoResizeOnVisibilityChange','currentUser','defaultPasteOption','documentEditorSettings','documentName','documentSettings','enableAutoFocus','enableBookmarkDialog','enableBordersAndShadingDialog','enableCollaborativeEditing','enableColumnsDialog','enableComment','enableContextMenu','enableCursorOnReadOnly','enableEditor','enableEditorHistory','enableFontDialog','enableFootnoteAndEndnoteDialog','enableFormField','enableHyperlinkDialog','enableImageResizer','enableListDialog','enableLocalPaste','enableLockAndEdit','enableOptionsPane','enablePageSetupDialog','enableParagraphDialog','enablePersistence','enablePrint','enableRtl','enableSearch','enableSelection','enableSfdtExport','enableSpellCheck','enableStyleDialog','enableTableDialog','enableTableOfContentsDialog','enableTableOptionsDialog','enableTablePropertiesDialog','enableTextExport','enableTrackChanges','enableWordExport','headers','height','isReadOnly','layoutType','locale','pageGap','pageOutline','serverActionSettings','serviceUrl','showComments','showRevisions','useCtrlClickToFollowHyperlink','userColor','width','zIndex','zoomFactor'];\nexport const outputs: string[] = ['actionComplete','afterFormFieldFill','beforeAcceptRejectChanges','beforeCommentAction','beforeFileOpen','beforeFormFieldFill','beforePaneSwitch','commentBegin','commentDelete','commentEnd','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','keyDown','requestNavigate','searchResultsChange','selectionChange','serviceFailure','trackChange','viewChange','zoomFactorChange','beforeXmlHttpRequestSend'];\nexport const twoWays: string[] = [];\n\n/**\n * `ejs-documenteditor` represents the Angular Document Editor Component.\n * ```html\n * <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>\n * ```\n */\n@Component({\n selector: 'ejs-documenteditor',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorComponent extends DocumentEditor implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tactionComplete: any;\n\tafterFormFieldFill: any;\n\tbeforeAcceptRejectChanges: any;\n\tbeforeCommentAction: any;\n\tbeforeFileOpen: any;\n\tbeforeFormFieldFill: any;\n\tbeforePaneSwitch: any;\n\tcommentBegin: any;\n\tcommentDelete: any;\n\tcommentEnd: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tkeyDown: any;\n\trequestNavigate: any;\n\tsearchResultsChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttrackChange: any;\n\tviewChange: any;\n\tzoomFactorChange: any;\n\tpublic beforeXmlHttpRequestSend: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n 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 try {\n let mod = this.injector.get('DocumentEditorColumnsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditingHandler');\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 public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\n\n/**\n * NgModule definition for the DocumentEditor component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DocumentEditorComponent\n ],\n exports: [\n DocumentEditorComponent\n ]\n})\nexport class DocumentEditorModule { }","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';\n\n\n\nexport const inputs: string[] = ['autoResizeOnVisibilityChange','currentUser','documentEditorSettings','documentSettings','enableAutoFocus','enableComment','enableCsp','enableLocalPaste','enableLockAndEdit','enablePersistence','enableRtl','enableSpellCheck','enableToolbar','enableTrackChanges','headers','height','layoutType','locale','restrictEditing','serverActionSettings','serviceUrl','showPropertiesPane','toolbarItems','userColor','width','zIndex'];\nexport const outputs: string[] = ['beforeAcceptRejectChanges','beforeCommentAction','beforePaneSwitch','commentDelete','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','selectionChange','serviceFailure','toolbarClick','trackChange','beforeXmlHttpRequestSend'];\nexport const twoWays: string[] = [];\n\n/**\n * `ejs-documenteditor-container` represents the Angular Document Editor Container.\n * ```html\n * <ejs-documenteditor-container></ejs-documenteditor-container>\n * ```\n */\n@Component({\n selector: 'ejs-documenteditorcontainer',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tbeforeAcceptRejectChanges: any;\n\tbeforeCommentAction: any;\n\tbeforePaneSwitch: any;\n\tcommentDelete: any;\n\tcontentChange: any;\n\tcontentControl: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdestroyed: any;\n\tdocumentChange: any;\n\tselectionChange: any;\n\tserviceFailure: any;\n\ttoolbarClick: any;\n\ttrackChange: any;\n\tpublic beforeXmlHttpRequestSend: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DocumentEditorToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorComponent } from './documenteditor.component';\nimport { DocumentEditorModule } from './documenteditor.module';\nimport {Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing, ColumnsDialog, CollaborativeEditingHandler} from '@syncfusion/ej2-documenteditor'\n\n\nexport const PrintService: ValueProvider = { provide: 'DocumentEditorPrint', useValue: Print};\nexport const SfdtExportService: ValueProvider = { provide: 'DocumentEditorSfdtExport', useValue: SfdtExport};\nexport const WordExportService: ValueProvider = { provide: 'DocumentEditorWordExport', useValue: WordExport};\nexport const TextExportService: ValueProvider = { provide: 'DocumentEditorTextExport', useValue: TextExport};\nexport const SelectionService: ValueProvider = { provide: 'DocumentEditorSelection', useValue: Selection};\nexport const SearchService: ValueProvider = { provide: 'DocumentEditorSearch', useValue: Search};\nexport const EditorService: ValueProvider = { provide: 'DocumentEditorEditor', useValue: Editor};\nexport const EditorHistoryService: ValueProvider = { provide: 'DocumentEditorEditorHistory', useValue: EditorHistory};\nexport const OptionsPaneService: ValueProvider = { provide: 'DocumentEditorOptionsPane', useValue: OptionsPane};\nexport const ContextMenuService: ValueProvider = { provide: 'DocumentEditorContextMenu', useValue: ContextMenu};\nexport const ImageResizerService: ValueProvider = { provide: 'DocumentEditorImageResizer', useValue: ImageResizer};\nexport const HyperlinkDialogService: ValueProvider = { provide: 'DocumentEditorHyperlinkDialog', useValue: HyperlinkDialog};\nexport const TableDialogService: ValueProvider = { provide: 'DocumentEditorTableDialog', useValue: TableDialog};\nexport const BookmarkDialogService: ValueProvider = { provide: 'DocumentEditorBookmarkDialog', useValue: BookmarkDialog};\nexport const TableOfContentsDialogService: ValueProvider = { provide: 'DocumentEditorTableOfContentsDialog', useValue: TableOfContentsDialog};\nexport const PageSetupDialogService: ValueProvider = { provide: 'DocumentEditorPageSetupDialog', useValue: PageSetupDialog};\nexport const ParagraphDialogService: ValueProvider = { provide: 'DocumentEditorParagraphDialog', useValue: ParagraphDialog};\nexport const ListDialogService: ValueProvider = { provide: 'DocumentEditorListDialog', useValue: ListDialog};\nexport const StyleDialogService: ValueProvider = { provide: 'DocumentEditorStyleDialog', useValue: StyleDialog};\nexport const StylesDialogService: ValueProvider = { provide: 'DocumentEditorStylesDialog', useValue: StylesDialog};\nexport const BulletsAndNumberingDialogService: ValueProvider = { provide: 'DocumentEditorBulletsAndNumberingDialog', useValue: BulletsAndNumberingDialog};\nexport const FontDialogService: ValueProvider = { provide: 'DocumentEditorFontDialog', useValue: FontDialog};\nexport const TablePropertiesDialogService: ValueProvider = { provide: 'DocumentEditorTablePropertiesDialog', useValue: TablePropertiesDialog};\nexport const BordersAndShadingDialogService: ValueProvider = { provide: 'DocumentEditorBordersAndShadingDialog', useValue: BordersAndShadingDialog};\nexport const TableOptionsDialogService: ValueProvider = { provide: 'DocumentEditorTableOptionsDialog', useValue: TableOptionsDialog};\nexport const CellOptionsDialogService: ValueProvider = { provide: 'DocumentEditorCellOptionsDialog', useValue: CellOptionsDialog};\nexport const SpellCheckerService: ValueProvider = { provide: 'DocumentEditorSpellChecker', useValue: SpellChecker};\nexport const SpellCheckDialogService: ValueProvider = { provide: 'DocumentEditorSpellCheckDialog', useValue: SpellCheckDialog};\nexport const CollaborativeEditingService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing};\nexport const ColumnsDialogService: ValueProvider = { provide: 'DocumentEditorColumnsDialog', useValue: ColumnsDialog};\nexport const CollaborativeEditingHandlerService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditingHandler', useValue: CollaborativeEditingHandler};\n\n/**\n * NgModule definition for the DocumentEditor component with providers.\n */\n@NgModule({\n imports: [CommonModule, DocumentEditorModule],\n exports: [\n DocumentEditorModule\n ],\n providers:[\n PrintService,\n SfdtExportService,\n WordExportService,\n TextExportService,\n SelectionService,\n SearchService,\n EditorService,\n EditorHistoryService,\n OptionsPaneService,\n ContextMenuService,\n ImageResizerService,\n HyperlinkDialogService,\n TableDialogService,\n BookmarkDialogService,\n TableOfContentsDialogService,\n PageSetupDialogService,\n ParagraphDialogService,\n ListDialogService,\n StyleDialogService,\n StylesDialogService,\n BulletsAndNumberingDialogService,\n FontDialogService,\n TablePropertiesDialogService,\n BordersAndShadingDialogService,\n TableOptionsDialogService,\n CellOptionsDialogService,\n SpellCheckerService,\n SpellCheckDialogService,\n CollaborativeEditingService,\n ColumnsDialogService,\n CollaborativeEditingHandlerService\n ]\n})\nexport class DocumentEditorAllModule { }","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\n\n/**\n * NgModule definition for the DocumentEditorContainer component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DocumentEditorContainerComponent\n ],\n exports: [\n DocumentEditorContainerComponent\n ]\n})\nexport class DocumentEditorContainerModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DocumentEditorContainerComponent } from './documenteditorcontainer.component';\nimport { DocumentEditorContainerModule } from './documenteditorcontainer.module';\nimport {Toolbar} from '@syncfusion/ej2-documenteditor'\n\n\nexport const ToolbarService: ValueProvider = { provide: 'DocumentEditorToolbar', useValue: Toolbar};\n\n/**\n * NgModule definition for the DocumentEditorContainer component with providers.\n */\n@NgModule({\n imports: [CommonModule, DocumentEditorContainerModule],\n exports: [\n DocumentEditorContainerModule\n ],\n providers:[\n ToolbarService\n ]\n})\nexport class DocumentEditorContainerAllModule { }"],"names":["_super","inputs","outputs","twoWays","DocumentEditorComponent","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","_5","_6","registerEvents","addTwoWay","setValue","context","ComponentBase","exports","DocumentEditor","__extends","prototype","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","decorators","type","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","queries","ctorParameters","ElementRef","Renderer2","ViewContainerRef","Injector","__decorate","ComponentMixins","__metadata","DocumentEditorModule","PrintService","NgModule","imports","CommonModule","declarations","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","ColumnsDialogService","ColumnsDialog","CollaborativeEditingHandlerService","CollaborativeEditingHandler","DocumentEditorAllModule","providers","DocumentEditorContainerComponent","DocumentEditorContainer","DocumentEditorContainerModule","ToolbarService","Toolbar","DocumentEditorContainerAllModule"],"mappings":"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"}
|
@@ -1,6 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Generated bundle index. Do not edit.
|
3
|
-
*/
|
4
|
-
export * from './public_api';
|
5
|
-
export { inputs as ɵc, outputs as ɵd } from './src/document-editor-container/documenteditorcontainer.component';
|
6
|
-
export { inputs as ɵa, outputs as ɵb } from './src/document-editor/documenteditor.component';
|
@@ -1 +0,0 @@
|
|
1
|
-
{"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-documenteditor"}],"metadata":{"ɵa":["acceptTab","autoResizeOnVisibilityChange","currentUser","defaultPasteOption","documentEditorSettings","documentName","documentSettings","enableAutoFocus","enableBookmarkDialog","enableBordersAndShadingDialog","enableCollaborativeEditing","enableColumnsDialog","enableComment","enableContextMenu","enableCursorOnReadOnly","enableEditor","enableEditorHistory","enableFontDialog","enableFootnoteAndEndnoteDialog","enableFormField","enableHyperlinkDialog","enableImageResizer","enableListDialog","enableLocalPaste","enableLockAndEdit","enableOptionsPane","enablePageSetupDialog","enableParagraphDialog","enablePersistence","enablePrint","enableRtl","enableSearch","enableSelection","enableSfdtExport","enableSpellCheck","enableStyleDialog","enableTableDialog","enableTableOfContentsDialog","enableTableOptionsDialog","enableTablePropertiesDialog","enableTextExport","enableTrackChanges","enableWordExport","headers","height","isReadOnly","layoutType","locale","pageGap","pageOutline","serverActionSettings","serviceUrl","showComments","showRevisions","useCtrlClickToFollowHyperlink","userColor","width","zIndex","zoomFactor"],"ɵb":["actionComplete","afterFormFieldFill","beforeAcceptRejectChanges","beforeCommentAction","beforeFileOpen","beforeFormFieldFill","beforePaneSwitch","commentBegin","commentDelete","commentEnd","contentChange","contentControl","created","customContextMenuBeforeOpen","customContextMenuSelect","destroyed","documentChange","keyDown","requestNavigate","searchResultsChange","selectionChange","serviceFailure","trackChange","viewChange","zoomFactorChange","beforeXmlHttpRequestSend"],"ɵc":["autoResizeOnVisibilityChange","currentUser","documentEditorSettings","documentSettings","enableAutoFocus","enableComment","enableCsp","enableLocalPaste","enableLockAndEdit","enablePersistence","enableRtl","enableSpellCheck","enableToolbar","enableTrackChanges","headers","height","layoutType","locale","restrictEditing","serverActionSettings","serviceUrl","showPropertiesPane","toolbarItems","userColor","width","zIndex"],"ɵd":["beforeAcceptRejectChanges","beforeCommentAction","beforePaneSwitch","commentDelete","contentChange","contentControl","created","customContextMenuBeforeOpen","customContextMenuSelect","destroyed","documentChange","selectionChange","serviceFailure","toolbarClick","trackChange","beforeXmlHttpRequestSend"],"DocumentEditorComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"DocumentEditor"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-documenteditor","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"DocumentEditorModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"DocumentEditorComponent"}],"exports":[{"__symbolic":"reference","name":"DocumentEditorComponent"}]}]}],"members":{}},"DocumentEditorAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"DocumentEditorModule"}],"exports":[{"__symbolic":"reference","name":"DocumentEditorModule"}],"providers":[{"__symbolic":"reference","name":"PrintService"},{"__symbolic":"reference","name":"SfdtExportService"},{"__symbolic":"reference","name":"WordExportService"},{"__symbolic":"reference","name":"TextExportService"},{"__symbolic":"reference","name":"SelectionService"},{"__symbolic":"reference","name":"SearchService"},{"__symbolic":"reference","name":"EditorService"},{"__symbolic":"reference","name":"EditorHistoryService"},{"__symbolic":"reference","name":"OptionsPaneService"},{"__symbolic":"reference","name":"ContextMenuService"},{"__symbolic":"reference","name":"ImageResizerService"},{"__symbolic":"reference","name":"HyperlinkDialogService"},{"__symbolic":"reference","name":"TableDialogService"},{"__symbolic":"reference","name":"BookmarkDialogService"},{"__symbolic":"reference","name":"TableOfContentsDialogService"},{"__symbolic":"reference","name":"PageSetupDialogService"},{"__symbolic":"reference","name":"ParagraphDialogService"},{"__symbolic":"reference","name":"ListDialogService"},{"__symbolic":"reference","name":"StyleDialogService"},{"__symbolic":"reference","name":"StylesDialogService"},{"__symbolic":"reference","name":"BulletsAndNumberingDialogService"},{"__symbolic":"reference","name":"FontDialogService"},{"__symbolic":"reference","name":"TablePropertiesDialogService"},{"__symbolic":"reference","name":"BordersAndShadingDialogService"},{"__symbolic":"reference","name":"TableOptionsDialogService"},{"__symbolic":"reference","name":"CellOptionsDialogService"},{"__symbolic":"reference","name":"SpellCheckerService"},{"__symbolic":"reference","name":"SpellCheckDialogService"},{"__symbolic":"reference","name":"CollaborativeEditingService"},{"__symbolic":"reference","name":"ColumnsDialogService"},{"__symbolic":"reference","name":"CollaborativeEditingHandlerService"}]}]}],"members":{}},"PrintService":{"provide":"DocumentEditorPrint","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"Print"}},"SfdtExportService":{"provide":"DocumentEditorSfdtExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"SfdtExport"}},"WordExportService":{"provide":"DocumentEditorWordExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"WordExport"}},"TextExportService":{"provide":"DocumentEditorTextExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"TextExport"}},"SelectionService":{"provide":"DocumentEditorSelection","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"Selection"}},"SearchService":{"provide":"DocumentEditorSearch","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"Search"}},"EditorService":{"provide":"DocumentEditorEditor","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"Editor"}},"EditorHistoryService":{"provide":"DocumentEditorEditorHistory","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"EditorHistory"}},"OptionsPaneService":{"provide":"DocumentEditorOptionsPane","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"OptionsPane"}},"ContextMenuService":{"provide":"DocumentEditorContextMenu","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"ContextMenu"}},"ImageResizerService":{"provide":"DocumentEditorImageResizer","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"ImageResizer"}},"HyperlinkDialogService":{"provide":"DocumentEditorHyperlinkDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"HyperlinkDialog"}},"TableDialogService":{"provide":"DocumentEditorTableDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"TableDialog"}},"BookmarkDialogService":{"provide":"DocumentEditorBookmarkDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"BookmarkDialog"}},"TableOfContentsDialogService":{"provide":"DocumentEditorTableOfContentsDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"TableOfContentsDialog"}},"PageSetupDialogService":{"provide":"DocumentEditorPageSetupDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"PageSetupDialog"}},"ParagraphDialogService":{"provide":"DocumentEditorParagraphDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"ParagraphDialog"}},"ListDialogService":{"provide":"DocumentEditorListDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"ListDialog"}},"StyleDialogService":{"provide":"DocumentEditorStyleDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"StyleDialog"}},"StylesDialogService":{"provide":"DocumentEditorStylesDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"StylesDialog"}},"BulletsAndNumberingDialogService":{"provide":"DocumentEditorBulletsAndNumberingDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"BulletsAndNumberingDialog"}},"FontDialogService":{"provide":"DocumentEditorFontDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"FontDialog"}},"TablePropertiesDialogService":{"provide":"DocumentEditorTablePropertiesDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"TablePropertiesDialog"}},"BordersAndShadingDialogService":{"provide":"DocumentEditorBordersAndShadingDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"BordersAndShadingDialog"}},"TableOptionsDialogService":{"provide":"DocumentEditorTableOptionsDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"TableOptionsDialog"}},"CellOptionsDialogService":{"provide":"DocumentEditorCellOptionsDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"CellOptionsDialog"}},"SpellCheckerService":{"provide":"DocumentEditorSpellChecker","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"SpellChecker"}},"SpellCheckDialogService":{"provide":"DocumentEditorSpellCheckDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"SpellCheckDialog"}},"CollaborativeEditingService":{"provide":"DocumentEditorCollaborativeEditing","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"CollaborativeEditing"}},"ColumnsDialogService":{"provide":"DocumentEditorColumnsDialog","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"ColumnsDialog"}},"CollaborativeEditingHandlerService":{"provide":"DocumentEditorCollaborativeEditingHandler","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"CollaborativeEditingHandler"}},"DocumentEditorContainerComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"DocumentEditorContainer"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-documenteditorcontainer","inputs":{"__symbolic":"reference","name":"ɵc"},"outputs":{"__symbolic":"reference","name":"ɵd"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"DocumentEditorContainerModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"DocumentEditorContainerComponent"}],"exports":[{"__symbolic":"reference","name":"DocumentEditorContainerComponent"}]}]}],"members":{}},"DocumentEditorContainerAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"DocumentEditorContainerModule"}],"exports":[{"__symbolic":"reference","name":"DocumentEditorContainerModule"}],"providers":[{"__symbolic":"reference","name":"ToolbarService"}]}]}],"members":{}},"ToolbarService":{"provide":"DocumentEditorToolbar","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-documenteditor","name":"Toolbar"}}},"origins":{"ɵa":"./src/document-editor/documenteditor.component","ɵb":"./src/document-editor/documenteditor.component","ɵc":"./src/document-editor-container/documenteditorcontainer.component","ɵd":"./src/document-editor-container/documenteditorcontainer.component","DocumentEditorComponent":"./src/document-editor/documenteditor.component","DocumentEditorModule":"./src/document-editor/documenteditor.module","DocumentEditorAllModule":"./src/document-editor/documenteditor-all.module","PrintService":"./src/document-editor/documenteditor-all.module","SfdtExportService":"./src/document-editor/documenteditor-all.module","WordExportService":"./src/document-editor/documenteditor-all.module","TextExportService":"./src/document-editor/documenteditor-all.module","SelectionService":"./src/document-editor/documenteditor-all.module","SearchService":"./src/document-editor/documenteditor-all.module","EditorService":"./src/document-editor/documenteditor-all.module","EditorHistoryService":"./src/document-editor/documenteditor-all.module","OptionsPaneService":"./src/document-editor/documenteditor-all.module","ContextMenuService":"./src/document-editor/documenteditor-all.module","ImageResizerService":"./src/document-editor/documenteditor-all.module","HyperlinkDialogService":"./src/document-editor/documenteditor-all.module","TableDialogService":"./src/document-editor/documenteditor-all.module","BookmarkDialogService":"./src/document-editor/documenteditor-all.module","TableOfContentsDialogService":"./src/document-editor/documenteditor-all.module","PageSetupDialogService":"./src/document-editor/documenteditor-all.module","ParagraphDialogService":"./src/document-editor/documenteditor-all.module","ListDialogService":"./src/document-editor/documenteditor-all.module","StyleDialogService":"./src/document-editor/documenteditor-all.module","StylesDialogService":"./src/document-editor/documenteditor-all.module","BulletsAndNumberingDialogService":"./src/document-editor/documenteditor-all.module","FontDialogService":"./src/document-editor/documenteditor-all.module","TablePropertiesDialogService":"./src/document-editor/documenteditor-all.module","BordersAndShadingDialogService":"./src/document-editor/documenteditor-all.module","TableOptionsDialogService":"./src/document-editor/documenteditor-all.module","CellOptionsDialogService":"./src/document-editor/documenteditor-all.module","SpellCheckerService":"./src/document-editor/documenteditor-all.module","SpellCheckDialogService":"./src/document-editor/documenteditor-all.module","CollaborativeEditingService":"./src/document-editor/documenteditor-all.module","ColumnsDialogService":"./src/document-editor/documenteditor-all.module","CollaborativeEditingHandlerService":"./src/document-editor/documenteditor-all.module","DocumentEditorContainerComponent":"./src/document-editor-container/documenteditorcontainer.component","DocumentEditorContainerModule":"./src/document-editor-container/documenteditorcontainer.module","DocumentEditorContainerAllModule":"./src/document-editor-container/documenteditorcontainer-all.module","ToolbarService":"./src/document-editor-container/documenteditorcontainer-all.module"},"importAs":"@syncfusion/ej2-angular-documenteditor"}
|
package/license
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
2
|
-
|
3
|
-
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
4
|
-
|
5
|
-
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
6
|
-
|
7
|
-
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
8
|
-
|
9
|
-
The Syncfusion license that contains the terms and conditions can be found at
|
10
|
-
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|