UNPKG

editium

Version:

A powerful and feature-rich React rich text editor component built with Slate.js, featuring comprehensive formatting options, tables, images, find & replace, and more

8 lines (7 loc) 821 B
export { default as Editium } from './Editium'; export { default as ResizableImage } from './ResizableImage'; export { TableComponent, TableRowComponent, TableCellComponent } from './TableElement'; export type { EditiumProps, CustomElement, CustomText, LinkElement, ImageElement, TableElement, TableRowElement, TableCellElement, FormatType, BlockType, ToolbarItem, } from './types'; export { ALL_TOOLBAR_ITEMS, } from './types'; export { serializeToHtml, defaultInitialValue, isMarkActive, isBlockActive, toggleMark, toggleBlock, insertLink, isLinkActive, insertTable, addTableRow, removeTableRow, addTableColumn, removeTableColumn, isInTable, setTableAlignment, findAllMatches, navigateToMatch, replaceMatch, replaceAllMatches, } from './utils'; export { importFromDocx, exportToDocx, exportToPdf, } from './docxUtils';