mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-27 14:59:27 +08:00
chore(release): publish a new release version
This commit is contained in:
parent
8337e53167
commit
52f717b3eb
@ -1,14 +0,0 @@
|
||||
---
|
||||
"@tiptap/pm": patch
|
||||
---
|
||||
|
||||
Because of an XSS vulnerability in the `prosemirror-model` package, we've updated all our prosemirror dependencies to the latest versions.
|
||||
|
||||
**Upgraded packages**:
|
||||
|
||||
- `prosemirror-model` from `^1.22.1` to `^1.22.2`
|
||||
- `prosemirror-tables` from `^1.3.7` to `^1.4.0`
|
||||
- `prosemirror-trailing-node` from `^2.0.8` to `^2.0.9`
|
||||
- `prosemirror-view` from `^1.33.8` to `^1.33.9`
|
||||
|
||||
See https://discuss.prosemirror.net/t/heads-up-xss-risk-in-domserializer/6572
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Adjust the `splitBlock` command to return `false` when it was unsuccessful.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-table": patch
|
||||
---
|
||||
|
||||
Set correct `min-width` for a table fixes #5217
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
This fixes a bug with the placeholder extension where a heading level other than the default was not considered empty, when comparing node contents, we need to consider that the node attributes are carried over for a fair comparison of content instead of attribute values
|
@ -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"`
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-link": patch
|
||||
---
|
||||
|
||||
Links were opening twive when the editor was not editable and openOnclick was true, now openOnClick setting will check if it is editable before trying to open programmatically resolves #4877
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/extension-code-block": patch
|
||||
---
|
||||
|
||||
code-block: on arrow down move into the next node
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Add a check beforecreateNodeViews so that view.setProps is not called when the view has already been destroyed
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 618bca9: Adjust the `splitBlock` command to return `false` when it was unsuccessful.
|
||||
- 35682d1: This fixes a bug with the placeholder extension where a heading level other than the default was not considered empty, when comparing node contents, we need to consider that the node attributes are carried over for a fair comparison of content instead of attribute values
|
||||
- 2104f0f: Add a check beforecreateNodeViews so that view.setProps is not called when the view has already been destroyed
|
||||
- Updated dependencies [b5c1b32]
|
||||
- @tiptap/pm@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/core",
|
||||
"description": "headless rich text editor",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,10 +32,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-blockquote",
|
||||
"description": "blockquote extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bold",
|
||||
"description": "bold extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bubble-menu",
|
||||
"description": "bubble-menu extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -38,12 +38,12 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -rf dist",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bullet-list",
|
||||
"description": "bullet list extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-character-count",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,18 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [4e5b2d8]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
- @tiptap/extension-code-block@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block-lowlight",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,14 +29,14 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/extension-code-block": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/extension-code-block": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/extension-code-block": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/extension-code-block": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 4e5b2d8: code-block: on arrow down move into the next node
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code",
|
||||
"description": "code extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration-cursor",
|
||||
"description": "collaboration cursor extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,11 +29,11 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"y-prosemirror": "^1.2.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"y-prosemirror": "^1.2.6"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration",
|
||||
"description": "collaboration extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,13 +29,13 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5",
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6",
|
||||
"y-prosemirror": "^1.2.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5",
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6",
|
||||
"y-prosemirror": "^1.2.6"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
- @tiptap/extension-text-style@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-color",
|
||||
"description": "text color extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/extension-text-style": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/extension-text-style": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/extension-text-style": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/extension-text-style": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-document",
|
||||
"description": "document extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-dropcursor",
|
||||
"description": "dropcursor extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-floating-menu",
|
||||
"description": "floating-menu extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"dependencies": {
|
||||
"tippy.js": "^6.3.7"
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-focus",
|
||||
"description": "focus extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
- @tiptap/extension-text-style@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-font-family",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/extension-text-style": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/extension-text-style": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/extension-text-style": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/extension-text-style": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-gapcursor",
|
||||
"description": "gapcursor extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-hard-break",
|
||||
"description": "hard break extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-heading",
|
||||
"description": "heading extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-highlight",
|
||||
"description": "highlight extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-history",
|
||||
"description": "history extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-horizontal-rule",
|
||||
"description": "horizontal rule extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-image",
|
||||
"description": "image extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-italic",
|
||||
"description": "italic extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- c0e5398: Links were opening twive when the editor was not editable and openOnclick was true, now openOnClick setting will check if it is editable before trying to open programmatically resolves #4877
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-link",
|
||||
"description": "link extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,12 +32,12 @@
|
||||
"linkifyjs": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-item",
|
||||
"description": "list item extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-keymap",
|
||||
"description": "list keymap extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
- @tiptap/suggestion@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-mention",
|
||||
"description": "mention extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,14 +29,14 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5",
|
||||
"@tiptap/suggestion": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6",
|
||||
"@tiptap/suggestion": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5",
|
||||
"@tiptap/suggestion": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6",
|
||||
"@tiptap/suggestion": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-ordered-list",
|
||||
"description": "ordered list extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-paragraph",
|
||||
"description": "paragraph extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-placeholder",
|
||||
"description": "placeholder extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-strike",
|
||||
"description": "strike extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-subscript",
|
||||
"description": "subscript extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-superscript",
|
||||
"description": "superscript extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-cell",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-header",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-row",
|
||||
"description": "table row extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- c7f5550: Set correct `min-width` for a table fixes #5217
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table",
|
||||
"description": "table extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- e6c759b: allow task items to be parsed when only having `<li data-checked` instead of only when `<li data-checked="true"`
|
||||
- Updated dependencies [b5c1b32]
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/pm@2.5.6
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-item",
|
||||
"description": "task item extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5",
|
||||
"@tiptap/pm": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6",
|
||||
"@tiptap/pm": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-list",
|
||||
"description": "task list extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-align",
|
||||
"description": "text align extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-style",
|
||||
"description": "text style extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text",
|
||||
"description": "text extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-typography",
|
||||
"description": "typography extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [618bca9]
|
||||
- Updated dependencies [35682d1]
|
||||
- Updated dependencies [2104f0f]
|
||||
- @tiptap/core@2.5.6
|
||||
|
||||
## 2.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-underline",
|
||||
"description": "underline extension for tiptap",
|
||||
"version": "2.5.5",
|
||||
"version": "2.5.6",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.5"
|
||||
"@tiptap/core": "^2.5.6"
|
||||
},
|
||||
"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