fumadocs-ui 16.4.8 → 16.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/components/accordion.d.ts +3 -3
  2. package/dist/components/banner.d.ts +2 -2
  3. package/dist/components/callout.d.ts +5 -5
  4. package/dist/components/card.d.ts +3 -3
  5. package/dist/components/codeblock.d.ts +7 -7
  6. package/dist/components/dialog/search-algolia.d.ts +2 -2
  7. package/dist/components/dialog/search-default.d.ts +2 -2
  8. package/dist/components/dialog/search-orama.d.ts +2 -2
  9. package/dist/components/dialog/search.d.ts +13 -13
  10. package/dist/components/dynamic-codeblock.d.ts +2 -2
  11. package/dist/components/github-info.d.ts +2 -2
  12. package/dist/components/image-zoom.d.ts +2 -2
  13. package/dist/components/inline-toc.d.ts +2 -2
  14. package/dist/components/sidebar/base.d.ts +13 -13
  15. package/dist/components/sidebar/link-item.d.ts +2 -2
  16. package/dist/components/sidebar/page-tree.d.ts +2 -2
  17. package/dist/components/sidebar/tabs/dropdown.d.ts +2 -2
  18. package/dist/components/steps.d.ts +3 -3
  19. package/dist/components/tabs.d.ts +4 -4
  20. package/dist/components/type-table.d.ts +2 -2
  21. package/dist/components/ui/accordion.d.ts +6 -6
  22. package/dist/components/ui/collapsible.d.ts +4 -4
  23. package/dist/components/ui/tabs.d.ts +6 -6
  24. package/dist/layouts/docs/client.d.ts +7 -7
  25. package/dist/layouts/docs/index.d.ts +2 -2
  26. package/dist/layouts/docs/page/client.d.ts +7 -7
  27. package/dist/layouts/docs/page/index.d.ts +5 -5
  28. package/dist/layouts/docs/sidebar.d.ts +12 -12
  29. package/dist/layouts/home/client.d.ts +3 -3
  30. package/dist/layouts/home/index.d.ts +2 -2
  31. package/dist/layouts/home/navbar.d.ts +6 -6
  32. package/dist/layouts/notebook/client.d.ts +8 -8
  33. package/dist/layouts/notebook/index.d.ts +2 -2
  34. package/dist/layouts/notebook/page/client.d.ts +7 -7
  35. package/dist/layouts/notebook/page/index.d.ts +5 -5
  36. package/dist/layouts/notebook/sidebar.d.ts +17 -17
  37. package/dist/layouts/shared/index.d.ts +3 -3
  38. package/dist/layouts/shared/language-toggle.d.ts +2 -2
  39. package/dist/layouts/shared/search-toggle.d.ts +3 -3
  40. package/dist/layouts/shared/theme-toggle.d.ts +2 -2
  41. package/dist/mdx.d.ts +10 -10
  42. package/dist/page.d.ts +3 -3
  43. package/dist/provider/base.d.ts +2 -2
  44. package/dist/provider/next.d.ts +2 -2
  45. package/dist/provider/react-router.d.ts +2 -2
  46. package/dist/provider/tanstack.d.ts +2 -2
  47. package/dist/provider/waku.d.ts +2 -2
  48. package/package.json +4 -4
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime5 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime89 from "react/jsx-runtime";
2
2
  import { ComponentProps } from "react";
3
3
  import { BreadcrumbOptions } from "fumadocs-core/breadcrumb";
4
4
  import * as PageTree from "fumadocs-core/page-tree";
@@ -8,18 +8,18 @@ declare function PageTOCPopover({
8
8
  className,
9
9
  children,
10
10
  ...rest
11
- }: ComponentProps<'div'>): react_jsx_runtime5.JSX.Element;
11
+ }: ComponentProps<'div'>): react_jsx_runtime89.JSX.Element;
12
12
  declare function PageTOCPopoverTrigger({
13
13
  className,
14
14
  ...props
15
- }: ComponentProps<'button'>): react_jsx_runtime5.JSX.Element;
16
- declare function PageTOCPopoverContent(props: ComponentProps<'div'>): react_jsx_runtime5.JSX.Element;
15
+ }: ComponentProps<'button'>): react_jsx_runtime89.JSX.Element;
16
+ declare function PageTOCPopoverContent(props: ComponentProps<'div'>): react_jsx_runtime89.JSX.Element;
17
17
  declare function PageLastUpdate({
18
18
  date: value,
19
19
  ...props
20
20
  }: Omit<ComponentProps<'p'>, 'children'> & {
21
21
  date: Date;
22
- }): react_jsx_runtime5.JSX.Element;
22
+ }): react_jsx_runtime89.JSX.Element;
23
23
  type Item = Pick<PageTree.Item, 'name' | 'description' | 'url'>;
