merge main

This commit is contained in:
bdbch 2024-01-08 22:30:06 +01:00
commit 46e391aa9d
117 changed files with 1120 additions and 14207 deletions

View File

@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
### Bug Fixes
* **core:** fix insertContentAt keeping new lines in html content ([#4465](https://github.com/ueberdosis/tiptap/issues/4465)) ([135a12f](https://github.com/ueberdosis/tiptap/commit/135a12f7aa2df839a0b619704110a360b980c738))
* **link:** fix tests ([d495d92](https://github.com/ueberdosis/tiptap/commit/d495d92a1f7b1c51e09ac8f4934e15a2d1cf070d))
### Reverts
* Revert "update package-lock" ([faead69](https://github.com/ueberdosis/tiptap/commit/faead6987337ea8471619fdc3124437954772a1a))
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)

View File

@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
### Bug Fixes
* **core:** fix insertContentAt keeping new lines in html content ([#4465](https://github.com/ueberdosis/tiptap/issues/4465)) ([135a12f](https://github.com/ueberdosis/tiptap/commit/135a12f7aa2df839a0b619704110a360b980c738))
* **link:** fix tests ([d495d92](https://github.com/ueberdosis/tiptap/commit/d495d92a1f7b1c51e09ac8f4934e15a2d1cf070d))
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)

View File

@ -1,6 +1,6 @@
{
"name": "tiptap-demos",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"private": true,
"scripts": {
"start": "vite --host",

View File

View File

@ -0,0 +1,62 @@
import './styles.scss'
import { Color } from '@tiptap/extension-color'
import ListItem from '@tiptap/extension-list-item'
import TextStyle from '@tiptap/extension-text-style'
import { EditorProvider, useCurrentEditor } from '@tiptap/react'
import StarterKit from '@tiptap/starter-kit'
import React from 'react'
const htmlContent = `
<h1><a href="https://tiptap.dev/">Tiptap</a></h1>
<p><strong>Hello World</strong></p>
<p>This is a paragraph<br />with a break.</p>
<p>And this is some additional string content.</p>
`
const textContent = `Hello World
This is content with a new line. Is this working?
Lets see if multiple new lines are inserted correctly
And more lines`
const MenuBar = () => {
const { editor } = useCurrentEditor()
if (!editor) {
return null
}
return (
<>
<button data-test-id="html-content" onClick={() => editor.chain().insertContent(htmlContent).focus().run()}>
Insert html content
</button>
<button data-test-id="text-content" onClick={() => editor.chain().insertContent(textContent).focus().run()}>
Insert text content
</button>
</>
)
}
const extensions = [
Color.configure({ types: [TextStyle.name, ListItem.name] }),
TextStyle.configure({ types: [ListItem.name] }),
StarterKit.configure({
bulletList: {
keepMarks: true,
},
orderedList: {
keepMarks: true,
},
}),
]
const content = ''
export default () => {
return (
<EditorProvider slotBefore={<MenuBar />} extensions={extensions} content={content}></EditorProvider>
)
}

View File

@ -0,0 +1,23 @@
context('/src/Issues/2720/React/', () => {
before(() => {
cy.visit('/src/Issues/2720/React/')
})
beforeEach(() => {
cy.get('.tiptap').type('{selectall}{backspace}')
})
it('should insert html content correctly', () => {
cy.get('button[data-test-id="html-content"]').click()
// check if the content html is correct
cy.get('.tiptap').should('contain.html', '<h1>Tiptap</h1><p><strong>Hello World</strong></p><p>This is a paragraph<br>with a break.</p><p>And this is some additional string content.</p>')
})
it('should insert text content correctly', () => {
cy.get('button[data-test-id="text-content"]').click()
// check if the content html is correct
cy.get('.tiptap').should('contain.html', 'Hello World\nThis is content with a new line. Is this working?\n\nLets see if multiple new lines are inserted correctly')
})
})

View File

@ -0,0 +1,56 @@
/* Basic editor styles */
.tiptap {
> * + * {
margin-top: 0.75em;
}
ul,
ol {
padding: 0 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.1;
}
code {
background-color: rgba(#616161, 0.1);
color: #616161;
}
pre {
background: #0D0D0D;
color: #FFF;
font-family: 'JetBrainsMono', monospace;
padding: 0.75rem 1rem;
border-radius: 0.5rem;
code {
color: inherit;
padding: 0;
background: none;
font-size: 0.8rem;
}
}
img {
max-width: 100%;
height: auto;
}
blockquote {
padding-left: 1rem;
border-left: 2px solid rgba(#0D0D0D, 0.1);
}
hr {
border: none;
border-top: 2px solid rgba(#0D0D0D, 0.1);
margin: 2rem 0;
}
}

14403
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
### Bug Fixes
* **core:** fix insertContentAt keeping new lines in html content ([#4465](https://github.com/ueberdosis/tiptap/issues/4465)) ([135a12f](https://github.com/ueberdosis/tiptap/commit/135a12f7aa2df839a0b619704110a360b980c738))
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/core

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/core",
"description": "headless rich text editor",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -32,7 +32,7 @@
"dist"
],
"devDependencies": {
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/pm": "^2.0.0"

View File

@ -40,6 +40,7 @@ export function createNodeFromContent(
}
if (typeof content === 'string') {
content = content.split('\n').map(part => part.trim()).join('') // we need to remove new lines since the parser will add breaks
const parser = DOMParser.fromSchema(schema)
return options.slice

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-blockquote
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-blockquote

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-blockquote",
"description": "blockquote extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-bold
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-bold

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-bold",
"description": "bold extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-bubble-menu
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-bubble-menu

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-bubble-menu",
"description": "bubble-menu extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -38,8 +38,8 @@
},
"sideEffects": false,
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-bullet-list
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-bullet-list

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-bullet-list",
"description": "bullet list extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-character-count
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-character-count

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-character-count",
"description": "font family extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-code-block-lowlight
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-code-block-lowlight

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-code-block-lowlight",
"description": "code block extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,9 +29,9 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/extension-code-block": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/extension-code-block": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-code-block
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-code-block

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-code-block",
"description": "code block extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-code
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-code

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-code",
"description": "code extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-collaboration-cursor",
"description": "collaboration cursor extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"y-prosemirror": "^1.2.1"
"@tiptap/core": "^2.1.15",
"y-prosemirror": "1.0.20"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-collaboration
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-collaboration

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-collaboration",
"description": "collaboration extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,9 +29,9 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8",
"y-prosemirror": "^1.2.1"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15",
"y-prosemirror": "1.0.20"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-color
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-color

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-color",
"description": "text color extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/extension-text-style": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/extension-text-style": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-document
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-document

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-document",
"description": "document extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-dropcursor
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-dropcursor

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-dropcursor",
"description": "dropcursor extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-floating-menu
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-floating-menu

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-floating-menu",
"description": "floating-menu extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-focus
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-focus

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-focus",
"description": "focus extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-font-family
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-font-family

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-font-family",
"description": "font family extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/extension-text-style": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/extension-text-style": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-gapcursor
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-gapcursor

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-gapcursor",
"description": "gapcursor extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-hard-break
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-hard-break

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-hard-break",
"description": "hard break extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-heading
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-heading

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-heading",
"description": "heading extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-highlight
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-highlight

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-highlight",
"description": "highlight extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-history
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-history

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-history",
"description": "history extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-horizontal-rule
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-horizontal-rule

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-horizontal-rule",
"description": "horizontal rule extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-image
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-image

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-image",
"description": "image extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-italic
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-italic

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-italic",
"description": "italic extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-link
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-link

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-link",
"description": "link extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -32,8 +32,8 @@
"linkifyjs": "^4.1.0"
},
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-list-item
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-list-item

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-list-item",
"description": "list item extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-list-keymap
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-list-keymap

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-list-keymap",
"description": "list keymap extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-mention
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-mention

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-mention",
"description": "mention extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,9 +29,9 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8",
"@tiptap/suggestion": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15",
"@tiptap/suggestion": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-ordered-list
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-ordered-list

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-ordered-list",
"description": "ordered list extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-paragraph
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-paragraph

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-paragraph",
"description": "paragraph extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-placeholder
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-placeholder

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-placeholder",
"description": "placeholder extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-strike
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-strike

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-strike",
"description": "strike extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-subscript
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-subscript

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-subscript",
"description": "subscript extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-superscript
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-superscript

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-superscript",
"description": "superscript extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-table-cell
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-table-cell

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table-cell",
"description": "table cell extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-table-header
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-table-header

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table-header",
"description": "table cell extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-table-row
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-table-row

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table-row",
"description": "table row extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-table
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-table

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table",
"description": "table extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-task-item
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-task-item

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-task-item",
"description": "task item extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,8 +29,8 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8",
"@tiptap/pm": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15",
"@tiptap/pm": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-task-list
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-task-list

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-task-list",
"description": "task list extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-text-align
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-text-align

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-text-align",
"description": "text align extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-text-style
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-text-style

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-text-style",
"description": "text style extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-text
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-text

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-text",
"description": "text extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-typography
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-typography",
"description": "typography extension for tiptap",
"version": "2.2.0-rc.8",
"version": "2.1.15",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -29,7 +29,7 @@
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.2.0-rc.8"
"@tiptap/core": "^2.1.15"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.15](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.1.15) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-underline
## [2.1.14](https://github.com/ueberdosis/tiptap/compare/v2.1.13...v2.1.14) (2024-01-08)
**Note:** Version bump only for package @tiptap/extension-underline

Some files were not shown because too many files have changed in this diff Show More