el-text-editor 0.0.34 → 0.0.36
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/esm2020/lib/el-text-editor.component.mjs +30 -7
- package/esm2020/lib/el-text-editor.module.mjs +8 -4
- package/fesm2015/el-text-editor.mjs +36 -9
- package/fesm2015/el-text-editor.mjs.map +1 -1
- package/fesm2020/el-text-editor.mjs +36 -9
- package/fesm2020/el-text-editor.mjs.map +1 -1
- package/lib/el-text-editor.component.d.ts +4 -1
- package/lib/el-text-editor.module.d.ts +2 -1
- package/package.json +1 -1
@@ -1,7 +1,8 @@
|
|
1
|
-
import { AfterViewInit, EventEmitter, Renderer2, OnChanges, SimpleChanges } from '@angular/core';
|
1
|
+
import { AfterViewInit, EventEmitter, ElementRef, Renderer2, OnChanges, SimpleChanges } from '@angular/core';
|
2
2
|
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
3
3
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
4
4
|
import { Router, ActivatedRoute } from '@angular/router';
|
5
|
+
import { NgxFullscreenDirective } from '@ultimate/ngx-fullscreen';
|
5
6
|
import * as i0 from "@angular/core";
|
6
7
|
export declare class ElTextEditorComponent implements ControlValueAccessor, AfterViewInit, OnChanges {
|
7
8
|
private router;
|
@@ -24,6 +25,8 @@ export declare class ElTextEditorComponent implements ControlValueAccessor, Afte
|
|
24
25
|
placeHolderRemove: EventEmitter<any>;
|
25
26
|
isOpen: EventEmitter<any>;
|
26
27
|
value: string;
|
28
|
+
TextEditor: ElementRef<Element>;
|
29
|
+
fullscreen: NgxFullscreenDirective;
|
27
30
|
sanitizedContent: SafeHtml;
|
28
31
|
showToolbar: boolean;
|
29
32
|
toolbarTop: number;
|
@@ -5,8 +5,9 @@ import * as i3 from "@angular/forms";
|
|
5
5
|
import * as i4 from "@ng-bootstrap/ng-bootstrap";
|
6
6
|
import * as i5 from "ngx-color/sketch";
|
7
7
|
import * as i6 from "ngx-color-picker";
|
8
|
+
import * as i7 from "@ultimate/ngx-fullscreen";
|
8
9
|
export declare class ElTextEditorModule {
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElTextEditorModule, never>;
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ElTextEditorModule, [typeof i1.ElTextEditorComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.NgbDropdownModule, typeof i5.ColorSketchModule, typeof i6.ColorPickerModule], [typeof i1.ElTextEditorComponent]>;
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ElTextEditorModule, [typeof i1.ElTextEditorComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.NgbDropdownModule, typeof i5.ColorSketchModule, typeof i6.ColorPickerModule, typeof i7.NgxFullscreenModule], [typeof i1.ElTextEditorComponent]>;
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<ElTextEditorModule>;
|
12
13
|
}
|