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/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var Ms=Object.create;var Bt=Object.defineProperty;var Es=Object.getOwnPropertyDescriptor;var Os=Object.getOwnPropertyNames;var Vs=Object.getPrototypeOf,Ds=Object.prototype.hasOwnProperty;var w=(e,t)=>()=>(e&&(t=e(e=0)),t);var zo=(e,t)=>{for(var o in t)Bt(e,o,{get:t[o],enumerable:!0})},Lr=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Os(t))!Ds.call(e,n)&&n!==o&&Bt(e,n,{get:()=>t[n],enumerable:!(r=Es(t,n))||r.enumerable});return e};var I=(e,t,o)=>(o=e!=null?Ms(Vs(e)):{},Lr(t||!e||!e.__esModule?Bt(o,"default",{value:e,enumerable:!0}):o,e)),Hs=e=>Lr(Bt({},"__esModule",{value:!0}),e);var i=w(()=>{"use strict"});function D(){let e=(0,At.use)($o);if(!e)throw new Error("useConfig must be used within a ConfigProvider");return e}var At,$o,me=w(()=>{"use strict";i();At=require("react"),$o=(0,At.createContext)(null)});function Mt(){return(0,Ee.use)(kr)}function Sr({routes:e,modules:t,children:o}){let r=(0,Ee.useRef)(null),n=(0,Ee.useCallback)(s=>{r.current&&clearTimeout(r.current),r.current=setTimeout(()=>{let a=s.split("#")[0].split("?")[0],c=e.find(l=>l.path===a||a==="/"&&l.path==="");if(c?.filePath){let l=Object.keys(t).find(d=>d.endsWith("/"+c.filePath));l&&t[l]().catch(d=>{console.error(`[boltdocs] Failed to preload route ${s}:`,d)})}},100)},[e,t]);return(0,Ir.jsx)(kr.Provider,{value:{preload:n,routes:e},children:o})}var Ee,Ir,kr,Et=w(()=>{"use strict";i();Ee=require("react"),Ir=require("react/jsx-runtime"),kr=(0,Ee.createContext)({preload:()=>{},routes:[]})});var Br,Ot,Q,bt=w(()=>{"use strict";i();Br=require("zustand"),Ot=require("zustand/middleware"),Q=(0,Br.create)()((0,Ot.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,Ot.createJSONStorage)(()=>localStorage),partialize:e=>({currentLocale:e.currentLocale,currentVersion:e.currentVersion}),onRehydrateStorage:()=>e=>{e?.setHasHydrated(!0)}}))});function T(){let{routes:e}=Mt(),t=D(),o=(0,Ar.useLocation)(),r=Q(g=>g.currentLocale),n=Q(g=>g.currentVersion),s=Q(g=>g.hasHydrated),a=e.find(g=>g.path===o.pathname),c=t.i18n?a?.locale||(s?r:void 0)||t.i18n.defaultLocale:void 0,l=t.versions?a?.version||(s?n:void 0)||t.versions.defaultVersion:void 0,d=e.filter(g=>{let S=t.i18n?(g.locale||t.i18n.defaultLocale)===c:!0,Z=t.versions?(g.version||t.versions.defaultVersion)===l:!0;if(!(S&&Z))return!1;let ce=t.i18n;if(ce){let Bs=!!a?.locale,As=!!g.locale;if(e.some(It=>It!==g&&It.filePath===g.filePath&&It.version===g.version&&(It.locale||ce.defaultLocale)===(g.locale||ce.defaultLocale))&&Bs!==As)return!1}return!0}),u=t.i18n?.localeConfigs?.[c]?.label||t.i18n?.locales[c]||c,h=t.versions?.versions.find(g=>g.path===l)?.label||l,v=t.i18n?Object.entries(t.i18n.locales).map(([g,S])=>{let Z=t.i18n?.localeConfigs?.[g];return{key:g,label:Z?.label||S,isCurrent:g===c}}):[],x=t.versions?t.versions.versions.map(g=>({key:g.path,label:g.label,isCurrent:g.path===l})):[];return{routes:d,allRoutes:e,currentRoute:a,currentLocale:c,currentLocaleLabel:u,availableLocales:v,currentVersion:l,currentVersionLabel:h,availableVersions:x,config:t}}var Ar,J=w(()=>{"use strict";i();Ar=require("react-router-dom");me();Et();bt()});function ht(e){let t=D(),{currentLocale:o,currentVersion:r}=T();if(!t||typeof e!="string"||e.startsWith("http")||e.startsWith("//"))return e;let n=t.i18n,s=t.versions;if(!n&&!s)return e;let a=e.startsWith("/docs"),c=e.split("/").filter(Boolean),l=0;c[l]==="docs"&&l++,s&&c.length>l&&s.versions.find(h=>h.path===c[l])&&l++,n&&c.length>l&&n.locales[c[l]]&&l++;let d=c.slice(l),m=[];a&&(m.push("docs"),s&&r&&m.push(r)),n&&o&&o!==n.defaultLocale&&m.push(o),m.push(...d);let u=`/${m.join("/")}`;return u.length>1&&u.endsWith("/")?u.slice(0,-1):u||"/"}var Fo=w(()=>{"use strict";i();me();J()});function p(...e){return(0,Er.twMerge)((0,Mr.clsx)(e))}var Mr,Er,P=w(()=>{"use strict";i();Mr=require("clsx"),Er=require("tailwind-merge")});var Wo,Or,Vr,_o,K,zs,Ue=w(()=>{"use strict";i();Wo=I(require("react")),Or=require("react-aria-components"),Vr=require("react-router-dom");Fo();Et();P();_o=require("react/jsx-runtime"),K=Wo.default.forwardRef((e,t)=>{let{href:o,prefetch:r="hover",onMouseEnter:n,onFocus:s,...a}=e,c=ht(o??""),{preload:l}=Mt();return(0,_o.jsx)(Or.Link,{...a,ref:t,href:c,onMouseEnter:u=>{n?.(u),r==="hover"&&typeof c=="string"&&c.startsWith("/")&&l(c)},onFocus:u=>{s?.(u),r==="hover"&&typeof c=="string"&&c.startsWith("/")&&l(c)}})});K.displayName="Link";zs=Wo.default.forwardRef((e,t)=>{let{href:o,end:r=!1,className:n,children:s,...a}=e,c=(0,Vr.useLocation)(),l=ht(o??""),d=r?c.pathname===l:c.pathname.startsWith(l),m=typeof n=="function"?n({isActive:d}):p(n,d&&"active"),u=typeof s=="function"?s({isActive:d}):s;return(0,_o.jsx)(K,{...a,ref:t,href:o,className:m,children:u})});zs.displayName="NavLink"});var zt,on,de,Ht,ue,$t=w(()=>{"use strict";i();zt=I(require("react-aria-components"));P();on=require("class-variance-authority"),de=require("react/jsx-runtime"),Ht=(0,on.cva)("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"}}),ue=({href:e,icon:t,iconPosition:o="left",isIconOnly:r,children:n,className:s,variant:a,size:c,rounded:l,iconSize:d,disabled:m,...u})=>{let f=r||!n&&!!t,h=f?(0,de.jsx)("span",{className:"inline-flex items-center justify-center [&>svg]:w-[1.2rem] [&>svg]:h-[1.2rem]",children:t}):(0,de.jsxs)(de.Fragment,{children:[t&&o==="left"&&(0,de.jsx)("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t}),(0,de.jsx)("span",{className:"flex items-center",children:n}),t&&o==="right"&&(0,de.jsx)("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t})]});return e?(0,de.jsx)(zt.Link,{href:e,className:p(Ht({variant:a,size:c,rounded:l,iconSize:f?d:void 0,disabled:m}),s),...u,children:h}):(0,de.jsx)(zt.Button,{className:p(Ht({variant:a,size:c,rounded:l,iconSize:f?d:void 0,disabled:m}),s),...u,children:h})}});function vt(e){let{size:t=20,...o}=e;return{...o,width:t,height:t}}var H,Gt,ln,cn,mn,pn,Ut=w(()=>{"use strict";i();H=require("react/jsx-runtime");Gt=e=>(0,H.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...vt(e),children:[(0,H.jsx)("title",{children:"GitHub"}),(0,H.jsx)("path",{d:"M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"})]}),ln=e=>(0,H.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...vt(e),children:[(0,H.jsx)("title",{children:"Discord"}),(0,H.jsx)("path",{d:"M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028c.462-.63.874-1.295 1.226-1.994a.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418Z"})]}),cn=e=>(0,H.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...vt(e),children:[(0,H.jsx)("title",{children:"X"}),(0,H.jsx)("path",{d:"M14.234 10.162 22.977 0h-2.072l-7.591 8.824L7.251 0H.258l9.168 13.343L.258 24H2.33l8.016-9.318L16.749 24h6.993zm-2.837 3.299-.929-1.329L3.076 1.56h3.182l5.965 8.532.929 1.329 7.754 11.09h-3.182z"})]}),mn=e=>(0,H.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...vt(e),children:[(0,H.jsx)("title",{children:"CodeSandbox"}),(0,H.jsx)("path",{d:"M0 24h24V0H0v2.455h21.546v19.09H2.454V0H0Z"})]}),pn=e=>(0,H.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...vt(e),children:[(0,H.jsx)("title",{children:"Bluesky"}),(0,H.jsx)("path",{d:"M5.202 2.857C7.954 4.922 10.913 9.11 12 11.358c1.087-2.247 4.046-6.436 6.798-8.501C20.783 1.366 24 .213 24 3.883c0 .732-.42 6.156-.667 7.037-.856 3.061-3.978 3.842-6.755 3.37 4.854.826 6.089 3.562 3.422 6.299-5.065 5.196-7.28-1.304-7.847-2.97-.104-.305-.152-.448-.153-.327 0-.121-.05.022-.153.327-.568 1.666-2.782 8.166-7.847 2.97-2.667-2.737-1.432-5.473 3.422-6.3-2.777.473-5.899-.308-6.755-3.369C.42 10.04 0 4.615 0 3.883c0-3.67 3.217-2.517 5.202-1.026"})]})});var qe,ne,Fs,Ko,Xo=w(()=>{"use strict";i();qe=I(require("react-aria-components"));P();ne=require("react/jsx-runtime"),Fs=({className:e,children:t,...o})=>(0,ne.jsx)(qe.Tooltip,{...o,offset:8,className:r=>p("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=>(0,ne.jsxs)(ne.Fragment,{children:[(0,ne.jsx)(qe.OverlayArrow,{children:(0,ne.jsxs)("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:[(0,ne.jsx)("title",{children:"Arrow"}),(0,ne.jsx)("path",{d:"M0 0 L4 4 L8 0"})]})}),typeof t=="function"?t(r):t]})}),Ko=({content:e,children:t,delay:o=500,closeDelay:r=0,...n})=>(0,ne.jsxs)(qe.TooltipTrigger,{delay:o,closeDelay:r,children:[t,(0,ne.jsx)(Fs,{...n,children:e})]})});var vo,Nn,ke,R,ti,oi,ri,ni,si,ii,ai,li,ci,mi,pi,di,ui,fi,gi,U,yo=w(()=>{"use strict";i();vo=require("react");Co();Nn=require("react-aria-components"),ke=require("lucide-react");Ut();R=require("react/jsx-runtime"),ti=({children:e,className:t,...o})=>(0,R.jsx)("header",{className:p("boltdocs-navbar sticky top-0 z-50 w-full border-b border-border-subtle bg-bg-main/80 backdrop-blur-md",t),...o,children:e}),oi=({children:e,className:t})=>(0,R.jsx)("div",{className:p("mx-auto flex lg:h-navbar max-w-(--breakpoint-3xl) items-center justify-between px-4 md:px-6",t),children:e}),ri=({children:e,className:t})=>(0,R.jsx)("div",{className:p("flex items-center gap-4",t),children:e}),ni=({children:e,className:t})=>(0,R.jsx)("div",{className:p("flex items-center gap-2 md:gap-4",t),children:e}),si=({children:e,className:t})=>(0,R.jsx)("div",{className:p("hidden lg:flex flex-1 justify-center items-center gap-4 px-4",t),children:e}),ii=({src:e,alt:t,width:o=24,height:r=24,className:n})=>(0,R.jsx)(K,{href:"/",className:p("flex items-center gap-2 shrink-0 outline-none",n),children:e?(0,R.jsx)("img",{src:e,alt:t,width:o,height:r,className:"h-6 w-6 object-contain"}):null}),ai=({children:e,className:t})=>(0,R.jsx)("span",{className:p("text-lg font-bold tracking-tight hidden sm:inline-block",t),children:e}),li=({children:e,className:t})=>(0,R.jsx)("nav",{className:p("hidden md:flex items-center gap-6 text-sm font-medium",t),children:e}),ci=({label:e,href:t,active:o,to:r,className:n})=>(0,R.jsxs)(K,{href:t,target:r==="external"?"_blank":void 0,className:p("transition-colors outline-none focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-sm",{"text-primary-500 font-bold":o,"text-text-muted hover:text-text-main font-medium":!o},n),children:[e,r==="external"&&(0,R.jsx)("span",{className:"ml-1 inline-block",children:(0,R.jsx)(ke.ExternalLink,{size:12})})]}),mi=({className:e,onPress:t})=>{let[o,r]=(0,vo.useState)(!1),n=o&&/Mac|iPod|iPhone|iPad/.test(navigator.platform);return(0,vo.useEffect)(()=>{r(!0)},[]),(0,R.jsxs)(Nn.Button,{onPress:t,className:p("flex items-center gap-2 rounded-full border border-border-subtle bg-bg-surface px-3 py-2 text-sm text-text-muted outline-none cursor-pointer","transition-colors hover:border-border-strong hover:text-text-main","focus-visible:ring-2 focus-visible:ring-primary-500/30","w-full max-w-[320px] justify-between",e),children:[(0,R.jsxs)("div",{className:"flex items-center gap-2",children:[(0,R.jsx)(ke.Search,{size:16}),(0,R.jsx)("span",{className:"hidden sm:inline-block",children:"Search docs..."})]}),(0,R.jsxs)("div",{className:"hidden sm:flex items-center gap-1 pointer-events-none select-none",children:[(0,R.jsx)("kbd",{className:"flex h-5 items-center justify-center rounded border border-border-subtle bg-bg-main px-1.5 font-mono text-[10px] font-medium",children:n?"\u2318":"Ctrl"}),(0,R.jsx)("kbd",{className:"flex h-5 w-5 items-center justify-center rounded border border-border-subtle bg-bg-main font-mono text-[10px] font-medium",children:"K"})]})]})},pi=({className:e,theme:t,onThemeChange:o})=>(0,R.jsx)(tt.ToggleButton,{isSelected:t==="dark",onChange:o,className:p("rounded-md p-2 text-text-muted outline-none cursor-pointer transition-colors","hover:bg-bg-surface hover:text-text-main","focus-visible:ring-2 focus-visible:ring-primary-500/30",e),"aria-label":"Toggle theme",children:t==="dark"?(0,R.jsx)(ke.Sun,{size:20}):(0,R.jsx)(ke.Moon,{size:20})}),di=({label:e,className:t,onPress:o,isCurrent:r})=>(0,R.jsx)(Ce,{onAction:o,className:p(r&&"bg-primary-500 text-white font-medium hover:bg-primary-600 focus:bg-primary-600 focus:text-white",t),children:e}),ui=({name:e})=>{if(e==="github")return(0,R.jsx)(Gt,{});if(e==="discord")return(0,R.jsx)(ln,{});if(e==="x")return(0,R.jsx)(cn,{});if(e==="bluesky")return(0,R.jsx)(pn,{})},fi=({icon:e,link:t,className:o})=>(0,R.jsx)(K,{href:t,target:"_blank",rel:"noopener noreferrer",className:p("rounded-md p-2 text-text-muted outline-none transition-colors","hover:bg-bg-surface hover:text-text-main","focus-visible:ring-2 focus-visible:ring-primary-500/30",o),children:(0,R.jsx)(ui,{name:e})}),gi=({className:e})=>(0,R.jsx)(tt.Separator,{orientation:"vertical",className:p("h-6 w-px bg-border-subtle mx-1",e)}),U={NavbarRoot:ti,NavbarLeft:ri,NavbarRight:ni,NavbarCenter:si,NavbarLogo:ii,Title:ai,Links:li,Link:ci,SearchTrigger:mi,Theme:pi,Item:di,Socials:fi,Split:gi,Content:oi}});var wt,bi,tr,wn=w(()=>{"use strict";i();wt=I(require("react-aria-components")),bi=require("lucide-react");P();tr=require("react/jsx-runtime")});var $,De,L,or,rr,nr,sr,ir,ar,lr,cr,Lc,mr=w(()=>{"use strict";i();$=I(require("react-aria-components")),De=require("lucide-react");P();L=require("react/jsx-runtime"),or=({children:e,isOpen:t,onOpenChange:o,className:r})=>(0,L.jsx)($.ModalOverlay,{isOpen:t,onOpenChange:o,isDismissable:!0,className:p("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:(0,L.jsx)($.Modal,{className:p("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:(0,L.jsx)($.Dialog,{className:"flex flex-col max-h-[70vh] focus:outline-none",children:e})})}),rr=({children:e,className:t,onSelectionChange:o,...r})=>(0,L.jsx)("div",{className:t,children:(0,L.jsx)($.Autocomplete,{...r,onSelectionChange:o,className:"flex flex-col min-h-0",children:e})}),nr=({className:e,...t})=>(0,L.jsxs)($.SearchField,{className:"flex items-center gap-3 border-b border-border-subtle px-4 py-4",autoFocus:!0,children:[(0,L.jsx)(De.Search,{className:"h-5 w-5 text-text-muted"}),(0,L.jsx)($.Input,{...t,className:p("w-full bg-transparent text-lg text-text-main placeholder-text-muted outline-none",e),placeholder:"Search documentation..."}),(0,L.jsx)("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:(0,L.jsx)("kbd",{className:"font-sans",children:"ESC"})})]}),sr=({children:e,className:t,...o})=>(0,L.jsx)($.ListBox,{...o,className:p("flex-1 overflow-y-auto p-2 outline-none",t),children:e}),ir=({children:e,className:t,...o})=>(0,L.jsx)($.ListBoxItem,{...o,className:p("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=>(0,L.jsxs)(L.Fragment,{children:[e,(r.isFocused||r.isSelected)&&(0,L.jsxs)("div",{className:"ml-auto opacity-50 flex items-center gap-1",children:[(0,L.jsx)("span",{className:"text-[10px]",children:"Select"}),(0,L.jsx)(De.CornerDownLeft,{size:10})]})]})}),ar=({isHeading:e,className:t})=>(0,L.jsx)("div",{className:p("shrink-0",t),children:e?(0,L.jsx)(De.Hash,{size:18}):(0,L.jsx)(De.FileText,{size:18})}),lr=({children:e,className:t})=>(0,L.jsx)("span",{className:p("block font-medium truncate flex-1 text-sm",t),children:e}),cr=({children:e,className:t})=>(0,L.jsx)("span",{className:p("ml-2 text-xs opacity-70 truncate hidden sm:inline group-focus:opacity-100",t),children:e}),Lc={Root:or,Autocomplete:rr,Input:nr,List:sr,Item:Object.assign(ir,{Icon:ar,Title:lr,Bio:cr})}});function Tn(e,t){let o=(0,Ro.useRef)(e);(0,Ro.useEffect)(()=>{o.current!==e&&(t(e),o.current=e)},[e,t])}var Ro,Ln=w(()=>{"use strict";i();Ro=require("react")});function pr(e){return e.startsWith("#")?e.slice(1):null}var kn=w(()=>{"use strict";i()});function hi(){let e=(0,k.use)(ur);if(!e)throw new Error("Component must be used under the <AnchorProvider /> component.");return e}function xi(e){let[t,o]=(0,k.useState)({isOverflowing:!1,isAtBottom:!1});return(0,k.useEffect)(()=>{let r=e.current;if(!r)return;let n=()=>{let a=r.scrollHeight>r.clientHeight,c=r.scrollHeight-r.scrollTop<=r.clientHeight+2;o({isOverflowing:a,isAtBottom:c})};n(),r.addEventListener("scroll",n,{passive:!0}),window.addEventListener("resize",n);let s=new MutationObserver(n);return s.observe(r,{childList:!0,subtree:!0}),()=>{r.removeEventListener("scroll",n),window.removeEventListener("resize",n),s.disconnect()}},[e]),t}function Bn(){let e=hi();return(0,k.useMemo)(()=>{let t;for(let o of e)o.active&&(!t||o.t>t.t)&&(t=o);return t?.id},[e])}function An({containerRef:e,children:t}){return(0,Re.jsx)(In.Provider,{value:e,children:t})}function Mn({toc:e,single:t=!1,children:o}){let r=(0,k.useMemo)(()=>new dr,[]),[n,s]=(0,k.useState)(r.items);return r.single=t,(0,k.useEffect)(()=>{r.setItems(e)},[r,e]),(0,k.useEffect)(()=>(r.watch({rootMargin:"0px",threshold:.98}),r.onChange=()=>s([...r.items]),()=>{r.unwatch()}),[r]),(0,Re.jsx)(ur.Provider,{value:n,children:o})}var k,Sn,Re,ur,In,dr,vi,yi,En,Ci,Ri,Pi,Ni,Fe,fr=w(()=>{"use strict";i();k=require("react"),Sn=I(require("scroll-into-view-if-needed"));P();Ln();kn();Re=require("react/jsx-runtime"),ur=(0,k.createContext)(null),In=(0,k.createContext)(null),dr=class{items=[];single=!1;observer=null;onChange;callback(t){if(t.length===0)return;let o=!1;if(this.items=this.items.map(r=>{let n=t.find(a=>a.target.id===r.id),s=n?n.isIntersecting:r.active&&!r.fallback;return this.single&&o&&(s=!1),r.active!==s&&(r={...r,t:Date.now(),active:s,fallback:!1}),s&&(o=!0),r}),!o&&t[0].rootBounds){let r=t[0].rootBounds.top,n=Number.MAX_VALUE,s=-1;for(let a=0;a<this.items.length;a++){let c=document.getElementById(this.items[a].id);if(!c)continue;let l=Math.abs(r-c.getBoundingClientRect().top);l<n&&(s=a,n=l)}s!==-1&&(this.items[s]={...this.items[s],active:!0,fallback:!0,t:Date.now()})}this.onChange?.()}setItems(t){let o=this.observer;if(o)for(let r of this.items){let n=document.getElementById(r.id);n&&o.unobserve(n)}this.items=[];for(let r of t){let n=pr(r.url);n&&this.items.push({id:n,active:!1,fallback:!1,t:0,original:r})}this.watchItems(),typeof window<"u"&&(setTimeout(()=>this.watchItems(),100),setTimeout(()=>this.watchItems(),500),setTimeout(()=>this.watchItems(),1e3)),this.onChange?.()}watch(t){this.observer||(this.observer=new IntersectionObserver(this.callback.bind(this),t),this.watchItems())}watchItems(){if(this.observer)for(let t of this.items){let o=document.getElementById(t.id);o&&this.observer.observe(o)}}unwatch(){this.observer?.disconnect(),this.observer=null}};vi=({children:e,className:t})=>(0,Re.jsx)("nav",{className:p("sticky top-navbar hidden xl:flex flex-col shrink-0","w-toc","py-8 pl-6 pr-4",t),children:e}),yi=({children:e,className:t,...o})=>(0,Re.jsx)("div",{className:p("mb-4 text-xs font-bold uppercase tracking-wider text-text-main",t),...o,children:e}),En=({children:e,className:t,ref:o,...r})=>{let n=(0,k.useRef)(null);(0,k.useImperativeHandle)(o,()=>n.current);let{isOverflowing:s,isAtBottom:a}=xi(n);return(0,Re.jsx)("div",{ref:n,className:p("relative overflow-y-auto boltdocs-otp-content",s&&!a&&"mask-[linear-gradient(to_bottom,black_85%,transparent_100%)]",t),...r,children:e})};En.displayName="OnThisPageContent";Ci=({children:e,className:t})=>(0,Re.jsx)("ul",{className:p("relative space-y-1 text-sm border-l border-border-subtle",t),children:e}),Ri=({level:e,children:t,className:o})=>(0,Re.jsx)("li",{className:p(e===3&&"pl-3",o),children:t}),Pi=({children:e,href:t,active:o,onClick:r,className:n})=>{let s=(0,k.use)(ur),a=(0,k.use)(In),c=t?pr(t):null,l=(0,k.useRef)(null),[d,m]=(0,k.useState)(o);return Tn(c&&s?s.find(u=>u.id===c)?.active:null,u=>{u!==null&&u!==d&&(m(!!u),u&&l.current&&a?.current&&(0,Sn.default)(l.current,{behavior:"smooth",block:"center",inline:"center",scrollMode:"if-needed",boundary:a.current}))}),(0,k.useEffect)(()=>{o!==void 0&&m(o)},[o]),(0,Re.jsx)("a",{ref:l,href:t,onClick:r,"data-active":d,className:p("block py-1 pl-4 text-[13px] outline-none transition-colors hover:text-text-main",d?"text-primary-500 font-medium":"text-text-muted",n),children:e})},Ni=({style:e,className:t})=>(0,Re.jsx)("div",{className:p("absolute -left-px w-0.5 rounded-full bg-primary-500 transition-all duration-300",t),style:e}),Fe={OnThisPageRoot:vi,OnThisPageHeader:yi,OnThisPageContent:En,OnThisPageList:Ci,OnThisPageItem:Ri,OnThisPageLink:Pi,OnThisPageIndicator:Ni}});var On,Po,ie,wi,Ti,Li,ki,Si,He,gr=w(()=>{"use strict";i();On=I(require("react-aria-components")),Po=require("lucide-react");P();ie=require("react/jsx-runtime"),wi=({children:e,className:t})=>(0,ie.jsx)("nav",{className:p("grid grid-cols-1 sm:grid-cols-2 gap-4 mt-12 pt-8 border-t border-border-subtle",t),children:e}),Ti=({children:e,to:t,direction:o,className:r})=>{let n=o==="next";return(0,ie.jsxs)(On.Link,{href:t,className:p("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&&(0,ie.jsx)(Po.ChevronLeft,{className:"mr-3 h-5 w-5 text-text-muted group-hover:text-primary-500 transition-transform group-hover:-translate-x-1"}),(0,ie.jsx)("div",{className:"flex flex-col gap-1 flex-1",children:e}),n&&(0,ie.jsx)(Po.ChevronRight,{className:"ml-3 h-5 w-5 text-text-muted group-hover:text-primary-500 transition-transform group-hover:translate-x-1"})]})},Li=({children:e,className:t})=>(0,ie.jsx)("span",{className:p("text-xs font-medium uppercase tracking-wider text-text-muted",t),children:e}),ki=({children:e,className:t})=>(0,ie.jsx)("span",{className:p("text-base font-bold text-text-main truncate",t),children:e}),Si=({children:e})=>(0,ie.jsx)(ie.Fragment,{children:e}),He={PageNavRoot:wi,PageNavLink:Object.assign(Ti,{Title:Li,Description:ki,Icon:Si})}});var ot,Ii,Bi,Ai,Mi,Ei,br,hr=w(()=>{"use strict";i();P();ot=require("react/jsx-runtime"),Ii=({children:e,className:t="",...o})=>(0,ot.jsx)("div",{className:p("w-full",t),...o,children:e}),Bi=({children:e,className:t=""})=>(0,ot.jsx)("div",{role:"tablist",className:p("relative flex flex-row items-center border-b border-border-subtle",t),children:e}),Ai=({children:e,id:t,selected:o,className:r="",...n})=>(0,ot.jsx)("button",{role:"tab","aria-selected":o,className:p("flex items-center gap-2 px-4 py-2 text-sm font-medium transition-colors outline-none cursor-pointer bg-transparent border-none",o?"text-primary-500":"text-text-muted hover:text-text-main",r),...n,children:e}),Mi=({children:e,className:t=""})=>(0,ot.jsx)("div",{className:p("p-4 outline-none",t),children:e}),Ei=({className:e="",style:t})=>(0,ot.jsx)("div",{className:p("absolute bottom-0 h-0.5 bg-primary-500 transition-all duration-300",e),style:t}),br={TabsRoot:Ii,TabsList:Bi,TabsItem:Ai,TabsContent:Mi,TabsIndicator:Ei}});var Vn,Dn,F,Oi,Vi,Di,Hi,zi,rt,xr=w(()=>{"use strict";i();Ue();Vn=I(require("react-aria-components")),Dn=require("lucide-react");P();F=require("react/jsx-runtime"),Oi=({badge:e})=>{let t={new:"bg-primary-500/20 text-primary-500",updated:"bg-gray-500/20 text-gray-500",deprecated:"bg-red-500/20 text-red-500"};if(typeof e=="object"&&e?.expires){let r=new Date(e.expires),n=new Date,s=r.getTime()-n.getTime();if(Math.ceil(s/(1e3*60*60*24))===0)return null}let o=typeof e=="string"?e:e?.text;return(0,F.jsx)("span",{className:p("ml-auto flex h-4.5 items-center rounded-full text-[9px] font-medium px-1.5 py-0.5 text-center whitespace-nowrap",t[o]||t.new),children:o})},Vi=({children:e,className:t})=>(0,F.jsx)("aside",{className:p("boltdocs-sidebar sticky top-navbar hidden lg:flex flex-col shrink-0","w-sidebar h-full","overflow-y-auto border-r border-border-subtle bg-bg-main","py-6 px-4",t),children:(0,F.jsx)("nav",{className:"flex-1 space-y-6",children:e})}),Di=({children:e,title:t,icon:o,isOpen:r=!0,onToggle:n,className:s})=>(0,F.jsxs)("div",{className:p("space-y-1",s),children:[t&&(0,F.jsxs)(Vn.Button,{onPress:n,className:p("flex w-full items-center justify-between px-2 py-1.5 text-xs font-bold uppercase tracking-wider outline-none cursor-pointer","text-text-muted hover:text-text-main transition-colors","focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-md"),children:[(0,F.jsxs)("div",{className:"flex items-center gap-2",children:[o&&(0,F.jsx)(o,{size:14}),t]}),(0,F.jsx)(Dn.ChevronRight,{size:14,className:p("transition-transform duration-200",r&&"rotate-90")})]}),r&&(0,F.jsx)("div",{className:"space-y-0.5",children:e})]}),Hi=({children:e,className:t})=>(0,F.jsx)("div",{className:p(t),children:e}),zi=({label:e,href:t,active:o,icon:r,badge:n,className:s})=>(0,F.jsxs)(K,{href:t,className:p("group flex items-center gap-2.5 rounded-lg px-2.5 py-2 text-sm outline-none transition-colors","focus-visible:ring-2 focus-visible:ring-primary-500/30",o?"bg-primary-500/10 text-primary-500 font-medium":"text-text-muted hover:bg-bg-surface hover:text-text-main",s),children:[r&&(0,F.jsx)(r,{size:16,className:p(o?"text-primary-500":"text-text-muted group-hover:text-text-main")}),(0,F.jsx)("span",{className:"truncate",children:e}),n&&(0,F.jsx)(Oi,{badge:n})]}),rt={SidebarRoot:Vi,SidebarGroup:Di,SidebarGroupItem:Hi,SidebarLink:zi}});var nt,Hn,Tt,zn,vr,yr,$n,Cr=w(()=>{"use strict";i();nt=require("react-aria-components"),Hn=require("lucide-react");P();Tt=require("react/jsx-runtime"),zn=({children:e,className:t,...o})=>(0,Tt.jsx)(nt.Breadcrumbs,{className:p("flex items-center gap-1.5 pl-0! mb-0 text-sm text-text-muted",t),...o,children:e}),vr=({children:e,className:t,...o})=>(0,Tt.jsx)(nt.Breadcrumb,{className:p("flex items-center mb-0 gap-1.5",t),...o,children:e}),yr=({children:e,href:t,className:o,...r})=>(0,Tt.jsx)(nt.Link,{href:t,className:p("transition-colors outline-none hover:text-text-main focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-sm","current:font-medium current:text-text-main current:pointer-events-none cursor-pointer",o),...r,children:e}),$n=({className:e})=>(0,Tt.jsx)(Hn.ChevronRight,{size:14,className:p("shrink-0 text-text-dim",e)})});var Wn,Fn,_n=w(()=>{"use strict";i();P();Wn=require("react/jsx-runtime"),Fn=({children:e,className:t,vertical:o=!1})=>(0,Wn.jsx)("div",{className:p("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})});var it,st,Rr,Pr=w(()=>{"use strict";"use client";i();it=I(require("react-aria-components"));P();st=require("react/jsx-runtime"),Rr=({children:e,className:t,showArrow:o,...r})=>(0,st.jsxs)(it.Popover,{offset:8,...r,className:it.composeRenderProps(t,n=>p("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&&(0,st.jsx)(it.OverlayArrow,{className:"group",children:(0,st.jsx)("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:(0,st.jsx)("path",{d:"M0 0 L6 6 L12 0"})})}),e]})});function Ye(e){let[t,o]=Nr.default.Children.toArray(e.children).slice(0,2);return(0,O.jsxs)(V.MenuTrigger,{...e,children:[t,(0,O.jsx)(Rr,{placement:e.placement,className:"min-w-[200px]",children:o})]})}function $i(e){let[t,o]=Nr.default.Children.toArray(e.children).slice(0,2);return(0,O.jsxs)(V.SubmenuTrigger,{...e,children:[t,(0,O.jsx)(Rr,{offset:-4,crossOffset:-4,children:o})]})}function et(e){return(0,O.jsx)(V.Menu,{...e,className:V.composeRenderProps(e.className,t=>p("p-1.5 outline-none max-h-[inherit] overflow-auto",t))})}function Ce(e){let t=e.textValue||(typeof e.children=="string"?e.children:void 0);return(0,O.jsx)(V.MenuItem,{...e,textValue:t,className:V.composeRenderProps(e.className,(o,{isFocused:r,isPressed:n,isDisabled:s})=>p("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",s&&"opacity-40 grayscale pointer-events-none",o)),children:V.composeRenderProps(e.children,(o,{selectionMode:r,isSelected:n,hasSubmenu:s})=>(0,O.jsxs)(O.Fragment,{children:[r!=="none"&&(0,O.jsxs)("span",{className:"flex items-center w-4 h-4 shrink-0 justify-center",children:[n&&r==="multiple"&&(0,O.jsx)(at.Check,{className:"w-3.5 h-3.5 stroke-[2.5px] text-primary-500 animate-in zoom-in-50 duration-200"}),n&&r==="single"&&(0,O.jsx)(at.Dot,{className:"w-6 h-6 text-primary-500 animate-in zoom-in-50 duration-200"})]}),(0,O.jsx)("div",{className:"flex-1 flex flex-row items-center gap-2.5 truncate font-medium",children:o}),s&&(0,O.jsx)(at.ChevronRight,{className:"w-4 h-4 ml-auto text-text-muted group-focused:text-primary-500/70 transition-colors"})]}))})}function Fi({title:e,...t}){return(0,O.jsxs)(V.MenuSection,{...t,className:p("flex flex-col gap-0.5",t.className),children:[e&&(0,O.jsx)(V.Header,{className:"px-3 py-2 text-[10px] font-bold uppercase tracking-[0.075em] text-text-muted/50 select-none",children:e}),(0,O.jsx)(V.Collection,{items:t.items,children:t.children})]})}function Wi(e){return(0,O.jsx)(V.Separator,{...e,className:"mx-2 my-1.5 border-t border-border-subtle/50"})}var at,Nr,V,O,Se,No=w(()=>{"use strict";"use client";i();at=require("lucide-react"),Nr=I(require("react")),V=I(require("react-aria-components"));Pr();P();O=require("react/jsx-runtime");Se={Root:et,Item:Ce,Trigger:Ye,SubTrigger:$i,Section:Fi,Separator:Wi}});var tt,Co=w(()=>{"use strict";i();yo();wn();mr();fr();gr();hr();xr();Cr();$t();_n();No();Pr();Xo();Ue();tt=require("react-aria-components");P()});function cs(e){let{currentLocale:t,currentVersion:o}=T(),[r,n]=(0,kt.useState)(!1),[s,a]=(0,kt.useState)(""),c=(0,kt.useMemo)(()=>{let l=e.filter(f=>{let h=!t||f.locale===t,v=!o||f.version===o;return h&&v});if(!s)return l.slice(0,10).map(f=>({id:f.path,title:f.title,path:f.path,bio:f.description||"",groupTitle:f.groupTitle}));let d=[],m=s.toLowerCase();for(let f of l)if(f.title?.toLowerCase().includes(m)&&d.push({id:f.path,title:f.title,path:f.path,bio:f.description||"",groupTitle:f.groupTitle}),f.headings)for(let h of f.headings)h.text.toLowerCase().includes(m)&&d.push({id:`${f.path}#${h.id}`,title:h.text,path:`${f.path}#${h.id}`,bio:`Heading in ${f.title}`,groupTitle:f.title,isHeading:!0});let u=new Set;return d.filter(f=>u.has(f.path)?!1:(u.add(f.path),!0)).slice(0,10)},[e,s,t,o]);return{isOpen:r,setIsOpen:n,query:s,setQuery:a,list:c,input:{value:s,onChange:l=>a(l.target.value)}}}var kt,ms=w(()=>{"use strict";i();kt=require("react");J()});var ds={};zo(ds,{SearchDialog:()=>ta});function ta({routes:e}){let{isOpen:t,setIsOpen:o,query:r,setQuery:n,list:s}=cs(e),a=(0,ps.useNavigate)();(0,So.useEffect)(()=>{let l=d=>{(/Mac/.test(navigator.userAgent)?d.metaKey:d.ctrlKey)&&(d.key==="k"||d.key==="j")&&(d.preventDefault(),o(f=>!f))};return window.addEventListener("keydown",l),()=>window.removeEventListener("keydown",l)},[o]);let c=(0,So.useCallback)(l=>{let d=String(l);if(o(!1),d.includes("#")){let[m,u]=d.split("#");a(m),setTimeout(()=>{let f=document.getElementById(u);f&&f.scrollIntoView({behavior:"smooth"})},100)}else a(d)},[a,o]);return(0,q.jsxs)(q.Fragment,{children:[(0,q.jsx)(U.SearchTrigger,{onPress:()=>o(!0)}),(0,q.jsx)(or,{isOpen:t,onOpenChange:o,children:(0,q.jsxs)(rr,{onSelectionChange:c,children:[(0,q.jsx)(nr,{value:r,onChange:l=>n(l.target.value)}),(0,q.jsx)(sr,{items:s,children:l=>(0,q.jsxs)(ir,{onPress:()=>c(l.id),textValue:l.title,children:[(0,q.jsx)(ar,{isHeading:l.isHeading}),(0,q.jsxs)("div",{className:"flex flex-col justify-center gap-0.5",children:[(0,q.jsx)(lr,{children:l.title}),(0,q.jsx)(cr,{children:l.groupTitle})]})]},l.id)})]})})]})}var So,ps,q,us=w(()=>{"use strict";i();So=require("react");ms();mr();yo();ps=require("react-router-dom"),q=require("react/jsx-runtime")});var ca={};zo(ca,{Admonition:()=>ge,Badge:()=>Qt,Breadcrumbs:()=>Oo,Button:()=>Ft,Card:()=>Yt,Cards:()=>Jt,Caution:()=>io,CodeBlock:()=>xe,ComponentPreview:()=>xo,ComponentProps:()=>ho,CopyMarkdown:()=>lt,Danger:()=>ro,DefaultLayout:()=>Is,DocsLayout:()=>ze,ErrorBoundary:()=>gt,Field:()=>fo,FileTree:()=>po,Head:()=>Eo,Image:()=>bo,Important:()=>so,InfoBox:()=>no,Link:()=>go,List:()=>co,Loading:()=>To,Navbar:()=>Bo,NotFound:()=>xt,Note:()=>eo,OnThisPage:()=>Mo,PageNav:()=>Vo,ProgressBar:()=>Ho,Sidebar:()=>Ao,Tab:()=>Kt,Table:()=>uo,Tabs:()=>Xt,Tip:()=>to,Video:()=>Zt,Warning:()=>oo,createBoltdocsApp:()=>Xn,defineSandbox:()=>qo,embedSandbox:()=>nn,openSandbox:()=>_t,useConfig:()=>D,useMdxComponents:()=>je,useRoutes:()=>T,useTheme:()=>Oe});module.exports=Hs(ca);i();i();var j=I(require("react")),qn=I(require("react-dom/client")),le=require("react-router-dom");i();var Dr=require("lucide-react");Ue();var Te=require("react/jsx-runtime");function xt(){return(0,Te.jsx)("div",{className:"flex items-center justify-center min-h-[60vh] text-center",children:(0,Te.jsxs)("div",{className:"space-y-4",children:[(0,Te.jsx)("span",{className:"text-8xl font-black tracking-tighter text-primary-500/20",children:"404"}),(0,Te.jsx)("h1",{className:"text-2xl font-bold text-text-main",children:"Page Not Found"}),(0,Te.jsx)("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."}),(0,Te.jsxs)(K,{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:[(0,Te.jsx)(Dr.ArrowLeft,{size:16})," Go to Home"]})]})})}i();var pe=require("react"),$r=require("react/jsx-runtime"),Hr=(0,pe.createContext)(void 0);function zr({children:e}){let[t,o]=(0,pe.useState)("system"),[r,n]=(0,pe.useState)("dark"),[s,a]=(0,pe.useState)(!1);(0,pe.useEffect)(()=>{a(!0);let l=localStorage.getItem("boltdocs-theme"),d=l==="light"||l==="dark"||l==="system"?l:"system";o(d);let m=window.matchMedia("(prefers-color-scheme: dark)");((h,v)=>{n(h==="system"?v?"dark":"light":h)})(d,m.matches);let f=h=>{n(v=>(localStorage.getItem("boltdocs-theme")||"system")==="system"?h.matches?"dark":"light":v)};return m.addEventListener("change",f),()=>m.removeEventListener("change",f)},[]),(0,pe.useEffect)(()=>{if(!s)return;let l=window.matchMedia("(prefers-color-scheme: dark)").matches,d=t==="system"?l?"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,s]);let c=l=>{o(l),localStorage.setItem("boltdocs-theme",l)};return(0,$r.jsx)(Hr.Provider,{value:{theme:t,resolvedTheme:r,setTheme:c},children:e})}function Oe(){let e=(0,pe.use)(Hr);if(e===void 0)throw new Error("useTheme must be used within a ThemeProvider");return e}var mt=I(require("virtual:boltdocs-layout"));Et();i();var Fr=require("react"),Wr=require("react-aria-components"),Vt=require("react-router-dom"),Gr=require("react/jsx-runtime");function _r({children:e}){let t=(0,Vt.useNavigate)();return(0,Gr.jsx)(Wr.RouterProvider,{navigate:(o,r)=>{(0,Fr.startTransition)(()=>{t(o,r)})},useHref:Vt.useHref,children:e})}me();i();var Ur=require("react"),jr=require("react-router-dom");function qr(){let{pathname:e,hash:t}=(0,jr.useLocation)();return(0,Ur.useLayoutEffect)(()=>{let o=document.querySelector(".boltdocs-content");if(o){if(t){let r=t.replace("#",""),n=document.getElementById(r);if(n){let a=o.getBoundingClientRect().top,d=n.getBoundingClientRect().top-a-80+o.scrollTop;o.scrollTo({top:d,behavior:"smooth"});return}}o.scrollTo(0,0)}},[e,t]),null}i();var Kr=require("react-router-dom"),Xr=I(require("virtual:boltdocs-layout")),Go=require("react/jsx-runtime");function Zr(){return(0,Go.jsx)(Xr.default,{children:(0,Go.jsx)(Kr.Outlet,{})})}i();var en=require("@mdx-js/react");i();var Dt=require("react"),Yr=require("react/jsx-runtime"),Qr=(0,Dt.createContext)({});function je(){return(0,Dt.useContext)(Qr)}function Jr({components:e,children:t}){return(0,Yr.jsx)(Qr.Provider,{value:e,children:t})}var Uo=require("react/jsx-runtime");function tn({Component:e}){let t=je();return(0,Uo.jsx)(en.MDXProvider,{components:t,children:(0,Uo.jsx)(e,{})})}i();var Un=require("lucide-react");var wr={};zo(wr,{Admonition:()=>ge,Badge:()=>Qt,Button:()=>Ft,Card:()=>Yt,Cards:()=>Jt,Caution:()=>io,CodeBlock:()=>xe,ComponentPreview:()=>xo,ComponentProps:()=>ho,CopyMarkdown:()=>lt,Danger:()=>ro,Field:()=>fo,FileTree:()=>po,Image:()=>bo,Important:()=>so,InfoBox:()=>no,Link:()=>go,List:()=>co,Note:()=>eo,Tab:()=>Kt,Table:()=>uo,Tabs:()=>Xt,Tip:()=>to,Video:()=>Zt,Warning:()=>oo});i();i();$t();P();var rn=require("react/jsx-runtime"),Ft=({className:e,variant:t,size:o,rounded:r,iconSize:n,disabled:s,...a})=>(0,rn.jsx)(ue,{className:p("group",Ht({variant:t,size:o,rounded:r,iconSize:n,disabled:s,className:e})),...a});i();var jt=I(require("react-aria-components")),qt=require("lucide-react");P();i();me();i();var Wt=require("codesandbox/lib/api/define.js");function jo(e){let t=e.files||{},o=e.dependencies||{},r=e.devDependencies||{},n=e.title||"codesandbox-project",s=e.description||"Generic Sandbox",a={};for(let[c,l]of Object.entries(t)){let d=typeof l.content=="object"?JSON.stringify(l.content,null,2):l.content;a[c]={content:d,isBinary:l.isBinary??!1}}if(!a["package.json"]){let l=e.template==="vite"||!!r.vite||!!r["@vitejs/plugin-react"]?{dev:"vite",build:"vite build",preview:"vite preview"}:{start:"node index.js"};a["package.json"]={content:JSON.stringify({private:!0,name:n,description:s,type:"module",version:"1.0.0",scripts:e.scripts||l,dependencies:o,devDependencies:r},null,2),isBinary:!1}}return a}function qo(e){let t=jo(e),o=(0,Wt.getParameters)({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 _t(e){if(typeof window>"u")return qo(e);let t=jo(e),o=(0,Wt.getParameters)({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 s=(c,l)=>{let d=document.createElement("input");d.type="hidden",d.name=c,d.value=l,n.appendChild(d)},a=new URLSearchParams({file:`/${r}`,eslint:"0",codemirror:"1",installDependencies:"true"});return s("query",a.toString()),s("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}}function nn(e){let t=jo(e),o=(0,Wt.getParameters)({files:t}),r=e.embed||{},n=new URLSearchParams({parameters:o,embed:"1"});return r.view&&n.set("view",r.view),r.theme&&n.set("theme",r.theme),r.hideNavigation&&n.set("hidenavigation","1"),e.entry&&n.set("file",`/${e.entry}`),{parameters:o,url:`https://codesandbox.io/api/v1/sandboxes/define?${n.toString()}`,options:e}}i();var sn=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}};var fe=require("react");function an(e){let{title:t,sandbox:o}=e,[r,n]=(0,fe.useState)(!1),[s,a]=(0,fe.useState)(!1),[c,l]=(0,fe.useState)(!1),d=(0,fe.useRef)(null),m=D(),u=(0,fe.useCallback)(async()=>{let h=d.current?.textContent??"";sn(h),n(!0),setTimeout(()=>n(!1),2e3)},[]),f=(0,fe.useCallback)(()=>{let h=d.current?.textContent??"",v=m?.integrations?.sandbox?.config||{},x=typeof o=="object"?o:v,g=x.entry||"src/App.tsx";_t({title:t??"Code Snippet",...x,files:{...x.files,[g]:{content:h}}})},[t,m,o]);return(0,fe.useEffect)(()=>{let h=d.current?.textContent?.length??0;l(h>120)},[e.children,e.highlightedHtml]),{copied:r,isExpanded:s,setIsExpanded:a,isExpandable:c,preRef:d,handleCopy:u,handleSandbox:f,shouldTruncate:c&&!s}}me();Ut();Xo();var G=require("react/jsx-runtime");function xe(e){let{children:t,sandbox:o,hideSandbox:r=!0,hideCopy:n=!1,highlightedHtml:s,...a}=e,d=!!D()?.integrations?.sandbox?.enable&&!r,{copied:m,isExpanded:u,setIsExpanded:f,isExpandable:h,preRef:v,handleCopy:x,handleSandbox:g,shouldTruncate:S}=an(e);return(0,G.jsxs)("div",{className:p("group relative my-6 overflow-hidden rounded-lg border border-border-subtle bg-(--color-code-bg)",S&&"[&>pre]:max-h-[250px] [&>pre]:overflow-hidden"),children:[(0,G.jsxs)("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&&(0,G.jsx)(Ko,{content:"Open in CodeSandbox",children:(0,G.jsx)(jt.Button,{onPress:g,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:(0,G.jsx)(mn,{size:20})})}),!n&&(0,G.jsx)(Ko,{content:m?"Copied!":"Copy code",children:(0,G.jsx)(jt.Button,{onPress:x,className:p("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?(0,G.jsx)(qt.Check,{size:20}):(0,G.jsx)(qt.Copy,{size:20})})})]}),s?(0,G.jsx)("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:s}}):(0,G.jsx)("pre",{ref:v,className:"m-0! rounded-none! border-none! bg-inherit! font-mono text-[0.8125rem] leading-[1.7]",...a,children:t}),h&&(0,G.jsx)("div",{className:p(S?"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:(0,G.jsx)(jt.Button,{onPress:()=>f(!u),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:u?"Show less":"Expand code"})})]})}i();var Ke=require("react"),Ve=I(require("react-aria-components"));i();var Le=require("react");function dn({initialIndex:e=0,tabs:t}){let o=t[e]?.props.disabled?t.findIndex(d=>!d.props.disabled):e,[r,n]=(0,Le.useState)(o===-1?0:o),s=(0,Le.useRef)([]),[a,c]=(0,Le.useState)({opacity:0,transform:"translateX(0)",width:0});(0,Le.useEffect)(()=>{let d=s.current[r];d&&c({opacity:1,width:d.offsetWidth,transform:`translateX(${d.offsetLeft}px)`})},[r,t]);let l=(0,Le.useCallback)(d=>{let m=0;if(d.key==="ArrowRight"?m=1:d.key==="ArrowLeft"&&(m=-1),m!==0){let u=(r+m+t.length)%t.length;for(;t[u].props.disabled&&u!==r;)u=(u+m+t.length)%t.length;u!==r&&!t[u].props.disabled&&(n(u),s.current[u]?.focus())}},[r,t]);return{active:r,setActive:n,tabRefs:s,indicatorStyle:a,handleKeyDown:l}}P();var Zo=require("class-variance-authority"),Y=require("react/jsx-runtime"),Ws=(0,Zo.cva)("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"}}),_s=(0,Zo.cva)("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 Kt({children:e}){let t=typeof e=="string"?(0,Y.jsx)(xe,{className:"language-bash",children:(0,Y.jsx)("code",{children:e.trim()})}):e;return(0,Y.jsx)("div",{className:"py-4",children:t})}function Xt({defaultIndex:e=0,children:t}){let o=(0,Ke.useMemo)(()=>Ke.Children.toArray(t).filter(c=>(0,Ke.isValidElement)(c)&&c.props?.label),[t]),{active:r,setActive:n,tabRefs:s,indicatorStyle:a}=dn({initialIndex:e,tabs:o});return(0,Y.jsx)("div",{className:"my-8 w-full group/tabs",children:(0,Y.jsxs)(Ve.Tabs,{selectedKey:r.toString(),onSelectionChange:c=>n(Number(c)),className:"w-full",children:[(0,Y.jsxs)(Ve.TabList,{"aria-label":"Content Tabs",className:p(Ws()),children:[o.map((c,l)=>{let{label:d,icon:m,disabled:u}=c.props,f=l.toString();return(0,Y.jsxs)(Ve.Tab,{id:f,isDisabled:u,ref:h=>{s.current[l]=h},className:({isSelected:h,isDisabled:v})=>p(_s({isActive:h,isDisabled:v})),children:[!!m&&(0,Y.jsx)("span",{className:"shrink-0 [&>svg]:w-4 [&>svg]:h-4",children:m}),(0,Y.jsx)("span",{children:d})]},f)}),(0,Y.jsx)("div",{className:"absolute bottom-0 h-0.5 bg-primary-500 transition-all duration-300 ease-in-out pointer-events-none",style:a,"aria-hidden":"true"})]}),o.map((c,l)=>(0,Y.jsx)(Ve.TabPanel,{id:l.toString(),children:o[l]},l))]})})}i();var Xe=require("react"),yt=require("react/jsx-runtime");function Zt({src:e,poster:t,alt:o,children:r,controls:n,preload:s="metadata",...a}){let c=(0,Xe.useRef)(null),[l,d]=(0,Xe.useState)(!1);return(0,Xe.useEffect)(()=>{let m=c.current;if(!m)return;let u=new IntersectionObserver(([f])=>{f.isIntersecting&&(d(!0),u.disconnect())},{rootMargin:"200px"});return u.observe(m),()=>u.disconnect()},[]),(0,yt.jsx)("div",{ref:c,className:"my-6 overflow-hidden rounded-lg border border-border-subtle",children:l?(0,yt.jsxs)("video",{className:"block w-full h-auto",src:e,poster:t,controls:!0,preload:s,playsInline:!0,...a,children:[r,"Your browser does not support the video tag."]}):(0,yt.jsx)("div",{className:"aspect-video bg-bg-surface animate-pulse",role:"img","aria-label":o||"Video"})})}i();P();var un=require("class-variance-authority"),fn=require("react/jsx-runtime"),Gs=(0,un.cva)("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 Qt({variant:e="default",children:t,className:o="",...r}){return(0,fn.jsx)("span",{className:p(Gs({variant:e}),o),...r,children:t})}i();var Ct=require("react"),gn=I(require("react-aria-components"));P();var bn=require("class-variance-authority"),ee=require("react/jsx-runtime"),Us=(0,bn.cva)("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(0,ee.jsx)("div",{className:p(Us({cols:e}),o),...r,children:t})}function Yt({title:e,icon:t,href:o,children:r,className:n="",...s}){let a=(0,Ct.useRef)(null),c=(0,Ct.useRef)(null),l=(0,Ct.useCallback)(u=>{let f=a.current||c.current;if(!f)return;let{left:h,top:v}=f.getBoundingClientRect();f.style.setProperty("--x",`${u.clientX-h}px`),f.style.setProperty("--y",`${u.clientY-v}px`)},[]),d=(0,ee.jsxs)(ee.Fragment,{children:[(0,ee.jsx)("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&&(0,ee.jsx)("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}),(0,ee.jsxs)("div",{className:"space-y-1.5",children:[e&&(0,ee.jsx)("h3",{className:"text-sm font-bold text-text-main",children:e}),r&&(0,ee.jsx)("div",{className:"text-sm text-text-muted leading-relaxed",children:r})]})]}),m=p("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?(0,ee.jsx)(gn.Link,{ref:c,href:o,className:p(m,"no-underline cursor-pointer"),onMouseMove:l,...s,children:d}):(0,ee.jsx)("div",{ref:a,role:"presentation",className:m,onMouseMove:l,...s,children:d})}i();var X=require("lucide-react");P();var xn=require("class-variance-authority"),M=require("react/jsx-runtime"),js={note:(0,M.jsx)(X.Bookmark,{size:18}),tip:(0,M.jsx)(X.Lightbulb,{size:18}),info:(0,M.jsx)(X.Info,{size:18}),warning:(0,M.jsx)(X.AlertTriangle,{size:18}),danger:(0,M.jsx)(X.ShieldAlert,{size:18}),important:(0,M.jsx)(X.Flame,{size:18}),caution:(0,M.jsx)(X.Zap,{size:18})},qs={note:"Note",tip:"Tip",info:"Info",warning:"Warning",danger:"Danger",important:"Important",caution:"Caution"},hn=(0,xn.cva)("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 ge({type:e="note",title:t,children:o,className:r="",...n}){return(0,M.jsxs)("div",{className:p(hn({type:e}),r),role:e==="warning"||e==="danger"?"alert":"note",...n,children:[(0,M.jsxs)("div",{className:"flex items-center flex-row gap-2 mb-2",children:[(0,M.jsx)("span",{className:p("shrink-0",hn({type:e})),children:js[e]}),(0,M.jsx)("span",{className:"text-sm font-bold tracking-tight text-text-main",children:t||qs[e]})]}),(0,M.jsx)("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 [&>p]:mb-2 [&>p:last-child]:mb-0",children:o})]})}var eo=e=>(0,M.jsx)(ge,{type:"note",...e}),to=e=>(0,M.jsx)(ge,{type:"tip",...e}),oo=e=>(0,M.jsx)(ge,{type:"warning",...e}),ro=e=>(0,M.jsx)(ge,{type:"danger",...e}),no=e=>(0,M.jsx)(ge,{type:"info",...e}),so=e=>(0,M.jsx)(ge,{type:"important",...e}),io=e=>(0,M.jsx)(ge,{type:"caution",...e});i();var ao=require("react"),Ze=require("lucide-react");P();var lo=require("class-variance-authority"),be=require("react/jsx-runtime"),Ks=(0,lo.cva)("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}}),Xs=(0,lo.cva)("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}}),Zs=(0,lo.cva)("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 Qs({icon:e,children:t,variant:o,dense:r}){return(0,be.jsxs)("li",{className:p(Xs({variant:o,dense:r})),children:[e&&(0,be.jsx)("span",{className:p(Zs({variant:o==="bubble"?"bubble":"default"})),children:e}),(0,be.jsx)("div",{className:"flex-1 text-text-muted group-hover:text-text-main transition-colors",children:t})]})}var Js={checked:e=>(0,be.jsx)(Ze.Check,{size:14,className:p("text-emerald-500 shrink-0",e)}),arrow:e=>(0,be.jsx)(Ze.ChevronRight,{size:14,className:p("text-primary-400 shrink-0",e)}),bubble:e=>(0,be.jsx)(Ze.Circle,{size:6,fill:"currentColor",className:p("text-primary-500 shrink-0",e)}),default:()=>null,number:()=>null};function co({variant:e="default",cols:t=1,dense:o=!1,children:r,className:n,...s}){let a=t!==void 0&&Number(t)>1,c=Js[e],l=Ks({variant:e,cols:t,dense:o,isGrid:a,className:n}),d=e==="number"?"ol":"ul";return e==="default"||e==="number"?(0,be.jsx)(d,{className:l,...s,children:r}):(0,be.jsx)("ul",{className:l,...s,children:ao.Children.map(r,m=>{if(!(0,ao.isValidElement)(m))return m;let u=m,f=u.type==="li"?u.props.children:u.props.children||m;return(0,be.jsx)(Qs,{icon:c(),variant:e,dense:o,children:f})})})}i();var ve=require("react"),ye=I(require("react-aria-components")),se=require("lucide-react");P();var E=require("react/jsx-runtime"),Rt=16,Pt=2,Qo={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 Yo(e){return typeof e=="string"?e:typeof e=="number"?e.toString():Array.isArray(e)?e.map(Yo).join(""):(0,ve.isValidElement)(e)&&e.props&&typeof e.props=="object"&&"children"in e.props?Yo(e.props.children):""}function Ys(e,t){let o=e.toLowerCase(),r="shrink-0 transition-colors duration-200";if(t)return(0,E.jsx)(se.Folder,{size:Rt,strokeWidth:Pt,className:p(r,"text-primary-400"),fill:"currentColor",fillOpacity:.15});let n=p(r,"text-text-dim group-hover:text-text-main");return Qo.CODE.test(o)?(0,E.jsx)(se.FileCode,{size:Rt,strokeWidth:Pt,className:n}):Qo.TEXT.test(o)?(0,E.jsx)(se.FileText,{size:Rt,strokeWidth:Pt,className:n}):Qo.IMAGE.test(o)?(0,E.jsx)(se.FileImage,{size:Rt,strokeWidth:Pt,className:n}):(0,E.jsx)(se.File,{size:Rt,strokeWidth:Pt,className:n})}function Jo(e,t){if(!(0,ve.isValidElement)(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 ei(e){let t=e.match(/\s+(\/\/|#)\s+(.*)$/);return t?{name:e.slice(0,t.index).trim(),comment:t[2]}:{name:e.trim()}}function mo(e,t="root"){if(!(0,ve.isValidElement)(e))return[];let o=[];if(Jo(e,"ul"))return ve.Children.forEach(e.props.children,(r,n)=>{o.push(...mo(r,`${t}-${n}`))}),o;if(Jo(e,"li")){let r=ve.Children.toArray(e.props.children),n=r.findIndex(v=>Jo(v,"ul")),s=n!==-1,a=s?r.slice(0,n):r,c=s?r.slice(n):[],l=Yo(a),{name:d,comment:m}=ei(l),u=d.endsWith("/"),f=u?d.slice(0,-1):d,h=s||u;return o.push({id:`${t}-${f}`,name:f,comment:m,isFolder:h,children:s?mo(c[0],`${t}-${f}`):void 0}),o}return e.props&&typeof e.props=="object"&&"children"in e.props&&ve.Children.forEach(e.props.children,(r,n)=>{o.push(...mo(r,`${t}-${n}`))}),o}function vn({item:e}){return(0,E.jsxs)(ye.TreeItem,{id:e.id,textValue:e.name,className:"outline-none group focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-md",children:[(0,E.jsx)(ye.TreeItemContent,{children:({isExpanded:t,hasChildItems:o})=>(0,E.jsxs)("div",{className:"flex items-center gap-2 py-1 px-1.5 rounded-md transition-colors hover:bg-primary-500/5 cursor-pointer",children:[(0,E.jsx)("div",{style:{width:"calc((var(--tree-item-level) - 1) * 1rem)"},className:"shrink-0"}),o?(0,E.jsx)(ye.Button,{slot:"chevron",className:"outline-none text-text-dim hover:text-primary-400 p-0.5 rounded transition-colors",children:(0,E.jsx)(se.ChevronRight,{size:14,strokeWidth:3,className:p("transition-transform duration-200",t&&"rotate-90")})}):(0,E.jsx)("div",{className:"w-[18px]"}),Ys(e.name,e.isFolder),(0,E.jsx)("span",{className:p("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&&(0,E.jsxs)("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&&(0,E.jsx)(ye.Collection,{items:e.children,children:t=>(0,E.jsx)(vn,{item:t})})]})}function po({children:e}){let t=(0,ve.useMemo)(()=>mo(e),[e]);return(0,E.jsx)("div",{className:"my-8",children:(0,E.jsx)(ye.Tree,{items:t,"aria-label":"File Tree",className:p("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=>(0,E.jsx)(vn,{item:o})})})}i();var Nt=I(require("react-aria-components"));i();var Qe=require("react");function yn({data:e,sortable:t=!1,paginated:o=!1,pageSize:r=10}){let[n,s]=(0,Qe.useState)(null),[a,c]=(0,Qe.useState)(1),l=(0,Qe.useMemo)(()=>{if(!e)return[];let f=[...e];return t&&n!==null&&f.sort((h,v)=>{let x=h[n.key],g=v[n.key],S=typeof x=="string"?x:"",Z=typeof g=="string"?g:"";return S<Z?n.direction==="asc"?-1:1:S>Z?n.direction==="asc"?1:-1:0}),f},[e,n,t]),d=Math.ceil(l.length/r),m=(0,Qe.useMemo)(()=>{if(!o)return l;let f=(a-1)*r;return l.slice(f,f+r)},[l,o,a,r]);return{sortConfig:n,currentPage:a,setCurrentPage:c,totalPages:d,paginatedData:m,requestSort:f=>{if(!t)return;let h="asc";n&&n.key===f&&n.direction==="asc"&&(h="desc"),s({key:f,direction:h})}}}var te=require("lucide-react");P();var N=require("react/jsx-runtime");function uo({headers:e,data:t,children:o,className:r="",sortable:n=!1,paginated:s=!1,pageSize:a=10}){let{sortConfig:c,currentPage:l,setCurrentPage:d,totalPages:m,paginatedData:u,requestSort:f}=yn({data:t,sortable:n,paginated:s,pageSize:a}),h=x=>n?c?.key!==x?(0,N.jsx)(te.ChevronDown,{size:14,className:"ml-1 opacity-30"}):c.direction==="asc"?(0,N.jsx)(te.ChevronUp,{size:14,className:"ml-1 text-primary-400"}):(0,N.jsx)(te.ChevronDown,{size:14,className:"ml-1 text-primary-400"}):null,v=o||(0,N.jsxs)(N.Fragment,{children:[e&&(0,N.jsx)("thead",{children:(0,N.jsx)("tr",{children:e.map((x,g)=>(0,N.jsx)("th",{onClick:()=>f(g),className:p("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:(0,N.jsxs)("div",{className:"flex items-center",children:[x,h(g)]})},g))})}),u&&(0,N.jsx)("tbody",{children:u.map((x,g)=>(0,N.jsx)("tr",{className:"transition-colors hover:bg-bg-surface",children:x.map((S,Z)=>(0,N.jsx)("td",{className:"px-3 py-2 border-b border-border-subtle text-sm text-text-muted",children:S},Z))},g))})]});return(0,N.jsxs)("div",{className:p("my-6 rounded-lg border border-border-subtle overflow-hidden",r),children:[(0,N.jsx)("div",{className:"overflow-x-auto",children:(0,N.jsx)("table",{className:"w-full border-collapse text-sm",children:v})}),s&&m>1&&(0,N.jsxs)("div",{className:"flex items-center justify-between border-t border-border-subtle px-4 py-3",children:[(0,N.jsxs)("span",{className:"text-xs text-text-muted",children:["Page ",l," of ",m]}),(0,N.jsxs)("div",{className:"flex items-center gap-1",children:[(0,N.jsx)(Nt.Button,{onPress:()=>d(1),isDisabled:l===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:(0,N.jsx)(te.ChevronsLeft,{size:16})}),(0,N.jsx)(Nt.Button,{onPress:()=>d(x=>Math.max(x-1,1)),isDisabled:l===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:(0,N.jsx)(te.ChevronLeft,{size:16})}),(0,N.jsx)(Nt.Button,{onPress:()=>d(x=>Math.min(x+1,m)),isDisabled:l===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:(0,N.jsx)(te.ChevronRight,{size:16})}),(0,N.jsx)(Nt.Button,{onPress:()=>d(m),isDisabled:l===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:(0,N.jsx)(te.ChevronsRight,{size:16})})]})]})]})}i();P();var oe=require("react/jsx-runtime");function fo({name:e,type:t,defaultValue:o,required:r=!1,children:n,id:s,className:a=""}){return(0,oe.jsxs)("article",{className:p("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",a),id:s,children:[(0,oe.jsxs)("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between mb-4",children:[(0,oe.jsxs)("div",{className:"flex flex-wrap items-center gap-2.5",children:[(0,oe.jsx)("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&&(0,oe.jsx)("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&&(0,oe.jsxs)("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:[(0,oe.jsx)("span",{className:"h-1 w-1 rounded-full bg-red-400 animate-pulse"}),"Required"]})]}),o&&(0,oe.jsxs)("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:[(0,oe.jsx)("span",{className:"font-semibold opacity-60 uppercase tracking-tighter",children:"Default"}),(0,oe.jsx)("code",{className:"font-mono text-text-main font-medium",children:o})]})]}),(0,oe.jsx)("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 selection:bg-primary-500/30",children:n})]})}i();Ue();P();var Cn=require("react/jsx-runtime");function go({to:e,children:t,className:o="",...r}){let n=e&&(e.startsWith("http://")||e.startsWith("https://")||e.startsWith("//")),s=p("text-blue-600 hover:text-blue-800 hover:underline cursor-pointer",o);return(0,Cn.jsx)(K,{href:e,className:s,target:n?"_blank":void 0,rel:n?"noopener noreferrer":void 0,...r,children:t})}i();var Rn=require("react/jsx-runtime");function bo({src:e,alt:t,theme:o,...r}){let{theme:n}=Oe();return o&&o!==n?null:(0,Rn.jsx)("img",{src:e,alt:t||"",...r})}i();P();var B=require("react/jsx-runtime");function ho({title:e,props:t,className:o=""}){return(0,B.jsxs)("div",{className:p("my-6",o),children:[e&&(0,B.jsx)("h3",{className:"text-base font-bold text-text-main mb-3",children:e}),(0,B.jsx)("div",{className:"overflow-x-auto rounded-lg border border-border-subtle",children:(0,B.jsxs)("table",{className:"w-full border-collapse text-sm",children:[(0,B.jsx)("thead",{children:(0,B.jsxs)("tr",{children:[(0,B.jsx)("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"}),(0,B.jsx)("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"}),(0,B.jsx)("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"}),(0,B.jsx)("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"})]})}),(0,B.jsx)("tbody",{children:t.map((r,n)=>(0,B.jsxs)("tr",{className:"transition-colors hover:bg-bg-surface",children:[(0,B.jsxs)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:[(0,B.jsx)("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&&(0,B.jsx)("span",{className:"ml-1 text-red-400 font-bold",children:"*"})]}),(0,B.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:(0,B.jsx)("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-text-muted",children:r.type})}),(0,B.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:r.defaultValue?(0,B.jsx)("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-primary-400",children:r.defaultValue}):(0,B.jsx)("span",{className:"text-text-dim",children:"\u2014"})}),(0,B.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle text-text-muted",children:r.description})]},`${r.name}-${n}`))})]})})]})}i();i();var er=require("react");function Pn(e){let{code:t,children:o,preview:r}=e,n=(0,er.useMemo)(()=>(t??(typeof o=="string"?o:"")).trim(),[t,o]),s=(0,er.useMemo)(()=>r??(typeof o!="string"?o:null),[r,o]);return{initialCode:n,previewElement:s}}var Je=require("react/jsx-runtime");function xo(e){let{highlightedHtml:t,hideCode:o=!1,hideSandbox:r=!1,hideCopy:n=!1,sandboxOptions:s={}}=e,{initialCode:a,previewElement:c}=Pn(e);return(0,Je.jsxs)("div",{className:"my-6 overflow-hidden rounded-xl border border-border-subtle",children:[(0,Je.jsx)("div",{className:"flex items-center justify-center p-8 bg-bg-surface",children:c}),!o&&(0,Je.jsx)("div",{className:"border-t border-border-subtle",children:(0,Je.jsx)(xe,{hideSandbox:r,hideCopy:n,title:s.title,lang:"tsx",highlightedHtml:t,children:a})})]})}i();var Gn=require("react"),Ie=require("lucide-react");Co();var z=require("react/jsx-runtime"),_i=e=>{let[t,o]=(0,Gn.useState)(!1);return{copied:t,handleCopy:()=>{navigator.clipboard.writeText(e),o(!0),setTimeout(()=>o(!1),2e3)},handleOpenRaw:()=>{let s=new Blob([e],{type:"text/plain;charset=utf-8"}),a=URL.createObjectURL(s);window.open(a,"_blank")}}};function lt({content:e,mdxRaw:t,config:o}){let r=t||e||"",{copied:n,handleCopy:s,handleOpenRaw:a}=_i(r),c=o!==!1,l=typeof o=="object"&&o.text||"Copy Markdown";return!c||!r?null:(0,z.jsx)("div",{className:"relative inline-flex z-100 flex-shrink-0 w-max translate-y-0 active:translate-y-px transition-transform duration-200",children:(0,z.jsxs)(Fn,{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:[(0,z.jsx)(ue,{variant:"ghost",onPress:s,icon:n?(0,z.jsx)(Ie.Check,{size:16}):(0,z.jsx)(Ie.Copy,{size:16}),iconPosition:"left",className:p("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!":l}),(0,z.jsxs)(Ye,{placement:"bottom end",children:[(0,z.jsx)(ue,{variant:"ghost",isIconOnly:!0,icon:(0,z.jsx)(Ie.ChevronDown,{size:14}),className:p("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")}),(0,z.jsxs)(et,{className:"w-52",children:[(0,z.jsxs)(Ce,{onAction:s,className:"flex flex-row items-start gap-2.5 group",children:[(0,z.jsx)(Ie.Copy,{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"}),(0,z.jsx)("span",{className:"font-medium text-[0.8125rem]",children:"Copy Markdown"})]}),(0,z.jsxs)(Ce,{onAction:a,className:"flex flex-row items-start gap-2.5 group",children:[(0,z.jsx)(Ie.ExternalLink,{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"}),(0,z.jsx)("span",{className:"font-medium text-[0.8125rem]",children:"View as Markdown"})]})]})]})]})})}i();var wo=require("react"),re=require("react/jsx-runtime");function To(){let[e,t]=(0,wo.useState)(0);(0,wo.useEffect)(()=>{let r=0,n=!0,s=setInterval(()=>{n?(r+=1,r>=100&&(r=100,n=!1)):(r-=1,r<=0&&(r=0,n=!0)),t(r)},20);return()=>clearInterval(s)},[]);let o=`inset(${100-e}% 0 0 0)`;return(0,re.jsx)("div",{className:"flex flex-col items-center justify-center min-h-[60vh] p-4 text-center",children:(0,re.jsx)("div",{className:"relative group",children:(0,re.jsxs)("div",{className:"relative inline-block",children:[(0,re.jsxs)("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:[(0,re.jsx)("title",{children:"Loading indicator background"}),(0,re.jsx)("path",{d:"M29.4449 0H19.4449V16.5L29.4449 6.5V0Z",fill:"currentColor"}),(0,re.jsx)("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"})]}),(0,re.jsxs)("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:[(0,re.jsx)("title",{children:"Loading indicator animated fill"}),(0,re.jsx)("path",{d:"M29.4449 0H19.4449V16.5L29.4449 6.5V0Z",fill:"currentColor"}),(0,re.jsx)("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"})]})]})})})}var ae=require("react/jsx-runtime"),ct=({level:e,id:t,children:o,...r})=>{let n=`h${e}`;return(0,ae.jsxs)(n,{id:t,...r,className:"boltdocs-heading",children:[o,t&&(0,ae.jsx)("a",{href:`#${t}`,className:"header-anchor","aria-label":"Anchor",children:(0,ae.jsx)(Un.Link,{size:16})})]})},jn={...wr,Loading:To,h1:e=>(0,ae.jsx)(ct,{level:1,...e}),h2:e=>(0,ae.jsx)(ct,{level:2,...e}),h3:e=>(0,ae.jsx)(ct,{level:3,...e}),h4:e=>(0,ae.jsx)(ct,{level:4,...e}),h5:e=>(0,ae.jsx)(ct,{level:5,...e}),h6:e=>(0,ae.jsx)(ct,{level:6,...e}),pre:e=>(0,ae.jsx)(xe,{...e,children:e.children})};J();var Kn=require("react-router-dom");bt();var C=require("react/jsx-runtime");function Gi(){let{currentLocale:e,config:t}=T();return(0,j.useEffect)(()=>{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 Ui(){let e=(0,Kn.useLocation)(),{config:t}=T(),o=Q(a=>a.setLocale),r=Q(a=>a.setVersion),n=Q(a=>a.currentLocale),s=Q(a=>a.currentVersion);return(0,j.useEffect)(()=>{let a=e.pathname.split("/").filter(Boolean),c=0,l=t.versions?.defaultVersion,d=t.i18n?.defaultLocale;if(a[c]==="docs"&&c++,t.versions&&a.length>c){let m=t.versions.versions.find(u=>u.path===a[c]);m&&(l=m.path,c++)}t.i18n&&a.length>c&&t.i18n.locales[a[c]]?d=a[c]:t.i18n&&a.length===0&&(d=n||t.i18n.defaultLocale),d!==n&&o(d),l!==s&&r(l)},[e.pathname,t,o,r,n,s]),null}function ji({initialRoutes:e,initialConfig:t,docsDirName:o,modules:r,hot:n,homePage:s,externalPages:a,components:c={}}){let[l,d]=(0,j.useState)(e),[m,u]=(0,j.useState)(t),f=a||{},h=(0,j.useMemo)(()=>l.filter(g=>!(s&&(g.path==="/"||g.path===""))&&!f[g.path===""?"/":g.path]).map(g=>{let S=Object.keys(r).find(ce=>ce===`/${o}/${g.filePath}`||ce.endsWith(`/${o}/${g.filePath}`)||ce.endsWith(`/${o}\\${g.filePath.replace(/\\/g,"/")}`)),Z=S?r[S]:null;return{...g,Component:j.default.lazy(async()=>Z?await Z():{default:xt})}}),[l,r,o,s,f]);(0,j.useEffect)(()=>{n&&(n.on("boltdocs:routes-update",g=>{d(g)}),n.on("boltdocs:config-update",g=>{u(g)}))},[n]);let v=(0,j.useMemo)(()=>({...jn,...c}),[c]),x=v.Loading;return(0,C.jsx)(zr,{children:(0,C.jsx)(Jr,{components:v,children:(0,C.jsx)($o.Provider,{value:m,children:(0,C.jsx)(_r,{children:(0,C.jsxs)(Sr,{routes:l,modules:r,children:[(0,C.jsx)(qr,{}),(0,C.jsx)(Ui,{}),(0,C.jsx)(Gi,{}),(0,C.jsxs)(le.Routes,{children:[(0,C.jsx)(le.Route,{element:(0,C.jsx)(Zr,{}),children:h.map(g=>(0,C.jsx)(le.Route,{path:g.path===""?"/":g.path,element:(0,C.jsx)(j.default.Suspense,{fallback:(0,C.jsx)(x,{}),children:(0,C.jsx)(tn,{Component:g.Component})})},g.path))},"docs-layout"),s&&(0,C.jsxs)(C.Fragment,{children:[(0,C.jsx)(le.Route,{path:"/",element:(0,C.jsx)(mt.default,{children:(0,C.jsx)(s,{})})}),m.i18n&&Object.keys(m.i18n.locales).map(g=>(0,C.jsx)(le.Route,{path:`/${g}`,element:(0,C.jsx)(mt.default,{children:(0,C.jsx)(s,{})})},`home-${g}`))]}),Object.entries(f).map(([g,S])=>{let Z=g==="/"?"":g;return(0,C.jsxs)(j.default.Fragment,{children:[(0,C.jsx)(le.Route,{path:g,element:(0,C.jsx)(mt.default,{children:(0,C.jsx)(S,{})})}),m.i18n&&Object.keys(m.i18n.locales).map(ce=>(0,C.jsx)(le.Route,{path:`/${ce}${Z}`,element:(0,C.jsx)(mt.default,{children:(0,C.jsx)(S,{})})},`${g}-${ce}`))]},g)}),(0,C.jsx)(le.Route,{path:"*",element:(0,C.jsx)(mt.default,{children:(0,C.jsx)(xt,{})})})]})]})})})})})}function Xn(e){let{target:t,routes:o,docsDirName:r,config:n,modules:s,hot:a,homePage:c,externalPages:l,components:d}=e,m=document.querySelector(t);if(!m)throw new Error(`[boltdocs] Mount target "${t}" not found in document.`);let u=(0,C.jsx)(j.default.StrictMode,{children:(0,C.jsx)(le.BrowserRouter,{children:(0,C.jsx)(ji,{initialRoutes:o,initialConfig:n,docsDirName:r,modules:s,hot:a,homePage:c,externalPages:l,components:d})})});m.innerHTML="",qn.default.createRoot(m).render(u)}me();J();i();P();var We=require("react/jsx-runtime");function qi({children:e,className:t,style:o}){return(0,We.jsx)("div",{className:p("h-screen flex flex-col overflow-hidden bg-bg-main text-text-main",t),style:o,children:e})}function Ki({children:e,className:t,style:o}){return(0,We.jsx)("div",{className:p("mx-auto flex flex-1 w-full max-w-(--breakpoint-3xl) bg-bg-main overflow-hidden",t),style:o,children:e})}function Xi({children:e,className:t,style:o}){return(0,We.jsx)("main",{className:p("boltdocs-content flex-1 min-w-0 overflow-y-auto",t),style:o,children:(0,We.jsx)("div",{className:"boltdocs-page mx-auto max-w-content-max pt-4 pb-20 px-4 sm:px-8",children:e})})}function Zi({children:e,className:t,style:o}){return(0,We.jsx)("div",{className:p("flex items-center justify-between mb-10",t),style:o,children:e})}function Qi({children:e,className:t,style:o}){return(0,We.jsx)("div",{className:p("mt-20",t),style:o,children:e})}var ze=Object.assign(qi,{Body:Ki,Content:Xi,ContentHeader:Zi,ContentFooter:Qi});i();i();var Io=require("react");i();var Zn=require("react-router-dom");me();i();function Be(e,t){return e?typeof e=="string"?e:t&&e[t]?e[t]:Object.values(e)[0]||"":""}J();function Qn(){let e=D(),{theme:t}=Oe(),o=(0,Zn.useLocation)(),{currentLocale:r}=T(),n=e.theme||{},s=Be(n.title,r)||"Boltdocs",a=n.navbar||[],c=n.socialLinks||[],l=n.githubRepo,d=a.map(v=>{let x=v.href||v.to||v.link||"";return{label:Be(v.label||v.text,r),href:x,active:o.pathname===x,to:x.startsWith("http")||x.startsWith("//")?"external":void 0,items:v.items?.map(g=>({label:Be(g.label||g.text,r),href:g.href||g.link||g.to||""}))}}),m=n.logo,u=m?typeof m=="string"?m:t==="dark"?m.dark:m.light:null,f={alt:(m&&typeof m=="object"?m.alt:void 0)||s,width:m&&typeof m=="object"?m.width:void 0,height:m&&typeof m=="object"?m.height:void 0},h=l?`https://github.com/${l}`:null;return{links:d,title:s,logo:u,logoProps:f,github:h,social:c,config:e,theme:t}}i();var Jn=require("react-router-dom");i();function $e(e,t,o){let r=e;return t&&(r===t||r.startsWith(t+"/"))&&(r=r===t?"index.md":r.slice(t.length+1)),o&&(r===o||r.startsWith(o+"/"))&&(r=r===o?"index.md":r.slice(o.length+1)),r}J();bt();function Yn(){let e=(0,Jn.useNavigate)(),t=T(),{allRoutes:o,currentRoute:r,currentVersion:n,currentLocale:s,config:a}=t,c=a.versions,l=Q(u=>u.setVersion),d=u=>{if(!c||u===n)return;l(u);let f=`/docs/${u}`;if(r){let h=$e(r.filePath,r.version,r.locale),v=o.find(x=>$e(x.filePath,x.version,x.locale)===h&&(x.version||c.defaultVersion)===u&&(s?x.locale===s:!x.locale));if(v)f=v.path;else{let x=o.find(g=>$e(g.filePath,g.version,g.locale)==="index.md"&&(g.version||c.defaultVersion)===u&&(s?g.locale===s:!g.locale));f=x?x.path:`/docs/${u}${s?`/${s}`:""}`}}e(f)},m=t.availableVersions.map(u=>({...u,label:u.label,value:u.key}));return{currentVersion:n,currentVersionLabel:t.currentVersionLabel,availableVersions:m,handleVersionChange:d}}i();var es=require("react-router-dom");J();bt();function ts(){let e=(0,es.useNavigate)(),t=T(),{allRoutes:o,currentRoute:r,currentLocale:n,config:s}=t,a=s.i18n,c=Q(f=>f.setLocale),l=f=>{if(!a||f===n)return;c(f);let h="/";if(r){let v=$e(r.filePath,r.version,r.locale),x=o.find(g=>$e(g.filePath,g.version,g.locale)===v&&(g.locale||a.defaultLocale)===f&&g.version===r.version);if(x)h=x.path;else{let g=o.find(S=>$e(S.filePath,S.version,S.locale)==="index.md"&&(S.locale||a.defaultLocale)===f&&S.version===r.version);h=g?g.path:f===a.defaultLocale?r.version?`/${r.version}`:"/":r.version?`/${r.version}/${f}`:`/${f}`}}else{let v=o.find(x=>(x.filePath==="index.mdx"||x.filePath==="index.md")&&(x.locale||a.defaultLocale)===f&&!x.version);v?h=v.path:h=f===a.defaultLocale?"/":`/${f}`}e(h)},m=s.i18n?.localeConfigs?.[n]?.label||s.i18n?.locales[n]||n,u=s.i18n?Object.entries(s.i18n.locales).map(([f,h])=>{let v=s.i18n?.localeConfigs?.[f];return{key:f,label:v?.label||h,value:f,isCurrent:f===n}}):[];return{currentLocale:n,currentLocaleLabel:m,availableLocales:u,handleLocaleChange:l}}J();yo();i();var Lo=require("react"),Ae=require("lucide-react");var os=require("react-aria-components");No();var W=require("react/jsx-runtime");function rs(){let{theme:e,setTheme:t}=Oe(),[o,r]=(0,Lo.useState)(!1);return(0,Lo.useEffect)(()=>{r(!0)},[]),o?(0,W.jsxs)(Ye,{placement:"bottom right",children:[(0,W.jsx)(os.Button,{className:"flex h-9 w-9 items-center justify-center rounded-md text-text-muted transition-colors hover:bg-bg-surface hover:text-text-main outline-none focus-visible:ring-2 focus-visible:ring-primary-500","aria-label":"Selection theme",children:(0,W.jsx)(e==="system"?Ae.Monitor:e==="dark"?Ae.Moon:Ae.Sun,{size:20,className:"animate-in fade-in zoom-in duration-300"})}),(0,W.jsxs)(et,{selectionMode:"single",selectedKeys:[e],onSelectionChange:s=>{let a=Array.from(s)[0];t(a)},children:[(0,W.jsxs)(Ce,{id:"light",children:[(0,W.jsx)(Ae.Sun,{size:16}),(0,W.jsx)("span",{children:"Light"})]}),(0,W.jsxs)(Ce,{id:"dark",children:[(0,W.jsx)(Ae.Moon,{size:16}),(0,W.jsx)("span",{children:"Dark"})]}),(0,W.jsxs)(Ce,{id:"system",children:[(0,W.jsx)(Ae.Monitor,{size:16}),(0,W.jsx)("span",{children:"System"})]})]})]}):(0,W.jsx)("div",{className:"h-9 w-9"})}i();var ko=require("react");i();var Ji="https://api.github.com";async function ns(e,t,o=Ji){let r=new Headers;t&&r.append("authorization",t);let s=await(await fetch(`${o}/repos/${e}`,{headers:r})).json();return s.stargazers_count!==void 0?Yi(s.stargazers_count):"0"}var Yi=e=>Intl.NumberFormat("en",{notation:"compact",compactDisplay:"short"}).format(e);Ut();var Lt=require("react/jsx-runtime");function ss({repo:e}){let[t,o]=(0,ko.useState)(null);return(0,ko.useEffect)(()=>{e&&ns(e).then(r=>o(r)).catch(()=>o("0"))},[e]),(0,Lt.jsxs)("a",{href:`https://github.com/${e}`,target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center gap-2 rounded-md border border-border-subtle bg-bg-surface px-2.5 py-1.5 text-xs font-medium text-text-muted transition-all hover:bg-bg-main hover:border-border-strong hover:text-text-main",children:[(0,Lt.jsx)(Gt,{className:"h-4 w-4"}),t&&(0,Lt.jsx)("span",{className:"tabular-nums",children:t})]})}i();i();var is=require("react-router-dom"),pt=require("react");function as(e=[],t=[]){let o=(0,is.useLocation)(),r=(0,pt.useRef)([]),[n,s]=(0,pt.useState)({opacity:0,transform:"translateX(0) scaleX(0)",width:0}),c=t.find(m=>m.path===o.pathname)?.tab?.toLowerCase(),l=e.findIndex(m=>m.id.toLowerCase()===c),d=l===-1?0:l;return(0,pt.useEffect)(()=>{let m=r.current[d];m&&s({opacity:1,width:m.offsetWidth,transform:`translateX(${m.offsetLeft}px)`})},[d,e.length,o.pathname]),{tabs:e,activeIndex:d,indicatorStyle:n,tabRefs:r,activeTabId:c}}hr();Ue();var ea=I(require("lucide-react"));J();var Pe=require("react/jsx-runtime");function ls({tabs:e,routes:t}){let{currentLocale:o}=T(),{indicatorStyle:r,tabRefs:n,activeIndex:s}=as(e,t),a=c=>{if(!c)return null;if(c.trim().startsWith("<svg"))return(0,Pe.jsx)("span",{className:"h-4 w-4",dangerouslySetInnerHTML:{__html:c}});let l=ea[c];return l?(0,Pe.jsx)(l,{size:16}):(0,Pe.jsx)("img",{src:c,alt:"",className:"h-4 w-4 object-contain"})};return(0,Pe.jsx)("div",{className:"mx-auto max-w-(--breakpoint-3xl) px-4 md:px-6",children:(0,Pe.jsxs)(br.TabsList,{className:"border-none py-0",children:[e.map((c,l)=>{let d=l===s,m=t.find(f=>f.tab&&f.tab.toLowerCase()===c.id.toLowerCase()),u=m?m.path:"#";return(0,Pe.jsxs)(K,{href:u,ref:f=>{n.current[l]=f},className:`relative flex items-center gap-2 px-4 py-3 text-sm font-medium transition-colors outline-none ${d?"text-primary-500":"text-text-muted hover:text-text-main"}`,children:[a(c.icon),(0,Pe.jsx)("span",{children:Be(c.text,o)})]},c.id)}),(0,Pe.jsx)(br.TabsIndicator,{style:r})]})})}var fs=require("react-router-dom");No();$t();var St=require("lucide-react");Fo();var y=require("react/jsx-runtime"),oa=(0,Io.lazy)(()=>Promise.resolve().then(()=>(us(),ds)).then(e=>({default:e.SearchDialog})));function Bo(){let{links:e,title:t,logo:o,logoProps:r,github:n,social:s,config:a}=Qn(),{routes:c,allRoutes:l,currentVersion:d,currentLocale:m}=T(),{pathname:u}=(0,fs.useLocation)(),f=a.theme||{},h=f?.tabs&&f.tabs.length>0;return(0,y.jsxs)(U.NavbarRoot,{className:h?"border-b-0":"",children:[(0,y.jsxs)(U.Content,{children:[(0,y.jsxs)(U.NavbarLeft,{children:[(0,y.jsx)(U.NavbarLogo,{src:o??"",alt:r?.alt||t,width:r?.width??24,height:r?.height??24}),(0,y.jsx)(U.Title,{children:t}),a.versions&&d&&(0,y.jsx)(na,{}),(0,y.jsx)(U.Links,{children:e.map(v=>(0,y.jsx)(ra,{link:v},v.href))})]}),(0,y.jsx)(U.NavbarCenter,{children:(0,y.jsx)(Io.Suspense,{fallback:(0,y.jsx)("div",{className:"h-9 w-32 animate-pulse rounded-md bg-bg-surface"}),children:(0,y.jsx)(oa,{routes:c||[]})})}),(0,y.jsxs)(U.NavbarRight,{children:[a.i18n&&m&&(0,y.jsx)(sa,{}),(0,y.jsx)(U.Split,{}),(0,y.jsx)(rs,{}),n&&(0,y.jsx)(ss,{repo:f?.githubRepo??""}),s.length>0&&(0,y.jsx)(U.Split,{}),(0,y.jsx)("div",{className:"flex items-center gap-1",children:s.map(({icon:v,link:x})=>(0,y.jsx)(U.Socials,{icon:v,link:x,className:"p-1.5"},x))})]})]}),u!=="/"&&h&&f?.tabs&&(0,y.jsx)("div",{className:"w-full border-b border-border-subtle bg-bg-main",children:(0,y.jsx)(ls,{tabs:f.tabs,routes:l||c||[]})})]})}function ra({link:e}){let t=ht(e.href);return(0,y.jsx)(U.Link,{...e,href:t})}function na(){let{currentVersionLabel:e,availableVersions:t,handleVersionChange:o}=Yn();return t.length===0?null:(0,y.jsxs)(Se.Trigger,{children:[(0,y.jsx)(ue,{variant:"outline",size:"sm",rounded:"lg",iconPosition:"right",icon:(0,y.jsx)(St.ChevronDown,{className:"w-3.5 h-3.5 text-text-muted/60"}),className:"h-8 border-border-subtle/60 bg-bg-surface/30 backdrop-blur-sm transition-all duration-200 hover:border-primary-500/50 hover:bg-primary-500/5",children:(0,y.jsx)("span",{className:"font-semibold text-[0.8125rem]",children:e})}),(0,y.jsx)(Se.Root,{children:(0,y.jsx)(Se.Section,{items:t,children:r=>(0,y.jsx)(Se.Item,{onPress:()=>o(r.value),children:r.label},`${r.value??""}`)})})]})}function sa(){let{currentLocale:e,availableLocales:t,handleLocaleChange:o}=ts();return t.length===0?null:(0,y.jsxs)(Se.Trigger,{children:[(0,y.jsx)(ue,{variant:"outline",size:"sm",rounded:"lg",iconPosition:"right",icon:(0,y.jsx)(St.ChevronDown,{className:"w-3.5 h-3.5 text-text-muted/60"}),className:"h-8 border-border-subtle/60 bg-bg-surface/30 backdrop-blur-sm transition-all duration-200 hover:border-primary-500/50 hover:bg-primary-500/5 px-2.5",children:(0,y.jsxs)("div",{className:"flex items-center gap-1.5",children:[(0,y.jsx)(St.Languages,{className:"w-3.5 h-3.5 text-primary-500"}),(0,y.jsx)("span",{className:"font-bold text-[0.75rem] tracking-wider uppercase opacity-90",children:e||"en"})]})}),(0,y.jsx)(Se.Root,{children:(0,y.jsx)(Se.Section,{items:t,children:r=>(0,y.jsx)(Se.Item,{onPress:()=>o(r.value),children:(0,y.jsxs)("div",{className:"flex items-center justify-between w-full gap-4",children:[(0,y.jsx)("span",{children:r.label}),(0,y.jsx)("span",{className:"text-[10px] font-bold opacity-40 uppercase tracking-tighter",children:r.value})]})},`${r.value??""}`)})})]})}i();var dt=require("react");i();var gs=require("react-router-dom");me();function bs(e){let t=D(),o=(0,gs.useLocation)(),r=u=>u.endsWith("/")&&u.length>1?u.slice(0,-1):u,n=r(o.pathname),s=e.find(u=>r(u.path)===n),a=s?.tab?.toLowerCase(),c=a?e.filter(u=>!u.tab||u.tab.toLowerCase()===a):e,l=[],d=new Map;for(let u of c)u.group?(d.has(u.group)||d.set(u.group,{slug:u.group,title:u.groupTitle||u.group,routes:[],icon:u.groupIcon}),d.get(u.group).routes.push(u)):l.push(u);return{groups:Array.from(d.values()),ungrouped:l,activeRoute:s,activePath:n,config:t}}xr();i();var hs=require("lucide-react"),_e=require("react/jsx-runtime");function xs(){return(0,_e.jsx)("div",{className:"flex items-center justify-center mt-10 mb-4 px-4 w-full",children:(0,_e.jsxs)("a",{href:"https://github.com/jesusalcaladev/boltdocs",target:"_blank",rel:"noopener noreferrer",className:"group relative flex items-center gap-2 px-4 py-2 rounded-full border border-border-subtle bg-bg-surface/50 backdrop-blur-md transition-all duration-300 hover:border-primary-500/50 hover:bg-bg-surface hover:shadow-xl hover:shadow-primary-500/5 select-none",children:[(0,_e.jsx)(hs.Zap,{className:"w-3.5 h-3.5 text-text-muted group-hover:text-primary-500 transition-colors duration-300",fill:"currentColor"}),(0,_e.jsxs)("span",{className:"text-[11px] font-medium text-text-muted group-hover:text-text-main transition-colors duration-300 tracking-wide",children:["Powered by ",(0,_e.jsx)("strong",{className:"font-bold text-text-main/80 group-hover:text-text-main",children:"Boltdocs"})]})]})})}var ia=I(require("lucide-react")),Ne=require("react/jsx-runtime");function vs(e){return e&&ia[e]||void 0}function aa({group:e,activePath:t,getIcon:o}){let r=(0,dt.useMemo)(()=>e.routes.some(a=>a.path===t),[e.routes,t]),[n,s]=(0,dt.useState)(!0);return(0,dt.useEffect)(()=>{r&&s(!0)},[r]),(0,Ne.jsx)(rt.SidebarGroup,{title:e.title,isOpen:n,onToggle:()=>s(!n),children:e.routes.map(a=>{let c=t===(a.path.endsWith("/")?a.path.slice(0,-1):a.path);return(0,Ne.jsx)(rt.SidebarLink,{label:a.title,href:a.path,active:c,icon:o(a.icon),badge:a.badge},a.path)})})}function Ao({routes:e,config:t}){let{groups:o,ungrouped:r,activePath:n}=bs(e),s=t.theme||{};return(0,Ne.jsxs)(rt.SidebarRoot,{children:[r.length>0&&(0,Ne.jsx)(rt.SidebarGroup,{className:"mb-6",children:r.map(a=>{let c=n===(a.path.endsWith("/")?a.path.slice(0,-1):a.path);return(0,Ne.jsx)(rt.SidebarLink,{label:a.title,href:a.path,active:c,icon:vs(a.icon),badge:a.badge},a.path)})}),o.map(a=>(0,Ne.jsx)(aa,{group:a,activePath:n,getIcon:vs},a.slug)),s?.poweredBy&&(0,Ne.jsx)("div",{className:"mt-auto pt-8",children:(0,Ne.jsx)(xs,{})})]})}i();fr();var he=I(require("react"));i();var ys=require("react");function Cs(e=[]){let[t,o]=(0,ys.useState)(null);return{headings:e,activeId:t,setActiveId:o}}var ut=require("lucide-react"),A=require("react/jsx-runtime");function Mo({headings:e=[],editLink:t,communityHelp:o,filePath:r}){let{headings:n}=Cs(e),s=he.default.useMemo(()=>n.map(a=>({title:a.text,url:`#${a.id}`,depth:a.level})),[n]);return n.length===0?null:(0,A.jsx)(Mn,{toc:s,children:(0,A.jsx)(la,{headings:n,editLink:t,communityHelp:o,filePath:r})})}function la({headings:e,editLink:t,communityHelp:o,filePath:r}){let n=Bn(),[s,a]=(0,he.useState)({opacity:0}),c=(0,he.useRef)(null),l=(0,he.useRef)(null);(0,he.useEffect)(()=>{if(!n||!c.current)return;let m=c.current.querySelector(`a[href="#${n}"]`);m&&a({transform:`translateY(${m.offsetTop}px)`,height:`${m.offsetHeight}px`,opacity:1})},[n]);let d=(0,he.useCallback)((m,u)=>{m.preventDefault();let f=document.getElementById(u);f&&(f.scrollIntoView({behavior:"smooth"}),window.history.pushState(null,"",`#${u}`))},[]);return(0,A.jsxs)(Fe.OnThisPageRoot,{children:[(0,A.jsxs)(Fe.OnThisPageHeader,{className:"flex flex-row gap-x-2",children:[(0,A.jsx)(ut.TextAlignStart,{size:16}),"On this page"]}),(0,A.jsx)(An,{containerRef:l,children:(0,A.jsxs)(Fe.OnThisPageContent,{className:"max-h-[450px] boltdocs-otp-scroll-area",ref:l,children:[(0,A.jsx)(Fe.OnThisPageIndicator,{style:s}),(0,A.jsx)("ul",{className:"relative space-y-2 border-l border-border-subtle",ref:c,children:e.map(m=>(0,A.jsx)(Fe.OnThisPageItem,{level:m.level,children:(0,A.jsx)(Fe.OnThisPageLink,{href:`#${m.id}`,active:n===m.id,onClick:u=>d(u,m.id),className:"pl-4",children:m.text})},m.id))})]})}),(t||o)&&(0,A.jsxs)("div",{className:"mt-8 pt-8 border-t border-border-subtle space-y-4",children:[(0,A.jsx)("p",{className:"text-xs font-bold uppercase tracking-wider text-text-main",children:"Need help?"}),(0,A.jsxs)("ul",{className:"space-y-3",children:[t&&r&&(0,A.jsx)("li",{children:(0,A.jsxs)("a",{href:t.replace(":path",r),target:"_blank",rel:"noopener noreferrer",className:"flex items-center gap-2 text-sm text-text-muted hover:text-text-main transition-colors",children:[(0,A.jsx)(ut.Pencil,{size:16}),"Edit this page"]})}),o&&(0,A.jsx)("li",{children:(0,A.jsxs)("a",{href:o,target:"_blank",rel:"noopener noreferrer",className:"flex items-center gap-2 text-sm text-text-muted hover:text-text-main transition-colors",children:[(0,A.jsx)(ut.CircleHelp,{size:16}),"Community help"]})})]})]})]})}i();var Rs=require("react"),Ps=require("react-router-dom");function Eo({siteTitle:e,siteDescription:t,routes:o}){let r=(0,Ps.useLocation)();return(0,Rs.useEffect)(()=>{let n=o.find(d=>d.path===r.pathname),s=n?.title,a=n?.description||t||"";document.title=s?`${s} | ${e}`:e;let c=document.querySelector('meta[name="description"]');c||(c=document.createElement("meta"),c.name="description",document.head.appendChild(c)),c.content=a,Ge("property","og:title",document.title),Ge("property","og:description",a),Ge("property","og:type","article"),Ge("property","og:url",window.location.href),Ge("name","twitter:card","summary"),Ge("name","twitter:title",document.title),Ge("name","twitter:description",a);let l=document.querySelector('link[rel="canonical"]');l||(l=document.createElement("link"),l.rel="canonical",document.head.appendChild(l)),l.href=window.location.origin+r.pathname},[r.pathname,e,t,o]),null}function Ge(e,t,o){let r=document.querySelector(`meta[${e}="${t}"]`);r||(r=document.createElement("meta"),r.setAttribute(e,t),document.head.appendChild(r)),r.content=o}i();i();J();function Ns(){let{currentRoute:e}=T(),t=[];return e&&(e.groupTitle&&t.push({label:e.groupTitle}),t.push({label:e.title,href:e.path})),{crumbs:t,activeRoute:e}}var ws=require("lucide-react");Cr();P();me();var Me=require("react/jsx-runtime");function Oo(){let{crumbs:e,activeRoute:t}=Ns(),r=D().theme||{};return e.length===0||!r?.breadcrumbs?null:(0,Me.jsxs)(zn,{children:[(0,Me.jsx)(vr,{children:(0,Me.jsx)(yr,{href:"/",children:(0,Me.jsx)(ws.Home,{size:14})})}),e.map((n,s)=>(0,Me.jsxs)(vr,{children:[(0,Me.jsx)($n,{}),(0,Me.jsx)(yr,{href:n.href,className:p({"font-medium text-text-main":n.href===t?.path}),children:n.label})]},`crumb-${n.href}-${n.label}-${s}`))]})}i();i();J();function Ts(){let{routes:e}=T(),t=window.location.pathname,o=e.findIndex(a=>a.path===t),r=e[o],n=o>0?e[o-1]:null,s=o<e.length-1?e[o+1]:null;return{prevPage:n,nextPage:s,currentRoute:r}}gr();var we=require("react/jsx-runtime");function Vo(){let{prevPage:e,nextPage:t}=Ts();return!e&&!t?null:(0,we.jsxs)(He.PageNavRoot,{children:[e?(0,we.jsxs)(He.PageNavLink,{to:e.path,direction:"prev",children:[(0,we.jsx)(He.PageNavLink.Title,{children:"Previous"}),(0,we.jsx)(He.PageNavLink.Description,{children:e.title})]}):(0,we.jsx)("div",{}),t&&(0,we.jsxs)(He.PageNavLink,{to:t.path,direction:"next",children:[(0,we.jsx)(He.PageNavLink.Title,{children:"Next"}),(0,we.jsx)(He.PageNavLink.Description,{children:t.title})]})]})}i();var Do=require("react"),Ls=require("react-aria-components"),Tr=require("react/jsx-runtime");function Ho(){let[e,t]=(0,Do.useState)(0);return(0,Do.useEffect)(()=>{let o=null,r,n=()=>{if(!o)return;let{scrollTop:a,scrollHeight:c,clientHeight:l}=o;if(c<=l){t(0);return}let d=a/(c-l)*100;t(Math.min(100,Math.max(0,d)))},s=()=>(o=document.querySelector(".boltdocs-content"),o?(o.addEventListener("scroll",n),n(),r&&clearInterval(r),!0):!1);return s()||(r=setInterval(s,100)),()=>{o&&o.removeEventListener("scroll",n),r&&clearInterval(r)}},[]),(0,Tr.jsx)(Ls.ProgressBar,{value:e,"aria-label":"Reading progress",className:"fixed top-0 left-0 right-0 z-999 h-0.5 bg-transparent w-full pointer-events-none",children:({percentage:o})=>(0,Tr.jsx)("div",{className:"h-full bg-primary-500 transition-[width] duration-300 ease-out shadow-[0_0_8px_rgba(var(--primary-rgb),0.4)]",style:{width:`${o}%`}})})}i();var ks=require("react");Co();var ft=require("react/jsx-runtime"),gt=class extends ks.Component{state={hasError:!1};static getDerivedStateFromError(t){return{hasError:!0,error:t}}componentDidCatch(t,o){console.error("Uncaught error in Boltdocs Layout:",t,o)}render(){return this.state.hasError?this.props.fallback||(0,ft.jsxs)("div",{className:"flex flex-col items-center justify-center min-h-[40vh] text-center gap-4 px-4",children:[(0,ft.jsx)("div",{className:"text-lg font-bold text-red-400",children:"Something went wrong"}),(0,ft.jsx)("p",{className:"text-sm text-text-muted max-w-md",children:this.state.error?.message||"An unexpected error occurred while rendering this page."}),(0,ft.jsx)(ue,{className:"rounded-lg border border-border-subtle bg-bg-surface px-5 py-2 text-sm font-medium text-text-main transition-colors hover:bg-bg-muted cursor-pointer",onPress:()=>this.setState({hasError:!1}),children:"Try again"})]}):this.props.children}};J();me();var Ss=require("react-router-dom");var _=require("react/jsx-runtime");function Is({children:e}){let{routes:t,allRoutes:o,currentRoute:r,currentLocale:n}=T(),{pathname:s}=(0,Ss.useLocation)(),a=D(),l=je().CopyMarkdown||lt,d=s==="/"||s==="";return(0,_.jsxs)(ze,{children:[(0,_.jsx)(Ho,{}),(0,_.jsx)(Eo,{siteTitle:Be(a.theme?.title,n)||"Boltdocs",siteDescription:Be(a.theme?.description,n)||"",routes:o}),(0,_.jsx)(Bo,{}),(0,_.jsxs)(ze.Body,{children:[!d&&(0,_.jsx)(Ao,{routes:t,config:a}),(0,_.jsxs)(ze.Content,{children:[!d&&(0,_.jsxs)(ze.ContentHeader,{children:[(0,_.jsx)(Oo,{}),(0,_.jsx)(l,{mdxRaw:r?._rawContent,route:r,config:a.theme?.copyMarkdown})]}),(0,_.jsx)(gt,{children:e}),!d&&(0,_.jsx)(ze.ContentFooter,{children:(0,_.jsx)(Vo,{})})]}),!d&&(0,_.jsx)(Mo,{headings:r?.headings,editLink:a.theme?.editLink,communityHelp:a.theme?.communityHelp,filePath:r?.filePath})]})]})}
|
|
1
|
+
"use strict";var Xs=Object.create;var Ft=Object.defineProperty;var Js=Object.getOwnPropertyDescriptor;var Ys=Object.getOwnPropertyNames;var Zs=Object.getPrototypeOf,Qs=Object.prototype.hasOwnProperty;var L=(e,t)=>()=>(e&&(t=e(e=0)),t);var Yo=(e,t)=>{for(var o in t)Ft(e,o,{get:t[o],enumerable:!0})},$r=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Ys(t))!Qs.call(e,n)&&n!==o&&Ft(e,n,{get:()=>t[n],enumerable:!(r=Js(t,n))||r.enumerable});return e};var S=(e,t,o)=>(o=e!=null?Xs(Zs(e)):{},$r(t||!e||!e.__esModule?Ft(o,"default",{value:e,enumerable:!0}):o,e)),ea=e=>$r(Ft({},"__esModule",{value:!0}),e);var s=L(()=>{"use strict"});function F(){let e=(0,Wt.use)(Zo);if(!e)throw new Error("useConfig must be used within a ConfigProvider");return e}var Wt,Zo,ge=L(()=>{"use strict";s();Wt=require("react"),Zo=(0,Wt.createContext)(null)});function Gt(){return(0,Ve.use)(Fr)}function Wr({routes:e,modules:t,children:o}){let r=(0,Ve.useRef)(null),n=(0,Ve.useCallback)(a=>{r.current&&clearTimeout(r.current),r.current=setTimeout(()=>{let i=a.split("#")[0].split("?")[0],c=e.find(l=>l.path===i||i==="/"&&l.path==="");if(c?.filePath){let l=Object.keys(t).find(u=>u.endsWith("/"+c.filePath));l&&t[l]().catch(u=>{console.error(`[boltdocs] Failed to preload route ${a}:`,u)})}},100)},[e,t]);return(0,Gr.jsx)(Fr.Provider,{value:{preload:n,routes:e},children:o})}var Ve,Gr,Fr,_t=L(()=>{"use strict";s();Ve=require("react"),Gr=require("react/jsx-runtime"),Fr=(0,Ve.createContext)({preload:()=>{},routes:[]})});var _r,jt,re,Lt=L(()=>{"use strict";s();_r=require("zustand"),jt=require("zustand/middleware"),re=(0,_r.create)()((0,jt.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,jt.createJSONStorage)(()=>localStorage),partialize:e=>({currentLocale:e.currentLocale,currentVersion:e.currentVersion}),onRehydrateStorage:()=>e=>{e?.setHasHydrated(!0)}}))});function A(){let{routes:e}=Gt(),t=F(),o=(0,jr.useLocation)(),r=re(b=>b.currentLocale),n=re(b=>b.currentVersion),a=re(b=>b.hasHydrated),i=e.find(b=>b.path===o.pathname),c=t.i18n?i?.locale||(a?r:void 0)||t.i18n.defaultLocale:void 0,l=t.versions?i?.version||(a?n:void 0)||t.versions.defaultVersion:void 0,u=e.filter(b=>{let k=t.i18n?(b.locale||t.i18n.defaultLocale)===c:!0,R=t.versions?(b.version||t.versions.defaultVersion)===l:!0;if(!(k&&R))return!1;let Q=t.i18n;if(Q){let le=!!i?.locale,G=!!b.locale;if(e.some(ce=>ce!==b&&ce.filePath===b.filePath&&ce.version===b.version&&(ce.locale||Q.defaultLocale)===(b.locale||Q.defaultLocale))&&le!==G)return!1}return!0}),p=t.i18n?.localeConfigs?.[c]?.label||t.i18n?.locales[c]||c,h=t.versions?.versions.find(b=>b.path===l)?.label||l,x=t.i18n?Object.entries(t.i18n.locales).map(([b,k])=>{let R=t.i18n?.localeConfigs?.[b];return{key:b,label:R?.label||k,isCurrent:b===c}}):[],v=t.versions?t.versions.versions.map(b=>({key:b.path,label:b.label,isCurrent:b.path===l})):[];return{routes:u,allRoutes:e,currentRoute:i,currentLocale:c,currentLocaleLabel:p,availableLocales:x,currentVersion:l,currentVersionLabel:h,availableVersions:v,config:t}}var jr,ee=L(()=>{"use strict";s();jr=require("react-router-dom");ge();_t();Lt()});function kt(e){let t=F(),{currentLocale:o,currentVersion:r}=A();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"),c=e.split("/").filter(Boolean),l=0;c[l]==="docs"&&l++,a&&c.length>l&&a.versions.find(h=>h.path===c[l])&&l++,n&&c.length>l&&n.locales[c[l]]&&l++;let u=c.slice(l),d=[];i&&(d.push("docs"),a&&r&&d.push(r)),n&&o&&o!==n.defaultLocale&&d.push(o),d.push(...u);let p=`/${d.join("/")}`;return p.length>1&&p.endsWith("/")?p.slice(0,-1):p||"/"}var Ut=L(()=>{"use strict";s();ge();ee()});function m(...e){return(0,qr.twMerge)((0,Ur.clsx)(e))}var Ur,qr,w=L(()=>{"use strict";s();Ur=require("clsx"),qr=require("tailwind-merge")});var Qo,Kr,Xr,er,K,ta,Qe=L(()=>{"use strict";s();Qo=S(require("react")),Kr=require("react-aria-components"),Xr=require("react-router-dom");Ut();_t();w();er=require("react/jsx-runtime"),K=Qo.default.forwardRef((e,t)=>{let{href:o,prefetch:r="hover",onMouseEnter:n,onFocus:a,...i}=e,c=kt(o??""),{preload:l}=Gt();return(0,er.jsx)(Kr.Link,{...i,ref:t,href:c,onMouseEnter:p=>{n?.(p),r==="hover"&&typeof c=="string"&&c.startsWith("/")&&l(c)},onFocus:p=>{a?.(p),r==="hover"&&typeof c=="string"&&c.startsWith("/")&&l(c)}})});K.displayName="Link";ta=Qo.default.forwardRef((e,t)=>{let{href:o,end:r=!1,className:n,children:a,...i}=e,c=(0,Xr.useLocation)(),l=kt(o??""),u=r?c.pathname===l:c.pathname.startsWith(l),d=typeof n=="function"?n({isActive:u}):m(n,u&&"active"),p=typeof a=="function"?a({isActive:u}):a;return(0,er.jsx)(K,{...i,ref:t,href:o,className:d,children:p})});ta.displayName="NavLink"});var Jt,bn,he,Xt,Re,Yt=L(()=>{"use strict";s();Jt=S(require("react-aria-components"));w();bn=require("class-variance-authority"),he=require("react/jsx-runtime"),Xt=(0,bn.cva)("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"}}),Re=({href:e,icon:t,iconPosition:o="left",isIconOnly:r,children:n,className:a,variant:i,size:c,rounded:l,iconSize:u,disabled:d,...p})=>{let f=r||!n&&!!t,h=f?(0,he.jsx)("span",{className:"inline-flex items-center justify-center [&>svg]:w-[1.2rem] [&>svg]:h-[1.2rem]",children:t}):(0,he.jsxs)(he.Fragment,{children:[t&&o==="left"&&(0,he.jsx)("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t}),(0,he.jsx)("span",{className:"flex items-center",children:n}),t&&o==="right"&&(0,he.jsx)("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t})]});return e?(0,he.jsx)(Jt.Link,{href:e,className:m(Xt({variant:i,size:c,rounded:l,iconSize:f?u:void 0,disabled:d}),a),...p,children:h}):(0,he.jsx)(Jt.Button,{className:m(Xt({variant:i,size:c,rounded:l,iconSize:f?u:void 0,disabled:d}),a),...p,children:h})}});function te(e){let{size:t=20,...o}=e;return{...o,width:t,height:t}}var y,to,Cn,Rn,Pn,Nn,oo,ro,no,so,ao,tt,ot,rt,nt,At=L(()=>{"use strict";s();y=require("react/jsx-runtime");to=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...te(e),children:[(0,y.jsx)("title",{children:"GitHub"}),(0,y.jsx)("path",{d:"M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"})]}),Cn=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...te(e),children:[(0,y.jsx)("title",{children:"Discord"}),(0,y.jsx)("path",{d:"M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028c.462-.63.874-1.295 1.226-1.994a.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418Z"})]}),Rn=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...te(e),children:[(0,y.jsx)("title",{children:"X"}),(0,y.jsx)("path",{d:"M14.234 10.162 22.977 0h-2.072l-7.591 8.824L7.251 0H.258l9.168 13.343L.258 24H2.33l8.016-9.318L16.749 24h6.993zm-2.837 3.299-.929-1.329L3.076 1.56h3.182l5.965 8.532.929 1.329 7.754 11.09h-3.182z"})]}),Pn=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...te(e),children:[(0,y.jsx)("title",{children:"CodeSandbox"}),(0,y.jsx)("path",{d:"M0 24h24V0H0v2.455h21.546v19.09H2.454V0H0Z"})]}),Nn=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...te(e),children:[(0,y.jsx)("title",{children:"Bluesky"}),(0,y.jsx)("path",{d:"M5.202 2.857C7.954 4.922 10.913 9.11 12 11.358c1.087-2.247 4.046-6.436 6.798-8.501C20.783 1.366 24 .213 24 3.883c0 .732-.42 6.156-.667 7.037-.856 3.061-3.978 3.842-6.755 3.37 4.854.826 6.089 3.562 3.422 6.299-5.065 5.196-7.28-1.304-7.847-2.97-.104-.305-.152-.448-.153-.327 0-.121-.05.022-.153.327-.568 1.666-2.782 8.166-7.847 2.97-2.667-2.737-1.432-5.473 3.422-6.3-2.777.473-5.899-.308-6.755-3.369C.42 10.04 0 4.615 0 3.883c0-3.67 3.217-2.517 5.202-1.026"})]}),oo=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...te(e),children:[(0,y.jsx)("title",{children:"TypeScript"}),(0,y.jsx)("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"})]}),ro=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...te(e),children:[(0,y.jsx)("title",{children:"JavaScript"}),(0,y.jsx)("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"})]}),no=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...te(e),children:[(0,y.jsx)("title",{children:"JSON"}),(0,y.jsx)("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"})]}),so=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...te(e),children:[(0,y.jsx)("title",{children:"CSS"}),(0,y.jsx)("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"})]}),ao=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...te(e),children:[(0,y.jsx)("title",{children:"HTML"}),(0,y.jsx)("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"})]}),tt=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...te(e),children:[(0,y.jsx)("title",{children:"React"}),(0,y.jsx)("path",{fill:"#0E8ADC",d:"M12 13.677a1.677 1.677 0 100-3.354 1.677 1.677 0 000 3.354z"}),(0,y.jsx)("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"}),(0,y.jsx)("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"}),(0,y.jsx)("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"})]}),ot=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...te(e),children:[(0,y.jsx)("title",{children:"Markdown"}),(0,y.jsx)("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"})]}),rt=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 25 24",...te(e),children:[(0,y.jsx)("title",{children:"Shell"}),(0,y.jsx)("path",{stroke:"#14B8A6",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M4.336 17l6-6-6-6M12.336 19h8"})]}),nt=e=>(0,y.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",...te(e),children:[(0,y.jsx)("title",{children:"YAML"}),(0,y.jsx)("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"})]})});var st,me,ra,sr,ar=L(()=>{"use strict";s();st=S(require("react-aria-components"));w();me=require("react/jsx-runtime"),ra=({className:e,children:t,...o})=>(0,me.jsx)(st.Tooltip,{...o,offset:8,className:r=>m("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=>(0,me.jsxs)(me.Fragment,{children:[(0,me.jsx)(st.OverlayArrow,{children:(0,me.jsxs)("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:[(0,me.jsx)("title",{children:"Arrow"}),(0,me.jsx)("path",{d:"M0 0 L4 4 L8 0"})]})}),typeof t=="function"?t(r):t]})}),sr=({content:e,children:t,delay:o=500,closeDelay:r=0,...n})=>(0,me.jsxs)(st.TooltipTrigger,{delay:o,closeDelay:r,children:[t,(0,me.jsx)(ra,{...n,children:e})]})});var Mo,Dn,ze,N,va,ya,Ca,Ra,Pa,Na,wa,Ta,La,ka,Sa,Aa,Ba,Ia,X,Eo=L(()=>{"use strict";s();Mo=require("react");Oo();Dn=require("react-aria-components"),ze=require("lucide-react");At();N=require("react/jsx-runtime"),va=({children:e,className:t,...o})=>(0,N.jsx)("header",{className:m("boltdocs-navbar sticky top-0 z-50 w-full border-b border-border-subtle bg-bg-main/80 backdrop-blur-md",t),...o,children:e}),ya=({children:e,className:t})=>(0,N.jsx)("div",{className:m("mx-auto flex lg:h-navbar max-w-(--breakpoint-3xl) items-center justify-between px-4 md:px-6",t),children:e}),Ca=({children:e,className:t})=>(0,N.jsx)("div",{className:m("flex flex-1 items-center justify-start gap-4 min-w-0",t),children:e}),Ra=({children:e,className:t})=>(0,N.jsx)("div",{className:m("flex flex-1 items-center justify-end gap-2 md:gap-4 min-w-0",t),children:e}),Pa=({children:e,className:t})=>(0,N.jsx)("div",{className:m("hidden lg:flex flex-1 justify-center items-center gap-4 px-4 min-w-0 w-full",t),children:e}),Na=({src:e,alt:t,width:o=24,height:r=24,className:n})=>(0,N.jsx)(K,{href:"/",className:m("flex items-center gap-2 shrink-0 outline-none",n),children:e?(0,N.jsx)("img",{src:e,alt:t,width:o,height:r,className:"h-6 w-6 object-contain"}):null}),wa=({children:e,className:t})=>(0,N.jsx)(K,{href:"/",children:(0,N.jsx)("span",{className:m("text-lg font-bold tracking-tight hidden sm:inline-block",t),children:e})}),Ta=({children:e,className:t})=>(0,N.jsx)("nav",{className:m("hidden md:flex items-center gap-6 text-sm font-medium",t),children:e}),La=({label:e,href:t,active:o,to:r,className:n})=>(0,N.jsxs)(K,{href:t,target:r==="external"?"_blank":void 0,className:m("transition-colors outline-none font-medium focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-sm",{"text-primary-500":o,"text-text-muted hover:text-text-main":!o},n),children:[e,r==="external"&&(0,N.jsx)("span",{className:"ml-1 inline-block",children:(0,N.jsx)(ze.ExternalLink,{size:12})})]}),ka=({className:e,onPress:t})=>{let[o,r]=(0,Mo.useState)(!1),n=o&&/Mac|iPod|iPhone|iPad/.test(navigator.platform);return(0,Mo.useEffect)(()=>{r(!0)},[]),(0,N.jsxs)(Dn.Button,{onPress:t,className:m("flex items-center gap-2 rounded-full border border-border-subtle bg-bg-surface px-3 py-2 text-sm text-text-muted outline-none cursor-pointer","transition-all duration-200 hover:border-border-strong hover:text-text-main hover:bg-bg-muted hover:shadow-sm active:scale-[0.98]","focus-visible:ring-2 focus-visible:ring-primary-500/30","w-full max-w-[720px] justify-between",e),children:[(0,N.jsxs)("div",{className:"flex items-center gap-2",children:[(0,N.jsx)(ze.Search,{size:16}),(0,N.jsx)("span",{className:"hidden sm:inline-block",children:"Search docs..."})]}),(0,N.jsxs)("div",{className:"hidden sm:flex items-center gap-1 pointer-events-none select-none",children:[(0,N.jsx)("kbd",{className:"flex h-5 items-center justify-center rounded border border-border-subtle bg-bg-main px-1.5 font-mono text-[10px] font-medium",children:n?"\u2318":"Ctrl"}),(0,N.jsx)("kbd",{className:"flex h-5 w-5 items-center justify-center rounded border border-border-subtle bg-bg-main font-mono text-[10px] font-medium",children:"K"})]})]})},Sa=({className:e,theme:t,onThemeChange:o})=>(0,N.jsx)(ut.ToggleButton,{isSelected:t==="dark",onChange:o,className:m("rounded-md p-2 text-text-muted outline-none cursor-pointer","transition-all duration-300 hover:bg-bg-surface hover:text-text-main hover:rotate-12 active:scale-90","focus-visible:ring-2 focus-visible:ring-primary-500/30",e),"aria-label":"Toggle theme",children:t==="dark"?(0,N.jsx)(ze.Sun,{size:20}):(0,N.jsx)(ze.Moon,{size:20})}),Aa=({name:e})=>{if(e==="github")return(0,N.jsx)(to,{});if(e==="discord")return(0,N.jsx)(Cn,{});if(e==="x")return(0,N.jsx)(Rn,{});if(e==="bluesky")return(0,N.jsx)(Nn,{})},Ba=({icon:e,link:t,className:o})=>(0,N.jsx)(K,{href:t,target:"_blank",rel:"noopener noreferrer",className:m("rounded-md p-2 text-text-muted outline-none transition-colors","hover:bg-bg-surface hover:text-text-main","focus-visible:ring-2 focus-visible:ring-primary-500/30",o),children:(0,N.jsx)(Aa,{name:e})}),Ia=({className:e})=>(0,N.jsx)(ut.Separator,{orientation:"vertical",className:m("h-6 w-px bg-border-subtle mx-1",e)}),X={NavbarRoot:va,NavbarLeft:Ca,NavbarRight:Ra,NavbarCenter:Pa,NavbarLogo:Na,Title:wa,Links:Ta,Link:La,SearchTrigger:ka,Theme:Sa,Socials:Ba,Split:Ia,Content:ya}});var Ot,Ma,dr,Hn=L(()=>{"use strict";s();Ot=S(require("react-aria-components")),Ma=require("lucide-react");w();dr=require("react/jsx-runtime")});var _,$e,B,ur,fr,gr,br,hr,xr,vr,yr,Gc,Cr=L(()=>{"use strict";s();_=S(require("react-aria-components")),$e=require("lucide-react");w();B=require("react/jsx-runtime"),ur=({children:e,isOpen:t,onOpenChange:o,className:r})=>(0,B.jsx)(_.ModalOverlay,{isOpen:t,onOpenChange:o,isDismissable:!0,className:m("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:(0,B.jsx)(_.Modal,{className:m("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:(0,B.jsx)(_.Dialog,{className:"flex flex-col max-h-[70vh] focus:outline-none",children:e})})}),fr=({children:e,className:t,onSelectionChange:o,...r})=>(0,B.jsx)("div",{className:t,children:(0,B.jsx)(_.Autocomplete,{...r,onSelectionChange:o,className:"flex flex-col min-h-0",children:e})}),gr=({className:e,...t})=>(0,B.jsxs)(_.SearchField,{className:"flex items-center gap-3 border-b border-border-subtle px-4 py-4",autoFocus:!0,children:[(0,B.jsx)($e.Search,{className:"h-5 w-5 text-text-muted"}),(0,B.jsx)(_.Input,{...t,className:m("w-full bg-transparent text-lg text-text-main placeholder-text-muted outline-none",e),placeholder:"Search documentation..."}),(0,B.jsx)("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:(0,B.jsx)("kbd",{className:"font-sans",children:"ESC"})})]}),br=({children:e,className:t,...o})=>(0,B.jsx)(_.ListBox,{...o,className:m("flex-1 overflow-y-auto p-2 outline-none",t),children:e}),hr=({children:e,className:t,...o})=>(0,B.jsx)(_.ListBoxItem,{...o,className:m("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=>(0,B.jsxs)(B.Fragment,{children:[e,(r.isFocused||r.isSelected)&&(0,B.jsxs)("div",{className:"ml-auto opacity-50 flex items-center gap-1",children:[(0,B.jsx)("span",{className:"text-[10px]",children:"Select"}),(0,B.jsx)($e.CornerDownLeft,{size:10})]})]})}),xr=({isHeading:e,className:t})=>(0,B.jsx)("div",{className:m("shrink-0",t),children:e?(0,B.jsx)($e.Hash,{size:18}):(0,B.jsx)($e.FileText,{size:18})}),vr=({children:e,className:t})=>(0,B.jsx)("span",{className:m("block font-medium truncate flex-1 text-sm",t),children:e}),yr=({children:e,className:t})=>(0,B.jsx)("span",{className:m("ml-2 text-xs opacity-70 truncate hidden sm:inline group-focus:opacity-100",t),children:e}),Gc={Root:ur,Autocomplete:fr,Input:gr,List:br,Item:Object.assign(hr,{Icon:xr,Title:vr,Bio:yr})}});function zn(e,t){let o=(0,Vo.useRef)(e);(0,Vo.useEffect)(()=>{o.current!==e&&(t(e),o.current=e)},[e,t])}var Vo,$n=L(()=>{"use strict";s();Vo=require("react")});function Rr(e){return e.startsWith("#")?e.slice(1):null}var Do,Fn=L(()=>{"use strict";s();Do=class{items=[];single=!1;observer=null;onChange;callback(t){if(t.length===0)return;for(let r of t){let n=this.items.find(a=>a.id===r.target.id);if(n){n.active=r.isIntersecting;let a=100;n.fallback=!r.isIntersecting&&r.boundingClientRect.top<a}}let o=-1;for(let r=this.items.length-1;r>=0;r--)if(this.items[r].fallback){o=r;break}o===-1&&this.items.length>0&&(o=0),this.items=this.items.map((r,n)=>({...r,active:n===o,t:n===o?Date.now():r.t})),this.onChange?.()}setItems(t){let o=this.observer;if(o)for(let r of this.items){let n=document.getElementById(r.id);n&&o.unobserve(n)}this.items=[];for(let r of t){let n=Rr(r.url);n&&this.items.push({id:n,active:!1,fallback:!1,t:0,original:r})}this.watchItems(),typeof window<"u"&&(setTimeout(()=>this.watchItems(),100),setTimeout(()=>this.watchItems(),500),setTimeout(()=>this.watchItems(),1e3)),this.onChange?.()}watch(t){this.observer||(this.observer=new IntersectionObserver(this.callback.bind(this),t),this.watchItems())}watchItems(){if(this.observer)for(let t of this.items){let o=document.getElementById(t.id);o&&this.observer.observe(o)}}unwatch(){this.observer?.disconnect(),this.observer=null}}});function Ea(){let e=(0,O.use)(Pr);if(!e)throw new Error("Component must be used under the <AnchorProvider /> component.");return e}function _n(){let e=Ea();return(0,O.useMemo)(()=>{let t;for(let o of e)o.active&&(!t||o.t>t.t)&&(t=o);return t?.id},[e])}function jn({containerRef:e,children:t}){return(0,Te.jsx)(Gn.Provider,{value:e,children:t})}function Un({toc:e,single:t=!1,children:o}){let r=(0,O.useMemo)(()=>new Do,[]),[n,a]=(0,O.useState)(r.items);return r.single=t,(0,O.useEffect)(()=>{r.setItems(e)},[r,e]),(0,O.useEffect)(()=>(r.watch({rootMargin:"-100px 0% 0% 0%",threshold:0}),r.onChange=()=>a([...r.items]),()=>{r.unwatch()}),[r]),(0,Te.jsx)(Pr.Provider,{value:n,children:o})}var O,Wn,Te,Pr,Gn,Oa,Va,qn,Da,Ha,za,$a,Xe,Nr=L(()=>{"use strict";s();O=require("react"),Wn=S(require("scroll-into-view-if-needed"));w();$n();Fn();Te=require("react/jsx-runtime"),Pr=(0,O.createContext)(null),Gn=(0,O.createContext)(null);Oa=({children:e,className:t})=>(0,Te.jsx)("nav",{className:m("sticky top-navbar hidden xl:flex flex-col shrink-0","w-toc","py-8 pl-6 pr-4",t),children:e}),Va=({children:e,className:t,...o})=>(0,Te.jsx)("div",{className:m("mb-4 text-xs font-bold uppercase tracking-wider text-text-main",t),...o,children:e}),qn=({children:e,className:t,ref:o,...r})=>{let n=(0,O.useRef)(null);return(0,O.useImperativeHandle)(o,()=>n.current),(0,Te.jsx)("div",{ref:n,className:m("relative overflow-y-auto boltdocs-otp-content",t),...r,children:e})};qn.displayName="OnThisPageContent";Da=({children:e,className:t})=>(0,Te.jsx)("ul",{className:m("relative space-y-1 text-sm border-l border-border-subtle",t),children:e}),Ha=({level:e,children:t,className:o})=>(0,Te.jsx)("li",{className:m(e===3&&"pl-3",o),children:t}),za=({children:e,href:t,active:o,onClick:r,className:n})=>{let a=(0,O.use)(Pr),i=(0,O.use)(Gn),c=t?Rr(t):null,l=(0,O.useRef)(null),[u,d]=(0,O.useState)(o);return zn(c&&a?a.find(p=>p.id===c)?.active:null,p=>{p!==null&&p!==u&&(d(!!p),p&&l.current&&i?.current&&(0,Wn.default)(l.current,{behavior:"smooth",block:"center",inline:"center",scrollMode:"if-needed",boundary:i.current}))}),(0,O.useEffect)(()=>{o!==void 0&&d(o)},[o]),(0,Te.jsx)("a",{ref:l,href:t,onClick:r,"data-active":u,className:m("block py-1 pl-4 text-[13px] outline-none transition-colors hover:text-text-main",u?"text-primary-500 font-medium":"text-text-muted",n),children:e})},$a=({style:e,className:t})=>(0,Te.jsx)("div",{className:m("absolute -left-px w-0.5 rounded-full bg-primary-500 transition-all duration-300",t),style:e}),Xe={OnThisPageRoot:Oa,OnThisPageHeader:Va,OnThisPageContent:qn,OnThisPageList:Da,OnThisPageItem:Ha,OnThisPageLink:za,OnThisPageIndicator:$a}});var Kn,Ho,de,Fa,Wa,Ga,_a,ja,Fe,wr=L(()=>{"use strict";s();Kn=S(require("react-aria-components")),Ho=require("lucide-react");w();de=require("react/jsx-runtime"),Fa=({children:e,className:t})=>(0,de.jsx)("nav",{className:m("grid grid-cols-1 sm:grid-cols-2 gap-4 mt-12 pt-8 border-t border-border-subtle",t),children:e}),Wa=({children:e,to:t,direction:o,className:r})=>{let n=o==="next";return(0,de.jsxs)(Kn.Link,{href:t,className:m("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&&(0,de.jsx)(Ho.ChevronLeft,{className:"mr-3 h-5 w-5 text-text-muted group-hover:text-primary-500 transition-transform group-hover:-translate-x-1"}),(0,de.jsx)("div",{className:"flex flex-col gap-1 flex-1",children:e}),n&&(0,de.jsx)(Ho.ChevronRight,{className:"ml-3 h-5 w-5 text-text-muted group-hover:text-primary-500 transition-transform group-hover:translate-x-1"})]})},Ga=({children:e,className:t})=>(0,de.jsx)("span",{className:m("text-xs font-medium uppercase tracking-wider text-text-muted",t),children:e}),_a=({children:e,className:t})=>(0,de.jsx)("span",{className:m("text-base font-bold text-text-main truncate",t),children:e}),ja=({children:e})=>(0,de.jsx)(de.Fragment,{children:e}),Fe={PageNavRoot:Fa,PageNavLink:Object.assign(Wa,{Title:Ga,Description:_a,Icon:ja})}});var ft,Ua,qa,Ka,Xa,Ja,Tr,Lr=L(()=>{"use strict";s();w();ft=require("react/jsx-runtime"),Ua=({children:e,className:t="",...o})=>(0,ft.jsx)("div",{className:m("w-full",t),...o,children:e}),qa=({children:e,className:t=""})=>(0,ft.jsx)("div",{role:"tablist",className:m("relative flex flex-row items-center border-b border-border-subtle",t),children:e}),Ka=({children:e,id:t,selected:o,className:r="",...n})=>(0,ft.jsx)("button",{role:"tab","aria-selected":o,className:m("flex items-center gap-2 px-4 py-2 text-sm font-medium transition-colors outline-none cursor-pointer bg-transparent border-none",o?"text-primary-500":"text-text-muted hover:text-text-main",r),...n,children:e}),Xa=({children:e,className:t=""})=>(0,ft.jsx)("div",{className:m("p-4 outline-none",t),children:e}),Ja=({className:e="",style:t})=>(0,ft.jsx)("div",{className:m("absolute bottom-0 h-0.5 bg-primary-500 transition-all duration-300",e),style:t}),Tr={TabsRoot:Ua,TabsList:qa,TabsItem:Ka,TabsContent:Xa,TabsIndicator:Ja}});var Xn,Jn,j,Ya,Za,Qa,ei,ti,gt,kr=L(()=>{"use strict";s();Qe();Xn=S(require("react-aria-components")),Jn=require("lucide-react");w();j=require("react/jsx-runtime"),Ya=({badge:e})=>{let t={new:"bg-primary-500/20 text-primary-500",updated:"bg-gray-500/20 text-gray-500",deprecated:"bg-red-500/20 text-red-500"};if(typeof e=="object"&&e?.expires){let r=new Date(e.expires),n=new Date,a=r.getTime()-n.getTime();if(Math.ceil(a/(1e3*60*60*24))===0)return null}let o=typeof e=="string"?e:e?.text;return(0,j.jsx)("span",{className:m("ml-auto flex h-4.5 items-center rounded-full text-[9px] font-medium px-1.5 py-0.5 text-center whitespace-nowrap",t[o]||t.new),children:o})},Za=({children:e,className:t})=>(0,j.jsx)("aside",{className:m("boltdocs-sidebar sticky top-navbar hidden lg:flex flex-col shrink-0","w-sidebar h-full","overflow-y-auto border-r border-border-subtle bg-bg-main","py-6 px-4",t),children:(0,j.jsx)("nav",{className:"flex-1 space-y-6",children:e})}),Qa=({children:e,title:t,icon:o,isOpen:r=!0,onToggle:n,className:a})=>(0,j.jsxs)("div",{className:m("space-y-1",a),children:[t&&(0,j.jsxs)(Xn.Button,{onPress:n,className:m("flex w-full items-center justify-between px-2 py-1.5 text-xs font-bold uppercase tracking-wider outline-none cursor-pointer","text-text-muted hover:text-text-main transition-colors","focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-md"),children:[(0,j.jsxs)("div",{className:"flex items-center gap-2",children:[o&&(0,j.jsx)(o,{size:14}),t]}),(0,j.jsx)(Jn.ChevronRight,{size:14,className:m("transition-transform duration-200",r&&"rotate-90")})]}),r&&(0,j.jsx)("div",{className:"space-y-0.5",children:e})]}),ei=({children:e,className:t})=>(0,j.jsx)("div",{className:m(t),children:e}),ti=({label:e,href:t,active:o,icon:r,badge:n,className:a})=>(0,j.jsxs)(K,{href:t,className:m("group flex items-center gap-2.5 rounded-lg px-2.5 py-2 text-sm outline-none","transition-all duration-200 ease-in-out","focus-visible:ring-2 focus-visible:ring-primary-500/30",o?"bg-primary-500/10 text-primary-500 font-medium":"text-text-muted hover:bg-bg-surface hover:text-text-main hover:translate-x-1",a),children:[r&&(0,j.jsx)(r,{size:16,className:m(o?"text-primary-500":"text-text-muted group-hover:text-text-main")}),(0,j.jsx)("span",{className:"truncate",children:e}),n&&(0,j.jsx)(Ya,{badge:n})]}),gt={SidebarRoot:Za,SidebarGroup:Qa,SidebarGroupItem:ei,SidebarLink:ti}});var bt,Yn,Vt,Zn,Sr,Ar,Qn,Br=L(()=>{"use strict";s();bt=require("react-aria-components"),Yn=require("lucide-react");w();Vt=require("react/jsx-runtime"),Zn=({children:e,className:t,...o})=>(0,Vt.jsx)(bt.Breadcrumbs,{className:m("flex items-center gap-1.5 pl-0! mb-0 text-sm text-text-muted",t),...o,children:e}),Sr=({children:e,className:t,...o})=>(0,Vt.jsx)(bt.Breadcrumb,{className:m("flex items-center mb-0 gap-1.5",t),...o,children:e}),Ar=({children:e,href:t,className:o,...r})=>(0,Vt.jsx)(bt.Link,{href:t,className:m("transition-colors outline-none hover:text-text-main focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-sm","current:font-medium current:text-text-main current:pointer-events-none cursor-pointer",o),...r,children:e}),Qn=({className:e})=>(0,Vt.jsx)(Yn.ChevronRight,{size:14,className:m("shrink-0 text-text-dim",e)})});var ts,es,os=L(()=>{"use strict";s();w();ts=require("react/jsx-runtime"),es=({children:e,className:t,vertical:o=!1})=>(0,ts.jsx)("div",{className:m("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})});var xt,ht,Ir,Mr=L(()=>{"use strict";"use client";s();xt=S(require("react-aria-components"));w();ht=require("react/jsx-runtime"),Ir=({children:e,className:t,showArrow:o,...r})=>(0,ht.jsxs)(xt.Popover,{offset:8,...r,className:xt.composeRenderProps(t,n=>m("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&&(0,ht.jsx)(xt.OverlayArrow,{className:"group",children:(0,ht.jsx)("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:(0,ht.jsx)("path",{d:"M0 0 L6 6 L12 0"})})}),e]})});function Dt(e){let[t,o]=Er.default.Children.toArray(e.children).slice(0,2);return(0,H.jsxs)(z.MenuTrigger,{...e,children:[t,(0,H.jsx)(Ir,{placement:e.placement,className:"min-w-35",children:o})]})}function oi(e){let[t,o]=Er.default.Children.toArray(e.children).slice(0,2);return(0,H.jsxs)(z.SubmenuTrigger,{...e,children:[t,(0,H.jsx)(Ir,{offset:-4,crossOffset:-4,children:o})]})}function Ht(e){return(0,H.jsx)(z.Menu,{...e,className:z.composeRenderProps(e.className,t=>m("p-1.5 outline-none max-h-[inherit] overflow-auto max-w-75",t))})}function We(e){let t=e.textValue||(typeof e.children=="string"?e.children:void 0);return(0,H.jsx)(z.MenuItem,{...e,textValue:t,className:z.composeRenderProps(e.className,(o,{isFocused:r,isPressed:n,isDisabled:a})=>m("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:z.composeRenderProps(e.children,(o,{selectionMode:r,isSelected:n,hasSubmenu:a})=>(0,H.jsxs)(H.Fragment,{children:[r!=="none"&&(0,H.jsxs)("span",{className:"flex items-center size-4 shrink-0 justify-center",children:[n&&r==="multiple"&&(0,H.jsx)(vt.Check,{className:"size-3.5 stroke-[2.5px] text-primary-500 animate-in zoom-in-50 duration-200"}),n&&r==="single"&&(0,H.jsx)(vt.Dot,{className:"size-5 text-primary-500 animate-in zoom-in-50 duration-200"})]}),(0,H.jsx)("div",{className:"flex flex-row w-full transition-colors items-center gap-2 py-1 px-1",children:o}),a&&(0,H.jsx)(vt.ChevronRight,{className:"size-4 ml-auto text-text-muted group-focused:text-primary-500/70 transition-colors"})]}))})}function ri({title:e,...t}){return(0,H.jsxs)(z.MenuSection,{...t,className:m("flex flex-col gap-0.5",t.className),children:[e&&(0,H.jsx)(z.Header,{className:"px-3 py-2 text-[10px] font-bold uppercase tracking-[0.075em] text-text-muted/50 select-none",children:e}),(0,H.jsx)(z.Collection,{items:t.items,children:t.children})]})}function ni(e){return(0,H.jsx)(z.Separator,{...e,className:"mx-2 my-1.5 border-t border-border-subtle/50"})}var vt,Er,z,H,Ie,zo=L(()=>{"use strict";"use client";s();vt=require("lucide-react"),Er=S(require("react")),z=S(require("react-aria-components"));Mr();w();H=require("react/jsx-runtime");Ie={Root:Ht,Item:We,Trigger:Dt,SubTrigger:oi,Section:ri,Separator:ni}});function U({className:e,variant:t="rect",...o}){return(0,rs.jsx)("div",{className:m("animate-pulse bg-bg-muted",t==="circle"?"rounded-full":"rounded-md",e),...o})}var rs,Or=L(()=>{"use strict";s();w();rs=require("react/jsx-runtime")});var ut,Oo=L(()=>{"use strict";s();Eo();Hn();Cr();Nr();wr();Lr();kr();Br();Yt();os();zo();Mr();ar();Qe();Or();ut=require("react-aria-components");w()});function bs(e){let{currentLocale:t,currentVersion:o}=A(),[r,n]=(0,_e.useState)(!1),[a,i]=(0,_e.useState)(""),[c,l]=(0,_e.useState)(null);(0,_e.useEffect)(()=>{if(!r||c)return;let d=new gs.Index({preset:"match",tokenize:"full",resolution:9,cache:!0});for(let p of Hr.default)d.add(p.id,`${p.title} ${p.content}`);l(d)},[r,c]);let u=(0,_e.useMemo)(()=>{if(!a)return e.filter(h=>{let x=!t||h.locale===t,v=!o||h.version===o;return x&&v}).slice(0,10).map(h=>({id:h.path,title:h.title,path:h.path,bio:h.description||"",groupTitle:h.groupTitle}));if(!c)return[];let d=c.search(a,{limit:20,suggest:!0}),p=[],f=new Set;for(let h of d){let x=Hr.default.find(k=>k.id===h);if(!x)continue;let v=!t||x.locale===t,b=!o||x.version===o;!v||!b||f.has(x.url)||(f.add(x.url),p.push({id:x.url,title:x.title,path:x.url,bio:x.display,groupTitle:x.display.split(" > ")[0],isHeading:x.url.includes("#")}))}return p.slice(0,10)},[a,c,t,o,e]);return{isOpen:r,setIsOpen:n,query:a,setQuery:i,list:u,input:{value:a,onChange:d=>i(d.target.value)}}}var _e,gs,Hr,zr=L(()=>{"use strict";s();_e=require("react"),gs=require("flexsearch");ee();Hr=S(require("virtual:boltdocs-search"))});var Vs={};Yo(Vs,{SearchDialog:()=>xi});function xi({routes:e}){let{isOpen:t,setIsOpen:o,query:r,setQuery:n,list:a}=bs(e),i=(0,Os.useNavigate)();(0,Go.useEffect)(()=>{let l=u=>{(/Mac/.test(navigator.userAgent)?u.metaKey:u.ctrlKey)&&(u.key==="k"||u.key==="j")&&(u.preventDefault(),o(f=>!f))};return window.addEventListener("keydown",l),()=>window.removeEventListener("keydown",l)},[o]);let c=(0,Go.useCallback)(l=>{let u=String(l);if(o(!1),u.includes("#")){let[d,p]=u.split("#");i(d),setTimeout(()=>{let f=document.getElementById(p);f&&f.scrollIntoView({behavior:"smooth"})},100)}else i(u)},[i,o]);return(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsx)(X.SearchTrigger,{onPress:()=>o(!0)}),(0,Y.jsx)(ur,{isOpen:t,onOpenChange:o,children:(0,Y.jsxs)(fr,{onSelectionChange:c,children:[(0,Y.jsx)(gr,{value:r,onChange:l=>n(l.target.value)}),(0,Y.jsx)(br,{items:a,children:l=>(0,Y.jsxs)(hr,{onPress:()=>c(l.id),textValue:l.title,children:[(0,Y.jsx)(xr,{isHeading:l.isHeading}),(0,Y.jsxs)("div",{className:"flex flex-col justify-center gap-0.5",children:[(0,Y.jsx)(vr,{children:l.title}),(0,Y.jsx)(yr,{children:l.bio})]})]},l.id)})]})})]})}var Go,Os,Y,Ds=L(()=>{"use strict";s();Go=require("react");zr();Cr();Eo();Os=require("react-router-dom"),Y=require("react/jsx-runtime")});var Ti={};Yo(Ti,{Admonition:()=>ve,Badge:()=>po,Breadcrumbs:()=>Xo,Button:()=>Zt,Card:()=>fo,Cards:()=>uo,Caution:()=>Co,CodeBlock:()=>Pe,ComponentPreview:()=>Io,ComponentProps:()=>Bo,CopyMarkdown:()=>yt,Danger:()=>xo,DefaultLayout:()=>qs,DocsLayout:()=>Ue,ErrorBoundary:()=>Tt,Field:()=>ko,FileTree:()=>To,Head:()=>Ko,Image:()=>Ao,Important:()=>yo,InfoBox:()=>vo,Link:()=>So,List:()=>No,Loading:()=>$o,Navbar:()=>jo,NotFound:()=>St,Note:()=>go,OnThisPage:()=>qo,PageNav:()=>Jo,Sidebar:()=>Uo,Tab:()=>lo,Table:()=>Lo,Tabs:()=>co,Tip:()=>bo,Video:()=>mo,Warning:()=>ho,createBoltdocsApp:()=>ms,defineSandbox:()=>nr,embedSandbox:()=>xn,openSandbox:()=>eo,useConfig:()=>F,useMdxComponents:()=>et,useRoutes:()=>A,useTheme:()=>De});module.exports=ea(Ti);s();s();var J=S(require("react")),is=S(require("react-dom/client")),fe=require("react-router-dom");s();var Jr=require("lucide-react");Qe();var Ae=require("react/jsx-runtime");function St(){return(0,Ae.jsx)("div",{className:"flex items-center justify-center min-h-[60vh] text-center",children:(0,Ae.jsxs)("div",{className:"space-y-4",children:[(0,Ae.jsx)("span",{className:"text-8xl font-black tracking-tighter text-primary-500/20",children:"404"}),(0,Ae.jsx)("h1",{className:"text-2xl font-bold text-text-main",children:"Page Not Found"}),(0,Ae.jsx)("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."}),(0,Ae.jsxs)(K,{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:[(0,Ae.jsx)(Jr.ArrowLeft,{size:16})," Go to Home"]})]})})}s();var be=require("react"),Qr=require("react/jsx-runtime"),Yr=(0,be.createContext)(void 0);function Zr({children:e}){let[t,o]=(0,be.useState)("system"),[r,n]=(0,be.useState)("dark"),[a,i]=(0,be.useState)(!1);(0,be.useEffect)(()=>{i(!0);let l=localStorage.getItem("boltdocs-theme"),u=l==="light"||l==="dark"||l==="system"?l:"system";o(u);let d=window.matchMedia("(prefers-color-scheme: dark)");((h,x)=>{n(h==="system"?x?"dark":"light":h)})(u,d.matches);let f=h=>{n(x=>(localStorage.getItem("boltdocs-theme")||"system")==="system"?h.matches?"dark":"light":x)};return d.addEventListener("change",f),()=>d.removeEventListener("change",f)},[]),(0,be.useEffect)(()=>{if(!a)return;let l=window.matchMedia("(prefers-color-scheme: dark)").matches,u=t==="system"?l?"dark":"light":t;n(u);let d=document.documentElement;u==="light"?(d.classList.add("theme-light"),d.dataset.theme="light"):(d.classList.remove("theme-light"),d.dataset.theme="dark")},[t,a]);let c=l=>{o(l),localStorage.setItem("boltdocs-theme",l)};return(0,Qr.jsx)(Yr.Provider,{value:{theme:t,resolvedTheme:r,setTheme:c},children:e})}function De(){let e=(0,be.use)(Yr);if(e===void 0)throw new Error("useTheme must be used within a ThemeProvider");return e}var Dr=S(require("virtual:boltdocs-layout"));_t();s();var en=require("react"),tn=require("react-aria-components"),qt=require("react-router-dom"),rn=require("react/jsx-runtime");function on({children:e}){let t=(0,qt.useNavigate)();return(0,rn.jsx)(tn.RouterProvider,{navigate:(o,r)=>{(0,en.startTransition)(()=>{t(o,r)})},useHref:qt.useHref,children:e})}ge();s();var nn=require("react"),sn=require("react-router-dom");function an(){let{pathname:e,hash:t}=(0,sn.useLocation)();return(0,nn.useLayoutEffect)(()=>{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 l=o===window?0:o.getBoundingClientRect().top,p=i.getBoundingClientRect().top-l-80+r();n(p,"smooth");return}}n(0)},[e,t]),null}s();var ln=require("react-router-dom"),cn=S(require("virtual:boltdocs-layout")),tr=require("react/jsx-runtime");function mn(){return(0,tr.jsx)(cn.default,{children:(0,tr.jsx)(ln.Outlet,{})})}s();var fn=require("@mdx-js/react");s();var Kt=require("react"),un=require("react/jsx-runtime"),pn=(0,Kt.createContext)({});function et(){return(0,Kt.use)(pn)}function dn({components:e,children:t}){return(0,un.jsx)(pn.Provider,{value:e,children:t})}var or=require("react/jsx-runtime");function gn({Component:e}){let t=et();return(0,or.jsx)(fn.MDXProvider,{components:t,children:(0,or.jsx)(e,{})})}s();var ss=require("lucide-react");var Vr={};Yo(Vr,{Admonition:()=>ve,Badge:()=>po,Button:()=>Zt,Card:()=>fo,Cards:()=>uo,Caution:()=>Co,CodeBlock:()=>Pe,ComponentPreview:()=>Io,ComponentProps:()=>Bo,CopyMarkdown:()=>yt,Danger:()=>xo,Field:()=>ko,FileTree:()=>To,Image:()=>Ao,Important:()=>yo,InfoBox:()=>vo,Link:()=>So,List:()=>No,Note:()=>go,Tab:()=>lo,Table:()=>Lo,Tabs:()=>co,Tip:()=>bo,Video:()=>mo,Warning:()=>ho});s();s();Yt();w();var hn=require("react/jsx-runtime"),Zt=({className:e,variant:t,size:o,rounded:r,iconSize:n,disabled:a,...i})=>(0,hn.jsx)(Re,{className:m("group",Xt({variant:t,size:o,rounded:r,iconSize:n,disabled:a,className:e})),...i});s();var io=S(require("react-aria-components")),at=require("lucide-react");w();s();ge();s();var Qt=require("codesandbox/lib/api/define.js");function rr(e){let t=e.files||{},o=e.dependencies||{},r=e.devDependencies||{},n=e.title||"codesandbox-project",a=e.description||"Generic Sandbox",i={};for(let[c,l]of Object.entries(t)){let u=typeof l.content=="object"?JSON.stringify(l.content,null,2):l.content;i[c]={content:u,isBinary:l.isBinary??!1}}if(!i["package.json"]){let l=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||l,dependencies:o,devDependencies:r},null,2),isBinary:!1}}return i}function nr(e){let t=rr(e),o=(0,Qt.getParameters)({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 eo(e){if(typeof window>"u")return nr(e);let t=rr(e),o=(0,Qt.getParameters)({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=(c,l)=>{let u=document.createElement("input");u.type="hidden",u.name=c,u.value=l,n.appendChild(u)},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}}function xn(e){let t=rr(e),o=(0,Qt.getParameters)({files:t}),r=e.embed||{},n=new URLSearchParams({parameters:o,embed:"1"});return r.view&&n.set("view",r.view),r.theme&&n.set("theme",r.theme),r.hideNavigation&&n.set("hidenavigation","1"),e.entry&&n.set("file",`/${e.entry}`),{parameters:o,url:`https://codesandbox.io/api/v1/sandboxes/define?${n.toString()}`,options:e}}s();var vn=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}};var xe=require("react");function yn(e){let{title:t,sandbox:o}=e,[r,n]=(0,xe.useState)(!1),[a,i]=(0,xe.useState)(!1),[c,l]=(0,xe.useState)(!1),u=(0,xe.useRef)(null),d=F(),p=(0,xe.useCallback)(async()=>{let h=u.current?.textContent??"";vn(h),n(!0),setTimeout(()=>n(!1),2e3)},[]),f=(0,xe.useCallback)(()=>{let h=u.current?.textContent??"",x=d?.integrations?.sandbox?.config||{},v=typeof o=="object"?o:x,b=v.entry||"src/App.tsx";eo({title:t??"Code Snippet",...v,files:{...v.files,[b]:{content:h}}})},[t,d,o]);return(0,xe.useEffect)(()=>{let h=u.current?.textContent?.length??0;l(h>120)},[e.children,e.highlightedHtml]),{copied:r,isExpanded:a,setIsExpanded:i,isExpandable:c,preRef:u,handleCopy:p,handleSandbox:f,shouldTruncate:c&&!a}}ge();At();ar();var $=require("react/jsx-runtime"),na={ts:oo,tsx:tt,js:ro,jsx:tt,json:no,css:so,html:ao,md:ot,mdx:ot,bash:rt,sh:rt,yaml:nt,yml:nt};function Pe(e){let{children:t,sandbox:o,hideSandbox:r=!0,hideCopy:n=!1,highlightedHtml:a,title:i,"data-lang":c,plain:l=!1,...u}=e,f=!!F()?.integrations?.sandbox?.enable&&!r,h=e.lang||c||"",{copied:x,isExpanded:v,setIsExpanded:b,isExpandable:k,preRef:R,handleCopy:Q,handleSandbox:le,shouldTruncate:G}=yn(e),qe=na[h];return(0,$.jsxs)("div",{className:m("group relative overflow-hidden bg-(--color-code-bg)","contain-layout contain-paint",{"my-6 rounded-lg border border-border-subtle":!l,"[&>pre]:max-h-62.5 [&>pre]:overflow-hidden":G},e.className),children:[i&&(0,$.jsxs)("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:[qe?(0,$.jsx)(qe,{size:14}):(0,$.jsx)(at.File,{size:14,className:"opacity-60"}),(0,$.jsx)("span",{children:i})]}),(0,$.jsxs)("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:[f&&(0,$.jsx)(sr,{content:"Open in CodeSandbox",children:(0,$.jsx)(io.Button,{onPress:le,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:(0,$.jsx)(Pn,{size:20})})}),!n&&(0,$.jsx)(sr,{content:x?"Copied!":"Copy code",children:(0,$.jsx)(io.Button,{onPress:Q,className:m("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",x?"text-emerald-400":"text-text-muted hover:text-text-main"),"aria-label":"Copy code",children:x?(0,$.jsx)(at.Check,{size:20}):(0,$.jsx)(at.Copy,{size:20})})})]}),a?(0,$.jsx)("div",{ref:R,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}}):(0,$.jsx)("pre",{ref:R,className:"m-0! rounded-none! border-none! bg-inherit! font-mono text-[0.8125rem] leading-[1.7]",...u,children:t}),k&&(0,$.jsx)("div",{className:m(G?"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:(0,$.jsx)(io.Button,{onPress:()=>b(!v),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:v?"Show less":"Expand code"})})]})}s();var it=require("react"),He=S(require("react-aria-components"));s();var Be=require("react");function wn({initialIndex:e=0,tabs:t}){let o=t[e]?.props.disabled?t.findIndex(u=>!u.props.disabled):e,[r,n]=(0,Be.useState)(o===-1?0:o),a=(0,Be.useRef)([]),[i,c]=(0,Be.useState)({opacity:0,transform:"translateX(0)",width:0});(0,Be.useEffect)(()=>{let u=a.current[r];u&&c({opacity:1,width:u.offsetWidth,transform:`translateX(${u.offsetLeft}px)`})},[r,t]);let l=(0,Be.useCallback)(u=>{let d=0;if(u.key==="ArrowRight"?d=1:u.key==="ArrowLeft"&&(d=-1),d!==0){let p=(r+d+t.length)%t.length;for(;t[p].props.disabled&&p!==r;)p=(p+d+t.length)%t.length;p!==r&&!t[p].props.disabled&&(n(p),a.current[p]?.focus())}},[r,t]);return{active:r,setActive:n,tabRefs:a,indicatorStyle:i,handleKeyDown:l}}w();var ir=require("class-variance-authority"),ne=require("react/jsx-runtime"),sa=(0,ir.cva)("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"}}),aa=(0,ir.cva)("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 lo({children:e}){let t=typeof e=="string"?(0,ne.jsx)(Pe,{className:"language-bash",children:(0,ne.jsx)("code",{children:e.trim()})}):e;return(0,ne.jsx)("div",{className:"py-4",children:t})}function co({defaultIndex:e=0,children:t}){let o=(0,it.useMemo)(()=>it.Children.toArray(t).filter(c=>(0,it.isValidElement)(c)&&c.props?.label),[t]),{active:r,setActive:n,tabRefs:a,indicatorStyle:i}=wn({initialIndex:e,tabs:o});return(0,ne.jsx)("div",{className:"my-8 w-full group/tabs",children:(0,ne.jsxs)(He.Tabs,{selectedKey:r.toString(),onSelectionChange:c=>n(Number(c)),className:"w-full",children:[(0,ne.jsxs)(He.TabList,{"aria-label":"Content Tabs",className:m(sa()),children:[o.map((c,l)=>{let{label:u,icon:d,disabled:p}=c.props,f=l.toString();return(0,ne.jsxs)(He.Tab,{id:f,isDisabled:p,ref:h=>{a.current[l]=h},className:({isSelected:h,isDisabled:x})=>m(aa({isActive:h,isDisabled:x})),children:[!!d&&(0,ne.jsx)("span",{className:"shrink-0 [&>svg]:w-4 [&>svg]:h-4",children:d}),(0,ne.jsx)("span",{children:u})]},f)}),(0,ne.jsx)("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((c,l)=>(0,ne.jsx)(He.TabPanel,{id:l.toString(),children:o[l]},l))]})})}s();var lt=require("react"),Bt=require("react/jsx-runtime");function mo({src:e,poster:t,alt:o,children:r,controls:n,preload:a="metadata",...i}){let c=(0,lt.useRef)(null),[l,u]=(0,lt.useState)(!1);return(0,lt.useEffect)(()=>{let d=c.current;if(!d)return;let p=new IntersectionObserver(([f])=>{f.isIntersecting&&(u(!0),p.disconnect())},{rootMargin:"200px"});return p.observe(d),()=>p.disconnect()},[]),(0,Bt.jsx)("div",{ref:c,className:"my-6 overflow-hidden rounded-lg border border-border-subtle",children:l?(0,Bt.jsxs)("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."]}):(0,Bt.jsx)("div",{className:"aspect-video bg-bg-surface animate-pulse",role:"img","aria-label":o||"Video"})})}s();w();var Tn=require("class-variance-authority"),Ln=require("react/jsx-runtime"),ia=(0,Tn.cva)("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 po({variant:e="default",children:t,className:o="",...r}){return(0,Ln.jsx)("span",{className:m(ia({variant:e}),o),...r,children:t})}s();var It=require("react"),kn=S(require("react-aria-components"));w();var Sn=require("class-variance-authority"),se=require("react/jsx-runtime"),la=(0,Sn.cva)("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 uo({cols:e=3,children:t,className:o="",...r}){return(0,se.jsx)("div",{className:m(la({cols:e}),o),...r,children:t})}function fo({title:e,icon:t,href:o,children:r,className:n="",...a}){let i=(0,It.useRef)(null),c=(0,It.useRef)(null),l=(0,It.useCallback)(p=>{let f=i.current||c.current;if(!f)return;let{left:h,top:x}=f.getBoundingClientRect();f.style.setProperty("--x",`${p.clientX-h}px`),f.style.setProperty("--y",`${p.clientY-x}px`)},[]),u=(0,se.jsxs)(se.Fragment,{children:[(0,se.jsx)("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&&(0,se.jsx)("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}),(0,se.jsxs)("div",{className:"space-y-1.5",children:[e&&(0,se.jsx)("h3",{className:"text-sm font-bold text-text-main",children:e}),r&&(0,se.jsx)("div",{className:"text-sm text-text-muted leading-relaxed",children:r})]})]}),d=m("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?(0,se.jsx)(kn.Link,{ref:c,href:o,className:m(d,"no-underline cursor-pointer"),onMouseMove:l,...a,children:u}):(0,se.jsx)("div",{ref:i,role:"presentation",className:d,onMouseMove:l,...a,children:u})}s();var oe=require("lucide-react");w();var Bn=require("class-variance-authority"),D=require("react/jsx-runtime"),ca={note:(0,D.jsx)(oe.Bookmark,{size:18}),tip:(0,D.jsx)(oe.Lightbulb,{size:18}),info:(0,D.jsx)(oe.Info,{size:18}),warning:(0,D.jsx)(oe.AlertTriangle,{size:18}),danger:(0,D.jsx)(oe.ShieldAlert,{size:18}),important:(0,D.jsx)(oe.Flame,{size:18}),caution:(0,D.jsx)(oe.Zap,{size:18})},ma={note:"Note",tip:"Tip",info:"Info",warning:"Warning",danger:"Danger",important:"Important",caution:"Caution"},An=(0,Bn.cva)("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 ve({type:e="note",title:t,children:o,className:r="",...n}){return(0,D.jsxs)("div",{className:m(An({type:e}),r),role:e==="warning"||e==="danger"?"alert":"note",...n,children:[(0,D.jsxs)("div",{className:"flex items-center flex-row gap-2 mb-2",children:[(0,D.jsx)("span",{className:m("shrink-0",An({type:e})),children:ca[e]}),(0,D.jsx)("span",{className:"text-sm font-bold tracking-tight text-text-main",children:t||ma[e]})]}),(0,D.jsx)("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 [&>p]:mb-2 [&>p:last-child]:mb-0",children:o})]})}var go=e=>(0,D.jsx)(ve,{type:"note",...e}),bo=e=>(0,D.jsx)(ve,{type:"tip",...e}),ho=e=>(0,D.jsx)(ve,{type:"warning",...e}),xo=e=>(0,D.jsx)(ve,{type:"danger",...e}),vo=e=>(0,D.jsx)(ve,{type:"info",...e}),yo=e=>(0,D.jsx)(ve,{type:"important",...e}),Co=e=>(0,D.jsx)(ve,{type:"caution",...e});s();var Ro=require("react"),ct=require("lucide-react");w();var Po=require("class-variance-authority"),ye=require("react/jsx-runtime"),pa=(0,Po.cva)("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}}),da=(0,Po.cva)("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}}),ua=(0,Po.cva)("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 fa({icon:e,children:t,variant:o,dense:r}){return(0,ye.jsxs)("li",{className:m(da({variant:o,dense:r})),children:[e&&(0,ye.jsx)("span",{className:m(ua({variant:o==="bubble"?"bubble":"default"})),children:e}),(0,ye.jsx)("div",{className:"flex-1 text-text-muted group-hover:text-text-main transition-colors",children:t})]})}var ga={checked:e=>(0,ye.jsx)(ct.Check,{size:14,className:m("text-emerald-500 shrink-0",e)}),arrow:e=>(0,ye.jsx)(ct.ChevronRight,{size:14,className:m("text-primary-400 shrink-0",e)}),bubble:e=>(0,ye.jsx)(ct.Circle,{size:6,fill:"currentColor",className:m("text-primary-500 shrink-0",e)}),default:()=>null,number:()=>null};function No({variant:e="default",cols:t=1,dense:o=!1,children:r,className:n,...a}){let i=t!==void 0&&Number(t)>1,c=ga[e],l=pa({variant:e,cols:t,dense:o,isGrid:i,className:n}),u=e==="number"?"ol":"ul";return e==="default"||e==="number"?(0,ye.jsx)(u,{className:l,...a,children:r}):(0,ye.jsx)("ul",{className:l,...a,children:Ro.Children.map(r,d=>{if(!(0,Ro.isValidElement)(d))return d;let p=d,f=p.type==="li"?p.props.children:p.props.children||d;return(0,ye.jsx)(fa,{icon:c(),variant:e,dense:o,children:f})})})}s();var Ne=require("react"),we=S(require("react-aria-components")),pe=require("lucide-react");w();At();var E=require("react/jsx-runtime"),mt=16,Mt=2,ba={ts:oo,tsx:tt,js:ro,jsx:tt,json:no,css:so,html:ao,md:ot,mdx:ot,bash:rt,sh:rt,yaml:nt,yml:nt},lr={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 mr(e){return typeof e=="string"?e:typeof e=="number"?e.toString():Array.isArray(e)?e.map(mr).join(""):(0,Ne.isValidElement)(e)&&e.props&&typeof e.props=="object"&&"children"in e.props?mr(e.props.children):""}function ha(e,t){let o=e.toLowerCase(),r="shrink-0 transition-colors duration-200";if(t)return(0,E.jsx)(pe.Folder,{size:mt,strokeWidth:Mt,className:m(r,"text-primary-400"),fill:"currentColor",fillOpacity:.15});let n=o.split(".").pop()||"",a=ba[n];if(a)return(0,E.jsx)(a,{size:mt});let i=m(r,"text-text-dim group-hover:text-text-main");return lr.CODE.test(o)?(0,E.jsx)(pe.FileCode,{size:mt,strokeWidth:Mt,className:i}):lr.TEXT.test(o)?(0,E.jsx)(pe.FileText,{size:mt,strokeWidth:Mt,className:i}):lr.IMAGE.test(o)?(0,E.jsx)(pe.FileImage,{size:mt,strokeWidth:Mt,className:i}):(0,E.jsx)(pe.File,{size:mt,strokeWidth:Mt,className:i})}function cr(e,t){if(!(0,Ne.isValidElement)(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 xa(e){let t=e.match(/\s+(\/\/|#)\s+(.*)$/);return t?{name:e.slice(0,t.index).trim(),comment:t[2]}:{name:e.trim()}}function wo(e,t="root"){if(!(0,Ne.isValidElement)(e))return[];let o=[];if(cr(e,"ul"))return Ne.Children.forEach(e.props.children,(r,n)=>{o.push(...wo(r,`${t}-${n}`))}),o;if(cr(e,"li")){let r=Ne.Children.toArray(e.props.children),n=r.findIndex(x=>cr(x,"ul")),a=n!==-1,i=a?r.slice(0,n):r,c=a?r.slice(n):[],l=mr(i),{name:u,comment:d}=xa(l),p=u.endsWith("/"),f=p?u.slice(0,-1):u,h=a||p;return o.push({id:`${t}-${f}`,name:f,comment:d,isFolder:h,children:a?wo(c[0],`${t}-${f}`):void 0}),o}return e.props&&typeof e.props=="object"&&"children"in e.props&&Ne.Children.forEach(e.props.children,(r,n)=>{o.push(...wo(r,`${t}-${n}`))}),o}function In({item:e}){return(0,E.jsxs)(we.TreeItem,{id:e.id,textValue:e.name,className:"outline-none group focus-visible:ring-2 focus-visible:ring-primary-500/30 rounded-md",children:[(0,E.jsx)(we.TreeItemContent,{children:({isExpanded:t,hasChildItems:o})=>(0,E.jsxs)("div",{className:"flex items-center gap-2 py-1 px-1.5 rounded-md transition-colors hover:bg-primary-500/5 cursor-pointer",children:[(0,E.jsx)("div",{style:{width:"calc((var(--tree-item-level) - 1) * 1rem)"},className:"shrink-0"}),o?(0,E.jsx)(we.Button,{slot:"chevron",className:"outline-none text-text-dim hover:text-primary-400 p-0.5 rounded transition-colors",children:(0,E.jsx)(pe.ChevronRight,{size:14,strokeWidth:3,className:m("transition-transform duration-200",t&&"rotate-90")})}):(0,E.jsx)("div",{className:"w-[18px]"}),ha(e.name,e.isFolder),(0,E.jsx)("span",{className:m("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&&(0,E.jsxs)("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&&(0,E.jsx)(we.Collection,{items:e.children,children:t=>(0,E.jsx)(In,{item:t})})]})}function To({children:e}){let t=(0,Ne.useMemo)(()=>wo(e),[e]);return(0,E.jsx)("div",{className:"my-8",children:(0,E.jsx)(we.Tree,{items:t,"aria-label":"File Tree",className:m("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=>(0,E.jsx)(In,{item:o})})})}s();var Et=S(require("react-aria-components"));s();var pt=require("react");function Mn({data:e,sortable:t=!1,paginated:o=!1,pageSize:r=10}){let[n,a]=(0,pt.useState)(null),[i,c]=(0,pt.useState)(1),l=(0,pt.useMemo)(()=>{if(!e)return[];let f=[...e];return t&&n!==null&&f.sort((h,x)=>{let v=h[n.key],b=x[n.key],k=typeof v=="string"?v:"",R=typeof b=="string"?b:"";return k<R?n.direction==="asc"?-1:1:k>R?n.direction==="asc"?1:-1:0}),f},[e,n,t]),u=Math.ceil(l.length/r),d=(0,pt.useMemo)(()=>{if(!o)return l;let f=(i-1)*r;return l.slice(f,f+r)},[l,o,i,r]);return{sortConfig:n,currentPage:i,setCurrentPage:c,totalPages:u,paginatedData:d,requestSort:f=>{if(!t)return;let h="asc";n&&n.key===f&&n.direction==="asc"&&(h="desc"),a({key:f,direction:h})}}}var ae=require("lucide-react");w();var T=require("react/jsx-runtime");function Lo({headers:e,data:t,children:o,className:r="",sortable:n=!1,paginated:a=!1,pageSize:i=10}){let{sortConfig:c,currentPage:l,setCurrentPage:u,totalPages:d,paginatedData:p,requestSort:f}=Mn({data:t,sortable:n,paginated:a,pageSize:i}),h=v=>n?c?.key!==v?(0,T.jsx)(ae.ChevronDown,{size:14,className:"ml-1 opacity-30"}):c.direction==="asc"?(0,T.jsx)(ae.ChevronUp,{size:14,className:"ml-1 text-primary-400"}):(0,T.jsx)(ae.ChevronDown,{size:14,className:"ml-1 text-primary-400"}):null,x=o||(0,T.jsxs)(T.Fragment,{children:[e&&(0,T.jsx)("thead",{children:(0,T.jsx)("tr",{children:e.map((v,b)=>(0,T.jsx)("th",{onClick:()=>f(b),className:m("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:(0,T.jsxs)("div",{className:"flex items-center",children:[v,h(b)]})},b))})}),p&&(0,T.jsx)("tbody",{children:p.map((v,b)=>(0,T.jsx)("tr",{className:"transition-colors hover:bg-bg-surface",children:v.map((k,R)=>(0,T.jsx)("td",{className:"px-3 py-2 border-b border-border-subtle text-sm text-text-muted",children:k},R))},b))})]});return(0,T.jsxs)("div",{className:m("my-6 rounded-lg border border-border-subtle overflow-hidden",r),children:[(0,T.jsx)("div",{className:"overflow-x-auto",children:(0,T.jsx)("table",{className:"w-full border-collapse text-sm",children:x})}),a&&d>1&&(0,T.jsxs)("div",{className:"flex items-center justify-between border-t border-border-subtle px-4 py-3",children:[(0,T.jsxs)("span",{className:"text-xs text-text-muted",children:["Page ",l," of ",d]}),(0,T.jsxs)("div",{className:"flex items-center gap-1",children:[(0,T.jsx)(Et.Button,{onPress:()=>u(1),isDisabled:l===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:(0,T.jsx)(ae.ChevronsLeft,{size:16})}),(0,T.jsx)(Et.Button,{onPress:()=>u(v=>Math.max(v-1,1)),isDisabled:l===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:(0,T.jsx)(ae.ChevronLeft,{size:16})}),(0,T.jsx)(Et.Button,{onPress:()=>u(v=>Math.min(v+1,d)),isDisabled:l===d,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:(0,T.jsx)(ae.ChevronRight,{size:16})}),(0,T.jsx)(Et.Button,{onPress:()=>u(d),isDisabled:l===d,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:(0,T.jsx)(ae.ChevronsRight,{size:16})})]})]})]})}s();w();var ie=require("react/jsx-runtime");function ko({name:e,type:t,defaultValue:o,required:r=!1,children:n,id:a,className:i=""}){return(0,ie.jsxs)("article",{className:m("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:[(0,ie.jsxs)("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between mb-4",children:[(0,ie.jsxs)("div",{className:"flex flex-wrap items-center gap-2.5",children:[(0,ie.jsx)("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&&(0,ie.jsx)("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&&(0,ie.jsxs)("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:[(0,ie.jsx)("span",{className:"h-1 w-1 rounded-full bg-red-400 animate-pulse"}),"Required"]})]}),o&&(0,ie.jsxs)("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:[(0,ie.jsx)("span",{className:"font-semibold opacity-60 uppercase tracking-tighter",children:"Default"}),(0,ie.jsx)("code",{className:"font-mono text-text-main font-medium",children:o})]})]}),(0,ie.jsx)("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 selection:bg-primary-500/30",children:n})]})}s();Qe();w();var En=require("react/jsx-runtime");function So({to:e,children:t,className:o="",...r}){let n=e&&(e.startsWith("http://")||e.startsWith("https://")||e.startsWith("//")),a=m("text-blue-600 hover:text-blue-800 hover:underline cursor-pointer",o);return(0,En.jsx)(K,{href:e,className:a,target:n?"_blank":void 0,rel:n?"noopener noreferrer":void 0,...r,children:t})}s();var On=require("react/jsx-runtime");function Ao({src:e,alt:t,theme:o,...r}){let{theme:n}=De();return o&&o!==n?null:(0,On.jsx)("img",{src:e,alt:t||"",...r})}s();w();var M=require("react/jsx-runtime");function Bo({title:e,props:t,className:o=""}){return(0,M.jsxs)("div",{className:m("my-6",o),children:[e&&(0,M.jsx)("h3",{className:"text-base font-bold text-text-main mb-3",children:e}),(0,M.jsx)("div",{className:"overflow-x-auto rounded-lg border border-border-subtle",children:(0,M.jsxs)("table",{className:"w-full border-collapse text-sm",children:[(0,M.jsx)("thead",{children:(0,M.jsxs)("tr",{children:[(0,M.jsx)("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"}),(0,M.jsx)("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"}),(0,M.jsx)("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"}),(0,M.jsx)("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"})]})}),(0,M.jsx)("tbody",{children:t.map((r,n)=>(0,M.jsxs)("tr",{className:"transition-colors hover:bg-bg-surface",children:[(0,M.jsxs)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:[(0,M.jsx)("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&&(0,M.jsx)("span",{className:"ml-1 text-red-400 font-bold",children:"*"})]}),(0,M.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:(0,M.jsx)("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-text-muted",children:r.type})}),(0,M.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:r.defaultValue?(0,M.jsx)("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-primary-400",children:r.defaultValue}):(0,M.jsx)("span",{className:"text-text-dim",children:"\u2014"})}),(0,M.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle text-text-muted",children:r.description})]},`${r.name}-${n}`))})]})})]})}s();s();var pr=require("react");function Vn(e){let{code:t,children:o,preview:r}=e,n=(0,pr.useMemo)(()=>(t??(typeof o=="string"?o:"")).trim(),[t,o]),a=(0,pr.useMemo)(()=>r??(typeof o!="string"?o:null),[r,o]);return{initialCode:n,previewElement:a}}var dt=require("react/jsx-runtime");function Io(e){let{highlightedHtml:t,hideCode:o=!1,hideSandbox:r=!1,hideCopy:n=!1,sandboxOptions:a={}}=e,{initialCode:i,previewElement:c}=Vn(e);return(0,dt.jsxs)("div",{className:"my-6 overflow-hidden rounded-xl border border-border-subtle",children:[(0,dt.jsx)("div",{className:"flex items-center justify-center p-8 bg-bg-surface",children:c}),!o&&(0,dt.jsx)("div",{className:"border-t border-border-subtle",children:(0,dt.jsx)(Pe,{hideSandbox:r,hideCopy:n,title:a.title,lang:"tsx",highlightedHtml:t,plain:!0,children:i})})]})}s();var ns=require("react"),Me=require("lucide-react");Oo();var W=require("react/jsx-runtime"),si=e=>{let[t,o]=(0,ns.useState)(!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 yt({content:e,mdxRaw:t,config:o}){let r=t||e||"",{copied:n,handleCopy:a,handleOpenRaw:i}=si(r),c=o!==!1,l=typeof o=="object"&&o.text||"Copy Markdown";return!c||!r?null:(0,W.jsx)("div",{className:"relative inline-flex z-100 flex-shrink-0 w-max translate-y-0 active:translate-y-px transition-transform duration-200",children:(0,W.jsxs)(es,{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:[(0,W.jsx)(Re,{variant:"ghost",onPress:a,icon:n?(0,W.jsx)(Me.Check,{size:16}):(0,W.jsx)(Me.Copy,{size:16}),iconPosition:"left",className:m("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!":l}),(0,W.jsxs)(Dt,{placement:"bottom end",children:[(0,W.jsx)(Re,{variant:"ghost",isIconOnly:!0,icon:(0,W.jsx)(Me.ChevronDown,{size:14}),className:m("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")}),(0,W.jsxs)(Ht,{className:"w-52",children:[(0,W.jsxs)(We,{onAction:a,children:[(0,W.jsx)(Me.Copy,{size:16,className:"size-4 mt-0.5 text-text-muted group-hover:text-primary-500"}),(0,W.jsx)("span",{className:"font-medium text-[0.8125rem]",children:"Copy Markdown"})]}),(0,W.jsxs)(We,{onAction:i,children:[(0,W.jsx)(Me.ExternalLink,{size:16,className:"size-4 mt-0.5 text-text-muted group-hover:text-primary-500"}),(0,W.jsx)("span",{className:"font-medium text-[0.8125rem]",children:"View as Markdown"})]})]})]})]})})}s();w();Or();var I=require("react/jsx-runtime");function $o(){return(0,I.jsx)("div",{className:m("w-full h-full relative overflow-y-auto transition-opacity duration-300 animate-fade-in"),children:(0,I.jsxs)("div",{className:"mx-auto max-w-(--spacing-content-max) px-4 py-8 space-y-10",children:[(0,I.jsxs)("div",{className:"flex gap-2",children:[(0,I.jsx)(U,{className:"h-3 w-16"}),(0,I.jsx)(U,{className:"h-3 w-24"})]}),(0,I.jsx)(U,{className:"h-10 w-[60%] sm:h-12"}),(0,I.jsxs)("div",{className:"space-y-3",children:[(0,I.jsx)(U,{className:"h-4 w-full"}),(0,I.jsx)(U,{className:"h-4 w-[95%]"}),(0,I.jsx)(U,{className:"h-4 w-[40%]"})]}),(0,I.jsxs)("div",{className:"space-y-6 pt-4",children:[(0,I.jsx)(U,{className:"h-7 w-32"}),(0,I.jsxs)("div",{className:"space-y-3",children:[(0,I.jsx)(U,{className:"h-4 w-full"}),(0,I.jsx)(U,{className:"h-4 w-[98%]"}),(0,I.jsx)(U,{className:"h-4 w-[92%]"}),(0,I.jsx)(U,{className:"h-4 w-[60%]"})]})]}),(0,I.jsx)(U,{className:"h-32 w-full rounded-lg bg-bg-muted/50"}),(0,I.jsxs)("div",{className:"space-y-6 pt-4",children:[(0,I.jsx)(U,{className:"h-7 w-48"}),(0,I.jsxs)("div",{className:"space-y-3",children:[(0,I.jsx)(U,{className:"h-4 w-full"}),(0,I.jsx)(U,{className:"h-4 w-[85%]"})]})]})]})})}var ue=require("react/jsx-runtime"),Ct=({level:e,id:t,children:o,...r})=>{let n=`h${e}`;return(0,ue.jsxs)(n,{id:t,...r,className:"boltdocs-heading",children:[o,t&&(0,ue.jsx)("a",{href:`#${t}`,className:"header-anchor","aria-label":"Anchor",children:(0,ue.jsx)(ss.Link,{size:16})})]})},as={...Vr,Loading:$o,h1:e=>(0,ue.jsx)(Ct,{level:1,...e}),h2:e=>(0,ue.jsx)(Ct,{level:2,...e}),h3:e=>(0,ue.jsx)(Ct,{level:3,...e}),h4:e=>(0,ue.jsx)(Ct,{level:4,...e}),h5:e=>(0,ue.jsx)(Ct,{level:5,...e}),h6:e=>(0,ue.jsx)(Ct,{level:6,...e}),pre:e=>(0,ue.jsx)(Pe,{...e,children:e.children})};var ls=S(require("virtual:boltdocs-mdx-components"));ee();var cs=require("react-router-dom");Lt();var P=require("react/jsx-runtime");function ai(){let{currentLocale:e,config:t}=A();return(0,J.useEffect)(()=>{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 ii(){let e=(0,cs.useLocation)(),{config:t}=A(),o=re(i=>i.setLocale),r=re(i=>i.setVersion),n=re(i=>i.currentLocale),a=re(i=>i.currentVersion);return(0,J.useEffect)(()=>{let i=e.pathname.split("/").filter(Boolean),c=0,l=t.versions?.defaultVersion,u=t.i18n?.defaultLocale;if(i[c]==="docs"&&c++,t.versions&&i.length>c){let d=t.versions.versions.find(p=>p.path===i[c]);d&&(l=d.path,c++)}t.i18n&&i.length>c&&t.i18n.locales[i[c]]?u=i[c]:t.i18n&&i.length===0&&(u=n||t.i18n.defaultLocale),u!==n&&o(u),l!==a&&r(l)},[e.pathname,t,o,r,n,a]),null}function li({initialRoutes:e,initialConfig:t,docsDirName:o,modules:r,hot:n,homePage:a,externalPages:i,externalLayout:c,components:l={}}){let[u,d]=(0,J.useState)(e),[p,f]=(0,J.useState)(t),h=i||{},x=c||Dr.default,v=(0,J.useMemo)(()=>u.filter(R=>!(a&&(R.path==="/"||R.path===""))&&!h[R.path===""?"/":R.path]).map(R=>{let Q=Object.keys(r).find(G=>G===`/${o}/${R.filePath}`||G.endsWith(`/${o}/${R.filePath}`)||G.endsWith(`/${o}\\${R.filePath.replace(/\\/g,"/")}`)),le=Q?r[Q]:null;return{...R,Component:J.default.lazy(async()=>le?await le():{default:St})}}),[u,r,o,a,h]);(0,J.useEffect)(()=>{n&&(n.on("boltdocs:routes-update",R=>{d(R)}),n.on("boltdocs:config-update",R=>{f(R)}))},[n]);let b=(0,J.useMemo)(()=>({...as,...ls.default,...l}),[l]),k=b.Loading;return(0,P.jsx)(Zr,{children:(0,P.jsx)(dn,{components:b,children:(0,P.jsx)(Zo.Provider,{value:p,children:(0,P.jsx)(on,{children:(0,P.jsxs)(Wr,{routes:u,modules:r,children:[(0,P.jsx)(an,{}),(0,P.jsx)(ii,{}),(0,P.jsx)(ai,{}),(0,P.jsxs)(fe.Routes,{children:[(0,P.jsx)(fe.Route,{element:(0,P.jsx)(mn,{}),children:v.map(R=>(0,P.jsx)(fe.Route,{path:R.path===""?"/":R.path,element:(0,P.jsx)(J.default.Suspense,{fallback:(0,P.jsx)(k,{}),children:(0,P.jsx)(gn,{Component:R.Component})})},R.path))},"docs-layout"),a&&(0,P.jsxs)(P.Fragment,{children:[(0,P.jsx)(fe.Route,{path:"/",element:(0,P.jsx)(x,{children:(0,P.jsx)(a,{})})}),p.i18n&&Object.keys(p.i18n.locales).map(R=>(0,P.jsx)(fe.Route,{path:`/${R}`,element:(0,P.jsx)(x,{children:(0,P.jsx)(a,{})})},`home-${R}`))]}),Object.entries(h).map(([R,Q])=>{let le=R==="/"?"":R;return(0,P.jsxs)(J.default.Fragment,{children:[(0,P.jsx)(fe.Route,{path:R,element:(0,P.jsx)(x,{children:(0,P.jsx)(Q,{})})}),p.i18n&&Object.keys(p.i18n.locales).map(G=>(0,P.jsx)(fe.Route,{path:`/${G}${le}`,element:(0,P.jsx)(x,{children:(0,P.jsx)(Q,{})})},`${R}-${G}`))]},R)}),(0,P.jsx)(fe.Route,{path:"*",element:(0,P.jsx)(Dr.default,{children:(0,P.jsx)(St,{})})})]})]})})})})})}function ms(e){let{target:t,routes:o,docsDirName:r,config:n,modules:a,hot:i,homePage:c,externalPages:l,externalLayout:u,components:d}=e,p=document.querySelector(t);if(!p)throw new Error(`[boltdocs] Mount target "${t}" not found in document.`);let f=(0,P.jsx)(J.default.StrictMode,{children:(0,P.jsx)(fe.BrowserRouter,{children:(0,P.jsx)(li,{initialRoutes:o,initialConfig:n,docsDirName:r,modules:a,hot:i,homePage:c,externalPages:l,externalLayout:u,components:d})})});p.innerHTML="",is.default.createRoot(p).render(f)}ge();ee();s();w();s();s();var ps=require("react-router-dom");ge();s();function Ge(e,t){return e?typeof e=="string"?e:t&&e[t]?e[t]:Object.values(e)[0]||"":""}ee();function ds(){let e=F(),{theme:t}=De(),o=(0,ps.useLocation)(),{currentLocale:r}=A(),n=e.theme||{},a=Ge(n.title,r)||"Boltdocs",i=n.navbar||[],c=n.socialLinks||[],l=n.githubRepo,u=i.map(x=>{let v=x.href||x.to||x.link||"",b=k=>{let R=o.pathname;if(R===k)return!0;if(!k||k==="/")return R==="/";let Q=qe=>{let ce=qe.split("/").filter(Boolean),Ke=0;return e.i18n?.locales&&ce[Ke]&&e.i18n.locales[ce[Ke]]&&Ke++,e.versions?.versions&&ce[Ke]&&e.versions.versions.some(Ks=>Ks.path===ce[Ke])&&Ke++,ce.slice(Ke)},le=Q(k),G=Q(R);return le.length===0?G.length===0:G.length<le.length?!1:le.every((qe,ce)=>G[ce]===qe)};return{label:Ge(x.label||x.text,r),href:v,active:b(v),to:v.startsWith("http")||v.startsWith("//")?"external":void 0}}),d=n.logo,p=d?typeof d=="string"?d:t==="dark"?d.dark:d.light:null,f={alt:(d&&typeof d=="object"?d.alt:void 0)||a,width:d&&typeof d=="object"?d.width:void 0,height:d&&typeof d=="object"?d.height:void 0},h=l?`https://github.com/${l}`:null;return{links:u,title:a,logo:p,logoProps:f,github:h,social:c,config:e,theme:t}}s();var us=require("react-router-dom");ge();function fs(e){let t=F(),o=(0,us.useLocation)(),r=p=>p.endsWith("/")&&p.length>1?p.slice(0,-1):p,n=r(o.pathname),a=e.find(p=>r(p.path)===n),i=a?.tab?.toLowerCase(),c=i?e.filter(p=>!p.tab||p.tab.toLowerCase()===i):e,l=[],u=new Map;for(let p of c)p.group?(u.has(p.group)||u.set(p.group,{slug:p.group,title:p.groupTitle||p.group,routes:[],icon:p.groupIcon}),u.get(p.group).routes.push(p)):l.push(p);return{groups:Array.from(u.values()),ungrouped:l,activeRoute:a,activePath:n,config:t}}zr();s();var hs=require("react");function xs(e=[]){let[t,o]=(0,hs.useState)(null);return{headings:e,activeId:t,setActiveId:o}}s();var vs=require("react-router-dom"),Rt=require("react");function ys(e=[],t=[]){let o=(0,vs.useLocation)(),r=(0,Rt.useRef)([]),[n,a]=(0,Rt.useState)({opacity:0,transform:"translateX(0) scaleX(0)",width:0}),c=t.find(d=>d.path===o.pathname)?.tab?.toLowerCase(),l=e.findIndex(d=>d.id.toLowerCase()===c),u=l===-1?0:l;return(0,Rt.useEffect)(()=>{let d=r.current[u];d&&a({opacity:1,width:d.offsetWidth,transform:`translateX(${d.offsetLeft}px)`})},[u,e.length,o.pathname]),{tabs:e,activeIndex:u,indicatorStyle:n,tabRefs:r,activeTabId:c}}s();var Cs=require("react-router-dom");s();function je(e,t,o){let r=e;return t&&(r===t||r.startsWith(t+"/"))&&(r=r===t?"index.md":r.slice(t.length+1)),o&&(r===o||r.startsWith(o+"/"))&&(r=r===o?"index.md":r.slice(o.length+1)),r}ee();Lt();function Rs(){let e=(0,Cs.useNavigate)(),t=A(),{allRoutes:o,currentRoute:r,currentVersion:n,currentLocale:a,config:i}=t,c=i.versions,l=re(p=>p.setVersion),u=p=>{if(!c||p===n)return;l(p);let f=`/docs/${p}`;if(r){let h=je(r.filePath,r.version,r.locale),x=o.find(v=>je(v.filePath,v.version,v.locale)===h&&(v.version||c.defaultVersion)===p&&(a?v.locale===a:!v.locale));if(x)f=x.path;else{let v=o.find(b=>je(b.filePath,b.version,b.locale)==="index.md"&&(b.version||c.defaultVersion)===p&&(a?b.locale===a:!b.locale));f=v?v.path:`/docs/${p}${a?`/${a}`:""}`}}e(f)},d=t.availableVersions.map(p=>({...p,label:p.label,value:p.key}));return{currentVersion:n,currentVersionLabel:t.currentVersionLabel,availableVersions:d,handleVersionChange:u}}s();var Ps=require("react-router-dom");ee();Lt();function Ns(){let e=(0,Ps.useNavigate)(),t=A(),{allRoutes:o,currentRoute:r,currentLocale:n,config:a}=t,i=a.i18n,c=re(f=>f.setLocale),l=f=>{if(!i||f===n)return;c(f);let h="/";if(r){let x=je(r.filePath,r.version,r.locale),v=o.find(b=>je(b.filePath,b.version,b.locale)===x&&(b.locale||i.defaultLocale)===f&&b.version===r.version);if(v)h=v.path;else{let b=o.find(k=>je(k.filePath,k.version,k.locale)==="index.md"&&(k.locale||i.defaultLocale)===f&&k.version===r.version);h=b?b.path:f===i.defaultLocale?r.version?`/${r.version}`:"/":r.version?`/${r.version}/${f}`:`/${f}`}}else{let x=o.find(v=>(v.filePath==="index.mdx"||v.filePath==="index.md")&&(v.locale||i.defaultLocale)===f&&!v.version);x?h=x.path:h=f===i.defaultLocale?"/":`/${f}`}e(h)},d=a.i18n?.localeConfigs?.[n]?.label||a.i18n?.locales[n]||n,p=a.i18n?Object.entries(a.i18n.locales).map(([f,h])=>{let x=a.i18n?.localeConfigs?.[f];return{key:f,label:x?.label||h,value:f,isCurrent:f===n}}):[];return{currentLocale:n,currentLocaleLabel:d,availableLocales:p,handleLocaleChange:l}}s();var ws=require("react-router-dom");ee();function Ts(){let{routes:e,currentRoute:t}=A(),o=(0,ws.useLocation)();if(!t)return{prevPage:null,nextPage:null,currentRoute:null};let r=t.tab?.toLowerCase(),n=r?e.filter(l=>l.tab?.toLowerCase()===r):e.filter(l=>!l.tab),a=n.findIndex(l=>l.path===o.pathname),i=a>0?n[a-1]:null,c=a!==-1&&a<n.length-1?n[a+1]:null;return{prevPage:i,nextPage:c,currentRoute:t}}s();ee();function Ls(){let{currentRoute:e}=A(),t=[];return e&&(e.groupTitle&&t.push({label:e.groupTitle}),t.push({label:e.title,href:e.path})),{crumbs:t,activeRoute:e}}ee();Ut();s();var ks=require("react-router-dom"),Ss=()=>(0,ks.useLocation)();var Je=require("react/jsx-runtime");function ci({children:e,className:t,style:o}){return(0,Je.jsx)("div",{className:m("h-screen flex flex-col overflow-hidden bg-bg-main text-text-main",t),style:o,children:e})}function mi({children:e,className:t,style:o}){return(0,Je.jsx)("div",{className:m("mx-auto flex flex-1 w-full max-w-(--breakpoint-3xl) bg-bg-main overflow-hidden",t),style:o,children:e})}function pi({children:e,className:t,style:o}){return(0,Je.jsx)("main",{className:m("boltdocs-content flex-1 min-w-0 overflow-y-auto","contain-layout",t),style:o,children:e})}function di({children:e,className:t,style:o}){let{pathname:r}=Ss();return(0,Je.jsx)("div",{className:m("boltdocs-page mx-auto pt-4 pb-20 px-4 sm:px-8",{"max-w-content-max":r.includes("/docs/")},t),style:o,children:e})}function ui({children:e,className:t,style:o}){return(0,Je.jsx)("div",{className:m("flex items-center justify-between mb-10",t),style:o,children:e})}function fi({children:e,className:t,style:o}){return(0,Je.jsx)("div",{className:m("mt-20",t),style:o,children:e})}var Ue=Object.assign(ci,{Body:mi,Content:pi,ContentMdx:di,ContentHeader:ui,ContentFooter:fi});s();s();var _o=require("react");ee();Eo();s();var Fo=require("react"),Ee=require("lucide-react");var As=require("react-aria-components");zo();var q=require("react/jsx-runtime");function Bs(){let{theme:e,setTheme:t}=De(),[o,r]=(0,Fo.useState)(!1);return(0,Fo.useEffect)(()=>{r(!0)},[]),o?(0,q.jsxs)(Dt,{placement:"bottom right",children:[(0,q.jsx)(As.Button,{className:"flex h-9 w-9 items-center justify-center rounded-md text-text-muted transition-colors hover:bg-bg-surface hover:text-text-main outline-none focus-visible:ring-2 focus-visible:ring-primary-500","aria-label":"Selection theme",children:(0,q.jsx)(e==="system"?Ee.Monitor:e==="dark"?Ee.Moon:Ee.Sun,{size:20,className:"animate-in fade-in zoom-in duration-300"})}),(0,q.jsxs)(Ht,{selectionMode:"single",selectedKeys:[e],onSelectionChange:a=>{let i=Array.from(a)[0];t(i)},children:[(0,q.jsxs)(We,{id:"light",children:[(0,q.jsx)(Ee.Sun,{size:16}),(0,q.jsx)("span",{children:"Light"})]}),(0,q.jsxs)(We,{id:"dark",children:[(0,q.jsx)(Ee.Moon,{size:16}),(0,q.jsx)("span",{children:"Dark"})]}),(0,q.jsxs)(We,{id:"system",children:[(0,q.jsx)(Ee.Monitor,{size:16}),(0,q.jsx)("span",{children:"System"})]})]})]}):(0,q.jsx)("div",{className:"h-9 w-9"})}s();var Wo=require("react");s();var gi="https://api.github.com";async function Is(e,t,o=gi){let r=new Headers;t&&r.append("authorization",t);let a=await(await fetch(`${o}/repos/${e}`,{headers:r})).json();return a.stargazers_count!==void 0?bi(a.stargazers_count):"0"}var bi=e=>Intl.NumberFormat("en",{notation:"compact",compactDisplay:"short"}).format(e);At();var zt=require("react/jsx-runtime");function Ms({repo:e}){let[t,o]=(0,Wo.useState)(null);return(0,Wo.useEffect)(()=>{e&&Is(e).then(r=>o(r)).catch(()=>o("0"))},[e]),(0,zt.jsxs)("a",{href:`https://github.com/${e}`,target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center gap-2 rounded-md border border-border-subtle bg-bg-surface px-2.5 py-1.5 text-xs font-medium text-text-muted transition-all hover:bg-bg-main hover:border-border-strong hover:text-text-main",children:[(0,zt.jsx)(to,{className:"h-4 w-4"}),t&&(0,zt.jsx)("span",{className:"tabular-nums",children:t})]})}s();Lr();Qe();var hi=S(require("lucide-react"));ee();var Le=require("react/jsx-runtime");function Es({tabs:e,routes:t}){let{currentLocale:o}=A(),{indicatorStyle:r,tabRefs:n,activeIndex:a}=ys(e,t),i=c=>{if(!c)return null;if(c.trim().startsWith("<svg"))return(0,Le.jsx)("span",{className:"h-4 w-4",dangerouslySetInnerHTML:{__html:c}});let l=hi[c];return l?(0,Le.jsx)(l,{size:16}):(0,Le.jsx)("img",{src:c,alt:"",className:"h-4 w-4 object-contain"})};return(0,Le.jsx)("div",{className:"mx-auto max-w-(--breakpoint-3xl) px-4 md:px-6",children:(0,Le.jsxs)(Tr.TabsList,{className:"border-none py-0",children:[e.map((c,l)=>{let u=l===a,d=t.find(f=>f.tab&&f.tab.toLowerCase()===c.id.toLowerCase()),p=d?d.path:"#";return(0,Le.jsxs)(K,{href:p,ref:f=>{n.current[l]=f},className:`relative flex items-center gap-2 px-4 py-3 text-sm font-medium transition-colors outline-none ${u?"text-primary-500":"text-text-muted hover:text-text-main"}`,children:[i(c.icon),(0,Le.jsx)("span",{children:Ge(c.text,o)})]},c.id)}),(0,Le.jsx)(Tr.TabsIndicator,{style:r})]})})}var Hs=require("react-router-dom");zo();Yt();var $t=require("lucide-react");Ut();var C=require("react/jsx-runtime"),vi=(0,_o.lazy)(()=>Promise.resolve().then(()=>(Ds(),Vs)).then(e=>({default:e.SearchDialog})));function jo(){let{links:e,title:t,logo:o,logoProps:r,github:n,social:a,config:i}=ds(),{routes:c,allRoutes:l,currentVersion:u,currentLocale:d}=A(),{pathname:p}=(0,Hs.useLocation)(),f=i.theme||{},h=p.startsWith("/docs"),x=f?.tabs&&f.tabs.length>0;return(0,C.jsxs)(X.NavbarRoot,{className:x?"border-b-0":"",children:[(0,C.jsxs)(X.Content,{children:[(0,C.jsxs)(X.NavbarLeft,{children:[o&&(0,C.jsx)(X.NavbarLogo,{src:o,alt:r?.alt||t,width:r?.width??24,height:r?.height??24}),(0,C.jsx)(X.Title,{children:t}),i.versions&&u&&(0,C.jsx)(Ci,{})]}),(0,C.jsx)(X.NavbarCenter,{children:(0,C.jsx)(_o.Suspense,{fallback:(0,C.jsx)("div",{className:"h-9 w-32 animate-pulse rounded-md bg-bg-surface"}),children:(0,C.jsx)(vi,{routes:c||[]})})}),(0,C.jsxs)(X.NavbarRight,{children:[(0,C.jsx)(X.Links,{children:e.map(v=>(0,C.jsx)(C.Fragment,{children:(0,C.jsx)(yi,{link:v},v.href)}))}),i.i18n&&d&&(0,C.jsx)(Ri,{}),(0,C.jsx)(X.Split,{}),(0,C.jsx)(Bs,{}),n&&(0,C.jsx)(Ms,{repo:f?.githubRepo??""}),a.length>0&&(0,C.jsx)(X.Split,{}),(0,C.jsx)("div",{className:"flex items-center gap-1",children:a.map(({icon:v,link:b})=>(0,C.jsx)(X.Socials,{icon:v,link:b,className:"p-1.5"},b))})]})]}),h&&x&&f?.tabs&&(0,C.jsx)("div",{className:"w-full border-b border-border-subtle bg-bg-main",children:(0,C.jsx)(Es,{tabs:f.tabs,routes:l||c||[]})})]})}function yi({link:e}){let t=kt(e.href||"");return(0,C.jsx)(X.Link,{...e,href:t})}function Ci(){let{currentVersionLabel:e,availableVersions:t,handleVersionChange:o}=Rs();return t.length===0?null:(0,C.jsxs)(Ie.Trigger,{children:[(0,C.jsx)(Re,{variant:"outline",size:"sm",rounded:"lg",iconPosition:"right",icon:(0,C.jsx)($t.ChevronDown,{className:"w-3.5 h-3.5 text-text-muted/60"}),className:"h-8 border-border-subtle/60 bg-bg-surface/30 backdrop-blur-sm transition-all duration-200 hover:border-primary-500/50 hover:bg-primary-500/5",children:(0,C.jsx)("span",{className:"font-semibold text-[0.8125rem]",children:e})}),(0,C.jsx)(Ie.Root,{children:(0,C.jsx)(Ie.Section,{items:t,children:r=>(0,C.jsx)(Ie.Item,{onPress:()=>o(r.value),children:r.label},`${r.value??""}`)})})]})}function Ri(){let{currentLocale:e,availableLocales:t,handleLocaleChange:o}=Ns();return t.length===0?null:(0,C.jsxs)(Ie.Trigger,{children:[(0,C.jsx)(Re,{variant:"outline",size:"sm",rounded:"lg",iconPosition:"right",icon:(0,C.jsx)($t.ChevronDown,{className:"w-3.5 h-3.5 text-text-muted/60"}),className:"h-8 border-border-subtle/60 bg-bg-surface/30 backdrop-blur-sm transition-all duration-200 hover:border-primary-500/50 hover:bg-primary-500/5 px-2.5",children:(0,C.jsxs)("div",{className:"flex items-center gap-1.5",children:[(0,C.jsx)($t.Languages,{className:"w-3.5 h-3.5 text-primary-500"}),(0,C.jsx)("span",{className:"font-bold text-[0.75rem] tracking-wider uppercase opacity-90",children:e||"en"})]})}),(0,C.jsx)(Ie.Root,{children:(0,C.jsx)(Ie.Section,{items:t,children:r=>(0,C.jsx)(Ie.Item,{onPress:()=>o(r.value),children:(0,C.jsxs)("div",{className:"flex items-center justify-between w-full gap-4",children:[(0,C.jsx)("span",{children:r.label}),(0,C.jsx)("span",{className:"text-[10px] font-bold opacity-40 uppercase tracking-tighter",children:r.value})]})},`${r.value??""}`)})})]})}s();var Pt=require("react");kr();s();var zs=require("lucide-react"),Ye=require("react/jsx-runtime");function $s(){return(0,Ye.jsx)("div",{className:"flex items-center justify-center mt-10 mb-4 px-4 w-full",children:(0,Ye.jsxs)("a",{href:"https://github.com/jesusalcaladev/boltdocs",target:"_blank",rel:"noopener noreferrer",className:"group relative flex items-center gap-2 px-4 py-2 rounded-full border border-border-subtle bg-bg-surface/50 backdrop-blur-md transition-all duration-300 hover:border-primary-500/50 hover:bg-bg-surface hover:shadow-xl hover:shadow-primary-500/5 select-none",children:[(0,Ye.jsx)(zs.Zap,{className:"w-3.5 h-3.5 text-text-muted group-hover:text-primary-500 transition-colors duration-300",fill:"currentColor"}),(0,Ye.jsxs)("span",{className:"text-[11px] font-medium text-text-muted group-hover:text-text-main transition-colors duration-300 tracking-wide",children:["Powered by"," ",(0,Ye.jsx)("strong",{className:"font-bold text-text-main/80 group-hover:text-text-main",children:"Boltdocs"})]})]})})}var Pi=S(require("lucide-react")),ke=require("react/jsx-runtime");function Fs(e){return e&&Pi[e]||void 0}function Ni({group:e,activePath:t,getIcon:o}){let r=(0,Pt.useMemo)(()=>e.routes.some(i=>i.path===t),[e.routes,t]),[n,a]=(0,Pt.useState)(!0);return(0,Pt.useEffect)(()=>{r&&a(!0)},[r]),(0,ke.jsx)(gt.SidebarGroup,{title:e.title,isOpen:n,onToggle:()=>a(!n),children:e.routes.map(i=>{let c=t===(i.path.endsWith("/")?i.path.slice(0,-1):i.path);return(0,ke.jsx)(gt.SidebarLink,{label:i.title,href:i.path,active:c,icon:o(i.icon),badge:i.badge},i.path)})})}function Uo({routes:e,config:t}){let{groups:o,ungrouped:r,activePath:n}=fs(e),a=t.theme||{};return(0,ke.jsxs)(gt.SidebarRoot,{children:[r.length>0&&(0,ke.jsx)(gt.SidebarGroup,{className:"mb-6",children:r.map(i=>{let c=n===(i.path.endsWith("/")?i.path.slice(0,-1):i.path);return(0,ke.jsx)(gt.SidebarLink,{label:i.title,href:i.path,active:c,icon:Fs(i.icon),badge:i.badge},i.path)})}),o.map(i=>(0,ke.jsx)(Ni,{group:i,activePath:n,getIcon:Fs},i.slug)),a?.poweredBy&&(0,ke.jsx)("div",{className:"mt-auto pt-8",children:(0,ke.jsx)($s,{})})]})}s();Nr();var Ce=S(require("react"));var Nt=require("lucide-react"),V=require("react/jsx-runtime");function qo({headings:e=[],editLink:t,communityHelp:o,filePath:r}){let{headings:n}=xs(e),a=Ce.default.useMemo(()=>n.map(i=>({title:i.text,url:`#${i.id}`,depth:i.level})),[n]);return n.length===0?null:(0,V.jsx)(Un,{toc:a,children:(0,V.jsx)(wi,{headings:n,editLink:t,communityHelp:o,filePath:r})})}function wi({headings:e,editLink:t,communityHelp:o,filePath:r}){let n=_n(),[a,i]=(0,Ce.useState)({opacity:0}),c=(0,Ce.useRef)(null),l=(0,Ce.useRef)(null);(0,Ce.useEffect)(()=>{if(!n||!c.current)return;let d=c.current.querySelector(`a[href="#${n}"]`);d&&i({transform:`translateY(${d.offsetTop}px)`,height:`${d.offsetHeight}px`,opacity:1})},[n]);let u=(0,Ce.useCallback)((d,p)=>{d.preventDefault();let f=document.getElementById(p);f&&(f.scrollIntoView({behavior:"smooth"}),window.history.pushState(null,"",`#${p}`))},[]);return(0,V.jsxs)(Xe.OnThisPageRoot,{children:[(0,V.jsxs)(Xe.OnThisPageHeader,{className:"flex flex-row gap-x-2",children:[(0,V.jsx)(Nt.TextAlignStart,{size:16}),"On this page"]}),(0,V.jsx)(jn,{containerRef:l,children:(0,V.jsxs)(Xe.OnThisPageContent,{className:"max-h-[450px] boltdocs-otp-scroll-area",ref:l,children:[(0,V.jsx)(Xe.OnThisPageIndicator,{style:a}),(0,V.jsx)("ul",{className:"relative space-y-2 border-l border-border-subtle",ref:c,children:e.map(d=>(0,V.jsx)(Xe.OnThisPageItem,{level:d.level,children:(0,V.jsx)(Xe.OnThisPageLink,{href:`#${d.id}`,active:n===d.id,onClick:p=>u(p,d.id),className:"pl-4",children:d.text})},d.id))})]})}),(t||o)&&(0,V.jsxs)("div",{className:"mt-8 pt-8 border-t border-border-subtle space-y-4",children:[(0,V.jsx)("p",{className:"text-xs font-bold uppercase tracking-wider text-text-main",children:"Need help?"}),(0,V.jsxs)("ul",{className:"space-y-3",children:[t&&r&&(0,V.jsx)("li",{children:(0,V.jsxs)("a",{href:t.replace(":path",r),target:"_blank",rel:"noopener noreferrer",className:"flex items-center gap-2 text-sm text-text-muted hover:text-text-main transition-colors",children:[(0,V.jsx)(Nt.Pencil,{size:16}),"Edit this page"]})}),o&&(0,V.jsx)("li",{children:(0,V.jsxs)("a",{href:o,target:"_blank",rel:"noopener noreferrer",className:"flex items-center gap-2 text-sm text-text-muted hover:text-text-main transition-colors",children:[(0,V.jsx)(Nt.CircleHelp,{size:16}),"Community help"]})})]})]})]})}s();var Ws=require("react"),Gs=require("react-router-dom");function Ko({siteTitle:e,siteDescription:t,routes:o}){let r=(0,Gs.useLocation)();return(0,Ws.useEffect)(()=>{let n=o.find(u=>u.path===r.pathname),a=n?.title,i=n?.description||t||"";document.title=a?`${a} | ${e}`:e;let c=document.querySelector('meta[name="description"]');c||(c=document.createElement("meta"),c.name="description",document.head.appendChild(c)),c.content=i,Ze("property","og:title",document.title),Ze("property","og:description",i),Ze("property","og:type","article"),Ze("property","og:url",window.location.href),Ze("name","twitter:card","summary"),Ze("name","twitter:title",document.title),Ze("name","twitter:description",i);let l=document.querySelector('link[rel="canonical"]');l||(l=document.createElement("link"),l.rel="canonical",document.head.appendChild(l)),l.href=window.location.origin+r.pathname},[r.pathname,e,t,o]),null}function Ze(e,t,o){let r=document.querySelector(`meta[${e}="${t}"]`);r||(r=document.createElement("meta"),r.setAttribute(e,t),document.head.appendChild(r)),r.content=o}s();var _s=require("lucide-react");Br();w();ge();var Oe=require("react/jsx-runtime");function Xo(){let{crumbs:e,activeRoute:t}=Ls(),r=F().theme||{};return e.length===0||!r?.breadcrumbs?null:(0,Oe.jsxs)(Zn,{children:[(0,Oe.jsx)(Sr,{children:(0,Oe.jsx)(Ar,{href:"/",children:(0,Oe.jsx)(_s.Home,{size:14})})}),e.map((n,a)=>(0,Oe.jsxs)(Sr,{children:[(0,Oe.jsx)(Qn,{}),(0,Oe.jsx)(Ar,{href:n.href,className:m({"font-medium text-text-main":n.href===t?.path}),children:n.label})]},`crumb-${n.href}-${n.label}-${a}`))]})}s();wr();var Se=require("react/jsx-runtime");function Jo(){let{prevPage:e,nextPage:t}=Ts();return!e&&!t?null:(0,Se.jsxs)(Fe.PageNavRoot,{className:"animate-in fade-in slide-in-from-bottom-4 duration-700",children:[e?(0,Se.jsxs)(Fe.PageNavLink,{to:e.path,direction:"prev",children:[(0,Se.jsx)(Fe.PageNavLink.Title,{children:"Previous"}),(0,Se.jsx)(Fe.PageNavLink.Description,{children:e.title})]}):(0,Se.jsx)("div",{}),t&&(0,Se.jsxs)(Fe.PageNavLink,{to:t.path,direction:"next",children:[(0,Se.jsx)(Fe.PageNavLink.Title,{children:"Next"}),(0,Se.jsx)(Fe.PageNavLink.Description,{children:t.title})]})]})}s();var js=require("react");Oo();var wt=require("react/jsx-runtime"),Tt=class extends js.Component{state={hasError:!1};static getDerivedStateFromError(t){return{hasError:!0,error:t}}componentDidCatch(t,o){console.error("Uncaught error in Boltdocs Layout:",t,o)}render(){return this.state.hasError?this.props.fallback||(0,wt.jsxs)("div",{className:"flex flex-col items-center justify-center min-h-[40vh] text-center gap-4 px-4",children:[(0,wt.jsx)("div",{className:"text-lg font-bold text-red-400",children:"Something went wrong"}),(0,wt.jsx)("p",{className:"text-sm text-text-muted max-w-md",children:this.state.error?.message||"An unexpected error occurred while rendering this page."}),(0,wt.jsx)(Re,{className:"rounded-lg border border-border-subtle bg-bg-surface px-5 py-2 text-sm font-medium text-text-main transition-colors hover:bg-bg-muted cursor-pointer",onPress:()=>this.setState({hasError:!1}),children:"Try again"})]}):this.props.children}};ee();ge();var Us=require("react-router-dom");var Z=require("react/jsx-runtime");function qs({children:e}){let{routes:t,allRoutes:o,currentRoute:r,currentLocale:n}=A(),{pathname:a}=(0,Us.useLocation)(),i=F(),l=et().CopyMarkdown||yt,u=a==="/"||a==="";return(0,Z.jsxs)(Ue,{children:[(0,Z.jsx)(Ko,{siteTitle:Ge(i.theme?.title,n)||"Boltdocs",siteDescription:Ge(i.theme?.description,n)||"",routes:o}),(0,Z.jsx)(jo,{}),(0,Z.jsxs)(Ue.Body,{children:[!u&&(0,Z.jsx)(Uo,{routes:t,config:i}),(0,Z.jsxs)(Ue.Content,{children:[!u&&(0,Z.jsxs)(Ue.ContentHeader,{children:[(0,Z.jsx)(Xo,{}),(0,Z.jsx)(l,{mdxRaw:r?._rawContent,route:r,config:i.theme?.copyMarkdown})]}),(0,Z.jsx)(Tt,{children:e}),!u&&(0,Z.jsx)(Ue.ContentFooter,{children:(0,Z.jsx)(Jo,{})})]}),!u&&(0,Z.jsx)(qo,{headings:r?.headings,editLink:i.theme?.editLink,communityHelp:i.theme?.communityHelp,filePath:r?.filePath})]})]})}
|