@syncfusion/ej2-angular-documenteditor 23.2.7-ngcc → 23.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/README.md +1 -1
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +116 -0
- package/esm2020/src/document-editor/documenteditor.component.mjs +269 -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 +516 -0
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +516 -0
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
- package/package.json +72 -58
- package/schematics/utils/lib-details.d.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/styles/document-editor/_all.scss +3 -0
- package/styles/document-editor/_bootstrap-dark-definition.scss +548 -0
- package/styles/document-editor/_bootstrap-definition.scss +547 -0
- package/styles/document-editor/_bootstrap4-definition.scss +560 -0
- package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/document-editor/_bootstrap5-definition.scss +561 -0
- package/styles/document-editor/_fabric-dark-definition.scss +550 -0
- package/styles/document-editor/_fabric-definition.scss +549 -0
- package/styles/document-editor/_fluent-dark-definition.scss +1 -0
- package/styles/document-editor/_fluent-definition.scss +570 -0
- package/styles/document-editor/_fusionnew-definition.scss +561 -0
- package/styles/document-editor/_highcontrast-definition.scss +549 -0
- package/styles/document-editor/_highcontrast-light-definition.scss +2989 -0
- package/styles/document-editor/_layout.scss +224 -0
- package/styles/document-editor/_material-dark-definition.scss +566 -0
- package/styles/document-editor/_material-definition.scss +566 -0
- package/styles/document-editor/_material3-dark-definition.scss +1 -0
- package/styles/document-editor/_material3-definition.scss +561 -0
- package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
- package/styles/document-editor/_tailwind-definition.scss +558 -0
- package/styles/document-editor/_theme.scss +3561 -0
- package/styles/document-editor/bootstrap-dark.scss +4 -1
- package/styles/document-editor/bootstrap.scss +4 -1
- package/styles/document-editor/bootstrap4.scss +4 -1
- package/styles/document-editor/bootstrap5-dark.scss +4 -1
- package/styles/document-editor/bootstrap5.scss +4 -1
- package/styles/document-editor/fabric-dark.scss +4 -1
- package/styles/document-editor/fabric.scss +4 -1
- package/styles/document-editor/fluent-dark.scss +4 -1
- package/styles/document-editor/fluent.scss +4 -1
- package/styles/document-editor/highcontrast-light.scss +4 -1
- package/styles/document-editor/highcontrast.scss +4 -1
- package/styles/document-editor/icons/_bootstrap-dark.scss +660 -0
- package/styles/document-editor/icons/_bootstrap.scss +660 -0
- package/styles/document-editor/icons/_bootstrap4.scss +645 -0
- package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
- package/styles/document-editor/icons/_bootstrap5.scss +699 -0
- package/styles/document-editor/icons/_fabric-dark.scss +660 -0
- package/styles/document-editor/icons/_fabric.scss +660 -0
- package/styles/document-editor/icons/_fluent-dark.scss +1 -0
- package/styles/document-editor/icons/_fluent.scss +702 -0
- package/styles/document-editor/icons/_fusionnew.scss +696 -0
- package/styles/document-editor/icons/_highcontrast-light.scss +665 -0
- package/styles/document-editor/icons/_highcontrast.scss +660 -0
- package/styles/document-editor/icons/_material-dark.scss +653 -0
- package/styles/document-editor/icons/_material.scss +653 -0
- package/styles/document-editor/icons/_material3-dark.scss +1 -0
- package/styles/document-editor/icons/_material3.scss +696 -0
- package/styles/document-editor/icons/_tailwind-dark.scss +696 -0
- package/styles/document-editor/icons/_tailwind.scss +699 -0
- package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +174 -0
- package/styles/document-editor/material-dark.scss +4 -1
- package/styles/document-editor/material.scss +4 -1
- package/styles/document-editor/material3-dark.scss +5 -2
- package/styles/document-editor/material3.scss +5 -2
- package/styles/document-editor/tailwind-dark.scss +4 -1
- package/styles/document-editor/tailwind.scss +4 -1
- package/styles/document-editor-container/_all.scss +2 -0
- package/styles/document-editor-container/_bootstrap-dark-definition.scss +141 -0
- package/styles/document-editor-container/_bootstrap-definition.scss +141 -0
- package/styles/document-editor-container/_bootstrap4-definition.scss +157 -0
- package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap5-definition.scss +167 -0
- package/styles/document-editor-container/_definition.scss +12 -0
- package/styles/document-editor-container/_fabric-dark-definition.scss +146 -0
- package/styles/document-editor-container/_fabric-definition.scss +143 -0
- package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
- package/styles/document-editor-container/_fluent-definition.scss +168 -0
- package/styles/document-editor-container/_fusionnew-definition.scss +167 -0
- package/styles/document-editor-container/_highcontrast-definition.scss +144 -0
- package/styles/document-editor-container/_highcontrast-light-definition.scss +147 -0
- package/styles/document-editor-container/_layout.scss +89 -0
- package/styles/document-editor-container/_material-dark-definition.scss +145 -0
- package/styles/document-editor-container/_material-definition.scss +144 -0
- package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
- package/styles/document-editor-container/_material3-definition.scss +171 -0
- package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
- package/styles/document-editor-container/_tailwind-definition.scss +161 -0
- package/styles/document-editor-container/_theme.scss +2468 -0
- package/styles/document-editor-container/bootstrap-dark.scss +5 -1
- package/styles/document-editor-container/bootstrap.scss +5 -1
- package/styles/document-editor-container/bootstrap4.scss +5 -1
- package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
- package/styles/document-editor-container/bootstrap5.scss +5 -1
- package/styles/document-editor-container/fabric-dark.scss +5 -1
- package/styles/document-editor-container/fabric.scss +5 -1
- package/styles/document-editor-container/fluent-dark.scss +5 -1
- package/styles/document-editor-container/fluent.scss +5 -1
- package/styles/document-editor-container/highcontrast-light.scss +5 -1
- package/styles/document-editor-container/highcontrast.scss +5 -1
- package/styles/document-editor-container/icons/_bootstrap-dark.scss +482 -0
- package/styles/document-editor-container/icons/_bootstrap.scss +482 -0
- package/styles/document-editor-container/icons/_bootstrap4.scss +482 -0
- package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
- package/styles/document-editor-container/icons/_bootstrap5.scss +509 -0
- package/styles/document-editor-container/icons/_fabric-dark.scss +483 -0
- package/styles/document-editor-container/icons/_fabric.scss +482 -0
- package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
- package/styles/document-editor-container/icons/_fluent.scss +508 -0
- package/styles/document-editor-container/icons/_fusionnew.scss +508 -0
- package/styles/document-editor-container/icons/_highcontrast-light.scss +482 -0
- package/styles/document-editor-container/icons/_highcontrast.scss +482 -0
- package/styles/document-editor-container/icons/_material-dark.scss +484 -0
- package/styles/document-editor-container/icons/_material.scss +484 -0
- package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
- package/styles/document-editor-container/icons/_material3.scss +507 -0
- package/styles/document-editor-container/icons/_tailwind-dark.scss +508 -0
- package/styles/document-editor-container/icons/_tailwind.scss +508 -0
- package/styles/document-editor-container/material-dark.scss +5 -1
- package/styles/document-editor-container/material.scss +5 -1
- package/styles/document-editor-container/material3-dark.scss +6 -2
- package/styles/document-editor-container/material3.scss +6 -2
- package/styles/document-editor-container/tailwind-dark.scss +5 -1
- package/styles/document-editor-container/tailwind.scss +5 -1
- package/styles/material3-dark.css +0 -55
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +0 -111
- package/styles/material3.scss +1 -0
- package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
- package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -583
- package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-documenteditor.js +0 -553
- package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
- package/CHANGELOG.md +0 -3796
- package/dist/ej2-angular-documenteditor.umd.js +0 -1248
- package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
- package/dist/ej2-angular-documenteditor.umd.min.js +0 -2
- 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/postinstall/tagchange.js +0 -18
package/package.json
CHANGED
|
@@ -1,61 +1,75 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"name": "@syncfusion/ej2-angular-documenteditor",
|
|
13
|
-
"escapedName": "@syncfusion%2fej2-angular-documenteditor",
|
|
14
|
-
"scope": "@syncfusion",
|
|
15
|
-
"rawSpec": "*",
|
|
16
|
-
"saveSpec": null,
|
|
17
|
-
"fetchSpec": "*"
|
|
18
|
-
},
|
|
19
|
-
"_requiredBy": [
|
|
20
|
-
"/"
|
|
21
|
-
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-documenteditor/-/ej2-angular-documenteditor-23.2.5.tgz",
|
|
23
|
-
"_shasum": "3c7ff6271c1d7aa1a89d9df5a9bfb572f135ec21",
|
|
24
|
-
"_spec": "@syncfusion/ej2-angular-documenteditor@*",
|
|
25
|
-
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
|
|
26
|
-
"author": {
|
|
27
|
-
"name": "Syncfusion Inc."
|
|
28
|
-
},
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/syncfusion/ej2-angular-ui-components/issues"
|
|
31
|
-
},
|
|
32
|
-
"bundleDependencies": false,
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~23.2.5",
|
|
35
|
-
"@syncfusion/ej2-base": "~23.2.6",
|
|
36
|
-
"@syncfusion/ej2-documenteditor": "23.2.7"
|
|
37
|
-
},
|
|
38
|
-
"deprecated": false,
|
|
39
|
-
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
|
|
40
|
-
"devDependencies": {},
|
|
41
|
-
"es2015": "@syncfusion/ej2-angular-documenteditor.js",
|
|
42
|
-
"homepage": "https://www.syncfusion.com/angular-components",
|
|
43
|
-
"keywords": [
|
|
44
|
-
"ej2-angular-documenteditor",
|
|
45
|
-
"angular-documenteditor",
|
|
46
|
-
"angular"
|
|
47
|
-
],
|
|
48
|
-
"license": "SEE LICENSE IN license",
|
|
49
|
-
"main": "dist/ej2-angular-documenteditor.umd.js",
|
|
50
|
-
"metadata": "ej2-angular-documenteditor.metadata.json",
|
|
51
|
-
"module": "@syncfusion/ej2-angular-documenteditor.es5.js",
|
|
2
|
+
"_from": "@syncfusion/ej2-angular-documenteditor@*",
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-documenteditor@23.2.5",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-jNUoQIhWkjcpP+RQnIbJoybWJoLQ9tbfcdGY3C9kFgl7mWYM/hBL0+IcgaoXkoOD4TBGeNANkRbqQqfygITHIg==",
|
|
6
|
+
"_location": "/@syncfusion/ej2-angular-documenteditor",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "range",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "@syncfusion/ej2-angular-documenteditor@*",
|
|
52
12
|
"name": "@syncfusion/ej2-angular-documenteditor",
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
13
|
+
"escapedName": "@syncfusion%2fej2-angular-documenteditor",
|
|
14
|
+
"scope": "@syncfusion",
|
|
15
|
+
"rawSpec": "*",
|
|
16
|
+
"saveSpec": null,
|
|
17
|
+
"fetchSpec": "*"
|
|
18
|
+
},
|
|
19
|
+
"_requiredBy": [
|
|
20
|
+
"/"
|
|
21
|
+
],
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-documenteditor/-/ej2-angular-documenteditor-23.2.5.tgz",
|
|
23
|
+
"_shasum": "ec8603f60843dec412efa043f06456062b3a181f",
|
|
24
|
+
"_spec": "@syncfusion/ej2-angular-documenteditor@*",
|
|
25
|
+
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/ivypackages/included",
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "Syncfusion Inc."
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/syncfusion/ej2-angular-ui-components/issues"
|
|
31
|
+
},
|
|
32
|
+
"bundleDependencies": false,
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~23.2.5",
|
|
35
|
+
"@syncfusion/ej2-base": "~23.2.6",
|
|
36
|
+
"@syncfusion/ej2-documenteditor": "23.2.7",
|
|
37
|
+
"tslib": "^2.3.0"
|
|
38
|
+
},
|
|
39
|
+
"deprecated": false,
|
|
40
|
+
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
|
|
41
|
+
"es2020": "fesm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
|
42
|
+
"esm2020": "esm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
|
43
|
+
"exports": {
|
|
44
|
+
"./package.json": {
|
|
45
|
+
"default": "./package.json"
|
|
56
46
|
},
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
47
|
+
".": {
|
|
48
|
+
"types": "./syncfusion-ej2-angular-documenteditor.d.ts",
|
|
49
|
+
"esm2020": "./esm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
|
50
|
+
"es2020": "./fesm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
|
51
|
+
"es2015": "./fesm2015/syncfusion-ej2-angular-documenteditor.mjs",
|
|
52
|
+
"node": "./fesm2015/syncfusion-ej2-angular-documenteditor.mjs",
|
|
53
|
+
"default": "./fesm2020/syncfusion-ej2-angular-documenteditor.mjs"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"fesm2015": "fesm2015/syncfusion-ej2-angular-documenteditor.mjs",
|
|
57
|
+
"fesm2020": "fesm2020/syncfusion-ej2-angular-documenteditor.mjs",
|
|
58
|
+
"homepage": "https://www.syncfusion.com/angular-components",
|
|
59
|
+
"keywords": [
|
|
60
|
+
"ej2-angular-documenteditor",
|
|
61
|
+
"angular-documenteditor",
|
|
62
|
+
"angular"
|
|
63
|
+
],
|
|
64
|
+
"license": "SEE LICENSE IN license",
|
|
65
|
+
"module": "fesm2015/syncfusion-ej2-angular-documenteditor.mjs",
|
|
66
|
+
"name": "@syncfusion/ej2-angular-documenteditor",
|
|
67
|
+
"repository": {
|
|
68
|
+
"type": "git",
|
|
69
|
+
"url": "git+https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
70
|
+
},
|
|
71
|
+
"schematics": "./schematics/collection.json",
|
|
72
|
+
"sideEffects": false,
|
|
73
|
+
"typings": "syncfusion-ej2-angular-documenteditor.d.ts",
|
|
74
|
+
"version": "23.2.7"
|
|
75
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-documenteditor";
|
|
2
|
-
export declare const pkgVer = "^23.2.
|
|
2
|
+
export declare const pkgVer = "^23.2.5";
|
|
3
3
|
export declare const moduleName = "DocumentEditorModule, DocumentEditorContainerModule";
|
|
4
|
-
export declare const themeVer = "~23.2.
|
|
4
|
+
export declare const themeVer = "~23.2.5";
|
|
@@ -1,4 +1,7 @@
|
|
|
1
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";
|
|
2
5
|
export declare const PrintService: ValueProvider;
|
|
3
6
|
export declare const SfdtExportService: ValueProvider;
|
|
4
7
|
export declare const WordExportService: ValueProvider;
|
|
@@ -33,4 +36,7 @@ export declare const ColumnsDialogService: ValueProvider;
|
|
|
33
36
|
* NgModule definition for the DocumentEditor component with providers.
|
|
34
37
|
*/
|
|
35
38
|
export declare class DocumentEditorAllModule {
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorAllModule, never>;
|
|
40
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentEditorAllModule, never, [typeof i1.CommonModule, typeof i2.DocumentEditorModule], [typeof i2.DocumentEditorModule]>;
|
|
41
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentEditorAllModule>;
|
|
36
42
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { DocumentEditor } from '@syncfusion/ej2-documenteditor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -50,4 +51,6 @@ export declare class DocumentEditorComponent extends DocumentEditor implements I
|
|
|
50
51
|
ngAfterContentChecked(): void;
|
|
51
52
|
registerEvents: (eventList: string[]) => void;
|
|
52
53
|
addTwoWay: (propList: string[]) => void;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorComponent, never>;
|
|
55
|
+
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"; "enableColumnsDialog": "enableColumnsDialog"; "enableComment": "enableComment"; "enableContextMenu": "enableContextMenu"; "enableCursorOnReadOnly": "enableCursorOnReadOnly"; "enableEditor": "enableEditor"; "enableEditorHistory": "enableEditorHistory"; "enableFontDialog": "enableFontDialog"; "enableFootnoteAndEndnoteDialog": "enableFootnoteAndEndnoteDialog"; "enableFormField": "enableFormField"; "enableHyperlinkDialog": "enableHyperlinkDialog"; "enableImageResizer": "enableImageResizer"; "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"; }, never, never>;
|
|
53
56
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./documenteditor.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the DocumentEditor component.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,7 +1,13 @@
|
|
|
1
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";
|
|
2
5
|
export declare const ToolbarService: ValueProvider;
|
|
3
6
|
/**
|
|
4
7
|
* NgModule definition for the DocumentEditorContainer component with providers.
|
|
5
8
|
*/
|
|
6
9
|
export declare class DocumentEditorContainerAllModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorContainerAllModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentEditorContainerAllModule, never, [typeof i1.CommonModule, typeof i2.DocumentEditorContainerModule], [typeof i2.DocumentEditorContainerModule]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentEditorContainerAllModule>;
|
|
7
13
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -40,4 +41,6 @@ export declare class DocumentEditorContainerComponent extends DocumentEditorCont
|
|
|
40
41
|
ngAfterContentChecked(): void;
|
|
41
42
|
registerEvents: (eventList: string[]) => void;
|
|
42
43
|
addTwoWay: (propList: string[]) => void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEditorContainerComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentEditorContainerComponent, "ejs-documenteditorcontainer", never, { "autoResizeOnVisibilityChange": "autoResizeOnVisibilityChange"; "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"; "headers": "headers"; "height": "height"; "layoutType": "layoutType"; "locale": "locale"; "restrictEditing": "restrictEditing"; "serverActionSettings": "serverActionSettings"; "serviceUrl": "serviceUrl"; "showPropertiesPane": "showPropertiesPane"; "toolbarItems": "toolbarItems"; "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"; "selectionChange": "selectionChange"; "serviceFailure": "serviceFailure"; "toolbarClick": "toolbarClick"; "trackChange": "trackChange"; "beforeXmlHttpRequestSend": "beforeXmlHttpRequestSend"; }, never, never>;
|
|
43
46
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./documenteditorcontainer.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the DocumentEditorContainer component.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|