3.0.35

Bug Fixes

  • [Notifications]: Fixed an issue where the document tab was not visible when user email was not set.

3.0.34

New Features

  • [Comments]: Added support for overlay text commenting in Tiptap editor.
    • It works with all frontend frameworks that are supported by Tiptap.
    • You can find the extension here.
1

Install the Velt Tiptap extension

npm i @veltdev/tiptap-velt-comments
2

Import and add the extension to your Tiptap editor

import { TiptapVeltComments } from '@veltdev/tiptap-velt-comments';

const editor = new Editor({
  extensions: [
    TiptapVeltComments,
    // ... other extensions
  ],
});
3

Add a comment using the `addTiptapVeltComment` method

  • Call this method to add a comment to selected text in the Tiptap editor. You can use this when the user clicks on the comment button in context menu or presses a keyboard shortcut.

  • Args:

    • editor: instance of the Tiptap editor.
    • tiptapVeltCommentConfig: optional object to set the Comment Annotation’s custom metadata.
  • Example:

    import { addTiptapVeltComment } from '@veltdev/tiptap-velt-comments';
    
    addTiptapVeltComment(editor, tiptapVeltCommentConfig);
    

Improvements

  • [Console Debugger]: Added logs for the updateContactList method to improve debugging.