@itshixun/qckeditor-vue3 1.0.7 → 1.0.9
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/index.css +1 -1
- package/dist/index.d.ts +26 -26
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1204 -1176
- package/dist/src/components/CKEditor.vue.d.ts +5 -5
- package/dist/src/components/CKEditor.vue.d.ts.map +1 -1
- package/dist/src/components/QCKClassic.vue.d.ts +6 -6
- package/dist/src/components/QCKEditorPro.vue.d.ts +15 -15
- package/dist/src/utils/balloonScrollHelper.d.ts +24 -0
- package/dist/src/utils/balloonScrollHelper.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11,15 +11,15 @@ declare const _default: {
|
|
|
11
11
|
}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
|
|
12
12
|
attrs: any;
|
|
13
13
|
slots: {};
|
|
14
|
-
emit: (((evt: "
|
|
14
|
+
emit: (((evt: "blur", event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "focus", event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "input", data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "update:modelValue", data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "ready", editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "destroy") => void)) & ((evt: "update:modelValue", value: string) => void);
|
|
15
15
|
}, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
16
16
|
props: {
|
|
17
|
-
readonly "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
18
|
-
readonly onReady?: ((editor: import('.').ExtractEditorType<TEditor>) => any) | undefined;
|
|
19
|
-
readonly onDestroy?: (() => any) | undefined;
|
|
20
17
|
readonly onBlur?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => any) | undefined;
|
|
21
18
|
readonly onFocus?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => any) | undefined;
|
|
22
19
|
readonly onInput?: ((data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => any) | undefined;
|
|
20
|
+
readonly "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
21
|
+
readonly onReady?: ((editor: import('.').ExtractEditorType<TEditor>) => any) | undefined;
|
|
22
|
+
readonly onDestroy?: (() => any) | undefined;
|
|
23
23
|
modelValue?: string | undefined;
|
|
24
24
|
editor: TEditor;
|
|
25
25
|
config?: import('ckeditor5').EditorConfig | undefined;
|
|
@@ -33,7 +33,7 @@ declare const _default: {
|
|
|
33
33
|
}>): void;
|
|
34
34
|
attrs: any;
|
|
35
35
|
slots: {};
|
|
36
|
-
emit: (((evt: "
|
|
36
|
+
emit: (((evt: "blur", event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "focus", event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "input", data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "update:modelValue", data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "ready", editor: import('.').ExtractEditorType<TEditor>) => void) & ((evt: "destroy") => void)) & ((evt: "update:modelValue", value: string) => void);
|
|
37
37
|
}>) => import('vue').VNode & {
|
|
38
38
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
39
39
|
};
|
|
@@ -56,12 +56,12 @@ declare const _default: {
|
|
|
56
56
|
lastEditorData: string | undefined;
|
|
57
57
|
} | null>;
|
|
58
58
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
59
|
-
"update:modelValue": (value: string) => any;
|
|
60
|
-
ready: (editor: import('ckeditor5').ClassicEditor) => any;
|
|
61
|
-
destroy: () => any;
|
|
62
59
|
blur: (event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
63
60
|
focus: (event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
64
61
|
input: (data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
62
|
+
"update:modelValue": (value: string) => any;
|
|
63
|
+
ready: (editor: import('ckeditor5').ClassicEditor) => any;
|
|
64
|
+
destroy: () => any;
|
|
65
65
|
}, string, import('vue').PublicProps, Readonly<{
|
|
66
66
|
modelValue?: string;
|
|
67
67
|
} & {
|
|
@@ -70,12 +70,12 @@ declare const _default: {
|
|
|
70
70
|
disabled?: boolean;
|
|
71
71
|
disableTwoWayDataBinding?: boolean;
|
|
72
72
|
}> & Readonly<{
|
|
73
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
74
|
-
onReady?: ((editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
75
|
-
onDestroy?: (() => any) | undefined;
|
|
76
73
|
onBlur?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
77
74
|
onFocus?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
78
75
|
onInput?: ((data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
76
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
77
|
+
onReady?: ((editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
78
|
+
onDestroy?: (() => any) | undefined;
|
|
79
79
|
}>, {
|
|
80
80
|
config: import('ckeditor5').EditorConfig;
|
|
81
81
|
tagName: string;
|
|
@@ -105,12 +105,12 @@ declare const _default: {
|
|
|
105
105
|
contentBgHoverColor?: string;
|
|
106
106
|
borderRadius?: number;
|
|
107
107
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
108
|
-
"update:modelValue": (value: string) => any;
|
|
109
|
-
ready: (editor: import('ckeditor5').ClassicEditor) => any;
|
|
110
|
-
destroy: () => any;
|
|
111
108
|
blur: (event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
112
109
|
focus: (event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
113
110
|
input: (data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
111
|
+
"update:modelValue": (value: string) => any;
|
|
112
|
+
ready: (editor: import('ckeditor5').ClassicEditor) => any;
|
|
113
|
+
destroy: () => any;
|
|
114
114
|
}, string, import('vue').PublicProps, Readonly<{
|
|
115
115
|
modelValue?: string;
|
|
116
116
|
} & {
|
|
@@ -129,12 +129,12 @@ declare const _default: {
|
|
|
129
129
|
contentBgHoverColor?: string;
|
|
130
130
|
borderRadius?: number;
|
|
131
131
|
}> & Readonly<{
|
|
132
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
133
|
-
onReady?: ((editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
134
|
-
onDestroy?: (() => any) | undefined;
|
|
135
132
|
onBlur?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
136
133
|
onFocus?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
137
134
|
onInput?: ((data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
135
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
136
|
+
onReady?: ((editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
137
|
+
onDestroy?: (() => any) | undefined;
|
|
138
138
|
}>, {
|
|
139
139
|
config: import('ckeditor5').EditorConfig;
|
|
140
140
|
tagName: string;
|
|
@@ -160,12 +160,12 @@ declare const _default: {
|
|
|
160
160
|
disabled?: boolean;
|
|
161
161
|
disableTwoWayDataBinding?: boolean;
|
|
162
162
|
}> & Readonly<{
|
|
163
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
164
|
-
onReady?: ((editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
165
|
-
onDestroy?: (() => any) | undefined;
|
|
166
163
|
onBlur?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
167
164
|
onFocus?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
168
165
|
onInput?: ((data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
166
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
167
|
+
onReady?: ((editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
168
|
+
onDestroy?: (() => any) | undefined;
|
|
169
169
|
}>, {
|
|
170
170
|
ckeditorRef: import('vue').Ref<{
|
|
171
171
|
instance: import('ckeditor5').ClassicEditor | undefined;
|
|
@@ -178,12 +178,12 @@ declare const _default: {
|
|
|
178
178
|
lastEditorData: string | undefined;
|
|
179
179
|
} | null>;
|
|
180
180
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
181
|
-
"update:modelValue": (value: string) => any;
|
|
182
|
-
ready: (editor: import('ckeditor5').ClassicEditor) => any;
|
|
183
|
-
destroy: () => any;
|
|
184
181
|
blur: (event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
185
182
|
focus: (event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
186
183
|
input: (data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any;
|
|
184
|
+
"update:modelValue": (value: string) => any;
|
|
185
|
+
ready: (editor: import('ckeditor5').ClassicEditor) => any;
|
|
186
|
+
destroy: () => any;
|
|
187
187
|
}, import('vue').PublicProps, {
|
|
188
188
|
config: import('ckeditor5').EditorConfig;
|
|
189
189
|
tagName: string;
|
|
@@ -209,12 +209,12 @@ declare const _default: {
|
|
|
209
209
|
disabled?: boolean;
|
|
210
210
|
disableTwoWayDataBinding?: boolean;
|
|
211
211
|
}> & Readonly<{
|
|
212
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
213
|
-
onReady?: ((editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
214
|
-
onDestroy?: (() => any) | undefined;
|
|
215
212
|
onBlur?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
216
213
|
onFocus?: ((event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
217
214
|
onInput?: ((data: string, event: import('ckeditor5').EventInfo<string, unknown>, editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
215
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
216
|
+
onReady?: ((editor: import('ckeditor5').ClassicEditor) => any) | undefined;
|
|
217
|
+
onDestroy?: (() => any) | undefined;
|
|
218
218
|
}>, {
|
|
219
219
|
ckeditorRef: import('vue').Ref<{
|
|
220
220
|
instance: import('ckeditor5').ClassicEditor | undefined;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AACA,OAAO,wBAAwB,CAAC;AAGhC,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,iCAAiC,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAGxE,YAAY,EAAE,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAG5D,OAAO,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AACtH,YAAY,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AACA,OAAO,wBAAwB,CAAC;AAGhC,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,iCAAiC,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAGxE,YAAY,EAAE,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAG5D,OAAO,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AACtH,YAAY,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;;;eAco9M,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAAu6T,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AANr8gB,wBAKE"}
|