@tiptap/vue-2 2.5.6 → 2.5.8
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.
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
import { Node as ProseMirrorNode } from '@tiptap/pm/model';
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* Returns true if the given node is empty.
|
|
4
|
+
* When `checkChildren` is true (default), it will also check if all children are empty.
|
|
5
|
+
*/
|
|
6
|
+
export declare function isNodeEmpty(node: ProseMirrorNode, { checkChildren }?: {
|
|
7
|
+
checkChildren: boolean;
|
|
8
|
+
}): boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/vue-2",
|
|
3
3
|
"description": "Vue components for tiptap",
|
|
4
|
-
"version": "2.5.
|
|
4
|
+
"version": "2.5.8",
|
|
5
5
|
"homepage": "https://tiptap.dev",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tiptap",
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
"dist"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@tiptap/extension-bubble-menu": "^2.5.
|
|
33
|
-
"@tiptap/extension-floating-menu": "^2.5.
|
|
32
|
+
"@tiptap/extension-bubble-menu": "^2.5.8",
|
|
33
|
+
"@tiptap/extension-floating-menu": "^2.5.8",
|
|
34
34
|
"vue-ts-types": "^1.6.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@tiptap/core": "^2.5.
|
|
38
|
-
"@tiptap/pm": "^2.5.
|
|
37
|
+
"@tiptap/core": "^2.5.8",
|
|
38
|
+
"@tiptap/pm": "^2.5.8",
|
|
39
39
|
"vue": "^2.6.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@tiptap/core": "^2.5.
|
|
43
|
-
"@tiptap/pm": "^2.5.
|
|
42
|
+
"@tiptap/core": "^2.5.8",
|
|
43
|
+
"@tiptap/pm": "^2.5.8",
|
|
44
44
|
"vue": "^2.6.0"
|
|
45
45
|
},
|
|
46
46
|
"repository": {
|