@tiptap/vue-2 3.22.1 → 3.22.3

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.
@@ -1745,6 +1745,11 @@ var BubbleMenuView = class {
1745
1745
  this.updatePosition();
1746
1746
  } else if (meta && typeof meta === "object" && meta.type === "updateOptions") {
1747
1747
  this.updateOptions(meta.options);
1748
+ } else if (meta === "hide") {
1749
+ this.hide();
1750
+ } else if (meta === "show") {
1751
+ this.updatePosition();
1752
+ this.show();
1748
1753
  }
1749
1754
  };
1750
1755
  var _a;
@@ -2175,6 +2180,11 @@ var FloatingMenuView = class {
2175
2180
  this.updatePosition();
2176
2181
  } else if (meta && typeof meta === "object" && meta.type === "updateOptions") {
2177
2182
  this.updateOptions(meta.options);
2183
+ } else if (meta === "hide") {
2184
+ this.hide();
2185
+ } else if (meta === "show") {
2186
+ this.updatePosition();
2187
+ this.show();
2178
2188
  }
2179
2189
  };
2180
2190
  /**