UNPKG

@atlaskit/editor-plugin-toolbar-lists-indentation

Version:

Toolbar lists and indentation plugin for @atlaskit/editor-core

7 lines 328 B
import { INPUT_METHOD } from '@atlaskit/editor-common/analytics'; import { ToolbarType } from '../../types'; const toolbarTypeToInputMethod = { [ToolbarType.PRIMARY]: INPUT_METHOD.TOOLBAR, [ToolbarType.FLOATING]: INPUT_METHOD.FLOATING_TB }; export const getInputMethod = toolbarType => toolbarTypeToInputMethod[toolbarType];