tiptapify 0.0.25 → 0.0.27
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 -0
- package/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +9317 -9123
- package/dist/tiptapify.umd.js +38 -38
- package/package.json +1 -1
- package/src/components/Tiptapify.vue +34 -23
- package/src/components/Toolbar/Index.vue +14 -0
- package/src/components/Toolbar/misc.ts +5 -0
- package/src/components/UI/BtnIcon.vue +3 -3
- package/src/components/UI/TiptapifyDialog.vue +5 -1
- package/src/components/editorExtensions.ts +3 -4
- package/src/extensions/components/list/bullet/Button.vue +98 -3
- package/src/extensions/components/list/bullet/index.ts +101 -0
- package/src/extensions/components/misc/fullscreen/Button.vue +61 -0
- package/src/extensions/components/misc/preview/index.ts +0 -41
- package/src/extensions/components/misc/source/index.ts +0 -49
package/README.md
CHANGED
|
@@ -142,6 +142,7 @@ Found a bug or have ideas on improvement? Feel free to [create a ticket](https:/
|
|
|
142
142
|
- [x] menu items list customizable
|
|
143
143
|
- [x] extend a built-in font list
|
|
144
144
|
- [x] raw html mode
|
|
145
|
+
- [x] fullscreen mode
|
|
145
146
|
- [x] tables extension
|
|
146
147
|
- [x] preview extension
|
|
147
148
|
- [x] image extension
|