mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-27 14:59:27 +08:00
chore(release): publish version v2.5.9 (#5451)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
c01eccc0ea
commit
535dcccb40
@ -1,6 +0,0 @@
|
||||
---
|
||||
"tiptap-demos": patch
|
||||
"@tiptap/extension-code-block-lowlight": patch
|
||||
---
|
||||
|
||||
declare lowlight to be a peer dep of extension-code-block-lowlight, update usage to v3
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Fix change criteria for isNodeEmpty to resolve #5415
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
fix(core): findDuplicates - use Array.from when converting Set
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-code-block": patch
|
||||
"@tiptap/extension-code-block-lowlight": patch
|
||||
---
|
||||
|
||||
`defaultLanguage` on Code Block Lowlight was not being respected properly, to address this we added `defaultLanguage` as an option to the code-block extension.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Add `ignoreWhitespace` option to `isNodeEmpty` to ignore any whitespace and hardbreaks in a node to check for emptiness
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
This fixes a discrepency between `getMarksBetween` and `isActive(markName)` where the position used for getMarksBetween was off by one
|
@ -1,12 +0,0 @@
|
||||
---
|
||||
"@tiptap/react": patch
|
||||
---
|
||||
|
||||
Optimize `useEditor` and `useEditorState` to reduce number of instances created while still being performant #5432
|
||||
|
||||
The core of this change is two-fold:
|
||||
- have the effect run on every render (i.e. without a dep array)
|
||||
- schedule destruction of instances, but bail on the actual destruction if the instance was still mounted and a new instance had not been created yet
|
||||
|
||||
It should plug a memory leak, where editor instances could be created but not cleaned up in strict mode.
|
||||
As well as fixing a bug where a re-render, with deps, was not applying new options that were set on `useEditor`.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-placeholder": patch
|
||||
---
|
||||
|
||||
add back `considerAsAny` type but mark it deprecated
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-task-item": patch
|
||||
---
|
||||
|
||||
allow task items to be parsed when only having `<li data-checked` instead of only when `<li data-checked="true"` (re-fix of #5366)
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-collaboration-cursor": patch
|
||||
"@tiptap/extension-collaboration": patch
|
||||
---
|
||||
|
||||
This updates y-prosemirror to a version that no longer has syncing problems and extension collaboration now respects the onFirstRender option
|
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 2.4.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- d6e56c4: declare lowlight to be a peer dep of extension-code-block-lowlight, update usage to v3
|
||||
|
||||
## 2.4.1
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tiptap-demos",
|
||||
"version": "2.4.1",
|
||||
"version": "2.4.2",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 84ebd51: Fix change criteria for isNodeEmpty to resolve #5415
|
||||
- 0ec0af6: fix(core): findDuplicates - use Array.from when converting Set
|
||||
- ae0254d: Add `ignoreWhitespace` option to `isNodeEmpty` to ignore any whitespace and hardbreaks in a node to check for emptiness
|
||||
- efb27fa: This fixes a discrepency between `getMarksBetween` and `isActive(markName)` where the position used for getMarksBetween was off by one
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/core",
|
||||
"description": "headless rich text editor",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,10 +32,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-blockquote",
|
||||
"description": "blockquote extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bold",
|
||||
"description": "bold extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bubble-menu",
|
||||
"description": "bubble-menu extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -38,12 +38,12 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -rf dist",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bullet-list",
|
||||
"description": "bullet list extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-character-count",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,20 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- d6e56c4: declare lowlight to be a peer dep of extension-code-block-lowlight, update usage to v3
|
||||
- 4b215f7: `defaultLanguage` on Code Block Lowlight was not being respected properly, to address this we added `defaultLanguage` as an option to the code-block extension.
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [4b215f7]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/extension-code-block@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block-lowlight",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,15 +29,15 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/extension-code-block": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8",
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-code-block": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"lowlight": "^2 || ^3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/extension-code-block": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8",
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-code-block": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"lowlight": "^2 || ^3",
|
||||
"highlight.js": "^11"
|
||||
},
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 4b215f7: `defaultLanguage` on Code Block Lowlight was not being respected properly, to address this we added `defaultLanguage` as an option to the code-block extension.
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code",
|
||||
"description": "code extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 174aefe: This updates y-prosemirror to a version that no longer has syncing problems and extension collaboration now respects the onFirstRender option
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration-cursor",
|
||||
"description": "collaboration cursor extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,11 +29,11 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"y-prosemirror": "^1.2.11"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"y-prosemirror": "^1.2.11"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 174aefe: This updates y-prosemirror to a version that no longer has syncing problems and extension collaboration now respects the onFirstRender option
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration",
|
||||
"description": "collaboration extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,13 +29,13 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8",
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"y-prosemirror": "^1.2.11"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8",
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"y-prosemirror": "^1.2.11"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/extension-text-style@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-color",
|
||||
"description": "text color extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/extension-text-style": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-text-style": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/extension-text-style": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-text-style": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-document",
|
||||
"description": "document extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-dropcursor",
|
||||
"description": "dropcursor extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-floating-menu",
|
||||
"description": "floating-menu extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"dependencies": {
|
||||
"tippy.js": "^6.3.7"
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-focus",
|
||||
"description": "focus extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/extension-text-style@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-font-family",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/extension-text-style": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-text-style": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/extension-text-style": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/extension-text-style": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-gapcursor",
|
||||
"description": "gapcursor extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-hard-break",
|
||||
"description": "hard break extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-heading",
|
||||
"description": "heading extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-highlight",
|
||||
"description": "highlight extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-history",
|
||||
"description": "history extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-horizontal-rule",
|
||||
"description": "horizontal rule extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-image",
|
||||
"description": "image extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-italic",
|
||||
"description": "italic extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-link",
|
||||
"description": "link extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,12 +32,12 @@
|
||||
"linkifyjs": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-item",
|
||||
"description": "list item extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-keymap",
|
||||
"description": "list keymap extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
- @tiptap/suggestion@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-mention",
|
||||
"description": "mention extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,14 +29,14 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8",
|
||||
"@tiptap/suggestion": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"@tiptap/suggestion": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8",
|
||||
"@tiptap/suggestion": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9",
|
||||
"@tiptap/suggestion": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-ordered-list",
|
||||
"description": "ordered list extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-paragraph",
|
||||
"description": "paragraph extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- c1ff1b0: add back `considerAsAny` type but mark it deprecated
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-placeholder",
|
||||
"description": "placeholder extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-strike",
|
||||
"description": "strike extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-subscript",
|
||||
"description": "subscript extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-superscript",
|
||||
"description": "superscript extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-cell",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-header",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-row",
|
||||
"description": "table row extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table",
|
||||
"description": "table extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6543f05: allow task items to be parsed when only having `<li data-checked` instead of only when `<li data-checked="true"` (re-fix of #5366)
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
- @tiptap/pm@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-item",
|
||||
"description": "task item extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8",
|
||||
"@tiptap/pm": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9",
|
||||
"@tiptap/pm": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-list",
|
||||
"description": "task list extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-align",
|
||||
"description": "text align extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-style",
|
||||
"description": "text style extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [84ebd51]
|
||||
- Updated dependencies [0ec0af6]
|
||||
- Updated dependencies [ae0254d]
|
||||
- Updated dependencies [efb27fa]
|
||||
- @tiptap/core@2.5.9
|
||||
|
||||
## 2.5.8
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text",
|
||||
"description": "text extension for tiptap",
|
||||
"version": "2.5.8",
|
||||
"version": "2.5.9",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.8"
|
||||
"@tiptap/core": "^2.5.9"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user