@atlaskit/editor-plugin-floating-toolbar
Version:
Floating toolbar plugin for @atlaskit/editor-core
11 lines • 381 B
JavaScript
import { createCommand } from './plugin-factory';
export const showConfirmDialog = (buttonIndex, optionIndex) => createCommand({
type: 'SHOW_CONFIRM_DIALOG',
data: {
buttonIndex,
optionIndex
}
}, tr => tr.setMeta('addToHistory', false));
export const hideConfirmDialog = () => createCommand({
type: 'HIDE_CONFIRM_DIALOG'
}, tr => tr.setMeta('addToHistory', false));