ngx-tiptap
Advanced tools
Changelog
v12.0.0 (2024-11-28)
Everything is now standalone, and NgxTiptapModule
is no longer needed and has been removed.
Manually import the following components wherever required:
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.