tiptapify 0.0.36 → 0.1.1
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 +11 -5
- package/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +21407 -21776
- package/dist/tiptapify.umd.js +49 -49
- package/package.json +6 -3
- package/src/components/Tiptapify.vue +95 -2
- package/src/components/Toolbar/Index.vue +10 -0
- package/src/components/Toolbar/Items.vue +17 -13
- package/src/components/editorExtensions.ts +15 -6
- package/src/components/index.ts +2 -1
- package/src/extensions/PickerEventBus.ts +32 -0
- package/src/extensions/components/media/charmap/Button.vue +5 -143
- package/src/extensions/components/media/charmap/Picker.vue +229 -0
- package/src/extensions/components/media/emoji/Button.vue +5 -141
- package/src/extensions/components/media/emoji/Picker.vue +225 -0
- package/src/extensions/components/media/image/ImageDialog.vue +69 -27
- package/src/extensions/components/slashCommands/CommandsList.vue +65 -22
- package/src/extensions/components/slashCommands/PickerDialog.vue +44 -0
- package/src/extensions/components/slashCommands/suggestion.ts +152 -105
- package/src/extensions/slash-commands.ts +169 -9
- package/src/i18n/locales/ar.json +3 -2
- package/src/i18n/locales/ch.json +3 -2
- package/src/i18n/locales/cz.json +3 -2
- package/src/i18n/locales/de.json +3 -2
- package/src/i18n/locales/es.json +3 -2
- package/src/i18n/locales/fi.json +3 -2
- package/src/i18n/locales/fr.json +3 -2
- package/src/i18n/locales/hu.json +3 -2
- package/src/i18n/locales/it.json +3 -2
- package/src/i18n/locales/ja.json +3 -2
- package/src/i18n/locales/ko.json +3 -2
- package/src/i18n/locales/la.json +3 -2
- package/src/i18n/locales/lt.json +3 -2
- package/src/i18n/locales/nl.json +3 -2
- package/src/i18n/locales/pl.json +3 -2
- package/src/i18n/locales/pt.json +3 -2
- package/src/i18n/locales/ru.json +3 -2
- package/src/i18n/locales/se.json +3 -2
- package/src/i18n/locales/th.json +3 -2
- package/src/i18n/locales/tr.json +3 -2
- package/src/i18n/locales/{ua.json → uk.json} +3 -2
- package/src/i18n/locales/vi.json +3 -2
- package/src/types/slashCommandsTypes.ts +19 -0
- package/src/types/toolbarTypes.ts +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
# Tiptapify
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/tiptapify)
|
|
4
|
+
[](https://www.npmjs.com/package/tiptapify)
|
|
5
|
+
[](./LICENSE)
|
|
6
|
+
|
|
3
7
|
---
|
|
4
8
|
|
|
5
|
-
[Tiptap](https://tiptap.dev)
|
|
9
|
+
[Tiptap 3 Editor](https://tiptap.dev) [Vuetify](https://vuetifyjs.com) toolbar implementation
|
|
6
10
|
|
|
7
11
|
## Status
|
|
8
|
-
*
|
|
12
|
+
*Beta*
|
|
13
|
+
|
|
14
|
+
## Live Demo
|
|
9
15
|
|
|
10
|
-
|
|
16
|
+
[View Documentation & Demo](https://ivoyt.github.io/tiptapify)
|
|
11
17
|
|
|
12
18
|
## Requirements
|
|
13
19
|
- Vue 3.x
|
|
@@ -156,10 +162,10 @@ Found a bug or have ideas on improvement? Feel free to [create a ticket](https:/
|
|
|
156
162
|
- [x] option to provide custom extension
|
|
157
163
|
- [x] iframe extension
|
|
158
164
|
- [x] charmap extension
|
|
165
|
+
- [x] demo
|
|
166
|
+
- [x] documentation
|
|
159
167
|
- [ ] extended video extensions
|
|
160
168
|
- [ ] print hotkey in a tooltip
|
|
161
|
-
- [ ] demo
|
|
162
|
-
- [ ] documentation
|
|
163
169
|
- [ ] AI features
|
|
164
170
|
|
|
165
171
|
## Licence
|