@syncfusion/ej2-angular-richtexteditor 26.2.14 → 27.1.48

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 (66) hide show
  1. package/CHANGELOG.md +29 -12
  2. package/esm2020/src/index.mjs +2 -2
  3. package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +10 -4
  4. package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +18 -4
  5. package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs +39 -19
  6. package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -1
  7. package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +27 -7
  8. package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -1
  9. package/package.json +10 -9
  10. package/schematics/collection.json +10 -9
  11. package/schematics/ng-add/index.d.ts +3 -0
  12. package/schematics/ng-add/index.js +9 -0
  13. package/schematics/ng-add/index.ts +10 -10
  14. package/schematics/ng-add/schema.d.ts +13 -0
  15. package/schematics/ng-add/schema.js +2 -0
  16. package/schematics/ng-add/schema.json +34 -34
  17. package/schematics/ng-add/schema.ts +30 -30
  18. package/schematics/tsconfig.json +25 -25
  19. package/schematics/utils/lib-details.d.ts +4 -0
  20. package/schematics/utils/lib-details.js +6 -0
  21. package/schematics/utils/lib-details.ts +2 -2
  22. package/src/index.d.ts +1 -1
  23. package/src/rich-text-editor/richtexteditor-all.module.d.ts +2 -0
  24. package/src/rich-text-editor/richtexteditor.component.d.ts +2 -1
  25. package/styles/bootstrap-dark-lite.css +1 -0
  26. package/styles/bootstrap-dark-lite.scss +1 -0
  27. package/styles/bootstrap-lite.css +1 -0
  28. package/styles/bootstrap-lite.scss +1 -0
  29. package/styles/bootstrap4-lite.css +1 -0
  30. package/styles/bootstrap4-lite.scss +1 -0
  31. package/styles/bootstrap5-dark-lite.css +1 -0
  32. package/styles/bootstrap5-dark-lite.scss +1 -0
  33. package/styles/bootstrap5-lite.css +1 -0
  34. package/styles/bootstrap5-lite.scss +1 -0
  35. package/styles/bootstrap5.3-lite.css +1 -0
  36. package/styles/bootstrap5.3-lite.scss +1 -0
  37. package/styles/bootstrap5.3.css +1 -0
  38. package/styles/bootstrap5.3.scss +1 -0
  39. package/styles/fabric-dark-lite.css +1 -0
  40. package/styles/fabric-dark-lite.scss +1 -0
  41. package/styles/fabric-lite.css +1 -0
  42. package/styles/fabric-lite.scss +1 -0
  43. package/styles/fluent-dark-lite.css +1 -0
  44. package/styles/fluent-dark-lite.scss +1 -0
  45. package/styles/fluent-lite.css +1 -0
  46. package/styles/fluent-lite.scss +1 -0
  47. package/styles/fluent2-lite.css +1 -0
  48. package/styles/fluent2-lite.scss +1 -0
  49. package/styles/highcontrast-light-lite.css +1 -0
  50. package/styles/highcontrast-light-lite.scss +1 -0
  51. package/styles/highcontrast-lite.css +1 -0
  52. package/styles/highcontrast-lite.scss +1 -0
  53. package/styles/material-dark-lite.css +1 -0
  54. package/styles/material-dark-lite.scss +1 -0
  55. package/styles/material-lite.css +1 -0
  56. package/styles/material-lite.scss +1 -0
  57. package/styles/material3-dark-lite.css +1 -0
  58. package/styles/material3-dark-lite.scss +1 -0
  59. package/styles/material3-lite.css +1 -0
  60. package/styles/material3-lite.scss +1 -0
  61. package/styles/rich-text-editor/bootstrap5.3.css +1 -0
  62. package/styles/rich-text-editor/bootstrap5.3.scss +1 -0
  63. package/styles/tailwind-dark-lite.css +1 -0
  64. package/styles/tailwind-dark-lite.scss +1 -0
  65. package/styles/tailwind-lite.css +1 -0
  66. package/styles/tailwind-lite.scss +1 -0
