fix(deps): update tiptap to ^2.9.1 (stable29) #6646
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
^2.3.2
->^2.9.1
Release Notes
ueberdosis/tiptap (@tiptap/core)
v2.9.1
Compare Source
v2.9.0
Compare Source
Patch Changes
ffb51d3
: insertContentAt, setContent, and insertContent commands now respect the editor's pre-defined parseOptions configuration if the command does not specify it's own parseOptions873a67c
: This allows the Editor isntance to unregister multiple plugins in a single editor state replacementd96f679
: Fixed an issue while updating attributes on a NodePos that was not a texte606c06
: Updates the typings ofDecorationsWithTypes
to be more accurate to the prosemirror implementation even though it is not completely exposed as an APIa2eea24
: Added role and aria-label attributes to the contenteditable field for better screenreader support and mouseless controlsd96f679
: Fixed issues with NodePos child positions causing wrong positions when used on non-text atoms4efd227
: Fixed an issue with getMarkRange not returning the correct range when cursor is at the start of the specified markv2.8.0
Compare Source
Minor Changes
6834a7f
: Bundling of packages no longer includes tiptap dependency type definitionsPatch Changes
8ee534d
: This refactors theonDrop
andonPaste
event callbacks to be Tiptap extensions rather than separate Prosemirror plugins which was forcing the editor to recreate the view on initialization.v2.7.4
Compare Source
Patch Changes
7ef401d
: This plugs a memory leak where there is a circular reference between the view's DOM node and the editor instance, to resolve this, before destroying the view we need to delete the reference to the editor instance on the DOM node #5654v2.7.3
Compare Source
Patch Changes
f76515a
: Update the typing for NodeViewProps to be an interface rather than a concrete type #5632d57ee51
: filter rendered extensionAttributes (#5588)v2.7.2
Compare Source
v2.7.1
Compare Source
Patch Changes
888f574
: Fixed Slice import in DropPluginv2.7.0
Compare Source
Minor Changes
97ea55f
: Fixes #5490. ThepreventClearDocument
meta tag can now be used to prevent theclearDocument
plugin in the core keymap extension from modifying transactions that appear to clear the document (but might be clearing it for other reasons).9e18d24
: AddedonPaste
andonDrop
options to the editor allowing for easier event binding for both cases97ea55f
: An object can now be passed toenableCoreExtensions
to allow disabling only specific core extensions.Patch Changes
f805333
: fix: check for schema's nesting rules on contentCheck07fa49d
: Copy over node attributes on node toggling (for example to keep text styles while toggling a headline)7f24a66
: Update the Typescript types for NodeViews, bringing them inline with there actual implementationa22767e
: Merging inline style attributes now can properly merge conflicting style attribute names, resulting in cleaner HTML output and correctnessv2.6.6
Compare Source
Patch Changes
8d8d999
: fix: check for schema's nesting rules on contentCheckv2.6.5
Compare Source
Patch Changes
v2.6.4
Compare Source
Patch Changes
v2.6.3
Compare Source
Patch Changes
da76972
: Resolve several selection related bug #2690 #5208v2.6.2
Compare Source
Patch Changes
v2.6.1
Compare Source
Patch Changes
v2.6.0
Compare Source
Minor Changes
86a8553
: AddgetContent
to nodePasteRules to allow specifying inner content to a created node222f2ac
: Add the ability to add new attributes to a splitted list iteme31673d
: This PR significantly improves the performance of React NodeViews in a couple of ways:We were seeing performance problems with React NodeViews because a change to one of them would cause a re-render to all instances of node views. For an application that heavily relies on node views in React, this was quite expensive.
This should dramatically cut down on the number of instances that have to re-render, and, making each of those re-renders much less costly.
Patch Changes
v2.5.9
Compare Source
Patch Changes
84ebd51
: Fix change criteria for isNodeEmpty to resolve #54150ec0af6
: fix(core): findDuplicates - use Array.from when converting Setae0254d
: AddignoreWhitespace
option toisNodeEmpty
to ignore any whitespace and hardbreaks in a node to check for emptinessefb27fa
: This fixes a discrepency betweengetMarksBetween
andisActive(markName)
where the position used for getMarksBetween was off by onev2.5.8
Compare Source
Patch Changes
a08bf85
: This fixes a bug with inputrules not being able to resolve positions properlyv2.5.7
Compare Source
Patch Changes
b012471
: This addresses an issue withisNodeEmpty
function where it was also comparing node attributes and finding mismatches on actually empty nodes. This helps placeholders find empty content correctlycc3497e
: Fixes a bug where ifenableContentCheck
was true, inserting content as JSON nodes would fail. This was because the node that was being created technically had a different schema than the content being inserted, so it would fail to generate the correct content valuev2.5.6
Compare Source
Patch Changes
618bca9
: Adjust thesplitBlock
command to returnfalse
when it was unsuccessful.35682d1
: This fixes a bug with the placeholder extension where a heading level other than the default was not considered empty, when comparing node contents, we need to consider that the node attributes are carried over for a fair comparison of content instead of attribute values2104f0f
: Add a check beforecreateNodeViews so that view.setProps is not called when the view has already been destroyedb5c1b32
]v2.5.5
Compare Source
Patch Changes
4cca382
: Make sure that atoms are used in-full without cutting the content. Node size for atoms is 1 which causes text to be cut unexpectedly.3b67e8a
: This changes the typing to not declare types on all HTMLElements, just a local one with the editor instance attachedv2.5.4
Compare Source
Patch Changes
dd7f9ac
: There was an issue with the cjs bundling of packages and default exports, now we resolve default exports in legacy compatible waydd7f9ac
]v2.5.3
Compare Source
Patch Changes
v2.5.2
Compare Source
Patch Changes
07f4c03
: There was a bug where doing a.configure
on an extension, node or mark would overwrite the extensions options instead of being merged with the default options.v2.5.1
Compare Source
Patch Changes
v2.5.0
Compare Source
Patch Changes
fb45149
: Made some minor changes to how packages are builtfb45149
: WhenparseOptions.whitespace === 'full' or parseOptions.whitespace === true
setting content will no longer strip whitespaces on setContentfb45149
: Faster performance for checking if a node is empty and if something is a fragmentfb45149
: Vue 3 bubble menus are properly synchronized with state transitions with the new beforeTransaction hook which is fired before the transaction is applied to the viewv2.4.0
Compare Source
Bug Fixes
Features
2.3.2 (2024-05-08)
Bug Fixes
2.3.1 (2024-04-30)
Note: Version bump only for package @tiptap/core
ueberdosis/tiptap (@tiptap/extension-blockquote)
v2.9.1
Compare Source
v2.9.0
Compare Source
v2.8.0
Compare Source
Minor Changes
6834a7f
: Bundling of packages no longer includes tiptap dependency type definitionsv2.7.4
Compare Source
v2.7.3
Compare Source
v2.7.2
Compare Source
v2.7.1
Compare Source
v2.7.0
Compare Source
v2.6.6
Compare Source
Patch Changes
8d8d999
]v2.6.5
Compare Source
Patch Changes
v2.6.4
Compare Source
Patch Changes
v2.6.3
Compare Source
Patch Changes
da76972
]v2.6.2
Compare Source
Patch Changes
v2.6.1
Compare Source
Patch Changes
v2.6.0
Compare Source
Patch Changes
86a8553
]222f2ac
]e31673d
]v2.5.9
Compare Source
Patch Changes
84ebd51
]0ec0af6
]ae0254d
]efb27fa
]Configuration
📅 Schedule: Branch creation - "every weekend" in timezone Europe/Berlin, 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.
This PR was generated by Mend Renovate. View the repository job log.