@flogeez/angular-tiptap-editor 0.5.3 → 0.5.4
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/index.d.ts
CHANGED
|
@@ -34,6 +34,8 @@ interface TiptapTranslations {
|
|
|
34
34
|
redo: string;
|
|
35
35
|
clear: string;
|
|
36
36
|
textColor: string;
|
|
37
|
+
customColor: string;
|
|
38
|
+
presets: string;
|
|
37
39
|
};
|
|
38
40
|
bubbleMenu: {
|
|
39
41
|
bold: string;
|
|
@@ -53,6 +55,8 @@ interface TiptapTranslations {
|
|
|
53
55
|
linkUrl: string;
|
|
54
56
|
linkText: string;
|
|
55
57
|
openLink: string;
|
|
58
|
+
customColor: string;
|
|
59
|
+
presets: string;
|
|
56
60
|
};
|
|
57
61
|
slashCommands: {
|
|
58
62
|
heading1: {
|
|
@@ -199,6 +203,8 @@ declare class TiptapI18nService {
|
|
|
199
203
|
redo: string;
|
|
200
204
|
clear: string;
|
|
201
205
|
textColor: string;
|
|
206
|
+
customColor: string;
|
|
207
|
+
presets: string;
|
|
202
208
|
}>;
|
|
203
209
|
readonly bubbleMenu: _angular_core.Signal<{
|
|
204
210
|
bold: string;
|
|
@@ -218,6 +224,8 @@ declare class TiptapI18nService {
|
|
|
218
224
|
linkUrl: string;
|
|
219
225
|
linkText: string;
|
|
220
226
|
openLink: string;
|
|
227
|
+
customColor: string;
|
|
228
|
+
presets: string;
|
|
221
229
|
}>;
|
|
222
230
|
readonly slashCommands: _angular_core.Signal<{
|
|
223
231
|
heading1: {
|
|
@@ -786,6 +794,12 @@ declare class AngularTiptapEditorComponent implements AfterViewInit, OnDestroy {
|
|
|
786
794
|
event: FocusEvent;
|
|
787
795
|
}>;
|
|
788
796
|
editorElement: _angular_core.Signal<ElementRef<any>>;
|
|
797
|
+
private textMenuComp;
|
|
798
|
+
private imageMenuComp;
|
|
799
|
+
private tableMenuComp;
|
|
800
|
+
private cellMenuComp;
|
|
801
|
+
hideBubbleMenus(): void;
|
|
802
|
+
showBubbleMenus(): void;
|
|
789
803
|
private _editor;
|
|
790
804
|
private _characterCount;
|
|
791
805
|
private _wordCount;
|
package/package.json
CHANGED