mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-27 14:59:27 +08:00
chore(release): release version v2.9.0 (#5751)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
f89a6d9f55
commit
cbbb8a5d71
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
insertContentAt, setContent, and insertContent commands now respect the editor's pre-defined parseOptions configuration if the command does not specify it's own parseOptions
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-italic": patch
|
||||
"@tiptap/extension-bold": patch
|
||||
---
|
||||
|
||||
Add parse rules that reset bold & italic marks
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/vue-3": patch
|
||||
---
|
||||
|
||||
Fix editor content being destroyed before transition end
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-collaboration": minor
|
||||
---
|
||||
|
||||
When collaborating on a document, a client may send changes which are invalid to the current client. This change makes it so that the client can be disabled from synchronizing any further changes to avoid the default behavior of stripping unknown content. This would allow the other client to continue editing on the document while still synchronizing any known changes.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/pm": patch
|
||||
---
|
||||
|
||||
Update prosemirror-view version
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-mention": patch
|
||||
---
|
||||
|
||||
Increase mention extension priority to allow mentions to be inserted in lists using the Enter key
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/react": patch
|
||||
---
|
||||
|
||||
preserve editable option across re-renders #5547
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
This allows the Editor isntance to unregister multiple plugins in a single editor state replacement
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Fixed an issue while updating attributes on a NodePos that was not a text
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Updates the typings of `DecorationsWithTypes` to be more accurate to the prosemirror implementation even though it is not completely exposed as an API
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Added role and aria-label attributes to the contenteditable field for better screenreader support and mouseless controls
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Fixed issues with NodePos child positions causing wrong positions when used on non-text atoms
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Fixed an issue with getMarkRange not returning the correct range when cursor is at the start of the specified mark
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/starter-kit": patch
|
||||
---
|
||||
|
||||
Adds @tiptap/extension-text-style to @tiptap/starter-kit deps but does not install the extension, since it is only to resolve a peer dep install for list-items
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-table-cell": patch
|
||||
"@tiptap/extension-table-header": patch
|
||||
---
|
||||
|
||||
Tables now properly respect colwidths with multiple values, fixing resizeable columns when the first row has a colspan
|
||||
|
324
package-lock.json
generated
324
package-lock.json
generated
@ -18849,10 +18849,10 @@
|
||||
},
|
||||
"packages/core": {
|
||||
"name": "@tiptap/core",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -18864,10 +18864,10 @@
|
||||
},
|
||||
"packages/extension-blockquote": {
|
||||
"name": "@tiptap/extension-blockquote",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -18879,10 +18879,10 @@
|
||||
},
|
||||
"packages/extension-bold": {
|
||||
"name": "@tiptap/extension-bold",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -18894,14 +18894,14 @@
|
||||
},
|
||||
"packages/extension-bubble-menu": {
|
||||
"name": "@tiptap/extension-bubble-menu",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tippy.js": "^6.3.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -18914,12 +18914,12 @@
|
||||
},
|
||||
"packages/extension-bullet-list": {
|
||||
"name": "@tiptap/extension-bullet-list",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-list-item": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-list-item": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -18933,11 +18933,11 @@
|
||||
},
|
||||
"packages/extension-character-count": {
|
||||
"name": "@tiptap/extension-character-count",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -18950,10 +18950,10 @@
|
||||
},
|
||||
"packages/extension-code": {
|
||||
"name": "@tiptap/extension-code",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -18965,11 +18965,11 @@
|
||||
},
|
||||
"packages/extension-code-block": {
|
||||
"name": "@tiptap/extension-code-block",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -18982,12 +18982,12 @@
|
||||
},
|
||||
"packages/extension-code-block-lowlight": {
|
||||
"name": "@tiptap/extension-code-block-lowlight",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-code-block": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-code-block": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"lowlight": "^2 || ^3"
|
||||
},
|
||||
"funding": {
|
||||
@ -19004,11 +19004,11 @@
|
||||
},
|
||||
"packages/extension-collaboration": {
|
||||
"name": "@tiptap/extension-collaboration",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"y-prosemirror": "^1.2.12"
|
||||
},
|
||||
"funding": {
|
||||
@ -19023,10 +19023,10 @@
|
||||
},
|
||||
"packages/extension-collaboration-cursor": {
|
||||
"name": "@tiptap/extension-collaboration-cursor",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"y-prosemirror": "^1.2.12"
|
||||
},
|
||||
"funding": {
|
||||
@ -19090,11 +19090,11 @@
|
||||
},
|
||||
"packages/extension-color": {
|
||||
"name": "@tiptap/extension-color",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19107,10 +19107,10 @@
|
||||
},
|
||||
"packages/extension-document": {
|
||||
"name": "@tiptap/extension-document",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19122,11 +19122,11 @@
|
||||
},
|
||||
"packages/extension-dropcursor": {
|
||||
"name": "@tiptap/extension-dropcursor",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19139,14 +19139,14 @@
|
||||
},
|
||||
"packages/extension-floating-menu": {
|
||||
"name": "@tiptap/extension-floating-menu",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tippy.js": "^6.3.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19159,11 +19159,11 @@
|
||||
},
|
||||
"packages/extension-focus": {
|
||||
"name": "@tiptap/extension-focus",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19176,11 +19176,11 @@
|
||||
},
|
||||
"packages/extension-font-family": {
|
||||
"name": "@tiptap/extension-font-family",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19193,11 +19193,11 @@
|
||||
},
|
||||
"packages/extension-gapcursor": {
|
||||
"name": "@tiptap/extension-gapcursor",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19210,10 +19210,10 @@
|
||||
},
|
||||
"packages/extension-hard-break": {
|
||||
"name": "@tiptap/extension-hard-break",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19225,10 +19225,10 @@
|
||||
},
|
||||
"packages/extension-heading": {
|
||||
"name": "@tiptap/extension-heading",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19240,10 +19240,10 @@
|
||||
},
|
||||
"packages/extension-highlight": {
|
||||
"name": "@tiptap/extension-highlight",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19255,11 +19255,11 @@
|
||||
},
|
||||
"packages/extension-history": {
|
||||
"name": "@tiptap/extension-history",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19272,11 +19272,11 @@
|
||||
},
|
||||
"packages/extension-horizontal-rule": {
|
||||
"name": "@tiptap/extension-horizontal-rule",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19289,10 +19289,10 @@
|
||||
},
|
||||
"packages/extension-image": {
|
||||
"name": "@tiptap/extension-image",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19304,10 +19304,10 @@
|
||||
},
|
||||
"packages/extension-italic": {
|
||||
"name": "@tiptap/extension-italic",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19319,14 +19319,14 @@
|
||||
},
|
||||
"packages/extension-link": {
|
||||
"name": "@tiptap/extension-link",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"linkifyjs": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19339,10 +19339,10 @@
|
||||
},
|
||||
"packages/extension-list-item": {
|
||||
"name": "@tiptap/extension-list-item",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19354,10 +19354,10 @@
|
||||
},
|
||||
"packages/extension-list-keymap": {
|
||||
"name": "@tiptap/extension-list-keymap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19369,12 +19369,12 @@
|
||||
},
|
||||
"packages/extension-mention": {
|
||||
"name": "@tiptap/extension-mention",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/suggestion": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"@tiptap/suggestion": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19388,12 +19388,12 @@
|
||||
},
|
||||
"packages/extension-ordered-list": {
|
||||
"name": "@tiptap/extension-ordered-list",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-list-item": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-list-item": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19407,10 +19407,10 @@
|
||||
},
|
||||
"packages/extension-paragraph": {
|
||||
"name": "@tiptap/extension-paragraph",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19422,11 +19422,11 @@
|
||||
},
|
||||
"packages/extension-placeholder": {
|
||||
"name": "@tiptap/extension-placeholder",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19439,10 +19439,10 @@
|
||||
},
|
||||
"packages/extension-strike": {
|
||||
"name": "@tiptap/extension-strike",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19454,10 +19454,10 @@
|
||||
},
|
||||
"packages/extension-subscript": {
|
||||
"name": "@tiptap/extension-subscript",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19469,10 +19469,10 @@
|
||||
},
|
||||
"packages/extension-superscript": {
|
||||
"name": "@tiptap/extension-superscript",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19484,11 +19484,11 @@
|
||||
},
|
||||
"packages/extension-table": {
|
||||
"name": "@tiptap/extension-table",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19501,10 +19501,10 @@
|
||||
},
|
||||
"packages/extension-table-cell": {
|
||||
"name": "@tiptap/extension-table-cell",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19516,10 +19516,10 @@
|
||||
},
|
||||
"packages/extension-table-header": {
|
||||
"name": "@tiptap/extension-table-header",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19531,10 +19531,10 @@
|
||||
},
|
||||
"packages/extension-table-row": {
|
||||
"name": "@tiptap/extension-table-row",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19546,11 +19546,11 @@
|
||||
},
|
||||
"packages/extension-task-item": {
|
||||
"name": "@tiptap/extension-task-item",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19563,10 +19563,10 @@
|
||||
},
|
||||
"packages/extension-task-list": {
|
||||
"name": "@tiptap/extension-task-list",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19578,10 +19578,10 @@
|
||||
},
|
||||
"packages/extension-text": {
|
||||
"name": "@tiptap/extension-text",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19593,10 +19593,10 @@
|
||||
},
|
||||
"packages/extension-text-align": {
|
||||
"name": "@tiptap/extension-text-align",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19608,10 +19608,10 @@
|
||||
},
|
||||
"packages/extension-text-style": {
|
||||
"name": "@tiptap/extension-text-style",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19623,10 +19623,10 @@
|
||||
},
|
||||
"packages/extension-typography": {
|
||||
"name": "@tiptap/extension-typography",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19638,10 +19638,10 @@
|
||||
},
|
||||
"packages/extension-underline": {
|
||||
"name": "@tiptap/extension-underline",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19653,10 +19653,10 @@
|
||||
},
|
||||
"packages/extension-youtube": {
|
||||
"name": "@tiptap/extension-youtube",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19668,14 +19668,14 @@
|
||||
},
|
||||
"packages/html": {
|
||||
"name": "@tiptap/html",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"zeed-dom": "^0.15.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19717,7 +19717,7 @@
|
||||
},
|
||||
"packages/pm": {
|
||||
"name": "@tiptap/pm",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"prosemirror-changeset": "^2.2.1",
|
||||
@ -19746,18 +19746,18 @@
|
||||
},
|
||||
"packages/react": {
|
||||
"name": "@tiptap/react",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@tiptap/extension-bubble-menu": "^2.8.0",
|
||||
"@tiptap/extension-floating-menu": "^2.8.0",
|
||||
"@tiptap/extension-bubble-menu": "^2.9.0",
|
||||
"@tiptap/extension-floating-menu": "^2.9.0",
|
||||
"@types/use-sync-external-store": "^0.0.6",
|
||||
"fast-deep-equal": "^3",
|
||||
"use-sync-external-store": "^1.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"@types/react": "^18.2.14",
|
||||
"@types/react-dom": "^18.2.6",
|
||||
"react": "^18.0.0",
|
||||
@ -19776,30 +19776,30 @@
|
||||
},
|
||||
"packages/starter-kit": {
|
||||
"name": "@tiptap/starter-kit",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-blockquote": "^2.8.0",
|
||||
"@tiptap/extension-bold": "^2.8.0",
|
||||
"@tiptap/extension-bullet-list": "^2.8.0",
|
||||
"@tiptap/extension-code": "^2.8.0",
|
||||
"@tiptap/extension-code-block": "^2.8.0",
|
||||
"@tiptap/extension-document": "^2.8.0",
|
||||
"@tiptap/extension-dropcursor": "^2.8.0",
|
||||
"@tiptap/extension-gapcursor": "^2.8.0",
|
||||
"@tiptap/extension-hard-break": "^2.8.0",
|
||||
"@tiptap/extension-heading": "^2.8.0",
|
||||
"@tiptap/extension-history": "^2.8.0",
|
||||
"@tiptap/extension-horizontal-rule": "^2.8.0",
|
||||
"@tiptap/extension-italic": "^2.8.0",
|
||||
"@tiptap/extension-list-item": "^2.8.0",
|
||||
"@tiptap/extension-ordered-list": "^2.8.0",
|
||||
"@tiptap/extension-paragraph": "^2.8.0",
|
||||
"@tiptap/extension-strike": "^2.8.0",
|
||||
"@tiptap/extension-text": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-blockquote": "^2.9.0",
|
||||
"@tiptap/extension-bold": "^2.9.0",
|
||||
"@tiptap/extension-bullet-list": "^2.9.0",
|
||||
"@tiptap/extension-code": "^2.9.0",
|
||||
"@tiptap/extension-code-block": "^2.9.0",
|
||||
"@tiptap/extension-document": "^2.9.0",
|
||||
"@tiptap/extension-dropcursor": "^2.9.0",
|
||||
"@tiptap/extension-gapcursor": "^2.9.0",
|
||||
"@tiptap/extension-hard-break": "^2.9.0",
|
||||
"@tiptap/extension-heading": "^2.9.0",
|
||||
"@tiptap/extension-history": "^2.9.0",
|
||||
"@tiptap/extension-horizontal-rule": "^2.9.0",
|
||||
"@tiptap/extension-italic": "^2.9.0",
|
||||
"@tiptap/extension-list-item": "^2.9.0",
|
||||
"@tiptap/extension-ordered-list": "^2.9.0",
|
||||
"@tiptap/extension-paragraph": "^2.9.0",
|
||||
"@tiptap/extension-strike": "^2.9.0",
|
||||
"@tiptap/extension-text": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19808,11 +19808,11 @@
|
||||
},
|
||||
"packages/suggestion": {
|
||||
"name": "@tiptap/suggestion",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
@ -19825,16 +19825,16 @@
|
||||
},
|
||||
"packages/vue-2": {
|
||||
"name": "@tiptap/vue-2",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@tiptap/extension-bubble-menu": "^2.8.0",
|
||||
"@tiptap/extension-floating-menu": "^2.8.0",
|
||||
"@tiptap/extension-bubble-menu": "^2.9.0",
|
||||
"@tiptap/extension-floating-menu": "^2.9.0",
|
||||
"vue-ts-types": "^1.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"vue": "^2.6.0"
|
||||
},
|
||||
"funding": {
|
||||
@ -19885,15 +19885,15 @@
|
||||
},
|
||||
"packages/vue-3": {
|
||||
"name": "@tiptap/vue-3",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@tiptap/extension-bubble-menu": "^2.8.0",
|
||||
"@tiptap/extension-floating-menu": "^2.8.0"
|
||||
"@tiptap/extension-bubble-menu": "^2.9.0",
|
||||
"@tiptap/extension-floating-menu": "^2.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"vue": "^3.0.0"
|
||||
},
|
||||
"funding": {
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
### 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 parseOptions
|
||||
- 873a67c: This allows the Editor isntance to unregister multiple plugins in a single editor state replacement
|
||||
- d96f679: Fixed an issue while updating attributes on a NodePos that was not a text
|
||||
- e606c06: Updates the typings of `DecorationsWithTypes` to be more accurate to the prosemirror implementation even though it is not completely exposed as an API
|
||||
- a2eea24: Added role and aria-label attributes to the contenteditable field for better screenreader support and mouseless controls
|
||||
- d96f679: Fixed issues with NodePos child positions causing wrong positions when used on non-text atoms
|
||||
- 4efd227: Fixed an issue with getMarkRange not returning the correct range when cursor is at the start of the specified mark
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/core",
|
||||
"description": "headless rich text editor",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,7 +32,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/pm": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-blockquote",
|
||||
"description": "blockquote extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6fae240: Add parse rules that reset bold & italic marks
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bold",
|
||||
"description": "bold extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bubble-menu",
|
||||
"description": "bubble-menu extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -38,8 +38,8 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bullet-list",
|
||||
"description": "bullet list extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,9 +29,9 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-list-item": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-list-item": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-character-count",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block-lowlight",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,9 +29,9 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-code-block": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-code-block": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"lowlight": "^2 || ^3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code",
|
||||
"description": "code extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration-cursor",
|
||||
"description": "collaboration cursor extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"y-prosemirror": "^1.2.12"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 873a67c: When collaborating on a document, a client may send changes which are invalid to the current client. This change makes it so that the client can be disabled from synchronizing any further changes to avoid the default behavior of stripping unknown content. This would allow the other client to continue editing on the document while still synchronizing any known changes.
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration",
|
||||
"description": "collaboration extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"y-prosemirror": "^1.2.12"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-color",
|
||||
"description": "text color extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-document",
|
||||
"description": "document extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-dropcursor",
|
||||
"description": "dropcursor extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-floating-menu",
|
||||
"description": "floating-menu extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-focus",
|
||||
"description": "focus extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-font-family",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-gapcursor",
|
||||
"description": "gapcursor extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-hard-break",
|
||||
"description": "hard break extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-heading",
|
||||
"description": "heading extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-highlight",
|
||||
"description": "highlight extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-history",
|
||||
"description": "history extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-horizontal-rule",
|
||||
"description": "horizontal rule extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-image",
|
||||
"description": "image extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6fae240: Add parse rules that reset bold & italic marks
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-italic",
|
||||
"description": "italic extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-link",
|
||||
"description": "link extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,8 +32,8 @@
|
||||
"linkifyjs": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-item",
|
||||
"description": "list item extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-keymap",
|
||||
"description": "list keymap extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ae711ab: Increase mention extension priority to allow mentions to be inserted in lists using the Enter key
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-mention",
|
||||
"description": "mention extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,9 +29,9 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0",
|
||||
"@tiptap/suggestion": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0",
|
||||
"@tiptap/suggestion": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-ordered-list",
|
||||
"description": "ordered list extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,9 +29,9 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-list-item": "^2.8.0",
|
||||
"@tiptap/extension-text-style": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/extension-list-item": "^2.9.0",
|
||||
"@tiptap/extension-text-style": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-paragraph",
|
||||
"description": "paragraph extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-placeholder",
|
||||
"description": "placeholder extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-strike",
|
||||
"description": "strike extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-subscript",
|
||||
"description": "subscript extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-superscript",
|
||||
"description": "superscript extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 21df331: Tables now properly respect colwidths with multiple values, fixing resizeable columns when the first row has a colspan
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-cell",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 21df331: Tables now properly respect colwidths with multiple values, fixing resizeable columns when the first row has a colspan
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-header",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-row",
|
||||
"description": "table row extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table",
|
||||
"description": "table extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-item",
|
||||
"description": "task item extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,8 +29,8 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/pm": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0",
|
||||
"@tiptap/pm": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-list",
|
||||
"description": "task list extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.9.0
|
||||
|
||||
## 2.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-align",
|
||||
"description": "text align extension for tiptap",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,7 +29,7 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.8.0"
|
||||
"@tiptap/core": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.7.0"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user