tiptapify 0.2.1 → 0.2.2
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/tiptapify.mjs +4 -1
- package/dist/tiptapify.umd.js +40 -40
- package/index.d.ts +4 -1
- package/package.json +1 -1
- package/src/index.ts +4 -1
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Editor as TiptapEditor } from '@tiptap/vue-3'
|
|
1
|
+
import { Editor as TiptapEditor, nodeViewProps, NodeViewWrapper, VueNodeViewRenderer } from '@tiptap/vue-3'
|
|
2
2
|
import {
|
|
3
3
|
Extension,
|
|
4
4
|
ExtendableConfig,
|
|
@@ -147,6 +147,9 @@ export {
|
|
|
147
147
|
Tiptapify,
|
|
148
148
|
TiptapifyDialog,
|
|
149
149
|
TiptapEditor,
|
|
150
|
+
nodeViewProps,
|
|
151
|
+
NodeViewWrapper,
|
|
152
|
+
VueNodeViewRenderer,
|
|
150
153
|
Extension,
|
|
151
154
|
ExtendableConfig,
|
|
152
155
|
InputRule,
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Plugin } from 'vue'
|
|
|
2
2
|
import Tiptapify from '@tiptapify/components/Tiptapify.vue'
|
|
3
3
|
import TiptapifyDialog from '@tiptapify/components/UI/TiptapifyDialog.vue'
|
|
4
4
|
|
|
5
|
-
import { Editor as TipTapEditor } from '@tiptap/vue-3'
|
|
5
|
+
import { Editor as TipTapEditor, nodeViewProps, NodeViewWrapper, VueNodeViewRenderer } from '@tiptap/vue-3'
|
|
6
6
|
import { Node, Mark, markInputRule, markPasteRule, mergeAttributes } from '@tiptap/core'
|
|
7
7
|
import type { CommandProps, InputRuleMatch, PasteRuleMatch } from '@tiptap/core'
|
|
8
8
|
|
|
@@ -31,6 +31,9 @@ export default TiptapifyPlugin
|
|
|
31
31
|
export {
|
|
32
32
|
mdi,
|
|
33
33
|
TipTapEditor,
|
|
34
|
+
nodeViewProps,
|
|
35
|
+
NodeViewWrapper,
|
|
36
|
+
VueNodeViewRenderer,
|
|
34
37
|
Tiptapify,
|
|
35
38
|
TiptapifyDialog,
|
|
36
39
|
Node,
|