boltdocs 2.3.0 → 2.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/base-ui/index.d.mts +3 -3
  3. package/dist/base-ui/index.d.ts +3 -3
  4. package/dist/base-ui/index.js +1 -1
  5. package/dist/base-ui/index.mjs +1 -1
  6. package/dist/chunk-2DI3OGHV.mjs +1 -0
  7. package/dist/chunk-64AJ5QLT.mjs +1 -0
  8. package/dist/chunk-DDX52BX4.mjs +1 -0
  9. package/dist/chunk-HRZDSFR5.mjs +1 -0
  10. package/dist/chunk-PPVDMDEL.mjs +1 -0
  11. package/dist/{chunk-HA6543SL.mjs → chunk-UBE4CKOA.mjs} +1 -1
  12. package/dist/chunk-UWT4AJTH.mjs +73 -0
  13. package/dist/chunk-WWJ7WKDI.mjs +1 -0
  14. package/dist/client/index.d.mts +15 -21
  15. package/dist/client/index.d.ts +15 -21
  16. package/dist/client/index.js +1 -1
  17. package/dist/client/index.mjs +1 -1
  18. package/dist/client/ssr.js +1 -1
  19. package/dist/client/ssr.mjs +1 -1
  20. package/dist/client/types.d.mts +1 -1
  21. package/dist/client/types.d.ts +1 -1
  22. package/dist/client/types.js +1 -1
  23. package/dist/{copy-markdown-CbS8X-qe.d.mts → copy-markdown--9yjpbyy.d.mts} +1 -1
  24. package/dist/{copy-markdown-C-90ixSe.d.ts → copy-markdown-l2MYkcG7.d.ts} +1 -1
  25. package/dist/hooks/index.d.mts +3 -3
  26. package/dist/hooks/index.d.ts +3 -3
  27. package/dist/hooks/index.js +1 -1
  28. package/dist/hooks/index.mjs +1 -1
  29. package/dist/integrations/index.d.mts +1 -1
  30. package/dist/integrations/index.d.ts +1 -1
  31. package/dist/{loading-B7X5Wchs.d.ts → loading-BwUos0wZ.d.mts} +2 -11
  32. package/dist/{loading-WuaQbsKb.d.mts → loading-nlnUD01v.d.ts} +2 -11
  33. package/dist/mdx/index.d.mts +4 -2
  34. package/dist/mdx/index.d.ts +4 -2
  35. package/dist/mdx/index.js +1 -1
  36. package/dist/mdx/index.mjs +1 -1
  37. package/dist/node/cli-entry.js +16 -17
  38. package/dist/node/cli-entry.mjs +1 -1
  39. package/dist/node/index.d.mts +0 -9
  40. package/dist/node/index.d.ts +0 -9
  41. package/dist/node/index.js +13 -14
  42. package/dist/node/index.mjs +1 -1
  43. package/dist/primitives/index.d.mts +11 -20
  44. package/dist/primitives/index.d.ts +11 -20
  45. package/dist/primitives/index.js +1 -1
  46. package/dist/primitives/index.mjs +1 -1
  47. package/dist/search-dialog-OONKKC5H.mjs +1 -0
  48. package/dist/{types-j7jvWsJj.d.ts → types-opDA2E9-.d.mts} +4 -11
  49. package/dist/{types-j7jvWsJj.d.mts → types-opDA2E9-.d.ts} +4 -11
  50. package/dist/{use-routes-Cd806kGw.d.ts → use-routes-DNwgTRpU.d.ts} +1 -1
  51. package/dist/{use-routes-DDL0_jkQ.d.mts → use-routes-DrT80Eom.d.mts} +1 -1
  52. package/package.json +1 -1
  53. package/src/client/app/index.tsx +20 -9
  54. package/src/client/app/mdx-components-context.tsx +2 -2
  55. package/src/client/app/mdx-page.tsx +0 -1
  56. package/src/client/app/scroll-handler.tsx +21 -10
  57. package/src/client/components/default-layout.tsx +0 -2
  58. package/src/client/components/docs-layout.tsx +34 -4
  59. package/src/client/components/icons-dev.tsx +154 -0
  60. package/src/client/components/mdx/code-block.tsx +57 -5
  61. package/src/client/components/mdx/component-preview.tsx +1 -0
  62. package/src/client/components/mdx/file-tree.tsx +35 -0
  63. package/src/client/components/primitives/helpers/observer.ts +30 -39
  64. package/src/client/components/primitives/index.ts +1 -0
  65. package/src/client/components/primitives/menu.tsx +18 -12
  66. package/src/client/components/primitives/navbar.tsx +31 -90
  67. package/src/client/components/primitives/on-this-page.tsx +7 -161
  68. package/src/client/components/primitives/popover.tsx +1 -2
  69. package/src/client/components/ui-base/copy-markdown.tsx +4 -10
  70. package/src/client/components/ui-base/index.ts +0 -1
  71. package/src/client/components/ui-base/navbar.tsx +10 -9
  72. package/src/client/hooks/use-navbar.ts +37 -6
  73. package/src/client/index.ts +0 -1
  74. package/src/client/theme/neutral.css +2 -3
  75. package/src/client/types.ts +2 -2
  76. package/src/node/config.ts +0 -14
  77. package/src/node/mdx/cache.ts +1 -1
  78. package/src/node/mdx/index.ts +2 -0
  79. package/src/node/mdx/rehype-shiki.ts +9 -0
  80. package/src/node/mdx/remark-code-meta.ts +35 -0
  81. package/src/node/mdx/remark-shiki.ts +1 -1
  82. package/src/node/plugin/entry.ts +21 -14
  83. package/src/node/plugin/index.ts +22 -4
  84. package/src/node/routes/parser.ts +3 -0
  85. package/src/node/ssg/index.ts +76 -16
  86. package/dist/chunk-22NXDNP4.mjs +0 -74
  87. package/dist/chunk-2HUVMMJU.mjs +0 -1
  88. package/dist/chunk-CRZGOE32.mjs +0 -1
  89. package/dist/chunk-RPUERTVC.mjs +0 -1
  90. package/dist/chunk-URTD6E6S.mjs +0 -1
  91. package/dist/chunk-W2NB4T6V.mjs +0 -1
  92. package/dist/search-dialog-ZRXBAQJ5.mjs +0 -1
  93. package/src/client/components/ui-base/progress-bar.tsx +0 -67
