FloatingMenuPluginProps
interface FloatingMenuPluginProps {
editor: Editor;
element: HTMLElement;
pluginKey: PluginKey | string;
shouldShow?: ((props: {
editor: Editor;
view: EditorView;
state: EditorState;
oldState?: EditorState;
}) => boolean) | null;tippyOptions?: Partial<Props>;
}