UNPKG

@mantine/tiptap

Version:

Rich text editor based on tiptap

15 lines (14 loc) 2.37 kB
import { Link } from "./extensions/Link.mjs"; import { getTaskListExtension } from "./extensions/TaskList.mjs"; import { DEFAULT_LABELS } from "./labels.mjs"; import { useRichTextEditorContext } from "./RichTextEditor.context.mjs"; import { RichTextEditorContent } from "./RichTextEditorContent/RichTextEditorContent.mjs"; import { RichTextEditorControl } from "./RichTextEditorControl/RichTextEditorControl.mjs"; import { AlignCenterControl, AlignJustifyControl, AlignLeftControl, AlignRightControl, BlockquoteControl, BoldControl, BulletListControl, ClearFormattingControl, CodeBlockControl, CodeControl, H1Control, H2Control, H3Control, H4Control, H5Control, H6Control, HighlightControl, HrControl, ItalicControl, OrderedListControl, RedoControl, StrikeThroughControl, SubscriptControl, SuperscriptControl, TaskListControl, TaskListLiftControl, TaskListSinkControl, UnderlineControl, UndoControl, UnlinkControl, UnsetColorControl } from "./RichTextEditorControl/controls.mjs"; import { RichTextEditorLinkControl } from "./RichTextEditorControl/RichTextEditorLinkControl.mjs"; import { RichTextEditorColorPickerControl } from "./RichTextEditorControl/RichTextEditorColorPickerControl.mjs"; import { RichTextEditorColorControl } from "./RichTextEditorControl/RichTextEditorColorControl.mjs"; import { RichTextEditorSourceCodeControl } from "./RichTextEditorControl/RichTextEditorSourceCodeControl.mjs"; import { RichTextEditorControlsGroup } from "./RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs"; import { RichTextEditor } from "./RichTextEditor.mjs"; export { AlignCenterControl, AlignJustifyControl, AlignLeftControl, AlignRightControl, BlockquoteControl, BoldControl, BulletListControl, ClearFormattingControl, CodeBlockControl, CodeControl, DEFAULT_LABELS, H1Control, H2Control, H3Control, H4Control, H5Control, H6Control, HighlightControl, HrControl, ItalicControl, Link, OrderedListControl, RedoControl, RichTextEditor, RichTextEditorColorControl, RichTextEditorColorPickerControl, RichTextEditorContent, RichTextEditorControl, RichTextEditorControlsGroup, RichTextEditorLinkControl, RichTextEditorSourceCodeControl, StrikeThroughControl, SubscriptControl, SuperscriptControl, TaskListControl, TaskListLiftControl, TaskListSinkControl, UnderlineControl, UndoControl, UnlinkControl, UnsetColorControl, getTaskListExtension, useRichTextEditorContext };