@halo-dev/richtext-editor 0.0.0-alpha.5 → 0.0.0-alpha.7
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/commands-menu/suggestion.d.ts +1 -1
- package/dist/rich-text-editor.es.js +2050 -514
- package/dist/rich-text-editor.es.js.map +1 -1
- package/dist/rich-text-editor.iife.js +2049 -513
- package/dist/rich-text-editor.iife.js.map +1 -1
- package/dist/style.css +89 -1121
- package/package.json +58 -58
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.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
"unpkg": "./dist/rich-text-editor.iife.js",
|
|
11
11
|
"jsdelivr": "./dist/rich-text-editor.iife.js",
|
|
12
12
|
"types": "./dist/index.d.ts",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "vite build --watch",
|
|
15
|
+
"build": "vite build",
|
|
16
|
+
"test:unit": "vitest --environment jsdom --run",
|
|
17
|
+
"test:unit:watch": "vitest --environment jsdom --watch",
|
|
18
|
+
"test:unit:ui": "vitest --environment jsdom --watch --ui",
|
|
19
|
+
"test:unit:coverage": "vitest run --environment jsdom --coverage",
|
|
20
|
+
"typecheck": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
|
21
|
+
"lint": "eslint ./src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
|
|
22
|
+
"prettier": "prettier --write './src/**/*.{vue,js,jsx,ts,tsx,css,scss,json,yml,yaml,html}'",
|
|
23
|
+
"release": "release-it"
|
|
24
|
+
},
|
|
13
25
|
"keywords": [],
|
|
14
26
|
"author": "",
|
|
15
27
|
"license": "ISC",
|
|
@@ -17,16 +29,16 @@
|
|
|
17
29
|
"vue": "^3.2.37"
|
|
18
30
|
},
|
|
19
31
|
"devDependencies": {
|
|
20
|
-
"@iconify/json": "^2.1.
|
|
32
|
+
"@iconify/json": "^2.1.108",
|
|
21
33
|
"@types/katex": "^0.14.0",
|
|
22
|
-
"@vue/compiler-sfc": "^3.2.
|
|
23
|
-
"autoprefixer": "^10.4.
|
|
24
|
-
"bumpp": "^8.2.1",
|
|
34
|
+
"@vue/compiler-sfc": "^3.2.39",
|
|
35
|
+
"autoprefixer": "^10.4.11",
|
|
25
36
|
"postcss": "^8.4.16",
|
|
26
|
-
"
|
|
37
|
+
"release-it": "^15.4.2",
|
|
38
|
+
"sass": "^1.54.9",
|
|
27
39
|
"tailwindcss": "^3.1.8",
|
|
28
|
-
"unplugin-icons": "^0.14.
|
|
29
|
-
"vite-plugin-dts": "^1.
|
|
40
|
+
"unplugin-icons": "^0.14.10",
|
|
41
|
+
"vite-plugin-dts": "^1.5.0"
|
|
30
42
|
},
|
|
31
43
|
"exports": {
|
|
32
44
|
".": {
|
|
@@ -36,57 +48,45 @@
|
|
|
36
48
|
"./dist/style.css": "./dist/style.css"
|
|
37
49
|
},
|
|
38
50
|
"dependencies": {
|
|
39
|
-
"@tiptap/core": "2.0.0-beta.
|
|
40
|
-
"@tiptap/extension-blockquote": "^2.0.0-beta.
|
|
41
|
-
"@tiptap/extension-bold": "^2.0.0-beta.
|
|
42
|
-
"@tiptap/extension-bullet-list": "^2.0.0-beta.
|
|
43
|
-
"@tiptap/extension-code": "^2.0.0-beta.
|
|
44
|
-
"@tiptap/extension-code-block": "^2.0.0-beta.
|
|
45
|
-
"@tiptap/extension-code-block-lowlight": "2.0.0-beta.
|
|
46
|
-
"@tiptap/extension-document": "^2.0.0-beta.
|
|
47
|
-
"@tiptap/extension-dropcursor": "^2.0.0-beta.
|
|
48
|
-
"@tiptap/extension-gapcursor": "^2.0.0-beta.
|
|
49
|
-
"@tiptap/extension-hard-break": "^2.0.0-beta.
|
|
50
|
-
"@tiptap/extension-heading": "^2.0.0-beta.
|
|
51
|
-
"@tiptap/extension-history": "^2.0.0-beta.
|
|
52
|
-
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.
|
|
53
|
-
"@tiptap/extension-image": "2.0.0-beta.
|
|
54
|
-
"@tiptap/extension-italic": "^2.0.0-beta.
|
|
55
|
-
"@tiptap/extension-link": "2.0.0-beta.
|
|
56
|
-
"@tiptap/extension-list-item": "^2.0.0-beta.
|
|
57
|
-
"@tiptap/extension-ordered-list": "^2.0.0-beta.
|
|
58
|
-
"@tiptap/extension-paragraph": "^2.0.0-beta.
|
|
59
|
-
"@tiptap/extension-placeholder": "2.0.0-beta.
|
|
60
|
-
"@tiptap/extension-strike": "^2.0.0-beta.
|
|
61
|
-
"@tiptap/extension-subscript": "2.0.0-beta.
|
|
62
|
-
"@tiptap/extension-superscript": "2.0.0-beta.
|
|
63
|
-
"@tiptap/extension-table": "2.0.0-beta.
|
|
64
|
-
"@tiptap/extension-table-cell": "2.0.0-beta.
|
|
65
|
-
"@tiptap/extension-table-header": "2.0.0-beta.
|
|
66
|
-
"@tiptap/extension-table-row": "2.0.0-beta.
|
|
67
|
-
"@tiptap/extension-task-item": "2.0.0-beta.
|
|
68
|
-
"@tiptap/extension-task-list": "2.0.0-beta.
|
|
69
|
-
"@tiptap/extension-text": "^2.0.0-beta.
|
|
70
|
-
"@tiptap/extension-text-align": "2.0.0-beta.
|
|
71
|
-
"@tiptap/extension-underline": "2.0.0-beta.
|
|
72
|
-
"@tiptap/suggestion": "2.0.0-beta.
|
|
73
|
-
"@tiptap/vue-3": "2.0.0-beta.
|
|
74
|
-
"floating-vue": "2.0.0-beta.
|
|
51
|
+
"@tiptap/core": "2.0.0-beta.195",
|
|
52
|
+
"@tiptap/extension-blockquote": "^2.0.0-beta.195",
|
|
53
|
+
"@tiptap/extension-bold": "^2.0.0-beta.195",
|
|
54
|
+
"@tiptap/extension-bullet-list": "^2.0.0-beta.195",
|
|
55
|
+
"@tiptap/extension-code": "^2.0.0-beta.195",
|
|
56
|
+
"@tiptap/extension-code-block": "^2.0.0-beta.195",
|
|
57
|
+
"@tiptap/extension-code-block-lowlight": "2.0.0-beta.195",
|
|
58
|
+
"@tiptap/extension-document": "^2.0.0-beta.195",
|
|
59
|
+
"@tiptap/extension-dropcursor": "^2.0.0-beta.195",
|
|
60
|
+
"@tiptap/extension-gapcursor": "^2.0.0-beta.195",
|
|
61
|
+
"@tiptap/extension-hard-break": "^2.0.0-beta.195",
|
|
62
|
+
"@tiptap/extension-heading": "^2.0.0-beta.195",
|
|
63
|
+
"@tiptap/extension-history": "^2.0.0-beta.195",
|
|
64
|
+
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.195",
|
|
65
|
+
"@tiptap/extension-image": "2.0.0-beta.195",
|
|
66
|
+
"@tiptap/extension-italic": "^2.0.0-beta.195",
|
|
67
|
+
"@tiptap/extension-link": "2.0.0-beta.195",
|
|
68
|
+
"@tiptap/extension-list-item": "^2.0.0-beta.195",
|
|
69
|
+
"@tiptap/extension-ordered-list": "^2.0.0-beta.195",
|
|
70
|
+
"@tiptap/extension-paragraph": "^2.0.0-beta.195",
|
|
71
|
+
"@tiptap/extension-placeholder": "2.0.0-beta.195",
|
|
72
|
+
"@tiptap/extension-strike": "^2.0.0-beta.195",
|
|
73
|
+
"@tiptap/extension-subscript": "2.0.0-beta.195",
|
|
74
|
+
"@tiptap/extension-superscript": "2.0.0-beta.195",
|
|
75
|
+
"@tiptap/extension-table": "2.0.0-beta.195",
|
|
76
|
+
"@tiptap/extension-table-cell": "2.0.0-beta.195",
|
|
77
|
+
"@tiptap/extension-table-header": "2.0.0-beta.195",
|
|
78
|
+
"@tiptap/extension-table-row": "2.0.0-beta.195",
|
|
79
|
+
"@tiptap/extension-task-item": "2.0.0-beta.195",
|
|
80
|
+
"@tiptap/extension-task-list": "2.0.0-beta.195",
|
|
81
|
+
"@tiptap/extension-text": "^2.0.0-beta.195",
|
|
82
|
+
"@tiptap/extension-text-align": "2.0.0-beta.195",
|
|
83
|
+
"@tiptap/extension-underline": "2.0.0-beta.195",
|
|
84
|
+
"@tiptap/suggestion": "2.0.0-beta.195",
|
|
85
|
+
"@tiptap/vue-3": "2.0.0-beta.195",
|
|
86
|
+
"floating-vue": "2.0.0-beta.20",
|
|
75
87
|
"github-markdown-css": "^5.1.0",
|
|
76
|
-
"katex": "^0.16.
|
|
88
|
+
"katex": "^0.16.2",
|
|
77
89
|
"lowlight": "^2.7.0",
|
|
78
90
|
"tippy.js": "^6.3.7"
|
|
79
|
-
},
|
|
80
|
-
"scripts": {
|
|
81
|
-
"dev": "vite build --watch",
|
|
82
|
-
"build": "vite build",
|
|
83
|
-
"test:unit": "vitest --environment jsdom --run",
|
|
84
|
-
"test:unit:watch": "vitest --environment jsdom --watch",
|
|
85
|
-
"test:unit:ui": "vitest --environment jsdom --watch --ui",
|
|
86
|
-
"test:unit:coverage": "vitest run --environment jsdom --coverage",
|
|
87
|
-
"typecheck": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
|
88
|
-
"lint": "eslint ./src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
|
|
89
|
-
"prettier": "prettier --write './src/**/*.{vue,js,jsx,ts,tsx,css,scss,json,yml,yaml,html}'",
|
|
90
|
-
"release": "bumpp"
|
|
91
91
|
}
|
|
92
|
-
}
|
|
92
|
+
}
|