UNPKG

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

Version:

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

12 lines 918 B
import { getBulletedListButtonGroup } from './toolbar-components/BulletedListButtonGroup'; import { getListsIndentationGroupForInlineToolbar } from './toolbar-components/ListsIndentationGroupForInlineToolbar'; import { getListsIndentationGroupForPrimaryToolbar } from './toolbar-components/ListsIndentationGroupForPrimaryToolbar'; import { getListsIndentationHeroButton } from './toolbar-components/ListsIndentationHeroButtonGroup'; import { getListsIndentationMenu } from './toolbar-components/ListsIndentationMenuGroup'; export const getToolbarComponents = ({ api, showIndentationButtons, allowHeadingAndParagraphIndentation }) => { return [...getListsIndentationGroupForPrimaryToolbar(), ...getListsIndentationGroupForInlineToolbar(), ...getListsIndentationHeroButton(api), ...getBulletedListButtonGroup(api), ...getListsIndentationMenu(allowHeadingAndParagraphIndentation, showIndentationButtons, api)]; };