fumadocs-ui 16.4.5 → 16.4.6
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.
- package/css/aspen.css +1 -0
- package/dist/components/accordion.d.ts +3 -3
- package/dist/components/banner.d.ts +2 -2
- package/dist/components/callout.d.ts +5 -5
- package/dist/components/card.d.ts +3 -3
- package/dist/components/codeblock.d.ts +7 -7
- package/dist/components/codeblock.d.ts.map +1 -1
- package/dist/components/dialog/search-algolia.d.ts +2 -2
- package/dist/components/dialog/search-default.d.ts +2 -2
- package/dist/components/dialog/search-orama.d.ts +2 -2
- package/dist/components/dialog/search.d.ts +13 -13
- package/dist/components/dynamic-codeblock.d.ts +2 -2
- package/dist/components/dynamic-codeblock.d.ts.map +1 -1
- package/dist/components/github-info.d.ts +2 -2
- package/dist/components/github-info.d.ts.map +1 -1
- package/dist/components/image-zoom.d.ts +2 -2
- package/dist/components/image-zoom.d.ts.map +1 -1
- package/dist/components/inline-toc.d.ts +2 -2
- package/dist/components/inline-toc.d.ts.map +1 -1
- package/dist/components/sidebar/base.d.ts +15 -15
- package/dist/components/sidebar/base.d.ts.map +1 -1
- package/dist/components/sidebar/link-item.d.ts +2 -2
- package/dist/components/sidebar/page-tree.d.ts +2 -2
- package/dist/components/sidebar/tabs/dropdown.d.ts +2 -2
- package/dist/components/steps.d.ts +3 -3
- package/dist/components/tabs.d.ts +4 -4
- package/dist/components/tabs.d.ts.map +1 -1
- package/dist/components/type-table.d.ts +2 -2
- package/dist/components/type-table.d.ts.map +1 -1
- package/dist/components/ui/accordion.d.ts +6 -6
- package/dist/components/ui/collapsible.d.ts +4 -4
- package/dist/components/ui/tabs.d.ts +6 -6
- package/dist/layouts/docs/client.d.ts +7 -7
- package/dist/layouts/docs/client.d.ts.map +1 -1
- package/dist/layouts/docs/index.d.ts +2 -2
- package/dist/layouts/docs/index.d.ts.map +1 -1
- package/dist/layouts/docs/page/client.d.ts +7 -7
- package/dist/layouts/docs/page/index.d.ts +5 -5
- package/dist/layouts/docs/sidebar.d.ts +12 -12
- package/dist/layouts/docs/sidebar.d.ts.map +1 -1
- package/dist/layouts/docs/sidebar.js +1 -1
- package/dist/layouts/home/client.d.ts +3 -3
- package/dist/layouts/home/client.d.ts.map +1 -1
- package/dist/layouts/home/client.js +1 -1
- package/dist/layouts/home/index.d.ts +2 -2
- package/dist/layouts/home/index.d.ts.map +1 -1
- package/dist/layouts/home/navbar.d.ts +6 -6
- package/dist/layouts/home/navbar.d.ts.map +1 -1
- package/dist/layouts/notebook/client.d.ts +8 -8
- package/dist/layouts/notebook/client.d.ts.map +1 -1
- package/dist/layouts/notebook/index.d.ts +2 -2
- package/dist/layouts/notebook/index.d.ts.map +1 -1
- package/dist/layouts/notebook/page/client.d.ts +7 -7
- package/dist/layouts/notebook/page/index.d.ts +5 -5
- package/dist/layouts/notebook/sidebar.d.ts +17 -17
- package/dist/layouts/notebook/sidebar.d.ts.map +1 -1
- package/dist/layouts/notebook/sidebar.js +1 -1
- package/dist/layouts/shared/index.d.ts +2 -2
- package/dist/layouts/shared/search-toggle.d.ts +3 -3
- package/dist/layouts/shared/search-toggle.d.ts.map +1 -1
- package/dist/layouts/shared/theme-toggle.d.ts +2 -2
- package/dist/mdx.d.ts +10 -10
- package/dist/page.d.ts +3 -3
- package/dist/page.d.ts.map +1 -1
- package/dist/provider/base.d.ts +2 -2
- package/dist/provider/base.d.ts.map +1 -1
- package/dist/provider/next.d.ts +2 -2
- package/dist/provider/next.d.ts.map +1 -1
- package/dist/provider/react-router.d.ts +2 -2
- package/dist/provider/react-router.d.ts.map +1 -1
- package/dist/provider/tanstack.d.ts +2 -2
- package/dist/provider/waku.d.ts +2 -2
- package/dist/provider/waku.d.ts.map +1 -1
- package/package.json +10 -5
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react7 from "react";
|
|
2
2
|
import * as Primitive from "@radix-ui/react-collapsible";
|
|
3
3
|
|
|
4
4
|
//#region src/components/ui/collapsible.d.ts
|
|
5
|
-
declare const Collapsible:
|
|
6
|
-
declare const CollapsibleTrigger:
|
|
7
|
-
declare const CollapsibleContent:
|
|
5
|
+
declare const Collapsible: react7.ForwardRefExoticComponent<Primitive.CollapsibleProps & react7.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
declare const CollapsibleTrigger: react7.ForwardRefExoticComponent<Primitive.CollapsibleTriggerProps & react7.RefAttributes<HTMLButtonElement>>;
|
|
7
|
+
declare const CollapsibleContent: react7.ForwardRefExoticComponent<Omit<Primitive.CollapsibleContentProps & react7.RefAttributes<HTMLDivElement>, "ref"> & react7.RefAttributes<HTMLDivElement>>;
|
|
8
8
|
type CollapsibleProps = Primitive.CollapsibleProps;
|
|
9
9
|
type CollapsibleContentProps = Primitive.CollapsibleContentProps;
|
|
10
10
|
type CollapsibleTriggerProps = Primitive.CollapsibleTriggerProps;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime103 from "react/jsx-runtime";
|
|
2
|
+
import * as react18 from "react";
|
|
3
3
|
import { ComponentProps } from "react";
|
|
4
4
|
import * as Primitive from "@radix-ui/react-tabs";
|
|
5
5
|
|
|
@@ -18,8 +18,8 @@ interface TabsProps extends ComponentProps<typeof Primitive.Tabs> {
|
|
|
18
18
|
*/
|
|
19
19
|
updateAnchor?: boolean;
|
|
20
20
|
}
|
|
21
|
-
declare const TabsList:
|
|
22
|
-
declare const TabsTrigger:
|
|
21
|
+
declare const TabsList: react18.ForwardRefExoticComponent<Primitive.TabsListProps & react18.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
declare const TabsTrigger: react18.ForwardRefExoticComponent<Primitive.TabsTriggerProps & react18.RefAttributes<HTMLButtonElement>>;
|
|
23
23
|
declare function Tabs({
|
|
24
24
|
ref,
|
|
25
25
|
groupId,
|
|
@@ -29,11 +29,11 @@ declare function Tabs({
|
|
|
29
29
|
value: _value,
|
|
30
30
|
onValueChange: _onValueChange,
|
|
31
31
|
...props
|
|
32
|
-
}: TabsProps):
|
|
32
|
+
}: TabsProps): react_jsx_runtime103.JSX.Element;
|
|
33
33
|
declare function TabsContent({
|
|
34
34
|
value,
|
|
35
35
|
...props
|
|
36
|
-
}: ComponentProps<typeof Primitive.TabsContent>):
|
|
36
|
+
}: ComponentProps<typeof Primitive.TabsContent>): react_jsx_runtime103.JSX.Element;
|
|
37
37
|
//#endregion
|
|
38
38
|
export { Tabs, TabsContent, TabsList, TabsProps, TabsTrigger };
|
|
39
39
|
//# sourceMappingURL=tabs.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { SidebarTab } from "../../components/sidebar/tabs/index.js";
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime122 from "react/jsx-runtime";
|
|
3
|
+
import * as react22 from "react";
|
|
4
4
|
import { ComponentProps, ReactNode } from "react";
|
|
5
5
|
|
|
6
6
|
//#region src/layouts/docs/client.d.ts
|
|
7
|
-
declare const LayoutContext:
|
|
7
|
+
declare const LayoutContext: react22.Context<{
|
|
8
8
|
isNavTransparent: boolean;
|
|
9
9
|
} | null>;
|
|
10
10
|
declare function LayoutContextProvider({
|
|
@@ -13,20 +13,20 @@ declare function LayoutContextProvider({
|
|
|
13
13
|
}: {
|
|
14
14
|
navTransparentMode?: 'always' | 'top' | 'none';
|
|
15
15
|
children: ReactNode;
|
|
16
|
-
}):
|
|
17
|
-
declare function LayoutHeader(props: ComponentProps<'header'>):
|
|
16
|
+
}): react_jsx_runtime122.JSX.Element;
|
|
17
|
+
declare function LayoutHeader(props: ComponentProps<'header'>): react_jsx_runtime122.JSX.Element;
|
|
18
18
|
declare function LayoutBody({
|
|
19
19
|
className,
|
|
20
20
|
style,
|
|
21
21
|
children,
|
|
22
22
|
...props
|
|
23
|
-
}: ComponentProps<'div'>):
|
|
23
|
+
}: ComponentProps<'div'>): react_jsx_runtime122.JSX.Element;
|
|
24
24
|
declare function LayoutTabs({
|
|
25
25
|
options,
|
|
26
26
|
...props
|
|
27
27
|
}: ComponentProps<'div'> & {
|
|
28
28
|
options: SidebarTab[];
|
|
29
|
-
}):
|
|
29
|
+
}): react_jsx_runtime122.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { LayoutBody, LayoutContext, LayoutContextProvider, LayoutHeader, LayoutTabs };
|
|
32
32
|
//# sourceMappingURL=client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","names":[],"sources":["../../../src/layouts/docs/client.tsx"],"sourcesContent":[],"mappings":";;;;;;cAWa,eAEE,OAAA,CAFW;;;iBAIV,qBAAA;;;;EAJH,kBAEE,CAAA,EAAA,QAAA,GAAA,KAFW,GAAA,MAAA;EAIV,QAAA,EAKJ,SALI;CACd,CAAA,EAKD,
|
|
1
|
+
{"version":3,"file":"client.d.ts","names":[],"sources":["../../../src/layouts/docs/client.tsx"],"sourcesContent":[],"mappings":";;;;;;cAWa,eAEE,OAAA,CAFW;;;iBAIV,qBAAA;;;;EAJH,kBAEE,CAAA,EAAA,QAAA,GAAA,KAFW,GAAA,MAAA;EAIV,QAAA,EAKJ,SALI;CACd,CAAA,EAKD,oBAAA,CAAA,GAAA,CAAA,OALC;AACA,iBAsBc,YAAA,CAtBd,KAAA,EAsBkC,cAtBlC,CAAA,QAAA,CAAA,CAAA,EAsB0D,oBAAA,CAAA,GAAA,CAAA,OAtB1D;AAGU,iBA6BI,UAAA,CA7BJ;EAAA,SAAA;EAAA,KAAA;EAAA,QAAA;EAAA,GAAA;AAAA,CAAA,EA6ByD,cA7BzD,CAAA,KAAA,CAAA,CAAA,EA6B8E,oBAAA,CAAA,GAAA,CAAA,OA7B9E;AACX,iBA0De,UAAA,CA1Df;EAAA,OAAA;EAAA,GAAA;AAkBD,CAlBC,EA6DE,cA7DF,CAAA,KAAA,CAAA,GAAA;EAAA,OAAA,EA8DU,UA9DV,EAAA;AAkBD,CAAA,CAAA,EA6CC,oBAAA,CAAA,GAAA,CAAA,OA7CmC"}
|
|
@@ -4,7 +4,7 @@ import { GetSidebarTabsOptions } from "../../components/sidebar/tabs/index.js";
|
|
|
4
4
|
import { SidebarTabWithProps } from "../../components/sidebar/tabs/dropdown.js";
|
|
5
5
|
import "./sidebar.js";
|
|
6
6
|
import { BaseLayoutProps } from "../shared/index.js";
|
|
7
|
-
import * as
|
|
7
|
+
import * as react_jsx_runtime130 from "react/jsx-runtime";
|
|
8
8
|
import { ComponentProps, HTMLAttributes, ReactNode } from "react";
|
|
9
9
|
import * as PageTree from "fumadocs-core/page-tree";
|
|
10
10
|
|
|
@@ -54,7 +54,7 @@ declare function DocsLayout({
|
|
|
54
54
|
children,
|
|
55
55
|
tree,
|
|
56
56
|
...props
|
|
57
|
-
}: DocsLayoutProps):
|
|
57
|
+
}: DocsLayoutProps): react_jsx_runtime130.JSX.Element;
|
|
58
58
|
//#endregion
|
|
59
59
|
export { DocsLayout, DocsLayoutProps };
|
|
60
60
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/layouts/docs/index.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;;UA0BiB,eAAA,SAAwB;QACjC,QAAA,CAAS;YAEL;;EAHK;;;EAUiB,cAAA,CAAA,EAAf,cAAe,CAAA,cAAA,CAAA;;UAGxB,cAAA,SAEN,cAfqC,CAAA,OAAA,CAAA,EAgBrC,IAhBqC,CAgBhC,cAhBgC,CAAA,OAgBV,eAhBU,CAAA,EAAA,kBAAA,GAAA,UAAA,CAAA,CAAA;EAAe,OAAA,CAAA,EAAA,OAAA;EAa9C,SAAA,CAAA,EAKI,SAJZ;EAE6B,UAAA,CAAA,EAGhB,OAHgB,CAGR,yBAHQ,CAAA;EAAtB;;;EAGM,IAAA,CAAA,EAKN,mBALM,EAAA,GAKkB,qBALlB,GAAA,KAAA;EAKN,MAAA,CAAA,EAEE,SAFF;EAAwB,MAAA,CAAA,EAGtB,SAHsB;EAEtB;;;;;EAWK,WAAA,CAAA,EAAU,OAAA;;AAGhB,iBAHM,UAAA,CAGN;EAAA,GAAA,EAAA;IAAA,eAAA;IAAA,GAAA;EAAA,CAAA;EAAA,OAAA,EAAA;IAAA,IAAA,EAAA,WAAA;IAAA,OAAA,EACG,cADH;IAAA,gBAAA;IAAA,QAAA;IAAA,GAAA;EAAA,CAAA;EAAA,YAAA;EAAA,WAAA;EAAA,OAAA;EAAA,IAAA;EAAA,QAAA;EAAA,IAAA;EAAA,GAAA;AAAA,CAAA,EAaP,eAbO,CAAA,EAaQ,
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/layouts/docs/index.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;;UA0BiB,eAAA,SAAwB;QACjC,QAAA,CAAS;YAEL;;EAHK;;;EAUiB,cAAA,CAAA,EAAf,cAAe,CAAA,cAAA,CAAA;;UAGxB,cAAA,SAEN,cAfqC,CAAA,OAAA,CAAA,EAgBrC,IAhBqC,CAgBhC,cAhBgC,CAAA,OAgBV,eAhBU,CAAA,EAAA,kBAAA,GAAA,UAAA,CAAA,CAAA;EAAe,OAAA,CAAA,EAAA,OAAA;EAa9C,SAAA,CAAA,EAKI,SAJZ;EAE6B,UAAA,CAAA,EAGhB,OAHgB,CAGR,yBAHQ,CAAA;EAAtB;;;EAGM,IAAA,CAAA,EAKN,mBALM,EAAA,GAKkB,qBALlB,GAAA,KAAA;EAKN,MAAA,CAAA,EAEE,SAFF;EAAwB,MAAA,CAAA,EAGtB,SAHsB;EAEtB;;;;;EAWK,WAAA,CAAA,EAAU,OAAA;;AAGhB,iBAHM,UAAA,CAGN;EAAA,GAAA,EAAA;IAAA,eAAA;IAAA,GAAA;EAAA,CAAA;EAAA,OAAA,EAAA;IAAA,IAAA,EAAA,WAAA;IAAA,OAAA,EACG,cADH;IAAA,gBAAA;IAAA,QAAA;IAAA,GAAA;EAAA,CAAA;EAAA,YAAA;EAAA,WAAA;EAAA,OAAA;EAAA,IAAA;EAAA,QAAA;EAAA,IAAA;EAAA,GAAA;AAAA,CAAA,EAaP,eAbO,CAAA,EAaQ,oBAAA,CAAA,GAAA,CAAA,OAbR"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime57 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'>):
|
|
11
|
+
}: ComponentProps<'div'>): react_jsx_runtime57.JSX.Element;
|
|
12
12
|
declare function PageTOCPopoverTrigger({
|
|
13
13
|
className,
|
|
14
14
|
...props
|
|
15
|
-
}: ComponentProps<'button'>):
|
|
16
|
-
declare function PageTOCPopoverContent(props: ComponentProps<'div'>):
|
|
15
|
+
}: ComponentProps<'button'>): react_jsx_runtime57.JSX.Element;
|
|
16
|
+
declare function PageTOCPopoverContent(props: ComponentProps<'div'>): react_jsx_runtime57.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
|
-
}):
|
|
22
|
+
}): react_jsx_runtime57.JSX.Element;
|
|
23
23
|
type Item = Pick<PageTree.Item, 'name' | 'description' | 'url'>;
|
|
24
24
|
interface FooterProps extends ComponentProps<'div'> {
|
|
25
25
|
/**
|
|
@@ -35,14 +35,14 @@ declare function PageFooter({
|
|
|
35
35
|
children,
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: FooterProps):
|
|
38
|
+
}: FooterProps): react_jsx_runtime57.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):
|
|
45
|
+
}: BreadcrumbProps): react_jsx_runtime57.JSX.Element | null;
|
|
46
46
|
//#endregion
|
|
47
47
|
export { BreadcrumbProps, FooterProps, PageBreadcrumb, PageFooter, PageLastUpdate, PageTOCPopover, PageTOCPopoverContent, PageTOCPopoverTrigger };
|
|
48
48
|
//# sourceMappingURL=client.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BreadcrumbProps, FooterProps, PageBreadcrumb, PageLastUpdate } from "./client.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime63 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'>):
|
|
84
|
+
declare function EditOnGitHub(props: ComponentProps<'a'>): react_jsx_runtime63.JSX.Element;
|
|
85
85
|
/**
|
|
86
86
|
* Add typography styles
|
|
87
87
|
*/
|
|
@@ -89,17 +89,17 @@ declare function DocsBody({
|
|
|
89
89
|
children,
|
|
90
90
|
className,
|
|
91
91
|
...props
|
|
92
|
-
}: ComponentProps<'div'>):
|
|
92
|
+
}: ComponentProps<'div'>): react_jsx_runtime63.JSX.Element;
|
|
93
93
|
declare function DocsDescription({
|
|
94
94
|
children,
|
|
95
95
|
className,
|
|
96
96
|
...props
|
|
97
|
-
}: ComponentProps<'p'>):
|
|
97
|
+
}: ComponentProps<'p'>): react_jsx_runtime63.JSX.Element | null;
|
|
98
98
|
declare function DocsTitle({
|
|
99
99
|
children,
|
|
100
100
|
className,
|
|
101
101
|
...props
|
|
102
|
-
}: ComponentProps<'h1'>):
|
|
102
|
+
}: ComponentProps<'h1'>): react_jsx_runtime63.JSX.Element;
|
|
103
103
|
//#endregion
|
|
104
104
|
export { DocsBody, DocsDescription, DocsPage, DocsPageProps, DocsTitle, EditOnGitHub, PageBreadcrumb, PageLastUpdate };
|
|
105
105
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -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
|
|
4
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime131 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,48 +11,48 @@ declare function SidebarContent({
|
|
|
11
11
|
className,
|
|
12
12
|
children,
|
|
13
13
|
...props
|
|
14
|
-
}: ComponentProps<'aside'>):
|
|
14
|
+
}: ComponentProps<'aside'>): react_jsx_runtime131.JSX.Element;
|
|
15
15
|
declare function SidebarDrawer({
|
|
16
16
|
children,
|
|
17
17
|
className,
|
|
18
18
|
...props
|
|
19
|
-
}: ComponentProps<typeof SidebarDrawerContent>):
|
|
19
|
+
}: ComponentProps<typeof SidebarDrawerContent>): react_jsx_runtime131.JSX.Element;
|
|
20
20
|
declare function SidebarSeparator({
|
|
21
21
|
className,
|
|
22
22
|
style,
|
|
23
23
|
children,
|
|
24
24
|
...props
|
|
25
|
-
}: ComponentProps<'p'>):
|
|
25
|
+
}: ComponentProps<'p'>): react_jsx_runtime131.JSX.Element;
|
|
26
26
|
declare function SidebarItem({
|
|
27
27
|
className,
|
|
28
28
|
style,
|
|
29
29
|
children,
|
|
30
30
|
...props
|
|
31
|
-
}: ComponentProps<typeof SidebarItem$1>):
|
|
31
|
+
}: ComponentProps<typeof SidebarItem$1>): react_jsx_runtime131.JSX.Element;
|
|
32
32
|
declare function SidebarFolderTrigger({
|
|
33
33
|
className,
|
|
34
34
|
style,
|
|
35
35
|
...props
|
|
36
|
-
}: ComponentProps<typeof SidebarFolderTrigger$1>):
|
|
36
|
+
}: ComponentProps<typeof SidebarFolderTrigger$1>): react_jsx_runtime131.JSX.Element;
|
|
37
37
|
declare function SidebarFolderLink({
|
|
38
38
|
className,
|
|
39
39
|
style,
|
|
40
40
|
...props
|
|
41
|
-
}: ComponentProps<typeof SidebarFolderLink$1>):
|
|
41
|
+
}: ComponentProps<typeof SidebarFolderLink$1>): react_jsx_runtime131.JSX.Element;
|
|
42
42
|
declare function SidebarFolderContent({
|
|
43
43
|
className,
|
|
44
44
|
children,
|
|
45
45
|
...props
|
|
46
|
-
}: ComponentProps<typeof SidebarFolderContent$1>):
|
|
47
|
-
declare const SidebarPageTree: (components: Partial<SidebarPageTreeComponents>) =>
|
|
46
|
+
}: ComponentProps<typeof SidebarFolderContent$1>): react_jsx_runtime131.JSX.Element;
|
|
47
|
+
declare const SidebarPageTree: (components: Partial<SidebarPageTreeComponents>) => react_jsx_runtime131.JSX.Element;
|
|
48
48
|
declare const SidebarLinkItem: ({
|
|
49
49
|
item,
|
|
50
50
|
...props
|
|
51
|
-
}:
|
|
51
|
+
}: react23.HTMLAttributes<HTMLElement> & {
|
|
52
52
|
item: Exclude<_fumadocs_ui_link_item0.LinkItemType, {
|
|
53
53
|
type: "icon";
|
|
54
54
|
}>;
|
|
55
|
-
}) =>
|
|
55
|
+
}) => react_jsx_runtime131.JSX.Element;
|
|
56
56
|
//#endregion
|
|
57
57
|
export { SidebarProvider as Sidebar, SidebarCollapseTrigger, SidebarContent, SidebarDrawer, SidebarFolder, SidebarFolderContent, SidebarFolderLink, SidebarFolderTrigger, SidebarItem, SidebarLinkItem, SidebarPageTree, SidebarSeparator, SidebarTrigger, SidebarViewport };
|
|
58
58
|
//# sourceMappingURL=sidebar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sidebar.d.ts","names":[],"sources":["../../../src/layouts/docs/sidebar.tsx"],"sourcesContent":[],"mappings":";;;;;;;;iBAwCgB,cAAA;OACT;;;;GAIJ,0BAAuB,
|
|
1
|
+
{"version":3,"file":"sidebar.d.ts","names":[],"sources":["../../../src/layouts/docs/sidebar.tsx"],"sourcesContent":[],"mappings":";;;;;;;;iBAwCgB,cAAA;OACT;;;;GAIJ,0BAAuB,oBAAA,CAAA,GAAA,CAAA;iBA8DV,aAAA;;;;GAIb,sBAAsB,wBAA0B,oBAAA,CAAA,GAAA,CAAA;iBAiBnC,gBAAA;;;;;GAA2D,sBAAmB,oBAAA,CAAA,GAAA,CAAA;iBAiB9E,WAAA;;;;;GAKb,sBAAsB,iBAAiB,oBAAA,CAAA,GAAA,CAAA;iBAiB1B,oBAAA;;;;GAIb,sBAAsB,0BAA0B,oBAAA,CAAA,GAAA,CAAA;AAnInC,iBAoJA,iBAAA,CApJc;EAAA,SAAA;EAAA,KAAA;EAAA,GAAA;AAAA,CAAA,EAwJ3B,cAxJ2B,CAAA,OAwJL,mBAxJK,CAAA,CAAA,EAwJkB,oBAAA,CAAA,GAAA,CAAA,OAxJlB;AACvB,iBAwKS,oBAAA,CAxKT;EAAA,SAAA;EAAA,QAAA;EAAA,GAAA;AAAA,CAAA,EA4KJ,cA5KI,CAAA,OA4KkB,sBA5KlB,CAAA,CAAA,EA4K4C,oBAAA,CAAA,GAAA,CAAA,OA5K5C;AACL,cA6LW,eA7LX,EAAA,CAAA,UAAA,EA6L0B,OA7L1B,CAoMA,yBAAA,CApMA,EAAA,GA6L0B,oBAAA,CAAA,GAAA,CAAA,OA7L1B;AACA,cAqMW,eArMX,EAAA,CAAA;EAAA,IAAA;EAAA,GAAA;AAgEF,CAhEE,EAqM0B,OAAA,CAAA,cArM1B,CAqM0B,WArM1B,CAAA,GAAA;EAEC,IAAA,SAAA,CAmMyB,uBAAA,CAAA,YAAA,EAnMzB;IAAuB,IAAA,EAAA,MAAA;EAAA,CAAA,CAAA;AA8D1B,CAAA,EAAA,mCAA6B"}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
import { buttonVariants } from "../../components/ui/button.js";
|
|
4
4
|
import { SidebarCollapseTrigger, SidebarContent as SidebarContent$1, SidebarDrawerContent, SidebarDrawerOverlay, SidebarFolder, SidebarFolderContent as SidebarFolderContent$1, SidebarFolderLink as SidebarFolderLink$1, SidebarFolderTrigger as SidebarFolderTrigger$1, SidebarItem as SidebarItem$1, SidebarProvider, SidebarSeparator as SidebarSeparator$1, SidebarTrigger, SidebarViewport, useFolder, useFolderDepth } from "../../components/sidebar/base.js";
|
|
5
|
-
import { createLinkItemRenderer } from "../../components/sidebar/link-item.js";
|
|
6
5
|
import { createPageTreeRenderer } from "../../components/sidebar/page-tree.js";
|
|
6
|
+
import { createLinkItemRenderer } from "../../components/sidebar/link-item.js";
|
|
7
7
|
import { SearchToggle } from "../shared/search-toggle.js";
|
|
8
8
|
import { cn } from "@fumadocs/ui/cn";
|
|
9
9
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { HomeLayoutProps } from "./index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime105 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?: "
|
|
7
|
+
variant?: "main" | "icon" | "button" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
9
9
|
declare function Header({
|
|
10
10
|
nav,
|
|
@@ -13,7 +13,7 @@ declare function Header({
|
|
|
13
13
|
githubUrl,
|
|
14
14
|
themeSwitch,
|
|
15
15
|
searchToggle
|
|
16
|
-
}: HomeLayoutProps):
|
|
16
|
+
}: HomeLayoutProps): react_jsx_runtime105.JSX.Element;
|
|
17
17
|
//#endregion
|
|
18
18
|
export { Header, navItemVariants };
|
|
19
19
|
//# sourceMappingURL=client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","names":[],"sources":["../../../src/layouts/home/client.tsx"],"sourcesContent":[],"mappings":";;;;;cA6Ba;;IAiBX,+BAAA,CAAA;iBAEc,MAAA;;;;;;;GAOb,kBAAe,
|
|
1
|
+
{"version":3,"file":"client.d.ts","names":[],"sources":["../../../src/layouts/home/client.tsx"],"sourcesContent":[],"mappings":";;;;;cA6Ba;;IAiBX,+BAAA,CAAA;iBAEc,MAAA;;;;;;;GAOb,kBAAe,oBAAA,CAAA,GAAA,CAAA"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
3
|
import { buttonVariants } from "../../components/ui/button.js";
|
|
4
|
-
import { NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from "../../components/ui/navigation-menu.js";
|
|
5
4
|
import { LargeSearchToggle, SearchToggle } from "../shared/search-toggle.js";
|
|
6
5
|
import { renderTitleNav, resolveLinkItems } from "../shared/index.js";
|
|
7
6
|
import { LanguageToggle, LanguageToggleText } from "../shared/language-toggle.js";
|
|
8
7
|
import { ThemeToggle } from "../shared/theme-toggle.js";
|
|
8
|
+
import { NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from "../../components/ui/navigation-menu.js";
|
|
9
9
|
import Link from "fumadocs-core/link";
|
|
10
10
|
import { cn } from "@fumadocs/ui/cn";
|
|
11
11
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseLayoutProps, NavOptions } from "../shared/index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime106 from "react/jsx-runtime";
|
|
3
3
|
import { ComponentProps } from "react";
|
|
4
4
|
|
|
5
5
|
//#region src/layouts/home/index.d.ts
|
|
@@ -11,7 +11,7 @@ interface HomeLayoutProps extends BaseLayoutProps {
|
|
|
11
11
|
enableHoverToOpen?: boolean;
|
|
12
12
|
}>;
|
|
13
13
|
}
|
|
14
|
-
declare function HomeLayout(props: HomeLayoutProps & ComponentProps<'main'>):
|
|
14
|
+
declare function HomeLayout(props: HomeLayoutProps & ComponentProps<'main'>): react_jsx_runtime106.JSX.Element;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { HomeLayout, HomeLayoutProps };
|
|
17
17
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/layouts/home/index.tsx"],"sourcesContent":[],"mappings":";;;;;UAKiB,eAAA,SAAwB;QACjC,QACJ;;AAFJ;;IACQ,iBAAA,CAAA,EAAA,OAAA;EADiC,CAAA,CAAA;;AAWzB,iBAAA,UAAA,CAAU,KAAA,EAAQ,eAAR,GAA0B,cAA1B,CAAA,MAAA,CAAA,CAAA,EAAgD,
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/layouts/home/index.tsx"],"sourcesContent":[],"mappings":";;;;;UAKiB,eAAA,SAAwB;QACjC,QACJ;;AAFJ;;IACQ,iBAAA,CAAA,EAAA,OAAA;EADiC,CAAA,CAAA;;AAWzB,iBAAA,UAAA,CAAU,KAAA,EAAQ,eAAR,GAA0B,cAA1B,CAAA,MAAA,CAAA,CAAA,EAAgD,oBAAA,CAAA,GAAA,CAAA,OAAhD"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { NavigationMenuContentProps, NavigationMenuTriggerProps } from "../../components/ui/navigation-menu.js";
|
|
2
2
|
import { LinkProps } from "fumadocs-core/link";
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime88 from "react/jsx-runtime";
|
|
4
|
+
import * as react14 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:
|
|
9
|
-
declare function NavbarMenuContent(props: NavigationMenuContentProps):
|
|
10
|
-
declare function NavbarMenuTrigger(props: NavigationMenuTriggerProps):
|
|
11
|
-
declare function NavbarMenuLink(props: LinkProps):
|
|
8
|
+
declare const NavbarMenu: react14.ForwardRefExoticComponent<Omit<_radix_ui_react_navigation_menu0.NavigationMenuItemProps & react14.RefAttributes<HTMLLIElement>, "ref"> & react14.RefAttributes<HTMLLIElement>>;
|
|
9
|
+
declare function NavbarMenuContent(props: NavigationMenuContentProps): react_jsx_runtime88.JSX.Element;
|
|
10
|
+
declare function NavbarMenuTrigger(props: NavigationMenuTriggerProps): react_jsx_runtime88.JSX.Element;
|
|
11
|
+
declare function NavbarMenuLink(props: LinkProps): react_jsx_runtime88.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { NavbarMenu, NavbarMenuContent, NavbarMenuLink, NavbarMenuTrigger };
|
|
14
14
|
//# sourceMappingURL=navbar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"navbar.d.ts","names":[],"sources":["../../../src/layouts/home/navbar.tsx"],"sourcesContent":[],"mappings":";;;;;;;cAaa,YAAU,OAAA,CAAA,0BAAA,KAAqB,gCAAA,CAArB,uBAAA,GAAA,OAAA,CAAA,cAAA,yBAAA,OAAA,CAAA,cAAA;iBAEP,iBAAA,QAAyB,6BAA0B,
|
|
1
|
+
{"version":3,"file":"navbar.d.ts","names":[],"sources":["../../../src/layouts/home/navbar.tsx"],"sourcesContent":[],"mappings":";;;;;;;cAaa,YAAU,OAAA,CAAA,0BAAA,KAAqB,gCAAA,CAArB,uBAAA,GAAA,OAAA,CAAA,cAAA,yBAAA,OAAA,CAAA,cAAA;iBAEP,iBAAA,QAAyB,6BAA0B,mBAAA,CAAA,GAAA,CAAA;iBAWnD,iBAAA,QAAyB,6BAA0B,mBAAA,CAAA,GAAA,CAAA;iBAWnD,cAAA,QAAsB,YAAS,mBAAA,CAAA,GAAA,CAAA"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { SidebarTabWithProps } from "../../components/sidebar/tabs/dropdown.js";
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime15 from "react/jsx-runtime";
|
|
3
|
+
import * as react0 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:
|
|
8
|
+
declare const LayoutContext: react0.Context<(LayoutInfo & {
|
|
9
9
|
isNavTransparent: boolean;
|
|
10
10
|
}) | null>;
|
|
11
11
|
interface LayoutInfo {
|
|
@@ -20,28 +20,28 @@ declare function LayoutContextProvider({
|
|
|
20
20
|
}: LayoutInfo & {
|
|
21
21
|
navTransparentMode?: 'always' | 'top' | 'none';
|
|
22
22
|
children: ReactNode;
|
|
23
|
-
}):
|
|
24
|
-
declare function LayoutHeader(props: ComponentProps<'header'>):
|
|
23
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
24
|
+
declare function LayoutHeader(props: ComponentProps<'header'>): react_jsx_runtime15.JSX.Element;
|
|
25
25
|
declare function LayoutBody({
|
|
26
26
|
className,
|
|
27
27
|
style,
|
|
28
28
|
children,
|
|
29
29
|
...props
|
|
30
|
-
}: ComponentProps<'div'>):
|
|
30
|
+
}: ComponentProps<'div'>): react_jsx_runtime15.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
|
-
}):
|
|
37
|
+
}): react_jsx_runtime15.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 |
|
|
44
|
+
} & HTMLAttributes<HTMLElement>): string | number | bigint | boolean | react_jsx_runtime15.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react0.ReactPortal | react0.ReactElement<unknown, string | react0.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { LayoutBody, LayoutContext, LayoutContextProvider, LayoutHeader, LayoutHeaderTabs, LayoutInfo, NavbarLinkItem };
|
|
47
47
|
//# sourceMappingURL=client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","names":[],"sources":["../../../src/layouts/notebook/client.tsx"],"sourcesContent":[],"mappings":";;;;;;;cAuBa,eAAa,
|
|
1
|
+
{"version":3,"file":"client.d.ts","names":[],"sources":["../../../src/layouts/notebook/client.tsx"],"sourcesContent":[],"mappings":";;;;;;;cAuBa,eAAa,MAAA,CAAA,SAAA;;;UAOT,UAAA;EAPJ,OAAA,EAAA,SAKN,GAAA,QALmB;EAOT,OAAA,EAAA,KAAU,GAAA,MAAA;AAK3B;AACE,iBADc,qBAAA,CACd;EAAA,kBAAA;EAAA,OAAA;EAAA,OAAA;EAAA;CAAA,EAIC,UAJD,GAAA;EACA,kBAAA,CAAA,EAAA,QAAA,GAAA,KAAA,GAAA,MAAA;EACA,QAAA,EAIU,SAJV;CACA,CAAA,EAID,mBAAA,CAAA,GAAA,CAAA,OAJC;AACC,iBAuBa,YAAA,CAvBb,KAAA,EAuBiC,cAvBjC,CAAA,QAAA,CAAA,CAAA,EAuByD,mBAAA,CAAA,GAAA,CAAA,OAvBzD;AAES,iBAgCI,UAAA,CAhCJ;EAAA,SAAA;EAAA,KAAA;EAAA,QAAA;EAAA,GAAA;AAAA,CAAA,EAgCyD,cAhCzD,CAAA,KAAA,CAAA,CAAA,EAgC8E,mBAAA,CAAA,GAAA,CAAA,OAhC9E;AACX,iBAoEe,gBAAA,CApEf;EAAA,OAAA;EAAA,SAAA;EAAA,GAAA;AAoBD,CApBC,EAwEE,cAxEF,CAAA,KAAA,CAAA,GAAA;EAAA,OAAA,EAyEU,mBAzEV,EAAA;AAoBD,CAAA,CAAA,EAsDC,mBAAA,CAAA,GAAA,CAAA,OAtDmC;AAWpB,iBA2EA,cAAA,CA3EU;EAAA,IAAA;EAAA,SAAA;EAAA,GAAA;AAAc,CAAd,EAAA;EAAG,IAAA,EA+ElB,YA/EkB;CAAW,GA+EZ,cA/EY,CA+EG,WA/EH,CAAA,CAAA,EAAA,MAAA,GAAA,MAAA,GAAA,MAAA,GAAA,OAAA,GA+Ee,mBAAA,CAAA,GAAA,CAAA,OAAA,GAAA,QA/Ef,CA+Ee,SA/Ef,CAAA,GA+Ee,OA/Ef,CAAA,MAAA,GAAA,MAAA,GAAA,MAAA,GAAA,OAAA,GA+Ee,MAAA,CAAA,WAAA,GAAA,MAAA,CAAA,YA/Ef,CAAA,OAAA,EAAA,MAAA,GA+Ee,MAAA,CAAA,qBA/Ef,CAAA,GAAA,CAAA,CAAA,GA+Ee,QA/Ef,CA+Ee,SA/Ef,CAAA,GAAA,IAAA,GAAA,SAAA,CAAA,GAAA,IAAA,GAAA,SAAA"}
|
|
@@ -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
|
|
6
|
+
import * as react_jsx_runtime21 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,7 +32,7 @@ interface SidebarOptions extends ComponentProps<'aside'>, Pick<ComponentProps<ty
|
|
|
32
32
|
*/
|
|
33
33
|
collapsible?: boolean;
|
|
34
34
|
}
|
|
35
|
-
declare function DocsLayout(props: DocsLayoutProps):
|
|
35
|
+
declare function DocsLayout(props: DocsLayoutProps): react_jsx_runtime21.JSX.Element;
|
|
36
36
|
//#endregion
|
|
37
37
|
export { DocsLayout, DocsLayoutProps };
|
|
38
38
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/layouts/notebook/index.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;UAgCiB,eAAA,SAAwB;QACjC,QAAA,CAAS;;EADA,GAAA,CAAA,EAIT,eAJyB,CAAA,KAAA,CAAA,GAAA;IACzB,IAAS,CAAA,EAAA,KAAA,GAAA,MAAA;EAGT,CAAA;EAII,OAAA,CAAA,EAAA,cAAA;EAEsB,cAAA,CAAA,EAAf,cAAe,CAAA,cAAA,CAAA;;UAGxB,cAAA,SAEN,cAfqC,CAAA,OAAA,CAAA,EAgBrC,IAhBqC,CAgBhC,cAhBgC,CAAA,OAgBV,OAhBU,CAAA,EAAA,kBAAA,GAAA,UAAA,CAAA,CAAA;EAAe,UAAA,CAAA,EAiBzC,OAjByC,CAiBjC,yBAjBiC,CAAA;EAa9C;;;EAIa,IAAA,CAAA,EAKd,mBALc,EAAA,GAKU,qBALV,GAAA,KAAA;EAAR,MAAA,CAAA,EAOJ,SAPI,GAOQ,EAPR,CAOW,cAPX,CAAA,KAAA,CAAA,CAAA;EAKN,MAAA,CAAA,EAGE,SAHF,GAGc,EAHd,CAGiB,cAHjB,CAAA,KAAA,CAAA,CAAA;EAAwB;;;;;EAGP,WAAA,CAAA,EAAA,OAAA;;AAVtB,iBAoBY,UAAA,CApBZ,KAAA,EAoB8B,eApB9B,CAAA,EAoB6C,
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/layouts/notebook/index.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;UAgCiB,eAAA,SAAwB;QACjC,QAAA,CAAS;;EADA,GAAA,CAAA,EAIT,eAJyB,CAAA,KAAA,CAAA,GAAA;IACzB,IAAS,CAAA,EAAA,KAAA,GAAA,MAAA;EAGT,CAAA;EAII,OAAA,CAAA,EAAA,cAAA;EAEsB,cAAA,CAAA,EAAf,cAAe,CAAA,cAAA,CAAA;;UAGxB,cAAA,SAEN,cAfqC,CAAA,OAAA,CAAA,EAgBrC,IAhBqC,CAgBhC,cAhBgC,CAAA,OAgBV,OAhBU,CAAA,EAAA,kBAAA,GAAA,UAAA,CAAA,CAAA;EAAe,UAAA,CAAA,EAiBzC,OAjByC,CAiBjC,yBAjBiC,CAAA;EAa9C;;;EAIa,IAAA,CAAA,EAKd,mBALc,EAAA,GAKU,qBALV,GAAA,KAAA;EAAR,MAAA,CAAA,EAOJ,SAPI,GAOQ,EAPR,CAOW,cAPX,CAAA,KAAA,CAAA,CAAA;EAKN,MAAA,CAAA,EAGE,SAHF,GAGc,EAHd,CAGiB,cAHjB,CAAA,KAAA,CAAA,CAAA;EAAwB;;;;;EAGP,WAAA,CAAA,EAAA,OAAA;;AAVtB,iBAoBY,UAAA,CApBZ,KAAA,EAoB8B,eApB9B,CAAA,EAoB6C,mBAAA,CAAA,GAAA,CAAA,OApB7C"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime67 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'>):
|
|
11
|
+
}: ComponentProps<'div'>): react_jsx_runtime67.JSX.Element;
|
|
12
12
|
declare function PageTOCPopoverTrigger({
|
|
13
13
|
className,
|
|
14
14
|
...props
|
|
15
|
-
}: ComponentProps<'button'>):
|
|
16
|
-
declare function PageTOCPopoverContent(props: ComponentProps<'div'>):
|
|
15
|
+
}: ComponentProps<'button'>): react_jsx_runtime67.JSX.Element;
|
|
16
|
+
declare function PageTOCPopoverContent(props: ComponentProps<'div'>): react_jsx_runtime67.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
|
-
}):
|
|
22
|
+
}): react_jsx_runtime67.JSX.Element;
|
|
23
23
|
type Item = Pick<PageTree.Item, 'name' | 'description' | 'url'>;
|
|
24
24
|
interface FooterProps extends ComponentProps<'div'> {
|
|
25
25
|
/**
|
|
@@ -35,14 +35,14 @@ declare function PageFooter({
|
|
|
35
35
|
children,
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: FooterProps):
|
|
38
|
+
}: FooterProps): react_jsx_runtime67.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):
|
|
45
|
+
}: BreadcrumbProps): react_jsx_runtime67.JSX.Element | null;
|
|
46
46
|
//#endregion
|
|
47
47
|
export { BreadcrumbProps, FooterProps, PageBreadcrumb, PageFooter, PageLastUpdate, PageTOCPopover, PageTOCPopoverContent, PageTOCPopoverTrigger };
|
|
48
48
|
//# sourceMappingURL=client.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BreadcrumbProps, FooterProps, PageBreadcrumb, PageLastUpdate } from "./client.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime73 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'>):
|
|
84
|
+
declare function EditOnGitHub(props: ComponentProps<'a'>): react_jsx_runtime73.JSX.Element;
|
|
85
85
|
/**
|
|
86
86
|
* Add typography styles
|
|
87
87
|
*/
|
|
@@ -89,17 +89,17 @@ declare function DocsBody({
|
|
|
89
89
|
children,
|
|
90
90
|
className,
|
|
91
91
|
...props
|
|
92
|
-
}: ComponentProps<'div'>):
|
|
92
|
+
}: ComponentProps<'div'>): react_jsx_runtime73.JSX.Element;
|
|
93
93
|
declare function DocsDescription({
|
|
94
94
|
children,
|
|
95
95
|
className,
|
|
96
96
|
...props
|
|
97
|
-
}: ComponentProps<'p'>):
|
|
97
|
+
}: ComponentProps<'p'>): react_jsx_runtime73.JSX.Element | null;
|
|
98
98
|
declare function DocsTitle({
|
|
99
99
|
children,
|
|
100
100
|
className,
|
|
101
101
|
...props
|
|
102
|
-
}: ComponentProps<'h1'>):
|
|
102
|
+
}: ComponentProps<'h1'>): react_jsx_runtime73.JSX.Element;
|
|
103
103
|
//#endregion
|
|
104
104
|
export { DocsBody, DocsDescription, DocsPage, DocsPageProps, DocsTitle, EditOnGitHub, PageBreadcrumb, PageLastUpdate };
|
|
105
105
|
//# sourceMappingURL=index.d.ts.map
|