Merge branch 'main' into feature/vue-node-views
This commit is contained in:
@@ -3,6 +3,14 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.6](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/core@2.0.0-alpha.5...@tiptap/core@2.0.0-alpha.6) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/core
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.5](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/core@2.0.0-alpha.4...@tiptap/core@2.0.0-alpha.5) (2020-11-18)
|
# [2.0.0-alpha.5](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/core@2.0.0-alpha.4...@tiptap/core@2.0.0-alpha.5) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/core
|
**Note:** Version bump only for package @tiptap/core
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/core",
|
"name": "@tiptap/core",
|
||||||
"version": "2.0.0-alpha.5",
|
"version": "2.0.0-alpha.6",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
|
|||||||
@@ -65,6 +65,8 @@ export interface ExtensionConfig<Options = any, Commands = {}> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class Extension<Options = any, Commands = any> {
|
export class Extension<Options = any, Commands = any> {
|
||||||
|
type = 'extension'
|
||||||
|
|
||||||
config: Required<ExtensionConfig> = {
|
config: Required<ExtensionConfig> = {
|
||||||
name: 'extension',
|
name: 'extension',
|
||||||
defaultOptions: {},
|
defaultOptions: {},
|
||||||
|
|||||||
@@ -111,6 +111,8 @@ export interface MarkConfig<Options = any, Commands = {}> extends Overwrite<Exte
|
|||||||
}> {}
|
}> {}
|
||||||
|
|
||||||
export class Mark<Options = any, Commands = {}> {
|
export class Mark<Options = any, Commands = {}> {
|
||||||
|
type = 'mark'
|
||||||
|
|
||||||
config: Required<MarkConfig> = {
|
config: Required<MarkConfig> = {
|
||||||
name: 'mark',
|
name: 'mark',
|
||||||
defaultOptions: {},
|
defaultOptions: {},
|
||||||
|
|||||||
@@ -155,6 +155,8 @@ export interface NodeConfig<Options = any, Commands = {}> extends Overwrite<Exte
|
|||||||
}> {}
|
}> {}
|
||||||
|
|
||||||
export class Node<Options = any, Commands = {}> {
|
export class Node<Options = any, Commands = {}> {
|
||||||
|
type = 'node'
|
||||||
|
|
||||||
config: Required<NodeConfig> = {
|
config: Required<NodeConfig> = {
|
||||||
name: 'node',
|
name: 'node',
|
||||||
defaultOptions: {},
|
defaultOptions: {},
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ import { Node } from '../Node'
|
|||||||
import { Mark } from '../Mark'
|
import { Mark } from '../Mark'
|
||||||
|
|
||||||
export default function splitExtensions(extensions: Extensions) {
|
export default function splitExtensions(extensions: Extensions) {
|
||||||
const baseExtensions = extensions.filter(extension => extension instanceof Extension) as Extension[]
|
const baseExtensions = extensions.filter(extension => extension.type === 'extension') as Extension[]
|
||||||
const nodeExtensions = extensions.filter(extension => extension instanceof Node) as Node[]
|
const nodeExtensions = extensions.filter(extension => extension.type === 'node') as Node[]
|
||||||
const markExtensions = extensions.filter(extension => extension instanceof Mark) as Mark[]
|
const markExtensions = extensions.filter(extension => extension.type === 'mark') as Mark[]
|
||||||
|
|
||||||
return {
|
return {
|
||||||
baseExtensions,
|
baseExtensions,
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-blockquote@2.0.0-alpha.2...@tiptap/extension-blockquote@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-blockquote
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-blockquote@2.0.0-alpha.1...@tiptap/extension-blockquote@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-blockquote
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-blockquote@1.0.0-alpha.2...@tiptap/extension-blockquote@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-blockquote@1.0.0-alpha.2...@tiptap/extension-blockquote@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-blockquote
|
**Note:** Version bump only for package @tiptap/extension-blockquote
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-blockquote",
|
"name": "@tiptap/extension-blockquote",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prosemirror-inputrules": "^1.1.3"
|
"prosemirror-inputrules": "^1.1.3"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bold@2.0.0-alpha.2...@tiptap/extension-bold@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-bold
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bold@2.0.0-alpha.1...@tiptap/extension-bold@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-bold
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bold@1.0.0-alpha.2...@tiptap/extension-bold@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bold@1.0.0-alpha.2...@tiptap/extension-bold@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-bold
|
**Note:** Version bump only for package @tiptap/extension-bold
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-bold",
|
"name": "@tiptap/extension-bold",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bullet-list@2.0.0-alpha.2...@tiptap/extension-bullet-list@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-bullet-list
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bullet-list@2.0.0-alpha.1...@tiptap/extension-bullet-list@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-bullet-list
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bullet-list@1.0.0-alpha.2...@tiptap/extension-bullet-list@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-bullet-list@1.0.0-alpha.2...@tiptap/extension-bullet-list@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-bullet-list
|
**Note:** Version bump only for package @tiptap/extension-bullet-list
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-bullet-list",
|
"name": "@tiptap/extension-bullet-list",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prosemirror-inputrules": "^1.1.3"
|
"prosemirror-inputrules": "^1.1.3"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code-block@2.0.0-alpha.2...@tiptap/extension-code-block@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-code-block
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code-block@2.0.0-alpha.1...@tiptap/extension-code-block@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-code-block
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code-block@1.0.0-alpha.2...@tiptap/extension-code-block@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code-block@1.0.0-alpha.2...@tiptap/extension-code-block@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-code-block
|
**Note:** Version bump only for package @tiptap/extension-code-block
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-code-block",
|
"name": "@tiptap/extension-code-block",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prosemirror-inputrules": "^1.1.3"
|
"prosemirror-inputrules": "^1.1.3"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code@2.0.0-alpha.2...@tiptap/extension-code@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-code
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code@2.0.0-alpha.1...@tiptap/extension-code@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-code
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code@1.0.0-alpha.2...@tiptap/extension-code@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-code@1.0.0-alpha.2...@tiptap/extension-code@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-code
|
**Note:** Version bump only for package @tiptap/extension-code
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-code",
|
"name": "@tiptap/extension-code",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration-cursor@2.0.0-alpha.2...@tiptap/extension-collaboration-cursor@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration-cursor@2.0.0-alpha.1...@tiptap/extension-collaboration-cursor@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration-cursor@1.0.0-alpha.2...@tiptap/extension-collaboration-cursor@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration-cursor@1.0.0-alpha.2...@tiptap/extension-collaboration-cursor@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor
|
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-collaboration-cursor",
|
"name": "@tiptap/extension-collaboration-cursor",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"y-prosemirror": "^1.0.0"
|
"y-prosemirror": "^1.0.0"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration@2.0.0-alpha.2...@tiptap/extension-collaboration@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-collaboration
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration@2.0.0-alpha.1...@tiptap/extension-collaboration@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-collaboration
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration@1.0.0-alpha.2...@tiptap/extension-collaboration@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-collaboration@1.0.0-alpha.2...@tiptap/extension-collaboration@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-collaboration
|
**Note:** Version bump only for package @tiptap/extension-collaboration
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-collaboration",
|
"name": "@tiptap/extension-collaboration",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"y-prosemirror": "^1.0.0"
|
"y-prosemirror": "^1.0.0"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-document@2.0.0-alpha.2...@tiptap/extension-document@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-document
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-document@2.0.0-alpha.1...@tiptap/extension-document@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-document
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-document@1.0.0-alpha.2...@tiptap/extension-document@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-document@1.0.0-alpha.2...@tiptap/extension-document@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-document
|
**Note:** Version bump only for package @tiptap/extension-document
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-document",
|
"name": "@tiptap/extension-document",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-dropcursor@2.0.0-alpha.2...@tiptap/extension-dropcursor@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-dropcursor@2.0.0-alpha.1...@tiptap/extension-dropcursor@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-dropcursor@1.0.0-alpha.2...@tiptap/extension-dropcursor@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-dropcursor@1.0.0-alpha.2...@tiptap/extension-dropcursor@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
**Note:** Version bump only for package @tiptap/extension-dropcursor
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-dropcursor",
|
"name": "@tiptap/extension-dropcursor",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/prosemirror-dropcursor": "^1.0.0",
|
"@types/prosemirror-dropcursor": "^1.0.0",
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-focus@2.0.0-alpha.2...@tiptap/extension-focus@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-focus
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-focus@2.0.0-alpha.1...@tiptap/extension-focus@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-focus
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-focus@1.0.0-alpha.2...@tiptap/extension-focus@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-focus@1.0.0-alpha.2...@tiptap/extension-focus@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-focus
|
**Note:** Version bump only for package @tiptap/extension-focus
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-focus",
|
"name": "@tiptap/extension-focus",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prosemirror-state": "^1.3.3",
|
"prosemirror-state": "^1.3.3",
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-font-family@2.0.0-alpha.2...@tiptap/extension-font-family@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-font-family
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-font-family@2.0.0-alpha.1...@tiptap/extension-font-family@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-font-family
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-font-family@1.0.0-alpha.2...@tiptap/extension-font-family@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-font-family@1.0.0-alpha.2...@tiptap/extension-font-family@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-font-family
|
**Note:** Version bump only for package @tiptap/extension-font-family
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-font-family",
|
"name": "@tiptap/extension-font-family",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0",
|
"@tiptap/core": "^2.0.0-alpha.6",
|
||||||
"@tiptap/extension-text-style": "^2.0.0-alpha.0"
|
"@tiptap/extension-text-style": "^2.0.0-alpha.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.2...@tiptap/extension-gapcursor@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.1...@tiptap/extension-gapcursor@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@1.0.0-alpha.2...@tiptap/extension-gapcursor@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@1.0.0-alpha.2...@tiptap/extension-gapcursor@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
**Note:** Version bump only for package @tiptap/extension-gapcursor
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-gapcursor",
|
"name": "@tiptap/extension-gapcursor",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/prosemirror-gapcursor": "^1.0.1",
|
"@types/prosemirror-gapcursor": "^1.0.1",
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-hard-break@2.0.0-alpha.2...@tiptap/extension-hard-break@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-hard-break
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-hard-break@2.0.0-alpha.1...@tiptap/extension-hard-break@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-hard-break
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-hard-break@1.0.0-alpha.2...@tiptap/extension-hard-break@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-hard-break@1.0.0-alpha.2...@tiptap/extension-hard-break@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-hard-break
|
**Note:** Version bump only for package @tiptap/extension-hard-break
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-hard-break",
|
"name": "@tiptap/extension-hard-break",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0",
|
"@tiptap/core": "^2.0.0-alpha.6",
|
||||||
"prosemirror-commands": "^1.1.3"
|
"prosemirror-commands": "^1.1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-heading@2.0.0-alpha.2...@tiptap/extension-heading@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-heading
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-heading@2.0.0-alpha.1...@tiptap/extension-heading@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-heading
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-heading@1.0.0-alpha.2...@tiptap/extension-heading@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-heading@1.0.0-alpha.2...@tiptap/extension-heading@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-heading
|
**Note:** Version bump only for package @tiptap/extension-heading
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-heading",
|
"name": "@tiptap/extension-heading",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/prosemirror-inputrules": "^1.0.3",
|
"@types/prosemirror-inputrules": "^1.0.3",
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-highlight@2.0.0-alpha.2...@tiptap/extension-highlight@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-highlight
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-highlight@2.0.0-alpha.1...@tiptap/extension-highlight@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-highlight
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-highlight@1.0.0-alpha.2...@tiptap/extension-highlight@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-highlight@1.0.0-alpha.2...@tiptap/extension-highlight@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-highlight
|
**Note:** Version bump only for package @tiptap/extension-highlight
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-highlight",
|
"name": "@tiptap/extension-highlight",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-history@2.0.0-alpha.2...@tiptap/extension-history@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-history
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-history@2.0.0-alpha.1...@tiptap/extension-history@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-history
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-history@1.0.0-alpha.2...@tiptap/extension-history@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-history@1.0.0-alpha.2...@tiptap/extension-history@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-history
|
**Note:** Version bump only for package @tiptap/extension-history
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-history",
|
"name": "@tiptap/extension-history",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prosemirror-history": "^1.1.3"
|
"prosemirror-history": "^1.1.3"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-horizontal-rule@2.0.0-alpha.2...@tiptap/extension-horizontal-rule@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-horizontal-rule
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-horizontal-rule@2.0.0-alpha.1...@tiptap/extension-horizontal-rule@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-horizontal-rule
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-horizontal-rule@1.0.0-alpha.2...@tiptap/extension-horizontal-rule@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-horizontal-rule@1.0.0-alpha.2...@tiptap/extension-horizontal-rule@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-horizontal-rule
|
**Note:** Version bump only for package @tiptap/extension-horizontal-rule
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-horizontal-rule",
|
"name": "@tiptap/extension-horizontal-rule",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0",
|
"@tiptap/core": "^2.0.0-alpha.6",
|
||||||
"prosemirror-commands": "^1.1.3"
|
"prosemirror-commands": "^1.1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-image@2.0.0-alpha.2...@tiptap/extension-image@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-image
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-image@2.0.0-alpha.1...@tiptap/extension-image@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-image
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-image@1.0.0-alpha.2...@tiptap/extension-image@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-image@1.0.0-alpha.2...@tiptap/extension-image@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-image
|
**Note:** Version bump only for package @tiptap/extension-image
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-image",
|
"name": "@tiptap/extension-image",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-italic@2.0.0-alpha.2...@tiptap/extension-italic@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-italic
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-italic@2.0.0-alpha.1...@tiptap/extension-italic@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-italic
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-italic@1.0.0-alpha.2...@tiptap/extension-italic@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-italic@1.0.0-alpha.2...@tiptap/extension-italic@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-italic
|
**Note:** Version bump only for package @tiptap/extension-italic
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-italic",
|
"name": "@tiptap/extension-italic",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-link@2.0.0-alpha.2...@tiptap/extension-link@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-link
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-link@2.0.0-alpha.1...@tiptap/extension-link@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-link
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-link@1.0.0-alpha.2...@tiptap/extension-link@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-link@1.0.0-alpha.2...@tiptap/extension-link@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-link
|
**Note:** Version bump only for package @tiptap/extension-link
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-link",
|
"name": "@tiptap/extension-link",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prosemirror-state": "^1.3.3"
|
"prosemirror-state": "^1.3.3"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-list-item@2.0.0-alpha.2...@tiptap/extension-list-item@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-list-item
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-list-item@2.0.0-alpha.1...@tiptap/extension-list-item@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-list-item
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-list-item@1.0.0-alpha.2...@tiptap/extension-list-item@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-list-item@1.0.0-alpha.2...@tiptap/extension-list-item@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-list-item
|
**Note:** Version bump only for package @tiptap/extension-list-item
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-list-item",
|
"name": "@tiptap/extension-list-item",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-ordered-list@2.0.0-alpha.2...@tiptap/extension-ordered-list@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-ordered-list
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-ordered-list@2.0.0-alpha.1...@tiptap/extension-ordered-list@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-ordered-list
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-ordered-list@1.0.0-alpha.2...@tiptap/extension-ordered-list@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-ordered-list@1.0.0-alpha.2...@tiptap/extension-ordered-list@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-ordered-list
|
**Note:** Version bump only for package @tiptap/extension-ordered-list
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-ordered-list",
|
"name": "@tiptap/extension-ordered-list",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prosemirror-inputrules": "^1.1.3"
|
"prosemirror-inputrules": "^1.1.3"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-paragraph@2.0.0-alpha.2...@tiptap/extension-paragraph@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-paragraph
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-paragraph@2.0.0-alpha.1...@tiptap/extension-paragraph@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-paragraph
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-paragraph@1.0.0-alpha.2...@tiptap/extension-paragraph@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-paragraph@1.0.0-alpha.2...@tiptap/extension-paragraph@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-paragraph
|
**Note:** Version bump only for package @tiptap/extension-paragraph
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-paragraph",
|
"name": "@tiptap/extension-paragraph",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-strike@2.0.0-alpha.2...@tiptap/extension-strike@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-strike
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-strike@2.0.0-alpha.1...@tiptap/extension-strike@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-strike
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-strike@1.0.0-alpha.2...@tiptap/extension-strike@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-strike@1.0.0-alpha.2...@tiptap/extension-strike@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-strike
|
**Note:** Version bump only for package @tiptap/extension-strike
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-strike",
|
"name": "@tiptap/extension-strike",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-item@2.0.0-alpha.2...@tiptap/extension-task-item@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-task-item
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-item@2.0.0-alpha.1...@tiptap/extension-task-item@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-task-item
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-item@1.0.0-alpha.2...@tiptap/extension-task-item@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-item@1.0.0-alpha.2...@tiptap/extension-task-item@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-task-item
|
**Note:** Version bump only for package @tiptap/extension-task-item
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-task-item",
|
"name": "@tiptap/extension-task-item",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prosemirror-inputrules": "^1.1.3"
|
"prosemirror-inputrules": "^1.1.3"
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-list@2.0.0-alpha.2...@tiptap/extension-task-list@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-task-list
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-list@2.0.0-alpha.1...@tiptap/extension-task-list@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-task-list
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-list@1.0.0-alpha.2...@tiptap/extension-task-list@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-task-list@1.0.0-alpha.2...@tiptap/extension-task-list@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-task-list
|
**Note:** Version bump only for package @tiptap/extension-task-list
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-task-list",
|
"name": "@tiptap/extension-task-list",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-align@2.0.0-alpha.2...@tiptap/extension-text-align@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-text-align
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-align@2.0.0-alpha.1...@tiptap/extension-text-align@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-text-align
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-align@1.0.0-alpha.2...@tiptap/extension-text-align@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-align@1.0.0-alpha.2...@tiptap/extension-text-align@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-text-align
|
**Note:** Version bump only for package @tiptap/extension-text-align
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-text-align",
|
"name": "@tiptap/extension-text-align",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-style@2.0.0-alpha.2...@tiptap/extension-text-style@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-text-style
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-style@2.0.0-alpha.1...@tiptap/extension-text-style@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-text-style
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-style@1.0.0-alpha.2...@tiptap/extension-text-style@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text-style@1.0.0-alpha.2...@tiptap/extension-text-style@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-text-style
|
**Note:** Version bump only for package @tiptap/extension-text-style
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-text-style",
|
"name": "@tiptap/extension-text-style",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text@2.0.0-alpha.2...@tiptap/extension-text@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-text
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text@2.0.0-alpha.1...@tiptap/extension-text@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-text
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text@1.0.0-alpha.2...@tiptap/extension-text@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-text@1.0.0-alpha.2...@tiptap/extension-text@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-text
|
**Note:** Version bump only for package @tiptap/extension-text
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-text",
|
"name": "@tiptap/extension-text",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-typography@2.0.0-alpha.2...@tiptap/extension-typography@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-typography
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-typography@2.0.0-alpha.1...@tiptap/extension-typography@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-typography
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-typography@1.0.0-alpha.2...@tiptap/extension-typography@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-typography@1.0.0-alpha.2...@tiptap/extension-typography@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-typography
|
**Note:** Version bump only for package @tiptap/extension-typography
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-typography",
|
"name": "@tiptap/extension-typography",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/prosemirror-inputrules": "^1.0.3",
|
"@types/prosemirror-inputrules": "^1.0.3",
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-underline@2.0.0-alpha.2...@tiptap/extension-underline@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-underline
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-underline@2.0.0-alpha.1...@tiptap/extension-underline@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/extension-underline
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-underline@1.0.0-alpha.2...@tiptap/extension-underline@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-underline@1.0.0-alpha.2...@tiptap/extension-underline@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/extension-underline
|
**Note:** Version bump only for package @tiptap/extension-underline
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/extension-underline",
|
"name": "@tiptap/extension-underline",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,6 +21,6 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0"
|
"@tiptap/core": "^2.0.0-alpha.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,14 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/html@2.0.0-alpha.1...@tiptap/html@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/html
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/html@1.0.0-alpha.2...@tiptap/html@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/html@1.0.0-alpha.2...@tiptap/html@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/html
|
**Note:** Version bump only for package @tiptap/html
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/html",
|
"name": "@tiptap/html",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.2",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.5",
|
"@tiptap/core": "^2.0.0-alpha.6",
|
||||||
"hostic-dom": "^0.8.5",
|
"hostic-dom": "^0.8.5",
|
||||||
"prosemirror-model": "^1.12.0"
|
"prosemirror-model": "^1.12.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/starter-kit@2.0.0-alpha.2...@tiptap/starter-kit@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/starter-kit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/starter-kit@2.0.0-alpha.1...@tiptap/starter-kit@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/starter-kit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/starter-kit@1.0.0-alpha.2...@tiptap/starter-kit@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/starter-kit@1.0.0-alpha.2...@tiptap/starter-kit@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/starter-kit
|
**Note:** Version bump only for package @tiptap/starter-kit
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/starter-kit",
|
"name": "@tiptap/starter-kit",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,24 +21,24 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tiptap/extension-blockquote": "^1.0.0-alpha.2",
|
"@tiptap/extension-blockquote": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-bold": "^1.0.0-alpha.2",
|
"@tiptap/extension-bold": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-bullet-list": "^1.0.0-alpha.2",
|
"@tiptap/extension-bullet-list": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-code": "^1.0.0-alpha.2",
|
"@tiptap/extension-code": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-code-block": "^1.0.0-alpha.2",
|
"@tiptap/extension-code-block": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-document": "^1.0.0-alpha.2",
|
"@tiptap/extension-document": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-dropcursor": "^1.0.0-alpha.2",
|
"@tiptap/extension-dropcursor": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-gapcursor": "^1.0.0-alpha.2",
|
"@tiptap/extension-gapcursor": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-hard-break": "^1.0.0-alpha.2",
|
"@tiptap/extension-hard-break": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-heading": "^1.0.0-alpha.2",
|
"@tiptap/extension-heading": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-history": "^1.0.0-alpha.2",
|
"@tiptap/extension-history": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-horizontal-rule": "^1.0.0-alpha.2",
|
"@tiptap/extension-horizontal-rule": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-italic": "^1.0.0-alpha.2",
|
"@tiptap/extension-italic": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-list-item": "^1.0.0-alpha.2",
|
"@tiptap/extension-list-item": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-ordered-list": "^1.0.0-alpha.2",
|
"@tiptap/extension-ordered-list": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-paragraph": "^1.0.0-alpha.2",
|
"@tiptap/extension-paragraph": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-strike": "^1.0.0-alpha.2",
|
"@tiptap/extension-strike": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-text": "^1.0.0-alpha.2",
|
"@tiptap/extension-text": "^2.0.0-alpha.3",
|
||||||
"@tiptap/extension-underline": "^1.0.0-alpha.2"
|
"@tiptap/extension-underline": "^2.0.0-alpha32"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,30 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue-starter-kit@2.0.0-alpha.3...@tiptap/vue-starter-kit@2.0.0-alpha.4) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/vue-starter-kit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue-starter-kit@2.0.0-alpha.2...@tiptap/vue-starter-kit@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/vue-starter-kit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue-starter-kit@2.0.0-alpha.1...@tiptap/vue-starter-kit@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/vue-starter-kit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue-starter-kit@1.0.0-alpha.2...@tiptap/vue-starter-kit@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue-starter-kit@1.0.0-alpha.2...@tiptap/vue-starter-kit@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/vue-starter-kit
|
**Note:** Version bump only for package @tiptap/vue-starter-kit
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/vue-starter-kit",
|
"name": "@tiptap/vue-starter-kit",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.4",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tiptap/starter-kit": "^2.0.0-alpha.1",
|
"@tiptap/starter-kit": "^2.0.0-alpha.3",
|
||||||
"@tiptap/vue": "^2.0.0-alpha.1"
|
"@tiptap/vue": "^2.0.0-alpha.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
# [2.0.0-alpha.3](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue@2.0.0-alpha.2...@tiptap/vue@2.0.0-alpha.3) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/vue
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# [2.0.0-alpha.2](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue@2.0.0-alpha.1...@tiptap/vue@2.0.0-alpha.2) (2020-11-19)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @tiptap/vue
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue@1.0.0-alpha.2...@tiptap/vue@2.0.0-alpha.1) (2020-11-18)
|
# [2.0.0-alpha.1](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/vue@1.0.0-alpha.2...@tiptap/vue@2.0.0-alpha.1) (2020-11-18)
|
||||||
|
|
||||||
**Note:** Version bump only for package @tiptap/vue
|
**Note:** Version bump only for package @tiptap/vue
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tiptap/vue",
|
"name": "@tiptap/vue",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.0-alpha.3",
|
||||||
"homepage": "https://tiptap.dev",
|
"homepage": "https://tiptap.dev",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tiptap",
|
"tiptap",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tiptap/core": "^2.0.0-alpha.0",
|
"@tiptap/core": "^2.0.0-alpha.6",
|
||||||
"vue": "^2.6.12"
|
"vue": "^2.6.12"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
Reference in New Issue
Block a user