@tiptap/extension-dropcursor
Advanced tools
Comparing version 2.0.0-beta.27 to 2.0.0-beta.28
import { Extension } from '@tiptap/core'; | ||
export interface DropcursorOptions { | ||
color: string | null; | ||
width: number | null; | ||
class: string | null; | ||
color: string | undefined; | ||
width: number | undefined; | ||
class: string | undefined; | ||
} | ||
export declare const Dropcursor: Extension<DropcursorOptions, any>; |
@@ -14,3 +14,3 @@ 'use strict'; | ||
width: 1, | ||
class: null, | ||
class: undefined, | ||
}; | ||
@@ -17,0 +17,0 @@ }, |
@@ -10,3 +10,3 @@ import { Extension } from '@tiptap/core'; | ||
width: 1, | ||
class: null, | ||
class: undefined, | ||
}; | ||
@@ -13,0 +13,0 @@ }, |
@@ -13,3 +13,3 @@ (function (global, factory) { | ||
width: 1, | ||
class: null, | ||
class: undefined, | ||
}; | ||
@@ -16,0 +16,0 @@ }, |
{ | ||
"name": "@tiptap/extension-dropcursor", | ||
"description": "dropcursor extension for tiptap", | ||
"version": "2.0.0-beta.27", | ||
"version": "2.0.0-beta.28", | ||
"homepage": "https://tiptap.dev", | ||
@@ -27,4 +27,3 @@ "keywords": [ | ||
"dependencies": { | ||
"@types/prosemirror-dropcursor": "^1.0.3", | ||
"prosemirror-dropcursor": "^1.4.0" | ||
"prosemirror-dropcursor": "^1.5.0" | ||
}, | ||
@@ -36,3 +35,3 @@ "repository": { | ||
}, | ||
"gitHead": "591c0807a2ab5c34b4b7fe12c12511fe4f493ebd" | ||
"gitHead": "a1e612bf897a14065b4f9ba6d48925c97d136811" | ||
} |
@@ -5,5 +5,5 @@ import { Extension } from '@tiptap/core' | ||
export interface DropcursorOptions { | ||
color: string | null, | ||
width: number | null, | ||
class: string | null, | ||
color: string | undefined, | ||
width: number | undefined, | ||
class: string | undefined, | ||
} | ||
@@ -18,3 +18,3 @@ | ||
width: 1, | ||
class: null, | ||
class: undefined, | ||
} | ||
@@ -21,0 +21,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
9275
2
- Removed@types/prosemirror-dropcursor@^1.0.3
- Removed@types/prosemirror-dropcursor@1.5.0(transitive)