refactor: restructure extensions
This commit is contained in:
32
packages/extension-dropcursor/src/dropcursor.ts
Normal file
32
packages/extension-dropcursor/src/dropcursor.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
import { Extension } from '@tiptap/core'
|
||||
import { dropCursor } from 'prosemirror-dropcursor'
|
||||
|
||||
export interface DropcursorOptions {
|
||||
color: string | null,
|
||||
width: number | null,
|
||||
class: string | null,
|
||||
}
|
||||
|
||||
const Dropcursor = Extension.create({
|
||||
name: 'dropCursor',
|
||||
|
||||
defaultOptions: <DropcursorOptions>{
|
||||
color: 'black',
|
||||
width: 1,
|
||||
class: null,
|
||||
},
|
||||
|
||||
addProseMirrorPlugins() {
|
||||
return [
|
||||
dropCursor(this.options),
|
||||
]
|
||||
},
|
||||
})
|
||||
|
||||
export default Dropcursor
|
||||
|
||||
declare module '@tiptap/core' {
|
||||
interface AllExtensions {
|
||||
Dropcursor: typeof Dropcursor,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user