UNPKG

lexical-vue

Version:

An extensible Vue 3 web text-editor based on Lexical.

36 lines (35 loc) 2.81 kB
import LexicalDecoratedTeleports from './LexicalDecoratedTeleports'; export { default as LexicalContentEditable, } from './LexicalContentEditable.vue'; export { default as LexicalPlainTextPlugin, } from './LexicalPlainTextPlugin.vue'; export { default as LexicalComposer, type InitialConfigType, } from './LexicalComposer.vue'; export { default as LexicalOnChangePlugin, } from './LexicalOnChangePlugin.vue'; export { default as LexicalHistoryPlugin, } from './LexicalHistoryPlugin.vue'; export { default as LexicalTreeViewPlugin, } from './LexicalTreeViewPlugin.vue'; export { default as LexicalAutoFocusPlugin, } from './LexicalAutoFocusPlugin.vue'; export { default as LexicalRichTextPlugin, } from './LexicalRichTextPlugin.vue'; export { default as LexicalListPlugin, } from './LexicalListPlugin.vue'; export { default as LexicalLinkPlugin, } from './LexicalLinkPlugin.vue'; export { default as LexicalTablePlugin, type TablePluginProps, } from './LexicalTablePlugin.vue'; export { default as LexicalClearEditorPlugin, } from './LexicalClearEditorPlugin.vue'; export { default as LexicalCharacterLimitPlugin, } from './LexicalCharacterLimitPlugin.vue'; export { default as LexicalAutoScrollPlugin, } from './LexicalAutoScrollPlugin.vue'; export { LexicalDecoratedTeleports, }; export { default as LexicalHashtagPlugin, } from './LexicalHashtagPlugin.vue'; export * from './LexicalDecoratorBlockNode'; export { default as LexicalBlockWithAlignableContents, } from './LexicalBlockWithAlignableContents.vue'; export { default as LexicalCheckListPlugin, } from './LexicalCheckListPlugin.vue'; export { default as LexicalMarkdownShortcutPlugin, } from './LexicalMarkdownShortcutPlugin/index.vue'; export * from './LexicalMarkdownShortcutPlugin/shared'; export { default as LexicalTabIndentationPlugin, } from './LexicalTabIndentationPlugin.vue'; export { default as LexicalCollaborationPlugin, } from './LexicalCollaborationPlugin.vue'; export { default as LexicalClickableLinkPlugin, } from './LexicalClickableLinkPlugin.vue'; export { default as LexicalContextMenuPlugin, } from './LexicalContextMenuPlugin.vue'; export { default as LexicalNodeMenuPlugin, } from './LexicalNodeMenuPlugin.vue'; export * from './LexicalHorizontalRuleNode'; export { default as LexicalAutoEmbedPlugin, } from './LexicalAutoEmbedPlugin/index.vue'; export * from './LexicalAutoEmbedPlugin/shared'; export { default as LexicalAutoLinkPlugin, } from './LexicalAutoLinkPlugin/index.vue'; export { createLinkMatcherWithRegExp, type LinkMatcher } from './LexicalAutoLinkPlugin/shared'; export { default as LexicalTypeaheadMenuPlugin } from './LexicalTypeaheadMenuPlugin/index.vue'; export { useBasicTypeaheadTriggerMatch, } from './LexicalTypeaheadMenuPlugin/shared'; export { MenuOption, type MenuTextMatch, } from './LexicalMenu/shared';