24
24
  interface FooterProps extends ComponentProps<'div'> {
25
25
  /**
@@ -35,13 +35,13 @@ declare function PageFooter({
35
35
  children,
36
36
  className,
37
37
  ...props
38
- }: FooterProps): react_jsx_runtime5.JSX.Element;
38
+ }: FooterProps): react_jsx_runtime89.JSX.Element;
39
39
  type BreadcrumbProps = BreadcrumbOptions & ComponentProps<'div'>;
40
40
  declare function PageBreadcrumb({
41
41
  includeRoot,
42
42
  includeSeparator,
43
43
  includePage,
44
44
  ...props
45
- }: BreadcrumbProps): react_jsx_runtime5.JSX.Element | null;
45
+ }: BreadcrumbProps): react_jsx_runtime89.JSX.Element | null;
46
46
  //#endregion
47
47
  export { BreadcrumbProps, FooterProps, PageBreadcrumb, PageFooter, PageLastUpdate, PageTOCPopover, PageTOCPopoverContent, PageTOCPopoverTrigger };
@@ -1,5 +1,5 @@
1
1
  import { BreadcrumbProps, FooterProps, PageBreadcrumb, PageLastUpdate } from "./client.js";
2
- import * as react_jsx_runtime14 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime134 from "react/jsx-runtime";
3
3
  import { ComponentProps, ReactNode } from "react";
4
4
  import { AnchorProviderProps, TOCItemType } from "fumadocs-core/toc";
5
5
 
@@ -81,7 +81,7 @@ declare function DocsPage({
81
81
  children,
82
82
  className
83
83
  }: DocsPageProps): ReactNode;
84
- declare function EditOnGitHub(props: ComponentProps<'a'>): react_jsx_runtime14.JSX.Element;
84
+ declare function EditOnGitHub(props: ComponentProps<'a'>): react_jsx_runtime134.JSX.Element;
85
85
  /**
86
86
  * Add typography styles
87
87
  */
@@ -89,16 +89,16 @@ declare function DocsBody({
89
89
  children,
90
90
  className,
91
91
  ...props
92
- }: ComponentProps<'div'>): react_jsx_runtime14.JSX.Element;
92
+ }: ComponentProps<'div'>): react_jsx_runtime134.JSX.Element;
93
93
  declare function DocsDescription({
94
94
  children,
95
95
  className,
96
96
  ...props
97
- }: ComponentProps<'p'>): react_jsx_runtime14.JSX.Element | null;
97
+ }: ComponentProps<'p'>): react_jsx_runtime134.JSX.Element | null;
98
98
  declare function DocsTitle({
99
99
  children,
100
100
  className,
101
101
  ...props
102
- }: ComponentProps<'h1'>): react_jsx_runtime14.JSX.Element;
102
+ }: ComponentProps<'h1'>): react_jsx_runtime134.JSX.Element;
103
103
  //#endregion
104
104
  export { DocsBody, DocsDescription, DocsPage, DocsPageProps, DocsTitle, EditOnGitHub, PageBreadcrumb, PageLastUpdate };
@@ -1,7 +1,7 @@
1
1
  import { SidebarCollapseTrigger, SidebarDrawerContent, SidebarFolder, SidebarFolderContent as SidebarFolderContent$1, SidebarFolderLink as SidebarFolderLink$1, SidebarFolderTrigger as SidebarFolderTrigger$1, SidebarItem as SidebarItem$1, SidebarProvider, SidebarTrigger, SidebarViewport } from "../../components/sidebar/base.js";
2
2
  import { SidebarPageTreeComponents } from "../../components/sidebar/page-tree.js";
3
- import * as react_jsx_runtime108 from "react/jsx-runtime";
4
- import * as react11 from "react";
3
+ import * as react_jsx_runtime95 from "react/jsx-runtime";
4
+ import * as react23 from "react";
5
5
  import { ComponentProps } from "react";
6
6
  import * as _fumadocs_ui_link_item0 from "@fumadocs/ui/link-item";
7
7
 
@@ -11,47 +11,47 @@ declare function SidebarContent({
11
11
  className,
12
12
  children,
13
13
  ...props
14
- }: ComponentProps<'aside'>): react_jsx_runtime108.JSX.Element;
14
+ }: ComponentProps<'aside'>): react_jsx_runtime95.JSX.Element;
15
15
  declare function SidebarDrawer({
16
16
  children,
17
17
  className,
18
18
  ...props
19
- }: ComponentProps<typeof SidebarDrawerContent>): react_jsx_runtime108.JSX.Element;
19
+ }: ComponentProps<typeof SidebarDrawerContent>): react_jsx_runtime95.JSX.Element;
20
20
  declare function SidebarSeparator({
21
21
  className,
22
22
  style,
23
23
  children,
24
24
  ...props
25
- }: ComponentProps<'p'>): react_jsx_runtime108.JSX.Element;
25
+ }: ComponentProps<'p'>): react_jsx_runtime95.JSX.Element;
26
26
  declare function SidebarItem({
27
27
  className,
28
28
  style,
29
29
  children,
30
30
  ...props
31
- }: ComponentProps<typeof SidebarItem$1>): react_jsx_runtime108.JSX.Element;
31
+ }: ComponentProps<typeof SidebarItem$1>): react_jsx_runtime95.JSX.Element;
32
32
  declare function SidebarFolderTrigger({
33
33
  className,
34
34
  style,
35
35
  ...props
36
- }: ComponentProps<typeof SidebarFolderTrigger$1>): react_jsx_runtime108.JSX.Element;
36
+ }: ComponentProps<typeof SidebarFolderTrigger$1>): react_jsx_runtime95.JSX.Element;
37
37
  declare function SidebarFolderLink({
38
38
  className,
39
39
  style,
40
40
  ...props
41
- }: ComponentProps<typeof SidebarFolderLink$1>): react_jsx_runtime108.JSX.Element;
41
+ }: ComponentProps<typeof SidebarFolderLink$1>): react_jsx_runtime95.JSX.Element;
42
42
  declare function SidebarFolderContent({
43
43
  className,
44
44
  children,
45
45
  ...props
46
- }: ComponentProps<typeof SidebarFolderContent$1>): react_jsx_runtime108.JSX.Element;
47
- declare const SidebarPageTree: (components: Partial<SidebarPageTreeComponents>) => react_jsx_runtime108.JSX.Element;
46
+ }: ComponentProps<typeof SidebarFolderContent$1>): react_jsx_runtime95.JSX.Element;
47
+ declare const SidebarPageTree: (components: Partial<SidebarPageTreeComponents>) => react_jsx_runtime95.JSX.Element;
48
48
  declare const SidebarLinkItem: ({
49
49
  item,
50
50
  ...props
51
- }: react11.HTMLAttributes<HTMLElement> & {
51
+ }: react23.HTMLAttributes<HTMLElement> & {
52
52
  item: Exclude<_fumadocs_ui_link_item0.LinkItemType, {
53
53
  type: "icon";
54
54
  }>;
55
- }) => react_jsx_runtime108.JSX.Element;
55
+ }) => react_jsx_runtime95.JSX.Element;
56
56
  //#endregion