@@ -1 +1 @@
1
- "use strict";var Vs=Object.create;var At=Object.defineProperty;var Hs=Object.getOwnPropertyDescriptor;var zs=Object.getOwnPropertyNames;var $s=Object.getPrototypeOf,Fs=Object.prototype.hasOwnProperty;var w=(e,t)=>()=>(e&&(t=e(e=0)),t);var zo=(e,t)=>{for(var o in t)At(e,o,{get:t[o],enumerable:!0})},Lr=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of zs(t))!Fs.call(e,n)&&n!==o&&At(e,n,{get:()=>t[n],enumerable:!(r=Hs(t,n))||r.enumerable});return e};var I=(e,t,o)=>(o=e!=null?Vs($s(e)):{},Lr(t||!e||!e.__esModule?At(o,"default",{value:e,enumerable:!0}):o,e)),Ws=e=>Lr(At({},"__esModule",{value:!0}),e);var a=w(()=>{"use strict"});function H(){let e=(0,Mt.use)($o);if(!e)throw new Error("useConfig must be used within a ConfigProvider");return e}var Mt,$o,de=w(()=>{"use strict";a();Mt=require("react"),$o=(0,Mt.createContext)(null)});function Et(){return(0,Oe.use)(Sr)}function Ir({routes:e,modules:t,children:o}){let r=(0,Oe.useRef)(null),n=(0,Oe.useCallback)(s=>{r.current&&clearTimeout(r.current),r.current=setTimeout(()=>{let i=s.split("#")[0].split("?")[0],c=e.find(l=>l.path===i||i==="/"&&l.path==="");if(c?.filePath){let l=Object.keys(t).find(p=>p.endsWith("/"+c.filePath));l&&t[l]().catch(p=>{console.error(`[boltdocs] Failed to preload route ${s}:`,p)})}},100)},[e,t]);return(0,Br.jsx)(Sr.Provider,{value:{preload:n,routes:e},children:o})}var Oe,Br,Sr,Ot=w(()=>{"use strict";a();Oe=require("react"),Br=require("react/jsx-runtime"),Sr=(0,Oe.createContext)({preload:()=>{},routes:[]})});var Ar,Dt,Y,xt=w(()=>{"use strict";a();Ar=require("zustand"),Dt=require("zustand/middleware"),Y=(0,Ar.create)()((0,Dt.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,Dt.createJSONStorage)(()=>localStorage),partialize:e=>({currentLocale:e.currentLocale,currentVersion:e.currentVersion}),onRehydrateStorage:()=>e=>{e?.setHasHydrated(!0)}}))});function k(){let{routes:e}=Et(),t=H(),o=(0,Mr.useLocation)(),r=Y(f=>f.currentLocale),n=Y(f=>f.currentVersion),s=Y(f=>f.hasHydrated),i=e.find(f=>f.path===o.pathname),c=t.i18n?i?.locale||(s?r:void 0)||t.i18n.defaultLocale:void 0,l=t.versions?i?.version||(s?n:void 0)||t.versions.defaultVersion:void 0,p=e.filter(f=>{let T=t.i18n?(f.locale||t.i18n.defaultLocale)===c:!0,Q=t.versions?(f.version||t.versions.defaultVersion)===l:!0;if(!(T&&Q))return!1;let me=t.i18n;if(me){let Os=!!i?.locale,Ds=!!f.locale;if(e.some(Bt=>Bt!==f&&Bt.filePath===f.filePath&&Bt.version===f.version&&(Bt.locale||me.defaultLocale)===(f.locale||me.defaultLocale))&&Os!==Ds)return!1}return!0}),u=t.i18n?.localeConfigs?.[c]?.label||t.i18n?.locales[c]||c,h=t.versions?.versions.find(f=>f.path===l)?.label||l,x=t.i18n?Object.entries(t.i18n.locales).map(([f,T])=>{let Q=t.i18n?.localeConfigs?.[f];return{key:f,label:Q?.label||T,isCurrent:f===c}}):[],v=t.versions?t.versions.versions.map(f=>({key:f.path,label:f.label,isCurrent:f.path===l})):[];return{routes:p,allRoutes:e,currentRoute:i,currentLocale:c,currentLocaleLabel:u,availableLocales:x,currentVersion:l,currentVersionLabel:h,availableVersions:v,config:t}}var Mr,ee=w(()=>{"use strict";a();Mr=require("react-router-dom");de();Ot();xt()});function vt(e){let t=H(),{currentLocale:o,currentVersion:r}=k();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 i=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 p=c.slice(l),m=[];i&&(m.push("docs"),s&&r&&m.push(r)),n&&o&&o!==n.defaultLocale&&m.push(o),m.push(...p);let u=`/${m.join("/")}`;return u.length>1&&u.endsWith("/")?u.slice(0,-1):u||"/"}var Fo=w(()=>{"use strict";a();de();ee()});function d(...e){return(0,Or.twMerge)((0,Er.clsx)(e))}var Er,Or,N=w(()=>{"use strict";a();Er=require("clsx"),Or=require("tailwind-merge")});var Wo,Dr,Vr,Go,Z,Gs,qe=w(()=>{"use strict";a();Wo=I(require("react")),Dr=require("react-aria-components"),Vr=require("react-router-dom");Fo();Ot();N();Go=require("react/jsx-runtime"),Z=Wo.default.forwardRef((e,t)=>{let{href:o,prefetch:r="hover",onMouseEnter:n,onFocus:s,...i}=e,c=vt(o??""),{preload:l}=Et();return(0,Go.jsx)(Dr.Link,{...i,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)}})});Z.displayName="Link";Gs=Wo.default.forwardRef((e,t)=>{let{href:o,end:r=!1,className:n,children:s,...i}=e,c=(0,Vr.useLocation)(),l=vt(o??""),p=r?c.pathname===l:c.pathname.startsWith(l),m=typeof n=="function"?n({isActive:p}):d(n,p&&"active"),u=typeof s=="function"?s({isActive:p}):s;return(0,Go.jsx)(Z,{...i,ref:t,href:o,className:m,children:u})});Gs.displayName="NavLink"});var $t,rn,ue,zt,fe,Ft=w(()=>{"use strict";a();$t=I(require("react-aria-components"));N();rn=require("class-variance-authority"),ue=require("react/jsx-runtime"),zt=(0,rn.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"}}),fe=({href:e,icon:t,iconPosition:o="left",isIconOnly:r,children:n,className:s,variant:i,size:c,rounded:l,iconSize:p,disabled:m,...u})=>{let g=r||!n&&!!t,h=g?(0,ue.jsx)("span",{className:"inline-flex items-center justify-center [&>svg]:w-[1.2rem] [&>svg]:h-[1.2rem]",children:t}):(0,ue.jsxs)(ue.Fragment,{children:[t&&o==="left"&&(0,ue.jsx)("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t}),(0,ue.jsx)("span",{className:"flex items-center",children:n}),t&&o==="right"&&(0,ue.jsx)("span",{className:"inline-flex items-center shrink-0 [&>svg]:w-[1.1rem] [&>svg]:h-[1.1rem]",children:t})]});return e?(0,ue.jsx)($t.Link,{href:e,className:d(zt({variant:i,size:c,rounded:l,iconSize:g?p:void 0,disabled:m}),s),...u,children:h}):(0,ue.jsx)($t.Button,{className:d(zt({variant:i,size:c,rounded:l,iconSize:g?p:void 0,disabled:m}),s),...u,children:h})}});function Ct(e){let{size:t=20,...o}=e;return{...o,width:t,height:t}}var z,Ut,cn,mn,dn,pn,jt=w(()=>{"use strict";a();z=require("react/jsx-runtime");Ut=e=>(0,z.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...Ct(e),children:[(0,z.jsx)("title",{children:"GitHub"}),(0,z.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,z.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...Ct(e),children:[(0,z.jsx)("title",{children:"Discord"}),(0,z.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"})]}),mn=e=>(0,z.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...Ct(e),children:[(0,z.jsx)("title",{children:"X"}),(0,z.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"})]}),dn=e=>(0,z.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...Ct(e),children:[(0,z.jsx)("title",{children:"CodeSandbox"}),(0,z.jsx)("path",{d:"M0 24h24V0H0v2.455h21.546v19.09H2.454V0H0Z"})]}),pn=e=>(0,z.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...Ct(e),children:[(0,z.jsx)("title",{children:"Bluesky"}),(0,z.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 Xe,se,Us,Ko,Xo=w(()=>{"use strict";a();Xe=I(require("react-aria-components"));N();se=require("react/jsx-runtime"),Us=({className:e,children:t,...o})=>(0,se.jsx)(Xe.Tooltip,{...o,offset:8,className:r=>d("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,se.jsxs)(se.Fragment,{children:[(0,se.jsx)(Xe.OverlayArrow,{children:(0,se.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,se.jsx)("title",{children:"Arrow"}),(0,se.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,se.jsxs)(Xe.TooltipTrigger,{delay:o,closeDelay:r,children:[t,(0,se.jsx)(Us,{...n,children:e})]})});var yo,wn,Se,R,sa,aa,ia,la,ca,ma,da,pa,ua,fa,ga,ba,ha,xa,va,q,Co=w(()=>{"use strict";a();yo=require("react");Ro();wn=require("react-aria-components"),Se=require("lucide-react");jt();R=require("react/jsx-runtime"),sa=({children:e,className:t,...o})=>(0,R.jsx)("header",{className:d("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}),aa=({children:e,className:t})=>(0,R.jsx)("div",{className:d("mx-auto flex lg:h-navbar max-w-(--breakpoint-3xl) items-center justify-between px-4 md:px-6",t),children:e}),ia=({children:e,className:t})=>(0,R.jsx)("div",{className:d("flex items-center gap-4",t),children:e}),la=({children:e,className:t})=>(0,R.jsx)("div",{className:d("flex items-center gap-2 md:gap-4",t),children:e}),ca=({children:e,className:t})=>(0,R.jsx)("div",{className:d("hidden lg:flex flex-1 justify-center items-center gap-4 px-4",t),children:e}),ma=({src:e,alt:t,width:o=24,height:r=24,className:n})=>(0,R.jsx)(Z,{href:"/",className:d("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}),da=({children:e,className:t})=>(0,R.jsx)("span",{className:d("text-lg font-bold tracking-tight hidden sm:inline-block",t),children:e}),pa=({children:e,className:t})=>(0,R.jsx)("nav",{className:d("hidden md:flex items-center gap-6 text-sm font-medium",t),children:e}),ua=({label:e,href:t,active:o,to:r,className:n})=>(0,R.jsxs)(Z,{href:t,target:r==="external"?"_blank":void 0,className:d("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)(Se.ExternalLink,{size:12})})]}),fa=({className:e,onPress:t})=>{let[o,r]=(0,yo.useState)(!1),n=o&&/Mac|iPod|iPhone|iPad/.test(navigator.platform);return(0,yo.useEffect)(()=>{r(!0)},[]),(0,R.jsxs)(wn.Button,{onPress:t,className:d("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-[320px] justify-between",e),children:[(0,R.jsxs)("div",{className:"flex items-center gap-2",children:[(0,R.jsx)(Se.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"})]})]})},ga=({className:e,theme:t,onThemeChange:o})=>(0,R.jsx)(rt.ToggleButton,{isSelected:t==="dark",onChange:o,className:d("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,R.jsx)(Se.Sun,{size:20}):(0,R.jsx)(Se.Moon,{size:20})}),ba=({label:e,className:t,onPress:o,isCurrent:r})=>(0,R.jsx)(Re,{onAction:o,className:d(r&&"bg-primary-500 text-white font-medium hover:bg-primary-600 focus:bg-primary-600 focus:text-white",t),children:e}),ha=({name:e})=>{if(e==="github")return(0,R.jsx)(Ut,{});if(e==="discord")return(0,R.jsx)(cn,{});if(e==="x")return(0,R.jsx)(mn,{});if(e==="bluesky")return(0,R.jsx)(pn,{})},xa=({icon:e,link:t,className:o})=>(0,R.jsx)(Z,{href:t,target:"_blank",rel:"noopener noreferrer",className:d("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)(ha,{name:e})}),va=({className:e})=>(0,R.jsx)(rt.Separator,{orientation:"vertical",className:d("h-6 w-px bg-border-subtle mx-1",e)}),q={NavbarRoot:sa,NavbarLeft:ia,NavbarRight:la,NavbarCenter:ca,NavbarLogo:ma,Title:da,Links:pa,Link:ua,SearchTrigger:fa,Theme:ga,Item:ba,Socials:xa,Split:va,Content:aa}});var kt,ya,tr,Tn=w(()=>{"use strict";a();kt=I(require("react-aria-components")),ya=require("lucide-react");N();tr=require("react/jsx-runtime")});var F,He,L,or,rr,nr,sr,ar,ir,lr,cr,Bc,mr=w(()=>{"use strict";a();F=I(require("react-aria-components")),He=require("lucide-react");N();L=require("react/jsx-runtime"),or=({children:e,isOpen:t,onOpenChange:o,className:r})=>(0,L.jsx)(F.ModalOverlay,{isOpen:t,onOpenChange:o,isDismissable:!0,className:d("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)(F.Modal,{className:d("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)(F.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)(F.Autocomplete,{...r,onSelectionChange:o,className:"flex flex-col min-h-0",children:e})}),nr=({className:e,...t})=>(0,L.jsxs)(F.SearchField,{className:"flex items-center gap-3 border-b border-border-subtle px-4 py-4",autoFocus:!0,children:[(0,L.jsx)(He.Search,{className:"h-5 w-5 text-text-muted"}),(0,L.jsx)(F.Input,{...t,className:d("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)(F.ListBox,{...o,className:d("flex-1 overflow-y-auto p-2 outline-none",t),children:e}),ar=({children:e,className:t,...o})=>(0,L.jsx)(F.ListBoxItem,{...o,className:d("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)(He.CornerDownLeft,{size:10})]})]})}),ir=({isHeading:e,className:t})=>(0,L.jsx)("div",{className:d("shrink-0",t),children:e?(0,L.jsx)(He.Hash,{size:18}):(0,L.jsx)(He.FileText,{size:18})}),lr=({children:e,className:t})=>(0,L.jsx)("span",{className:d("block font-medium truncate flex-1 text-sm",t),children:e}),cr=({children:e,className:t})=>(0,L.jsx)("span",{className:d("ml-2 text-xs opacity-70 truncate hidden sm:inline group-focus:opacity-100",t),children:e}),Bc={Root:or,Autocomplete:rr,Input:nr,List:sr,Item:Object.assign(ar,{Icon:ir,Title:lr,Bio:cr})}});function kn(e,t){let o=(0,No.useRef)(e);(0,No.useEffect)(()=>{o.current!==e&&(t(e),o.current=e)},[e,t])}var No,Ln=w(()=>{"use strict";a();No=require("react")});function dr(e){return e.startsWith("#")?e.slice(1):null}var Sn=w(()=>{"use strict";a()});function Ca(){let e=(0,B.use)(ur);if(!e)throw new Error("Component must be used under the <AnchorProvider /> component.");return e}function Ra(e){let[t,o]=(0,B.useState)({isOverflowing:!1,isAtBottom:!1});return(0,B.useEffect)(()=>{let r=e.current;if(!r)return;let n=()=>{let i=r.scrollHeight>r.clientHeight,c=r.scrollHeight-r.scrollTop<=r.clientHeight+2;o({isOverflowing:i,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 An(){let e=Ca();return(0,B.useMemo)(()=>{let t;for(let o of e)o.active&&(!t||o.t>t.t)&&(t=o);return t?.id},[e])}function Mn({containerRef:e,children:t}){return(0,Ne.jsx)(Bn.Provider,{value:e,children:t})}function En({toc:e,single:t=!1,children:o}){let r=(0,B.useMemo)(()=>new pr,[]),[n,s]=(0,B.useState)(r.items);return r.single=t,(0,B.useEffect)(()=>{r.setItems(e)},[r,e]),(0,B.useEffect)(()=>(r.watch({rootMargin:"0px",threshold:.98}),r.onChange=()=>s([...r.items]),()=>{r.unwatch()}),[r]),(0,Ne.jsx)(ur.Provider,{value:n,children:o})}var B,In,Ne,ur,Bn,pr,Na,Pa,On,wa,Ta,ka,La,Ge,fr=w(()=>{"use strict";a();B=require("react"),In=I(require("scroll-into-view-if-needed"));N();Ln();Sn();Ne=require("react/jsx-runtime"),ur=(0,B.createContext)(null),Bn=(0,B.createContext)(null),pr=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(i=>i.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 i=0;i<this.items.length;i++){let c=document.getElementById(this.items[i].id);if(!c)continue;let l=Math.abs(r-c.getBoundingClientRect().top);l<n&&(s=i,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=dr(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}};Na=({children:e,className:t})=>(0,Ne.jsx)("nav",{className:d("sticky top-navbar hidden xl:flex flex-col shrink-0","w-toc","py-8 pl-6 pr-4",t),children:e}),Pa=({children:e,className:t,...o})=>(0,Ne.jsx)("div",{className:d("mb-4 text-xs font-bold uppercase tracking-wider text-text-main",t),...o,children:e}),On=({children:e,className:t,ref:o,...r})=>{let n=(0,B.useRef)(null);(0,B.useImperativeHandle)(o,()=>n.current);let{isOverflowing:s,isAtBottom:i}=Ra(n);return(0,Ne.jsx)("div",{ref:n,className:d("relative overflow-y-auto boltdocs-otp-content",s&&!i&&"mask-[linear-gradient(to_bottom,black_85%,transparent_100%)]",t),...r,children:e})};On.displayName="OnThisPageContent";wa=({children:e,className:t})=>(0,Ne.jsx)("ul",{className:d("relative space-y-1 text-sm border-l border-border-subtle",t),children:e}),Ta=({level:e,children:t,className:o})=>(0,Ne.jsx)("li",{className:d(e===3&&"pl-3",o),children:t}),ka=({children:e,href:t,active:o,onClick:r,className:n})=>{let s=(0,B.use)(ur),i=(0,B.use)(Bn),c=t?dr(t):null,l=(0,B.useRef)(null),[p,m]=(0,B.useState)(o);return kn(c&&s?s.find(u=>u.id===c)?.active:null,u=>{u!==null&&u!==p&&(m(!!u),u&&l.current&&i?.current&&(0,In.default)(l.current,{behavior:"smooth",block:"center",inline:"center",scrollMode:"if-needed",boundary:i.current}))}),(0,B.useEffect)(()=>{o!==void 0&&m(o)},[o]),(0,Ne.jsx)("a",{ref:l,href:t,onClick:r,"data-active":p,className:d("block py-1 pl-4 text-[13px] outline-none transition-colors hover:text-text-main",p?"text-primary-500 font-medium":"text-text-muted",n),children:e})},La=({style:e,className:t})=>(0,Ne.jsx)("div",{className:d("absolute -left-px w-0.5 rounded-full bg-primary-500 transition-all duration-300",t),style:e}),Ge={OnThisPageRoot:Na,OnThisPageHeader:Pa,OnThisPageContent:On,OnThisPageList:wa,OnThisPageItem:Ta,OnThisPageLink:ka,OnThisPageIndicator:La}});var Dn,Po,ie,Sa,Ia,Ba,Aa,Ma,ze,gr=w(()=>{"use strict";a();Dn=I(require("react-aria-components")),Po=require("lucide-react");N();ie=require("react/jsx-runtime"),Sa=({children:e,className:t})=>(0,ie.jsx)("nav",{className:d("grid grid-cols-1 sm:grid-cols-2 gap-4 mt-12 pt-8 border-t border-border-subtle",t),children:e}),Ia=({children:e,to:t,direction:o,className:r})=>{let n=o==="next";return(0,ie.jsxs)(Dn.Link,{href:t,className:d("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"})]})},Ba=({children:e,className:t})=>(0,ie.jsx)("span",{className:d("text-xs font-medium uppercase tracking-wider text-text-muted",t),children:e}),Aa=({children:e,className:t})=>(0,ie.jsx)("span",{className:d("text-base font-bold text-text-main truncate",t),children:e}),Ma=({children:e})=>(0,ie.jsx)(ie.Fragment,{children:e}),ze={PageNavRoot:Sa,PageNavLink:Object.assign(Ia,{Title:Ba,Description:Aa,Icon:Ma})}});var nt,Ea,Oa,Da,Va,Ha,br,hr=w(()=>{"use strict";a();N();nt=require("react/jsx-runtime"),Ea=({children:e,className:t="",...o})=>(0,nt.jsx)("div",{className:d("w-full",t),...o,children:e}),Oa=({children:e,className:t=""})=>(0,nt.jsx)("div",{role:"tablist",className:d("relative flex flex-row items-center border-b border-border-subtle",t),children:e}),Da=({children:e,id:t,selected:o,className:r="",...n})=>(0,nt.jsx)("button",{role:"tab","aria-selected":o,className:d("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}),Va=({children:e,className:t=""})=>(0,nt.jsx)("div",{className:d("p-4 outline-none",t),children:e}),Ha=({className:e="",style:t})=>(0,nt.jsx)("div",{className:d("absolute bottom-0 h-0.5 bg-primary-500 transition-all duration-300",e),style:t}),br={TabsRoot:Ea,TabsList:Oa,TabsItem:Da,TabsContent:Va,TabsIndicator:Ha}});var Vn,Hn,W,za,$a,Fa,Wa,Ga,st,xr=w(()=>{"use strict";a();qe();Vn=I(require("react-aria-components")),Hn=require("lucide-react");N();W=require("react/jsx-runtime"),za=({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,W.jsx)("span",{className:d("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})},$a=({children:e,className:t})=>(0,W.jsx)("aside",{className:d("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,W.jsx)("nav",{className:"flex-1 space-y-6",children:e})}),Fa=({children:e,title:t,icon:o,isOpen:r=!0,onToggle:n,className:s})=>(0,W.jsxs)("div",{className:d("space-y-1",s),children:[t&&(0,W.jsxs)(Vn.Button,{onPress:n,className:d("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,W.jsxs)("div",{className:"flex items-center gap-2",children:[o&&(0,W.jsx)(o,{size:14}),t]}),(0,W.jsx)(Hn.ChevronRight,{size:14,className:d("transition-transform duration-200",r&&"rotate-90")})]}),r&&(0,W.jsx)("div",{className:"space-y-0.5",children:e})]}),Wa=({children:e,className:t})=>(0,W.jsx)("div",{className:d(t),children:e}),Ga=({label:e,href:t,active:o,icon:r,badge:n,className:s})=>(0,W.jsxs)(Z,{href:t,className:d("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",s),children:[r&&(0,W.jsx)(r,{size:16,className:d(o?"text-primary-500":"text-text-muted group-hover:text-text-main")}),(0,W.jsx)("span",{className:"truncate",children:e}),n&&(0,W.jsx)(za,{badge:n})]}),st={SidebarRoot:$a,SidebarGroup:Fa,SidebarGroupItem:Wa,SidebarLink:Ga}});var at,zn,Lt,$n,vr,yr,Fn,Cr=w(()=>{"use strict";a();at=require("react-aria-components"),zn=require("lucide-react");N();Lt=require("react/jsx-runtime"),$n=({children:e,className:t,...o})=>(0,Lt.jsx)(at.Breadcrumbs,{className:d("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,Lt.jsx)(at.Breadcrumb,{className:d("flex items-center mb-0 gap-1.5",t),...o,children:e}),yr=({children:e,href:t,className:o,...r})=>(0,Lt.jsx)(at.Link,{href:t,className:d("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}),Fn=({className:e})=>(0,Lt.jsx)(zn.ChevronRight,{size:14,className:d("shrink-0 text-text-dim",e)})});var Gn,Wn,_n=w(()=>{"use strict";a();N();Gn=require("react/jsx-runtime"),Wn=({children:e,className:t,vertical:o=!1})=>(0,Gn.jsx)("div",{className:d("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 lt,it,Rr,Nr=w(()=>{"use strict";"use client";a();lt=I(require("react-aria-components"));N();it=require("react/jsx-runtime"),Rr=({children:e,className:t,showArrow:o,...r})=>(0,it.jsxs)(lt.Popover,{offset:8,...r,className:lt.composeRenderProps(t,n=>d("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,it.jsx)(lt.OverlayArrow,{className:"group",children:(0,it.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,it.jsx)("path",{d:"M0 0 L6 6 L12 0"})})}),e]})});function tt(e){let[t,o]=Pr.default.Children.toArray(e.children).slice(0,2);return(0,D.jsxs)(V.MenuTrigger,{...e,children:[t,(0,D.jsx)(Rr,{placement:e.placement,className:"min-w-[200px]",children:o})]})}function _a(e){let[t,o]=Pr.default.Children.toArray(e.children).slice(0,2);return(0,D.jsxs)(V.SubmenuTrigger,{...e,children:[t,(0,D.jsx)(Rr,{offset:-4,crossOffset:-4,children:o})]})}function ot(e){return(0,D.jsx)(V.Menu,{...e,className:V.composeRenderProps(e.className,t=>d("p-1.5 outline-none max-h-[inherit] overflow-auto",t))})}function Re(e){let t=e.textValue||(typeof e.children=="string"?e.children:void 0);return(0,D.jsx)(V.MenuItem,{...e,textValue:t,className:V.composeRenderProps(e.className,(o,{isFocused:r,isPressed:n,isDisabled:s})=>d("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,D.jsxs)(D.Fragment,{children:[r!=="none"&&(0,D.jsxs)("span",{className:"flex items-center w-4 h-4 shrink-0 justify-center",children:[n&&r==="multiple"&&(0,D.jsx)(ct.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,D.jsx)(ct.Dot,{className:"w-6 h-6 text-primary-500 animate-in zoom-in-50 duration-200"})]}),(0,D.jsx)("div",{className:"flex-1 flex flex-row items-center gap-2.5 truncate font-medium",children:o}),s&&(0,D.jsx)(ct.ChevronRight,{className:"w-4 h-4 ml-auto text-text-muted group-focused:text-primary-500/70 transition-colors"})]}))})}function Ua({title:e,...t}){return(0,D.jsxs)(V.MenuSection,{...t,className:d("flex flex-col gap-0.5",t.className),children:[e&&(0,D.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,D.jsx)(V.Collection,{items:t.items,children:t.children})]})}function ja(e){return(0,D.jsx)(V.Separator,{...e,className:"mx-2 my-1.5 border-t border-border-subtle/50"})}var ct,Pr,V,D,Ie,wo=w(()=>{"use strict";"use client";a();ct=require("lucide-react"),Pr=I(require("react")),V=I(require("react-aria-components"));Nr();N();D=require("react/jsx-runtime");Ie={Root:ot,Item:Re,Trigger:tt,SubTrigger:_a,Section:Ua,Separator:ja}});var rt,Ro=w(()=>{"use strict";a();Co();Tn();mr();fr();gr();hr();xr();Cr();Ft();_n();wo();Nr();Xo();qe();rt=require("react-aria-components");N()});function ps(e){let{currentLocale:t,currentVersion:o}=k(),[r,n]=(0,We.useState)(!1),[s,i]=(0,We.useState)(""),[c,l]=(0,We.useState)(null);(0,We.useEffect)(()=>{if(!r||c)return;let m=new ds.Index({preset:"match",tokenize:"full",resolution:9,cache:!0});for(let u of Tr.default)m.add(u.id,`${u.title} ${u.content}`);l(m)},[r,c]);let p=(0,We.useMemo)(()=>{if(!s)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 m=c.search(s,{limit:20,suggest:!0}),u=[],g=new Set;for(let h of m){let x=Tr.default.find(T=>T.id===h);if(!x)continue;let v=!t||x.locale===t,f=!o||x.version===o;!v||!f||g.has(x.url)||(g.add(x.url),u.push({id:x.url,title:x.title,path:x.url,bio:x.display,groupTitle:x.display.split(" > ")[0],isHeading:x.url.includes("#")}))}return u.slice(0,10)},[s,c,t,o,e]);return{isOpen:r,setIsOpen:n,query:s,setQuery:i,list:p,input:{value:s,onChange:m=>i(m.target.value)}}}var We,ds,Tr,us=w(()=>{"use strict";a();We=require("react"),ds=require("flexsearch");ee();Tr=I(require("virtual:boltdocs-search"))});var gs={};zo(gs,{SearchDialog:()=>si});function si({routes:e}){let{isOpen:t,setIsOpen:o,query:r,setQuery:n,list:s}=ps(e),i=(0,fs.useNavigate)();(0,So.useEffect)(()=>{let l=p=>{(/Mac/.test(navigator.userAgent)?p.metaKey:p.ctrlKey)&&(p.key==="k"||p.key==="j")&&(p.preventDefault(),o(g=>!g))};return window.addEventListener("keydown",l),()=>window.removeEventListener("keydown",l)},[o]);let c=(0,So.useCallback)(l=>{let p=String(l);if(o(!1),p.includes("#")){let[m,u]=p.split("#");i(m),setTimeout(()=>{let g=document.getElementById(u);g&&g.scrollIntoView({behavior:"smooth"})},100)}else i(p)},[i,o]);return(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(q.SearchTrigger,{onPress:()=>o(!0)}),(0,X.jsx)(or,{isOpen:t,onOpenChange:o,children:(0,X.jsxs)(rr,{onSelectionChange:c,children:[(0,X.jsx)(nr,{value:r,onChange:l=>n(l.target.value)}),(0,X.jsx)(sr,{items:s,children:l=>(0,X.jsxs)(ar,{onPress:()=>c(l.id),textValue:l.title,children:[(0,X.jsx)(ir,{isHeading:l.isHeading}),(0,X.jsxs)("div",{className:"flex flex-col justify-center gap-0.5",children:[(0,X.jsx)(lr,{children:l.title}),(0,X.jsx)(cr,{children:l.bio})]})]},l.id)})]})})]})}var So,fs,X,bs=w(()=>{"use strict";a();So=require("react");us();mr();Co();fs=require("react-router-dom"),X=require("react/jsx-runtime")});var ui={};zo(ui,{Admonition:()=>be,Badge:()=>Qt,Breadcrumbs:()=>Oo,Button:()=>Wt,Card:()=>eo,Cards:()=>Yt,Caution:()=>io,CodeBlock:()=>ve,ComponentPreview:()=>vo,ComponentProps:()=>xo,CopyMarkdown:()=>mt,Danger:()=>no,DefaultLayout:()=>Es,DocsLayout:()=>$e,ErrorBoundary:()=>ht,Field:()=>go,FileTree:()=>uo,Head:()=>Eo,Image:()=>ho,Important:()=>ao,InfoBox:()=>so,Link:()=>bo,List:()=>mo,Loading:()=>To,Navbar:()=>Bo,NotFound:()=>yt,Note:()=>to,OnThisPage:()=>Mo,PageNav:()=>Do,ProgressBar:()=>Ho,Sidebar:()=>Ao,Tab:()=>Xt,Table:()=>fo,Tabs:()=>Zt,Tip:()=>oo,Video:()=>Jt,Warning:()=>ro,createBoltdocsApp:()=>Jn,defineSandbox:()=>qo,embedSandbox:()=>sn,openSandbox:()=>_t,useConfig:()=>H,useMdxComponents:()=>Ke,useRoutes:()=>k,useTheme:()=>De});module.exports=Ws(ui);a();a();var K=I(require("react")),Xn=I(require("react-dom/client")),ce=require("react-router-dom");a();var Hr=require("lucide-react");qe();var ke=require("react/jsx-runtime");function yt(){return(0,ke.jsx)("div",{className:"flex items-center justify-center min-h-[60vh] text-center",children:(0,ke.jsxs)("div",{className:"space-y-4",children:[(0,ke.jsx)("span",{className:"text-8xl font-black tracking-tighter text-primary-500/20",children:"404"}),(0,ke.jsx)("h1",{className:"text-2xl font-bold text-text-main",children:"Page Not Found"}),(0,ke.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,ke.jsxs)(Z,{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,ke.jsx)(Hr.ArrowLeft,{size:16})," Go to Home"]})]})})}a();var pe=require("react"),Fr=require("react/jsx-runtime"),zr=(0,pe.createContext)(void 0);function $r({children:e}){let[t,o]=(0,pe.useState)("system"),[r,n]=(0,pe.useState)("dark"),[s,i]=(0,pe.useState)(!1);(0,pe.useEffect)(()=>{i(!0);let l=localStorage.getItem("boltdocs-theme"),p=l==="light"||l==="dark"||l==="system"?l:"system";o(p);let m=window.matchMedia("(prefers-color-scheme: dark)");((h,x)=>{n(h==="system"?x?"dark":"light":h)})(p,m.matches);let g=h=>{n(x=>(localStorage.getItem("boltdocs-theme")||"system")==="system"?h.matches?"dark":"light":x)};return m.addEventListener("change",g),()=>m.removeEventListener("change",g)},[]),(0,pe.useEffect)(()=>{if(!s)return;let l=window.matchMedia("(prefers-color-scheme: dark)").matches,p=t==="system"?l?"dark":"light":t;n(p);let m=document.documentElement;p==="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,Fr.jsx)(zr.Provider,{value:{theme:t,resolvedTheme:r,setTheme:c},children:e})}function De(){let e=(0,pe.use)(zr);if(e===void 0)throw new Error("useTheme must be used within a ThemeProvider");return e}var pt=I(require("virtual:boltdocs-layout"));Ot();a();var Wr=require("react"),Gr=require("react-aria-components"),Vt=require("react-router-dom"),Ur=require("react/jsx-runtime");function _r({children:e}){let t=(0,Vt.useNavigate)();return(0,Ur.jsx)(Gr.RouterProvider,{navigate:(o,r)=>{(0,Wr.startTransition)(()=>{t(o,r)})},useHref:Vt.useHref,children:e})}de();a();var jr=require("react"),qr=require("react-router-dom");function Kr(){let{pathname:e,hash:t}=(0,qr.useLocation)();return(0,jr.useLayoutEffect)(()=>{let o=document.querySelector(".boltdocs-content");if(o){if(t){let r=t.replace("#",""),n=document.getElementById(r);if(n){let i=o.getBoundingClientRect().top,p=n.getBoundingClientRect().top-i-80+o.scrollTop;o.scrollTo({top:p,behavior:"smooth"});return}}o.scrollTo(0,0)}},[e,t]),null}a();var Xr=require("react-router-dom"),Zr=I(require("virtual:boltdocs-layout")),_o=require("react/jsx-runtime");function Jr(){return(0,_o.jsx)(Zr.default,{children:(0,_o.jsx)(Xr.Outlet,{})})}a();var tn=require("@mdx-js/react");a();var Ht=require("react"),en=require("react/jsx-runtime"),Qr=(0,Ht.createContext)({});function Ke(){return(0,Ht.useContext)(Qr)}function Yr({components:e,children:t}){return(0,en.jsx)(Qr.Provider,{value:e,children:t})}var Uo=require("react/jsx-runtime");function on({Component:e}){let t=Ke();return(0,Uo.jsx)(tn.MDXProvider,{components:t,children:(0,Uo.jsx)(e,{})})}a();var qn=require("lucide-react");var wr={};zo(wr,{Admonition:()=>be,Badge:()=>Qt,Button:()=>Wt,Card:()=>eo,Cards:()=>Yt,Caution:()=>io,CodeBlock:()=>ve,ComponentPreview:()=>vo,ComponentProps:()=>xo,CopyMarkdown:()=>mt,Danger:()=>no,Field:()=>go,FileTree:()=>uo,Image:()=>ho,Important:()=>ao,InfoBox:()=>so,Link:()=>bo,List:()=>mo,Note:()=>to,Tab:()=>Xt,Table:()=>fo,Tabs:()=>Zt,Tip:()=>oo,Video:()=>Jt,Warning:()=>ro});a();a();Ft();N();var nn=require("react/jsx-runtime"),Wt=({className:e,variant:t,size:o,rounded:r,iconSize:n,disabled:s,...i})=>(0,nn.jsx)(fe,{className:d("group",zt({variant:t,size:o,rounded:r,iconSize:n,disabled:s,className:e})),...i});a();var qt=I(require("react-aria-components")),Kt=require("lucide-react");N();a();de();a();var Gt=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",i={};for(let[c,l]of Object.entries(t)){let p=typeof l.content=="object"?JSON.stringify(l.content,null,2):l.content;i[c]={content:p,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:s,type:"module",version:"1.0.0",scripts:e.scripts||l,dependencies:o,devDependencies:r},null,2),isBinary:!1}}return i}function qo(e){let t=jo(e),o=(0,Gt.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,Gt.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 p=document.createElement("input");p.type="hidden",p.name=c,p.value=l,n.appendChild(p)},i=new URLSearchParams({file:`/${r}`,eslint:"0",codemirror:"1",installDependencies:"true"});return s("query",i.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 sn(e){let t=jo(e),o=(0,Gt.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}}a();var an=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 ge=require("react");function ln(e){let{title:t,sandbox:o}=e,[r,n]=(0,ge.useState)(!1),[s,i]=(0,ge.useState)(!1),[c,l]=(0,ge.useState)(!1),p=(0,ge.useRef)(null),m=H(),u=(0,ge.useCallback)(async()=>{let h=p.current?.textContent??"";an(h),n(!0),setTimeout(()=>n(!1),2e3)},[]),g=(0,ge.useCallback)(()=>{let h=p.current?.textContent??"",x=m?.integrations?.sandbox?.config||{},v=typeof o=="object"?o:x,f=v.entry||"src/App.tsx";_t({title:t??"Code Snippet",...v,files:{...v.files,[f]:{content:h}}})},[t,m,o]);return(0,ge.useEffect)(()=>{let h=p.current?.textContent?.length??0;l(h>120)},[e.children,e.highlightedHtml]),{copied:r,isExpanded:s,setIsExpanded:i,isExpandable:c,preRef:p,handleCopy:u,handleSandbox:g,shouldTruncate:c&&!s}}de();jt();Xo();var j=require("react/jsx-runtime");function ve(e){let{children:t,sandbox:o,hideSandbox:r=!0,hideCopy:n=!1,highlightedHtml:s,...i}=e,p=!!H()?.integrations?.sandbox?.enable&&!r,{copied:m,isExpanded:u,setIsExpanded:g,isExpandable:h,preRef:x,handleCopy:v,handleSandbox:f,shouldTruncate:T}=ln(e);return(0,j.jsxs)("div",{className:d("group relative my-6 overflow-hidden rounded-lg border border-border-subtle bg-(--color-code-bg)",T&&"[&>pre]:max-h-[250px] [&>pre]:overflow-hidden"),children:[(0,j.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:[p&&(0,j.jsx)(Ko,{content:"Open in CodeSandbox",children:(0,j.jsx)(qt.Button,{onPress:f,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,j.jsx)(dn,{size:20})})}),!n&&(0,j.jsx)(Ko,{content:m?"Copied!":"Copy code",children:(0,j.jsx)(qt.Button,{onPress:v,className:d("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,j.jsx)(Kt.Check,{size:20}):(0,j.jsx)(Kt.Copy,{size:20})})})]}),s?(0,j.jsx)("div",{ref:x,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,j.jsx)("pre",{ref:x,className:"m-0! rounded-none! border-none! bg-inherit! font-mono text-[0.8125rem] leading-[1.7]",...i,children:t}),h&&(0,j.jsx)("div",{className:d(T?"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,j.jsx)(qt.Button,{onPress:()=>g(!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"})})]})}a();var Ze=require("react"),Ve=I(require("react-aria-components"));a();var Le=require("react");function un({initialIndex:e=0,tabs:t}){let o=t[e]?.props.disabled?t.findIndex(p=>!p.props.disabled):e,[r,n]=(0,Le.useState)(o===-1?0:o),s=(0,Le.useRef)([]),[i,c]=(0,Le.useState)({opacity:0,transform:"translateX(0)",width:0});(0,Le.useEffect)(()=>{let p=s.current[r];p&&c({opacity:1,width:p.offsetWidth,transform:`translateX(${p.offsetLeft}px)`})},[r,t]);let l=(0,Le.useCallback)(p=>{let m=0;if(p.key==="ArrowRight"?m=1:p.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:i,handleKeyDown:l}}N();var Zo=require("class-variance-authority"),te=require("react/jsx-runtime"),js=(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"}}),qs=(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 Xt({children:e}){let t=typeof e=="string"?(0,te.jsx)(ve,{className:"language-bash",children:(0,te.jsx)("code",{children:e.trim()})}):e;return(0,te.jsx)("div",{className:"py-4",children:t})}function Zt({defaultIndex:e=0,children:t}){let o=(0,Ze.useMemo)(()=>Ze.Children.toArray(t).filter(c=>(0,Ze.isValidElement)(c)&&c.props?.label),[t]),{active:r,setActive:n,tabRefs:s,indicatorStyle:i}=un({initialIndex:e,tabs:o});return(0,te.jsx)("div",{className:"my-8 w-full group/tabs",children:(0,te.jsxs)(Ve.Tabs,{selectedKey:r.toString(),onSelectionChange:c=>n(Number(c)),className:"w-full",children:[(0,te.jsxs)(Ve.TabList,{"aria-label":"Content Tabs",className:d(js()),children:[o.map((c,l)=>{let{label:p,icon:m,disabled:u}=c.props,g=l.toString();return(0,te.jsxs)(Ve.Tab,{id:g,isDisabled:u,ref:h=>{s.current[l]=h},className:({isSelected:h,isDisabled:x})=>d(qs({isActive:h,isDisabled:x})),children:[!!m&&(0,te.jsx)("span",{className:"shrink-0 [&>svg]:w-4 [&>svg]:h-4",children:m}),(0,te.jsx)("span",{children:p})]},g)}),(0,te.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,te.jsx)(Ve.TabPanel,{id:l.toString(),children:o[l]},l))]})})}a();var Je=require("react"),Rt=require("react/jsx-runtime");function Jt({src:e,poster:t,alt:o,children:r,controls:n,preload:s="metadata",...i}){let c=(0,Je.useRef)(null),[l,p]=(0,Je.useState)(!1);return(0,Je.useEffect)(()=>{let m=c.current;if(!m)return;let u=new IntersectionObserver(([g])=>{g.isIntersecting&&(p(!0),u.disconnect())},{rootMargin:"200px"});return u.observe(m),()=>u.disconnect()},[]),(0,Rt.jsx)("div",{ref:c,className:"my-6 overflow-hidden rounded-lg border border-border-subtle",children:l?(0,Rt.jsxs)("video",{className:"block w-full h-auto",src:e,poster:t,controls:!0,preload:s,playsInline:!0,...i,children:[r,"Your browser does not support the video tag."]}):(0,Rt.jsx)("div",{className:"aspect-video bg-bg-surface animate-pulse",role:"img","aria-label":o||"Video"})})}a();N();var fn=require("class-variance-authority"),gn=require("react/jsx-runtime"),Ks=(0,fn.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,gn.jsx)("span",{className:d(Ks({variant:e}),o),...r,children:t})}a();var Nt=require("react"),bn=I(require("react-aria-components"));N();var hn=require("class-variance-authority"),oe=require("react/jsx-runtime"),Xs=(0,hn.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 Yt({cols:e=3,children:t,className:o="",...r}){return(0,oe.jsx)("div",{className:d(Xs({cols:e}),o),...r,children:t})}function eo({title:e,icon:t,href:o,children:r,className:n="",...s}){let i=(0,Nt.useRef)(null),c=(0,Nt.useRef)(null),l=(0,Nt.useCallback)(u=>{let g=i.current||c.current;if(!g)return;let{left:h,top:x}=g.getBoundingClientRect();g.style.setProperty("--x",`${u.clientX-h}px`),g.style.setProperty("--y",`${u.clientY-x}px`)},[]),p=(0,oe.jsxs)(oe.Fragment,{children:[(0,oe.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,oe.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,oe.jsxs)("div",{className:"space-y-1.5",children:[e&&(0,oe.jsx)("h3",{className:"text-sm font-bold text-text-main",children:e}),r&&(0,oe.jsx)("div",{className:"text-sm text-text-muted leading-relaxed",children:r})]})]}),m=d("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,oe.jsx)(bn.Link,{ref:c,href:o,className:d(m,"no-underline cursor-pointer"),onMouseMove:l,...s,children:p}):(0,oe.jsx)("div",{ref:i,role:"presentation",className:m,onMouseMove:l,...s,children:p})}a();var J=require("lucide-react");N();var vn=require("class-variance-authority"),E=require("react/jsx-runtime"),Zs={note:(0,E.jsx)(J.Bookmark,{size:18}),tip:(0,E.jsx)(J.Lightbulb,{size:18}),info:(0,E.jsx)(J.Info,{size:18}),warning:(0,E.jsx)(J.AlertTriangle,{size:18}),danger:(0,E.jsx)(J.ShieldAlert,{size:18}),important:(0,E.jsx)(J.Flame,{size:18}),caution:(0,E.jsx)(J.Zap,{size:18})},Js={note:"Note",tip:"Tip",info:"Info",warning:"Warning",danger:"Danger",important:"Important",caution:"Caution"},xn=(0,vn.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 be({type:e="note",title:t,children:o,className:r="",...n}){return(0,E.jsxs)("div",{className:d(xn({type:e}),r),role:e==="warning"||e==="danger"?"alert":"note",...n,children:[(0,E.jsxs)("div",{className:"flex items-center flex-row gap-2 mb-2",children:[(0,E.jsx)("span",{className:d("shrink-0",xn({type:e})),children:Zs[e]}),(0,E.jsx)("span",{className:"text-sm font-bold tracking-tight text-text-main",children:t||Js[e]})]}),(0,E.jsx)("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 [&>p]:mb-2 [&>p:last-child]:mb-0",children:o})]})}var to=e=>(0,E.jsx)(be,{type:"note",...e}),oo=e=>(0,E.jsx)(be,{type:"tip",...e}),ro=e=>(0,E.jsx)(be,{type:"warning",...e}),no=e=>(0,E.jsx)(be,{type:"danger",...e}),so=e=>(0,E.jsx)(be,{type:"info",...e}),ao=e=>(0,E.jsx)(be,{type:"important",...e}),io=e=>(0,E.jsx)(be,{type:"caution",...e});a();var lo=require("react"),Qe=require("lucide-react");N();var co=require("class-variance-authority"),he=require("react/jsx-runtime"),Qs=(0,co.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}}),Ys=(0,co.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}}),ea=(0,co.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 ta({icon:e,children:t,variant:o,dense:r}){return(0,he.jsxs)("li",{className:d(Ys({variant:o,dense:r})),children:[e&&(0,he.jsx)("span",{className:d(ea({variant:o==="bubble"?"bubble":"default"})),children:e}),(0,he.jsx)("div",{className:"flex-1 text-text-muted group-hover:text-text-main transition-colors",children:t})]})}var oa={checked:e=>(0,he.jsx)(Qe.Check,{size:14,className:d("text-emerald-500 shrink-0",e)}),arrow:e=>(0,he.jsx)(Qe.ChevronRight,{size:14,className:d("text-primary-400 shrink-0",e)}),bubble:e=>(0,he.jsx)(Qe.Circle,{size:6,fill:"currentColor",className:d("text-primary-500 shrink-0",e)}),default:()=>null,number:()=>null};function mo({variant:e="default",cols:t=1,dense:o=!1,children:r,className:n,...s}){let i=t!==void 0&&Number(t)>1,c=oa[e],l=Qs({variant:e,cols:t,dense:o,isGrid:i,className:n}),p=e==="number"?"ol":"ul";return e==="default"||e==="number"?(0,he.jsx)(p,{className:l,...s,children:r}):(0,he.jsx)("ul",{className:l,...s,children:lo.Children.map(r,m=>{if(!(0,lo.isValidElement)(m))return m;let u=m,g=u.type==="li"?u.props.children:u.props.children||m;return(0,he.jsx)(ta,{icon:c(),variant:e,dense:o,children:g})})})}a();var ye=require("react"),Ce=I(require("react-aria-components")),ae=require("lucide-react");N();var O=require("react/jsx-runtime"),Pt=16,wt=2,Jo={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,ye.isValidElement)(e)&&e.props&&typeof e.props=="object"&&"children"in e.props?Yo(e.props.children):""}function ra(e,t){let o=e.toLowerCase(),r="shrink-0 transition-colors duration-200";if(t)return(0,O.jsx)(ae.Folder,{size:Pt,strokeWidth:wt,className:d(r,"text-primary-400"),fill:"currentColor",fillOpacity:.15});let n=d(r,"text-text-dim group-hover:text-text-main");return Jo.CODE.test(o)?(0,O.jsx)(ae.FileCode,{size:Pt,strokeWidth:wt,className:n}):Jo.TEXT.test(o)?(0,O.jsx)(ae.FileText,{size:Pt,strokeWidth:wt,className:n}):Jo.IMAGE.test(o)?(0,O.jsx)(ae.FileImage,{size:Pt,strokeWidth:wt,className:n}):(0,O.jsx)(ae.File,{size:Pt,strokeWidth:wt,className:n})}function Qo(e,t){if(!(0,ye.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 na(e){let t=e.match(/\s+(\/\/|#)\s+(.*)$/);return t?{name:e.slice(0,t.index).trim(),comment:t[2]}:{name:e.trim()}}function po(e,t="root"){if(!(0,ye.isValidElement)(e))return[];let o=[];if(Qo(e,"ul"))return ye.Children.forEach(e.props.children,(r,n)=>{o.push(...po(r,`${t}-${n}`))}),o;if(Qo(e,"li")){let r=ye.Children.toArray(e.props.children),n=r.findIndex(x=>Qo(x,"ul")),s=n!==-1,i=s?r.slice(0,n):r,c=s?r.slice(n):[],l=Yo(i),{name:p,comment:m}=na(l),u=p.endsWith("/"),g=u?p.slice(0,-1):p,h=s||u;return o.push({id:`${t}-${g}`,name:g,comment:m,isFolder:h,children:s?po(c[0],`${t}-${g}`):void 0}),o}return e.props&&typeof e.props=="object"&&"children"in e.props&&ye.Children.forEach(e.props.children,(r,n)=>{o.push(...po(r,`${t}-${n}`))}),o}function yn({item:e}){return(0,O.jsxs)(Ce.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,O.jsx)(Ce.TreeItemContent,{children:({isExpanded:t,hasChildItems:o})=>(0,O.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,O.jsx)("div",{style:{width:"calc((var(--tree-item-level) - 1) * 1rem)"},className:"shrink-0"}),o?(0,O.jsx)(Ce.Button,{slot:"chevron",className:"outline-none text-text-dim hover:text-primary-400 p-0.5 rounded transition-colors",children:(0,O.jsx)(ae.ChevronRight,{size:14,strokeWidth:3,className:d("transition-transform duration-200",t&&"rotate-90")})}):(0,O.jsx)("div",{className:"w-[18px]"}),ra(e.name,e.isFolder),(0,O.jsx)("span",{className:d("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,O.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,O.jsx)(Ce.Collection,{items:e.children,children:t=>(0,O.jsx)(yn,{item:t})})]})}function uo({children:e}){let t=(0,ye.useMemo)(()=>po(e),[e]);return(0,O.jsx)("div",{className:"my-8",children:(0,O.jsx)(Ce.Tree,{items:t,"aria-label":"File Tree",className:d("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,O.jsx)(yn,{item:o})})})}a();var Tt=I(require("react-aria-components"));a();var Ye=require("react");function Cn({data:e,sortable:t=!1,paginated:o=!1,pageSize:r=10}){let[n,s]=(0,Ye.useState)(null),[i,c]=(0,Ye.useState)(1),l=(0,Ye.useMemo)(()=>{if(!e)return[];let g=[...e];return t&&n!==null&&g.sort((h,x)=>{let v=h[n.key],f=x[n.key],T=typeof v=="string"?v:"",Q=typeof f=="string"?f:"";return T<Q?n.direction==="asc"?-1:1:T>Q?n.direction==="asc"?1:-1:0}),g},[e,n,t]),p=Math.ceil(l.length/r),m=(0,Ye.useMemo)(()=>{if(!o)return l;let g=(i-1)*r;return l.slice(g,g+r)},[l,o,i,r]);return{sortConfig:n,currentPage:i,setCurrentPage:c,totalPages:p,paginatedData:m,requestSort:g=>{if(!t)return;let h="asc";n&&n.key===g&&n.direction==="asc"&&(h="desc"),s({key:g,direction:h})}}}var re=require("lucide-react");N();var P=require("react/jsx-runtime");function fo({headers:e,data:t,children:o,className:r="",sortable:n=!1,paginated:s=!1,pageSize:i=10}){let{sortConfig:c,currentPage:l,setCurrentPage:p,totalPages:m,paginatedData:u,requestSort:g}=Cn({data:t,sortable:n,paginated:s,pageSize:i}),h=v=>n?c?.key!==v?(0,P.jsx)(re.ChevronDown,{size:14,className:"ml-1 opacity-30"}):c.direction==="asc"?(0,P.jsx)(re.ChevronUp,{size:14,className:"ml-1 text-primary-400"}):(0,P.jsx)(re.ChevronDown,{size:14,className:"ml-1 text-primary-400"}):null,x=o||(0,P.jsxs)(P.Fragment,{children:[e&&(0,P.jsx)("thead",{children:(0,P.jsx)("tr",{children:e.map((v,f)=>(0,P.jsx)("th",{onClick:()=>g(f),className:d("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,P.jsxs)("div",{className:"flex items-center",children:[v,h(f)]})},f))})}),u&&(0,P.jsx)("tbody",{children:u.map((v,f)=>(0,P.jsx)("tr",{className:"transition-colors hover:bg-bg-surface",children:v.map((T,Q)=>(0,P.jsx)("td",{className:"px-3 py-2 border-b border-border-subtle text-sm text-text-muted",children:T},Q))},f))})]});return(0,P.jsxs)("div",{className:d("my-6 rounded-lg border border-border-subtle overflow-hidden",r),children:[(0,P.jsx)("div",{className:"overflow-x-auto",children:(0,P.jsx)("table",{className:"w-full border-collapse text-sm",children:x})}),s&&m>1&&(0,P.jsxs)("div",{className:"flex items-center justify-between border-t border-border-subtle px-4 py-3",children:[(0,P.jsxs)("span",{className:"text-xs text-text-muted",children:["Page ",l," of ",m]}),(0,P.jsxs)("div",{className:"flex items-center gap-1",children:[(0,P.jsx)(Tt.Button,{onPress:()=>p(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,P.jsx)(re.ChevronsLeft,{size:16})}),(0,P.jsx)(Tt.Button,{onPress:()=>p(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,P.jsx)(re.ChevronLeft,{size:16})}),(0,P.jsx)(Tt.Button,{onPress:()=>p(v=>Math.min(v+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,P.jsx)(re.ChevronRight,{size:16})}),(0,P.jsx)(Tt.Button,{onPress:()=>p(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,P.jsx)(re.ChevronsRight,{size:16})})]})]})]})}a();N();var ne=require("react/jsx-runtime");function go({name:e,type:t,defaultValue:o,required:r=!1,children:n,id:s,className:i=""}){return(0,ne.jsxs)("article",{className:d("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:s,children:[(0,ne.jsxs)("div",{className:"flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between mb-4",children:[(0,ne.jsxs)("div",{className:"flex flex-wrap items-center gap-2.5",children:[(0,ne.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,ne.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,ne.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,ne.jsx)("span",{className:"h-1 w-1 rounded-full bg-red-400 animate-pulse"}),"Required"]})]}),o&&(0,ne.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,ne.jsx)("span",{className:"font-semibold opacity-60 uppercase tracking-tighter",children:"Default"}),(0,ne.jsx)("code",{className:"font-mono text-text-main font-medium",children:o})]})]}),(0,ne.jsx)("div",{className:"text-sm text-text-muted leading-relaxed [&>p]:m-0 selection:bg-primary-500/30",children:n})]})}a();qe();N();var Rn=require("react/jsx-runtime");function bo({to:e,children:t,className:o="",...r}){let n=e&&(e.startsWith("http://")||e.startsWith("https://")||e.startsWith("//")),s=d("text-blue-600 hover:text-blue-800 hover:underline cursor-pointer",o);return(0,Rn.jsx)(Z,{href:e,className:s,target:n?"_blank":void 0,rel:n?"noopener noreferrer":void 0,...r,children:t})}a();var Nn=require("react/jsx-runtime");function ho({src:e,alt:t,theme:o,...r}){let{theme:n}=De();return o&&o!==n?null:(0,Nn.jsx)("img",{src:e,alt:t||"",...r})}a();N();var A=require("react/jsx-runtime");function xo({title:e,props:t,className:o=""}){return(0,A.jsxs)("div",{className:d("my-6",o),children:[e&&(0,A.jsx)("h3",{className:"text-base font-bold text-text-main mb-3",children:e}),(0,A.jsx)("div",{className:"overflow-x-auto rounded-lg border border-border-subtle",children:(0,A.jsxs)("table",{className:"w-full border-collapse text-sm",children:[(0,A.jsx)("thead",{children:(0,A.jsxs)("tr",{children:[(0,A.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,A.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,A.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,A.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,A.jsx)("tbody",{children:t.map((r,n)=>(0,A.jsxs)("tr",{className:"transition-colors hover:bg-bg-surface",children:[(0,A.jsxs)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:[(0,A.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,A.jsx)("span",{className:"ml-1 text-red-400 font-bold",children:"*"})]}),(0,A.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:(0,A.jsx)("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-text-muted",children:r.type})}),(0,A.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle",children:r.defaultValue?(0,A.jsx)("code",{className:"rounded bg-bg-muted px-1.5 py-0.5 font-mono text-xs text-primary-400",children:r.defaultValue}):(0,A.jsx)("span",{className:"text-text-dim",children:"\u2014"})}),(0,A.jsx)("td",{className:"px-4 py-2.5 border-b border-border-subtle text-text-muted",children:r.description})]},`${r.name}-${n}`))})]})})]})}a();a();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 et=require("react/jsx-runtime");function vo(e){let{highlightedHtml:t,hideCode:o=!1,hideSandbox:r=!1,hideCopy:n=!1,sandboxOptions:s={}}=e,{initialCode:i,previewElement:c}=Pn(e);return(0,et.jsxs)("div",{className:"my-6 overflow-hidden rounded-xl border border-border-subtle",children:[(0,et.jsx)("div",{className:"flex items-center justify-center p-8 bg-bg-surface",children:c}),!o&&(0,et.jsx)("div",{className:"border-t border-border-subtle",children:(0,et.jsx)(ve,{hideSandbox:r,hideCopy:n,title:s.title,lang:"tsx",highlightedHtml:t,children:i})})]})}a();var Un=require("react"),Be=require("lucide-react");Ro();var $=require("react/jsx-runtime"),qa=e=>{let[t,o]=(0,Un.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"}),i=URL.createObjectURL(s);window.open(i,"_blank")}}};function mt({content:e,mdxRaw:t,config:o}){let r=t||e||"",{copied:n,handleCopy:s,handleOpenRaw:i}=qa(r),c=o!==!1,l=typeof o=="object"&&o.text||"Copy Markdown";return!c||!r?null:(0,$.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,$.jsxs)(Wn,{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,$.jsx)(fe,{variant:"ghost",onPress:s,icon:n?(0,$.jsx)(Be.Check,{size:16}):(0,$.jsx)(Be.Copy,{size:16}),iconPosition:"left",className:d("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,$.jsxs)(tt,{placement:"bottom end",children:[(0,$.jsx)(fe,{variant:"ghost",isIconOnly:!0,icon:(0,$.jsx)(Be.ChevronDown,{size:14}),className:d("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,$.jsxs)(ot,{className:"w-52",children:[(0,$.jsxs)(Re,{onAction:s,className:"flex flex-row items-start gap-2.5 group",children:[(0,$.jsx)(Be.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,$.jsx)("span",{className:"font-medium text-[0.8125rem]",children:"Copy Markdown"})]}),(0,$.jsxs)(Re,{onAction:i,className:"flex flex-row items-start gap-2.5 group",children:[(0,$.jsx)(Be.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,$.jsx)("span",{className:"font-medium text-[0.8125rem]",children:"View as Markdown"})]})]})]})]})})}a();N();a();N();var jn=require("react/jsx-runtime");function G({className:e,variant:t="rect",...o}){return(0,jn.jsx)("div",{className:d("animate-pulse bg-bg-muted",t==="circle"?"rounded-full":"rounded-md",e),...o})}var S=require("react/jsx-runtime");function To(){return(0,S.jsx)("div",{className:d("w-full h-full relative overflow-y-auto transition-opacity duration-300 animate-fade-in"),children:(0,S.jsxs)("div",{className:"mx-auto max-w-(--spacing-content-max) px-4 py-8 space-y-10",children:[(0,S.jsxs)("div",{className:"flex gap-2",children:[(0,S.jsx)(G,{className:"h-3 w-16"}),(0,S.jsx)(G,{className:"h-3 w-24"})]}),(0,S.jsx)(G,{className:"h-10 w-[60%] sm:h-12"}),(0,S.jsxs)("div",{className:"space-y-3",children:[(0,S.jsx)(G,{className:"h-4 w-full"}),(0,S.jsx)(G,{className:"h-4 w-[95%]"}),(0,S.jsx)(G,{className:"h-4 w-[40%]"})]}),(0,S.jsxs)("div",{className:"space-y-6 pt-4",children:[(0,S.jsx)(G,{className:"h-7 w-32"}),(0,S.jsxs)("div",{className:"space-y-3",children:[(0,S.jsx)(G,{className:"h-4 w-full"}),(0,S.jsx)(G,{className:"h-4 w-[98%]"}),(0,S.jsx)(G,{className:"h-4 w-[92%]"}),(0,S.jsx)(G,{className:"h-4 w-[60%]"})]})]}),(0,S.jsx)(G,{className:"h-32 w-full rounded-lg bg-bg-muted/50"}),(0,S.jsxs)("div",{className:"space-y-6 pt-4",children:[(0,S.jsx)(G,{className:"h-7 w-48"}),(0,S.jsxs)("div",{className:"space-y-3",children:[(0,S.jsx)(G,{className:"h-4 w-full"}),(0,S.jsx)(G,{className:"h-4 w-[85%]"})]})]})]})})}var le=require("react/jsx-runtime"),dt=({level:e,id:t,children:o,...r})=>{let n=`h${e}`;return(0,le.jsxs)(n,{id:t,...r,className:"boltdocs-heading",children:[o,t&&(0,le.jsx)("a",{href:`#${t}`,className:"header-anchor","aria-label":"Anchor",children:(0,le.jsx)(qn.Link,{size:16})})]})},Kn={...wr,Loading:To,h1:e=>(0,le.jsx)(dt,{level:1,...e}),h2:e=>(0,le.jsx)(dt,{level:2,...e}),h3:e=>(0,le.jsx)(dt,{level:3,...e}),h4:e=>(0,le.jsx)(dt,{level:4,...e}),h5:e=>(0,le.jsx)(dt,{level:5,...e}),h6:e=>(0,le.jsx)(dt,{level:6,...e}),pre:e=>(0,le.jsx)(ve,{...e,children:e.children})};ee();var Zn=require("react-router-dom");xt();var C=require("react/jsx-runtime");function Ka(){let{currentLocale:e,config:t}=k();return(0,K.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 Xa(){let e=(0,Zn.useLocation)(),{config:t}=k(),o=Y(i=>i.setLocale),r=Y(i=>i.setVersion),n=Y(i=>i.currentLocale),s=Y(i=>i.currentVersion);return(0,K.useEffect)(()=>{let i=e.pathname.split("/").filter(Boolean),c=0,l=t.versions?.defaultVersion,p=t.i18n?.defaultLocale;if(i[c]==="docs"&&c++,t.versions&&i.length>c){let m=t.versions.versions.find(u=>u.path===i[c]);m&&(l=m.path,c++)}t.i18n&&i.length>c&&t.i18n.locales[i[c]]?p=i[c]:t.i18n&&i.length===0&&(p=n||t.i18n.defaultLocale),p!==n&&o(p),l!==s&&r(l)},[e.pathname,t,o,r,n,s]),null}function Za({initialRoutes:e,initialConfig:t,docsDirName:o,modules:r,hot:n,homePage:s,externalPages:i,components:c={}}){let[l,p]=(0,K.useState)(e),[m,u]=(0,K.useState)(t),g=i||{},h=(0,K.useMemo)(()=>l.filter(f=>!(s&&(f.path==="/"||f.path===""))&&!g[f.path===""?"/":f.path]).map(f=>{let T=Object.keys(r).find(me=>me===`/${o}/${f.filePath}`||me.endsWith(`/${o}/${f.filePath}`)||me.endsWith(`/${o}\\${f.filePath.replace(/\\/g,"/")}`)),Q=T?r[T]:null;return{...f,Component:K.default.lazy(async()=>Q?await Q():{default:yt})}}),[l,r,o,s,g]);(0,K.useEffect)(()=>{n&&(n.on("boltdocs:routes-update",f=>{p(f)}),n.on("boltdocs:config-update",f=>{u(f)}))},[n]);let x=(0,K.useMemo)(()=>({...Kn,...c}),[c]),v=x.Loading;return(0,C.jsx)($r,{children:(0,C.jsx)(Yr,{components:x,children:(0,C.jsx)($o.Provider,{value:m,children:(0,C.jsx)(_r,{children:(0,C.jsxs)(Ir,{routes:l,modules:r,children:[(0,C.jsx)(Kr,{}),(0,C.jsx)(Xa,{}),(0,C.jsx)(Ka,{}),(0,C.jsxs)(ce.Routes,{children:[(0,C.jsx)(ce.Route,{element:(0,C.jsx)(Jr,{}),children:h.map(f=>(0,C.jsx)(ce.Route,{path:f.path===""?"/":f.path,element:(0,C.jsx)(K.default.Suspense,{fallback:(0,C.jsx)(v,{}),children:(0,C.jsx)(on,{Component:f.Component})})},f.path))},"docs-layout"),s&&(0,C.jsxs)(C.Fragment,{children:[(0,C.jsx)(ce.Route,{path:"/",element:(0,C.jsx)(pt.default,{children:(0,C.jsx)(s,{})})}),m.i18n&&Object.keys(m.i18n.locales).map(f=>(0,C.jsx)(ce.Route,{path:`/${f}`,element:(0,C.jsx)(pt.default,{children:(0,C.jsx)(s,{})})},`home-${f}`))]}),Object.entries(g).map(([f,T])=>{let Q=f==="/"?"":f;return(0,C.jsxs)(K.default.Fragment,{children:[(0,C.jsx)(ce.Route,{path:f,element:(0,C.jsx)(pt.default,{children:(0,C.jsx)(T,{})})}),m.i18n&&Object.keys(m.i18n.locales).map(me=>(0,C.jsx)(ce.Route,{path:`/${me}${Q}`,element:(0,C.jsx)(pt.default,{children:(0,C.jsx)(T,{})})},`${f}-${me}`))]},f)}),(0,C.jsx)(ce.Route,{path:"*",element:(0,C.jsx)(pt.default,{children:(0,C.jsx)(yt,{})})})]})]})})})})})}function Jn(e){let{target:t,routes:o,docsDirName:r,config:n,modules:s,hot:i,homePage:c,externalPages:l,components:p}=e,m=document.querySelector(t);if(!m)throw new Error(`[boltdocs] Mount target "${t}" not found in document.`);let u=(0,C.jsx)(K.default.StrictMode,{children:(0,C.jsx)(ce.BrowserRouter,{children:(0,C.jsx)(Za,{initialRoutes:o,initialConfig:n,docsDirName:r,modules:s,hot:i,homePage:c,externalPages:l,components:p})})});m.innerHTML="",Xn.default.createRoot(m).render(u)}de();ee();a();N();var _e=require("react/jsx-runtime");function Ja({children:e,className:t,style:o}){return(0,_e.jsx)("div",{className:d("h-screen flex flex-col overflow-hidden bg-bg-main text-text-main",t),style:o,children:e})}function Qa({children:e,className:t,style:o}){return(0,_e.jsx)("div",{className:d("mx-auto flex flex-1 w-full max-w-(--breakpoint-3xl) bg-bg-main overflow-hidden",t),style:o,children:e})}function Ya({children:e,className:t,style:o}){return(0,_e.jsx)("main",{className:d("boltdocs-content flex-1 min-w-0 overflow-y-auto",t),style:o,children:(0,_e.jsx)("div",{className:"boltdocs-page mx-auto max-w-content-max pt-4 pb-20 px-4 sm:px-8",children:e})})}function ei({children:e,className:t,style:o}){return(0,_e.jsx)("div",{className:d("flex items-center justify-between mb-10",t),style:o,children:e})}function ti({children:e,className:t,style:o}){return(0,_e.jsx)("div",{className:d("mt-20",t),style:o,children:e})}var $e=Object.assign(Ja,{Body:Qa,Content:Ya,ContentHeader:ei,ContentFooter:ti});a();a();var Io=require("react");a();var Qn=require("react-router-dom");de();a();function Ae(e,t){return e?typeof e=="string"?e:t&&e[t]?e[t]:Object.values(e)[0]||"":""}ee();function Yn(){let e=H(),{theme:t}=De(),o=(0,Qn.useLocation)(),{currentLocale:r}=k(),n=e.theme||{},s=Ae(n.title,r)||"Boltdocs",i=n.navbar||[],c=n.socialLinks||[],l=n.githubRepo,p=i.map(x=>{let v=x.href||x.to||x.link||"";return{label:Ae(x.label||x.text,r),href:v,active:o.pathname===v,to:v.startsWith("http")||v.startsWith("//")?"external":void 0,items:x.items?.map(f=>({label:Ae(f.label||f.text,r),href:f.href||f.link||f.to||""}))}}),m=n.logo,u=m?typeof m=="string"?m:t==="dark"?m.dark:m.light:null,g={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:p,title:s,logo:u,logoProps:g,github:h,social:c,config:e,theme:t}}a();var es=require("react-router-dom");a();function Fe(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();xt();function ts(){let e=(0,es.useNavigate)(),t=k(),{allRoutes:o,currentRoute:r,currentVersion:n,currentLocale:s,config:i}=t,c=i.versions,l=Y(u=>u.setVersion),p=u=>{if(!c||u===n)return;l(u);let g=`/docs/${u}`;if(r){let h=Fe(r.filePath,r.version,r.locale),x=o.find(v=>Fe(v.filePath,v.version,v.locale)===h&&(v.version||c.defaultVersion)===u&&(s?v.locale===s:!v.locale));if(x)g=x.path;else{let v=o.find(f=>Fe(f.filePath,f.version,f.locale)==="index.md"&&(f.version||c.defaultVersion)===u&&(s?f.locale===s:!f.locale));g=v?v.path:`/docs/${u}${s?`/${s}`:""}`}}e(g)},m=t.availableVersions.map(u=>({...u,label:u.label,value:u.key}));return{currentVersion:n,currentVersionLabel:t.currentVersionLabel,availableVersions:m,handleVersionChange:p}}a();var os=require("react-router-dom");ee();xt();function rs(){let e=(0,os.useNavigate)(),t=k(),{allRoutes:o,currentRoute:r,currentLocale:n,config:s}=t,i=s.i18n,c=Y(g=>g.setLocale),l=g=>{if(!i||g===n)return;c(g);let h="/";if(r){let x=Fe(r.filePath,r.version,r.locale),v=o.find(f=>Fe(f.filePath,f.version,f.locale)===x&&(f.locale||i.defaultLocale)===g&&f.version===r.version);if(v)h=v.path;else{let f=o.find(T=>Fe(T.filePath,T.version,T.locale)==="index.md"&&(T.locale||i.defaultLocale)===g&&T.version===r.version);h=f?f.path:g===i.defaultLocale?r.version?`/${r.version}`:"/":r.version?`/${r.version}/${g}`:`/${g}`}}else{let x=o.find(v=>(v.filePath==="index.mdx"||v.filePath==="index.md")&&(v.locale||i.defaultLocale)===g&&!v.version);x?h=x.path:h=g===i.defaultLocale?"/":`/${g}`}e(h)},m=s.i18n?.localeConfigs?.[n]?.label||s.i18n?.locales[n]||n,u=s.i18n?Object.entries(s.i18n.locales).map(([g,h])=>{let x=s.i18n?.localeConfigs?.[g];return{key:g,label:x?.label||h,value:g,isCurrent:g===n}}):[];return{currentLocale:n,currentLocaleLabel:m,availableLocales:u,handleLocaleChange:l}}ee();Co();a();var ko=require("react"),Me=require("lucide-react");var ns=require("react-aria-components");wo();var _=require("react/jsx-runtime");function ss(){let{theme:e,setTheme:t}=De(),[o,r]=(0,ko.useState)(!1);return(0,ko.useEffect)(()=>{r(!0)},[]),o?(0,_.jsxs)(tt,{placement:"bottom right",children:[(0,_.jsx)(ns.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,_.jsx)(e==="system"?Me.Monitor:e==="dark"?Me.Moon:Me.Sun,{size:20,className:"animate-in fade-in zoom-in duration-300"})}),(0,_.jsxs)(ot,{selectionMode:"single",selectedKeys:[e],onSelectionChange:s=>{let i=Array.from(s)[0];t(i)},children:[(0,_.jsxs)(Re,{id:"light",children:[(0,_.jsx)(Me.Sun,{size:16}),(0,_.jsx)("span",{children:"Light"})]}),(0,_.jsxs)(Re,{id:"dark",children:[(0,_.jsx)(Me.Moon,{size:16}),(0,_.jsx)("span",{children:"Dark"})]}),(0,_.jsxs)(Re,{id:"system",children:[(0,_.jsx)(Me.Monitor,{size:16}),(0,_.jsx)("span",{children:"System"})]})]})]}):(0,_.jsx)("div",{className:"h-9 w-9"})}a();var Lo=require("react");a();var oi="https://api.github.com";async function as(e,t,o=oi){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?ri(s.stargazers_count):"0"}var ri=e=>Intl.NumberFormat("en",{notation:"compact",compactDisplay:"short"}).format(e);jt();var St=require("react/jsx-runtime");function is({repo:e}){let[t,o]=(0,Lo.useState)(null);return(0,Lo.useEffect)(()=>{e&&as(e).then(r=>o(r)).catch(()=>o("0"))},[e]),(0,St.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,St.jsx)(Ut,{className:"h-4 w-4"}),t&&(0,St.jsx)("span",{className:"tabular-nums",children:t})]})}a();a();var ls=require("react-router-dom"),ut=require("react");function cs(e=[],t=[]){let o=(0,ls.useLocation)(),r=(0,ut.useRef)([]),[n,s]=(0,ut.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),p=l===-1?0:l;return(0,ut.useEffect)(()=>{let m=r.current[p];m&&s({opacity:1,width:m.offsetWidth,transform:`translateX(${m.offsetLeft}px)`})},[p,e.length,o.pathname]),{tabs:e,activeIndex:p,indicatorStyle:n,tabRefs:r,activeTabId:c}}hr();qe();var ni=I(require("lucide-react"));ee();var Pe=require("react/jsx-runtime");function ms({tabs:e,routes:t}){let{currentLocale:o}=k(),{indicatorStyle:r,tabRefs:n,activeIndex:s}=cs(e,t),i=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=ni[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 p=l===s,m=t.find(g=>g.tab&&g.tab.toLowerCase()===c.id.toLowerCase()),u=m?m.path:"#";return(0,Pe.jsxs)(Z,{href:u,ref:g=>{n.current[l]=g},className:`relative flex items-center gap-2 px-4 py-3 text-sm font-medium transition-colors outline-none ${p?"text-primary-500":"text-text-muted hover:text-text-main"}`,children:[i(c.icon),(0,Pe.jsx)("span",{children:Ae(c.text,o)})]},c.id)}),(0,Pe.jsx)(br.TabsIndicator,{style:r})]})})}var hs=require("react-router-dom");wo();Ft();var It=require("lucide-react");Fo();var y=require("react/jsx-runtime"),ai=(0,Io.lazy)(()=>Promise.resolve().then(()=>(bs(),gs)).then(e=>({default:e.SearchDialog})));function Bo(){let{links:e,title:t,logo:o,logoProps:r,github:n,social:s,config:i}=Yn(),{routes:c,allRoutes:l,currentVersion:p,currentLocale:m}=k(),{pathname:u}=(0,hs.useLocation)(),g=i.theme||{},h=g?.tabs&&g.tabs.length>0;return(0,y.jsxs)(q.NavbarRoot,{className:h?"border-b-0":"",children:[(0,y.jsxs)(q.Content,{children:[(0,y.jsxs)(q.NavbarLeft,{children:[o&&(0,y.jsx)(q.NavbarLogo,{src:o,alt:r?.alt||t,width:r?.width??24,height:r?.height??24}),(0,y.jsx)(q.Title,{children:t}),i.versions&&p&&(0,y.jsx)(li,{}),(0,y.jsx)(q.Links,{children:e.map(x=>(0,y.jsx)(ii,{link:x},x.href))})]}),(0,y.jsx)(q.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)(ai,{routes:c||[]})})}),(0,y.jsxs)(q.NavbarRight,{children:[i.i18n&&m&&(0,y.jsx)(ci,{}),(0,y.jsx)(q.Split,{}),(0,y.jsx)(ss,{}),n&&(0,y.jsx)(is,{repo:g?.githubRepo??""}),s.length>0&&(0,y.jsx)(q.Split,{}),(0,y.jsx)("div",{className:"flex items-center gap-1",children:s.map(({icon:x,link:v})=>(0,y.jsx)(q.Socials,{icon:x,link:v,className:"p-1.5"},v))})]})]}),u!=="/"&&h&&g?.tabs&&(0,y.jsx)("div",{className:"w-full border-b border-border-subtle bg-bg-main",children:(0,y.jsx)(ms,{tabs:g.tabs,routes:l||c||[]})})]})}function ii({link:e}){let t=vt(e.href);return(0,y.jsx)(q.Link,{...e,href:t})}function li(){let{currentVersionLabel:e,availableVersions:t,handleVersionChange:o}=ts();return t.length===0?null:(0,y.jsxs)(Ie.Trigger,{children:[(0,y.jsx)(fe,{variant:"outline",size:"sm",rounded:"lg",iconPosition:"right",icon:(0,y.jsx)(It.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)(Ie.Root,{children:(0,y.jsx)(Ie.Section,{items:t,children:r=>(0,y.jsx)(Ie.Item,{onPress:()=>o(r.value),children:r.label},`${r.value??""}`)})})]})}function ci(){let{currentLocale:e,availableLocales:t,handleLocaleChange:o}=rs();return t.length===0?null:(0,y.jsxs)(Ie.Trigger,{children:[(0,y.jsx)(fe,{variant:"outline",size:"sm",rounded:"lg",iconPosition:"right",icon:(0,y.jsx)(It.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)(It.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)(Ie.Root,{children:(0,y.jsx)(Ie.Section,{items:t,children:r=>(0,y.jsx)(Ie.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??""}`)})})]})}a();var ft=require("react");a();var xs=require("react-router-dom");de();function vs(e){let t=H(),o=(0,xs.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),i=s?.tab?.toLowerCase(),c=i?e.filter(u=>!u.tab||u.tab.toLowerCase()===i):e,l=[],p=new Map;for(let u of c)u.group?(p.has(u.group)||p.set(u.group,{slug:u.group,title:u.groupTitle||u.group,routes:[],icon:u.groupIcon}),p.get(u.group).routes.push(u)):l.push(u);return{groups:Array.from(p.values()),ungrouped:l,activeRoute:s,activePath:n,config:t}}xr();a();var ys=require("lucide-react"),Ue=require("react/jsx-runtime");function Cs(){return(0,Ue.jsx)("div",{className:"flex items-center justify-center mt-10 mb-4 px-4 w-full",children:(0,Ue.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,Ue.jsx)(ys.Zap,{className:"w-3.5 h-3.5 text-text-muted group-hover:text-primary-500 transition-colors duration-300",fill:"currentColor"}),(0,Ue.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,Ue.jsx)("strong",{className:"font-bold text-text-main/80 group-hover:text-text-main",children:"Boltdocs"})]})]})})}var mi=I(require("lucide-react")),we=require("react/jsx-runtime");function Rs(e){return e&&mi[e]||void 0}function di({group:e,activePath:t,getIcon:o}){let r=(0,ft.useMemo)(()=>e.routes.some(i=>i.path===t),[e.routes,t]),[n,s]=(0,ft.useState)(!0);return(0,ft.useEffect)(()=>{r&&s(!0)},[r]),(0,we.jsx)(st.SidebarGroup,{title:e.title,isOpen:n,onToggle:()=>s(!n),children:e.routes.map(i=>{let c=t===(i.path.endsWith("/")?i.path.slice(0,-1):i.path);return(0,we.jsx)(st.SidebarLink,{label:i.title,href:i.path,active:c,icon:o(i.icon),badge:i.badge},i.path)})})}function Ao({routes:e,config:t}){let{groups:o,ungrouped:r,activePath:n}=vs(e),s=t.theme||{};return(0,we.jsxs)(st.SidebarRoot,{children:[r.length>0&&(0,we.jsx)(st.SidebarGroup,{className:"mb-6",children:r.map(i=>{let c=n===(i.path.endsWith("/")?i.path.slice(0,-1):i.path);return(0,we.jsx)(st.SidebarLink,{label:i.title,href:i.path,active:c,icon:Rs(i.icon),badge:i.badge},i.path)})}),o.map(i=>(0,we.jsx)(di,{group:i,activePath:n,getIcon:Rs},i.slug)),s?.poweredBy&&(0,we.jsx)("div",{className:"mt-auto pt-8",children:(0,we.jsx)(Cs,{})})]})}a();fr();var xe=I(require("react"));a();var Ns=require("react");function Ps(e=[]){let[t,o]=(0,Ns.useState)(null);return{headings:e,activeId:t,setActiveId:o}}var gt=require("lucide-react"),M=require("react/jsx-runtime");function Mo({headings:e=[],editLink:t,communityHelp:o,filePath:r}){let{headings:n}=Ps(e),s=xe.default.useMemo(()=>n.map(i=>({title:i.text,url:`#${i.id}`,depth:i.level})),[n]);return n.length===0?null:(0,M.jsx)(En,{toc:s,children:(0,M.jsx)(pi,{headings:n,editLink:t,communityHelp:o,filePath:r})})}function pi({headings:e,editLink:t,communityHelp:o,filePath:r}){let n=An(),[s,i]=(0,xe.useState)({opacity:0}),c=(0,xe.useRef)(null),l=(0,xe.useRef)(null);(0,xe.useEffect)(()=>{if(!n||!c.current)return;let m=c.current.querySelector(`a[href="#${n}"]`);m&&i({transform:`translateY(${m.offsetTop}px)`,height:`${m.offsetHeight}px`,opacity:1})},[n]);let p=(0,xe.useCallback)((m,u)=>{m.preventDefault();let g=document.getElementById(u);g&&(g.scrollIntoView({behavior:"smooth"}),window.history.pushState(null,"",`#${u}`))},[]);return(0,M.jsxs)(Ge.OnThisPageRoot,{children:[(0,M.jsxs)(Ge.OnThisPageHeader,{className:"flex flex-row gap-x-2",children:[(0,M.jsx)(gt.TextAlignStart,{size:16}),"On this page"]}),(0,M.jsx)(Mn,{containerRef:l,children:(0,M.jsxs)(Ge.OnThisPageContent,{className:"max-h-[450px] boltdocs-otp-scroll-area",ref:l,children:[(0,M.jsx)(Ge.OnThisPageIndicator,{style:s}),(0,M.jsx)("ul",{className:"relative space-y-2 border-l border-border-subtle",ref:c,children:e.map(m=>(0,M.jsx)(Ge.OnThisPageItem,{level:m.level,children:(0,M.jsx)(Ge.OnThisPageLink,{href:`#${m.id}`,active:n===m.id,onClick:u=>p(u,m.id),className:"pl-4",children:m.text})},m.id))})]})}),(t||o)&&(0,M.jsxs)("div",{className:"mt-8 pt-8 border-t border-border-subtle space-y-4",children:[(0,M.jsx)("p",{className:"text-xs font-bold uppercase tracking-wider text-text-main",children:"Need help?"}),(0,M.jsxs)("ul",{className:"space-y-3",children:[t&&r&&(0,M.jsx)("li",{children:(0,M.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,M.jsx)(gt.Pencil,{size:16}),"Edit this page"]})}),o&&(0,M.jsx)("li",{children:(0,M.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,M.jsx)(gt.CircleHelp,{size:16}),"Community help"]})})]})]})]})}a();var ws=require("react"),Ts=require("react-router-dom");function Eo({siteTitle:e,siteDescription:t,routes:o}){let r=(0,Ts.useLocation)();return(0,ws.useEffect)(()=>{let n=o.find(p=>p.path===r.pathname),s=n?.title,i=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=i,je("property","og:title",document.title),je("property","og:description",i),je("property","og:type","article"),je("property","og:url",window.location.href),je("name","twitter:card","summary"),je("name","twitter:title",document.title),je("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 je(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}a();a();ee();function ks(){let{currentRoute:e}=k(),t=[];return e&&(e.groupTitle&&t.push({label:e.groupTitle}),t.push({label:e.title,href:e.path})),{crumbs:t,activeRoute:e}}var Ls=require("lucide-react");Cr();N();de();var Ee=require("react/jsx-runtime");function Oo(){let{crumbs:e,activeRoute:t}=ks(),r=H().theme||{};return e.length===0||!r?.breadcrumbs?null:(0,Ee.jsxs)($n,{children:[(0,Ee.jsx)(vr,{children:(0,Ee.jsx)(yr,{href:"/",children:(0,Ee.jsx)(Ls.Home,{size:14})})}),e.map((n,s)=>(0,Ee.jsxs)(vr,{children:[(0,Ee.jsx)(Fn,{}),(0,Ee.jsx)(yr,{href:n.href,className:d({"font-medium text-text-main":n.href===t?.path}),children:n.label})]},`crumb-${n.href}-${n.label}-${s}`))]})}a();a();var Ss=require("react-router-dom");ee();function Is(){let{routes:e,currentRoute:t}=k(),o=(0,Ss.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),s=n.findIndex(l=>l.path===o.pathname),i=s>0?n[s-1]:null,c=s!==-1&&s<n.length-1?n[s+1]:null;return{prevPage:i,nextPage:c,currentRoute:t}}gr();var Te=require("react/jsx-runtime");function Do(){let{prevPage:e,nextPage:t}=Is();return!e&&!t?null:(0,Te.jsxs)(ze.PageNavRoot,{className:"animate-in fade-in slide-in-from-bottom-4 duration-700",children:[e?(0,Te.jsxs)(ze.PageNavLink,{to:e.path,direction:"prev",children:[(0,Te.jsx)(ze.PageNavLink.Title,{children:"Previous"}),(0,Te.jsx)(ze.PageNavLink.Description,{children:e.title})]}):(0,Te.jsx)("div",{}),t&&(0,Te.jsxs)(ze.PageNavLink,{to:t.path,direction:"next",children:[(0,Te.jsx)(ze.PageNavLink.Title,{children:"Next"}),(0,Te.jsx)(ze.PageNavLink.Description,{children:t.title})]})]})}a();var Vo=require("react"),Bs=require("react-aria-components"),kr=require("react/jsx-runtime");function Ho(){let[e,t]=(0,Vo.useState)(0);return(0,Vo.useEffect)(()=>{let o=null,r,n=()=>{if(!o)return;let{scrollTop:i,scrollHeight:c,clientHeight:l}=o;if(c<=l){t(0);return}let p=i/(c-l)*100;t(Math.min(100,Math.max(0,p)))},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,kr.jsx)(Bs.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,kr.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}%`}})})}a();var As=require("react");Ro();var bt=require("react/jsx-runtime"),ht=class extends As.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,bt.jsxs)("div",{className:"flex flex-col items-center justify-center min-h-[40vh] text-center gap-4 px-4",children:[(0,bt.jsx)("div",{className:"text-lg font-bold text-red-400",children:"Something went wrong"}),(0,bt.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,bt.jsx)(fe,{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();de();var Ms=require("react-router-dom");var U=require("react/jsx-runtime");function Es({children:e}){let{routes:t,allRoutes:o,currentRoute:r,currentLocale:n}=k(),{pathname:s}=(0,Ms.useLocation)(),i=H(),l=Ke().CopyMarkdown||mt,p=s==="/"||s==="";return(0,U.jsxs)($e,{children:[(0,U.jsx)(Ho,{}),(0,U.jsx)(Eo,{siteTitle:Ae(i.theme?.title,n)||"Boltdocs",siteDescription:Ae(i.theme?.description,n)||"",routes:o}),(0,U.jsx)(Bo,{}),(0,U.jsxs)($e.Body,{children:[!p&&(0,U.jsx)(Ao,{routes:t,config:i}),(0,U.jsxs)($e.Content,{children:[!p&&(0,U.jsxs)($e.ContentHeader,{children:[(0,U.jsx)(Oo,{}),(0,U.jsx)(l,{mdxRaw:r?._rawContent,route:r,config:i.theme?.copyMarkdown})]}),(0,U.jsx)(ht,{children:e}),!p&&(0,U.jsx)($e.ContentFooter,{children:(0,U.jsx)(Do,{})})]}),!p&&(0,U.jsx)(Mo,{headings:r?.headings,editLink:i.theme?.editLink,communityHelp:i.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})]})]})}