@@ -1,30 +1,30 @@
1
- export interface OptionsSchema {
2
- // Whether to skip package.json install.
3
- skipPackageJson: boolean;
4
-
5
- // Used to specify required module names
6
- modules: string;
7
-
8
- // Used to specify custom module path
9
- modulePath: string;
10
-
11
- // Used to specify theme name
12
- theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
13
-
14
- // Name of the project to target.
15
- project?: string;
16
- }
17
-
18
- export interface LibOptionsSchema {
19
- // Package name
20
- pkgName: string;
21
-
22
- // Package version
23
- pkgVer: string;
24
-
25
- // Library base module name
26
- moduleName: string;
27
-
28
- // Theme version
29
- themeVer: string;
30
- }
1
+ export interface OptionsSchema {
2
+ // Whether to skip package.json install.
3
+ skipPackageJson: boolean;
4
+
5
+ // Used to specify required module names
6
+ modules: string;
7
+
8
+ // Used to specify custom module path
9
+ modulePath: string;
10
+
11
+ // Used to specify theme name
12
+ theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
13
+
14
+ // Name of the project to target.
15
+ project?: string;
16
+ }
17
+
18
+ export interface LibOptionsSchema {
19
+ // Package name
20
+ pkgName: string;
21
+
22
+ // Package version
23
+ pkgVer: string;
24
+
25
+ // Library base module name
26
+ moduleName: string;
27
+
28
+ // Theme version
29
+ themeVer: string;
30
+ }
@@ -1,25 +1,25 @@
1
- {
2
- "compilerOptions": {
3
- "lib": ["es2017", "dom"],
4
- "module": "commonjs",
5
- "moduleResolution": "node",
6
- "noEmitOnError": false,
7
- "skipDefaultLibCheck": true,
8
- "skipLibCheck": true,
9
- "sourceMap": true,
10
- "target": "es6",
11
- "declaration": true,
12
- "types": [
13
- "jasmine",
14
- "node"
15
- ]
16
- },
17
- "exclude": [
18
- "node_modules",
19
- "src",
20
- "src/**/*.ts",
21
- "spec",
22
- "spec/**/*.ts",
23
- "@typings"
24
- ]
25
- }
1
+ {
2
+ "compilerOptions": {
3
+ "lib": ["es2017", "dom"],
4
+ "module": "commonjs",
5
+ "moduleResolution": "node",
6
+ "noEmitOnError": false,
7
+ "skipDefaultLibCheck": true,
8
+ "skipLibCheck": true,
9
+ "sourceMap": true,
10
+ "target": "es6",
11
+ "declaration": true,
12
+ "types": [
13
+ "jasmine",
14
+ "node"
15
+ ]
16
+ },
17
+ "exclude": [
18
+ "node_modules",
19
+ "src",
20
+ "src/**/*.ts",
21
+ "spec",
22
+ "spec/**/*.ts",
23
+ "@typings"
24
+ ]
25
+ }
@@ -0,0 +1,4 @@
1
+ export declare const pkgName = "@syncfusion/ej2-angular-richtexteditor";
2
+ export declare const pkgVer = "^26.1.35";
3
+ export declare const moduleName = "RichTextEditorModule";
4
+ export declare const themeVer = "~26.1.35";
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.pkgName = '@syncfusion/ej2-angular-richtexteditor';
4
+ exports.pkgVer = '^27.1.48';
5
+ exports.moduleName = 'RichTextEditorModule';
6
+ exports.themeVer = '~27.1.48';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-richtexteditor';
2
- export const pkgVer = '^26.2.13';
2
+ export const pkgVer = '^27.1.48';
3
3
  export const moduleName = 'RichTextEditorModule';
4
- export const themeVer = '~26.2.13';
4
+ export const themeVer = '~27.1.48';
package/src/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export { RichTextEditorComponent } from './rich-text-editor/richtexteditor.component';
2
2
  export { RichTextEditorModule } from './rich-text-editor/richtexteditor.module';
3
- export { RichTextEditorAllModule, ToolbarService, LinkService, ImageService, AudioService, VideoService, CountService, QuickToolbarService, HtmlEditorService, MarkdownEditorService, TableService, PasteCleanupService, ResizeService, FileManagerService, FormatPainterService, EmojiPickerService } from './rich-text-editor/richtexteditor-all.module';
3
+ export { RichTextEditorAllModule, ToolbarService, LinkService, ImageService, ImportExportService, AudioService, VideoService, CountService, QuickToolbarService, HtmlEditorService, MarkdownEditorService, TableService, PasteCleanupService, ResizeService, FileManagerService, FormatPainterService, EmojiPickerService, SlashMenuService } from './rich-text-editor/richtexteditor-all.module';
4
4
  export * from '@syncfusion/ej2-richtexteditor';
@@ -5,6 +5,7 @@ import * as i2 from "./richtexteditor.module";
5
5
  export declare const ToolbarService: ValueProvider;
6
6
  export declare const LinkService: ValueProvider;
7
7
  export declare const ImageService: ValueProvider;
8
+ export declare const ImportExportService: ValueProvider;
8
9
  export declare const AudioService: ValueProvider;
9
10
  export declare const VideoService: ValueProvider;
10
11
  export declare const CountService: ValueProvider;
@@ -17,6 +18,7 @@ export declare const ResizeService: ValueProvider;
17
18
  export declare const FileManagerService: ValueProvider;
18
19
  export declare const FormatPainterService: ValueProvider;
19
20
  export declare const EmojiPickerService: ValueProvider;
