@creatorsn/powereditor3 0.1.18 → 0.2.1
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/dist/powereditor3.css +1 -1
- package/dist/powereditor3.js +23840 -24086
- package/dist/powereditor3.umd.cjs +112 -89
- package/dist/types/editor/index.d.ts +45 -37
- package/dist/types/editor/src/components/bubbleToolBar.vue.d.ts +7 -7
- package/dist/types/editor/src/components/custom/source/codeBlockX.vue.d.ts +15 -7
- package/dist/types/editor/src/components/custom/source/drawingBlock.vue.d.ts +5 -5
- package/dist/types/editor/src/components/custom/source/embedBlock.vue.d.ts +5 -5
- package/dist/types/editor/src/components/custom/source/equationBase.vue.d.ts +4 -3
- package/dist/types/editor/src/components/custom/source/imageBlock.vue.d.ts +5 -5
- package/dist/types/editor/src/components/custom/source/mediaContainer.vue.d.ts +2 -2
- package/dist/types/editor/src/components/custom/source/mentionItem.vue.d.ts +5 -3
- package/dist/types/editor/src/components/custom/source/taskItem.vue.d.ts +6 -6
- package/dist/types/editor/src/components/menus/calloutBase.vue.d.ts +2 -2
- package/dist/types/editor/src/components/menus/colorCallout.vue.d.ts +3 -3
- package/dist/types/editor/src/components/menus/embedCallout.vue.d.ts +3 -3
- package/dist/types/editor/src/components/menus/emojiCallout.vue.d.ts +3 -3
- package/dist/types/editor/src/components/menus/headingCallout.vue.d.ts +3 -3
- package/dist/types/editor/src/components/menus/imageCallout.vue.d.ts +3 -3
- package/dist/types/editor/src/components/menus/linkCallout.vue.d.ts +3 -3
- package/dist/types/editor/src/components/menus/tableCallout.vue.d.ts +3 -3
- package/dist/types/editor/src/components/toolBar.vue.d.ts +22 -22
- package/dist/types/editor/src/index.vue.d.ts +45 -37
- package/package.json +36 -24
|
@@ -10,9 +10,9 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
10
10
|
placeholder: string;
|
|
11
11
|
theme: string;
|
|
12
12
|
foreground: string;
|
|
13
|
+
language: string;
|
|
13
14
|
imgInterceptor: null;
|
|
14
15
|
editable: boolean;
|
|
15
|
-
language: string;
|
|
16
16
|
showSave: boolean;
|
|
17
17
|
toolbarHeight: number;
|
|
18
18
|
toolbarBorderRadius: number;
|
|
@@ -47,9 +47,9 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
47
47
|
readonly placeholder?: string | undefined;
|
|
48
48
|
readonly theme?: string | undefined;
|
|
49
49
|
readonly foreground?: string | undefined;
|
|
50
|
+
readonly language?: string | undefined;
|
|
50
51
|
readonly imgInterceptor?: null | undefined;
|
|
51
52
|
readonly editable?: boolean | undefined;
|
|
52
|
-
readonly language?: string | undefined;
|
|
53
53
|
readonly showSave?: boolean | undefined;
|
|
54
54
|
readonly toolbarHeight?: number | undefined;
|
|
55
55
|
readonly toolbarBorderRadius?: number | undefined;
|
|
@@ -92,6 +92,13 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
92
92
|
}, {
|
|
93
93
|
init(): void;
|
|
94
94
|
eventInit(): void;
|
|
95
|
+
bubbleMenuShouldShow({ editor, view, state, from, to }: {
|
|
96
|
+
editor: any;
|
|
97
|
+
view: any;
|
|
98
|
+
state: any;
|
|
99
|
+
from: any;
|
|
100
|
+
to: any;
|
|
101
|
+
}): boolean;
|
|
95
102
|
defaultStorageInit(): Extension<any, any>;
|
|
96
103
|
propsSync(): void;
|
|
97
104
|
insert(html: any): void;
|
|
@@ -108,21 +115,22 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
108
115
|
saveMarkdown(): string;
|
|
109
116
|
save(): void;
|
|
110
117
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
111
|
-
EditorContent: import("vue").DefineComponent<{
|
|
118
|
+
EditorContent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
112
119
|
editor: {
|
|
113
120
|
default: null;
|
|
114
121
|
type: import("vue").PropType<Editor>;
|
|
115
122
|
};
|
|
116
|
-
}
|
|
117
|
-
rootEl: import("vue").Ref<Element | undefined>;
|
|
118
|
-
},
|
|
123
|
+
}>, {
|
|
124
|
+
rootEl: import("vue").Ref<Element | undefined, Element | undefined>;
|
|
125
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
119
126
|
editor: {
|
|
120
127
|
default: null;
|
|
121
128
|
type: import("vue").PropType<Editor>;
|
|
122
129
|
};
|
|
123
|
-
}
|
|
130
|
+
}>> & Readonly<{}>, {
|
|
124
131
|
editor: Editor;
|
|
125
|
-
}>;
|
|
132
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
133
|
+
TiptapBubbleMenu: any;
|
|
126
134
|
toolBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
127
135
|
editor: {
|
|
128
136
|
default: () => {};
|
|
@@ -219,8 +227,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
219
227
|
editor: {};
|
|
220
228
|
theme: string;
|
|
221
229
|
foreground: string;
|
|
222
|
-
mobileMode: boolean;
|
|
223
230
|
language: string;
|
|
231
|
+
mobileMode: boolean;
|
|
224
232
|
showSave: boolean;
|
|
225
233
|
tippyOptions: number;
|
|
226
234
|
toolbarHeight: number;
|
|
@@ -265,8 +273,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
265
273
|
}>, {
|
|
266
274
|
theme: string;
|
|
267
275
|
foreground: string;
|
|
268
|
-
mobileMode: boolean;
|
|
269
276
|
language: string;
|
|
277
|
+
mobileMode: boolean;
|
|
270
278
|
}, {}, {
|
|
271
279
|
calloutBase: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
272
280
|
popperClass: {
|
|
@@ -321,12 +329,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
321
329
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
322
330
|
}>, {
|
|
323
331
|
title: string;
|
|
332
|
+
show: boolean;
|
|
324
333
|
theme: string;
|
|
325
334
|
foreground: string;
|
|
326
|
-
|
|
335
|
+
language: string;
|
|
327
336
|
popperClass: never[];
|
|
328
337
|
mobileMode: boolean;
|
|
329
|
-
language: string;
|
|
330
338
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
331
339
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
332
340
|
embedCallout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -367,8 +375,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
367
375
|
}>, {
|
|
368
376
|
theme: string;
|
|
369
377
|
foreground: string;
|
|
370
|
-
mobileMode: boolean;
|
|
371
378
|
language: string;
|
|
379
|
+
mobileMode: boolean;
|
|
372
380
|
}, {}, {
|
|
373
381
|
calloutBase: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
374
382
|
popperClass: {
|
|
@@ -423,12 +431,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
423
431
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
424
432
|
}>, {
|
|
425
433
|
title: string;
|
|
434
|
+
show: boolean;
|
|
426
435
|
theme: string;
|
|
427
436
|
foreground: string;
|
|
428
|
-
|
|
437
|
+
language: string;
|
|
429
438
|
popperClass: never[];
|
|
430
439
|
mobileMode: boolean;
|
|
431
|
-
language: string;
|
|
432
440
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
433
441
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
434
442
|
colorCallout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -505,8 +513,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
505
513
|
editor: null;
|
|
506
514
|
theme: string;
|
|
507
515
|
foreground: string;
|
|
508
|
-
mobileMode: boolean;
|
|
509
516
|
language: string;
|
|
517
|
+
mobileMode: boolean;
|
|
510
518
|
getBackground: void;
|
|
511
519
|
getForeground: void;
|
|
512
520
|
exec: void;
|
|
@@ -565,12 +573,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
565
573
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
566
574
|
}>, {
|
|
567
575
|
title: string;
|
|
576
|
+
show: boolean;
|
|
568
577
|
theme: string;
|
|
569
578
|
foreground: string;
|
|
570
|
-
|
|
579
|
+
language: string;
|
|
571
580
|
popperClass: never[];
|
|
572
581
|
mobileMode: boolean;
|
|
573
|
-
language: string;
|
|
574
582
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
575
583
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
576
584
|
emojiCallout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -621,8 +629,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
621
629
|
editor: null;
|
|
622
630
|
theme: string;
|
|
623
631
|
foreground: string;
|
|
624
|
-
mobileMode: boolean;
|
|
625
632
|
language: string;
|
|
633
|
+
mobileMode: boolean;
|
|
626
634
|
}, {}, {
|
|
627
635
|
calloutBase: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
628
636
|
popperClass: {
|
|
@@ -677,12 +685,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
677
685
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
678
686
|
}>, {
|
|
679
687
|
title: string;
|
|
688
|
+
show: boolean;
|
|
680
689
|
theme: string;
|
|
681
690
|
foreground: string;
|
|
682
|
-
|
|
691
|
+
language: string;
|
|
683
692
|
popperClass: never[];
|
|
684
693
|
mobileMode: boolean;
|
|
685
|
-
language: string;
|
|
686
694
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
687
695
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
688
696
|
imageCallout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -724,8 +732,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
724
732
|
}>, {
|
|
725
733
|
theme: string;
|
|
726
734
|
foreground: string;
|
|
727
|
-
mobileMode: boolean;
|
|
728
735
|
language: string;
|
|
736
|
+
mobileMode: boolean;
|
|
729
737
|
}, {}, {
|
|
730
738
|
calloutBase: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
731
739
|
popperClass: {
|
|
@@ -780,12 +788,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
780
788
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
781
789
|
}>, {
|
|
782
790
|
title: string;
|
|
791
|
+
show: boolean;
|
|
783
792
|
theme: string;
|
|
784
793
|
foreground: string;
|
|
785
|
-
|
|
794
|
+
language: string;
|
|
786
795
|
popperClass: never[];
|
|
787
796
|
mobileMode: boolean;
|
|
788
|
-
language: string;
|
|
789
797
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
790
798
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
791
799
|
headingCallout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -848,8 +856,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
848
856
|
editor: null;
|
|
849
857
|
theme: string;
|
|
850
858
|
foreground: string;
|
|
851
|
-
mobileMode: boolean;
|
|
852
859
|
language: string;
|
|
860
|
+
mobileMode: boolean;
|
|
853
861
|
getBackground: void;
|
|
854
862
|
getForeground: void;
|
|
855
863
|
execMore: void;
|
|
@@ -907,12 +915,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
907
915
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
908
916
|
}>, {
|
|
909
917
|
title: string;
|
|
918
|
+
show: boolean;
|
|
910
919
|
theme: string;
|
|
911
920
|
foreground: string;
|
|
912
|
-
|
|
921
|
+
language: string;
|
|
913
922
|
popperClass: never[];
|
|
914
923
|
mobileMode: boolean;
|
|
915
|
-
language: string;
|
|
916
924
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
917
925
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
918
926
|
TableCallout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -983,8 +991,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
983
991
|
editor: null;
|
|
984
992
|
theme: string;
|
|
985
993
|
foreground: string;
|
|
986
|
-
mobileMode: boolean;
|
|
987
994
|
language: string;
|
|
995
|
+
mobileMode: boolean;
|
|
988
996
|
getBackground: void;
|
|
989
997
|
getForeground: void;
|
|
990
998
|
exec: void;
|
|
@@ -1043,12 +1051,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
1043
1051
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1044
1052
|
}>, {
|
|
1045
1053
|
title: string;
|
|
1054
|
+
show: boolean;
|
|
1046
1055
|
theme: string;
|
|
1047
1056
|
foreground: string;
|
|
1048
|
-
|
|
1057
|
+
language: string;
|
|
1049
1058
|
popperClass: never[];
|
|
1050
1059
|
mobileMode: boolean;
|
|
1051
|
-
language: string;
|
|
1052
1060
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1053
1061
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1054
1062
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1130,8 +1138,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
1130
1138
|
editor: {};
|
|
1131
1139
|
theme: string;
|
|
1132
1140
|
foreground: string;
|
|
1133
|
-
mobileMode: boolean;
|
|
1134
1141
|
language: string;
|
|
1142
|
+
mobileMode: boolean;
|
|
1135
1143
|
showSave: boolean;
|
|
1136
1144
|
}, {}, {
|
|
1137
1145
|
colorCallout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -1208,8 +1216,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
1208
1216
|
editor: null;
|
|
1209
1217
|
theme: string;
|
|
1210
1218
|
foreground: string;
|
|
1211
|
-
mobileMode: boolean;
|
|
1212
1219
|
language: string;
|
|
1220
|
+
mobileMode: boolean;
|
|
1213
1221
|
getBackground: void;
|
|
1214
1222
|
getForeground: void;
|
|
1215
1223
|
exec: void;
|
|
@@ -1268,12 +1276,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
1268
1276
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1269
1277
|
}>, {
|
|
1270
1278
|
title: string;
|
|
1279
|
+
show: boolean;
|
|
1271
1280
|
theme: string;
|
|
1272
1281
|
foreground: string;
|
|
1273
|
-
|
|
1282
|
+
language: string;
|
|
1274
1283
|
popperClass: never[];
|
|
1275
1284
|
mobileMode: boolean;
|
|
1276
|
-
language: string;
|
|
1277
1285
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1278
1286
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1279
1287
|
TableCallout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -1344,8 +1352,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
1344
1352
|
editor: null;
|
|
1345
1353
|
theme: string;
|
|
1346
1354
|
foreground: string;
|
|
1347
|
-
mobileMode: boolean;
|
|
1348
1355
|
language: string;
|
|
1356
|
+
mobileMode: boolean;
|
|
1349
1357
|
getBackground: void;
|
|
1350
1358
|
getForeground: void;
|
|
1351
1359
|
exec: void;
|
|
@@ -1404,12 +1412,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
|
|
|
1404
1412
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1405
1413
|
}>, {
|
|
1406
1414
|
title: string;
|
|
1415
|
+
show: boolean;
|
|
1407
1416
|
theme: string;
|
|
1408
1417
|
foreground: string;
|
|
1409
|
-
|
|
1418
|
+
language: string;
|
|
1410
1419
|
popperClass: never[];
|
|
1411
1420
|
mobileMode: boolean;
|
|
1412
|
-
language: string;
|
|
1413
1421
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1414
1422
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1415
1423
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@creatorsn/powereditor3",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1
|
|
4
|
+
"version": "0.2.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -28,29 +28,29 @@
|
|
|
28
28
|
"preview": "vite preview"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@creatorsn/vfluent3": "^0.3.
|
|
32
|
-
"@tiptap/core": "
|
|
33
|
-
"@tiptap/extension-bubble-menu": "
|
|
34
|
-
"@tiptap/extension-code-block": "
|
|
35
|
-
"@tiptap/extension-code-block-lowlight": "
|
|
36
|
-
"@tiptap/extension-color": "
|
|
37
|
-
"@tiptap/extension-highlight": "
|
|
38
|
-
"@tiptap/extension-link": "
|
|
39
|
-
"@tiptap/extension-placeholder": "
|
|
40
|
-
"@tiptap/extension-subscript": "
|
|
41
|
-
"@tiptap/extension-superscript": "
|
|
42
|
-
"@tiptap/extension-table": "
|
|
43
|
-
"@tiptap/extension-table-cell": "
|
|
44
|
-
"@tiptap/extension-table-header": "
|
|
45
|
-
"@tiptap/extension-table-row": "
|
|
46
|
-
"@tiptap/extension-task-item": "
|
|
47
|
-
"@tiptap/extension-task-list": "
|
|
48
|
-
"@tiptap/extension-text-align": "
|
|
49
|
-
"@tiptap/extension-text-style": "
|
|
50
|
-
"@tiptap/extension-underline": "
|
|
51
|
-
"@tiptap/pm": "
|
|
52
|
-
"@tiptap/starter-kit": "
|
|
53
|
-
"@tiptap/vue-3": "
|
|
31
|
+
"@creatorsn/vfluent3": "^0.3.68",
|
|
32
|
+
"@tiptap/core": "3.23.6",
|
|
33
|
+
"@tiptap/extension-bubble-menu": "3.23.6",
|
|
34
|
+
"@tiptap/extension-code-block": "3.23.6",
|
|
35
|
+
"@tiptap/extension-code-block-lowlight": "3.23.6",
|
|
36
|
+
"@tiptap/extension-color": "3.23.6",
|
|
37
|
+
"@tiptap/extension-highlight": "3.23.6",
|
|
38
|
+
"@tiptap/extension-link": "3.23.6",
|
|
39
|
+
"@tiptap/extension-placeholder": "3.23.6",
|
|
40
|
+
"@tiptap/extension-subscript": "3.23.6",
|
|
41
|
+
"@tiptap/extension-superscript": "3.23.6",
|
|
42
|
+
"@tiptap/extension-table": "3.23.6",
|
|
43
|
+
"@tiptap/extension-table-cell": "3.23.6",
|
|
44
|
+
"@tiptap/extension-table-header": "3.23.6",
|
|
45
|
+
"@tiptap/extension-table-row": "3.23.6",
|
|
46
|
+
"@tiptap/extension-task-item": "3.23.6",
|
|
47
|
+
"@tiptap/extension-task-list": "3.23.6",
|
|
48
|
+
"@tiptap/extension-text-align": "3.23.6",
|
|
49
|
+
"@tiptap/extension-text-style": "3.23.6",
|
|
50
|
+
"@tiptap/extension-underline": "3.23.6",
|
|
51
|
+
"@tiptap/pm": "3.23.6",
|
|
52
|
+
"@tiptap/starter-kit": "3.23.6",
|
|
53
|
+
"@tiptap/vue-3": "3.23.6",
|
|
54
54
|
"autoprefixer": "^10.4.21",
|
|
55
55
|
"core-js": "3.30.1",
|
|
56
56
|
"d3": "7.0.4",
|
|
@@ -78,5 +78,17 @@
|
|
|
78
78
|
"vite": "^6.3.5",
|
|
79
79
|
"vitepress": "^1.6.3",
|
|
80
80
|
"vue-tsc": "^2.2.8"
|
|
81
|
+
},
|
|
82
|
+
"overrides": {
|
|
83
|
+
"prosemirror-model": "1.25.7",
|
|
84
|
+
"prosemirror-state": "1.4.4",
|
|
85
|
+
"prosemirror-transform": "1.12.0",
|
|
86
|
+
"prosemirror-view": "1.41.8"
|
|
87
|
+
},
|
|
88
|
+
"resolutions": {
|
|
89
|
+
"prosemirror-model": "1.25.7",
|
|
90
|
+
"prosemirror-state": "1.4.4",
|
|
91
|
+
"prosemirror-transform": "1.12.0",
|
|
92
|
+
"prosemirror-view": "1.41.8"
|
|
81
93
|
}
|
|
82
94
|
}
|