boltdocs 2.2.0 → 2.4.1
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/CHANGELOG.md +24 -0
- package/bin/boltdocs.js +2 -2
- package/dist/base-ui/index.d.mts +4 -4
- package/dist/base-ui/index.d.ts +4 -4
- package/dist/base-ui/index.js +1 -1
- package/dist/base-ui/index.mjs +1 -1
- package/dist/{cache-CRAZ55X7.mjs → cache-P6WK424C.mjs} +1 -1
- package/dist/chunk-2DI3OGHV.mjs +1 -0
- package/dist/chunk-2Z5T6EAU.mjs +1 -0
- package/dist/chunk-64AJ5QLT.mjs +1 -0
- package/dist/chunk-DDX52BX4.mjs +1 -0
- package/dist/chunk-HRZDSFR5.mjs +1 -0
- package/dist/chunk-PPVDMDEL.mjs +1 -0
- package/dist/chunk-UBE4CKOA.mjs +1 -0
- package/dist/chunk-UWT4AJTH.mjs +73 -0
- package/dist/chunk-WWJ7WKDI.mjs +1 -0
- package/dist/chunk-Y4RRHPXC.mjs +1 -0
- package/dist/client/index.d.mts +15 -21
- package/dist/client/index.d.ts +15 -21
- package/dist/client/index.js +1 -1
- package/dist/client/index.mjs +1 -1
- package/dist/client/ssr.js +1 -1
- package/dist/client/ssr.mjs +1 -1
- package/dist/client/types.d.mts +1 -1
- package/dist/client/types.d.ts +1 -1
- package/dist/client/types.js +1 -1
- package/dist/{copy-markdown-CbS8X-qe.d.mts → copy-markdown--9yjpbyy.d.mts} +1 -1
- package/dist/{copy-markdown-C-90ixSe.d.ts → copy-markdown-l2MYkcG7.d.ts} +1 -1
- package/dist/hooks/index.d.mts +8 -16
- package/dist/hooks/index.d.ts +8 -16
- package/dist/hooks/index.js +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/integrations/index.d.mts +1 -1
- package/dist/integrations/index.d.ts +1 -1
- package/dist/{loading-chS3pm9W.d.ts → loading-BwUos0wZ.d.mts} +5 -16
- package/dist/{loading-BqGrFWO5.d.mts → loading-nlnUD01v.d.ts} +5 -16
- package/dist/mdx/index.d.mts +4 -2
- package/dist/mdx/index.d.ts +4 -2
- package/dist/mdx/index.js +1 -1
- package/dist/mdx/index.mjs +1 -1
- package/dist/node/cli-entry.js +25 -22
- package/dist/node/cli-entry.mjs +5 -1
- package/dist/node/index.d.mts +0 -9
- package/dist/node/index.d.ts +0 -9
- package/dist/node/index.js +14 -15
- package/dist/node/index.mjs +1 -1
- package/dist/primitives/index.d.mts +13 -22
- package/dist/primitives/index.d.ts +13 -22
- package/dist/primitives/index.js +1 -1
- package/dist/primitives/index.mjs +1 -1
- package/dist/search-dialog-OONKKC5H.mjs +1 -0
- package/dist/{types-j7jvWsJj.d.ts → types-opDA2E9-.d.mts} +4 -11
- package/dist/{types-j7jvWsJj.d.mts → types-opDA2E9-.d.ts} +4 -11
- package/dist/{use-routes-Cd806kGw.d.ts → use-routes-DNwgTRpU.d.ts} +1 -1
- package/dist/{use-routes-DDL0_jkQ.d.mts → use-routes-DrT80Eom.d.mts} +1 -1
- package/package.json +2 -1
- package/src/client/app/index.tsx +20 -9
- package/src/client/app/mdx-components-context.tsx +2 -2
- package/src/client/app/mdx-page.tsx +0 -1
- package/src/client/app/scroll-handler.tsx +21 -10
- package/src/client/app/theme-context.tsx +14 -7
- package/src/client/components/default-layout.tsx +6 -4
- package/src/client/components/docs-layout.tsx +34 -4
- package/src/client/components/icons-dev.tsx +154 -0
- package/src/client/components/mdx/code-block.tsx +57 -5
- package/src/client/components/mdx/component-preview.tsx +1 -0
- package/src/client/components/mdx/file-tree.tsx +35 -0
- package/src/client/components/primitives/helpers/observer.ts +30 -39
- package/src/client/components/primitives/index.ts +1 -0
- package/src/client/components/primitives/menu.tsx +18 -12
- package/src/client/components/primitives/navbar.tsx +34 -93
- package/src/client/components/primitives/on-this-page.tsx +7 -161
- package/src/client/components/primitives/popover.tsx +1 -2
- package/src/client/components/primitives/search-dialog.tsx +4 -4
- package/src/client/components/primitives/sidebar.tsx +3 -2
- package/src/client/components/primitives/skeleton.tsx +26 -0
- package/src/client/components/ui-base/copy-markdown.tsx +4 -10
- package/src/client/components/ui-base/index.ts +0 -1
- package/src/client/components/ui-base/loading.tsx +43 -73
- package/src/client/components/ui-base/navbar.tsx +18 -15
- package/src/client/components/ui-base/page-nav.tsx +2 -1
- package/src/client/components/ui-base/powered-by.tsx +4 -1
- package/src/client/components/ui-base/search-dialog.tsx +16 -5
- package/src/client/components/ui-base/sidebar.tsx +4 -2
- package/src/client/hooks/use-i18n.ts +3 -2
- package/src/client/hooks/use-localized-to.ts +6 -5
- package/src/client/hooks/use-navbar.ts +37 -6
- package/src/client/hooks/use-page-nav.ts +27 -6
- package/src/client/hooks/use-routes.ts +2 -1
- package/src/client/hooks/use-search.ts +81 -59
- package/src/client/hooks/use-sidebar.ts +2 -1
- package/src/client/index.ts +0 -1
- package/src/client/store/use-boltdocs-store.ts +6 -5
- package/src/client/theme/neutral.css +31 -3
- package/src/client/types.ts +2 -2
- package/src/node/{cli.ts → cli/build.ts} +17 -23
- package/src/node/cli/dev.ts +22 -0
- package/src/node/cli/doctor.ts +243 -0
- package/src/node/cli/index.ts +9 -0
- package/src/node/cli/ui.ts +54 -0
- package/src/node/cli-entry.ts +16 -16
- package/src/node/config.ts +1 -15
- package/src/node/mdx/cache.ts +1 -1
- package/src/node/mdx/index.ts +2 -0
- package/src/node/mdx/rehype-shiki.ts +9 -0
- package/src/node/mdx/remark-code-meta.ts +35 -0
- package/src/node/mdx/remark-shiki.ts +1 -1
- package/src/node/plugin/entry.ts +22 -15
- package/src/node/plugin/index.ts +46 -14
- package/src/node/routes/parser.ts +12 -9
- package/src/node/search/index.ts +55 -0
- package/src/node/ssg/index.ts +83 -15
- package/src/node/ssg/robots.ts +7 -4
- package/dist/chunk-5D6XPYQ3.mjs +0 -74
- package/dist/chunk-6QXCKZAT.mjs +0 -1
- package/dist/chunk-H4M6P3DM.mjs +0 -1
- package/dist/chunk-JXHNX2WN.mjs +0 -1
- package/dist/chunk-MZBG4N4W.mjs +0 -1
- package/dist/chunk-Q3MLYTIQ.mjs +0 -1
- package/dist/chunk-RSII2UPE.mjs +0 -1
- package/dist/chunk-ZK2266IZ.mjs +0 -1
- package/dist/chunk-ZRJ55GGF.mjs +0 -1
- package/dist/search-dialog-MA5AISC7.mjs +0 -1
- package/src/client/components/ui-base/progress-bar.tsx +0 -67
package/dist/client/ssr.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var xo=Object.defineProperty;var ho=(e,t)=>{for(var o in t)xo(e,o,{get:t[o],enumerable:!0})};import bs from"react";import xs from"react-dom/server";import{StaticRouter as hs}from"react-router-dom/server";import _e,{useEffect as Ge,useState as po,useMemo as uo}from"react";import Hm from"react-dom/client";import{BrowserRouter as zm,Routes as ms,Route as q}from"react-router-dom";import{ArrowLeft as Oo}from"lucide-react";import Xe from"react";import{Link as Mo}from"react-aria-components";import{useLocation as Io}from"react-router-dom";import{createContext as vo,use as yo}from"react";var ye=vo(null);function H(){let e=yo(ye);if(!e)throw new Error("useConfig must be used within a ConfigProvider");return e}import{useLocation as Ao}from"react-router-dom";import{createContext as Co,use as Ro,useCallback as No,useRef as Po}from"react";import{jsx as wo}from"react/jsx-runtime";var je=Co({preload:()=>{},routes:[]});function ue(){return Ro(je)}function qe({routes:e,modules:t,children:o}){let r=Po(null),n=No(i=>{r.current&&clearTimeout(r.current),r.current=setTimeout(()=>{let l=i.split("#")[0].split("?")[0],a=e.find(s=>s.path===l||l==="/"&&s.path==="");if(a?.filePath){let s=Object.keys(t).find(d=>d.endsWith("/"+a.filePath));s&&t[s]().catch(d=>{console.error(`[boltdocs] Failed to preload route ${i}:`,d)})}},100)},[e,t]);return wo(je.Provider,{value:{preload:n,routes:e},children:o})}import{create as To}from"zustand";import{persist as ko,createJSONStorage as Lo}from"zustand/middleware";var E=To()(ko(e=>({currentLocale:void 0,currentVersion:void 0,hasHydrated:!1,setLocale:t=>e({currentLocale:t}),setVersion:t=>e({currentVersion:t}),setHasHydrated:t=>e({hasHydrated:t})}),{name:"boltdocs-storage",storage:Lo(()=>localStorage),partialize:e=>({currentLocale:e.currentLocale,currentVersion:e.currentVersion}),onRehydrateStorage:()=>e=>{e?.setHasHydrated(!0)}}));function te(){let{routes:e}=ue(),t=H(),o=Ao(),r=E(p=>p.currentLocale),n=E(p=>p.currentVersion),i=E(p=>p.hasHydrated),l=e.find(p=>p.path===o.pathname),a=t.i18n?l?.locale||(i?r:void 0)||t.i18n.defaultLocale:void 0,s=t.versions?l?.version||(i?n:void 0)||t.versions.defaultVersion:void 0,d=e.filter(p=>{let N=t.i18n?(p.locale||t.i18n.defaultLocale)===a:!0,A=t.versions?(p.version||t.versions.defaultVersion)===s:!0;if(!(N&&A))return!1;let B=t.i18n;if(B){let go=!!l?.locale,bo=!!p.locale;if(e.some(pe=>pe!==p&&pe.filePath===p.filePath&&pe.version===p.version&&(pe.locale||B.defaultLocale)===(p.locale||B.defaultLocale))&&go!==bo)return!1}return!0}),g=t.i18n?.localeConfigs?.[a]?.label||t.i18n?.locales[a]||a,x=t.versions?.versions.find(p=>p.path===s)?.label||s,v=t.i18n?Object.entries(t.i18n.locales).map(([p,N])=>{let A=t.i18n?.localeConfigs?.[p];return{key:p,label:A?.label||N,isCurrent:p===a}}):[],y=t.versions?t.versions.versions.map(p=>({key:p.path,label:p.label,isCurrent:p.path===s})):[];return{routes:d,allRoutes:e,currentRoute:l,currentLocale:a,currentLocaleLabel:g,availableLocales:v,currentVersion:s,currentVersionLabel:x,availableVersions:y,config:t}}function Ce(e){let t=H(),{currentLocale:o,currentVersion:r}=te();if(!t||typeof e!="string"||e.startsWith("http")||e.startsWith("//"))return e;let n=t.i18n,i=t.versions;if(!n&&!i)return e;let l=e.startsWith("/docs"),a=e.split("/").filter(Boolean),s=0;a[s]==="docs"&&s++,i&&a.length>s&&i.versions.find(x=>x.path===a[s])&&s++,n&&a.length>s&&n.locales[a[s]]&&s++;let d=a.slice(s),m=[];l&&(m.push("docs"),i&&r&&m.push(r)),n&&o&&o!==n.defaultLocale&&m.push(o),m.push(...d);let g=`/${m.join("/")}`;return g.length>1&&g.endsWith("/")?g.slice(0,-1):g||"/"}import{clsx as Bo}from"clsx";import{twMerge as So}from"tailwind-merge";function c(...e){return So(Bo(e))}import{jsx as Ke}from"react/jsx-runtime";var D=Xe.forwardRef((e,t)=>{let{href:o,prefetch:r="hover",onMouseEnter:n,onFocus:i,...l}=e,a=Ce(o??""),{preload:s}=ue();return Ke(Mo,{...l,ref:t,href:a,onMouseEnter:g=>{n?.(g),r==="hover"&&typeof a=="string"&&a.startsWith("/")&&s(a)},onFocus:g=>{i?.(g),r==="hover"&&typeof a=="string"&&a.startsWith("/")&&s(a)}})});D.displayName="Link";var Eo=Xe.forwardRef((e,t)=>{let{href:o,end:r=!1,className:n,children:i,...l}=e,a=Io(),s=Ce(o??""),d=r?a.pathname===s:a.pathname.startsWith(s),m=typeof n=="function"?n({isActive:d}):c(n,d&&"active"),g=typeof i=="function"?i({isActive:d}):i;return Ke(D,{...l,ref:t,href:o,className:m,children:g})});Eo.displayName="NavLink";import{jsx as oe,jsxs as Ze}from"react/jsx-runtime";function Re(){return oe("div",{className:"flex items-center justify-center min-h-[60vh] text-center",children:Ze("div",{className:"space-y-4",children:[oe("span",{className:"text-8xl font-black tracking-tighter text-primary-500/20",children:"404"}),oe("h1",{className:"text-2xl font-bold text-text-main",children:"Page Not Found"}),oe("p",{className:"text-sm text-text-muted max-w-sm mx-auto",children:"The page you're looking for doesn't exist or has been moved."}),Ze(D,{href:"/",className:"inline-flex items-center gap-2 rounded-lg bg-primary-500 px-5 py-2.5 text-sm font-semibold text-white outline-none transition-all hover:brightness-110 hover:shadow-lg focus-visible:ring-2 focus-visible:ring-primary-500/30",children:[oe(Oo,{size:16})," Go to Home"]})]})})}import{createContext as Vo,use as Ho,useEffect as Je,useState as Ne}from"react";import{jsx as Do}from"react/jsx-runtime";var Qe=Vo(void 0);function Ye({children:e}){let[t,o]=Ne("system"),[r,n]=Ne("dark"),[i,l]=Ne(!1);Je(()=>{l(!0);let s=localStorage.getItem("boltdocs-theme"),d=s==="light"||s==="dark"||s==="system"?s:"system";o(d);let m=window.matchMedia("(prefers-color-scheme: dark)");((x,v)=>{n(x==="system"?v?"dark":"light":x)})(d,m.matches);let b=x=>{n(v=>(localStorage.getItem("boltdocs-theme")||"system")==="system"?x.matches?"dark":"light":v)};return m.addEventListener("change",b),()=>m.removeEventListener("change",b)},[]),Je(()=>{if(!i)return;let s=window.matchMedia("(prefers-color-scheme: dark)").matches,d=t==="system"?s?"dark":"light":t;n(d);let m=document.documentElement;d==="light"?(m.classList.add("theme-light"),m.dataset.theme="light"):(m.classList.remove("theme-light"),m.dataset.theme="dark")},[t,i]);let a=s=>{o(s),localStorage.setItem("boltdocs-theme",s)};return Do(Qe.Provider,{value:{theme:t,resolvedTheme:r,setTheme:a},children:e})}function et(){let e=Ho(Qe);if(e===void 0)throw new Error("useTheme must be used within a ThemeProvider");return e}import me from"virtual:boltdocs-layout";import{startTransition as zo}from"react";import{RouterProvider as Fo}from"react-aria-components";import{useNavigate as $o,useHref as Wo}from"react-router-dom";import{jsx as _o}from"react/jsx-runtime";function tt({children:e}){let t=$o();return _o(Fo,{navigate:(o,r)=>{zo(()=>{t(o,r)})},useHref:Wo,children:e})}import{useLayoutEffect as Go}from"react";import{useLocation as Uo}from"react-router-dom";function ot(){let{pathname:e,hash:t}=Uo();return Go(()=>{let o=document.querySelector(".boltdocs-content");if(o){if(t){let r=t.replace("#",""),n=document.getElementById(r);if(n){let l=o.getBoundingClientRect().top,d=n.getBoundingClientRect().top-l-80+o.scrollTop;o.scrollTo({top:d,behavior:"smooth"});return}}o.scrollTo(0,0)}},[e,t]),null}import{Outlet as jo}from"react-router-dom";import qo from"virtual:boltdocs-layout";import{jsx as rt}from"react/jsx-runtime";function nt(){return rt(qo,{children:rt(jo,{})})}import{MDXProvider as Jo}from"@mdx-js/react";import{createContext as Xo,useContext as Ko}from"react";import{jsx as Zo}from"react/jsx-runtime";var st=Xo({});function it(){return Ko(st)}function at({components:e,children:t}){return Zo(st.Provider,{value:e,children:t})}import{jsx as lt}from"react/jsx-runtime";function ct({Component:e}){let t=it();return lt(Jo,{components:t,children:lt(e,{})})}import{Link as cs}from"lucide-react";var $e={};ho($e,{Admonition:()=>O,Badge:()=>kt,Button:()=>dt,Card:()=>Mt,Cards:()=>St,Caution:()=>$t,CodeBlock:()=>z,ComponentPreview:()=>oo,ComponentProps:()=>Yt,CopyMarkdown:()=>lo,Danger:()=>Dt,Field:()=>Zt,FileTree:()=>Gt,Image:()=>Qt,Important:()=>Ft,InfoBox:()=>zt,Link:()=>Jt,List:()=>Wt,Note:()=>Ot,Tab:()=>Nt,Table:()=>Kt,Tabs:()=>Pt,Tip:()=>Vt,Video:()=>Tt,Warning:()=>Ht});import*as ge from"react-aria-components";import{cva as Qo}from"class-variance-authority";import{Fragment as Yo,jsx as X,jsxs as er}from"react/jsx-runtime";var fe=Qo("flex flex-row items-center justify-center w-auto font-semibold tracking-tight no-underline whitespace-nowrap select-none outline-none transition-all duration-200 cursor-pointer pressed:scale-[0.97] hover:-translate-y-px leading-none",{variants:{variant:{primary:"bg-primary-500 text-white shadow-md hover:brightness-110 hover:shadow-lg",secondary:"bg-bg-surface text-text-main border border-border-subtle hover:bg-bg-muted hover:border-border-strong",outline:"bg-transparent text-text-main border border-border-strong hover:bg-bg-surface hover:border-primary-500",ghost:"bg-transparent text-text-muted hover:bg-bg-surface hover:text-text-main",danger:"bg-[var(--color-danger-500)]/10 text-[var(--color-danger-500)] border border-[var(--color-danger-500)]/20 hover:bg-[var(--color-danger-500)]/15",success:"bg-[var(--color-success-500)]/10 text-[var(--color-success-500)] border border-[var(--color-success-500)]/20 hover:bg-[var(--color-success-500)]/15",warning:"bg-[var(--color-warning-500)]/10 text-[var(--color-warning-500)] border border-[var(--color-warning-500)]/20 hover:bg-[var(--color-warning-500)]/15",info:"bg-[var(--color-info-500)]/10 text-[var(--color-info-500)] border border-[var(--color-info-500)]/20 hover:bg-[var(--color-info-500)]/15",subtle:"bg-primary-500/10 text-primary-500 hover:bg-primary-500/20",link:"bg-transparent text-primary-500 !p-0 !min-h-0 hover:underline"},size:{sm:"min-h-8 px-3.5 text-[0.8125rem] gap-1.5",md:"min-h-10 px-5 text-[0.9375rem] gap-2",lg:"min-h-12 px-7 text-[1.05rem] gap-2.5"},rounded:{none:"rounded-none",sm:"rounded-sm",md:"rounded-md",lg:"rounded-lg",full:"rounded-full"},iconSize:{sm:"w-8 h-8 p-0",md:"w-10 h-10 p-0",lg:"w-12 h-12 p-0"},disabled:{true:"opacity-50 cursor-not-allowed pointer-events-none",false:null}},defaultVariants:{variant:"primary",size:"md",rounded:"md"}}),K=({href:e,icon:t,iconPosition:o="left",isIconOnly:r,children:n,className:i,variant:l,size:a,rounded:s,iconSize:d,disabled:m,...g})=>{let b=r||!n&&!!t,x=b?X("span",{className:"inline-flex items-center justify-center [&>svg]:w-[1.2rem] [&>svg]:h-[1.2rem]",children:t}):er(Yo,{children:[t&&o==="left"&&X("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t}),X("span",{className:"flex items-center",children:n}),t&&o==="right"&&X("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t})]});return e?X(ge.Link,{href:e,className:c(fe({variant:l,size:a,rounded:s,iconSize:b?d:void 0,disabled:m}),i),...g,children:x}):X(ge.Button,{className:c(fe({variant:l,size:a,rounded:s,iconSize:b?d:void 0,disabled:m}),i),...g,children:x})};import{jsx as tr}from"react/jsx-runtime";var dt=({className:e,variant:t,size:o,rounded:r,iconSize:n,disabled:i,...l})=>tr(K,{className:c("group",fe({variant:t,size:o,rounded:r,iconSize:n,disabled:i,className:e})),...l});import*as be from"react-aria-components";import{Copy as dr,Check as mr}from"lucide-react";import{getParameters as mt}from"codesandbox/lib/api/define.js";function pt(e){let t=e.files||{},o=e.dependencies||{},r=e.devDependencies||{},n=e.title||"codesandbox-project",i=e.description||"Generic Sandbox",l={};for(let[a,s]of Object.entries(t)){let d=typeof s.content=="object"?JSON.stringify(s.content,null,2):s.content;l[a]={content:d,isBinary:s.isBinary??!1}}if(!l["package.json"]){let s=e.template==="vite"||!!r.vite||!!r["@vitejs/plugin-react"]?{dev:"vite",build:"vite build",preview:"vite preview"}:{start:"node index.js"};l["package.json"]={content:JSON.stringify({private:!0,name:n,description:i,type:"module",version:"1.0.0",scripts:e.scripts||s,dependencies:o,devDependencies:r},null,2),isBinary:!1}}return l}function or(e){let t=pt(e),o=mt({files:t}),r=new URLSearchParams({parameters:o,installDependencies:"true"});return e.entry&&r.set("file",`/${e.entry}`),{parameters:o,url:`https://codesandbox.io/api/v1/sandboxes/define?${r.toString()}`,options:e}}function ut(e){if(typeof window>"u")return or(e);let t=pt(e),o=mt({files:t}),r=e.entry||"src/App.tsx",n=document.createElement("form");n.method="POST",n.target="_blank",n.action="https://codesandbox.io/api/v1/sandboxes/define",n.style.display="none";let i=(a,s)=>{let d=document.createElement("input");d.type="hidden",d.name=a,d.value=s,n.appendChild(d)},l=new URLSearchParams({file:`/${r}`,eslint:"0",codemirror:"1",installDependencies:"true"});return i("query",l.toString()),i("parameters",o),document.body.appendChild(n),n.submit(),document.body.removeChild(n),{parameters:o,url:`https://codesandbox.io/api/v1/sandboxes/define?parameters=${o}`,options:e}}var ft=async e=>{try{return await navigator.clipboard.writeText(e),!0}catch{let t=document.createElement("textarea");return t.value=e,t.style.position="fixed",t.style.opacity="0",document.body.appendChild(t),t.select(),document.execCommand("copy"),document.body.removeChild(t),!0}};import{useCallback as gt,useEffect as rr,useRef as nr,useState as Pe}from"react";function bt(e){let{title:t,sandbox:o}=e,[r,n]=Pe(!1),[i,l]=Pe(!1),[a,s]=Pe(!1),d=nr(null),m=H(),g=gt(async()=>{let x=d.current?.textContent??"";ft(x),n(!0),setTimeout(()=>n(!1),2e3)},[]),b=gt(()=>{let x=d.current?.textContent??"",v=m?.integrations?.sandbox?.config||{},y=typeof o=="object"?o:v,p=y.entry||"src/App.tsx";ut({title:t??"Code Snippet",...y,files:{...y.files,[p]:{content:x}}})},[t,m,o]);return rr(()=>{let x=d.current?.textContent?.length??0;s(x>120)},[e.children,e.highlightedHtml]),{copied:r,isExpanded:i,setIsExpanded:l,isExpandable:a,preRef:d,handleCopy:g,handleSandbox:b,shouldTruncate:a&&!i}}import{jsx as xt,jsxs as ar}from"react/jsx-runtime";function sr(e){let{size:t=20,...o}=e;return{...o,width:t,height:t}}var ht=e=>ar("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...sr(e),children:[xt("title",{children:"CodeSandbox"}),xt("path",{d:"M0 24h24V0H0v2.455h21.546v19.09H2.454V0H0Z"})]});import*as Z from"react-aria-components";import{Fragment as cr,jsx as re,jsxs as we}from"react/jsx-runtime";var lr=({className:e,children:t,...o})=>re(Z.Tooltip,{...o,offset:8,className:r=>c("group z-50 overflow-visible rounded-md bg-bg-surface/90 px-2.5 py-1.5 text-xs font-medium text-text-main shadow-lg backdrop-blur-md ring-1 ring-border-subtle outline-hidden select-none","data-entering:animate-in data-entering:fade-in data-entering:zoom-in-95 data-entering:duration-100","data-exiting:animate-out data-exiting:fade-out data-exiting:zoom-out-95 data-exiting:duration-75","data-[placement=top]:slide-in-from-bottom-1","data-[placement=bottom]:slide-in-from-top-1","data-[placement=left]:slide-in-from-right-1","data-[placement=right]:slide-in-from-left-1",typeof e=="function"?e(r):e),children:r=>we(cr,{children:[re(Z.OverlayArrow,{children:we("svg",{width:8,height:8,viewBox:"0 0 8 8",className:"fill-bg-surface/90 stroke-border-subtle group-data-[placement=bottom]:rotate-180 group-data-[placement=left]:-rotate-90 group-data-[placement=right]:rotate-90",children:[re("title",{children:"Arrow"}),re("path",{d:"M0 0 L4 4 L8 0"})]})}),typeof t=="function"?t(r):t]})}),Te=({content:e,children:t,delay:o=500,closeDelay:r=0,...n})=>we(Z.TooltipTrigger,{delay:o,closeDelay:r,children:[t,re(lr,{...n,children:e})]});import{jsx as S,jsxs as vt}from"react/jsx-runtime";function z(e){let{children:t,sandbox:o,hideSandbox:r=!0,hideCopy:n=!1,highlightedHtml:i,...l}=e,d=!!H()?.integrations?.sandbox?.enable&&!r,{copied:m,isExpanded:g,setIsExpanded:b,isExpandable:x,preRef:v,handleCopy:y,handleSandbox:p,shouldTruncate:N}=bt(e);return vt("div",{className:c("group relative my-6 overflow-hidden rounded-lg border border-border-subtle bg-(--color-code-bg)",N&&"[&>pre]:max-h-[250px] [&>pre]:overflow-hidden"),children:[vt("div",{className:"absolute top-3 right-4 z-50 flex items-center gap-2 transition-all duration-300 opacity-0 group-hover:opacity-100",children:[d&&S(Te,{content:"Open in CodeSandbox",children:S(be.Button,{onPress:p,className:"grid place-items-center w-8 h-8 bg-transparent text-text-muted outline-none cursor-pointer transition-all duration-200 hover:scale-115 hover:text-sky-400 active:scale-95 [&>svg]:w-5 [&>svg]:h-5 [&>svg]:stroke-2","aria-label":"Open in CodeSandbox",children:S(ht,{size:20})})}),!n&&S(Te,{content:m?"Copied!":"Copy code",children:S(be.Button,{onPress:y,className:c("grid place-items-center w-8 h-8 bg-transparent outline-none cursor-pointer transition-all duration-200 hover:scale-115 active:scale-95 [&>svg]:w-5 [&>svg]:h-5 [&>svg]:stroke-2",m?"text-emerald-400":"text-text-muted hover:text-text-main"),"aria-label":"Copy code",children:m?S(mr,{size:20}):S(dr,{size:20})})})]}),i?S("div",{ref:v,className:"shiki-wrapper [&>pre]:m-0! [&>pre]:rounded-none! [&>pre]:border-none! [&>pre]:bg-inherit! [&>pre>code]:grid! [&>pre>code]:p-5! [&>.shiki.shiki-themes]:bg-transparent!",dangerouslySetInnerHTML:{__html:i}}):S("pre",{ref:v,className:"m-0! rounded-none! border-none! bg-inherit! font-mono text-[0.8125rem] leading-[1.7]",...l,children:t}),x&&S("div",{className:c(N?"absolute bottom-0 inset-x-0 h-24 bg-linear-to-t from-(--color-code-bg) to-transparent flex items-end justify-center pb-4 z-10":"relative flex justify-center py-4"),children:S(be.Button,{onPress:()=>b(!g),className:"rounded-full bg-bg-surface border border-border-subtle px-5 py-2 text-[0.8125rem] font-medium text-text-main outline-none cursor-pointer transition-all hover:bg-border-subtle hover:-translate-y-px backdrop-blur-md",children:g?"Show less":"Expand code"})})]})}import{Children as gr,isValidElement as br,useMemo as xr}from"react";import*as $ from"react-aria-components";import{useState as yt,useRef as pr,useEffect as ur,useCallback as fr}from"react";function Ct({initialIndex:e=0,tabs:t}){let o=t[e]?.props.disabled?t.findIndex(d=>!d.props.disabled):e,[r,n]=yt(o===-1?0:o),i=pr([]),[l,a]=yt({opacity:0,transform:"translateX(0)",width:0});ur(()=>{let d=i.current[r];d&&a({opacity:1,width:d.offsetWidth,transform:`translateX(${d.offsetLeft}px)`})},[r,t]);let s=fr(d=>{let m=0;if(d.key==="ArrowRight"?m=1:d.key==="ArrowLeft"&&(m=-1),m!==0){let g=(r+m+t.length)%t.length;for(;t[g].props.disabled&&g!==r;)g=(g+m+t.length)%t.length;g!==r&&!t[g].props.disabled&&(n(g),i.current[g]?.focus())}},[r,t]);return{active:r,setActive:n,tabRefs:i,indicatorStyle:l,handleKeyDown:s}}import{cva as Rt}from"class-variance-authority";import{jsx as F,jsxs as ke}from"react/jsx-runtime";var hr=Rt("relative flex items-center border-b border-border-subtle gap-1 overflow-x-auto no-scrollbar",{variants:{size:{default:"px-0",compact:"px-2"}},defaultVariants:{size:"default"}}),vr=Rt("flex items-center gap-2 px-4 py-2.5 text-sm font-medium outline-none transition-all duration-200 cursor-pointer bg-transparent border-none select-none whitespace-nowrap",{variants:{isActive:{true:"text-primary-500",false:"text-text-muted hover:text-text-main"},isDisabled:{true:"opacity-40 pointer-events-none",false:""}},defaultVariants:{isActive:!1,isDisabled:!1}});function Nt({children:e}){let t=typeof e=="string"?F(z,{className:"language-bash",children:F("code",{children:e.trim()})}):e;return F("div",{className:"py-4",children:t})}function Pt({defaultIndex:e=0,children:t}){let o=xr(()=>gr.toArray(t).filter(a=>br(a)&&a.props?.label),[t]),{active:r,setActive:n,tabRefs:i,indicatorStyle:l}=Ct({initialIndex:e,tabs:o});return F("div",{className:"my-8 w-full group/tabs",children:ke($.Tabs,{selectedKey:r.toString(),onSelectionChange:a=>n(Number(a)),className:"w-full",children:[ke($.TabList,{"aria-label":"Content Tabs",className:c(hr()),children:[o.map((a,s)=>{let{label:d,icon:m,disabled:g}=a.props,b=s.toString();return ke($.Tab,{id:b,isDisabled:g,ref:x=>{i.current[s]=x},className:({isSelected:x,isDisabled:v})=>c(vr({isActive:x,isDisabled:v})),children:[!!m&&F("span",{className:"shrink-0 [&>svg]:w-4 [&>svg]:h-4",children:m}),F("span",{children:d})]},b)}),F("div",{className:"absolute bottom-0 h-0.5 bg-primary-500 transition-all duration-300 ease-in-out pointer-events-none",style:l,"aria-hidden":"true"})]}),o.map((a,s)=>F($.TabPanel,{id:s.toString(),children:o[s]},s))]})})}import{useRef as yr,useState as Cr,useEffect as Rr}from"react";import{jsx as wt,jsxs as Nr}from"react/jsx-runtime";function Tt({src:e,poster:t,alt:o,children:r,controls:n,preload:i="metadata",...l}){let a=yr(null),[s,d]=Cr(!1);return Rr(()=>{let m=a.current;if(!m)return;let g=new IntersectionObserver(([b])=>{b.isIntersecting&&(d(!0),g.disconnect())},{rootMargin:"200px"});return g.observe(m),()=>g.disconnect()},[]),wt("div",{ref:a,className:"my-6 overflow-hidden rounded-lg border border-border-subtle",children:s?Nr("video",{className:"block w-full h-auto",src:e,poster:t,controls:!0,preload:i,playsInline:!0,...l,children:[r,"Your browser does not support the video tag."]}):wt("div",{className:"aspect-video bg-bg-surface animate-pulse",role:"img","aria-label":o||"Video"})})}import{cva as Pr}from"class-variance-authority";import{jsx as Tr}from"react/jsx-runtime";var wr=Pr("inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold tracking-tight",{variants:{variant:{default:"bg-bg-surface text-text-muted border-border-subtle",primary:"bg-primary-500/15 text-primary-400 border-primary-500/20",success:"bg-emerald-500/15 text-emerald-400 border-emerald-500/20",warning:"bg-amber-500/15 text-amber-400 border-amber-500/20",danger:"bg-red-500/15 text-red-400 border-red-500/20",info:"bg-sky-500/15 text-sky-400 border-sky-500/20"}},defaultVariants:{variant:"default"}});function kt({variant:e="default",children:t,className:o="",...r}){return Tr("span",{className:c(wr({variant:e}),o),...r,children:t})}import{useCallback as kr,useRef as Lt}from"react";import*as Bt from"react-aria-components";import{cva as Lr}from"class-variance-authority";import{Fragment as Br,jsx as G,jsxs as At}from"react/jsx-runtime";var Ar=Lr("grid gap-4 my-6",{variants:{cols:{1:"grid-cols-1",2:"grid-cols-1 sm:grid-cols-2",3:"grid-cols-1 sm:grid-cols-2 lg:grid-cols-3",4:"grid-cols-1 sm:grid-cols-2 lg:grid-cols-4"}},defaultVariants:{cols:3}});function St({cols:e=3,children:t,className:o="",...r}){return G("div",{className:c(Ar({cols:e}),o),...r,children:t})}function Mt({title:e,icon:t,href:o,children:r,className:n="",...i}){let l=Lt(null),a=Lt(null),s=kr(g=>{let b=l.current||a.current;if(!b)return;let{left:x,top:v}=b.getBoundingClientRect();b.style.setProperty("--x",`${g.clientX-x}px`),b.style.setProperty("--y",`${g.clientY-v}px`)},[]),d=At(Br,{children:[G("div",{className:"pointer-events-none absolute -inset-px rounded-xl opacity-0 transition-opacity duration-300 group-hover:opacity-100",style:{background:"radial-gradient(400px circle at var(--x) var(--y), color-mix(in oklch, var(--color-primary-500), transparent 90%), transparent 80%)"}}),t&&G("div",{className:"mb-3 flex h-10 w-10 items-center justify-center rounded-lg bg-primary-500/10 text-primary-400 text-lg transition-transform duration-300 group-hover:scale-105 group-hover:-rotate-3",children:t}),At("div",{className:"space-y-1.5",children:[e&&G("h3",{className:"text-sm font-bold text-text-main",children:e}),r&&G("div",{className:"text-sm text-text-muted leading-relaxed",children:r})]})]}),m=c("group relative block rounded-xl border border-border-subtle bg-bg-surface p-5 outline-none overflow-hidden","transition-all duration-200 hover:border-primary-500/40 hover:shadow-lg hover:shadow-primary-500/5","focus-visible:ring-2 focus-visible:ring-primary-500/30",n);return o?G(Bt.Link,{ref:a,href:o,className:c(m,"no-underline cursor-pointer"),onMouseMove:s,...i,children:d}):G("div",{ref:l,role:"presentation",className:m,onMouseMove:s,...i,children:d})}import{Info as Sr,Lightbulb as Mr,AlertTriangle as Ir,ShieldAlert as Er,Bookmark as Or,Zap as Vr,Flame as Hr}from"lucide-react";import{cva as Dr}from"class-variance-authority";import{jsx as P,jsxs as Et}from"react/jsx-runtime";var zr={note:P(Or,{size:18}),tip:P(Mr,{size:18}),info:P(Sr,{size:18}),warning:P(Ir,{size:18}),danger:P(Er,{size:18}),important:P(Hr,{size:18}),caution:P(Vr,{size:18})},Fr={note:"Note",tip:"Tip",info:"Info",warning:"Warning",danger:"Danger",important:"Important",caution:"Caution"},It=Dr("py-4 px-4 rounded-lg",{variants:{type:{note:"border-primary-400 bg-primary-500/5 text-primary-400",tip:"border-emerald-500 bg-emerald-500/5 text-emerald-500",info:"border-sky-500 bg-sky-500/5 text-sky-500",warning:"border-amber-500 bg-amber-500/5 text-amber-500",danger:"border-red-500 bg-red-500/5 text-red-500",important:"border-orange-500 bg-orange-500/5 text-orange-500",caution:"border-yellow-500 bg-yellow-500/5 text-yellow-500"}},defaultVariants:{type:"note"}});function O({type:e="note",title:t,children:o,className:r="",...n}){return Et("div",{className:c(It({type:e}),r),role:e==="warning"||e==="danger"?"alert":"note",...n,children:[Et("div",{className:"flex items-center flex-row gap-2 mb-2",children:[P("span",{className:c("shrink-0",It({type:e})),children:zr[e]}),P("span",{className:"text-sm font-bold tracking-tight text-text-main",children:t||Fr[e]})]}),P("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 [&>p]:mb-2 [&>p:last-child]:mb-0",children:o})]})}var Ot=e=>P(O,{type:"note",...e}),Vt=e=>P(O,{type:"tip",...e}),Ht=e=>P(O,{type:"warning",...e}),Dt=e=>P(O,{type:"danger",...e}),zt=e=>P(O,{type:"info",...e}),Ft=e=>P(O,{type:"important",...e}),$t=e=>P(O,{type:"caution",...e});import{Children as $r,isValidElement as Wr}from"react";import{Check as _r,ChevronRight as Gr,Circle as Ur}from"lucide-react";import{cva as Le}from"class-variance-authority";import{jsx as W,jsxs as Jr}from"react/jsx-runtime";var jr=Le("my-6 transition-all duration-200",{variants:{variant:{default:"list-disc pl-5 text-text-muted marker:text-primary-500/50",number:"list-decimal pl-5 text-text-muted marker:text-primary-500/50 marker:font-bold",checked:"list-none p-0",arrow:"list-none p-0",bubble:"list-none p-0"},cols:{1:"grid-cols-1",2:"grid-cols-1 sm:grid-cols-2",3:"grid-cols-1 sm:grid-cols-2 lg:grid-cols-3",4:"grid-cols-1 sm:grid-cols-2 lg:grid-cols-4"},isGrid:{true:"grid gap-x-8 gap-y-3",false:"space-y-2"},dense:{true:"space-y-1",false:"space-y-2"}},compoundVariants:[{variant:"default",dense:!0,className:"space-y-0.5"}],defaultVariants:{variant:"default",cols:1,isGrid:!1,dense:!1}}),qr=Le("group flex items-start gap-3 text-sm leading-relaxed transition-all duration-200",{variants:{variant:{default:"",number:"",checked:"hover:translate-x-0.5",arrow:"hover:translate-x-0.5",bubble:"hover:translate-x-0.5"},dense:{true:"py-0",false:"py-0.5"}},defaultVariants:{variant:"default",dense:!1}}),Xr=Le("mt-1 shrink-0 flex items-center justify-center transition-transform group-hover:scale-110",{variants:{variant:{bubble:"h-5 w-5 rounded-full bg-primary-500/10 text-primary-500 text-[10px] font-bold",default:""}},defaultVariants:{variant:"default"}});function Kr({icon:e,children:t,variant:o,dense:r}){return Jr("li",{className:c(qr({variant:o,dense:r})),children:[e&&W("span",{className:c(Xr({variant:o==="bubble"?"bubble":"default"})),children:e}),W("div",{className:"flex-1 text-text-muted group-hover:text-text-main transition-colors",children:t})]})}var Zr={checked:e=>W(_r,{size:14,className:c("text-emerald-500 shrink-0",e)}),arrow:e=>W(Gr,{size:14,className:c("text-primary-400 shrink-0",e)}),bubble:e=>W(Ur,{size:6,fill:"currentColor",className:c("text-primary-500 shrink-0",e)}),default:()=>null,number:()=>null};function Wt({variant:e="default",cols:t=1,dense:o=!1,children:r,className:n,...i}){let l=t!==void 0&&Number(t)>1,a=Zr[e],s=jr({variant:e,cols:t,dense:o,isGrid:l,className:n}),d=e==="number"?"ol":"ul";return e==="default"||e==="number"?W(d,{className:s,...i,children:r}):W("ul",{className:s,...i,children:$r.map(r,m=>{if(!Wr(m))return m;let g=m,b=g.type==="li"?g.props.children:g.props.children||m;return W(Kr,{icon:a(),variant:e,dense:o,children:b})})})}import{Children as Ae,isValidElement as Ee,useMemo as Qr}from"react";import*as M from"react-aria-components";import{Folder as Yr,FileText as en,File as tn,FileCode as on,FileImage as rn,ChevronRight as nn}from"lucide-react";import{jsx as w,jsxs as Me}from"react/jsx-runtime";var ne=16,se=2,Be={CODE:/\.(ts|tsx|js|jsx|json|mjs|cjs|astro|vue|svelte)$/i,TEXT:/\.(md|mdx|txt)$/i,IMAGE:/\.(png|jpg|jpeg|svg|gif)$/i};function Ie(e){return typeof e=="string"?e:typeof e=="number"?e.toString():Array.isArray(e)?e.map(Ie).join(""):Ee(e)&&e.props&&typeof e.props=="object"&&"children"in e.props?Ie(e.props.children):""}function sn(e,t){let o=e.toLowerCase(),r="shrink-0 transition-colors duration-200";if(t)return w(Yr,{size:ne,strokeWidth:se,className:c(r,"text-primary-400"),fill:"currentColor",fillOpacity:.15});let n=c(r,"text-text-dim group-hover:text-text-main");return Be.CODE.test(o)?w(on,{size:ne,strokeWidth:se,className:n}):Be.TEXT.test(o)?w(en,{size:ne,strokeWidth:se,className:n}):Be.IMAGE.test(o)?w(rn,{size:ne,strokeWidth:se,className:n}):w(tn,{size:ne,strokeWidth:se,className:n})}function Se(e,t){if(!Ee(e))return!1;let o=e.type;if(typeof o=="string")return o===t;if(typeof o=="function")return o.name===t||o.name?.toLowerCase()===t;let r=e.props;return r?.originalType===t||r?.mdxType===t}function an(e){let t=e.match(/\s+(\/\/|#)\s+(.*)$/);return t?{name:e.slice(0,t.index).trim(),comment:t[2]}:{name:e.trim()}}function xe(e,t="root"){if(!Ee(e))return[];let o=[];if(Se(e,"ul"))return Ae.forEach(e.props.children,(r,n)=>{o.push(...xe(r,`${t}-${n}`))}),o;if(Se(e,"li")){let r=Ae.toArray(e.props.children),n=r.findIndex(v=>Se(v,"ul")),i=n!==-1,l=i?r.slice(0,n):r,a=i?r.slice(n):[],s=Ie(l),{name:d,comment:m}=an(s),g=d.endsWith("/"),b=g?d.slice(0,-1):d,x=i||g;return o.push({id:`${t}-${b}`,name:b,comment:m,isFolder:x,children:i?xe(a[0],`${t}-${b}`):void 0}),o}return e.props&&typeof e.props=="object"&&"children"in e.props&&Ae.forEach(e.props.children,(r,n)=>{o.push(...xe(r,`${t}-${n}`))}),o}function _t({item:e}){return Me(M.TreeItem,{id:e.id,textValue:e.name,className:"outline-none group focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-md",children:[w(M.TreeItemContent,{children:({isExpanded:t,hasChildItems:o})=>Me("div",{className:"flex items-center gap-2 py-1 px-1.5 rounded-md transition-colors hover:bg-primary-500/5 cursor-pointer",children:[w("div",{style:{width:"calc((var(--tree-item-level) - 1) * 1rem)"},className:"shrink-0"}),o?w(M.Button,{slot:"chevron",className:"outline-none text-text-dim hover:text-primary-400 p-0.5 rounded transition-colors",children:w(nn,{size:14,strokeWidth:3,className:c("transition-transform duration-200",t&&"rotate-90")})}):w("div",{className:"w-[18px]"}),sn(e.name,e.isFolder),w("span",{className:c("text-sm transition-colors truncate select-none",e.isFolder?"font-semibold text-text-main":"text-text-muted group-hover:text-text-main"),children:e.name}),e.comment&&Me("span",{className:"ml-2 text-xs italic text-text-dim opacity-70 group-hover:opacity-100 transition-opacity whitespace-nowrap overflow-hidden text-ellipsis font-sans",children:["//"," ",e.comment]})]})}),e.children&&w(M.Collection,{items:e.children,children:t=>w(_t,{item:t})})]})}function Gt({children:e}){let t=Qr(()=>xe(e),[e]);return w("div",{className:"my-8",children:w(M.Tree,{items:t,"aria-label":"File Tree",className:c("rounded-xl border border-border-subtle bg-bg-surface/50 p-4 font-mono text-sm shadow-sm backdrop-blur-sm outline-none","max-h-[500px] overflow-y-auto scrollbar-thin scrollbar-thumb-border-subtle","focus-visible:ring-2 focus-visible:ring-primary-500/20"),children:o=>w(_t,{item:o})})})}import*as ie from"react-aria-components";import{useState as Ut,useMemo as jt}from"react";function qt({data:e,sortable:t=!1,paginated:o=!1,pageSize:r=10}){let[n,i]=Ut(null),[l,a]=Ut(1),s=jt(()=>{if(!e)return[];let b=[...e];return t&&n!==null&&b.sort((x,v)=>{let y=x[n.key],p=v[n.key],N=typeof y=="string"?y:"",A=typeof p=="string"?p:"";return N<A?n.direction==="asc"?-1:1:N>A?n.direction==="asc"?1:-1:0}),b},[e,n,t]),d=Math.ceil(s.length/r),m=jt(()=>{if(!o)return s;let b=(l-1)*r;return s.slice(b,b+r)},[s,o,l,r]);return{sortConfig:n,currentPage:l,setCurrentPage:a,totalPages:d,paginatedData:m,requestSort:b=>{if(!t)return;let x="asc";n&&n.key===b&&n.direction==="asc"&&(x="desc"),i({key:b,direction:x})}}}import{ChevronUp as ln,ChevronDown as Xt,ChevronLeft as cn,ChevronRight as dn,ChevronsLeft as mn,ChevronsRight as pn}from"lucide-react";import{Fragment as un,jsx as C,jsxs as J}from"react/jsx-runtime";function Kt({headers:e,data:t,children:o,className:r="",sortable:n=!1,paginated:i=!1,pageSize:l=10}){let{sortConfig:a,currentPage:s,setCurrentPage:d,totalPages:m,paginatedData:g,requestSort:b}=qt({data:t,sortable:n,paginated:i,pageSize:l}),x=y=>n?a?.key!==y?C(Xt,{size:14,className:"ml-1 opacity-30"}):a.direction==="asc"?C(ln,{size:14,className:"ml-1 text-primary-400"}):C(Xt,{size:14,className:"ml-1 text-primary-400"}):null,v=o||J(un,{children:[e&&C("thead",{children:C("tr",{children:e.map((y,p)=>C("th",{onClick:()=>b(p),className:c("text-left px-3 py-2.5 border-b-2 border-border-subtle text-text-main font-semibold text-sm",n&&"cursor-pointer select-none hover:text-primary-400 transition-colors"),children:J("div",{className:"flex items-center",children:[y,x(p)]})},p))})}),g&&C("tbody",{children:g.map((y,p)=>C("tr",{className:"transition-colors hover:bg-bg-surface",children:y.map((N,A)=>C("td",{className:"px-3 py-2 border-b border-border-subtle text-sm text-text-muted",children:N},A))},p))})]});return J("div",{className:c("my-6 rounded-lg border border-border-subtle overflow-hidden",r),children:[C("div",{className:"overflow-x-auto",children:C("table",{className:"w-full border-collapse text-sm",children:v})}),i&&m>1&&J("div",{className:"flex items-center justify-between border-t border-border-subtle px-4 py-3",children:[J("span",{className:"text-xs text-text-muted",children:["Page ",s," of ",m]}),J("div",{className:"flex items-center gap-1",children:[C(ie.Button,{onPress:()=>d(1),isDisabled:s===1,className:"grid place-items-center h-7 w-7 rounded-md text-text-muted outline-none transition-colors hover:bg-bg-surface disabled:opacity-30 disabled:pointer-events-none cursor-pointer",children:C(mn,{size:16})}),C(ie.Button,{onPress:()=>d(y=>Math.max(y-1,1)),isDisabled:s===1,className:"grid place-items-center h-7 w-7 rounded-md text-text-muted outline-none transition-colors hover:bg-bg-surface disabled:opacity-30 disabled:pointer-events-none cursor-pointer",children:C(cn,{size:16})}),C(ie.Button,{onPress:()=>d(y=>Math.min(y+1,m)),isDisabled:s===m,className:"grid place-items-center h-7 w-7 rounded-md text-text-muted outline-none transition-colors hover:bg-bg-surface disabled:opacity-30 disabled:pointer-events-none cursor-pointer",children:C(dn,{size:16})}),C(ie.Button,{onPress:()=>d(m),isDisabled:s===m,className:"grid place-items-center h-7 w-7 rounded-md text-text-muted outline-none transition-colors hover:bg-bg-surface disabled:opacity-30 disabled:pointer-events-none cursor-pointer",children:C(pn,{size:16})})]})]})]})}import{jsx as Q,jsxs as ae}from"react/jsx-runtime";function Zt({name:e,type:t,defaultValue:o,required:r=!1,children:n,id:i,className:l=""}){return ae("article",{className:c("group relative my-6 rounded-xl border border-border-subtle bg-bg-surface p-5 transition-all duration-300","hover:border-primary-500/30 hover:shadow-lg hover:shadow-primary-500/5",l),id:i,children:[ae("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between mb-4",children:[ae("div",{className:"flex flex-wrap items-center gap-2.5",children:[Q("code",{className:"inline-flex items-center rounded-md bg-primary-500/10 px-2.5 py-1 font-mono text-sm font-bold text-primary-400 border border-primary-500/20 shadow-sm transition-colors group-hover:bg-primary-500/15",children:e}),t&&Q("span",{className:"rounded-md bg-bg-muted/80 border border-border-subtle px-2 py-0.5 text-[11px] font-semibold text-text-muted uppercase tracking-wider shadow-sm",children:t}),r&&ae("div",{className:"flex items-center gap-1.5 rounded-full bg-red-500/10 px-2.5 py-0.5 text-[10px] font-bold uppercase tracking-wider text-red-400 border border-red-500/20 shadow-sm",children:[Q("span",{className:"h-1 w-1 rounded-full bg-red-400 animate-pulse"}),"Required"]})]}),o&&ae("div",{className:"flex items-center gap-2 text-[11px] text-text-muted bg-bg-muted/30 px-2.5 py-1 rounded-md border border-border-subtle/50",children:[Q("span",{className:"font-semibold opacity-60 uppercase tracking-tighter",children:"Default"}),Q("code",{className:"font-mono text-text-main font-medium",children:o})]})]}),Q("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 selection:bg-primary-500/30",children:n})]})}import{jsx as fn}from"react/jsx-runtime";function Jt({to:e,children:t,className:o="",...r}){let n=e&&(e.startsWith("http://")||e.startsWith("https://")||e.startsWith("//")),i=c("text-blue-600 hover:text-blue-800 hover:underline cursor-pointer",o);return fn(D,{href:e,className:i,target:n?"_blank":void 0,rel:n?"noopener noreferrer":void 0,...r,children:t})}import{jsx as gn}from"react/jsx-runtime";function Qt({src:e,alt:t,theme:o,...r}){let{theme:n}=et();return o&&o!==n?null:gn("img",{src:e,alt:t||"",...r})}import{jsx as T,jsxs as le}from"react/jsx-runtime";function Yt({title:e,props:t,className:o=""}){return le("div",{className:c("my-6",o),children:[e&&T("h3",{className:"text-base font-bold text-text-main mb-3",children:e}),T("div",{className:"overflow-x-auto rounded-lg border border-border-subtle",children:le("table",{className:"w-full border-collapse text-sm",children:[T("thead",{children:le("tr",{children:[T("th",{className:"text-left px-4 py-3 border-b-2 border-border-subtle text-xs font-bold uppercase tracking-wider text-text-muted",children:"Property"}),T("th",{className:"text-left px-4 py-3 border-b-2 border-border-subtle text-xs font-bold uppercase tracking-wider text-text-muted",children:"Type"}),T("th",{className:"text-left px-4 py-3 border-b-2 border-border-subtle text-xs font-bold uppercase tracking-wider text-text-muted",children:"Default"}),T("th",{className:"text-left px-4 py-3 border-b-2 border-border-subtle text-xs font-bold uppercase tracking-wider text-text-muted",children:"Description"})]})}),T("tbody",{children:t.map((r,n)=>le("tr",{className:"transition-colors hover:bg-bg-surface",children:[le("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:[T("code",{className:"rounded bg-bg-surface px-1.5 py-0.5 font-mono text-xs font-bold text-primary-400",children:r.name}),r.required&&T("span",{className:"ml-1 text-red-400 font-bold",children:"*"})]}),T("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:T("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-text-muted",children:r.type})}),T("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:r.defaultValue?T("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-primary-400",children:r.defaultValue}):T("span",{className:"text-text-dim",children:"\u2014"})}),T("td",{className:"px-4 py-2.5 border-b border-border-subtle text-text-muted",children:r.description})]},`${r.name}-${n}`))})]})})]})}import{useMemo as eo}from"react";function to(e){let{code:t,children:o,preview:r}=e,n=eo(()=>(t??(typeof o=="string"?o:"")).trim(),[t,o]),i=eo(()=>r??(typeof o!="string"?o:null),[r,o]);return{initialCode:n,previewElement:i}}import{jsx as Oe,jsxs as bn}from"react/jsx-runtime";function oo(e){let{highlightedHtml:t,hideCode:o=!1,hideSandbox:r=!1,hideCopy:n=!1,sandboxOptions:i={}}=e,{initialCode:l,previewElement:a}=to(e);return bn("div",{className:"my-6 overflow-hidden rounded-xl border border-border-subtle",children:[Oe("div",{className:"flex items-center justify-center p-8 bg-bg-surface",children:a}),!o&&Oe("div",{className:"border-t border-border-subtle",children:Oe(z,{hideSandbox:r,hideCopy:n,title:i.title,lang:"tsx",highlightedHtml:t,children:l})})]})}import{useState as os}from"react";import{Copy as ao,Check as rs,ExternalLink as ns,ChevronDown as ss}from"lucide-react";import{useState as ql,useEffect as Xl}from"react";import{Button as Jl}from"react-aria-components";import{Search as Yl,Sun as ec,Moon as tc,ExternalLink as oc,ChevronDown as rc}from"lucide-react";import{jsx as ic,jsxs as ac}from"react/jsx-runtime";import*as ce from"react-aria-components";import{ChevronDown as dc}from"lucide-react";import{Fragment as bc,jsx as fc,jsxs as gc}from"react/jsx-runtime";import*as k from"react-aria-components";import{Search as vn,Hash as yn,FileText as Cn,CornerDownLeft as Rn}from"lucide-react";import{Fragment as Sn,jsx as R,jsxs as De}from"react/jsx-runtime";var Nn=({children:e,isOpen:t,onOpenChange:o,className:r})=>R(k.ModalOverlay,{isOpen:t,onOpenChange:o,isDismissable:!0,className:c("fixed inset-0 z-100 bg-black/40 backdrop-blur-sm px-4 py-4 sm:py-20","entering:animate-in entering:fade-in exiting:animate-out exiting:fade-out"),children:R(k.Modal,{className:c("mx-auto w-full max-w-2xl overflow-hidden rounded-xl border border-border-subtle bg-bg-surface shadow-2xl ring-1 ring-black/5 outline-none","entering:animate-in entering:fade-in entering:zoom-in-95 exiting:animate-out exiting:fade-out exiting:zoom-out-95",r),children:R(k.Dialog,{className:"flex flex-col max-h-[70vh] focus:outline-none",children:e})})}),Pn=({children:e,className:t,onSelectionChange:o,...r})=>R("div",{className:t,children:R(k.Autocomplete,{...r,onSelectionChange:o,className:"flex flex-col min-h-0",children:e})}),wn=({className:e,...t})=>De(k.SearchField,{className:"flex items-center gap-3 border-b border-border-subtle px-4 py-4",autoFocus:!0,children:[R(vn,{className:"h-5 w-5 text-text-muted"}),R(k.Input,{...t,className:c("w-full bg-transparent text-lg text-text-main placeholder-text-muted outline-none",e),placeholder:"Search documentation..."}),R("div",{className:"flex items-center gap-1.5 rounded-md border border-border-subtle bg-bg-main px-1.5 py-1 text-[10px] font-medium text-text-muted",children:R("kbd",{className:"font-sans",children:"ESC"})})]}),Tn=({children:e,className:t,...o})=>R(k.ListBox,{...o,className:c("flex-1 overflow-y-auto p-2 outline-none",t),children:e}),kn=({children:e,className:t,...o})=>R(k.ListBoxItem,{...o,className:c("group flex items-center gap-3 rounded-lg p-3 text-left outline-none cursor-pointer transition-colors","text-text-muted hover:bg-bg-main hover:text-text-main focus:bg-primary-500 focus:text-white selected:bg-primary-500 selected:text-white",t),children:r=>De(Sn,{children:[e,(r.isFocused||r.isSelected)&&De("div",{className:"ml-auto opacity-50 flex items-center gap-1",children:[R("span",{className:"text-[10px]",children:"Select"}),R(Rn,{size:10})]})]})}),Ln=({isHeading:e,className:t})=>R("div",{className:c("shrink-0",t),children:e?R(yn,{size:18}):R(Cn,{size:18})}),An=({children:e,className:t})=>R("span",{className:c("block font-medium truncate flex-1 text-sm",t),children:e}),Bn=({children:e,className:t})=>R("span",{className:c("ml-2 text-xs opacity-70 truncate hidden sm:inline group-focus:opacity-100",t),children:e}),yc={Root:Nn,Autocomplete:Pn,Input:wn,List:Tn,Item:Object.assign(kn,{Icon:Ln,Title:An,Bio:Bn})};import{createContext as ro,use as Oc,useEffect as Mn,useImperativeHandle as In,useMemo as Vc,useRef as En,useState as On}from"react";import Dc from"scroll-into-view-if-needed";import{useEffect as wc,useRef as Tc}from"react";import{jsx as Dn}from"react/jsx-runtime";var Wc=ro(null),_c=ro(null);function Vn(e){let[t,o]=On({isOverflowing:!1,isAtBottom:!1});return Mn(()=>{let r=e.current;if(!r)return;let n=()=>{let l=r.scrollHeight>r.clientHeight,a=r.scrollHeight-r.scrollTop<=r.clientHeight+2;o({isOverflowing:l,isAtBottom:a})};n(),r.addEventListener("scroll",n,{passive:!0}),window.addEventListener("resize",n);let i=new MutationObserver(n);return i.observe(r,{childList:!0,subtree:!0}),()=>{r.removeEventListener("scroll",n),window.removeEventListener("resize",n),i.disconnect()}},[e]),t}var Hn=({children:e,className:t,ref:o,...r})=>{let n=En(null);In(o,()=>n.current);let{isOverflowing:i,isAtBottom:l}=Vn(n);return Dn("div",{ref:n,className:c("relative overflow-y-auto boltdocs-otp-content",i&&!l&&"mask-[linear-gradient(to_bottom,black_85%,transparent_100%)]",t),...r,children:e})};Hn.displayName="OnThisPageContent";import*as no from"react-aria-components";import{ChevronLeft as zn,ChevronRight as Fn}from"lucide-react";import{Fragment as qn,jsx as U,jsxs as jn}from"react/jsx-runtime";var $n=({children:e,className:t})=>U("nav",{className:c("grid grid-cols-1 sm:grid-cols-2 gap-4 mt-12 pt-8 border-t border-border-subtle",t),children:e}),Wn=({children:e,to:t,direction:o,className:r})=>{let n=o==="next";return jn(no.Link,{href:t,className:c("flex group items-center p-4 rounded-xl border border-border-subtle bg-bg-surface outline-none","transition-all hover:bg-bg-main hover:border-primary-500 hover:shadow-lg","focus-visible:ring-2 focus-visible:ring-primary-500/30",n?"text-right justify-end":"text-left justify-start",r),children:[!n&&U(zn,{className:"mr-3 h-5 w-5 text-text-muted group-hover:text-primary-500 transition-transform group-hover:-translate-x-1"}),U("div",{className:"flex flex-col gap-1 flex-1",children:e}),n&&U(Fn,{className:"ml-3 h-5 w-5 text-text-muted group-hover:text-primary-500 transition-transform group-hover:translate-x-1"})]})},_n=({children:e,className:t})=>U("span",{className:c("text-xs font-medium uppercase tracking-wider text-text-muted",t),children:e}),Gn=({children:e,className:t})=>U("span",{className:c("text-base font-bold text-text-main truncate",t),children:e}),Un=({children:e})=>U(qn,{children:e}),Kc={PageNavRoot:$n,PageNavLink:Object.assign(Wn,{Title:_n,Description:Gn,Icon:Un})};import{jsx as od}from"react/jsx-runtime";import*as Xn from"react-aria-components";import{ChevronRight as id}from"lucide-react";import{jsx as dd,jsxs as md}from"react/jsx-runtime";import{Breadcrumb as fd,Breadcrumbs as gd,Link as bd}from"react-aria-components";import{ChevronRight as hd}from"lucide-react";import{jsx as Rd}from"react/jsx-runtime";import{jsx as Kn}from"react/jsx-runtime";var so=({children:e,className:t,vertical:o=!1})=>Kn("div",{className:c("inline-flex",o?"flex-col":"flex-row",!o&&["[&>*:not(:first-child)]:-ml-px","[&>*:first-child]:rounded-r-none","[&>*:last-child]:rounded-l-none","[&>*:not(:first-child):not(:last-child)]:rounded-none",t?.includes("rounded-full")&&["[&>*:first-child]:rounded-l-full","[&>*:last-child]:rounded-r-full"],t?.includes("rounded-xl")&&["[&>*:first-child]:rounded-l-xl","[&>*:last-child]:rounded-r-xl"],t?.includes("rounded-lg")&&["[&>*:first-child]:rounded-l-lg","[&>*:last-child]:rounded-r-lg"]],o&&["[&>*:not(:first-child)]:-mt-px","[&>*:first-child]:rounded-b-none","[&>*:last-child]:rounded-t-none","[&>*:not(:first-child):not(:last-child)]:rounded-none",t?.includes("rounded-full")&&["[&>*:first-child]:rounded-t-full","[&>*:last-child]:rounded-b-full"]],t),children:e});import{Check as Jn,ChevronRight as Qn,Dot as Yn}from"lucide-react";import es from"react";import*as L from"react-aria-components";import*as Y from"react-aria-components";import{jsx as ze,jsxs as Zn}from"react/jsx-runtime";var io=({children:e,className:t,showArrow:o,...r})=>Zn(Y.Popover,{offset:8,...r,className:Y.composeRenderProps(t,n=>c("z-50 overflow-auto rounded-xl border border-border-subtle bg-bg-surface/80 shadow-xl backdrop-blur-md outline-none","entering:animate-in entering:fade-in entering:zoom-in-95 exiting:animate-out exiting:fade-out exiting:zoom-out-95 fill-mode-forwards",n)),children:[o&&ze(Y.OverlayArrow,{className:"group",children:ze("svg",{viewBox:"0 0 12 12",className:"block h-3 w-3 fill-bg-surface/80 stroke-border-subtle group-placement-bottom:rotate-180 group-placement-left:-rotate-90 group-placement-right:rotate-90","aria-hidden":"true",children:ze("path",{d:"M0 0 L6 6 L12 0"})})}),e]});import{Fragment as ts,jsx as j,jsxs as Fe}from"react/jsx-runtime";function Ve(e){let[t,o]=es.Children.toArray(e.children).slice(0,2);return Fe(L.MenuTrigger,{...e,children:[t,j(io,{placement:e.placement,className:"min-w-[200px]",children:o})]})}function He(e){return j(L.Menu,{...e,className:L.composeRenderProps(e.className,t=>c("p-1.5 outline-none max-h-[inherit] overflow-auto",t))})}function he(e){let t=e.textValue||(typeof e.children=="string"?e.children:void 0);return j(L.MenuItem,{...e,textValue:t,className:L.composeRenderProps(e.className,(o,{isFocused:r,isPressed:n,isDisabled:i})=>c("group relative flex flex-row items-center gap-2.5 px-3 py-1.5 rounded-lg outline-none cursor-default transition-all duration-200","text-text-main text-[0.8125rem]",r&&"bg-primary-500/10 text-primary-600 shadow-sm",n&&"scale-[0.98] bg-primary-500/15",i&&"opacity-40 grayscale pointer-events-none",o)),children:L.composeRenderProps(e.children,(o,{selectionMode:r,isSelected:n,hasSubmenu:i})=>Fe(ts,{children:[r!=="none"&&Fe("span",{className:"flex items-center w-4 h-4 shrink-0 justify-center",children:[n&&r==="multiple"&&j(Jn,{className:"w-3.5 h-3.5 stroke-[2.5px] text-primary-500 animate-in zoom-in-50 duration-200"}),n&&r==="single"&&j(Yn,{className:"w-6 h-6 text-primary-500 animate-in zoom-in-50 duration-200"})]}),j("div",{className:"flex-1 flex flex-row items-center gap-2.5 truncate font-medium",children:o}),i&&j(Qn,{className:"w-4 h-4 ml-auto text-text-muted group-focused:text-primary-500/70 transition-colors"})]}))})}import{Separator as xn,ToggleButton as hn}from"react-aria-components";import{jsx as I,jsxs as de}from"react/jsx-runtime";var is=e=>{let[t,o]=os(!1);return{copied:t,handleCopy:()=>{navigator.clipboard.writeText(e),o(!0),setTimeout(()=>o(!1),2e3)},handleOpenRaw:()=>{let i=new Blob([e],{type:"text/plain;charset=utf-8"}),l=URL.createObjectURL(i);window.open(l,"_blank")}}};function lo({content:e,mdxRaw:t,config:o}){let r=t||e||"",{copied:n,handleCopy:i,handleOpenRaw:l}=is(r),a=o!==!1,s=typeof o=="object"&&o.text||"Copy Markdown";return!a||!r?null:I("div",{className:"relative inline-flex z-100 flex-shrink-0 w-max translate-y-0 active:translate-y-px transition-transform duration-200",children:de(so,{className:"rounded-xl border border-border-subtle bg-bg-surface/40 backdrop-blur-md transition-all duration-300 hover:border-primary-500/50 hover:shadow-lg hover:shadow-primary-500/5 group overflow-hidden",children:[I(K,{variant:"ghost",onPress:i,icon:n?I(rs,{size:16}):I(ao,{size:16}),iconPosition:"left",className:c("px-5 py-2 bg-transparent text-[0.8125rem] font-semibold h-9 border-none shrink-0","text-text-main transition-all duration-300 hover:bg-primary-500/5",n&&"text-emerald-500 hover:bg-emerald-500/5"),children:n?"Copied!":s}),de(Ve,{placement:"bottom end",children:[I(K,{variant:"ghost",isIconOnly:!0,icon:I(ss,{size:14}),className:c("px-3.5 h-9 border-l border-border-subtle/50 text-text-muted rounded-none bg-transparent shrink-0","transition-all duration-300 hover:bg-primary-500/5 hover:text-primary-500")}),de(He,{className:"w-52",children:[de(he,{onAction:i,className:"flex flex-row items-start gap-2.5 group",children:[I(ao,{size:16,className:"w-4 h-4 shrink-0 mt-0.5 transition-transform duration-200 group-hover:-translate-y-0.5 text-text-muted group-hover:text-primary-500"}),I("span",{className:"font-medium text-[0.8125rem]",children:"Copy Markdown"})]}),de(he,{onAction:l,className:"flex flex-row items-start gap-2.5 group",children:[I(ns,{size:16,className:"w-4 h-4 shrink-0 mt-0.5 transition-transform duration-200 group-hover:-translate-y-0.5 text-text-muted group-hover:text-primary-500"}),I("span",{className:"font-medium text-[0.8125rem]",children:"View as Markdown"})]})]})]})]})})}import{useEffect as as,useState as ls}from"react";import{jsx as _,jsxs as We}from"react/jsx-runtime";function co(){let[e,t]=ls(0);as(()=>{let r=0,n=!0,i=setInterval(()=>{n?(r+=1,r>=100&&(r=100,n=!1)):(r-=1,r<=0&&(r=0,n=!0)),t(r)},20);return()=>clearInterval(i)},[]);let o=`inset(${100-e}% 0 0 0)`;return _("div",{className:"flex flex-col items-center justify-center min-h-[60vh] p-4 text-center",children:_("div",{className:"relative group",children:We("div",{className:"relative inline-block",children:[We("svg",{className:"w-24 h-auto opacity-10 filter grayscale brightness-50",viewBox:"0 0 60 51",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:"img","aria-hidden":"true",children:[_("title",{children:"Loading indicator background"}),_("path",{d:"M29.4449 0H19.4449V16.5L29.4449 6.5V0Z",fill:"currentColor"}),_("path",{d:"M26.9449 22.7265C26.9449 22.5077 21.2201 27.0658 16.9449 28.5C13.7491 29.5721 12.3156 29.5038 8.94486 29.5C5.59532 29.4963 0 28.5 0 28.5C0 28.5 5.57953 28.5146 8.94486 27.5C12.5409 26.4158 14.8203 25.5843 17.9449 23.5C23.3445 19.898 29.4449 11.5 29.4449 11.5L29.9449 18C29.9449 18 33.5825 15.8308 36.4449 15C39.4452 14.1291 44.4449 14 44.4449 14C44.4449 14 36.9449 19 34.4449 21.5C31.5322 24.4126 29.8582 26.9017 29.4449 31C29.1217 34.2041 29.4771 36.4508 31.4449 39C33.5792 41.765 35.952 43.0183 39.4449 43C42.677 42.9831 45.3003 42.4182 47.4449 40C49.7406 37.4113 50.2495 34.4466 49.9449 31C49.6603 27.7804 48.4876 25.4953 45.9449 23.5C43.2931 21.4191 36.4449 24 36.4449 24L47.9449 15C47.9449 15 51.5761 16.771 53.4449 18.5C55.711 20.5967 56.7467 22.1546 57.9449 25C59.1784 27.9295 59.4832 29.8216 59.4449 33C59.4089 35.9867 59.179 37.78 57.9449 40.5C56.8475 42.9185 55.8511 44.6507 53.9449 46.5C51.9236 48.4609 50.5803 49.0076 47.9449 50C45.5414 50.9051 44.0131 51 41.4449 51C38.8766 51 37.3235 50.9685 34.9449 50C32.4851 48.9985 29.4449 46 29.4449 46V51H19.4449V37.9904L22.9449 31.4226L26.9449 22.7265Z",fill:"currentColor"})]}),We("svg",{className:"absolute top-0 left-0 w-24 h-auto text-primary-500 drop-shadow-[0_0_20px_rgba(var(--primary-rgb),0.5)] transition-[clip-path] duration-100 ease-linear",style:{clipPath:o},viewBox:"0 0 60 51",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:"img","aria-hidden":"true",children:[_("title",{children:"Loading indicator animated fill"}),_("path",{d:"M29.4449 0H19.4449V16.5L29.4449 6.5V0Z",fill:"currentColor"}),_("path",{d:"M26.9449 22.7265C26.9449 22.5077 21.2201 27.0658 16.9449 28.5C13.7491 29.5721 12.3156 29.5038 8.94486 29.5C5.59532 29.4963 0 28.5 0 28.5C0 28.5 5.57953 28.5146 8.94486 27.5C12.5409 26.4158 14.8203 25.5843 17.9449 23.5C23.3445 19.898 29.4449 11.5 29.4449 11.5L29.9449 18C29.9449 18 33.5825 15.8308 36.4449 15C39.4452 14.1291 44.4449 14 44.4449 14C44.4449 14 36.9449 19 34.4449 21.5C31.5322 24.4126 29.8582 26.9017 29.4449 31C29.1217 34.2041 29.4771 36.4508 31.4449 39C33.5792 41.765 35.952 43.0183 39.4449 43C42.677 42.9831 45.3003 42.4182 47.4449 40C49.7406 37.4113 50.2495 34.4466 49.9449 31C49.6603 27.7804 48.4876 25.4953 45.9449 23.5C43.2931 21.4191 36.4449 24 36.4449 24L47.9449 15C47.9449 15 51.5761 16.771 53.4449 18.5C55.711 20.5967 56.7467 22.1546 57.9449 25C59.1784 27.9295 59.4832 29.8216 59.4449 33C59.4089 35.9867 59.179 37.78 57.9449 40.5C56.8475 42.9185 55.8511 44.6507 53.9449 46.5C51.9236 48.4609 50.5803 49.0076 47.9449 50C45.5414 50.9051 44.0131 51 41.4449 51C38.8766 51 37.3235 50.9685 34.9449 50C32.4851 48.9985 29.4449 46 29.4449 46V51H19.4449V37.9904L22.9449 31.4226L26.9449 22.7265Z",fill:"currentColor"})]})]})})})}import{jsx as V,jsxs as ds}from"react/jsx-runtime";var ee=({level:e,id:t,children:o,...r})=>{let n=`h${e}`;return ds(n,{id:t,...r,className:"boltdocs-heading",children:[o,t&&V("a",{href:`#${t}`,className:"header-anchor","aria-label":"Anchor",children:V(cs,{size:16})})]})},mo={...$e,Loading:co,h1:e=>V(ee,{level:1,...e}),h2:e=>V(ee,{level:2,...e}),h3:e=>V(ee,{level:3,...e}),h4:e=>V(ee,{level:4,...e}),h5:e=>V(ee,{level:5,...e}),h6:e=>V(ee,{level:6,...e}),pre:e=>V(z,{...e,children:e.children})};import{useLocation as ps}from"react-router-dom";import{Fragment as gs,jsx as h,jsxs as ve}from"react/jsx-runtime";function us(){let{currentLocale:e,config:t}=te();return Ge(()=>{if(!t.i18n)return;let o=t.i18n.localeConfigs?.[e];document.documentElement.lang=o?.htmlLang||e||"en",document.documentElement.dir=o?.direction||"ltr"},[e,t.i18n]),null}function fs(){let e=ps(),{config:t}=te(),o=E(l=>l.setLocale),r=E(l=>l.setVersion),n=E(l=>l.currentLocale),i=E(l=>l.currentVersion);return Ge(()=>{let l=e.pathname.split("/").filter(Boolean),a=0,s=t.versions?.defaultVersion,d=t.i18n?.defaultLocale;if(l[a]==="docs"&&a++,t.versions&&l.length>a){let m=t.versions.versions.find(g=>g.path===l[a]);m&&(s=m.path,a++)}t.i18n&&l.length>a&&t.i18n.locales[l[a]]?d=l[a]:t.i18n&&l.length===0&&(d=n||t.i18n.defaultLocale),d!==n&&o(d),s!==i&&r(s)},[e.pathname,t,o,r,n,i]),null}function fo({initialRoutes:e,initialConfig:t,docsDirName:o,modules:r,hot:n,homePage:i,externalPages:l,components:a={}}){let[s,d]=po(e),[m,g]=po(t),b=l||{},x=uo(()=>s.filter(p=>!(i&&(p.path==="/"||p.path===""))&&!b[p.path===""?"/":p.path]).map(p=>{let N=Object.keys(r).find(B=>B===`/${o}/${p.filePath}`||B.endsWith(`/${o}/${p.filePath}`)||B.endsWith(`/${o}\\${p.filePath.replace(/\\/g,"/")}`)),A=N?r[N]:null;return{...p,Component:_e.lazy(async()=>A?await A():{default:Re})}}),[s,r,o,i,b]);Ge(()=>{n&&(n.on("boltdocs:routes-update",p=>{d(p)}),n.on("boltdocs:config-update",p=>{g(p)}))},[n]);let v=uo(()=>({...mo,...a}),[a]),y=v.Loading;return h(Ye,{children:h(at,{components:v,children:h(ye.Provider,{value:m,children:h(tt,{children:ve(qe,{routes:s,modules:r,children:[h(ot,{}),h(fs,{}),h(us,{}),ve(ms,{children:[h(q,{element:h(nt,{}),children:x.map(p=>h(q,{path:p.path===""?"/":p.path,element:h(_e.Suspense,{fallback:h(y,{}),children:h(ct,{Component:p.Component})})},p.path))},"docs-layout"),i&&ve(gs,{children:[h(q,{path:"/",element:h(me,{children:h(i,{})})}),m.i18n&&Object.keys(m.i18n.locales).map(p=>h(q,{path:`/${p}`,element:h(me,{children:h(i,{})})},`home-${p}`))]}),Object.entries(b).map(([p,N])=>{let A=p==="/"?"":p;return ve(_e.Fragment,{children:[h(q,{path:p,element:h(me,{children:h(N,{})})}),m.i18n&&Object.keys(m.i18n.locales).map(B=>h(q,{path:`/${B}${A}`,element:h(me,{children:h(N,{})})},`${p}-${B}`))]},p)}),h(q,{path:"*",element:h(me,{children:h(Re,{})})})]})]})})})})})}import{jsx as Ue}from"react/jsx-runtime";async function ap(e){let{path:t,routes:o,config:r,modules:n,homePage:i,externalPages:l,docsDirName:a}=e,s={};for(let[m,g]of Object.entries(n))s[m]=()=>Promise.resolve(g);return xs.renderToString(Ue(bs.StrictMode,{children:Ue(hs,{location:t,children:Ue(fo,{initialRoutes:o,initialConfig:r,docsDirName:a,modules:s,homePage:i,externalPages:l})})}))}export{ap as render};
|
|
1
|
+
var So=Object.defineProperty;var Mo=(e,t)=>{for(var o in t)So(e,o,{get:t[o],enumerable:!0})};import ks from"react";import Ls from"react-dom/server";import{StaticRouter as As}from"react-router-dom/server";import rt,{useEffect as nt,useState as To,useMemo as ko}from"react";import tm from"react-dom/client";import{BrowserRouter as rm,Routes as Cs,Route as ee}from"react-router-dom";import{ArrowLeft as Xo}from"lucide-react";import lt from"react";import{Link as _o}from"react-aria-components";import{useLocation as Uo}from"react-router-dom";import{createContext as Bo,use as Io}from"react";var Oe=Bo(null);function G(){let e=Io(Oe);if(!e)throw new Error("useConfig must be used within a ConfigProvider");return e}import{useLocation as $o}from"react-router-dom";import{createContext as Eo,use as Oo,useCallback as Vo,useRef as zo}from"react";import{jsx as Ho}from"react/jsx-runtime";var at=Eo({preload:()=>{},routes:[]});function Ne(){return Oo(at)}function it({routes:e,modules:t,children:o}){let r=zo(null),n=Vo(a=>{r.current&&clearTimeout(r.current),r.current=setTimeout(()=>{let i=a.split("#")[0].split("?")[0],l=e.find(s=>s.path===i||i==="/"&&s.path==="");if(l?.filePath){let s=Object.keys(t).find(d=>d.endsWith("/"+l.filePath));s&&t[s]().catch(d=>{console.error(`[boltdocs] Failed to preload route ${a}:`,d)})}},100)},[e,t]);return Ho(at.Provider,{value:{preload:n,routes:e},children:o})}import{create as Do}from"zustand";import{persist as Fo,createJSONStorage as Wo}from"zustand/middleware";var F=Do()(Fo(e=>({currentLocale:void 0,currentVersion:void 0,hasHydrated:!1,setLocale:t=>e({currentLocale:t}),setVersion:t=>e({currentVersion:t}),setHasHydrated:t=>e({hasHydrated:t})}),{name:"boltdocs-storage",storage:Wo(()=>localStorage),partialize:e=>({currentLocale:e.currentLocale,currentVersion:e.currentVersion}),onRehydrateStorage:()=>e=>{e?.setHasHydrated(!0)}}));function me(){let{routes:e}=Ne(),t=G(),o=$o(),r=F(x=>x.currentLocale),n=F(x=>x.currentVersion),a=F(x=>x.hasHydrated),i=e.find(x=>x.path===o.pathname),l=t.i18n?i?.locale||(a?r:void 0)||t.i18n.defaultLocale:void 0,s=t.versions?i?.version||(a?n:void 0)||t.versions.defaultVersion:void 0,d=e.filter(x=>{let I=t.i18n?(x.locale||t.i18n.defaultLocale)===l:!0,b=t.versions?(x.version||t.versions.defaultVersion)===s:!0;if(!(I&&b))return!1;let O=t.i18n;if(O){let j=!!i?.locale,E=!!x.locale;if(e.some(Re=>Re!==x&&Re.filePath===x.filePath&&Re.version===x.version&&(Re.locale||O.defaultLocale)===(x.locale||O.defaultLocale))&&j!==E)return!1}return!0}),m=t.i18n?.localeConfigs?.[l]?.label||t.i18n?.locales[l]||l,h=t.versions?.versions.find(x=>x.path===s)?.label||s,y=t.i18n?Object.entries(t.i18n.locales).map(([x,I])=>{let b=t.i18n?.localeConfigs?.[x];return{key:x,label:b?.label||I,isCurrent:x===l}}):[],C=t.versions?t.versions.versions.map(x=>({key:x.path,label:x.label,isCurrent:x.path===s})):[];return{routes:d,allRoutes:e,currentRoute:i,currentLocale:l,currentLocaleLabel:m,availableLocales:y,currentVersion:s,currentVersionLabel:h,availableVersions:C,config:t}}function Ve(e){let t=G(),{currentLocale:o,currentVersion:r}=me();if(!t||typeof e!="string"||e.startsWith("http")||e.startsWith("//"))return e;let n=t.i18n,a=t.versions;if(!n&&!a)return e;let i=e.startsWith("/docs"),l=e.split("/").filter(Boolean),s=0;l[s]==="docs"&&s++,a&&l.length>s&&a.versions.find(h=>h.path===l[s])&&s++,n&&l.length>s&&n.locales[l[s]]&&s++;let d=l.slice(s),p=[];i&&(p.push("docs"),a&&r&&p.push(r)),n&&o&&o!==n.defaultLocale&&p.push(o),p.push(...d);let m=`/${p.join("/")}`;return m.length>1&&m.endsWith("/")?m.slice(0,-1):m||"/"}import{clsx as jo}from"clsx";import{twMerge as Go}from"tailwind-merge";function c(...e){return Go(jo(e))}import{jsx as ct}from"react/jsx-runtime";var _=lt.forwardRef((e,t)=>{let{href:o,prefetch:r="hover",onMouseEnter:n,onFocus:a,...i}=e,l=Ve(o??""),{preload:s}=Ne();return ct(_o,{...i,ref:t,href:l,onMouseEnter:m=>{n?.(m),r==="hover"&&typeof l=="string"&&l.startsWith("/")&&s(l)},onFocus:m=>{a?.(m),r==="hover"&&typeof l=="string"&&l.startsWith("/")&&s(l)}})});_.displayName="Link";var qo=lt.forwardRef((e,t)=>{let{href:o,end:r=!1,className:n,children:a,...i}=e,l=Uo(),s=Ve(o??""),d=r?l.pathname===s:l.pathname.startsWith(s),p=typeof n=="function"?n({isActive:d}):c(n,d&&"active"),m=typeof a=="function"?a({isActive:d}):a;return ct(_,{...i,ref:t,href:o,className:p,children:m})});qo.displayName="NavLink";import{jsx as ue,jsxs as dt}from"react/jsx-runtime";function ze(){return ue("div",{className:"flex items-center justify-center min-h-[60vh] text-center",children:dt("div",{className:"space-y-4",children:[ue("span",{className:"text-8xl font-black tracking-tighter text-primary-500/20",children:"404"}),ue("h1",{className:"text-2xl font-bold text-text-main",children:"Page Not Found"}),ue("p",{className:"text-sm text-text-muted max-w-sm mx-auto",children:"The page you're looking for doesn't exist or has been moved."}),dt(_,{href:"/",className:"inline-flex items-center gap-2 rounded-lg bg-primary-500 px-5 py-2.5 text-sm font-semibold text-white outline-none transition-all hover:brightness-110 hover:shadow-lg focus-visible:ring-2 focus-visible:ring-primary-500/30",children:[ue(Xo,{size:16})," Go to Home"]})]})})}import{createContext as Jo,use as Ko,useEffect as pt,useState as He}from"react";import{jsx as Yo}from"react/jsx-runtime";var mt=Jo(void 0);function ut({children:e}){let[t,o]=He("system"),[r,n]=He("dark"),[a,i]=He(!1);pt(()=>{i(!0);let s=localStorage.getItem("boltdocs-theme"),d=s==="light"||s==="dark"||s==="system"?s:"system";o(d);let p=window.matchMedia("(prefers-color-scheme: dark)");((h,y)=>{n(h==="system"?y?"dark":"light":h)})(d,p.matches);let g=h=>{n(y=>(localStorage.getItem("boltdocs-theme")||"system")==="system"?h.matches?"dark":"light":y)};return p.addEventListener("change",g),()=>p.removeEventListener("change",g)},[]),pt(()=>{if(!a)return;let s=window.matchMedia("(prefers-color-scheme: dark)").matches,d=t==="system"?s?"dark":"light":t;n(d);let p=document.documentElement;d==="light"?(p.classList.add("theme-light"),p.dataset.theme="light"):(p.classList.remove("theme-light"),p.dataset.theme="dark")},[t,a]);let l=s=>{o(s),localStorage.setItem("boltdocs-theme",s)};return Yo(mt.Provider,{value:{theme:t,resolvedTheme:r,setTheme:l},children:e})}function ft(){let e=Ko(mt);if(e===void 0)throw new Error("useTheme must be used within a ThemeProvider");return e}import Lo from"virtual:boltdocs-layout";import{startTransition as Zo}from"react";import{RouterProvider as Qo}from"react-aria-components";import{useNavigate as er,useHref as tr}from"react-router-dom";import{jsx as or}from"react/jsx-runtime";function gt({children:e}){let t=er();return or(Qo,{navigate:(o,r)=>{Zo(()=>{t(o,r)})},useHref:tr,children:e})}import{useLayoutEffect as rr}from"react";import{useLocation as nr}from"react-router-dom";function xt(){let{pathname:e,hash:t}=nr();return rr(()=>{let o=document.querySelector(".boltdocs-content")||window,r=()=>o===window?window.scrollY:o.scrollTop,n=(a,i="auto")=>{o===window?window.scrollTo({top:a,behavior:i}):o.scrollTo({top:a,behavior:i})};if(t){let a=t.replace("#",""),i=document.getElementById(a);if(i){let s=o===window?0:o.getBoundingClientRect().top,m=i.getBoundingClientRect().top-s-80+r();n(m,"smooth");return}}n(0)},[e,t]),null}import{Outlet as sr}from"react-router-dom";import ar from"virtual:boltdocs-layout";import{jsx as bt}from"react/jsx-runtime";function ht(){return bt(ar,{children:bt(sr,{})})}import{MDXProvider as dr}from"@mdx-js/react";import{createContext as ir,use as lr}from"react";import{jsx as cr}from"react/jsx-runtime";var vt=ir({});function yt(){return lr(vt)}function Ct({components:e,children:t}){return cr(vt.Provider,{value:e,children:t})}import{jsx as Rt}from"react/jsx-runtime";function Nt({Component:e}){let t=yt();return Rt(dr,{components:t,children:Rt(e,{})})}import{Link as vs}from"lucide-react";var ot={};Mo(ot,{Admonition:()=>W,Badge:()=>Dt,Button:()=>Pt,Card:()=>Gt,Cards:()=>jt,Caution:()=>Qt,CodeBlock:()=>U,ComponentPreview:()=>go,ComponentProps:()=>mo,CopyMarkdown:()=>No,Danger:()=>Kt,Field:()=>lo,FileTree:()=>oo,Image:()=>po,Important:()=>Zt,InfoBox:()=>Yt,Link:()=>co,List:()=>eo,Note:()=>qt,Tab:()=>Ot,Table:()=>io,Tabs:()=>Vt,Tip:()=>Xt,Video:()=>Ht,Warning:()=>Jt});import*as we from"react-aria-components";import{cva as pr}from"class-variance-authority";import{Fragment as mr,jsx as te,jsxs as ur}from"react/jsx-runtime";var Pe=pr("flex flex-row items-center justify-center w-auto font-semibold tracking-tight no-underline whitespace-nowrap select-none outline-none transition-all duration-200 cursor-pointer pressed:scale-[0.97] hover:-translate-y-px leading-none",{variants:{variant:{primary:"bg-primary-500 text-white shadow-md hover:brightness-110 hover:shadow-lg",secondary:"bg-bg-surface text-text-main border border-border-subtle hover:bg-bg-muted hover:border-border-strong",outline:"bg-transparent text-text-main border border-border-strong hover:bg-bg-surface hover:border-primary-500",ghost:"bg-transparent text-text-muted hover:bg-bg-surface hover:text-text-main",danger:"bg-[var(--color-danger-500)]/10 text-[var(--color-danger-500)] border border-[var(--color-danger-500)]/20 hover:bg-[var(--color-danger-500)]/15",success:"bg-[var(--color-success-500)]/10 text-[var(--color-success-500)] border border-[var(--color-success-500)]/20 hover:bg-[var(--color-success-500)]/15",warning:"bg-[var(--color-warning-500)]/10 text-[var(--color-warning-500)] border border-[var(--color-warning-500)]/20 hover:bg-[var(--color-warning-500)]/15",info:"bg-[var(--color-info-500)]/10 text-[var(--color-info-500)] border border-[var(--color-info-500)]/20 hover:bg-[var(--color-info-500)]/15",subtle:"bg-primary-500/10 text-primary-500 hover:bg-primary-500/20",link:"bg-transparent text-primary-500 !p-0 !min-h-0 hover:underline"},size:{sm:"min-h-8 px-3.5 text-[0.8125rem] gap-1.5",md:"min-h-10 px-5 text-[0.9375rem] gap-2",lg:"min-h-12 px-7 text-[1.05rem] gap-2.5"},rounded:{none:"rounded-none",sm:"rounded-sm",md:"rounded-md",lg:"rounded-lg",full:"rounded-full"},iconSize:{sm:"w-8 h-8 p-0",md:"w-10 h-10 p-0",lg:"w-12 h-12 p-0"},disabled:{true:"opacity-50 cursor-not-allowed pointer-events-none",false:null}},defaultVariants:{variant:"primary",size:"md",rounded:"md"}}),fe=({href:e,icon:t,iconPosition:o="left",isIconOnly:r,children:n,className:a,variant:i,size:l,rounded:s,iconSize:d,disabled:p,...m})=>{let g=r||!n&&!!t,h=g?te("span",{className:"inline-flex items-center justify-center [&>svg]:w-[1.2rem] [&>svg]:h-[1.2rem]",children:t}):ur(mr,{children:[t&&o==="left"&&te("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t}),te("span",{className:"flex items-center",children:n}),t&&o==="right"&&te("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t})]});return e?te(we.Link,{href:e,className:c(Pe({variant:i,size:l,rounded:s,iconSize:g?d:void 0,disabled:p}),a),...m,children:h}):te(we.Button,{className:c(Pe({variant:i,size:l,rounded:s,iconSize:g?d:void 0,disabled:p}),a),...m,children:h})};import{jsx as fr}from"react/jsx-runtime";var Pt=({className:e,variant:t,size:o,rounded:r,iconSize:n,disabled:a,...i})=>fr(fe,{className:c("group",Pe({variant:t,size:o,rounded:r,iconSize:n,disabled:a,className:e})),...i});import*as Me from"react-aria-components";import{Copy as Cr,Check as Rr,File as Nr}from"lucide-react";import{getParameters as wt}from"codesandbox/lib/api/define.js";function Tt(e){let t=e.files||{},o=e.dependencies||{},r=e.devDependencies||{},n=e.title||"codesandbox-project",a=e.description||"Generic Sandbox",i={};for(let[l,s]of Object.entries(t)){let d=typeof s.content=="object"?JSON.stringify(s.content,null,2):s.content;i[l]={content:d,isBinary:s.isBinary??!1}}if(!i["package.json"]){let s=e.template==="vite"||!!r.vite||!!r["@vitejs/plugin-react"]?{dev:"vite",build:"vite build",preview:"vite preview"}:{start:"node index.js"};i["package.json"]={content:JSON.stringify({private:!0,name:n,description:a,type:"module",version:"1.0.0",scripts:e.scripts||s,dependencies:o,devDependencies:r},null,2),isBinary:!1}}return i}function gr(e){let t=Tt(e),o=wt({files:t}),r=new URLSearchParams({parameters:o,installDependencies:"true"});return e.entry&&r.set("file",`/${e.entry}`),{parameters:o,url:`https://codesandbox.io/api/v1/sandboxes/define?${r.toString()}`,options:e}}function kt(e){if(typeof window>"u")return gr(e);let t=Tt(e),o=wt({files:t}),r=e.entry||"src/App.tsx",n=document.createElement("form");n.method="POST",n.target="_blank",n.action="https://codesandbox.io/api/v1/sandboxes/define",n.style.display="none";let a=(l,s)=>{let d=document.createElement("input");d.type="hidden",d.name=l,d.value=s,n.appendChild(d)},i=new URLSearchParams({file:`/${r}`,eslint:"0",codemirror:"1",installDependencies:"true"});return a("query",i.toString()),a("parameters",o),document.body.appendChild(n),n.submit(),document.body.removeChild(n),{parameters:o,url:`https://codesandbox.io/api/v1/sandboxes/define?parameters=${o}`,options:e}}var Lt=async e=>{try{return await navigator.clipboard.writeText(e),!0}catch{let t=document.createElement("textarea");return t.value=e,t.style.position="fixed",t.style.opacity="0",document.body.appendChild(t),t.select(),document.execCommand("copy"),document.body.removeChild(t),!0}};import{useCallback as At,useEffect as xr,useRef as br,useState as De}from"react";function St(e){let{title:t,sandbox:o}=e,[r,n]=De(!1),[a,i]=De(!1),[l,s]=De(!1),d=br(null),p=G(),m=At(async()=>{let h=d.current?.textContent??"";Lt(h),n(!0),setTimeout(()=>n(!1),2e3)},[]),g=At(()=>{let h=d.current?.textContent??"",y=p?.integrations?.sandbox?.config||{},C=typeof o=="object"?o:y,x=C.entry||"src/App.tsx";kt({title:t??"Code Snippet",...C,files:{...C.files,[x]:{content:h}}})},[t,p,o]);return xr(()=>{let h=d.current?.textContent?.length??0;s(h>120)},[e.children,e.highlightedHtml]),{copied:r,isExpanded:a,setIsExpanded:i,isExpandable:l,preRef:d,handleCopy:m,handleSandbox:g,shouldTruncate:l&&!a}}import{jsx as R,jsxs as z}from"react/jsx-runtime";function V(e){let{size:t=20,...o}=e;return{...o,width:t,height:t}}var Mt=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...V(e),children:[R("title",{children:"CodeSandbox"}),R("path",{d:"M0 24h24V0H0v2.455h21.546v19.09H2.454V0H0Z"})]});var Te=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...V(e),children:[R("title",{children:"TypeScript"}),R("path",{fill:"#2563EB",d:"M3.234 9.093V7.318h8.363v1.775H8.479V17.5H6.352V9.093H3.234zm15.263 1.153c-.04-.4-.21-.712-.512-.934-.301-.222-.71-.333-1.228-.333-.351 0-.648.05-.89.149-.242.096-.427.23-.557.403a.969.969 0 0 0-.189.586.838.838 0 0 0 .115.477c.086.136.204.254.353.353.149.097.321.181.517.254.195.07.404.13.626.179l.915.219c.444.1.852.232 1.223.397.371.166.693.37.965.612.271.242.482.527.631.855.152.328.23.704.234 1.129-.004.623-.163 1.163-.478 1.62-.311.454-.762.807-1.352 1.06-.587.248-1.294.372-2.123.372-.822 0-1.538-.126-2.147-.378-.607-.252-1.081-.624-1.422-1.118-.338-.497-.516-1.112-.532-1.845h2.083c.023.342.12.627.293.855.176.226.41.397.701.513a2.8 2.8 0 0 0 1 .168c.364 0 .68-.053.949-.159a1.45 1.45 0 0 0 .631-.442c.15-.189.224-.406.224-.651a.846.846 0 0 0-.204-.577c-.132-.156-.328-.288-.586-.398a5.964 5.964 0 0 0-.94-.298l-1.109-.278c-.858-.21-1.536-.536-2.033-.98-.497-.444-.744-1.042-.74-1.795-.004-.616.16-1.155.491-1.615.335-.461.794-.82 1.377-1.08.584-.258 1.247-.387 1.99-.387.755 0 1.414.13 1.978.388.567.258 1.007.618 1.322 1.079.315.46.477.994.488 1.6h-2.064z"})]}),ke=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...V(e),children:[R("title",{children:"JavaScript"}),R("path",{fill:"#F59E0B",d:"M8.383 7.318h2.127v7.1c0 .656-.147 1.226-.442 1.71a2.924 2.924 0 01-1.218 1.118c-.52.262-1.125.393-1.815.393-.613 0-1.17-.107-1.67-.323a2.67 2.67 0 01-1.183-.994c-.292-.448-.436-1.01-.433-1.686h2.143c.006.269.061.5.164.691.106.19.25.335.432.438.186.1.405.15.657.15.265 0 .488-.057.67-.17.186-.116.327-.285.423-.507.096-.222.145-.496.145-.82v-7.1zm9.43 2.928c-.04-.4-.21-.712-.511-.934-.302-.222-.711-.333-1.228-.333-.352 0-.648.05-.89.149-.242.096-.428.23-.557.403a.969.969 0 00-.19.586.838.838 0 00.115.477c.087.136.204.254.353.353.15.097.322.181.517.254.196.07.405.13.627.179l.915.219c.444.1.851.232 1.223.397.37.166.692.37.964.612s.482.527.631.855a2.7 2.7 0 01.234 1.129c-.003.623-.162 1.163-.477 1.62-.312.454-.763.807-1.353 1.06-.586.248-1.294.372-2.122.372-.822 0-1.538-.126-2.148-.378-.607-.252-1.08-.624-1.422-1.118-.338-.497-.515-1.112-.532-1.845h2.083c.023.342.121.627.293.855.176.226.41.397.702.513.295.112.628.168.999.168.364 0 .68-.053.95-.159.271-.106.482-.253.63-.442.15-.189.224-.406.224-.651a.846.846 0 00-.203-.577c-.133-.156-.329-.288-.587-.398a5.964 5.964 0 00-.94-.298l-1.108-.278c-.859-.21-1.537-.536-2.034-.98-.497-.444-.744-1.042-.74-1.795-.004-.616.16-1.155.492-1.615.334-.461.793-.82 1.377-1.08.583-.258 1.246-.387 1.989-.387.755 0 1.415.13 1.978.388.567.258 1.008.618 1.323 1.079.314.46.477.994.487 1.6h-2.063z"})]}),Le=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...V(e),children:[R("title",{children:"JSON"}),R("path",{fill:"#F59E0B",d:"M4.778 6.667A2.667 2.667 0 017.444 4a.889.889 0 010 1.778.889.889 0 00-.888.889v3.5c0 .701-.273 1.35-.73 1.833.457.483.73 1.132.73 1.832v3.501c0 .491.398.89.888.89a.889.889 0 010 1.777 2.667 2.667 0 01-2.666-2.667v-3.5a.889.889 0 00-.674-.863l-.43-.108a.889.889 0 010-1.724l.43-.108a.889.889 0 00.674-.862V6.667zm14.222 0A2.667 2.667 0 0016.333 4a.889.889 0 000 1.778c.491 0 .89.398.89.889v3.5c0 .701.272 1.35.729 1.833a2.664 2.664 0 00-.73 1.832v3.501a.889.889 0 01-.889.89.889.889 0 000 1.777A2.667 2.667 0 0019 17.333v-3.5c0-.408.278-.764.673-.863l.431-.108a.889.889 0 000-1.724l-.43-.108a.889.889 0 01-.674-.862V6.667z"})]}),Ae=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...V(e),children:[R("title",{children:"CSS"}),R("path",{fill:"#0EA5E9",d:"M4.778 6.667A2.667 2.667 0 017.444 4a.889.889 0 010 1.778.889.889 0 00-.888.889v3.5c0 .701-.273 1.35-.73 1.833.457.483.73 1.132.73 1.832v3.501c0 .491.398.89.888.89a.889.889 0 010 1.777 2.667 2.667 0 01-2.666-2.667v-3.5a.889.889 0 00-.674-.863l-.43-.108a.889.889 0 010-1.724l.43-.108a.889.889 0 00.674-.862V6.667zm14.222 0A2.667 2.667 0 0016.333 4a.889.889 0 000 1.778c.491 0 .89.398.89.889v3.5c0 .701.272 1.35.729 1.833a2.664 2.664 0 00-.73 1.832v3.501a.889.889 0 01-.889.89.889.889 0 000 1.777A2.667 2.667 0 0019 17.333v-3.5c0-.408.278-.764.673-.863l.431-.108a.889.889 0 000-1.724l-.43-.108a.889.889 0 01-.674-.862V6.667z"})]}),Se=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...V(e),children:[R("title",{children:"HTML"}),R("path",{fill:"#EA580C",d:"M4.778 6.667A2.667 2.667 0 017.444 4a.889.889 0 010 1.778.889.889 0 00-.888.889v3.5c0 .701-.273 1.35-.73 1.833.457.483.73 1.132.73 1.832v3.501c0 .491.398.89.888.89a.889.889 0 010 1.777 2.667 2.667 0 01-2.666-2.667v-3.5a.889.889 0 00-.674-.863l-.43-.108a.889.889 0 010-1.724l.43-.108a.889.889 0 00.674-.862V6.667zm14.222 0A2.667 2.667 0 0016.333 4a.889.889 0 000 1.778c.491 0 .89.398.89.889v3.5c0 .701.272 1.35.729 1.833a2.664 2.664 0 00-.73 1.832v3.501a.889.889 0 01-.889.89.889.889 0 000 1.777A2.667 2.667 0 0019 17.333v-3.5c0-.408.278-.764.673-.863l.431-.108a.889.889 0 000-1.724l-.43-.108a.889.889 0 01-.674-.862V6.667z"})]});var oe=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...V(e),children:[R("title",{children:"React"}),R("path",{fill:"#0E8ADC",d:"M12 13.677a1.677 1.677 0 100-3.354 1.677 1.677 0 000 3.354z"}),R("path",{stroke:"#0E8ADC",d:"M12 15.436c4.97 0 9-1.538 9-3.436s-4.03-3.436-9-3.436S3 10.102 3 12s4.03 3.436 9 3.436z"}),R("path",{stroke:"#0E8ADC",d:"M9.024 13.718c2.485 4.305 5.832 7.025 7.476 6.076 1.644-.949.961-5.208-1.524-9.512C12.491 5.977 9.144 3.257 7.5 4.206c-1.644.949-.961 5.208 1.524 9.512z"}),R("path",{stroke:"#0E8ADC",d:"M9.024 10.282c-2.485 4.304-3.168 8.563-1.524 9.512 1.644.95 4.99-1.771 7.476-6.076 2.485-4.304 3.168-8.563 1.524-9.512-1.644-.95-4.99 1.771-7.476 6.076z"})]}),re=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...V(e),children:[R("title",{children:"Markdown"}),R("path",{fill:"#60A5FA",d:"M3 15.714V8h2.323l2.322 2.836L9.968 8h2.322v7.714H9.968V11.29l-2.323 2.836-2.322-2.836v4.424H3zm14.516 0l-3.484-3.743h2.323V8h2.322v3.97H21l-3.484 3.744z"})]}),ne=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 25 24",...V(e),children:[R("title",{children:"Shell"}),R("path",{stroke:"#14B8A6",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M4.336 17l6-6-6-6M12.336 19h8"})]}),se=e=>z("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...V(e),children:[R("title",{children:"YAML"}),R("path",{fill:"#A78BFA",d:"M6.533 5.864h2.755l2.654 5.011h.113l2.654-5.011h2.756l-4.245 7.522V17.5h-2.443v-4.114L6.533 5.864z"})]});import*as ae from"react-aria-components";import{Fragment as yr,jsx as ge,jsxs as Fe}from"react/jsx-runtime";var vr=({className:e,children:t,...o})=>ge(ae.Tooltip,{...o,offset:8,className:r=>c("group z-50 overflow-visible rounded-md bg-bg-surface/90 px-2.5 py-1.5 text-xs font-medium text-text-main shadow-lg backdrop-blur-md ring-1 ring-border-subtle outline-hidden select-none","data-entering:animate-in data-entering:fade-in data-entering:zoom-in-95 data-entering:duration-100","data-exiting:animate-out data-exiting:fade-out data-exiting:zoom-out-95 data-exiting:duration-75","data-[placement=top]:slide-in-from-bottom-1","data-[placement=bottom]:slide-in-from-top-1","data-[placement=left]:slide-in-from-right-1","data-[placement=right]:slide-in-from-left-1",typeof e=="function"?e(r):e),children:r=>Fe(yr,{children:[ge(ae.OverlayArrow,{children:Fe("svg",{width:8,height:8,viewBox:"0 0 8 8",className:"fill-bg-surface/90 stroke-border-subtle group-data-[placement=bottom]:rotate-180 group-data-[placement=left]:-rotate-90 group-data-[placement=right]:rotate-90",children:[ge("title",{children:"Arrow"}),ge("path",{d:"M0 0 L4 4 L8 0"})]})}),typeof t=="function"?t(r):t]})}),We=({content:e,children:t,delay:o=500,closeDelay:r=0,...n})=>Fe(ae.TooltipTrigger,{delay:o,closeDelay:r,children:[t,ge(vr,{...n,children:e})]});import{jsx as B,jsxs as $e}from"react/jsx-runtime";var Pr={ts:Te,tsx:oe,js:ke,jsx:oe,json:Le,css:Ae,html:Se,md:re,mdx:re,bash:ne,sh:ne,yaml:se,yml:se};function U(e){let{children:t,sandbox:o,hideSandbox:r=!0,hideCopy:n=!1,highlightedHtml:a,title:i,"data-lang":l,plain:s=!1,...d}=e,g=!!G()?.integrations?.sandbox?.enable&&!r,h=e.lang||l||"",{copied:y,isExpanded:C,setIsExpanded:x,isExpandable:I,preRef:b,handleCopy:O,handleSandbox:j,shouldTruncate:E}=St(e),Ee=Pr[h];return $e("div",{className:c("group relative overflow-hidden bg-(--color-code-bg)","contain-layout contain-paint",{"my-6 rounded-lg border border-border-subtle":!s,"[&>pre]:max-h-62.5 [&>pre]:overflow-hidden":E},e.className),children:[i&&$e("div",{className:"flex items-center gap-2 border-b border-border-subtle bg-bg-surface/50 px-4 py-2 text-[13px] font-medium text-text-muted",children:[Ee?B(Ee,{size:14}):B(Nr,{size:14,className:"opacity-60"}),B("span",{children:i})]}),$e("div",{className:"absolute top-3 right-4 z-50 flex items-center gap-2 transition-all duration-300 opacity-0 group-hover:opacity-100",children:[g&&B(We,{content:"Open in CodeSandbox",children:B(Me.Button,{onPress:j,className:"grid place-items-center w-8 h-8 bg-transparent text-text-muted outline-none cursor-pointer transition-all duration-200 hover:scale-115 hover:text-sky-400 active:scale-95 [&>svg]:w-5 [&>svg]:h-5 [&>svg]:stroke-2","aria-label":"Open in CodeSandbox",children:B(Mt,{size:20})})}),!n&&B(We,{content:y?"Copied!":"Copy code",children:B(Me.Button,{onPress:O,className:c("grid place-items-center size-8 bg-transparent outline-none cursor-pointer transition-all duration-200 hover:scale-110 active:scale-95 [&>svg]:size-4 [&>svg]:stroke-2",y?"text-emerald-400":"text-text-muted hover:text-text-main"),"aria-label":"Copy code",children:y?B(Rr,{size:20}):B(Cr,{size:20})})})]}),a?B("div",{ref:b,className:"shiki-wrapper [&>pre]:m-0! [&>pre]:rounded-none! [&>pre]:border-none! [&>pre]:bg-inherit! [&>pre>code]:grid! [&>pre>code]:p-5! [&>.shiki.shiki-themes]:bg-transparent!",dangerouslySetInnerHTML:{__html:a}}):B("pre",{ref:b,className:"m-0! rounded-none! border-none! bg-inherit! font-mono text-[0.8125rem] leading-[1.7]",...d,children:t}),I&&B("div",{className:c(E?"absolute bottom-0 inset-x-0 h-24 bg-linear-to-t from-(--color-code-bg) to-transparent flex items-end justify-center pb-4 z-10":"relative flex justify-center py-4"),children:B(Me.Button,{onPress:()=>x(!C),className:"rounded-full bg-bg-surface border border-border-subtle px-5 py-2 text-[0.8125rem] font-medium text-text-main outline-none cursor-pointer transition-all hover:bg-border-subtle hover:-translate-y-px backdrop-blur-md",children:C?"Show less":"Expand code"})})]})}import{Children as Lr,isValidElement as Ar,useMemo as Sr}from"react";import*as X from"react-aria-components";import{useState as Bt,useRef as wr,useEffect as Tr,useCallback as kr}from"react";function It({initialIndex:e=0,tabs:t}){let o=t[e]?.props.disabled?t.findIndex(d=>!d.props.disabled):e,[r,n]=Bt(o===-1?0:o),a=wr([]),[i,l]=Bt({opacity:0,transform:"translateX(0)",width:0});Tr(()=>{let d=a.current[r];d&&l({opacity:1,width:d.offsetWidth,transform:`translateX(${d.offsetLeft}px)`})},[r,t]);let s=kr(d=>{let p=0;if(d.key==="ArrowRight"?p=1:d.key==="ArrowLeft"&&(p=-1),p!==0){let m=(r+p+t.length)%t.length;for(;t[m].props.disabled&&m!==r;)m=(m+p+t.length)%t.length;m!==r&&!t[m].props.disabled&&(n(m),a.current[m]?.focus())}},[r,t]);return{active:r,setActive:n,tabRefs:a,indicatorStyle:i,handleKeyDown:s}}import{cva as Et}from"class-variance-authority";import{jsx as q,jsxs as je}from"react/jsx-runtime";var Mr=Et("relative flex items-center border-b border-border-subtle gap-1 overflow-x-auto no-scrollbar",{variants:{size:{default:"px-0",compact:"px-2"}},defaultVariants:{size:"default"}}),Br=Et("flex items-center gap-2 px-4 py-2.5 text-sm font-medium outline-none transition-all duration-200 cursor-pointer bg-transparent border-none select-none whitespace-nowrap",{variants:{isActive:{true:"text-primary-500",false:"text-text-muted hover:text-text-main"},isDisabled:{true:"opacity-40 pointer-events-none",false:""}},defaultVariants:{isActive:!1,isDisabled:!1}});function Ot({children:e}){let t=typeof e=="string"?q(U,{className:"language-bash",children:q("code",{children:e.trim()})}):e;return q("div",{className:"py-4",children:t})}function Vt({defaultIndex:e=0,children:t}){let o=Sr(()=>Lr.toArray(t).filter(l=>Ar(l)&&l.props?.label),[t]),{active:r,setActive:n,tabRefs:a,indicatorStyle:i}=It({initialIndex:e,tabs:o});return q("div",{className:"my-8 w-full group/tabs",children:je(X.Tabs,{selectedKey:r.toString(),onSelectionChange:l=>n(Number(l)),className:"w-full",children:[je(X.TabList,{"aria-label":"Content Tabs",className:c(Mr()),children:[o.map((l,s)=>{let{label:d,icon:p,disabled:m}=l.props,g=s.toString();return je(X.Tab,{id:g,isDisabled:m,ref:h=>{a.current[s]=h},className:({isSelected:h,isDisabled:y})=>c(Br({isActive:h,isDisabled:y})),children:[!!p&&q("span",{className:"shrink-0 [&>svg]:w-4 [&>svg]:h-4",children:p}),q("span",{children:d})]},g)}),q("div",{className:"absolute bottom-0 h-0.5 bg-primary-500 transition-all duration-300 ease-in-out pointer-events-none",style:i,"aria-hidden":"true"})]}),o.map((l,s)=>q(X.TabPanel,{id:s.toString(),children:o[s]},s))]})})}import{useRef as Ir,useState as Er,useEffect as Or}from"react";import{jsx as zt,jsxs as Vr}from"react/jsx-runtime";function Ht({src:e,poster:t,alt:o,children:r,controls:n,preload:a="metadata",...i}){let l=Ir(null),[s,d]=Er(!1);return Or(()=>{let p=l.current;if(!p)return;let m=new IntersectionObserver(([g])=>{g.isIntersecting&&(d(!0),m.disconnect())},{rootMargin:"200px"});return m.observe(p),()=>m.disconnect()},[]),zt("div",{ref:l,className:"my-6 overflow-hidden rounded-lg border border-border-subtle",children:s?Vr("video",{className:"block w-full h-auto",src:e,poster:t,controls:!0,preload:a,playsInline:!0,...i,children:[r,"Your browser does not support the video tag."]}):zt("div",{className:"aspect-video bg-bg-surface animate-pulse",role:"img","aria-label":o||"Video"})})}import{cva as zr}from"class-variance-authority";import{jsx as Dr}from"react/jsx-runtime";var Hr=zr("inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold tracking-tight",{variants:{variant:{default:"bg-bg-surface text-text-muted border-border-subtle",primary:"bg-primary-500/15 text-primary-400 border-primary-500/20",success:"bg-emerald-500/15 text-emerald-400 border-emerald-500/20",warning:"bg-amber-500/15 text-amber-400 border-amber-500/20",danger:"bg-red-500/15 text-red-400 border-red-500/20",info:"bg-sky-500/15 text-sky-400 border-sky-500/20"}},defaultVariants:{variant:"default"}});function Dt({variant:e="default",children:t,className:o="",...r}){return Dr("span",{className:c(Hr({variant:e}),o),...r,children:t})}import{useCallback as Fr,useRef as Ft}from"react";import*as $t from"react-aria-components";import{cva as Wr}from"class-variance-authority";import{Fragment as jr,jsx as K,jsxs as Wt}from"react/jsx-runtime";var $r=Wr("grid gap-4 my-6",{variants:{cols:{1:"grid-cols-1",2:"grid-cols-1 sm:grid-cols-2",3:"grid-cols-1 sm:grid-cols-2 lg:grid-cols-3",4:"grid-cols-1 sm:grid-cols-2 lg:grid-cols-4"}},defaultVariants:{cols:3}});function jt({cols:e=3,children:t,className:o="",...r}){return K("div",{className:c($r({cols:e}),o),...r,children:t})}function Gt({title:e,icon:t,href:o,children:r,className:n="",...a}){let i=Ft(null),l=Ft(null),s=Fr(m=>{let g=i.current||l.current;if(!g)return;let{left:h,top:y}=g.getBoundingClientRect();g.style.setProperty("--x",`${m.clientX-h}px`),g.style.setProperty("--y",`${m.clientY-y}px`)},[]),d=Wt(jr,{children:[K("div",{className:"pointer-events-none absolute -inset-px rounded-xl opacity-0 transition-opacity duration-300 group-hover:opacity-100",style:{background:"radial-gradient(400px circle at var(--x) var(--y), color-mix(in oklch, var(--color-primary-500), transparent 90%), transparent 80%)"}}),t&&K("div",{className:"mb-3 flex h-10 w-10 items-center justify-center rounded-lg bg-primary-500/10 text-primary-400 text-lg transition-transform duration-300 group-hover:scale-105 group-hover:-rotate-3",children:t}),Wt("div",{className:"space-y-1.5",children:[e&&K("h3",{className:"text-sm font-bold text-text-main",children:e}),r&&K("div",{className:"text-sm text-text-muted leading-relaxed",children:r})]})]}),p=c("group relative block rounded-xl border border-border-subtle bg-bg-surface p-5 outline-none overflow-hidden","transition-all duration-200 hover:border-primary-500/40 hover:shadow-lg hover:shadow-primary-500/5","focus-visible:ring-2 focus-visible:ring-primary-500/30",n);return o?K($t.Link,{ref:l,href:o,className:c(p,"no-underline cursor-pointer"),onMouseMove:s,...a,children:d}):K("div",{ref:i,role:"presentation",className:p,onMouseMove:s,...a,children:d})}import{Info as Gr,Lightbulb as _r,AlertTriangle as Ur,ShieldAlert as qr,Bookmark as Xr,Zap as Jr,Flame as Kr}from"lucide-react";import{cva as Yr}from"class-variance-authority";import{jsx as w,jsxs as Ut}from"react/jsx-runtime";var Zr={note:w(Xr,{size:18}),tip:w(_r,{size:18}),info:w(Gr,{size:18}),warning:w(Ur,{size:18}),danger:w(qr,{size:18}),important:w(Kr,{size:18}),caution:w(Jr,{size:18})},Qr={note:"Note",tip:"Tip",info:"Info",warning:"Warning",danger:"Danger",important:"Important",caution:"Caution"},_t=Yr("py-4 px-4 rounded-lg",{variants:{type:{note:"border-primary-400 bg-primary-500/5 text-primary-400",tip:"border-emerald-500 bg-emerald-500/5 text-emerald-500",info:"border-sky-500 bg-sky-500/5 text-sky-500",warning:"border-amber-500 bg-amber-500/5 text-amber-500",danger:"border-red-500 bg-red-500/5 text-red-500",important:"border-orange-500 bg-orange-500/5 text-orange-500",caution:"border-yellow-500 bg-yellow-500/5 text-yellow-500"}},defaultVariants:{type:"note"}});function W({type:e="note",title:t,children:o,className:r="",...n}){return Ut("div",{className:c(_t({type:e}),r),role:e==="warning"||e==="danger"?"alert":"note",...n,children:[Ut("div",{className:"flex items-center flex-row gap-2 mb-2",children:[w("span",{className:c("shrink-0",_t({type:e})),children:Zr[e]}),w("span",{className:"text-sm font-bold tracking-tight text-text-main",children:t||Qr[e]})]}),w("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 [&>p]:mb-2 [&>p:last-child]:mb-0",children:o})]})}var qt=e=>w(W,{type:"note",...e}),Xt=e=>w(W,{type:"tip",...e}),Jt=e=>w(W,{type:"warning",...e}),Kt=e=>w(W,{type:"danger",...e}),Yt=e=>w(W,{type:"info",...e}),Zt=e=>w(W,{type:"important",...e}),Qt=e=>w(W,{type:"caution",...e});import{Children as en,isValidElement as tn}from"react";import{Check as on,ChevronRight as rn,Circle as nn}from"lucide-react";import{cva as Ge}from"class-variance-authority";import{jsx as J,jsxs as pn}from"react/jsx-runtime";var sn=Ge("my-6 transition-all duration-200",{variants:{variant:{default:"list-disc pl-5 text-text-muted marker:text-primary-500/50",number:"list-decimal pl-5 text-text-muted marker:text-primary-500/50 marker:font-bold",checked:"list-none p-0",arrow:"list-none p-0",bubble:"list-none p-0"},cols:{1:"grid-cols-1",2:"grid-cols-1 sm:grid-cols-2",3:"grid-cols-1 sm:grid-cols-2 lg:grid-cols-3",4:"grid-cols-1 sm:grid-cols-2 lg:grid-cols-4"},isGrid:{true:"grid gap-x-8 gap-y-3",false:"space-y-2"},dense:{true:"space-y-1",false:"space-y-2"}},compoundVariants:[{variant:"default",dense:!0,className:"space-y-0.5"}],defaultVariants:{variant:"default",cols:1,isGrid:!1,dense:!1}}),an=Ge("group flex items-start gap-3 text-sm leading-relaxed transition-all duration-200",{variants:{variant:{default:"",number:"",checked:"hover:translate-x-0.5",arrow:"hover:translate-x-0.5",bubble:"hover:translate-x-0.5"},dense:{true:"py-0",false:"py-0.5"}},defaultVariants:{variant:"default",dense:!1}}),ln=Ge("mt-1 shrink-0 flex items-center justify-center transition-transform group-hover:scale-110",{variants:{variant:{bubble:"h-5 w-5 rounded-full bg-primary-500/10 text-primary-500 text-[10px] font-bold",default:""}},defaultVariants:{variant:"default"}});function cn({icon:e,children:t,variant:o,dense:r}){return pn("li",{className:c(an({variant:o,dense:r})),children:[e&&J("span",{className:c(ln({variant:o==="bubble"?"bubble":"default"})),children:e}),J("div",{className:"flex-1 text-text-muted group-hover:text-text-main transition-colors",children:t})]})}var dn={checked:e=>J(on,{size:14,className:c("text-emerald-500 shrink-0",e)}),arrow:e=>J(rn,{size:14,className:c("text-primary-400 shrink-0",e)}),bubble:e=>J(nn,{size:6,fill:"currentColor",className:c("text-primary-500 shrink-0",e)}),default:()=>null,number:()=>null};function eo({variant:e="default",cols:t=1,dense:o=!1,children:r,className:n,...a}){let i=t!==void 0&&Number(t)>1,l=dn[e],s=sn({variant:e,cols:t,dense:o,isGrid:i,className:n}),d=e==="number"?"ol":"ul";return e==="default"||e==="number"?J(d,{className:s,...a,children:r}):J("ul",{className:s,...a,children:en.map(r,p=>{if(!tn(p))return p;let m=p,g=m.type==="li"?m.props.children:m.props.children||p;return J(cn,{icon:l(),variant:e,dense:o,children:g})})})}import{Children as _e,isValidElement as Ke,useMemo as mn}from"react";import*as H from"react-aria-components";import{Folder as un,FileText as fn,File as gn,FileCode as xn,FileImage as bn,ChevronRight as hn}from"lucide-react";import{jsx as T,jsxs as Xe}from"react/jsx-runtime";var ie=16,xe=2,vn={ts:Te,tsx:oe,js:ke,jsx:oe,json:Le,css:Ae,html:Se,md:re,mdx:re,bash:ne,sh:ne,yaml:se,yml:se},Ue={CODE:/\.(ts|tsx|js|jsx|json|mjs|cjs|astro|vue|svelte)$/i,TEXT:/\.(md|mdx|txt)$/i,IMAGE:/\.(png|jpg|jpeg|svg|gif)$/i};function Je(e){return typeof e=="string"?e:typeof e=="number"?e.toString():Array.isArray(e)?e.map(Je).join(""):Ke(e)&&e.props&&typeof e.props=="object"&&"children"in e.props?Je(e.props.children):""}function yn(e,t){let o=e.toLowerCase(),r="shrink-0 transition-colors duration-200";if(t)return T(un,{size:ie,strokeWidth:xe,className:c(r,"text-primary-400"),fill:"currentColor",fillOpacity:.15});let n=o.split(".").pop()||"",a=vn[n];if(a)return T(a,{size:ie});let i=c(r,"text-text-dim group-hover:text-text-main");return Ue.CODE.test(o)?T(xn,{size:ie,strokeWidth:xe,className:i}):Ue.TEXT.test(o)?T(fn,{size:ie,strokeWidth:xe,className:i}):Ue.IMAGE.test(o)?T(bn,{size:ie,strokeWidth:xe,className:i}):T(gn,{size:ie,strokeWidth:xe,className:i})}function qe(e,t){if(!Ke(e))return!1;let o=e.type;if(typeof o=="string")return o===t;if(typeof o=="function")return o.name===t||o.name?.toLowerCase()===t;let r=e.props;return r?.originalType===t||r?.mdxType===t}function Cn(e){let t=e.match(/\s+(\/\/|#)\s+(.*)$/);return t?{name:e.slice(0,t.index).trim(),comment:t[2]}:{name:e.trim()}}function Be(e,t="root"){if(!Ke(e))return[];let o=[];if(qe(e,"ul"))return _e.forEach(e.props.children,(r,n)=>{o.push(...Be(r,`${t}-${n}`))}),o;if(qe(e,"li")){let r=_e.toArray(e.props.children),n=r.findIndex(y=>qe(y,"ul")),a=n!==-1,i=a?r.slice(0,n):r,l=a?r.slice(n):[],s=Je(i),{name:d,comment:p}=Cn(s),m=d.endsWith("/"),g=m?d.slice(0,-1):d,h=a||m;return o.push({id:`${t}-${g}`,name:g,comment:p,isFolder:h,children:a?Be(l[0],`${t}-${g}`):void 0}),o}return e.props&&typeof e.props=="object"&&"children"in e.props&&_e.forEach(e.props.children,(r,n)=>{o.push(...Be(r,`${t}-${n}`))}),o}function to({item:e}){return Xe(H.TreeItem,{id:e.id,textValue:e.name,className:"outline-none group focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-md",children:[T(H.TreeItemContent,{children:({isExpanded:t,hasChildItems:o})=>Xe("div",{className:"flex items-center gap-2 py-1 px-1.5 rounded-md transition-colors hover:bg-primary-500/5 cursor-pointer",children:[T("div",{style:{width:"calc((var(--tree-item-level) - 1) * 1rem)"},className:"shrink-0"}),o?T(H.Button,{slot:"chevron",className:"outline-none text-text-dim hover:text-primary-400 p-0.5 rounded transition-colors",children:T(hn,{size:14,strokeWidth:3,className:c("transition-transform duration-200",t&&"rotate-90")})}):T("div",{className:"w-[18px]"}),yn(e.name,e.isFolder),T("span",{className:c("text-sm transition-colors truncate select-none",e.isFolder?"font-semibold text-text-main":"text-text-muted group-hover:text-text-main"),children:e.name}),e.comment&&Xe("span",{className:"ml-2 text-xs italic text-text-dim opacity-70 group-hover:opacity-100 transition-opacity whitespace-nowrap overflow-hidden text-ellipsis font-sans",children:["//"," ",e.comment]})]})}),e.children&&T(H.Collection,{items:e.children,children:t=>T(to,{item:t})})]})}function oo({children:e}){let t=mn(()=>Be(e),[e]);return T("div",{className:"my-8",children:T(H.Tree,{items:t,"aria-label":"File Tree",className:c("rounded-xl border border-border-subtle bg-bg-surface/50 p-4 font-mono text-sm shadow-sm backdrop-blur-sm outline-none","max-h-[500px] overflow-y-auto scrollbar-thin scrollbar-thumb-border-subtle","focus-visible:ring-2 focus-visible:ring-primary-500/20"),children:o=>T(to,{item:o})})})}import*as be from"react-aria-components";import{useState as ro,useMemo as no}from"react";function so({data:e,sortable:t=!1,paginated:o=!1,pageSize:r=10}){let[n,a]=ro(null),[i,l]=ro(1),s=no(()=>{if(!e)return[];let g=[...e];return t&&n!==null&&g.sort((h,y)=>{let C=h[n.key],x=y[n.key],I=typeof C=="string"?C:"",b=typeof x=="string"?x:"";return I<b?n.direction==="asc"?-1:1:I>b?n.direction==="asc"?1:-1:0}),g},[e,n,t]),d=Math.ceil(s.length/r),p=no(()=>{if(!o)return s;let g=(i-1)*r;return s.slice(g,g+r)},[s,o,i,r]);return{sortConfig:n,currentPage:i,setCurrentPage:l,totalPages:d,paginatedData:p,requestSort:g=>{if(!t)return;let h="asc";n&&n.key===g&&n.direction==="asc"&&(h="desc"),a({key:g,direction:h})}}}import{ChevronUp as Rn,ChevronDown as ao,ChevronLeft as Nn,ChevronRight as Pn,ChevronsLeft as wn,ChevronsRight as Tn}from"lucide-react";import{Fragment as kn,jsx as N,jsxs as le}from"react/jsx-runtime";function io({headers:e,data:t,children:o,className:r="",sortable:n=!1,paginated:a=!1,pageSize:i=10}){let{sortConfig:l,currentPage:s,setCurrentPage:d,totalPages:p,paginatedData:m,requestSort:g}=so({data:t,sortable:n,paginated:a,pageSize:i}),h=C=>n?l?.key!==C?N(ao,{size:14,className:"ml-1 opacity-30"}):l.direction==="asc"?N(Rn,{size:14,className:"ml-1 text-primary-400"}):N(ao,{size:14,className:"ml-1 text-primary-400"}):null,y=o||le(kn,{children:[e&&N("thead",{children:N("tr",{children:e.map((C,x)=>N("th",{onClick:()=>g(x),className:c("text-left px-3 py-2.5 border-b-2 border-border-subtle text-text-main font-semibold text-sm",n&&"cursor-pointer select-none hover:text-primary-400 transition-colors"),children:le("div",{className:"flex items-center",children:[C,h(x)]})},x))})}),m&&N("tbody",{children:m.map((C,x)=>N("tr",{className:"transition-colors hover:bg-bg-surface",children:C.map((I,b)=>N("td",{className:"px-3 py-2 border-b border-border-subtle text-sm text-text-muted",children:I},b))},x))})]});return le("div",{className:c("my-6 rounded-lg border border-border-subtle overflow-hidden",r),children:[N("div",{className:"overflow-x-auto",children:N("table",{className:"w-full border-collapse text-sm",children:y})}),a&&p>1&&le("div",{className:"flex items-center justify-between border-t border-border-subtle px-4 py-3",children:[le("span",{className:"text-xs text-text-muted",children:["Page ",s," of ",p]}),le("div",{className:"flex items-center gap-1",children:[N(be.Button,{onPress:()=>d(1),isDisabled:s===1,className:"grid place-items-center h-7 w-7 rounded-md text-text-muted outline-none transition-colors hover:bg-bg-surface disabled:opacity-30 disabled:pointer-events-none cursor-pointer",children:N(wn,{size:16})}),N(be.Button,{onPress:()=>d(C=>Math.max(C-1,1)),isDisabled:s===1,className:"grid place-items-center h-7 w-7 rounded-md text-text-muted outline-none transition-colors hover:bg-bg-surface disabled:opacity-30 disabled:pointer-events-none cursor-pointer",children:N(Nn,{size:16})}),N(be.Button,{onPress:()=>d(C=>Math.min(C+1,p)),isDisabled:s===p,className:"grid place-items-center h-7 w-7 rounded-md text-text-muted outline-none transition-colors hover:bg-bg-surface disabled:opacity-30 disabled:pointer-events-none cursor-pointer",children:N(Pn,{size:16})}),N(be.Button,{onPress:()=>d(p),isDisabled:s===p,className:"grid place-items-center h-7 w-7 rounded-md text-text-muted outline-none transition-colors hover:bg-bg-surface disabled:opacity-30 disabled:pointer-events-none cursor-pointer",children:N(Tn,{size:16})})]})]})]})}import{jsx as ce,jsxs as he}from"react/jsx-runtime";function lo({name:e,type:t,defaultValue:o,required:r=!1,children:n,id:a,className:i=""}){return he("article",{className:c("group relative my-6 rounded-xl border border-border-subtle bg-bg-surface p-5 transition-all duration-300","hover:border-primary-500/30 hover:shadow-lg hover:shadow-primary-500/5",i),id:a,children:[he("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between mb-4",children:[he("div",{className:"flex flex-wrap items-center gap-2.5",children:[ce("code",{className:"inline-flex items-center rounded-md bg-primary-500/10 px-2.5 py-1 font-mono text-sm font-bold text-primary-400 border border-primary-500/20 shadow-sm transition-colors group-hover:bg-primary-500/15",children:e}),t&&ce("span",{className:"rounded-md bg-bg-muted/80 border border-border-subtle px-2 py-0.5 text-[11px] font-semibold text-text-muted uppercase tracking-wider shadow-sm",children:t}),r&&he("div",{className:"flex items-center gap-1.5 rounded-full bg-red-500/10 px-2.5 py-0.5 text-[10px] font-bold uppercase tracking-wider text-red-400 border border-red-500/20 shadow-sm",children:[ce("span",{className:"h-1 w-1 rounded-full bg-red-400 animate-pulse"}),"Required"]})]}),o&&he("div",{className:"flex items-center gap-2 text-[11px] text-text-muted bg-bg-muted/30 px-2.5 py-1 rounded-md border border-border-subtle/50",children:[ce("span",{className:"font-semibold opacity-60 uppercase tracking-tighter",children:"Default"}),ce("code",{className:"font-mono text-text-main font-medium",children:o})]})]}),ce("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 selection:bg-primary-500/30",children:n})]})}import{jsx as Ln}from"react/jsx-runtime";function co({to:e,children:t,className:o="",...r}){let n=e&&(e.startsWith("http://")||e.startsWith("https://")||e.startsWith("//")),a=c("text-blue-600 hover:text-blue-800 hover:underline cursor-pointer",o);return Ln(_,{href:e,className:a,target:n?"_blank":void 0,rel:n?"noopener noreferrer":void 0,...r,children:t})}import{jsx as An}from"react/jsx-runtime";function po({src:e,alt:t,theme:o,...r}){let{theme:n}=ft();return o&&o!==n?null:An("img",{src:e,alt:t||"",...r})}import{jsx as k,jsxs as ve}from"react/jsx-runtime";function mo({title:e,props:t,className:o=""}){return ve("div",{className:c("my-6",o),children:[e&&k("h3",{className:"text-base font-bold text-text-main mb-3",children:e}),k("div",{className:"overflow-x-auto rounded-lg border border-border-subtle",children:ve("table",{className:"w-full border-collapse text-sm",children:[k("thead",{children:ve("tr",{children:[k("th",{className:"text-left px-4 py-3 border-b-2 border-border-subtle text-xs font-bold uppercase tracking-wider text-text-muted",children:"Property"}),k("th",{className:"text-left px-4 py-3 border-b-2 border-border-subtle text-xs font-bold uppercase tracking-wider text-text-muted",children:"Type"}),k("th",{className:"text-left px-4 py-3 border-b-2 border-border-subtle text-xs font-bold uppercase tracking-wider text-text-muted",children:"Default"}),k("th",{className:"text-left px-4 py-3 border-b-2 border-border-subtle text-xs font-bold uppercase tracking-wider text-text-muted",children:"Description"})]})}),k("tbody",{children:t.map((r,n)=>ve("tr",{className:"transition-colors hover:bg-bg-surface",children:[ve("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:[k("code",{className:"rounded bg-bg-surface px-1.5 py-0.5 font-mono text-xs font-bold text-primary-400",children:r.name}),r.required&&k("span",{className:"ml-1 text-red-400 font-bold",children:"*"})]}),k("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:k("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-text-muted",children:r.type})}),k("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:r.defaultValue?k("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-primary-400",children:r.defaultValue}):k("span",{className:"text-text-dim",children:"\u2014"})}),k("td",{className:"px-4 py-2.5 border-b border-border-subtle text-text-muted",children:r.description})]},`${r.name}-${n}`))})]})})]})}import{useMemo as uo}from"react";function fo(e){let{code:t,children:o,preview:r}=e,n=uo(()=>(t??(typeof o=="string"?o:"")).trim(),[t,o]),a=uo(()=>r??(typeof o!="string"?o:null),[r,o]);return{initialCode:n,previewElement:a}}import{jsx as Ye,jsxs as Sn}from"react/jsx-runtime";function go(e){let{highlightedHtml:t,hideCode:o=!1,hideSandbox:r=!1,hideCopy:n=!1,sandboxOptions:a={}}=e,{initialCode:i,previewElement:l}=fo(e);return Sn("div",{className:"my-6 overflow-hidden rounded-xl border border-border-subtle",children:[Ye("div",{className:"flex items-center justify-center p-8 bg-bg-surface",children:l}),!o&&Ye("div",{className:"border-t border-border-subtle",children:Ye(U,{hideSandbox:r,hideCopy:n,title:a.title,lang:"tsx",highlightedHtml:t,plain:!0,children:i})})]})}import{useState as fs}from"react";import{Copy as Ro,Check as gs,ExternalLink as xs,ChevronDown as bs}from"lucide-react";import{useState as rc,useEffect as nc}from"react";import{Button as ic}from"react-aria-components";import{Search as cc,Sun as dc,Moon as pc,ExternalLink as mc}from"lucide-react";import{jsx as gc,jsxs as xc}from"react/jsx-runtime";import*as ye from"react-aria-components";import{ChevronDown as vc}from"lucide-react";import{Fragment as wc,jsx as Nc,jsxs as Pc}from"react/jsx-runtime";import*as L from"react-aria-components";import{Search as In,Hash as En,FileText as On,CornerDownLeft as Vn}from"lucide-react";import{Fragment as _n,jsx as P,jsxs as Ze}from"react/jsx-runtime";var zn=({children:e,isOpen:t,onOpenChange:o,className:r})=>P(L.ModalOverlay,{isOpen:t,onOpenChange:o,isDismissable:!0,className:c("fixed inset-0 z-100 bg-black/40 backdrop-blur-sm px-4 py-4 sm:py-20","entering:animate-in entering:fade-in exiting:animate-out exiting:fade-out"),children:P(L.Modal,{className:c("mx-auto w-full max-w-2xl overflow-hidden rounded-xl border border-border-subtle bg-bg-surface shadow-2xl ring-1 ring-black/5 outline-none","entering:animate-in entering:fade-in entering:zoom-in-95 exiting:animate-out exiting:fade-out exiting:zoom-out-95",r),children:P(L.Dialog,{className:"flex flex-col max-h-[70vh] focus:outline-none",children:e})})}),Hn=({children:e,className:t,onSelectionChange:o,...r})=>P("div",{className:t,children:P(L.Autocomplete,{...r,onSelectionChange:o,className:"flex flex-col min-h-0",children:e})}),Dn=({className:e,...t})=>Ze(L.SearchField,{className:"flex items-center gap-3 border-b border-border-subtle px-4 py-4",autoFocus:!0,children:[P(In,{className:"h-5 w-5 text-text-muted"}),P(L.Input,{...t,className:c("w-full bg-transparent text-lg text-text-main placeholder-text-muted outline-none",e),placeholder:"Search documentation..."}),P("div",{className:"flex items-center gap-1.5 rounded-md border border-border-subtle bg-bg-main px-1.5 py-1 text-[10px] font-medium text-text-muted",children:P("kbd",{className:"font-sans",children:"ESC"})})]}),Fn=({children:e,className:t,...o})=>P(L.ListBox,{...o,className:c("flex-1 overflow-y-auto p-2 outline-none",t),children:e}),Wn=({children:e,className:t,...o})=>P(L.ListBoxItem,{...o,className:c("group flex items-center gap-3 rounded-lg p-3 text-left outline-none cursor-pointer transition-colors","text-text-muted hover:bg-bg-main hover:text-text-main focus:bg-primary-500 focus:text-white selected:bg-primary-500 selected:text-white",t),children:r=>Ze(_n,{children:[e,(r.isFocused||r.isSelected)&&Ze("div",{className:"ml-auto opacity-50 flex items-center gap-1",children:[P("span",{className:"text-[10px]",children:"Select"}),P(Vn,{size:10})]})]})}),$n=({isHeading:e,className:t})=>P("div",{className:c("shrink-0",t),children:e?P(En,{size:18}):P(On,{size:18})}),jn=({children:e,className:t})=>P("span",{className:c("block font-medium truncate flex-1 text-sm",t),children:e}),Gn=({children:e,className:t})=>P("span",{className:c("ml-2 text-xs opacity-70 truncate hidden sm:inline group-focus:opacity-100",t),children:e}),Ac={Root:zn,Autocomplete:Hn,Input:Dn,List:Fn,Item:Object.assign(Wn,{Icon:$n,Title:jn,Bio:Gn})};import{createContext as xo,use as _c,useEffect as Uc,useImperativeHandle as Un,useMemo as qc,useRef as qn,useState as Xc}from"react";import Kc from"scroll-into-view-if-needed";import{useEffect as Ec,useRef as Oc}from"react";import{jsx as Jn}from"react/jsx-runtime";var ed=xo(null),td=xo(null);var Xn=({children:e,className:t,ref:o,...r})=>{let n=qn(null);return Un(o,()=>n.current),Jn("div",{ref:n,className:c("relative overflow-y-auto boltdocs-otp-content",t),...r,children:e})};Xn.displayName="OnThisPageContent";import*as bo from"react-aria-components";import{ChevronLeft as Kn,ChevronRight as Yn}from"lucide-react";import{Fragment as ns,jsx as Y,jsxs as rs}from"react/jsx-runtime";var Zn=({children:e,className:t})=>Y("nav",{className:c("grid grid-cols-1 sm:grid-cols-2 gap-4 mt-12 pt-8 border-t border-border-subtle",t),children:e}),Qn=({children:e,to:t,direction:o,className:r})=>{let n=o==="next";return rs(bo.Link,{href:t,className:c("flex group items-center p-4 rounded-xl border border-border-subtle bg-bg-surface outline-none","transition-all hover:bg-bg-main hover:border-primary-500 hover:shadow-lg","focus-visible:ring-2 focus-visible:ring-primary-500/30",n?"text-right justify-end":"text-left justify-start",r),children:[!n&&Y(Kn,{className:"mr-3 h-5 w-5 text-text-muted group-hover:text-primary-500 transition-transform group-hover:-translate-x-1"}),Y("div",{className:"flex flex-col gap-1 flex-1",children:e}),n&&Y(Yn,{className:"ml-3 h-5 w-5 text-text-muted group-hover:text-primary-500 transition-transform group-hover:translate-x-1"})]})},es=({children:e,className:t})=>Y("span",{className:c("text-xs font-medium uppercase tracking-wider text-text-muted",t),children:e}),ts=({children:e,className:t})=>Y("span",{className:c("text-base font-bold text-text-main truncate",t),children:e}),os=({children:e})=>Y(ns,{children:e}),id={PageNavRoot:Zn,PageNavLink:Object.assign(Qn,{Title:es,Description:ts,Icon:os})};import{jsx as fd}from"react/jsx-runtime";import*as ss from"react-aria-components";import{ChevronRight as hd}from"lucide-react";import{jsx as Rd,jsxs as Nd}from"react/jsx-runtime";import{Breadcrumb as Td,Breadcrumbs as kd,Link as Ld}from"react-aria-components";import{ChevronRight as Sd}from"lucide-react";import{jsx as Ed}from"react/jsx-runtime";import{jsx as as}from"react/jsx-runtime";var ho=({children:e,className:t,vertical:o=!1})=>as("div",{className:c("inline-flex",o?"flex-col":"flex-row",!o&&["[&>*:not(:first-child)]:-ml-px","[&>*:first-child]:rounded-r-none","[&>*:last-child]:rounded-l-none","[&>*:not(:first-child):not(:last-child)]:rounded-none",t?.includes("rounded-full")&&["[&>*:first-child]:rounded-l-full","[&>*:last-child]:rounded-r-full"],t?.includes("rounded-xl")&&["[&>*:first-child]:rounded-l-xl","[&>*:last-child]:rounded-r-xl"],t?.includes("rounded-lg")&&["[&>*:first-child]:rounded-l-lg","[&>*:last-child]:rounded-r-lg"]],o&&["[&>*:not(:first-child)]:-mt-px","[&>*:first-child]:rounded-b-none","[&>*:last-child]:rounded-t-none","[&>*:not(:first-child):not(:last-child)]:rounded-none",t?.includes("rounded-full")&&["[&>*:first-child]:rounded-t-full","[&>*:last-child]:rounded-b-full"]],t),children:e});import{Check as ls,ChevronRight as cs,Dot as ds}from"lucide-react";import ps from"react";import*as M from"react-aria-components";import*as de from"react-aria-components";import{jsx as Qe,jsxs as is}from"react/jsx-runtime";var vo=({children:e,className:t,showArrow:o,...r})=>is(de.Popover,{offset:8,...r,className:de.composeRenderProps(t,n=>c("z-50 overflow-auto rounded-xl border border-border-subtle bg-bg-surface/80 shadow-xl backdrop-blur-md outline-none transition-none",n)),children:[o&&Qe(de.OverlayArrow,{className:"group",children:Qe("svg",{viewBox:"0 0 12 12",className:"block h-3 w-3 fill-bg-surface/80 stroke-border-subtle group-placement-bottom:rotate-180 group-placement-left:-rotate-90 group-placement-right:rotate-90","aria-hidden":"true",children:Qe("path",{d:"M0 0 L6 6 L12 0"})})}),e]});import{Fragment as ms,jsx as Z,jsxs as et}from"react/jsx-runtime";function yo(e){let[t,o]=ps.Children.toArray(e.children).slice(0,2);return et(M.MenuTrigger,{...e,children:[t,Z(vo,{placement:e.placement,className:"min-w-35",children:o})]})}function Co(e){return Z(M.Menu,{...e,className:M.composeRenderProps(e.className,t=>c("p-1.5 outline-none max-h-[inherit] overflow-auto max-w-75",t))})}function tt(e){let t=e.textValue||(typeof e.children=="string"?e.children:void 0);return Z(M.MenuItem,{...e,textValue:t,className:M.composeRenderProps(e.className,(o,{isFocused:r,isPressed:n,isDisabled:a})=>c("group relative flex flex-row items-center gap-2 px-2 py-1 rounded-lg outline-none cursor-default hover:cursor-pointer transition-none","text-text-main text-[12px]",{"bg-bg-surface-elevated text-primary-600 ring-1 ring-border-strong/5":r,"bg-bg-surface-elevanted":n,"opacity-40 grayscale pointer-events-none":a},o)),children:M.composeRenderProps(e.children,(o,{selectionMode:r,isSelected:n,hasSubmenu:a})=>et(ms,{children:[r!=="none"&&et("span",{className:"flex items-center size-4 shrink-0 justify-center",children:[n&&r==="multiple"&&Z(ls,{className:"size-3.5 stroke-[2.5px] text-primary-500 animate-in zoom-in-50 duration-200"}),n&&r==="single"&&Z(ds,{className:"size-5 text-primary-500 animate-in zoom-in-50 duration-200"})]}),Z("div",{className:"flex flex-row w-full transition-colors items-center gap-2 py-1 px-1",children:o}),a&&Z(cs,{className:"size-4 ml-auto text-text-muted group-focused:text-primary-500/70 transition-colors"})]}))})}import{jsx as us}from"react/jsx-runtime";function A({className:e,variant:t="rect",...o}){return us("div",{className:c("animate-pulse bg-bg-muted",t==="circle"?"rounded-full":"rounded-md",e),...o})}import{Separator as Mn,ToggleButton as Bn}from"react-aria-components";import{jsx as D,jsxs as Ce}from"react/jsx-runtime";var hs=e=>{let[t,o]=fs(!1);return{copied:t,handleCopy:()=>{navigator.clipboard.writeText(e),o(!0),setTimeout(()=>o(!1),2e3)},handleOpenRaw:()=>{let a=new Blob([e],{type:"text/plain;charset=utf-8"}),i=URL.createObjectURL(a);window.open(i,"_blank")}}};function No({content:e,mdxRaw:t,config:o}){let r=t||e||"",{copied:n,handleCopy:a,handleOpenRaw:i}=hs(r),l=o!==!1,s=typeof o=="object"&&o.text||"Copy Markdown";return!l||!r?null:D("div",{className:"relative inline-flex z-100 flex-shrink-0 w-max translate-y-0 active:translate-y-px transition-transform duration-200",children:Ce(ho,{className:"rounded-xl border border-border-subtle bg-bg-surface/40 backdrop-blur-md transition-all duration-300 hover:border-primary-500/50 hover:shadow-lg hover:shadow-primary-500/5 group overflow-hidden",children:[D(fe,{variant:"ghost",onPress:a,icon:n?D(gs,{size:16}):D(Ro,{size:16}),iconPosition:"left",className:c("px-5 py-2 bg-transparent text-[0.8125rem] font-semibold h-9 border-none shrink-0","text-text-main transition-all duration-300 hover:bg-primary-500/5",n&&"text-emerald-500 hover:bg-emerald-500/5"),children:n?"Copied!":s}),Ce(yo,{placement:"bottom end",children:[D(fe,{variant:"ghost",isIconOnly:!0,icon:D(bs,{size:14}),className:c("px-3.5 h-9 border-l border-border-subtle/50 text-text-muted rounded-none bg-transparent shrink-0","transition-all duration-300 hover:bg-primary-500/5 hover:text-primary-500")}),Ce(Co,{className:"w-52",children:[Ce(tt,{onAction:a,children:[D(Ro,{size:16,className:"size-4 mt-0.5 text-text-muted group-hover:text-primary-500"}),D("span",{className:"font-medium text-[0.8125rem]",children:"Copy Markdown"})]}),Ce(tt,{onAction:i,children:[D(xs,{size:16,className:"size-4 mt-0.5 text-text-muted group-hover:text-primary-500"}),D("span",{className:"font-medium text-[0.8125rem]",children:"View as Markdown"})]})]})]})]})})}import{jsx as S,jsxs as Q}from"react/jsx-runtime";function Po(){return S("div",{className:c("w-full h-full relative overflow-y-auto transition-opacity duration-300 animate-fade-in"),children:Q("div",{className:"mx-auto max-w-(--spacing-content-max) px-4 py-8 space-y-10",children:[Q("div",{className:"flex gap-2",children:[S(A,{className:"h-3 w-16"}),S(A,{className:"h-3 w-24"})]}),S(A,{className:"h-10 w-[60%] sm:h-12"}),Q("div",{className:"space-y-3",children:[S(A,{className:"h-4 w-full"}),S(A,{className:"h-4 w-[95%]"}),S(A,{className:"h-4 w-[40%]"})]}),Q("div",{className:"space-y-6 pt-4",children:[S(A,{className:"h-7 w-32"}),Q("div",{className:"space-y-3",children:[S(A,{className:"h-4 w-full"}),S(A,{className:"h-4 w-[98%]"}),S(A,{className:"h-4 w-[92%]"}),S(A,{className:"h-4 w-[60%]"})]})]}),S(A,{className:"h-32 w-full rounded-lg bg-bg-muted/50"}),Q("div",{className:"space-y-6 pt-4",children:[S(A,{className:"h-7 w-48"}),Q("div",{className:"space-y-3",children:[S(A,{className:"h-4 w-full"}),S(A,{className:"h-4 w-[85%]"})]})]})]})})}import{jsx as $,jsxs as ys}from"react/jsx-runtime";var pe=({level:e,id:t,children:o,...r})=>{let n=`h${e}`;return ys(n,{id:t,...r,className:"boltdocs-heading",children:[o,t&&$("a",{href:`#${t}`,className:"header-anchor","aria-label":"Anchor",children:$(vs,{size:16})})]})},wo={...ot,Loading:Po,h1:e=>$(pe,{level:1,...e}),h2:e=>$(pe,{level:2,...e}),h3:e=>$(pe,{level:3,...e}),h4:e=>$(pe,{level:4,...e}),h5:e=>$(pe,{level:5,...e}),h6:e=>$(pe,{level:6,...e}),pre:e=>$(U,{...e,children:e.children})};import Rs from"virtual:boltdocs-mdx-components";import{useLocation as Ns}from"react-router-dom";import{Fragment as Ts,jsx as v,jsxs as Ie}from"react/jsx-runtime";function Ps(){let{currentLocale:e,config:t}=me();return nt(()=>{if(!t.i18n)return;let o=t.i18n.localeConfigs?.[e];document.documentElement.lang=o?.htmlLang||e||"en",document.documentElement.dir=o?.direction||"ltr"},[e,t.i18n]),null}function ws(){let e=Ns(),{config:t}=me(),o=F(i=>i.setLocale),r=F(i=>i.setVersion),n=F(i=>i.currentLocale),a=F(i=>i.currentVersion);return nt(()=>{let i=e.pathname.split("/").filter(Boolean),l=0,s=t.versions?.defaultVersion,d=t.i18n?.defaultLocale;if(i[l]==="docs"&&l++,t.versions&&i.length>l){let p=t.versions.versions.find(m=>m.path===i[l]);p&&(s=p.path,l++)}t.i18n&&i.length>l&&t.i18n.locales[i[l]]?d=i[l]:t.i18n&&i.length===0&&(d=n||t.i18n.defaultLocale),d!==n&&o(d),s!==a&&r(s)},[e.pathname,t,o,r,n,a]),null}function Ao({initialRoutes:e,initialConfig:t,docsDirName:o,modules:r,hot:n,homePage:a,externalPages:i,externalLayout:l,components:s={}}){let[d,p]=To(e),[m,g]=To(t),h=i||{},y=l||Lo,C=ko(()=>d.filter(b=>!(a&&(b.path==="/"||b.path===""))&&!h[b.path===""?"/":b.path]).map(b=>{let O=Object.keys(r).find(E=>E===`/${o}/${b.filePath}`||E.endsWith(`/${o}/${b.filePath}`)||E.endsWith(`/${o}\\${b.filePath.replace(/\\/g,"/")}`)),j=O?r[O]:null;return{...b,Component:rt.lazy(async()=>j?await j():{default:ze})}}),[d,r,o,a,h]);nt(()=>{n&&(n.on("boltdocs:routes-update",b=>{p(b)}),n.on("boltdocs:config-update",b=>{g(b)}))},[n]);let x=ko(()=>({...wo,...Rs,...s}),[s]),I=x.Loading;return v(ut,{children:v(Ct,{components:x,children:v(Oe.Provider,{value:m,children:v(gt,{children:Ie(it,{routes:d,modules:r,children:[v(xt,{}),v(ws,{}),v(Ps,{}),Ie(Cs,{children:[v(ee,{element:v(ht,{}),children:C.map(b=>v(ee,{path:b.path===""?"/":b.path,element:v(rt.Suspense,{fallback:v(I,{}),children:v(Nt,{Component:b.Component})})},b.path))},"docs-layout"),a&&Ie(Ts,{children:[v(ee,{path:"/",element:v(y,{children:v(a,{})})}),m.i18n&&Object.keys(m.i18n.locales).map(b=>v(ee,{path:`/${b}`,element:v(y,{children:v(a,{})})},`home-${b}`))]}),Object.entries(h).map(([b,O])=>{let j=b==="/"?"":b;return Ie(rt.Fragment,{children:[v(ee,{path:b,element:v(y,{children:v(O,{})})}),m.i18n&&Object.keys(m.i18n.locales).map(E=>v(ee,{path:`/${E}${j}`,element:v(y,{children:v(O,{})})},`${b}-${E}`))]},b)}),v(ee,{path:"*",element:v(Lo,{children:v(ze,{})})})]})]})})})})})}import{jsx as st}from"react/jsx-runtime";async function Tm(e){let{path:t,routes:o,config:r,modules:n,homePage:a,externalPages:i,docsDirName:l}=e,s={};for(let[p,m]of Object.entries(n))s[p]=()=>Promise.resolve(m);return Ls.renderToString(st(ks.StrictMode,{children:st(As,{location:t,children:st(Ao,{initialRoutes:o,initialConfig:r,docsDirName:l,modules:s,homePage:a,externalPages:i})})}))}export{Tm as render};
|
package/dist/client/types.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import 'react';
|
|
2
|
-
export { a as BoltdocsTab, C as ComponentRoute, b as CreateBoltdocsAppOptions, L as LayoutProps, N as NavbarLink, O as OnThisPageProps, S as SandboxEmbedOptions, d as SandboxFile, e as SandboxFiles, f as SandboxOptions, h as SidebarProps, i as SiteConfig, T as TabsProps } from '../types-
|
|
2
|
+
export { a as BoltdocsTab, C as ComponentRoute, b as CreateBoltdocsAppOptions, L as LayoutProps, N as NavbarLink, O as OnThisPageProps, S as SandboxEmbedOptions, d as SandboxFile, e as SandboxFiles, f as SandboxOptions, h as SidebarProps, i as SiteConfig, T as TabsProps } from '../types-opDA2E9-.mjs';
|
|
3
3
|
import 'vite';
|
package/dist/client/types.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import 'react';
|
|
2
|
-
export { a as BoltdocsTab, C as ComponentRoute, b as CreateBoltdocsAppOptions, L as LayoutProps, N as NavbarLink, O as OnThisPageProps, S as SandboxEmbedOptions, d as SandboxFile, e as SandboxFiles, f as SandboxOptions, h as SidebarProps, i as SiteConfig, T as TabsProps } from '../types-
|
|
2
|
+
export { a as BoltdocsTab, C as ComponentRoute, b as CreateBoltdocsAppOptions, L as LayoutProps, N as NavbarLink, O as OnThisPageProps, S as SandboxEmbedOptions, d as SandboxFile, e as SandboxFiles, f as SandboxOptions, h as SidebarProps, i as SiteConfig, T as TabsProps } from '../types-opDA2E9-.js';
|
|
3
3
|
import 'vite';
|
package/dist/client/types.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var i=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var g=Object.prototype.hasOwnProperty;var d=(t,e,r,o)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of a(e))!g.call(t,n)&&n!==r&&i(t,n,{get:()=>e[n],enumerable:!(o=s(e,n))||o.enumerable});return t};var c=t=>d(i({},"__esModule",{value:!0}),t);var p={};module.exports=c(p);
|
package/dist/hooks/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { N as NavbarLink, g as BoltdocsSocialLink, B as BoltdocsConfig, C as ComponentRoute, a as BoltdocsTab } from '../types-
|
|
1
|
+
import { N as NavbarLink, g as BoltdocsSocialLink, B as BoltdocsConfig, C as ComponentRoute, a as BoltdocsTab } from '../types-opDA2E9-.mjs';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
export { u as useRoutes } from '../use-routes-
|
|
3
|
+
export { u as useRoutes } from '../use-routes-DrT80Eom.mjs';
|
|
4
4
|
import * as react_router_dom from 'react-router-dom';
|
|
5
5
|
import { LinkProps } from 'react-router-dom';
|
|
6
6
|
import 'vite';
|
|
@@ -38,20 +38,7 @@ declare function useSearch(routes: ComponentRoute[]): {
|
|
|
38
38
|
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
39
39
|
query: string;
|
|
40
40
|
setQuery: React$1.Dispatch<React$1.SetStateAction<string>>;
|
|
41
|
-
list:
|
|
42
|
-
id: string;
|
|
43
|
-
title: string;
|
|
44
|
-
path: string;
|
|
45
|
-
bio: string;
|
|
46
|
-
groupTitle: string | undefined;
|
|
47
|
-
}[] | {
|
|
48
|
-
id: string;
|
|
49
|
-
title: string | undefined;
|
|
50
|
-
path: string;
|
|
51
|
-
bio: string;
|
|
52
|
-
groupTitle: string | undefined;
|
|
53
|
-
isHeading?: boolean;
|
|
54
|
-
}[];
|
|
41
|
+
list: any[];
|
|
55
42
|
input: {
|
|
56
43
|
value: string;
|
|
57
44
|
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
@@ -116,8 +103,13 @@ declare function useI18n(): UseI18nReturn;
|
|
|
116
103
|
|
|
117
104
|
/**
|
|
118
105
|
* Hook to manage the previous and next button functionality for documentation pages.
|
|
106
|
+
* Intelligent: respects current locale, version, and tab to keep navigation logical.
|
|
119
107
|
*/
|
|
120
108
|
declare function usePageNav(): {
|
|
109
|
+
prevPage: null;
|
|
110
|
+
nextPage: null;
|
|
111
|
+
currentRoute: null;
|
|
112
|
+
} | {
|
|
121
113
|
prevPage: ComponentRoute | null;
|
|
122
114
|
nextPage: ComponentRoute | null;
|
|
123
115
|
currentRoute: ComponentRoute;
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { N as NavbarLink, g as BoltdocsSocialLink, B as BoltdocsConfig, C as ComponentRoute, a as BoltdocsTab } from '../types-
|
|
1
|
+
import { N as NavbarLink, g as BoltdocsSocialLink, B as BoltdocsConfig, C as ComponentRoute, a as BoltdocsTab } from '../types-opDA2E9-.js';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
export { u as useRoutes } from '../use-routes-
|
|
3
|
+
export { u as useRoutes } from '../use-routes-DNwgTRpU.js';
|
|
4
4
|
import * as react_router_dom from 'react-router-dom';
|
|
5
5
|
import { LinkProps } from 'react-router-dom';
|
|
6
6
|
import 'vite';
|
|
@@ -38,20 +38,7 @@ declare function useSearch(routes: ComponentRoute[]): {
|
|
|
38
38
|
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
39
39
|
query: string;
|
|
40
40
|
setQuery: React$1.Dispatch<React$1.SetStateAction<string>>;
|
|
41
|
-
list:
|
|
42
|
-
id: string;
|
|
43
|
-
title: string;
|
|
44
|
-
path: string;
|
|
45
|
-
bio: string;
|
|
46
|
-
groupTitle: string | undefined;
|
|
47
|
-
}[] | {
|
|
48
|
-
id: string;
|
|
49
|
-
title: string | undefined;
|
|
50
|
-
path: string;
|
|
51
|
-
bio: string;
|
|
52
|
-
groupTitle: string | undefined;
|
|
53
|
-
isHeading?: boolean;
|
|
54
|
-
}[];
|
|
41
|
+
list: any[];
|
|
55
42
|
input: {
|
|
56
43
|
value: string;
|
|
57
44
|
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
@@ -116,8 +103,13 @@ declare function useI18n(): UseI18nReturn;
|
|
|
116
103
|
|
|
117
104
|
/**
|
|
118
105
|
* Hook to manage the previous and next button functionality for documentation pages.
|
|
106
|
+
* Intelligent: respects current locale, version, and tab to keep navigation logical.
|
|
119
107
|
*/
|
|
120
108
|
declare function usePageNav(): {
|
|
109
|
+
prevPage: null;
|
|
110
|
+
nextPage: null;
|
|
111
|
+
currentRoute: null;
|
|
112
|
+
} | {
|
|
121
113
|
prevPage: ComponentRoute | null;
|
|
122
114
|
nextPage: ComponentRoute | null;
|
|
123
115
|
currentRoute: ComponentRoute;
|
package/dist/hooks/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var $=Object.defineProperty;var
|
|
1
|
+
"use strict";var ee=Object.create;var $=Object.defineProperty;var te=Object.getOwnPropertyDescriptor;var oe=Object.getOwnPropertyNames;var ne=Object.getPrototypeOf,re=Object.prototype.hasOwnProperty;var se=(e,t)=>{for(var r in t)$(e,r,{get:t[r],enumerable:!0})},A=(e,t,r,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of oe(t))!re.call(e,i)&&i!==r&&$(e,i,{get:()=>t[i],enumerable:!(o=te(t,i))||o.enumerable});return e};var ie=(e,t,r)=>(r=e!=null?ee(ne(e)):{},A(t||!e||!e.__esModule?$(r,"default",{value:e,enumerable:!0}):r,e)),ae=e=>A($({},"__esModule",{value:!0}),e);var Pe={};se(Pe,{useBreadcrumbs:()=>Ce,useI18n:()=>xe,useLocalizedTo:()=>Re,useLocation:()=>ye,useNavbar:()=>pe,useOnThisPage:()=>ge,usePageNav:()=>Le,useRoutes:()=>x,useSearch:()=>he,useSidebar:()=>me,useTabs:()=>ve,useVersion:()=>be});module.exports=ae(Pe);var U=require("react-router-dom");var E=require("react"),ce=(0,E.createContext)(null);function C(){let e=(0,E.use)(ce);if(!e)throw new Error("useConfig must be used within a ConfigProvider");return e}var I=require("react"),ue=require("react/jsx-runtime"),le=(0,I.createContext)(void 0);function j(){let e=(0,I.use)(le);if(e===void 0)throw new Error("useTheme must be used within a ThemeProvider");return e}function W(e,t){return e?typeof e=="string"?e:t&&e[t]?e[t]:Object.values(e)[0]||"":""}var z=require("react-router-dom");var k=require("react"),de=require("react/jsx-runtime"),fe=(0,k.createContext)({preload:()=>{},routes:[]});function D(){return(0,k.use)(fe)}var F=require("zustand"),O=require("zustand/middleware"),R=(0,F.create)()((0,O.persist)(e=>({currentLocale:void 0,currentVersion:void 0,hasHydrated:!1,setLocale:t=>e({currentLocale:t}),setVersion:t=>e({currentVersion:t}),setHasHydrated:t=>e({hasHydrated:t})}),{name:"boltdocs-storage",storage:(0,O.createJSONStorage)(()=>localStorage),partialize:e=>({currentLocale:e.currentLocale,currentVersion:e.currentVersion}),onRehydrateStorage:()=>e=>{e?.setHasHydrated(!0)}}));function x(){let{routes:e}=D(),t=C(),r=(0,z.useLocation)(),o=R(s=>s.currentLocale),i=R(s=>s.currentVersion),a=R(s=>s.hasHydrated),m=e.find(s=>s.path===r.pathname),u=t.i18n?m?.locale||(a?o:void 0)||t.i18n.defaultLocale:void 0,l=t.versions?m?.version||(a?i:void 0)||t.versions.defaultVersion:void 0,g=e.filter(s=>{let b=t.i18n?(s.locale||t.i18n.defaultLocale)===u:!0,T=t.versions?(s.version||t.versions.defaultVersion)===l:!0;if(!(b&&T))return!1;let S=t.i18n;if(S){let B=!!m?.locale,M=!!s.locale;if(e.some(L=>L!==s&&L.filePath===s.filePath&&L.version===s.version&&(L.locale||S.defaultLocale)===(s.locale||S.defaultLocale))&&B!==M)return!1}return!0}),n=t.i18n?.localeConfigs?.[u]?.label||t.i18n?.locales[u]||u,h=t.versions?.versions.find(s=>s.path===l)?.label||l,f=t.i18n?Object.entries(t.i18n.locales).map(([s,b])=>{let T=t.i18n?.localeConfigs?.[s];return{key:s,label:T?.label||b,isCurrent:s===u}}):[],p=t.versions?t.versions.versions.map(s=>({key:s.path,label:s.label,isCurrent:s.path===l})):[];return{routes:g,allRoutes:e,currentRoute:m,currentLocale:u,currentLocaleLabel:n,availableLocales:f,currentVersion:l,currentVersionLabel:h,availableVersions:p,config:t}}function pe(){let e=C(),{theme:t}=j(),r=(0,U.useLocation)(),{currentLocale:o}=x(),i=e.theme||{},a=W(i.title,o)||"Boltdocs",m=i.navbar||[],u=i.socialLinks||[],l=i.githubRepo,g=m.map(f=>{let p=f.href||f.to||f.link||"",s=b=>{let T=r.pathname;if(T===b)return!0;if(!b||b==="/")return T==="/";let S=H=>{let L=H.split("/").filter(Boolean),V=0;return e.i18n?.locales&&L[V]&&e.i18n.locales[L[V]]&&V++,e.versions?.versions&&L[V]&&e.versions.versions.some(_=>_.path===L[V])&&V++,L.slice(V)},B=S(b),M=S(T);return B.length===0?M.length===0:M.length<B.length?!1:B.every((H,L)=>M[L]===H)};return{label:W(f.label||f.text,o),href:p,active:s(p),to:p.startsWith("http")||p.startsWith("//")?"external":void 0}}),c=i.logo,n=c?typeof c=="string"?c:t==="dark"?c.dark:c.light:null,d={alt:(c&&typeof c=="object"?c.alt:void 0)||a,width:c&&typeof c=="object"?c.width:void 0,height:c&&typeof c=="object"?c.height:void 0},h=l?`https://github.com/${l}`:null;return{links:g,title:a,logo:n,logoProps:d,github:h,social:u,config:e,theme:t}}var Q=require("react-router-dom");function me(e){let t=C(),r=(0,Q.useLocation)(),o=n=>n.endsWith("/")&&n.length>1?n.slice(0,-1):n,i=o(r.pathname),a=e.find(n=>o(n.path)===i),m=a?.tab?.toLowerCase(),u=m?e.filter(n=>!n.tab||n.tab.toLowerCase()===m):e,l=[],g=new Map;for(let n of u)n.group?(g.has(n.group)||g.set(n.group,{slug:n.group,title:n.groupTitle||n.group,routes:[],icon:n.groupIcon}),g.get(n.group).routes.push(n)):l.push(n);return{groups:Array.from(g.values()),ungrouped:l,activeRoute:a,activePath:i,config:t}}var y=require("react"),X=require("flexsearch");var N=ie(require("virtual:boltdocs-search"));function he(e){let{currentLocale:t,currentVersion:r}=x(),[o,i]=(0,y.useState)(!1),[a,m]=(0,y.useState)(""),[u,l]=(0,y.useState)(null);(0,y.useEffect)(()=>{if(!o||u)return;let c=new X.Index({preset:"match",tokenize:"full",resolution:9,cache:!0});for(let n of N.default)c.add(n.id,`${n.title} ${n.content}`);l(c)},[o,u]);let g=(0,y.useMemo)(()=>{if(!a)return e.filter(h=>{let f=!t||h.locale===t,p=!r||h.version===r;return f&&p}).slice(0,10).map(h=>({id:h.path,title:h.title,path:h.path,bio:h.description||"",groupTitle:h.groupTitle}));if(!u)return[];let c=u.search(a,{limit:20,suggest:!0}),n=[],d=new Set;for(let h of c){let f=N.default.find(b=>b.id===h);if(!f)continue;let p=!t||f.locale===t,s=!r||f.version===r;!p||!s||d.has(f.url)||(d.add(f.url),n.push({id:f.url,title:f.title,path:f.url,bio:f.display,groupTitle:f.display.split(" > ")[0],isHeading:f.url.includes("#")}))}return n.slice(0,10)},[a,u,t,r,e]);return{isOpen:o,setIsOpen:i,query:a,setQuery:m,list:g,input:{value:a,onChange:c=>m(c.target.value)}}}var q=require("react");function ge(e=[]){let[t,r]=(0,q.useState)(null);return{headings:e,activeId:t,setActiveId:r}}var J=require("react-router-dom"),w=require("react");function ve(e=[],t=[]){let r=(0,J.useLocation)(),o=(0,w.useRef)([]),[i,a]=(0,w.useState)({opacity:0,transform:"translateX(0) scaleX(0)",width:0}),u=t.find(c=>c.path===r.pathname)?.tab?.toLowerCase(),l=e.findIndex(c=>c.id.toLowerCase()===u),g=l===-1?0:l;return(0,w.useEffect)(()=>{let c=o.current[g];c&&a({opacity:1,width:c.offsetWidth,transform:`translateX(${c.offsetLeft}px)`})},[g,e.length,r.pathname]),{tabs:e,activeIndex:g,indicatorStyle:i,tabRefs:o,activeTabId:u}}var K=require("react-router-dom");function P(e,t,r){let o=e;return t&&(o===t||o.startsWith(t+"/"))&&(o=o===t?"index.md":o.slice(t.length+1)),r&&(o===r||o.startsWith(r+"/"))&&(o=o===r?"index.md":o.slice(r.length+1)),o}function be(){let e=(0,K.useNavigate)(),t=x(),{allRoutes:r,currentRoute:o,currentVersion:i,currentLocale:a,config:m}=t,u=m.versions,l=R(n=>n.setVersion),g=n=>{if(!u||n===i)return;l(n);let d=`/docs/${n}`;if(o){let h=P(o.filePath,o.version,o.locale),f=r.find(p=>P(p.filePath,p.version,p.locale)===h&&(p.version||u.defaultVersion)===n&&(a?p.locale===a:!p.locale));if(f)d=f.path;else{let p=r.find(s=>P(s.filePath,s.version,s.locale)==="index.md"&&(s.version||u.defaultVersion)===n&&(a?s.locale===a:!s.locale));d=p?p.path:`/docs/${n}${a?`/${a}`:""}`}}e(d)},c=t.availableVersions.map(n=>({...n,label:n.label,value:n.key}));return{currentVersion:i,currentVersionLabel:t.currentVersionLabel,availableVersions:c,handleVersionChange:g}}var G=require("react-router-dom");function xe(){let e=(0,G.useNavigate)(),t=x(),{allRoutes:r,currentRoute:o,currentLocale:i,config:a}=t,m=a.i18n,u=R(d=>d.setLocale),l=d=>{if(!m||d===i)return;u(d);let h="/";if(o){let f=P(o.filePath,o.version,o.locale),p=r.find(s=>P(s.filePath,s.version,s.locale)===f&&(s.locale||m.defaultLocale)===d&&s.version===o.version);if(p)h=p.path;else{let s=r.find(b=>P(b.filePath,b.version,b.locale)==="index.md"&&(b.locale||m.defaultLocale)===d&&b.version===o.version);h=s?s.path:d===m.defaultLocale?o.version?`/${o.version}`:"/":o.version?`/${o.version}/${d}`:`/${d}`}}else{let f=r.find(p=>(p.filePath==="index.mdx"||p.filePath==="index.md")&&(p.locale||m.defaultLocale)===d&&!p.version);f?h=f.path:h=d===m.defaultLocale?"/":`/${d}`}e(h)},c=a.i18n?.localeConfigs?.[i]?.label||a.i18n?.locales[i]||i,n=a.i18n?Object.entries(a.i18n.locales).map(([d,h])=>{let f=a.i18n?.localeConfigs?.[d];return{key:d,label:f?.label||h,value:d,isCurrent:d===i}}):[];return{currentLocale:i,currentLocaleLabel:c,availableLocales:n,handleLocaleChange:l}}var Y=require("react-router-dom");function Le(){let{routes:e,currentRoute:t}=x(),r=(0,Y.useLocation)();if(!t)return{prevPage:null,nextPage:null,currentRoute:null};let o=t.tab?.toLowerCase(),i=o?e.filter(l=>l.tab?.toLowerCase()===o):e.filter(l=>!l.tab),a=i.findIndex(l=>l.path===r.pathname),m=a>0?i[a-1]:null,u=a!==-1&&a<i.length-1?i[a+1]:null;return{prevPage:m,nextPage:u,currentRoute:t}}function Ce(){let{currentRoute:e}=x(),t=[];return e&&(e.groupTitle&&t.push({label:e.groupTitle}),t.push({label:e.title,href:e.path})),{crumbs:t,activeRoute:e}}function Re(e){let t=C(),{currentLocale:r,currentVersion:o}=x();if(!t||typeof e!="string"||e.startsWith("http")||e.startsWith("//"))return e;let i=t.i18n,a=t.versions;if(!i&&!a)return e;let m=e.startsWith("/docs"),u=e.split("/").filter(Boolean),l=0;u[l]==="docs"&&l++,a&&u.length>l&&a.versions.find(h=>h.path===u[l])&&l++,i&&u.length>l&&i.locales[u[l]]&&l++;let g=u.slice(l),c=[];m&&(c.push("docs"),a&&o&&c.push(o)),i&&r&&r!==i.defaultLocale&&c.push(r),c.push(...g);let n=`/${c.join("/")}`;return n.length>1&&n.endsWith("/")?n.slice(0,-1):n||"/"}var Z=require("react-router-dom"),ye=()=>(0,Z.useLocation)();
|
package/dist/hooks/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{b as
|
|
1
|
+
import{a as l}from"../chunk-DDX52BX4.mjs";import{b as c,c as d,d as f,e as g,f as h,g as i,h as j,i as k}from"../chunk-HRZDSFR5.mjs";import"../chunk-JD3RSDE4.mjs";import{a as e}from"../chunk-2Z5T6EAU.mjs";import{f as a,g as b}from"../chunk-NBCYHLAA.mjs";import"../chunk-JZXLCA2E.mjs";export{k as useBreadcrumbs,i as useI18n,b as useLocalizedTo,l as useLocation,c as useNavbar,f as useOnThisPage,j as usePageNav,a as useRoutes,e as useSearch,d as useSidebar,g as useTabs,h as useVersion};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { C as ComponentRoute, B as BoltdocsConfig, O as OnThisPageProps } from './types-
|
|
2
|
+
import { C as ComponentRoute, B as BoltdocsConfig, O as OnThisPageProps } from './types-opDA2E9-.mjs';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { Component, ReactNode, ErrorInfo } from 'react';
|
|
5
5
|
|
|
@@ -27,18 +27,10 @@ declare function Breadcrumbs(): react_jsx_runtime.JSX.Element | null;
|
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
29
|
* Component to display the previous and next page navigation buttons.
|
|
30
|
+
* Enhanced with subtle entrance animations and a modern card layout.
|
|
30
31
|
*/
|
|
31
32
|
declare function PageNav(): react_jsx_runtime.JSX.Element | null;
|
|
32
33
|
|
|
33
|
-
/**
|
|
34
|
-
* A reading progress bar component that tracks the scroll position
|
|
35
|
-
* within the Boltdocs content area.
|
|
36
|
-
*
|
|
37
|
-
* It utilizes react-aria-components for accessibility and is fixed
|
|
38
|
-
* to the top of the viewport for a premium, non-intrusive UI experience.
|
|
39
|
-
*/
|
|
40
|
-
declare function ProgressBar(): react_jsx_runtime.JSX.Element;
|
|
41
|
-
|
|
42
34
|
interface Props {
|
|
43
35
|
children?: ReactNode;
|
|
44
36
|
fallback?: ReactNode;
|
|
@@ -57,12 +49,9 @@ declare class ErrorBoundary extends Component<Props, State> {
|
|
|
57
49
|
declare function NotFound(): react_jsx_runtime.JSX.Element;
|
|
58
50
|
|
|
59
51
|
/**
|
|
60
|
-
* A premium loading component that
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
* It features a glassmorphism container and a Bolt-style SVG logo
|
|
64
|
-
* with a dynamic fill effect.
|
|
52
|
+
* A premium loading component that only skeletons the markdown content area.
|
|
53
|
+
* Designed to be used as a Suspense fallback within a persistent layout.
|
|
65
54
|
*/
|
|
66
55
|
declare function Loading(): react_jsx_runtime.JSX.Element;
|
|
67
56
|
|
|
68
|
-
export { Breadcrumbs as B, ErrorBoundary as E, Head as H, Loading as L, Navbar as N, OnThisPage as O, PageNav as P, Sidebar as S, NotFound as a
|
|
57
|
+
export { Breadcrumbs as B, ErrorBoundary as E, Head as H, Loading as L, Navbar as N, OnThisPage as O, PageNav as P, Sidebar as S, NotFound as a };
|