@arkenv/fumadocs-ui 0.0.6 → 0.0.7
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/dist/code-blocks-84sbH-Ro.d.mts +64 -0
- package/dist/code-blocks-BIzdy_Fb.d.cts +64 -0
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.cts +9 -71
- package/dist/components/index.d.mts +9 -71
- package/dist/components/index.mjs +1 -1
- package/dist/{heading-11j3HQh7.cjs → heading-C5UUAy6_.cjs} +1 -1
- package/dist/{heading-CvyTA_oR.mjs → heading-csBrdYqs.mjs} +1 -1
- package/dist/mdx/index.cjs +1 -1
- package/dist/mdx/index.d.cts +43 -2
- package/dist/mdx/index.d.mts +43 -2
- package/dist/mdx/index.mjs +1 -1
- package/dist/url-B-x2rAvR.cjs +1 -0
- package/dist/utils/index.cjs +1 -1
- package/dist/utils/index.mjs +1 -1
- package/package.json +20 -20
- package/dist/url-xnMEOisP.cjs +0 -1
- /package/dist/{url-CZOXzYIy.mjs → url-ZsLGjed4.mjs} +0 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { ComponentProps, HTMLAttributes, ReactNode } from "react";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
import { Tabs, TabsContent, TabsList, TabsTrigger } from "fumadocs-ui/components/tabs";
|
|
4
|
+
|
|
5
|
+
//#region src/components/code-blocks.d.ts
|
|
6
|
+
interface CodeBlockProps extends ComponentProps<"figure"> {
|
|
7
|
+
/**
|
|
8
|
+
* Icon of code block
|
|
9
|
+
*
|
|
10
|
+
* When passed as a string, it assumes the value is SVG markup.
|
|
11
|
+
* The string will be sanitized at runtime and should be trusted SVG only.
|
|
12
|
+
*/
|
|
13
|
+
icon?: ReactNode;
|
|
14
|
+
/**
|
|
15
|
+
* Allow to copy code with copy button
|
|
16
|
+
*
|
|
17
|
+
* @defaultValue true
|
|
18
|
+
*/
|
|
19
|
+
allowCopy?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Keep original background color generated by Shiki or Rehype Code
|
|
22
|
+
*
|
|
23
|
+
* @defaultValue false
|
|
24
|
+
*/
|
|
25
|
+
keepBackground?: boolean;
|
|
26
|
+
viewportProps?: HTMLAttributes<HTMLElement>;
|
|
27
|
+
/**
|
|
28
|
+
* show line numbers
|
|
29
|
+
*/
|
|
30
|
+
"data-line-numbers"?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* @defaultValue 1
|
|
33
|
+
*/
|
|
34
|
+
"data-line-numbers-start"?: number;
|
|
35
|
+
title?: string;
|
|
36
|
+
Actions?: (props: {
|
|
37
|
+
className?: string;
|
|
38
|
+
children?: ReactNode;
|
|
39
|
+
}) => ReactNode;
|
|
40
|
+
}
|
|
41
|
+
declare function Pre(props: ComponentProps<"pre">): _$react_jsx_runtime0.JSX.Element;
|
|
42
|
+
declare function CodeBlock({
|
|
43
|
+
ref,
|
|
44
|
+
title,
|
|
45
|
+
allowCopy,
|
|
46
|
+
keepBackground,
|
|
47
|
+
icon,
|
|
48
|
+
viewportProps,
|
|
49
|
+
children,
|
|
50
|
+
Actions,
|
|
51
|
+
...props
|
|
52
|
+
}: CodeBlockProps): _$react_jsx_runtime0.JSX.Element;
|
|
53
|
+
declare function CodeBlockTabs({
|
|
54
|
+
ref,
|
|
55
|
+
...props
|
|
56
|
+
}: ComponentProps<typeof Tabs>): _$react_jsx_runtime0.JSX.Element;
|
|
57
|
+
declare function CodeBlockTabsList(props: ComponentProps<typeof TabsList>): _$react_jsx_runtime0.JSX.Element;
|
|
58
|
+
declare function CodeBlockTabsTrigger({
|
|
59
|
+
children,
|
|
60
|
+
...props
|
|
61
|
+
}: ComponentProps<typeof TabsTrigger>): _$react_jsx_runtime0.JSX.Element;
|
|
62
|
+
declare function CodeBlockTab(props: ComponentProps<typeof TabsContent>): _$react_jsx_runtime0.JSX.Element;
|
|
63
|
+
//#endregion
|
|
64
|
+
export { CodeBlockTabsList as a, CodeBlockTabs as i, CodeBlockProps as n, CodeBlockTabsTrigger as o, CodeBlockTab as r, Pre as s, CodeBlock as t };
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
import { Tabs, TabsContent, TabsList, TabsTrigger } from "fumadocs-ui/components/tabs";
|
|
3
|
+
import { ComponentProps, HTMLAttributes, ReactNode } from "react";
|
|
4
|
+
|
|
5
|
+
//#region src/components/code-blocks.d.ts
|
|
6
|
+
interface CodeBlockProps extends ComponentProps<"figure"> {
|
|
7
|
+
/**
|
|
8
|
+
* Icon of code block
|
|
9
|
+
*
|
|
10
|
+
* When passed as a string, it assumes the value is SVG markup.
|
|
11
|
+
* The string will be sanitized at runtime and should be trusted SVG only.
|
|
12
|
+
*/
|
|
13
|
+
icon?: ReactNode;
|
|
14
|
+
/**
|
|
15
|
+
* Allow to copy code with copy button
|
|
16
|
+
*
|
|
17
|
+
* @defaultValue true
|
|
18
|
+
*/
|
|
19
|
+
allowCopy?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Keep original background color generated by Shiki or Rehype Code
|
|
22
|
+
*
|
|
23
|
+
* @defaultValue false
|
|
24
|
+
*/
|
|
25
|
+
keepBackground?: boolean;
|
|
26
|
+
viewportProps?: HTMLAttributes<HTMLElement>;
|
|
27
|
+
/**
|
|
28
|
+
* show line numbers
|
|
29
|
+
*/
|
|
30
|
+
"data-line-numbers"?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* @defaultValue 1
|
|
33
|
+
*/
|
|
34
|
+
"data-line-numbers-start"?: number;
|
|
35
|
+
title?: string;
|
|
36
|
+
Actions?: (props: {
|
|
37
|
+
className?: string;
|
|
38
|
+
children?: ReactNode;
|
|
39
|
+
}) => ReactNode;
|
|
40
|
+
}
|
|
41
|
+
declare function Pre(props: ComponentProps<"pre">): _$react_jsx_runtime0.JSX.Element;
|
|
42
|
+
declare function CodeBlock({
|
|
43
|
+
ref,
|
|
44
|
+
title,
|
|
45
|
+
allowCopy,
|
|
46
|
+
keepBackground,
|
|
47
|
+
icon,
|
|
48
|
+
viewportProps,
|
|
49
|
+
children,
|
|
50
|
+
Actions,
|
|
51
|
+
...props
|
|
52
|
+
}: CodeBlockProps): _$react_jsx_runtime0.JSX.Element;
|
|
53
|
+
declare function CodeBlockTabs({
|
|
54
|
+
ref,
|
|
55
|
+
...props
|
|
56
|
+
}: ComponentProps<typeof Tabs>): _$react_jsx_runtime0.JSX.Element;
|
|
57
|
+
declare function CodeBlockTabsList(props: ComponentProps<typeof TabsList>): _$react_jsx_runtime0.JSX.Element;
|
|
58
|
+
declare function CodeBlockTabsTrigger({
|
|
59
|
+
children,
|
|
60
|
+
...props
|
|
61
|
+
}: ComponentProps<typeof TabsTrigger>): _$react_jsx_runtime0.JSX.Element;
|
|
62
|
+
declare function CodeBlockTab(props: ComponentProps<typeof TabsContent>): _$react_jsx_runtime0.JSX.Element;
|
|
63
|
+
//#endregion
|
|
64
|
+
export { CodeBlockTabsList as a, CodeBlockTabs as i, CodeBlockProps as n, CodeBlockTabsTrigger as o, CodeBlockTab as r, Pre as s, CodeBlock as t };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
const e=require(`../heading-11j3HQh7.cjs`),t=require(`../url-xnMEOisP.cjs`);let n=require(`fumadocs-ui/components/ui/button`),r=require(`fumadocs-ui/components/ui/popover`),i=require(`fumadocs-ui/utils/use-copy-button`),a=require(`lucide-react`),o=require(`react`),s=require(`react/jsx-runtime`),c=require(`fumadocs-core/link`);c=e.l(c);let l=require(`next/navigation`);const u=new Map;function d({markdownUrl:e,githubUrl:c}){let[l,d]=(0,o.useState)(!1),[f,p]=(0,o.useState)(null);(0,o.useEffect)(()=>{p(window.location.origin)},[]);let[m,h]=(0,i.useCopyButton)(async()=>{let t=u.get(e);if(t)return navigator.clipboard.writeText(t);d(!0);try{await navigator.clipboard.write([new ClipboardItem({"text/plain":fetch(e).then(async t=>{if(!t.ok)throw Error(`Failed to fetch markdown: ${t.statusText}`);let n=await t.text();return u.set(e,n),n})})])}catch(e){console.error(e)}finally{d(!1)}}),g=(0,o.useMemo)(()=>{if(!f)return[];let t=`Read ${new URL(e,f)}, I want to ask questions about it.`;return[{title:`Open in GitHub`,href:c,icon:(0,s.jsxs)(`svg`,{fill:`currentColor`,role:`img`,viewBox:`0 0 24 24`,className:`size-4`,children:[(0,s.jsx)(`title`,{children:`GitHub`}),(0,s.jsx)(`path`,{d:`M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12`})]})},{title:`Open in Scira AI`,href:`https://scira.ai/?${new URLSearchParams({q:t})}`,icon:(0,s.jsxs)(`svg`,{width:`910`,height:`934`,viewBox:`0 0 910 934`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[(0,s.jsx)(`title`,{children:`Scira AI`}),(0,s.jsx)(`path`,{d:`M647.664 197.775C569.13 189.049 525.5 145.419 516.774 66.8849C508.048 145.419 464.418 189.049 385.884 197.775C464.418 206.501 508.048 250.131 516.774 328.665C525.5 250.131 569.13 206.501 647.664 197.775Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M516.774 304.217C510.299 275.491 498.208 252.087 480.335 234.214C462.462 216.341 439.058 204.251 410.333 197.775C439.059 191.3 462.462 179.209 480.335 161.336C498.208 143.463 510.299 120.06 516.774 91.334C523.25 120.059 535.34 143.463 553.213 161.336C571.086 179.209 594.49 191.3 623.216 197.775C594.49 204.251 571.086 216.341 553.213 234.214C535.34 252.087 523.25 275.491 516.774 304.217Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M857.5 508.116C763.259 497.644 710.903 445.288 700.432 351.047C689.961 445.288 637.605 497.644 543.364 508.116C637.605 518.587 689.961 570.943 700.432 665.184C710.903 570.943 763.259 518.587 857.5 508.116Z`,stroke:`currentColor`,strokeWidth:`20`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M700.432 615.957C691.848 589.05 678.575 566.357 660.383 548.165C642.191 529.973 619.499 516.7 592.593 508.116C619.499 499.533 642.191 486.258 660.383 468.066C678.575 449.874 691.848 427.181 700.432 400.274C709.015 427.181 722.289 449.874 740.481 468.066C758.673 486.258 781.365 499.533 808.271 508.116C781.365 516.7 758.673 529.973 740.481 548.165C722.289 566.357 709.015 589.05 700.432 615.957Z`,stroke:`currentColor`,strokeWidth:`20`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M889.949 121.237C831.049 114.692 798.326 81.9698 791.782 23.0692C785.237 81.9698 752.515 114.692 693.614 121.237C752.515 127.781 785.237 160.504 791.782 219.404C798.326 160.504 831.049 127.781 889.949 121.237Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M791.782 196.795C786.697 176.937 777.869 160.567 765.16 147.858C752.452 135.15 736.082 126.322 716.226 121.237C736.082 116.152 752.452 107.324 765.16 94.6152C777.869 81.9065 786.697 65.5368 791.782 45.6797C796.867 65.5367 805.695 81.9066 818.403 94.6152C831.112 107.324 847.481 116.152 867.338 121.237C847.481 126.322 831.112 135.15 818.403 147.858C805.694 160.567 796.867 176.937 791.782 196.795Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`})]})},{title:`Open in ChatGPT`,href:`https://chatgpt.com/?${new URLSearchParams({hints:`search`,q:t})}`,icon:(0,s.jsxs)(`svg`,{role:`img`,viewBox:`0 0 24 24`,fill:`currentColor`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[(0,s.jsx)(`title`,{children:`OpenAI`}),(0,s.jsx)(`path`,{d:`M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z`})]})},{title:`Open in Claude`,href:`https://claude.ai/new?${new URLSearchParams({q:t})}`,icon:(0,s.jsxs)(`svg`,{fill:`currentColor`,role:`img`,viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[(0,s.jsx)(`title`,{children:`Anthropic`}),(0,s.jsx)(`path`,{d:`M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z`})]})},{title:`Open in T3 Chat`,href:`https://t3.chat/new?${new URLSearchParams({q:t})}`,icon:(0,s.jsx)(a.MessageCircleIcon,{className:`size-4`})}]},[c,e,f]);return(0,s.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,s.jsxs)(`button`,{type:`button`,disabled:l,className:t.r((0,n.buttonVariants)({color:`secondary`,size:`sm`,className:`gap-2 [&_svg]:size-3.5 [&_svg]:text-fd-muted-foreground`})),onClick:h,children:[m?(0,s.jsx)(a.Check,{}):(0,s.jsx)(a.Copy,{}),`Copy Markdown`]}),(0,s.jsxs)(r.Popover,{children:[(0,s.jsxs)(r.PopoverTrigger,{className:t.r((0,n.buttonVariants)({color:`secondary`,size:`sm`,className:`gap-2`})),children:[`Open`,(0,s.jsx)(a.ChevronDown,{className:`size-3.5 text-fd-muted-foreground`})]}),(0,s.jsx)(r.PopoverContent,{className:`flex flex-col p-1`,children:g.map(e=>(0,s.jsxs)(`a`,{href:e.href,rel:`noreferrer noopener`,target:`_blank`,className:`text-sm p-2 rounded-lg inline-flex items-center gap-2 hover:text-fd-accent-foreground hover:bg-fd-accent [&_svg]:size-4`,children:[e.icon,e.title,(0,s.jsx)(a.ExternalLinkIcon,{className:`text-fd-muted-foreground size-3.5 ms-auto`})]},e.href))})]})]})}function f({logo:n,logoHref:r=`/`,links:i,actions:u,menuActions:d,menuSocialActions:f,sidebarTrigger:p}){let[m,h]=(0,o.useState)(!1),[g,_]=(0,o.useState)(!1),v=(0,l.usePathname)();(0,o.useEffect)(()=>{let e=()=>h(window.scrollY>0);return window.addEventListener(`scroll`,e,{passive:!0}),e(),()=>window.removeEventListener(`scroll`,e)},[]),(0,o.useEffect)(()=>{_(!1)},[v]),(0,o.useEffect)(()=>(document.body.style.overflow=g?`hidden`:``,()=>{document.body.style.overflow=``}),[g]);let y=i&&i.length>0,b=d&&d.length>0,x=f&&f.length>0,S=y||b||x,C=u&&u.length>0||S;return(0,s.jsxs)(`header`,{className:t.r(`fixed top-0 left-0 right-0 z-50`,`h-(--fd-nav-height,80px)`,`border-b transition-[background-color,border-color,backdrop-filter] duration-300`,g&&`max-md:border-b-transparent`,m&&!g?`border-fd-border/60 bg-(--background)/85 backdrop-blur-xl`:`border-fd-border/60 bg-background`),children:[(0,s.jsxs)(`div`,{className:`flex items-center h-full px-4 max-w-(--fd-layout-width) mx-auto w-full`,children:[(0,s.jsxs)(`div`,{className:`flex items-center gap-2 md:gap-6`,children:[p&&(0,s.jsx)(`div`,{className:`md:hidden`,children:p}),n&&(0,s.jsx)(c.default,{href:r,className:`flex items-center rounded-sm outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,children:n}),y&&(0,s.jsx)(`nav`,{className:`hidden md:flex items-center gap-0.5`,children:i.map(n=>{let r=n.url.startsWith(`/`),i=n.activeMatch??n.url,a=r?v===i||v.startsWith(`${i}/`):!1;return(0,s.jsx)(e.n,{href:n.url,className:t.r(`px-3 py-1.5 text-[1rem] font-normal rounded-md transition-colors duration-150`,`outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,a?`text-fd-primary`:`text-fd-foreground hover:text-fd-primary`),children:n.text},n.url)})})]}),C&&(0,s.jsxs)(`div`,{className:`flex-1 flex items-center justify-end gap-2 md:gap-4`,children:[u?.map((e,t)=>(0,s.jsx)(o.Fragment,{children:e},t)),S&&(0,s.jsx)(`button`,{type:`button`,className:`md:hidden flex items-center justify-center h-8 w-8 rounded-md text-fd-foreground hover:text-fd-foreground transition-colors outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,onClick:()=>_(e=>!e),"aria-label":`Toggle menu`,"aria-expanded":g,children:g?(0,s.jsx)(a.X,{className:`h-5 w-5`}):(0,s.jsx)(a.Menu,{className:`h-5 w-5`})})]})]}),g&&(0,s.jsxs)(`div`,{className:`md:hidden fixed inset-0 z-40 bg-fd-background flex flex-col px-4 py-6`,style:{top:`var(--fd-nav-height, 80px)`},children:[(0,s.jsx)(`div`,{className:`flex-1 flex flex-col`,children:y&&i.map(n=>{let r=n.url.startsWith(`/`),i=n.activeMatch??n.url,a=r?v===i||v.startsWith(i+`/`):!1;return(0,s.jsx)(e.n,{href:n.url,className:t.r(`px-3 py-3 text-[1.125rem] font-normal rounded-md transition-colors duration-150 w-full`,`outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,a?`text-fd-primary`:`text-fd-foreground hover:text-fd-primary`),children:n.text},n.url)})}),b&&(0,s.jsxs)(`div`,{className:`flex items-center justify-between py-4 border-t border-fd-border`,children:[(0,s.jsx)(`span`,{className:`text-sm font-medium text-fd-foreground`,children:`Appearance`}),(0,s.jsx)(`div`,{className:`flex items-center gap-2`,children:d.map((e,t)=>(0,s.jsx)(`div`,{children:e},t))})]}),x&&(0,s.jsx)(`div`,{className:`py-4 flex items-center justify-center gap-4`,children:f.map((e,t)=>(0,s.jsx)(`div`,{children:e},t))})]})]})}exports.AIActions=d,exports.CodeBlock=e.r,exports.CodeBlockTab=e.i,exports.CodeBlockTabs=e.a,exports.CodeBlockTabsList=e.o,exports.CodeBlockTabsTrigger=e.s,exports.ExternalLink=e.n,exports.Header=f,exports.Heading=e.t,exports.Pre=e.c;
|
|
2
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`../heading-C5UUAy6_.cjs`),t=require(`../url-B-x2rAvR.cjs`);let n=require(`fumadocs-ui/components/ui/button`),r=require(`fumadocs-ui/components/ui/popover`),i=require(`fumadocs-ui/utils/use-copy-button`),a=require(`lucide-react`),o=require(`react`),s=require(`react/jsx-runtime`),c=require(`fumadocs-core/link`);c=e.l(c);let l=require(`next/navigation.js`);const u=new Map;function d({markdownUrl:e,githubUrl:c}){let[l,d]=(0,o.useState)(!1),[f,p]=(0,o.useState)(null);(0,o.useEffect)(()=>{p(window.location.origin)},[]);let[m,h]=(0,i.useCopyButton)(async()=>{let t=u.get(e);if(t)return navigator.clipboard.writeText(t);d(!0);try{await navigator.clipboard.write([new ClipboardItem({"text/plain":fetch(e).then(async t=>{if(!t.ok)throw Error(`Failed to fetch markdown: ${t.statusText}`);let n=await t.text();return u.set(e,n),n})})])}catch(e){console.error(e)}finally{d(!1)}}),g=(0,o.useMemo)(()=>{if(!f)return[];let t=`Read ${new URL(e,f)}, I want to ask questions about it.`;return[{title:`Open in GitHub`,href:c,icon:(0,s.jsxs)(`svg`,{fill:`currentColor`,role:`img`,viewBox:`0 0 24 24`,className:`size-4`,children:[(0,s.jsx)(`title`,{children:`GitHub`}),(0,s.jsx)(`path`,{d:`M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12`})]})},{title:`Open in Scira AI`,href:`https://scira.ai/?${new URLSearchParams({q:t})}`,icon:(0,s.jsxs)(`svg`,{width:`910`,height:`934`,viewBox:`0 0 910 934`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[(0,s.jsx)(`title`,{children:`Scira AI`}),(0,s.jsx)(`path`,{d:`M647.664 197.775C569.13 189.049 525.5 145.419 516.774 66.8849C508.048 145.419 464.418 189.049 385.884 197.775C464.418 206.501 508.048 250.131 516.774 328.665C525.5 250.131 569.13 206.501 647.664 197.775Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M516.774 304.217C510.299 275.491 498.208 252.087 480.335 234.214C462.462 216.341 439.058 204.251 410.333 197.775C439.059 191.3 462.462 179.209 480.335 161.336C498.208 143.463 510.299 120.06 516.774 91.334C523.25 120.059 535.34 143.463 553.213 161.336C571.086 179.209 594.49 191.3 623.216 197.775C594.49 204.251 571.086 216.341 553.213 234.214C535.34 252.087 523.25 275.491 516.774 304.217Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M857.5 508.116C763.259 497.644 710.903 445.288 700.432 351.047C689.961 445.288 637.605 497.644 543.364 508.116C637.605 518.587 689.961 570.943 700.432 665.184C710.903 570.943 763.259 518.587 857.5 508.116Z`,stroke:`currentColor`,strokeWidth:`20`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M700.432 615.957C691.848 589.05 678.575 566.357 660.383 548.165C642.191 529.973 619.499 516.7 592.593 508.116C619.499 499.533 642.191 486.258 660.383 468.066C678.575 449.874 691.848 427.181 700.432 400.274C709.015 427.181 722.289 449.874 740.481 468.066C758.673 486.258 781.365 499.533 808.271 508.116C781.365 516.7 758.673 529.973 740.481 548.165C722.289 566.357 709.015 589.05 700.432 615.957Z`,stroke:`currentColor`,strokeWidth:`20`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M889.949 121.237C831.049 114.692 798.326 81.9698 791.782 23.0692C785.237 81.9698 752.515 114.692 693.614 121.237C752.515 127.781 785.237 160.504 791.782 219.404C798.326 160.504 831.049 127.781 889.949 121.237Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),(0,s.jsx)(`path`,{d:`M791.782 196.795C786.697 176.937 777.869 160.567 765.16 147.858C752.452 135.15 736.082 126.322 716.226 121.237C736.082 116.152 752.452 107.324 765.16 94.6152C777.869 81.9065 786.697 65.5368 791.782 45.6797C796.867 65.5367 805.695 81.9066 818.403 94.6152C831.112 107.324 847.481 116.152 867.338 121.237C847.481 126.322 831.112 135.15 818.403 147.858C805.694 160.567 796.867 176.937 791.782 196.795Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`})]})},{title:`Open in ChatGPT`,href:`https://chatgpt.com/?${new URLSearchParams({hints:`search`,q:t})}`,icon:(0,s.jsxs)(`svg`,{role:`img`,viewBox:`0 0 24 24`,fill:`currentColor`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[(0,s.jsx)(`title`,{children:`OpenAI`}),(0,s.jsx)(`path`,{d:`M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z`})]})},{title:`Open in Claude`,href:`https://claude.ai/new?${new URLSearchParams({q:t})}`,icon:(0,s.jsxs)(`svg`,{fill:`currentColor`,role:`img`,viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[(0,s.jsx)(`title`,{children:`Anthropic`}),(0,s.jsx)(`path`,{d:`M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z`})]})},{title:`Open in T3 Chat`,href:`https://t3.chat/new?${new URLSearchParams({q:t})}`,icon:(0,s.jsx)(a.MessageCircleIcon,{className:`size-4`})}]},[c,e,f]);return(0,s.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,s.jsxs)(`button`,{type:`button`,disabled:l,className:t.r((0,n.buttonVariants)({color:`secondary`,size:`sm`,className:`gap-2 [&_svg]:size-3.5 [&_svg]:text-fd-muted-foreground`})),onClick:h,children:[m?(0,s.jsx)(a.Check,{}):(0,s.jsx)(a.Copy,{}),`Copy Markdown`]}),(0,s.jsxs)(r.Popover,{children:[(0,s.jsxs)(r.PopoverTrigger,{className:t.r((0,n.buttonVariants)({color:`secondary`,size:`sm`,className:`gap-2`})),children:[`Open`,(0,s.jsx)(a.ChevronDown,{className:`size-3.5 text-fd-muted-foreground`})]}),(0,s.jsx)(r.PopoverContent,{className:`flex flex-col p-1`,children:g.map(e=>(0,s.jsxs)(`a`,{href:e.href,rel:`noreferrer noopener`,target:`_blank`,className:`text-sm p-2 rounded-lg inline-flex items-center gap-2 hover:text-fd-accent-foreground hover:bg-fd-accent [&_svg]:size-4`,children:[e.icon,e.title,(0,s.jsx)(a.ExternalLinkIcon,{className:`text-fd-muted-foreground size-3.5 ms-auto`})]},e.href))})]})]})}function f({logo:n,logoHref:r=`/`,links:i,actions:u,menuActions:d,menuSocialActions:f,sidebarTrigger:p}){let[m,h]=(0,o.useState)(!1),[g,_]=(0,o.useState)(!1),v=(0,l.usePathname)();(0,o.useEffect)(()=>{let e=()=>h(window.scrollY>0);return window.addEventListener(`scroll`,e,{passive:!0}),e(),()=>window.removeEventListener(`scroll`,e)},[]),(0,o.useEffect)(()=>{_(!1)},[v]),(0,o.useEffect)(()=>(document.body.style.overflow=g?`hidden`:``,()=>{document.body.style.overflow=``}),[g]);let y=i&&i.length>0,b=d&&d.length>0,x=f&&f.length>0,S=y||b||x,C=u&&u.length>0||S;return(0,s.jsxs)(`header`,{className:t.r(`fixed top-0 left-0 right-0 z-50`,`h-(--fd-nav-height,80px)`,`border-b transition-[background-color,border-color,backdrop-filter] duration-300`,g&&`max-md:border-b-transparent`,m&&!g?`border-fd-border/60 bg-(--background)/85 backdrop-blur-xl`:`border-fd-border/60 bg-background`),children:[(0,s.jsxs)(`div`,{className:`flex items-center h-full px-4 max-w-(--fd-layout-width) mx-auto w-full`,children:[(0,s.jsxs)(`div`,{className:`flex items-center gap-2 md:gap-6`,children:[p&&(0,s.jsx)(`div`,{className:`md:hidden`,children:p}),n&&(0,s.jsx)(c.default,{href:r,className:`flex items-center rounded-sm outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,children:n}),y&&(0,s.jsx)(`nav`,{className:`hidden md:flex items-center gap-0.5`,children:i.map(n=>{let r=n.url.startsWith(`/`),i=n.activeMatch??n.url,a=r?v===i||v.startsWith(`${i}/`):!1;return(0,s.jsx)(e.n,{href:n.url,className:t.r(`px-3 py-1.5 text-[1rem] font-normal rounded-md transition-colors duration-150`,`outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,a?`text-fd-primary`:`text-fd-foreground hover:text-fd-primary`),children:n.text},n.url)})})]}),C&&(0,s.jsxs)(`div`,{className:`flex-1 flex items-center justify-end gap-2 md:gap-4`,children:[u?.map((e,t)=>(0,s.jsx)(o.Fragment,{children:e},t)),S&&(0,s.jsx)(`button`,{type:`button`,className:`md:hidden flex items-center justify-center h-8 w-8 rounded-md text-fd-foreground hover:text-fd-foreground transition-colors outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,onClick:()=>_(e=>!e),"aria-label":`Toggle menu`,"aria-expanded":g,children:g?(0,s.jsx)(a.X,{className:`h-5 w-5`}):(0,s.jsx)(a.Menu,{className:`h-5 w-5`})})]})]}),g&&(0,s.jsxs)(`div`,{className:`md:hidden fixed inset-0 z-40 bg-fd-background flex flex-col px-4 py-6`,style:{top:`var(--fd-nav-height, 80px)`},children:[(0,s.jsx)(`div`,{className:`flex-1 flex flex-col`,children:y&&i.map(n=>{let r=n.url.startsWith(`/`),i=n.activeMatch??n.url,a=r?v===i||v.startsWith(i+`/`):!1;return(0,s.jsx)(e.n,{href:n.url,className:t.r(`px-3 py-3 text-[1.125rem] font-normal rounded-md transition-colors duration-150 w-full`,`outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,a?`text-fd-primary`:`text-fd-foreground hover:text-fd-primary`),children:n.text},n.url)})}),b&&(0,s.jsxs)(`div`,{className:`flex items-center justify-between py-4 border-t border-fd-border`,children:[(0,s.jsx)(`span`,{className:`text-sm font-medium text-fd-foreground`,children:`Appearance`}),(0,s.jsx)(`div`,{className:`flex items-center gap-2`,children:d.map((e,t)=>(0,s.jsx)(`div`,{children:e},t))})]}),x&&(0,s.jsx)(`div`,{className:`py-4 flex items-center justify-center gap-4`,children:f.map((e,t)=>(0,s.jsx)(`div`,{children:e},t))})]})]})}exports.AIActions=d,exports.CodeBlock=e.r,exports.CodeBlockTab=e.i,exports.CodeBlockTabs=e.a,exports.CodeBlockTabsList=e.o,exports.CodeBlockTabsTrigger=e.s,exports.ExternalLink=e.n,exports.Header=f,exports.Heading=e.t,exports.Pre=e.c;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import { ComponentProps, ComponentPropsWithoutRef, FC,
|
|
1
|
+
import { a as CodeBlockTabsList, i as CodeBlockTabs, n as CodeBlockProps, o as CodeBlockTabsTrigger, r as CodeBlockTab, s as Pre, t as CodeBlock } from "../code-blocks-BIzdy_Fb.cjs";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
import { ComponentProps, ComponentPropsWithoutRef, FC, ReactNode } from "react";
|
|
4
4
|
import FumadocsLink from "fumadocs-core/link";
|
|
5
5
|
|
|
6
6
|
//#region src/components/ai-actions.d.ts
|
|
@@ -10,66 +10,7 @@ declare function AIActions({
|
|
|
10
10
|
}: {
|
|
11
11
|
markdownUrl: string;
|
|
12
12
|
githubUrl: string;
|
|
13
|
-
}):
|
|
14
|
-
//#endregion
|
|
15
|
-
//#region src/components/code-blocks.d.ts
|
|
16
|
-
interface CodeBlockProps extends ComponentProps<"figure"> {
|
|
17
|
-
/**
|
|
18
|
-
* Icon of code block
|
|
19
|
-
*
|
|
20
|
-
* When passed as a string, it assumes the value is SVG markup.
|
|
21
|
-
* The string will be sanitized at runtime and should be trusted SVG only.
|
|
22
|
-
*/
|
|
23
|
-
icon?: ReactNode;
|
|
24
|
-
/**
|
|
25
|
-
* Allow to copy code with copy button
|
|
26
|
-
*
|
|
27
|
-
* @defaultValue true
|
|
28
|
-
*/
|
|
29
|
-
allowCopy?: boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Keep original background color generated by Shiki or Rehype Code
|
|
32
|
-
*
|
|
33
|
-
* @defaultValue false
|
|
34
|
-
*/
|
|
35
|
-
keepBackground?: boolean;
|
|
36
|
-
viewportProps?: HTMLAttributes<HTMLElement>;
|
|
37
|
-
/**
|
|
38
|
-
* show line numbers
|
|
39
|
-
*/
|
|
40
|
-
"data-line-numbers"?: boolean;
|
|
41
|
-
/**
|
|
42
|
-
* @defaultValue 1
|
|
43
|
-
*/
|
|
44
|
-
"data-line-numbers-start"?: number;
|
|
45
|
-
title?: string;
|
|
46
|
-
Actions?: (props: {
|
|
47
|
-
className?: string;
|
|
48
|
-
children?: ReactNode;
|
|
49
|
-
}) => ReactNode;
|
|
50
|
-
}
|
|
51
|
-
declare function Pre(props: ComponentProps<"pre">): react_jsx_runtime7.JSX.Element;
|
|
52
|
-
declare function CodeBlock({
|
|
53
|
-
ref,
|
|
54
|
-
title,
|
|
55
|
-
allowCopy,
|
|
56
|
-
keepBackground,
|
|
57
|
-
icon,
|
|
58
|
-
viewportProps,
|
|
59
|
-
children,
|
|
60
|
-
Actions,
|
|
61
|
-
...props
|
|
62
|
-
}: CodeBlockProps): react_jsx_runtime7.JSX.Element;
|
|
63
|
-
declare function CodeBlockTabs({
|
|
64
|
-
ref,
|
|
65
|
-
...props
|
|
66
|
-
}: ComponentProps<typeof Tabs>): react_jsx_runtime7.JSX.Element;
|
|
67
|
-
declare function CodeBlockTabsList(props: ComponentProps<typeof TabsList>): react_jsx_runtime7.JSX.Element;
|
|
68
|
-
declare function CodeBlockTabsTrigger({
|
|
69
|
-
children,
|
|
70
|
-
...props
|
|
71
|
-
}: ComponentProps<typeof TabsTrigger>): react_jsx_runtime7.JSX.Element;
|
|
72
|
-
declare function CodeBlockTab(props: ComponentProps<typeof TabsContent>): react_jsx_runtime7.JSX.Element;
|
|
13
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
73
14
|
//#endregion
|
|
74
15
|
//#region src/components/external-link.d.ts
|
|
75
16
|
interface ExternalLinkProps extends ComponentProps<typeof FumadocsLink> {
|
|
@@ -96,12 +37,9 @@ type HeaderProps = {
|
|
|
96
37
|
logo?: ReactNode;
|
|
97
38
|
logoHref?: string;
|
|
98
39
|
links?: HeaderLink[];
|
|
99
|
-
actions?: ReactNode[];
|
|
100
|
-
/** Rendered
|
|
101
|
-
|
|
102
|
-
/** Rendered centered at the very bottom of the mobile menu (e.g. social icons). */
|
|
103
|
-
menuSocialActions?: ReactNode[];
|
|
104
|
-
/** Optional trigger rendered left of the logo on mobile (e.g. sidebar toggle). */
|
|
40
|
+
actions?: ReactNode[]; /** Rendered in the mobile menu "Appearance" row (label left, content right). */
|
|
41
|
+
menuActions?: ReactNode[]; /** Rendered centered at the very bottom of the mobile menu (e.g. social icons). */
|
|
42
|
+
menuSocialActions?: ReactNode[]; /** Optional trigger rendered left of the logo on mobile (e.g. sidebar toggle). */
|
|
105
43
|
sidebarTrigger?: ReactNode;
|
|
106
44
|
};
|
|
107
45
|
declare function Header({
|
|
@@ -112,7 +50,7 @@ declare function Header({
|
|
|
112
50
|
menuActions,
|
|
113
51
|
menuSocialActions,
|
|
114
52
|
sidebarTrigger
|
|
115
|
-
}: HeaderProps):
|
|
53
|
+
}: HeaderProps): _$react_jsx_runtime0.JSX.Element;
|
|
116
54
|
//#endregion
|
|
117
55
|
//#region src/components/heading.d.ts
|
|
118
56
|
type Types = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
@@ -124,6 +62,6 @@ declare function Heading<T extends Types = "h1">({
|
|
|
124
62
|
className,
|
|
125
63
|
children,
|
|
126
64
|
...props
|
|
127
|
-
}: HeadingProps<T>):
|
|
65
|
+
}: HeadingProps<T>): _$react_jsx_runtime0.JSX.Element;
|
|
128
66
|
//#endregion
|
|
129
67
|
export { AIActions, CodeBlock, CodeBlockProps, CodeBlockTab, CodeBlockTabs, CodeBlockTabsList, CodeBlockTabsTrigger, ExternalLink, ExternalLinkProps, Header, HeaderLink, HeaderProps, Heading, Pre };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { a as CodeBlockTabsList, i as CodeBlockTabs, n as CodeBlockProps, o as CodeBlockTabsTrigger, r as CodeBlockTab, s as Pre, t as CodeBlock } from "../code-blocks-84sbH-Ro.mjs";
|
|
2
|
+
import { ComponentProps, ComponentPropsWithoutRef, FC, ReactNode } from "react";
|
|
3
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
4
|
import FumadocsLink from "fumadocs-core/link";
|
|
5
5
|
|
|
6
6
|
//#region src/components/ai-actions.d.ts
|
|
@@ -10,66 +10,7 @@ declare function AIActions({
|
|
|
10
10
|
}: {
|
|
11
11
|
markdownUrl: string;
|
|
12
12
|
githubUrl: string;
|
|
13
|
-
}): react_jsx_runtime0.JSX.Element;
|
|
14
|
-
//#endregion
|
|
15
|
-
//#region src/components/code-blocks.d.ts
|
|
16
|
-
interface CodeBlockProps extends ComponentProps<"figure"> {
|
|
17
|
-
/**
|
|
18
|
-
* Icon of code block
|
|
19
|
-
*
|
|
20
|
-
* When passed as a string, it assumes the value is SVG markup.
|
|
21
|
-
* The string will be sanitized at runtime and should be trusted SVG only.
|
|
22
|
-
*/
|
|
23
|
-
icon?: ReactNode;
|
|
24
|
-
/**
|
|
25
|
-
* Allow to copy code with copy button
|
|
26
|
-
*
|
|
27
|
-
* @defaultValue true
|
|
28
|
-
*/
|
|
29
|
-
allowCopy?: boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Keep original background color generated by Shiki or Rehype Code
|
|
32
|
-
*
|
|
33
|
-
* @defaultValue false
|
|
34
|
-
*/
|
|
35
|
-
keepBackground?: boolean;
|
|
36
|
-
viewportProps?: HTMLAttributes<HTMLElement>;
|
|
37
|
-
/**
|
|
38
|
-
* show line numbers
|
|
39
|
-
*/
|
|
40
|
-
"data-line-numbers"?: boolean;
|
|
41
|
-
/**
|
|
42
|
-
* @defaultValue 1
|
|
43
|
-
*/
|
|
44
|
-
"data-line-numbers-start"?: number;
|
|
45
|
-
title?: string;
|
|
46
|
-
Actions?: (props: {
|
|
47
|
-
className?: string;
|
|
48
|
-
children?: ReactNode;
|
|
49
|
-
}) => ReactNode;
|
|
50
|
-
}
|
|
51
|
-
declare function Pre(props: ComponentProps<"pre">): react_jsx_runtime0.JSX.Element;
|
|
52
|
-
declare function CodeBlock({
|
|
53
|
-
ref,
|
|
54
|
-
title,
|
|
55
|
-
allowCopy,
|
|
56
|
-
keepBackground,
|
|
57
|
-
icon,
|
|
58
|
-
viewportProps,
|
|
59
|
-
children,
|
|
60
|
-
Actions,
|
|
61
|
-
...props
|
|
62
|
-
}: CodeBlockProps): react_jsx_runtime0.JSX.Element;
|
|
63
|
-
declare function CodeBlockTabs({
|
|
64
|
-
ref,
|
|
65
|
-
...props
|
|
66
|
-
}: ComponentProps<typeof Tabs>): react_jsx_runtime0.JSX.Element;
|
|
67
|
-
declare function CodeBlockTabsList(props: ComponentProps<typeof TabsList>): react_jsx_runtime0.JSX.Element;
|
|
68
|
-
declare function CodeBlockTabsTrigger({
|
|
69
|
-
children,
|
|
70
|
-
...props
|
|
71
|
-
}: ComponentProps<typeof TabsTrigger>): react_jsx_runtime0.JSX.Element;
|
|
72
|
-
declare function CodeBlockTab(props: ComponentProps<typeof TabsContent>): react_jsx_runtime0.JSX.Element;
|
|
13
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
73
14
|
//#endregion
|
|
74
15
|
//#region src/components/external-link.d.ts
|
|
75
16
|
interface ExternalLinkProps extends ComponentProps<typeof FumadocsLink> {
|
|
@@ -96,12 +37,9 @@ type HeaderProps = {
|
|
|
96
37
|
logo?: ReactNode;
|
|
97
38
|
logoHref?: string;
|
|
98
39
|
links?: HeaderLink[];
|
|
99
|
-
actions?: ReactNode[];
|
|
100
|
-
/** Rendered
|
|
101
|
-
|
|
102
|
-
/** Rendered centered at the very bottom of the mobile menu (e.g. social icons). */
|
|
103
|
-
menuSocialActions?: ReactNode[];
|
|
104
|
-
/** Optional trigger rendered left of the logo on mobile (e.g. sidebar toggle). */
|
|
40
|
+
actions?: ReactNode[]; /** Rendered in the mobile menu "Appearance" row (label left, content right). */
|
|
41
|
+
menuActions?: ReactNode[]; /** Rendered centered at the very bottom of the mobile menu (e.g. social icons). */
|
|
42
|
+
menuSocialActions?: ReactNode[]; /** Optional trigger rendered left of the logo on mobile (e.g. sidebar toggle). */
|
|
105
43
|
sidebarTrigger?: ReactNode;
|
|
106
44
|
};
|
|
107
45
|
declare function Header({
|
|
@@ -112,7 +50,7 @@ declare function Header({
|
|
|
112
50
|
menuActions,
|
|
113
51
|
menuSocialActions,
|
|
114
52
|
sidebarTrigger
|
|
115
|
-
}: HeaderProps): react_jsx_runtime0.JSX.Element;
|
|
53
|
+
}: HeaderProps): _$react_jsx_runtime0.JSX.Element;
|
|
116
54
|
//#endregion
|
|
117
55
|
//#region src/components/heading.d.ts
|
|
118
56
|
type Types = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
@@ -124,6 +62,6 @@ declare function Heading<T extends Types = "h1">({
|
|
|
124
62
|
className,
|
|
125
63
|
children,
|
|
126
64
|
...props
|
|
127
|
-
}: HeadingProps<T>): react_jsx_runtime0.JSX.Element;
|
|
65
|
+
}: HeadingProps<T>): _$react_jsx_runtime0.JSX.Element;
|
|
128
66
|
//#endregion
|
|
129
67
|
export { AIActions, CodeBlock, CodeBlockProps, CodeBlockTab, CodeBlockTabs, CodeBlockTabsList, CodeBlockTabsTrigger, ExternalLink, ExternalLinkProps, Header, HeaderLink, HeaderProps, Heading, Pre };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import{r as e}from"../url-CZOXzYIy.mjs";import{a as t,c as n,i as r,n as i,o as a,r as o,s,t as c}from"../heading-CvyTA_oR.mjs";import{buttonVariants as l}from"fumadocs-ui/components/ui/button";import{Popover as u,PopoverContent as d,PopoverTrigger as f}from"fumadocs-ui/components/ui/popover";import{useCopyButton as p}from"fumadocs-ui/utils/use-copy-button";import{Check as m,ChevronDown as h,Copy as g,ExternalLinkIcon as _,Menu as v,MessageCircleIcon as y,X as b}from"lucide-react";import{Fragment as x,useEffect as S,useMemo as C,useState as w}from"react";import{jsx as T,jsxs as E}from"react/jsx-runtime";import D from"fumadocs-core/link";import{usePathname as O}from"next/navigation";const k=new Map;function A({markdownUrl:t,githubUrl:n}){let[r,i]=w(!1),[a,o]=w(null);S(()=>{o(window.location.origin)},[]);let[s,c]=p(async()=>{let e=k.get(t);if(e)return navigator.clipboard.writeText(e);i(!0);try{await navigator.clipboard.write([new ClipboardItem({"text/plain":fetch(t).then(async e=>{if(!e.ok)throw Error(`Failed to fetch markdown: ${e.statusText}`);let n=await e.text();return k.set(t,n),n})})])}catch(e){console.error(e)}finally{i(!1)}}),v=C(()=>{if(!a)return[];let e=`Read ${new URL(t,a)}, I want to ask questions about it.`;return[{title:`Open in GitHub`,href:n,icon:E(`svg`,{fill:`currentColor`,role:`img`,viewBox:`0 0 24 24`,className:`size-4`,children:[T(`title`,{children:`GitHub`}),T(`path`,{d:`M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12`})]})},{title:`Open in Scira AI`,href:`https://scira.ai/?${new URLSearchParams({q:e})}`,icon:E(`svg`,{width:`910`,height:`934`,viewBox:`0 0 910 934`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[T(`title`,{children:`Scira AI`}),T(`path`,{d:`M647.664 197.775C569.13 189.049 525.5 145.419 516.774 66.8849C508.048 145.419 464.418 189.049 385.884 197.775C464.418 206.501 508.048 250.131 516.774 328.665C525.5 250.131 569.13 206.501 647.664 197.775Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),T(`path`,{d:`M516.774 304.217C510.299 275.491 498.208 252.087 480.335 234.214C462.462 216.341 439.058 204.251 410.333 197.775C439.059 191.3 462.462 179.209 480.335 161.336C498.208 143.463 510.299 120.06 516.774 91.334C523.25 120.059 535.34 143.463 553.213 161.336C571.086 179.209 594.49 191.3 623.216 197.775C594.49 204.251 571.086 216.341 553.213 234.214C535.34 252.087 523.25 275.491 516.774 304.217Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),T(`path`,{d:`M857.5 508.116C763.259 497.644 710.903 445.288 700.432 351.047C689.961 445.288 637.605 497.644 543.364 508.116C637.605 518.587 689.961 570.943 700.432 665.184C710.903 570.943 763.259 518.587 857.5 508.116Z`,stroke:`currentColor`,strokeWidth:`20`,strokeLinejoin:`round`}),T(`path`,{d:`M700.432 615.957C691.848 589.05 678.575 566.357 660.383 548.165C642.191 529.973 619.499 516.7 592.593 508.116C619.499 499.533 642.191 486.258 660.383 468.066C678.575 449.874 691.848 427.181 700.432 400.274C709.015 427.181 722.289 449.874 740.481 468.066C758.673 486.258 781.365 499.533 808.271 508.116C781.365 516.7 758.673 529.973 740.481 548.165C722.289 566.357 709.015 589.05 700.432 615.957Z`,stroke:`currentColor`,strokeWidth:`20`,strokeLinejoin:`round`}),T(`path`,{d:`M889.949 121.237C831.049 114.692 798.326 81.9698 791.782 23.0692C785.237 81.9698 752.515 114.692 693.614 121.237C752.515 127.781 785.237 160.504 791.782 219.404C798.326 160.504 831.049 127.781 889.949 121.237Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),T(`path`,{d:`M791.782 196.795C786.697 176.937 777.869 160.567 765.16 147.858C752.452 135.15 736.082 126.322 716.226 121.237C736.082 116.152 752.452 107.324 765.16 94.6152C777.869 81.9065 786.697 65.5368 791.782 45.6797C796.867 65.5367 805.695 81.9066 818.403 94.6152C831.112 107.324 847.481 116.152 867.338 121.237C847.481 126.322 831.112 135.15 818.403 147.858C805.694 160.567 796.867 176.937 791.782 196.795Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`})]})},{title:`Open in ChatGPT`,href:`https://chatgpt.com/?${new URLSearchParams({hints:`search`,q:e})}`,icon:E(`svg`,{role:`img`,viewBox:`0 0 24 24`,fill:`currentColor`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[T(`title`,{children:`OpenAI`}),T(`path`,{d:`M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z`})]})},{title:`Open in Claude`,href:`https://claude.ai/new?${new URLSearchParams({q:e})}`,icon:E(`svg`,{fill:`currentColor`,role:`img`,viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[T(`title`,{children:`Anthropic`}),T(`path`,{d:`M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z`})]})},{title:`Open in T3 Chat`,href:`https://t3.chat/new?${new URLSearchParams({q:e})}`,icon:T(y,{className:`size-4`})}]},[n,t,a]);return E(`div`,{className:`flex items-center gap-2`,children:[E(`button`,{type:`button`,disabled:r,className:e(l({color:`secondary`,size:`sm`,className:`gap-2 [&_svg]:size-3.5 [&_svg]:text-fd-muted-foreground`})),onClick:c,children:[T(s?m:g,{}),`Copy Markdown`]}),E(u,{children:[E(f,{className:e(l({color:`secondary`,size:`sm`,className:`gap-2`})),children:[`Open`,T(h,{className:`size-3.5 text-fd-muted-foreground`})]}),T(d,{className:`flex flex-col p-1`,children:v.map(e=>E(`a`,{href:e.href,rel:`noreferrer noopener`,target:`_blank`,className:`text-sm p-2 rounded-lg inline-flex items-center gap-2 hover:text-fd-accent-foreground hover:bg-fd-accent [&_svg]:size-4`,children:[e.icon,e.title,T(_,{className:`text-fd-muted-foreground size-3.5 ms-auto`})]},e.href))})]})]})}function j({logo:t,logoHref:n=`/`,links:r,actions:a,menuActions:o,menuSocialActions:s,sidebarTrigger:c}){let[l,u]=w(!1),[d,f]=w(!1),p=O();S(()=>{let e=()=>u(window.scrollY>0);return window.addEventListener(`scroll`,e,{passive:!0}),e(),()=>window.removeEventListener(`scroll`,e)},[]),S(()=>{f(!1)},[p]),S(()=>(document.body.style.overflow=d?`hidden`:``,()=>{document.body.style.overflow=``}),[d]);let m=r&&r.length>0,h=o&&o.length>0,g=s&&s.length>0,_=m||h||g,y=a&&a.length>0||_;return E(`header`,{className:e(`fixed top-0 left-0 right-0 z-50`,`h-(--fd-nav-height,80px)`,`border-b transition-[background-color,border-color,backdrop-filter] duration-300`,d&&`max-md:border-b-transparent`,l&&!d?`border-fd-border/60 bg-(--background)/85 backdrop-blur-xl`:`border-fd-border/60 bg-background`),children:[E(`div`,{className:`flex items-center h-full px-4 max-w-(--fd-layout-width) mx-auto w-full`,children:[E(`div`,{className:`flex items-center gap-2 md:gap-6`,children:[c&&T(`div`,{className:`md:hidden`,children:c}),t&&T(D,{href:n,className:`flex items-center rounded-sm outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,children:t}),m&&T(`nav`,{className:`hidden md:flex items-center gap-0.5`,children:r.map(t=>{let n=t.url.startsWith(`/`),r=t.activeMatch??t.url,a=n?p===r||p.startsWith(`${r}/`):!1;return T(i,{href:t.url,className:e(`px-3 py-1.5 text-[1rem] font-normal rounded-md transition-colors duration-150`,`outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,a?`text-fd-primary`:`text-fd-foreground hover:text-fd-primary`),children:t.text},t.url)})})]}),y&&E(`div`,{className:`flex-1 flex items-center justify-end gap-2 md:gap-4`,children:[a?.map((e,t)=>T(x,{children:e},t)),_&&T(`button`,{type:`button`,className:`md:hidden flex items-center justify-center h-8 w-8 rounded-md text-fd-foreground hover:text-fd-foreground transition-colors outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,onClick:()=>f(e=>!e),"aria-label":`Toggle menu`,"aria-expanded":d,children:T(d?b:v,{className:`h-5 w-5`})})]})]}),d&&E(`div`,{className:`md:hidden fixed inset-0 z-40 bg-fd-background flex flex-col px-4 py-6`,style:{top:`var(--fd-nav-height, 80px)`},children:[T(`div`,{className:`flex-1 flex flex-col`,children:m&&r.map(t=>{let n=t.url.startsWith(`/`),r=t.activeMatch??t.url,a=n?p===r||p.startsWith(r+`/`):!1;return T(i,{href:t.url,className:e(`px-3 py-3 text-[1.125rem] font-normal rounded-md transition-colors duration-150 w-full`,`outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,a?`text-fd-primary`:`text-fd-foreground hover:text-fd-primary`),children:t.text},t.url)})}),h&&E(`div`,{className:`flex items-center justify-between py-4 border-t border-fd-border`,children:[T(`span`,{className:`text-sm font-medium text-fd-foreground`,children:`Appearance`}),T(`div`,{className:`flex items-center gap-2`,children:o.map((e,t)=>T(`div`,{children:e},t))})]}),g&&T(`div`,{className:`py-4 flex items-center justify-center gap-4`,children:s.map((e,t)=>T(`div`,{children:e},t))})]})]})}export{A as AIActions,o as CodeBlock,r as CodeBlockTab,t as CodeBlockTabs,a as CodeBlockTabsList,s as CodeBlockTabsTrigger,i as ExternalLink,j as Header,c as Heading,n as Pre};
|
|
2
|
+
import{r as e}from"../url-ZsLGjed4.mjs";import{a as t,c as n,i as r,n as i,o as a,r as o,s,t as c}from"../heading-csBrdYqs.mjs";import{buttonVariants as l}from"fumadocs-ui/components/ui/button";import{Popover as u,PopoverContent as d,PopoverTrigger as f}from"fumadocs-ui/components/ui/popover";import{useCopyButton as p}from"fumadocs-ui/utils/use-copy-button";import{Check as m,ChevronDown as h,Copy as g,ExternalLinkIcon as _,Menu as v,MessageCircleIcon as y,X as b}from"lucide-react";import{Fragment as x,useEffect as S,useMemo as C,useState as w}from"react";import{jsx as T,jsxs as E}from"react/jsx-runtime";import D from"fumadocs-core/link";import{usePathname as O}from"next/navigation.js";const k=new Map;function A({markdownUrl:t,githubUrl:n}){let[r,i]=w(!1),[a,o]=w(null);S(()=>{o(window.location.origin)},[]);let[s,c]=p(async()=>{let e=k.get(t);if(e)return navigator.clipboard.writeText(e);i(!0);try{await navigator.clipboard.write([new ClipboardItem({"text/plain":fetch(t).then(async e=>{if(!e.ok)throw Error(`Failed to fetch markdown: ${e.statusText}`);let n=await e.text();return k.set(t,n),n})})])}catch(e){console.error(e)}finally{i(!1)}}),v=C(()=>{if(!a)return[];let e=`Read ${new URL(t,a)}, I want to ask questions about it.`;return[{title:`Open in GitHub`,href:n,icon:E(`svg`,{fill:`currentColor`,role:`img`,viewBox:`0 0 24 24`,className:`size-4`,children:[T(`title`,{children:`GitHub`}),T(`path`,{d:`M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12`})]})},{title:`Open in Scira AI`,href:`https://scira.ai/?${new URLSearchParams({q:e})}`,icon:E(`svg`,{width:`910`,height:`934`,viewBox:`0 0 910 934`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[T(`title`,{children:`Scira AI`}),T(`path`,{d:`M647.664 197.775C569.13 189.049 525.5 145.419 516.774 66.8849C508.048 145.419 464.418 189.049 385.884 197.775C464.418 206.501 508.048 250.131 516.774 328.665C525.5 250.131 569.13 206.501 647.664 197.775Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),T(`path`,{d:`M516.774 304.217C510.299 275.491 498.208 252.087 480.335 234.214C462.462 216.341 439.058 204.251 410.333 197.775C439.059 191.3 462.462 179.209 480.335 161.336C498.208 143.463 510.299 120.06 516.774 91.334C523.25 120.059 535.34 143.463 553.213 161.336C571.086 179.209 594.49 191.3 623.216 197.775C594.49 204.251 571.086 216.341 553.213 234.214C535.34 252.087 523.25 275.491 516.774 304.217Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),T(`path`,{d:`M857.5 508.116C763.259 497.644 710.903 445.288 700.432 351.047C689.961 445.288 637.605 497.644 543.364 508.116C637.605 518.587 689.961 570.943 700.432 665.184C710.903 570.943 763.259 518.587 857.5 508.116Z`,stroke:`currentColor`,strokeWidth:`20`,strokeLinejoin:`round`}),T(`path`,{d:`M700.432 615.957C691.848 589.05 678.575 566.357 660.383 548.165C642.191 529.973 619.499 516.7 592.593 508.116C619.499 499.533 642.191 486.258 660.383 468.066C678.575 449.874 691.848 427.181 700.432 400.274C709.015 427.181 722.289 449.874 740.481 468.066C758.673 486.258 781.365 499.533 808.271 508.116C781.365 516.7 758.673 529.973 740.481 548.165C722.289 566.357 709.015 589.05 700.432 615.957Z`,stroke:`currentColor`,strokeWidth:`20`,strokeLinejoin:`round`}),T(`path`,{d:`M889.949 121.237C831.049 114.692 798.326 81.9698 791.782 23.0692C785.237 81.9698 752.515 114.692 693.614 121.237C752.515 127.781 785.237 160.504 791.782 219.404C798.326 160.504 831.049 127.781 889.949 121.237Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`}),T(`path`,{d:`M791.782 196.795C786.697 176.937 777.869 160.567 765.16 147.858C752.452 135.15 736.082 126.322 716.226 121.237C736.082 116.152 752.452 107.324 765.16 94.6152C777.869 81.9065 786.697 65.5368 791.782 45.6797C796.867 65.5367 805.695 81.9066 818.403 94.6152C831.112 107.324 847.481 116.152 867.338 121.237C847.481 126.322 831.112 135.15 818.403 147.858C805.694 160.567 796.867 176.937 791.782 196.795Z`,fill:`currentColor`,stroke:`currentColor`,strokeWidth:`8`,strokeLinejoin:`round`})]})},{title:`Open in ChatGPT`,href:`https://chatgpt.com/?${new URLSearchParams({hints:`search`,q:e})}`,icon:E(`svg`,{role:`img`,viewBox:`0 0 24 24`,fill:`currentColor`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[T(`title`,{children:`OpenAI`}),T(`path`,{d:`M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z`})]})},{title:`Open in Claude`,href:`https://claude.ai/new?${new URLSearchParams({q:e})}`,icon:E(`svg`,{fill:`currentColor`,role:`img`,viewBox:`0 0 24 24`,xmlns:`http://www.w3.org/2000/svg`,className:`size-4`,children:[T(`title`,{children:`Anthropic`}),T(`path`,{d:`M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z`})]})},{title:`Open in T3 Chat`,href:`https://t3.chat/new?${new URLSearchParams({q:e})}`,icon:T(y,{className:`size-4`})}]},[n,t,a]);return E(`div`,{className:`flex items-center gap-2`,children:[E(`button`,{type:`button`,disabled:r,className:e(l({color:`secondary`,size:`sm`,className:`gap-2 [&_svg]:size-3.5 [&_svg]:text-fd-muted-foreground`})),onClick:c,children:[T(s?m:g,{}),`Copy Markdown`]}),E(u,{children:[E(f,{className:e(l({color:`secondary`,size:`sm`,className:`gap-2`})),children:[`Open`,T(h,{className:`size-3.5 text-fd-muted-foreground`})]}),T(d,{className:`flex flex-col p-1`,children:v.map(e=>E(`a`,{href:e.href,rel:`noreferrer noopener`,target:`_blank`,className:`text-sm p-2 rounded-lg inline-flex items-center gap-2 hover:text-fd-accent-foreground hover:bg-fd-accent [&_svg]:size-4`,children:[e.icon,e.title,T(_,{className:`text-fd-muted-foreground size-3.5 ms-auto`})]},e.href))})]})]})}function j({logo:t,logoHref:n=`/`,links:r,actions:a,menuActions:o,menuSocialActions:s,sidebarTrigger:c}){let[l,u]=w(!1),[d,f]=w(!1),p=O();S(()=>{let e=()=>u(window.scrollY>0);return window.addEventListener(`scroll`,e,{passive:!0}),e(),()=>window.removeEventListener(`scroll`,e)},[]),S(()=>{f(!1)},[p]),S(()=>(document.body.style.overflow=d?`hidden`:``,()=>{document.body.style.overflow=``}),[d]);let m=r&&r.length>0,h=o&&o.length>0,g=s&&s.length>0,_=m||h||g,y=a&&a.length>0||_;return E(`header`,{className:e(`fixed top-0 left-0 right-0 z-50`,`h-(--fd-nav-height,80px)`,`border-b transition-[background-color,border-color,backdrop-filter] duration-300`,d&&`max-md:border-b-transparent`,l&&!d?`border-fd-border/60 bg-(--background)/85 backdrop-blur-xl`:`border-fd-border/60 bg-background`),children:[E(`div`,{className:`flex items-center h-full px-4 max-w-(--fd-layout-width) mx-auto w-full`,children:[E(`div`,{className:`flex items-center gap-2 md:gap-6`,children:[c&&T(`div`,{className:`md:hidden`,children:c}),t&&T(D,{href:n,className:`flex items-center rounded-sm outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,children:t}),m&&T(`nav`,{className:`hidden md:flex items-center gap-0.5`,children:r.map(t=>{let n=t.url.startsWith(`/`),r=t.activeMatch??t.url,a=n?p===r||p.startsWith(`${r}/`):!1;return T(i,{href:t.url,className:e(`px-3 py-1.5 text-[1rem] font-normal rounded-md transition-colors duration-150`,`outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,a?`text-fd-primary`:`text-fd-foreground hover:text-fd-primary`),children:t.text},t.url)})})]}),y&&E(`div`,{className:`flex-1 flex items-center justify-end gap-2 md:gap-4`,children:[a?.map((e,t)=>T(x,{children:e},t)),_&&T(`button`,{type:`button`,className:`md:hidden flex items-center justify-center h-8 w-8 rounded-md text-fd-foreground hover:text-fd-foreground transition-colors outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,onClick:()=>f(e=>!e),"aria-label":`Toggle menu`,"aria-expanded":d,children:T(d?b:v,{className:`h-5 w-5`})})]})]}),d&&E(`div`,{className:`md:hidden fixed inset-0 z-40 bg-fd-background flex flex-col px-4 py-6`,style:{top:`var(--fd-nav-height, 80px)`},children:[T(`div`,{className:`flex-1 flex flex-col`,children:m&&r.map(t=>{let n=t.url.startsWith(`/`),r=t.activeMatch??t.url,a=n?p===r||p.startsWith(r+`/`):!1;return T(i,{href:t.url,className:e(`px-3 py-3 text-[1.125rem] font-normal rounded-md transition-colors duration-150 w-full`,`outline-none focus-visible:ring-2 focus-visible:ring-fd-ring`,a?`text-fd-primary`:`text-fd-foreground hover:text-fd-primary`),children:t.text},t.url)})}),h&&E(`div`,{className:`flex items-center justify-between py-4 border-t border-fd-border`,children:[T(`span`,{className:`text-sm font-medium text-fd-foreground`,children:`Appearance`}),T(`div`,{className:`flex items-center gap-2`,children:o.map((e,t)=>T(`div`,{children:e},t))})]}),g&&T(`div`,{className:`py-4 flex items-center justify-center gap-4`,children:s.map((e,t)=>T(`div`,{children:e},t))})]})]})}export{A as AIActions,o as CodeBlock,r as CodeBlockTab,t as CodeBlockTabs,a as CodeBlockTabsList,s as CodeBlockTabsTrigger,i as ExternalLink,j as Header,c as Heading,n as Pre};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},s=(n,r,a)=>(a=n==null?{}:e(i(n)),o(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));const c=require(`./url-
|
|
2
|
+
var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},s=(n,r,a)=>(a=n==null?{}:e(i(n)),o(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));const c=require(`./url-B-x2rAvR.cjs`);let l=require(`fumadocs-ui/components/ui/button`),u=require(`fumadocs-ui/utils/use-copy-button`),d=require(`lucide-react`),f=require(`react`),p=require(`react/jsx-runtime`),m=require(`@fumadocs/ui/merge-refs`),h=require(`fumadocs-ui/components/tabs`),g=require(`fumadocs-core/link`);g=s(g);const _=(0,f.createContext)(null);function v(e){let t=e.trim();return/^<svg[\s\S]*<\/svg>$/.test(t)?t.replace(/<script[\s\S]*?>[\s\S]*?<\/script>/gi,``).replace(/<foreignObject[\s\S]*?>[\s\S]*?<\/foreignObject>/gi,``).replace(/\son\w+\s*=\s*"[^"]*"/gi,``).replace(/\son\w+\s*=\s*'[^']*'/gi,``).replace(/\son\w+\s*=\s*[^\s>]+/gi,``).replace(/\s(xlink:href|href)\s*=\s*"\s*javascript:[^"]*"/gi,``).replace(/\s(xlink:href|href)\s*=\s*'\s*javascript:[^']*'/gi,``):``}function y(e){return(0,p.jsx)(`pre`,{...e,className:c.r(`min-w-full w-max *:flex *:flex-col`,e.className),children:e.children})}function b({ref:e,title:t,allowCopy:n=!0,keepBackground:r=!1,icon:i,viewportProps:a={},children:o,Actions:s=e=>(0,p.jsx)(`div`,{...e,className:c.r(`empty:hidden`,e.className)}),...l}){let u=(0,f.use)(_)!==null,d=(0,f.useRef)(null);return(0,p.jsxs)(`figure`,{ref:e,dir:`ltr`,...l,tabIndex:-1,className:c.r(u?`bg-fd-secondary -mx-px -mb-px last:rounded-b-sm`:`my-4 bg-fd-card rounded-sm`,r&&`bg-(--shiki-light-bg) dark:bg-(--shiki-dark-bg)`,`shiki relative border shadow-sm not-prose overflow-hidden text-sm`,l.className),children:[t?(0,p.jsxs)(`div`,{className:`flex text-fd-muted-foreground items-center gap-2 h-9.5 border-b px-4`,children:[typeof i==`string`?(0,p.jsx)(`div`,{className:`[&_svg]:size-3.5`,dangerouslySetInnerHTML:{__html:v(i)}}):i,(0,p.jsx)(`figcaption`,{className:`flex-1 truncate`,children:t}),s({className:`-me-2`,children:n&&(0,p.jsx)(x,{containerRef:d})})]}):s({className:`absolute top-3 right-2 z-2 backdrop-blur-lg rounded-lg text-fd-muted-foreground`,children:n&&(0,p.jsx)(x,{containerRef:d})}),(0,p.jsx)(`section`,{ref:d,...a,className:c.r(`text-[0.8125rem] py-3.5 overflow-auto max-h-150 fd-scroll-container focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-fd-ring`,a.className),style:{"--padding-right":t?void 0:`calc(var(--spacing) * 8)`,counterSet:l[`data-line-numbers`]?`line ${Number(l[`data-line-numbers-start`]??1)-1}`:void 0,...a.style},children:o})]})}function x({className:e,containerRef:t,...n}){let[r,i]=(0,u.useCopyButton)(()=>{let e=t.current?.getElementsByTagName(`pre`).item(0);if(!e)return;let n=e.cloneNode(!0);n.querySelectorAll(`.nd-copy-ignore`).forEach(e=>{e.replaceWith(`
|
|
3
3
|
`)}),navigator.clipboard.writeText(n.textContent??``)});return(0,p.jsx)(`button`,{type:`button`,"data-checked":r||void 0,className:c.r((0,l.buttonVariants)({className:`hover:text-fd-accent-foreground data-checked:text-fd-accent-foreground`,size:`icon-xs`}),e),"aria-label":r?`Copied Text`:`Copy Text`,onClick:i,...n,children:r?(0,p.jsx)(d.Check,{}):(0,p.jsx)(d.Copy,{})})}function S({ref:e,...t}){let n=(0,f.useRef)(null),r=(0,f.use)(_)!==null;return(0,p.jsx)(h.Tabs,{ref:(0,m.mergeRefs)(n,e),...t,className:c.r(`bg-fd-card rounded-sm border`,!r&&`my-4`,t.className),children:(0,p.jsx)(_,{value:(0,f.useMemo)(()=>({containerRef:n,nested:r}),[r]),children:t.children})})}function C(e){return(0,p.jsx)(h.TabsList,{...e,className:c.r(`flex flex-row px-2 overflow-x-auto text-fd-muted-foreground`,e.className),children:e.children})}function w({children:e,...t}){return(0,p.jsx)(h.TabsTrigger,{...t,className:c.r(`inline-flex text-sm font-medium text-nowrap items-center transition-colors gap-2 px-2 py-1.5 hover:text-fd-accent-foreground data-[state=active]:text-fd-primary [&_svg]:size-3.5`,t.className),children:e})}function T(e){return(0,p.jsx)(h.TabsContent,{...e})}const E=({href:e,children:t,...n})=>{let r=c.t(e);return(0,p.jsx)(g.default,{href:e,"data-external-link":r||void 0,...n,children:t})};function D({as:e,className:t,children:n,...r}){let i=e||`h1`;return r.id?(0,p.jsxs)(i,{className:c.r(`group relative scroll-m-32 font-bold tracking-tight`,t),"data-arkenv-heading":!0,...r,children:[(0,p.jsx)(`div`,{className:`absolute top-1/2 -translate-y-1/2 hidden md:flex items-center justify-end pr-2 opacity-0 group-hover:opacity-100 w-7`,"data-arkenv-heading-icon":!0,children:(0,p.jsx)(`a`,{href:`#${r.id}`,className:`p-1 rounded-md text-fd-primary focus:outline-none opacity-100 hover:opacity-100 hover:text-fd-primary active:ring-2 active:ring-fd-primary`,"aria-label":`Link to section`,"data-no-underline":!0,"data-arkenv-heading-link":!0,children:(0,p.jsx)(d.LinkIcon,{className:`size-4`})})}),(0,p.jsx)(`a`,{href:`#${r.id}`,className:`inline font-inherit text-inherit no-underline opacity-100 hover:opacity-100 hover:text-inherit`,"data-no-underline":!0,"data-arkenv-heading-link":!0,children:n})]}):(0,p.jsx)(i,{className:c.r(`font-bold tracking-tight`,t),...r,children:n})}Object.defineProperty(exports,`a`,{enumerable:!0,get:function(){return S}}),Object.defineProperty(exports,`c`,{enumerable:!0,get:function(){return y}}),Object.defineProperty(exports,`i`,{enumerable:!0,get:function(){return T}}),Object.defineProperty(exports,`l`,{enumerable:!0,get:function(){return s}}),Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return E}}),Object.defineProperty(exports,`o`,{enumerable:!0,get:function(){return C}}),Object.defineProperty(exports,`r`,{enumerable:!0,get:function(){return b}}),Object.defineProperty(exports,`s`,{enumerable:!0,get:function(){return w}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return D}});
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import{r as e,t}from"./url-
|
|
2
|
+
import{r as e,t}from"./url-ZsLGjed4.mjs";import{buttonVariants as n}from"fumadocs-ui/components/ui/button";import{useCopyButton as r}from"fumadocs-ui/utils/use-copy-button";import{Check as i,Copy as a,LinkIcon as o}from"lucide-react";import{createContext as s,use as c,useMemo as l,useRef as u}from"react";import{jsx as d,jsxs as f}from"react/jsx-runtime";import{mergeRefs as p}from"@fumadocs/ui/merge-refs";import{Tabs as m,TabsContent as h,TabsList as g,TabsTrigger as _}from"fumadocs-ui/components/tabs";import v from"fumadocs-core/link";const y=s(null);function b(e){let t=e.trim();return/^<svg[\s\S]*<\/svg>$/.test(t)?t.replace(/<script[\s\S]*?>[\s\S]*?<\/script>/gi,``).replace(/<foreignObject[\s\S]*?>[\s\S]*?<\/foreignObject>/gi,``).replace(/\son\w+\s*=\s*"[^"]*"/gi,``).replace(/\son\w+\s*=\s*'[^']*'/gi,``).replace(/\son\w+\s*=\s*[^\s>]+/gi,``).replace(/\s(xlink:href|href)\s*=\s*"\s*javascript:[^"]*"/gi,``).replace(/\s(xlink:href|href)\s*=\s*'\s*javascript:[^']*'/gi,``):``}function x(t){return d(`pre`,{...t,className:e(`min-w-full w-max *:flex *:flex-col`,t.className),children:t.children})}function S({ref:t,title:n,allowCopy:r=!0,keepBackground:i=!1,icon:a,viewportProps:o={},children:s,Actions:l=t=>d(`div`,{...t,className:e(`empty:hidden`,t.className)}),...p}){let m=c(y)!==null,h=u(null);return f(`figure`,{ref:t,dir:`ltr`,...p,tabIndex:-1,className:e(m?`bg-fd-secondary -mx-px -mb-px last:rounded-b-sm`:`my-4 bg-fd-card rounded-sm`,i&&`bg-(--shiki-light-bg) dark:bg-(--shiki-dark-bg)`,`shiki relative border shadow-sm not-prose overflow-hidden text-sm`,p.className),children:[n?f(`div`,{className:`flex text-fd-muted-foreground items-center gap-2 h-9.5 border-b px-4`,children:[typeof a==`string`?d(`div`,{className:`[&_svg]:size-3.5`,dangerouslySetInnerHTML:{__html:b(a)}}):a,d(`figcaption`,{className:`flex-1 truncate`,children:n}),l({className:`-me-2`,children:r&&d(C,{containerRef:h})})]}):l({className:`absolute top-3 right-2 z-2 backdrop-blur-lg rounded-lg text-fd-muted-foreground`,children:r&&d(C,{containerRef:h})}),d(`section`,{ref:h,...o,className:e(`text-[0.8125rem] py-3.5 overflow-auto max-h-150 fd-scroll-container focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-fd-ring`,o.className),style:{"--padding-right":n?void 0:`calc(var(--spacing) * 8)`,counterSet:p[`data-line-numbers`]?`line ${Number(p[`data-line-numbers-start`]??1)-1}`:void 0,...o.style},children:s})]})}function C({className:t,containerRef:o,...s}){let[c,l]=r(()=>{let e=o.current?.getElementsByTagName(`pre`).item(0);if(!e)return;let t=e.cloneNode(!0);t.querySelectorAll(`.nd-copy-ignore`).forEach(e=>{e.replaceWith(`
|
|
3
3
|
`)}),navigator.clipboard.writeText(t.textContent??``)});return d(`button`,{type:`button`,"data-checked":c||void 0,className:e(n({className:`hover:text-fd-accent-foreground data-checked:text-fd-accent-foreground`,size:`icon-xs`}),t),"aria-label":c?`Copied Text`:`Copy Text`,onClick:l,...s,children:d(c?i:a,{})})}function w({ref:t,...n}){let r=u(null),i=c(y)!==null;return d(m,{ref:p(r,t),...n,className:e(`bg-fd-card rounded-sm border`,!i&&`my-4`,n.className),children:d(y,{value:l(()=>({containerRef:r,nested:i}),[i]),children:n.children})})}function T(t){return d(g,{...t,className:e(`flex flex-row px-2 overflow-x-auto text-fd-muted-foreground`,t.className),children:t.children})}function E({children:t,...n}){return d(_,{...n,className:e(`inline-flex text-sm font-medium text-nowrap items-center transition-colors gap-2 px-2 py-1.5 hover:text-fd-accent-foreground data-[state=active]:text-fd-primary [&_svg]:size-3.5`,n.className),children:t})}function D(e){return d(h,{...e})}const O=({href:e,children:n,...r})=>{let i=t(e);return d(v,{href:e,"data-external-link":i||void 0,...r,children:n})};function k({as:t,className:n,children:r,...i}){let a=t||`h1`;return i.id?f(a,{className:e(`group relative scroll-m-32 font-bold tracking-tight`,n),"data-arkenv-heading":!0,...i,children:[d(`div`,{className:`absolute top-1/2 -translate-y-1/2 hidden md:flex items-center justify-end pr-2 opacity-0 group-hover:opacity-100 w-7`,"data-arkenv-heading-icon":!0,children:d(`a`,{href:`#${i.id}`,className:`p-1 rounded-md text-fd-primary focus:outline-none opacity-100 hover:opacity-100 hover:text-fd-primary active:ring-2 active:ring-fd-primary`,"aria-label":`Link to section`,"data-no-underline":!0,"data-arkenv-heading-link":!0,children:d(o,{className:`size-4`})})}),d(`a`,{href:`#${i.id}`,className:`inline font-inherit text-inherit no-underline opacity-100 hover:opacity-100 hover:text-inherit`,"data-no-underline":!0,"data-arkenv-heading-link":!0,children:r})]}):d(a,{className:e(`font-bold tracking-tight`,n),...i,children:r})}export{w as a,x as c,D as i,O as n,T as o,S as r,E as s,k as t};
|
package/dist/mdx/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require(`../heading-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`../heading-C5UUAy6_.cjs`);let t=require(`react/jsx-runtime`),n=require(`fumadocs-ui/components/tabs`),r=require(`fumadocs-ui/components/accordion`),i=require(`fumadocs-ui/components/files`),a=require(`fumadocs-ui/components/image-zoom`),o=require(`fumadocs-ui/components/steps`),s=require(`fumadocs-ui/mdx`);s=e.l(s);const c={...s.default,a:e.n,img:e=>(0,t.jsx)(a.ImageZoom,{...e}),Step:o.Step,Steps:o.Steps,File:i.File,Folder:i.Folder,Files:i.Files,Accordion:r.Accordion,Accordions:r.Accordions,Tab:n.Tab,Tabs:n.Tabs,pre:({ref:n,...r})=>(0,t.jsx)(e.r,{...r,children:(0,t.jsx)(e.c,{children:r.children})}),CodeBlockTabs:e.a,CodeBlockTabsList:e.o,CodeBlockTabsTrigger:e.s,CodeBlockTab:e.i,h1:n=>(0,t.jsx)(e.t,{as:`h1`,...n}),h2:n=>(0,t.jsx)(e.t,{as:`h2`,...n}),h3:n=>(0,t.jsx)(e.t,{as:`h3`,...n}),h4:n=>(0,t.jsx)(e.t,{as:`h4`,...n}),h5:n=>(0,t.jsx)(e.t,{as:`h5`,...n}),h6:n=>(0,t.jsx)(e.t,{as:`h6`,...n})};exports.arkenvComponents=c;
|
package/dist/mdx/index.d.cts
CHANGED
|
@@ -1,6 +1,47 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { a as CodeBlockTabsList, i as CodeBlockTabs, o as CodeBlockTabsTrigger, r as CodeBlockTab } from "../code-blocks-BIzdy_Fb.cjs";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
import { Tab, Tabs } from "fumadocs-ui/components/tabs";
|
|
4
|
+
import * as _$react from "react";
|
|
5
|
+
import * as _$fumadocs_ui_components_card0 from "fumadocs-ui/components/card";
|
|
6
|
+
import * as _$fumadocs_ui_components_callout0 from "fumadocs-ui/components/callout";
|
|
7
|
+
import { Accordion, Accordions } from "fumadocs-ui/components/accordion";
|
|
8
|
+
import { File, Files, Folder } from "fumadocs-ui/components/files";
|
|
9
|
+
import { Step, Steps } from "fumadocs-ui/components/steps";
|
|
2
10
|
|
|
3
11
|
//#region src/mdx/index.d.ts
|
|
4
|
-
declare const arkenvComponents:
|
|
12
|
+
declare const arkenvComponents: {
|
|
13
|
+
a: any;
|
|
14
|
+
img: (props: _$react.DetailedHTMLProps<_$react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
15
|
+
Step: typeof Step;
|
|
16
|
+
Steps: typeof Steps;
|
|
17
|
+
File: typeof File;
|
|
18
|
+
Folder: typeof Folder;
|
|
19
|
+
Files: typeof Files;
|
|
20
|
+
Accordion: typeof Accordion;
|
|
21
|
+
Accordions: typeof Accordions;
|
|
22
|
+
Tab: typeof Tab;
|
|
23
|
+
Tabs: typeof Tabs;
|
|
24
|
+
pre: ({
|
|
25
|
+
ref: _ref,
|
|
26
|
+
...props
|
|
27
|
+
}: any) => _$react_jsx_runtime0.JSX.Element;
|
|
28
|
+
CodeBlockTabs: typeof CodeBlockTabs;
|
|
29
|
+
CodeBlockTabsList: typeof CodeBlockTabsList;
|
|
30
|
+
CodeBlockTabsTrigger: typeof CodeBlockTabsTrigger;
|
|
31
|
+
CodeBlockTab: typeof CodeBlockTab;
|
|
32
|
+
h1: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
33
|
+
h2: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
34
|
+
h3: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
35
|
+
h4: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
36
|
+
h5: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
37
|
+
h6: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
38
|
+
Card: typeof _$fumadocs_ui_components_card0.Card;
|
|
39
|
+
Cards: typeof _$fumadocs_ui_components_card0.Cards;
|
|
40
|
+
table: (props: _$react.TableHTMLAttributes<HTMLTableElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
41
|
+
Callout: typeof _$fumadocs_ui_components_callout0.Callout;
|
|
42
|
+
CalloutContainer: typeof _$fumadocs_ui_components_callout0.CalloutContainer;
|
|
43
|
+
CalloutTitle: typeof _$fumadocs_ui_components_callout0.CalloutTitle;
|
|
44
|
+
CalloutDescription: typeof _$fumadocs_ui_components_callout0.CalloutDescription;
|
|
45
|
+
};
|
|
5
46
|
//#endregion
|
|
6
47
|
export { arkenvComponents };
|
package/dist/mdx/index.d.mts
CHANGED
|
@@ -1,6 +1,47 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { a as CodeBlockTabsList, i as CodeBlockTabs, o as CodeBlockTabsTrigger, r as CodeBlockTab } from "../code-blocks-84sbH-Ro.mjs";
|
|
2
|
+
import * as _$react from "react";
|
|
3
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
|
+
import { Tab, Tabs } from "fumadocs-ui/components/tabs";
|
|
5
|
+
import { Accordion, Accordions } from "fumadocs-ui/components/accordion";
|
|
6
|
+
import { File, Files, Folder } from "fumadocs-ui/components/files";
|
|
7
|
+
import { Step, Steps } from "fumadocs-ui/components/steps";
|
|
8
|
+
import * as _$fumadocs_ui_components_card0 from "fumadocs-ui/components/card";
|
|
9
|
+
import * as _$fumadocs_ui_components_callout0 from "fumadocs-ui/components/callout";
|
|
2
10
|
|
|
3
11
|
//#region src/mdx/index.d.ts
|
|
4
|
-
declare const arkenvComponents:
|
|
12
|
+
declare const arkenvComponents: {
|
|
13
|
+
a: any;
|
|
14
|
+
img: (props: _$react.DetailedHTMLProps<_$react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
15
|
+
Step: typeof Step;
|
|
16
|
+
Steps: typeof Steps;
|
|
17
|
+
File: typeof File;
|
|
18
|
+
Folder: typeof Folder;
|
|
19
|
+
Files: typeof Files;
|
|
20
|
+
Accordion: typeof Accordion;
|
|
21
|
+
Accordions: typeof Accordions;
|
|
22
|
+
Tab: typeof Tab;
|
|
23
|
+
Tabs: typeof Tabs;
|
|
24
|
+
pre: ({
|
|
25
|
+
ref: _ref,
|
|
26
|
+
...props
|
|
27
|
+
}: any) => _$react_jsx_runtime0.JSX.Element;
|
|
28
|
+
CodeBlockTabs: typeof CodeBlockTabs;
|
|
29
|
+
CodeBlockTabsList: typeof CodeBlockTabsList;
|
|
30
|
+
CodeBlockTabsTrigger: typeof CodeBlockTabsTrigger;
|
|
31
|
+
CodeBlockTab: typeof CodeBlockTab;
|
|
32
|
+
h1: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
33
|
+
h2: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
34
|
+
h3: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
35
|
+
h4: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
36
|
+
h5: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
37
|
+
h6: (props: any) => _$react_jsx_runtime0.JSX.Element;
|
|
38
|
+
Card: typeof _$fumadocs_ui_components_card0.Card;
|
|
39
|
+
Cards: typeof _$fumadocs_ui_components_card0.Cards;
|
|
40
|
+
table: (props: _$react.TableHTMLAttributes<HTMLTableElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
41
|
+
Callout: typeof _$fumadocs_ui_components_callout0.Callout;
|
|
42
|
+
CalloutContainer: typeof _$fumadocs_ui_components_callout0.CalloutContainer;
|
|
43
|
+
CalloutTitle: typeof _$fumadocs_ui_components_callout0.CalloutTitle;
|
|
44
|
+
CalloutDescription: typeof _$fumadocs_ui_components_callout0.CalloutDescription;
|
|
45
|
+
};
|
|
5
46
|
//#endregion
|
|
6
47
|
export { arkenvComponents };
|
package/dist/mdx/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import
|
|
1
|
+
import{a as e,c as t,i as n,n as r,o as i,r as a,s as o,t as s}from"../heading-csBrdYqs.mjs";import{jsx as c}from"react/jsx-runtime";import{Tab as l,Tabs as u}from"fumadocs-ui/components/tabs";import{Accordion as d,Accordions as f}from"fumadocs-ui/components/accordion";import{File as p,Files as m,Folder as h}from"fumadocs-ui/components/files";import{ImageZoom as g}from"fumadocs-ui/components/image-zoom";import{Step as _,Steps as v}from"fumadocs-ui/components/steps";import y from"fumadocs-ui/mdx";const b={...y,a:r,img:e=>c(g,{...e}),Step:_,Steps:v,File:p,Folder:h,Files:m,Accordion:d,Accordions:f,Tab:l,Tabs:u,pre:({ref:e,...n})=>c(a,{...n,children:c(t,{children:n.children})}),CodeBlockTabs:e,CodeBlockTabsList:i,CodeBlockTabsTrigger:o,CodeBlockTab:n,h1:e=>c(s,{as:`h1`,...e}),h2:e=>c(s,{as:`h2`,...e}),h3:e=>c(s,{as:`h3`,...e}),h4:e=>c(s,{as:`h4`,...e}),h5:e=>c(s,{as:`h5`,...e}),h6:e=>c(s,{as:`h6`,...e})};export{b as arkenvComponents};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require(`./heading-C5UUAy6_.cjs`);let e=require(`clsx`),t=require(`tailwind-merge`);function n(...n){return(0,t.twMerge)((0,e.clsx)(n))}function r(e){if(!e||e.startsWith(`/`)||e.startsWith(`#`))return!1;try{let t=new URL(e,`http://localhost`),n=t.hostname.toLowerCase();return n===`arkenv.js.org`||n===`www.arkenv.js.org`||n===`localhost`||n===`127.0.0.1`?!1:t.protocol===`http:`||t.protocol===`https:`}catch{return!1}}function i(e){if(!e)return e;try{let t=new URL(e,`http://localhost`),n=t.hostname.toLowerCase();return n===`arkenv.js.org`||n===`www.arkenv.js.org`?t.pathname+t.search+t.hash:e}catch{return e}}Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return i}}),Object.defineProperty(exports,`r`,{enumerable:!0,get:function(){return n}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return r}});
|
package/dist/utils/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require(`../url-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`../url-B-x2rAvR.cjs`);exports.cn=e.r,exports.isExternalUrl=e.t,exports.optimizeInternalLink=e.n;
|
package/dist/utils/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{n as e,r as t,t as n}from"../url-
|
|
1
|
+
import{n as e,r as t,t as n}from"../url-ZsLGjed4.mjs";export{t as cn,n as isExternalUrl,e as optimizeInternalLink};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkenv/fumadocs-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,33 +39,33 @@
|
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"clsx": "2.1.1",
|
|
42
|
-
"tailwind-merge": "3.
|
|
42
|
+
"tailwind-merge": "3.5.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@fumadocs/ui": "16.
|
|
46
|
-
"fumadocs-core": "16.
|
|
47
|
-
"fumadocs-ui": "16.
|
|
48
|
-
"lucide-react": "0.
|
|
45
|
+
"@fumadocs/ui": "16.5.0",
|
|
46
|
+
"fumadocs-core": "16.7.9",
|
|
47
|
+
"fumadocs-ui": "16.7.9",
|
|
48
|
+
"lucide-react": "0.577.0",
|
|
49
49
|
"next": ">=14",
|
|
50
|
-
"react": "19.2.
|
|
51
|
-
"react-dom": "19.2.
|
|
52
|
-
"tailwindcss": "4.
|
|
50
|
+
"react": "19.2.4",
|
|
51
|
+
"react-dom": "19.2.4",
|
|
52
|
+
"tailwindcss": "4.2.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@fumadocs/ui": "16.
|
|
55
|
+
"@fumadocs/ui": "16.5.0",
|
|
56
56
|
"@types/mdx": "2.0.13",
|
|
57
|
-
"@types/react": "19.2.
|
|
57
|
+
"@types/react": "19.2.14",
|
|
58
58
|
"@types/react-dom": "19.2.3",
|
|
59
|
-
"fumadocs-core": "16.
|
|
60
|
-
"fumadocs-ui": "16.
|
|
61
|
-
"lucide-react": "0.
|
|
62
|
-
"next": "16.
|
|
63
|
-
"react": "19.2.
|
|
64
|
-
"react-dom": "19.2.
|
|
65
|
-
"rimraf": "6.1.
|
|
59
|
+
"fumadocs-core": "16.7.9",
|
|
60
|
+
"fumadocs-ui": "16.7.9",
|
|
61
|
+
"lucide-react": "0.577.0",
|
|
62
|
+
"next": "16.2.2",
|
|
63
|
+
"react": "19.2.4",
|
|
64
|
+
"react-dom": "19.2.4",
|
|
65
|
+
"rimraf": "6.1.3",
|
|
66
66
|
"rollup-plugin-preserve-use-client": "3.0.1",
|
|
67
|
-
"tailwindcss": "4.
|
|
68
|
-
"tsdown": "0.
|
|
67
|
+
"tailwindcss": "4.2.2",
|
|
68
|
+
"tsdown": "0.21.7",
|
|
69
69
|
"typescript": "5.9.3"
|
|
70
70
|
},
|
|
71
71
|
"publishConfig": {
|
package/dist/url-xnMEOisP.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const e=require(`./heading-11j3HQh7.cjs`);let t=require(`clsx`),n=require(`tailwind-merge`);function r(...e){return(0,n.twMerge)((0,t.clsx)(e))}function i(e){if(!e||e.startsWith(`/`)||e.startsWith(`#`))return!1;try{let t=new URL(e,`http://localhost`),n=t.hostname.toLowerCase();return n===`arkenv.js.org`||n===`www.arkenv.js.org`||n===`localhost`||n===`127.0.0.1`?!1:t.protocol===`http:`||t.protocol===`https:`}catch{return!1}}function a(e){if(!e)return e;try{let t=new URL(e,`http://localhost`),n=t.hostname.toLowerCase();return n===`arkenv.js.org`||n===`www.arkenv.js.org`?t.pathname+t.search+t.hash:e}catch{return e}}Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return a}}),Object.defineProperty(exports,`r`,{enumerable:!0,get:function(){return r}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return i}});
|
|
File without changes
|