57
57
  export { SidebarProvider as Sidebar, SidebarCollapseTrigger, SidebarContent, SidebarDrawer, SidebarFolder, SidebarFolderContent, SidebarFolderLink, SidebarFolderTrigger, SidebarItem, SidebarLinkItem, SidebarPageTree, SidebarSeparator, SidebarTrigger, SidebarViewport };
@@ -1,10 +1,10 @@
1
1
  import { HomeLayoutProps } from "./index.js";
2
- import * as react_jsx_runtime4 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime58 from "react/jsx-runtime";
3
3
  import * as class_variance_authority_types0 from "class-variance-authority/types";
4
4
 
5
5
  //#region src/layouts/home/client.d.ts
6
6
  declare const navItemVariants: (props?: ({
7
- variant?: "main" | "icon" | "button" | null | undefined;
7
+ variant?: "icon" | "button" | "main" | null | undefined;
8
8
  } & class_variance_authority_types0.ClassProp) | undefined) => string;
9
9
  declare function Header({
10
10
  nav,
@@ -13,6 +13,6 @@ declare function Header({
13
13
  githubUrl,
14
14
  themeSwitch,
15
15
  searchToggle
16
- }: HomeLayoutProps): react_jsx_runtime4.JSX.Element;
16
+ }: HomeLayoutProps): react_jsx_runtime58.JSX.Element;
17
17
  //#endregion
18
18
  export { Header, navItemVariants };
@@ -1,5 +1,5 @@
1
1
  import { BaseLayoutProps, NavOptions } from "../shared/index.js";
2
- import * as react_jsx_runtime3 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime59 from "react/jsx-runtime";
3
3
  import { ComponentProps } from "react";
4
4
 
5
5
  //#region src/layouts/home/index.d.ts
@@ -11,6 +11,6 @@ interface HomeLayoutProps extends BaseLayoutProps {
11
11
  enableHoverToOpen?: boolean;
12
12
  }>;
13
13
  }
14
- declare function HomeLayout(props: HomeLayoutProps & ComponentProps<'main'>): react_jsx_runtime3.JSX.Element;
14
+ declare function HomeLayout(props: HomeLayoutProps & ComponentProps<'main'>): react_jsx_runtime59.JSX.Element;
15
15
  //#endregion
16
16
  export { HomeLayout, HomeLayoutProps };
@@ -1,13 +1,13 @@
1
1
  import { NavigationMenuContentProps, NavigationMenuTriggerProps } from "../../components/ui/navigation-menu.js";
2
2
  import { LinkProps } from "fumadocs-core/link";
3
- import * as react_jsx_runtime11 from "react/jsx-runtime";
4
- import * as react0 from "react";
3
+ import * as react_jsx_runtime61 from "react/jsx-runtime";
4
+ import * as react12 from "react";
5
5
  import * as _radix_ui_react_navigation_menu0 from "@radix-ui/react-navigation-menu";
6
6
 
7
7
  //#region src/layouts/home/navbar.d.ts
8
- declare const NavbarMenu: react0.ForwardRefExoticComponent<Omit<_radix_ui_react_navigation_menu0.NavigationMenuItemProps & react0.RefAttributes<HTMLLIElement>, "ref"> & react0.RefAttributes<HTMLLIElement>>;
9
- declare function NavbarMenuContent(props: NavigationMenuContentProps): react_jsx_runtime11.JSX.Element;
10
- declare function NavbarMenuTrigger(props: NavigationMenuTriggerProps): react_jsx_runtime11.JSX.Element;
11
- declare function NavbarMenuLink(props: LinkProps): react_jsx_runtime11.JSX.Element;
8
+ declare const NavbarMenu: react12.ForwardRefExoticComponent<Omit<_radix_ui_react_navigation_menu0.NavigationMenuItemProps & react12.RefAttributes<HTMLLIElement>, "ref"> & react12.RefAttributes<HTMLLIElement>>;
9
+ declare function NavbarMenuContent(props: NavigationMenuContentProps): react_jsx_runtime61.JSX.Element;
10
+ declare function NavbarMenuTrigger(props: NavigationMenuTriggerProps): react_jsx_runtime61.JSX.Element;
11
+ declare function NavbarMenuLink(props: LinkProps): react_jsx_runtime61.JSX.Element;
12
12
  //#endregion
