UNPKG

@atlaskit/editor-plugin-text-formatting

Version:

Text-formatting plugin for @atlaskit/editor-core

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