@atlaskit/editor-plugin-toolbar-lists-indentation
Version:
Toolbar lists and indentation plugin for @atlaskit/editor-core
18 lines (17 loc) • 658 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getListsIndentationGroupForInlineToolbar = void 0;
var _toolbar = require("@atlaskit/editor-common/toolbar");
var getListsIndentationGroupForInlineToolbar = exports.getListsIndentationGroupForInlineToolbar = function getListsIndentationGroupForInlineToolbar() {
return [{
type: _toolbar.LISTS_INDENTATION_GROUP_INLINE.type,
key: _toolbar.LISTS_INDENTATION_GROUP_INLINE.key,
parents: [{
type: _toolbar.TEXT_SECTION.type,
key: _toolbar.TEXT_SECTION.key,
rank: _toolbar.TEXT_SECTION_RANK[_toolbar.LISTS_INDENTATION_GROUP.key]
}]
}];
};