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

This commit is contained in:
Hans Pagel 2021-01-28 11:58:21 +01:00
commit cde0d8690a
112 changed files with 605 additions and 208 deletions

View File

@ -17,8 +17,8 @@
"test:open": "cypress open --project tests",
"test": "cypress run --project tests --quiet --reporter list",
"build:docs": "yarn --cwd ./docs build",
"build:ci": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --ci --scope @tiptap/$package; done",
"build:packages": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --scope @tiptap/$package; done",
"build:ci": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --ci --scope @tiptap/$package || exit 1; done",
"build:packages": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --scope @tiptap/$package || exit 1; done",
"release": "yarn lint && yarn test && yarn build:packages && lerna publish",
"clean:packages": "rm -rf ./packages/*/dist",
"reset": "yarn clean:packages && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./yarn.lock && yarn install"
@ -35,8 +35,8 @@
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"cypress": "^6.3.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.0",
@ -52,7 +52,7 @@
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-vue": "5",
"typedoc": "^0.20.18",
"typedoc": "^0.20.19",
"typescript": "^4.1.3",
"vue": "^2.6.12"
}

View File

@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.12](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/core@2.0.0-alpha.11...@tiptap/core@2.0.0-alpha.12) (2021-01-28)
**Note:** Version bump only for package @tiptap/core
# [2.0.0-alpha.11](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/core@2.0.0-alpha.10...@tiptap/core@2.0.0-alpha.11) (2021-01-28)
### Bug Fixes
* dont merge classes ([dba0c1a](https://github.com/ueberdosis/tiptap-next/commit/dba0c1ac15e9beda3ebd027c67c969a4fe7ae7c7))
# [2.0.0-alpha.10](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/core@2.0.0-alpha.9...@tiptap/core@2.0.0-alpha.10) (2021-01-06)
**Note:** Version bump only for package @tiptap/core

View File

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

View File

@ -5,6 +5,7 @@ import {
ChainedCommands,
CanCommands,
CommandSpec,
CommandProps,
} from './types'
import getAllMethodNames from './utilities/getAllMethodNames'
@ -41,7 +42,7 @@ export default class CommandManager {
return this.editor
}
public createCommands() {
public createCommands(): SingleCommands {
const { commands, editor } = this
const { state, view } = editor
const { tr } = state
@ -64,7 +65,7 @@ export default class CommandManager {
})) as SingleCommands
}
public createChain(startTr?: Transaction, shouldDispatch = true) {
public createChain(startTr?: Transaction, shouldDispatch = true): ChainedCommands {
const { commands, editor } = this
const { state, view } = editor
const callbacks: boolean[] = []
@ -99,7 +100,7 @@ export default class CommandManager {
}) as ChainedCommands
}
public createCan(startTr?: Transaction) {
public createCan(startTr?: Transaction): CanCommands {
const { commands, editor } = this
const { state } = editor
const dispatch = false
@ -117,7 +118,7 @@ export default class CommandManager {
} as CanCommands
}
public buildProps(tr: Transaction, shouldDispatch = true) {
public buildProps(tr: Transaction, shouldDispatch = true): CommandProps {
const { editor, commands } = this
const { state, view } = editor
@ -140,7 +141,7 @@ export default class CommandManager {
.entries(commands)
.map(([name, command]) => {
return [name, (...args: any[]) => command(...args)(props)]
}))
})) as SingleCommands
},
}

View File