13
13
  export { NavbarMenu, NavbarMenuContent, NavbarMenuLink, NavbarMenuTrigger };
@@ -1,11 +1,11 @@
1
1
  import { SidebarTabWithProps } from "../../components/sidebar/tabs/dropdown.js";
2
- import * as react_jsx_runtime18 from "react/jsx-runtime";
3
- import * as react2 from "react";
2
+ import * as react_jsx_runtime64 from "react/jsx-runtime";
3
+ import * as react15 from "react";
4
4
  import { ComponentProps, HTMLAttributes, ReactNode } from "react";
5
5
  import { LinkItemType } from "@fumadocs/ui/link-item";
6
6
 
7
7
  //#region src/layouts/notebook/client.d.ts
8
- declare const LayoutContext: react2.Context<(LayoutInfo & {
8
+ declare const LayoutContext: react15.Context<(LayoutInfo & {
9
9
  isNavTransparent: boolean;
10
10
  }) | null>;
11
11
  interface LayoutInfo {
@@ -20,27 +20,27 @@ declare function LayoutContextProvider({
20
20
  }: LayoutInfo & {
21
21
  navTransparentMode?: 'always' | 'top' | 'none';
22
22
  children: ReactNode;
23
- }): react_jsx_runtime18.JSX.Element;
24
- declare function LayoutHeader(props: ComponentProps<'header'>): react_jsx_runtime18.JSX.Element;
23
+ }): react_jsx_runtime64.JSX.Element;
24
+ declare function LayoutHeader(props: ComponentProps<'header'>): react_jsx_runtime64.JSX.Element;
25
25
  declare function LayoutBody({
26
26
  className,
27
27
  style,
28
28
  children,
29
29
  ...props
30
- }: ComponentProps<'div'>): react_jsx_runtime18.JSX.Element;
30
+ }: ComponentProps<'div'>): react_jsx_runtime64.JSX.Element;
31
31
  declare function LayoutHeaderTabs({
32
32
  options,
33
33
  className,
34
34
  ...props
35
35
  }: ComponentProps<'div'> & {
36
36
  options: SidebarTabWithProps[];
37
- }): react_jsx_runtime18.JSX.Element;
37
+ }): react_jsx_runtime64.JSX.Element;
38
38
  declare function NavbarLinkItem({
39
39
  item,
40
40
  className,
41
41
  ...props
42
42
  }: {
43
43
  item: LinkItemType;
44
- } & HTMLAttributes<HTMLElement>): string | number | bigint | boolean | react_jsx_runtime18.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react2.ReactPortal | react2.ReactElement<unknown, string | react2.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
44
+ } & HTMLAttributes<HTMLElement>): string | number | bigint | boolean | react_jsx_runtime64.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react15.ReactPortal | react15.ReactElement<unknown, string | react15.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
45
45
  //#endregion
46
46
  export { LayoutBody, LayoutContext, LayoutContextProvider, LayoutHeader, LayoutHeaderTabs, LayoutInfo, NavbarLinkItem };
@@ -3,7 +3,7 @@ import { GetSidebarTabsOptions } from "../../components/sidebar/tabs/index.js";
3
3
  import { SidebarTabWithProps } from "../../components/sidebar/tabs/dropdown.js";
4
4
  import { BaseLayoutProps } from "../shared/index.js";
5
5
  import { Sidebar } from "./sidebar.js";
6
- import * as react_jsx_runtime29 from "react/jsx-runtime";
6
+ import * as react_jsx_runtime69 from "react/jsx-runtime";
7
7
  import { ComponentProps, FC, HTMLAttributes, ReactNode } from "react";
8
8
  import * as PageTree from "fumadocs-core/page-tree";
9
9
 
@@ -32,6 +32,6 @@ interface SidebarOptions extends ComponentProps<'aside'>, Pick<ComponentProps<ty
32
32
  */
33
33
  collapsible?: boolean;
34
34
  }
35
- declare function DocsLayout(props: DocsLayoutProps): react_jsx_runtime29.JSX.Element;
35
+ declare function DocsLayout(props: DocsLayoutProps): react_jsx_runtime69.JSX.Element;
36
36
  //#endregion
37
37
  export { DocsLayout, DocsLayoutProps };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime23 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime104 from "react/jsx-runtime";
2
2
  import { ComponentProps } from "react";
3
3
  import { BreadcrumbOptions } from "fumadocs-core/breadcrumb";
4
4
  import * as PageTree from "fumadocs-core/page-tree";
