tiptap/packages/extension-dropcursor/src/dropcursor.ts
Philipp Kühn acd789be0a code style
2021-06-14 16:00:32 +02:00

25 lines
464 B
TypeScript

import { Extension } from '@tiptap/core'
import { dropCursor } from 'prosemirror-dropcursor'
export interface DropcursorOptions {
color: string | null,
width: number | null,
class: string | null,
}
export const Dropcursor = Extension.create<DropcursorOptions>({
name: 'dropCursor',
defaultOptions: {
color: 'currentColor',
width: 1,
class: null,
},
addProseMirrorPlugins() {
return [
dropCursor(this.options),
]
},
})