Menu

#149 deps(deps): bump @tiptap/extension-task-item from 3.29.2 to 3.30.2

closed
nobody
3 days ago
6 days ago
Anonymous
No

Originally created by: dependabot[bot]

Bumps @tiptap/extension-task-item from 3.29.2 to 3.30.2.

Release notes

Sourced from @​tiptap/extension-task-item's releases.

v3.30.2

@​tiptap/core

Patch Changes

  • Keep mixed JSX children as separate siblings in DOM output.
  • Fixed a bug where editor.chain and editor.can can not be accessed on editor initialization

@​tiptap/extension-image

Patch Changes

  • Fix resizable images staying hidden when the image is cached or fails to load.

v3.30.1

@​tiptap/extension-table

Patch Changes

  • Fixed table markdown pipe escaping so the extension loads on older Safari and iOS versions (WebKit before Safari 16.4).

@​tiptap/core

Patch Changes

  • Added new ProseMirror helpers that check whether a value is a specific ProseMirror type.

v3.30.0

@​tiptap/vue-2

Minor 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)

Commits


Discussion

  • Anonymous

    Anonymous - 6 days ago

    Originally posted by: github-actions[bot]

    Code Reviewer is ready! Type /review in a comment to start the code analysis.

     
  • Anonymous

    Anonymous - 3 days ago

    Originally posted by: dependabot[bot]

    Superseded by [#165].

     

    Related

    Tickets: #165

  • Anonymous

    Anonymous - 3 days ago

    Ticket changed by: dependabot[bot]

    • status: open --> closed
     

Log in to post a comment.