@mirus/tiptap-editor 2.1.9 → 3.0.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/README.md +5 -0
- package/dist/tiptap-editor.js +20289 -0
- package/dist/tiptap-editor.umd.cjs +114 -0
- package/package.json +75 -79
- package/src/App.vue +120 -127
- package/src/index.js +0 -1
- package/src/main.js +2 -7
- package/src/tiptap-editor.vue +672 -613
- package/src/warnings.js +3 -1
- package/vite.config.js +9 -2
- package/vitest.config.js +8 -8
- package/babel.config.js +0 -10
- package/dist/tiptap-editor.mjs +0 -22403
- package/vue.config.js +0 -18
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
> For Vue.js 3.0 use version 3.X. All active development happens here.
|
|
2
|
+
> For Vue 2 use version 2.X. This version will recieve no more updates.
|
|
3
|
+
> How convenient!
|
|
4
|
+
|
|
1
5
|
# tiptap-editor
|
|
2
6
|
|
|
3
7
|
Vue component that contains our custom setup for the tiptap editor. Able to highlight phrases and give reasons/fixes to the warnings
|
|
@@ -77,6 +81,7 @@ export default {
|
|
|
77
81
|
|
|
78
82
|
- **id:** `String` - give the editor a unique id. Also adds aria tags to link the editor menu to the text area
|
|
79
83
|
|
|
84
|
+
|
|
80
85
|
## Events
|
|
81
86
|
|
|
82
87
|
- **update:value** - emitted whenever the core text value changes
|