@tiptap/core 2.5.8 → 3.0.0-next.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/dist/index.umd.js CHANGED
@@ -962,7 +962,7 @@
962
962
 
963
963
  function findDuplicates(items) {
964
964
  const filtered = items.filter((el, index) => items.indexOf(el) !== index);
965
- return [...new Set(filtered)];
965
+ return Array.from(new Set(filtered));
966
966
  }
967
967
 
968
968
  class ExtensionManager {
@@ -3933,10 +3933,6 @@ img.ProseMirror-separator {
3933
3933
 
3934
3934
  .ProseMirror-focused .ProseMirror-gapcursor {
3935
3935
  display: block;
3936
- }
3937
-
3938
- .tippy-box[data-animation=fade][data-state=hidden] {
3939
- opacity: 0
3940
3936
  }`;
3941
3937
 
3942
3938
  function createStyleTag(style, nonce, suffix) {