@syncfusion/ej2-angular-richtexteditor 26.2.14 → 27.1.48-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-richtexteditor.es5.js +361 -0
- package/@syncfusion/ej2-angular-richtexteditor.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-richtexteditor.js +342 -0
- package/@syncfusion/ej2-angular-richtexteditor.js.map +1 -0
- package/dist/ej2-angular-richtexteditor.umd.js +871 -0
- package/dist/ej2-angular-richtexteditor.umd.js.map +1 -0
- package/dist/ej2-angular-richtexteditor.umd.min.js +11 -0
- package/dist/ej2-angular-richtexteditor.umd.min.js.map +1 -0
- package/ej2-angular-richtexteditor.d.ts +5 -0
- package/ej2-angular-richtexteditor.metadata.json +1 -0
- package/license +10 -0
- package/package.json +15 -29
- package/schematics/collection.json +10 -9
- package/schematics/ng-add/index.d.ts +3 -0
- package/schematics/ng-add/index.js +9 -0
- package/schematics/ng-add/index.ts +10 -10
- package/schematics/ng-add/schema.d.ts +13 -0
- package/schematics/ng-add/schema.js +2 -0
- 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 +4 -0
- package/schematics/utils/lib-details.js +6 -0
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +1 -1
- package/src/rich-text-editor/richtexteditor-all.module.d.ts +2 -6
- package/src/rich-text-editor/richtexteditor.component.d.ts +1 -3
- package/src/rich-text-editor/richtexteditor.module.d.ts +0 -6
- package/styles/bootstrap-dark-lite.css +1 -0
- package/styles/bootstrap-dark-lite.scss +1 -0
- package/styles/bootstrap-lite.css +1 -0
- package/styles/bootstrap-lite.scss +1 -0
- package/styles/bootstrap4-lite.css +1 -0
- package/styles/bootstrap4-lite.scss +1 -0
- package/styles/bootstrap5-dark-lite.css +1 -0
- package/styles/bootstrap5-dark-lite.scss +1 -0
- package/styles/bootstrap5-lite.css +1 -0
- package/styles/bootstrap5-lite.scss +1 -0
- package/styles/bootstrap5.3-lite.css +1 -0
- package/styles/bootstrap5.3-lite.scss +1 -0
- package/styles/bootstrap5.3.css +1 -0
- package/styles/bootstrap5.3.scss +1 -0
- package/styles/fabric-dark-lite.css +1 -0
- package/styles/fabric-dark-lite.scss +1 -0
- package/styles/fabric-lite.css +1 -0
- package/styles/fabric-lite.scss +1 -0
- package/styles/fluent-dark-lite.css +1 -0
- package/styles/fluent-dark-lite.scss +1 -0
- package/styles/fluent-lite.css +1 -0
- package/styles/fluent-lite.scss +1 -0
- package/styles/fluent2-lite.css +1 -0
- package/styles/fluent2-lite.scss +1 -0
- package/styles/highcontrast-light-lite.css +1 -0
- package/styles/highcontrast-light-lite.scss +1 -0
- package/styles/highcontrast-lite.css +1 -0
- package/styles/highcontrast-lite.scss +1 -0
- package/styles/material-dark-lite.css +1 -0
- package/styles/material-dark-lite.scss +1 -0
- package/styles/material-lite.css +1 -0
- package/styles/material-lite.scss +1 -0
- package/styles/material3-dark-lite.css +1 -0
- package/styles/material3-dark-lite.scss +1 -0
- package/styles/material3-lite.css +1 -0
- package/styles/material3-lite.scss +1 -0
- package/styles/rich-text-editor/bootstrap5.3.css +1 -0
- package/styles/rich-text-editor/bootstrap5.3.scss +1 -0
- package/styles/tailwind-dark-lite.css +1 -0
- package/styles/tailwind-dark-lite.scss +1 -0
- package/styles/tailwind-lite.css +1 -0
- package/styles/tailwind-lite.scss +1 -0
- package/CHANGELOG.md +0 -2309
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/index.mjs +0 -5
- package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +0 -71
- package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +0 -197
- package/esm2020/src/rich-text-editor/richtexteditor.module.mjs +0 -25
- package/esm2020/syncfusion-ej2-angular-richtexteditor.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs +0 -291
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +0 -291
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +0 -1
- package/syncfusion-ej2-angular-richtexteditor.d.ts +0 -5
package/schematics/tsconfig.json
CHANGED
|
@@ -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
|
+
}
|
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';
|
|
@@ -1,10 +1,8 @@
|
|
|
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 "./richtexteditor.module";
|
|
5
2
|
export declare const ToolbarService: ValueProvider;
|
|
6
3
|
export declare const LinkService: ValueProvider;
|
|
7
4
|
export declare const ImageService: ValueProvider;
|
|
5
|
+
export declare const ImportExportService: ValueProvider;
|
|
8
6
|
export declare const AudioService: ValueProvider;
|
|
9
7
|
export declare const VideoService: ValueProvider;
|
|
10
8
|
export declare const CountService: ValueProvider;
|
|
@@ -17,11 +15,9 @@ export declare const ResizeService: ValueProvider;
|
|
|
17
15
|
export declare const FileManagerService: ValueProvider;
|
|
18
16
|
export declare const FormatPainterService: ValueProvider;
|
|
19
17
|
export declare const EmojiPickerService: ValueProvider;
|
|
18
|
+
export declare const SlashMenuService: ValueProvider;
|
|
20
19
|
/**
|
|
21
20
|
* NgModule definition for the RichTextEditor component with providers.
|
|
22
21
|
*/
|
|
23
22
|
export declare class RichTextEditorAllModule {
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RichTextEditorAllModule, never>;
|
|
25
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RichTextEditorAllModule, never, [typeof i1.CommonModule, typeof i2.RichTextEditorModule], [typeof i2.RichTextEditorModule]>;
|
|
26
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<RichTextEditorAllModule>;
|
|
27
23
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { RichTextEditor } from '@syncfusion/ej2-richtexteditor';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export declare const inputs: string[];
|
|
6
5
|
export declare const outputs: string[];
|
|
7
6
|
export declare const twoWays: string[];
|
|
@@ -55,6 +54,7 @@ export declare class RichTextEditorComponent extends RichTextEditor implements I
|
|
|
55
54
|
resizeStart: any;
|
|
56
55
|
resizeStop: any;
|
|
57
56
|
resizing: any;
|
|
57
|
+
slashMenuItemSelect: any;
|
|
58
58
|
toolbarClick: any;
|
|
59
59
|
toolbarStatusUpdate: any;
|
|
60
60
|
updatedToolbarStatus: any;
|
|
@@ -82,6 +82,4 @@ export declare class RichTextEditorComponent extends RichTextEditor implements I
|
|
|
82
82
|
ngAfterContentChecked(): void;
|
|
83
83
|
registerEvents: (eventList: string[]) => void;
|
|
84
84
|
addTwoWay: (propList: string[]) => void;
|
|
85
|
-
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
85
|
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./richtexteditor.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
1
|
/**
|
|
5
2
|
* NgModule definition for the RichTextEditor component.
|
|
6
3
|
*/
|
|
7
4
|
export declare class RichTextEditorModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RichTextEditorModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RichTextEditorModule, [typeof i1.RichTextEditorComponent], [typeof i2.CommonModule], [typeof i1.RichTextEditorComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<RichTextEditorModule>;
|
|
11
5
|
}
|
|
@@ -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';
|