@syncfusion/ej2-angular-documenteditor 31.2.12-ngcc → 31.2.13
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 +4938 -0
- package/README.md +31 -24
- 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 +21 -8
- package/public_api.d.ts +1 -1
- package/schematics/collection.json +14 -10
- package/schematics/generators/documenteditorcontainer-default/index.d.ts +3 -0
- package/schematics/generators/documenteditorcontainer-default/index.js +8 -0
- package/schematics/generators/documenteditorcontainer-default/index.ts +8 -0
- package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +5 -0
- package/schematics/generators/documenteditorcontainer-default/sample-details.js +8 -0
- package/schematics/generators/documenteditorcontainer-default/sample-details.ts +5 -0
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +8 -0
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.ts +25 -0
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/assets/data.ts +1423 -0
- package/schematics/generators/documenteditorcontainer-default/schema.d.ts +3 -0
- package/schematics/generators/documenteditorcontainer-default/schema.js +2 -0
- package/schematics/generators/documenteditorcontainer-default/schema.json +125 -0
- package/schematics/generators/documenteditorcontainer-default/schema.ts +3 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.ts +10 -10
- package/schematics/ng-add/schema.json +34 -34
- package/schematics/ng-add/schema.ts +30 -30
- package/schematics/tsconfig.json +25 -25
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +1 -0
- package/schematics/utils/lib-details.ts +4 -4
- package/src/document-editor/documenteditor-all.module.d.ts +48 -42
- package/src/document-editor/documenteditor.component.d.ts +58 -55
- 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 +48 -45
- package/src/document-editor-container/documenteditorcontainer.module.d.ts +11 -5
- package/src/index.d.ts +7 -7
- package/styles/document-editor/material3-dark.scss +1 -1
- package/styles/document-editor/material3.scss +1 -1
- package/styles/document-editor-container/material3-dark.scss +1 -1
- package/styles/document-editor-container/material3.scss +1 -1
- 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 -1363
- 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
|
@@ -1,45 +1,48 @@
|
|
|
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
|
-
|
|
45
|
-
|
|
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
|
+
beforePaste: any;
|
|
25
|
+
commentDelete: any;
|
|
26
|
+
contentChange: any;
|
|
27
|
+
contentControl: any;
|
|
28
|
+
created: any;
|
|
29
|
+
customContextMenuBeforeOpen: any;
|
|
30
|
+
customContextMenuSelect: any;
|
|
31
|
+
destroyed: any;
|
|
32
|
+
documentChange: any;
|
|
33
|
+
fileMenuItemClick: any;
|
|
34
|
+
selectionChange: any;
|
|
35
|
+
serviceFailure: any;
|
|
36
|
+
toolbarClick: any;
|
|
37
|
+
trackChange: any;
|
|
38
|
+
beforeXmlHttpRequestSend: any;
|
|
39
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
ngAfterViewInit(): void;
|
|
42
|
+
ngOnDestroy(): void;
|
|
43
|
+
ngAfterContentChecked(): void;
|
|
44
|
+
registerEvents: (eventList: string[]) => void;
|
|
45
|
+
addTwoWay: (propList: string[]) => void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorContainerComponent, never>;
|
|
47
|
+
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"; "beforePaste": "beforePaste"; "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>;
|
|
48
|
+
}
|
|
@@ -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';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'ej2-base/styles/definition/material3-dark.scss';
|
|
2
2
|
@import 'ej2-documenteditor/styles/document-editor/material3-dark.scss';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'ej2-base/styles/definition/material3.scss';
|
|
2
2
|
@import 'ej2-documenteditor/styles/document-editor/material3.scss';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'ej2-base/styles/definition/material3-dark.scss';
|
|
2
2
|
@import 'ej2-documenteditor/styles/document-editor-container/material3-dark.scss';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'ej2-base/styles/definition/material3.scss';
|
|
2
2
|
@import 'ej2-documenteditor/styles/document-editor-container/material3.scss';
|