@lexical/react
Version:
This package provides Lexical components and hooks for React applications.
15 lines (14 loc) • 682 B
JavaScript
/**
* 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.
*
*/
import * as modDev from './LexicalTypeaheadMenuPluginUtils.dev.js';
import * as modProd from './LexicalTypeaheadMenuPluginUtils.prod.js';
const mod = process.env.NODE_ENV !== 'production' ? modDev : modProd;
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;