@syncfusion/ej2-angular-documenteditor 29.2.11-ngcc → 30.1.37-ngcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@syncfusion/ej2-angular-documenteditor.es5.js +645 -636
- package/@syncfusion/ej2-angular-documenteditor.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-documenteditor.js +597 -588
- package/@syncfusion/ej2-angular-documenteditor.js.map +1 -1
- package/{license → LICENSE} +10 -10
- package/dist/ej2-angular-documenteditor.umd.js +644 -627
- package/dist/ej2-angular-documenteditor.umd.js.map +1 -1
- package/dist/ej2-angular-documenteditor.umd.min.js +2 -2
- package/dist/ej2-angular-documenteditor.umd.min.js.map +1 -1
- package/ej2-angular-documenteditor.d.ts +6 -6
- package/ej2-angular-documenteditor.metadata.json +1 -1
- package/package.json +4 -4
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/document-editor/documenteditor-all.module.d.ts +42 -42
- package/src/document-editor/documenteditor.component.d.ts +54 -54
- package/src/document-editor/documenteditor.module.d.ts +5 -5
- package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +8 -7
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +44 -43
- package/src/document-editor-container/documenteditorcontainer.module.d.ts +5 -5
- package/src/index.d.ts +7 -7
@@ -1,54 +1,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
|
-
export declare const inputs: string[];
|
5
|
-
export declare const outputs: string[];
|
6
|
-
export declare const twoWays: string[];
|
7
|
-
/**
|
8
|
-
* `ejs-documenteditor` represents the Angular Document Editor Component.
|
9
|
-
* ```html
|
10
|
-
* <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>
|
11
|
-
* ```
|
12
|
-
*/
|
13
|
-
export declare class DocumentEditorComponent extends DocumentEditor implements IComponentBase {
|
14
|
-
private ngEle;
|
15
|
-
private srenderer;
|
16
|
-
private viewContainerRef;
|
17
|
-
private injector;
|
18
|
-
context: any;
|
19
|
-
tagObjects: any;
|
20
|
-
actionComplete: any;
|
21
|
-
afterFormFieldFill: any;
|
22
|
-
beforeAcceptRejectChanges: any;
|
23
|
-
beforeCommentAction: any;
|
24
|
-
beforeFileOpen: any;
|
25
|
-
beforeFormFieldFill: any;
|
26
|
-
beforePaneSwitch: any;
|
27
|
-
commentBegin: any;
|
28
|
-
commentDelete: any;
|
29
|
-
commentEnd: any;
|
30
|
-
contentChange: any;
|
31
|
-
contentControl: any;
|
32
|
-
created: any;
|
33
|
-
customContextMenuBeforeOpen: any;
|
34
|
-
customContextMenuSelect: any;
|
35
|
-
destroyed: any;
|
36
|
-
documentChange: any;
|
37
|
-
keyDown: any;
|
38
|
-
requestNavigate: any;
|
39
|
-
searchResultsChange: any;
|
40
|
-
selectionChange: any;
|
41
|
-
serviceFailure: any;
|
42
|
-
trackChange: any;
|
43
|
-
viewChange: any;
|
44
|
-
zoomFactorChange: any;
|
45
|
-
beforeXmlHttpRequestSend: any;
|
46
|
-
documentLoadFailed: any;
|
47
|
-
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
48
|
-
ngOnInit(): void;
|
49
|
-
ngAfterViewInit(): void;
|
50
|
-
ngOnDestroy(): void;
|
51
|
-
ngAfterContentChecked(): void;
|
52
|
-
registerEvents: (eventList: string[]) => void;
|
53
|
-
addTwoWay: (propList: string[]) => void;
|
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
|
+
export declare const inputs: string[];
|
5
|
+
export declare const outputs: string[];
|
6
|
+
export declare const twoWays: string[];
|
7
|
+
/**
|
8
|
+
* `ejs-documenteditor` represents the Angular Document Editor Component.
|
9
|
+
* ```html
|
10
|
+
* <ejs-documenteditor isReadOnly='true' enableSelection='true'></ejs-documenteditor>
|
11
|
+
* ```
|
12
|
+
*/
|
13
|
+
export declare class DocumentEditorComponent extends DocumentEditor implements IComponentBase {
|
14
|
+
private ngEle;
|
15
|
+
private srenderer;
|
16
|
+
private viewContainerRef;
|
17
|
+
private injector;
|
18
|
+
context: any;
|
19
|
+
tagObjects: any;
|
20
|
+
actionComplete: any;
|
21
|
+
afterFormFieldFill: any;
|
22
|
+
beforeAcceptRejectChanges: any;
|
23
|
+
beforeCommentAction: any;
|
24
|
+
beforeFileOpen: any;
|
25
|
+
beforeFormFieldFill: any;
|
26
|
+
beforePaneSwitch: any;
|
27
|
+
commentBegin: any;
|
28
|
+
commentDelete: any;
|
29
|
+
commentEnd: any;
|
30
|
+
contentChange: any;
|
31
|
+
contentControl: any;
|
32
|
+
created: any;
|
33
|
+
customContextMenuBeforeOpen: any;
|
34
|
+
customContextMenuSelect: any;
|
35
|
+
destroyed: any;
|
36
|
+
documentChange: any;
|
37
|
+
keyDown: any;
|
38
|
+
requestNavigate: any;
|
39
|
+
searchResultsChange: any;
|
40
|
+
selectionChange: any;
|
41
|
+
serviceFailure: any;
|
42
|
+
trackChange: any;
|
43
|
+
viewChange: any;
|
44
|
+
zoomFactorChange: any;
|
45
|
+
beforeXmlHttpRequestSend: any;
|
46
|
+
documentLoadFailed: any;
|
47
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
48
|
+
ngOnInit(): void;
|
49
|
+
ngAfterViewInit(): void;
|
50
|
+
ngOnDestroy(): void;
|
51
|
+
ngAfterContentChecked(): void;
|
52
|
+
registerEvents: (eventList: string[]) => void;
|
53
|
+
addTwoWay: (propList: string[]) => void;
|
54
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* NgModule definition for the DocumentEditor component.
|
3
|
-
*/
|
4
|
-
export declare class DocumentEditorModule {
|
5
|
-
}
|
1
|
+
/**
|
2
|
+
* NgModule definition for the DocumentEditor component.
|
3
|
+
*/
|
4
|
+
export declare class DocumentEditorModule {
|
5
|
+
}
|
@@ -1,7 +1,8 @@
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
2
|
-
export declare const ToolbarService: ValueProvider;
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
import { ValueProvider } from '@angular/core';
|
2
|
+
export declare const ToolbarService: ValueProvider;
|
3
|
+
export declare const RibbonService: ValueProvider;
|
4
|
+
/**
|
5
|
+
* NgModule definition for the DocumentEditorContainer component with providers.
|
6
|
+
*/
|
7
|
+
export declare class DocumentEditorContainerAllModule {
|
8
|
+
}
|
@@ -1,43 +1,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
|
-
export declare const inputs: string[];
|
5
|
-
export declare const outputs: string[];
|
6
|
-
export declare const twoWays: string[];
|
7
|
-
/**
|
8
|
-
* `ejs-documenteditor-container` represents the Angular Document Editor Container.
|
9
|
-
* ```html
|
10
|
-
* <ejs-documenteditor-container></ejs-documenteditor-container>
|
11
|
-
* ```
|
12
|
-
*/
|
13
|
-
export declare class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {
|
14
|
-
private ngEle;
|
15
|
-
private srenderer;
|
16
|
-
private viewContainerRef;
|
17
|
-
private injector;
|
18
|
-
context: any;
|
19
|
-
tagObjects: any;
|
20
|
-
beforeAcceptRejectChanges: any;
|
21
|
-
beforeCommentAction: any;
|
22
|
-
beforePaneSwitch: any;
|
23
|
-
commentDelete: any;
|
24
|
-
contentChange: any;
|
25
|
-
contentControl: any;
|
26
|
-
created: any;
|
27
|
-
customContextMenuBeforeOpen: any;
|
28
|
-
customContextMenuSelect: any;
|
29
|
-
destroyed: any;
|
30
|
-
documentChange: any;
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
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
|
+
export declare const inputs: string[];
|
5
|
+
export declare const outputs: string[];
|
6
|
+
export declare const twoWays: string[];
|
7
|
+
/**
|
8
|
+
* `ejs-documenteditor-container` represents the Angular Document Editor Container.
|
9
|
+
* ```html
|
10
|
+
* <ejs-documenteditor-container></ejs-documenteditor-container>
|
11
|
+
* ```
|
12
|
+
*/
|
13
|
+
export declare class DocumentEditorContainerComponent extends DocumentEditorContainer implements IComponentBase {
|
14
|
+
private ngEle;
|
15
|
+
private srenderer;
|
16
|
+
private viewContainerRef;
|
17
|
+
private injector;
|
18
|
+
context: any;
|
19
|
+
tagObjects: any;
|
20
|
+
beforeAcceptRejectChanges: any;
|
21
|
+
beforeCommentAction: any;
|
22
|
+
beforePaneSwitch: any;
|
23
|
+
commentDelete: any;
|
24
|
+
contentChange: any;
|
25
|
+
contentControl: any;
|
26
|
+
created: any;
|
27
|
+
customContextMenuBeforeOpen: any;
|
28
|
+
customContextMenuSelect: any;
|
29
|
+
destroyed: any;
|
30
|
+
documentChange: any;
|
31
|
+
fileMenuItemClick: any;
|
32
|
+
selectionChange: any;
|
33
|
+
serviceFailure: any;
|
34
|
+
toolbarClick: any;
|
35
|
+
trackChange: any;
|
36
|
+
beforeXmlHttpRequestSend: any;
|
37
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
38
|
+
ngOnInit(): void;
|
39
|
+
ngAfterViewInit(): void;
|
40
|
+
ngOnDestroy(): void;
|
41
|
+
ngAfterContentChecked(): void;
|
42
|
+
registerEvents: (eventList: string[]) => void;
|
43
|
+
addTwoWay: (propList: string[]) => void;
|
44
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* NgModule definition for the DocumentEditorContainer component.
|
3
|
-
*/
|
4
|
-
export declare class DocumentEditorContainerModule {
|
5
|
-
}
|
1
|
+
/**
|
2
|
+
* NgModule definition for the DocumentEditorContainer component.
|
3
|
+
*/
|
4
|
+
export declare class DocumentEditorContainerModule {
|
5
|
+
}
|
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 } 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';
|