@atlaskit/editor-plugin-text-formatting
Version:
Text-formatting plugin for @atlaskit/editor-core
7 lines • 458 B
JavaScript
import _defineProperty from "@babel/runtime/helpers/defineProperty";
import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
import { ToolbarType } from './types';
export var toolbarTypeToInputMethod = _defineProperty(_defineProperty({}, ToolbarType.PRIMARY, INPUT_METHOD.TOOLBAR), ToolbarType.FLOATING, INPUT_METHOD.FLOATING_TB);
export var getInputMethod = function getInputMethod(toolbarType) {
return toolbarTypeToInputMethod[toolbarType];
};