@syncfusion/ej2-angular-documenteditor 30.1.42-ngcc → 30.1.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4613 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +134 -0
- package/esm2020/src/document-editor/documenteditor.component.mjs +311 -0
- package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
- package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +32 -0
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +73 -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 +584 -0
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +584 -0
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/document-editor/documenteditor-all.module.d.ts +48 -42
- package/src/document-editor/documenteditor.component.d.ts +57 -54
- package/src/document-editor/documenteditor.module.d.ts +11 -5
- package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +14 -8
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +47 -44
- package/src/document-editor-container/documenteditorcontainer.module.d.ts +11 -5
- package/src/index.d.ts +7 -7
- package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
- package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -646
- package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-documenteditor.js +0 -616
- package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-documenteditor.umd.js +0 -1360
- 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
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"syncfusion-ej2-angular-documenteditor.mjs","sources":["../../src/document-editor/documenteditor.component.ts","../../src/document-editor/documenteditor.module.ts","../../src/document-editor/documenteditor-all.module.ts","../../src/document-editor-container/documenteditorcontainer.component.ts","../../src/document-editor-container/documenteditorcontainer.module.ts","../../src/document-editor-container/documenteditorcontainer-all.module.ts","../../syncfusion-ej2-angular-documenteditor.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','enableLayout','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','documentLoadFailed'];\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\tbeforeXmlHttpRequestSend: any;\n\tpublic documentLoadFailed: 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\r try {\n let mod = this.injector.get('DocumentEditorSfdtExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorWordExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTextExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSearch');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorEditor');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorEditorHistory');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorOptionsPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorImageResizer');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorHyperlinkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTableDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorBookmarkDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTableOfContentsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorPageSetupDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorParagraphDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorListDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorStyleDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorStylesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorBulletsAndNumberingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorFontDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTablePropertiesDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorBordersAndShadingDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTableOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorCellOptionsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSpellChecker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorSpellCheckDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditing');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorColumnsDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorCollaborativeEditingHandler');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorOptimized');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTabDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorTextFormFieldDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorDropDownFormFieldDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('DocumentEditorCheckBoxFormFieldDialog');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\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 { 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, Optimized, TabDialog, TextFormFieldDialog, DropDownFormFieldDialog, CheckBoxFormFieldDialog} 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};\nexport const OptimizedService: ValueProvider = { provide: 'DocumentEditorOptimized', useValue: Optimized};\nexport const TabDialogService: ValueProvider = { provide: 'DocumentEditorTabDialog', useValue: TabDialog};\nexport const TextFormFieldDialogService: ValueProvider = { provide: 'DocumentEditorTextFormFieldDialog', useValue: TextFormFieldDialog};\nexport const DropDownFormFieldDialogService: ValueProvider = { provide: 'DocumentEditorDropDownFormFieldDialog', useValue: DropDownFormFieldDialog};\nexport const CheckBoxFormFieldDialogService: ValueProvider = { provide: 'DocumentEditorCheckBoxFormFieldDialog', useValue: CheckBoxFormFieldDialog};\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 OptimizedService,\n TabDialogService,\n TextFormFieldDialogService,\n DropDownFormFieldDialogService,\n CheckBoxFormFieldDialogService\n ]\n})\nexport class DocumentEditorAllModule { }","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','backstageMenu','currentUser','documentEditorSettings','documentSettings','enableAutoFocus','enableComment','enableCsp','enableLocalPaste','enableLockAndEdit','enablePersistence','enableRtl','enableSpellCheck','enableToolbar','enableTrackChanges','fileMenuItems','headers','height','layoutType','locale','restrictEditing','ribbonLayout','serverActionSettings','serviceUrl','showPropertiesPane','toolbarItems','toolbarMode','userColor','width','zIndex'];\nexport const outputs: string[] = ['beforeAcceptRejectChanges','beforeCommentAction','beforePaneSwitch','commentDelete','contentChange','contentControl','created','customContextMenuBeforeOpen','customContextMenuSelect','destroyed','documentChange','fileMenuItemClick','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\tfileMenuItemClick: 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\r try {\n let mod = this.injector.get('DocumentEditorRibbon');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\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 { 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, Ribbon} from '@syncfusion/ej2-documenteditor'\n\n\nexport const ToolbarService: ValueProvider = { provide: 'DocumentEditorToolbar', useValue: Toolbar};\nexport const RibbonService: ValueProvider = { provide: 'DocumentEditorRibbon', useValue: Ribbon};\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 RibbonService\n ]\n})\nexport class DocumentEditorContainerAllModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["inputs","outputs","twoWays"],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@syncfusion/ej2-angular-documenteditor",
|
3
|
-
"version": "30.1.42
|
3
|
+
"version": "30.1.42",
|
4
4
|
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
|
5
5
|
"author": "Syncfusion Inc.",
|
6
6
|
"license": "SEE LICENSE IN license",
|
@@ -10,7 +10,6 @@
|
|
10
10
|
"@syncfusion/ej2-angular-base": "~30.1.42",
|
11
11
|
"@syncfusion/ej2-documenteditor": "30.1.42"
|
12
12
|
},
|
13
|
-
"devDependencies": {},
|
14
13
|
"keywords": [
|
15
14
|
"ej2-angular-documenteditor",
|
16
15
|
"angular-documenteditor",
|
@@ -21,10 +20,24 @@
|
|
21
20
|
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
22
21
|
},
|
23
22
|
"sideEffects": false,
|
24
|
-
"
|
25
|
-
"
|
26
|
-
"
|
27
|
-
"
|
28
|
-
"
|
23
|
+
"module": "fesm2015/syncfusion-ej2-angular-documenteditor.mjs",
|
24
|
+
"es2020": "fesm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
25
|
+
"esm2020": "esm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
26
|
+
"fesm2020": "fesm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
27
|
+
"fesm2015": "fesm2015/syncfusion-ej2-angular-documenteditor.mjs",
|
28
|
+
"typings": "syncfusion-ej2-angular-documenteditor.d.ts",
|
29
|
+
"exports": {
|
30
|
+
"./package.json": {
|
31
|
+
"default": "./package.json"
|
32
|
+
},
|
33
|
+
".": {
|
34
|
+
"types": "./syncfusion-ej2-angular-documenteditor.d.ts",
|
35
|
+
"esm2020": "./esm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
36
|
+
"es2020": "./fesm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
37
|
+
"es2015": "./fesm2015/syncfusion-ej2-angular-documenteditor.mjs",
|
38
|
+
"node": "./fesm2015/syncfusion-ej2-angular-documenteditor.mjs",
|
39
|
+
"default": "./fesm2020/syncfusion-ej2-angular-documenteditor.mjs"
|
40
|
+
}
|
41
|
+
},
|
29
42
|
"homepage": "https://www.syncfusion.com/angular-components"
|
30
43
|
}
|
package/public_api.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from './src/index';
|
1
|
+
export * from './src/index';
|
@@ -1,42 +1,48 @@
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
export declare const
|
6
|
-
export declare const
|
7
|
-
export declare const
|
8
|
-
export declare const
|
9
|
-
export declare const
|
10
|
-
export declare const
|
11
|
-
export declare const
|
12
|
-
export declare const
|
13
|
-
export declare const
|
14
|
-
export declare const
|
15
|
-
export declare const
|
16
|
-
export declare const
|
17
|
-
export declare const
|
18
|
-
export declare const
|
19
|
-
export declare const
|
20
|
-
export declare const
|
21
|
-
export declare const
|
22
|
-
export declare const
|
23
|
-
export declare const
|
24
|
-
export declare const
|
25
|
-
export declare const
|
26
|
-
export declare const
|
27
|
-
export declare const
|
28
|
-
export declare const
|
29
|
-
export declare const
|
30
|
-
export declare const
|
31
|
-
export declare const
|
32
|
-
export declare const
|
33
|
-
export declare const
|
34
|
-
export declare const
|
35
|
-
export declare const
|
36
|
-
export declare const
|
37
|
-
export declare const
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
1
|
+
import { ValueProvider } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
import * as i1 from "@angular/common";
|
4
|
+
import * as i2 from "./documenteditor.module";
|
5
|
+
export declare const PrintService: ValueProvider;
|
6
|
+
export declare const SfdtExportService: ValueProvider;
|
7
|
+
export declare const WordExportService: ValueProvider;
|
8
|
+
export declare const TextExportService: ValueProvider;
|
9
|
+
export declare const SelectionService: ValueProvider;
|
10
|
+
export declare const SearchService: ValueProvider;
|
11
|
+
export declare const EditorService: ValueProvider;
|
12
|
+
export declare const EditorHistoryService: ValueProvider;
|
13
|
+
export declare const OptionsPaneService: ValueProvider;
|
14
|
+
export declare const ContextMenuService: ValueProvider;
|
15
|
+
export declare const ImageResizerService: ValueProvider;
|
16
|
+
export declare const HyperlinkDialogService: ValueProvider;
|
17
|
+
export declare const TableDialogService: ValueProvider;
|
18
|
+
export declare const BookmarkDialogService: ValueProvider;
|
19
|
+
export declare const TableOfContentsDialogService: ValueProvider;
|
20
|
+
export declare const PageSetupDialogService: ValueProvider;
|
21
|
+
export declare const ParagraphDialogService: ValueProvider;
|
22
|
+
export declare const ListDialogService: ValueProvider;
|
23
|
+
export declare const StyleDialogService: ValueProvider;
|
24
|
+
export declare const StylesDialogService: ValueProvider;
|
25
|
+
export declare const BulletsAndNumberingDialogService: ValueProvider;
|
26
|
+
export declare const FontDialogService: ValueProvider;
|
27
|
+
export declare const TablePropertiesDialogService: ValueProvider;
|
28
|
+
export declare const BordersAndShadingDialogService: ValueProvider;
|
29
|
+
export declare const TableOptionsDialogService: ValueProvider;
|
30
|
+
export declare const CellOptionsDialogService: ValueProvider;
|
31
|
+
export declare const SpellCheckerService: ValueProvider;
|
32
|
+
export declare const SpellCheckDialogService: ValueProvider;
|
33
|
+
export declare const CollaborativeEditingService: ValueProvider;
|
34
|
+
export declare const ColumnsDialogService: ValueProvider;
|
35
|
+
export declare const CollaborativeEditingHandlerService: ValueProvider;
|
36
|
+
export declare const OptimizedService: ValueProvider;
|
37
|
+
export declare const TabDialogService: ValueProvider;
|
38
|
+
export declare const TextFormFieldDialogService: ValueProvider;
|
39
|
+
export declare const DropDownFormFieldDialogService: ValueProvider;
|
40
|
+
export declare const CheckBoxFormFieldDialogService: ValueProvider;
|
41
|
+
/**
|
42
|
+
* NgModule definition for the DocumentEditor component with providers.
|
43
|
+
*/
|
44
|
+
export declare class DocumentEditorAllModule {
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorAllModule, never>;
|
46
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentEditorAllModule, never, [typeof i1.CommonModule, typeof i2.DocumentEditorModule], [typeof i2.DocumentEditorModule]>;
|
47
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentEditorAllModule>;
|
48
|
+
}
|
@@ -1,54 +1,57 @@
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
import { DocumentEditor } from '@syncfusion/ej2-documenteditor';
|
4
|
-
|
5
|
-
export declare const
|
6
|
-
export declare const
|
7
|
-
|
8
|
-
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
private
|
16
|
-
private
|
17
|
-
private
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
3
|
+
import { DocumentEditor } from '@syncfusion/ej2-documenteditor';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare const inputs: string[];
|
6
|
+
export declare const outputs: string[];
|
7
|
+
export declare const twoWays: string[];
|
8
|
+
/**
|
9
|
+
* `ejs-documenteditor` represents the Angular Document Editor Component.
|
10
|
+
* ```html
|
11
|
+
* <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>
|
12
|
+
* ```
|
13
|
+
*/
|
14
|
+
export declare class DocumentEditorComponent extends DocumentEditor implements IComponentBase {
|
15
|
+
private ngEle;
|
16
|
+
private srenderer;
|
17
|
+
private viewContainerRef;
|
18
|
+
private injector;
|
19
|
+
context: any;
|
20
|
+
tagObjects: any;
|
21
|
+
actionComplete: any;
|
22
|
+
afterFormFieldFill: any;
|
23
|
+
beforeAcceptRejectChanges: any;
|
24
|
+
beforeCommentAction: any;
|
25
|
+
beforeFileOpen: any;
|
26
|
+
beforeFormFieldFill: any;
|
27
|
+
beforePaneSwitch: any;
|
28
|
+
commentBegin: any;
|
29
|
+
commentDelete: any;
|
30
|
+
commentEnd: any;
|
31
|
+
contentChange: any;
|
32
|
+
contentControl: any;
|
33
|
+
created: any;
|
34
|
+
customContextMenuBeforeOpen: any;
|
35
|
+
customContextMenuSelect: any;
|
36
|
+
destroyed: any;
|
37
|
+
documentChange: any;
|
38
|
+
keyDown: any;
|
39
|
+
requestNavigate: any;
|
40
|
+
searchResultsChange: any;
|
41
|
+
selectionChange: any;
|
42
|
+
serviceFailure: any;
|
43
|
+
trackChange: any;
|
44
|
+
viewChange: any;
|
45
|
+
zoomFactorChange: any;
|
46
|
+
beforeXmlHttpRequestSend: any;
|
47
|
+
documentLoadFailed: any;
|
48
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
49
|
+
ngOnInit(): void;
|
50
|
+
ngAfterViewInit(): void;
|
51
|
+
ngOnDestroy(): void;
|
52
|
+
ngAfterContentChecked(): void;
|
53
|
+
registerEvents: (eventList: string[]) => void;
|
54
|
+
addTwoWay: (propList: string[]) => void;
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorComponent, never>;
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentEditorComponent, "ejs-documenteditor", never, { "acceptTab": "acceptTab"; "autoResizeOnVisibilityChange": "autoResizeOnVisibilityChange"; "currentUser": "currentUser"; "defaultPasteOption": "defaultPasteOption"; "documentEditorSettings": "documentEditorSettings"; "documentName": "documentName"; "documentSettings": "documentSettings"; "enableAutoFocus": "enableAutoFocus"; "enableBookmarkDialog": "enableBookmarkDialog"; "enableBordersAndShadingDialog": "enableBordersAndShadingDialog"; "enableCollaborativeEditing": "enableCollaborativeEditing"; "enableColumnsDialog": "enableColumnsDialog"; "enableComment": "enableComment"; "enableContextMenu": "enableContextMenu"; "enableCursorOnReadOnly": "enableCursorOnReadOnly"; "enableEditor": "enableEditor"; "enableEditorHistory": "enableEditorHistory"; "enableFontDialog": "enableFontDialog"; "enableFootnoteAndEndnoteDialog": "enableFootnoteAndEndnoteDialog"; "enableFormField": "enableFormField"; "enableHyperlinkDialog": "enableHyperlinkDialog"; "enableImageResizer": "enableImageResizer"; "enableLayout": "enableLayout"; "enableListDialog": "enableListDialog"; "enableLocalPaste": "enableLocalPaste"; "enableLockAndEdit": "enableLockAndEdit"; "enableOptionsPane": "enableOptionsPane"; "enablePageSetupDialog": "enablePageSetupDialog"; "enableParagraphDialog": "enableParagraphDialog"; "enablePersistence": "enablePersistence"; "enablePrint": "enablePrint"; "enableRtl": "enableRtl"; "enableSearch": "enableSearch"; "enableSelection": "enableSelection"; "enableSfdtExport": "enableSfdtExport"; "enableSpellCheck": "enableSpellCheck"; "enableStyleDialog": "enableStyleDialog"; "enableTableDialog": "enableTableDialog"; "enableTableOfContentsDialog": "enableTableOfContentsDialog"; "enableTableOptionsDialog": "enableTableOptionsDialog"; "enableTablePropertiesDialog": "enableTablePropertiesDialog"; "enableTextExport": "enableTextExport"; "enableTrackChanges": "enableTrackChanges"; "enableWordExport": "enableWordExport"; "headers": "headers"; "height": "height"; "isReadOnly": "isReadOnly"; "layoutType": "layoutType"; "locale": "locale"; "pageGap": "pageGap"; "pageOutline": "pageOutline"; "serverActionSettings": "serverActionSettings"; "serviceUrl": "serviceUrl"; "showComments": "showComments"; "showRevisions": "showRevisions"; "useCtrlClickToFollowHyperlink": "useCtrlClickToFollowHyperlink"; "userColor": "userColor"; "width": "width"; "zIndex": "zIndex"; "zoomFactor": "zoomFactor"; }, { "actionComplete": "actionComplete"; "afterFormFieldFill": "afterFormFieldFill"; "beforeAcceptRejectChanges": "beforeAcceptRejectChanges"; "beforeCommentAction": "beforeCommentAction"; "beforeFileOpen": "beforeFileOpen"; "beforeFormFieldFill": "beforeFormFieldFill"; "beforePaneSwitch": "beforePaneSwitch"; "commentBegin": "commentBegin"; "commentDelete": "commentDelete"; "commentEnd": "commentEnd"; "contentChange": "contentChange"; "contentControl": "contentControl"; "created": "created"; "customContextMenuBeforeOpen": "customContextMenuBeforeOpen"; "customContextMenuSelect": "customContextMenuSelect"; "destroyed": "destroyed"; "documentChange": "documentChange"; "keyDown": "keyDown"; "requestNavigate": "requestNavigate"; "searchResultsChange": "searchResultsChange"; "selectionChange": "selectionChange"; "serviceFailure": "serviceFailure"; "trackChange": "trackChange"; "viewChange": "viewChange"; "zoomFactorChange": "zoomFactorChange"; "beforeXmlHttpRequestSend": "beforeXmlHttpRequestSend"; "documentLoadFailed": "documentLoadFailed"; }, never, never>;
|
57
|
+
}
|
@@ -1,5 +1,11 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./documenteditor.component";
|
3
|
+
import * as i2 from "@angular/common";
|
4
|
+
/**
|
5
|
+
* NgModule definition for the DocumentEditor component.
|
6
|
+
*/
|
7
|
+
export declare class DocumentEditorModule {
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorModule, never>;
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentEditorModule, [typeof i1.DocumentEditorComponent], [typeof i2.CommonModule], [typeof i1.DocumentEditorComponent]>;
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentEditorModule>;
|
11
|
+
}
|
@@ -1,8 +1,14 @@
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
1
|
+
import { ValueProvider } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
import * as i1 from "@angular/common";
|
4
|
+
import * as i2 from "./documenteditorcontainer.module";
|
5
|
+
export declare const ToolbarService: ValueProvider;
|
6
|
+
export declare const RibbonService: ValueProvider;
|
7
|
+
/**
|
8
|
+
* NgModule definition for the DocumentEditorContainer component with providers.
|
9
|
+
*/
|
10
|
+
export declare class DocumentEditorContainerAllModule {
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorContainerAllModule, never>;
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentEditorContainerAllModule, never, [typeof i1.CommonModule, typeof i2.DocumentEditorContainerModule], [typeof i2.DocumentEditorContainerModule]>;
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentEditorContainerAllModule>;
|
14
|
+
}
|
@@ -1,44 +1,47 @@
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
import { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';
|
4
|
-
|
5
|
-
export declare const
|
6
|
-
export declare const
|
7
|
-
|
8
|
-
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
private
|
16
|
-
private
|
17
|
-
private
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
3
|
+
import { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare const inputs: string[];
|
6
|
+
export declare const outputs: string[];
|
7
|
+
export declare const twoWays: string[];
|
8
|
+
/**
|
9
|
+
* `ejs-documenteditor-container` represents the Angular Document Editor Container.
|
10
|
+
* ```html
|
11
|
+
* <ejs-documenteditor-container></ejs-documenteditor-container>
|
12
|
+
* ```
|
13
|
+
*/
|
14
|
+
export declare class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {
|
15
|
+
private ngEle;
|
16
|
+
private srenderer;
|
17
|
+
private viewContainerRef;
|
18
|
+
private injector;
|
19
|
+
context: any;
|
20
|
+
tagObjects: any;
|
21
|
+
beforeAcceptRejectChanges: any;
|
22
|
+
beforeCommentAction: any;
|
23
|
+
beforePaneSwitch: any;
|
24
|
+
commentDelete: any;
|
25
|
+
contentChange: any;
|
26
|
+
contentControl: any;
|
27
|
+
created: any;
|
28
|
+
customContextMenuBeforeOpen: any;
|
29
|
+
customContextMenuSelect: any;
|
30
|
+
destroyed: any;
|
31
|
+
documentChange: any;
|
32
|
+
fileMenuItemClick: any;
|
33
|
+
selectionChange: any;
|
34
|
+
serviceFailure: any;
|
35
|
+
toolbarClick: any;
|
36
|
+
trackChange: any;
|
37
|
+
beforeXmlHttpRequestSend: any;
|
38
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
39
|
+
ngOnInit(): void;
|
40
|
+
ngAfterViewInit(): void;
|
41
|
+
ngOnDestroy(): void;
|
42
|
+
ngAfterContentChecked(): void;
|
43
|
+
registerEvents: (eventList: string[]) => void;
|
44
|
+
addTwoWay: (propList: string[]) => void;
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorContainerComponent, never>;
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentEditorContainerComponent, "ejs-documenteditorcontainer", never, { "autoResizeOnVisibilityChange": "autoResizeOnVisibilityChange"; "backstageMenu": "backstageMenu"; "currentUser": "currentUser"; "documentEditorSettings": "documentEditorSettings"; "documentSettings": "documentSettings"; "enableAutoFocus": "enableAutoFocus"; "enableComment": "enableComment"; "enableCsp": "enableCsp"; "enableLocalPaste": "enableLocalPaste"; "enableLockAndEdit": "enableLockAndEdit"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableSpellCheck": "enableSpellCheck"; "enableToolbar": "enableToolbar"; "enableTrackChanges": "enableTrackChanges"; "fileMenuItems": "fileMenuItems"; "headers": "headers"; "height": "height"; "layoutType": "layoutType"; "locale": "locale"; "restrictEditing": "restrictEditing"; "ribbonLayout": "ribbonLayout"; "serverActionSettings": "serverActionSettings"; "serviceUrl": "serviceUrl"; "showPropertiesPane": "showPropertiesPane"; "toolbarItems": "toolbarItems"; "toolbarMode": "toolbarMode"; "userColor": "userColor"; "width": "width"; "zIndex": "zIndex"; }, { "beforeAcceptRejectChanges": "beforeAcceptRejectChanges"; "beforeCommentAction": "beforeCommentAction"; "beforePaneSwitch": "beforePaneSwitch"; "commentDelete": "commentDelete"; "contentChange": "contentChange"; "contentControl": "contentControl"; "created": "created"; "customContextMenuBeforeOpen": "customContextMenuBeforeOpen"; "customContextMenuSelect": "customContextMenuSelect"; "destroyed": "destroyed"; "documentChange": "documentChange"; "fileMenuItemClick": "fileMenuItemClick"; "selectionChange": "selectionChange"; "serviceFailure": "serviceFailure"; "toolbarClick": "toolbarClick"; "trackChange": "trackChange"; "beforeXmlHttpRequestSend": "beforeXmlHttpRequestSend"; }, never, never>;
|
47
|
+
}
|
@@ -1,5 +1,11 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./documenteditorcontainer.component";
|
3
|
+
import * as i2 from "@angular/common";
|
4
|
+
/**
|
5
|
+
* NgModule definition for the DocumentEditorContainer component.
|
6
|
+
*/
|
7
|
+
export declare class DocumentEditorContainerModule {
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorContainerModule, never>;
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentEditorContainerModule, [typeof i1.DocumentEditorContainerComponent], [typeof i2.CommonModule], [typeof i1.DocumentEditorContainerComponent]>;
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentEditorContainerModule>;
|
11
|
+
}
|
package/src/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
export { DocumentEditorComponent } from './document-editor/documenteditor.component';
|
2
|
-
export { DocumentEditorModule } from './document-editor/documenteditor.module';
|
3
|
-
export { DocumentEditorAllModule, PrintService, SfdtExportService, WordExportService, TextExportService, SelectionService, SearchService, EditorService, EditorHistoryService, OptionsPaneService, ContextMenuService, ImageResizerService, HyperlinkDialogService, TableDialogService, BookmarkDialogService, TableOfContentsDialogService, PageSetupDialogService, ParagraphDialogService, ListDialogService, StyleDialogService, StylesDialogService, BulletsAndNumberingDialogService, FontDialogService, TablePropertiesDialogService, BordersAndShadingDialogService, TableOptionsDialogService, CellOptionsDialogService, SpellCheckerService, SpellCheckDialogService, CollaborativeEditingService, ColumnsDialogService, CollaborativeEditingHandlerService, OptimizedService, TabDialogService, TextFormFieldDialogService, DropDownFormFieldDialogService, CheckBoxFormFieldDialogService } from './document-editor/documenteditor-all.module';
|
4
|
-
export { DocumentEditorContainerComponent } from './document-editor-container/documenteditorcontainer.component';
|
5
|
-
export { DocumentEditorContainerModule } from './document-editor-container/documenteditorcontainer.module';
|
6
|
-
export { DocumentEditorContainerAllModule, ToolbarService, RibbonService } from './document-editor-container/documenteditorcontainer-all.module';
|
7
|
-
export * from '@syncfusion/ej2-documenteditor';
|
1
|
+
export { DocumentEditorComponent } from './document-editor/documenteditor.component';
|
2
|
+
export { DocumentEditorModule } from './document-editor/documenteditor.module';
|
3
|
+
export { DocumentEditorAllModule, PrintService, SfdtExportService, WordExportService, TextExportService, SelectionService, SearchService, EditorService, EditorHistoryService, OptionsPaneService, ContextMenuService, ImageResizerService, HyperlinkDialogService, TableDialogService, BookmarkDialogService, TableOfContentsDialogService, PageSetupDialogService, ParagraphDialogService, ListDialogService, StyleDialogService, StylesDialogService, BulletsAndNumberingDialogService, FontDialogService, TablePropertiesDialogService, BordersAndShadingDialogService, TableOptionsDialogService, CellOptionsDialogService, SpellCheckerService, SpellCheckDialogService, CollaborativeEditingService, ColumnsDialogService, CollaborativeEditingHandlerService, OptimizedService, TabDialogService, TextFormFieldDialogService, DropDownFormFieldDialogService, CheckBoxFormFieldDialogService } from './document-editor/documenteditor-all.module';
|
4
|
+
export { DocumentEditorContainerComponent } from './document-editor-container/documenteditorcontainer.component';
|
5
|
+
export { DocumentEditorContainerModule } from './document-editor-container/documenteditorcontainer.module';
|
6
|
+
export { DocumentEditorContainerAllModule, ToolbarService, RibbonService } from './document-editor-container/documenteditorcontainer-all.module';
|
7
|
+
export * from '@syncfusion/ej2-documenteditor';
|