[PR #1406] [MERGED] fix(deps): update tiptap to v3.4.0 #7524

Closed
opened 2026-04-20 17:44:52 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-vikunja/vikunja/pull/1406
Author: @renovate[bot]
Created: 9/4/2025
Status: Merged
Merged: 9/4/2025
Merged by: @kolaente

Base: mainHead: renovate/tiptap


📝 Commits (1)

  • 09ea789 fix(deps): update tiptap to v3.4.0

📊 Changes

2 files changed (+257 additions, -257 deletions)

View changed files

📝 frontend/package.json (+14 -14)
📝 frontend/pnpm-lock.yaml (+243 -243)

📄 Description

This PR contains the following updates:

Package Change Age Confidence
@tiptap/core (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extension-code-block-lowlight (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extension-hard-break (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extension-image (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extension-link (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extension-list (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extension-table (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extension-typography (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extension-underline (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/extensions (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/pm (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/starter-kit (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/suggestion (source) 3.3.1 -> 3.4.0 age confidence
@tiptap/vue-3 (source) 3.3.1 -> 3.4.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

ueberdosis/tiptap (@​tiptap/core)

v3.4.0

Compare Source

Minor Changes
  • ad51daa: Add mount and unmount events to the Editor instance for tracking mounts and unmounts
Patch Changes
  • 895c73f: Fix can().toggleMark() returning incorrect result when cursor is inside nodes that disallow marks

    Fixed an issue where can().toggleMark('bold') incorrectly returned true when the cursor was positioned inside a code block (with no selection), even though marks are not allowed in code blocks. The method now correctly returns false in this scenario by checking if the parent node allows the mark type when the selection is a cursor.

ueberdosis/tiptap (@​tiptap/extension-code-block-lowlight)

v3.4.0

Compare Source

Patch Changes
  • 11c8085: Added indentation support for code blocks via Tab. Is deactivated by default.

    New Extension Options:

    • enableTabIndentation: boolean - controls if tab completion should be enabled
    • tabSize: number - controls how many spaces are inserted for a tab
  • Updated dependencies [895c73f]

  • Updated dependencies [11c8085]

  • Updated dependencies [ad51daa]

ueberdosis/tiptap (@​tiptap/extension-hard-break)

v3.4.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-image)

v3.4.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-link)

v3.4.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-list)

v3.4.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-table)

v3.4.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-typography)

v3.4.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-underline)

v3.4.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extensions)

v3.4.0

Compare Source

Releases

@​tiptap/core@​3.4.0

Minor Changes
  • ad51daa: Add mount and unmount events to the Editor instance for tracking mounts and unmounts
Patch Changes
  • 895c73f: Fix can().toggleMark() returning incorrect result when cursor is inside nodes that disallow marks

    Fixed an issue where can().toggleMark('bold') incorrectly returned true when the cursor was positioned inside a code block (with no selection), even though marks are not allowed in code blocks. The method now correctly returns false in this scenario by checking if the parent node allows the mark type when the selection is a cursor.

@​tiptap/extension-dropcursor@​3.4.0

Patch Changes
  • ef909f1: Updated DropcursorOptions.color types to use types defined in prosemirror-dropcursor

@​tiptap/extension-code-block@​3.4.0

Patch Changes
  • 11c8085: Added indentation support for code blocks via Tab. Is deactivated by default.

    New Extension Options:

    • enableTabIndentation: boolean - controls if tab completion should be enabled
    • tabSize: number - controls how many spaces are inserted for a tab

@​tiptap/extension-code-block-lowlight@​3.4.0

Patch Changes
  • 11c8085: Added indentation support for code blocks via Tab. Is deactivated by default.

    New Extension Options:

    • enableTabIndentation: boolean - controls if tab completion should be enabled
    • tabSize: number - controls how many spaces are inserted for a tab

@​tiptap/extension-details@​3.4.0

Patch Changes
  • d3773c7: Fixed an issue where the input method editor (IME) failed to handle Chinese text correctly when entering the first word. Users can now input multiple words as expected.

@​tiptap/extension-drag-handle-vue-2@​3.4.0

Patch Changes
  • 2cb08d3: Use factory function for object default value as required by vue 2.
  • 2cb08d3: Fixed a bug that would cause Vue 2 to throw errors in console because Vue 2 expects factory functions for prop defaults

@​tiptap/suggestion@​3.4.0

Patch Changes
  • 3733bb9: Allow consumers to handle the Escape key via render().onKeyDown before the suggestion plugin auto-exits.

    Previously the suggestion plugin intercepted Escape internally and immediately called onExit, preventing render().onKeyDown from receiving the event and stopping propagation. Now render().onKeyDown is invoked first for Escape; if it returns true the plugin assumes the consumer handled the event (so they can call event.preventDefault() / event.stopPropagation() and optionally call exitSuggestion(view) themselves). If it returns false (or is absent), the plugin will continue to call onExit and close the suggestion as before.

    This change enables scenarios where the editor is inside a modal/drawer and the consumer needs to prevent the outer UI from reacting to Escape while still controlling the suggestion's lifecycle.

  • 90cbed5: Remove the global document mousedown handler that closed suggestion popups when clicking outside.

    Previously the suggestion plugin listened for document mousedown events and closed suggestion UIs when the user clicked outside the editor or suggestion portal. That behavior has been removed to avoid framework-specific coupling (for example reliance on .react-renderer) and related compatibility issues.

    Now suggestions are closed via other signals:

    • pressing Escape (unchanged)
    • selection/cursor changes
    • renderer.onExit (renderers can call this)
    • programmatic calls to exitSuggestion(view)
ueberdosis/tiptap (@​tiptap/pm)

v3.4.0

Compare Source

ueberdosis/tiptap (@​tiptap/starter-kit)

v3.4.0

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/suggestion)

v3.4.0

Compare Source

Patch Changes
  • 3733bb9: Allow consumers to handle the Escape key via render().onKeyDown before the suggestion plugin auto-exits.

    Previously the suggestion plugin intercepted Escape internally and immediately called onExit, preventing render().onKeyDown from receiving the event and stopping propagation. Now render().onKeyDown is invoked first for Escape; if it returns true the plugin assumes the consumer handled the event (so they can call event.preventDefault() / event.stopPropagation() and optionally call exitSuggestion(view) themselves). If it returns false (or is absent), the plugin will continue to call onExit and close the suggestion as before.

    This change enables scenarios where the editor is inside a modal/drawer and the consumer needs to prevent the outer UI from reacting to Escape while still controlling the suggestion's lifecycle.

  • 90cbed5: Remove the global document mousedown handler that closed suggestion popups when clicking outside.

    Previously the suggestion plugin listened for document mousedown events and closed suggestion UIs when the user clicked outside the editor or suggestion portal. That behavior has been removed to avoid framework-specific coupling (for example reliance on .react-renderer) and related compatibility issues.

    Now suggestions are closed via other signals:

    • pressing Escape (unchanged)
    • selection/cursor changes
    • renderer.onExit (renderers can call this)
    • programmatic calls to exitSuggestion(view)
  • Updated dependencies [895c73f]

  • Updated dependencies [ad51daa]

ueberdosis/tiptap (@​tiptap/vue-3)

v3.4.0

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-vikunja/vikunja/pull/1406 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 9/4/2025 **Status:** ✅ Merged **Merged:** 9/4/2025 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `renovate/tiptap` --- ### 📝 Commits (1) - [`09ea789`](https://github.com/go-vikunja/vikunja/commit/09ea78928380b367654e1e6ba8e0dc4ea058d11e) fix(deps): update tiptap to v3.4.0 ### 📊 Changes **2 files changed** (+257 additions, -257 deletions) <details> <summary>View changed files</summary> 📝 `frontend/package.json` (+14 -14) 📝 `frontend/pnpm-lock.yaml` (+243 -243) </details> ### 📄 Description This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [@tiptap/core](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/core)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fcore/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fcore/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fcore/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extension-code-block-lowlight](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-code-block-lowlight)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-code-block-lowlight/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-code-block-lowlight/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-code-block-lowlight/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extension-hard-break](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-hard-break)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-hard-break/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-hard-break/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-hard-break/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extension-image](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-image)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-image/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-image/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-image/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extension-link](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-link)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-link/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-link/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-link/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extension-list](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-list)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-list/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-list/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-list/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extension-table](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-table)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-table/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-table/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-table/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extension-typography](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-typography)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-typography/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-typography/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-typography/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extension-underline](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-underline)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-underline/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-underline/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-underline/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/extensions](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/extension)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fextensions/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextensions/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextensions/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/pm](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/pm)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fpm/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fpm/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fpm/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/starter-kit](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fstarter-kit/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fstarter-kit/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fstarter-kit/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/suggestion](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/suggestion)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fsuggestion/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fsuggestion/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fsuggestion/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@tiptap/vue-3](https://tiptap.dev) ([source](https://redirect.github.com/ueberdosis/tiptap/tree/HEAD/packages/vue-3)) | [`3.3.1` -> `3.4.0`](https://renovatebot.com/diffs/npm/@tiptap%2fvue-3/3.3.1/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fvue-3/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fvue-3/3.3.1/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/core)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/core/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Minor Changes - [`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa): Add `mount` and `unmount` events to the `Editor` instance for tracking mounts and unmounts ##### Patch Changes - [`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f): Fix `can().toggleMark()` returning incorrect result when cursor is inside nodes that disallow marks Fixed an issue where `can().toggleMark('bold')` incorrectly returned `true` when the cursor was positioned inside a code block (with no selection), even though marks are not allowed in code blocks. The method now correctly returns `false` in this scenario by checking if the parent node allows the mark type when the selection is a cursor. - [@&#8203;tiptap/pm](https://redirect.github.com/tiptap/pm)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extension-code-block-lowlight)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/extension-code-block-lowlight/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - [`11c8085`](https://redirect.github.com/ueberdosis/tiptap/commit/11c8085): Added indentation support for code blocks via `Tab`. Is deactivated by default. **New Extension Options**: - `enableTabIndentation: boolean` - controls if tab completion should be enabled - `tabSize: number` - controls how many spaces are inserted for a tab - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`11c8085`](https://redirect.github.com/ueberdosis/tiptap/commit/11c8085)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 - [@&#8203;tiptap/extension-code-block](https://redirect.github.com/tiptap/extension-code-block)@&#8203;3.4.0 - [@&#8203;tiptap/pm](https://redirect.github.com/tiptap/pm)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extension-hard-break)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/extension-hard-break/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extension-image)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/extension-image/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extension-link)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/extension-link/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 - [@&#8203;tiptap/pm](https://redirect.github.com/tiptap/pm)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extension-list)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/extension-list/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 - [@&#8203;tiptap/pm](https://redirect.github.com/tiptap/pm)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extension-table)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/extension-table/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 - [@&#8203;tiptap/pm](https://redirect.github.com/tiptap/pm)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extension-typography)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/extension-typography/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extension-underline)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/extension-underline/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/extensions)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/releases/tag/v3.4.0) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ### Releases #### [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 ##### Minor Changes - [`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa): Add `mount` and `unmount` events to the `Editor` instance for tracking mounts and unmounts ##### Patch Changes - [`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f): Fix `can().toggleMark()` returning incorrect result when cursor is inside nodes that disallow marks Fixed an issue where `can().toggleMark('bold')` incorrectly returned `true` when the cursor was positioned inside a code block (with no selection), even though marks are not allowed in code blocks. The method now correctly returns `false` in this scenario by checking if the parent node allows the mark type when the selection is a cursor. #### [@&#8203;tiptap/extension-dropcursor](https://redirect.github.com/tiptap/extension-dropcursor)@&#8203;3.4.0 ##### Patch Changes - [`ef909f1`](https://redirect.github.com/ueberdosis/tiptap/commit/ef909f1): Updated `DropcursorOptions.color` types to use types defined in `prosemirror-dropcursor` #### [@&#8203;tiptap/extension-code-block](https://redirect.github.com/tiptap/extension-code-block)@&#8203;3.4.0 ##### Patch Changes - [`11c8085`](https://redirect.github.com/ueberdosis/tiptap/commit/11c8085): Added indentation support for code blocks via `Tab`. Is deactivated by default. **New Extension Options**: - `enableTabIndentation: boolean` - controls if tab completion should be enabled - `tabSize: number` - controls how many spaces are inserted for a tab #### [@&#8203;tiptap/extension-code-block-lowlight](https://redirect.github.com/tiptap/extension-code-block-lowlight)@&#8203;3.4.0 ##### Patch Changes - [`11c8085`](https://redirect.github.com/ueberdosis/tiptap/commit/11c8085): Added indentation support for code blocks via `Tab`. Is deactivated by default. **New Extension Options**: - `enableTabIndentation: boolean` - controls if tab completion should be enabled - `tabSize: number` - controls how many spaces are inserted for a tab #### [@&#8203;tiptap/extension-details](https://redirect.github.com/tiptap/extension-details)@&#8203;3.4.0 ##### Patch Changes - [`d3773c7`](https://redirect.github.com/ueberdosis/tiptap/commit/d3773c7): Fixed an issue where the input method editor (IME) failed to handle Chinese text correctly when entering the first word. Users can now input multiple words as expected. #### [@&#8203;tiptap/extension-drag-handle-vue-2](https://redirect.github.com/tiptap/extension-drag-handle-vue-2)@&#8203;3.4.0 ##### Patch Changes - [`2cb08d3`](https://redirect.github.com/ueberdosis/tiptap/commit/2cb08d3): Use factory function for object default value as required by vue 2. - [`2cb08d3`](https://redirect.github.com/ueberdosis/tiptap/commit/2cb08d3): Fixed a bug that would cause Vue 2 to throw errors in console because Vue 2 expects factory functions for prop defaults #### [@&#8203;tiptap/suggestion](https://redirect.github.com/tiptap/suggestion)@&#8203;3.4.0 ##### Patch Changes - [`3733bb9`](https://redirect.github.com/ueberdosis/tiptap/commit/3733bb9): Allow consumers to handle the Escape key via `render().onKeyDown` before the suggestion plugin auto-exits. Previously the suggestion plugin intercepted Escape internally and immediately called `onExit`, preventing `render().onKeyDown` from receiving the event and stopping propagation. Now `render().onKeyDown` is invoked first for Escape; if it returns `true` the plugin assumes the consumer handled the event (so they can call `event.preventDefault()` / `event.stopPropagation()` and optionally call `exitSuggestion(view)` themselves). If it returns `false` (or is absent), the plugin will continue to call `onExit` and close the suggestion as before. This change enables scenarios where the editor is inside a modal/drawer and the consumer needs to prevent the outer UI from reacting to Escape while still controlling the suggestion's lifecycle. - [`90cbed5`](https://redirect.github.com/ueberdosis/tiptap/commit/90cbed5): Remove the global document `mousedown` handler that closed suggestion popups when clicking outside. Previously the suggestion plugin listened for document `mousedown` events and closed suggestion UIs when the user clicked outside the editor or suggestion portal. That behavior has been removed to avoid framework-specific coupling (for example reliance on `.react-renderer`) and related compatibility issues. Now suggestions are closed via other signals: - pressing Escape (unchanged) - selection/cursor changes - renderer.onExit (renderers can call this) - programmatic calls to `exitSuggestion(view)` </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/pm)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/pm/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/starter-kit)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/starter-kit/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`11c8085`](https://redirect.github.com/ueberdosis/tiptap/commit/11c8085)] - Updated dependencies \[[`ef909f1`](https://redirect.github.com/ueberdosis/tiptap/commit/ef909f1)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 - [@&#8203;tiptap/extension-code-block](https://redirect.github.com/tiptap/extension-code-block)@&#8203;3.4.0 - [@&#8203;tiptap/extension-dropcursor](https://redirect.github.com/tiptap/extension-dropcursor)@&#8203;3.4.0 - [@&#8203;tiptap/extension-blockquote](https://redirect.github.com/tiptap/extension-blockquote)@&#8203;3.4.0 - [@&#8203;tiptap/extension-bold](https://redirect.github.com/tiptap/extension-bold)@&#8203;3.4.0 - [@&#8203;tiptap/extension-code](https://redirect.github.com/tiptap/extension-code)@&#8203;3.4.0 - [@&#8203;tiptap/extension-document](https://redirect.github.com/tiptap/extension-document)@&#8203;3.4.0 - [@&#8203;tiptap/extension-hard-break](https://redirect.github.com/tiptap/extension-hard-break)@&#8203;3.4.0 - [@&#8203;tiptap/extension-heading](https://redirect.github.com/tiptap/extension-heading)@&#8203;3.4.0 - [@&#8203;tiptap/extension-horizontal-rule](https://redirect.github.com/tiptap/extension-horizontal-rule)@&#8203;3.4.0 - [@&#8203;tiptap/extension-italic](https://redirect.github.com/tiptap/extension-italic)@&#8203;3.4.0 - [@&#8203;tiptap/extension-link](https://redirect.github.com/tiptap/extension-link)@&#8203;3.4.0 - [@&#8203;tiptap/extension-list](https://redirect.github.com/tiptap/extension-list)@&#8203;3.4.0 - [@&#8203;tiptap/extension-paragraph](https://redirect.github.com/tiptap/extension-paragraph)@&#8203;3.4.0 - [@&#8203;tiptap/extension-strike](https://redirect.github.com/tiptap/extension-strike)@&#8203;3.4.0 - [@&#8203;tiptap/extension-text](https://redirect.github.com/tiptap/extension-text)@&#8203;3.4.0 - [@&#8203;tiptap/extension-underline](https://redirect.github.com/tiptap/extension-underline)@&#8203;3.4.0 - [@&#8203;tiptap/extensions](https://redirect.github.com/tiptap/extensions)@&#8203;3.4.0 - [@&#8203;tiptap/extension-list-item](https://redirect.github.com/tiptap/extension-list-item)@&#8203;3.4.0 - [@&#8203;tiptap/extension-list-keymap](https://redirect.github.com/tiptap/extension-list-keymap)@&#8203;3.4.0 - [@&#8203;tiptap/extension-bullet-list](https://redirect.github.com/tiptap/extension-bullet-list)@&#8203;3.4.0 - [@&#8203;tiptap/extension-ordered-list](https://redirect.github.com/tiptap/extension-ordered-list)@&#8203;3.4.0 - [@&#8203;tiptap/extension-gapcursor](https://redirect.github.com/tiptap/extension-gapcursor)@&#8203;3.4.0 - [@&#8203;tiptap/pm](https://redirect.github.com/tiptap/pm)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/suggestion)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/suggestion/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - [`3733bb9`](https://redirect.github.com/ueberdosis/tiptap/commit/3733bb9): Allow consumers to handle the Escape key via `render().onKeyDown` before the suggestion plugin auto-exits. Previously the suggestion plugin intercepted Escape internally and immediately called `onExit`, preventing `render().onKeyDown` from receiving the event and stopping propagation. Now `render().onKeyDown` is invoked first for Escape; if it returns `true` the plugin assumes the consumer handled the event (so they can call `event.preventDefault()` / `event.stopPropagation()` and optionally call `exitSuggestion(view)` themselves). If it returns `false` (or is absent), the plugin will continue to call `onExit` and close the suggestion as before. This change enables scenarios where the editor is inside a modal/drawer and the consumer needs to prevent the outer UI from reacting to Escape while still controlling the suggestion's lifecycle. - [`90cbed5`](https://redirect.github.com/ueberdosis/tiptap/commit/90cbed5): Remove the global document `mousedown` handler that closed suggestion popups when clicking outside. Previously the suggestion plugin listened for document `mousedown` events and closed suggestion UIs when the user clicked outside the editor or suggestion portal. That behavior has been removed to avoid framework-specific coupling (for example reliance on `.react-renderer`) and related compatibility issues. Now suggestions are closed via other signals: - pressing Escape (unchanged) - selection/cursor changes - renderer.onExit (renderers can call this) - programmatic calls to `exitSuggestion(view)` - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 - [@&#8203;tiptap/pm](https://redirect.github.com/tiptap/pm)@&#8203;3.4.0 </details> <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/vue-3)</summary> ### [`v3.4.0`](https://redirect.github.com/ueberdosis/tiptap/blob/HEAD/packages/vue-3/CHANGELOG.md#340) [Compare Source](https://redirect.github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://redirect.github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://redirect.github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://redirect.github.com/tiptap/core)@&#8203;3.4.0 - [@&#8203;tiptap/pm](https://redirect.github.com/tiptap/pm)@&#8203;3.4.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/go-vikunja/vikunja). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuOTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 17:44:52 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vikunja#7524