tiptapify 0.1.6 → 0.2.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 +1 -1
- package/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +25885 -22016
- package/dist/tiptapify.umd.js +55 -50
- package/index.d.ts +70 -1
- package/package.json +2 -2
- package/src/components/Tiptapify.vue +38 -1
- package/src/components/Toolbar/ai.ts +13 -0
- package/src/components/Toolbar/items.ts +2 -0
- package/src/components/editorExtensions.ts +7 -3
- package/src/components/index.ts +4 -3
- package/src/extensions/components/ai/Button.vue +42 -0
- package/src/extensions/components/ai/Dialog.vue +262 -0
- package/src/i18n/locales/ar.json +29 -0
- package/src/i18n/locales/ch.json +29 -0
- package/src/i18n/locales/cz.json +29 -0
- package/src/i18n/locales/de.json +29 -0
- package/src/i18n/locales/en.json +29 -0
- package/src/i18n/locales/es.json +29 -0
- package/src/i18n/locales/fi.json +29 -0
- package/src/i18n/locales/fr.json +29 -0
- package/src/i18n/locales/hu.json +29 -0
- package/src/i18n/locales/it.json +29 -0
- package/src/i18n/locales/ja.json +29 -0
- package/src/i18n/locales/ko.json +29 -0
- package/src/i18n/locales/la.json +29 -0
- package/src/i18n/locales/lt.json +29 -0
- package/src/i18n/locales/nl.json +29 -0
- package/src/i18n/locales/pl.json +29 -0
- package/src/i18n/locales/pt.json +29 -0
- package/src/i18n/locales/ru.json +29 -0
- package/src/i18n/locales/se.json +29 -0
- package/src/i18n/locales/th.json +29 -0
- package/src/i18n/locales/tr.json +29 -0
- package/src/i18n/locales/uk.json +29 -0
- package/src/i18n/locales/vi.json +29 -0
- package/src/index.ts +15 -1
- package/src/types/editor.ts +74 -1
- package/src/types/toolbarTypes.ts +2 -1
package/README.md
CHANGED
|
@@ -164,9 +164,9 @@ Found a bug or have ideas on improvement? Feel free to [create a ticket](https:/
|
|
|
164
164
|
- [x] charmap extension
|
|
165
165
|
- [x] demo
|
|
166
166
|
- [x] documentation
|
|
167
|
+
- [x] basic AI prompt dialog
|
|
167
168
|
- [ ] extended video extensions
|
|
168
169
|
- [ ] print hotkey in a tooltip
|
|
169
|
-
- [ ] AI features
|
|
170
170
|
|
|
171
171
|
## Licence
|
|
172
172
|
[MIT](./LICENSE)
|