nexheal-lib 0.0.24 → 0.0.26
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/fesm2022/nexheal-lib.mjs +47 -16
- package/fesm2022/nexheal-lib.mjs.map +1 -1
- package/index.d.ts +9 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -489,8 +489,17 @@ declare class TextEditor implements ControlValueAccessor, AfterViewInit {
|
|
|
489
489
|
setAlignment(alignment: 'left' | 'center' | 'right' | 'justify'): void;
|
|
490
490
|
applyColor(event: Event): void;
|
|
491
491
|
applyHighlight(event: Event): void;
|
|
492
|
+
showModal: boolean;
|
|
493
|
+
modalType: 'link' | 'image';
|
|
494
|
+
modalUrls: string[];
|
|
492
495
|
createLink(): void;
|
|
493
496
|
insertImage(): void;
|
|
497
|
+
private openModal;
|
|
498
|
+
addUrlRow(): void;
|
|
499
|
+
removeUrlRow(index: number): void;
|
|
500
|
+
confirmModal(): void;
|
|
501
|
+
cancelModal(): void;
|
|
502
|
+
trackByIndex(index: number): number;
|
|
494
503
|
undo(): void;
|
|
495
504
|
redo(): void;
|
|
496
505
|
clearFormatting(): void;
|