@@ -8,18 +8,18 @@ declare function PageTOCPopover({
8
8
  className,
9
9
  children,
10
10
  ...rest
11
- }: ComponentProps<'div'>): react_jsx_runtime23.JSX.Element;
11
+ }: ComponentProps<'div'>): react_jsx_runtime104.JSX.Element;
12
12
  declare function PageTOCPopoverTrigger({
13
13
  className,
14
14
  ...props
15
- }: ComponentProps<'button'>): react_jsx_runtime23.JSX.Element;
16
- declare function PageTOCPopoverContent(props: ComponentProps<'div'>): react_jsx_runtime23.JSX.Element;
15
+ }: ComponentProps<'button'>): react_jsx_runtime104.JSX.Element;
16
+ declare function PageTOCPopoverContent(props: ComponentProps<'div'>): react_jsx_runtime104.JSX.Element;
17
17
  declare function PageLastUpdate({
18
18
  date: value,
19
19
  ...props
20
20
  }: Omit<ComponentProps<'p'>, 'children'> & {
21
21
  date: Date;
22
- }): react_jsx_runtime23.JSX.Element;
22
+ }): react_jsx_runtime104.JSX.Element;
23
23
  type Item = Pick<PageTree.Item, 'name' | 'description' | 'url'>;
24
24
  interface FooterProps extends ComponentProps<'div'> {
25
25
  /**
@@ -35,13 +35,13 @@ declare function PageFooter({
35
35
  children,
36
36
  className,
37
37
  ...props
38
- }: FooterProps): react_jsx_runtime23.JSX.Element;
38
+ }: FooterProps): react_jsx_runtime104.JSX.Element;
39
39
  type BreadcrumbProps = BreadcrumbOptions & ComponentProps<'div'>;
40
40
  declare function PageBreadcrumb({
41
41
  includeRoot,
42
42
  includeSeparator,
43
43
  includePage,
44
44
  ...props
45
- }: BreadcrumbProps): react_jsx_runtime23.JSX.Element | null;
45
+ }: BreadcrumbProps): react_jsx_runtime104.JSX.Element | null;
46
46
  //#endregion
47
47
  export { BreadcrumbProps, FooterProps, PageBreadcrumb, PageFooter, PageLastUpdate, PageTOCPopover, PageTOCPopoverContent, PageTOCPopoverTrigger };
@@ -1,5 +1,5 @@
1
1
  import { BreadcrumbProps, FooterProps, PageBreadcrumb, PageLastUpdate } from "./client.js";
2
- import * as react_jsx_runtime137 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime110 from "react/jsx-runtime";
3
3
  import { ComponentProps, ReactNode } from "react";
4
4
  import { AnchorProviderProps, TOCItemType } from "fumadocs-core/toc";
5
5
 
@@ -81,7 +81,7 @@ declare function DocsPage({
81
81
  children,
82
82
  className
83
83
  }: DocsPageProps): ReactNode;
84
- declare function EditOnGitHub(props: ComponentProps<'a'>): react_jsx_runtime137.JSX.Element;
84
+ declare function EditOnGitHub(props: ComponentProps<'a'>): react_jsx_runtime110.JSX.Element;
85
85
  /**
86
86
  * Add typography styles
87
87
  */
@@ -89,16 +89,16 @@ declare function DocsBody({
89
89
  children,
90
90
  className,
91
91
  ...props
92
- }: ComponentProps<'div'>): react_jsx_runtime137.JSX.Element;
92
+ }: ComponentProps<'div'>): react_jsx_runtime110.JSX.Element;
93
93
  declare function DocsDescription({
94
94
  children,
95
95
  className,
96
96
  ...props
97
- }: ComponentProps<'p'>): react_jsx_runtime137.JSX.Element | null;
97
+ }: ComponentProps<'p'>): react_jsx_runtime110.JSX.Element | null;
98
98
  declare function DocsTitle({
99
99
  children,
100
100
  className,
101
101
  ...props
102
- }: ComponentProps<'h1'>): react_jsx_runtime137.JSX.Element;
102
+ }: ComponentProps<'h1'>): react_jsx_runtime110.JSX.Element;
103
103
  //#endregion
104
104
  export { DocsBody, DocsDescription, DocsPage, DocsPageProps, DocsTitle, EditOnGitHub, PageBreadcrumb, PageLastUpdate };
@@ -1,62 +1,62 @@
1
1
  import { SidebarCollapseTrigger as SidebarCollapseTrigger$1, SidebarDrawerContent, SidebarFolder as SidebarFolder$1, SidebarFolderContent as SidebarFolderContent$1, SidebarFolderLink as SidebarFolderLink$1, SidebarFolderTrigger as SidebarFolderTrigger$1, SidebarItem as SidebarItem$1, SidebarProvider, SidebarTrigger as SidebarTrigger$1, SidebarViewport as SidebarViewport$1 } from "../../components/sidebar/base.js";
2
2
  import { SidebarPageTreeComponents } from "../../components/sidebar/page-tree.js";
3
- import * as react_jsx_runtime42 from "react/jsx-runtime";
4
- import * as react6 from "react";
3
+ import * as react_jsx_runtime70 from "react/jsx-runtime";
4
+ import * as react19 from "react";
5
5
  import { ComponentProps } from "react";
6
6
  import * as _fumadocs_ui_link_item0 from "@fumadocs/ui/link-item";
7
7
 
8
8
  //#region src/layouts/notebook/sidebar.d.ts
