New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@liveblocks/react-tiptap

Package Overview
Dependencies
Maintainers
0
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liveblocks/react-tiptap - npm Package Compare versions

Comparing version

to
2.20.0-blocknote

4

dist/comments/AnchoredThreads.js

@@ -45,3 +45,3 @@ import { jsx } from 'react/jsx-runtime';

const container = containerRef.current;
if (container === null || !editor)
if (container === null || !editor || !editor.view)
return;

@@ -111,3 +111,3 @@ const activeIndex = orderedThreads.findIndex(

const observer = new ResizeObserver(handlePositionThreads);
const container = editor?.view.dom;
const container = editor?.view?.dom;
if (container) {

@@ -114,0 +114,0 @@ observer.observe(container);

@@ -12,2 +12,10 @@ import { Mark, mergeAttributes, Extension } from '@tiptap/core';

keepOnSplit: true,
parseHTML: () => {
return [
{
tag: "span",
getAttrs: (node) => node.getAttribute("data-lb-thread-id") !== null && null
}
];
},
addAttributes() {

@@ -14,0 +22,0 @@ return {

@@ -8,3 +8,3 @@ import { TextEditorType, kInternal } from '@liveblocks/core';

import CollaborationCursor from '@tiptap/extension-collaboration-cursor';
import { useCallback, useSyncExternalStore, useState, useEffect } from 'react';
import { useCallback, useSyncExternalStore, useRef, useEffect } from 'react';
import { AiExtension } from './ai/AiExtension.js';

@@ -120,3 +120,3 @@ import { CommentsExtension } from './comments/CommentsExtension.js';

};
const [editor, setEditor] = useState(null);
const editor = useRef(null);
const room = useRoom();

@@ -129,3 +129,3 @@ const isEditorReady = useIsEditorReady();

useEffect(() => {
if (!isEditorReady || !yjsProvider || !options.initialContent || !editor)
if (!isEditorReady || !yjsProvider || !options.initialContent || !editor.current)
return;

@@ -136,5 +136,5 @@ const ydoc = yjsProvider.getYDoc();

ydoc.getMap("liveblocks_config").set("hasContentSet", true);
editor.commands.setContent(options.initialContent);
editor.current.commands.setContent(options.initialContent);
}
}, [isEditorReady, yjsProvider, options.initialContent, editor]);
}, [isEditorReady, yjsProvider, options.initialContent]);
useReportTextEditor(

@@ -149,3 +149,3 @@ TextEditorType.TipTap,

onCreate() {
setEditor(this.editor);
editor.current = this.editor;
if (this.editor.options.content) {

@@ -152,0 +152,0 @@ console.warn(

const PKG_NAME = "@liveblocks/react-tiptap";
const PKG_VERSION = typeof "2.19.0" === "string" && "2.19.0";
const PKG_VERSION = typeof "2.20.0-blocknote" === "string" && "2.20.0-blocknote";
const PKG_FORMAT = typeof "esm" === "string" && "esm";

@@ -4,0 +4,0 @@

{
"name": "@liveblocks/react-tiptap",
"version": "2.19.0",
"description": "A tiptap react plugin to enable collaboration, comments, live cursors, and more.",
"version": "2.20.0-blocknote",
"description": "An integration of TipTap + React to enable collaboration, comments, live cursors, and more with Liveblocks.",
"license": "Apache-2.0",

@@ -46,7 +46,7 @@ "type": "module",

"@floating-ui/react-dom": "^2.1.2",
"@liveblocks/client": "2.19.0",
"@liveblocks/core": "2.19.0",
"@liveblocks/react": "2.19.0",
"@liveblocks/react-ui": "2.19.0",
"@liveblocks/yjs": "2.19.0",
"@liveblocks/client": "2.20.0-blocknote",
"@liveblocks/core": "2.20.0-blocknote",
"@liveblocks/react": "2.20.0-blocknote",
"@liveblocks/react-ui": "2.20.0-blocknote",
"@liveblocks/yjs": "2.20.0-blocknote",
"@radix-ui/react-select": "^2.1.2",

@@ -53,0 +53,0 @@ "@radix-ui/react-toggle": "^1.1.0",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet