mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-07 01:12:56 +08:00
chore(release): release version 2.6.0 (#5458)
This commit is contained in:
parent
af529f9860
commit
b2d5c94c4d
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/react": patch
|
||||
---
|
||||
|
||||
Updates the typings to `useEditor` and `EditorProvider` to not conflict with the core Editor type
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": minor
|
||||
---
|
||||
|
||||
Add `getContent` to nodePasteRules to allow specifying inner content to a created node
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-link": patch
|
||||
---
|
||||
|
||||
Fixes a bug where link `href` was converted to number or boolean during HTML parsing, leading to a crash in rendering.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-text-style": patch
|
||||
---
|
||||
|
||||
Give text-style extension a higher priority to have colors apply to things like underlines and strikethroughs
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-ordered-list": minor
|
||||
---
|
||||
|
||||
Support the `type` attribute for ordered lists
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/react": patch
|
||||
---
|
||||
|
||||
This resolves a bug with `useEditor` where event handlers were being called 2x for what should have been a single registration
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": minor
|
||||
---
|
||||
|
||||
Add the ability to add new attributes to a splitted list item
|
@ -1,12 +0,0 @@
|
||||
---
|
||||
"@tiptap/react": minor
|
||||
"@tiptap/core": minor
|
||||
---
|
||||
|
||||
This PR significantly improves the performance of React NodeViews in a couple of ways:
|
||||
|
||||
- It now uses useSyncExternalStore to synchronize changes between React & the editor instance
|
||||
- It dramatically reduces the number of re-renders by re-using instances of React portals that have already been initialized and unaffected by the change made in the editor
|
||||
|
||||
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.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/vue-3": patch
|
||||
---
|
||||
|
||||
fix vue3 class components not working as node views
|
@ -1,5 +1,23 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 86a8553: Add `getContent` to nodePasteRules to allow specifying inner content to a created node
|
||||
- 222f2ac: Add the ability to add new attributes to a splitted list item
|
||||
- e31673d: This PR significantly improves the performance of React NodeViews in a couple of ways:
|
||||
|
||||
- It now uses useSyncExternalStore to synchronize changes between React & the editor instance
|
||||
- It dramatically reduces the number of re-renders by re-using instances of React portals that have already been initialized and unaffected by the change made in the editor
|
||||
|
||||
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
|
||||
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/core",
|
||||
"description": "headless rich text editor",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,10 +32,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-blockquote",
|
||||
"description": "blockquote extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bold",
|
||||
"description": "bold extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bubble-menu",
|
||||
"description": "bubble-menu extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -38,12 +38,12 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -rf dist",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bullet-list",
|
||||
"description": "bullet list extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-character-count",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/extension-code-block@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block-lowlight",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,15 +29,15 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-code-block": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/extension-code-block": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0",
|
||||
"lowlight": "^2 || ^3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-code-block": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/extension-code-block": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0",
|
||||
"lowlight": "^2 || ^3",
|
||||
"highlight.js": "^11"
|
||||
},
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code",
|
||||
"description": "code extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration-cursor",
|
||||
"description": "collaboration cursor extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,11 +29,11 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"y-prosemirror": "^1.2.11"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"y-prosemirror": "^1.2.11"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration",
|
||||
"description": "collaboration extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,13 +29,13 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0",
|
||||
"y-prosemirror": "^1.2.11"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0",
|
||||
"y-prosemirror": "^1.2.11"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [c0e631f]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/extension-text-style@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-color",
|
||||
"description": "text color extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-text-style": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/extension-text-style": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-text-style": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/extension-text-style": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-document",
|
||||
"description": "document extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-dropcursor",
|
||||
"description": "dropcursor extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-floating-menu",
|
||||
"description": "floating-menu extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"tippy.js": "^6.3.7"
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-focus",
|
||||
"description": "focus extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [c0e631f]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/extension-text-style@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-font-family",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-text-style": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/extension-text-style": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-text-style": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/extension-text-style": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-gapcursor",
|
||||
"description": "gapcursor extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-hard-break",
|
||||
"description": "hard break extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-heading",
|
||||
"description": "heading extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-highlight",
|
||||
"description": "highlight extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-history",
|
||||
"description": "history extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-horizontal-rule",
|
||||
"description": "horizontal rule extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-image",
|
||||
"description": "image extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-italic",
|
||||
"description": "italic extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 08b4319: Fixes a bug where link `href` was converted to number or boolean during HTML parsing, leading to a crash in rendering.
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-link",
|
||||
"description": "link extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,12 +32,12 @@
|
||||
"linkifyjs": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-item",
|
||||
"description": "list item extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-keymap",
|
||||
"description": "list keymap extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/suggestion@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-mention",
|
||||
"description": "mention extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,14 +29,14 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"@tiptap/suggestion": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0",
|
||||
"@tiptap/suggestion": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"@tiptap/suggestion": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0",
|
||||
"@tiptap/suggestion": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,18 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- da7b337: Support the `type` attribute for ordered lists
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-ordered-list",
|
||||
"description": "ordered list extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-paragraph",
|
||||
"description": "paragraph extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-placeholder",
|
||||
"description": "placeholder extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-strike",
|
||||
"description": "strike extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-subscript",
|
||||
"description": "subscript extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-superscript",
|
||||
"description": "superscript extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-cell",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-header",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-row",
|
||||
"description": "table row extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table",
|
||||
"description": "table extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
- @tiptap/pm@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-item",
|
||||
"description": "task item extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0",
|
||||
"@tiptap/pm": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-list",
|
||||
"description": "task list extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-align",
|
||||
"description": "text align extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- c0e631f: Give text-style extension a higher priority to have colors apply to things like underlines and strikethroughs
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-style",
|
||||
"description": "text style extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text",
|
||||
"description": "text extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-typography",
|
||||
"description": "typography extension for tiptap",
|
||||
"version": "2.5.9",
|
||||
"version": "2.6.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.9"
|
||||
"@tiptap/core": "^2.6.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [86a8553]
|
||||
- Updated dependencies [222f2ac]
|
||||
- Updated dependencies [e31673d]
|
||||
- @tiptap/core@2.6.0
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user