mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-11 03:33:12 +08:00
chore: release version 2.5
This commit is contained in:
parent
b2dad29436
commit
9b566b9c35
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/react": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixes strict mode accidentally destroying the editor instance
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/core": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Made some minor changes to how packages are built
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/react": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix the typings
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/core": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
When `parseOptions.whitespace === 'full' or parseOptions.whitespace === true` setting content will no longer strip whitespaces on setContent
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/starter-kit": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix(starter-kit): make blockquote shortcut work in starter-kit
|
|
@ -1,67 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/react": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
We've heard a number of complaints around the performance of our React integration, and we finally have a solution that we believe will satisfy everyone. We've made a number of optimizations to how the editor is rendered, as well give you more control over the rendering process.
|
|
||||||
|
|
||||||
Here is a summary of the changes and how you can take advantage of them:
|
|
||||||
|
|
||||||
- SSR rendering was holding back our ability to have an editor instance on first render of `useEditor`. We've now made the default behavior to render the editor immediately on the client. This behavior can be controlled with the new `immediatelyRender` option which when set to `false` will defer rendering until the second render (via a useEffect), this should only be used when server-side rendering.
|
|
||||||
- The default behavior of the useEditor hook is to re-render the editor on every editor transaction. Now with the `shouldRerenderOnTransaction` option, you can disable this behavior to optimize performance. Instead, to access the new editor state, you can use the `useEditorState` hook.
|
|
||||||
- `useEditorState` this new hook allows you to select from the editor instance any state you need to render your UI. This is useful when you want to optimize performance by only re-rendering the parts of your UI that need to be updated.
|
|
||||||
|
|
||||||
Here is a usage example:
|
|
||||||
|
|
||||||
```jsx
|
|
||||||
const editor = useEditor({
|
|
||||||
/**
|
|
||||||
* This option gives us the control to enable the default behavior of rendering the editor immediately.
|
|
||||||
*/
|
|
||||||
immediatelyRender: true,
|
|
||||||
/**
|
|
||||||
* This option gives us the control to disable the default behavior of re-rendering the editor on every transaction.
|
|
||||||
*/
|
|
||||||
shouldRerenderOnTransaction: false,
|
|
||||||
extensions: [StarterKit],
|
|
||||||
content: `
|
|
||||||
<p>
|
|
||||||
A highly optimized editor that only re-renders when it’s necessary.
|
|
||||||
</p>
|
|
||||||
`,
|
|
||||||
})
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This hook allows us to select the editor state we want to use in our component.
|
|
||||||
*/
|
|
||||||
const currentEditorState = useEditorState({
|
|
||||||
/**
|
|
||||||
* The editor instance we want to use.
|
|
||||||
*/
|
|
||||||
editor,
|
|
||||||
/**
|
|
||||||
* This selector allows us to select the data we want to use in our component.
|
|
||||||
* It is evaluated on every editor transaction and compared to it's previously returned value.
|
|
||||||
* You can return any data shape you want.
|
|
||||||
*/
|
|
||||||
selector: ctx => ({
|
|
||||||
isBold: ctx.editor.isActive('bold'),
|
|
||||||
isItalic: ctx.editor.isActive('italic'),
|
|
||||||
isStrike: ctx.editor.isActive('strike'),
|
|
||||||
}),
|
|
||||||
/**
|
|
||||||
* This function allows us to customize the equality check for the selector.
|
|
||||||
* By default it is a `===` check.
|
|
||||||
*/
|
|
||||||
equalityFn: (prev, next) => {
|
|
||||||
// A deep-equal function would probably be more maintainable here, but, we use a shallow one to show that it can be customized.
|
|
||||||
if (!next) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
prev.isBold === next.isBold
|
|
||||||
&& prev.isItalic === next.isItalic
|
|
||||||
&& prev.isStrike === next.isStrike
|
|
||||||
)
|
|
||||||
},
|
|
||||||
})
|
|
||||||
```
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/extension-placeholder": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Placeholders can now handle more complex default content
|
|
@ -1,70 +0,0 @@
|
|||||||
{
|
|
||||||
"mode": "exit",
|
|
||||||
"tag": "pre",
|
|
||||||
"initialVersions": {
|
|
||||||
"tiptap-demos": "2.4.0",
|
|
||||||
"@tiptap/core": "2.4.0",
|
|
||||||
"@tiptap/extension-blockquote": "2.4.0",
|
|
||||||
"@tiptap/extension-bold": "2.4.0",
|
|
||||||
"@tiptap/extension-bubble-menu": "2.4.0",
|
|
||||||
"@tiptap/extension-bullet-list": "2.4.0",
|
|
||||||
"@tiptap/extension-character-count": "2.4.0",
|
|
||||||
"@tiptap/extension-code": "2.4.0",
|
|
||||||
"@tiptap/extension-code-block": "2.4.0",
|
|
||||||
"@tiptap/extension-code-block-lowlight": "2.4.0",
|
|
||||||
"@tiptap/extension-collaboration": "2.4.0",
|
|
||||||
"@tiptap/extension-collaboration-cursor": "2.4.0",
|
|
||||||
"@tiptap/extension-color": "2.4.0",
|
|
||||||
"@tiptap/extension-document": "2.4.0",
|
|
||||||
"@tiptap/extension-dropcursor": "2.4.0",
|
|
||||||
"@tiptap/extension-floating-menu": "2.4.0",
|
|
||||||
"@tiptap/extension-focus": "2.4.0",
|
|
||||||
"@tiptap/extension-font-family": "2.4.0",
|
|
||||||
"@tiptap/extension-gapcursor": "2.4.0",
|
|
||||||
"@tiptap/extension-hard-break": "2.4.0",
|
|
||||||
"@tiptap/extension-heading": "2.4.0",
|
|
||||||
"@tiptap/extension-highlight": "2.4.0",
|
|
||||||
"@tiptap/extension-history": "2.4.0",
|
|
||||||
"@tiptap/extension-horizontal-rule": "2.4.0",
|
|
||||||
"@tiptap/extension-image": "2.4.0",
|
|
||||||
"@tiptap/extension-italic": "2.4.0",
|
|
||||||
"@tiptap/extension-link": "2.4.0",
|
|
||||||
"@tiptap/extension-list-item": "2.4.0",
|
|
||||||
"@tiptap/extension-list-keymap": "2.4.0",
|
|
||||||
"@tiptap/extension-mention": "2.4.0",
|
|
||||||
"@tiptap/extension-ordered-list": "2.4.0",
|
|
||||||
"@tiptap/extension-paragraph": "2.4.0",
|
|
||||||
"@tiptap/extension-placeholder": "2.4.0",
|
|
||||||
"@tiptap/extension-strike": "2.4.0",
|
|
||||||
"@tiptap/extension-subscript": "2.4.0",
|
|
||||||
"@tiptap/extension-superscript": "2.4.0",
|
|
||||||
"@tiptap/extension-table": "2.4.0",
|
|
||||||
"@tiptap/extension-table-cell": "2.4.0",
|
|
||||||
"@tiptap/extension-table-header": "2.4.0",
|
|
||||||
"@tiptap/extension-table-row": "2.4.0",
|
|
||||||
"@tiptap/extension-task-item": "2.4.0",
|
|
||||||
"@tiptap/extension-task-list": "2.4.0",
|
|
||||||
"@tiptap/extension-text": "2.4.0",
|
|
||||||
"@tiptap/extension-text-align": "2.4.0",
|
|
||||||
"@tiptap/extension-text-style": "2.4.0",
|
|
||||||
"@tiptap/extension-typography": "2.4.0",
|
|
||||||
"@tiptap/extension-underline": "2.4.0",
|
|
||||||
"@tiptap/extension-youtube": "2.4.0",
|
|
||||||
"@tiptap/html": "2.4.0",
|
|
||||||
"@tiptap/pm": "2.4.0",
|
|
||||||
"@tiptap/react": "2.4.0",
|
|
||||||
"@tiptap/starter-kit": "2.4.0",
|
|
||||||
"@tiptap/suggestion": "2.4.0",
|
|
||||||
"@tiptap/vue-2": "2.4.0",
|
|
||||||
"@tiptap/vue-3": "2.4.0"
|
|
||||||
},
|
|
||||||
"changesets": [
|
|
||||||
"clever-mice-search",
|
|
||||||
"cuddly-socks-beg",
|
|
||||||
"curvy-windows-know",
|
|
||||||
"five-tigers-kick",
|
|
||||||
"fresh-chefs-agree",
|
|
||||||
"mean-cooks-cheer",
|
|
||||||
"tasty-moons-move"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/core": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Faster performance for checking if a node is empty and if something is a fragment
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/extension-collaboration": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add `ySyncOptions` property to `@tiptap/extension-collaboration` to allow passing options directly to y-prosemirror's plugin
|
|
@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
"@tiptap/core": patch
|
|
||||||
"@tiptap/vue-3": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Vue 3 bubble menus are properly synchronized with state transitions with the new beforeTransaction hook which is fired before the transaction is applied to the view
|
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- fb45149: Made some minor changes to how packages are built
|
||||||
|
- fb45149: When `parseOptions.whitespace === 'full' or parseOptions.whitespace === true` setting content will no longer strip whitespaces on setContent
|
||||||
|
- fb45149: Faster performance for checking if a node is empty and if something is a fragment
|
||||||
|
- fb45149: Vue 3 bubble menus are properly synchronized with state transitions with the new beforeTransaction hook which is fired before the transaction is applied to the view
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/core",
|
"name": "@tiptap/core",
|
||||||
"description": "headless rich text editor",
|
"description": "headless rich text editor",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -32,10 +32,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-blockquote",
|
"name": "@tiptap/extension-blockquote",
|
||||||
"description": "blockquote extension for tiptap",
|
"description": "blockquote extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-bold",
|
"name": "@tiptap/extension-bold",
|
||||||
"description": "bold extension for tiptap",
|
"description": "bold extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-bubble-menu",
|
"name": "@tiptap/extension-bubble-menu",
|
||||||
"description": "bubble-menu extension for tiptap",
|
"description": "bubble-menu extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -38,12 +38,12 @@
|
|||||||
},
|
},
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rm -rf dist",
|
"clean": "rm -rf dist",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-bullet-list",
|
"name": "@tiptap/extension-bullet-list",
|
||||||
"description": "bullet list extension for tiptap",
|
"description": "bullet list extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-character-count",
|
"name": "@tiptap/extension-character-count",
|
||||||
"description": "font family extension for tiptap",
|
"description": "font family extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/extension-code-block@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-code-block-lowlight",
|
"name": "@tiptap/extension-code-block-lowlight",
|
||||||
"description": "code block extension for tiptap",
|
"description": "code block extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,14 +29,14 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/extension-code-block": "^2.5.0-pre.16",
|
"@tiptap/extension-code-block": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/extension-code-block": "^2.5.0-pre.16",
|
"@tiptap/extension-code-block": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-code-block",
|
"name": "@tiptap/extension-code-block",
|
||||||
"description": "code block extension for tiptap",
|
"description": "code block extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-code",
|
"name": "@tiptap/extension-code",
|
||||||
"description": "code extension for tiptap",
|
"description": "code extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-collaboration-cursor",
|
"name": "@tiptap/extension-collaboration-cursor",
|
||||||
"description": "collaboration cursor extension for tiptap",
|
"description": "collaboration cursor extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,11 +29,11 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"y-prosemirror": "^1.2.6"
|
"y-prosemirror": "^1.2.6"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"y-prosemirror": "^1.2.6"
|
"y-prosemirror": "^1.2.6"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -1,5 +1,20 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- fb45149: Add `ySyncOptions` property to `@tiptap/extension-collaboration` to allow passing options directly to y-prosemirror's plugin
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-collaboration",
|
"name": "@tiptap/extension-collaboration",
|
||||||
"description": "collaboration extension for tiptap",
|
"description": "collaboration extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,13 +29,13 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16",
|
"@tiptap/pm": "^2.5.0",
|
||||||
"y-prosemirror": "^1.2.6"
|
"y-prosemirror": "^1.2.6"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16",
|
"@tiptap/pm": "^2.5.0",
|
||||||
"y-prosemirror": "^1.2.6"
|
"y-prosemirror": "^1.2.6"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/extension-text-style@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-color",
|
"name": "@tiptap/extension-color",
|
||||||
"description": "text color extension for tiptap",
|
"description": "text color extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/extension-text-style": "^2.5.0-pre.16"
|
"@tiptap/extension-text-style": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/extension-text-style": "^2.5.0-pre.16"
|
"@tiptap/extension-text-style": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-document",
|
"name": "@tiptap/extension-document",
|
||||||
"description": "document extension for tiptap",
|
"description": "document extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-dropcursor",
|
"name": "@tiptap/extension-dropcursor",
|
||||||
"description": "dropcursor extension for tiptap",
|
"description": "dropcursor extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-floating-menu",
|
"name": "@tiptap/extension-floating-menu",
|
||||||
"description": "floating-menu extension for tiptap",
|
"description": "floating-menu extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tippy.js": "^6.3.7"
|
"tippy.js": "^6.3.7"
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-focus",
|
"name": "@tiptap/extension-focus",
|
||||||
"description": "focus extension for tiptap",
|
"description": "focus extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/extension-text-style@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-font-family",
|
"name": "@tiptap/extension-font-family",
|
||||||
"description": "font family extension for tiptap",
|
"description": "font family extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/extension-text-style": "^2.5.0-pre.16"
|
"@tiptap/extension-text-style": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/extension-text-style": "^2.5.0-pre.16"
|
"@tiptap/extension-text-style": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-gapcursor",
|
"name": "@tiptap/extension-gapcursor",
|
||||||
"description": "gapcursor extension for tiptap",
|
"description": "gapcursor extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-hard-break",
|
"name": "@tiptap/extension-hard-break",
|
||||||
"description": "hard break extension for tiptap",
|
"description": "hard break extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-heading",
|
"name": "@tiptap/extension-heading",
|
||||||
"description": "heading extension for tiptap",
|
"description": "heading extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-highlight",
|
"name": "@tiptap/extension-highlight",
|
||||||
"description": "highlight extension for tiptap",
|
"description": "highlight extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-history",
|
"name": "@tiptap/extension-history",
|
||||||
"description": "history extension for tiptap",
|
"description": "history extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-horizontal-rule",
|
"name": "@tiptap/extension-horizontal-rule",
|
||||||
"description": "horizontal rule extension for tiptap",
|
"description": "horizontal rule extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-image",
|
"name": "@tiptap/extension-image",
|
||||||
"description": "image extension for tiptap",
|
"description": "image extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-italic",
|
"name": "@tiptap/extension-italic",
|
||||||
"description": "italic extension for tiptap",
|
"description": "italic extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-link",
|
"name": "@tiptap/extension-link",
|
||||||
"description": "link extension for tiptap",
|
"description": "link extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -32,12 +32,12 @@
|
|||||||
"linkifyjs": "^4.1.0"
|
"linkifyjs": "^4.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-list-item",
|
"name": "@tiptap/extension-list-item",
|
||||||
"description": "list item extension for tiptap",
|
"description": "list item extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-list-keymap",
|
"name": "@tiptap/extension-list-keymap",
|
||||||
"description": "list keymap extension for tiptap",
|
"description": "list keymap extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
- @tiptap/suggestion@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-mention",
|
"name": "@tiptap/extension-mention",
|
||||||
"description": "mention extension for tiptap",
|
"description": "mention extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,14 +29,14 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16",
|
"@tiptap/pm": "^2.5.0",
|
||||||
"@tiptap/suggestion": "^2.5.0-pre.16"
|
"@tiptap/suggestion": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16",
|
"@tiptap/pm": "^2.5.0",
|
||||||
"@tiptap/suggestion": "^2.5.0-pre.16"
|
"@tiptap/suggestion": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-ordered-list",
|
"name": "@tiptap/extension-ordered-list",
|
||||||
"description": "ordered list extension for tiptap",
|
"description": "ordered list extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-paragraph",
|
"name": "@tiptap/extension-paragraph",
|
||||||
"description": "paragraph extension for tiptap",
|
"description": "paragraph extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- fb45149: Placeholders can now handle more complex default content
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-placeholder",
|
"name": "@tiptap/extension-placeholder",
|
||||||
"description": "placeholder extension for tiptap",
|
"description": "placeholder extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-strike",
|
"name": "@tiptap/extension-strike",
|
||||||
"description": "strike extension for tiptap",
|
"description": "strike extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-subscript",
|
"name": "@tiptap/extension-subscript",
|
||||||
"description": "subscript extension for tiptap",
|
"description": "subscript extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-superscript",
|
"name": "@tiptap/extension-superscript",
|
||||||
"description": "superscript extension for tiptap",
|
"description": "superscript extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-table-cell",
|
"name": "@tiptap/extension-table-cell",
|
||||||
"description": "table cell extension for tiptap",
|
"description": "table cell extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-table-header",
|
"name": "@tiptap/extension-table-header",
|
||||||
"description": "table cell extension for tiptap",
|
"description": "table cell extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-table-row",
|
"name": "@tiptap/extension-table-row",
|
||||||
"description": "table row extension for tiptap",
|
"description": "table row extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-table",
|
"name": "@tiptap/extension-table",
|
||||||
"description": "table extension for tiptap",
|
"description": "table extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
- @tiptap/pm@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-task-item",
|
"name": "@tiptap/extension-task-item",
|
||||||
"description": "task item extension for tiptap",
|
"description": "task item extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,12 +29,12 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16",
|
"@tiptap/core": "^2.5.0",
|
||||||
"@tiptap/pm": "^2.5.0-pre.16"
|
"@tiptap/pm": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-task-list",
|
"name": "@tiptap/extension-task-list",
|
||||||
"description": "task list extension for tiptap",
|
"description": "task list extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-text-align",
|
"name": "@tiptap/extension-text-align",
|
||||||
"description": "text align extension for tiptap",
|
"description": "text align extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-text-style",
|
"name": "@tiptap/extension-text-style",
|
||||||
"description": "text style extension for tiptap",
|
"description": "text style extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-text",
|
"name": "@tiptap/extension-text",
|
||||||
"description": "text extension for tiptap",
|
"description": "text extension for tiptap",
|
||||||
"version": "2.5.0-pre.16",
|
"version": "2.5.0",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@ -29,10 +29,10 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.5.0-pre.16"
|
"@tiptap/core": "^2.5.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.5.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- Updated dependencies [fb45149]
|
||||||
|
- @tiptap/core@2.5.0
|
||||||
|
|
||||||
## 2.5.0-pre.16
|
## 2.5.0-pre.16
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user