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
112 changed files with 605 additions and 208 deletions

View File

@@ -17,8 +17,8 @@
"test:open": "cypress open --project tests", "test:open": "cypress open --project tests",
"test": "cypress run --project tests --quiet --reporter list", "test": "cypress run --project tests --quiet --reporter list",
"build:docs": "yarn --cwd ./docs build", "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: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; 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", "release": "yarn lint && yarn test && yarn build:packages && lerna publish",
"clean:packages": "rm -rf ./packages/*/dist", "clean:packages": "rm -rf ./packages/*/dist",
"reset": "yarn clean:packages && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./yarn.lock && yarn install" "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-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^17.0.0", "@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1", "@rollup/plugin-node-resolve": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.0", "@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.0", "@typescript-eslint/parser": "^4.14.1",
"cypress": "^6.3.0", "cypress": "^6.3.0",
"eslint": "^7.15.0", "eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.0", "eslint-config-airbnb-base": "^14.2.0",
@@ -52,7 +52,7 @@
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0", "rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-vue": "5", "rollup-plugin-vue": "5",
"typedoc": "^0.20.18", "typedoc": "^0.20.19",
"typescript": "^4.1.3", "typescript": "^4.1.3",
"vue": "^2.6.12" "vue": "^2.6.12"
} }

View File

@@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.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) # [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 **Note:** Version bump only for package @tiptap/core

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,8 +1,9 @@
import { EditorState } from 'prosemirror-state' import { EditorState } from 'prosemirror-state'
import { Mark, MarkType } from 'prosemirror-model' import { Mark, MarkType } from 'prosemirror-model'
import getMarkType from './getMarkType' 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 type = getMarkType(typeOrName, state.schema)
const { from, to, empty } = state.selection const { from, to, empty } = state.selection
let marks: Mark[] = [] let marks: Mark[] = []

View File

@@ -1,9 +1,5 @@
import { MarkType, ResolvedPos } from 'prosemirror-model' import { MarkType, ResolvedPos } from 'prosemirror-model'
import { Range } from '../types'
interface Range {
from: number,
to: number,
}
export default function getMarkRange($pos: ResolvedPos, type: MarkType): Range | void { export default function getMarkRange($pos: ResolvedPos, type: MarkType): Range | void {
if (!$pos || !type) { 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 { EditorState } from 'prosemirror-state'
import { Node, NodeType } from 'prosemirror-model' import { Node, NodeType } from 'prosemirror-model'
import getNodeType from './getNodeType' 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 type = getNodeType(typeOrName, state.schema)
const { from, to } = state.selection const { from, to } = state.selection
let nodes: Node[] = [] 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]) { if (schema.nodes[name]) {
return schema.nodes[name] return schema.nodes[name]
} }

View File

@@ -1,6 +1,6 @@
import { Schema } from 'prosemirror-model' 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]) { if (schema.nodes[name]) {
return 'node' return 'node'
} }

View File

@@ -2,7 +2,7 @@ import { Extensions } from '../types'
import splitExtensions from './splitExtensions' import splitExtensions from './splitExtensions'
import callOrReturn from '../utilities/callOrReturn' 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 { nodeExtensions } = splitExtensions(extensions)
const extension = nodeExtensions.find(item => item.config.name === name) const extension = nodeExtensions.find(item => item.config.name === name)

View File

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

View File

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

View File

