@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.
Files changed (63) hide show
  1. package/CHANGELOG.md +4938 -0
  2. package/README.md +31 -24
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/document-editor/documenteditor-all.module.mjs +134 -0
  5. package/esm2020/src/document-editor/documenteditor.component.mjs +311 -0
  6. package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
  7. package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +32 -0
  8. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +73 -0
  9. package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
  10. package/esm2020/src/index.mjs +8 -0
  11. package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
  12. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +584 -0
  13. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  14. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +584 -0
  15. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  16. package/package.json +21 -8
  17. package/public_api.d.ts +1 -1
  18. package/schematics/collection.json +14 -10
  19. package/schematics/generators/documenteditorcontainer-default/index.d.ts +3 -0
  20. package/schematics/generators/documenteditorcontainer-default/index.js +8 -0
  21. package/schematics/generators/documenteditorcontainer-default/index.ts +8 -0
  22. package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +5 -0
  23. package/schematics/generators/documenteditorcontainer-default/sample-details.js +8 -0
  24. package/schematics/generators/documenteditorcontainer-default/sample-details.ts +5 -0
  25. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
  26. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +8 -0
  27. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.ts +25 -0
  28. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/assets/data.ts +1423 -0
  29. package/schematics/generators/documenteditorcontainer-default/schema.d.ts +3 -0
  30. package/schematics/generators/documenteditorcontainer-default/schema.js +2 -0
  31. package/schematics/generators/documenteditorcontainer-default/schema.json +125 -0
  32. package/schematics/generators/documenteditorcontainer-default/schema.ts +3 -0
  33. package/schematics/ng-add/index.js +1 -1
  34. package/schematics/ng-add/index.ts +10 -10
  35. package/schematics/ng-add/schema.json +34 -34
  36. package/schematics/ng-add/schema.ts +30 -30
  37. package/schematics/tsconfig.json +25 -25
  38. package/schematics/utils/lib-details.d.ts +2 -2
  39. package/schematics/utils/lib-details.js +1 -0
  40. package/schematics/utils/lib-details.ts +4 -4
  41. package/src/document-editor/documenteditor-all.module.d.ts +48 -42
  42. package/src/document-editor/documenteditor.component.d.ts +58 -55
  43. package/src/document-editor/documenteditor.module.d.ts +11 -5
  44. package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +14 -8
  45. package/src/document-editor-container/documenteditorcontainer.component.d.ts +48 -45
  46. package/src/document-editor-container/documenteditorcontainer.module.d.ts +11 -5
  47. package/src/index.d.ts +7 -7
  48. package/styles/document-editor/material3-dark.scss +1 -1
  49. package/styles/document-editor/material3.scss +1 -1
  50. package/styles/document-editor-container/material3-dark.scss +1 -1
  51. package/styles/document-editor-container/material3.scss +1 -1
  52. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  53. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -646
  54. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  55. package/@syncfusion/ej2-angular-documenteditor.js +0 -616
  56. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  57. package/LICENSE +0 -10
  58. package/dist/ej2-angular-documenteditor.umd.js +0 -1363
  59. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  60. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  61. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  62. package/ej2-angular-documenteditor.d.ts +0 -6
  63. 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
- 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
- beforePaste: 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
- }
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
- * NgModule definition for the DocumentEditorContainer component.
3
- */
4
- export declare class DocumentEditorContainerModule {
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';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-documenteditor" />
5
+ export * from './public_api';