1
1
diff --git a/dist/index.d.mts b/dist/index.d.mts
2
- index 71f87bcd1dde49d7c19ad49fc098e715a76c5c10..6671e29326be99861058895916185910452ced17 100644
2
+ index 71f87bcd1dde49d7c19ad49fc098e715a76c5c10..aadd6228910ee3ebafccfae8672cb9ae1b0bca3c 100644
3
3
--- a/dist/index.d.mts
4
4
+++ b/dist/index.d.mts
5
- @@ -1421,3 +1421,19 @@ declare function ThemeSwitch({ lite, className }: ThemeSwitchProps): ReactElemen
5
+ @@ -1421,3 +1421,25 @@ declare function ThemeSwitch({ lite, className }: ThemeSwitchProps): ReactElemen
6
6
declare function Layout({ children, themeConfig, pageOpts }: NextraThemeLayoutProps): ReactElement;
7
7
8
8
export { Bleed, Collapse, type PartialDocsThemeConfig as DocsThemeConfig, Link, LocaleSwitch, Navbar, NotFoundPage, SkipNavContent, SkipNavLink, ThemeSwitch, Layout as default, getComponents, useConfig, useMenu, useThemeConfig };
@@ -22,8 +22,14 @@ index 71f87bcd1dde49d7c19ad49fc098e715a76c5c10..6671e29326be99861058895916185910
22
22
+ export declare const useIntersectionObserver: () => IntersectionObserver | null
23
23
+ export declare const useSlugs: () => WeakMap<any, any>
24
24
+
25
+ + export declare const Breadcrumb: (props: { activePath: Item[] }) => ReactElement | null
26
+ + export declare const NavLinks: (props: NavLinkProps) => ReactElement | null
27
+ + export interface NavLinkProps {
28
+ + currentIndex: number
29
+ + flatDocsDirectories: Item[]
30
+ + }
25
31
diff --git a/dist/index.js b/dist/index.js
26
- index 56201641fd965dcc5ab7c5df53e444c41293c00e..860b8cfd297e82da041c4d8287ed266691d75a0e 100644
32
+ index 56201641fd965dcc5ab7c5df53e444c41293c00e..07147c688ae75c4c7daf082833acc71de16b36ee 100644
27
33
--- a/dist/index.js
28
34
+++ b/dist/index.js
29
35
@@ -100,10 +100,10 @@ IntersectionObserverContext.displayName = "IntersectionObserver";
@@ -41,3 +47,21 @@ index 56201641fd965dcc5ab7c5df53e444c41293c00e..860b8cfd297e82da041c4d8287ed2666
41
47
var ActiveAnchorProvider = ({
42
48
children
43
49
}) => {
50
+ @@ -526,7 +526,7 @@ import NextLink2 from "next/link";
51
+ import { ArrowRightIcon } from "nextra/icons";
52
+ import { Fragment as Fragment3 } from "react";
53
+ import { jsx as jsx9, jsxs as jsxs3 } from "react/jsx-runtime";
54
+ - function Breadcrumb({
55
+ + export function Breadcrumb({
56
+ activePath
57
+ }) {
58
+ return /* @__PURE__ */ jsx9("div", { className: "nextra-breadcrumb _mt-1.5 _flex _items-center _gap-1 _overflow-hidden _text-sm _text-gray-500 dark:_text-gray-400 contrast-more:_text-current", children: activePath.map((item, index, arr) => {
59
+ @@ -1255,7 +1255,7 @@ var classes = {
60
+ ),
61
+ icon: cn10("_inline _h-5 _shrink-0")
62
+ };
63
+ - function NavLinks({
64
+ + export function NavLinks({
65
+ flatDocsDirectories,
66
+ currentIndex
67
+ }) {
0 commit comments