@@ -1,22 +1,8 @@
import { InputRule } from 'prosemirror-inputrules' import { InputRule } from 'prosemirror-inputrules'
import { EditorState } from 'prosemirror-state'
import { MarkType } from 'prosemirror-model' import { MarkType } from 'prosemirror-model'
import getMarksBetween from '../helpers/getMarksBetween'
function getMarksBetween(start: number, end: number, state: EditorState) { export default function (regexp: RegExp, markType: MarkType, getAttributes?: Function): InputRule {
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) {
return new InputRule(regexp, (state, match, start, end) => { return new InputRule(regexp, (state, match, start, end) => {
const attributes = getAttributes instanceof Function const attributes = getAttributes instanceof Function
? getAttributes(match) ? getAttributes(match)
@@ -33,10 +19,12 @@ export default function (regexp: RegExp, markType: MarkType, getAttributes?: Fun
const excludedMarks = getMarksBetween(start, end, state) const excludedMarks = getMarksBetween(start, end, state)
.filter(item => { .filter(item => {
// TODO: PR to add excluded to MarkType
// @ts-ignore
const { excluded } = item.mark.type const { excluded } = item.mark.type
return excluded.find((type: MarkType) => type.name === markType.name) return excluded.find((type: MarkType) => type.name === markType.name)
}) })
.filter(item => item.end > textStart) .filter(item => item.to > textStart)
if (excludedMarks.length) { if (excludedMarks.length) {
return null 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 { import {
EditorView, EditorView,
Decoration, Decoration,
@@ -36,7 +40,7 @@ export interface EditorOptions {
export type EditorContent = string | JSON | null export type EditorContent = string | JSON | null
export type Command = (props: { export type CommandProps = {
editor: Editor, editor: Editor,
tr: Transaction, tr: Transaction,
commands: SingleCommands, commands: SingleCommands,
@@ -45,7 +49,9 @@ export type Command = (props: {
state: EditorState, state: EditorState,
view: EditorView, view: EditorView,
dispatch: ((args?: any) => any) | undefined, dispatch: ((args?: any) => any) | undefined,
}) => boolean }
export type Command = (props: CommandProps) => boolean
export type CommandSpec = (...args: any[]) => Command export type CommandSpec = (...args: any[]) => Command
@@ -136,4 +142,16 @@ export type Range = {
to: number, 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 export type Predicate = (node: ProseMirrorNode) => boolean

View File

@@ -4,7 +4,7 @@
* @param value Function or any value. * @param value Function or any value.
* @param context Optional context to bind to function. * @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 (typeof value === 'function') {
if (context) { if (context) {
return value.bind(context)() return value.bind(context)()

View File

@@ -5,7 +5,7 @@ import { AnyObject } from '../types'
* @param obj Object * @param obj Object
* @param key Key to remove * @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' const props = typeof propOrProps === 'string'
? [propOrProps] ? [propOrProps]
: 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') { if (typeof value !== 'string') {
return value 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 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) const classHandler = Object.create(null)
classHandler.construct = (_: any, args: any) => { classHandler.construct = (_: any, args: any) => {

View File

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

View File

@@ -1,7 +1,7 @@
import { AnyObject } from '../types' import { AnyObject } from '../types'
import isObject from './isObject' import isObject from './isObject'
export default function mergeDeep(target: AnyObject, source: AnyObject) { export default function mergeDeep(target: AnyObject, source: AnyObject): AnyObject {
const output = { ...target } const output = { ...target }
if (isObject(target) && isObject(source)) { 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) { if (element && element.parentNode) {
element.parentNode.removeChild(element) element.parentNode.removeChild(element)
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
{ {
"name": "@tiptap/extension-bullet-list", "name": "@tiptap/extension-bullet-list",
"description": "bullet list extension for tiptap", "description": "bullet list extension for tiptap",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "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", "name": "@tiptap/extension-character-count",
"description": "font family extension for tiptap", "description": "font family extension for tiptap",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "tiptap",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
{ {
"name": "@tiptap/extension-list-item", "name": "@tiptap/extension-list-item",
"description": "list item extension for tiptap", "description": "list item extension for tiptap",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "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", "name": "@tiptap/extension-mention",
"description": "mention extension for tiptap", "description": "mention extension for tiptap",
"version": "2.0.0-alpha.0", "version": "2.0.0-alpha.2",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "tiptap",
@@ -25,6 +25,6 @@
"@tiptap/core": "^2.0.0-alpha.6" "@tiptap/core": "^2.0.0-alpha.6"
}, },
"dependencies": { "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. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.6](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/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) # [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 **Note:** Version bump only for package @tiptap/extension-ordered-list

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
{ {
"name": "@tiptap/extension-strike", "name": "@tiptap/extension-strike",
"description": "strike extension for tiptap", "description": "strike extension for tiptap",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "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", "name": "@tiptap/extension-table-cell",
"description": "table cell extension for tiptap", "description": "table cell extension for tiptap",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "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", "name": "@tiptap/extension-table-header",
"description": "table cell extension for tiptap", "description": "table cell extension for tiptap",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "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", "name": "@tiptap/extension-table-row",
"description": "table row extension for tiptap", "description": "table row extension for tiptap",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "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", "name": "@tiptap/extension-table",
"description": "table extension for tiptap", "description": "table extension for tiptap",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "tiptap",

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.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) # [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 **Note:** Version bump only for package @tiptap/extension-task-item

View File

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

View File

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

View File

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

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.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) # [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 **Note:** Version bump only for package @tiptap/extension-text-align

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-alpha.6](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/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) # [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 **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