@ -12,7 +12,15 @@ import createStyleTag from './utilities/createStyleTag'
import CommandManager from './CommandManager'
import ExtensionManager from './ExtensionManager'
import EventEmitter from './EventEmitter'
import { EditorOptions, EditorContent, CommandSpec } from './types'
import {
EditorOptions,
EditorContent,
CommandSpec,
CanCommands,
ChainedCommands,
SingleCommands,
AnyObject,
} from './types'
import * as extensions from './extensions'
import style from './style'
@ -68,7 +76,7 @@ export class Editor extends EventEmitter {
/**
* This method is called after the proxy is initialized.
*/
private init() {
private init(): void {
this.createCommandManager()
this.createExtensionManager()
this.createSchema()
@ -101,28 +109,28 @@ export class Editor extends EventEmitter {
/**
* An object of all registered commands.
*/
public get commands() {
public get commands(): SingleCommands {
return this.commandManager.createCommands()
}
/**
* Create a command chain to call multiple commands at once.
*/
public chain() {
public chain(): ChainedCommands {
return this.commandManager.createChain()
}
/**
* Check if a command or a command chain can be executed. Without executing it.
*/
public can() {
public can(): CanCommands {
return this.commandManager.createCan()
}
/**
* Inject CSS styles.
*/
private injectCSS() {
private injectCSS(): void {
if (this.options.injectCSS && document) {
this.css = createStyleTag(style)
}
@ -133,7 +141,7 @@ export class Editor extends EventEmitter {
*
* @param options A list of options
*/
public setOptions(options: Partial<EditorOptions> = {}) {
public setOptions(options: Partial<EditorOptions> = {}): void {
this.options = { ...this.options, ...options }
if (this.view && this.state && !this.isDestroyed) {
@ -144,14 +152,14 @@ export class Editor extends EventEmitter {
/**
* Returns whether the editor is editable.
*/
public get isEditable() {
public get isEditable(): boolean {
return this.view && this.view.editable
}
/**
* Returns the editor state.
*/
public get state() {
public get state(): EditorState {
return this.view.state
}
@ -160,7 +168,7 @@ export class Editor extends EventEmitter {
*
* @param commands A list of commands
*/
public registerCommands(commands: { [key: string]: CommandSpec }) {
public registerCommands(commands: { [key: string]: CommandSpec }): void {
Object
.entries(commands)
.forEach(([name, command]) => this.registerCommand(name, command))
@ -184,7 +192,7 @@ export class Editor extends EventEmitter {
* @param plugin A ProseMirror plugin
* @param handlePlugins Control how to merge the plugin into the existing plugins.
*/
public registerPlugin(plugin: Plugin, handlePlugins?: (newPlugin: Plugin, plugins: Plugin[]) => Plugin[]) {
public registerPlugin(plugin: Plugin, handlePlugins?: (newPlugin: Plugin, plugins: Plugin[]) => Plugin[]): void {
const plugins = typeof handlePlugins === 'function'
? handlePlugins(plugin, this.state.plugins)
: [plugin, ...this.state.plugins]
@ -199,7 +207,7 @@ export class Editor extends EventEmitter {
*
* @param name The plugins name
*/
public unregisterPlugin(name: string) {
public unregisterPlugin(name: string): void {
const state = this.state.reconfigure({
// @ts-ignore
plugins: this.state.plugins.filter(plugin => !plugin.key.startsWith(`${name}$`)),
@ -211,7 +219,7 @@ export class Editor extends EventEmitter {
/**
* Creates an extension manager.
*/
private createExtensionManager() {
private createExtensionManager(): void {
const coreExtensions = Object.entries(extensions).map(([, extension]) => extension)
const allExtensions = [...this.options.extensions, ...coreExtensions].filter(extension => {
return ['extension', 'node', 'mark'].includes(extension?.type)
@ -223,21 +231,21 @@ export class Editor extends EventEmitter {
/**
* Creates an command manager.
*/
private createCommandManager() {
private createCommandManager(): void {
this.commandManager = new CommandManager(this.proxy)
}
/**
* Creates a ProseMirror schema.
*/
private createSchema() {
private createSchema(): void {
this.schema = this.extensionManager.schema
}
/**
* Creates a ProseMirror view.
*/
private createView() {
private createView(): void {
this.view = new EditorView(this.options.element, {
...this.options.editorProps,
dispatchTransaction: this.dispatchTransaction.bind(this),
@ -265,7 +273,7 @@ export class Editor extends EventEmitter {
/**
* Creates all node views.
*/
public createNodeViews() {
public createNodeViews(): void {
this.view.setProps({
nodeViews: this.extensionManager.nodeViews,
})
@ -304,7 +312,7 @@ export class Editor extends EventEmitter {
*
* @param transaction An editor state transaction
*/
private dispatchTransaction(transaction: Transaction) {
private dispatchTransaction(transaction: Transaction): void {
const state = this.state.apply(transaction)
const selectionHasChanged = !this.state.selection.eq(state.selection)
@ -338,7 +346,7 @@ export class Editor extends EventEmitter {
*
* @param name Name of the node
*/
public getNodeAttributes(name: string) {
public getNodeAttributes(name: string): AnyObject {
return getNodeAttributes(this.state, name)
}
@ -347,7 +355,7 @@ export class Editor extends EventEmitter {
*
* @param name Name of the mark
*/
public getMarkAttributes(name: string) {
public getMarkAttributes(name: string): AnyObject {
return getMarkAttributes(this.state, name)
}
@ -374,21 +382,21 @@ export class Editor extends EventEmitter {
/**
* Get the document as JSON.
*/
public getJSON() {
public getJSON(): AnyObject {
return this.state.doc.toJSON()
}
/**
* Get the document as HTML.
*/
public getHTML() {
public getHTML(): string {
return getHTMLFromFragment(this.state.doc, this.schema)
}
/**
* Check if there is no content.
*/
public isEmpty() {
public isEmpty(): boolean {
const defaultContent = this.state.doc.type.createAndFill()?.toJSON()
const content = this.getJSON()
@ -398,14 +406,14 @@ export class Editor extends EventEmitter {
/**
* Get the number of characters for the current document.
*/
public getCharacterCount() {
public getCharacterCount(): number {
return this.state.doc.content.size - 2
}
/**
* Destroy the editor.
*/
public destroy() {
public destroy(): void {
this.emit('destroy')
if (this.view) {
@ -419,7 +427,7 @@ export class Editor extends EventEmitter {
/**
* Check if the editor is already destroyed.
*/
private get isDestroyed() {
private get isDestroyed(): boolean {
// @ts-ignore
return !this.view?.docView
}

View File

@ -2,7 +2,7 @@ export default class EventEmitter {
private callbacks: { [key: string]: Function[] } = {}
public on(event: string, fn: Function) {
public on(event: string, fn: Function): this {
if (!this.callbacks[event]) {
this.callbacks[event] = []
}
@ -12,7 +12,7 @@ export default class EventEmitter {
return this
}
protected emit(event: string, ...args: any) {
protected emit(event: string, ...args: any): this {
const callbacks = this.callbacks[event]
if (callbacks) {
@ -22,7 +22,7 @@ export default class EventEmitter {
return this
}
public off(event: string, fn?: Function) {
public off(event: string, fn?: Function): this {
const callbacks = this.callbacks[event]
if (callbacks) {
@ -36,7 +36,7 @@ export default class EventEmitter {
return this
}
protected removeAllListeners() {
protected removeAllListeners(): void {
this.callbacks = {}
}
}

View File

@ -2,6 +2,7 @@ import { keymap } from 'prosemirror-keymap'
import { Schema, Node as ProsemirrorNode } from 'prosemirror-model'
import { inputRules as inputRulesPlugin } from 'prosemirror-inputrules'
import { EditorView, Decoration } from 'prosemirror-view'
import { Plugin } from 'prosemirror-state'
import { Editor } from './Editor'
import { Extensions, NodeViewRenderer } from './types'
import getSchema from './helpers/getSchema'
@ -65,7 +66,7 @@ export default class ExtensionManager {
})
}
get plugins() {
get plugins(): Plugin[] {
return this.extensions
.map(extension => {
const context = {

View File

@ -11,7 +11,7 @@ import {
* Get a list of all extension attributes defined in `addAttribute` and `addGlobalAttribute`.
* @param extensions List of extensions
*/
export default function getAttributesFromExtensions(extensions: Extensions) {
export default function getAttributesFromExtensions(extensions: Extensions): ExtensionAttribute[] {
const extensionAttributes: ExtensionAttribute[] = []
const { nodeExtensions, markExtensions } = splitExtensions(extensions)
const nodeAndMarkExtensions = [...nodeExtensions, ...markExtensions]

View File

@ -1,8 +1,9 @@
import { EditorState } from 'prosemirror-state'
import { Mark, MarkType } from 'prosemirror-model'
import getMarkType from './getMarkType'
import { AnyObject } from '../types'
export default function getMarkAttributes(state: EditorState, typeOrName: string | MarkType) {
export default function getMarkAttributes(state: EditorState, typeOrName: string | MarkType): AnyObject {
const type = getMarkType(typeOrName, state.schema)
const { from, to, empty } = state.selection
let marks: Mark[] = []

View File

@ -1,9 +1,5 @@
import { MarkType, ResolvedPos } from 'prosemirror-model'
interface Range {
from: number,
to: number,
}
import { Range } from '../types'
export default function getMarkRange($pos: ResolvedPos, type: MarkType): Range | void {
if (!$pos || !type) {

View File

@ -0,0 +1,16 @@
import { EditorState } from 'prosemirror-state'
import { MarkRange } from '../types'
export default function getMarksBetween(from: number, to: number, state: EditorState): MarkRange[] {
let marks: MarkRange[] = []
state.doc.nodesBetween(from, to, (node, pos) => {
marks = [...marks, ...node.marks.map(mark => ({
from: pos,
to: pos + node.nodeSize,
mark,
}))]
})
return marks
}

View File

@ -1,8 +1,9 @@
import { EditorState } from 'prosemirror-state'
import { Node, NodeType } from 'prosemirror-model'
import getNodeType from './getNodeType'
import { AnyObject } from '../types'
export default function getNodeAttributes(state: EditorState, typeOrName: string | NodeType) {
export default function getNodeAttributes(state: EditorState, typeOrName: string | NodeType): AnyObject {
const type = getNodeType(typeOrName, state.schema)
const { from, to } = state.selection
let nodes: Node[] = []

View File

@ -1,6 +1,6 @@
import { Schema } from 'prosemirror-model'
import { MarkType, NodeType, Schema } from 'prosemirror-model'
export default function getSchemaTypeByName(name: string, schema: Schema) {
export default function getSchemaTypeByName(name: string, schema: Schema): NodeType | MarkType | null {
if (schema.nodes[name]) {
return schema.nodes[name]
}

View File

@ -1,6 +1,6 @@
import { Schema } from 'prosemirror-model'
export default function getSchemaTypeNameByName(name: string, schema: Schema) {
export default function getSchemaTypeNameByName(name: string, schema: Schema): 'node' | 'mark' | null {
if (schema.nodes[name]) {
return 'node'
}

View File

@ -2,7 +2,7 @@ import { Extensions } from '../types'
import splitExtensions from './splitExtensions'
import callOrReturn from '../utilities/callOrReturn'
export default function isList(name: string, extensions: Extensions) {
export default function isList(name: string, extensions: Extensions): boolean {
const { nodeExtensions } = splitExtensions(extensions)
const extension = nodeExtensions.find(item => item.config.name === name)

View File

@ -1,14 +1,8 @@
import { EditorState } from 'prosemirror-state'
import { Mark, MarkType } from 'prosemirror-model'
import { MarkType } from 'prosemirror-model'
import objectIncludes from '../utilities/objectIncludes'
import getMarkType from './getMarkType'
import { AnyObject } from '../types'
export type MarkRange = {
mark: Mark,
from: number,
to: number,
}
import { AnyObject, MarkRange } from '../types'
export default function isMarkActive(
state: EditorState,

View File

@ -1,14 +1,8 @@
import { EditorState } from 'prosemirror-state'
import { Node, NodeType } from 'prosemirror-model'
import { NodeType } from 'prosemirror-model'
import objectIncludes from '../utilities/objectIncludes'
import getNodeType from './getNodeType'
import { AnyObject } from '../types'
export type NodeRange = {
node: Node,
from: number,
to: number,
}
import { AnyObject, NodeRange } from '../types'
export default function isNodeActive(
state: EditorState,

View File

@ -1,22 +1,8 @@
import { InputRule } from 'prosemirror-inputrules'
import { EditorState } from 'prosemirror-state'
import { MarkType } from 'prosemirror-model'
import getMarksBetween from '../helpers/getMarksBetween'
function getMarksBetween(start: number, end: number, state: EditorState) {
let marks: any[] = []
state.doc.nodesBetween(start, end, (node, pos) => {
marks = [...marks, ...node.marks.map(mark => ({
start: pos,
end: pos + node.nodeSize,
mark,
}))]
})
return marks
}
export default function (regexp: RegExp, markType: MarkType, getAttributes?: Function) {
export default function (regexp: RegExp, markType: MarkType, getAttributes?: Function): InputRule {
return new InputRule(regexp, (state, match, start, end) => {
const attributes = getAttributes instanceof Function
? getAttributes(match)
@ -33,10 +19,12 @@ export default function (regexp: RegExp, markType: MarkType, getAttributes?: Fun
const excludedMarks = getMarksBetween(start, end, state)
.filter(item => {
// TODO: PR to add excluded to MarkType
// @ts-ignore
const { excluded } = item.mark.type
return excluded.find((type: MarkType) => type.name === markType.name)
})
.filter(item => item.end > textStart)
.filter(item => item.to > textStart)
if (excludedMarks.length) {
return null

View File

@ -1,4 +1,8 @@
import { Node as ProseMirrorNode, ParseOptions } from 'prosemirror-model'
import {
Node as ProseMirrorNode,
Mark as ProseMirrorMark,
ParseOptions,
} from 'prosemirror-model'
import {
EditorView,
Decoration,
@ -36,7 +40,7 @@ export interface EditorOptions {
export type EditorContent = string | JSON | null
export type Command = (props: {
export type CommandProps = {
editor: Editor,
tr: Transaction,
commands: SingleCommands,
@ -45,7 +49,9 @@ export type Command = (props: {
state: EditorState,
view: EditorView,
dispatch: ((args?: any) => any) | undefined,
}) => boolean
}
export type Command = (props: CommandProps) => boolean
export type CommandSpec = (...args: any[]) => Command
@ -136,4 +142,16 @@ export type Range = {
to: number,
}
export type NodeRange = {
node: ProseMirrorNode,
from: number,
to: number,
}
export type MarkRange = {
mark: ProseMirrorMark,
from: number,
to: number,
}
export type Predicate = (node: ProseMirrorNode) => boolean

View File

@ -4,7 +4,7 @@
* @param value Function or any value.
* @param context Optional context to bind to function.
*/
export default function callOrReturn(value: any, context?: any) {
export default function callOrReturn(value: any, context?: any): any {
if (typeof value === 'function') {
if (context) {
return value.bind(context)()

View File

@ -5,7 +5,7 @@ import { AnyObject } from '../types'
* @param obj Object
* @param key Key to remove
*/
export default function deleteProps(obj: AnyObject, propOrProps: string | string[]) {
export default function deleteProps(obj: AnyObject, propOrProps: string | string[]): AnyObject {
const props = typeof propOrProps === 'string'
? [propOrProps]
: propOrProps

View File

@ -1,4 +1,4 @@
export default function fromString(value: any) {
export default function fromString(value: any): any {
if (typeof value !== 'string') {
return value
}

View File

@ -1,3 +1,3 @@
export default function isEmptyObject(object = {}) {
export default function isEmptyObject(object = {}): boolean {
return Object.keys(object).length === 0 && object.constructor === Object
}

View File

@ -1,4 +1,4 @@
export default function magicMethods(Clazz: any) {
export default function magicMethods(Clazz: any): any {
const classHandler = Object.create(null)
classHandler.construct = (_: any, args: any) => {

View File

@ -1,6 +1,6 @@
import { AnyObject } from '../types'
export default function mergeAttributes(...objects: AnyObject[]) {
export default function mergeAttributes(...objects: AnyObject[]): AnyObject {
return objects
.filter(item => !!item)
.reduce((items, item) => {

View File

@ -1,7 +1,7 @@
import { AnyObject } from '../types'
import isObject from './isObject'
export default function mergeDeep(target: AnyObject, source: AnyObject) {
export default function mergeDeep(target: AnyObject, source: AnyObject): AnyObject {
const output = { ...target }
if (isObject(target) && isObject(source)) {

View File

@ -1,4 +1,4 @@
export default function removeElement(element: HTMLElement) {
export default function removeElement(element: HTMLElement): void {
if (element && element.parentNode) {
element.parentNode.removeChild(element)
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 2.0.0-alpha.6 (2021-01-28)
**Note:** Version bump only for package @tiptap/extension-character-count

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 2.0.0-alpha.6 (2021-01-28)
**Note:** Version bump only for package @tiptap/extension-table-cell

View File

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

View File

@ -0,0 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 2.0.0-alpha.6 (2021-01-28)
**Note:** Version bump only for package @tiptap/extension-table-header

View File

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

View File

@ -0,0 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 2.0.0-alpha.6 (2021-01-28)
**Note:** Version bump only for package @tiptap/extension-table-row

View File

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

View File

@ -0,0 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 2.0.0-alpha.6 (2021-01-28)
**Note:** Version bump only for package @tiptap/extension-table

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

Some files were not shown because too many files have changed in this diff Show More