mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-08 01:53:04 +08:00
chore(release): publish a new pre-release version
This commit is contained in:
parent
964df55551
commit
ff157042a3
@ -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,7 @@
|
||||
# Change Log
|
||||
|
||||
## 2.5.0
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
@ -7,868 +9,480 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.3.2](https://github.com/ueberdosis/tiptap/compare/v2.3.1...v2.3.2) (2024-05-08)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* NodePos querySelectorAll function ([#5094](https://github.com/ueberdosis/tiptap/issues/5094)) ([4900a27](https://github.com/ueberdosis/tiptap/commit/4900a27c5389d9a2d0d69f407ca3db0155304315))
|
||||
|
||||
|
||||
|
||||
|
||||
- NodePos querySelectorAll function ([#5094](https://github.com/ueberdosis/tiptap/issues/5094)) ([4900a27](https://github.com/ueberdosis/tiptap/commit/4900a27c5389d9a2d0d69f407ca3db0155304315))
|
||||
|
||||
## [2.3.1](https://github.com/ueberdosis/tiptap/compare/v2.3.0...v2.3.1) (2024-04-30)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.3.0](https://github.com/ueberdosis/tiptap/compare/v2.2.6...v2.3.0) (2024-04-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** fix nodepos child lookup ([#5038](https://github.com/ueberdosis/tiptap/issues/5038)) ([22ced31](https://github.com/ueberdosis/tiptap/commit/22ced318723003365fbfd8f59b8dac79c7563017))
|
||||
|
||||
- **core:** fix nodepos child lookup ([#5038](https://github.com/ueberdosis/tiptap/issues/5038)) ([22ced31](https://github.com/ueberdosis/tiptap/commit/22ced318723003365fbfd8f59b8dac79c7563017))
|
||||
|
||||
### Features
|
||||
|
||||
* **core:** apply input and paste rules when using insertContent methods ([#5046](https://github.com/ueberdosis/tiptap/issues/5046)) ([96b6abc](https://github.com/ueberdosis/tiptap/commit/96b6abcf6edbc6cac03a391130d9feebb6de3a04))
|
||||
|
||||
|
||||
|
||||
|
||||
- **core:** apply input and paste rules when using insertContent methods ([#5046](https://github.com/ueberdosis/tiptap/issues/5046)) ([96b6abc](https://github.com/ueberdosis/tiptap/commit/96b6abcf6edbc6cac03a391130d9feebb6de3a04))
|
||||
|
||||
## [2.2.6](https://github.com/ueberdosis/tiptap/compare/v2.2.5...v2.2.6) (2024-04-06)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.2.5](https://github.com/ueberdosis/tiptap/compare/v2.2.4...v2.2.5) (2024-04-05)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.2.4](https://github.com/ueberdosis/tiptap/compare/v2.2.3...v2.2.4) (2024-02-23)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.2.3](https://github.com/ueberdosis/tiptap/compare/v2.2.2...v2.2.3) (2024-02-15)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* fix test path ([21aa96d](https://github.com/ueberdosis/tiptap/commit/21aa96dee8deab1f439b7f655b8ed266a516a4cd))
|
||||
|
||||
|
||||
|
||||
|
||||
- fix test path ([21aa96d](https://github.com/ueberdosis/tiptap/commit/21aa96dee8deab1f439b7f655b8ed266a516a4cd))
|
||||
|
||||
## [2.2.2](https://github.com/ueberdosis/tiptap/compare/v2.2.1...v2.2.2) (2024-02-07)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.2.1](https://github.com/ueberdosis/tiptap/compare/v2.2.0...v2.2.1) (2024-01-31)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.2.0](https://github.com/ueberdosis/tiptap/compare/v2.1.16...v2.2.0) (2024-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** fix new lines being added via elementFromString ([#4767](https://github.com/ueberdosis/tiptap/issues/4767)) ([b7a2504](https://github.com/ueberdosis/tiptap/commit/b7a2504f16f46563537c890930cb2c332c256175))
|
||||
* fix imports, fix demos, unpin y-prosemirror ([681aa57](https://github.com/ueberdosis/tiptap/commit/681aa577bff500015c3f925e300c55a71c73efaf))
|
||||
* fix newline stripping via insertContent ([8954007](https://github.com/ueberdosis/tiptap/commit/8954007b2b92b040d69b26a0866ae58fabf5e512))
|
||||
|
||||
|
||||
- **core:** fix new lines being added via elementFromString ([#4767](https://github.com/ueberdosis/tiptap/issues/4767)) ([b7a2504](https://github.com/ueberdosis/tiptap/commit/b7a2504f16f46563537c890930cb2c332c256175))
|
||||
- fix imports, fix demos, unpin y-prosemirror ([681aa57](https://github.com/ueberdosis/tiptap/commit/681aa577bff500015c3f925e300c55a71c73efaf))
|
||||
- fix newline stripping via insertContent ([8954007](https://github.com/ueberdosis/tiptap/commit/8954007b2b92b040d69b26a0866ae58fabf5e512))
|
||||
|
||||
# [2.2.0-rc.8](https://github.com/ueberdosis/tiptap/compare/v2.1.14...v2.2.0-rc.8) (2024-01-08)
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.7](https://github.com/ueberdosis/tiptap/compare/v2.2.0-rc.6...v2.2.0-rc.7) (2023-11-27)
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.6](https://github.com/ueberdosis/tiptap/compare/v2.2.0-rc.5...v2.2.0-rc.6) (2023-11-23)
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.4](https://github.com/ueberdosis/tiptap/compare/v2.1.11...v2.2.0-rc.4) (2023-10-10)
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.3](https://github.com/ueberdosis/tiptap/compare/v2.2.0-rc.2...v2.2.0-rc.3) (2023-08-18)
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.1](https://github.com/ueberdosis/tiptap/compare/v2.2.0-rc.0...v2.2.0-rc.1) (2023-08-18)
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.0](https://github.com/ueberdosis/tiptap/compare/v2.1.5...v2.2.0-rc.0) (2023-08-18)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **placeholder:** allow editor-is-empty class on any node ([#4335](https://github.com/ueberdosis/tiptap/issues/4335)) ([ff929b1](https://github.com/ueberdosis/tiptap/commit/ff929b179de930619005a773bb4186ae2aa2ec58))
|
||||
|
||||
|
||||
|
||||
|
||||
- **placeholder:** allow editor-is-empty class on any node ([#4335](https://github.com/ueberdosis/tiptap/issues/4335)) ([ff929b1](https://github.com/ueberdosis/tiptap/commit/ff929b179de930619005a773bb4186ae2aa2ec58))
|
||||
|
||||
## [2.1.16](https://github.com/ueberdosis/tiptap/compare/v2.1.15...v2.1.16) (2024-01-10)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** fix new lines being added via elementFromString ([#4767](https://github.com/ueberdosis/tiptap/issues/4767)) ([2235908](https://github.com/ueberdosis/tiptap/commit/2235908c28f388eda041d1d5d017554d513fe909))
|
||||
|
||||
|
||||
|
||||
|
||||
- **core:** fix new lines being added via elementFromString ([#4767](https://github.com/ueberdosis/tiptap/issues/4767)) ([2235908](https://github.com/ueberdosis/tiptap/commit/2235908c28f388eda041d1d5d017554d513fe909))
|
||||
|
||||
## [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))
|
||||
|
||||
|
||||
|
||||
|
||||
- **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)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **typography:** require spaces after divisions to not break date formats ([#4696](https://github.com/ueberdosis/tiptap/issues/4696)) ([f6d7e00](https://github.com/ueberdosis/tiptap/commit/f6d7e00a746a67fa440a3fa0f5362295959873d2))
|
||||
|
||||
|
||||
|
||||
|
||||
- **typography:** require spaces after divisions to not break date formats ([#4696](https://github.com/ueberdosis/tiptap/issues/4696)) ([f6d7e00](https://github.com/ueberdosis/tiptap/commit/f6d7e00a746a67fa440a3fa0f5362295959873d2))
|
||||
|
||||
## [2.1.13](https://github.com/ueberdosis/tiptap/compare/v2.1.12...v2.1.13) (2023-11-30)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.12](https://github.com/ueberdosis/tiptap/compare/v2.1.11...v2.1.12) (2023-10-11)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.11](https://github.com/ueberdosis/tiptap/compare/v2.1.10...v2.1.11) (2023-09-20)
|
||||
|
||||
|
||||
### Reverts
|
||||
|
||||
* Revert "v2.2.11" ([6aa755a](https://github.com/ueberdosis/tiptap/commit/6aa755a04b9955fc175c7ab33dee527d0d5deef0))
|
||||
|
||||
|
||||
|
||||
|
||||
- Revert "v2.2.11" ([6aa755a](https://github.com/ueberdosis/tiptap/commit/6aa755a04b9955fc175c7ab33dee527d0d5deef0))
|
||||
|
||||
## [2.1.10](https://github.com/ueberdosis/tiptap/compare/v2.1.9...v2.1.10) (2023-09-15)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.9](https://github.com/ueberdosis/tiptap/compare/v2.1.8...v2.1.9) (2023-09-14)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.8](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.7...v2.1.8) (2023-09-04)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.7](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.6...v2.1.7) (2023-09-04)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.6](https://github.com/ueberdosis/tiptap/compare/v2.1.5...v2.1.6) (2023-08-18)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.2](https://github.com/ueberdosis/tiptap/compare/v2.1.6...v2.2.0-rc.2) (2023-08-18)
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.1](https://github.com/ueberdosis/tiptap/compare/v2.2.0-rc.0...v2.2.0-rc.1) (2023-08-18)
|
||||
|
||||
|
||||
|
||||
# [2.2.0-rc.0](https://github.com/ueberdosis/tiptap/compare/v2.1.5...v2.2.0-rc.0) (2023-08-18)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **placeholder:** allow editor-is-empty class on any node ([#4335](https://github.com/ueberdosis/tiptap/issues/4335)) ([ff929b1](https://github.com/ueberdosis/tiptap/commit/ff929b179de930619005a773bb4186ae2aa2ec58))
|
||||
|
||||
|
||||
|
||||
|
||||
- **placeholder:** allow editor-is-empty class on any node ([#4335](https://github.com/ueberdosis/tiptap/issues/4335)) ([ff929b1](https://github.com/ueberdosis/tiptap/commit/ff929b179de930619005a773bb4186ae2aa2ec58))
|
||||
|
||||
# [2.2.0-rc.1](https://github.com/ueberdosis/tiptap/compare/v2.2.0-rc.0...v2.2.0-rc.1) (2023-08-18)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
# [2.2.0-rc.0](https://github.com/ueberdosis/tiptap/compare/v2.1.5...v2.2.0-rc.0) (2023-08-18)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **placeholder:** allow editor-is-empty class on any node ([#4335](https://github.com/ueberdosis/tiptap/issues/4335)) ([ff929b1](https://github.com/ueberdosis/tiptap/commit/ff929b179de930619005a773bb4186ae2aa2ec58))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **placeholder:** allow editor-is-empty class on any node ([#4335](https://github.com/ueberdosis/tiptap/issues/4335)) ([ff929b1](https://github.com/ueberdosis/tiptap/commit/ff929b179de930619005a773bb4186ae2aa2ec58))
|
||||
|
||||
## [2.1.6](https://github.com/ueberdosis/tiptap/compare/v2.1.5...v2.1.6) (2023-08-18)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.5](https://github.com/ueberdosis/tiptap/compare/v2.1.4...v2.1.5) (2023-08-18)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.4](https://github.com/ueberdosis/tiptap/compare/v2.1.3...v2.1.4) (2023-08-18)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.3](https://github.com/ueberdosis/tiptap/compare/v2.1.2...v2.1.3) (2023-08-18)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [2.1.2](https://github.com/ueberdosis/tiptap/compare/v2.1.1...v2.1.2) (2023-08-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** fix error when merging class attributes ([#4340](https://github.com/ueberdosis/tiptap/issues/4340)) ([a251946](https://github.com/ueberdosis/tiptap/commit/a2519468589e2baa44901a66a3a06b24dc8626d6))
|
||||
|
||||
|
||||
|
||||
|
||||
- **core:** fix error when merging class attributes ([#4340](https://github.com/ueberdosis/tiptap/issues/4340)) ([a251946](https://github.com/ueberdosis/tiptap/commit/a2519468589e2baa44901a66a3a06b24dc8626d6))
|
||||
|
||||
## [2.1.1](https://github.com/ueberdosis/tiptap/compare/v2.1.0...v2.1.1) (2023-08-16)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.14...v2.1.0) (2023-08-16)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.14](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.13...v2.1.0-rc.14) (2023-08-11)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.13](https://github.com/ueberdosis/tiptap-workspace/compare/v2.0.4...v2.1.0-rc.13) (2023-08-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **demos:** add missing extensions ([6383fd5](https://github.com/ueberdosis/tiptap-workspace/commit/6383fd54080b2ad555286cd0e7c4ad880200200f))
|
||||
* **demos:** update deps ([05a2edf](https://github.com/ueberdosis/tiptap-workspace/commit/05a2edfc16e297effa86d1583fb1680be0320f25))
|
||||
* **strikethrough:** update strikethrough shortcut ([#4288](https://github.com/ueberdosis/tiptap-workspace/issues/4288)) ([fd35db4](https://github.com/ueberdosis/tiptap-workspace/commit/fd35db4d090d9fdfef1196fb1f6f858f13cf53d1))
|
||||
|
||||
|
||||
- **demos:** add missing extensions ([6383fd5](https://github.com/ueberdosis/tiptap-workspace/commit/6383fd54080b2ad555286cd0e7c4ad880200200f))
|
||||
- **demos:** update deps ([05a2edf](https://github.com/ueberdosis/tiptap-workspace/commit/05a2edfc16e297effa86d1583fb1680be0320f25))
|
||||
- **strikethrough:** update strikethrough shortcut ([#4288](https://github.com/ueberdosis/tiptap-workspace/issues/4288)) ([fd35db4](https://github.com/ueberdosis/tiptap-workspace/commit/fd35db4d090d9fdfef1196fb1f6f858f13cf53d1))
|
||||
|
||||
# [2.1.0-rc.12](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.11...v2.1.0-rc.12) (2023-07-14)
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.11](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.10...v2.1.0-rc.11) (2023-07-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **tests:** fix link rel tests ([c1d1854](https://github.com/ueberdosis/tiptap-workspace/commit/c1d18543b03b1fb6b99a2f3546aa5da10c919920))
|
||||
|
||||
|
||||
- **tests:** fix link rel tests ([c1d1854](https://github.com/ueberdosis/tiptap-workspace/commit/c1d18543b03b1fb6b99a2f3546aa5da10c919920))
|
||||
|
||||
# [2.1.0-rc.10](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.9...v2.1.0-rc.10) (2023-07-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **react:** check props.clientRect before creating ReactRenderer ([#4138](https://github.com/ueberdosis/tiptap-workspace/issues/4138)) ([d710846](https://github.com/ueberdosis/tiptap-workspace/commit/d710846ecb6a3059dfbc21300b9a4b887a8defa3))
|
||||
|
||||
|
||||
- **react:** check props.clientRect before creating ReactRenderer ([#4138](https://github.com/ueberdosis/tiptap-workspace/issues/4138)) ([d710846](https://github.com/ueberdosis/tiptap-workspace/commit/d710846ecb6a3059dfbc21300b9a4b887a8defa3))
|
||||
|
||||
# [2.1.0-rc.9](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.8...v2.1.0-rc.9) (2023-06-15)
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.8](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.7...v2.1.0-rc.8) (2023-05-25)
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.5](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.4...v2.1.0-rc.5) (2023-05-25)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add tiptap class ([614fc80](https://github.com/ueberdosis/tiptap-workspace/commit/614fc8082c376bf3c40a05c23ceda6b4a6fbf8d0))
|
||||
|
||||
|
||||
- add tiptap class ([614fc80](https://github.com/ueberdosis/tiptap-workspace/commit/614fc8082c376bf3c40a05c23ceda6b4a6fbf8d0))
|
||||
|
||||
# [2.1.0-rc.4](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.3...v2.1.0-rc.4) (2023-04-27)
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.3](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.2...v2.1.0-rc.3) (2023-04-26)
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.2](https://github.com/ueberdosis/tiptap-workspace/compare/v2.0.3...v2.1.0-rc.2) (2023-04-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extension-link:** fix link not being kept when pasting url with link ([#3975](https://github.com/ueberdosis/tiptap-workspace/issues/3975)) ([e7d7d49](https://github.com/ueberdosis/tiptap-workspace/commit/e7d7d496376c8c11e24c342e20bd179a6ea7dcee))
|
||||
|
||||
|
||||
- **extension-link:** fix link not being kept when pasting url with link ([#3975](https://github.com/ueberdosis/tiptap-workspace/issues/3975)) ([e7d7d49](https://github.com/ueberdosis/tiptap-workspace/commit/e7d7d496376c8c11e24c342e20bd179a6ea7dcee))
|
||||
|
||||
# [2.1.0-rc.1](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.0...v2.1.0-rc.1) (2023-04-12)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **bubble-menu:** fix debounce not working with collab/collaboration cursor ([#3956](https://github.com/ueberdosis/tiptap-workspace/issues/3956)) ([e8cef04](https://github.com/ueberdosis/tiptap-workspace/commit/e8cef0404b5039ec2657536976b8b31931afd337))
|
||||
|
||||
|
||||
- **bubble-menu:** fix debounce not working with collab/collaboration cursor ([#3956](https://github.com/ueberdosis/tiptap-workspace/issues/3956)) ([e8cef04](https://github.com/ueberdosis/tiptap-workspace/commit/e8cef0404b5039ec2657536976b8b31931afd337))
|
||||
|
||||
# [2.1.0-rc.0](https://github.com/ueberdosis/tiptap-workspace/compare/v2.0.2...v2.1.0-rc.0) (2023-04-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* clear nodes when cursor at start of empty isolating parent ([#3943](https://github.com/ueberdosis/tiptap-workspace/issues/3943)) ([7278ee2](https://github.com/ueberdosis/tiptap-workspace/commit/7278ee2b05de2f96efddf3b1dc3bfd3d52262cbb))
|
||||
* Update peerDependencies to fix lerna version tasks ([#3914](https://github.com/ueberdosis/tiptap-workspace/issues/3914)) ([0c1bba3](https://github.com/ueberdosis/tiptap-workspace/commit/0c1bba3137b535776bcef95ff3c55e13f5a2db46))
|
||||
|
||||
|
||||
|
||||
|
||||
- clear nodes when cursor at start of empty isolating parent ([#3943](https://github.com/ueberdosis/tiptap-workspace/issues/3943)) ([7278ee2](https://github.com/ueberdosis/tiptap-workspace/commit/7278ee2b05de2f96efddf3b1dc3bfd3d52262cbb))
|
||||
- Update peerDependencies to fix lerna version tasks ([#3914](https://github.com/ueberdosis/tiptap-workspace/issues/3914)) ([0c1bba3](https://github.com/ueberdosis/tiptap-workspace/commit/0c1bba3137b535776bcef95ff3c55e13f5a2db46))
|
||||
|
||||
# [2.1.0-rc.12](https://github.com/ueberdosis/tiptap-workspace/compare/v2.1.0-rc.11...v2.1.0-rc.12) (2023-07-14)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.11](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.10...v2.1.0-rc.11) (2023-07-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **tests:** fix link rel tests ([c1d1854](https://github.com/ueberdosis/tiptap/commit/c1d18543b03b1fb6b99a2f3546aa5da10c919920))
|
||||
|
||||
|
||||
|
||||
|
||||
- **tests:** fix link rel tests ([c1d1854](https://github.com/ueberdosis/tiptap/commit/c1d18543b03b1fb6b99a2f3546aa5da10c919920))
|
||||
|
||||
# [2.1.0-rc.10](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.9...v2.1.0-rc.10) (2023-07-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **react:** check props.clientRect before creating ReactRenderer ([#4138](https://github.com/ueberdosis/tiptap/issues/4138)) ([d710846](https://github.com/ueberdosis/tiptap/commit/d710846ecb6a3059dfbc21300b9a4b887a8defa3))
|
||||
|
||||
|
||||
|
||||
|
||||
- **react:** check props.clientRect before creating ReactRenderer ([#4138](https://github.com/ueberdosis/tiptap/issues/4138)) ([d710846](https://github.com/ueberdosis/tiptap/commit/d710846ecb6a3059dfbc21300b9a4b887a8defa3))
|
||||
|
||||
# [2.1.0-rc.9](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.8...v2.1.0-rc.9) (2023-06-15)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.8](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.7...v2.1.0-rc.8) (2023-05-25)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.7](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.6...v2.1.0-rc.7) (2023-05-25)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.6](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.5...v2.1.0-rc.6) (2023-05-25)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.5](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.4...v2.1.0-rc.5) (2023-05-25)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add tiptap class ([614fc80](https://github.com/ueberdosis/tiptap/commit/614fc8082c376bf3c40a05c23ceda6b4a6fbf8d0))
|
||||
|
||||
|
||||
|
||||
|
||||
- add tiptap class ([614fc80](https://github.com/ueberdosis/tiptap/commit/614fc8082c376bf3c40a05c23ceda6b4a6fbf8d0))
|
||||
|
||||
# [2.1.0-rc.4](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.3...v2.1.0-rc.4) (2023-04-27)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.3](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.2...v2.1.0-rc.3) (2023-04-26)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.1.0-rc.2](https://github.com/ueberdosis/tiptap/compare/v2.0.3...v2.1.0-rc.2) (2023-04-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extension-link:** fix link not being kept when pasting url with link ([#3975](https://github.com/ueberdosis/tiptap/issues/3975)) ([e7d7d49](https://github.com/ueberdosis/tiptap/commit/e7d7d496376c8c11e24c342e20bd179a6ea7dcee))
|
||||
|
||||
|
||||
- **extension-link:** fix link not being kept when pasting url with link ([#3975](https://github.com/ueberdosis/tiptap/issues/3975)) ([e7d7d49](https://github.com/ueberdosis/tiptap/commit/e7d7d496376c8c11e24c342e20bd179a6ea7dcee))
|
||||
|
||||
# [2.1.0-rc.1](https://github.com/ueberdosis/tiptap/compare/v2.1.0-rc.0...v2.1.0-rc.1) (2023-04-12)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **bubble-menu:** fix debounce not working with collab/collaboration cursor ([#3956](https://github.com/ueberdosis/tiptap/issues/3956)) ([e8cef04](https://github.com/ueberdosis/tiptap/commit/e8cef0404b5039ec2657536976b8b31931afd337))
|
||||
|
||||
|
||||
- **bubble-menu:** fix debounce not working with collab/collaboration cursor ([#3956](https://github.com/ueberdosis/tiptap/issues/3956)) ([e8cef04](https://github.com/ueberdosis/tiptap/commit/e8cef0404b5039ec2657536976b8b31931afd337))
|
||||
|
||||
# [2.1.0-rc.0](https://github.com/ueberdosis/tiptap/compare/v2.0.2...v2.1.0-rc.0) (2023-04-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* clear nodes when cursor at start of empty isolating parent ([#3943](https://github.com/ueberdosis/tiptap/issues/3943)) ([7278ee2](https://github.com/ueberdosis/tiptap/commit/7278ee2b05de2f96efddf3b1dc3bfd3d52262cbb))
|
||||
* Update peerDependencies to fix lerna version tasks ([#3914](https://github.com/ueberdosis/tiptap/issues/3914)) ([0c1bba3](https://github.com/ueberdosis/tiptap/commit/0c1bba3137b535776bcef95ff3c55e13f5a2db46))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- clear nodes when cursor at start of empty isolating parent ([#3943](https://github.com/ueberdosis/tiptap/issues/3943)) ([7278ee2](https://github.com/ueberdosis/tiptap/commit/7278ee2b05de2f96efddf3b1dc3bfd3d52262cbb))
|
||||
- Update peerDependencies to fix lerna version tasks ([#3914](https://github.com/ueberdosis/tiptap/issues/3914)) ([0c1bba3](https://github.com/ueberdosis/tiptap/commit/0c1bba3137b535776bcef95ff3c55e13f5a2db46))
|
||||
|
||||
# [2.1.0-rc.0](https://github.com/ueberdosis/tiptap/compare/v2.0.2...v2.1.0-rc.0) (2023-04-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* clear nodes when cursor at start of empty isolating parent ([#3943](https://github.com/ueberdosis/tiptap/issues/3943)) ([7278ee2](https://github.com/ueberdosis/tiptap/commit/7278ee2b05de2f96efddf3b1dc3bfd3d52262cbb))
|
||||
* **bubble-menu:** fix debounce not working with collab/collaboration cursor ([#3956](https://github.com/ueberdosis/tiptap/issues/3956)) ([a78f8cd](https://github.com/ueberdosis/tiptap/commit/a78f8cd9646008e4db938fa3c22b0714c8bb5849))
|
||||
|
||||
|
||||
|
||||
- clear nodes when cursor at start of empty isolating parent ([#3943](https://github.com/ueberdosis/tiptap/issues/3943)) ([7278ee2](https://github.com/ueberdosis/tiptap/commit/7278ee2b05de2f96efddf3b1dc3bfd3d52262cbb))
|
||||
- **bubble-menu:** fix debounce not working with collab/collaboration cursor ([#3956](https://github.com/ueberdosis/tiptap/issues/3956)) ([a78f8cd](https://github.com/ueberdosis/tiptap/commit/a78f8cd9646008e4db938fa3c22b0714c8bb5849))
|
||||
|
||||
## [2.0.3](https://github.com/ueberdosis/tiptap/compare/v2.0.2...v2.0.3) (2023-04-13)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **bubble-menu:** fix debounce not working with collab/collaboration cursor ([#3956](https://github.com/ueberdosis/tiptap/issues/3956)) ([e8cef04](https://github.com/ueberdosis/tiptap/commit/e8cef0404b5039ec2657536976b8b31931afd337))
|
||||
|
||||
|
||||
|
||||
|
||||
- **bubble-menu:** fix debounce not working with collab/collaboration cursor ([#3956](https://github.com/ueberdosis/tiptap/issues/3956)) ([e8cef04](https://github.com/ueberdosis/tiptap/commit/e8cef0404b5039ec2657536976b8b31931afd337))
|
||||
|
||||
## [2.0.2](https://github.com/ueberdosis/tiptap/compare/v2.0.1...v2.0.2) (2023-04-03)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add box-shadow to collab demo ([c5496c1](https://github.com/ueberdosis/tiptap/commit/c5496c1b27783150dafb5ebdf6bda43648a46316))
|
||||
* landingpage demo ([#3925](https://github.com/ueberdosis/tiptap/issues/3925)) ([958925f](https://github.com/ueberdosis/tiptap/commit/958925f2560ca786cd0cf52b83b7ae51deb7dd77))
|
||||
* Tiptap collab demo styling ([87840b0](https://github.com/ueberdosis/tiptap/commit/87840b0f0821ca65d9f104d9c90512021aa70113))
|
||||
|
||||
|
||||
|
||||
|
||||
- add box-shadow to collab demo ([c5496c1](https://github.com/ueberdosis/tiptap/commit/c5496c1b27783150dafb5ebdf6bda43648a46316))
|
||||
- landingpage demo ([#3925](https://github.com/ueberdosis/tiptap/issues/3925)) ([958925f](https://github.com/ueberdosis/tiptap/commit/958925f2560ca786cd0cf52b83b7ae51deb7dd77))
|
||||
- Tiptap collab demo styling ([87840b0](https://github.com/ueberdosis/tiptap/commit/87840b0f0821ca65d9f104d9c90512021aa70113))
|
||||
|
||||
## [2.0.1](https://github.com/ueberdosis/tiptap/compare/v2.0.0...v2.0.1) (2023-03-30)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Update peerDependencies to fix lerna version tasks ([#3914](https://github.com/ueberdosis/tiptap/issues/3914)) ([0534f76](https://github.com/ueberdosis/tiptap/commit/0534f76401bf5399c01ca7f39d87f7221d91b4f7))
|
||||
|
||||
|
||||
|
||||
|
||||
- Update peerDependencies to fix lerna version tasks ([#3914](https://github.com/ueberdosis/tiptap/issues/3914)) ([0534f76](https://github.com/ueberdosis/tiptap/commit/0534f76401bf5399c01ca7f39d87f7221d91b4f7))
|
||||
|
||||
# [2.0.0-beta.220](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.219...v2.0.0-beta.220) (2023-02-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** fix destroyed view causing errors on dispatchTransaction ([#3799](https://github.com/ueberdosis/tiptap/issues/3799)) ([3c07ca0](https://github.com/ueberdosis/tiptap/commit/3c07ca0b9c48cef60d56acdd44812e20e05fc928))
|
||||
* **tests:** fix tests for lists ([02eec8a](https://github.com/ueberdosis/tiptap/commit/02eec8aaefc2709dc20f91c3c8f9eca84cddc12d))
|
||||
|
||||
|
||||
|
||||
|
||||
- **core:** fix destroyed view causing errors on dispatchTransaction ([#3799](https://github.com/ueberdosis/tiptap/issues/3799)) ([3c07ca0](https://github.com/ueberdosis/tiptap/commit/3c07ca0b9c48cef60d56acdd44812e20e05fc928))
|
||||
- **tests:** fix tests for lists ([02eec8a](https://github.com/ueberdosis/tiptap/commit/02eec8aaefc2709dc20f91c3c8f9eca84cddc12d))
|
||||
|
||||
# [2.0.0-beta.219](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.218...v2.0.0-beta.219) (2023-02-27)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** allow insertContentAt and insertContent text node arrays ([#3790](https://github.com/ueberdosis/tiptap/issues/3790)) ([0300630](https://github.com/ueberdosis/tiptap/commit/0300630a5b04b61d4eef8155f24ca0ef2d683966))
|
||||
|
||||
- **core:** allow insertContentAt and insertContent text node arrays ([#3790](https://github.com/ueberdosis/tiptap/issues/3790)) ([0300630](https://github.com/ueberdosis/tiptap/commit/0300630a5b04b61d4eef8155f24ca0ef2d683966))
|
||||
|
||||
### Features
|
||||
|
||||
* [#3540](https://github.com/ueberdosis/tiptap/issues/3540) Ability to preserve marks on lists ([#3541](https://github.com/ueberdosis/tiptap/issues/3541)) ([36bb1e1](https://github.com/ueberdosis/tiptap/commit/36bb1e1041f91da6437272e7196702df868eae0f))
|
||||
|
||||
|
||||
|
||||
|
||||
- [#3540](https://github.com/ueberdosis/tiptap/issues/3540) Ability to preserve marks on lists ([#3541](https://github.com/ueberdosis/tiptap/issues/3541)) ([36bb1e1](https://github.com/ueberdosis/tiptap/commit/36bb1e1041f91da6437272e7196702df868eae0f))
|
||||
|
||||
# [2.0.0-beta.218](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.217...v2.0.0-beta.218) (2023-02-18)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.217](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.216...v2.0.0-beta.217) (2023-02-09)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.216](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.215...v2.0.0-beta.216) (2023-02-08)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.215](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.214...v2.0.0-beta.215) (2023-02-08)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.214](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.213...v2.0.0-beta.214) (2023-02-08)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.213](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.212...v2.0.0-beta.213) (2023-02-07)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.212](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.211...v2.0.0-beta.212) (2023-02-03)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.211](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.210...v2.0.0-beta.211) (2023-02-02)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.210](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.209...v2.0.0-beta.210) (2023-02-02)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **pm:** new prosemirror package for dependency resolving ([f387ad3](https://github.com/ueberdosis/tiptap/commit/f387ad3dd4c2b30eaea33fb0ba0b42e0cd39263b))
|
||||
|
||||
|
||||
|
||||
|
||||
- **pm:** new prosemirror package for dependency resolving ([f387ad3](https://github.com/ueberdosis/tiptap/commit/f387ad3dd4c2b30eaea33fb0ba0b42e0cd39263b))
|
||||
|
||||
# [2.0.0-beta.209](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.208...v2.0.0-beta.209) (2022-12-16)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.208](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.207...v2.0.0-beta.208) (2022-12-16)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.207](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.206...v2.0.0-beta.207) (2022-12-08)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.206](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.205...v2.0.0-beta.206) (2022-12-08)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.205](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.204...v2.0.0-beta.205) (2022-12-05)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.204](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.203...v2.0.0-beta.204) (2022-11-25)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **tests:** fix autolink validation test ([5150095](https://github.com/ueberdosis/tiptap/commit/5150095c6b510c080f4aa35f54d2387543f86da8))
|
||||
|
||||
|
||||
|
||||
|
||||
- **tests:** fix autolink validation test ([5150095](https://github.com/ueberdosis/tiptap/commit/5150095c6b510c080f4aa35f54d2387543f86da8))
|
||||
|
||||
# [2.0.0-beta.203](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.202...v2.0.0-beta.203) (2022-11-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extension/table:** move dependency from @_ueberdosis to [@tiptap](https://github.com/tiptap) ([#3448](https://github.com/ueberdosis/tiptap/issues/3448)) ([31c3a9a](https://github.com/ueberdosis/tiptap/commit/31c3a9aad9eb37f445eadcd27135611291178ca6))
|
||||
|
||||
|
||||
|
||||
|
||||
- **extension/table:** move dependency from @\_ueberdosis to [@tiptap](https://github.com/tiptap) ([#3448](https://github.com/ueberdosis/tiptap/issues/3448)) ([31c3a9a](https://github.com/ueberdosis/tiptap/commit/31c3a9aad9eb37f445eadcd27135611291178ca6))
|
||||
|
||||
# [2.0.0-beta.202](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.201...v2.0.0-beta.202) (2022-11-04)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.201](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.200...v2.0.0-beta.201) (2022-11-04)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.200](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.199...v2.0.0-beta.200) (2022-11-04)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.199](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.198...v2.0.0-beta.199) (2022-09-30)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.198](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.197...v2.0.0-beta.198) (2022-09-29)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.197](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.196...v2.0.0-beta.197) (2022-09-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** Can() does not work for setting marks ([#3223](https://github.com/ueberdosis/tiptap/issues/3223)) ([17a41da](https://github.com/ueberdosis/tiptap/commit/17a41da5a7a14879cf490c81914084791c4c494c))
|
||||
|
||||
|
||||
|
||||
|
||||
- **core:** Can() does not work for setting marks ([#3223](https://github.com/ueberdosis/tiptap/issues/3223)) ([17a41da](https://github.com/ueberdosis/tiptap/commit/17a41da5a7a14879cf490c81914084791c4c494c))
|
||||
|
||||
# [2.0.0-beta.196](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.195...v2.0.0-beta.196) (2022-09-20)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.195](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.194...v2.0.0-beta.195) (2022-09-14)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extension/bubble-menu:** :bug: fix bubble menu and floating menu being available when editor not editable ([#3195](https://github.com/ueberdosis/tiptap/issues/3195)) ([fa96749](https://github.com/ueberdosis/tiptap/commit/fa96749ce22ec67125da491cfeeb38623b9f0d6e))
|
||||
|
||||
|
||||
|
||||
|
||||
- **extension/bubble-menu:** :bug: fix bubble menu and floating menu being available when editor not editable ([#3195](https://github.com/ueberdosis/tiptap/issues/3195)) ([fa96749](https://github.com/ueberdosis/tiptap/commit/fa96749ce22ec67125da491cfeeb38623b9f0d6e))
|
||||
|
||||
# [2.0.0-beta.194](https://github.com/ueberdosis/tiptap/compare/v2.0.0-beta.193...v2.0.0-beta.194) (2022-09-11)
|
||||
|
||||
**Note:** Version bump only for package tiptap-demos
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.0.0-beta.193](https://github.com/ueberdosis/tiptap/compare/v0.1.2...v2.0.0-beta.193) (2022-09-10)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump documents ([43611ea](https://github.com/ueberdosis/tiptap/commit/43611ea2e70d3dc66ff907ba7ca377bf74814543))
|
||||
* disable broken tests for experiements with further todo message ([b8ae9e2](https://github.com/ueberdosis/tiptap/commit/b8ae9e27622857093c6ca539901956da5cc291e5))
|
||||
* don’t check for active node in wrapIn command, fix [#1059](https://github.com/ueberdosis/tiptap/issues/1059) ([170ec4b](https://github.com/ueberdosis/tiptap/commit/170ec4be5b3c8362890ca3100a223b505f788381))
|
||||
* **extension/collaboration:** :ambulance: pin y-prosemirror version to 1.0.20 to fix broken functionality with vue ([5989f3b](https://github.com/ueberdosis/tiptap/commit/5989f3b780bb64b2884d81dcd41a95d98a0714b2))
|
||||
* fix RangeError bug when selecting all text, fix [#2490](https://github.com/ueberdosis/tiptap/issues/2490) ([70422dd](https://github.com/ueberdosis/tiptap/commit/70422dd107ed1ecdd8dfe41a8a93297124d2f1e0))
|
||||
* **maintainment:** fix cjs issues with prosemirror-tables ([eb92597](https://github.com/ueberdosis/tiptap/commit/eb925976038fbf59f6ba333ccc57ea84113da00e))
|
||||
* remove some magic strings ([6c34dec](https://github.com/ueberdosis/tiptap/commit/6c34dec33ac39c9f037a0a72e4525f3fc6d422bf))
|
||||
* **suggestion:** :bug: make clientrect prop optional as it can potentially be undefined ([#2813](https://github.com/ueberdosis/tiptap/issues/2813)) ([f019f70](https://github.com/ueberdosis/tiptap/commit/f019f70a19c34715e2d5c3921d348e11c7ac51a3)), closes [#2795](https://github.com/ueberdosis/tiptap/issues/2795)
|
||||
* temp fix collaboration demo ([4528756](https://github.com/ueberdosis/tiptap/commit/45287563f3cfb389095a2794cb2001d65e56d633))
|
||||
|
||||
- bump documents ([43611ea](https://github.com/ueberdosis/tiptap/commit/43611ea2e70d3dc66ff907ba7ca377bf74814543))
|
||||
- disable broken tests for experiements with further todo message ([b8ae9e2](https://github.com/ueberdosis/tiptap/commit/b8ae9e27622857093c6ca539901956da5cc291e5))
|
||||
- don’t check for active node in wrapIn command, fix [#1059](https://github.com/ueberdosis/tiptap/issues/1059) ([170ec4b](https://github.com/ueberdosis/tiptap/commit/170ec4be5b3c8362890ca3100a223b505f788381))
|
||||
- **extension/collaboration:** :ambulance: pin y-prosemirror version to 1.0.20 to fix broken functionality with vue ([5989f3b](https://github.com/ueberdosis/tiptap/commit/5989f3b780bb64b2884d81dcd41a95d98a0714b2))
|
||||
- fix RangeError bug when selecting all text, fix [#2490](https://github.com/ueberdosis/tiptap/issues/2490) ([70422dd](https://github.com/ueberdosis/tiptap/commit/70422dd107ed1ecdd8dfe41a8a93297124d2f1e0))
|
||||
- **maintainment:** fix cjs issues with prosemirror-tables ([eb92597](https://github.com/ueberdosis/tiptap/commit/eb925976038fbf59f6ba333ccc57ea84113da00e))
|
||||
- remove some magic strings ([6c34dec](https://github.com/ueberdosis/tiptap/commit/6c34dec33ac39c9f037a0a72e4525f3fc6d422bf))
|
||||
- **suggestion:** :bug: make clientrect prop optional as it can potentially be undefined ([#2813](https://github.com/ueberdosis/tiptap/issues/2813)) ([f019f70](https://github.com/ueberdosis/tiptap/commit/f019f70a19c34715e2d5c3921d348e11c7ac51a3)), closes [#2795](https://github.com/ueberdosis/tiptap/issues/2795)
|
||||
- temp fix collaboration demo ([4528756](https://github.com/ueberdosis/tiptap/commit/45287563f3cfb389095a2794cb2001d65e56d633))
|
||||
|
||||
### Features
|
||||
|
||||
* Add extension storage ([#2069](https://github.com/ueberdosis/tiptap/issues/2069)) ([7ffabf2](https://github.com/ueberdosis/tiptap/commit/7ffabf251c408a652eec1931cc78a8bd43cccb67))
|
||||
* add getText() and generateText() methods (fix [#1428](https://github.com/ueberdosis/tiptap/issues/1428)) ([#1875](https://github.com/ueberdosis/tiptap/issues/1875)) ([fe6a3e7](https://github.com/ueberdosis/tiptap/commit/fe6a3e7491f6a42123d3d8a92ab588f2a40d7799))
|
||||
* add some improvements to `CharacterCount` extension ([#2256](https://github.com/ueberdosis/tiptap/issues/2256)), fix [#1049](https://github.com/ueberdosis/tiptap/issues/1049), fix [#1550](https://github.com/ueberdosis/tiptap/issues/1550), fix [#1839](https://github.com/ueberdosis/tiptap/issues/1839), fix [#2245](https://github.com/ueberdosis/tiptap/issues/2245) ([5daa870](https://github.com/ueberdosis/tiptap/commit/5daa870b0906f0387fe07041681bc6f5b3774617))
|
||||
* Add support for autolink ([#2226](https://github.com/ueberdosis/tiptap/issues/2226)) ([3d68981](https://github.com/ueberdosis/tiptap/commit/3d68981b47d087fff40549d2143eb952fc9e0a50))
|
||||
* **extension-link:** :sparkles: add validate option to link extension ([23e67ad](https://github.com/ueberdosis/tiptap/commit/23e67adfa730df7364bc31220d0ed0e8ea522593)), closes [#2779](https://github.com/ueberdosis/tiptap/issues/2779)
|
||||
* **extension/youtube:** :sparkles: new youtube embed extension ([#2814](https://github.com/ueberdosis/tiptap/issues/2814)) ([1c0554b](https://github.com/ueberdosis/tiptap/commit/1c0554b7c06d80145274353e58d56608b097fbe4))
|
||||
* Integrate input rules and paste rules into the core ([#1997](https://github.com/ueberdosis/tiptap/issues/1997)) ([723b955](https://github.com/ueberdosis/tiptap/commit/723b955cecc5c92c8aad897ce16c60fb62976571))
|
||||
* parseHTML for attributes should return the value instead of an object now, fix [#1863](https://github.com/ueberdosis/tiptap/issues/1863) ([8a3b47a](https://github.com/ueberdosis/tiptap/commit/8a3b47a529d28b28b50d634c6ff69b8e5aad3080))
|
||||
- Add extension storage ([#2069](https://github.com/ueberdosis/tiptap/issues/2069)) ([7ffabf2](https://github.com/ueberdosis/tiptap/commit/7ffabf251c408a652eec1931cc78a8bd43cccb67))
|
||||
- add getText() and generateText() methods (fix [#1428](https://github.com/ueberdosis/tiptap/issues/1428)) ([#1875](https://github.com/ueberdosis/tiptap/issues/1875)) ([fe6a3e7](https://github.com/ueberdosis/tiptap/commit/fe6a3e7491f6a42123d3d8a92ab588f2a40d7799))
|
||||
- add some improvements to `CharacterCount` extension ([#2256](https://github.com/ueberdosis/tiptap/issues/2256)), fix [#1049](https://github.com/ueberdosis/tiptap/issues/1049), fix [#1550](https://github.com/ueberdosis/tiptap/issues/1550), fix [#1839](https://github.com/ueberdosis/tiptap/issues/1839), fix [#2245](https://github.com/ueberdosis/tiptap/issues/2245) ([5daa870](https://github.com/ueberdosis/tiptap/commit/5daa870b0906f0387fe07041681bc6f5b3774617))
|
||||
- Add support for autolink ([#2226](https://github.com/ueberdosis/tiptap/issues/2226)) ([3d68981](https://github.com/ueberdosis/tiptap/commit/3d68981b47d087fff40549d2143eb952fc9e0a50))
|
||||
- **extension-link:** :sparkles: add validate option to link extension ([23e67ad](https://github.com/ueberdosis/tiptap/commit/23e67adfa730df7364bc31220d0ed0e8ea522593)), closes [#2779](https://github.com/ueberdosis/tiptap/issues/2779)
|
||||
- **extension/youtube:** :sparkles: new youtube embed extension ([#2814](https://github.com/ueberdosis/tiptap/issues/2814)) ([1c0554b](https://github.com/ueberdosis/tiptap/commit/1c0554b7c06d80145274353e58d56608b097fbe4))
|
||||
- Integrate input rules and paste rules into the core ([#1997](https://github.com/ueberdosis/tiptap/issues/1997)) ([723b955](https://github.com/ueberdosis/tiptap/commit/723b955cecc5c92c8aad897ce16c60fb62976571))
|
||||
- parseHTML for attributes should return the value instead of an object now, fix [#1863](https://github.com/ueberdosis/tiptap/issues/1863) ([8a3b47a](https://github.com/ueberdosis/tiptap/commit/8a3b47a529d28b28b50d634c6ff69b8e5aad3080))
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tiptap-demos",
|
||||
"version": "2.5.0-beta.2",
|
||||
"version": "2.5.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 14a00f4: Made some minor changes to how packages are built
|
||||
- fcf5eee: When `parseOptions.whitespace === 'full' or parseOptions.whitespace === true` setting content will no longer strip whitespaces on setContent
|
||||
- fcf5eee: Faster performance for checking if a node is empty and if something is a fragment
|
||||
- 509676e: 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@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/core",
|
||||
"description": "headless rich text editor",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,10 +32,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-blockquote",
|
||||
"description": "blockquote extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bold",
|
||||
"description": "bold extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bubble-menu",
|
||||
"description": "bubble-menu extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -38,12 +38,12 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -rf dist",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-bullet-list",
|
||||
"description": "bullet list extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-character-count",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/extension-code-block@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block-lowlight",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,14 +29,14 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/extension-code-block": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/extension-code-block": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/extension-code-block": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/extension-code-block": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code-block",
|
||||
"description": "code block extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-code",
|
||||
"description": "code extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration-cursor",
|
||||
"description": "collaboration cursor extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,11 +29,11 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"y-prosemirror": "^1.2.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"y-prosemirror": "^1.2.6"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,5 +1,20 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- fcf5eee: Add `ySyncOptions` property to `@tiptap/extension-collaboration` to allow passing options directly to y-prosemirror's plugin
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-collaboration",
|
||||
"description": "collaboration extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,13 +29,13 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16",
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0",
|
||||
"y-prosemirror": "^1.2.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16",
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0",
|
||||
"y-prosemirror": "^1.2.6"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/extension-text-style@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-color",
|
||||
"description": "text color extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/extension-text-style": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/extension-text-style": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/extension-text-style": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/extension-text-style": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-document",
|
||||
"description": "document extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-dropcursor",
|
||||
"description": "dropcursor extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-floating-menu",
|
||||
"description": "floating-menu extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"tippy.js": "^6.3.7"
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-focus",
|
||||
"description": "focus extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/extension-text-style@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-font-family",
|
||||
"description": "font family extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/extension-text-style": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/extension-text-style": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/extension-text-style": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/extension-text-style": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-gapcursor",
|
||||
"description": "gapcursor extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-hard-break",
|
||||
"description": "hard break extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-heading",
|
||||
"description": "heading extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-highlight",
|
||||
"description": "highlight extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-history",
|
||||
"description": "history extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-horizontal-rule",
|
||||
"description": "horizontal rule extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-image",
|
||||
"description": "image extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-italic",
|
||||
"description": "italic extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-link",
|
||||
"description": "link extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -32,12 +32,12 @@
|
||||
"linkifyjs": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-item",
|
||||
"description": "list item extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-list-keymap",
|
||||
"description": "list keymap extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
- @tiptap/suggestion@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-mention",
|
||||
"description": "mention extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,14 +29,14 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16",
|
||||
"@tiptap/suggestion": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0",
|
||||
"@tiptap/suggestion": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16",
|
||||
"@tiptap/suggestion": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0",
|
||||
"@tiptap/suggestion": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-ordered-list",
|
||||
"description": "ordered list extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-paragraph",
|
||||
"description": "paragraph extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 89fefab: Placeholders can now handle more complex default content
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-placeholder",
|
||||
"description": "placeholder extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-strike",
|
||||
"description": "strike extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-subscript",
|
||||
"description": "subscript extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-superscript",
|
||||
"description": "superscript extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-cell",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-header",
|
||||
"description": "table cell extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table-row",
|
||||
"description": "table row extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-table",
|
||||
"description": "table extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
- @tiptap/pm@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-item",
|
||||
"description": "task item extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,12 +29,12 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16",
|
||||
"@tiptap/pm": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0",
|
||||
"@tiptap/pm": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-task-list",
|
||||
"description": "task list extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-align",
|
||||
"description": "text align extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@tiptap/extension-text-style",
|
||||
"description": "text style extension for tiptap",
|
||||
"version": "2.5.0-pre.16",
|
||||
"version": "3.0.0",
|
||||
"homepage": "https://tiptap.dev",
|
||||
"keywords": [
|
||||
"tiptap",
|
||||
@ -29,10 +29,10 @@
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tiptap/core": "^2.5.0-pre.16"
|
||||
"@tiptap/core": "^3.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [14a00f4]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [fcf5eee]
|
||||
- Updated dependencies [509676e]
|
||||
- @tiptap/core@3.0.0
|
||||
|
||||
## 2.5.0-pre.16
|
||||
|
||||
### 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