9
- declare function Sidebar(props: ComponentProps<typeof SidebarProvider>): react_jsx_runtime42.JSX.Element;
10
- declare function SidebarFolder(props: ComponentProps<typeof SidebarFolder$1>): react_jsx_runtime42.JSX.Element;
11
- declare function SidebarCollapseTrigger(props: ComponentProps<typeof SidebarCollapseTrigger$1>): react_jsx_runtime42.JSX.Element;
12
- declare function SidebarViewport(props: ComponentProps<typeof SidebarViewport$1>): react_jsx_runtime42.JSX.Element;
13
- declare function SidebarTrigger(props: ComponentProps<typeof SidebarTrigger$1>): react_jsx_runtime42.JSX.Element;
9
+ declare function Sidebar(props: ComponentProps<typeof SidebarProvider>): react_jsx_runtime70.JSX.Element;
10
+ declare function SidebarFolder(props: ComponentProps<typeof SidebarFolder$1>): react_jsx_runtime70.JSX.Element;
11
+ declare function SidebarCollapseTrigger(props: ComponentProps<typeof SidebarCollapseTrigger$1>): react_jsx_runtime70.JSX.Element;
12
+ declare function SidebarViewport(props: ComponentProps<typeof SidebarViewport$1>): react_jsx_runtime70.JSX.Element;
13
+ declare function SidebarTrigger(props: ComponentProps<typeof SidebarTrigger$1>): react_jsx_runtime70.JSX.Element;
14
14
  declare function SidebarContent({
15
15
  ref: refProp,
16
16
  className,
17
17
  children,
18
18
  ...props
19
- }: ComponentProps<'aside'>): react_jsx_runtime42.JSX.Element;
19
+ }: ComponentProps<'aside'>): react_jsx_runtime70.JSX.Element;
20
20
  declare function SidebarDrawer({
21
21
  children,
22
22
  className,
23
23
  ...props
24
- }: ComponentProps<typeof SidebarDrawerContent>): react_jsx_runtime42.JSX.Element;
24
+ }: ComponentProps<typeof SidebarDrawerContent>): react_jsx_runtime70.JSX.Element;
25
25
  declare function SidebarSeparator({
26
26
  className,
27
27
  style,
28
28
  children,
29
29
  ...props
30
- }: ComponentProps<'p'>): react_jsx_runtime42.JSX.Element;
30
+ }: ComponentProps<'p'>): react_jsx_runtime70.JSX.Element;
31
31
  declare function SidebarItem({
32
32
  className,
33
33
  style,
34
34
  children,
35
35
  ...props
36
- }: ComponentProps<typeof SidebarItem$1>): react_jsx_runtime42.JSX.Element;
36
+ }: ComponentProps<typeof SidebarItem$1>): react_jsx_runtime70.JSX.Element;
37
37
  declare function SidebarFolderTrigger({
38
38
  className,
39
39
  style,
40
40
  ...props
41
- }: ComponentProps<typeof SidebarFolderTrigger$1>): react_jsx_runtime42.JSX.Element;
41
+ }: ComponentProps<typeof SidebarFolderTrigger$1>): react_jsx_runtime70.JSX.Element;
42
42
  declare function SidebarFolderLink({
43
43
  className,
44
44
  style,
45
45
  ...props
46
- }: ComponentProps<typeof SidebarFolderLink$1>): react_jsx_runtime42.JSX.Element;
46
+ }: ComponentProps<typeof SidebarFolderLink$1>): react_jsx_runtime70.JSX.Element;
47
47
  declare function SidebarFolderContent({
48
48
  className,
49
49
  children,
50
50
  ...props
51
- }: ComponentProps<typeof SidebarFolderContent$1>): react_jsx_runtime42.JSX.Element;
52
- declare const SidebarPageTree: (components: Partial<SidebarPageTreeComponents>) => react_jsx_runtime42.JSX.Element;
51
+ }: ComponentProps<typeof SidebarFolderContent$1>): react_jsx_runtime70.JSX.Element;
52
+ declare const SidebarPageTree: (components: Partial<SidebarPageTreeComponents>) => react_jsx_runtime70.JSX.Element;
53
53
  declare const SidebarLinkItem: ({
54
54
  item,
55
55
  ...props
56
- }: react6.HTMLAttributes<HTMLElement> & {
56
+ }: react19.HTMLAttributes<HTMLElement> & {
57
57
  item: Exclude<_fumadocs_ui_link_item0.LinkItemType, {
58
58
  type: "icon";
59
59
  }>;
60
- }) => react_jsx_runtime42.JSX.Element;
60
+ }) => react_jsx_runtime70.JSX.Element;
61
61
  //#endregion
62
62
  export { Sidebar, SidebarCollapseTrigger, SidebarContent, SidebarDrawer, SidebarFolder, SidebarFolderContent, SidebarFolderLink, SidebarFolderTrigger, SidebarItem, SidebarLinkItem, SidebarPageTree, SidebarSeparator, SidebarTrigger, SidebarViewport };
@@ -1,5 +1,5 @@
1
- import * as react_jsx_runtime57 from "react/jsx-runtime";
2
- import * as react7 from "react";
1
+ import * as react_jsx_runtime84 from "react/jsx-runtime";
2
+ import * as react20 from "react";
3
3
  import { ComponentProps, ReactNode } from "react";
4
4
  import { LinkItemType } from "@fumadocs/ui/link-item";
5
5
  import { I18nConfig } from "fumadocs-core/i18n";
