@tiptap/vue-2 3.4.5 → 3.5.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tiptap/vue-2",
3
3
  "description": "Vue components for tiptap",
4
- "version": "3.4.5",
4
+ "version": "3.5.0",
5
5
  "homepage": "https://tiptap.dev",
6
6
  "keywords": [
7
7
  "tiptap",
@@ -43,17 +43,17 @@
43
43
  },
44
44
  "devDependencies": {
45
45
  "vue": "^2.7.16",
46
- "@tiptap/core": "^3.4.5",
47
- "@tiptap/pm": "^3.4.5"
46
+ "@tiptap/core": "^3.5.0",
47
+ "@tiptap/pm": "^3.5.0"
48
48
  },
49
49
  "optionalDependencies": {
50
- "@tiptap/extension-bubble-menu": "^3.4.5",
51
- "@tiptap/extension-floating-menu": "^3.4.5"
50
+ "@tiptap/extension-bubble-menu": "^3.5.0",
51
+ "@tiptap/extension-floating-menu": "^3.5.0"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "vue": "^2.6.0",
55
- "@tiptap/core": "^3.4.5",
56
- "@tiptap/pm": "^3.4.5"
55
+ "@tiptap/core": "^3.5.0",
56
+ "@tiptap/pm": "^3.5.0"
57
57
  },
58
58
  "repository": {
59
59
  "type": "git",
@@ -78,7 +78,7 @@ export const BubbleMenu: Component = {
78
78
  },
79
79
 
80
80
  render(this: BubbleMenuInterface, createElement: CreateElement) {
81
- return createElement('div', { style: { visibility: 'hidden' } }, this.$slots.default)
81
+ return createElement('div', {}, this.$slots.default)
82
82
  },
83
83
 
84
84
  beforeDestroy(this: BubbleMenuInterface) {
@@ -64,7 +64,7 @@ export const FloatingMenu: Component = {
64
64
  },
65
65
 
66
66
  render(this: FloatingMenuInterface, createElement: CreateElement) {
67
- return createElement('div', { style: { visibility: 'hidden' } }, this.$slots.default)
67
+ return createElement('div', {}, this.$slots.default)
68
68
  },
69
69
 
70
70
  beforeDestroy(this: FloatingMenuInterface) {