Merge branch 'main' into feature/landingpage

This commit is contained in:
Philipp Kühn 2021-01-29 23:07:18 +01:00
commit d9ac648fb7
91 changed files with 426 additions and 72 deletions

View File

@ -16,7 +16,7 @@ Were looking for your feedback to improve tiptap 2 before the first public re
* Create issues on GitHub! [Link](https://github.com/ueberdosis/tiptap-next/issues)
* Send an email! [humans@tiptap.dev](mailto:humans@tiptap.dev)
* Follow us on Twitter! [@hanspagel](https://twitter.com/hanspagel) [@_philippkuehn](https://twitter.com/_philippkuehn)
* Follow us on Twitter! [@tiptap_editor](https://twitter.com/tiptap_editor) [@hanspagel](https://twitter.com/hanspagel) [@_philippkuehn](https://twitter.com/_philippkuehn)
## Why we built tiptap
We were looking for a text editor for [Vue.js](https://github.com/vuejs/vue) and found some solutions that didnt really satisfy us. An editor should be easy to extend and not based on old dependencies such as jQuery. For React there is already a great editor called [Slate.js](https://github.com/ianstormtaylor/slate), which impresses with its modularity. We came across [ProseMirror](https://github.com/prosemirror) and decided to build on it. ProseMirror is a toolkit for building rich text editors that are already in use at many well-known companies such as *Atlassian* or *New York Times*.

View File

@ -71,7 +71,7 @@
<script>
import {
Editor, EditorContent, defaultExtensions, Extension,
Editor, EditorContent, defaultExtensions,
} from '@tiptap/vue-starter-kit'
export default {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.14](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/core@2.0.0-alpha.13...@tiptap/core@2.0.0-alpha.14) (2021-01-29)
**Note:** Version bump only for package @tiptap/core
# [2.0.0-alpha.13](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/core@2.0.0-alpha.12...@tiptap/core@2.0.0-alpha.13) (2021-01-29)
**Note:** Version bump only for package @tiptap/core

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/core",
"description": "headless rich text editor",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.14",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -0,0 +1,10 @@
// see: https://github.com/mesqueeb/is-what/blob/88d6e4ca92fb2baab6003c54e02eedf4e729e5ab/src/index.ts
function getType(payload: any): string {
return Object.prototype.toString.call(payload).slice(8, -1)
}
export default function isPlainObject(payload: any): payload is Record<string, any> {
if (getType(payload) !== 'Object') return false
return payload.constructor === Object && Object.getPrototypeOf(payload) === Object.prototype
}

View File

@ -1,12 +1,12 @@
import { AnyObject } from '../types'
import isObject from './isObject'
import isPlainObject from './isPlainObject'
export default function mergeDeep(target: AnyObject, source: AnyObject): AnyObject {
const output = { ...target }
if (isObject(target) && isObject(source)) {
if (isPlainObject(target) && isPlainObject(source)) {
Object.keys(source).forEach(key => {
if (isObject(source[key])) {
if (isPlainObject(source[key])) {
if (!(key in target)) {
Object.assign(output, { [key]: source[key] })
} else {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-blockquote@2.0.0-alpha.7...@tiptap/extension-blockquote@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-blockquote
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-blockquote@2.0.0-alpha.6...@tiptap/extension-blockquote@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-blockquote

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-blockquote",
"description": "blockquote extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bold@2.0.0-alpha.7...@tiptap/extension-bold@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-bold
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bold@2.0.0-alpha.6...@tiptap/extension-bold@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-bold

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-bold",
"description": "bold extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bullet-list@2.0.0-alpha.7...@tiptap/extension-bullet-list@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-bullet-list
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bullet-list@2.0.0-alpha.6...@tiptap/extension-bullet-list@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-bullet-list

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-bullet-list",
"description": "bullet list extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-character-count@2.0.0-alpha.7...@tiptap/extension-character-count@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-character-count
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-character-count@2.0.0-alpha.6...@tiptap/extension-character-count@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-character-count

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-character-count",
"description": "font family extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code-block@2.0.0-alpha.7...@tiptap/extension-code-block@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-code-block
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code-block@2.0.0-alpha.6...@tiptap/extension-code-block@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-code-block

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-code-block",
"description": "code block extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code@2.0.0-alpha.7...@tiptap/extension-code@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-code
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code@2.0.0-alpha.6...@tiptap/extension-code@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-code

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-code",
"description": "code extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration-cursor@2.0.0-alpha.7...@tiptap/extension-collaboration-cursor@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration-cursor@2.0.0-alpha.6...@tiptap/extension-collaboration-cursor@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-collaboration-cursor",
"description": "collaboration cursor extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration@2.0.0-alpha.7...@tiptap/extension-collaboration@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-collaboration
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration@2.0.0-alpha.6...@tiptap/extension-collaboration@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-collaboration

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-collaboration",
"description": "collaboration extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-document@2.0.0-alpha.7...@tiptap/extension-document@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-document
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-document@2.0.0-alpha.6...@tiptap/extension-document@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-document

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-document",
"description": "document extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-dropcursor@2.0.0-alpha.7...@tiptap/extension-dropcursor@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-dropcursor
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-dropcursor@2.0.0-alpha.6...@tiptap/extension-dropcursor@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-dropcursor

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-dropcursor",
"description": "dropcursor extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-focus@2.0.0-alpha.7...@tiptap/extension-focus@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-focus
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-focus@2.0.0-alpha.6...@tiptap/extension-focus@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-focus

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-focus",
"description": "focus extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-font-family@2.0.0-alpha.7...@tiptap/extension-font-family@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-font-family
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-font-family@2.0.0-alpha.6...@tiptap/extension-font-family@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-font-family

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-font-family",
"description": "font family extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.7...@tiptap/extension-gapcursor@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-gapcursor
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.6...@tiptap/extension-gapcursor@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-gapcursor

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-gapcursor",
"description": "gapcursor extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-hard-break@2.0.0-alpha.7...@tiptap/extension-hard-break@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-hard-break
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-hard-break@2.0.0-alpha.6...@tiptap/extension-hard-break@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-hard-break

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-hard-break",
"description": "hard break extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-heading@2.0.0-alpha.7...@tiptap/extension-heading@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-heading
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-heading@2.0.0-alpha.6...@tiptap/extension-heading@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-heading

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-heading",
"description": "heading extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-highlight@2.0.0-alpha.7...@tiptap/extension-highlight@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-highlight
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-highlight@2.0.0-alpha.6...@tiptap/extension-highlight@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-highlight

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-highlight",
"description": "highlight extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-history@2.0.0-alpha.7...@tiptap/extension-history@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-history
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-history@2.0.0-alpha.6...@tiptap/extension-history@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-history

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-history",
"description": "history extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-horizontal-rule@2.0.0-alpha.7...@tiptap/extension-horizontal-rule@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-horizontal-rule
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-horizontal-rule@2.0.0-alpha.6...@tiptap/extension-horizontal-rule@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-horizontal-rule

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-horizontal-rule",
"description": "horizontal rule extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-image@2.0.0-alpha.7...@tiptap/extension-image@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-image
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-image@2.0.0-alpha.6...@tiptap/extension-image@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-image

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-image",
"description": "image extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-italic@2.0.0-alpha.7...@tiptap/extension-italic@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-italic
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-italic@2.0.0-alpha.6...@tiptap/extension-italic@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-italic

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-italic",
"description": "italic extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-link@2.0.0-alpha.7...@tiptap/extension-link@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-link
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-link@2.0.0-alpha.6...@tiptap/extension-link@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-link

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-link",
"description": "link extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-list-item@2.0.0-alpha.7...@tiptap/extension-list-item@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-list-item
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-list-item@2.0.0-alpha.6...@tiptap/extension-list-item@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-list-item

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-list-item",
"description": "list item extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-mention@2.0.0-alpha.3...@tiptap/extension-mention@2.0.0-alpha.4) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-mention
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-mention@2.0.0-alpha.2...@tiptap/extension-mention@2.0.0-alpha.3) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-mention

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-mention",
"description": "mention extension for tiptap",
"version": "2.0.0-alpha.3",
"version": "2.0.0-alpha.4",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -25,6 +25,6 @@
"@tiptap/core": "^2.0.0-alpha.6"
},
"dependencies": {
"@tiptap/suggestion": "^2.0.0-alpha.3"
"@tiptap/suggestion": "^2.0.0-alpha.4"
}
}

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-ordered-list@2.0.0-alpha.7...@tiptap/extension-ordered-list@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-ordered-list
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-ordered-list@2.0.0-alpha.6...@tiptap/extension-ordered-list@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-ordered-list

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-ordered-list",
"description": "ordered list extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-paragraph@2.0.0-alpha.7...@tiptap/extension-paragraph@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-paragraph
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-paragraph@2.0.0-alpha.6...@tiptap/extension-paragraph@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-paragraph

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-paragraph",
"description": "paragraph extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-strike@2.0.0-alpha.7...@tiptap/extension-strike@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-strike
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-strike@2.0.0-alpha.6...@tiptap/extension-strike@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-strike

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-strike",
"description": "strike extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-table-cell@2.0.0-alpha.7...@tiptap/extension-table-cell@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-table-cell
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-table-cell@2.0.0-alpha.6...@tiptap/extension-table-cell@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-table-cell

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table-cell",
"description": "table cell extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-table-header@2.0.0-alpha.7...@tiptap/extension-table-header@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-table-header
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-table-header@2.0.0-alpha.6...@tiptap/extension-table-header@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-table-header

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table-header",
"description": "table cell extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-table-row@2.0.0-alpha.7...@tiptap/extension-table-row@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-table-row
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-table-row@2.0.0-alpha.6...@tiptap/extension-table-row@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-table-row

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table-row",
"description": "table row extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-table@2.0.0-alpha.7...@tiptap/extension-table@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-table
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-table@2.0.0-alpha.6...@tiptap/extension-table@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-table

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table",
"description": "table extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-item@2.0.0-alpha.8...@tiptap/extension-task-item@2.0.0-alpha.9) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-task-item
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-item@2.0.0-alpha.7...@tiptap/extension-task-item@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-task-item

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-task-item",
"description": "task item extension for tiptap",
"version": "2.0.0-alpha.8",
"version": "2.0.0-alpha.9",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -19,7 +19,7 @@ export const TaskItem = Node.create({
},
content() {
return this.options.nested ? '(paragraph|taskList)+' : 'paragraph+'
return this.options.nested ? 'paragraph block*' : 'paragraph+'
},
defining: true,

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-list@2.0.0-alpha.7...@tiptap/extension-task-list@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-task-list
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-list@2.0.0-alpha.6...@tiptap/extension-task-list@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-task-list

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-task-list",
"description": "task list extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-align@2.0.0-alpha.8...@tiptap/extension-text-align@2.0.0-alpha.9) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-text-align
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-align@2.0.0-alpha.7...@tiptap/extension-text-align@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-text-align

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-text-align",
"description": "text align extension for tiptap",
"version": "2.0.0-alpha.8",
"version": "2.0.0-alpha.9",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-style@2.0.0-alpha.7...@tiptap/extension-text-style@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-text-style
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-style@2.0.0-alpha.6...@tiptap/extension-text-style@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-text-style

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-text-style",
"description": "text style extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text@2.0.0-alpha.7...@tiptap/extension-text@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-text
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text@2.0.0-alpha.6...@tiptap/extension-text@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-text

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-text",
"description": "text extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-typography@2.0.0-alpha.7...@tiptap/extension-typography@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-typography
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-typography@2.0.0-alpha.6...@tiptap/extension-typography@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-typography

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-typography",
"description": "typography extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-underline@2.0.0-alpha.7...@tiptap/extension-underline@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-underline
# [2.0.0-alpha.7](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-underline@2.0.0-alpha.6...@tiptap/extension-underline@2.0.0-alpha.7) (2021-01-29)
**Note:** Version bump only for package @tiptap/extension-underline

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-underline",
"description": "underline extension for tiptap",
"version": "2.0.0-alpha.7",
"version": "2.0.0-alpha.8",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/html@2.0.0-alpha.9...@tiptap/html@2.0.0-alpha.10) (2021-01-29)
**Note:** Version bump only for package @tiptap/html
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/html@2.0.0-alpha.8...@tiptap/html@2.0.0-alpha.9) (2021-01-29)
**Note:** Version bump only for package @tiptap/html

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/html",
"description": "utility package to render tiptap JSON as HTML",
"version": "2.0.0-alpha.9",
"version": "2.0.0-alpha.10",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -22,7 +22,7 @@
"dist"
],
"dependencies": {
"@tiptap/core": "^2.0.0-alpha.13",
"@tiptap/core": "^2.0.0-alpha.14",
"hostic-dom": "^0.8.6",
"prosemirror-model": "^1.12.0"
}

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/starter-kit@2.0.0-alpha.9...@tiptap/starter-kit@2.0.0-alpha.10) (2021-01-29)
**Note:** Version bump only for package @tiptap/starter-kit
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/starter-kit@2.0.0-alpha.8...@tiptap/starter-kit@2.0.0-alpha.9) (2021-01-29)
**Note:** Version bump only for package @tiptap/starter-kit

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/starter-kit",
"description": "starter kit for tiptap",
"version": "2.0.0-alpha.9",
"version": "2.0.0-alpha.10",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -22,23 +22,23 @@
"dist"
],
"dependencies": {
"@tiptap/extension-blockquote": "^2.0.0-alpha.7",
"@tiptap/extension-bold": "^2.0.0-alpha.7",
"@tiptap/extension-bullet-list": "^2.0.0-alpha.7",
"@tiptap/extension-code": "^2.0.0-alpha.7",
"@tiptap/extension-code-block": "^2.0.0-alpha.7",
"@tiptap/extension-document": "^2.0.0-alpha.7",
"@tiptap/extension-dropcursor": "^2.0.0-alpha.7",
"@tiptap/extension-gapcursor": "^2.0.0-alpha.7",
"@tiptap/extension-hard-break": "^2.0.0-alpha.7",
"@tiptap/extension-heading": "^2.0.0-alpha.7",
"@tiptap/extension-history": "^2.0.0-alpha.7",
"@tiptap/extension-horizontal-rule": "^2.0.0-alpha.7",
"@tiptap/extension-italic": "^2.0.0-alpha.7",
"@tiptap/extension-list-item": "^2.0.0-alpha.7",
"@tiptap/extension-ordered-list": "^2.0.0-alpha.7",
"@tiptap/extension-paragraph": "^2.0.0-alpha.7",
"@tiptap/extension-strike": "^2.0.0-alpha.7",
"@tiptap/extension-text": "^2.0.0-alpha.7"
"@tiptap/extension-blockquote": "^2.0.0-alpha.8",
"@tiptap/extension-bold": "^2.0.0-alpha.8",
"@tiptap/extension-bullet-list": "^2.0.0-alpha.8",
"@tiptap/extension-code": "^2.0.0-alpha.8",
"@tiptap/extension-code-block": "^2.0.0-alpha.8",
"@tiptap/extension-document": "^2.0.0-alpha.8",
"@tiptap/extension-dropcursor": "^2.0.0-alpha.8",
"@tiptap/extension-gapcursor": "^2.0.0-alpha.8",
"@tiptap/extension-hard-break": "^2.0.0-alpha.8",
"@tiptap/extension-heading": "^2.0.0-alpha.8",
"@tiptap/extension-history": "^2.0.0-alpha.8",
"@tiptap/extension-horizontal-rule": "^2.0.0-alpha.8",
"@tiptap/extension-italic": "^2.0.0-alpha.8",
"@tiptap/extension-list-item": "^2.0.0-alpha.8",
"@tiptap/extension-ordered-list": "^2.0.0-alpha.8",
"@tiptap/extension-paragraph": "^2.0.0-alpha.8",
"@tiptap/extension-strike": "^2.0.0-alpha.8",
"@tiptap/extension-text": "^2.0.0-alpha.8"
}
}

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/suggestion@2.0.0-alpha.3...@tiptap/suggestion@2.0.0-alpha.4) (2021-01-29)
**Note:** Version bump only for package @tiptap/suggestion
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/suggestion@2.0.0-alpha.2...@tiptap/suggestion@2.0.0-alpha.3) (2021-01-29)
**Note:** Version bump only for package @tiptap/suggestion

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/suggestion",
"description": "suggestion plugin for tiptap",
"version": "2.0.0-alpha.3",
"version": "2.0.0-alpha.4",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -22,7 +22,7 @@
"dist"
],
"dependencies": {
"@tiptap/core": "^2.0.0-alpha.13",
"@tiptap/core": "^2.0.0-alpha.14",
"prosemirror-model": "^1.12.0",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.16.3"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.12](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue-starter-kit@2.0.0-alpha.11...@tiptap/vue-starter-kit@2.0.0-alpha.12) (2021-01-29)
**Note:** Version bump only for package @tiptap/vue-starter-kit
# [2.0.0-alpha.11](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue-starter-kit@2.0.0-alpha.10...@tiptap/vue-starter-kit@2.0.0-alpha.11) (2021-01-29)
**Note:** Version bump only for package @tiptap/vue-starter-kit

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/vue-starter-kit",
"description": "Vue starter kit for tiptap",
"version": "2.0.0-alpha.11",
"version": "2.0.0-alpha.12",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -22,7 +22,7 @@
"dist"
],
"dependencies": {
"@tiptap/starter-kit": "^2.0.0-alpha.9",
"@tiptap/vue": "^2.0.0-alpha.8"
"@tiptap/starter-kit": "^2.0.0-alpha.10",
"@tiptap/vue": "^2.0.0-alpha.9"
}
}

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.9](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue@2.0.0-alpha.8...@tiptap/vue@2.0.0-alpha.9) (2021-01-29)
**Note:** Version bump only for package @tiptap/vue
# [2.0.0-alpha.8](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue@2.0.0-alpha.7...@tiptap/vue@2.0.0-alpha.8) (2021-01-29)
**Note:** Version bump only for package @tiptap/vue

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/vue",
"description": "Vue components for tiptap",
"version": "2.0.0-alpha.8",
"version": "2.0.0-alpha.9",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",