Originally created by: dependabot[bot]
Bumps @tiptap/extension-task-item from 3.29.2 to 3.30.2.
Sourced from @tiptap/extension-task-item's releases.
v3.30.2
@tiptap/corePatch Changes
- Keep mixed JSX children as separate siblings in DOM output.
- Fixed a bug where
editor.chainandeditor.cancan not be accessed on editor initialization
@tiptap/extension-imagePatch Changes
- Fix resizable images staying hidden when the image is cached or fails to load.
v3.30.1
@tiptap/extension-tablePatch Changes
- Fixed table markdown pipe escaping so the extension loads on older Safari and iOS versions (WebKit before Safari 16.4).
@tiptap/corePatch Changes
- Added new ProseMirror helpers that check whether a value is a specific ProseMirror type.
v3.30.0
@tiptap/vue-2Minor Changes
ceb0dac: New Decorations API
Finally the decorations API is here! Even though Decorations itself are nothing new in ProseMirror, the new API makes it much easier to use them in Tiptap without leaving your extensions.
Decorations change how the document looks without changing the document itself. Highlighting search results, marking spelling mistakes, showing collaborator cursors, putting a drag handle next to every block.
Until now you had to write a ProseMirror plugin by hand for this, keep the decoration set in plugin state, and map it forward on every transaction. Extensions can now declare decorations directly with a new
addDecorations()hook.addDecorations() { return { create: ({ state }) => // findMatches can be any function that returns an array of { from, to } ranges findMatches(state.doc).map(match => Decoration.Inline(match.from, match.to, { class: 'highlight' }), ), }
... (truncated)
Originally posted by: github-actions[bot]
Code Reviewer is ready! Type
/reviewin a comment to start the code analysis.Originally posted by: dependabot[bot]
Superseded by [#165].
Related
Tickets: #165
Ticket changed by: dependabot[bot]