BubbleMenuPluginProps
interface BubbleMenuPluginProps {
editor: Editor;
element: HTMLElement;
pluginKey: PluginKey | string;
shouldShow?: ((props: {
editor: Editor;
view: EditorView;
state: EditorState;
oldState?: EditorState;
from: number;
to: number;
}) => boolean) | null;tippyOptions?: Partial<Props>;
updateDelay?: number;
}§Properties
§
shouldShow?: ((props: {
[src]editor: Editor;
view: EditorView;
state: EditorState;
oldState?: EditorState;
from: number;
to: number;
}) => boolean) | null