mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-23 21:17:54 +02:00
* fix(v2): do not focus on skip link if page refreshed * rename ref Co-authored-by: slorber <lorber.sebastien@gmail.com>
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
export {useThemeConfig} from './utils/useThemeConfig';
|
|
|
|
export type {
|
|
ThemeConfig,
|
|
Navbar,
|
|
NavbarItem,
|
|
NavbarLogo,
|
|
Footer,
|
|
FooterLinks,
|
|
FooterLinkItem,
|
|
} from './utils/useThemeConfig';
|
|
|
|
export {createStorageSlot, listStorageKeys} from './utils/storageUtils';
|
|
|
|
export {useAlternatePageUtils} from './utils/useAlternatePageUtils';
|
|
|
|
export {parseCodeBlockTitle} from './utils/codeBlockUtils';
|
|
|
|
export {docVersionSearchTag, DEFAULT_SEARCH_TAG} from './utils/searchUtils';
|
|
|
|
export {isDocsPluginEnabled} from './utils/docsUtils';
|
|
|
|
export {isSamePath} from './utils/pathUtils';
|
|
|
|
export {useTitleFormatter} from './utils/generalUtils';
|
|
|
|
export {usePluralForm} from './utils/usePluralForm';
|
|
|
|
export {useChangeRoute} from './utils/useChangeRoute';
|
|
|
|
export {
|
|
useDocsPreferredVersion,
|
|
useDocsPreferredVersionByPluginId,
|
|
} from './utils/docsPreferredVersion/useDocsPreferredVersion';
|
|
|
|
export {DocsPreferredVersionContextProvider} from './utils/docsPreferredVersion/DocsPreferredVersionProvider';
|
|
|
|
export {ThemeClassNames} from './utils/ThemeClassNames';
|