Merge branch 'main' of github.com:ueberdosis/tiptap

This commit is contained in:
Hans Pagel 2021-10-14 14:01:14 +02:00
commit 60944ce9ce
77 changed files with 918 additions and 538 deletions

View File

@ -11,11 +11,11 @@
"d3": "^7.1.1",
"fast-glob": "^3.2.7",
"remixicon": "^2.5.0",
"shiki": "^0.9.11",
"shiki": "^0.9.12",
"simplify-js": "^1.2.4",
"y-indexeddb": "^9.0.6",
"y-webrtc": "^10.2.0",
"y-websocket": "^1.3.16",
"y-websocket": "^1.3.17",
"yjs": "^13.5.13"
},
"devDependencies": {
@ -27,11 +27,11 @@
"postcss": "^8.3.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.42.1",
"tailwindcss": "^2.2.16",
"typescript": "^4.4.3",
"sass": "^1.43.2",
"tailwindcss": "^2.2.17",
"typescript": "^4.4.4",
"uuid": "^8.3.2",
"vite": "^2.6.5",
"vite": "^2.6.7",
"vite-plugin-checker": "^0.3.4",
"vue": "^3.0.5",
"vue-router": "^4.0.11"

View File

@ -36,15 +36,15 @@
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.2",
"cypress": "^8.5.0",
"eslint": "^7.32.0",
"cypress": "^8.6.0",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-vue": "^7.19.1",
"lerna": "^4.0.0",
"minimist": "^1.2.5",
@ -53,7 +53,7 @@
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.30.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.58.0"
"typescript": "^4.4.4",
"webpack": "^5.58.2"
}
}

View File

