@ecodev/natural-editor 50.0.0 → 50.0.2
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/editor/editor.component.mjs +8 -6
- package/fesm2015/ecodev-natural-editor.mjs +7 -5
- package/fesm2015/ecodev-natural-editor.mjs.map +1 -1
- package/fesm2020/ecodev-natural-editor.mjs +7 -5
- package/fesm2020/ecodev-natural-editor.mjs.map +1 -1
- package/lib/editor/editor.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -43,6 +43,7 @@ export declare class NaturalEditorComponent implements OnInit, OnDestroy, Contro
|
|
|
43
43
|
* If subscribed to, then the save button will be shown and click events forwarded
|
|
44
44
|
*/
|
|
45
45
|
readonly save: EventEmitter<void>;
|
|
46
|
+
disabled: boolean;
|
|
46
47
|
constructor(ngControl: NgControl, document: Document, dialog: MatDialog, imagePlugin: ImagePlugin);
|
|
47
48
|
ngOnInit(): void;
|
|
48
49
|
writeValue(val: string | undefined): void;
|
|
@@ -54,7 +55,7 @@ export declare class NaturalEditorComponent implements OnInit, OnDestroy, Contro
|
|
|
54
55
|
update(): void;
|
|
55
56
|
registerOnChange(fn: any): void;
|
|
56
57
|
registerOnTouched(): void;
|
|
57
|
-
setDisabledState(): void;
|
|
58
|
+
setDisabledState(isDisabled: boolean): void;
|
|
58
59
|
ngOnDestroy(): void;
|
|
59
60
|
run(event: Event, key: Key): void;
|
|
60
61
|
upload(file: File): void;
|