UNPKG

@lexical/react

Version:

This package provides Lexical components and hooks for React applications.

16 lines (15 loc) 812 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ const mod = await (process.env.NODE_ENV !== 'production' ? import('./LexicalTypeaheadMenuPlugin.dev.mjs') : import('./LexicalTypeaheadMenuPlugin.prod.mjs')); export const LexicalTypeaheadMenuPlugin = mod.LexicalTypeaheadMenuPlugin; export const MenuOption = mod.MenuOption; export const PUNCTUATION = mod.PUNCTUATION; export const SCROLL_TYPEAHEAD_OPTION_INTO_VIEW_COMMAND = mod.SCROLL_TYPEAHEAD_OPTION_INTO_VIEW_COMMAND; export const getScrollParent = mod.getScrollParent; export const useBasicTypeaheadTriggerMatch = mod.useBasicTypeaheadTriggerMatch; export const useDynamicPositioning = mod.useDynamicPositioning;