@@ -63,6 +63,6 @@ declare function resolveLinkItems({
63
63
  declare function renderTitleNav({
64
64
  title,
65
65
  url
66
- }: Partial<NavOptions>, props: ComponentProps<'a'>): string | number | bigint | boolean | react_jsx_runtime57.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react7.ReactPortal | react7.ReactElement<unknown, string | react7.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
66
+ }: Partial<NavOptions>, props: ComponentProps<'a'>): string | number | bigint | boolean | react_jsx_runtime84.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react20.ReactPortal | react20.ReactElement<unknown, string | react20.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
67
67
  //#endregion
68
68
  export { BaseLayoutProps, NavOptions, renderTitleNav, resolveLinkItems };
@@ -1,9 +1,9 @@
1
- import * as react_jsx_runtime58 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime60 from "react/jsx-runtime";
2
2
  import { ComponentProps } from "react";
3
3
 
4
4
  //#region src/layouts/shared/language-toggle.d.ts
5
5
  type LanguageSelectProps = ComponentProps<'button'>;
6
6
  declare function LanguageToggle(props: LanguageSelectProps): React.ReactElement;
7
- declare function LanguageToggleText(props: ComponentProps<'span'>): react_jsx_runtime58.JSX.Element;
7
+ declare function LanguageToggleText(props: ComponentProps<'span'>): react_jsx_runtime60.JSX.Element;
8
8
  //#endregion
9
9
  export { LanguageSelectProps, LanguageToggle, LanguageToggleText };
@@ -1,5 +1,5 @@
1
1
  import { ButtonProps } from "../../components/ui/button.js";
2
- import * as react_jsx_runtime59 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime85 from "react/jsx-runtime";
3
3
  import { ComponentProps } from "react";
4
4
 
5
5
  //#region src/layouts/shared/search-toggle.d.ts
@@ -11,12 +11,12 @@ declare function SearchToggle({
11
11
  size,
12
12
  color,
13
13
  ...props
14
- }: SearchToggleProps): react_jsx_runtime59.JSX.Element | null;
14
+ }: SearchToggleProps): react_jsx_runtime85.JSX.Element | null;
15
15
  declare function LargeSearchToggle({
16
16
  hideIfDisabled,
17
17
  ...props
18
18
  }: ComponentProps<'button'> & {
19
19
  hideIfDisabled?: boolean;
20
- }): react_jsx_runtime59.JSX.Element | null;
20
+ }): react_jsx_runtime85.JSX.Element | null;
21
21
  //#endregion
22
22
  export { LargeSearchToggle, SearchToggle };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime61 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime87 from "react/jsx-runtime";
2
2
  import { ComponentProps } from "react";
3
3
 
4
4
  //#region src/layouts/shared/theme-toggle.d.ts
@@ -8,6 +8,6 @@ declare function ThemeToggle({
8
8
  ...props
9
9
  }: ComponentProps<'div'> & {
10
10
  mode?: 'light-dark' | 'light-dark-system';
11
- }): react_jsx_runtime61.JSX.Element;
11
+ }): react_jsx_runtime87.JSX.Element;
12
12
  //#endregion
13
13
  export { ThemeToggle };
package/dist/mdx.d.ts CHANGED
@@ -2,30 +2,30 @@ import { Callout, CalloutContainer, CalloutDescription, CalloutTitle } from "./c
2
2
  import { Card, Cards } from "./components/card.js";
3
3
  import { CodeBlockTab, CodeBlockTabs, CodeBlockTabsList, CodeBlockTabsTrigger } from "./components/codeblock.js";
4
4
  import { createRelativeLink as createRelativeLink$1 } from "./mdx.server.js";
5
- import * as react_jsx_runtime98 from "react/jsx-runtime";
5
+ import * as react_jsx_runtime121 from "react/jsx-runtime";
6
6
  import { AnchorHTMLAttributes, FC, HTMLAttributes, ImgHTMLAttributes, TableHTMLAttributes } from "react";
7
7
 
8
8
  //#region src/mdx.d.ts