21
+ export declare const SlashMenuService: ValueProvider;
20
22
  /**
21
23
  * NgModule definition for the RichTextEditor component with providers.
22
24
  */
@@ -55,6 +55,7 @@ export declare class RichTextEditorComponent extends RichTextEditor implements I
55
55
  resizeStart: any;
56
56
  resizeStop: any;
57
57
  resizing: any;
58
+ slashMenuItemSelect: any;
58
59
  toolbarClick: any;
59
60
  toolbarStatusUpdate: any;
60
61
  updatedToolbarStatus: any;
@@ -83,5 +84,5 @@ export declare class RichTextEditorComponent extends RichTextEditor implements I
83
84
  registerEvents: (eventList: string[]) => void;
84
85
  addTwoWay: (propList: string[]) => void;
85
86
  static ɵfac: i0.ɵɵFactoryDeclaration<RichTextEditorComponent, never>;
86
- static ɵcmp: i0.ɵɵComponentDeclaration<RichTextEditorComponent, "ejs-richtexteditor", never, { "autoSaveOnIdle": "autoSaveOnIdle"; "backgroundColor": "backgroundColor"; "bulletFormatList": "bulletFormatList"; "cssClass": "cssClass"; "editorMode": "editorMode"; "emojiPickerSettings": "emojiPickerSettings"; "enableAutoUrl": "enableAutoUrl"; "enableHtmlEncode": "enableHtmlEncode"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableResize": "enableResize"; "enableRtl": "enableRtl"; "enableTabKey": "enableTabKey"; "enableXhtml": "enableXhtml"; "enabled": "enabled"; "enterKey": "enterKey"; "fileManagerSettings": "fileManagerSettings"; "floatingToolbarOffset": "floatingToolbarOffset"; "fontColor": "fontColor"; "fontFamily": "fontFamily"; "fontSize": "fontSize"; "format": "format"; "formatPainterSettings": "formatPainterSettings"; "formatter": "formatter"; "height": "height"; "htmlAttributes": "htmlAttributes"; "iframeSettings": "iframeSettings"; "inlineMode": "inlineMode"; "insertAudioSettings": "insertAudioSettings"; "insertImageSettings": "insertImageSettings"; "insertVideoSettings": "insertVideoSettings"; "keyConfig": "keyConfig"; "locale": "locale"; "maxLength": "maxLength"; "numberFormatList": "numberFormatList"; "pasteCleanupSettings": "pasteCleanupSettings"; "placeholder": "placeholder"; "quickToolbarSettings": "quickToolbarSettings"; "readonly": "readonly"; "saveInterval": "saveInterval"; "shiftEnterKey": "shiftEnterKey"; "showCharCount": "showCharCount"; "showTooltip": "showTooltip"; "tableSettings": "tableSettings"; "toolbarSettings": "toolbarSettings"; "undoRedoSteps": "undoRedoSteps"; "undoRedoTimer": "undoRedoTimer"; "value": "value"; "valueTemplate": "valueTemplate"; "width": "width"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "afterImageDelete": "afterImageDelete"; "afterMediaDelete": "afterMediaDelete"; "afterPasteCleanup": "afterPasteCleanup"; "beforeDialogClose": "beforeDialogClose"; "beforeDialogOpen": "beforeDialogOpen"; "beforeFileUpload": "beforeFileUpload"; "beforeImageDrop": "beforeImageDrop"; "beforeImageUpload": "beforeImageUpload"; "beforePasteCleanup": "beforePasteCleanup"; "beforeQuickToolbarOpen": "beforeQuickToolbarOpen"; "beforeSanitizeHtml": "beforeSanitizeHtml"; "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "dialogClose": "dialogClose"; "dialogOpen": "dialogOpen"; "fileRemoving": "fileRemoving"; "fileSelected": "fileSelected"; "fileUploadFailed": "fileUploadFailed"; "fileUploadSuccess": "fileUploadSuccess"; "fileUploading": "fileUploading"; "focus": "focus"; "imageRemoving": "imageRemoving"; "imageSelected": "imageSelected"; "imageUploadFailed": "imageUploadFailed"; "imageUploadSuccess": "imageUploadSuccess"; "imageUploading": "imageUploading"; "quickToolbarClose": "quickToolbarClose"; "quickToolbarOpen": "quickToolbarOpen"; "resizeStart": "resizeStart"; "resizeStop": "resizeStop"; "resizing": "resizing"; "toolbarClick": "toolbarClick"; "toolbarStatusUpdate": "toolbarStatusUpdate"; "updatedToolbarStatus": "updatedToolbarStatus"; "valueChange": "valueChange"; }, ["valueTemplate"], never>;
87
+ static ɵcmp: i0.ɵɵComponentDeclaration<RichTextEditorComponent, "ejs-richtexteditor", never, { "autoSaveOnIdle": "autoSaveOnIdle"; "backgroundColor": "backgroundColor"; "bulletFormatList": "bulletFormatList"; "cssClass": "cssClass"; "editorMode": "editorMode"; "emojiPickerSettings": "emojiPickerSettings"; "enableAutoUrl": "enableAutoUrl"; "enableHtmlEncode": "enableHtmlEncode"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableResize": "enableResize"; "enableRtl": "enableRtl"; "enableTabKey": "enableTabKey"; "enableXhtml": "enableXhtml"; "enabled": "enabled"; "enterKey": "enterKey"; "exportPdf": "exportPdf"; "exportWord": "exportWord"; "fileManagerSettings": "fileManagerSettings"; "floatingToolbarOffset": "floatingToolbarOffset"; "fontColor": "fontColor"; "fontFamily": "fontFamily"; "fontSize": "fontSize"; "format": "format"; "formatPainterSettings": "formatPainterSettings"; "formatter": "formatter"; "height": "height"; "htmlAttributes": "htmlAttributes"; "iframeSettings": "iframeSettings"; "importWord": "importWord"; "inlineMode": "inlineMode"; "insertAudioSettings": "insertAudioSettings"; "insertImageSettings": "insertImageSettings"; "insertVideoSettings": "insertVideoSettings"; "keyConfig": "keyConfig"; "locale": "locale"; "maxLength": "maxLength"; "numberFormatList": "numberFormatList"; "pasteCleanupSettings": "pasteCleanupSettings"; "placeholder": "placeholder"; "quickToolbarSettings": "quickToolbarSettings"; "readonly": "readonly"; "saveInterval": "saveInterval"; "shiftEnterKey": "shiftEnterKey"; "showCharCount": "showCharCount"; "showTooltip": "showTooltip"; "slashMenuSettings": "slashMenuSettings"; "tableSettings": "tableSettings"; "toolbarSettings": "toolbarSettings"; "undoRedoSteps": "undoRedoSteps"; "undoRedoTimer": "undoRedoTimer"; "value": "value"; "valueTemplate": "valueTemplate"; "width": "width"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "afterImageDelete": "afterImageDelete"; "afterMediaDelete": "afterMediaDelete"; "afterPasteCleanup": "afterPasteCleanup"; "beforeDialogClose": "beforeDialogClose"; "beforeDialogOpen": "beforeDialogOpen"; "beforeFileUpload": "beforeFileUpload"; "beforeImageDrop": "beforeImageDrop"; "beforeImageUpload": "beforeImageUpload"; "beforePasteCleanup": "beforePasteCleanup"; "beforeQuickToolbarOpen": "beforeQuickToolbarOpen"; "beforeSanitizeHtml": "beforeSanitizeHtml"; "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "dialogClose": "dialogClose"; "dialogOpen": "dialogOpen"; "fileRemoving": "fileRemoving"; "fileSelected": "fileSelected"; "fileUploadFailed": "fileUploadFailed"; "fileUploadSuccess": "fileUploadSuccess"; "fileUploading": "fileUploading"; "focus": "focus"; "imageRemoving": "imageRemoving"; "imageSelected": "imageSelected"; "imageUploadFailed": "imageUploadFailed"; "imageUploadSuccess": "imageUploadSuccess"; "imageUploading": "imageUploading"; "quickToolbarClose": "quickToolbarClose"; "quickToolbarOpen": "quickToolbarOpen"; "resizeStart": "resizeStart"; "resizeStop": "resizeStop"; "resizing": "resizing"; "slashMenuItemSelect": "slashMenuItemSelect"; "toolbarClick": "toolbarClick"; "toolbarStatusUpdate": "toolbarStatusUpdate"; "updatedToolbarStatus": "updatedToolbarStatus"; "valueChange": "valueChange"; }, ["valueTemplate"], never>;
87
88
  }
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/bootstrap-dark-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/bootstrap-dark-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/bootstrap-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/bootstrap-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/bootstrap4-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/bootstrap4-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/bootstrap5-dark-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/bootstrap5-dark-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/bootstrap5-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/bootstrap5-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/bootstrap5.3-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/bootstrap5.3-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/bootstrap5.3.css';
@@ -0,0 +1 @@
1
+ @import 'rich-text-editor/bootstrap5.3.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/fabric-dark-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/fabric-dark-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/fabric-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/fabric-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/fluent-dark-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/fluent-dark-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/fluent-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/fluent-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/fluent2-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/fluent2-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/highcontrast-light-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/highcontrast-light-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/highcontrast-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/highcontrast-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/material-dark-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/material-dark-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/material-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/material-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/material3-dark-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/material3-dark-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/material3-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/material3-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/bootstrap5.3.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5.3.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/tailwind-dark-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/tailwind-dark-lite.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-richtexteditor/styles/tailwind-lite.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-richtexteditor/styles/tailwind-lite.scss';