@yiitap/vue 0.11.0 → 0.11.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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -18
- package/types/components/YiiEditor.vue.d.ts +2 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yiitap/vue",
|
|
3
3
|
"description": "A WYSIWYG rich-text block-based editor built on top of tiptap.",
|
|
4
|
-
"version": "0.11.
|
|
4
|
+
"version": "0.11.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Yiitap",
|
|
@@ -77,23 +77,23 @@
|
|
|
77
77
|
"mermaid": "^11.12.0",
|
|
78
78
|
"openai": "^4.88.0",
|
|
79
79
|
"vue": "^3.3.8",
|
|
80
|
-
"@yiitap/core": "0.11.
|
|
81
|
-
"@yiitap/extension-ai-block": "0.11.
|
|
82
|
-
"@yiitap/extension-callout": "0.11.
|
|
83
|
-
"@yiitap/extension-char-command": "0.11.
|
|
84
|
-
"@yiitap/extension-color-highlighter": "0.11.
|
|
85
|
-
"@yiitap/extension-focus": "0.11.
|
|
86
|
-
"@yiitap/extension-image": "0.11.
|
|
87
|
-
"@yiitap/extension-inline-placeholder": "0.11.
|
|
88
|
-
"@yiitap/extension-placeholder": "0.11.
|
|
89
|
-
"@yiitap/extension-selection-decoration": "0.11.
|
|
90
|
-
"@yiitap/extension-
|
|
91
|
-
"@yiitap/extension-table": "0.11.
|
|
92
|
-
"@yiitap/extension-
|
|
93
|
-
"@yiitap/extension-task-item": "0.11.
|
|
94
|
-
"@yiitap/
|
|
95
|
-
"@yiitap/
|
|
96
|
-
"@yiitap/
|
|
80
|
+
"@yiitap/core": "0.11.2",
|
|
81
|
+
"@yiitap/extension-ai-block": "0.11.2",
|
|
82
|
+
"@yiitap/extension-callout": "0.11.2",
|
|
83
|
+
"@yiitap/extension-char-command": "0.11.2",
|
|
84
|
+
"@yiitap/extension-color-highlighter": "0.11.2",
|
|
85
|
+
"@yiitap/extension-focus": "0.11.2",
|
|
86
|
+
"@yiitap/extension-image": "0.11.2",
|
|
87
|
+
"@yiitap/extension-inline-placeholder": "0.11.2",
|
|
88
|
+
"@yiitap/extension-placeholder": "0.11.2",
|
|
89
|
+
"@yiitap/extension-selection-decoration": "0.11.2",
|
|
90
|
+
"@yiitap/extension-table": "0.11.2",
|
|
91
|
+
"@yiitap/extension-table-wrapper": "0.11.2",
|
|
92
|
+
"@yiitap/extension-shortcut": "0.11.2",
|
|
93
|
+
"@yiitap/extension-task-item": "0.11.2",
|
|
94
|
+
"@yiitap/util-emoji": "0.11.2",
|
|
95
|
+
"@yiitap/vue": "0.11.2",
|
|
96
|
+
"@yiitap/extension-video": "0.11.2"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
99
|
"rollup-plugin-visualizer": "^5.14.0",
|
|
@@ -181,8 +181,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
181
181
|
locale: import("vue").Ref<string, string>;
|
|
182
182
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
183
183
|
update: (payload: {
|
|
184
|
-
|
|
185
|
-
html: string;
|
|
184
|
+
editor: Editor;
|
|
186
185
|
}) => any;
|
|
187
186
|
create: (editor: Editor) => any;
|
|
188
187
|
transaction: (payload: {
|
|
@@ -338,8 +337,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
338
337
|
};
|
|
339
338
|
}>> & Readonly<{
|
|
340
339
|
onUpdate?: (payload: {
|
|
341
|
-
|
|
342
|
-
html: string;
|
|
340
|
+
editor: Editor;
|
|
343
341
|
}) => any;
|
|
344
342
|
onCreate?: (editor: Editor) => any;
|
|
345
343
|
onTransaction?: (payload: {
|