ngx-quill
Advanced tools
Comparing version 16.2.0 to 16.2.1-0
import { DomSanitizer } from '@angular/platform-browser'; | ||
import { QuillModules, CustomOption, CustomModule } from './quill-editor.interfaces'; | ||
import QuillType, { Delta } from 'quill'; | ||
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone, OnChanges, OnDestroy, Renderer2, SimpleChanges } from '@angular/core'; | ||
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core'; | ||
import { ControlValueAccessor, Validator } from '@angular/forms'; | ||
@@ -41,3 +41,3 @@ import { QuillService } from './quill.service'; | ||
}; | ||
export declare abstract class QuillEditorBase implements AfterViewInit, ControlValueAccessor, OnChanges, OnDestroy, Validator { | ||
export declare abstract class QuillEditorBase implements AfterViewInit, ControlValueAccessor, OnChanges, OnInit, OnDestroy, Validator { | ||
elementRef: ElementRef; | ||
@@ -87,2 +87,4 @@ protected cd: ChangeDetectorRef; | ||
disabled: boolean; | ||
preserve: boolean; | ||
toolbarPosition: string; | ||
onModelChange: (modelValue?: any) => void; | ||
@@ -98,2 +100,3 @@ onModelTouched: () => void; | ||
valueSetter: (quillEditor: QuillType, value: any) => any; | ||
ngOnInit(): void; | ||
ngAfterViewInit(): void; | ||
@@ -100,0 +103,0 @@ selectionChangeHandler: (range: Range | null, oldRange: Range | null, source: string) => void; |
import QuillType from 'quill'; | ||
import { QuillModules } from './quill-editor.interfaces'; | ||
import { AfterViewInit, ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges, NgZone, OnDestroy } from '@angular/core'; | ||
import { AfterViewInit, ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges, NgZone, OnDestroy, OnInit } from '@angular/core'; | ||
import { CustomOption, CustomModule } from './quill-editor.interfaces'; | ||
@@ -8,3 +8,3 @@ import { QuillService } from './quill.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class QuillViewComponent implements AfterViewInit, OnChanges, OnDestroy { | ||
export declare class QuillViewComponent implements AfterViewInit, OnChanges, OnDestroy, OnInit { | ||
elementRef: ElementRef; | ||
@@ -30,5 +30,7 @@ protected renderer: Renderer2; | ||
editorElem: HTMLElement; | ||
preserve: boolean; | ||
private quillSubscription; | ||
constructor(elementRef: ElementRef, renderer: Renderer2, zone: NgZone, service: QuillService, domSanitizer: DomSanitizer, platformId: any); | ||
valueSetter: (quillEditor: QuillType, value: any) => any; | ||
ngOnInit(): void; | ||
ngOnChanges(changes: SimpleChanges): void; | ||
@@ -35,0 +37,0 @@ ngAfterViewInit(): void; |
{ | ||
"name": "ngx-quill", | ||
"version": "16.2.0", | ||
"version": "16.2.1-0", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "author": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
405949
3480
1