@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-beta.124](https://github.com/ueberdosis/tiptap/compare/@tiptap/core@2.0.0-beta.123...@tiptap/core@2.0.0-beta.124) (2021-10-14)
### Bug Fixes
* fix type for insertContent command ([4295c6b](https://github.com/ueberdosis/tiptap/commit/4295c6bd2181bdaa98ef7777bfab44efbcf22a32))
# [2.0.0-beta.123](https://github.com/ueberdosis/tiptap/compare/@tiptap/core@2.0.0-beta.122...@tiptap/core@2.0.0-beta.123) (2021-10-14)
### Features
* add `updateSelection` option to `insertContentAt` command ([9f2c368](https://github.com/ueberdosis/tiptap/commit/9f2c36896b5b8510cea87d727dc4e94742fdf980))
* Allow to use commands within InputRule and PasteRule ([#2035](https://github.com/ueberdosis/tiptap/issues/2035)) ([4303637](https://github.com/ueberdosis/tiptap/commit/4303637a786a164af0c7ffac17ae3621a8533c6e))
# [2.0.0-beta.122](https://github.com/ueberdosis/tiptap/compare/@tiptap/core@2.0.0-beta.121...@tiptap/core@2.0.0-beta.122) (2021-10-10)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/core",
"description": "headless rich text editor",
"version": "2.0.0-beta.122",
"version": "2.0.0-beta.124",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -37,7 +37,7 @@
"prosemirror-schema-list": "^1.1.6",
"prosemirror-state": "^1.3.4",
"prosemirror-transform": "^1.3.3",
"prosemirror-view": "^1.20.2"
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

View File

@ -1,4 +1,4 @@
import { Transaction } from 'prosemirror-state'
import { EditorState, Transaction } from 'prosemirror-state'
import { Editor } from './Editor'
import createChainableState from './helpers/createChainableState'
import {
@ -13,26 +13,40 @@ export default class CommandManager {
editor: Editor
commands: AnyCommands
rawCommands: AnyCommands
constructor(editor: Editor, commands: AnyCommands) {
this.editor = editor
this.commands = commands
customState?: EditorState
constructor(props: {
editor: Editor,
state?: EditorState,
}) {
this.editor = props.editor
this.rawCommands = this.editor.extensionManager.commands
this.customState = props.state
}
public createCommands(): SingleCommands {
const { commands, editor } = this
const { state, view } = editor
get hasCustomState(): boolean {
return !!this.customState
}
get state(): EditorState {
return this.customState || this.editor.state
}
get commands(): SingleCommands {
const { rawCommands, editor, state } = this
const { view } = editor
const { tr } = state
const props = this.buildProps(tr)
return Object.fromEntries(Object
.entries(commands)
.entries(rawCommands)
.map(([name, command]) => {
const method = (...args: any[]) => {
const callback = command(...args)(props)
if (!tr.getMeta('preventDispatch')) {
if (!tr.getMeta('preventDispatch') && !this.hasCustomState) {
view.dispatch(tr)
}
@ -43,15 +57,28 @@ export default class CommandManager {
})) as unknown as SingleCommands
}
get chain(): () => ChainedCommands {
return () => this.createChain()
}
get can(): () => CanCommands {
return () => this.createCan()
}
public createChain(startTr?: Transaction, shouldDispatch = true): ChainedCommands {
const { commands, editor } = this
const { state, view } = editor
const { rawCommands, editor, state } = this
const { view } = editor
const callbacks: boolean[] = []
const hasStartTransaction = !!startTr
const tr = startTr || state.tr
const run = () => {
if (!hasStartTransaction && shouldDispatch && !tr.getMeta('preventDispatch')) {
if (
!hasStartTransaction
&& shouldDispatch
&& !tr.getMeta('preventDispatch')
&& !this.hasCustomState
) {
view.dispatch(tr)
}
@ -59,7 +86,7 @@ export default class CommandManager {
}
const chain = {
...Object.fromEntries(Object.entries(commands).map(([name, command]) => {
...Object.fromEntries(Object.entries(rawCommands).map(([name, command]) => {
const chainedCommand = (...args: never[]) => {
const props = this.buildProps(tr, shouldDispatch)
const callback = command(...args)(props)
@ -78,13 +105,12 @@ export default class CommandManager {
}
public createCan(startTr?: Transaction): CanCommands {
const { commands, editor } = this
const { state } = editor
const { rawCommands, state } = this
const dispatch = undefined
const tr = startTr || state.tr
const props = this.buildProps(tr, dispatch)
const formattedCommands = Object.fromEntries(Object
.entries(commands)
.entries(rawCommands)
.map(([name, command]) => {
return [name, (...args: never[]) => command(...args)({ ...props, dispatch })]
})) as unknown as SingleCommands
@ -96,8 +122,8 @@ export default class CommandManager {
}
public buildProps(tr: Transaction, shouldDispatch = true): CommandProps {
const { editor, commands } = this
const { state, view } = editor
const { rawCommands, editor, state } = this
const { view } = editor
if (state.storedMarks) {
tr.setStoredMarks(state.storedMarks)
@ -118,7 +144,7 @@ export default class CommandManager {
can: () => this.createCan(tr),
get commands() {
return Object.fromEntries(Object
.entries(commands)
.entries(rawCommands)
.map(([name, command]) => {
return [name, (...args: never[]) => command(...args)(props)]
})) as unknown as SingleCommands

View File

@ -104,21 +104,21 @@ export class Editor extends EventEmitter<EditorEvents> {
* An object of all registered commands.
*/
public get commands(): SingleCommands {
return this.commandManager.createCommands()
return this.commandManager.commands
}
/**
* Create a command chain to call multiple commands at once.
*/
public chain(): ChainedCommands {
return this.commandManager.createChain()
return this.commandManager.chain()
}
/**
* Check if a command or a command chain can be executed. Without executing it.
*/
public can(): CanCommands {
return this.commandManager.createCan()
return this.commandManager.can()
}
/**
@ -235,7 +235,9 @@ export class Editor extends EventEmitter<EditorEvents> {
* Creates an command manager.
*/
private createCommandManager(): void {
this.commandManager = new CommandManager(this, this.extensionManager.commands)
this.commandManager = new CommandManager({
editor: this,
})
}
/**

View File

@ -206,6 +206,8 @@ export default class ExtensionManager {
}
get plugins(): Plugin[] {
const { editor } = this
// With ProseMirror, first plugins within an array are executed first.
// In tiptap, we provide the ability to override plugins,
// so it feels more natural to run plugins at the end of an array first.
@ -221,7 +223,7 @@ export default class ExtensionManager {
const context = {
name: extension.name,
options: extension.options,
editor: this.editor,
editor,
type: getSchemaTypeByName(extension.name, this.schema),
}
@ -238,7 +240,7 @@ export default class ExtensionManager {
Object
.entries(addKeyboardShortcuts())
.map(([shortcut, method]) => {
return [shortcut, () => method({ editor: this.editor })]
return [shortcut, () => method({ editor })]
}),
)
@ -253,7 +255,7 @@ export default class ExtensionManager {
context,
)
if (this.editor.options.enableInputRules && addInputRules) {
if (editor.options.enableInputRules && addInputRules) {
inputRules.push(...addInputRules())
}
@ -263,7 +265,7 @@ export default class ExtensionManager {
context,
)
if (this.editor.options.enablePasteRules && addPasteRules) {
if (editor.options.enablePasteRules && addPasteRules) {
pasteRules.push(...addPasteRules())
}
@ -284,8 +286,14 @@ export default class ExtensionManager {
.flat()
return [
inputRulesPlugin(inputRules),
pasteRulesPlugin(pasteRules),
inputRulesPlugin({
editor,
rules: inputRules,
}),
pasteRulesPlugin({
editor,
rules: pasteRules,
}),
...allPlugins,
]
}

View File

@ -1,8 +1,15 @@
import { EditorView } from 'prosemirror-view'
import { EditorState, Plugin, TextSelection } from 'prosemirror-state'
import { Editor } from './Editor'
import CommandManager from './CommandManager'
import createChainableState from './helpers/createChainableState'
import isRegExp from './utilities/isRegExp'
import { Range, ExtendedRegExpMatchArray } from './types'
import {
Range,
ExtendedRegExpMatchArray,
SingleCommands,
ChainedCommands,
CanCommands,
} from './types'
export type InputRuleMatch = {
index: number,
@ -23,6 +30,9 @@ export class InputRule {
state: EditorState,
range: Range,
match: ExtendedRegExpMatchArray,
commands: SingleCommands,
chain: () => ChainedCommands,
can: () => CanCommands,
}) => void
constructor(config: {
@ -31,6 +41,9 @@ export class InputRule {
state: EditorState,
range: Range,
match: ExtendedRegExpMatchArray,
commands: SingleCommands,
chain: () => ChainedCommands,
can: () => CanCommands,
}) => void,
}) {
this.find = config.find
@ -68,7 +81,7 @@ const inputRuleMatcherHandler = (text: string, find: InputRuleFinder): ExtendedR
}
function run(config: {
view: EditorView,
editor: Editor,
from: number,
to: number,
text: string,
@ -76,13 +89,14 @@ function run(config: {
plugin: Plugin,
}): any {
const {
view,
editor,
from,
to,
text,
rules,
plugin,
} = config
const { view } = editor
if (view.composing) {
return false
@ -129,10 +143,18 @@ function run(config: {
to,
}
const { commands, chain, can } = new CommandManager({
editor,
state,
})
rule.handler({
state,
range,
match,
commands,
chain,
can,
})
// stop if there are no changes
@ -161,7 +183,8 @@ function run(config: {
* input that matches any of the given rules to trigger the rules
* action.
*/
export function inputRulesPlugin(rules: InputRule[]): Plugin {
export function inputRulesPlugin(props: { editor: Editor, rules: InputRule[] }): Plugin {
const { editor, rules } = props
const plugin = new Plugin({
state: {
init() {
@ -183,7 +206,7 @@ export function inputRulesPlugin(rules: InputRule[]): Plugin {
props: {
handleTextInput(view, from, to, text) {
return run({
view,
editor,
from,
to,
text,
@ -199,7 +222,7 @@ export function inputRulesPlugin(rules: InputRule[]): Plugin {
if ($cursor) {
run({
view,
editor,
from: $cursor.pos,
to: $cursor.pos,
text: '',
@ -224,7 +247,7 @@ export function inputRulesPlugin(rules: InputRule[]): Plugin {
if ($cursor) {
return run({
view,
editor,
from: $cursor.pos,
to: $cursor.pos,
text: '\n',

View File

@ -1,7 +1,15 @@
import { EditorState, Plugin } from 'prosemirror-state'
import { Editor } from './Editor'
import CommandManager from './CommandManager'
import createChainableState from './helpers/createChainableState'
import isRegExp from './utilities/isRegExp'
import { Range, ExtendedRegExpMatchArray } from './types'
import {
Range,
ExtendedRegExpMatchArray,
SingleCommands,
ChainedCommands,
CanCommands,
} from './types'
export type PasteRuleMatch = {
index: number,
@ -22,6 +30,9 @@ export class PasteRule {
state: EditorState,
range: Range,
match: ExtendedRegExpMatchArray,
commands: SingleCommands,
chain: () => ChainedCommands,
can: () => CanCommands,
}) => void
constructor(config: {
@ -30,6 +41,9 @@ export class PasteRule {
state: EditorState,
range: Range,
match: ExtendedRegExpMatchArray,
commands: SingleCommands,
chain: () => ChainedCommands,
can: () => CanCommands,
}) => void,
}) {
this.find = config.find
@ -69,6 +83,7 @@ const pasteRuleMatcherHandler = (text: string, find: PasteRuleFinder): ExtendedR
}
function run(config: {
editor: Editor,
state: EditorState,
from: number,
to: number,
@ -76,12 +91,18 @@ function run(config: {
plugin: Plugin,
}): any {
const {
editor,
state,
from,
to,
rules,
} = config
const { commands, chain, can } = new CommandManager({
editor,
state,
})
state.doc.nodesBetween(from, to, (node, pos) => {
if (!node.isTextblock || node.type.spec.code) {
return
@ -115,6 +136,9 @@ function run(config: {
state,
range,
match,
commands,
chain,
can,
})
})
})
@ -126,7 +150,8 @@ function run(config: {
* text that matches any of the given rules to trigger the rules
* action.
*/
export function pasteRulesPlugin(rules: PasteRule[]): Plugin {
export function pasteRulesPlugin(props: { editor: Editor, rules: PasteRule[] }): Plugin {
const { editor, rules } = props
let isProseMirrorHTML = false
const plugin = new Plugin({
@ -165,6 +190,7 @@ export function pasteRulesPlugin(rules: PasteRule[]): Plugin {
})
run({
editor,
state: chainableState,
from: Math.max(from - 1, 0),
to: to.b,

View File

@ -1,4 +1,4 @@
import { CreateNodeFromContentOptions } from '../helpers/createNodeFromContent'
import { ParseOptions } from 'prosemirror-model'
import { RawCommands, Content } from '../types'
declare module '@tiptap/core' {
@ -7,7 +7,13 @@ declare module '@tiptap/core' {
/**
* Insert a node or string of HTML at the current position.
*/
insertContent: (value: Content, options?: CreateNodeFromContentOptions) => ReturnType,
insertContent: (
value: Content,
options?: {
parseOptions?: ParseOptions,
updateSelection?: boolean,
},
) => ReturnType,
}
}
}

View File

@ -1,4 +1,5 @@
import createNodeFromContent, { CreateNodeFromContentOptions } from '../helpers/createNodeFromContent'
import { ParseOptions } from 'prosemirror-model'
import createNodeFromContent from '../helpers/createNodeFromContent'
import selectionToInsertionEnd from '../helpers/selectionToInsertionEnd'
import {
RawCommands,
@ -12,18 +13,31 @@ declare module '@tiptap/core' {
/**
* Insert a node or string of HTML at a specific position.
*/
insertContentAt: (position: number | Range, value: Content, options?: CreateNodeFromContentOptions) => ReturnType,
insertContentAt: (
position: number | Range,
value: Content,
options?: {
parseOptions?: ParseOptions,
updateSelection?: boolean,
},
) => ReturnType,
}
}
}
export const insertContentAt: RawCommands['insertContentAt'] = (position, value, options) => ({ tr, dispatch, editor }) => {
if (dispatch) {
options = {
parseOptions: {},
updateSelection: true,
...options,
}
const content = createNodeFromContent(value, editor.schema, {
parseOptions: {
preserveWhitespace: 'full',
...options.parseOptions,
},
...(options || {}),
})
// dont dispatch an empty fragment because this can lead to strange errors
@ -38,8 +52,10 @@ export const insertContentAt: RawCommands['insertContentAt'] = (position, value,
tr.replaceWith(from, to, content)
// set cursor at end of inserted content
if (options.updateSelection) {
selectionToInsertionEnd(tr, tr.steps.length - 1, 1)
}
}
return true
}

View File

@ -9,6 +9,7 @@ export * from './NodeView'
export * from './Tracker'
export * from './InputRule'
export * from './PasteRule'
export * from './CommandManager'
export * from './types'
export { default as nodeInputRule } from './inputRules/nodeInputRule'

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-beta.18](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-blockquote@2.0.0-beta.17...@tiptap/extension-blockquote@2.0.0-beta.18) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-blockquote
# [2.0.0-beta.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-blockquote@2.0.0-beta.16...@tiptap/extension-blockquote@2.0.0-beta.17) (2021-10-10)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-blockquote",
"description": "blockquote extension for tiptap",
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"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-beta.18](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-bold@2.0.0-beta.17...@tiptap/extension-bold@2.0.0-beta.18) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-bold
# [2.0.0-beta.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-bold@2.0.0-beta.16...@tiptap/extension-bold@2.0.0-beta.17) (2021-10-10)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-bold",
"description": "bold extension for tiptap",
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"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-beta.41](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-bubble-menu@2.0.0-beta.40...@tiptap/extension-bubble-menu@2.0.0-beta.41) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-bubble-menu
# [2.0.0-beta.40](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-bubble-menu@2.0.0-beta.39...@tiptap/extension-bubble-menu@2.0.0-beta.40) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-bubble-menu

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-bubble-menu",
"description": "bubble-menu extension for tiptap",
"version": "2.0.0-beta.40",
"version": "2.0.0-beta.41",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -25,7 +25,7 @@
},
"dependencies": {
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.20.2",
"prosemirror-view": "^1.20.3",
"tippy.js": "^6.3.2"
},
"repository": {

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-beta.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-bullet-list@2.0.0-beta.16...@tiptap/extension-bullet-list@2.0.0-beta.17) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-bullet-list
# [2.0.0-beta.16](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-bullet-list@2.0.0-beta.15...@tiptap/extension-bullet-list@2.0.0-beta.16) (2021-10-08)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-bullet-list",
"description": "bullet list extension for tiptap",
"version": "2.0.0-beta.16",
"version": "2.0.0-beta.17",
"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-beta.46](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-code-block-lowlight@2.0.0-beta.45...@tiptap/extension-code-block-lowlight@2.0.0-beta.46) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-code-block-lowlight
# [2.0.0-beta.45](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-code-block-lowlight@2.0.0-beta.44...@tiptap/extension-code-block-lowlight@2.0.0-beta.45) (2021-10-13)
**Note:** Version bump only for package @tiptap/extension-code-block-lowlight

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-code-block-lowlight",
"description": "code block extension for tiptap",
"version": "2.0.0-beta.45",
"version": "2.0.0-beta.46",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -24,12 +24,12 @@
"@tiptap/core": "^2.0.0-beta.1"
},
"dependencies": {
"@tiptap/extension-code-block": "^2.0.0-beta.22",
"@tiptap/extension-code-block": "^2.0.0-beta.23",
"@types/lowlight": "^0.0.3",
"lowlight": "^1.20.0",
"prosemirror-model": "^1.14.3",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.20.2"
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

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-beta.23](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-code-block@2.0.0-beta.22...@tiptap/extension-code-block@2.0.0-beta.23) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-code-block
# [2.0.0-beta.22](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-code-block@2.0.0-beta.21...@tiptap/extension-code-block@2.0.0-beta.22) (2021-10-13)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-code-block",
"description": "code block extension for tiptap",
"version": "2.0.0-beta.22",
"version": "2.0.0-beta.23",
"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-beta.19](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-code@2.0.0-beta.18...@tiptap/extension-code@2.0.0-beta.19) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-code
# [2.0.0-beta.18](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-code@2.0.0-beta.17...@tiptap/extension-code@2.0.0-beta.18) (2021-10-10)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-code",
"description": "code extension for tiptap",
"version": "2.0.0-beta.18",
"version": "2.0.0-beta.19",
"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-beta.24](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-collaboration-cursor@2.0.0-beta.23...@tiptap/extension-collaboration-cursor@2.0.0-beta.24) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor
# [2.0.0-beta.23](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-collaboration-cursor@2.0.0-beta.22...@tiptap/extension-collaboration-cursor@2.0.0-beta.23) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-collaboration-cursor

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-collaboration-cursor",
"description": "collaboration cursor extension for tiptap",
"version": "2.0.0-beta.23",
"version": "2.0.0-beta.24",
"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-beta.24](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-collaboration@2.0.0-beta.23...@tiptap/extension-collaboration@2.0.0-beta.24) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-collaboration
# [2.0.0-beta.23](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-collaboration@2.0.0-beta.22...@tiptap/extension-collaboration@2.0.0-beta.23) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-collaboration

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-collaboration",
"description": "collaboration extension for tiptap",
"version": "2.0.0-beta.23",
"version": "2.0.0-beta.24",
"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-beta.35](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-floating-menu@2.0.0-beta.34...@tiptap/extension-floating-menu@2.0.0-beta.35) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-floating-menu
# [2.0.0-beta.34](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-floating-menu@2.0.0-beta.33...@tiptap/extension-floating-menu@2.0.0-beta.34) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-floating-menu

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-floating-menu",
"description": "floating-menu extension for tiptap",
"version": "2.0.0-beta.34",
"version": "2.0.0-beta.35",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -25,7 +25,7 @@
},
"dependencies": {
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.20.2",
"prosemirror-view": "^1.20.3",
"tippy.js": "^6.3.2"
},
"repository": {

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-beta.28](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-focus@2.0.0-beta.27...@tiptap/extension-focus@2.0.0-beta.28) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-focus
# [2.0.0-beta.27](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-focus@2.0.0-beta.26...@tiptap/extension-focus@2.0.0-beta.27) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-focus

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-focus",
"description": "focus extension for tiptap",
"version": "2.0.0-beta.27",
"version": "2.0.0-beta.28",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -25,7 +25,7 @@
},
"dependencies": {
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.20.2"
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

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-beta.26](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.25...@tiptap/extension-gapcursor@2.0.0-beta.26) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-gapcursor
# [2.0.0-beta.25](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-gapcursor@2.0.0-beta.24...@tiptap/extension-gapcursor@2.0.0-beta.25) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-gapcursor

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-gapcursor",
"description": "gapcursor extension for tiptap",
"version": "2.0.0-beta.25",
"version": "2.0.0-beta.26",
"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-beta.23](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-hard-break@2.0.0-beta.22...@tiptap/extension-hard-break@2.0.0-beta.23) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-hard-break
# [2.0.0-beta.22](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-hard-break@2.0.0-beta.21...@tiptap/extension-hard-break@2.0.0-beta.22) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-hard-break

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-hard-break",
"description": "hard break extension for tiptap",
"version": "2.0.0-beta.22",
"version": "2.0.0-beta.23",
"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-beta.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-heading@2.0.0-beta.16...@tiptap/extension-heading@2.0.0-beta.17) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-heading
# [2.0.0-beta.16](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-heading@2.0.0-beta.15...@tiptap/extension-heading@2.0.0-beta.16) (2021-10-08)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-heading",
"description": "heading extension for tiptap",
"version": "2.0.0-beta.16",
"version": "2.0.0-beta.17",
"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-beta.24](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-highlight@2.0.0-beta.23...@tiptap/extension-highlight@2.0.0-beta.24) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-highlight
# [2.0.0-beta.23](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-highlight@2.0.0-beta.22...@tiptap/extension-highlight@2.0.0-beta.23) (2021-10-10)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-highlight",
"description": "highlight extension for tiptap",
"version": "2.0.0-beta.23",
"version": "2.0.0-beta.24",
"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-beta.23](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-horizontal-rule@2.0.0-beta.22...@tiptap/extension-horizontal-rule@2.0.0-beta.23) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-horizontal-rule
# [2.0.0-beta.22](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-horizontal-rule@2.0.0-beta.21...@tiptap/extension-horizontal-rule@2.0.0-beta.22) (2021-10-08)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-horizontal-rule",
"description": "horizontal rule extension for tiptap",
"version": "2.0.0-beta.22",
"version": "2.0.0-beta.23",
"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-beta.18](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-image@2.0.0-beta.17...@tiptap/extension-image@2.0.0-beta.18) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-image
# [2.0.0-beta.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-image@2.0.0-beta.16...@tiptap/extension-image@2.0.0-beta.17) (2021-10-11)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-image",
"description": "image extension for tiptap",
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"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-beta.18](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-italic@2.0.0-beta.17...@tiptap/extension-italic@2.0.0-beta.18) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-italic
# [2.0.0-beta.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-italic@2.0.0-beta.16...@tiptap/extension-italic@2.0.0-beta.17) (2021-10-10)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-italic",
"description": "italic extension for tiptap",
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"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-beta.22](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-link@2.0.0-beta.21...@tiptap/extension-link@2.0.0-beta.22) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-link
# [2.0.0-beta.21](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-link@2.0.0-beta.20...@tiptap/extension-link@2.0.0-beta.21) (2021-10-08)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-link",
"description": "link extension for tiptap",
"version": "2.0.0-beta.21",
"version": "2.0.0-beta.22",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -24,7 +24,7 @@
"@tiptap/core": "^2.0.0-beta.1"
},
"dependencies": {
"linkifyjs": "^3.0.1",
"linkifyjs": "^3.0.3",
"prosemirror-state": "^1.3.4"
},
"repository": {

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-beta.76](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-mention@2.0.0-beta.75...@tiptap/extension-mention@2.0.0-beta.76) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-mention
# [2.0.0-beta.75](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-mention@2.0.0-beta.74...@tiptap/extension-mention@2.0.0-beta.75) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-mention

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-mention",
"description": "mention extension for tiptap",
"version": "2.0.0-beta.75",
"version": "2.0.0-beta.76",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -24,7 +24,7 @@
"@tiptap/core": "^2.0.0-beta.1"
},
"dependencies": {
"@tiptap/suggestion": "^2.0.0-beta.72",
"@tiptap/suggestion": "^2.0.0-beta.73",
"prosemirror-model": "^1.14.3",
"prosemirror-state": "^1.3.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-beta.18](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-ordered-list@2.0.0-beta.17...@tiptap/extension-ordered-list@2.0.0-beta.18) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-ordered-list
# [2.0.0-beta.17](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-ordered-list@2.0.0-beta.16...@tiptap/extension-ordered-list@2.0.0-beta.17) (2021-10-08)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-ordered-list",
"description": "ordered list extension for tiptap",
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"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-beta.34](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-placeholder@2.0.0-beta.33...@tiptap/extension-placeholder@2.0.0-beta.34) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-placeholder
# [2.0.0-beta.33](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-placeholder@2.0.0-beta.32...@tiptap/extension-placeholder@2.0.0-beta.33) (2021-10-12)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-placeholder",
"description": "placeholder extension for tiptap",
"version": "2.0.0-beta.33",
"version": "2.0.0-beta.34",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -26,7 +26,7 @@
"dependencies": {
"prosemirror-model": "^1.14.3",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.20.2"
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

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-beta.20](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-strike@2.0.0-beta.19...@tiptap/extension-strike@2.0.0-beta.20) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-strike
# [2.0.0-beta.19](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-strike@2.0.0-beta.18...@tiptap/extension-strike@2.0.0-beta.19) (2021-10-10)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-strike",
"description": "strike extension for tiptap",
"version": "2.0.0-beta.19",
"version": "2.0.0-beta.20",
"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-beta.33](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table@2.0.0-beta.32...@tiptap/extension-table@2.0.0-beta.33) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-table
# [2.0.0-beta.32](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-table@2.0.0-beta.31...@tiptap/extension-table@2.0.0-beta.32) (2021-10-08)
**Note:** Version bump only for package @tiptap/extension-table

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-table",
"description": "table extension for tiptap",
"version": "2.0.0-beta.32",
"version": "2.0.0-beta.33",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -25,7 +25,7 @@
},
"dependencies": {
"prosemirror-tables": "^1.1.1",
"prosemirror-view": "^1.20.2"
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

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-beta.20](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-task-item@2.0.0-beta.19...@tiptap/extension-task-item@2.0.0-beta.20) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-task-item
# [2.0.0-beta.19](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-task-item@2.0.0-beta.18...@tiptap/extension-task-item@2.0.0-beta.19) (2021-10-08)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/extension-task-item",
"description": "task item extension for tiptap",
"version": "2.0.0-beta.19",
"version": "2.0.0-beta.20",
"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-beta.16](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-typography@2.0.0-beta.15...@tiptap/extension-typography@2.0.0-beta.16) (2021-10-14)
**Note:** Version bump only for package @tiptap/extension-typography
# [2.0.0-beta.15](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-typography@2.0.0-beta.14...@tiptap/extension-typography@2.0.0-beta.15) (2021-10-08)

View File

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

View File

@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-beta.123](https://github.com/ueberdosis/tiptap/compare/@tiptap/html@2.0.0-beta.122...@tiptap/html@2.0.0-beta.123) (2021-10-14)
**Note:** Version bump only for package @tiptap/html
# [2.0.0-beta.122](https://github.com/ueberdosis/tiptap/compare/@tiptap/html@2.0.0-beta.121...@tiptap/html@2.0.0-beta.122) (2021-10-14)
**Note:** Version bump only for package @tiptap/html
# [2.0.0-beta.121](https://github.com/ueberdosis/tiptap/compare/@tiptap/html@2.0.0-beta.120...@tiptap/html@2.0.0-beta.121) (2021-10-10)
**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-beta.121",
"version": "2.0.0-beta.123",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -21,7 +21,7 @@
"dist"
],
"dependencies": {
"@tiptap/core": "^2.0.0-beta.122",
"@tiptap/core": "^2.0.0-beta.124",
"hostic-dom": "^0.8.7",
"prosemirror-model": "^1.14.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-beta.82](https://github.com/ueberdosis/tiptap/compare/@tiptap/react@2.0.0-beta.81...@tiptap/react@2.0.0-beta.82) (2021-10-14)
**Note:** Version bump only for package @tiptap/react
# [2.0.0-beta.81](https://github.com/ueberdosis/tiptap/compare/@tiptap/react@2.0.0-beta.80...@tiptap/react@2.0.0-beta.81) (2021-10-12)

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/react",
"description": "React components for tiptap",
"version": "2.0.0-beta.81",
"version": "2.0.0-beta.82",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -21,7 +21,7 @@
"dist"
],
"devDependencies": {
"@types/react": "^17.0.27",
"@types/react": "^17.0.29",
"@types/react-dom": "^17.0.7",
"react": "^17.0.0",
"react-dom": "^17.0.0"
@ -32,9 +32,9 @@
"react-dom": "^17.0.0"
},
"dependencies": {
"@tiptap/extension-bubble-menu": "^2.0.0-beta.40",
"@tiptap/extension-floating-menu": "^2.0.0-beta.34",
"prosemirror-view": "^1.20.2"
"@tiptap/extension-bubble-menu": "^2.0.0-beta.41",
"@tiptap/extension-floating-menu": "^2.0.0-beta.35",
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

View File

@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-beta.126](https://github.com/ueberdosis/tiptap/compare/@tiptap/starter-kit@2.0.0-beta.125...@tiptap/starter-kit@2.0.0-beta.126) (2021-10-14)
**Note:** Version bump only for package @tiptap/starter-kit
# [2.0.0-beta.125](https://github.com/ueberdosis/tiptap/compare/@tiptap/starter-kit@2.0.0-beta.124...@tiptap/starter-kit@2.0.0-beta.125) (2021-10-14)
**Note:** Version bump only for package @tiptap/starter-kit
# [2.0.0-beta.124](https://github.com/ueberdosis/tiptap/compare/@tiptap/starter-kit@2.0.0-beta.123...@tiptap/starter-kit@2.0.0-beta.124) (2021-10-13)
**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-beta.124",
"version": "2.0.0-beta.126",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -21,24 +21,24 @@
"dist"
],
"dependencies": {
"@tiptap/core": "^2.0.0-beta.122",
"@tiptap/extension-blockquote": "^2.0.0-beta.17",
"@tiptap/extension-bold": "^2.0.0-beta.17",
"@tiptap/extension-bullet-list": "^2.0.0-beta.16",
"@tiptap/extension-code": "^2.0.0-beta.18",
"@tiptap/extension-code-block": "^2.0.0-beta.22",
"@tiptap/core": "^2.0.0-beta.124",
"@tiptap/extension-blockquote": "^2.0.0-beta.18",
"@tiptap/extension-bold": "^2.0.0-beta.18",
"@tiptap/extension-bullet-list": "^2.0.0-beta.17",
"@tiptap/extension-code": "^2.0.0-beta.19",
"@tiptap/extension-code-block": "^2.0.0-beta.23",
"@tiptap/extension-document": "^2.0.0-beta.13",
"@tiptap/extension-dropcursor": "^2.0.0-beta.19",
"@tiptap/extension-gapcursor": "^2.0.0-beta.25",
"@tiptap/extension-hard-break": "^2.0.0-beta.22",
"@tiptap/extension-heading": "^2.0.0-beta.16",
"@tiptap/extension-gapcursor": "^2.0.0-beta.26",
"@tiptap/extension-hard-break": "^2.0.0-beta.23",
"@tiptap/extension-heading": "^2.0.0-beta.17",
"@tiptap/extension-history": "^2.0.0-beta.16",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.22",
"@tiptap/extension-italic": "^2.0.0-beta.17",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.23",
"@tiptap/extension-italic": "^2.0.0-beta.18",
"@tiptap/extension-list-item": "^2.0.0-beta.14",
"@tiptap/extension-ordered-list": "^2.0.0-beta.17",
"@tiptap/extension-ordered-list": "^2.0.0-beta.18",
"@tiptap/extension-paragraph": "^2.0.0-beta.17",
"@tiptap/extension-strike": "^2.0.0-beta.19",
"@tiptap/extension-strike": "^2.0.0-beta.20",
"@tiptap/extension-text": "^2.0.0-beta.13"
},
"repository": {

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-beta.73](https://github.com/ueberdosis/tiptap/compare/@tiptap/suggestion@2.0.0-beta.72...@tiptap/suggestion@2.0.0-beta.73) (2021-10-14)
**Note:** Version bump only for package @tiptap/suggestion
# [2.0.0-beta.72](https://github.com/ueberdosis/tiptap/compare/@tiptap/suggestion@2.0.0-beta.71...@tiptap/suggestion@2.0.0-beta.72) (2021-10-08)
**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-beta.72",
"version": "2.0.0-beta.73",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -26,7 +26,7 @@
"dependencies": {
"prosemirror-model": "^1.14.3",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.20.2"
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

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-beta.59](https://github.com/ueberdosis/tiptap/compare/@tiptap/vue-2@2.0.0-beta.58...@tiptap/vue-2@2.0.0-beta.59) (2021-10-14)
**Note:** Version bump only for package @tiptap/vue-2
# [2.0.0-beta.58](https://github.com/ueberdosis/tiptap/compare/@tiptap/vue-2@2.0.0-beta.57...@tiptap/vue-2@2.0.0-beta.58) (2021-10-08)
**Note:** Version bump only for package @tiptap/vue-2

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/vue-2",
"description": "Vue components for tiptap",
"version": "2.0.0-beta.58",
"version": "2.0.0-beta.59",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -28,9 +28,9 @@
"vue": "^2.6.0"
},
"dependencies": {
"@tiptap/extension-bubble-menu": "^2.0.0-beta.40",
"@tiptap/extension-floating-menu": "^2.0.0-beta.34",
"prosemirror-view": "^1.20.2"
"@tiptap/extension-bubble-menu": "^2.0.0-beta.41",
"@tiptap/extension-floating-menu": "^2.0.0-beta.35",
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

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-beta.69](https://github.com/ueberdosis/tiptap/compare/@tiptap/vue-3@2.0.0-beta.68...@tiptap/vue-3@2.0.0-beta.69) (2021-10-14)
**Note:** Version bump only for package @tiptap/vue-3
# [2.0.0-beta.68](https://github.com/ueberdosis/tiptap/compare/@tiptap/vue-3@2.0.0-beta.67...@tiptap/vue-3@2.0.0-beta.68) (2021-10-08)
**Note:** Version bump only for package @tiptap/vue-3

View File

@ -1,7 +1,7 @@
{
"name": "@tiptap/vue-3",
"description": "Vue components for tiptap",
"version": "2.0.0-beta.68",
"version": "2.0.0-beta.69",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
@ -28,10 +28,10 @@
"vue": "^3.0.0"
},
"dependencies": {
"@tiptap/extension-bubble-menu": "^2.0.0-beta.40",
"@tiptap/extension-floating-menu": "^2.0.0-beta.34",
"@tiptap/extension-bubble-menu": "^2.0.0-beta.41",
"@tiptap/extension-floating-menu": "^2.0.0-beta.35",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.20.2"
"prosemirror-view": "^1.20.3"
},
"repository": {
"type": "git",

799
yarn.lock

File diff suppressed because it is too large Load Diff