@halo-dev/richtext-editor 2.12.0 → 2.13.0
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/components/Editor.vue.d.ts +1 -1
- package/dist/components/EditorBubbleMenu.vue.d.ts +1 -1
- package/dist/components/EditorHeader.vue.d.ts +1 -1
- package/dist/components/block/BlockActionButton.vue.d.ts +1 -1
- package/dist/components/block/BlockActionInput.vue.d.ts +1 -1
- package/dist/components/block/BlockActionSeparator.vue.d.ts +1 -1
- package/dist/components/block/BlockCard.vue.d.ts +1 -1
- package/dist/components/bubble/BubbleItem.vue.d.ts +1 -1
- package/dist/components/common/ColorPickerDropdown.vue.d.ts +1 -1
- package/dist/components/icon/MdiDeleteForeverOutline.vue.d.ts +1 -1
- package/dist/components/toolbar/ToolbarItem.vue.d.ts +1 -1
- package/dist/components/toolbar/ToolbarSubItem.vue.d.ts +1 -1
- package/dist/components/toolbox/ToolboxItem.vue.d.ts +1 -1
- package/dist/extensions/audio/AudioView.vue.d.ts +1 -1
- package/dist/extensions/audio/BubbleItemAudioLink.vue.d.ts +1 -1
- package/dist/extensions/code-block/CodeBlockViewRenderer.vue.d.ts +1 -1
- package/dist/extensions/color/ColorBubbleItem.vue.d.ts +1 -1
- package/dist/extensions/color/ColorToolbarItem.vue.d.ts +1 -1
- package/dist/extensions/commands-menu/CommandsView.vue.d.ts +1 -1
- package/dist/extensions/highlight/HighlightBubbleItem.vue.d.ts +1 -1
- package/dist/extensions/highlight/HighlightToolbarItem.vue.d.ts +1 -1
- package/dist/extensions/iframe/BubbleItemIframeLink.vue.d.ts +1 -1
- package/dist/extensions/iframe/BubbleItemIframeSize.vue.d.ts +1 -1
- package/dist/extensions/iframe/IframeView.vue.d.ts +1 -1
- package/dist/extensions/image/BubbleItemImageAlt.vue.d.ts +1 -1
- package/dist/extensions/image/BubbleItemImageHref.vue.d.ts +1 -1
- package/dist/extensions/image/BubbleItemImageLink.vue.d.ts +1 -1
- package/dist/extensions/image/BubbleItemImageSize.vue.d.ts +1 -1
- package/dist/extensions/image/ImageView.vue.d.ts +1 -1
- package/dist/extensions/index.d.ts +1 -1
- package/dist/extensions/link/LinkBubbleButton.vue.d.ts +1 -1
- package/dist/extensions/search-and-replace/SearchAndReplace.vue.d.ts +1 -1
- package/dist/extensions/video/BubbleItemVideoLink.vue.d.ts +1 -1
- package/dist/extensions/video/BubbleItemVideoSize.vue.d.ts +1 -1
- package/dist/extensions/video/VideoView.vue.d.ts +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/rich-text-editor.es.js +15007 -16100
- package/dist/rich-text-editor.iife.js +57 -62
- package/package.json +42 -42
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halo-dev/richtext-editor",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.0",
|
|
4
4
|
"description": "Default editor for Halo",
|
|
5
|
-
"homepage": "https://github.com/halo-dev/halo/tree/main/
|
|
5
|
+
"homepage": "https://github.com/halo-dev/halo/tree/main/ui/packages/editor#readme",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/halo-dev/halo/issues"
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/halo-dev/halo.git",
|
|
12
|
-
"directory": "
|
|
12
|
+
"directory": "ui/packages/editor"
|
|
13
13
|
},
|
|
14
14
|
"license": "GPL-3.0",
|
|
15
15
|
"author": "@halo-dev",
|
|
@@ -30,44 +30,44 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@ckpack/vue-color": "^1.5.0",
|
|
33
|
-
"@tiptap/core": "^2.
|
|
34
|
-
"@tiptap/extension-blockquote": "^2.
|
|
35
|
-
"@tiptap/extension-bold": "^2.
|
|
36
|
-
"@tiptap/extension-bullet-list": "^2.
|
|
37
|
-
"@tiptap/extension-code": "^2.
|
|
38
|
-
"@tiptap/extension-code-block": "^2.
|
|
39
|
-
"@tiptap/extension-code-block-lowlight": "^2.
|
|
40
|
-
"@tiptap/extension-color": "^2.
|
|
41
|
-
"@tiptap/extension-document": "^2.
|
|
42
|
-
"@tiptap/extension-dropcursor": "^2.
|
|
43
|
-
"@tiptap/extension-gapcursor": "^2.
|
|
44
|
-
"@tiptap/extension-hard-break": "^2.
|
|
45
|
-
"@tiptap/extension-heading": "^2.
|
|
46
|
-
"@tiptap/extension-highlight": "^2.
|
|
47
|
-
"@tiptap/extension-history": "^2.
|
|
48
|
-
"@tiptap/extension-horizontal-rule": "^2.
|
|
49
|
-
"@tiptap/extension-image": "^2.
|
|
50
|
-
"@tiptap/extension-italic": "^2.
|
|
51
|
-
"@tiptap/extension-link": "^2.
|
|
52
|
-
"@tiptap/extension-list-item": "^2.
|
|
53
|
-
"@tiptap/extension-list-keymap": "^2.
|
|
54
|
-
"@tiptap/extension-ordered-list": "^2.
|
|
55
|
-
"@tiptap/extension-paragraph": "^2.
|
|
56
|
-
"@tiptap/extension-placeholder": "^2.
|
|
57
|
-
"@tiptap/extension-strike": "^2.
|
|
58
|
-
"@tiptap/extension-subscript": "^2.
|
|
59
|
-
"@tiptap/extension-superscript": "^2.
|
|
33
|
+
"@tiptap/core": "^2.2.3",
|
|
34
|
+
"@tiptap/extension-blockquote": "^2.2.3",
|
|
35
|
+
"@tiptap/extension-bold": "^2.2.3",
|
|
36
|
+
"@tiptap/extension-bullet-list": "^2.2.3",
|
|
37
|
+
"@tiptap/extension-code": "^2.2.3",
|
|
38
|
+
"@tiptap/extension-code-block": "^2.2.3",
|
|
39
|
+
"@tiptap/extension-code-block-lowlight": "^2.2.3",
|
|
40
|
+
"@tiptap/extension-color": "^2.2.3",
|
|
41
|
+
"@tiptap/extension-document": "^2.2.3",
|
|
42
|
+
"@tiptap/extension-dropcursor": "^2.2.3",
|
|
43
|
+
"@tiptap/extension-gapcursor": "^2.2.3",
|
|
44
|
+
"@tiptap/extension-hard-break": "^2.2.3",
|
|
45
|
+
"@tiptap/extension-heading": "^2.2.3",
|
|
46
|
+
"@tiptap/extension-highlight": "^2.2.3",
|
|
47
|
+
"@tiptap/extension-history": "^2.2.3",
|
|
48
|
+
"@tiptap/extension-horizontal-rule": "^2.2.3",
|
|
49
|
+
"@tiptap/extension-image": "^2.2.3",
|
|
50
|
+
"@tiptap/extension-italic": "^2.2.3",
|
|
51
|
+
"@tiptap/extension-link": "^2.2.3",
|
|
52
|
+
"@tiptap/extension-list-item": "^2.2.3",
|
|
53
|
+
"@tiptap/extension-list-keymap": "^2.2.3",
|
|
54
|
+
"@tiptap/extension-ordered-list": "^2.2.3",
|
|
55
|
+
"@tiptap/extension-paragraph": "^2.2.3",
|
|
56
|
+
"@tiptap/extension-placeholder": "^2.2.3",
|
|
57
|
+
"@tiptap/extension-strike": "^2.2.3",
|
|
58
|
+
"@tiptap/extension-subscript": "^2.2.3",
|
|
59
|
+
"@tiptap/extension-superscript": "^2.2.3",
|
|
60
60
|
"@tiptap/extension-table": "2.2.0-rc.8",
|
|
61
|
-
"@tiptap/extension-table-row": "^2.
|
|
62
|
-
"@tiptap/extension-task-item": "^2.
|
|
63
|
-
"@tiptap/extension-task-list": "^2.
|
|
64
|
-
"@tiptap/extension-text": "^2.
|
|
65
|
-
"@tiptap/extension-text-align": "^2.
|
|
66
|
-
"@tiptap/extension-text-style": "^2.
|
|
67
|
-
"@tiptap/extension-underline": "^2.
|
|
68
|
-
"@tiptap/pm": "^2.
|
|
69
|
-
"@tiptap/suggestion": "^2.
|
|
70
|
-
"@tiptap/vue-3": "^2.
|
|
61
|
+
"@tiptap/extension-table-row": "^2.2.3",
|
|
62
|
+
"@tiptap/extension-task-item": "^2.2.3",
|
|
63
|
+
"@tiptap/extension-task-list": "^2.2.3",
|
|
64
|
+
"@tiptap/extension-text": "^2.2.3",
|
|
65
|
+
"@tiptap/extension-text-align": "^2.2.3",
|
|
66
|
+
"@tiptap/extension-text-style": "^2.2.3",
|
|
67
|
+
"@tiptap/extension-underline": "^2.2.3",
|
|
68
|
+
"@tiptap/pm": "^2.2.3",
|
|
69
|
+
"@tiptap/suggestion": "^2.2.3",
|
|
70
|
+
"@tiptap/vue-3": "^2.2.3",
|
|
71
71
|
"floating-vue": "2.0.0-beta.24",
|
|
72
72
|
"github-markdown-css": "^5.2.0",
|
|
73
73
|
"highlight.js": "11.8.0",
|
|
@@ -78,10 +78,10 @@
|
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@iconify/json": "^2.2.117",
|
|
80
80
|
"release-it": "^16.1.5",
|
|
81
|
-
"vite-plugin-dts": "^3.
|
|
81
|
+
"vite-plugin-dts": "^3.7.3"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
|
-
"vue": "^3.
|
|
84
|
+
"vue": "^3.4.19"
|
|
85
85
|
},
|
|
86
86
|
"scripts": {
|
|
87
87
|
"build": "vite build --config ./vite.lib.config.ts",
|