You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

ngx-tiptap

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-tiptap - npm Package Versions

234

13.0.0

Diff
s
sibiraj-s
published 13.0.0 •

Changelog

Source

v13.0.0 (2025-07-06)

Breaking Changes

  • requires angular 20 or greater (bdbf227)
s
sibiraj-s
published 12.0.0 •

Changelog

Source

v12.0.0 (2024-11-28)

Breaking Changes

  • requires angular 19 or greater (64193b0)
  • internal: refactor inputs and outputs to be signals (8bc30cb)

Migration

  • Everything is now standalone, and NgxTiptapModule is no longer needed and has been removed. Manually import the following components wherever required:

    • TiptapEditorDirective
    • TiptapFloatingMenuDirective
    • TiptapBubbleMenuDirective
    • TiptapDraggableDirective
    • TiptapNodeViewContentDirective
  • AngularNodeViewComponent methods are now signals.

    An example of updating attributes in a custom node view:

    Before

    this.updateAttributes({
      count: this.node.attrs['count'] + 1,
    });
    

    After

    const updateAttributes = this.updateAttributes();
    updateAttributes({
      count: this.node().attrs['count'] + 1,
    });
    

For more details, refer to the README.

s
sibiraj-s
published 11.1.0 •

Changelog

Source

v11.1.0 (2024-09-17)

Features

  • add support for attrs in AngularNodeViewRenderer (476081e)
  • improve selection behaviour in custom nodes (476081e)

Bug Fixes

  • fix types mismatch with tiptap v2.7 (476081e)
s
sibiraj-s
published 11.0.0 •

Changelog

Source

v11.0.0 (2024-06-19)

Breaking Changes

s
sibiraj-s
published 10.1.0 •

Changelog

Source

v10.1.0 (2024-03-06)

Features

  • add support for updateDelay prop in bubble menu (0680e39)
s
sibiraj-s
published 10.0.0 •

Changelog

Source

v10.0.0 (2024-03-05)

Breaking Changes

s
sibiraj-s
published 9.1.1 •

Changelog

Source

v9.1.1 (2023-12-11)

Bug Fixes

  • fix view not updated on selection with ChangeDetectionStrategy#OnPush (681dc85)
s
sibiraj-s
published 9.1.0 •

Changelog

Source

v9.1.0 (2023-11-03)

Features

  • enable hierarchical injectors in AngularRenderer (93ec574)
s
sibiraj-s
published 9.0.2 •

Changelog

Source

v9.0.2 (2023-07-24)

Bug Fixes

  • update selected input in nodeview with text selection (0ec762d)
s
sibiraj-s
published 9.0.1 •

Changelog

Source

v9.0.1 (2023-07-17)

Bug Fixes

  • fix trigger ChangeDetection in custom Nodeviews using updateProps (4213560)