@halo-dev/richtext-editor 0.0.0-alpha.4 → 0.0.0-alpha.5
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/extensions/index.d.ts +35 -0
- package/dist/index.d.ts +4 -2
- package/dist/rich-text-editor.es.js +19874 -19687
- package/dist/rich-text-editor.es.js.map +1 -1
- package/dist/rich-text-editor.iife.js +19872 -19685
- package/dist/rich-text-editor.iife.js.map +1 -1
- package/dist/style.css +2250 -2249
- package/package.json +21 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halo-dev/richtext-editor",
|
|
3
|
-
"version": "0.0.0-alpha.
|
|
3
|
+
"version": "0.0.0-alpha.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"vue": "^3.2.37"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@iconify/json": "^2.1.
|
|
20
|
+
"@iconify/json": "^2.1.96",
|
|
21
21
|
"@types/katex": "^0.14.0",
|
|
22
22
|
"@vue/compiler-sfc": "^3.2.37",
|
|
23
23
|
"autoprefixer": "^10.4.8",
|
|
24
24
|
"bumpp": "^8.2.1",
|
|
25
25
|
"postcss": "^8.4.16",
|
|
26
|
-
"sass": "^1.54.
|
|
26
|
+
"sass": "^1.54.5",
|
|
27
27
|
"tailwindcss": "^3.1.8",
|
|
28
28
|
"unplugin-icons": "^0.14.8",
|
|
29
29
|
"vite-plugin-dts": "^1.4.1"
|
|
@@ -37,10 +37,27 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@tiptap/core": "2.0.0-beta.182",
|
|
40
|
+
"@tiptap/extension-blockquote": "^2.0.0-beta.29",
|
|
41
|
+
"@tiptap/extension-bold": "^2.0.0-beta.28",
|
|
42
|
+
"@tiptap/extension-bullet-list": "^2.0.0-beta.29",
|
|
43
|
+
"@tiptap/extension-code": "^2.0.0-beta.28",
|
|
44
|
+
"@tiptap/extension-code-block": "^2.0.0-beta.42",
|
|
40
45
|
"@tiptap/extension-code-block-lowlight": "2.0.0-beta.73",
|
|
46
|
+
"@tiptap/extension-document": "^2.0.0-beta.17",
|
|
47
|
+
"@tiptap/extension-dropcursor": "^2.0.0-beta.29",
|
|
48
|
+
"@tiptap/extension-gapcursor": "^2.0.0-beta.39",
|
|
49
|
+
"@tiptap/extension-hard-break": "^2.0.0-beta.33",
|
|
50
|
+
"@tiptap/extension-heading": "^2.0.0-beta.29",
|
|
51
|
+
"@tiptap/extension-history": "^2.0.0-beta.26",
|
|
52
|
+
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.36",
|
|
41
53
|
"@tiptap/extension-image": "2.0.0-beta.30",
|
|
54
|
+
"@tiptap/extension-italic": "^2.0.0-beta.28",
|
|
42
55
|
"@tiptap/extension-link": "2.0.0-beta.43",
|
|
56
|
+
"@tiptap/extension-list-item": "^2.0.0-beta.23",
|
|
57
|
+
"@tiptap/extension-ordered-list": "^2.0.0-beta.30",
|
|
58
|
+
"@tiptap/extension-paragraph": "^2.0.0-beta.26",
|
|
43
59
|
"@tiptap/extension-placeholder": "2.0.0-beta.53",
|
|
60
|
+
"@tiptap/extension-strike": "^2.0.0-beta.29",
|
|
44
61
|
"@tiptap/extension-subscript": "2.0.0-beta.13",
|
|
45
62
|
"@tiptap/extension-superscript": "2.0.0-beta.13",
|
|
46
63
|
"@tiptap/extension-table": "2.0.0-beta.54",
|
|
@@ -49,9 +66,9 @@
|
|
|
49
66
|
"@tiptap/extension-table-row": "2.0.0-beta.22",
|
|
50
67
|
"@tiptap/extension-task-item": "2.0.0-beta.37",
|
|
51
68
|
"@tiptap/extension-task-list": "2.0.0-beta.29",
|
|
69
|
+
"@tiptap/extension-text": "^2.0.0-beta.17",
|
|
52
70
|
"@tiptap/extension-text-align": "2.0.0-beta.31",
|
|
53
71
|
"@tiptap/extension-underline": "2.0.0-beta.25",
|
|
54
|
-
"@tiptap/starter-kit": "2.0.0-beta.191",
|
|
55
72
|
"@tiptap/suggestion": "2.0.0-beta.97",
|
|
56
73
|
"@tiptap/vue-3": "2.0.0-beta.96",
|
|
57
74
|
"floating-vue": "2.0.0-beta.19",
|