🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

ngx-tiptap

Package Overview
Dependencies
Maintainers
0
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-tiptap - npm Package Versions

234

12.0.0

Diff
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.

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)
sibiraj-s
published 11.0.0 •

Changelog

Source

v11.0.0 (2024-06-19)

Breaking Changes

sibiraj-s
published 10.1.0 •

Changelog

Source

v10.1.0 (2024-03-06)

Features

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

Changelog

Source

v10.0.0 (2024-03-05)

Breaking Changes

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)
sibiraj-s
published 9.1.0 •

Changelog

Source

v9.1.0 (2023-11-03)

Features

  • enable hierarchical injectors in AngularRenderer (93ec574)
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)
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)
sibiraj-s
published 9.0.0 •

Changelog

Source

v9.0.0 (2023-07-01)

Breaking Changes