3.0.50

New Features

  • [Comments]: Added variant support to the Velt Comment Pin component. This is useful for customizing how the pin looks on different elements like charts, tables, etc.

    <VeltCommentPin variant="CUSTOM_VARIANT" />
    
  • [Access Control]: Enabled users logged in with “Org A” to access documents belonging to “Org B”.

    • By default, users can only access documents within their own organization.
    • You can enable cross-organization access by specifying the organizationId of the target document in the document metadata.
    • Ensure that the user has access to the target document in the target organization.

Using Hook:

useSetDocument(DOCUMENT_ID, {
  organizationId: 'ANOTHER_ORGANIZATION_ID'
});

Using API:

client.setDocument(DOCUMENT_ID, {
  organizationId: 'ANOTHER_ORGANIZATION_ID'
});
  • [Comments]: Added ability to toggle the “Seen By” feature:

    Using Props:

    <VeltComments seenByUsers={false} />
    

    Using API:

    const commentElement = client.getCommentElement();
    commentElement.enableSeenByUsers();
    commentElement.disableSeenByUsers();
    

Improvements

  • [Live Selection]: Improved the live selection UI.

  • [Recording]: Added new wireframes for the recording feature:

    • Media Source Settings
    • Recorder All Tool
    • Recorder All Tool Menu
    • Recorder Audio Tool
    • Recorder Video Tool
    • Recorder Screen Tool
    • Recording Preview Steps Dialog
    • Recorder Control Panel
    • Recorder Player
    • Video Player
    • Subtitles
    • Transcription
  • [Comments]: Updated the empty state UI and added a clear filter button in the sidebar.

  • [Comments]: The “Custom filters” applied by the user are now stored in session storage just like the System filters.

Improvements

Bug Fixes

  • [Comments]: Fixed an issue in TipTap editor where the comment dialog closed prematurely after adding a comment in single-thread mode.
  • [Comments]: Fixed an issue on minimap where clicking on it was not navigating to the comment location.
  • [Comments]: Fixed an issue where image attachments in comments were not opening in the lightbox.
  • [Comments]: Fixed an issue where the “AtHere” was not working when the label was set to “all”.