9
9
  declare function Image(props: ImgHTMLAttributes<HTMLImageElement> & {
10
10
  sizes?: string;
11
- }): react_jsx_runtime98.JSX.Element;
12
- declare function Table(props: TableHTMLAttributes<HTMLTableElement>): react_jsx_runtime98.JSX.Element;
11
+ }): react_jsx_runtime121.JSX.Element;
12
+ declare function Table(props: TableHTMLAttributes<HTMLTableElement>): react_jsx_runtime121.JSX.Element;
13
13
  declare const defaultMdxComponents: {
14
14
  CodeBlockTab: typeof CodeBlockTab;
15
15
  CodeBlockTabs: typeof CodeBlockTabs;
16
16
  CodeBlockTabsList: typeof CodeBlockTabsList;
17
17
  CodeBlockTabsTrigger: typeof CodeBlockTabsTrigger;
18
- pre: (props: HTMLAttributes<HTMLPreElement>) => react_jsx_runtime98.JSX.Element;
18
+ pre: (props: HTMLAttributes<HTMLPreElement>) => react_jsx_runtime121.JSX.Element;
19
19
  Card: typeof Card;
20
20
  Cards: typeof Cards;
21
21
  a: FC<AnchorHTMLAttributes<HTMLAnchorElement>>;
22
22
  img: typeof Image;
23
- h1: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime98.JSX.Element;
24
- h2: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime98.JSX.Element;
25
- h3: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime98.JSX.Element;
26
- h4: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime98.JSX.Element;
27
- h5: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime98.JSX.Element;
28
- h6: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime98.JSX.Element;
23
+ h1: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime121.JSX.Element;
24
+ h2: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime121.JSX.Element;
25
+ h3: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime121.JSX.Element;
26
+ h4: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime121.JSX.Element;
27
+ h5: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime121.JSX.Element;
28
+ h6: (props: HTMLAttributes<HTMLHeadingElement>) => react_jsx_runtime121.JSX.Element;
29
29
  table: typeof Table;
30
30
  Callout: typeof Callout;
31
31
  CalloutContainer: typeof CalloutContainer;
package/dist/page.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { PageBreadcrumb, PageLastUpdate } from "./layouts/docs/page/client.js";
2
2
  import { DocsBody, DocsDescription, DocsPageProps as DocsPageProps$1, DocsTitle, EditOnGitHub } from "./layouts/docs/page/index.js";
3
- import * as react_jsx_runtime117 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime132 from "react/jsx-runtime";
4
4
  import { ComponentProps } from "react";
5
5
 
6
6
  //#region src/page.d.ts
@@ -25,12 +25,12 @@ interface DocsPageProps extends DocsPageProps$1 {
25
25
  /**
26
26
  * For separate MDX page
27
27
  */
28
- declare function withArticle(props: ComponentProps<'main'>): react_jsx_runtime117.JSX.Element;
28
+ declare function withArticle(props: ComponentProps<'main'>): react_jsx_runtime132.JSX.Element;
29
29
  declare function DocsPage({
30
30
  lastUpdate,
31
31
  editOnGithub,
32
32
  children,
33
33
  ...props
34
- }: DocsPageProps): react_jsx_runtime117.JSX.Element;
34
+ }: DocsPageProps): react_jsx_runtime132.JSX.Element;
35
35
  //#endregion
36
36
  export { DocsBody, DocsDescription, DocsPage, DocsPageProps, DocsTitle, EditOnGitHub, PageBreadcrumb, PageLastUpdate, withArticle };
@@ -1,5 +1,5 @@
1
1
  import { DefaultSearchDialogProps } from "../components/dialog/search-default.js";
2
- import * as react_jsx_runtime62 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime130 from "react/jsx-runtime";
3
3
  import { ComponentPropsWithoutRef, ReactNode } from "react";
4
4
  import { I18nProviderProps } from "@fumadocs/ui/contexts/i18n";
5
5
  import { SearchProviderProps } from "@fumadocs/ui/contexts/search";
@@ -44,6 +44,6 @@ declare function RootProvider({
44
44
  theme,
45
45
  search,
46
46
  i18n
47
- }: RootProviderProps): react_jsx_runtime62.JSX.Element;
47
+ }: RootProviderProps): react_jsx_runtime130.JSX.Element;
48
48
  //#endregion
49
49
  export { RootProvider, RootProviderProps };
@@ -1,6 +1,6 @@
1
1
  import { RootProvider as RootProvider$1 } from "./base.js";
2
2
  import { Framework } from "fumadocs-core/framework";
3
- import * as react_jsx_runtime64 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime131 from "react/jsx-runtime";
4
4
  import { ComponentProps } from "react";
5
5
 
6
6
  //#region src/provider/next.d.ts
@@ -16,6 +16,6 @@ interface RootProviderProps extends ComponentProps<typeof RootProvider$1> {
16
16
  declare function RootProvider({
17
17
  components,
18
18
  ...props
19
- }: RootProviderProps): react_jsx_runtime64.JSX.Element;
19
+ }: RootProviderProps): react_jsx_runtime131.JSX.Element;
20
20
  //#endregion
21
21
  export { RootProvider, RootProviderProps };
@@ -1,6 +1,6 @@
1
1
  import { RootProvider as RootProvider$1 } from "./base.js";
2
2
  import { Framework } from "fumadocs-core/framework";
3
- import * as react_jsx_runtime65 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
4
4
  import { ComponentProps } from "react";
5
5
 
6
6
  //#region src/provider/react-router.d.ts
@@ -16,6 +16,6 @@ interface RootProviderProps extends ComponentProps<typeof RootProvider$1> {
16
16
  declare function RootProvider({
17
17
  components,
18
18
  ...props
19
- }: RootProviderProps): react_jsx_runtime65.JSX.Element;
19
+ }: RootProviderProps): react_jsx_runtime0.JSX.Element;
20
20
  //#endregion
21
21
  export { RootProvider, RootProviderProps };
@@ -1,6 +1,6 @@
1
1
  import { RootProvider as RootProvider$1 } from "./base.js";
2
2
  import { Framework } from "fumadocs-core/framework";
3
- import * as react_jsx_runtime66 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime20 from "react/jsx-runtime";
4
4
  import { ComponentProps } from "react";
5
5
 
6
6
  //#region src/provider/tanstack.d.ts
@@ -16,6 +16,6 @@ interface RootProviderProps extends ComponentProps<typeof RootProvider$1> {
16
16
  declare function RootProvider({
17
17
  components,
18
18
  ...props
19
- }: RootProviderProps): react_jsx_runtime66.JSX.Element;
19
+ }: RootProviderProps): react_jsx_runtime20.JSX.Element;
20
20
  //#endregion
21
21
  export { RootProvider, RootProviderProps };