selftune 0.2.23 → 0.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +93 -15
- package/apps/local-dashboard/dist/assets/index-DgY2KGP-.css +1 -0
- package/apps/local-dashboard/dist/assets/index-Dhgv5BQO.js +15 -0
- package/apps/local-dashboard/dist/assets/vendor-react-C5oyHiV1.js +11 -0
- package/apps/local-dashboard/dist/assets/{vendor-table-BIiI3YhS.js → vendor-table-Bc_bbKd8.js} +1 -1
- package/apps/local-dashboard/dist/assets/vendor-ui-B3BPIYy7.js +1 -0
- package/apps/local-dashboard/dist/index.html +5 -5
- package/cli/selftune/adapters/codex/install.ts +310 -78
- package/cli/selftune/adapters/opencode/install.ts +3 -4
- package/cli/selftune/alpha-upload/build-payloads.ts +3 -3
- package/cli/selftune/alpha-upload/stage-canonical.ts +17 -11
- package/cli/selftune/auto-update.ts +200 -8
- package/cli/selftune/canonical-export.ts +55 -25
- package/cli/selftune/command-surface.ts +397 -0
- package/cli/selftune/contribute/contribute.ts +64 -13
- package/cli/selftune/contribution-config.ts +57 -3
- package/cli/selftune/contribution-preferences.ts +117 -0
- package/cli/selftune/contribution-signals.ts +8 -4
- package/cli/selftune/contribution-staging.ts +13 -2
- package/cli/selftune/contributions.ts +55 -121
- package/cli/selftune/creator-contributions.ts +29 -10
- package/cli/selftune/cron/setup.ts +7 -3
- package/cli/selftune/dashboard-contract.ts +73 -0
- package/cli/selftune/dashboard-server.ts +168 -17
- package/cli/selftune/dashboard.ts +350 -17
- package/cli/selftune/eval/baseline.ts +21 -5
- package/cli/selftune/eval/execution-eval.ts +170 -0
- package/cli/selftune/eval/family-overlap.ts +2 -2
- package/cli/selftune/eval/hooks-to-evals.ts +228 -82
- package/cli/selftune/eval/import-skillsbench.ts +2 -2
- package/cli/selftune/eval/invocation-classifier.ts +56 -0
- package/cli/selftune/eval/synthetic-evals.ts +5 -3
- package/cli/selftune/eval/unit-test-cli.ts +7 -4
- package/cli/selftune/evolution/apply-proposal.ts +295 -0
- package/cli/selftune/evolution/engines/replay-engine.ts +79 -57
- package/cli/selftune/evolution/evolve-body.ts +100 -39
- package/cli/selftune/evolution/evolve.ts +244 -52
- package/cli/selftune/evolution/rollback.ts +0 -1
- package/cli/selftune/evolution/validate-body.ts +68 -42
- package/cli/selftune/evolution/validate-host-replay.ts +510 -60
- package/cli/selftune/evolution/validate-proposal.ts +11 -150
- package/cli/selftune/evolution/validate-routing.ts +43 -41
- package/cli/selftune/evolution/validation-contract.ts +91 -0
- package/cli/selftune/grading/auto-grade.ts +11 -7
- package/cli/selftune/grading/grade-session.ts +10 -16
- package/cli/selftune/index.ts +35 -10
- package/cli/selftune/ingestors/claude-replay.ts +15 -10
- package/cli/selftune/ingestors/codex-wrapper.ts +3 -3
- package/cli/selftune/ingestors/opencode-ingest.ts +2 -2
- package/cli/selftune/ingestors/pi-ingest.ts +3 -2
- package/cli/selftune/init.ts +27 -3
- package/cli/selftune/localdb/direct-write.ts +35 -1
- package/cli/selftune/localdb/queries/cron.ts +34 -0
- package/cli/selftune/localdb/queries/dashboard.ts +834 -0
- package/cli/selftune/localdb/queries/evolution.ts +158 -0
- package/cli/selftune/localdb/queries/execution.ts +133 -0
- package/cli/selftune/localdb/queries/json.ts +18 -0
- package/cli/selftune/localdb/queries/monitoring.ts +263 -0
- package/cli/selftune/localdb/queries/raw.ts +95 -0
- package/cli/selftune/localdb/queries/staging.ts +270 -0
- package/cli/selftune/localdb/queries/trust.ts +392 -0
- package/cli/selftune/localdb/queries.ts +60 -2288
- package/cli/selftune/localdb/schema.ts +21 -0
- package/cli/selftune/monitoring/watch.ts +96 -29
- package/cli/selftune/normalization.ts +3 -0
- package/cli/selftune/observability.ts +4 -2
- package/cli/selftune/orchestrate/cli.ts +161 -0
- package/cli/selftune/orchestrate/execute.ts +295 -0
- package/cli/selftune/orchestrate/finalize.ts +157 -0
- package/cli/selftune/orchestrate/locks.ts +40 -0
- package/cli/selftune/orchestrate/plan.ts +131 -0
- package/cli/selftune/orchestrate/post-run.ts +59 -0
- package/cli/selftune/orchestrate/prepare.ts +334 -0
- package/cli/selftune/orchestrate/report.ts +182 -0
- package/cli/selftune/orchestrate/runtime.ts +120 -0
- package/cli/selftune/orchestrate/signals.ts +48 -0
- package/cli/selftune/orchestrate.ts +150 -1173
- package/cli/selftune/repair/skill-usage.ts +5 -2
- package/cli/selftune/routes/overview.ts +5 -2
- package/cli/selftune/routes/skill-report.ts +15 -2
- package/cli/selftune/schedule.ts +5 -5
- package/cli/selftune/status.ts +39 -2
- package/cli/selftune/testing-readiness.ts +597 -0
- package/cli/selftune/types.ts +44 -4
- package/cli/selftune/uninstall.ts +2 -1
- package/cli/selftune/utils/canonical-log.ts +1 -9
- package/cli/selftune/utils/cli-error.ts +9 -0
- package/cli/selftune/utils/llm-call.ts +126 -6
- package/cli/selftune/utils/skill-discovery.ts +2 -0
- package/cli/selftune/workflows/proposals.ts +184 -0
- package/cli/selftune/workflows/skill-scaffold.ts +241 -0
- package/cli/selftune/workflows/workflows.ts +100 -26
- package/node_modules/@selftune/telemetry-contract/fixtures/complete-push.ts +1 -1
- package/node_modules/@selftune/telemetry-contract/fixtures/evidence-only-push.ts +1 -1
- package/node_modules/@selftune/telemetry-contract/fixtures/partial-push-no-sessions.ts +1 -1
- package/node_modules/@selftune/telemetry-contract/fixtures/partial-push-unresolved-parents.ts +1 -1
- package/node_modules/@selftune/telemetry-contract/src/schemas.ts +41 -1
- package/node_modules/@selftune/telemetry-contract/src/types.ts +103 -2
- package/package.json +25 -9
- package/packages/dashboard-core/AGENTS.md +18 -0
- package/packages/dashboard-core/README.md +30 -0
- package/packages/dashboard-core/index.ts +3 -0
- package/packages/dashboard-core/package.json +39 -0
- package/packages/dashboard-core/src/chrome/DashboardChrome.tsx +74 -0
- package/packages/dashboard-core/src/chrome/DashboardHeader.tsx +200 -0
- package/packages/dashboard-core/src/chrome/DashboardSidebar.tsx +219 -0
- package/packages/dashboard-core/src/chrome/RuntimeBadge.tsx +46 -0
- package/packages/dashboard-core/src/chrome/index.ts +14 -0
- package/packages/dashboard-core/src/chrome/types.ts +81 -0
- package/packages/dashboard-core/src/chrome/utils.ts +23 -0
- package/packages/dashboard-core/src/gates/FeatureGate.tsx +11 -0
- package/packages/dashboard-core/src/gates/LockedRoute.tsx +29 -0
- package/packages/dashboard-core/src/gates/UpgradeCard.tsx +89 -0
- package/packages/dashboard-core/src/gates/index.ts +3 -0
- package/packages/dashboard-core/src/host/DashboardHostProvider.tsx +62 -0
- package/packages/dashboard-core/src/host/adapter.ts +47 -0
- package/packages/dashboard-core/src/host/capabilities.ts +55 -0
- package/packages/dashboard-core/src/host/index.ts +3 -0
- package/packages/dashboard-core/src/models/analytics.ts +39 -0
- package/packages/dashboard-core/src/models/index.ts +4 -0
- package/packages/dashboard-core/src/models/overview.ts +98 -0
- package/packages/dashboard-core/src/models/runtime.ts +7 -0
- package/packages/dashboard-core/src/models/skills.ts +34 -0
- package/packages/dashboard-core/src/routes/index.ts +2 -0
- package/packages/dashboard-core/src/routes/manifest.test.ts +70 -0
- package/packages/dashboard-core/src/routes/manifest.ts +451 -0
- package/packages/dashboard-core/src/routes/types.ts +39 -0
- package/packages/dashboard-core/src/screens/analytics/AnalyticsScreen.tsx +278 -0
- package/packages/dashboard-core/src/screens/analytics/index.ts +1 -0
- package/packages/dashboard-core/src/screens/index.ts +37 -0
- package/packages/dashboard-core/src/screens/overview/OverviewComparisonSurface.test.ts +101 -0
- package/packages/dashboard-core/src/screens/overview/OverviewComparisonSurface.tsx +393 -0
- package/packages/dashboard-core/src/screens/overview/OverviewCompositionSurface.test.tsx +113 -0
- package/packages/dashboard-core/src/screens/overview/OverviewCompositionSurface.tsx +72 -0
- package/packages/dashboard-core/src/screens/overview/OverviewCoreSurface.tsx +71 -0
- package/packages/dashboard-core/src/screens/overview/OverviewOnboardingBanner.tsx +90 -0
- package/packages/dashboard-core/src/screens/overview/OverviewRunSummary.tsx +40 -0
- package/packages/dashboard-core/src/screens/overview/index.ts +16 -0
- package/packages/dashboard-core/src/screens/overview/types.ts +13 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportDailyBreakdownSection.tsx +99 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportDataQualityTabContent.tsx +35 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportEvidenceRail.tsx +71 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportEvidenceSection.tsx +63 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportEvidenceTabContent.tsx +25 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportInvocationsSection.tsx +24 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportMissedQueriesSection.tsx +79 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportScaffold.tsx +150 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportSections.test.tsx +224 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportTabs.test.tsx +76 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportTabs.tsx +88 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportTrendSection.tsx +33 -0
- package/packages/dashboard-core/src/screens/skill-report/SkillReportTrustBadge.tsx +67 -0
- package/packages/dashboard-core/src/screens/skill-report/index.ts +45 -0
- package/packages/dashboard-core/src/screens/skills/SkillsLibraryScreen.tsx +162 -0
- package/packages/dashboard-core/src/screens/skills/index.ts +6 -0
- package/packages/telemetry-contract/fixtures/complete-push.ts +1 -1
- package/packages/telemetry-contract/fixtures/evidence-only-push.ts +1 -1
- package/packages/telemetry-contract/fixtures/partial-push-no-sessions.ts +1 -1
- package/packages/telemetry-contract/fixtures/partial-push-unresolved-parents.ts +1 -1
- package/packages/telemetry-contract/src/schemas.ts +41 -1
- package/packages/telemetry-contract/src/types.ts +103 -2
- package/packages/ui/src/components/EvidenceViewer.tsx +80 -25
- package/packages/ui/src/components/OverviewPanels.tsx +67 -26
- package/packages/ui/src/primitives/tabs.tsx +7 -6
- package/packages/ui/src/types.ts +10 -0
- package/skill/SKILL.md +130 -332
- package/skill/agents/diagnosis-analyst.md +3 -3
- package/skill/agents/evolution-reviewer.md +3 -3
- package/skill/agents/integration-guide.md +3 -3
- package/skill/agents/pattern-analyst.md +2 -2
- package/skill/references/cli-quick-reference.md +89 -0
- package/skill/references/creator-playbook.md +131 -0
- package/skill/references/examples.md +48 -0
- package/skill/references/troubleshooting.md +47 -0
- package/skill/references/version-history.md +1 -1
- package/skill/selftune.contribute.json +11 -0
- package/skill/{Workflows → workflows}/Baseline.md +20 -1
- package/skill/{Workflows → workflows}/Contribute.md +23 -10
- package/skill/{Workflows → workflows}/Contributions.md +13 -5
- package/skill/workflows/CreateTestDeploy.md +170 -0
- package/skill/{Workflows → workflows}/CreatorContributions.md +18 -6
- package/skill/{Workflows → workflows}/Cron.md +1 -1
- package/skill/{Workflows → workflows}/Dashboard.md +20 -0
- package/skill/{Workflows → workflows}/Doctor.md +1 -1
- package/skill/{Workflows → workflows}/Evals.md +67 -2
- package/skill/{Workflows → workflows}/Evolve.md +119 -30
- package/skill/{Workflows → workflows}/EvolveBody.md +41 -1
- package/skill/{Workflows → workflows}/Grade.md +1 -1
- package/skill/{Workflows → workflows}/Initialize.md +8 -4
- package/skill/{Workflows → workflows}/Orchestrate.md +13 -3
- package/skill/{Workflows → workflows}/Schedule.md +3 -3
- package/skill/workflows/SignalsDashboard.md +87 -0
- package/skill/{Workflows → workflows}/UnitTest.md +19 -0
- package/skill/{Workflows → workflows}/Watch.md +42 -2
- package/skill/{Workflows → workflows}/Workflows.md +39 -2
- package/apps/local-dashboard/dist/assets/index-CwOtTrUS.css +0 -1
- package/apps/local-dashboard/dist/assets/index-f1HQpbeH.js +0 -59
- package/apps/local-dashboard/dist/assets/vendor-react-CKkiCskZ.js +0 -11
- package/apps/local-dashboard/dist/assets/vendor-ui-jVSaIZey.js +0 -12
- /package/skill/{Workflows → workflows}/AlphaUpload.md +0 -0
- /package/skill/{Workflows → workflows}/AutoActivation.md +0 -0
- /package/skill/{Workflows → workflows}/Badge.md +0 -0
- /package/skill/{Workflows → workflows}/Composability.md +0 -0
- /package/skill/{Workflows → workflows}/EvolutionMemory.md +0 -0
- /package/skill/{Workflows → workflows}/ExportCanonical.md +0 -0
- /package/skill/{Workflows → workflows}/Hook.md +0 -0
- /package/skill/{Workflows → workflows}/ImportSkillsBench.md +0 -0
- /package/skill/{Workflows → workflows}/Ingest.md +0 -0
- /package/skill/{Workflows → workflows}/PlatformHooks.md +0 -0
- /package/skill/{Workflows → workflows}/Quickstart.md +0 -0
- /package/skill/{Workflows → workflows}/Recover.md +0 -0
- /package/skill/{Workflows → workflows}/Registry.md +0 -0
- /package/skill/{Workflows → workflows}/RepairSkillUsage.md +0 -0
- /package/skill/{Workflows → workflows}/Replay.md +0 -0
- /package/skill/{Workflows → workflows}/Rollback.md +0 -0
- /package/skill/{Workflows → workflows}/Sync.md +0 -0
- /package/skill/{Workflows → workflows}/Telemetry.md +0 -0
- /package/skill/{Workflows → workflows}/Uninstall.md +0 -0
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import{n as e,r as t,t as n}from"./rolldown-runtime-Dw2cE7zH.js";import{a as r,c as i,d as a,f as o,i as s,l as c,n as l,o as u,r as d,s as f,t as p,u as m}from"./vendor-react-CKkiCskZ.js";import{$ as h,A as g,B as _,C as v,D as y,E as b,F as x,G as S,H as C,I as w,J as T,K as E,L as ee,M as D,N as O,O as k,P as te,Q as A,R as j,T as ne,U as re,V as ie,W as ae,X as oe,Y as se,Z as ce,_ as le,_t as ue,a as de,at as fe,c as pe,ct as me,d as he,dt as ge,et as _e,f as ve,ft as ye,g as be,gt as xe,h as Se,ht as Ce,i as we,it as Te,j as Ee,k as De,l as Oe,lt as ke,m as Ae,mt as je,n as Me,nt as Ne,o as Pe,ot as Fe,p as Ie,pt as Le,q as Re,r as ze,rt as Be,s as Ve,st as He,t as Ue,tt as We,u as Ge,ut as Ke,v as qe,vt as Je,w as Ye,yt as Xe,z as Ze}from"./vendor-ui-jVSaIZey.js";import"./vendor-table-BIiI3YhS.js";(function(){let e=document.createElement(`link`).relList;if(e&&e.supports&&e.supports(`modulepreload`))return;for(let e of document.querySelectorAll(`link[rel="modulepreload"]`))n(e);new MutationObserver(e=>{for(let t of e)if(t.type===`childList`)for(let e of t.addedNodes)e.tagName===`LINK`&&e.rel===`modulepreload`&&n(e)}).observe(document,{childList:!0,subtree:!0});function t(e){let t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),e.crossOrigin===`use-credentials`?t.credentials=`include`:e.crossOrigin===`anonymous`?t.credentials=`omit`:t.credentials=`same-origin`,t}function n(e){if(e.ep)return;e.ep=!0;let n=t(e);fetch(e.href,n)}})();var M=t(o(),1),Qe=m();function N(...e){return Ce(ue(e))}var $e=xe(`group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!`,{variants:{variant:{default:`bg-primary text-primary-foreground [a]:hover:bg-primary/80`,secondary:`bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80`,destructive:`bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20`,outline:`border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground`,ghost:`hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50`,link:`text-primary underline-offset-4 hover:underline`}},defaultVariants:{variant:`default`}});function P({className:e,variant:t=`default`,render:n,...r}){return Je({defaultTagName:`span`,props:Xe({className:N($e({variant:t}),e)},r),render:n,state:{slot:`badge`,variant:t}})}var F=c(),et=xe(`group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4`,{variants:{variant:{default:`bg-primary text-primary-foreground [a]:hover:bg-primary/80`,outline:`border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50`,secondary:`bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground`,ghost:`hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50`,destructive:`bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40`,link:`text-primary underline-offset-4 hover:underline`},size:{default:`h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2`,xs:`h-6 gap-1 rounded-[min(var(--radius-md),10px)] px-2 text-xs in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3`,sm:`h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5`,lg:`h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-3 has-data-[icon=inline-start]:pl-3`,icon:`size-8`,"icon-xs":`size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&_svg:not([class*='size-'])]:size-3`,"icon-sm":`size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg`,"icon-lg":`size-9`}},defaultVariants:{variant:`default`,size:`default`}});function I({className:e,variant:t=`default`,size:n=`default`,...r}){return(0,F.jsx)(je,{"data-slot":`button`,className:N(et({variant:t,size:n,className:e})),...r})}function L({className:e,size:t=`default`,...n}){return(0,F.jsx)(`div`,{"data-slot":`card`,"data-size":t,className:N(`group/card flex flex-col gap-4 overflow-hidden rounded-xl bg-muted py-4 text-sm text-card-foreground border border-border/15 shadow-none has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl`,e),...n})}function R({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`card-header`,className:N(`group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-4 group-data-[size=sm]/card:px-3 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-4 group-data-[size=sm]/card:[.border-b]:pb-3`,e),...t})}function z({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`card-title`,className:N(`text-base leading-snug font-medium group-data-[size=sm]/card:text-sm`,e),...t})}function tt({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`card-description`,className:N(`text-sm text-muted-foreground`,e),...t})}function nt({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`card-action`,className:N(`col-start-2 row-span-2 row-start-1 self-start justify-self-end`,e),...t})}function B({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`card-content`,className:N(`px-4 group-data-[size=sm]/card:px-3`,e),...t})}function rt({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`table-container`,className:`relative w-full overflow-x-auto`,children:(0,F.jsx)(`table`,{"data-slot":`table`,className:N(`w-full caption-bottom text-sm`,e),...t})})}function it({className:e,...t}){return(0,F.jsx)(`thead`,{"data-slot":`table-header`,className:N(`[&_tr]:border-b`,e),...t})}function at({className:e,...t}){return(0,F.jsx)(`tbody`,{"data-slot":`table-body`,className:N(`[&_tr:last-child]:border-0`,e),...t})}function ot({className:e,...t}){return(0,F.jsx)(`tr`,{"data-slot":`table-row`,className:N(`border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted`,e),...t})}function V({className:e,...t}){return(0,F.jsx)(`th`,{"data-slot":`table-head`,className:N(`h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([role=checkbox])]:pr-0`,e),...t})}function H({className:e,...t}){return(0,F.jsx)(`td`,{"data-slot":`table-cell`,className:N(`p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0`,e),...t})}function st({className:e,orientation:t=`horizontal`,...n}){return(0,F.jsx)(qe,{"data-slot":`tabs`,"data-orientation":t,className:N(`group/tabs flex gap-2 data-horizontal:flex-col`,e),...n})}var ct=xe(`group/tabs-list inline-flex w-fit items-center justify-center rounded-lg p-[3px] text-muted-foreground group-data-horizontal/tabs:h-8 group-data-vertical/tabs:h-fit group-data-vertical/tabs:flex-col data-[variant=line]:rounded-none`,{variants:{variant:{default:`bg-muted`,line:`gap-1 bg-transparent`}},defaultVariants:{variant:`default`}});function lt({className:e,variant:t=`default`,...n}){return(0,F.jsx)(Se,{"data-slot":`tabs-list`,"data-variant":t,className:N(ct({variant:t}),e),...n})}function ut({className:e,...t}){return(0,F.jsx)(le,{"data-slot":`tabs-trigger`,className:N(`relative inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border border-transparent px-1.5 py-0.5 text-sm font-medium whitespace-nowrap text-foreground/60 transition-all group-data-vertical/tabs:w-full group-data-vertical/tabs:justify-start hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 dark:text-muted-foreground dark:hover:text-foreground group-data-[variant=default]/tabs-list:data-active:shadow-sm group-data-[variant=line]/tabs-list:data-active:shadow-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4`,`group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:data-active:bg-transparent dark:group-data-[variant=line]/tabs-list:data-active:border-transparent dark:group-data-[variant=line]/tabs-list:data-active:bg-transparent`,`data-active:bg-background data-active:text-foreground dark:data-active:border-input dark:data-active:bg-input/30 dark:data-active:text-foreground`,`after:absolute after:bg-foreground after:opacity-0 after:transition-opacity group-data-horizontal/tabs:after:inset-x-0 group-data-horizontal/tabs:after:bottom-[-5px] group-data-horizontal/tabs:after:h-0.5 group-data-vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-active:after:opacity-100`,e),...t})}function dt({className:e,...t}){return(0,F.jsx)(be,{"data-slot":`tabs-content`,className:N(`flex-1 text-sm outline-none`,e),...t})}function ft({delay:e=0,...t}){return(0,F.jsx)(pe,{"data-slot":`tooltip-provider`,delay:e,...t})}function pt({...e}){return(0,F.jsx)(Ae,{"data-slot":`tooltip`,...e})}function mt({...e}){return(0,F.jsx)(Ie,{"data-slot":`tooltip-trigger`,...e})}function ht({className:e,side:t=`top`,sideOffset:n=4,align:r=`center`,alignOffset:i=0,children:a,...o}){return(0,F.jsx)(ve,{children:(0,F.jsx)(he,{align:r,alignOffset:i,side:t,sideOffset:n,className:`isolate z-50`,children:(0,F.jsxs)(Ge,{"data-slot":`tooltip-content`,className:N(`z-50 inline-flex w-fit max-w-xs origin-(--transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 data-[side=bottom]:slide-in-from-top-2 data-[side=inline-end]:slide-in-from-left-2 data-[side=inline-start]:slide-in-from-right-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95`,e),...o,children:[a,(0,F.jsx)(Oe,{className:`z-50 size-2.5 translate-y-[calc(-50%-2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground data-[side=bottom]:top-1 data-[side=inline-end]:top-1/2! data-[side=inline-end]:-left-1 data-[side=inline-end]:-translate-y-1/2 data-[side=inline-start]:top-1/2! data-[side=inline-start]:-right-1 data-[side=inline-start]:-translate-y-1/2 data-[side=left]:top-1/2! data-[side=left]:-right-1 data-[side=left]:-translate-y-1/2 data-[side=right]:top-1/2! data-[side=right]:-left-1 data-[side=right]:-translate-y-1/2 data-[side=top]:-bottom-2.5`})]})})})}var gt=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(e){return this.listeners.add(e),this.onSubscribe(),()=>{this.listeners.delete(e),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}},_t=new class extends gt{#e;#t;#n;constructor(){super(),this.#n=e=>{if(typeof window<`u`&&window.addEventListener){let t=()=>e();return window.addEventListener(`visibilitychange`,t,!1),()=>{window.removeEventListener(`visibilitychange`,t)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(e){this.#n=e,this.#t?.(),this.#t=e(e=>{typeof e==`boolean`?this.setFocused(e):this.onFocus()})}setFocused(e){this.#e!==e&&(this.#e=e,this.onFocus())}onFocus(){let e=this.isFocused();this.listeners.forEach(t=>{t(e)})}isFocused(){return typeof this.#e==`boolean`?this.#e:globalThis.document?.visibilityState!==`hidden`}},vt={setTimeout:(e,t)=>setTimeout(e,t),clearTimeout:e=>clearTimeout(e),setInterval:(e,t)=>setInterval(e,t),clearInterval:e=>clearInterval(e)},yt=new class{#e=vt;setTimeoutProvider(e){this.#e=e}setTimeout(e,t){return this.#e.setTimeout(e,t)}clearTimeout(e){this.#e.clearTimeout(e)}setInterval(e,t){return this.#e.setInterval(e,t)}clearInterval(e){this.#e.clearInterval(e)}};function bt(e){setTimeout(e,0)}var xt=typeof window>`u`||`Deno`in globalThis;function St(){}function Ct(e,t){return typeof e==`function`?e(t):e}function wt(e){return typeof e==`number`&&e>=0&&e!==1/0}function Tt(e,t){return Math.max(e+(t||0)-Date.now(),0)}function Et(e,t){return typeof e==`function`?e(t):e}function Dt(e,t){return typeof e==`function`?e(t):e}function Ot(e,t){let{type:n=`all`,exact:r,fetchStatus:i,predicate:a,queryKey:o,stale:s}=e;if(o){if(r){if(t.queryHash!==At(o,t.options))return!1}else if(!Mt(t.queryKey,o))return!1}if(n!==`all`){let e=t.isActive();if(n===`active`&&!e||n===`inactive`&&e)return!1}return!(typeof s==`boolean`&&t.isStale()!==s||i&&i!==t.state.fetchStatus||a&&!a(t))}function kt(e,t){let{exact:n,status:r,predicate:i,mutationKey:a}=e;if(a){if(!t.options.mutationKey)return!1;if(n){if(jt(t.options.mutationKey)!==jt(a))return!1}else if(!Mt(t.options.mutationKey,a))return!1}return!(r&&t.state.status!==r||i&&!i(t))}function At(e,t){return(t?.queryKeyHashFn||jt)(e)}function jt(e){return JSON.stringify(e,(e,t)=>Lt(t)?Object.keys(t).sort().reduce((e,n)=>(e[n]=t[n],e),{}):t)}function Mt(e,t){return e===t?!0:typeof e==typeof t&&e&&t&&typeof e==`object`&&typeof t==`object`?Object.keys(t).every(n=>Mt(e[n],t[n])):!1}var Nt=Object.prototype.hasOwnProperty;function Pt(e,t,n=0){if(e===t)return e;if(n>500)return t;let r=It(e)&&It(t);if(!r&&!(Lt(e)&&Lt(t)))return t;let i=(r?e:Object.keys(e)).length,a=r?t:Object.keys(t),o=a.length,s=r?Array(o):{},c=0;for(let l=0;l<o;l++){let o=r?l:a[l],u=e[o],d=t[o];if(u===d){s[o]=u,(r?l<i:Nt.call(e,o))&&c++;continue}if(u===null||d===null||typeof u!=`object`||typeof d!=`object`){s[o]=d;continue}let f=Pt(u,d,n+1);s[o]=f,f===u&&c++}return i===o&&c===i?e:s}function Ft(e,t){if(!t||Object.keys(e).length!==Object.keys(t).length)return!1;for(let n in e)if(e[n]!==t[n])return!1;return!0}function It(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function Lt(e){if(!Rt(e))return!1;let t=e.constructor;if(t===void 0)return!0;let n=t.prototype;return!(!Rt(n)||!n.hasOwnProperty(`isPrototypeOf`)||Object.getPrototypeOf(e)!==Object.prototype)}function Rt(e){return Object.prototype.toString.call(e)===`[object Object]`}function zt(e){return new Promise(t=>{yt.setTimeout(t,e)})}function Bt(e,t,n){return typeof n.structuralSharing==`function`?n.structuralSharing(e,t):n.structuralSharing===!1?t:Pt(e,t)}function Vt(e,t,n=0){let r=[...e,t];return n&&r.length>n?r.slice(1):r}function Ht(e,t,n=0){let r=[t,...e];return n&&r.length>n?r.slice(0,-1):r}var Ut=Symbol();function Wt(e,t){return!e.queryFn&&t?.initialPromise?()=>t.initialPromise:!e.queryFn||e.queryFn===Ut?()=>Promise.reject(Error(`Missing queryFn: '${e.queryHash}'`)):e.queryFn}function Gt(e,t){return typeof e==`function`?e(...t):!!e}function Kt(e,t,n){let r=!1,i;return Object.defineProperty(e,`signal`,{enumerable:!0,get:()=>(i??=t(),r?i:(r=!0,i.aborted?n():i.addEventListener(`abort`,n,{once:!0}),i))}),e}var qt=(()=>{let e=()=>xt;return{isServer(){return e()},setIsServer(t){e=t}}})();function Jt(){let e,t,n=new Promise((n,r)=>{e=n,t=r});n.status=`pending`,n.catch(()=>{});function r(e){Object.assign(n,e),delete n.resolve,delete n.reject}return n.resolve=t=>{r({status:`fulfilled`,value:t}),e(t)},n.reject=e=>{r({status:`rejected`,reason:e}),t(e)},n}var Yt=bt;function Xt(){let e=[],t=0,n=e=>{e()},r=e=>{e()},i=Yt,a=r=>{t?e.push(r):i(()=>{n(r)})},o=()=>{let t=e;e=[],t.length&&i(()=>{r(()=>{t.forEach(e=>{n(e)})})})};return{batch:e=>{let n;t++;try{n=e()}finally{t--,t||o()}return n},batchCalls:e=>(...t)=>{a(()=>{e(...t)})},schedule:a,setNotifyFunction:e=>{n=e},setBatchNotifyFunction:e=>{r=e},setScheduler:e=>{i=e}}}var U=Xt(),Zt=new class extends gt{#e=!0;#t;#n;constructor(){super(),this.#n=e=>{if(typeof window<`u`&&window.addEventListener){let t=()=>e(!0),n=()=>e(!1);return window.addEventListener(`online`,t,!1),window.addEventListener(`offline`,n,!1),()=>{window.removeEventListener(`online`,t),window.removeEventListener(`offline`,n)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(e){this.#n=e,this.#t?.(),this.#t=e(this.setOnline.bind(this))}setOnline(e){this.#e!==e&&(this.#e=e,this.listeners.forEach(t=>{t(e)}))}isOnline(){return this.#e}};function Qt(e){return Math.min(1e3*2**e,3e4)}function $t(e){return(e??`online`)===`online`?Zt.isOnline():!0}var en=class extends Error{constructor(e){super(`CancelledError`),this.revert=e?.revert,this.silent=e?.silent}};function tn(e){let t=!1,n=0,r,i=Jt(),a=()=>i.status!==`pending`,o=t=>{if(!a()){let n=new en(t);f(n),e.onCancel?.(n)}},s=()=>{t=!0},c=()=>{t=!1},l=()=>_t.isFocused()&&(e.networkMode===`always`||Zt.isOnline())&&e.canRun(),u=()=>$t(e.networkMode)&&e.canRun(),d=e=>{a()||(r?.(),i.resolve(e))},f=e=>{a()||(r?.(),i.reject(e))},p=()=>new Promise(t=>{r=e=>{(a()||l())&&t(e)},e.onPause?.()}).then(()=>{r=void 0,a()||e.onContinue?.()}),m=()=>{if(a())return;let r,i=n===0?e.initialPromise:void 0;try{r=i??e.fn()}catch(e){r=Promise.reject(e)}Promise.resolve(r).then(d).catch(r=>{if(a())return;let i=e.retry??(qt.isServer()?0:3),o=e.retryDelay??Qt,s=typeof o==`function`?o(n,r):o,c=i===!0||typeof i==`number`&&n<i||typeof i==`function`&&i(n,r);if(t||!c){f(r);return}n++,e.onFail?.(n,r),zt(s).then(()=>l()?void 0:p()).then(()=>{t?f(r):m()})})};return{promise:i,status:()=>i.status,cancel:o,continue:()=>(r?.(),i),cancelRetry:s,continueRetry:c,canStart:u,start:()=>(u()?m():p().then(m),i)}}var nn=class{#e;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),wt(this.gcTime)&&(this.#e=yt.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(e){this.gcTime=Math.max(this.gcTime||0,e??(qt.isServer()?1/0:300*1e3))}clearGcTimeout(){this.#e&&=(yt.clearTimeout(this.#e),void 0)}},rn=class extends nn{#e;#t;#n;#r;#i;#a;#o;constructor(e){super(),this.#o=!1,this.#a=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.#r=e.client,this.#n=this.#r.getQueryCache(),this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.#e=sn(this.options),this.state=e.state??this.#e,this.scheduleGc()}get meta(){return this.options.meta}get promise(){return this.#i?.promise}setOptions(e){if(this.options={...this.#a,...e},this.updateGcTime(this.options.gcTime),this.state&&this.state.data===void 0){let e=sn(this.options);e.data!==void 0&&(this.setState(on(e.data,e.dataUpdatedAt)),this.#e=e)}}optionalRemove(){!this.observers.length&&this.state.fetchStatus===`idle`&&this.#n.remove(this)}setData(e,t){let n=Bt(this.state.data,e,this.options);return this.#c({data:n,type:`success`,dataUpdatedAt:t?.updatedAt,manual:t?.manual}),n}setState(e,t){this.#c({type:`setState`,state:e,setStateOptions:t})}cancel(e){let t=this.#i?.promise;return this.#i?.cancel(e),t?t.then(St).catch(St):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}get resetState(){return this.#e}reset(){this.destroy(),this.setState(this.resetState)}isActive(){return this.observers.some(e=>Dt(e.options.enabled,this)!==!1)}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===Ut||!this.isFetched()}isFetched(){return this.state.dataUpdateCount+this.state.errorUpdateCount>0}isStatic(){return this.getObserversCount()>0?this.observers.some(e=>Et(e.options.staleTime,this)===`static`):!1}isStale(){return this.getObserversCount()>0?this.observers.some(e=>e.getCurrentResult().isStale):this.state.data===void 0||this.state.isInvalidated}isStaleByTime(e=0){return this.state.data===void 0?!0:e===`static`?!1:this.state.isInvalidated?!0:!Tt(this.state.dataUpdatedAt,e)}onFocus(){this.observers.find(e=>e.shouldFetchOnWindowFocus())?.refetch({cancelRefetch:!1}),this.#i?.continue()}onOnline(){this.observers.find(e=>e.shouldFetchOnReconnect())?.refetch({cancelRefetch:!1}),this.#i?.continue()}addObserver(e){this.observers.includes(e)||(this.observers.push(e),this.clearGcTimeout(),this.#n.notify({type:`observerAdded`,query:this,observer:e}))}removeObserver(e){this.observers.includes(e)&&(this.observers=this.observers.filter(t=>t!==e),this.observers.length||(this.#i&&(this.#o||this.#s()?this.#i.cancel({revert:!0}):this.#i.cancelRetry()),this.scheduleGc()),this.#n.notify({type:`observerRemoved`,query:this,observer:e}))}getObserversCount(){return this.observers.length}#s(){return this.state.fetchStatus===`paused`&&this.state.status===`pending`}invalidate(){this.state.isInvalidated||this.#c({type:`invalidate`})}async fetch(e,t){if(this.state.fetchStatus!==`idle`&&this.#i?.status()!==`rejected`){if(this.state.data!==void 0&&t?.cancelRefetch)this.cancel({silent:!0});else if(this.#i)return this.#i.continueRetry(),this.#i.promise}if(e&&this.setOptions(e),!this.options.queryFn){let e=this.observers.find(e=>e.options.queryFn);e&&this.setOptions(e.options)}let n=new AbortController,r=e=>{Object.defineProperty(e,`signal`,{enumerable:!0,get:()=>(this.#o=!0,n.signal)})},i=()=>{let e=Wt(this.options,t),n=(()=>{let e={client:this.#r,queryKey:this.queryKey,meta:this.meta};return r(e),e})();return this.#o=!1,this.options.persister?this.options.persister(e,n,this):e(n)},a=(()=>{let e={fetchOptions:t,options:this.options,queryKey:this.queryKey,client:this.#r,state:this.state,fetchFn:i};return r(e),e})();this.options.behavior?.onFetch(a,this),this.#t=this.state,(this.state.fetchStatus===`idle`||this.state.fetchMeta!==a.fetchOptions?.meta)&&this.#c({type:`fetch`,meta:a.fetchOptions?.meta}),this.#i=tn({initialPromise:t?.initialPromise,fn:a.fetchFn,onCancel:e=>{e instanceof en&&e.revert&&this.setState({...this.#t,fetchStatus:`idle`}),n.abort()},onFail:(e,t)=>{this.#c({type:`failed`,failureCount:e,error:t})},onPause:()=>{this.#c({type:`pause`})},onContinue:()=>{this.#c({type:`continue`})},retry:a.options.retry,retryDelay:a.options.retryDelay,networkMode:a.options.networkMode,canRun:()=>!0});try{let e=await this.#i.start();if(e===void 0)throw Error(`${this.queryHash} data is undefined`);return this.setData(e),this.#n.config.onSuccess?.(e,this),this.#n.config.onSettled?.(e,this.state.error,this),e}catch(e){if(e instanceof en){if(e.silent)return this.#i.promise;if(e.revert){if(this.state.data===void 0)throw e;return this.state.data}}throw this.#c({type:`error`,error:e}),this.#n.config.onError?.(e,this),this.#n.config.onSettled?.(this.state.data,e,this),e}finally{this.scheduleGc()}}#c(e){this.state=(t=>{switch(e.type){case`failed`:return{...t,fetchFailureCount:e.failureCount,fetchFailureReason:e.error};case`pause`:return{...t,fetchStatus:`paused`};case`continue`:return{...t,fetchStatus:`fetching`};case`fetch`:return{...t,...an(t.data,this.options),fetchMeta:e.meta??null};case`success`:let n={...t,...on(e.data,e.dataUpdatedAt),dataUpdateCount:t.dataUpdateCount+1,...!e.manual&&{fetchStatus:`idle`,fetchFailureCount:0,fetchFailureReason:null}};return this.#t=e.manual?n:void 0,n;case`error`:let r=e.error;return{...t,error:r,errorUpdateCount:t.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:t.fetchFailureCount+1,fetchFailureReason:r,fetchStatus:`idle`,status:`error`,isInvalidated:!0};case`invalidate`:return{...t,isInvalidated:!0};case`setState`:return{...t,...e.state}}})(this.state),U.batch(()=>{this.observers.forEach(e=>{e.onQueryUpdate()}),this.#n.notify({query:this,type:`updated`,action:e})})}};function an(e,t){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:$t(t.networkMode)?`fetching`:`paused`,...e===void 0&&{error:null,status:`pending`}}}function on(e,t){return{data:e,dataUpdatedAt:t??Date.now(),error:null,isInvalidated:!1,status:`success`}}function sn(e){let t=typeof e.initialData==`function`?e.initialData():e.initialData,n=t!==void 0,r=n?typeof e.initialDataUpdatedAt==`function`?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0;return{data:t,dataUpdateCount:0,dataUpdatedAt:n?r??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:n?`success`:`pending`,fetchStatus:`idle`}}var cn=class extends gt{constructor(e,t){super(),this.options=t,this.#e=e,this.#s=null,this.#o=Jt(),this.bindMethods(),this.setOptions(t)}#e;#t=void 0;#n=void 0;#r=void 0;#i;#a;#o;#s;#c;#l;#u;#d;#f;#p;#m=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){this.listeners.size===1&&(this.#t.addObserver(this),un(this.#t,this.options)?this.#h():this.updateResult(),this.#y())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return dn(this.#t,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return dn(this.#t,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#x(),this.#t.removeObserver(this)}setOptions(e){let t=this.options,n=this.#t;if(this.options=this.#e.defaultQueryOptions(e),this.options.enabled!==void 0&&typeof this.options.enabled!=`boolean`&&typeof this.options.enabled!=`function`&&typeof Dt(this.options.enabled,this.#t)!=`boolean`)throw Error(`Expected enabled to be a boolean or a callback that returns a boolean`);this.#S(),this.#t.setOptions(this.options),t._defaulted&&!Ft(this.options,t)&&this.#e.getQueryCache().notify({type:`observerOptionsUpdated`,query:this.#t,observer:this});let r=this.hasListeners();r&&fn(this.#t,n,this.options,t)&&this.#h(),this.updateResult(),r&&(this.#t!==n||Dt(this.options.enabled,this.#t)!==Dt(t.enabled,this.#t)||Et(this.options.staleTime,this.#t)!==Et(t.staleTime,this.#t))&&this.#g();let i=this.#_();r&&(this.#t!==n||Dt(this.options.enabled,this.#t)!==Dt(t.enabled,this.#t)||i!==this.#p)&&this.#v(i)}getOptimisticResult(e){let t=this.#e.getQueryCache().build(this.#e,e),n=this.createResult(t,e);return mn(this,n)&&(this.#r=n,this.#a=this.options,this.#i=this.#t.state),n}getCurrentResult(){return this.#r}trackResult(e,t){return new Proxy(e,{get:(e,n)=>(this.trackProp(n),t?.(n),n===`promise`&&(this.trackProp(`data`),!this.options.experimental_prefetchInRender&&this.#o.status===`pending`&&this.#o.reject(Error(`experimental_prefetchInRender feature flag is not enabled`))),Reflect.get(e,n))})}trackProp(e){this.#m.add(e)}getCurrentQuery(){return this.#t}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),n=this.#e.getQueryCache().build(this.#e,t);return n.fetch().then(()=>this.createResult(n,t))}fetch(e){return this.#h({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#r))}#h(e){this.#S();let t=this.#t.fetch(this.options,e);return e?.throwOnError||(t=t.catch(St)),t}#g(){this.#b();let e=Et(this.options.staleTime,this.#t);if(qt.isServer()||this.#r.isStale||!wt(e))return;let t=Tt(this.#r.dataUpdatedAt,e)+1;this.#d=yt.setTimeout(()=>{this.#r.isStale||this.updateResult()},t)}#_(){return(typeof this.options.refetchInterval==`function`?this.options.refetchInterval(this.#t):this.options.refetchInterval)??!1}#v(e){this.#x(),this.#p=e,!(qt.isServer()||Dt(this.options.enabled,this.#t)===!1||!wt(this.#p)||this.#p===0)&&(this.#f=yt.setInterval(()=>{(this.options.refetchIntervalInBackground||_t.isFocused())&&this.#h()},this.#p))}#y(){this.#g(),this.#v(this.#_())}#b(){this.#d&&=(yt.clearTimeout(this.#d),void 0)}#x(){this.#f&&=(yt.clearInterval(this.#f),void 0)}createResult(e,t){let n=this.#t,r=this.options,i=this.#r,a=this.#i,o=this.#a,s=e===n?this.#n:e.state,{state:c}=e,l={...c},u=!1,d;if(t._optimisticResults){let i=this.hasListeners(),a=!i&&un(e,t),o=i&&fn(e,n,t,r);(a||o)&&(l={...l,...an(c.data,e.options)}),t._optimisticResults===`isRestoring`&&(l.fetchStatus=`idle`)}let{error:f,errorUpdatedAt:p,status:m}=l;d=l.data;let h=!1;if(t.placeholderData!==void 0&&d===void 0&&m===`pending`){let e;i?.isPlaceholderData&&t.placeholderData===o?.placeholderData?(e=i.data,h=!0):e=typeof t.placeholderData==`function`?t.placeholderData(this.#u?.state.data,this.#u):t.placeholderData,e!==void 0&&(m=`success`,d=Bt(i?.data,e,t),u=!0)}if(t.select&&d!==void 0&&!h)if(i&&d===a?.data&&t.select===this.#c)d=this.#l;else try{this.#c=t.select,d=t.select(d),d=Bt(i?.data,d,t),this.#l=d,this.#s=null}catch(e){this.#s=e}this.#s&&(f=this.#s,d=this.#l,p=Date.now(),m=`error`);let g=l.fetchStatus===`fetching`,_=m===`pending`,v=m===`error`,y=_&&g,b=d!==void 0,x={status:m,fetchStatus:l.fetchStatus,isPending:_,isSuccess:m===`success`,isError:v,isInitialLoading:y,isLoading:y,data:d,dataUpdatedAt:l.dataUpdatedAt,error:f,errorUpdatedAt:p,failureCount:l.fetchFailureCount,failureReason:l.fetchFailureReason,errorUpdateCount:l.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:l.dataUpdateCount>s.dataUpdateCount||l.errorUpdateCount>s.errorUpdateCount,isFetching:g,isRefetching:g&&!_,isLoadingError:v&&!b,isPaused:l.fetchStatus===`paused`,isPlaceholderData:u,isRefetchError:v&&b,isStale:pn(e,t),refetch:this.refetch,promise:this.#o,isEnabled:Dt(t.enabled,e)!==!1};if(this.options.experimental_prefetchInRender){let t=x.data!==void 0,r=x.status===`error`&&!t,i=e=>{r?e.reject(x.error):t&&e.resolve(x.data)},a=()=>{i(this.#o=x.promise=Jt())},o=this.#o;switch(o.status){case`pending`:e.queryHash===n.queryHash&&i(o);break;case`fulfilled`:(r||x.data!==o.value)&&a();break;case`rejected`:(!r||x.error!==o.reason)&&a();break}}return x}updateResult(){let e=this.#r,t=this.createResult(this.#t,this.options);this.#i=this.#t.state,this.#a=this.options,this.#i.data!==void 0&&(this.#u=this.#t),!Ft(t,e)&&(this.#r=t,this.#C({listeners:(()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,n=typeof t==`function`?t():t;if(n===`all`||!n&&!this.#m.size)return!0;let r=new Set(n??this.#m);return this.options.throwOnError&&r.add(`error`),Object.keys(this.#r).some(t=>{let n=t;return this.#r[n]!==e[n]&&r.has(n)})})()}))}#S(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#t)return;let t=this.#t;this.#t=e,this.#n=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#y()}#C(e){U.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#r)}),this.#e.getQueryCache().notify({query:this.#t,type:`observerResultsUpdated`})})}};function ln(e,t){return Dt(t.enabled,e)!==!1&&e.state.data===void 0&&!(e.state.status===`error`&&t.retryOnMount===!1)}function un(e,t){return ln(e,t)||e.state.data!==void 0&&dn(e,t,t.refetchOnMount)}function dn(e,t,n){if(Dt(t.enabled,e)!==!1&&Et(t.staleTime,e)!==`static`){let r=typeof n==`function`?n(e):n;return r===`always`||r!==!1&&pn(e,t)}return!1}function fn(e,t,n,r){return(e!==t||Dt(r.enabled,e)===!1)&&(!n.suspense||e.state.status!==`error`)&&pn(e,n)}function pn(e,t){return Dt(t.enabled,e)!==!1&&e.isStaleByTime(Et(t.staleTime,e))}function mn(e,t){return!Ft(e.getCurrentResult(),t)}function hn(e){return{onFetch:(t,n)=>{let r=t.options,i=t.fetchOptions?.meta?.fetchMore?.direction,a=t.state.data?.pages||[],o=t.state.data?.pageParams||[],s={pages:[],pageParams:[]},c=0,l=async()=>{let n=!1,l=e=>{Kt(e,()=>t.signal,()=>n=!0)},u=Wt(t.options,t.fetchOptions),d=async(e,r,i)=>{if(n)return Promise.reject();if(r==null&&e.pages.length)return Promise.resolve(e);let a=await u((()=>{let e={client:t.client,queryKey:t.queryKey,pageParam:r,direction:i?`backward`:`forward`,meta:t.options.meta};return l(e),e})()),{maxPages:o}=t.options,s=i?Ht:Vt;return{pages:s(e.pages,a,o),pageParams:s(e.pageParams,r,o)}};if(i&&a.length){let e=i===`backward`,t=e?_n:gn,n={pages:a,pageParams:o};s=await d(n,t(r,n),e)}else{let t=e??a.length;do{let e=c===0?o[0]??r.initialPageParam:gn(r,s);if(c>0&&e==null)break;s=await d(s,e),c++}while(c<t)}return s};t.options.persister?t.fetchFn=()=>t.options.persister?.(l,{client:t.client,queryKey:t.queryKey,meta:t.options.meta,signal:t.signal},n):t.fetchFn=l}}}function gn(e,{pages:t,pageParams:n}){let r=t.length-1;return t.length>0?e.getNextPageParam(t[r],t,n[r],n):void 0}function _n(e,{pages:t,pageParams:n}){return t.length>0?e.getPreviousPageParam?.(t[0],t,n[0],n):void 0}var vn=class extends nn{#e;#t;#n;#r;constructor(e){super(),this.#e=e.client,this.mutationId=e.mutationId,this.#n=e.mutationCache,this.#t=[],this.state=e.state||yn(),this.setOptions(e.options),this.scheduleGc()}setOptions(e){this.options=e,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(e){this.#t.includes(e)||(this.#t.push(e),this.clearGcTimeout(),this.#n.notify({type:`observerAdded`,mutation:this,observer:e}))}removeObserver(e){this.#t=this.#t.filter(t=>t!==e),this.scheduleGc(),this.#n.notify({type:`observerRemoved`,mutation:this,observer:e})}optionalRemove(){this.#t.length||(this.state.status===`pending`?this.scheduleGc():this.#n.remove(this))}continue(){return this.#r?.continue()??this.execute(this.state.variables)}async execute(e){let t=()=>{this.#i({type:`continue`})},n={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#r=tn({fn:()=>this.options.mutationFn?this.options.mutationFn(e,n):Promise.reject(Error(`No mutationFn found`)),onFail:(e,t)=>{this.#i({type:`failed`,failureCount:e,error:t})},onPause:()=>{this.#i({type:`pause`})},onContinue:t,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#n.canRun(this)});let r=this.state.status===`pending`,i=!this.#r.canStart();try{if(r)t();else{this.#i({type:`pending`,variables:e,isPaused:i}),this.#n.config.onMutate&&await this.#n.config.onMutate(e,this,n);let t=await this.options.onMutate?.(e,n);t!==this.state.context&&this.#i({type:`pending`,context:t,variables:e,isPaused:i})}let a=await this.#r.start();return await this.#n.config.onSuccess?.(a,e,this.state.context,this,n),await this.options.onSuccess?.(a,e,this.state.context,n),await this.#n.config.onSettled?.(a,null,this.state.variables,this.state.context,this,n),await this.options.onSettled?.(a,null,e,this.state.context,n),this.#i({type:`success`,data:a}),a}catch(t){try{await this.#n.config.onError?.(t,e,this.state.context,this,n)}catch(e){Promise.reject(e)}try{await this.options.onError?.(t,e,this.state.context,n)}catch(e){Promise.reject(e)}try{await this.#n.config.onSettled?.(void 0,t,this.state.variables,this.state.context,this,n)}catch(e){Promise.reject(e)}try{await this.options.onSettled?.(void 0,t,e,this.state.context,n)}catch(e){Promise.reject(e)}throw this.#i({type:`error`,error:t}),t}finally{this.#n.runNext(this)}}#i(e){this.state=(t=>{switch(e.type){case`failed`:return{...t,failureCount:e.failureCount,failureReason:e.error};case`pause`:return{...t,isPaused:!0};case`continue`:return{...t,isPaused:!1};case`pending`:return{...t,context:e.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:e.isPaused,status:`pending`,variables:e.variables,submittedAt:Date.now()};case`success`:return{...t,data:e.data,failureCount:0,failureReason:null,error:null,status:`success`,isPaused:!1};case`error`:return{...t,data:void 0,error:e.error,failureCount:t.failureCount+1,failureReason:e.error,isPaused:!1,status:`error`}}})(this.state),U.batch(()=>{this.#t.forEach(t=>{t.onMutationUpdate(e)}),this.#n.notify({mutation:this,type:`updated`,action:e})})}};function yn(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:`idle`,variables:void 0,submittedAt:0}}var bn=class extends gt{constructor(e={}){super(),this.config=e,this.#e=new Set,this.#t=new Map,this.#n=0}#e;#t;#n;build(e,t,n){let r=new vn({client:e,mutationCache:this,mutationId:++this.#n,options:e.defaultMutationOptions(t),state:n});return this.add(r),r}add(e){this.#e.add(e);let t=xn(e);if(typeof t==`string`){let n=this.#t.get(t);n?n.push(e):this.#t.set(t,[e])}this.notify({type:`added`,mutation:e})}remove(e){if(this.#e.delete(e)){let t=xn(e);if(typeof t==`string`){let n=this.#t.get(t);if(n)if(n.length>1){let t=n.indexOf(e);t!==-1&&n.splice(t,1)}else n[0]===e&&this.#t.delete(t)}}this.notify({type:`removed`,mutation:e})}canRun(e){let t=xn(e);if(typeof t==`string`){let n=this.#t.get(t)?.find(e=>e.state.status===`pending`);return!n||n===e}else return!0}runNext(e){let t=xn(e);return typeof t==`string`?(this.#t.get(t)?.find(t=>t!==e&&t.state.isPaused))?.continue()??Promise.resolve():Promise.resolve()}clear(){U.batch(()=>{this.#e.forEach(e=>{this.notify({type:`removed`,mutation:e})}),this.#e.clear(),this.#t.clear()})}getAll(){return Array.from(this.#e)}find(e){let t={exact:!0,...e};return this.getAll().find(e=>kt(t,e))}findAll(e={}){return this.getAll().filter(t=>kt(e,t))}notify(e){U.batch(()=>{this.listeners.forEach(t=>{t(e)})})}resumePausedMutations(){let e=this.getAll().filter(e=>e.state.isPaused);return U.batch(()=>Promise.all(e.map(e=>e.continue().catch(St))))}};function xn(e){return e.options.scope?.id}var Sn=class extends gt{constructor(e={}){super(),this.config=e,this.#e=new Map}#e;build(e,t,n){let r=t.queryKey,i=t.queryHash??At(r,t),a=this.get(i);return a||(a=new rn({client:e,queryKey:r,queryHash:i,options:e.defaultQueryOptions(t),state:n,defaultOptions:e.getQueryDefaults(r)}),this.add(a)),a}add(e){this.#e.has(e.queryHash)||(this.#e.set(e.queryHash,e),this.notify({type:`added`,query:e}))}remove(e){let t=this.#e.get(e.queryHash);t&&(e.destroy(),t===e&&this.#e.delete(e.queryHash),this.notify({type:`removed`,query:e}))}clear(){U.batch(()=>{this.getAll().forEach(e=>{this.remove(e)})})}get(e){return this.#e.get(e)}getAll(){return[...this.#e.values()]}find(e){let t={exact:!0,...e};return this.getAll().find(e=>Ot(t,e))}findAll(e={}){let t=this.getAll();return Object.keys(e).length>0?t.filter(t=>Ot(e,t)):t}notify(e){U.batch(()=>{this.listeners.forEach(t=>{t(e)})})}onFocus(){U.batch(()=>{this.getAll().forEach(e=>{e.onFocus()})})}onOnline(){U.batch(()=>{this.getAll().forEach(e=>{e.onOnline()})})}},Cn=class{#e;#t;#n;#r;#i;#a;#o;#s;constructor(e={}){this.#e=e.queryCache||new Sn,this.#t=e.mutationCache||new bn,this.#n=e.defaultOptions||{},this.#r=new Map,this.#i=new Map,this.#a=0}mount(){this.#a++,this.#a===1&&(this.#o=_t.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#e.onFocus())}),this.#s=Zt.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#e.onOnline())}))}unmount(){this.#a--,this.#a===0&&(this.#o?.(),this.#o=void 0,this.#s?.(),this.#s=void 0)}isFetching(e){return this.#e.findAll({...e,fetchStatus:`fetching`}).length}isMutating(e){return this.#t.findAll({...e,status:`pending`}).length}getQueryData(e){let t=this.defaultQueryOptions({queryKey:e});return this.#e.get(t.queryHash)?.state.data}ensureQueryData(e){let t=this.defaultQueryOptions(e),n=this.#e.build(this,t),r=n.state.data;return r===void 0?this.fetchQuery(e):(e.revalidateIfStale&&n.isStaleByTime(Et(t.staleTime,n))&&this.prefetchQuery(t),Promise.resolve(r))}getQueriesData(e){return this.#e.findAll(e).map(({queryKey:e,state:t})=>[e,t.data])}setQueryData(e,t,n){let r=this.defaultQueryOptions({queryKey:e}),i=this.#e.get(r.queryHash)?.state.data,a=Ct(t,i);if(a!==void 0)return this.#e.build(this,r).setData(a,{...n,manual:!0})}setQueriesData(e,t,n){return U.batch(()=>this.#e.findAll(e).map(({queryKey:e})=>[e,this.setQueryData(e,t,n)]))}getQueryState(e){let t=this.defaultQueryOptions({queryKey:e});return this.#e.get(t.queryHash)?.state}removeQueries(e){let t=this.#e;U.batch(()=>{t.findAll(e).forEach(e=>{t.remove(e)})})}resetQueries(e,t){let n=this.#e;return U.batch(()=>(n.findAll(e).forEach(e=>{e.reset()}),this.refetchQueries({type:`active`,...e},t)))}cancelQueries(e,t={}){let n={revert:!0,...t},r=U.batch(()=>this.#e.findAll(e).map(e=>e.cancel(n)));return Promise.all(r).then(St).catch(St)}invalidateQueries(e,t={}){return U.batch(()=>(this.#e.findAll(e).forEach(e=>{e.invalidate()}),e?.refetchType===`none`?Promise.resolve():this.refetchQueries({...e,type:e?.refetchType??e?.type??`active`},t)))}refetchQueries(e,t={}){let n={...t,cancelRefetch:t.cancelRefetch??!0},r=U.batch(()=>this.#e.findAll(e).filter(e=>!e.isDisabled()&&!e.isStatic()).map(e=>{let t=e.fetch(void 0,n);return n.throwOnError||(t=t.catch(St)),e.state.fetchStatus===`paused`?Promise.resolve():t}));return Promise.all(r).then(St)}fetchQuery(e){let t=this.defaultQueryOptions(e);t.retry===void 0&&(t.retry=!1);let n=this.#e.build(this,t);return n.isStaleByTime(Et(t.staleTime,n))?n.fetch(t):Promise.resolve(n.state.data)}prefetchQuery(e){return this.fetchQuery(e).then(St).catch(St)}fetchInfiniteQuery(e){return e.behavior=hn(e.pages),this.fetchQuery(e)}prefetchInfiniteQuery(e){return this.fetchInfiniteQuery(e).then(St).catch(St)}ensureInfiniteQueryData(e){return e.behavior=hn(e.pages),this.ensureQueryData(e)}resumePausedMutations(){return Zt.isOnline()?this.#t.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#e}getMutationCache(){return this.#t}getDefaultOptions(){return this.#n}setDefaultOptions(e){this.#n=e}setQueryDefaults(e,t){this.#r.set(jt(e),{queryKey:e,defaultOptions:t})}getQueryDefaults(e){let t=[...this.#r.values()],n={};return t.forEach(t=>{Mt(e,t.queryKey)&&Object.assign(n,t.defaultOptions)}),n}setMutationDefaults(e,t){this.#i.set(jt(e),{mutationKey:e,defaultOptions:t})}getMutationDefaults(e){let t=[...this.#i.values()],n={};return t.forEach(t=>{Mt(e,t.mutationKey)&&Object.assign(n,t.defaultOptions)}),n}defaultQueryOptions(e){if(e._defaulted)return e;let t={...this.#n.queries,...this.getQueryDefaults(e.queryKey),...e,_defaulted:!0};return t.queryHash||=At(t.queryKey,t),t.refetchOnReconnect===void 0&&(t.refetchOnReconnect=t.networkMode!==`always`),t.throwOnError===void 0&&(t.throwOnError=!!t.suspense),!t.networkMode&&t.persister&&(t.networkMode=`offlineFirst`),t.queryFn===Ut&&(t.enabled=!1),t}defaultMutationOptions(e){return e?._defaulted?e:{...this.#n.mutations,...e?.mutationKey&&this.getMutationDefaults(e.mutationKey),...e,_defaulted:!0}}clear(){this.#e.clear(),this.#t.clear()}},wn=M.createContext(void 0),Tn=e=>{let t=M.useContext(wn);if(e)return e;if(!t)throw Error(`No QueryClient set, use QueryClientProvider to set one`);return t},En=({client:e,children:t})=>(M.useEffect(()=>(e.mount(),()=>{e.unmount()}),[e]),(0,F.jsx)(wn.Provider,{value:e,children:t})),Dn=M.createContext(!1),On=()=>M.useContext(Dn);Dn.Provider;function kn(){let e=!1;return{clearReset:()=>{e=!1},reset:()=>{e=!0},isReset:()=>e}}var An=M.createContext(kn()),jn=()=>M.useContext(An),Mn=(e,t,n)=>{let r=n?.state.error&&typeof e.throwOnError==`function`?Gt(e.throwOnError,[n.state.error,n]):e.throwOnError;(e.suspense||e.experimental_prefetchInRender||r)&&(t.isReset()||(e.retryOnMount=!1))},Nn=e=>{M.useEffect(()=>{e.clearReset()},[e])},Pn=({result:e,errorResetBoundary:t,throwOnError:n,query:r,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(i&&e.data===void 0||Gt(n,[e.error,r])),Fn=e=>{if(e.suspense){let t=1e3,n=e=>e===`static`?e:Math.max(e??t,t),r=e.staleTime;e.staleTime=typeof r==`function`?(...e)=>n(r(...e)):n(r),typeof e.gcTime==`number`&&(e.gcTime=Math.max(e.gcTime,t))}},In=(e,t)=>e.isLoading&&e.isFetching&&!t,Ln=(e,t)=>e?.suspense&&t.isPending,Rn=(e,t,n)=>t.fetchOptimistic(e).catch(()=>{n.clearReset()});function zn(e,t,n){let r=On(),i=jn(),a=Tn(n),o=a.defaultQueryOptions(e);a.getDefaultOptions().queries?._experimental_beforeQuery?.(o);let s=a.getQueryCache().get(o.queryHash);o._optimisticResults=r?`isRestoring`:`optimistic`,Fn(o),Mn(o,i,s),Nn(i);let c=!a.getQueryCache().get(o.queryHash),[l]=M.useState(()=>new t(a,o)),u=l.getOptimisticResult(o),d=!r&&e.subscribed!==!1;if(M.useSyncExternalStore(M.useCallback(e=>{let t=d?l.subscribe(U.batchCalls(e)):St;return l.updateResult(),t},[l,d]),()=>l.getCurrentResult(),()=>l.getCurrentResult()),M.useEffect(()=>{l.setOptions(o)},[o,l]),Ln(o,u))throw Rn(o,l,i);if(Pn({result:u,errorResetBoundary:i,throwOnError:o.throwOnError,query:s,suspense:o.suspense}))throw u.error;return a.getDefaultOptions().queries?._experimental_afterQuery?.(o,u),o.experimental_prefetchInRender&&!qt.isServer()&&In(u,r)&&(c?Rn(o,l,i):s?.promise)?.catch(St).finally(()=>{l.updateResult()}),o.notifyOnChangeProps?u:l.trackResult(u)}function Bn(e,t){return zn(e,cn,t)}function Vn(e,t){return t<5?`UNGRADED`:e>=.8?`HEALTHY`:e>=.5?`WARNING`:`CRITICAL`}function Hn(e){return e==null||!Number.isFinite(e)?`--`:`${Math.round(e*100)}%`}function Un(e){return[...e].sort((e,t)=>{let n=e.passRate??1,r=t.passRate??1;return n===r?t.checks-e.checks:n-r})}function Wn(e){let t=new Date(e).getTime();if(Number.isNaN(t))return`--`;let n=Math.max(0,Date.now()-t),r=Math.floor(n/6e4);if(r<1)return`just now`;if(r<60)return`${r}m ago`;let i=Math.floor(r/60);return i<24?`${i}h ago`:`${Math.floor(i/24)}d ago`}function Gn({...e}){return(0,F.jsx)(Me,{"data-slot":`sheet`,...e})}function Kn({...e}){return(0,F.jsx)(ze,{"data-slot":`sheet-portal`,...e})}function qn({className:e,...t}){return(0,F.jsx)(Ve,{"data-slot":`sheet-overlay`,className:N(`fixed inset-0 z-50 bg-black/10 transition-opacity duration-150 data-ending-style:opacity-0 data-starting-style:opacity-0 supports-backdrop-filter:backdrop-blur-xs`,e),...t})}function Jn({className:e,children:t,side:n=`right`,showCloseButton:r=!0,...i}){return(0,F.jsxs)(Kn,{children:[(0,F.jsx)(qn,{}),(0,F.jsxs)(we,{"data-slot":`sheet-content`,"data-side":n,className:N(`fixed z-50 flex flex-col gap-4 bg-background bg-clip-padding text-sm shadow-lg transition duration-200 ease-in-out data-ending-style:opacity-0 data-starting-style:opacity-0 data-[side=bottom]:inset-x-0 data-[side=bottom]:bottom-0 data-[side=bottom]:h-auto data-[side=bottom]:border-t data-[side=bottom]:data-ending-style:translate-y-[2.5rem] data-[side=bottom]:data-starting-style:translate-y-[2.5rem] data-[side=left]:inset-y-0 data-[side=left]:left-0 data-[side=left]:h-full data-[side=left]:w-3/4 data-[side=left]:border-r data-[side=left]:data-ending-style:translate-x-[-2.5rem] data-[side=left]:data-starting-style:translate-x-[-2.5rem] data-[side=right]:inset-y-0 data-[side=right]:right-0 data-[side=right]:h-full data-[side=right]:w-3/4 data-[side=right]:border-l data-[side=right]:data-ending-style:translate-x-[2.5rem] data-[side=right]:data-starting-style:translate-x-[2.5rem] data-[side=top]:inset-x-0 data-[side=top]:top-0 data-[side=top]:h-auto data-[side=top]:border-b data-[side=top]:data-ending-style:translate-y-[-2.5rem] data-[side=top]:data-starting-style:translate-y-[-2.5rem] data-[side=left]:sm:max-w-sm data-[side=right]:sm:max-w-sm`,e),...i,children:[t,r&&(0,F.jsxs)(Pe,{"data-slot":`sheet-close`,render:(0,F.jsx)(I,{variant:`ghost`,className:`absolute top-3 right-3`,size:`icon-sm`}),children:[(0,F.jsx)(v,{}),(0,F.jsx)(`span`,{className:`sr-only`,children:`Close`})]})]})]})}function Yn({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`sheet-header`,className:N(`flex flex-col gap-0.5 p-4`,e),...t})}function Xn({className:e,...t}){return(0,F.jsx)(Ue,{"data-slot":`sheet-title`,className:N(`text-base font-medium text-foreground`,e),...t})}function Zn({className:e,...t}){return(0,F.jsx)(de,{"data-slot":`sheet-description`,className:N(`text-sm text-muted-foreground`,e),...t})}function W({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`skeleton`,className:N(`animate-pulse rounded-md bg-muted`,e),...t})}var Qn=768;function $n(){let[e,t]=M.useState(void 0);return M.useEffect(()=>{let e=window.matchMedia(`(max-width: ${Qn-1}px)`),n=()=>{t(window.innerWidth<Qn)};return e.addEventListener(`change`,n),t(window.innerWidth<Qn),()=>e.removeEventListener(`change`,n)},[]),!!e}var er=`sidebar_state`,tr=3600*24*7,nr=`16rem`,rr=`18rem`,ir=`3rem`,ar=`b`,or=M.createContext(null);function sr(){let e=M.useContext(or);if(!e)throw Error(`useSidebar must be used within a SidebarProvider.`);return e}function cr({defaultOpen:e=!0,open:t,onOpenChange:n,className:r,style:i,children:a,...o}){let s=$n(),[c,l]=M.useState(!1),[u,d]=M.useState(e),f=t??u,p=M.useCallback(e=>{let t=typeof e==`function`?e(f):e;n?n(t):d(t),document.cookie=`${er}=${t}; path=/; max-age=${tr}`},[n,f]),m=M.useCallback(()=>s?l(e=>!e):p(e=>!e),[s,p,l]);M.useEffect(()=>{let e=e=>{e.key===ar&&(e.metaKey||e.ctrlKey)&&(e.preventDefault(),m())};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[m]);let h=f?`expanded`:`collapsed`,g=M.useMemo(()=>({state:h,open:f,setOpen:p,isMobile:s,openMobile:c,setOpenMobile:l,toggleSidebar:m}),[h,f,p,s,c,l,m]);return(0,F.jsx)(or.Provider,{value:g,children:(0,F.jsx)(`div`,{"data-slot":`sidebar-wrapper`,style:{"--sidebar-width":nr,"--sidebar-width-icon":ir,...i},className:N(`group/sidebar-wrapper flex min-h-svh w-full has-data-[variant=inset]:bg-sidebar`,r),...o,children:a})})}function lr({side:e=`left`,variant:t=`sidebar`,collapsible:n=`offcanvas`,className:r,children:i,dir:a,...o}){let{isMobile:s,state:c,openMobile:l,setOpenMobile:u}=sr();return n===`none`?(0,F.jsx)(`div`,{"data-slot":`sidebar`,className:N(`flex h-full w-(--sidebar-width) flex-col bg-sidebar text-sidebar-foreground`,r),...o,children:i}):s?(0,F.jsx)(Gn,{open:l,onOpenChange:u,...o,children:(0,F.jsxs)(Jn,{dir:a,"data-sidebar":`sidebar`,"data-slot":`sidebar`,"data-mobile":`true`,className:`w-(--sidebar-width) bg-sidebar p-0 text-sidebar-foreground [&>button]:hidden`,style:{"--sidebar-width":rr},side:e,children:[(0,F.jsxs)(Yn,{className:`sr-only`,children:[(0,F.jsx)(Xn,{children:`Sidebar`}),(0,F.jsx)(Zn,{children:`Displays the mobile sidebar.`})]}),(0,F.jsx)(`div`,{className:`flex h-full w-full flex-col`,children:i})]})}):(0,F.jsxs)(`div`,{className:`group peer hidden text-sidebar-foreground md:block`,"data-state":c,"data-collapsible":c===`collapsed`?n:``,"data-variant":t,"data-side":e,"data-slot":`sidebar`,children:[(0,F.jsx)(`div`,{"data-slot":`sidebar-gap`,className:N(`relative w-(--sidebar-width) bg-transparent transition-[width] duration-200 ease-linear`,`group-data-[collapsible=offcanvas]:w-0`,`group-data-[side=right]:rotate-180`,t===`floating`||t===`inset`?`group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)+(--spacing(4)))]`:`group-data-[collapsible=icon]:w-(--sidebar-width-icon)`)}),(0,F.jsx)(`div`,{"data-slot":`sidebar-container`,"data-side":e,className:N(`fixed inset-y-0 z-10 hidden h-svh w-(--sidebar-width) transition-[left,right,width] duration-200 ease-linear data-[side=left]:left-0 data-[side=left]:group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)] data-[side=right]:right-0 data-[side=right]:group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)] md:flex`,t===`floating`||t===`inset`?`p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)+(--spacing(4))+2px)]`:`group-data-[collapsible=icon]:w-(--sidebar-width-icon) group-data-[side=left]:border-r group-data-[side=right]:border-l`,r),...o,children:(0,F.jsx)(`div`,{"data-sidebar":`sidebar`,"data-slot":`sidebar-inner`,className:`flex size-full flex-col bg-sidebar group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:shadow-sm group-data-[variant=floating]:ring-1 group-data-[variant=floating]:ring-sidebar-border`,children:i})})]})}function ur({className:e,onClick:t,...n}){let{toggleSidebar:r}=sr();return(0,F.jsxs)(I,{"data-sidebar":`trigger`,"data-slot":`sidebar-trigger`,variant:`ghost`,size:`icon-sm`,className:N(e),onClick:e=>{t?.(e),r()},...n,children:[(0,F.jsx)(ie,{}),(0,F.jsx)(`span`,{className:`sr-only`,children:`Toggle Sidebar`})]})}function dr({className:e,...t}){return(0,F.jsx)(`main`,{"data-slot":`sidebar-inset`,className:N(`relative flex w-full flex-1 flex-col bg-background md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow-sm md:peer-data-[variant=inset]:peer-data-[state=collapsed]:ml-2`,e),...t})}function fr({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`sidebar-header`,"data-sidebar":`header`,className:N(`flex flex-col gap-2 p-2`,e),...t})}function pr({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`sidebar-footer`,"data-sidebar":`footer`,className:N(`flex flex-col gap-2 p-2`,e),...t})}function mr({className:e,...t}){return(0,F.jsx)(`div`,{"data-slot":`sidebar-content`,"data-sidebar":`content`,className:N(`no-scrollbar flex min-h-0 flex-1 flex-col gap-0 overflow-auto group-data-[collapsible=icon]:overflow-hidden`,e),...t})}xe(`peer/menu-button group/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm ring-sidebar-ring outline-hidden transition-[width,height,padding] group-has-data-[sidebar=menu-action]/menu-item:pr-8 group-data-[collapsible=icon]:size-8! group-data-[collapsible=icon]:p-2! hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-open:hover:bg-sidebar-accent data-open:hover:text-sidebar-accent-foreground data-active:bg-sidebar-accent data-active:font-medium data-active:text-sidebar-accent-foreground border-l-2 border-transparent data-active:border-primary data-active:rounded-l-none [&_svg]:size-4 [&_svg]:shrink-0 [&>span:last-child]:truncate`,{variants:{variant:{default:`hover:bg-sidebar-accent hover:text-sidebar-accent-foreground`,outline:`bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]`},size:{default:`h-8 text-sm`,sm:`h-7 text-xs`,lg:`h-12 text-sm group-data-[collapsible=icon]:p-0!`}},defaultVariants:{variant:`default`,size:`default`}});function hr({to:e,icon:t,label:n,tooltip:r,isActive:i}){return(0,F.jsxs)(pt,{children:[(0,F.jsxs)(mt,{render:(0,F.jsx)(l,{to:e,className:`flex items-center gap-3 px-4 py-2.5 font-headline text-sm tracking-tight rounded-lg transition-all duration-200 ${i?`bg-card text-primary font-bold shadow-[inset_0_0_0_1px_rgba(79,242,255,0.08)]`:`text-slate-400 hover:bg-muted/50 hover:text-slate-200`}`}),children:[t,(0,F.jsx)(`span`,{children:n})]}),(0,F.jsx)(ht,{side:`right`,children:r})]})}function gr({version:e,...t}){let n=r();return(0,F.jsx)(ft,{children:(0,F.jsxs)(lr,{collapsible:`offcanvas`,...t,children:[(0,F.jsx)(fr,{className:`px-4 pb-8 pt-6`,children:(0,F.jsxs)(l,{to:`/`,className:`flex items-center gap-3`,children:[(0,F.jsx)(`div`,{className:`size-8 shrink-0 bg-primary shadow-[0_0_12px_rgba(79,242,255,0.3)]`,role:`img`,"aria-label":`Selftune`,style:{WebkitMaskImage:`url(/logo.svg)`,WebkitMaskSize:`contain`,WebkitMaskRepeat:`no-repeat`,WebkitMaskPosition:`center`,maskImage:`url(/logo.svg)`,maskSize:`contain`,maskRepeat:`no-repeat`,maskPosition:`center`}}),(0,F.jsxs)(`div`,{className:`flex flex-col`,children:[(0,F.jsx)(`span`,{className:`font-headline text-2xl font-bold tracking-tighter text-primary text-glow`,children:`Selftune`}),(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-slate-500`,children:`Skill Evolution Engine`})]})]})}),(0,F.jsx)(mr,{className:`px-2`,children:(0,F.jsxs)(`nav`,{className:`space-y-1`,children:[(0,F.jsx)(hr,{to:`/`,icon:(0,F.jsx)(re,{className:`size-5`}),label:`Overview`,tooltip:`Dashboard overview`,isActive:n.pathname===`/`}),(0,F.jsx)(hr,{to:`/skills-library`,icon:(0,F.jsx)(He,{className:`size-5`}),label:`Skills`,tooltip:`Skills Library`,isActive:n.pathname===`/skills-library`||n.pathname.startsWith(`/skills/`)}),(0,F.jsx)(hr,{to:`/analytics`,icon:(0,F.jsx)(Fe,{className:`size-5`}),label:`Analytics`,tooltip:`Performance analytics`,isActive:n.pathname===`/analytics`}),(0,F.jsx)(hr,{to:`/status`,icon:(0,F.jsx)(S,{className:`size-5`}),label:`System Status`,tooltip:`System health diagnostics`,isActive:n.pathname===`/status`})]})}),(0,F.jsxs)(pr,{className:`px-4 pb-4`,children:[(0,F.jsxs)(pt,{children:[(0,F.jsxs)(mt,{render:(0,F.jsx)(`button`,{className:`w-full cursor-not-allowed border border-primary/15 bg-gradient-to-r from-primary/10 to-primary/5 py-2.5 rounded-xl flex items-center justify-center gap-2 font-headline text-xs uppercase tracking-wider text-primary/50 opacity-70`,type:`button`,disabled:!0,"aria-disabled":`true`,tabIndex:-1,title:`Run Evolution will be available once dashboard actions are wired.`}),children:[(0,F.jsx)(_,{className:`size-4`}),(0,F.jsx)(`span`,{children:`Run Evolution`})]}),(0,F.jsx)(ht,{side:`right`,children:`Dashboard-triggered evolution is not available yet.`})]}),(0,F.jsxs)(`div`,{className:`mt-3 flex items-center gap-2 px-4 py-1.5 font-headline text-[10px] uppercase tracking-widest text-slate-600`,children:[(0,F.jsx)(`span`,{className:`size-1.5 animate-pulse rounded-full bg-primary shadow-[0_0_8px_rgba(79,242,255,0.4)]`}),(0,F.jsxs)(`span`,{children:[`selftune`,e?` v${e}`:``]})]})]})]})})}function _r(e){if(typeof e!=`object`||!e)return!1;let t=e;return typeof t.workspace_root==`string`&&typeof t.git_sha==`string`&&typeof t.db_path==`string`&&typeof t.process_mode==`string`&&(t.watcher_mode===`wal`||t.watcher_mode===`jsonl`||t.watcher_mode===`none`)}function vr(){let[e,t]=(0,M.useState)(null);if((0,M.useEffect)(()=>{fetch(`/api/health`).then(e=>e.json()).then(e=>{_r(e)&&t(e)}).catch(()=>{})},[]),!e)return null;let n=e.watcher_mode===`jsonl`,r=e.watcher_mode===`none`,i=n?`Legacy watcher`:r?`Watcher disabled`:`Runtime healthy`,a=n?`text-amber-400 ring-amber-400/20 hover:bg-amber-400/8`:r?`text-destructive ring-destructive/20 hover:bg-destructive/8`:`text-primary ring-primary/20 hover:bg-primary/8`,o=n?`bg-amber-400`:r?`bg-destructive`:`animate-pulse bg-primary shadow-[0_0_8px_color-mix(in_srgb,var(--primary)_60%,transparent)]`;return(0,F.jsx)(`footer`,{className:`pointer-events-none fixed bottom-4 right-4 z-20`,children:(0,F.jsxs)(l,{to:`/status`,className:`glass-panel pointer-events-auto flex items-center gap-2 rounded-full border border-foreground/5 px-3 py-2 font-headline text-[10px] uppercase tracking-[0.18em] text-slate-300 shadow-lg transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/40 ${a}`,children:[(0,F.jsx)(`span`,{className:`size-1.5 rounded-full ${o}`}),(0,F.jsx)(`span`,{children:i}),(0,F.jsx)(`span`,{className:`text-foreground/25`,children:`/`}),(0,F.jsx)(`span`,{className:`text-slate-400`,children:e.process_mode})]})})}var yr=1,br=.9,xr=.8,Sr=.17,Cr=.1,wr=.999,Tr=.9999,Er=.99,Dr=/[\\\/_+.#"@\[\(\{&]/,Or=/[\\\/_+.#"@\[\(\{&]/g,kr=/[\s-]/,Ar=/[\s-]/g;function jr(e,t,n,r,i,a,o){if(a===t.length)return i===e.length?yr:Er;var s=`${i},${a}`;if(o[s]!==void 0)return o[s];for(var c=r.charAt(a),l=n.indexOf(c,i),u=0,d,f,p,m;l>=0;)d=jr(e,t,n,r,l+1,a+1,o),d>u&&(l===i?d*=yr:Dr.test(e.charAt(l-1))?(d*=xr,p=e.slice(i,l-1).match(Or),p&&i>0&&(d*=wr**+p.length)):kr.test(e.charAt(l-1))?(d*=br,m=e.slice(i,l-1).match(Ar),m&&i>0&&(d*=wr**+m.length)):(d*=Sr,i>0&&(d*=wr**+(l-i))),e.charAt(l)!==t.charAt(a)&&(d*=Tr)),(d<Cr&&n.charAt(l-1)===r.charAt(a+1)||r.charAt(a+1)===r.charAt(a)&&n.charAt(l-1)!==r.charAt(a))&&(f=jr(e,t,n,r,l+1,a+2,o),f*Cr>d&&(d=f*Cr)),d>u&&(u=d),l=n.indexOf(c,l+1);return o[s]=u,u}function Mr(e){return e.toLowerCase().replace(Ar,` `)}function Nr(e,t,n){return e=n&&n.length>0?`${e+` `+n.join(` `)}`:e,jr(e,t,Mr(e),Mr(t),0,0,{})}typeof window<`u`&&window.document&&window.document.createElement;function Pr(e,t,{checkForDefaultPrevented:n=!0}={}){return function(r){if(e?.(r),n===!1||!r.defaultPrevented)return t?.(r)}}function Fr(e,t){if(typeof e==`function`)return e(t);e!=null&&(e.current=t)}function Ir(...e){return t=>{let n=!1,r=e.map(e=>{let r=Fr(e,t);return!n&&typeof r==`function`&&(n=!0),r});if(n)return()=>{for(let t=0;t<r.length;t++){let n=r[t];typeof n==`function`?n():Fr(e[t],null)}}}}function Lr(...e){return M.useCallback(Ir(...e),e)}function Rr(e,t){let n=M.createContext(t),r=e=>{let{children:t,...r}=e,i=M.useMemo(()=>r,Object.values(r));return(0,F.jsx)(n.Provider,{value:i,children:t})};r.displayName=e+`Provider`;function i(r){let i=M.useContext(n);if(i)return i;if(t!==void 0)return t;throw Error(`\`${r}\` must be used within \`${e}\``)}return[r,i]}function zr(e,t=[]){let n=[];function r(t,r){let i=M.createContext(r),a=n.length;n=[...n,r];let o=t=>{let{scope:n,children:r,...o}=t,s=n?.[e]?.[a]||i,c=M.useMemo(()=>o,Object.values(o));return(0,F.jsx)(s.Provider,{value:c,children:r})};o.displayName=t+`Provider`;function s(n,o){let s=o?.[e]?.[a]||i,c=M.useContext(s);if(c)return c;if(r!==void 0)return r;throw Error(`\`${n}\` must be used within \`${t}\``)}return[o,s]}let i=()=>{let t=n.map(e=>M.createContext(e));return function(n){let r=n?.[e]||t;return M.useMemo(()=>({[`__scope${e}`]:{...n,[e]:r}}),[n,r])}};return i.scopeName=e,[r,Br(i,...t)]}function Br(...e){let t=e[0];if(e.length===1)return t;let n=()=>{let n=e.map(e=>({useScope:e(),scopeName:e.scopeName}));return function(e){let r=n.reduce((t,{useScope:n,scopeName:r})=>{let i=n(e)[`__scope${r}`];return{...t,...i}},{});return M.useMemo(()=>({[`__scope${t.scopeName}`]:r}),[r])}};return n.scopeName=t.scopeName,n}var Vr=globalThis?.document?M.useLayoutEffect:()=>{},Hr=M.useId||(()=>void 0),Ur=0;function Wr(e){let[t,n]=M.useState(Hr());return Vr(()=>{e||n(e=>e??String(Ur++))},[e]),e||(t?`radix-${t}`:``)}var Gr=M.useInsertionEffect||Vr;function Kr({prop:e,defaultProp:t,onChange:n=()=>{},caller:r}){let[i,a,o]=qr({defaultProp:t,onChange:n}),s=e!==void 0,c=s?e:i;{let t=M.useRef(e!==void 0);M.useEffect(()=>{let e=t.current;e!==s&&console.warn(`${r} is changing from ${e?`controlled`:`uncontrolled`} to ${s?`controlled`:`uncontrolled`}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),t.current=s},[s,r])}return[c,M.useCallback(t=>{if(s){let n=Jr(t)?t(e):t;n!==e&&o.current?.(n)}else a(t)},[s,e,a,o])]}function qr({defaultProp:e,onChange:t}){let[n,r]=M.useState(e),i=M.useRef(n),a=M.useRef(t);return Gr(()=>{a.current=t},[t]),M.useEffect(()=>{i.current!==n&&(a.current?.(n),i.current=n)},[n,i]),[n,r,a]}function Jr(e){return typeof e==`function`}var Yr=t(a(),1);function Xr(e){let t=Zr(e),n=M.forwardRef((e,n)=>{let{children:r,...i}=e,a=M.Children.toArray(r),o=a.find($r);if(o){let e=o.props.children,r=a.map(t=>t===o?M.Children.count(e)>1?M.Children.only(null):M.isValidElement(e)?e.props.children:null:t);return(0,F.jsx)(t,{...i,ref:n,children:M.isValidElement(e)?M.cloneElement(e,void 0,r):null})}return(0,F.jsx)(t,{...i,ref:n,children:r})});return n.displayName=`${e}.Slot`,n}function Zr(e){let t=M.forwardRef((e,t)=>{let{children:n,...r}=e;if(M.isValidElement(n)){let e=ti(n),i=ei(r,n.props);return n.type!==M.Fragment&&(i.ref=t?Ir(t,e):e),M.cloneElement(n,i)}return M.Children.count(n)>1?M.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var Qr=Symbol(`radix.slottable`);function $r(e){return M.isValidElement(e)&&typeof e.type==`function`&&`__radixId`in e.type&&e.type.__radixId===Qr}function ei(e,t){let n={...t};for(let r in t){let i=e[r],a=t[r];/^on[A-Z]/.test(r)?i&&a?n[r]=(...e)=>{let t=a(...e);return i(...e),t}:i&&(n[r]=i):r===`style`?n[r]={...i,...a}:r===`className`&&(n[r]=[i,a].filter(Boolean).join(` `))}return{...e,...n}}function ti(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var G=[`a`,`button`,`div`,`form`,`h2`,`h3`,`img`,`input`,`label`,`li`,`nav`,`ol`,`p`,`select`,`span`,`svg`,`ul`].reduce((e,t)=>{let n=Xr(`Primitive.${t}`),r=M.forwardRef((e,r)=>{let{asChild:i,...a}=e,o=i?n:t;return typeof window<`u`&&(window[Symbol.for(`radix-ui`)]=!0),(0,F.jsx)(o,{...a,ref:r})});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{});function ni(e,t){e&&Yr.flushSync(()=>e.dispatchEvent(t))}function ri(e){let t=M.useRef(e);return M.useEffect(()=>{t.current=e}),M.useMemo(()=>(...e)=>t.current?.(...e),[])}function ii(e,t=globalThis?.document){let n=ri(e);M.useEffect(()=>{let e=e=>{e.key===`Escape`&&n(e)};return t.addEventListener(`keydown`,e,{capture:!0}),()=>t.removeEventListener(`keydown`,e,{capture:!0})},[n,t])}var ai=`DismissableLayer`,oi=`dismissableLayer.update`,si=`dismissableLayer.pointerDownOutside`,ci=`dismissableLayer.focusOutside`,li,ui=M.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),di=M.forwardRef((e,t)=>{let{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:i,onFocusOutside:a,onInteractOutside:o,onDismiss:s,...c}=e,l=M.useContext(ui),[u,d]=M.useState(null),f=u?.ownerDocument??globalThis?.document,[,p]=M.useState({}),m=Lr(t,e=>d(e)),h=Array.from(l.layers),[g]=[...l.layersWithOutsidePointerEventsDisabled].slice(-1),_=h.indexOf(g),v=u?h.indexOf(u):-1,y=l.layersWithOutsidePointerEventsDisabled.size>0,b=v>=_,x=mi(e=>{let t=e.target,n=[...l.branches].some(e=>e.contains(t));!b||n||(i?.(e),o?.(e),e.defaultPrevented||s?.())},f),S=hi(e=>{let t=e.target;[...l.branches].some(e=>e.contains(t))||(a?.(e),o?.(e),e.defaultPrevented||s?.())},f);return ii(e=>{v===l.layers.size-1&&(r?.(e),!e.defaultPrevented&&s&&(e.preventDefault(),s()))},f),M.useEffect(()=>{if(u)return n&&(l.layersWithOutsidePointerEventsDisabled.size===0&&(li=f.body.style.pointerEvents,f.body.style.pointerEvents=`none`),l.layersWithOutsidePointerEventsDisabled.add(u)),l.layers.add(u),gi(),()=>{n&&l.layersWithOutsidePointerEventsDisabled.size===1&&(f.body.style.pointerEvents=li)}},[u,f,n,l]),M.useEffect(()=>()=>{u&&(l.layers.delete(u),l.layersWithOutsidePointerEventsDisabled.delete(u),gi())},[u,l]),M.useEffect(()=>{let e=()=>p({});return document.addEventListener(oi,e),()=>document.removeEventListener(oi,e)},[]),(0,F.jsx)(G.div,{...c,ref:m,style:{pointerEvents:y?b?`auto`:`none`:void 0,...e.style},onFocusCapture:Pr(e.onFocusCapture,S.onFocusCapture),onBlurCapture:Pr(e.onBlurCapture,S.onBlurCapture),onPointerDownCapture:Pr(e.onPointerDownCapture,x.onPointerDownCapture)})});di.displayName=ai;var fi=`DismissableLayerBranch`,pi=M.forwardRef((e,t)=>{let n=M.useContext(ui),r=M.useRef(null),i=Lr(t,r);return M.useEffect(()=>{let e=r.current;if(e)return n.branches.add(e),()=>{n.branches.delete(e)}},[n.branches]),(0,F.jsx)(G.div,{...e,ref:i})});pi.displayName=fi;function mi(e,t=globalThis?.document){let n=ri(e),r=M.useRef(!1),i=M.useRef(()=>{});return M.useEffect(()=>{let e=e=>{if(e.target&&!r.current){let r=function(){_i(si,n,a,{discrete:!0})},a={originalEvent:e};e.pointerType===`touch`?(t.removeEventListener(`click`,i.current),i.current=r,t.addEventListener(`click`,i.current,{once:!0})):r()}else t.removeEventListener(`click`,i.current);r.current=!1},a=window.setTimeout(()=>{t.addEventListener(`pointerdown`,e)},0);return()=>{window.clearTimeout(a),t.removeEventListener(`pointerdown`,e),t.removeEventListener(`click`,i.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function hi(e,t=globalThis?.document){let n=ri(e),r=M.useRef(!1);return M.useEffect(()=>{let e=e=>{e.target&&!r.current&&_i(ci,n,{originalEvent:e},{discrete:!1})};return t.addEventListener(`focusin`,e),()=>t.removeEventListener(`focusin`,e)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function gi(){let e=new CustomEvent(oi);document.dispatchEvent(e)}function _i(e,t,n,{discrete:r}){let i=n.originalEvent.target,a=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&i.addEventListener(e,t,{once:!0}),r?ni(i,a):i.dispatchEvent(a)}var vi=`focusScope.autoFocusOnMount`,yi=`focusScope.autoFocusOnUnmount`,bi={bubbles:!1,cancelable:!0},xi=`FocusScope`,Si=M.forwardRef((e,t)=>{let{loop:n=!1,trapped:r=!1,onMountAutoFocus:i,onUnmountAutoFocus:a,...o}=e,[s,c]=M.useState(null),l=ri(i),u=ri(a),d=M.useRef(null),f=Lr(t,e=>c(e)),p=M.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;M.useEffect(()=>{if(r){let e=function(e){if(p.paused||!s)return;let t=e.target;s.contains(t)?d.current=t:ki(d.current,{select:!0})},t=function(e){if(p.paused||!s)return;let t=e.relatedTarget;t!==null&&(s.contains(t)||ki(d.current,{select:!0}))},n=function(e){if(document.activeElement===document.body)for(let t of e)t.removedNodes.length>0&&ki(s)};document.addEventListener(`focusin`,e),document.addEventListener(`focusout`,t);let r=new MutationObserver(n);return s&&r.observe(s,{childList:!0,subtree:!0}),()=>{document.removeEventListener(`focusin`,e),document.removeEventListener(`focusout`,t),r.disconnect()}}},[r,s,p.paused]),M.useEffect(()=>{if(s){Ai.add(p);let e=document.activeElement;if(!s.contains(e)){let t=new CustomEvent(vi,bi);s.addEventListener(vi,l),s.dispatchEvent(t),t.defaultPrevented||(Ci(Ni(Ti(s)),{select:!0}),document.activeElement===e&&ki(s))}return()=>{s.removeEventListener(vi,l),setTimeout(()=>{let t=new CustomEvent(yi,bi);s.addEventListener(yi,u),s.dispatchEvent(t),t.defaultPrevented||ki(e??document.body,{select:!0}),s.removeEventListener(yi,u),Ai.remove(p)},0)}}},[s,l,u,p]);let m=M.useCallback(e=>{if(!n&&!r||p.paused)return;let t=e.key===`Tab`&&!e.altKey&&!e.ctrlKey&&!e.metaKey,i=document.activeElement;if(t&&i){let t=e.currentTarget,[r,a]=wi(t);r&&a?!e.shiftKey&&i===a?(e.preventDefault(),n&&ki(r,{select:!0})):e.shiftKey&&i===r&&(e.preventDefault(),n&&ki(a,{select:!0})):i===t&&e.preventDefault()}},[n,r,p.paused]);return(0,F.jsx)(G.div,{tabIndex:-1,...o,ref:f,onKeyDown:m})});Si.displayName=xi;function Ci(e,{select:t=!1}={}){let n=document.activeElement;for(let r of e)if(ki(r,{select:t}),document.activeElement!==n)return}function wi(e){let t=Ti(e);return[Ei(t,e),Ei(t.reverse(),e)]}function Ti(e){let t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:e=>{let t=e.tagName===`INPUT`&&e.type===`hidden`;return e.disabled||e.hidden||t?NodeFilter.FILTER_SKIP:e.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function Ei(e,t){for(let n of e)if(!Di(n,{upTo:t}))return n}function Di(e,{upTo:t}){if(getComputedStyle(e).visibility===`hidden`)return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display===`none`)return!0;e=e.parentElement}return!1}function Oi(e){return e instanceof HTMLInputElement&&`select`in e}function ki(e,{select:t=!1}={}){if(e&&e.focus){let n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&Oi(e)&&t&&e.select()}}var Ai=ji();function ji(){let e=[];return{add(t){let n=e[0];t!==n&&n?.pause(),e=Mi(e,t),e.unshift(t)},remove(t){e=Mi(e,t),e[0]?.resume()}}}function Mi(e,t){let n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function Ni(e){return e.filter(e=>e.tagName!==`A`)}var Pi=`Portal`,Fi=M.forwardRef((e,t)=>{let{container:n,...r}=e,[i,a]=M.useState(!1);Vr(()=>a(!0),[]);let o=n||i&&globalThis?.document?.body;return o?Yr.createPortal((0,F.jsx)(G.div,{...r,ref:t}),o):null});Fi.displayName=Pi;function Ii(e,t){return M.useReducer((e,n)=>t[e][n]??e,e)}var Li=e=>{let{present:t,children:n}=e,r=Ri(t),i=typeof n==`function`?n({present:r.isPresent}):M.Children.only(n),a=Lr(r.ref,Bi(i));return typeof n==`function`||r.isPresent?M.cloneElement(i,{ref:a}):null};Li.displayName=`Presence`;function Ri(e){let[t,n]=M.useState(),r=M.useRef(null),i=M.useRef(e),a=M.useRef(`none`),[o,s]=Ii(e?`mounted`:`unmounted`,{mounted:{UNMOUNT:`unmounted`,ANIMATION_OUT:`unmountSuspended`},unmountSuspended:{MOUNT:`mounted`,ANIMATION_END:`unmounted`},unmounted:{MOUNT:`mounted`}});return M.useEffect(()=>{let e=zi(r.current);a.current=o===`mounted`?e:`none`},[o]),Vr(()=>{let t=r.current,n=i.current;if(n!==e){let r=a.current,o=zi(t);e?s(`MOUNT`):o===`none`||t?.display===`none`?s(`UNMOUNT`):s(n&&r!==o?`ANIMATION_OUT`:`UNMOUNT`),i.current=e}},[e,s]),Vr(()=>{if(t){let e,n=t.ownerDocument.defaultView??window,o=a=>{let o=zi(r.current).includes(CSS.escape(a.animationName));if(a.target===t&&o&&(s(`ANIMATION_END`),!i.current)){let r=t.style.animationFillMode;t.style.animationFillMode=`forwards`,e=n.setTimeout(()=>{t.style.animationFillMode===`forwards`&&(t.style.animationFillMode=r)})}},c=e=>{e.target===t&&(a.current=zi(r.current))};return t.addEventListener(`animationstart`,c),t.addEventListener(`animationcancel`,o),t.addEventListener(`animationend`,o),()=>{n.clearTimeout(e),t.removeEventListener(`animationstart`,c),t.removeEventListener(`animationcancel`,o),t.removeEventListener(`animationend`,o)}}else s(`ANIMATION_END`)},[t,s]),{isPresent:[`mounted`,`unmountSuspended`].includes(o),ref:M.useCallback(e=>{r.current=e?getComputedStyle(e):null,n(e)},[])}}function zi(e){return e?.animationName||`none`}function Bi(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var Vi=0;function Hi(){M.useEffect(()=>{let e=document.querySelectorAll(`[data-radix-focus-guard]`);return document.body.insertAdjacentElement(`afterbegin`,e[0]??Ui()),document.body.insertAdjacentElement(`beforeend`,e[1]??Ui()),Vi++,()=>{Vi===1&&document.querySelectorAll(`[data-radix-focus-guard]`).forEach(e=>e.remove()),Vi--}},[])}function Ui(){let e=document.createElement(`span`);return e.setAttribute(`data-radix-focus-guard`,``),e.tabIndex=0,e.style.outline=`none`,e.style.opacity=`0`,e.style.position=`fixed`,e.style.pointerEvents=`none`,e}var Wi=function(){return Wi=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n],t)Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},Wi.apply(this,arguments)};function Gi(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols==`function`)for(var i=0,r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]]);return n}function Ki(e,t,n){if(n||arguments.length===2)for(var r=0,i=t.length,a;r<i;r++)(a||!(r in t))&&(a||=Array.prototype.slice.call(t,0,r),a[r]=t[r]);return e.concat(a||Array.prototype.slice.call(t))}var qi=`right-scroll-bar-position`,Ji=`width-before-scroll-bar`,Yi=`with-scroll-bars-hidden`,Xi=`--removed-body-scroll-bar-size`;function Zi(e,t){return typeof e==`function`?e(t):e&&(e.current=t),e}function Qi(e,t){var n=(0,M.useState)(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(e){var t=n.value;t!==e&&(n.value=e,n.callback(e,t))}}}})[0];return n.callback=t,n.facade}var $i=typeof window<`u`?M.useLayoutEffect:M.useEffect,ea=new WeakMap;function ta(e,t){var n=Qi(t||null,function(t){return e.forEach(function(e){return Zi(e,t)})});return $i(function(){var t=ea.get(n);if(t){var r=new Set(t),i=new Set(e),a=n.current;r.forEach(function(e){i.has(e)||Zi(e,null)}),i.forEach(function(e){r.has(e)||Zi(e,a)})}ea.set(n,e)},[e]),n}function na(e){return e}function ra(e,t){t===void 0&&(t=na);var n=[],r=!1;return{read:function(){if(r)throw Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(e){var i=t(e,r);return n.push(i),function(){n=n.filter(function(e){return e!==i})}},assignSyncMedium:function(e){for(r=!0;n.length;){var t=n;n=[],t.forEach(e)}n={push:function(t){return e(t)},filter:function(){return n}}},assignMedium:function(e){r=!0;var t=[];if(n.length){var i=n;n=[],i.forEach(e),t=n}var a=function(){var n=t;t=[],n.forEach(e)},o=function(){return Promise.resolve().then(a)};o(),n={push:function(e){t.push(e),o()},filter:function(e){return t=t.filter(e),n}}}}}function ia(e){e===void 0&&(e={});var t=ra(null);return t.options=Wi({async:!0,ssr:!1},e),t}var aa=function(e){var t=e.sideCar,n=Gi(e,[`sideCar`]);if(!t)throw Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw Error(`Sidecar medium not found`);return M.createElement(r,Wi({},n))};aa.isSideCarExport=!0;function oa(e,t){return e.useMedium(t),aa}var sa=ia(),ca=function(){},la=M.forwardRef(function(e,t){var n=M.useRef(null),r=M.useState({onScrollCapture:ca,onWheelCapture:ca,onTouchMoveCapture:ca}),i=r[0],a=r[1],o=e.forwardProps,s=e.children,c=e.className,l=e.removeScrollBar,u=e.enabled,d=e.shards,f=e.sideCar,p=e.noRelative,m=e.noIsolation,h=e.inert,g=e.allowPinchZoom,_=e.as,v=_===void 0?`div`:_,y=e.gapMode,b=Gi(e,[`forwardProps`,`children`,`className`,`removeScrollBar`,`enabled`,`shards`,`sideCar`,`noRelative`,`noIsolation`,`inert`,`allowPinchZoom`,`as`,`gapMode`]),x=f,S=ta([n,t]),C=Wi(Wi({},b),i);return M.createElement(M.Fragment,null,u&&M.createElement(x,{sideCar:sa,removeScrollBar:l,shards:d,noRelative:p,noIsolation:m,inert:h,setCallbacks:a,allowPinchZoom:!!g,lockRef:n,gapMode:y}),o?M.cloneElement(M.Children.only(s),Wi(Wi({},C),{ref:S})):M.createElement(v,Wi({},C,{className:c,ref:S}),s))});la.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1},la.classNames={fullWidth:Ji,zeroRight:qi};var ua,da=function(){if(ua)return ua;if(typeof __webpack_nonce__<`u`)return __webpack_nonce__};function fa(){if(!document)return null;var e=document.createElement(`style`);e.type=`text/css`;var t=da();return t&&e.setAttribute(`nonce`,t),e}function pa(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function ma(e){(document.head||document.getElementsByTagName(`head`)[0]).appendChild(e)}var ha=function(){var e=0,t=null;return{add:function(n){e==0&&(t=fa())&&(pa(t,n),ma(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},ga=function(){var e=ha();return function(t,n){M.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},_a=function(){var e=ga();return function(t){var n=t.styles,r=t.dynamic;return e(n,r),null}},va={left:0,top:0,right:0,gap:0},ya=function(e){return parseInt(e||``,10)||0},ba=function(e){var t=window.getComputedStyle(document.body),n=t[e===`padding`?`paddingLeft`:`marginLeft`],r=t[e===`padding`?`paddingTop`:`marginTop`],i=t[e===`padding`?`paddingRight`:`marginRight`];return[ya(n),ya(r),ya(i)]},xa=function(e){if(e===void 0&&(e=`margin`),typeof window>`u`)return va;var t=ba(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},Sa=_a(),Ca=`data-scroll-locked`,wa=function(e,t,n,r){var i=e.left,a=e.top,o=e.right,s=e.gap;return n===void 0&&(n=`margin`),`
|
|
2
|
-
.${Yi} {
|
|
3
|
-
overflow: hidden ${r};
|
|
4
|
-
padding-right: ${s}px ${r};
|
|
5
|
-
}
|
|
6
|
-
body[${Ca}] {
|
|
7
|
-
overflow: hidden ${r};
|
|
8
|
-
overscroll-behavior: contain;
|
|
9
|
-
${[t&&`position: relative ${r};`,n===`margin`&&`
|
|
10
|
-
padding-left: ${i}px;
|
|
11
|
-
padding-top: ${a}px;
|
|
12
|
-
padding-right: ${o}px;
|
|
13
|
-
margin-left:0;
|
|
14
|
-
margin-top:0;
|
|
15
|
-
margin-right: ${s}px ${r};
|
|
16
|
-
`,n===`padding`&&`padding-right: ${s}px ${r};`].filter(Boolean).join(``)}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.${qi} {
|
|
20
|
-
right: ${s}px ${r};
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.${Ji} {
|
|
24
|
-
margin-right: ${s}px ${r};
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.${qi} .${qi} {
|
|
28
|
-
right: 0 ${r};
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.${Ji} .${Ji} {
|
|
32
|
-
margin-right: 0 ${r};
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
body[${Ca}] {
|
|
36
|
-
${Xi}: ${s}px;
|
|
37
|
-
}
|
|
38
|
-
`},Ta=function(){var e=parseInt(document.body.getAttribute(`data-scroll-locked`)||`0`,10);return isFinite(e)?e:0},Ea=function(){M.useEffect(function(){return document.body.setAttribute(Ca,(Ta()+1).toString()),function(){var e=Ta()-1;e<=0?document.body.removeAttribute(Ca):document.body.setAttribute(Ca,e.toString())}},[])},Da=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,i=r===void 0?`margin`:r;Ea();var a=M.useMemo(function(){return xa(i)},[i]);return M.createElement(Sa,{styles:wa(a,!t,i,n?``:`!important`)})},Oa=!1;if(typeof window<`u`)try{var ka=Object.defineProperty({},`passive`,{get:function(){return Oa=!0,!0}});window.addEventListener(`test`,ka,ka),window.removeEventListener(`test`,ka,ka)}catch{Oa=!1}var Aa=Oa?{passive:!1}:!1,ja=function(e){return e.tagName===`TEXTAREA`},Ma=function(e,t){if(!(e instanceof Element))return!1;var n=window.getComputedStyle(e);return n[t]!==`hidden`&&!(n.overflowY===n.overflowX&&!ja(e)&&n[t]===`visible`)},Na=function(e){return Ma(e,`overflowY`)},Pa=function(e){return Ma(e,`overflowX`)},Fa=function(e,t){var n=t.ownerDocument,r=t;do{if(typeof ShadowRoot<`u`&&r instanceof ShadowRoot&&(r=r.host),Ra(e,r)){var i=za(e,r);if(i[1]>i[2])return!0}r=r.parentNode}while(r&&r!==n.body);return!1},Ia=function(e){return[e.scrollTop,e.scrollHeight,e.clientHeight]},La=function(e){return[e.scrollLeft,e.scrollWidth,e.clientWidth]},Ra=function(e,t){return e===`v`?Na(t):Pa(t)},za=function(e,t){return e===`v`?Ia(t):La(t)},Ba=function(e,t){return e===`h`&&t===`rtl`?-1:1},Va=function(e,t,n,r,i){var a=Ba(e,window.getComputedStyle(t).direction),o=a*r,s=n.target,c=t.contains(s),l=!1,u=o>0,d=0,f=0;do{if(!s)break;var p=za(e,s),m=p[0],h=p[1]-p[2]-a*m;(m||h)&&Ra(e,s)&&(d+=h,f+=m);var g=s.parentNode;s=g&&g.nodeType===Node.DOCUMENT_FRAGMENT_NODE?g.host:g}while(!c&&s!==document.body||c&&(t.contains(s)||t===s));return(u&&(i&&Math.abs(d)<1||!i&&o>d)||!u&&(i&&Math.abs(f)<1||!i&&-o>f))&&(l=!0),l},Ha=function(e){return`changedTouches`in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},Ua=function(e){return[e.deltaX,e.deltaY]},Wa=function(e){return e&&`current`in e?e.current:e},Ga=function(e,t){return e[0]===t[0]&&e[1]===t[1]},Ka=function(e){return`
|
|
39
|
-
.block-interactivity-${e} {pointer-events: none;}
|
|
40
|
-
.allow-interactivity-${e} {pointer-events: all;}
|
|
41
|
-
`},qa=0,Ja=[];function Ya(e){var t=M.useRef([]),n=M.useRef([0,0]),r=M.useRef(),i=M.useState(qa++)[0],a=M.useState(_a)[0],o=M.useRef(e);M.useEffect(function(){o.current=e},[e]),M.useEffect(function(){if(e.inert){document.body.classList.add(`block-interactivity-${i}`);var t=Ki([e.lockRef.current],(e.shards||[]).map(Wa),!0).filter(Boolean);return t.forEach(function(e){return e.classList.add(`allow-interactivity-${i}`)}),function(){document.body.classList.remove(`block-interactivity-${i}`),t.forEach(function(e){return e.classList.remove(`allow-interactivity-${i}`)})}}},[e.inert,e.lockRef.current,e.shards]);var s=M.useCallback(function(e,t){if(`touches`in e&&e.touches.length===2||e.type===`wheel`&&e.ctrlKey)return!o.current.allowPinchZoom;var i=Ha(e),a=n.current,s=`deltaX`in e?e.deltaX:a[0]-i[0],c=`deltaY`in e?e.deltaY:a[1]-i[1],l,u=e.target,d=Math.abs(s)>Math.abs(c)?`h`:`v`;if(`touches`in e&&d===`h`&&u.type===`range`)return!1;var f=window.getSelection(),p=f&&f.anchorNode;if(p&&(p===u||p.contains(u)))return!1;var m=Fa(d,u);if(!m)return!0;if(m?l=d:(l=d===`v`?`h`:`v`,m=Fa(d,u)),!m)return!1;if(!r.current&&`changedTouches`in e&&(s||c)&&(r.current=l),!l)return!0;var h=r.current||l;return Va(h,t,e,h===`h`?s:c,!0)},[]),c=M.useCallback(function(e){var n=e;if(!(!Ja.length||Ja[Ja.length-1]!==a)){var r=`deltaY`in n?Ua(n):Ha(n),i=t.current.filter(function(e){return e.name===n.type&&(e.target===n.target||n.target===e.shadowParent)&&Ga(e.delta,r)})[0];if(i&&i.should){n.cancelable&&n.preventDefault();return}if(!i){var c=(o.current.shards||[]).map(Wa).filter(Boolean).filter(function(e){return e.contains(n.target)});(c.length>0?s(n,c[0]):!o.current.noIsolation)&&n.cancelable&&n.preventDefault()}}},[]),l=M.useCallback(function(e,n,r,i){var a={name:e,delta:n,target:r,should:i,shadowParent:Xa(r)};t.current.push(a),setTimeout(function(){t.current=t.current.filter(function(e){return e!==a})},1)},[]),u=M.useCallback(function(e){n.current=Ha(e),r.current=void 0},[]),d=M.useCallback(function(t){l(t.type,Ua(t),t.target,s(t,e.lockRef.current))},[]),f=M.useCallback(function(t){l(t.type,Ha(t),t.target,s(t,e.lockRef.current))},[]);M.useEffect(function(){return Ja.push(a),e.setCallbacks({onScrollCapture:d,onWheelCapture:d,onTouchMoveCapture:f}),document.addEventListener(`wheel`,c,Aa),document.addEventListener(`touchmove`,c,Aa),document.addEventListener(`touchstart`,u,Aa),function(){Ja=Ja.filter(function(e){return e!==a}),document.removeEventListener(`wheel`,c,Aa),document.removeEventListener(`touchmove`,c,Aa),document.removeEventListener(`touchstart`,u,Aa)}},[]);var p=e.removeScrollBar,m=e.inert;return M.createElement(M.Fragment,null,m?M.createElement(a,{styles:Ka(i)}):null,p?M.createElement(Da,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function Xa(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}var Za=oa(sa,Ya),Qa=M.forwardRef(function(e,t){return M.createElement(la,Wi({},e,{ref:t,sideCar:Za}))});Qa.classNames=la.classNames;var $a=function(e){return typeof document>`u`?null:(Array.isArray(e)?e[0]:e).ownerDocument.body},eo=new WeakMap,to=new WeakMap,no={},ro=0,io=function(e){return e&&(e.host||io(e.parentNode))},ao=function(e,t){return t.map(function(t){if(e.contains(t))return t;var n=io(t);return n&&e.contains(n)?n:(console.error(`aria-hidden`,t,`in not contained inside`,e,`. Doing nothing`),null)}).filter(function(e){return!!e})},oo=function(e,t,n,r){var i=ao(t,Array.isArray(e)?e:[e]);no[n]||(no[n]=new WeakMap);var a=no[n],o=[],s=new Set,c=new Set(i),l=function(e){!e||s.has(e)||(s.add(e),l(e.parentNode))};i.forEach(l);var u=function(e){!e||c.has(e)||Array.prototype.forEach.call(e.children,function(e){if(s.has(e))u(e);else try{var t=e.getAttribute(r),i=t!==null&&t!==`false`,c=(eo.get(e)||0)+1,l=(a.get(e)||0)+1;eo.set(e,c),a.set(e,l),o.push(e),c===1&&i&&to.set(e,!0),l===1&&e.setAttribute(n,`true`),i||e.setAttribute(r,`true`)}catch(t){console.error(`aria-hidden: cannot operate on `,e,t)}})};return u(t),s.clear(),ro++,function(){o.forEach(function(e){var t=eo.get(e)-1,i=a.get(e)-1;eo.set(e,t),a.set(e,i),t||(to.has(e)||e.removeAttribute(r),to.delete(e)),i||e.removeAttribute(n)}),ro--,ro||(eo=new WeakMap,eo=new WeakMap,to=new WeakMap,no={})}},so=function(e,t,n){n===void 0&&(n=`data-aria-hidden`);var r=Array.from(Array.isArray(e)?e:[e]),i=t||$a(e);return i?(r.push.apply(r,Array.from(i.querySelectorAll(`[aria-live], script`))),oo(r,i,n,`aria-hidden`)):function(){return null}},co=`Dialog`,[lo,uo]=zr(co),[fo,po]=lo(co),mo=e=>{let{__scopeDialog:t,children:n,open:r,defaultOpen:i,onOpenChange:a,modal:o=!0}=e,s=M.useRef(null),c=M.useRef(null),[l,u]=Kr({prop:r,defaultProp:i??!1,onChange:a,caller:co});return(0,F.jsx)(fo,{scope:t,triggerRef:s,contentRef:c,contentId:Wr(),titleId:Wr(),descriptionId:Wr(),open:l,onOpenChange:u,onOpenToggle:M.useCallback(()=>u(e=>!e),[u]),modal:o,children:n})};mo.displayName=co;var ho=`DialogTrigger`,go=M.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=po(ho,n),a=Lr(t,i.triggerRef);return(0,F.jsx)(G.button,{type:`button`,"aria-haspopup":`dialog`,"aria-expanded":i.open,"aria-controls":i.contentId,"data-state":Io(i.open),...r,ref:a,onClick:Pr(e.onClick,i.onOpenToggle)})});go.displayName=ho;var _o=`DialogPortal`,[vo,yo]=lo(_o,{forceMount:void 0}),bo=e=>{let{__scopeDialog:t,forceMount:n,children:r,container:i}=e,a=po(_o,t);return(0,F.jsx)(vo,{scope:t,forceMount:n,children:M.Children.map(r,e=>(0,F.jsx)(Li,{present:n||a.open,children:(0,F.jsx)(Fi,{asChild:!0,container:i,children:e})}))})};bo.displayName=_o;var xo=`DialogOverlay`,So=M.forwardRef((e,t)=>{let n=yo(xo,e.__scopeDialog),{forceMount:r=n.forceMount,...i}=e,a=po(xo,e.__scopeDialog);return a.modal?(0,F.jsx)(Li,{present:r||a.open,children:(0,F.jsx)(wo,{...i,ref:t})}):null});So.displayName=xo;var Co=Xr(`DialogOverlay.RemoveScroll`),wo=M.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=po(xo,n);return(0,F.jsx)(Qa,{as:Co,allowPinchZoom:!0,shards:[i.contentRef],children:(0,F.jsx)(G.div,{"data-state":Io(i.open),...r,ref:t,style:{pointerEvents:`auto`,...r.style}})})}),To=`DialogContent`,Eo=M.forwardRef((e,t)=>{let n=yo(To,e.__scopeDialog),{forceMount:r=n.forceMount,...i}=e,a=po(To,e.__scopeDialog);return(0,F.jsx)(Li,{present:r||a.open,children:a.modal?(0,F.jsx)(Do,{...i,ref:t}):(0,F.jsx)(Oo,{...i,ref:t})})});Eo.displayName=To;var Do=M.forwardRef((e,t)=>{let n=po(To,e.__scopeDialog),r=M.useRef(null),i=Lr(t,n.contentRef,r);return M.useEffect(()=>{let e=r.current;if(e)return so(e)},[]),(0,F.jsx)(ko,{...e,ref:i,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:Pr(e.onCloseAutoFocus,e=>{e.preventDefault(),n.triggerRef.current?.focus()}),onPointerDownOutside:Pr(e.onPointerDownOutside,e=>{let t=e.detail.originalEvent,n=t.button===0&&t.ctrlKey===!0;(t.button===2||n)&&e.preventDefault()}),onFocusOutside:Pr(e.onFocusOutside,e=>e.preventDefault())})}),Oo=M.forwardRef((e,t)=>{let n=po(To,e.__scopeDialog),r=M.useRef(!1),i=M.useRef(!1);return(0,F.jsx)(ko,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:t=>{e.onCloseAutoFocus?.(t),t.defaultPrevented||(r.current||n.triggerRef.current?.focus(),t.preventDefault()),r.current=!1,i.current=!1},onInteractOutside:t=>{e.onInteractOutside?.(t),t.defaultPrevented||(r.current=!0,t.detail.originalEvent.type===`pointerdown`&&(i.current=!0));let a=t.target;n.triggerRef.current?.contains(a)&&t.preventDefault(),t.detail.originalEvent.type===`focusin`&&i.current&&t.preventDefault()}})}),ko=M.forwardRef((e,t)=>{let{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:i,onCloseAutoFocus:a,...o}=e,s=po(To,n),c=M.useRef(null),l=Lr(t,c);return Hi(),(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(Si,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:i,onUnmountAutoFocus:a,children:(0,F.jsx)(di,{role:`dialog`,id:s.contentId,"aria-describedby":s.descriptionId,"aria-labelledby":s.titleId,"data-state":Io(s.open),...o,ref:l,onDismiss:()=>s.onOpenChange(!1)})}),(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(Bo,{titleId:s.titleId}),(0,F.jsx)(Ho,{contentRef:c,descriptionId:s.descriptionId})]})]})}),Ao=`DialogTitle`,jo=M.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=po(Ao,n);return(0,F.jsx)(G.h2,{id:i.titleId,...r,ref:t})});jo.displayName=Ao;var Mo=`DialogDescription`,No=M.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=po(Mo,n);return(0,F.jsx)(G.p,{id:i.descriptionId,...r,ref:t})});No.displayName=Mo;var Po=`DialogClose`,Fo=M.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=po(Po,n);return(0,F.jsx)(G.button,{type:`button`,...r,ref:t,onClick:Pr(e.onClick,()=>i.onOpenChange(!1))})});Fo.displayName=Po;function Io(e){return e?`open`:`closed`}var Lo=`DialogTitleWarning`,[Ro,zo]=Rr(Lo,{contentName:To,titleName:Ao,docsSlug:`dialog`}),Bo=({titleId:e})=>{let t=zo(Lo),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
|
|
42
|
-
|
|
43
|
-
If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
|
|
44
|
-
|
|
45
|
-
For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return M.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},Vo=`DialogDescriptionWarning`,Ho=({contentRef:e,descriptionId:t})=>{let n=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${zo(Vo).contentName}}.`;return M.useEffect(()=>{let r=e.current?.getAttribute(`aria-describedby`);t&&r&&(document.getElementById(t)||console.warn(n))},[n,e,t]),null},Uo=mo,Wo=bo,Go=So,Ko=Eo,qo=`[cmdk-group=""]`,Jo=`[cmdk-group-items=""]`,Yo=`[cmdk-group-heading=""]`,Xo=`[cmdk-item=""]`,Zo=`${Xo}:not([aria-disabled="true"])`,Qo=`cmdk-item-select`,$o=`data-value`,es=(e,t,n)=>Nr(e,t,n),ts=M.createContext(void 0),ns=()=>M.useContext(ts),rs=M.createContext(void 0),is=()=>M.useContext(rs),as=M.createContext(void 0),os=M.forwardRef((e,t)=>{let n=bs(()=>({search:``,value:e.value??e.defaultValue??``,selectedItemId:void 0,filtered:{count:0,items:new Map,groups:new Set}})),r=bs(()=>new Set),i=bs(()=>new Map),a=bs(()=>new Map),o=bs(()=>new Set),s=vs(e),{label:c,children:l,value:u,onValueChange:d,filter:f,shouldFilter:p,loop:m,disablePointerSelection:h=!1,vimBindings:g=!0,..._}=e,v=Wr(),y=Wr(),b=Wr(),x=M.useRef(null),S=Cs();ys(()=>{if(u!==void 0){let e=u.trim();n.current.value=e,C.emit()}},[u]),ys(()=>{S(6,O)},[]);let C=M.useMemo(()=>({subscribe:e=>(o.current.add(e),()=>o.current.delete(e)),snapshot:()=>n.current,setState:(e,t,r)=>{var i,a,o;if(!Object.is(n.current[e],t)){if(n.current[e]=t,e===`search`)D(),E(),S(1,ee);else if(e===`value`){if(document.activeElement.hasAttribute(`cmdk-input`)||document.activeElement.hasAttribute(`cmdk-root`)){let e=document.getElementById(b);e?e.focus():(i=document.getElementById(v))==null||i.focus()}if(S(7,()=>{n.current.selectedItemId=k()?.id,C.emit()}),r||S(5,O),s.current?.value!==void 0){let e=t??``;(o=(a=s.current).onValueChange)==null||o.call(a,e);return}}C.emit()}},emit:()=>{o.current.forEach(e=>e())}}),[]),w=M.useMemo(()=>({value:(e,t,r)=>{t!==a.current.get(e)?.value&&(a.current.set(e,{value:t,keywords:r}),n.current.filtered.items.set(e,T(t,r)),S(2,()=>{E(),C.emit()}))},item:(e,t)=>(r.current.add(e),t&&(i.current.has(t)?i.current.get(t).add(e):i.current.set(t,new Set([e]))),S(3,()=>{D(),E(),n.current.value||ee(),C.emit()}),()=>{a.current.delete(e),r.current.delete(e),n.current.filtered.items.delete(e);let t=k();S(4,()=>{D(),t?.getAttribute(`id`)===e&&ee(),C.emit()})}),group:e=>(i.current.has(e)||i.current.set(e,new Set),()=>{a.current.delete(e),i.current.delete(e)}),filter:()=>s.current.shouldFilter,label:c||e[`aria-label`],getDisablePointerSelection:()=>s.current.disablePointerSelection,listId:v,inputId:b,labelId:y,listInnerRef:x}),[]);function T(e,t){let r=s.current?.filter??es;return e?r(e,n.current.search,t):0}function E(){if(!n.current.search||s.current.shouldFilter===!1)return;let e=n.current.filtered.items,t=[];n.current.filtered.groups.forEach(n=>{let r=i.current.get(n),a=0;r.forEach(t=>{let n=e.get(t);a=Math.max(n,a)}),t.push([n,a])});let r=x.current;te().sort((t,n)=>{let r=t.getAttribute(`id`),i=n.getAttribute(`id`);return(e.get(i)??0)-(e.get(r)??0)}).forEach(e=>{let t=e.closest(Jo);t?t.appendChild(e.parentElement===t?e:e.closest(`${Jo} > *`)):r.appendChild(e.parentElement===r?e:e.closest(`${Jo} > *`))}),t.sort((e,t)=>t[1]-e[1]).forEach(e=>{let t=x.current?.querySelector(`${qo}[${$o}="${encodeURIComponent(e[0])}"]`);t?.parentElement.appendChild(t)})}function ee(){let e=te().find(e=>e.getAttribute(`aria-disabled`)!==`true`)?.getAttribute($o);C.setState(`value`,e||void 0)}function D(){if(!n.current.search||s.current.shouldFilter===!1){n.current.filtered.count=r.current.size;return}n.current.filtered.groups=new Set;let e=0;for(let t of r.current){let r=T(a.current.get(t)?.value??``,a.current.get(t)?.keywords??[]);n.current.filtered.items.set(t,r),r>0&&e++}for(let[e,t]of i.current)for(let r of t)if(n.current.filtered.items.get(r)>0){n.current.filtered.groups.add(e);break}n.current.filtered.count=e}function O(){var e;let t=k();t&&(t.parentElement?.firstChild===t&&((e=t.closest(qo)?.querySelector(Yo))==null||e.scrollIntoView({block:`nearest`})),t.scrollIntoView({block:`nearest`}))}function k(){return x.current?.querySelector(`${Xo}[aria-selected="true"]`)}function te(){return Array.from(x.current?.querySelectorAll(Zo)||[])}function A(e){let t=te()[e];t&&C.setState(`value`,t.getAttribute($o))}function j(e){var t;let n=k(),r=te(),i=r.findIndex(e=>e===n),a=r[i+e];(t=s.current)!=null&&t.loop&&(a=i+e<0?r[r.length-1]:i+e===r.length?r[0]:r[i+e]),a&&C.setState(`value`,a.getAttribute($o))}function ne(e){let t=k()?.closest(qo),n;for(;t&&!n;)t=e>0?gs(t,qo):_s(t,qo),n=t?.querySelector(Zo);n?C.setState(`value`,n.getAttribute($o)):j(e)}let re=()=>A(te().length-1),ie=e=>{e.preventDefault(),e.metaKey?re():e.altKey?ne(1):j(1)},ae=e=>{e.preventDefault(),e.metaKey?A(0):e.altKey?ne(-1):j(-1)};return M.createElement(G.div,{ref:t,tabIndex:-1,..._,"cmdk-root":``,onKeyDown:e=>{var t;(t=_.onKeyDown)==null||t.call(_,e);let n=e.nativeEvent.isComposing||e.keyCode===229;if(!(e.defaultPrevented||n))switch(e.key){case`n`:case`j`:g&&e.ctrlKey&&ie(e);break;case`ArrowDown`:ie(e);break;case`p`:case`k`:g&&e.ctrlKey&&ae(e);break;case`ArrowUp`:ae(e);break;case`Home`:e.preventDefault(),A(0);break;case`End`:e.preventDefault(),re();break;case`Enter`:{e.preventDefault();let t=k();if(t){let e=new Event(Qo);t.dispatchEvent(e)}}}}},M.createElement(`label`,{"cmdk-label":``,htmlFor:w.inputId,id:w.labelId,style:Es},c),Ts(e,e=>M.createElement(rs.Provider,{value:C},M.createElement(ts.Provider,{value:w},e))))}),ss=M.forwardRef((e,t)=>{let n=Wr(),r=M.useRef(null),i=M.useContext(as),a=ns(),o=vs(e),s=o.current?.forceMount??i?.forceMount;ys(()=>{if(!s)return a.item(n,i?.id)},[s]);let c=Ss(n,r,[e.value,e.children,r],e.keywords),l=is(),u=xs(e=>e.value&&e.value===c.current),d=xs(e=>s||a.filter()===!1?!0:e.search?e.filtered.items.get(n)>0:!0);M.useEffect(()=>{let t=r.current;if(!(!t||e.disabled))return t.addEventListener(Qo,f),()=>t.removeEventListener(Qo,f)},[d,e.onSelect,e.disabled]);function f(){var e,t;p(),(t=(e=o.current).onSelect)==null||t.call(e,c.current)}function p(){l.setState(`value`,c.current,!0)}if(!d)return null;let{disabled:m,value:h,onSelect:g,forceMount:_,keywords:v,...y}=e;return M.createElement(G.div,{ref:Ir(r,t),...y,id:n,"cmdk-item":``,role:`option`,"aria-disabled":!!m,"aria-selected":!!u,"data-disabled":!!m,"data-selected":!!u,onPointerMove:m||a.getDisablePointerSelection()?void 0:p,onClick:m?void 0:f},e.children)}),cs=M.forwardRef((e,t)=>{let{heading:n,children:r,forceMount:i,...a}=e,o=Wr(),s=M.useRef(null),c=M.useRef(null),l=Wr(),u=ns(),d=xs(e=>i||u.filter()===!1?!0:e.search?e.filtered.groups.has(o):!0);ys(()=>u.group(o),[]),Ss(o,s,[e.value,e.heading,c]);let f=M.useMemo(()=>({id:o,forceMount:i}),[i]);return M.createElement(G.div,{ref:Ir(s,t),...a,"cmdk-group":``,role:`presentation`,hidden:d?void 0:!0},n&&M.createElement(`div`,{ref:c,"cmdk-group-heading":``,"aria-hidden":!0,id:l},n),Ts(e,e=>M.createElement(`div`,{"cmdk-group-items":``,role:`group`,"aria-labelledby":n?l:void 0},M.createElement(as.Provider,{value:f},e))))}),ls=M.forwardRef((e,t)=>{let{alwaysRender:n,...r}=e,i=M.useRef(null),a=xs(e=>!e.search);return!n&&!a?null:M.createElement(G.div,{ref:Ir(i,t),...r,"cmdk-separator":``,role:`separator`})}),us=M.forwardRef((e,t)=>{let{onValueChange:n,...r}=e,i=e.value!=null,a=is(),o=xs(e=>e.search),s=xs(e=>e.selectedItemId),c=ns();return M.useEffect(()=>{e.value!=null&&a.setState(`search`,e.value)},[e.value]),M.createElement(G.input,{ref:t,...r,"cmdk-input":``,autoComplete:`off`,autoCorrect:`off`,spellCheck:!1,"aria-autocomplete":`list`,role:`combobox`,"aria-expanded":!0,"aria-controls":c.listId,"aria-labelledby":c.labelId,"aria-activedescendant":s,id:c.inputId,type:`text`,value:i?e.value:o,onChange:e=>{i||a.setState(`search`,e.target.value),n?.(e.target.value)}})}),ds=M.forwardRef((e,t)=>{let{children:n,label:r=`Suggestions`,...i}=e,a=M.useRef(null),o=M.useRef(null),s=xs(e=>e.selectedItemId),c=ns();return M.useEffect(()=>{if(o.current&&a.current){let e=o.current,t=a.current,n,r=new ResizeObserver(()=>{n=requestAnimationFrame(()=>{let n=e.offsetHeight;t.style.setProperty(`--cmdk-list-height`,n.toFixed(1)+`px`)})});return r.observe(e),()=>{cancelAnimationFrame(n),r.unobserve(e)}}},[]),M.createElement(G.div,{ref:Ir(a,t),...i,"cmdk-list":``,role:`listbox`,tabIndex:-1,"aria-activedescendant":s,"aria-label":r,id:c.listId},Ts(e,e=>M.createElement(`div`,{ref:Ir(o,c.listInnerRef),"cmdk-list-sizer":``},e)))}),fs=M.forwardRef((e,t)=>{let{open:n,onOpenChange:r,overlayClassName:i,contentClassName:a,container:o,...s}=e;return M.createElement(Uo,{open:n,onOpenChange:r},M.createElement(Wo,{container:o},M.createElement(Go,{"cmdk-overlay":``,className:i}),M.createElement(Ko,{"aria-label":e.label,"cmdk-dialog":``,className:a},M.createElement(os,{ref:t,...s}))))}),ps=M.forwardRef((e,t)=>xs(e=>e.filtered.count===0)?M.createElement(G.div,{ref:t,...e,"cmdk-empty":``,role:`presentation`}):null),ms=M.forwardRef((e,t)=>{let{progress:n,children:r,label:i=`Loading...`,...a}=e;return M.createElement(G.div,{ref:t,...a,"cmdk-loading":``,role:`progressbar`,"aria-valuenow":n,"aria-valuemin":0,"aria-valuemax":100,"aria-label":i},Ts(e,e=>M.createElement(`div`,{"aria-hidden":!0},e)))}),hs=Object.assign(os,{List:ds,Item:ss,Input:us,Group:cs,Separator:ls,Dialog:fs,Empty:ps,Loading:ms});function gs(e,t){let n=e.nextElementSibling;for(;n;){if(n.matches(t))return n;n=n.nextElementSibling}}function _s(e,t){let n=e.previousElementSibling;for(;n;){if(n.matches(t))return n;n=n.previousElementSibling}}function vs(e){let t=M.useRef(e);return ys(()=>{t.current=e}),t}var ys=typeof window>`u`?M.useEffect:M.useLayoutEffect;function bs(e){let t=M.useRef();return t.current===void 0&&(t.current=e()),t}function xs(e){let t=is(),n=()=>e(t.snapshot());return M.useSyncExternalStore(t.subscribe,n,n)}function Ss(e,t,n,r=[]){let i=M.useRef(),a=ns();return ys(()=>{var o;let s=(()=>{for(let e of n){if(typeof e==`string`)return e.trim();if(typeof e==`object`&&`current`in e)return e.current?e.current.textContent?.trim():i.current}})(),c=r.map(e=>e.trim());a.value(e,s,c),(o=t.current)==null||o.setAttribute($o,s),i.current=s}),i}var Cs=()=>{let[e,t]=M.useState(),n=bs(()=>new Map);return ys(()=>{n.current.forEach(e=>e()),n.current=new Map},[e]),(e,r)=>{n.current.set(e,r),t({})}};function ws(e){let t=e.type;return typeof t==`function`?t(e.props):`render`in t?t.render(e.props):e}function Ts({asChild:e,children:t},n){return e&&M.isValidElement(t)?M.cloneElement(ws(t),{ref:t.ref},n(t.props.children)):n(t)}var Es={position:`absolute`,width:`1px`,height:`1px`,padding:`0`,margin:`-1px`,overflow:`hidden`,clip:`rect(0, 0, 0, 0)`,whiteSpace:`nowrap`,borderWidth:`0`};xe(`group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4`,{variants:{variant:{default:`bg-primary text-primary-foreground hover:bg-primary/80`,outline:`border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50`,secondary:`bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground`,ghost:`hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50`,destructive:`bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40`,link:`text-primary underline-offset-4 hover:underline`},size:{default:`h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2`,xs:`h-6 gap-1 rounded-[min(var(--radius-md),10px)] px-2 text-xs in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3`,sm:`h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5`,lg:`h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-3 has-data-[icon=inline-start]:pl-3`,icon:`size-8`,"icon-xs":`size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&_svg:not([class*='size-'])]:size-3`,"icon-sm":`size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg`,"icon-lg":`size-9`}},defaultVariants:{variant:`default`,size:`default`}}),xe(`flex h-auto cursor-text items-center justify-center gap-2 py-1.5 text-sm font-medium text-muted-foreground select-none group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>svg:not([class*='size-'])]:size-4`,{variants:{align:{"inline-start":`order-first pl-2 has-[>button]:ml-[-0.3rem] has-[>kbd]:ml-[-0.15rem]`,"inline-end":`order-last pr-2 has-[>button]:mr-[-0.3rem] has-[>kbd]:mr-[-0.15rem]`,"block-start":`order-first w-full justify-start px-2.5 pt-2 group-has-[>input]/input-group:pt-2 [.border-b]:pb-2`,"block-end":`order-last w-full justify-start px-2.5 pb-2 group-has-[>input]/input-group:pb-2 [.border-t]:pt-2`}},defaultVariants:{align:`inline-start`}}),xe(`flex items-center gap-2 text-sm shadow-none`,{variants:{size:{xs:`h-6 gap-1 rounded-[calc(var(--radius)-3px)] px-1.5 [&>svg:not([class*='size-'])]:size-3.5`,sm:``,"icon-xs":`size-6 rounded-[calc(var(--radius)-3px)] p-0 has-[>svg]:p-0`,"icon-sm":`size-8 p-0 has-[>svg]:p-0`}},defaultVariants:{size:`xs`}});function Ds({className:e,...t}){return(0,F.jsx)(hs,{"data-slot":`command`,className:N(`flex size-full flex-col overflow-hidden rounded-xl! bg-popover p-1 text-popover-foreground`,e),...t})}function Os({className:e,...t}){return(0,F.jsx)(hs.List,{"data-slot":`command-list`,className:N(`no-scrollbar max-h-72 scroll-py-1 overflow-x-hidden overflow-y-auto outline-none`,e),...t})}function ks({className:e,...t}){return(0,F.jsx)(hs.Empty,{"data-slot":`command-empty`,className:N(`py-6 text-center text-sm`,e),...t})}function As({className:e,...t}){return(0,F.jsx)(hs.Group,{"data-slot":`command-group`,className:N(`overflow-hidden p-1 text-foreground **:[[cmdk-group-heading]]:px-2 **:[[cmdk-group-heading]]:py-1.5 **:[[cmdk-group-heading]]:text-xs **:[[cmdk-group-heading]]:font-medium **:[[cmdk-group-heading]]:text-muted-foreground`,e),...t})}function js({className:e,children:t,...n}){return(0,F.jsxs)(hs.Item,{"data-slot":`command-item`,className:N(`group/command-item relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none in-data-[slot=dialog-content]:rounded-lg! data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 data-selected:bg-muted data-selected:text-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-selected:*:[svg]:text-foreground`,e),...n,children:[t,(0,F.jsx)(fe,{className:`ml-auto opacity-0 group-has-data-[slot=command-shortcut]/command-item:hidden group-data-selected/command-item:opacity-100`})]})}var Ms=``;async function Ns(){let e=await fetch(`${Ms}/api/v2/overview`);if(!e.ok)throw Error(`API error: ${e.status} ${e.statusText}`);return e.json()}async function Ps(e){let t=await fetch(`${Ms}/api/v2/skills/${encodeURIComponent(e)}`);if(!t.ok)throw t.status===404?new Ls(e):Error(`API error: ${t.status} ${t.statusText}`);return t.json()}async function Fs(e=20){let t=await fetch(`${Ms}/api/v2/orchestrate-runs?limit=${e}`);if(!t.ok)throw Error(`API error: ${t.status} ${t.statusText}`);return t.json()}async function Is(){let e=await fetch(`${Ms}/api/v2/doctor`);if(!e.ok)throw Error(`API error: ${e.status} ${e.statusText}`);return e.json()}var Ls=class extends Error{constructor(e){super(`Skill "${e}" not found`),this.name=`NotFoundError`}},Rs=6e4;function zs(){return Bn({queryKey:[`overview`],queryFn:Ns,staleTime:5e3,refetchInterval:Rs})}function Bs(){let e=r(),{name:t}=f();return e.pathname===`/status`?{title:`System Status`,icon:(0,F.jsx)(S,{className:`size-4 text-primary`}),badge:`Diagnostics`,backHref:`/`,backLabel:`Dashboard`}:e.pathname.startsWith(`/skills/`)&&t?{title:decodeURIComponent(t),icon:(0,F.jsx)(Ye,{className:`size-4 text-primary`}),badge:`Skill Report`,backHref:`/`,backLabel:`Dashboard`}:{title:`Dashboard`,icon:(0,F.jsx)(re,{className:`size-4 text-primary`}),badge:`Overview`,backHref:null,backLabel:null}}var Vs=[{name:`Overview`,path:`/`,icon:(0,F.jsx)(re,{className:`size-4`})},{name:`Skills Library`,path:`/skills-library`,icon:(0,F.jsx)(He,{className:`size-4`})},{name:`Analytics`,path:`/analytics`,icon:(0,F.jsx)(Fe,{className:`size-4`})},{name:`System Status`,path:`/status`,icon:(0,F.jsx)(S,{className:`size-4`})}];function Hs(){let e=Bs(),t=u(),{data:n}=zs(),[r,i]=(0,M.useState)(!1),a=(0,M.useRef)(null),o=(0,M.useRef)(!1),s=n?.skills??[],c=(0,M.useCallback)(e=>{o.current=!1,i(!1),t(e),setTimeout(()=>a.current?.blur(),0)},[t]),d=(0,M.useCallback)(()=>{if(o.current){o.current=!1;return}i(!1)},[]),f=(0,M.useCallback)(e=>{e.preventDefault(),o.current=!0},[]);return(0,F.jsx)(`header`,{className:`sticky top-0 z-40 flex h-16 shrink-0 items-center border-b border-border/10 bg-background/80 backdrop-blur-xl transition-[width,height] ease-linear group-has-data-[collapsible=icon]/sidebar-wrapper:h-auto`,children:(0,F.jsxs)(`div`,{className:`flex w-full items-center justify-between px-4 lg:px-8`,children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-4 w-1/2`,children:[(0,F.jsx)(ur,{className:`-ml-1 text-slate-400 hover:text-primary`}),e.backHref&&e.backLabel?(0,F.jsxs)(l,{to:e.backHref,className:`inline-flex items-center gap-1 font-headline text-[10px] uppercase tracking-[0.2em] text-slate-500 transition-colors hover:text-primary`,children:[(0,F.jsx)(ye,{className:`size-3`}),e.backLabel]}):null,(0,F.jsx)(`div`,{className:`relative w-full max-w-md`,children:(0,F.jsxs)(Ds,{className:`rounded-full bg-transparent overflow-visible`,shouldFilter:!0,children:[(0,F.jsxs)(`div`,{className:`relative`,children:[(0,F.jsx)(w,{className:`absolute left-3 top-1/2 -translate-y-1/2 size-4 text-slate-400 pointer-events-none z-10`}),(0,F.jsx)(hs.Input,{ref:a,placeholder:`Search skills or pages...`,className:`h-9 w-full bg-input/50 border-none rounded-full pl-10 pr-4 text-sm focus:ring-1 focus:ring-primary/40 focus:outline-none placeholder:text-slate-500 text-foreground`,onFocus:()=>i(!0),onBlur:d})]}),r&&(0,F.jsxs)(Os,{className:`absolute top-full left-0 right-0 mt-2 rounded-xl border border-border/15 bg-card shadow-[0_8px_32px_rgba(0,0,0,0.4)] backdrop-blur-xl max-h-80 overflow-y-auto z-50`,children:[(0,F.jsx)(ks,{className:`py-4 text-center text-sm text-muted-foreground`,children:`No results found.`}),(0,F.jsx)(As,{heading:`Pages`,className:`text-[10px] uppercase tracking-widest text-muted-foreground`,children:Vs.map(e=>(0,F.jsxs)(js,{value:e.name,onMouseDown:f,onSelect:()=>c(e.path),className:`gap-3 rounded-lg cursor-pointer`,children:[e.icon,(0,F.jsx)(`span`,{children:e.name})]},e.path))}),s.length>0&&(0,F.jsx)(As,{heading:`Skills`,className:`text-[10px] uppercase tracking-widest text-muted-foreground`,children:s.map(e=>{let t=Vn(e.pass_rate,e.total_checks),n=t===`HEALTHY`?`bg-primary`:t===`WARNING`?`bg-primary-accent`:t===`CRITICAL`?`bg-destructive`:`bg-muted-foreground`;return(0,F.jsxs)(js,{value:e.skill_name,onMouseDown:f,onSelect:()=>c(`/skills/${encodeURIComponent(e.skill_name)}`),className:`gap-3 rounded-lg cursor-pointer`,children:[(0,F.jsx)(`span`,{className:`size-2 rounded-full ${n} shrink-0`}),(0,F.jsx)(`span`,{className:`flex-1 truncate`,children:e.skill_name}),(0,F.jsx)(`span`,{className:`text-xs text-muted-foreground tabular-nums shrink-0`,children:Hn(e.total_checks>0?e.pass_rate:null)})]},e.skill_name)})})]})]})})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-6`,children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-4`,children:[(0,F.jsxs)(`span`,{className:`relative text-slate-400`,"aria-hidden":`true`,children:[(0,F.jsx)(ke,{className:`size-4`}),(0,F.jsx)(`span`,{className:`absolute -right-0.5 -top-0.5 size-2 rounded-full bg-primary border-2 border-background shadow-[0_0_6px_color-mix(in_srgb,var(--primary)_50%,transparent)]`})]}),(0,F.jsx)(`span`,{className:`text-slate-400`,"aria-hidden":`true`,children:(0,F.jsx)(me,{className:`size-4`})})]}),(0,F.jsx)(`div`,{className:`h-8 w-px bg-border/20`}),(0,F.jsxs)(`div`,{className:`flex items-center gap-3 group`,children:[(0,F.jsx)(`span`,{className:`sr-only`,children:`Profile: Admin Node`}),(0,F.jsxs)(`span`,{className:`hidden md:block font-headline uppercase tracking-widest text-[10px] text-slate-400 group-hover:text-primary transition-colors text-right`,children:[`Admin Node`,(0,F.jsx)(`br`,{}),(0,F.jsx)(`span`,{className:`text-primary`,children:`Active`})]}),(0,F.jsx)(`div`,{className:`flex size-8 items-center justify-center rounded-full border border-primary/20 bg-card text-primary`,children:(0,F.jsx)(ne,{className:`size-4`})})]})]})]})})}var Us=(0,M.createContext)(void 0),Ws=`selftune-theme`;function Gs({children:e,defaultTheme:t=`dark`}){let[n,r]=(0,M.useState)(`dark`);return(0,M.useEffect)(()=>{let e=window.document.documentElement;e.classList.remove(`light`),e.classList.add(`dark`),localStorage.setItem(Ws,`dark`)},[]),(0,F.jsx)(Us.Provider,{value:{theme:n,setTheme:e=>{localStorage.setItem(Ws,e),r(e)}},children:e})}function Ks(){let e=Tn();(0,M.useEffect)(()=>{let t=new EventSource(`/api/v2/events`);return t.addEventListener(`update`,()=>{e.invalidateQueries()}),t.onerror=()=>{},()=>{t.close()}},[e])}var qs=6e4;function Js(){return Bn({queryKey:[`orchestrate-runs`],queryFn:()=>Fs(20),staleTime:5e3,refetchInterval:qs})}function Ys(e){let t=Date.now()-new Date(e).getTime(),n=Math.floor(t/6e4);if(n<1)return`just now`;if(n<60)return`${n}m ago`;let r=Math.floor(n/60);return r<24?`${r}h ago`:`${Math.floor(r/24)}d ago`}function Xs(e){switch(e){case`created`:return`Proposal created`;case`validated`:return`Validated`;case`deployed`:return`Deployed`;case`rolled_back`:return`Rolled back`;case`watch`:return`Watching`;case`rejected`:return`Rejected`;default:return e.replace(/_/g,` `)}}var Zs={healthy:{color:`bg-emerald-400`,glow:`shadow-[0_0_12px_rgba(52,211,153,0.6)]`},watching:{color:`bg-primary`,glow:`shadow-[0_0_12px_rgba(79,242,255,0.6)]`},needs_review:{color:`bg-amber-400`,glow:`shadow-[0_0_12px_rgba(251,191,36,0.6)]`},blocked:{color:`bg-red-400`,glow:`shadow-[0_0_12px_rgba(248,113,113,0.6)]`}},Qs={healthy:`Healthy`,watching:`Watching`,needs_review:`Needs Review`,blocked:`Blocked`},$s={critical:{dot:`bg-red-400`,text:`text-red-400`,bg:`bg-red-500/10`},warning:{dot:`bg-amber-400`,text:`text-amber-400`,bg:`bg-amber-500/10`},info:{dot:`bg-primary`,text:`text-primary`,bg:`bg-primary/10`}},ec={proposal_created:`bg-primary`,proposal_rejected:`bg-red-400`,validation_failed:`bg-amber-400`,proposal_deployed:`bg-emerald-400`,rollback_triggered:`bg-red-400`,regression_found:`bg-amber-400`},tc={at_risk:{label:`At Risk`,accent:`text-red-400`,dot:`bg-red-400`},improving:{label:`Improving`,accent:`text-primary`,dot:`bg-primary`},uncertain:{label:`Uncertain`,accent:`text-amber-400`,dot:`bg-amber-400`},stable:{label:`Stable`,accent:`text-muted-foreground`,dot:`bg-muted-foreground/60`}},nc=[35,55,40,70,45,80,30,65,50,75,38,60,42,72];function rc(e,t,n=10){let r=[`at_risk`,`improving`,`uncertain`,`stable`],i=[...t].sort((e,t)=>{let n=r.indexOf(e.bucket),i=r.indexOf(t.bucket);return n===i?(t.last_seen??``).localeCompare(e.last_seen??``):n-i}).slice(0,n).map(e=>e.skill_name);if(i.length>=n)return i;let a=new Set(i);for(let t of[...e].sort((e,t)=>(t.last_seen??``).localeCompare(e.last_seen??``)))if(!a.has(t.skill_name)&&(i.push(t.skill_name),a.add(t.skill_name),i.length>=n))break;return i}function ic({skillCount:e}){let[t,n]=(0,M.useState)(()=>{try{return localStorage.getItem(`selftune-onboarding-dismissed`)===`true`}catch{return!1}});return e>0||t?null:(0,F.jsx)(`div`,{className:`col-span-12 rounded-xl border-2 border-dashed border-primary/30 bg-primary/5 p-8`,children:(0,F.jsxs)(`div`,{className:`flex flex-col items-center text-center gap-4 max-w-md mx-auto`,children:[(0,F.jsx)(`div`,{className:`flex items-center justify-center size-12 rounded-full bg-primary/10`,children:(0,F.jsx)(ee,{className:`size-6 text-primary`})}),(0,F.jsx)(`h2`,{className:`font-headline text-lg font-semibold`,children:`Welcome to selftune`}),(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground leading-relaxed`,children:`No skills detected yet. Once you start using selftune in your project, skills will appear here automatically.`}),(0,F.jsxs)(`div`,{className:`grid grid-cols-1 gap-3 w-full text-left sm:grid-cols-3`,children:[(0,F.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded-lg border bg-card p-3`,children:[(0,F.jsx)(`div`,{className:`flex items-center justify-center size-6 rounded-full bg-blue-500/10 text-blue-500 shrink-0 text-xs font-bold`,children:`1`}),(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`text-xs font-medium`,children:`Run selftune`}),(0,F.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Enable selftune in your project to start tracking skills`})]})]}),(0,F.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded-lg border bg-card p-3`,children:[(0,F.jsx)(`div`,{className:`flex items-center justify-center size-6 rounded-full bg-amber-500/10 text-amber-500 shrink-0 text-xs font-bold`,children:`2`}),(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`text-xs font-medium`,children:`Skills appear`}),(0,F.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Skills are detected and monitored automatically`})]})]}),(0,F.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded-lg border bg-card p-3`,children:[(0,F.jsx)(`div`,{className:`flex items-center justify-center size-6 rounded-full bg-emerald-500/10 text-emerald-500 shrink-0 text-xs font-bold`,children:`3`}),(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`text-xs font-medium`,children:`Watch evolution`}),(0,F.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Proposals flow in with validated improvements`})]})]})]}),(0,F.jsx)(`button`,{type:`button`,onClick:()=>{n(!0);try{localStorage.setItem(`selftune-onboarding-dismissed`,`true`)}catch{}},className:`text-xs text-muted-foreground hover:text-foreground`,children:`Dismiss`})]})})}function ac({status:e,lastRun:t}){let n=Zs[e.level],r=e.attention_required>0?{value:e.attention_required,label:`Attention Required`}:{value:e.skills_observed,label:`Skills Observed`};return(0,F.jsxs)(L,{className:`relative min-h-[332px] border-none bg-gradient-to-br from-muted via-muted to-primary/5 shadow-none py-0`,children:[(0,F.jsx)(`div`,{className:`absolute inset-0 flex items-end justify-around px-8 pb-24 pt-20 opacity-[0.08] pointer-events-none`,children:nc.map((e,t)=>(0,F.jsx)(`div`,{className:`flex-1 rounded-t-sm min-w-[12px]`,style:{height:`${e}%`,backgroundColor:`rgba(79, 242, 255, ${.15+e/100*.3})`}},t))}),(0,F.jsxs)(R,{className:`relative z-10 px-8 pt-8 pb-0`,children:[(0,F.jsxs)(`div`,{className:`flex items-start gap-3`,children:[(0,F.jsx)(`span`,{className:`mt-2 size-3.5 shrink-0 rounded-full animate-pulse ${n.color} ${n.glow}`}),(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Autonomy Status`}),(0,F.jsx)(z,{className:`font-headline text-2xl font-extrabold tracking-tight`,children:Qs[e.level]}),(0,F.jsx)(tt,{className:`mt-1.5 max-w-xl text-[13px] leading-relaxed`,children:e.summary})]})]}),(0,F.jsx)(nt,{children:(0,F.jsxs)(`div`,{className:`text-right shrink-0`,children:[(0,F.jsx)(`p`,{className:`font-headline text-5xl font-extrabold text-primary leading-none`,style:{filter:`drop-shadow(0 0 8px rgba(79,242,255,0.3))`},children:r.value}),(0,F.jsx)(`p`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground mt-1.5`,children:r.label})]})})]}),(0,F.jsx)(`div`,{className:`flex-1 min-h-6`}),(0,F.jsxs)(B,{className:`relative z-10 flex flex-col gap-5 px-8 pb-8 pt-0`,children:[(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center gap-2.5 text-xs`,children:[(0,F.jsxs)(`div`,{className:`rounded-full border border-border/15 bg-black/15 px-3 py-1.5 backdrop-blur-sm text-muted-foreground shadow-[inset_0_1px_0_rgba(255,255,255,0.02)]`,children:[(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.18em] text-muted-foreground/70`,children:`Last Run`}),(0,F.jsx)(`span`,{className:`ml-2 font-medium text-foreground`,children:t?Ys(t):`Never`})]}),(0,F.jsxs)(`div`,{className:`rounded-full border border-border/15 bg-black/15 px-3 py-1.5 backdrop-blur-sm text-muted-foreground shadow-[inset_0_1px_0_rgba(255,255,255,0.02)]`,children:[(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.18em] text-muted-foreground/70`,children:`Skills`}),(0,F.jsx)(`span`,{className:`ml-2 font-medium text-foreground`,children:e.skills_observed})]}),(0,F.jsxs)(`div`,{className:`rounded-full border border-primary/20 bg-primary/10 px-3 py-1.5 backdrop-blur-sm text-primary`,children:[(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.18em] text-primary/80`,children:`Pending`}),(0,F.jsx)(`span`,{className:`ml-2 font-semibold`,children:e.pending_reviews})]})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-3`,children:[e.attention_required>0?(0,F.jsx)(I,{size:`sm`,render:(0,F.jsx)(`a`,{href:`#supervision-feed`}),children:`Review Attention Queue`}):(0,F.jsx)(`span`,{className:`text-sm text-muted-foreground`,children:`No action needed`}),(0,F.jsx)(I,{variant:`outline`,size:`sm`,render:(0,F.jsx)(l,{to:`?action=evolve`}),children:`Run Evolution`})]})]})]})}function oc({entries:e}){let t=(0,M.useMemo)(()=>{let t=[`at_risk`,`improving`,`uncertain`,`stable`],n={at_risk:[],improving:[],uncertain:[],stable:[]};for(let t of e)n[t.bucket].push(t);return t.filter(e=>n[e].length>0).map(e=>({bucket:e,items:n[e]}))},[e]);return(0,F.jsxs)(L,{className:`border-none bg-muted shadow-none py-0 max-h-[360px]`,children:[(0,F.jsxs)(R,{className:`px-5 pt-5 pb-0`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Trust Watchlist`}),(0,F.jsx)(tt,{className:`mt-1 text-[11px]`,children:`Highest-risk skills worth checking next.`})]}),(0,F.jsx)(nt,{children:(0,F.jsxs)(`span`,{className:`font-headline text-[10px] text-muted-foreground/60 shrink-0`,children:[e.length,` skills`]})})]}),t.length===0?(0,F.jsx)(B,{className:`flex flex-1 items-center justify-center px-5 py-4`,children:(0,F.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`No skills tracked yet.`})}):(0,F.jsx)(B,{className:`themed-scroll space-y-3 overflow-y-auto min-h-0 flex-1 px-5 py-4`,children:t.map(({bucket:e,items:t})=>(0,F.jsx)(sc,{bucket:e,items:t},e))}),(0,F.jsx)(B,{className:`mt-auto px-5 pb-5 pt-1 shrink-0`,children:(0,F.jsx)(l,{to:`/skills-library`,className:`text-xs text-primary hover:underline font-medium`,children:`View All Skills`})})]})}function sc({bucket:e,items:t}){let n=tc[e],[r,i]=(0,M.useState)(!1),[a,o]=(0,M.useState)(!1),s=r?a?t:t.slice(0,5):[];return(0,F.jsxs)(`div`,{className:`rounded-xl bg-background/40 px-3 py-2.5`,children:[(0,F.jsxs)(`button`,{type:`button`,onClick:()=>i(!r),className:`flex w-full items-center gap-1.5 text-left`,children:[(0,F.jsx)(`span`,{className:`size-1.5 shrink-0 rounded-full ${n.dot}`}),(0,F.jsx)(Te,{className:`size-3 text-muted-foreground transition-transform ${r?``:`-rotate-90`}`}),(0,F.jsx)(`span`,{className:`text-xs font-medium ${n.accent}`,children:n.label}),(0,F.jsxs)(`span`,{className:`text-[10px] text-muted-foreground/60`,children:[`(`,t.length,`)`]})]}),r&&(0,F.jsxs)(`div`,{className:`mt-2 space-y-1`,children:[s.map(e=>(0,F.jsxs)(`div`,{className:`rounded-lg px-2 py-1.5 transition-colors hover:bg-background/55`,children:[(0,F.jsxs)(`div`,{className:`flex items-baseline justify-between gap-2`,children:[(0,F.jsx)(l,{to:`/skills/${encodeURIComponent(e.skill_name)}`,className:`text-[11px] font-medium hover:underline truncate`,children:e.skill_name}),e.pass_rate!=null&&(0,F.jsxs)(`span`,{className:`text-[10px] text-muted-foreground shrink-0`,children:[Math.round(e.pass_rate*100),`%`]})]}),(0,F.jsx)(`p`,{className:`mt-0.5 line-clamp-1 text-[10px] text-muted-foreground/70`,children:e.reason})]},e.skill_name)),t.length>5&&!a&&(0,F.jsxs)(`button`,{type:`button`,onClick:()=>o(!0),className:`pl-2 text-[10px] text-primary hover:underline`,children:[`+`,t.length-5,` more`]})]})]})}function cc({skills:e,trustWatchlist:t,evolution:n,initialWatchedSkills:r}){let i=(0,M.useMemo)(()=>new Map(t.map(e=>[e.skill_name,e])),[t]),[a,o]=(0,M.useState)(`watched`),[s,c]=(0,M.useState)(r),u=(0,M.useRef)(0),d=(0,M.useMemo)(()=>{let e=new Map;for(let t of n)!t.skill_name||e.has(t.skill_name)||e.set(t.skill_name,t);return e},[n]);(0,M.useEffect)(()=>{c(r)},[r]);let f=(0,M.useMemo)(()=>{let n=new Set(e.map(e=>e.skill_name)),r=s.filter(e=>n.has(e));return r.length>0?r:rc(e,t)},[e,t,s]),p=(0,M.useMemo)(()=>{let t=[...e].map(e=>({skill:e,trust:i.get(e.skill_name),lastEvolution:d.get(e.skill_name)??null})).sort((e,t)=>{let n=e.trust?[`at_risk`,`improving`,`uncertain`,`stable`].indexOf(e.trust.bucket):4,r=t.trust?[`at_risk`,`improving`,`uncertain`,`stable`].indexOf(t.trust.bucket):4;return n===r?(t.skill.last_seen??``).localeCompare(e.skill.last_seen??``):n-r});if(a===`all`)return t;let n=new Set(f);return t.filter(e=>n.has(e.skill.skill_name))},[f,d,e,i,a]),m=f.length,h=async e=>{let t=f.includes(e)?f.filter(t=>t!==e):[...f,e],n=f,r=u.current+1;u.current=r,c(t);try{let e=await fetch(`/api/actions/watchlist`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({skills:t})});if(!e.ok){u.current===r&&c(n);return}let i=await e.json();u.current===r&&Array.isArray(i.watched_skills)&&c(i.watched_skills)}catch{u.current===r&&c(n)}};return(0,F.jsxs)(L,{className:`col-span-12 border-none bg-muted shadow-none py-0`,children:[(0,F.jsxs)(R,{className:`px-5 pt-5 pb-0`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Skill Comparison`}),(0,F.jsx)(tt,{className:`mt-1 text-[13px]`,children:`Compare skill performance before drilling into the details.`})]}),(0,F.jsx)(nt,{children:(0,F.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,F.jsx)(st,{value:a,onValueChange:e=>o(e),children:(0,F.jsxs)(lt,{variant:`line`,className:`h-auto gap-2`,children:[(0,F.jsxs)(ut,{value:`watched`,className:`font-headline text-[10px] uppercase tracking-[0.18em]`,children:[`Watched`,(0,F.jsx)(`span`,{className:`ml-1.5 text-muted-foreground`,children:m})]}),(0,F.jsxs)(ut,{value:`all`,className:`font-headline text-[10px] uppercase tracking-[0.18em]`,children:[`All Skills`,(0,F.jsx)(`span`,{className:`ml-1.5 text-muted-foreground`,children:e.length})]})]})}),(0,F.jsx)(l,{to:`/skills-library`,className:`text-xs font-medium text-primary hover:underline`,children:`View library`})]})})]}),(0,F.jsx)(B,{className:`themed-scroll overflow-x-auto px-5 py-5`,children:(0,F.jsxs)(`div`,{className:`min-w-[780px]`,children:[(0,F.jsx)(`div`,{className:`mb-3 rounded-xl bg-background/35 px-3 py-2 text-xs text-muted-foreground`,children:a===`watched`?`Your watched skills stay pinned here. Add or remove them directly from the grid.`:`All installed skills, sorted by current trust priority.`}),(0,F.jsxs)(`div`,{className:`grid grid-cols-[minmax(220px,2.3fr)_0.95fr_1.1fr_0.9fr_1.3fr_1fr_0.9fr] gap-3 px-3 pb-2 text-[10px] uppercase tracking-[0.18em] text-muted-foreground`,children:[(0,F.jsx)(`span`,{children:`Skill`}),(0,F.jsx)(`span`,{children:`Trigger Rate`}),(0,F.jsx)(`span`,{children:`Routing Conf.`}),(0,F.jsx)(`span`,{children:`Sessions`}),(0,F.jsx)(`span`,{children:`Last Evolution`}),(0,F.jsx)(`span`,{children:`Status`}),(0,F.jsx)(`span`,{className:`text-right`,children:`Watch`})]}),(0,F.jsxs)(`div`,{className:`space-y-1.5`,children:[p.map(({skill:e,trust:t,lastEvolution:n})=>{let r=t?tc[t.bucket]:tc.uncertain,i=t?.pass_rate??e.pass_rate,a=f.includes(e.skill_name);return(0,F.jsxs)(`div`,{className:`grid grid-cols-[minmax(220px,2.3fr)_0.95fr_1.1fr_0.9fr_1.3fr_1fr_0.9fr] items-center gap-3 rounded-xl bg-background/35 px-3 py-3 text-sm transition-colors hover:bg-background/50`,children:[(0,F.jsxs)(l,{to:`/skills/${encodeURIComponent(e.skill_name)}`,className:`contents focus-visible:outline-none`,children:[(0,F.jsxs)(`div`,{className:`min-w-0`,children:[(0,F.jsx)(`p`,{className:`truncate font-medium`,children:e.skill_name}),(0,F.jsx)(`p`,{className:`truncate text-xs text-muted-foreground`,children:(e.skill_scope??`Unscoped`)+` · ${e.total_checks} checks`})]}),(0,F.jsx)(`div`,{className:`font-medium`,children:Number.isFinite(i)?`${Math.round((i??0)*100)}%`:`—`}),(0,F.jsx)(`div`,{className:`min-w-0`,children:e.routing_confidence!=null&&e.confidence_coverage>=.5?(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`p`,{className:`text-sm font-medium`,children:[Math.round(e.routing_confidence*100),`%`]}),(0,F.jsxs)(`p`,{className:`truncate text-xs text-muted-foreground`,children:[Math.round(e.confidence_coverage*100),`% coverage`]})]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(`p`,{className:`text-sm font-medium`,children:`—`}),(0,F.jsx)(`p`,{className:`truncate text-xs text-muted-foreground`,children:`Low coverage`})]})}),(0,F.jsx)(`div`,{className:`text-muted-foreground`,children:e.unique_sessions}),(0,F.jsx)(`div`,{className:`min-w-0`,children:n?(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(`p`,{className:`truncate text-sm`,children:Xs(n.action)}),(0,F.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:Ys(n.timestamp)})]}):(0,F.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:`No evolutions yet`})}),(0,F.jsx)(`div`,{children:(0,F.jsxs)(P,{variant:`outline`,className:`border-transparent ${r.accent} bg-background/55`,children:[(0,F.jsx)(`span`,{className:`mr-1.5 inline-block size-1.5 rounded-full ${r.dot}`}),r.label]})})]}),(0,F.jsx)(`div`,{className:`flex justify-end`,children:(0,F.jsxs)(I,{type:`button`,variant:a?`secondary`:`ghost`,size:`sm`,className:`h-8 gap-1.5 px-2 text-xs`,onClick:t=>{t.preventDefault(),h(e.skill_name)},children:[(0,F.jsx)(oe,{className:`size-3.5`}),a?`Watching`:`Watch`]})})]},e.skill_name)}),p.length===0&&(0,F.jsxs)(`div`,{className:`rounded-xl bg-background/30 px-3 py-6 text-sm text-muted-foreground`,children:[`No watched skills yet. Switch to`,` `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:`All Skills`}),` and add the ones you want to track closely.`]})]})]})})]})}function lc({attention:e,decisions:t}){return(0,F.jsxs)(L,{id:`supervision-feed`,className:`relative overflow-hidden border-none bg-muted shadow-none py-0 scroll-mt-6`,children:[(0,F.jsx)(`div`,{className:`pointer-events-none absolute inset-x-0 top-0 h-20 bg-gradient-to-b from-primary/5 via-transparent to-transparent`}),(0,F.jsxs)(st,{defaultValue:`attention`,className:`gap-0`,children:[(0,F.jsxs)(R,{className:`relative px-5 pt-4 pb-0`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Supervision Feed`}),(0,F.jsx)(tt,{className:`mt-1 text-[13px]`,children:`What needs review and what selftune just decided.`})]}),(0,F.jsxs)(lt,{variant:`line`,className:`mt-3`,children:[(0,F.jsxs)(ut,{value:`attention`,className:`font-headline text-xs uppercase tracking-[0.15em]`,children:[`Attention Required`,e.length>0&&(0,F.jsx)(P,{variant:`secondary`,className:`ml-1.5 text-[10px] py-0 px-1.5`,children:e.length})]}),(0,F.jsxs)(ut,{value:`decisions`,className:`font-headline text-xs uppercase tracking-[0.15em]`,children:[`Recent Decisions`,t.length>0&&(0,F.jsx)(`span`,{className:`ml-1.5 text-[10px] text-muted-foreground`,children:t.length})]})]})]}),(0,F.jsxs)(B,{className:`themed-scroll max-h-[440px] overflow-y-auto px-5 py-5`,children:[(0,F.jsx)(dt,{value:`attention`,children:(0,F.jsx)(uc,{attention:e})}),(0,F.jsx)(dt,{value:`decisions`,children:(0,F.jsx)(dc,{decisions:t})})]})]})]})}function uc({attention:e}){let[t,n]=(0,M.useState)(!1);if(e.length===0)return(0,F.jsxs)(`div`,{className:`flex items-center gap-3 py-4`,children:[(0,F.jsx)(We,{className:`size-5 text-emerald-400`}),(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`Nothing needs your attention`})]});let r=e.map(e=>({item:e,severity:e.severity}));return(0,F.jsxs)(`div`,{className:`space-y-2`,children:[(t?r:r.slice(0,6)).map(({item:e,severity:t})=>{let n=$s[t];return(0,F.jsxs)(l,{to:`/skills/${encodeURIComponent(e.skill_name)}`,className:`flex items-start gap-3 rounded-xl bg-background/40 px-3 py-3 transition-colors hover:bg-background/55 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/40`,children:[(0,F.jsx)(`span`,{className:`mt-1.5 size-2 shrink-0 rounded-full ${n.dot}`}),(0,F.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-2 flex-wrap`,children:[(0,F.jsx)(`span`,{className:`text-sm font-medium`,children:e.skill_name}),(0,F.jsx)(P,{variant:`outline`,className:`text-[10px] font-normal ${n.text} ${n.bg} border-transparent`,children:e.category.replace(/_/g,` `)})]}),(0,F.jsx)(`p`,{className:`mt-0.5 line-clamp-1 text-sm text-muted-foreground`,children:e.reason}),(0,F.jsx)(`p`,{className:`mt-0.5 line-clamp-1 text-xs text-muted-foreground/60`,children:e.recommended_action})]}),(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground/50 shrink-0 mt-0.5`,children:e.timestamp?Ys(e.timestamp):``})]},`${e.skill_name}-${e.category}`)}),r.length>6&&!t&&(0,F.jsx)(`div`,{className:`pt-3`,children:(0,F.jsxs)(`button`,{type:`button`,onClick:()=>n(!0),className:`text-xs text-primary hover:underline`,children:[`Show all `,r.length,` attention items`]})})]})}function dc({decisions:e}){let[t,n]=(0,M.useState)(!1),r=t?e:e.slice(0,10);return e.length===0?(0,F.jsx)(`p`,{className:`text-xs text-muted-foreground py-4`,children:`No autonomous decisions yet.`}):(0,F.jsxs)(`div`,{className:`space-y-1`,children:[r.map((e,t)=>{let n=ec[e.kind];return(0,F.jsxs)(l,{to:`/skills/${encodeURIComponent(e.skill_name)}`,className:`flex items-start gap-2.5 rounded-xl bg-background/30 px-3 py-2 transition-colors hover:bg-background/45 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/40`,children:[(0,F.jsx)(`span`,{className:`mt-1.5 size-2 shrink-0 rounded-full ${n}`}),(0,F.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,F.jsx)(`span`,{className:`text-xs font-medium truncate block`,children:e.skill_name}),(0,F.jsx)(`p`,{className:`line-clamp-2 text-xs text-muted-foreground`,children:e.summary})]}),(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground/50 shrink-0 mt-0.5`,children:Ys(e.timestamp)})]},`${e.timestamp}-${e.skill_name}-${t}`)}),e.length>10&&!t&&(0,F.jsxs)(`button`,{type:`button`,onClick:()=>n(!0),className:`text-xs text-primary hover:underline mt-1 pl-2`,children:[`Show all (`,e.length,`)`]})]})}function fc({lastRun:e,deployed:t,evolved:n,watched:r,runCount:i}){return i===0?null:(0,F.jsxs)(`div`,{className:`col-span-12 rounded-xl border border-border/10 bg-card/50 px-5 py-3 flex items-center gap-6 text-xs text-muted-foreground`,children:[(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em]`,children:`Last Cycle`}),(0,F.jsx)(`span`,{children:e?Ys(e):`Never`}),(0,F.jsx)(`span`,{className:`text-muted-foreground/30`,children:`|`}),(0,F.jsxs)(`span`,{children:[t,` deployed`]}),(0,F.jsxs)(`span`,{children:[n,` evolved`]}),(0,F.jsxs)(`span`,{children:[r,` watched`]}),(0,F.jsx)(`span`,{className:`text-muted-foreground/30`,children:`|`}),(0,F.jsx)(l,{to:`/analytics`,className:`text-primary hover:underline ml-auto`,children:`View full history`})]})}function pc({search:e,statusFilter:t,onStatusFilterChange:n,overviewQuery:r}){let{data:i,isPending:a,isError:o,error:s,refetch:c}=r,l=Js();if(a)return(0,F.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-6 py-6 px-4 lg:px-6`,children:[(0,F.jsx)(W,{className:`h-[340px] rounded-xl`}),(0,F.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[(0,F.jsx)(W,{className:`col-span-12 @4xl/main:col-span-8 h-64 rounded-xl`}),(0,F.jsx)(W,{className:`col-span-12 @4xl/main:col-span-4 h-64 rounded-xl`})]})]});if(o)return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,F.jsx)(Ne,{className:`size-10 text-destructive`}),(0,F.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:s instanceof Error?s.message:`Unknown error`}),(0,F.jsxs)(I,{variant:`outline`,size:`sm`,onClick:()=>c(),children:[(0,F.jsx)(j,{className:`mr-2 size-3.5`}),`Retry`]})]});if(!i)return(0,F.jsx)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-2 py-16`,children:(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No telemetry data found. Run some sessions first.`})});let{skills:u,autonomy_status:d,attention_queue:f,trust_watchlist:p,recent_decisions:m,overview:h}=i,g=l.data?.runs??[],_=g[0],v=g.reduce((e,t)=>e+t.deployed,0),y=g.reduce((e,t)=>e+t.evolved,0),b=g.reduce((e,t)=>e+t.watched,0);return(0,F.jsx)(`div`,{className:`@container/main flex flex-1 flex-col py-6`,children:(0,F.jsxs)(`div`,{className:`grid grid-cols-12 gap-6 px-4 lg:px-6`,children:[(0,F.jsx)(ic,{skillCount:u.length}),(0,F.jsx)(`div`,{className:`col-span-12 @4xl/main:col-span-8`,children:(0,F.jsx)(ac,{status:d,lastRun:_?.timestamp??null})}),(0,F.jsx)(`div`,{className:`col-span-12 @4xl/main:col-span-4 self-start`,children:(0,F.jsx)(oc,{entries:p})}),(0,F.jsx)(cc,{skills:u,trustWatchlist:p,evolution:h.evolution,initialWatchedSkills:i.watched_skills}),(0,F.jsx)(`div`,{className:`col-span-12`,children:(0,F.jsx)(lc,{attention:f,decisions:m})}),(0,F.jsx)(fc,{lastRun:_?.timestamp??null,deployed:v,evolved:y,watched:b,runCount:g.length})]})})}function mc(e){let t=e.split(`-`),n=t[1],r=t[2];return!n||!r?e:`${Number(n)}/${Number(r)}`}function hc({data:e,mode:t}){let n=e.map(e=>t===`pass_rate`?e.pass_rate*100:e.total_checks),r=Math.max(...n,t===`pass_rate`?100:1),i=n.map((e,t)=>({x:48+t/Math.max(1,n.length-1)*624,y:232-(e-0)/Math.max(1,r-0)*200})),a=i.map((e,t)=>`${t===0?`M`:`L`}${e.x},${e.y}`).join(` `),o=`${a} L${i[i.length-1]?.x??48},232 L48,232 Z`,s=t===`pass_rate`?[0,25,50,75,100]:Array.from({length:5},(e,t)=>Math.round(r/4*t)),c=[],l=Math.max(1,Math.floor(e.length/6));for(let t=0;t<e.length;t+=l){let n=e[t],r=i[t];n&&r&&c.push({label:mc(n.date),x:r.x})}return e.length===0?(0,F.jsx)(`div`,{className:`flex items-center justify-center h-[260px] text-muted-foreground text-sm`,children:`No trend data available yet`}):(0,F.jsxs)(`svg`,{viewBox:`0 0 720 260`,className:`w-full h-auto`,preserveAspectRatio:`xMidYMid meet`,children:[(0,F.jsx)(`defs`,{children:(0,F.jsxs)(`linearGradient`,{id:`analytics-chart-fill`,x1:`0`,y1:`0`,x2:`0`,y2:`1`,children:[(0,F.jsx)(`stop`,{offset:`0%`,stopColor:`var(--primary)`,stopOpacity:`0.3`}),(0,F.jsx)(`stop`,{offset:`100%`,stopColor:`var(--primary)`,stopOpacity:`0.02`})]})}),s.map(e=>{let n=232-(e-0)/Math.max(1,r-0)*200;return(0,F.jsxs)(`g`,{children:[(0,F.jsx)(`line`,{x1:48,y1:n,x2:672,y2:n,stroke:`var(--border)`,strokeWidth:`0.5`,strokeDasharray:`4 4`}),(0,F.jsx)(`text`,{x:40,y:n+3,textAnchor:`end`,fill:`var(--muted-foreground)`,fontSize:`9`,fontFamily:`var(--font-headline)`,children:t===`pass_rate`?`${e}%`:e})]},e)}),c.map(e=>(0,F.jsx)(`text`,{x:e.x,y:256,textAnchor:`middle`,fill:`var(--muted-foreground)`,fontSize:`9`,fontFamily:`var(--font-headline)`,children:e.label},e.label)),i.length>1&&(0,F.jsx)(`path`,{d:o,fill:`url(#analytics-chart-fill)`}),i.length>1&&(0,F.jsx)(`path`,{d:a,fill:`none`,stroke:`var(--primary)`,strokeWidth:`2`,strokeLinecap:`round`,strokeLinejoin:`round`,style:{filter:`drop-shadow(0 0 4px rgba(79,242,255,0.5))`}}),i.map((e,t)=>(0,F.jsx)(`circle`,{cx:e.x,cy:e.y,r:`3`,fill:`var(--primary)`,stroke:`var(--muted)`,strokeWidth:`1.5`},t))]})}function gc({skills:e}){return e.length===0?(0,F.jsx)(`div`,{className:`flex-1 flex items-center justify-center`,children:(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No skills graded yet`})}):(0,F.jsx)(`div`,{className:`flex-1 flex flex-col gap-4`,children:e.map(e=>(0,F.jsxs)(`div`,{children:[(0,F.jsxs)(`div`,{className:`flex items-center justify-between mb-1.5`,children:[(0,F.jsx)(`span`,{className:`font-headline text-[11px] uppercase tracking-wider text-foreground truncate max-w-[65%]`,children:e.skill_name}),(0,F.jsxs)(`span`,{className:`font-headline text-xs font-semibold text-primary`,children:[Math.round(e.pass_rate*100),`%`]})]}),(0,F.jsx)(`div`,{className:`h-[1.5px] rounded-full bg-border/30 overflow-hidden`,children:(0,F.jsx)(`div`,{className:`h-full rounded-full bg-primary transition-all duration-500`,style:{width:`${Math.round(e.pass_rate*100)}%`,boxShadow:`0 0 6px rgba(79,242,255,0.4)`}})}),(0,F.jsxs)(`p`,{className:`text-[10px] text-muted-foreground mt-1`,children:[e.total_checks,` checks · `,e.triggered_count,` triggered`]})]},e.skill_name))})}function _c({data:e}){let t=e.slice(-84),n=Math.max(...t.map(e=>e.checks),1);return t.length===0?(0,F.jsx)(`div`,{className:`flex items-center justify-center h-32 text-muted-foreground text-sm`,children:`No grading activity recorded yet`}):(0,F.jsxs)(`div`,{className:`flex flex-col h-full`,children:[(0,F.jsx)(`div`,{className:`flex flex-wrap gap-1.5 flex-1 content-start`,children:t.map(e=>{let t=e.checks/n;return(0,F.jsx)(`div`,{className:`size-5 rounded-sm transition-colors`,style:{backgroundColor:`color-mix(in srgb, var(--primary) ${Math.round(Math.max(.08,t)*100)}%, transparent)`},title:`${e.date}: ${e.checks} checks`},e.date)})}),(0,F.jsxs)(`div`,{className:`flex items-center justify-end gap-2 mt-auto pt-3`,children:[(0,F.jsx)(`span`,{className:`text-[10px] font-headline uppercase tracking-widest text-muted-foreground`,children:`Quiet`}),[8,25,50,75,100].map(e=>(0,F.jsx)(`div`,{className:`size-3 rounded-sm`,style:{backgroundColor:`color-mix(in srgb, var(--primary) ${e}%, transparent)`}},e)),(0,F.jsx)(`span`,{className:`text-[10px] font-headline uppercase tracking-widest text-muted-foreground`,children:`Active`})]})]})}function vc({impacts:e}){return e.length===0?(0,F.jsx)(`div`,{className:`flex items-center justify-center h-32`,children:(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No evolution deployments yet`})}):(0,F.jsx)(`div`,{className:`flex flex-col gap-3 max-h-[260px] overflow-y-auto`,children:e.map(e=>{let t=(e.pass_rate_after-e.pass_rate_before)*100,n=t>0;return(0,F.jsxs)(`div`,{className:`flex items-center justify-between bg-muted/50 rounded-lg px-4 py-3`,children:[(0,F.jsxs)(`div`,{className:`min-w-0`,children:[(0,F.jsx)(`p`,{className:`font-headline text-[11px] uppercase tracking-wider text-foreground truncate`,children:e.skill_name}),(0,F.jsxs)(`p`,{className:`text-[10px] text-muted-foreground mt-0.5`,children:[Math.round(e.pass_rate_before*100),`% →`,` `,Math.round(e.pass_rate_after*100),`%`]})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-1.5 shrink-0`,children:[(0,F.jsxs)(`svg`,{className:`size-3.5 ${n?`text-primary`:`text-destructive rotate-90`}`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:`2`,strokeLinecap:`round`,strokeLinejoin:`round`,children:[(0,F.jsx)(`line`,{x1:`7`,y1:`17`,x2:`17`,y2:`7`}),(0,F.jsx)(`polyline`,{points:`7 7 17 7 17 17`})]}),(0,F.jsxs)(`span`,{className:`font-headline text-sm font-semibold ${n?`text-primary`:`text-destructive`}`,children:[n?`+`:``,Math.round(t),`%`]})]})]},e.proposal_id)})})}function yc(e,t){let n=t||{};return(e[e.length-1]===``?[...e,``]:e).join((n.padRight?` `:``)+`,`+(n.padLeft===!1?``:` `)).trim()}var bc=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,xc=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,Sc={};function Cc(e,t){return((t||Sc).jsx?xc:bc).test(e)}var wc=/[ \t\n\f\r]/g;function Tc(e){return typeof e==`object`?e.type===`text`?Ec(e.value):!1:Ec(e)}function Ec(e){return e.replace(wc,``)===``}var Dc=class{constructor(e,t,n){this.normal=t,this.property=e,n&&(this.space=n)}};Dc.prototype.normal={},Dc.prototype.property={},Dc.prototype.space=void 0;function Oc(e,t){let n={},r={};for(let t of e)Object.assign(n,t.property),Object.assign(r,t.normal);return new Dc(n,r,t)}function kc(e){return e.toLowerCase()}var Ac=class{constructor(e,t){this.attribute=t,this.property=e}};Ac.prototype.attribute=``,Ac.prototype.booleanish=!1,Ac.prototype.boolean=!1,Ac.prototype.commaOrSpaceSeparated=!1,Ac.prototype.commaSeparated=!1,Ac.prototype.defined=!1,Ac.prototype.mustUseProperty=!1,Ac.prototype.number=!1,Ac.prototype.overloadedBoolean=!1,Ac.prototype.property=``,Ac.prototype.spaceSeparated=!1,Ac.prototype.space=void 0;var jc=e({boolean:()=>K,booleanish:()=>q,commaOrSpaceSeparated:()=>Fc,commaSeparated:()=>Pc,number:()=>J,overloadedBoolean:()=>Nc,spaceSeparated:()=>Y}),Mc=0,K=Ic(),q=Ic(),Nc=Ic(),J=Ic(),Y=Ic(),Pc=Ic(),Fc=Ic();function Ic(){return 2**++Mc}var Lc=Object.keys(jc),Rc=class extends Ac{constructor(e,t,n,r){let i=-1;if(super(e,t),zc(this,`space`,r),typeof n==`number`)for(;++i<Lc.length;){let e=Lc[i];zc(this,Lc[i],(n&jc[e])===jc[e])}}};Rc.prototype.defined=!0;function zc(e,t,n){n&&(e[t]=n)}function Bc(e){let t={},n={};for(let[r,i]of Object.entries(e.properties)){let a=new Rc(r,e.transform(e.attributes||{},r),i,e.space);e.mustUseProperty&&e.mustUseProperty.includes(r)&&(a.mustUseProperty=!0),t[r]=a,n[kc(r)]=r,n[kc(a.attribute)]=r}return new Dc(t,n,e.space)}var Vc=Bc({properties:{ariaActiveDescendant:null,ariaAtomic:q,ariaAutoComplete:null,ariaBusy:q,ariaChecked:q,ariaColCount:J,ariaColIndex:J,ariaColSpan:J,ariaControls:Y,ariaCurrent:null,ariaDescribedBy:Y,ariaDetails:null,ariaDisabled:q,ariaDropEffect:Y,ariaErrorMessage:null,ariaExpanded:q,ariaFlowTo:Y,ariaGrabbed:q,ariaHasPopup:null,ariaHidden:q,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:Y,ariaLevel:J,ariaLive:null,ariaModal:q,ariaMultiLine:q,ariaMultiSelectable:q,ariaOrientation:null,ariaOwns:Y,ariaPlaceholder:null,ariaPosInSet:J,ariaPressed:q,ariaReadOnly:q,ariaRelevant:null,ariaRequired:q,ariaRoleDescription:Y,ariaRowCount:J,ariaRowIndex:J,ariaRowSpan:J,ariaSelected:q,ariaSetSize:J,ariaSort:null,ariaValueMax:J,ariaValueMin:J,ariaValueNow:J,ariaValueText:null,role:null},transform(e,t){return t===`role`?t:`aria-`+t.slice(4).toLowerCase()}});function Hc(e,t){return t in e?e[t]:t}function Uc(e,t){return Hc(e,t.toLowerCase())}var Wc=Bc({attributes:{acceptcharset:`accept-charset`,classname:`class`,htmlfor:`for`,httpequiv:`http-equiv`},mustUseProperty:[`checked`,`multiple`,`muted`,`selected`],properties:{abbr:null,accept:Pc,acceptCharset:Y,accessKey:Y,action:null,allow:null,allowFullScreen:K,allowPaymentRequest:K,allowUserMedia:K,alt:null,as:null,async:K,autoCapitalize:null,autoComplete:Y,autoFocus:K,autoPlay:K,blocking:Y,capture:null,charSet:null,checked:K,cite:null,className:Y,cols:J,colSpan:null,content:null,contentEditable:q,controls:K,controlsList:Y,coords:J|Pc,crossOrigin:null,data:null,dateTime:null,decoding:null,default:K,defer:K,dir:null,dirName:null,disabled:K,download:Nc,draggable:q,encType:null,enterKeyHint:null,fetchPriority:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:K,formTarget:null,headers:Y,height:J,hidden:Nc,high:J,href:null,hrefLang:null,htmlFor:Y,httpEquiv:Y,id:null,imageSizes:null,imageSrcSet:null,inert:K,inputMode:null,integrity:null,is:null,isMap:K,itemId:null,itemProp:Y,itemRef:Y,itemScope:K,itemType:Y,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:K,low:J,manifest:null,max:null,maxLength:J,media:null,method:null,min:null,minLength:J,multiple:K,muted:K,name:null,nonce:null,noModule:K,noValidate:K,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforeMatch:null,onBeforePrint:null,onBeforeToggle:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextLost:null,onContextMenu:null,onContextRestored:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onScrollEnd:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:K,optimum:J,pattern:null,ping:Y,placeholder:null,playsInline:K,popover:null,popoverTarget:null,popoverTargetAction:null,poster:null,preload:null,readOnly:K,referrerPolicy:null,rel:Y,required:K,reversed:K,rows:J,rowSpan:J,sandbox:Y,scope:null,scoped:K,seamless:K,selected:K,shadowRootClonable:K,shadowRootDelegatesFocus:K,shadowRootMode:null,shape:null,size:J,sizes:null,slot:null,span:J,spellCheck:q,src:null,srcDoc:null,srcLang:null,srcSet:null,start:J,step:null,style:null,tabIndex:J,target:null,title:null,translate:null,type:null,typeMustMatch:K,useMap:null,value:q,width:J,wrap:null,writingSuggestions:null,align:null,aLink:null,archive:Y,axis:null,background:null,bgColor:null,border:J,borderColor:null,bottomMargin:J,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:K,declare:K,event:null,face:null,frame:null,frameBorder:null,hSpace:J,leftMargin:J,link:null,longDesc:null,lowSrc:null,marginHeight:J,marginWidth:J,noResize:K,noHref:K,noShade:K,noWrap:K,object:null,profile:null,prompt:null,rev:null,rightMargin:J,rules:null,scheme:null,scrolling:q,standby:null,summary:null,text:null,topMargin:J,valueType:null,version:null,vAlign:null,vLink:null,vSpace:J,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:K,disableRemotePlayback:K,prefix:null,property:null,results:J,security:null,unselectable:null},space:`html`,transform:Uc}),Gc=Bc({attributes:{accentHeight:`accent-height`,alignmentBaseline:`alignment-baseline`,arabicForm:`arabic-form`,baselineShift:`baseline-shift`,capHeight:`cap-height`,className:`class`,clipPath:`clip-path`,clipRule:`clip-rule`,colorInterpolation:`color-interpolation`,colorInterpolationFilters:`color-interpolation-filters`,colorProfile:`color-profile`,colorRendering:`color-rendering`,crossOrigin:`crossorigin`,dataType:`datatype`,dominantBaseline:`dominant-baseline`,enableBackground:`enable-background`,fillOpacity:`fill-opacity`,fillRule:`fill-rule`,floodColor:`flood-color`,floodOpacity:`flood-opacity`,fontFamily:`font-family`,fontSize:`font-size`,fontSizeAdjust:`font-size-adjust`,fontStretch:`font-stretch`,fontStyle:`font-style`,fontVariant:`font-variant`,fontWeight:`font-weight`,glyphName:`glyph-name`,glyphOrientationHorizontal:`glyph-orientation-horizontal`,glyphOrientationVertical:`glyph-orientation-vertical`,hrefLang:`hreflang`,horizAdvX:`horiz-adv-x`,horizOriginX:`horiz-origin-x`,horizOriginY:`horiz-origin-y`,imageRendering:`image-rendering`,letterSpacing:`letter-spacing`,lightingColor:`lighting-color`,markerEnd:`marker-end`,markerMid:`marker-mid`,markerStart:`marker-start`,navDown:`nav-down`,navDownLeft:`nav-down-left`,navDownRight:`nav-down-right`,navLeft:`nav-left`,navNext:`nav-next`,navPrev:`nav-prev`,navRight:`nav-right`,navUp:`nav-up`,navUpLeft:`nav-up-left`,navUpRight:`nav-up-right`,onAbort:`onabort`,onActivate:`onactivate`,onAfterPrint:`onafterprint`,onBeforePrint:`onbeforeprint`,onBegin:`onbegin`,onCancel:`oncancel`,onCanPlay:`oncanplay`,onCanPlayThrough:`oncanplaythrough`,onChange:`onchange`,onClick:`onclick`,onClose:`onclose`,onCopy:`oncopy`,onCueChange:`oncuechange`,onCut:`oncut`,onDblClick:`ondblclick`,onDrag:`ondrag`,onDragEnd:`ondragend`,onDragEnter:`ondragenter`,onDragExit:`ondragexit`,onDragLeave:`ondragleave`,onDragOver:`ondragover`,onDragStart:`ondragstart`,onDrop:`ondrop`,onDurationChange:`ondurationchange`,onEmptied:`onemptied`,onEnd:`onend`,onEnded:`onended`,onError:`onerror`,onFocus:`onfocus`,onFocusIn:`onfocusin`,onFocusOut:`onfocusout`,onHashChange:`onhashchange`,onInput:`oninput`,onInvalid:`oninvalid`,onKeyDown:`onkeydown`,onKeyPress:`onkeypress`,onKeyUp:`onkeyup`,onLoad:`onload`,onLoadedData:`onloadeddata`,onLoadedMetadata:`onloadedmetadata`,onLoadStart:`onloadstart`,onMessage:`onmessage`,onMouseDown:`onmousedown`,onMouseEnter:`onmouseenter`,onMouseLeave:`onmouseleave`,onMouseMove:`onmousemove`,onMouseOut:`onmouseout`,onMouseOver:`onmouseover`,onMouseUp:`onmouseup`,onMouseWheel:`onmousewheel`,onOffline:`onoffline`,onOnline:`ononline`,onPageHide:`onpagehide`,onPageShow:`onpageshow`,onPaste:`onpaste`,onPause:`onpause`,onPlay:`onplay`,onPlaying:`onplaying`,onPopState:`onpopstate`,onProgress:`onprogress`,onRateChange:`onratechange`,onRepeat:`onrepeat`,onReset:`onreset`,onResize:`onresize`,onScroll:`onscroll`,onSeeked:`onseeked`,onSeeking:`onseeking`,onSelect:`onselect`,onShow:`onshow`,onStalled:`onstalled`,onStorage:`onstorage`,onSubmit:`onsubmit`,onSuspend:`onsuspend`,onTimeUpdate:`ontimeupdate`,onToggle:`ontoggle`,onUnload:`onunload`,onVolumeChange:`onvolumechange`,onWaiting:`onwaiting`,onZoom:`onzoom`,overlinePosition:`overline-position`,overlineThickness:`overline-thickness`,paintOrder:`paint-order`,panose1:`panose-1`,pointerEvents:`pointer-events`,referrerPolicy:`referrerpolicy`,renderingIntent:`rendering-intent`,shapeRendering:`shape-rendering`,stopColor:`stop-color`,stopOpacity:`stop-opacity`,strikethroughPosition:`strikethrough-position`,strikethroughThickness:`strikethrough-thickness`,strokeDashArray:`stroke-dasharray`,strokeDashOffset:`stroke-dashoffset`,strokeLineCap:`stroke-linecap`,strokeLineJoin:`stroke-linejoin`,strokeMiterLimit:`stroke-miterlimit`,strokeOpacity:`stroke-opacity`,strokeWidth:`stroke-width`,tabIndex:`tabindex`,textAnchor:`text-anchor`,textDecoration:`text-decoration`,textRendering:`text-rendering`,transformOrigin:`transform-origin`,typeOf:`typeof`,underlinePosition:`underline-position`,underlineThickness:`underline-thickness`,unicodeBidi:`unicode-bidi`,unicodeRange:`unicode-range`,unitsPerEm:`units-per-em`,vAlphabetic:`v-alphabetic`,vHanging:`v-hanging`,vIdeographic:`v-ideographic`,vMathematical:`v-mathematical`,vectorEffect:`vector-effect`,vertAdvY:`vert-adv-y`,vertOriginX:`vert-origin-x`,vertOriginY:`vert-origin-y`,wordSpacing:`word-spacing`,writingMode:`writing-mode`,xHeight:`x-height`,playbackOrder:`playbackorder`,timelineBegin:`timelinebegin`},properties:{about:Fc,accentHeight:J,accumulate:null,additive:null,alignmentBaseline:null,alphabetic:J,amplitude:J,arabicForm:null,ascent:J,attributeName:null,attributeType:null,azimuth:J,bandwidth:null,baselineShift:null,baseFrequency:null,baseProfile:null,bbox:null,begin:null,bias:J,by:null,calcMode:null,capHeight:J,className:Y,clip:null,clipPath:null,clipPathUnits:null,clipRule:null,color:null,colorInterpolation:null,colorInterpolationFilters:null,colorProfile:null,colorRendering:null,content:null,contentScriptType:null,contentStyleType:null,crossOrigin:null,cursor:null,cx:null,cy:null,d:null,dataType:null,defaultAction:null,descent:J,diffuseConstant:J,direction:null,display:null,dur:null,divisor:J,dominantBaseline:null,download:K,dx:null,dy:null,edgeMode:null,editable:null,elevation:J,enableBackground:null,end:null,event:null,exponent:J,externalResourcesRequired:null,fill:null,fillOpacity:J,fillRule:null,filter:null,filterRes:null,filterUnits:null,floodColor:null,floodOpacity:null,focusable:null,focusHighlight:null,fontFamily:null,fontSize:null,fontSizeAdjust:null,fontStretch:null,fontStyle:null,fontVariant:null,fontWeight:null,format:null,fr:null,from:null,fx:null,fy:null,g1:Pc,g2:Pc,glyphName:Pc,glyphOrientationHorizontal:null,glyphOrientationVertical:null,glyphRef:null,gradientTransform:null,gradientUnits:null,handler:null,hanging:J,hatchContentUnits:null,hatchUnits:null,height:null,href:null,hrefLang:null,horizAdvX:J,horizOriginX:J,horizOriginY:J,id:null,ideographic:J,imageRendering:null,initialVisibility:null,in:null,in2:null,intercept:J,k:J,k1:J,k2:J,k3:J,k4:J,kernelMatrix:Fc,kernelUnitLength:null,keyPoints:null,keySplines:null,keyTimes:null,kerning:null,lang:null,lengthAdjust:null,letterSpacing:null,lightingColor:null,limitingConeAngle:J,local:null,markerEnd:null,markerMid:null,markerStart:null,markerHeight:null,markerUnits:null,markerWidth:null,mask:null,maskContentUnits:null,maskUnits:null,mathematical:null,max:null,media:null,mediaCharacterEncoding:null,mediaContentEncodings:null,mediaSize:J,mediaTime:null,method:null,min:null,mode:null,name:null,navDown:null,navDownLeft:null,navDownRight:null,navLeft:null,navNext:null,navPrev:null,navRight:null,navUp:null,navUpLeft:null,navUpRight:null,numOctaves:null,observer:null,offset:null,onAbort:null,onActivate:null,onAfterPrint:null,onBeforePrint:null,onBegin:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnd:null,onEnded:null,onError:null,onFocus:null,onFocusIn:null,onFocusOut:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadStart:null,onMessage:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onMouseWheel:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRepeat:null,onReset:null,onResize:null,onScroll:null,onSeeked:null,onSeeking:null,onSelect:null,onShow:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnload:null,onVolumeChange:null,onWaiting:null,onZoom:null,opacity:null,operator:null,order:null,orient:null,orientation:null,origin:null,overflow:null,overlay:null,overlinePosition:J,overlineThickness:J,paintOrder:null,panose1:null,path:null,pathLength:J,patternContentUnits:null,patternTransform:null,patternUnits:null,phase:null,ping:Y,pitch:null,playbackOrder:null,pointerEvents:null,points:null,pointsAtX:J,pointsAtY:J,pointsAtZ:J,preserveAlpha:null,preserveAspectRatio:null,primitiveUnits:null,propagate:null,property:Fc,r:null,radius:null,referrerPolicy:null,refX:null,refY:null,rel:Fc,rev:Fc,renderingIntent:null,repeatCount:null,repeatDur:null,requiredExtensions:Fc,requiredFeatures:Fc,requiredFonts:Fc,requiredFormats:Fc,resource:null,restart:null,result:null,rotate:null,rx:null,ry:null,scale:null,seed:null,shapeRendering:null,side:null,slope:null,snapshotTime:null,specularConstant:J,specularExponent:J,spreadMethod:null,spacing:null,startOffset:null,stdDeviation:null,stemh:null,stemv:null,stitchTiles:null,stopColor:null,stopOpacity:null,strikethroughPosition:J,strikethroughThickness:J,string:null,stroke:null,strokeDashArray:Fc,strokeDashOffset:null,strokeLineCap:null,strokeLineJoin:null,strokeMiterLimit:J,strokeOpacity:J,strokeWidth:null,style:null,surfaceScale:J,syncBehavior:null,syncBehaviorDefault:null,syncMaster:null,syncTolerance:null,syncToleranceDefault:null,systemLanguage:Fc,tabIndex:J,tableValues:null,target:null,targetX:J,targetY:J,textAnchor:null,textDecoration:null,textRendering:null,textLength:null,timelineBegin:null,title:null,transformBehavior:null,type:null,typeOf:Fc,to:null,transform:null,transformOrigin:null,u1:null,u2:null,underlinePosition:J,underlineThickness:J,unicode:null,unicodeBidi:null,unicodeRange:null,unitsPerEm:J,values:null,vAlphabetic:J,vMathematical:J,vectorEffect:null,vHanging:J,vIdeographic:J,version:null,vertAdvY:J,vertOriginX:J,vertOriginY:J,viewBox:null,viewTarget:null,visibility:null,width:null,widths:null,wordSpacing:null,writingMode:null,x:null,x1:null,x2:null,xChannelSelector:null,xHeight:J,y:null,y1:null,y2:null,yChannelSelector:null,z:null,zoomAndPan:null},space:`svg`,transform:Hc}),Kc=Bc({properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null},space:`xlink`,transform(e,t){return`xlink:`+t.slice(5).toLowerCase()}}),qc=Bc({attributes:{xmlnsxlink:`xmlns:xlink`},properties:{xmlnsXLink:null,xmlns:null},space:`xmlns`,transform:Uc}),Jc=Bc({properties:{xmlBase:null,xmlLang:null,xmlSpace:null},space:`xml`,transform(e,t){return`xml:`+t.slice(3).toLowerCase()}}),Yc={classId:`classID`,dataType:`datatype`,itemId:`itemID`,strokeDashArray:`strokeDasharray`,strokeDashOffset:`strokeDashoffset`,strokeLineCap:`strokeLinecap`,strokeLineJoin:`strokeLinejoin`,strokeMiterLimit:`strokeMiterlimit`,typeOf:`typeof`,xLinkActuate:`xlinkActuate`,xLinkArcRole:`xlinkArcrole`,xLinkHref:`xlinkHref`,xLinkRole:`xlinkRole`,xLinkShow:`xlinkShow`,xLinkTitle:`xlinkTitle`,xLinkType:`xlinkType`,xmlnsXLink:`xmlnsXlink`},Xc=/[A-Z]/g,Zc=/-[a-z]/g,Qc=/^data[-\w.:]+$/i;function $c(e,t){let n=kc(t),r=t,i=Ac;if(n in e.normal)return e.property[e.normal[n]];if(n.length>4&&n.slice(0,4)===`data`&&Qc.test(t)){if(t.charAt(4)===`-`){let e=t.slice(5).replace(Zc,tl);r=`data`+e.charAt(0).toUpperCase()+e.slice(1)}else{let e=t.slice(4);if(!Zc.test(e)){let n=e.replace(Xc,el);n.charAt(0)!==`-`&&(n=`-`+n),t=`data`+n}}i=Rc}return new i(r,t)}function el(e){return`-`+e.toLowerCase()}function tl(e){return e.charAt(1).toUpperCase()}var nl=Oc([Vc,Wc,Kc,qc,Jc],`html`),rl=Oc([Vc,Gc,Kc,qc,Jc],`svg`);function il(e){return e.join(` `).trim()}var al=n(((e,t)=>{var n=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,r=/\n/g,i=/^\s*/,a=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,o=/^:\s*/,s=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,c=/^[;\s]*/,l=/^\s+|\s+$/g,u=`
|
|
46
|
-
`,d=`/`,f=`*`,p=``,m=`comment`,h=`declaration`;function g(e,t){if(typeof e!=`string`)throw TypeError(`First argument must be a string`);if(!e)return[];t||={};var l=1,g=1;function v(e){var t=e.match(r);t&&(l+=t.length);var n=e.lastIndexOf(u);g=~n?e.length-n:g+e.length}function y(){var e={line:l,column:g};return function(t){return t.position=new b(e),C(),t}}function b(e){this.start=e,this.end={line:l,column:g},this.source=t.source}b.prototype.content=e;function x(n){var r=Error(t.source+`:`+l+`:`+g+`: `+n);if(r.reason=n,r.filename=t.source,r.line=l,r.column=g,r.source=e,!t.silent)throw r}function S(t){var n=t.exec(e);if(n){var r=n[0];return v(r),e=e.slice(r.length),n}}function C(){S(i)}function w(e){var t;for(e||=[];t=T();)t!==!1&&e.push(t);return e}function T(){var t=y();if(!(d!=e.charAt(0)||f!=e.charAt(1))){for(var n=2;p!=e.charAt(n)&&(f!=e.charAt(n)||d!=e.charAt(n+1));)++n;if(n+=2,p===e.charAt(n-1))return x(`End of comment missing`);var r=e.slice(2,n-2);return g+=2,v(r),e=e.slice(n),g+=2,t({type:m,comment:r})}}function E(){var e=y(),t=S(a);if(t){if(T(),!S(o))return x(`property missing ':'`);var r=S(s),i=e({type:h,property:_(t[0].replace(n,p)),value:r?_(r[0].replace(n,p)):p});return S(c),i}}function ee(){var e=[];w(e);for(var t;t=E();)t!==!1&&(e.push(t),w(e));return e}return C(),ee()}function _(e){return e?e.replace(l,p):p}t.exports=g})),ol=n((e=>{var t=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,`__esModule`,{value:!0}),e.default=r;var n=t(al());function r(e,t){let r=null;if(!e||typeof e!=`string`)return r;let i=(0,n.default)(e),a=typeof t==`function`;return i.forEach(e=>{if(e.type!==`declaration`)return;let{property:n,value:i}=e;a?t(n,i,e):i&&(r||={},r[n]=i)}),r}})),sl=n((e=>{Object.defineProperty(e,`__esModule`,{value:!0}),e.camelCase=void 0;var t=/^--[a-zA-Z0-9_-]+$/,n=/-([a-z])/g,r=/^[^-]+$/,i=/^-(webkit|moz|ms|o|khtml)-/,a=/^-(ms)-/,o=function(e){return!e||r.test(e)||t.test(e)},s=function(e,t){return t.toUpperCase()},c=function(e,t){return`${t}-`};e.camelCase=function(e,t){return t===void 0&&(t={}),o(e)?e:(e=e.toLowerCase(),e=t.reactCompat?e.replace(a,c):e.replace(i,c),e.replace(n,s))}})),cl=n(((e,t)=>{var n=(e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}})(ol()),r=sl();function i(e,t){var i={};return!e||typeof e!=`string`||(0,n.default)(e,function(e,n){e&&n&&(i[(0,r.camelCase)(e,t)]=n)}),i}i.default=i,t.exports=i})),ll=dl(`end`),ul=dl(`start`);function dl(e){return t;function t(t){let n=t&&t.position&&t.position[e]||{};if(typeof n.line==`number`&&n.line>0&&typeof n.column==`number`&&n.column>0)return{line:n.line,column:n.column,offset:typeof n.offset==`number`&&n.offset>-1?n.offset:void 0}}}function fl(e){let t=ul(e),n=ll(e);if(t&&n)return{start:t,end:n}}function pl(e){return!e||typeof e!=`object`?``:`position`in e||`type`in e?hl(e.position):`start`in e||`end`in e?hl(e):`line`in e||`column`in e?ml(e):``}function ml(e){return gl(e&&e.line)+`:`+gl(e&&e.column)}function hl(e){return ml(e&&e.start)+`-`+ml(e&&e.end)}function gl(e){return e&&typeof e==`number`?e:1}var X=class extends Error{constructor(e,t,n){super(),typeof t==`string`&&(n=t,t=void 0);let r=``,i={},a=!1;if(t&&(i=`line`in t&&`column`in t||`start`in t&&`end`in t?{place:t}:`type`in t?{ancestors:[t],place:t.position}:{...t}),typeof e==`string`?r=e:!i.cause&&e&&(a=!0,r=e.message,i.cause=e),!i.ruleId&&!i.source&&typeof n==`string`){let e=n.indexOf(`:`);e===-1?i.ruleId=n:(i.source=n.slice(0,e),i.ruleId=n.slice(e+1))}if(!i.place&&i.ancestors&&i.ancestors){let e=i.ancestors[i.ancestors.length-1];e&&(i.place=e.position)}let o=i.place&&`start`in i.place?i.place.start:i.place;this.ancestors=i.ancestors||void 0,this.cause=i.cause||void 0,this.column=o?o.column:void 0,this.fatal=void 0,this.file=``,this.message=r,this.line=o?o.line:void 0,this.name=pl(i.place)||`1:1`,this.place=i.place||void 0,this.reason=this.message,this.ruleId=i.ruleId||void 0,this.source=i.source||void 0,this.stack=a&&i.cause&&typeof i.cause.stack==`string`?i.cause.stack:``,this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}};X.prototype.file=``,X.prototype.name=``,X.prototype.reason=``,X.prototype.message=``,X.prototype.stack=``,X.prototype.column=void 0,X.prototype.line=void 0,X.prototype.ancestors=void 0,X.prototype.cause=void 0,X.prototype.fatal=void 0,X.prototype.place=void 0,X.prototype.ruleId=void 0,X.prototype.source=void 0;var _l=t(cl(),1),vl={}.hasOwnProperty,yl=new Map,bl=/[A-Z]/g,xl=new Set([`table`,`tbody`,`thead`,`tfoot`,`tr`]),Sl=new Set([`td`,`th`]),Cl=`https://github.com/syntax-tree/hast-util-to-jsx-runtime`;function wl(e,t){if(!t||t.Fragment===void 0)throw TypeError("Expected `Fragment` in options");let n=t.filePath||void 0,r;if(t.development){if(typeof t.jsxDEV!=`function`)throw TypeError("Expected `jsxDEV` in options when `development: true`");r=Fl(n,t.jsxDEV)}else{if(typeof t.jsx!=`function`)throw TypeError("Expected `jsx` in production options");if(typeof t.jsxs!=`function`)throw TypeError("Expected `jsxs` in production options");r=Pl(n,t.jsx,t.jsxs)}let i={Fragment:t.Fragment,ancestors:[],components:t.components||{},create:r,elementAttributeNameCase:t.elementAttributeNameCase||`react`,evaluater:t.createEvaluater?t.createEvaluater():void 0,filePath:n,ignoreInvalidStyle:t.ignoreInvalidStyle||!1,passKeys:t.passKeys!==!1,passNode:t.passNode||!1,schema:t.space===`svg`?rl:nl,stylePropertyNameCase:t.stylePropertyNameCase||`dom`,tableCellAlignToStyle:t.tableCellAlignToStyle!==!1},a=Tl(i,e,void 0);return a&&typeof a!=`string`?a:i.create(e,i.Fragment,{children:a||void 0},void 0)}function Tl(e,t,n){if(t.type===`element`)return El(e,t,n);if(t.type===`mdxFlowExpression`||t.type===`mdxTextExpression`)return Dl(e,t);if(t.type===`mdxJsxFlowElement`||t.type===`mdxJsxTextElement`)return kl(e,t,n);if(t.type===`mdxjsEsm`)return Ol(e,t);if(t.type===`root`)return Al(e,t,n);if(t.type===`text`)return jl(e,t)}function El(e,t,n){let r=e.schema,i=r;t.tagName.toLowerCase()===`svg`&&r.space===`html`&&(i=rl,e.schema=i),e.ancestors.push(t);let a=Vl(e,t.tagName,!1),o=Il(e,t),s=Rl(e,t);return xl.has(t.tagName)&&(s=s.filter(function(e){return typeof e==`string`?!Tc(e):!0})),Ml(e,o,a,t),Nl(o,s),e.ancestors.pop(),e.schema=r,e.create(t,a,o,n)}function Dl(e,t){if(t.data&&t.data.estree&&e.evaluater){let n=t.data.estree.body[0];return n.type,e.evaluater.evaluateExpression(n.expression)}Hl(e,t.position)}function Ol(e,t){if(t.data&&t.data.estree&&e.evaluater)return e.evaluater.evaluateProgram(t.data.estree);Hl(e,t.position)}function kl(e,t,n){let r=e.schema,i=r;t.name===`svg`&&r.space===`html`&&(i=rl,e.schema=i),e.ancestors.push(t);let a=t.name===null?e.Fragment:Vl(e,t.name,!0),o=Ll(e,t),s=Rl(e,t);return Ml(e,o,a,t),Nl(o,s),e.ancestors.pop(),e.schema=r,e.create(t,a,o,n)}function Al(e,t,n){let r={};return Nl(r,Rl(e,t)),e.create(t,e.Fragment,r,n)}function jl(e,t){return t.value}function Ml(e,t,n,r){typeof n!=`string`&&n!==e.Fragment&&e.passNode&&(t.node=r)}function Nl(e,t){if(t.length>0){let n=t.length>1?t:t[0];n&&(e.children=n)}}function Pl(e,t,n){return r;function r(e,r,i,a){let o=Array.isArray(i.children)?n:t;return a?o(r,i,a):o(r,i)}}function Fl(e,t){return n;function n(n,r,i,a){let o=Array.isArray(i.children),s=ul(n);return t(r,i,a,o,{columnNumber:s?s.column-1:void 0,fileName:e,lineNumber:s?s.line:void 0},void 0)}}function Il(e,t){let n={},r,i;for(i in t.properties)if(i!==`children`&&vl.call(t.properties,i)){let a=zl(e,i,t.properties[i]);if(a){let[i,o]=a;e.tableCellAlignToStyle&&i===`align`&&typeof o==`string`&&Sl.has(t.tagName)?r=o:n[i]=o}}if(r){let t=n.style||={};t[e.stylePropertyNameCase===`css`?`text-align`:`textAlign`]=r}return n}function Ll(e,t){let n={};for(let r of t.attributes)if(r.type===`mdxJsxExpressionAttribute`)if(r.data&&r.data.estree&&e.evaluater){let t=r.data.estree.body[0];t.type;let i=t.expression;i.type;let a=i.properties[0];a.type,Object.assign(n,e.evaluater.evaluateExpression(a.argument))}else Hl(e,t.position);else{let i=r.name,a;if(r.value&&typeof r.value==`object`)if(r.value.data&&r.value.data.estree&&e.evaluater){let t=r.value.data.estree.body[0];t.type,a=e.evaluater.evaluateExpression(t.expression)}else Hl(e,t.position);else a=r.value===null?!0:r.value;n[i]=a}return n}function Rl(e,t){let n=[],r=-1,i=e.passKeys?new Map:yl;for(;++r<t.children.length;){let a=t.children[r],o;if(e.passKeys){let e=a.type===`element`?a.tagName:a.type===`mdxJsxFlowElement`||a.type===`mdxJsxTextElement`?a.name:void 0;if(e){let t=i.get(e)||0;o=e+`-`+t,i.set(e,t+1)}}let s=Tl(e,a,o);s!==void 0&&n.push(s)}return n}function zl(e,t,n){let r=$c(e.schema,t);if(!(n==null||typeof n==`number`&&Number.isNaN(n))){if(Array.isArray(n)&&(n=r.commaSeparated?yc(n):il(n)),r.property===`style`){let t=typeof n==`object`?n:Bl(e,String(n));return e.stylePropertyNameCase===`css`&&(t=Ul(t)),[`style`,t]}return[e.elementAttributeNameCase===`react`&&r.space?Yc[r.property]||r.property:r.attribute,n]}}function Bl(e,t){try{return(0,_l.default)(t,{reactCompat:!0})}catch(t){if(e.ignoreInvalidStyle)return{};let n=t,r=new X("Cannot parse `style` attribute",{ancestors:e.ancestors,cause:n,ruleId:`style`,source:`hast-util-to-jsx-runtime`});throw r.file=e.filePath||void 0,r.url=Cl+`#cannot-parse-style-attribute`,r}}function Vl(e,t,n){let r;if(!n)r={type:`Literal`,value:t};else if(t.includes(`.`)){let e=t.split(`.`),n=-1,i;for(;++n<e.length;){let t=Cc(e[n])?{type:`Identifier`,name:e[n]}:{type:`Literal`,value:e[n]};i=i?{type:`MemberExpression`,object:i,property:t,computed:!!(n&&t.type===`Literal`),optional:!1}:t}r=i}else r=Cc(t)&&!/^[a-z]/.test(t)?{type:`Identifier`,name:t}:{type:`Literal`,value:t};if(r.type===`Literal`){let t=r.value;return vl.call(e.components,t)?e.components[t]:t}if(e.evaluater)return e.evaluater.evaluateExpression(r);Hl(e)}function Hl(e,t){let n=new X("Cannot handle MDX estrees without `createEvaluater`",{ancestors:e.ancestors,place:t,ruleId:`mdx-estree`,source:`hast-util-to-jsx-runtime`});throw n.file=e.filePath||void 0,n.url=Cl+`#cannot-handle-mdx-estrees-without-createevaluater`,n}function Ul(e){let t={},n;for(n in e)vl.call(e,n)&&(t[Wl(n)]=e[n]);return t}function Wl(e){let t=e.replace(bl,Gl);return t.slice(0,3)===`ms-`&&(t=`-`+t),t}function Gl(e){return`-`+e.toLowerCase()}var Kl={action:[`form`],cite:[`blockquote`,`del`,`ins`,`q`],data:[`object`],formAction:[`button`,`input`],href:[`a`,`area`,`base`,`link`],icon:[`menuitem`],itemId:null,manifest:[`html`],ping:[`a`,`area`],poster:[`video`],src:[`audio`,`embed`,`iframe`,`img`,`input`,`script`,`source`,`track`,`video`]},ql={};function Jl(e,t){let n=t||ql;return Yl(e,typeof n.includeImageAlt==`boolean`?n.includeImageAlt:!0,typeof n.includeHtml==`boolean`?n.includeHtml:!0)}function Yl(e,t,n){if(Zl(e)){if(`value`in e)return e.type===`html`&&!n?``:e.value;if(t&&`alt`in e&&e.alt)return e.alt;if(`children`in e)return Xl(e.children,t,n)}return Array.isArray(e)?Xl(e,t,n):``}function Xl(e,t,n){let r=[],i=-1;for(;++i<e.length;)r[i]=Yl(e[i],t,n);return r.join(``)}function Zl(e){return!!(e&&typeof e==`object`)}var Ql=document.createElement(`i`);function $l(e){let t=`&`+e+`;`;Ql.innerHTML=t;let n=Ql.textContent;return n.charCodeAt(n.length-1)===59&&e!==`semi`||n===t?!1:n}function eu(e,t,n,r){let i=e.length,a=0,o;if(t=t<0?-t>i?0:i+t:t>i?i:t,n=n>0?n:0,r.length<1e4)o=Array.from(r),o.unshift(t,n),e.splice(...o);else for(n&&e.splice(t,n);a<r.length;)o=r.slice(a,a+1e4),o.unshift(t,0),e.splice(...o),a+=1e4,t+=1e4}function tu(e,t){return e.length>0?(eu(e,e.length,0,t),e):t}var nu={}.hasOwnProperty;function ru(e){let t={},n=-1;for(;++n<e.length;)iu(t,e[n]);return t}function iu(e,t){let n;for(n in t){let r=(nu.call(e,n)?e[n]:void 0)||(e[n]={}),i=t[n],a;if(i)for(a in i){nu.call(r,a)||(r[a]=[]);let e=i[a];au(r[a],Array.isArray(e)?e:e?[e]:[])}}}function au(e,t){let n=-1,r=[];for(;++n<t.length;)(t[n].add===`after`?e:r).push(t[n]);eu(e,0,0,r)}function ou(e,t){let n=Number.parseInt(e,t);return n<9||n===11||n>13&&n<32||n>126&&n<160||n>55295&&n<57344||n>64975&&n<65008||(n&65535)==65535||(n&65535)==65534||n>1114111?`�`:String.fromCodePoint(n)}function su(e){return e.replace(/[\t\n\r ]+/g,` `).replace(/^ | $/g,``).toLowerCase().toUpperCase()}var cu=vu(/[A-Za-z]/),lu=vu(/[\dA-Za-z]/),uu=vu(/[#-'*+\--9=?A-Z^-~]/);function du(e){return e!==null&&(e<32||e===127)}var fu=vu(/\d/),pu=vu(/[\dA-Fa-f]/),mu=vu(/[!-/:-@[-`{-~]/);function Z(e){return e!==null&&e<-2}function hu(e){return e!==null&&(e<0||e===32)}function Q(e){return e===-2||e===-1||e===32}var gu=vu(/\p{P}|\p{S}/u),_u=vu(/\s/);function vu(e){return t;function t(t){return t!==null&&t>-1&&e.test(String.fromCharCode(t))}}function yu(e){let t=[],n=-1,r=0,i=0;for(;++n<e.length;){let a=e.charCodeAt(n),o=``;if(a===37&&lu(e.charCodeAt(n+1))&&lu(e.charCodeAt(n+2)))i=2;else if(a<128)/[!#$&-;=?-Z_a-z~]/.test(String.fromCharCode(a))||(o=String.fromCharCode(a));else if(a>55295&&a<57344){let t=e.charCodeAt(n+1);a<56320&&t>56319&&t<57344?(o=String.fromCharCode(a,t),i=1):o=`�`}else o=String.fromCharCode(a);o&&=(t.push(e.slice(r,n),encodeURIComponent(o)),r=n+i+1,``),i&&=(n+=i,0)}return t.join(``)+e.slice(r)}function $(e,t,n,r){let i=r?r-1:1/0,a=0;return o;function o(r){return Q(r)?(e.enter(n),s(r)):t(r)}function s(r){return Q(r)&&a++<i?(e.consume(r),s):(e.exit(n),t(r))}}var bu={tokenize:xu};function xu(e){let t=e.attempt(this.parser.constructs.contentInitial,r,i),n;return t;function r(n){if(n===null){e.consume(n);return}return e.enter(`lineEnding`),e.consume(n),e.exit(`lineEnding`),$(e,t,`linePrefix`)}function i(t){return e.enter(`paragraph`),a(t)}function a(t){let r=e.enter(`chunkText`,{contentType:`text`,previous:n});return n&&(n.next=r),n=r,o(t)}function o(t){if(t===null){e.exit(`chunkText`),e.exit(`paragraph`),e.consume(t);return}return Z(t)?(e.consume(t),e.exit(`chunkText`),a):(e.consume(t),o)}}var Su={tokenize:wu},Cu={tokenize:Tu};function wu(e){let t=this,n=[],r=0,i,a,o;return s;function s(i){if(r<n.length){let a=n[r];return t.containerState=a[1],e.attempt(a[0].continuation,c,l)(i)}return l(i)}function c(e){if(r++,t.containerState._closeFlow){t.containerState._closeFlow=void 0,i&&v();let n=t.events.length,a=n,o;for(;a--;)if(t.events[a][0]===`exit`&&t.events[a][1].type===`chunkFlow`){o=t.events[a][1].end;break}_(r);let s=n;for(;s<t.events.length;)t.events[s][1].end={...o},s++;return eu(t.events,a+1,0,t.events.slice(n)),t.events.length=s,l(e)}return s(e)}function l(a){if(r===n.length){if(!i)return f(a);if(i.currentConstruct&&i.currentConstruct.concrete)return m(a);t.interrupt=!!(i.currentConstruct&&!i._gfmTableDynamicInterruptHack)}return t.containerState={},e.check(Cu,u,d)(a)}function u(e){return i&&v(),_(r),f(e)}function d(e){return t.parser.lazy[t.now().line]=r!==n.length,o=t.now().offset,m(e)}function f(n){return t.containerState={},e.attempt(Cu,p,m)(n)}function p(e){return r++,n.push([t.currentConstruct,t.containerState]),f(e)}function m(n){if(n===null){i&&v(),_(0),e.consume(n);return}return i||=t.parser.flow(t.now()),e.enter(`chunkFlow`,{_tokenizer:i,contentType:`flow`,previous:a}),h(n)}function h(n){if(n===null){g(e.exit(`chunkFlow`),!0),_(0),e.consume(n);return}return Z(n)?(e.consume(n),g(e.exit(`chunkFlow`)),r=0,t.interrupt=void 0,s):(e.consume(n),h)}function g(e,n){let s=t.sliceStream(e);if(n&&s.push(null),e.previous=a,a&&(a.next=e),a=e,i.defineSkip(e.start),i.write(s),t.parser.lazy[e.start.line]){let e=i.events.length;for(;e--;)if(i.events[e][1].start.offset<o&&(!i.events[e][1].end||i.events[e][1].end.offset>o))return;let n=t.events.length,a=n,s,c;for(;a--;)if(t.events[a][0]===`exit`&&t.events[a][1].type===`chunkFlow`){if(s){c=t.events[a][1].end;break}s=!0}for(_(r),e=n;e<t.events.length;)t.events[e][1].end={...c},e++;eu(t.events,a+1,0,t.events.slice(n)),t.events.length=e}}function _(r){let i=n.length;for(;i-- >r;){let r=n[i];t.containerState=r[1],r[0].exit.call(t,e)}n.length=r}function v(){i.write([null]),a=void 0,i=void 0,t.containerState._closeFlow=void 0}}function Tu(e,t,n){return $(e,e.attempt(this.parser.constructs.document,t,n),`linePrefix`,this.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)}function Eu(e){if(e===null||hu(e)||_u(e))return 1;if(gu(e))return 2}function Du(e,t,n){let r=[],i=-1;for(;++i<e.length;){let a=e[i].resolveAll;a&&!r.includes(a)&&(t=a(t,n),r.push(a))}return t}var Ou={name:`attention`,resolveAll:ku,tokenize:Au};function ku(e,t){let n=-1,r,i,a,o,s,c,l,u;for(;++n<e.length;)if(e[n][0]===`enter`&&e[n][1].type===`attentionSequence`&&e[n][1]._close){for(r=n;r--;)if(e[r][0]===`exit`&&e[r][1].type===`attentionSequence`&&e[r][1]._open&&t.sliceSerialize(e[r][1]).charCodeAt(0)===t.sliceSerialize(e[n][1]).charCodeAt(0)){if((e[r][1]._close||e[n][1]._open)&&(e[n][1].end.offset-e[n][1].start.offset)%3&&!((e[r][1].end.offset-e[r][1].start.offset+e[n][1].end.offset-e[n][1].start.offset)%3))continue;c=e[r][1].end.offset-e[r][1].start.offset>1&&e[n][1].end.offset-e[n][1].start.offset>1?2:1;let d={...e[r][1].end},f={...e[n][1].start};ju(d,-c),ju(f,c),o={type:c>1?`strongSequence`:`emphasisSequence`,start:d,end:{...e[r][1].end}},s={type:c>1?`strongSequence`:`emphasisSequence`,start:{...e[n][1].start},end:f},a={type:c>1?`strongText`:`emphasisText`,start:{...e[r][1].end},end:{...e[n][1].start}},i={type:c>1?`strong`:`emphasis`,start:{...o.start},end:{...s.end}},e[r][1].end={...o.start},e[n][1].start={...s.end},l=[],e[r][1].end.offset-e[r][1].start.offset&&(l=tu(l,[[`enter`,e[r][1],t],[`exit`,e[r][1],t]])),l=tu(l,[[`enter`,i,t],[`enter`,o,t],[`exit`,o,t],[`enter`,a,t]]),l=tu(l,Du(t.parser.constructs.insideSpan.null,e.slice(r+1,n),t)),l=tu(l,[[`exit`,a,t],[`enter`,s,t],[`exit`,s,t],[`exit`,i,t]]),e[n][1].end.offset-e[n][1].start.offset?(u=2,l=tu(l,[[`enter`,e[n][1],t],[`exit`,e[n][1],t]])):u=0,eu(e,r-1,n-r+3,l),n=r+l.length-u-2;break}}for(n=-1;++n<e.length;)e[n][1].type===`attentionSequence`&&(e[n][1].type=`data`);return e}function Au(e,t){let n=this.parser.constructs.attentionMarkers.null,r=this.previous,i=Eu(r),a;return o;function o(t){return a=t,e.enter(`attentionSequence`),s(t)}function s(o){if(o===a)return e.consume(o),s;let c=e.exit(`attentionSequence`),l=Eu(o),u=!l||l===2&&i||n.includes(o),d=!i||i===2&&l||n.includes(r);return c._open=!!(a===42?u:u&&(i||!d)),c._close=!!(a===42?d:d&&(l||!u)),t(o)}}function ju(e,t){e.column+=t,e.offset+=t,e._bufferIndex+=t}var Mu={name:`autolink`,tokenize:Nu};function Nu(e,t,n){let r=0;return i;function i(t){return e.enter(`autolink`),e.enter(`autolinkMarker`),e.consume(t),e.exit(`autolinkMarker`),e.enter(`autolinkProtocol`),a}function a(t){return cu(t)?(e.consume(t),o):t===64?n(t):l(t)}function o(e){return e===43||e===45||e===46||lu(e)?(r=1,s(e)):l(e)}function s(t){return t===58?(e.consume(t),r=0,c):(t===43||t===45||t===46||lu(t))&&r++<32?(e.consume(t),s):(r=0,l(t))}function c(r){return r===62?(e.exit(`autolinkProtocol`),e.enter(`autolinkMarker`),e.consume(r),e.exit(`autolinkMarker`),e.exit(`autolink`),t):r===null||r===32||r===60||du(r)?n(r):(e.consume(r),c)}function l(t){return t===64?(e.consume(t),u):uu(t)?(e.consume(t),l):n(t)}function u(e){return lu(e)?d(e):n(e)}function d(n){return n===46?(e.consume(n),r=0,u):n===62?(e.exit(`autolinkProtocol`).type=`autolinkEmail`,e.enter(`autolinkMarker`),e.consume(n),e.exit(`autolinkMarker`),e.exit(`autolink`),t):f(n)}function f(t){if((t===45||lu(t))&&r++<63){let n=t===45?f:d;return e.consume(t),n}return n(t)}}var Pu={partial:!0,tokenize:Fu};function Fu(e,t,n){return r;function r(t){return Q(t)?$(e,i,`linePrefix`)(t):i(t)}function i(e){return e===null||Z(e)?t(e):n(e)}}var Iu={continuation:{tokenize:Ru},exit:zu,name:`blockQuote`,tokenize:Lu};function Lu(e,t,n){let r=this;return i;function i(t){if(t===62){let n=r.containerState;return n.open||=(e.enter(`blockQuote`,{_container:!0}),!0),e.enter(`blockQuotePrefix`),e.enter(`blockQuoteMarker`),e.consume(t),e.exit(`blockQuoteMarker`),a}return n(t)}function a(n){return Q(n)?(e.enter(`blockQuotePrefixWhitespace`),e.consume(n),e.exit(`blockQuotePrefixWhitespace`),e.exit(`blockQuotePrefix`),t):(e.exit(`blockQuotePrefix`),t(n))}}function Ru(e,t,n){let r=this;return i;function i(t){return Q(t)?$(e,a,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):a(t)}function a(r){return e.attempt(Iu,t,n)(r)}}function zu(e){e.exit(`blockQuote`)}var Bu={name:`characterEscape`,tokenize:Vu};function Vu(e,t,n){return r;function r(t){return e.enter(`characterEscape`),e.enter(`escapeMarker`),e.consume(t),e.exit(`escapeMarker`),i}function i(r){return mu(r)?(e.enter(`characterEscapeValue`),e.consume(r),e.exit(`characterEscapeValue`),e.exit(`characterEscape`),t):n(r)}}var Hu={name:`characterReference`,tokenize:Uu};function Uu(e,t,n){let r=this,i=0,a,o;return s;function s(t){return e.enter(`characterReference`),e.enter(`characterReferenceMarker`),e.consume(t),e.exit(`characterReferenceMarker`),c}function c(t){return t===35?(e.enter(`characterReferenceMarkerNumeric`),e.consume(t),e.exit(`characterReferenceMarkerNumeric`),l):(e.enter(`characterReferenceValue`),a=31,o=lu,u(t))}function l(t){return t===88||t===120?(e.enter(`characterReferenceMarkerHexadecimal`),e.consume(t),e.exit(`characterReferenceMarkerHexadecimal`),e.enter(`characterReferenceValue`),a=6,o=pu,u):(e.enter(`characterReferenceValue`),a=7,o=fu,u(t))}function u(s){if(s===59&&i){let i=e.exit(`characterReferenceValue`);return o===lu&&!$l(r.sliceSerialize(i))?n(s):(e.enter(`characterReferenceMarker`),e.consume(s),e.exit(`characterReferenceMarker`),e.exit(`characterReference`),t)}return o(s)&&i++<a?(e.consume(s),u):n(s)}}var Wu={partial:!0,tokenize:qu},Gu={concrete:!0,name:`codeFenced`,tokenize:Ku};function Ku(e,t,n){let r=this,i={partial:!0,tokenize:x},a=0,o=0,s;return c;function c(e){return l(e)}function l(t){let n=r.events[r.events.length-1];return a=n&&n[1].type===`linePrefix`?n[2].sliceSerialize(n[1],!0).length:0,s=t,e.enter(`codeFenced`),e.enter(`codeFencedFence`),e.enter(`codeFencedFenceSequence`),u(t)}function u(t){return t===s?(o++,e.consume(t),u):o<3?n(t):(e.exit(`codeFencedFenceSequence`),Q(t)?$(e,d,`whitespace`)(t):d(t))}function d(n){return n===null||Z(n)?(e.exit(`codeFencedFence`),r.interrupt?t(n):e.check(Wu,h,b)(n)):(e.enter(`codeFencedFenceInfo`),e.enter(`chunkString`,{contentType:`string`}),f(n))}function f(t){return t===null||Z(t)?(e.exit(`chunkString`),e.exit(`codeFencedFenceInfo`),d(t)):Q(t)?(e.exit(`chunkString`),e.exit(`codeFencedFenceInfo`),$(e,p,`whitespace`)(t)):t===96&&t===s?n(t):(e.consume(t),f)}function p(t){return t===null||Z(t)?d(t):(e.enter(`codeFencedFenceMeta`),e.enter(`chunkString`,{contentType:`string`}),m(t))}function m(t){return t===null||Z(t)?(e.exit(`chunkString`),e.exit(`codeFencedFenceMeta`),d(t)):t===96&&t===s?n(t):(e.consume(t),m)}function h(t){return e.attempt(i,b,g)(t)}function g(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),_}function _(t){return a>0&&Q(t)?$(e,v,`linePrefix`,a+1)(t):v(t)}function v(t){return t===null||Z(t)?e.check(Wu,h,b)(t):(e.enter(`codeFlowValue`),y(t))}function y(t){return t===null||Z(t)?(e.exit(`codeFlowValue`),v(t)):(e.consume(t),y)}function b(n){return e.exit(`codeFenced`),t(n)}function x(e,t,n){let i=0;return a;function a(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),c}function c(t){return e.enter(`codeFencedFence`),Q(t)?$(e,l,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):l(t)}function l(t){return t===s?(e.enter(`codeFencedFenceSequence`),u(t)):n(t)}function u(t){return t===s?(i++,e.consume(t),u):i>=o?(e.exit(`codeFencedFenceSequence`),Q(t)?$(e,d,`whitespace`)(t):d(t)):n(t)}function d(r){return r===null||Z(r)?(e.exit(`codeFencedFence`),t(r)):n(r)}}}function qu(e,t,n){let r=this;return i;function i(t){return t===null?n(t):(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),a)}function a(e){return r.parser.lazy[r.now().line]?n(e):t(e)}}var Ju={name:`codeIndented`,tokenize:Xu},Yu={partial:!0,tokenize:Zu};function Xu(e,t,n){let r=this;return i;function i(t){return e.enter(`codeIndented`),$(e,a,`linePrefix`,5)(t)}function a(e){let t=r.events[r.events.length-1];return t&&t[1].type===`linePrefix`&&t[2].sliceSerialize(t[1],!0).length>=4?o(e):n(e)}function o(t){return t===null?c(t):Z(t)?e.attempt(Yu,o,c)(t):(e.enter(`codeFlowValue`),s(t))}function s(t){return t===null||Z(t)?(e.exit(`codeFlowValue`),o(t)):(e.consume(t),s)}function c(n){return e.exit(`codeIndented`),t(n)}}function Zu(e,t,n){let r=this;return i;function i(t){return r.parser.lazy[r.now().line]?n(t):Z(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),i):$(e,a,`linePrefix`,5)(t)}function a(e){let a=r.events[r.events.length-1];return a&&a[1].type===`linePrefix`&&a[2].sliceSerialize(a[1],!0).length>=4?t(e):Z(e)?i(e):n(e)}}var Qu={name:`codeText`,previous:ed,resolve:$u,tokenize:td};function $u(e){let t=e.length-4,n=3,r,i;if((e[n][1].type===`lineEnding`||e[n][1].type===`space`)&&(e[t][1].type===`lineEnding`||e[t][1].type===`space`)){for(r=n;++r<t;)if(e[r][1].type===`codeTextData`){e[n][1].type=`codeTextPadding`,e[t][1].type=`codeTextPadding`,n+=2,t-=2;break}}for(r=n-1,t++;++r<=t;)i===void 0?r!==t&&e[r][1].type!==`lineEnding`&&(i=r):(r===t||e[r][1].type===`lineEnding`)&&(e[i][1].type=`codeTextData`,r!==i+2&&(e[i][1].end=e[r-1][1].end,e.splice(i+2,r-i-2),t-=r-i-2,r=i+2),i=void 0);return e}function ed(e){return e!==96||this.events[this.events.length-1][1].type===`characterEscape`}function td(e,t,n){let r=0,i,a;return o;function o(t){return e.enter(`codeText`),e.enter(`codeTextSequence`),s(t)}function s(t){return t===96?(e.consume(t),r++,s):(e.exit(`codeTextSequence`),c(t))}function c(t){return t===null?n(t):t===32?(e.enter(`space`),e.consume(t),e.exit(`space`),c):t===96?(a=e.enter(`codeTextSequence`),i=0,u(t)):Z(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),c):(e.enter(`codeTextData`),l(t))}function l(t){return t===null||t===32||t===96||Z(t)?(e.exit(`codeTextData`),c(t)):(e.consume(t),l)}function u(n){return n===96?(e.consume(n),i++,u):i===r?(e.exit(`codeTextSequence`),e.exit(`codeText`),t(n)):(a.type=`codeTextData`,l(n))}}var nd=class{constructor(e){this.left=e?[...e]:[],this.right=[]}get(e){if(e<0||e>=this.left.length+this.right.length)throw RangeError("Cannot access index `"+e+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return e<this.left.length?this.left[e]:this.right[this.right.length-e+this.left.length-1]}get length(){return this.left.length+this.right.length}shift(){return this.setCursor(0),this.right.pop()}slice(e,t){let n=t??1/0;return n<this.left.length?this.left.slice(e,n):e>this.left.length?this.right.slice(this.right.length-n+this.left.length,this.right.length-e+this.left.length).reverse():this.left.slice(e).concat(this.right.slice(this.right.length-n+this.left.length).reverse())}splice(e,t,n){let r=t||0;this.setCursor(Math.trunc(e));let i=this.right.splice(this.right.length-r,1/0);return n&&rd(this.left,n),i.reverse()}pop(){return this.setCursor(1/0),this.left.pop()}push(e){this.setCursor(1/0),this.left.push(e)}pushMany(e){this.setCursor(1/0),rd(this.left,e)}unshift(e){this.setCursor(0),this.right.push(e)}unshiftMany(e){this.setCursor(0),rd(this.right,e.reverse())}setCursor(e){if(!(e===this.left.length||e>this.left.length&&this.right.length===0||e<0&&this.left.length===0))if(e<this.left.length){let t=this.left.splice(e,1/0);rd(this.right,t.reverse())}else{let t=this.right.splice(this.left.length+this.right.length-e,1/0);rd(this.left,t.reverse())}}};function rd(e,t){let n=0;if(t.length<1e4)e.push(...t);else for(;n<t.length;)e.push(...t.slice(n,n+1e4)),n+=1e4}function id(e){let t={},n=-1,r,i,a,o,s,c,l,u=new nd(e);for(;++n<u.length;){for(;n in t;)n=t[n];if(r=u.get(n),n&&r[1].type===`chunkFlow`&&u.get(n-1)[1].type===`listItemPrefix`&&(c=r[1]._tokenizer.events,a=0,a<c.length&&c[a][1].type===`lineEndingBlank`&&(a+=2),a<c.length&&c[a][1].type===`content`))for(;++a<c.length&&c[a][1].type!==`content`;)c[a][1].type===`chunkText`&&(c[a][1]._isInFirstContentOfListItem=!0,a++);if(r[0]===`enter`)r[1].contentType&&(Object.assign(t,ad(u,n)),n=t[n],l=!0);else if(r[1]._container){for(a=n,i=void 0;a--;)if(o=u.get(a),o[1].type===`lineEnding`||o[1].type===`lineEndingBlank`)o[0]===`enter`&&(i&&(u.get(i)[1].type=`lineEndingBlank`),o[1].type=`lineEnding`,i=a);else if(!(o[1].type===`linePrefix`||o[1].type===`listItemIndent`))break;i&&(r[1].end={...u.get(i)[1].start},s=u.slice(i,n),s.unshift(r),u.splice(i,n-i+1,s))}}return eu(e,0,1/0,u.slice(0)),!l}function ad(e,t){let n=e.get(t)[1],r=e.get(t)[2],i=t-1,a=[],o=n._tokenizer;o||(o=r.parser[n.contentType](n.start),n._contentTypeTextTrailing&&(o._contentTypeTextTrailing=!0));let s=o.events,c=[],l={},u,d,f=-1,p=n,m=0,h=0,g=[h];for(;p;){for(;e.get(++i)[1]!==p;);a.push(i),p._tokenizer||(u=r.sliceStream(p),p.next||u.push(null),d&&o.defineSkip(p.start),p._isInFirstContentOfListItem&&(o._gfmTasklistFirstContentOfListItem=!0),o.write(u),p._isInFirstContentOfListItem&&(o._gfmTasklistFirstContentOfListItem=void 0)),d=p,p=p.next}for(p=n;++f<s.length;)s[f][0]===`exit`&&s[f-1][0]===`enter`&&s[f][1].type===s[f-1][1].type&&s[f][1].start.line!==s[f][1].end.line&&(h=f+1,g.push(h),p._tokenizer=void 0,p.previous=void 0,p=p.next);for(o.events=[],p?(p._tokenizer=void 0,p.previous=void 0):g.pop(),f=g.length;f--;){let t=s.slice(g[f],g[f+1]),n=a.pop();c.push([n,n+t.length-1]),e.splice(n,2,t)}for(c.reverse(),f=-1;++f<c.length;)l[m+c[f][0]]=m+c[f][1],m+=c[f][1]-c[f][0]-1;return l}var od={resolve:cd,tokenize:ld},sd={partial:!0,tokenize:ud};function cd(e){return id(e),e}function ld(e,t){let n;return r;function r(t){return e.enter(`content`),n=e.enter(`chunkContent`,{contentType:`content`}),i(t)}function i(t){return t===null?a(t):Z(t)?e.check(sd,o,a)(t):(e.consume(t),i)}function a(n){return e.exit(`chunkContent`),e.exit(`content`),t(n)}function o(t){return e.consume(t),e.exit(`chunkContent`),n.next=e.enter(`chunkContent`,{contentType:`content`,previous:n}),n=n.next,i}}function ud(e,t,n){let r=this;return i;function i(t){return e.exit(`chunkContent`),e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),$(e,a,`linePrefix`)}function a(i){if(i===null||Z(i))return n(i);let a=r.events[r.events.length-1];return!r.parser.constructs.disable.null.includes(`codeIndented`)&&a&&a[1].type===`linePrefix`&&a[2].sliceSerialize(a[1],!0).length>=4?t(i):e.interrupt(r.parser.constructs.flow,n,t)(i)}}function dd(e,t,n,r,i,a,o,s,c){let l=c||1/0,u=0;return d;function d(t){return t===60?(e.enter(r),e.enter(i),e.enter(a),e.consume(t),e.exit(a),f):t===null||t===32||t===41||du(t)?n(t):(e.enter(r),e.enter(o),e.enter(s),e.enter(`chunkString`,{contentType:`string`}),h(t))}function f(n){return n===62?(e.enter(a),e.consume(n),e.exit(a),e.exit(i),e.exit(r),t):(e.enter(s),e.enter(`chunkString`,{contentType:`string`}),p(n))}function p(t){return t===62?(e.exit(`chunkString`),e.exit(s),f(t)):t===null||t===60||Z(t)?n(t):(e.consume(t),t===92?m:p)}function m(t){return t===60||t===62||t===92?(e.consume(t),p):p(t)}function h(i){return!u&&(i===null||i===41||hu(i))?(e.exit(`chunkString`),e.exit(s),e.exit(o),e.exit(r),t(i)):u<l&&i===40?(e.consume(i),u++,h):i===41?(e.consume(i),u--,h):i===null||i===32||i===40||du(i)?n(i):(e.consume(i),i===92?g:h)}function g(t){return t===40||t===41||t===92?(e.consume(t),h):h(t)}}function fd(e,t,n,r,i,a){let o=this,s=0,c;return l;function l(t){return e.enter(r),e.enter(i),e.consume(t),e.exit(i),e.enter(a),u}function u(l){return s>999||l===null||l===91||l===93&&!c||l===94&&!s&&`_hiddenFootnoteSupport`in o.parser.constructs?n(l):l===93?(e.exit(a),e.enter(i),e.consume(l),e.exit(i),e.exit(r),t):Z(l)?(e.enter(`lineEnding`),e.consume(l),e.exit(`lineEnding`),u):(e.enter(`chunkString`,{contentType:`string`}),d(l))}function d(t){return t===null||t===91||t===93||Z(t)||s++>999?(e.exit(`chunkString`),u(t)):(e.consume(t),c||=!Q(t),t===92?f:d)}function f(t){return t===91||t===92||t===93?(e.consume(t),s++,d):d(t)}}function pd(e,t,n,r,i,a){let o;return s;function s(t){return t===34||t===39||t===40?(e.enter(r),e.enter(i),e.consume(t),e.exit(i),o=t===40?41:t,c):n(t)}function c(n){return n===o?(e.enter(i),e.consume(n),e.exit(i),e.exit(r),t):(e.enter(a),l(n))}function l(t){return t===o?(e.exit(a),c(o)):t===null?n(t):Z(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),$(e,l,`linePrefix`)):(e.enter(`chunkString`,{contentType:`string`}),u(t))}function u(t){return t===o||t===null||Z(t)?(e.exit(`chunkString`),l(t)):(e.consume(t),t===92?d:u)}function d(t){return t===o||t===92?(e.consume(t),u):u(t)}}function md(e,t){let n;return r;function r(i){return Z(i)?(e.enter(`lineEnding`),e.consume(i),e.exit(`lineEnding`),n=!0,r):Q(i)?$(e,r,n?`linePrefix`:`lineSuffix`)(i):t(i)}}var hd={name:`definition`,tokenize:_d},gd={partial:!0,tokenize:vd};function _d(e,t,n){let r=this,i;return a;function a(t){return e.enter(`definition`),o(t)}function o(t){return fd.call(r,e,s,n,`definitionLabel`,`definitionLabelMarker`,`definitionLabelString`)(t)}function s(t){return i=su(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)),t===58?(e.enter(`definitionMarker`),e.consume(t),e.exit(`definitionMarker`),c):n(t)}function c(t){return hu(t)?md(e,l)(t):l(t)}function l(t){return dd(e,u,n,`definitionDestination`,`definitionDestinationLiteral`,`definitionDestinationLiteralMarker`,`definitionDestinationRaw`,`definitionDestinationString`)(t)}function u(t){return e.attempt(gd,d,d)(t)}function d(t){return Q(t)?$(e,f,`whitespace`)(t):f(t)}function f(a){return a===null||Z(a)?(e.exit(`definition`),r.parser.defined.push(i),t(a)):n(a)}}function vd(e,t,n){return r;function r(t){return hu(t)?md(e,i)(t):n(t)}function i(t){return pd(e,a,n,`definitionTitle`,`definitionTitleMarker`,`definitionTitleString`)(t)}function a(t){return Q(t)?$(e,o,`whitespace`)(t):o(t)}function o(e){return e===null||Z(e)?t(e):n(e)}}var yd={name:`hardBreakEscape`,tokenize:bd};function bd(e,t,n){return r;function r(t){return e.enter(`hardBreakEscape`),e.consume(t),i}function i(r){return Z(r)?(e.exit(`hardBreakEscape`),t(r)):n(r)}}var xd={name:`headingAtx`,resolve:Sd,tokenize:Cd};function Sd(e,t){let n=e.length-2,r=3,i,a;return e[r][1].type===`whitespace`&&(r+=2),n-2>r&&e[n][1].type===`whitespace`&&(n-=2),e[n][1].type===`atxHeadingSequence`&&(r===n-1||n-4>r&&e[n-2][1].type===`whitespace`)&&(n-=r+1===n?2:4),n>r&&(i={type:`atxHeadingText`,start:e[r][1].start,end:e[n][1].end},a={type:`chunkText`,start:e[r][1].start,end:e[n][1].end,contentType:`text`},eu(e,r,n-r+1,[[`enter`,i,t],[`enter`,a,t],[`exit`,a,t],[`exit`,i,t]])),e}function Cd(e,t,n){let r=0;return i;function i(t){return e.enter(`atxHeading`),a(t)}function a(t){return e.enter(`atxHeadingSequence`),o(t)}function o(t){return t===35&&r++<6?(e.consume(t),o):t===null||hu(t)?(e.exit(`atxHeadingSequence`),s(t)):n(t)}function s(n){return n===35?(e.enter(`atxHeadingSequence`),c(n)):n===null||Z(n)?(e.exit(`atxHeading`),t(n)):Q(n)?$(e,s,`whitespace`)(n):(e.enter(`atxHeadingText`),l(n))}function c(t){return t===35?(e.consume(t),c):(e.exit(`atxHeadingSequence`),s(t))}function l(t){return t===null||t===35||hu(t)?(e.exit(`atxHeadingText`),s(t)):(e.consume(t),l)}}var wd=`address.article.aside.base.basefont.blockquote.body.caption.center.col.colgroup.dd.details.dialog.dir.div.dl.dt.fieldset.figcaption.figure.footer.form.frame.frameset.h1.h2.h3.h4.h5.h6.head.header.hr.html.iframe.legend.li.link.main.menu.menuitem.nav.noframes.ol.optgroup.option.p.param.search.section.summary.table.tbody.td.tfoot.th.thead.title.tr.track.ul`.split(`.`),Td=[`pre`,`script`,`style`,`textarea`],Ed={concrete:!0,name:`htmlFlow`,resolveTo:kd,tokenize:Ad},Dd={partial:!0,tokenize:Md},Od={partial:!0,tokenize:jd};function kd(e){let t=e.length;for(;t--&&!(e[t][0]===`enter`&&e[t][1].type===`htmlFlow`););return t>1&&e[t-2][1].type===`linePrefix`&&(e[t][1].start=e[t-2][1].start,e[t+1][1].start=e[t-2][1].start,e.splice(t-2,2)),e}function Ad(e,t,n){let r=this,i,a,o,s,c;return l;function l(e){return u(e)}function u(t){return e.enter(`htmlFlow`),e.enter(`htmlFlowData`),e.consume(t),d}function d(s){return s===33?(e.consume(s),f):s===47?(e.consume(s),a=!0,h):s===63?(e.consume(s),i=3,r.interrupt?t:ie):cu(s)?(e.consume(s),o=String.fromCharCode(s),g):n(s)}function f(a){return a===45?(e.consume(a),i=2,p):a===91?(e.consume(a),i=5,s=0,m):cu(a)?(e.consume(a),i=4,r.interrupt?t:ie):n(a)}function p(i){return i===45?(e.consume(i),r.interrupt?t:ie):n(i)}function m(i){return i===`CDATA[`.charCodeAt(s++)?(e.consume(i),s===6?r.interrupt?t:D:m):n(i)}function h(t){return cu(t)?(e.consume(t),o=String.fromCharCode(t),g):n(t)}function g(s){if(s===null||s===47||s===62||hu(s)){let c=s===47,l=o.toLowerCase();return!c&&!a&&Td.includes(l)?(i=1,r.interrupt?t(s):D(s)):wd.includes(o.toLowerCase())?(i=6,c?(e.consume(s),_):r.interrupt?t(s):D(s)):(i=7,r.interrupt&&!r.parser.lazy[r.now().line]?n(s):a?v(s):y(s))}return s===45||lu(s)?(e.consume(s),o+=String.fromCharCode(s),g):n(s)}function _(i){return i===62?(e.consume(i),r.interrupt?t:D):n(i)}function v(t){return Q(t)?(e.consume(t),v):E(t)}function y(t){return t===47?(e.consume(t),E):t===58||t===95||cu(t)?(e.consume(t),b):Q(t)?(e.consume(t),y):E(t)}function b(t){return t===45||t===46||t===58||t===95||lu(t)?(e.consume(t),b):x(t)}function x(t){return t===61?(e.consume(t),S):Q(t)?(e.consume(t),x):y(t)}function S(t){return t===null||t===60||t===61||t===62||t===96?n(t):t===34||t===39?(e.consume(t),c=t,C):Q(t)?(e.consume(t),S):w(t)}function C(t){return t===c?(e.consume(t),c=null,T):t===null||Z(t)?n(t):(e.consume(t),C)}function w(t){return t===null||t===34||t===39||t===47||t===60||t===61||t===62||t===96||hu(t)?x(t):(e.consume(t),w)}function T(e){return e===47||e===62||Q(e)?y(e):n(e)}function E(t){return t===62?(e.consume(t),ee):n(t)}function ee(t){return t===null||Z(t)?D(t):Q(t)?(e.consume(t),ee):n(t)}function D(t){return t===45&&i===2?(e.consume(t),A):t===60&&i===1?(e.consume(t),j):t===62&&i===4?(e.consume(t),ae):t===63&&i===3?(e.consume(t),ie):t===93&&i===5?(e.consume(t),re):Z(t)&&(i===6||i===7)?(e.exit(`htmlFlowData`),e.check(Dd,oe,O)(t)):t===null||Z(t)?(e.exit(`htmlFlowData`),O(t)):(e.consume(t),D)}function O(t){return e.check(Od,k,oe)(t)}function k(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),te}function te(t){return t===null||Z(t)?O(t):(e.enter(`htmlFlowData`),D(t))}function A(t){return t===45?(e.consume(t),ie):D(t)}function j(t){return t===47?(e.consume(t),o=``,ne):D(t)}function ne(t){if(t===62){let n=o.toLowerCase();return Td.includes(n)?(e.consume(t),ae):D(t)}return cu(t)&&o.length<8?(e.consume(t),o+=String.fromCharCode(t),ne):D(t)}function re(t){return t===93?(e.consume(t),ie):D(t)}function ie(t){return t===62?(e.consume(t),ae):t===45&&i===2?(e.consume(t),ie):D(t)}function ae(t){return t===null||Z(t)?(e.exit(`htmlFlowData`),oe(t)):(e.consume(t),ae)}function oe(n){return e.exit(`htmlFlow`),t(n)}}function jd(e,t,n){let r=this;return i;function i(t){return Z(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),a):n(t)}function a(e){return r.parser.lazy[r.now().line]?n(e):t(e)}}function Md(e,t,n){return r;function r(r){return e.enter(`lineEnding`),e.consume(r),e.exit(`lineEnding`),e.attempt(Pu,t,n)}}var Nd={name:`htmlText`,tokenize:Pd};function Pd(e,t,n){let r=this,i,a,o;return s;function s(t){return e.enter(`htmlText`),e.enter(`htmlTextData`),e.consume(t),c}function c(t){return t===33?(e.consume(t),l):t===47?(e.consume(t),x):t===63?(e.consume(t),y):cu(t)?(e.consume(t),w):n(t)}function l(t){return t===45?(e.consume(t),u):t===91?(e.consume(t),a=0,m):cu(t)?(e.consume(t),v):n(t)}function u(t){return t===45?(e.consume(t),p):n(t)}function d(t){return t===null?n(t):t===45?(e.consume(t),f):Z(t)?(o=d,j(t)):(e.consume(t),d)}function f(t){return t===45?(e.consume(t),p):d(t)}function p(e){return e===62?A(e):e===45?f(e):d(e)}function m(t){return t===`CDATA[`.charCodeAt(a++)?(e.consume(t),a===6?h:m):n(t)}function h(t){return t===null?n(t):t===93?(e.consume(t),g):Z(t)?(o=h,j(t)):(e.consume(t),h)}function g(t){return t===93?(e.consume(t),_):h(t)}function _(t){return t===62?A(t):t===93?(e.consume(t),_):h(t)}function v(t){return t===null||t===62?A(t):Z(t)?(o=v,j(t)):(e.consume(t),v)}function y(t){return t===null?n(t):t===63?(e.consume(t),b):Z(t)?(o=y,j(t)):(e.consume(t),y)}function b(e){return e===62?A(e):y(e)}function x(t){return cu(t)?(e.consume(t),S):n(t)}function S(t){return t===45||lu(t)?(e.consume(t),S):C(t)}function C(t){return Z(t)?(o=C,j(t)):Q(t)?(e.consume(t),C):A(t)}function w(t){return t===45||lu(t)?(e.consume(t),w):t===47||t===62||hu(t)?T(t):n(t)}function T(t){return t===47?(e.consume(t),A):t===58||t===95||cu(t)?(e.consume(t),E):Z(t)?(o=T,j(t)):Q(t)?(e.consume(t),T):A(t)}function E(t){return t===45||t===46||t===58||t===95||lu(t)?(e.consume(t),E):ee(t)}function ee(t){return t===61?(e.consume(t),D):Z(t)?(o=ee,j(t)):Q(t)?(e.consume(t),ee):T(t)}function D(t){return t===null||t===60||t===61||t===62||t===96?n(t):t===34||t===39?(e.consume(t),i=t,O):Z(t)?(o=D,j(t)):Q(t)?(e.consume(t),D):(e.consume(t),k)}function O(t){return t===i?(e.consume(t),i=void 0,te):t===null?n(t):Z(t)?(o=O,j(t)):(e.consume(t),O)}function k(t){return t===null||t===34||t===39||t===60||t===61||t===96?n(t):t===47||t===62||hu(t)?T(t):(e.consume(t),k)}function te(e){return e===47||e===62||hu(e)?T(e):n(e)}function A(r){return r===62?(e.consume(r),e.exit(`htmlTextData`),e.exit(`htmlText`),t):n(r)}function j(t){return e.exit(`htmlTextData`),e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),ne}function ne(t){return Q(t)?$(e,re,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):re(t)}function re(t){return e.enter(`htmlTextData`),o(t)}}var Fd={name:`labelEnd`,resolveAll:zd,resolveTo:Bd,tokenize:Vd},Id={tokenize:Hd},Ld={tokenize:Ud},Rd={tokenize:Wd};function zd(e){let t=-1,n=[];for(;++t<e.length;){let r=e[t][1];if(n.push(e[t]),r.type===`labelImage`||r.type===`labelLink`||r.type===`labelEnd`){let e=r.type===`labelImage`?4:2;r.type=`data`,t+=e}}return e.length!==n.length&&eu(e,0,e.length,n),e}function Bd(e,t){let n=e.length,r=0,i,a,o,s;for(;n--;)if(i=e[n][1],a){if(i.type===`link`||i.type===`labelLink`&&i._inactive)break;e[n][0]===`enter`&&i.type===`labelLink`&&(i._inactive=!0)}else if(o){if(e[n][0]===`enter`&&(i.type===`labelImage`||i.type===`labelLink`)&&!i._balanced&&(a=n,i.type!==`labelLink`)){r=2;break}}else i.type===`labelEnd`&&(o=n);let c={type:e[a][1].type===`labelLink`?`link`:`image`,start:{...e[a][1].start},end:{...e[e.length-1][1].end}},l={type:`label`,start:{...e[a][1].start},end:{...e[o][1].end}},u={type:`labelText`,start:{...e[a+r+2][1].end},end:{...e[o-2][1].start}};return s=[[`enter`,c,t],[`enter`,l,t]],s=tu(s,e.slice(a+1,a+r+3)),s=tu(s,[[`enter`,u,t]]),s=tu(s,Du(t.parser.constructs.insideSpan.null,e.slice(a+r+4,o-3),t)),s=tu(s,[[`exit`,u,t],e[o-2],e[o-1],[`exit`,l,t]]),s=tu(s,e.slice(o+1)),s=tu(s,[[`exit`,c,t]]),eu(e,a,e.length,s),e}function Vd(e,t,n){let r=this,i=r.events.length,a,o;for(;i--;)if((r.events[i][1].type===`labelImage`||r.events[i][1].type===`labelLink`)&&!r.events[i][1]._balanced){a=r.events[i][1];break}return s;function s(t){return a?a._inactive?d(t):(o=r.parser.defined.includes(su(r.sliceSerialize({start:a.end,end:r.now()}))),e.enter(`labelEnd`),e.enter(`labelMarker`),e.consume(t),e.exit(`labelMarker`),e.exit(`labelEnd`),c):n(t)}function c(t){return t===40?e.attempt(Id,u,o?u:d)(t):t===91?e.attempt(Ld,u,o?l:d)(t):o?u(t):d(t)}function l(t){return e.attempt(Rd,u,d)(t)}function u(e){return t(e)}function d(e){return a._balanced=!0,n(e)}}function Hd(e,t,n){return r;function r(t){return e.enter(`resource`),e.enter(`resourceMarker`),e.consume(t),e.exit(`resourceMarker`),i}function i(t){return hu(t)?md(e,a)(t):a(t)}function a(t){return t===41?u(t):dd(e,o,s,`resourceDestination`,`resourceDestinationLiteral`,`resourceDestinationLiteralMarker`,`resourceDestinationRaw`,`resourceDestinationString`,32)(t)}function o(t){return hu(t)?md(e,c)(t):u(t)}function s(e){return n(e)}function c(t){return t===34||t===39||t===40?pd(e,l,n,`resourceTitle`,`resourceTitleMarker`,`resourceTitleString`)(t):u(t)}function l(t){return hu(t)?md(e,u)(t):u(t)}function u(r){return r===41?(e.enter(`resourceMarker`),e.consume(r),e.exit(`resourceMarker`),e.exit(`resource`),t):n(r)}}function Ud(e,t,n){let r=this;return i;function i(t){return fd.call(r,e,a,o,`reference`,`referenceMarker`,`referenceString`)(t)}function a(e){return r.parser.defined.includes(su(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)))?t(e):n(e)}function o(e){return n(e)}}function Wd(e,t,n){return r;function r(t){return e.enter(`reference`),e.enter(`referenceMarker`),e.consume(t),e.exit(`referenceMarker`),i}function i(r){return r===93?(e.enter(`referenceMarker`),e.consume(r),e.exit(`referenceMarker`),e.exit(`reference`),t):n(r)}}var Gd={name:`labelStartImage`,resolveAll:Fd.resolveAll,tokenize:Kd};function Kd(e,t,n){let r=this;return i;function i(t){return e.enter(`labelImage`),e.enter(`labelImageMarker`),e.consume(t),e.exit(`labelImageMarker`),a}function a(t){return t===91?(e.enter(`labelMarker`),e.consume(t),e.exit(`labelMarker`),e.exit(`labelImage`),o):n(t)}function o(e){return e===94&&`_hiddenFootnoteSupport`in r.parser.constructs?n(e):t(e)}}var qd={name:`labelStartLink`,resolveAll:Fd.resolveAll,tokenize:Jd};function Jd(e,t,n){let r=this;return i;function i(t){return e.enter(`labelLink`),e.enter(`labelMarker`),e.consume(t),e.exit(`labelMarker`),e.exit(`labelLink`),a}function a(e){return e===94&&`_hiddenFootnoteSupport`in r.parser.constructs?n(e):t(e)}}var Yd={name:`lineEnding`,tokenize:Xd};function Xd(e,t){return n;function n(n){return e.enter(`lineEnding`),e.consume(n),e.exit(`lineEnding`),$(e,t,`linePrefix`)}}var Zd={name:`thematicBreak`,tokenize:Qd};function Qd(e,t,n){let r=0,i;return a;function a(t){return e.enter(`thematicBreak`),o(t)}function o(e){return i=e,s(e)}function s(a){return a===i?(e.enter(`thematicBreakSequence`),c(a)):r>=3&&(a===null||Z(a))?(e.exit(`thematicBreak`),t(a)):n(a)}function c(t){return t===i?(e.consume(t),r++,c):(e.exit(`thematicBreakSequence`),Q(t)?$(e,s,`whitespace`)(t):s(t))}}var $d={continuation:{tokenize:rf},exit:of,name:`list`,tokenize:nf},ef={partial:!0,tokenize:sf},tf={partial:!0,tokenize:af};function nf(e,t,n){let r=this,i=r.events[r.events.length-1],a=i&&i[1].type===`linePrefix`?i[2].sliceSerialize(i[1],!0).length:0,o=0;return s;function s(t){let i=r.containerState.type||(t===42||t===43||t===45?`listUnordered`:`listOrdered`);if(i===`listUnordered`?!r.containerState.marker||t===r.containerState.marker:fu(t)){if(r.containerState.type||(r.containerState.type=i,e.enter(i,{_container:!0})),i===`listUnordered`)return e.enter(`listItemPrefix`),t===42||t===45?e.check(Zd,n,l)(t):l(t);if(!r.interrupt||t===49)return e.enter(`listItemPrefix`),e.enter(`listItemValue`),c(t)}return n(t)}function c(t){return fu(t)&&++o<10?(e.consume(t),c):(!r.interrupt||o<2)&&(r.containerState.marker?t===r.containerState.marker:t===41||t===46)?(e.exit(`listItemValue`),l(t)):n(t)}function l(t){return e.enter(`listItemMarker`),e.consume(t),e.exit(`listItemMarker`),r.containerState.marker=r.containerState.marker||t,e.check(Pu,r.interrupt?n:u,e.attempt(ef,f,d))}function u(e){return r.containerState.initialBlankLine=!0,a++,f(e)}function d(t){return Q(t)?(e.enter(`listItemPrefixWhitespace`),e.consume(t),e.exit(`listItemPrefixWhitespace`),f):n(t)}function f(n){return r.containerState.size=a+r.sliceSerialize(e.exit(`listItemPrefix`),!0).length,t(n)}}function rf(e,t,n){let r=this;return r.containerState._closeFlow=void 0,e.check(Pu,i,a);function i(n){return r.containerState.furtherBlankLines=r.containerState.furtherBlankLines||r.containerState.initialBlankLine,$(e,t,`listItemIndent`,r.containerState.size+1)(n)}function a(n){return r.containerState.furtherBlankLines||!Q(n)?(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,o(n)):(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,e.attempt(tf,t,o)(n))}function o(i){return r.containerState._closeFlow=!0,r.interrupt=void 0,$(e,e.attempt($d,t,n),`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(i)}}function af(e,t,n){let r=this;return $(e,i,`listItemIndent`,r.containerState.size+1);function i(e){let i=r.events[r.events.length-1];return i&&i[1].type===`listItemIndent`&&i[2].sliceSerialize(i[1],!0).length===r.containerState.size?t(e):n(e)}}function of(e){e.exit(this.containerState.type)}function sf(e,t,n){let r=this;return $(e,i,`listItemPrefixWhitespace`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:5);function i(e){let i=r.events[r.events.length-1];return!Q(e)&&i&&i[1].type===`listItemPrefixWhitespace`?t(e):n(e)}}var cf={name:`setextUnderline`,resolveTo:lf,tokenize:uf};function lf(e,t){let n=e.length,r,i,a;for(;n--;)if(e[n][0]===`enter`){if(e[n][1].type===`content`){r=n;break}e[n][1].type===`paragraph`&&(i=n)}else e[n][1].type===`content`&&e.splice(n,1),!a&&e[n][1].type===`definition`&&(a=n);let o={type:`setextHeading`,start:{...e[r][1].start},end:{...e[e.length-1][1].end}};return e[i][1].type=`setextHeadingText`,a?(e.splice(i,0,[`enter`,o,t]),e.splice(a+1,0,[`exit`,e[r][1],t]),e[r][1].end={...e[a][1].end}):e[r][1]=o,e.push([`exit`,o,t]),e}function uf(e,t,n){let r=this,i;return a;function a(t){let a=r.events.length,s;for(;a--;)if(r.events[a][1].type!==`lineEnding`&&r.events[a][1].type!==`linePrefix`&&r.events[a][1].type!==`content`){s=r.events[a][1].type===`paragraph`;break}return!r.parser.lazy[r.now().line]&&(r.interrupt||s)?(e.enter(`setextHeadingLine`),i=t,o(t)):n(t)}function o(t){return e.enter(`setextHeadingLineSequence`),s(t)}function s(t){return t===i?(e.consume(t),s):(e.exit(`setextHeadingLineSequence`),Q(t)?$(e,c,`lineSuffix`)(t):c(t))}function c(r){return r===null||Z(r)?(e.exit(`setextHeadingLine`),t(r)):n(r)}}var df={tokenize:ff};function ff(e){let t=this,n=e.attempt(Pu,r,e.attempt(this.parser.constructs.flowInitial,i,$(e,e.attempt(this.parser.constructs.flow,i,e.attempt(od,i)),`linePrefix`)));return n;function r(r){if(r===null){e.consume(r);return}return e.enter(`lineEndingBlank`),e.consume(r),e.exit(`lineEndingBlank`),t.currentConstruct=void 0,n}function i(r){if(r===null){e.consume(r);return}return e.enter(`lineEnding`),e.consume(r),e.exit(`lineEnding`),t.currentConstruct=void 0,n}}var pf={resolveAll:_f()},mf=gf(`string`),hf=gf(`text`);function gf(e){return{resolveAll:_f(e===`text`?vf:void 0),tokenize:t};function t(t){let n=this,r=this.parser.constructs[e],i=t.attempt(r,a,o);return a;function a(e){return c(e)?i(e):o(e)}function o(e){if(e===null){t.consume(e);return}return t.enter(`data`),t.consume(e),s}function s(e){return c(e)?(t.exit(`data`),i(e)):(t.consume(e),s)}function c(e){if(e===null)return!0;let t=r[e],i=-1;if(t)for(;++i<t.length;){let e=t[i];if(!e.previous||e.previous.call(n,n.previous))return!0}return!1}}}function _f(e){return t;function t(t,n){let r=-1,i;for(;++r<=t.length;)i===void 0?t[r]&&t[r][1].type===`data`&&(i=r,r++):(!t[r]||t[r][1].type!==`data`)&&(r!==i+2&&(t[i][1].end=t[r-1][1].end,t.splice(i+2,r-i-2),r=i+2),i=void 0);return e?e(t,n):t}}function vf(e,t){let n=0;for(;++n<=e.length;)if((n===e.length||e[n][1].type===`lineEnding`)&&e[n-1][1].type===`data`){let r=e[n-1][1],i=t.sliceStream(r),a=i.length,o=-1,s=0,c;for(;a--;){let e=i[a];if(typeof e==`string`){for(o=e.length;e.charCodeAt(o-1)===32;)s++,o--;if(o)break;o=-1}else if(e===-2)c=!0,s++;else if(e!==-1){a++;break}}if(t._contentTypeTextTrailing&&n===e.length&&(s=0),s){let i={type:n===e.length||c||s<2?`lineSuffix`:`hardBreakTrailing`,start:{_bufferIndex:a?o:r.start._bufferIndex+o,_index:r.start._index+a,line:r.end.line,column:r.end.column-s,offset:r.end.offset-s},end:{...r.end}};r.end={...i.start},r.start.offset===r.end.offset?Object.assign(r,i):(e.splice(n,0,[`enter`,i,t],[`exit`,i,t]),n+=2)}n++}return e}var yf=e({attentionMarkers:()=>Df,contentInitial:()=>xf,disable:()=>Of,document:()=>bf,flow:()=>Cf,flowInitial:()=>Sf,insideSpan:()=>Ef,string:()=>wf,text:()=>Tf}),bf={42:$d,43:$d,45:$d,48:$d,49:$d,50:$d,51:$d,52:$d,53:$d,54:$d,55:$d,56:$d,57:$d,62:Iu},xf={91:hd},Sf={[-2]:Ju,[-1]:Ju,32:Ju},Cf={35:xd,42:Zd,45:[cf,Zd],60:Ed,61:cf,95:Zd,96:Gu,126:Gu},wf={38:Hu,92:Bu},Tf={[-5]:Yd,[-4]:Yd,[-3]:Yd,33:Gd,38:Hu,42:Ou,60:[Mu,Nd],91:qd,92:[yd,Bu],93:Fd,95:Ou,96:Qu},Ef={null:[Ou,pf]},Df={null:[42,95]},Of={null:[]};function kf(e,t,n){let r={_bufferIndex:-1,_index:0,line:n&&n.line||1,column:n&&n.column||1,offset:n&&n.offset||0},i={},a=[],o=[],s=[],c={attempt:C(x),check:C(S),consume:v,enter:y,exit:b,interrupt:C(S,{interrupt:!0})},l={code:null,containerState:{},defineSkip:h,events:[],now:m,parser:e,previous:null,sliceSerialize:f,sliceStream:p,write:d},u=t.tokenize.call(l,c);return t.resolveAll&&a.push(t),l;function d(e){return o=tu(o,e),g(),o[o.length-1]===null?(w(t,0),l.events=Du(a,l.events,l),l.events):[]}function f(e,t){return jf(p(e),t)}function p(e){return Af(o,e)}function m(){let{_bufferIndex:e,_index:t,line:n,column:i,offset:a}=r;return{_bufferIndex:e,_index:t,line:n,column:i,offset:a}}function h(e){i[e.line]=e.column,E()}function g(){let e;for(;r._index<o.length;){let t=o[r._index];if(typeof t==`string`)for(e=r._index,r._bufferIndex<0&&(r._bufferIndex=0);r._index===e&&r._bufferIndex<t.length;)_(t.charCodeAt(r._bufferIndex));else _(t)}}function _(e){u=u(e)}function v(e){Z(e)?(r.line++,r.column=1,r.offset+=e===-3?2:1,E()):e!==-1&&(r.column++,r.offset++),r._bufferIndex<0?r._index++:(r._bufferIndex++,r._bufferIndex===o[r._index].length&&(r._bufferIndex=-1,r._index++)),l.previous=e}function y(e,t){let n=t||{};return n.type=e,n.start=m(),l.events.push([`enter`,n,l]),s.push(n),n}function b(e){let t=s.pop();return t.end=m(),l.events.push([`exit`,t,l]),t}function x(e,t){w(e,t.from)}function S(e,t){t.restore()}function C(e,t){return n;function n(n,r,i){let a,o,s,u;return Array.isArray(n)?f(n):`tokenize`in n?f([n]):d(n);function d(e){return t;function t(t){let n=t!==null&&e[t],r=t!==null&&e.null;return f([...Array.isArray(n)?n:n?[n]:[],...Array.isArray(r)?r:r?[r]:[]])(t)}}function f(e){return a=e,o=0,e.length===0?i:p(e[o])}function p(e){return n;function n(n){return u=T(),s=e,e.partial||(l.currentConstruct=e),e.name&&l.parser.constructs.disable.null.includes(e.name)?h(n):e.tokenize.call(t?Object.assign(Object.create(l),t):l,c,m,h)(n)}}function m(t){return e(s,u),r}function h(e){return u.restore(),++o<a.length?p(a[o]):i}}}function w(e,t){e.resolveAll&&!a.includes(e)&&a.push(e),e.resolve&&eu(l.events,t,l.events.length-t,e.resolve(l.events.slice(t),l)),e.resolveTo&&(l.events=e.resolveTo(l.events,l))}function T(){let e=m(),t=l.previous,n=l.currentConstruct,i=l.events.length,a=Array.from(s);return{from:i,restore:o};function o(){r=e,l.previous=t,l.currentConstruct=n,l.events.length=i,s=a,E()}}function E(){r.line in i&&r.column<2&&(r.column=i[r.line],r.offset+=i[r.line]-1)}}function Af(e,t){let n=t.start._index,r=t.start._bufferIndex,i=t.end._index,a=t.end._bufferIndex,o;if(n===i)o=[e[n].slice(r,a)];else{if(o=e.slice(n,i),r>-1){let e=o[0];typeof e==`string`?o[0]=e.slice(r):o.shift()}a>0&&o.push(e[i].slice(0,a))}return o}function jf(e,t){let n=-1,r=[],i;for(;++n<e.length;){let a=e[n],o;if(typeof a==`string`)o=a;else switch(a){case-5:o=`\r`;break;case-4:o=`
|
|
47
|
-
`;break;case-3:o=`\r
|
|
48
|
-
`;break;case-2:o=t?` `:` `;break;case-1:if(!t&&i)continue;o=` `;break;default:o=String.fromCharCode(a)}i=a===-2,r.push(o)}return r.join(``)}function Mf(e){let t={constructs:ru([yf,...(e||{}).extensions||[]]),content:n(bu),defined:[],document:n(Su),flow:n(df),lazy:{},string:n(mf),text:n(hf)};return t;function n(e){return n;function n(n){return kf(t,e,n)}}}function Nf(e){for(;!id(e););return e}var Pf=/[\0\t\n\r]/g;function Ff(){let e=1,t=``,n=!0,r;return i;function i(i,a,o){let s=[],c,l,u,d,f;for(i=t+(typeof i==`string`?i.toString():new TextDecoder(a||void 0).decode(i)),u=0,t=``,n&&=(i.charCodeAt(0)===65279&&u++,void 0);u<i.length;){if(Pf.lastIndex=u,c=Pf.exec(i),d=c&&c.index!==void 0?c.index:i.length,f=i.charCodeAt(d),!c){t=i.slice(u);break}if(f===10&&u===d&&r)s.push(-3),r=void 0;else switch(r&&=(s.push(-5),void 0),u<d&&(s.push(i.slice(u,d)),e+=d-u),f){case 0:s.push(65533),e++;break;case 9:for(l=Math.ceil(e/4)*4,s.push(-2);e++<l;)s.push(-1);break;case 10:s.push(-4),e=1;break;default:r=!0,e=1}u=d+1}return o&&(r&&s.push(-5),t&&s.push(t),s.push(null)),s}}var If=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function Lf(e){return e.replace(If,Rf)}function Rf(e,t,n){if(t)return t;if(n.charCodeAt(0)===35){let e=n.charCodeAt(1),t=e===120||e===88;return ou(n.slice(t?2:1),t?16:10)}return $l(n)||e}var zf={}.hasOwnProperty;function Bf(e,t,n){return t&&typeof t==`object`&&(n=t,t=void 0),Vf(n)(Nf(Mf(n).document().write(Ff()(e,t,!0))))}function Vf(e){let t={transforms:[],canContainEols:[`emphasis`,`fragment`,`heading`,`paragraph`,`strong`],enter:{autolink:a(Ce),autolinkProtocol:T,autolinkEmail:T,atxHeading:a(ye),blockQuote:a(me),characterEscape:T,characterReference:T,codeFenced:a(he),codeFencedFenceInfo:o,codeFencedFenceMeta:o,codeIndented:a(he,o),codeText:a(ge,o),codeTextData:T,data:T,codeFlowValue:T,definition:a(_e),definitionDestinationString:o,definitionLabelString:o,definitionTitleString:o,emphasis:a(ve),hardBreakEscape:a(be),hardBreakTrailing:a(be),htmlFlow:a(xe,o),htmlFlowData:T,htmlText:a(xe,o),htmlTextData:T,image:a(Se),label:o,link:a(Ce),listItem:a(Te),listItemValue:f,listOrdered:a(we,d),listUnordered:a(we),paragraph:a(Ee),reference:se,referenceString:o,resourceDestinationString:o,resourceTitleString:o,setextHeading:a(ye),strong:a(De),thematicBreak:a(ke)},exit:{atxHeading:c(),atxHeadingSequence:x,autolink:c(),autolinkEmail:pe,autolinkProtocol:fe,blockQuote:c(),characterEscapeValue:E,characterReferenceMarkerHexadecimal:le,characterReferenceMarkerNumeric:le,characterReferenceValue:ue,characterReference:de,codeFenced:c(g),codeFencedFence:h,codeFencedFenceInfo:p,codeFencedFenceMeta:m,codeFlowValue:E,codeIndented:c(_),codeText:c(te),codeTextData:E,data:E,definition:c(),definitionDestinationString:b,definitionLabelString:v,definitionTitleString:y,emphasis:c(),hardBreakEscape:c(D),hardBreakTrailing:c(D),htmlFlow:c(O),htmlFlowData:E,htmlText:c(k),htmlTextData:E,image:c(j),label:re,labelText:ne,lineEnding:ee,link:c(A),listItem:c(),listOrdered:c(),listUnordered:c(),paragraph:c(),referenceString:ce,resourceDestinationString:ie,resourceTitleString:ae,resource:oe,setextHeading:c(w),setextHeadingLineSequence:C,setextHeadingText:S,strong:c(),thematicBreak:c()}};Uf(t,(e||{}).mdastExtensions||[]);let n={};return r;function r(e){let r={type:`root`,children:[]},a={stack:[r],tokenStack:[],config:t,enter:s,exit:l,buffer:o,resume:u,data:n},c=[],d=-1;for(;++d<e.length;)(e[d][1].type===`listOrdered`||e[d][1].type===`listUnordered`)&&(e[d][0]===`enter`?c.push(d):d=i(e,c.pop(),d));for(d=-1;++d<e.length;){let n=t[e[d][0]];zf.call(n,e[d][1].type)&&n[e[d][1].type].call(Object.assign({sliceSerialize:e[d][2].sliceSerialize},a),e[d][1])}if(a.tokenStack.length>0){let e=a.tokenStack[a.tokenStack.length-1];(e[1]||Gf).call(a,void 0,e[0])}for(r.position={start:Hf(e.length>0?e[0][1].start:{line:1,column:1,offset:0}),end:Hf(e.length>0?e[e.length-2][1].end:{line:1,column:1,offset:0})},d=-1;++d<t.transforms.length;)r=t.transforms[d](r)||r;return r}function i(e,t,n){let r=t-1,i=-1,a=!1,o,s,c,l;for(;++r<=n;){let t=e[r];switch(t[1].type){case`listUnordered`:case`listOrdered`:case`blockQuote`:t[0]===`enter`?i++:i--,l=void 0;break;case`lineEndingBlank`:t[0]===`enter`&&(o&&!l&&!i&&!c&&(c=r),l=void 0);break;case`linePrefix`:case`listItemValue`:case`listItemMarker`:case`listItemPrefix`:case`listItemPrefixWhitespace`:break;default:l=void 0}if(!i&&t[0]===`enter`&&t[1].type===`listItemPrefix`||i===-1&&t[0]===`exit`&&(t[1].type===`listUnordered`||t[1].type===`listOrdered`)){if(o){let i=r;for(s=void 0;i--;){let t=e[i];if(t[1].type===`lineEnding`||t[1].type===`lineEndingBlank`){if(t[0]===`exit`)continue;s&&(e[s][1].type=`lineEndingBlank`,a=!0),t[1].type=`lineEnding`,s=i}else if(!(t[1].type===`linePrefix`||t[1].type===`blockQuotePrefix`||t[1].type===`blockQuotePrefixWhitespace`||t[1].type===`blockQuoteMarker`||t[1].type===`listItemIndent`))break}c&&(!s||c<s)&&(o._spread=!0),o.end=Object.assign({},s?e[s][1].start:t[1].end),e.splice(s||r,0,[`exit`,o,t[2]]),r++,n++}if(t[1].type===`listItemPrefix`){let i={type:`listItem`,_spread:!1,start:Object.assign({},t[1].start),end:void 0};o=i,e.splice(r,0,[`enter`,i,t[2]]),r++,n++,c=void 0,l=!0}}}return e[t][1]._spread=a,n}function a(e,t){return n;function n(n){s.call(this,e(n),n),t&&t.call(this,n)}}function o(){this.stack.push({type:`fragment`,children:[]})}function s(e,t,n){this.stack[this.stack.length-1].children.push(e),this.stack.push(e),this.tokenStack.push([t,n||void 0]),e.position={start:Hf(t.start),end:void 0}}function c(e){return t;function t(t){e&&e.call(this,t),l.call(this,t)}}function l(e,t){let n=this.stack.pop(),r=this.tokenStack.pop();if(r)r[0].type!==e.type&&(t?t.call(this,e,r[0]):(r[1]||Gf).call(this,e,r[0]));else throw Error("Cannot close `"+e.type+"` ("+pl({start:e.start,end:e.end})+`): it’s not open`);n.position.end=Hf(e.end)}function u(){return Jl(this.stack.pop())}function d(){this.data.expectingFirstListItemValue=!0}function f(e){if(this.data.expectingFirstListItemValue){let t=this.stack[this.stack.length-2];t.start=Number.parseInt(this.sliceSerialize(e),10),this.data.expectingFirstListItemValue=void 0}}function p(){let e=this.resume(),t=this.stack[this.stack.length-1];t.lang=e}function m(){let e=this.resume(),t=this.stack[this.stack.length-1];t.meta=e}function h(){this.data.flowCodeInside||(this.buffer(),this.data.flowCodeInside=!0)}function g(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e.replace(/^(\r?\n|\r)|(\r?\n|\r)$/g,``),this.data.flowCodeInside=void 0}function _(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e.replace(/(\r?\n|\r)$/g,``)}function v(e){let t=this.resume(),n=this.stack[this.stack.length-1];n.label=t,n.identifier=su(this.sliceSerialize(e)).toLowerCase()}function y(){let e=this.resume(),t=this.stack[this.stack.length-1];t.title=e}function b(){let e=this.resume(),t=this.stack[this.stack.length-1];t.url=e}function x(e){let t=this.stack[this.stack.length-1];t.depth||=this.sliceSerialize(e).length}function S(){this.data.setextHeadingSlurpLineEnding=!0}function C(e){let t=this.stack[this.stack.length-1];t.depth=this.sliceSerialize(e).codePointAt(0)===61?1:2}function w(){this.data.setextHeadingSlurpLineEnding=void 0}function T(e){let t=this.stack[this.stack.length-1].children,n=t[t.length-1];(!n||n.type!==`text`)&&(n=Oe(),n.position={start:Hf(e.start),end:void 0},t.push(n)),this.stack.push(n)}function E(e){let t=this.stack.pop();t.value+=this.sliceSerialize(e),t.position.end=Hf(e.end)}function ee(e){let n=this.stack[this.stack.length-1];if(this.data.atHardBreak){let t=n.children[n.children.length-1];t.position.end=Hf(e.end),this.data.atHardBreak=void 0;return}!this.data.setextHeadingSlurpLineEnding&&t.canContainEols.includes(n.type)&&(T.call(this,e),E.call(this,e))}function D(){this.data.atHardBreak=!0}function O(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e}function k(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e}function te(){let e=this.resume(),t=this.stack[this.stack.length-1];t.value=e}function A(){let e=this.stack[this.stack.length-1];if(this.data.inReference){let t=this.data.referenceType||`shortcut`;e.type+=`Reference`,e.referenceType=t,delete e.url,delete e.title}else delete e.identifier,delete e.label;this.data.referenceType=void 0}function j(){let e=this.stack[this.stack.length-1];if(this.data.inReference){let t=this.data.referenceType||`shortcut`;e.type+=`Reference`,e.referenceType=t,delete e.url,delete e.title}else delete e.identifier,delete e.label;this.data.referenceType=void 0}function ne(e){let t=this.sliceSerialize(e),n=this.stack[this.stack.length-2];n.label=Lf(t),n.identifier=su(t).toLowerCase()}function re(){let e=this.stack[this.stack.length-1],t=this.resume(),n=this.stack[this.stack.length-1];this.data.inReference=!0,n.type===`link`?n.children=e.children:n.alt=t}function ie(){let e=this.resume(),t=this.stack[this.stack.length-1];t.url=e}function ae(){let e=this.resume(),t=this.stack[this.stack.length-1];t.title=e}function oe(){this.data.inReference=void 0}function se(){this.data.referenceType=`collapsed`}function ce(e){let t=this.resume(),n=this.stack[this.stack.length-1];n.label=t,n.identifier=su(this.sliceSerialize(e)).toLowerCase(),this.data.referenceType=`full`}function le(e){this.data.characterReferenceType=e.type}function ue(e){let t=this.sliceSerialize(e),n=this.data.characterReferenceType,r;n?(r=ou(t,n===`characterReferenceMarkerNumeric`?10:16),this.data.characterReferenceType=void 0):r=$l(t);let i=this.stack[this.stack.length-1];i.value+=r}function de(e){let t=this.stack.pop();t.position.end=Hf(e.end)}function fe(e){E.call(this,e);let t=this.stack[this.stack.length-1];t.url=this.sliceSerialize(e)}function pe(e){E.call(this,e);let t=this.stack[this.stack.length-1];t.url=`mailto:`+this.sliceSerialize(e)}function me(){return{type:`blockquote`,children:[]}}function he(){return{type:`code`,lang:null,meta:null,value:``}}function ge(){return{type:`inlineCode`,value:``}}function _e(){return{type:`definition`,identifier:``,label:null,title:null,url:``}}function ve(){return{type:`emphasis`,children:[]}}function ye(){return{type:`heading`,depth:0,children:[]}}function be(){return{type:`break`}}function xe(){return{type:`html`,value:``}}function Se(){return{type:`image`,title:null,url:``,alt:null}}function Ce(){return{type:`link`,title:null,url:``,children:[]}}function we(e){return{type:`list`,ordered:e.type===`listOrdered`,start:null,spread:e._spread,children:[]}}function Te(e){return{type:`listItem`,spread:e._spread,checked:null,children:[]}}function Ee(){return{type:`paragraph`,children:[]}}function De(){return{type:`strong`,children:[]}}function Oe(){return{type:`text`,value:``}}function ke(){return{type:`thematicBreak`}}}function Hf(e){return{line:e.line,column:e.column,offset:e.offset}}function Uf(e,t){let n=-1;for(;++n<t.length;){let r=t[n];Array.isArray(r)?Uf(e,r):Wf(e,r)}}function Wf(e,t){let n;for(n in t)if(zf.call(t,n))switch(n){case`canContainEols`:{let r=t[n];r&&e[n].push(...r);break}case`transforms`:{let r=t[n];r&&e[n].push(...r);break}case`enter`:case`exit`:{let r=t[n];r&&Object.assign(e[n],r);break}}}function Gf(e,t){throw Error(e?"Cannot close `"+e.type+"` ("+pl({start:e.start,end:e.end})+"): a different token (`"+t.type+"`, "+pl({start:t.start,end:t.end})+`) is open`:"Cannot close document, a token (`"+t.type+"`, "+pl({start:t.start,end:t.end})+`) is still open`)}function Kf(e){let t=this;t.parser=n;function n(n){return Bf(n,{...t.data(`settings`),...e,extensions:t.data(`micromarkExtensions`)||[],mdastExtensions:t.data(`fromMarkdownExtensions`)||[]})}}function qf(e,t){let n={type:`element`,tagName:`blockquote`,properties:{},children:e.wrap(e.all(t),!0)};return e.patch(t,n),e.applyData(t,n)}function Jf(e,t){let n={type:`element`,tagName:`br`,properties:{},children:[]};return e.patch(t,n),[e.applyData(t,n),{type:`text`,value:`
|
|
49
|
-
`}]}function Yf(e,t){let n=t.value?t.value+`
|
|
50
|
-
`:``,r={},i=t.lang?t.lang.split(/\s+/):[];i.length>0&&(r.className=[`language-`+i[0]]);let a={type:`element`,tagName:`code`,properties:r,children:[{type:`text`,value:n}]};return t.meta&&(a.data={meta:t.meta}),e.patch(t,a),a=e.applyData(t,a),a={type:`element`,tagName:`pre`,properties:{},children:[a]},e.patch(t,a),a}function Xf(e,t){let n={type:`element`,tagName:`del`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Zf(e,t){let n={type:`element`,tagName:`em`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Qf(e,t){let n=typeof e.options.clobberPrefix==`string`?e.options.clobberPrefix:`user-content-`,r=String(t.identifier).toUpperCase(),i=yu(r.toLowerCase()),a=e.footnoteOrder.indexOf(r),o,s=e.footnoteCounts.get(r);s===void 0?(s=0,e.footnoteOrder.push(r),o=e.footnoteOrder.length):o=a+1,s+=1,e.footnoteCounts.set(r,s);let c={type:`element`,tagName:`a`,properties:{href:`#`+n+`fn-`+i,id:n+`fnref-`+i+(s>1?`-`+s:``),dataFootnoteRef:!0,ariaDescribedBy:[`footnote-label`]},children:[{type:`text`,value:String(o)}]};e.patch(t,c);let l={type:`element`,tagName:`sup`,properties:{},children:[c]};return e.patch(t,l),e.applyData(t,l)}function $f(e,t){let n={type:`element`,tagName:`h`+t.depth,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function ep(e,t){if(e.options.allowDangerousHtml){let n={type:`raw`,value:t.value};return e.patch(t,n),e.applyData(t,n)}}function tp(e,t){let n=t.referenceType,r=`]`;if(n===`collapsed`?r+=`[]`:n===`full`&&(r+=`[`+(t.label||t.identifier)+`]`),t.type===`imageReference`)return[{type:`text`,value:`![`+t.alt+r}];let i=e.all(t),a=i[0];a&&a.type===`text`?a.value=`[`+a.value:i.unshift({type:`text`,value:`[`});let o=i[i.length-1];return o&&o.type===`text`?o.value+=r:i.push({type:`text`,value:r}),i}function np(e,t){let n=String(t.identifier).toUpperCase(),r=e.definitionById.get(n);if(!r)return tp(e,t);let i={src:yu(r.url||``),alt:t.alt};r.title!==null&&r.title!==void 0&&(i.title=r.title);let a={type:`element`,tagName:`img`,properties:i,children:[]};return e.patch(t,a),e.applyData(t,a)}function rp(e,t){let n={src:yu(t.url)};t.alt!==null&&t.alt!==void 0&&(n.alt=t.alt),t.title!==null&&t.title!==void 0&&(n.title=t.title);let r={type:`element`,tagName:`img`,properties:n,children:[]};return e.patch(t,r),e.applyData(t,r)}function ip(e,t){let n={type:`text`,value:t.value.replace(/\r?\n|\r/g,` `)};e.patch(t,n);let r={type:`element`,tagName:`code`,properties:{},children:[n]};return e.patch(t,r),e.applyData(t,r)}function ap(e,t){let n=String(t.identifier).toUpperCase(),r=e.definitionById.get(n);if(!r)return tp(e,t);let i={href:yu(r.url||``)};r.title!==null&&r.title!==void 0&&(i.title=r.title);let a={type:`element`,tagName:`a`,properties:i,children:e.all(t)};return e.patch(t,a),e.applyData(t,a)}function op(e,t){let n={href:yu(t.url)};t.title!==null&&t.title!==void 0&&(n.title=t.title);let r={type:`element`,tagName:`a`,properties:n,children:e.all(t)};return e.patch(t,r),e.applyData(t,r)}function sp(e,t,n){let r=e.all(t),i=n?cp(n):lp(t),a={},o=[];if(typeof t.checked==`boolean`){let e=r[0],n;e&&e.type===`element`&&e.tagName===`p`?n=e:(n={type:`element`,tagName:`p`,properties:{},children:[]},r.unshift(n)),n.children.length>0&&n.children.unshift({type:`text`,value:` `}),n.children.unshift({type:`element`,tagName:`input`,properties:{type:`checkbox`,checked:t.checked,disabled:!0},children:[]}),a.className=[`task-list-item`]}let s=-1;for(;++s<r.length;){let e=r[s];(i||s!==0||e.type!==`element`||e.tagName!==`p`)&&o.push({type:`text`,value:`
|
|
51
|
-
`}),e.type===`element`&&e.tagName===`p`&&!i?o.push(...e.children):o.push(e)}let c=r[r.length-1];c&&(i||c.type!==`element`||c.tagName!==`p`)&&o.push({type:`text`,value:`
|
|
52
|
-
`});let l={type:`element`,tagName:`li`,properties:a,children:o};return e.patch(t,l),e.applyData(t,l)}function cp(e){let t=!1;if(e.type===`list`){t=e.spread||!1;let n=e.children,r=-1;for(;!t&&++r<n.length;)t=lp(n[r])}return t}function lp(e){return e.spread??e.children.length>1}function up(e,t){let n={},r=e.all(t),i=-1;for(typeof t.start==`number`&&t.start!==1&&(n.start=t.start);++i<r.length;){let e=r[i];if(e.type===`element`&&e.tagName===`li`&&e.properties&&Array.isArray(e.properties.className)&&e.properties.className.includes(`task-list-item`)){n.className=[`contains-task-list`];break}}let a={type:`element`,tagName:t.ordered?`ol`:`ul`,properties:n,children:e.wrap(r,!0)};return e.patch(t,a),e.applyData(t,a)}function dp(e,t){let n={type:`element`,tagName:`p`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function fp(e,t){let n={type:`root`,children:e.wrap(e.all(t))};return e.patch(t,n),e.applyData(t,n)}function pp(e,t){let n={type:`element`,tagName:`strong`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function mp(e,t){let n=e.all(t),r=n.shift(),i=[];if(r){let n={type:`element`,tagName:`thead`,properties:{},children:e.wrap([r],!0)};e.patch(t.children[0],n),i.push(n)}if(n.length>0){let r={type:`element`,tagName:`tbody`,properties:{},children:e.wrap(n,!0)},a=ul(t.children[1]),o=ll(t.children[t.children.length-1]);a&&o&&(r.position={start:a,end:o}),i.push(r)}let a={type:`element`,tagName:`table`,properties:{},children:e.wrap(i,!0)};return e.patch(t,a),e.applyData(t,a)}function hp(e,t,n){let r=n?n.children:void 0,i=(r?r.indexOf(t):1)===0?`th`:`td`,a=n&&n.type===`table`?n.align:void 0,o=a?a.length:t.children.length,s=-1,c=[];for(;++s<o;){let n=t.children[s],r={},o=a?a[s]:void 0;o&&(r.align=o);let l={type:`element`,tagName:i,properties:r,children:[]};n&&(l.children=e.all(n),e.patch(n,l),l=e.applyData(n,l)),c.push(l)}let l={type:`element`,tagName:`tr`,properties:{},children:e.wrap(c,!0)};return e.patch(t,l),e.applyData(t,l)}function gp(e,t){let n={type:`element`,tagName:`td`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}var _p=9,vp=32;function yp(e){let t=String(e),n=/\r?\n|\r/g,r=n.exec(t),i=0,a=[];for(;r;)a.push(bp(t.slice(i,r.index),i>0,!0),r[0]),i=r.index+r[0].length,r=n.exec(t);return a.push(bp(t.slice(i),i>0,!1)),a.join(``)}function bp(e,t,n){let r=0,i=e.length;if(t){let t=e.codePointAt(r);for(;t===_p||t===vp;)r++,t=e.codePointAt(r)}if(n){let t=e.codePointAt(i-1);for(;t===_p||t===vp;)i--,t=e.codePointAt(i-1)}return i>r?e.slice(r,i):``}function xp(e,t){let n={type:`text`,value:yp(String(t.value))};return e.patch(t,n),e.applyData(t,n)}function Sp(e,t){let n={type:`element`,tagName:`hr`,properties:{},children:[]};return e.patch(t,n),e.applyData(t,n)}var Cp={blockquote:qf,break:Jf,code:Yf,delete:Xf,emphasis:Zf,footnoteReference:Qf,heading:$f,html:ep,imageReference:np,image:rp,inlineCode:ip,linkReference:ap,link:op,listItem:sp,list:up,paragraph:dp,root:fp,strong:pp,table:mp,tableCell:gp,tableRow:hp,text:xp,thematicBreak:Sp,toml:wp,yaml:wp,definition:wp,footnoteDefinition:wp};function wp(){}var Tp=typeof self==`object`?self:globalThis,Ep=(e,t)=>{let n=(t,n)=>(e.set(n,t),t),r=i=>{if(e.has(i))return e.get(i);let[a,o]=t[i];switch(a){case 0:case-1:return n(o,i);case 1:{let e=n([],i);for(let t of o)e.push(r(t));return e}case 2:{let e=n({},i);for(let[t,n]of o)e[r(t)]=r(n);return e}case 3:return n(new Date(o),i);case 4:{let{source:e,flags:t}=o;return n(new RegExp(e,t),i)}case 5:{let e=n(new Map,i);for(let[t,n]of o)e.set(r(t),r(n));return e}case 6:{let e=n(new Set,i);for(let t of o)e.add(r(t));return e}case 7:{let{name:e,message:t}=o;return n(new Tp[e](t),i)}case 8:return n(BigInt(o),i);case`BigInt`:return n(Object(BigInt(o)),i);case`ArrayBuffer`:return n(new Uint8Array(o).buffer,o);case`DataView`:{let{buffer:e}=new Uint8Array(o);return n(new DataView(e),o)}}return n(new Tp[a](o),i)};return r},Dp=e=>Ep(new Map,e)(0),Op=``,{toString:kp}={},{keys:Ap}=Object,jp=e=>{let t=typeof e;if(t!==`object`||!e)return[0,t];let n=kp.call(e).slice(8,-1);switch(n){case`Array`:return[1,Op];case`Object`:return[2,Op];case`Date`:return[3,Op];case`RegExp`:return[4,Op];case`Map`:return[5,Op];case`Set`:return[6,Op];case`DataView`:return[1,n]}return n.includes(`Array`)?[1,n]:n.includes(`Error`)?[7,n]:[2,n]},Mp=([e,t])=>e===0&&(t===`function`||t===`symbol`),Np=(e,t,n,r)=>{let i=(e,t)=>{let i=r.push(e)-1;return n.set(t,i),i},a=r=>{if(n.has(r))return n.get(r);let[o,s]=jp(r);switch(o){case 0:{let t=r;switch(s){case`bigint`:o=8,t=r.toString();break;case`function`:case`symbol`:if(e)throw TypeError(`unable to serialize `+s);t=null;break;case`undefined`:return i([-1],r)}return i([o,t],r)}case 1:{if(s){let e=r;return s===`DataView`?e=new Uint8Array(r.buffer):s===`ArrayBuffer`&&(e=new Uint8Array(r)),i([s,[...e]],r)}let e=[],t=i([o,e],r);for(let t of r)e.push(a(t));return t}case 2:{if(s)switch(s){case`BigInt`:return i([s,r.toString()],r);case`Boolean`:case`Number`:case`String`:return i([s,r.valueOf()],r)}if(t&&`toJSON`in r)return a(r.toJSON());let n=[],c=i([o,n],r);for(let t of Ap(r))(e||!Mp(jp(r[t])))&&n.push([a(t),a(r[t])]);return c}case 3:return i([o,r.toISOString()],r);case 4:{let{source:e,flags:t}=r;return i([o,{source:e,flags:t}],r)}case 5:{let t=[],n=i([o,t],r);for(let[n,i]of r)(e||!(Mp(jp(n))||Mp(jp(i))))&&t.push([a(n),a(i)]);return n}case 6:{let t=[],n=i([o,t],r);for(let n of r)(e||!Mp(jp(n)))&&t.push(a(n));return n}}let{message:c}=r;return i([o,{name:s,message:c}],r)};return a},Pp=(e,{json:t,lossy:n}={})=>{let r=[];return Np(!(t||n),!!t,new Map,r)(e),r},Fp=typeof structuredClone==`function`?(e,t)=>t&&(`json`in t||`lossy`in t)?Dp(Pp(e,t)):structuredClone(e):(e,t)=>Dp(Pp(e,t));function Ip(e,t){let n=[{type:`text`,value:`↩`}];return t>1&&n.push({type:`element`,tagName:`sup`,properties:{},children:[{type:`text`,value:String(t)}]}),n}function Lp(e,t){return`Back to reference `+(e+1)+(t>1?`-`+t:``)}function Rp(e){let t=typeof e.options.clobberPrefix==`string`?e.options.clobberPrefix:`user-content-`,n=e.options.footnoteBackContent||Ip,r=e.options.footnoteBackLabel||Lp,i=e.options.footnoteLabel||`Footnotes`,a=e.options.footnoteLabelTagName||`h2`,o=e.options.footnoteLabelProperties||{className:[`sr-only`]},s=[],c=-1;for(;++c<e.footnoteOrder.length;){let i=e.footnoteById.get(e.footnoteOrder[c]);if(!i)continue;let a=e.all(i),o=String(i.identifier).toUpperCase(),l=yu(o.toLowerCase()),u=0,d=[],f=e.footnoteCounts.get(o);for(;f!==void 0&&++u<=f;){d.length>0&&d.push({type:`text`,value:` `});let e=typeof n==`string`?n:n(c,u);typeof e==`string`&&(e={type:`text`,value:e}),d.push({type:`element`,tagName:`a`,properties:{href:`#`+t+`fnref-`+l+(u>1?`-`+u:``),dataFootnoteBackref:``,ariaLabel:typeof r==`string`?r:r(c,u),className:[`data-footnote-backref`]},children:Array.isArray(e)?e:[e]})}let p=a[a.length-1];if(p&&p.type===`element`&&p.tagName===`p`){let e=p.children[p.children.length-1];e&&e.type===`text`?e.value+=` `:p.children.push({type:`text`,value:` `}),p.children.push(...d)}else a.push(...d);let m={type:`element`,tagName:`li`,properties:{id:t+`fn-`+l},children:e.wrap(a,!0)};e.patch(i,m),s.push(m)}if(s.length!==0)return{type:`element`,tagName:`section`,properties:{dataFootnotes:!0,className:[`footnotes`]},children:[{type:`element`,tagName:a,properties:{...Fp(o),id:`footnote-label`},children:[{type:`text`,value:i}]},{type:`text`,value:`
|
|
53
|
-
`},{type:`element`,tagName:`ol`,properties:{},children:e.wrap(s,!0)},{type:`text`,value:`
|
|
54
|
-
`}]}}var zp=(function(e){if(e==null)return Wp;if(typeof e==`function`)return Up(e);if(typeof e==`object`)return Array.isArray(e)?Bp(e):Vp(e);if(typeof e==`string`)return Hp(e);throw Error(`Expected function, string, or object as test`)});function Bp(e){let t=[],n=-1;for(;++n<e.length;)t[n]=zp(e[n]);return Up(r);function r(...e){let n=-1;for(;++n<t.length;)if(t[n].apply(this,e))return!0;return!1}}function Vp(e){let t=e;return Up(n);function n(n){let r=n,i;for(i in e)if(r[i]!==t[i])return!1;return!0}}function Hp(e){return Up(t);function t(t){return t&&t.type===e}}function Up(e){return t;function t(t,n,r){return!!(Gp(t)&&e.call(this,t,typeof n==`number`?n:void 0,r||void 0))}}function Wp(){return!0}function Gp(e){return typeof e==`object`&&!!e&&`type`in e}function Kp(e){return e}var qp=[];function Jp(e,t,n,r){let i;typeof t==`function`&&typeof n!=`function`?(r=n,n=t):i=t;let a=zp(i),o=r?-1:1;s(e,void 0,[])();function s(e,i,c){let l=e&&typeof e==`object`?e:{};if(typeof l.type==`string`){let t=typeof l.tagName==`string`?l.tagName:typeof l.name==`string`?l.name:void 0;Object.defineProperty(u,`name`,{value:`node (`+Kp(e.type+(t?`<`+t+`>`:``))+`)`})}return u;function u(){let l=qp,u,d,f;if((!t||a(e,i,c[c.length-1]||void 0))&&(l=Yp(n(e,c)),l[0]===!1))return l;if(`children`in e&&e.children){let t=e;if(t.children&&l[0]!==`skip`)for(d=(r?t.children.length:-1)+o,f=c.concat(t);d>-1&&d<t.children.length;){let e=t.children[d];if(u=s(e,d,f)(),u[0]===!1)return u;d=typeof u[1]==`number`?u[1]:d+o}}return l}}}function Yp(e){return Array.isArray(e)?e:typeof e==`number`?[!0,e]:e==null?qp:[e]}function Xp(e,t,n,r){let i,a,o;typeof t==`function`&&typeof n!=`function`?(a=void 0,o=t,i=n):(a=t,o=n,i=r),Jp(e,a,s,i);function s(e,t){let n=t[t.length-1],r=n?n.children.indexOf(e):void 0;return o(e,r,n)}}var Zp={}.hasOwnProperty,Qp={};function $p(e,t){let n=t||Qp,r=new Map,i=new Map,a={all:s,applyData:tm,definitionById:r,footnoteById:i,footnoteCounts:new Map,footnoteOrder:[],handlers:{...Cp,...n.handlers},one:o,options:n,patch:em,wrap:rm};return Xp(e,function(e){if(e.type===`definition`||e.type===`footnoteDefinition`){let t=e.type===`definition`?r:i,n=String(e.identifier).toUpperCase();t.has(n)||t.set(n,e)}}),a;function o(e,t){let n=e.type,r=a.handlers[n];if(Zp.call(a.handlers,n)&&r)return r(a,e,t);if(a.options.passThrough&&a.options.passThrough.includes(n)){if(`children`in e){let{children:t,...n}=e,r=Fp(n);return r.children=a.all(e),r}return Fp(e)}return(a.options.unknownHandler||nm)(a,e,t)}function s(e){let t=[];if(`children`in e){let n=e.children,r=-1;for(;++r<n.length;){let i=a.one(n[r],e);if(i){if(r&&n[r-1].type===`break`&&(!Array.isArray(i)&&i.type===`text`&&(i.value=im(i.value)),!Array.isArray(i)&&i.type===`element`)){let e=i.children[0];e&&e.type===`text`&&(e.value=im(e.value))}Array.isArray(i)?t.push(...i):t.push(i)}}}return t}}function em(e,t){e.position&&(t.position=fl(e))}function tm(e,t){let n=t;if(e&&e.data){let t=e.data.hName,r=e.data.hChildren,i=e.data.hProperties;typeof t==`string`&&(n.type===`element`?n.tagName=t:n={type:`element`,tagName:t,properties:{},children:`children`in n?n.children:[n]}),n.type===`element`&&i&&Object.assign(n.properties,Fp(i)),`children`in n&&n.children&&r!=null&&(n.children=r)}return n}function nm(e,t){let n=t.data||{},r=`value`in t&&!(Zp.call(n,`hProperties`)||Zp.call(n,`hChildren`))?{type:`text`,value:t.value}:{type:`element`,tagName:`div`,properties:{},children:e.all(t)};return e.patch(t,r),e.applyData(t,r)}function rm(e,t){let n=[],r=-1;for(t&&n.push({type:`text`,value:`
|
|
55
|
-
`});++r<e.length;)r&&n.push({type:`text`,value:`
|
|
56
|
-
`}),n.push(e[r]);return t&&e.length>0&&n.push({type:`text`,value:`
|
|
57
|
-
`}),n}function im(e){let t=0,n=e.charCodeAt(t);for(;n===9||n===32;)t++,n=e.charCodeAt(t);return e.slice(t)}function am(e,t){let n=$p(e,t),r=n.one(e,void 0),i=Rp(n),a=Array.isArray(r)?{type:`root`,children:r}:r||{type:`root`,children:[]};return i&&(`children`in a,a.children.push({type:`text`,value:`
|
|
58
|
-
`},i)),a}function om(e,t){return e&&`run`in e?async function(n,r){let i=am(n,{file:r,...t});await e.run(i,r)}:function(n,r){return am(n,{file:r,...e||t})}}function sm(e){if(e)throw e}var cm=n(((e,t)=>{var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,i=Object.defineProperty,a=Object.getOwnPropertyDescriptor,o=function(e){return typeof Array.isArray==`function`?Array.isArray(e):r.call(e)===`[object Array]`},s=function(e){if(!e||r.call(e)!==`[object Object]`)return!1;var t=n.call(e,`constructor`),i=e.constructor&&e.constructor.prototype&&n.call(e.constructor.prototype,`isPrototypeOf`);if(e.constructor&&!t&&!i)return!1;for(var a in e);return a===void 0||n.call(e,a)},c=function(e,t){i&&t.name===`__proto__`?i(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},l=function(e,t){if(t===`__proto__`){if(!n.call(e,t))return;if(a)return a(e,t).value}return e[t]};t.exports=function e(){var t,n,r,i,a,u,d=arguments[0],f=1,p=arguments.length,m=!1;for(typeof d==`boolean`&&(m=d,d=arguments[1]||{},f=2),(d==null||typeof d!=`object`&&typeof d!=`function`)&&(d={});f<p;++f)if(t=arguments[f],t!=null)for(n in t)r=l(d,n),i=l(t,n),d!==i&&(m&&i&&(s(i)||(a=o(i)))?(a?(a=!1,u=r&&o(r)?r:[]):u=r&&s(r)?r:{},c(d,{name:n,newValue:e(m,u,i)})):i!==void 0&&c(d,{name:n,newValue:i}));return d}}));function lm(e){if(typeof e!=`object`||!e)return!1;let t=Object.getPrototypeOf(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)}function um(){let e=[],t={run:n,use:r};return t;function n(...t){let n=-1,r=t.pop();if(typeof r!=`function`)throw TypeError(`Expected function as last argument, not `+r);i(null,...t);function i(a,...o){let s=e[++n],c=-1;if(a){r(a);return}for(;++c<t.length;)(o[c]===null||o[c]===void 0)&&(o[c]=t[c]);t=o,s?dm(s,i)(...o):r(null,...o)}}function r(n){if(typeof n!=`function`)throw TypeError("Expected `middelware` to be a function, not "+n);return e.push(n),t}}function dm(e,t){let n;return r;function r(...t){let r=e.length>t.length,o;r&&t.push(i);try{o=e.apply(this,t)}catch(e){let t=e;if(r&&n)throw t;return i(t)}r||(o&&o.then&&typeof o.then==`function`?o.then(a,i):o instanceof Error?i(o):a(o))}function i(e,...r){n||(n=!0,t(e,...r))}function a(e){i(null,e)}}var fm={basename:pm,dirname:mm,extname:hm,join:gm,sep:`/`};function pm(e,t){if(t!==void 0&&typeof t!=`string`)throw TypeError(`"ext" argument must be a string`);ym(e);let n=0,r=-1,i=e.length,a;if(t===void 0||t.length===0||t.length>e.length){for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else r<0&&(a=!0,r=i+1);return r<0?``:e.slice(n,r)}if(t===e)return``;let o=-1,s=t.length-1;for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else o<0&&(a=!0,o=i+1),s>-1&&(e.codePointAt(i)===t.codePointAt(s--)?s<0&&(r=i):(s=-1,r=o));return n===r?r=o:r<0&&(r=e.length),e.slice(n,r)}function mm(e){if(ym(e),e.length===0)return`.`;let t=-1,n=e.length,r;for(;--n;)if(e.codePointAt(n)===47){if(r){t=n;break}}else r||=!0;return t<0?e.codePointAt(0)===47?`/`:`.`:t===1&&e.codePointAt(0)===47?`//`:e.slice(0,t)}function hm(e){ym(e);let t=e.length,n=-1,r=0,i=-1,a=0,o;for(;t--;){let s=e.codePointAt(t);if(s===47){if(o){r=t+1;break}continue}n<0&&(o=!0,n=t+1),s===46?i<0?i=t:a!==1&&(a=1):i>-1&&(a=-1)}return i<0||n<0||a===0||a===1&&i===n-1&&i===r+1?``:e.slice(i,n)}function gm(...e){let t=-1,n;for(;++t<e.length;)ym(e[t]),e[t]&&(n=n===void 0?e[t]:n+`/`+e[t]);return n===void 0?`.`:_m(n)}function _m(e){ym(e);let t=e.codePointAt(0)===47,n=vm(e,!t);return n.length===0&&!t&&(n=`.`),n.length>0&&e.codePointAt(e.length-1)===47&&(n+=`/`),t?`/`+n:n}function vm(e,t){let n=``,r=0,i=-1,a=0,o=-1,s,c;for(;++o<=e.length;){if(o<e.length)s=e.codePointAt(o);else if(s===47)break;else s=47;if(s===47){if(!(i===o-1||a===1))if(i!==o-1&&a===2){if(n.length<2||r!==2||n.codePointAt(n.length-1)!==46||n.codePointAt(n.length-2)!==46){if(n.length>2){if(c=n.lastIndexOf(`/`),c!==n.length-1){c<0?(n=``,r=0):(n=n.slice(0,c),r=n.length-1-n.lastIndexOf(`/`)),i=o,a=0;continue}}else if(n.length>0){n=``,r=0,i=o,a=0;continue}}t&&(n=n.length>0?n+`/..`:`..`,r=2)}else n.length>0?n+=`/`+e.slice(i+1,o):n=e.slice(i+1,o),r=o-i-1;i=o,a=0}else s===46&&a>-1?a++:a=-1}return n}function ym(e){if(typeof e!=`string`)throw TypeError(`Path must be a string. Received `+JSON.stringify(e))}var bm={cwd:xm};function xm(){return`/`}function Sm(e){return!!(typeof e==`object`&&e&&`href`in e&&e.href&&`protocol`in e&&e.protocol&&e.auth===void 0)}function Cm(e){if(typeof e==`string`)e=new URL(e);else if(!Sm(e)){let t=TypeError('The "path" argument must be of type string or an instance of URL. Received `'+e+"`");throw t.code=`ERR_INVALID_ARG_TYPE`,t}if(e.protocol!==`file:`){let e=TypeError(`The URL must be of scheme file`);throw e.code=`ERR_INVALID_URL_SCHEME`,e}return wm(e)}function wm(e){if(e.hostname!==``){let e=TypeError(`File URL host must be "localhost" or empty on darwin`);throw e.code=`ERR_INVALID_FILE_URL_HOST`,e}let t=e.pathname,n=-1;for(;++n<t.length;)if(t.codePointAt(n)===37&&t.codePointAt(n+1)===50){let e=t.codePointAt(n+2);if(e===70||e===102){let e=TypeError(`File URL path must not include encoded / characters`);throw e.code=`ERR_INVALID_FILE_URL_PATH`,e}}return decodeURIComponent(t)}var Tm=[`history`,`path`,`basename`,`stem`,`extname`,`dirname`],Em=class{constructor(e){let t;t=e?Sm(e)?{path:e}:typeof e==`string`||Am(e)?{value:e}:e:{},this.cwd=`cwd`in t?``:bm.cwd(),this.data={},this.history=[],this.messages=[],this.value,this.map,this.result,this.stored;let n=-1;for(;++n<Tm.length;){let e=Tm[n];e in t&&t[e]!==void 0&&t[e]!==null&&(this[e]=e===`history`?[...t[e]]:t[e])}let r;for(r in t)Tm.includes(r)||(this[r]=t[r])}get basename(){return typeof this.path==`string`?fm.basename(this.path):void 0}set basename(e){Om(e,`basename`),Dm(e,`basename`),this.path=fm.join(this.dirname||``,e)}get dirname(){return typeof this.path==`string`?fm.dirname(this.path):void 0}set dirname(e){km(this.basename,`dirname`),this.path=fm.join(e||``,this.basename)}get extname(){return typeof this.path==`string`?fm.extname(this.path):void 0}set extname(e){if(Dm(e,`extname`),km(this.dirname,`extname`),e){if(e.codePointAt(0)!==46)throw Error("`extname` must start with `.`");if(e.includes(`.`,1))throw Error("`extname` cannot contain multiple dots")}this.path=fm.join(this.dirname,this.stem+(e||``))}get path(){return this.history[this.history.length-1]}set path(e){Sm(e)&&(e=Cm(e)),Om(e,`path`),this.path!==e&&this.history.push(e)}get stem(){return typeof this.path==`string`?fm.basename(this.path,this.extname):void 0}set stem(e){Om(e,`stem`),Dm(e,`stem`),this.path=fm.join(this.dirname||``,e+(this.extname||``))}fail(e,t,n){let r=this.message(e,t,n);throw r.fatal=!0,r}info(e,t,n){let r=this.message(e,t,n);return r.fatal=void 0,r}message(e,t,n){let r=new X(e,t,n);return this.path&&(r.name=this.path+`:`+r.name,r.file=this.path),r.fatal=!1,this.messages.push(r),r}toString(e){return this.value===void 0?``:typeof this.value==`string`?this.value:new TextDecoder(e||void 0).decode(this.value)}};function Dm(e,t){if(e&&e.includes(fm.sep))throw Error("`"+t+"` cannot be a path: did not expect `"+fm.sep+"`")}function Om(e,t){if(!e)throw Error("`"+t+"` cannot be empty")}function km(e,t){if(!e)throw Error("Setting `"+t+"` requires `path` to be set too")}function Am(e){return!!(e&&typeof e==`object`&&`byteLength`in e&&`byteOffset`in e)}var jm=(function(e){let t=this.constructor.prototype,n=t[e],r=function(){return n.apply(r,arguments)};return Object.setPrototypeOf(r,t),r}),Mm=t(cm(),1),Nm={}.hasOwnProperty,Pm=new class e extends jm{constructor(){super(`copy`),this.Compiler=void 0,this.Parser=void 0,this.attachers=[],this.compiler=void 0,this.freezeIndex=-1,this.frozen=void 0,this.namespace={},this.parser=void 0,this.transformers=um()}copy(){let t=new e,n=-1;for(;++n<this.attachers.length;){let e=this.attachers[n];t.use(...e)}return t.data((0,Mm.default)(!0,{},this.namespace)),t}data(e,t){return typeof e==`string`?arguments.length===2?(Lm(`data`,this.frozen),this.namespace[e]=t,this):Nm.call(this.namespace,e)&&this.namespace[e]||void 0:e?(Lm(`data`,this.frozen),this.namespace=e,this):this.namespace}freeze(){if(this.frozen)return this;let e=this;for(;++this.freezeIndex<this.attachers.length;){let[t,...n]=this.attachers[this.freezeIndex];if(n[0]===!1)continue;n[0]===!0&&(n[0]=void 0);let r=t.call(e,...n);typeof r==`function`&&this.transformers.use(r)}return this.frozen=!0,this.freezeIndex=1/0,this}parse(e){this.freeze();let t=Bm(e),n=this.parser||this.Parser;return Fm(`parse`,n),n(String(t),t)}process(e,t){let n=this;return this.freeze(),Fm(`process`,this.parser||this.Parser),Im(`process`,this.compiler||this.Compiler),t?r(void 0,t):new Promise(r);function r(r,i){let a=Bm(e),o=n.parse(a);n.run(o,a,function(e,t,r){if(e||!t||!r)return s(e);let i=t,a=n.stringify(i,r);Hm(a)?r.value=a:r.result=a,s(e,r)});function s(e,n){e||!n?i(e):r?r(n):t(void 0,n)}}}processSync(e){let t=!1,n;return this.freeze(),Fm(`processSync`,this.parser||this.Parser),Im(`processSync`,this.compiler||this.Compiler),this.process(e,r),zm(`processSync`,`process`,t),n;function r(e,r){t=!0,sm(e),n=r}}run(e,t,n){Rm(e),this.freeze();let r=this.transformers;return!n&&typeof t==`function`&&(n=t,t=void 0),n?i(void 0,n):new Promise(i);function i(i,a){let o=Bm(t);r.run(e,o,s);function s(t,r,o){let s=r||e;t?a(t):i?i(s):n(void 0,s,o)}}}runSync(e,t){let n=!1,r;return this.run(e,t,i),zm(`runSync`,`run`,n),r;function i(e,t){sm(e),r=t,n=!0}}stringify(e,t){this.freeze();let n=Bm(t),r=this.compiler||this.Compiler;return Im(`stringify`,r),Rm(e),r(e,n)}use(e,...t){let n=this.attachers,r=this.namespace;if(Lm(`use`,this.frozen),e!=null)if(typeof e==`function`)s(e,t);else if(typeof e==`object`)Array.isArray(e)?o(e):a(e);else throw TypeError("Expected usable value, not `"+e+"`");return this;function i(e){if(typeof e==`function`)s(e,[]);else if(typeof e==`object`)if(Array.isArray(e)){let[t,...n]=e;s(t,n)}else a(e);else throw TypeError("Expected usable value, not `"+e+"`")}function a(e){if(!(`plugins`in e)&&!(`settings`in e))throw Error("Expected usable value but received an empty preset, which is probably a mistake: presets typically come with `plugins` and sometimes with `settings`, but this has neither");o(e.plugins),e.settings&&(r.settings=(0,Mm.default)(!0,r.settings,e.settings))}function o(e){let t=-1;if(e!=null)if(Array.isArray(e))for(;++t<e.length;){let n=e[t];i(n)}else throw TypeError("Expected a list of plugins, not `"+e+"`")}function s(e,t){let r=-1,i=-1;for(;++r<n.length;)if(n[r][0]===e){i=r;break}if(i===-1)n.push([e,...t]);else if(t.length>0){let[r,...a]=t,o=n[i][1];lm(o)&&lm(r)&&(r=(0,Mm.default)(!0,o,r)),n[i]=[e,r,...a]}}}}().freeze();function Fm(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `parser`")}function Im(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `compiler`")}function Lm(e,t){if(t)throw Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function Rm(e){if(!lm(e)||typeof e.type!=`string`)throw TypeError("Expected node, got `"+e+"`")}function zm(e,t,n){if(!n)throw Error("`"+e+"` finished async. Use `"+t+"` instead")}function Bm(e){return Vm(e)?e:new Em(e)}function Vm(e){return!!(e&&typeof e==`object`&&`message`in e&&`messages`in e)}function Hm(e){return typeof e==`string`||Um(e)}function Um(e){return!!(e&&typeof e==`object`&&`byteLength`in e&&`byteOffset`in e)}var Wm=[],Gm={allowDangerousHtml:!0},Km=/^(https?|ircs?|mailto|xmpp)$/i,qm=[{from:`astPlugins`,id:`remove-buggy-html-in-markdown-parser`},{from:`allowDangerousHtml`,id:`remove-buggy-html-in-markdown-parser`},{from:`allowNode`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`allowElement`},{from:`allowedTypes`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`allowedElements`},{from:`className`,id:`remove-classname`},{from:`disallowedTypes`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`disallowedElements`},{from:`escapeHtml`,id:`remove-buggy-html-in-markdown-parser`},{from:`includeElementIndex`,id:`#remove-includeelementindex`},{from:`includeNodeIndex`,id:`change-includenodeindex-to-includeelementindex`},{from:`linkTarget`,id:`remove-linktarget`},{from:`plugins`,id:`change-plugins-to-remarkplugins`,to:`remarkPlugins`},{from:`rawSourcePos`,id:`#remove-rawsourcepos`},{from:`renderers`,id:`change-renderers-to-components`,to:`components`},{from:`source`,id:`change-source-to-children`,to:`children`},{from:`sourcePos`,id:`#remove-sourcepos`},{from:`transformImageUri`,id:`#add-urltransform`,to:`urlTransform`},{from:`transformLinkUri`,id:`#add-urltransform`,to:`urlTransform`}];function Jm(e){let t=Ym(e),n=Xm(e);return Zm(t.runSync(t.parse(n),n),e)}function Ym(e){let t=e.rehypePlugins||Wm,n=e.remarkPlugins||Wm,r=e.remarkRehypeOptions?{...e.remarkRehypeOptions,...Gm}:Gm;return Pm().use(Kf).use(n).use(om,r).use(t)}function Xm(e){let t=e.children||``,n=new Em;return typeof t==`string`?n.value=t:``+t,n}function Zm(e,t){let n=t.allowedElements,r=t.allowElement,i=t.components,a=t.disallowedElements,o=t.skipHtml,s=t.unwrapDisallowed,c=t.urlTransform||Qm;for(let e of qm)Object.hasOwn(t,e.from)&&``+e.from+(e.to?"use `"+e.to+"` instead":`remove it`)+e.id;return Xp(e,l),wl(e,{Fragment:F.Fragment,components:i,ignoreInvalidStyle:!0,jsx:F.jsx,jsxs:F.jsxs,passKeys:!0,passNode:!0});function l(e,t,i){if(e.type===`raw`&&i&&typeof t==`number`)return o?i.children.splice(t,1):i.children[t]={type:`text`,value:e.value},t;if(e.type===`element`){let t;for(t in Kl)if(Object.hasOwn(Kl,t)&&Object.hasOwn(e.properties,t)){let n=e.properties[t],r=Kl[t];(r===null||r.includes(e.tagName))&&(e.properties[t]=c(String(n||``),t,e))}}if(e.type===`element`){let o=n?!n.includes(e.tagName):a?a.includes(e.tagName):!1;if(!o&&r&&typeof t==`number`&&(o=!r(e,t,i)),o&&i&&typeof t==`number`)return s&&e.children?i.children.splice(t,1,...e.children):i.children.splice(t,1),t}}}function Qm(e){let t=e.indexOf(`:`),n=e.indexOf(`?`),r=e.indexOf(`#`),i=e.indexOf(`/`);return t===-1||i!==-1&&t>i||n!==-1&&t>n||r!==-1&&t>r||Km.test(e.slice(0,t))?e:``}var $m={created:(0,F.jsx)(_e,{className:`size-3.5`}),validated:(0,F.jsx)(O,{className:`size-3.5`}),deployed:(0,F.jsx)(ee,{className:`size-3.5`}),rejected:(0,F.jsx)(h,{className:`size-3.5`}),rolled_back:(0,F.jsx)(b,{className:`size-3.5`})},eh={created:`outline`,validated:`secondary`,deployed:`default`,rejected:`destructive`,rolled_back:`destructive`};function th(e){let t=e.match(/^---\s*\n([\s\S]*?)\n---\s*\n([\s\S]*)$/);if(!t)return{meta:{},body:e};let n={};for(let e of t[1].split(`
|
|
59
|
-
`)){let t=e.indexOf(`:`);if(t>0){let r=e.slice(0,t).trim(),i=e.slice(t+1).trim();r&&i&&(n[r]=i)}}return{meta:n,body:t[2]}}function nh({meta:e}){let t=Object.entries(e);return t.length===0?null:(0,F.jsx)(`div`,{className:`grid grid-cols-[auto_1fr] gap-x-3 gap-y-1 text-xs`,children:t.map(([e,t])=>(0,F.jsxs)(`div`,{className:`contents`,children:[(0,F.jsx)(`span`,{className:`font-medium text-muted-foreground capitalize`,children:e}),(0,F.jsx)(`span`,{className:`text-foreground truncate`,children:t})]},e))})}function rh({label:e,text:t,variant:n}){let{meta:r,body:i}=th(t),a=Object.keys(r).length>0;return(0,F.jsxs)(`div`,{className:`flex-1 min-w-0 space-y-3`,children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,F.jsx)(se,{className:`size-3.5 text-muted-foreground`}),(0,F.jsx)(`span`,{className:`text-xs font-medium text-muted-foreground uppercase tracking-wider`,children:e}),n===`proposed`&&(0,F.jsx)(P,{variant:`secondary`,className:`text-[10px]`,children:`New`})]}),a&&(0,F.jsx)(`div`,{className:`rounded-md border bg-muted/30 p-3`,children:(0,F.jsx)(nh,{meta:r})}),(0,F.jsx)(`div`,{className:`skill-markdown rounded-md border bg-card p-4`,children:(0,F.jsx)(Jm,{children:i})})]})}function ih(e,t){if(typeof t==`boolean`)return t?(0,F.jsx)(We,{className:`size-3.5 text-emerald-500 inline`}):(0,F.jsx)(h,{className:`size-3.5 text-red-500 inline`});if(typeof t==`number`){if(e.includes(`rate`)||e.includes(`change`)||t>=-1&&t<=1&&e!==`count`){let n=(t*100).toFixed(1);return(0,F.jsxs)(`span`,{className:`font-mono`,children:[t>0&&e.includes(`change`)?`+`:``,n,`%`]})}return(0,F.jsx)(`span`,{className:`font-mono`,children:t})}return t==null?(0,F.jsx)(`span`,{className:`text-muted-foreground`,children:`--`}):typeof t==`string`?(0,F.jsx)(`span`,{children:t}):Array.isArray(t)?t.length===0?(0,F.jsx)(`span`,{className:`text-muted-foreground italic`,children:`none`}):(0,F.jsxs)(`span`,{className:`font-mono`,children:[t.length,` entries`]}):typeof t==`object`?(0,F.jsx)(`span`,{className:`font-mono`,children:`1 entry`}):(0,F.jsx)(`span`,{children:String(t)})}function ah({entry:e}){let t=e.entry,n=t?.query??e.query??e.prompt??e.input??e.text,r=t?.should_trigger??e.should_trigger,i=t?.invocation_type??e.invocation_type,a=e.before_pass??e.before??e.original_triggered??e.baseline,o=e.after_pass??e.after??e.triggered??e.result,s=e.passed??e.matched,c=typeof o==`boolean`?o:typeof s==`boolean`?s:null;return(0,F.jsxs)(`div`,{className:`flex items-start gap-2 text-xs py-1.5 border-b border-border/50 last:border-0`,children:[c===null?(0,F.jsx)(_e,{className:`size-3.5 text-muted-foreground shrink-0 mt-0.5`}):c?(0,F.jsx)(We,{className:`size-3.5 text-emerald-500 shrink-0 mt-0.5`}):(0,F.jsx)(h,{className:`size-3.5 text-red-500 shrink-0 mt-0.5`}),(0,F.jsx)(`span`,{className:`flex-1 min-w-0 line-clamp-2`,children:n?String(n):JSON.stringify(e)}),(0,F.jsxs)(`div`,{className:`flex items-center gap-1.5 shrink-0`,children:[typeof a==`boolean`&&typeof o==`boolean`&&(0,F.jsxs)(`span`,{className:`text-[10px] text-muted-foreground font-mono`,children:[a?`pass`:`fail`,` → `,o?`pass`:`fail`]}),r!==void 0&&(0,F.jsxs)(P,{variant:`secondary`,className:`text-[9px]`,children:[`expect: `,String(r)]}),i!=null&&(0,F.jsx)(P,{variant:`secondary`,className:`text-[9px]`,children:String(i)})]})]})}function oh({validation:e}){let{improved:t,before_pass_rate:n,after_pass_rate:r,net_change:i,regressions:a,new_passes:o,per_entry_results:s,...c}=e,l=Array.isArray(a)?a:[],u=Array.isArray(o)?o:[],d=Array.isArray(s)?s:[];return(0,F.jsxs)(`div`,{className:`rounded-md border bg-muted/30 p-3 space-y-3`,children:[(0,F.jsxs)(`p`,{className:`text-xs font-medium text-muted-foreground`,children:[`Validation Results`,(0,F.jsx)(`span`,{className:`font-normal text-muted-foreground/60 ml-1.5`,children:`— Before/after comparison from eval tests`})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-3 flex-wrap`,children:[t!==void 0&&(0,F.jsx)(P,{variant:t?`default`:`destructive`,className:`text-[10px]`,children:t?`Improved`:`Regressed`}),typeof n==`number`&&typeof r==`number`&&(0,F.jsxs)(`span`,{className:`text-xs font-mono text-muted-foreground`,children:[(n*100).toFixed(1),`% → `,(r*100).toFixed(1),`%`]}),typeof i==`number`&&(0,F.jsxs)(`span`,{className:`text-xs font-mono font-semibold ${i>0?`text-emerald-600 dark:text-emerald-400`:`text-red-500`}`,children:[i>0?`+`:``,(i*100).toFixed(1),`%`]})]}),u.length>0&&(0,F.jsxs)(`div`,{children:[(0,F.jsxs)(`p`,{className:`text-[11px] font-medium text-emerald-600 dark:text-emerald-400 mb-1`,children:[`New Passes (`,u.length,`)`]}),(0,F.jsx)(`div`,{className:`rounded border bg-card p-2`,children:u.map((e,t)=>(0,F.jsx)(ah,{entry:typeof e==`object`&&e?e:{value:e}},t))})]}),l.length>0&&(0,F.jsxs)(`div`,{children:[(0,F.jsxs)(`p`,{className:`text-[11px] font-medium text-red-500 mb-1`,children:[`Regressions (`,l.length,`)`]}),(0,F.jsx)(`div`,{className:`rounded border border-red-200 dark:border-red-900/50 bg-card p-2`,children:l.map((e,t)=>(0,F.jsx)(ah,{entry:typeof e==`object`&&e?e:{value:e}},t))})]}),d.length>0&&(0,F.jsx)(sh,{entries:d}),Object.keys(c).length>0&&(0,F.jsx)(`div`,{className:`grid grid-cols-[auto_1fr] gap-x-3 gap-y-1 text-xs`,children:Object.entries(c).map(([e,t])=>(0,F.jsxs)(`div`,{className:`contents`,children:[(0,F.jsx)(`span`,{className:`font-mono text-muted-foreground`,children:e}),(0,F.jsx)(`span`,{className:`text-foreground`,children:ih(e,t)})]},e))})]})}function sh({entries:e}){let[t,n]=(0,M.useState)(!1),r=e.filter(e=>{if(typeof e!=`object`||!e)return!1;let t=e;return t.passed===!0||t.matched===!0||t.triggered===!0||t.after===!0||t.result===!0}).length,i=t?e:e.slice(0,5);return(0,F.jsxs)(`div`,{children:[(0,F.jsxs)(`div`,{className:`flex items-center justify-between mb-1`,children:[(0,F.jsxs)(`p`,{className:`text-[11px] font-medium text-muted-foreground`,children:[`Individual Test Cases (`,r,`/`,e.length,` passed)`]}),e.length>5&&(0,F.jsx)(`button`,{type:`button`,onClick:()=>n(!t),className:`text-[10px] text-primary hover:underline`,children:t?`Show less`:`Show all ${e.length}`})]}),(0,F.jsx)(`div`,{className:`h-1.5 rounded-full bg-muted overflow-hidden mb-2`,children:(0,F.jsx)(`div`,{className:`h-full rounded-full bg-emerald-500 transition-all`,style:{width:`${e.length>0?r/e.length*100:0}%`}})}),(0,F.jsx)(`div`,{className:`rounded border bg-card p-2 max-h-[300px] overflow-y-auto`,children:i.map((e,t)=>(0,F.jsx)(ah,{entry:typeof e==`object`&&e?e:{value:e}},t))})]})}function ch(e){if(!e.validation)return null;let t=e.validation.after_pass_rate;return typeof t==`number`?t:null}function lh({prev:e,curr:t}){if(e===null||t===null)return null;let n=t-e;if(n===0)return null;let r=(n*100).toFixed(1),i=n>0;return(0,F.jsxs)(`span`,{className:`text-[10px] font-mono font-semibold ${i?`text-emerald-600 dark:text-emerald-400`:`text-red-500`}`,children:[i?`+`:``,r,`% vs previous`]})}function uh({evalSet:e}){let[t,n]=(0,M.useState)(!1),r=e.filter(e=>(e.passed??e.result)===!0).length;return(0,F.jsxs)(`div`,{className:`rounded-md border bg-muted/30 p-3 space-y-2`,children:[(0,F.jsxs)(`button`,{type:`button`,onClick:()=>n(!t),className:`flex items-center gap-1.5 w-full text-left`,children:[t?(0,F.jsx)(Te,{className:`size-3.5 text-muted-foreground shrink-0`}):(0,F.jsx)(Be,{className:`size-3.5 text-muted-foreground shrink-0`}),(0,F.jsx)(C,{className:`size-3.5 text-muted-foreground`}),(0,F.jsxs)(`span`,{className:`text-xs font-medium text-muted-foreground`,children:[`Eval Set (`,r,`/`,e.length,` passed)`]})]}),t&&(0,F.jsx)(`div`,{className:`space-y-1`,children:e.map((e,t)=>{let n=e.query??e.prompt??e.input,r=e.expected??e.should_trigger,i=e.passed??e.result;return(0,F.jsxs)(`div`,{className:`flex items-start gap-2 text-xs py-1 border-b border-border/50 last:border-0`,children:[typeof i==`boolean`?i?(0,F.jsx)(We,{className:`size-3.5 text-emerald-500 shrink-0 mt-0.5`}):(0,F.jsx)(h,{className:`size-3.5 text-red-500 shrink-0 mt-0.5`}):(0,F.jsx)(_e,{className:`size-3.5 text-muted-foreground shrink-0 mt-0.5`}),(0,F.jsx)(`span`,{className:`flex-1 min-w-0 line-clamp-2`,children:String(n??JSON.stringify(e))}),r!==void 0&&(0,F.jsxs)(P,{variant:`secondary`,className:`text-[9px] shrink-0`,children:[`expect: `,String(r)]})]},t)})})]})}function dh({entry:e,roundLabel:t,roundStatus:n,prevPassRate:r,currPassRate:i}){let a=n!==`single`;return(0,F.jsxs)(L,{className:n===`final`?`border-primary/50 shadow-sm`:void 0,children:[(0,F.jsx)(R,{className:`pb-3`,children:(0,F.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,F.jsxs)(z,{className:`text-sm flex items-center gap-2`,children:[(0,F.jsx)(te,{className:`size-4 text-muted-foreground`}),`Evidence: `,e.target,a&&t&&(0,F.jsx)(`span`,{className:`text-[10px] font-mono text-muted-foreground`,children:t}),n===`final`&&(0,F.jsx)(P,{variant:`default`,className:`text-[10px]`,children:`Final`})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-2`,children:[a&&(0,F.jsx)(lh,{prev:r,curr:i}),(0,F.jsx)(P,{variant:`secondary`,className:`text-[10px]`,children:e.stage}),e.confidence!==null&&(0,F.jsxs)(P,{variant:e.confidence>=.8?`default`:e.confidence>=.5?`secondary`:`destructive`,className:`text-[10px] font-mono`,children:[Hn(e.confidence),` confidence`]}),(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:Wn(e.timestamp)})]})]})}),(0,F.jsxs)(B,{className:`space-y-4`,children:[e.rationale&&(0,F.jsxs)(`div`,{className:`rounded-md border-l-2 border-primary/40 bg-primary/5 px-3 py-2`,children:[(0,F.jsx)(`p`,{className:`text-xs font-medium text-muted-foreground mb-1`,children:`Rationale`}),(0,F.jsx)(`p`,{className:`text-sm leading-relaxed`,children:e.rationale})]}),e.details&&(0,F.jsx)(`p`,{className:`text-xs text-muted-foreground leading-relaxed`,children:e.details}),(e.original_text||e.proposed_text)&&(0,F.jsxs)(`div`,{className:`grid grid-cols-1 gap-4 lg:grid-cols-2`,children:[e.original_text&&(0,F.jsx)(rh,{label:`Original`,text:e.original_text,variant:`original`}),e.proposed_text&&(0,F.jsx)(rh,{label:`Proposed`,text:e.proposed_text,variant:`proposed`})]}),e.eval_set&&e.eval_set.length>0&&(0,F.jsx)(uh,{evalSet:e.eval_set}),e.validation&&Object.keys(e.validation).length>0&&(0,F.jsx)(oh,{validation:e.validation})]})]})}function fh({entry:e,roundLabel:t,onExpand:n}){let r=ch(e),i=e.validation?.improved;return(0,F.jsxs)(`button`,{type:`button`,onClick:n,className:`flex items-center gap-3 w-full rounded-lg border border-dashed px-4 py-3 text-left hover:bg-accent/50 transition-colors`,children:[(0,F.jsx)(Be,{className:`size-4 text-muted-foreground shrink-0`}),(0,F.jsx)(te,{className:`size-3.5 text-muted-foreground shrink-0`}),(0,F.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:e.target}),(0,F.jsx)(`span`,{className:`text-[10px] font-mono text-muted-foreground`,children:t}),(0,F.jsxs)(`div`,{className:`flex items-center gap-2 ml-auto shrink-0`,children:[r!==null&&(0,F.jsxs)(`span`,{className:`text-[10px] font-mono text-muted-foreground`,children:[(r*100).toFixed(1),`% pass rate`]}),typeof i==`boolean`&&(0,F.jsx)(P,{variant:i?`default`:`destructive`,className:`text-[9px]`,children:i?`Improved`:`Regressed`}),(0,F.jsx)(P,{variant:`secondary`,className:`text-[10px]`,children:e.stage}),(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:Wn(e.timestamp)})]})]})}function ph({proposalId:e,evolution:t,evidence:n}){let r=(0,M.useMemo)(()=>t.filter(t=>t.proposal_id===e).sort((e,t)=>new Date(e.timestamp).getTime()-new Date(t.timestamp).getTime()),[t,e]),i=(0,M.useMemo)(()=>n.filter(t=>t.proposal_id===e).sort((e,t)=>new Date(e.timestamp).getTime()-new Date(t.timestamp).getTime()),[n,e]),[a,o]=(0,M.useState)(new Set),s=e=>{o(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},c=(0,M.useMemo)(()=>{for(let e=r.length-1;e>=0;e--)if(r[e].eval_snapshot)return r[e].eval_snapshot;return null},[r]),{proposalEntries:l,validationsByTarget:u}=(0,M.useMemo)(()=>{let e=[],t=new Map;for(let n of i)if(n.stage!==`validated`)e.push(n);else{let e=n.target;t.has(e)||t.set(e,[]),t.get(e).push(n)}return{proposalEntries:e,validationsByTarget:t}},[i]);return(0,F.jsxs)(`div`,{className:`space-y-4`,children:[(0,F.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded-lg border border-primary/20 bg-primary/5 px-3.5 py-2.5`,children:[(0,F.jsx)(ae,{className:`size-4 text-primary/60 shrink-0 mt-0.5`}),(0,F.jsx)(`p`,{className:`text-xs text-muted-foreground leading-relaxed`,children:`This view shows the complete evidence trail for a skill evolution proposal — how the skill was changed, the eval test results before and after, and whether the change improved performance.`})]}),(0,F.jsxs)(L,{children:[(0,F.jsx)(R,{className:`pb-3`,children:(0,F.jsxs)(z,{className:`text-sm flex items-center gap-2`,children:[(0,F.jsx)(`span`,{children:`Proposal Journey`}),(0,F.jsxs)(`span`,{className:`font-mono text-xs text-muted-foreground`,children:[`#`,e.slice(0,12)]})]})}),(0,F.jsxs)(B,{className:`space-y-3`,children:[(0,F.jsx)(`div`,{className:`flex items-center gap-2 flex-wrap`,children:r.map((e,t)=>(0,F.jsxs)(`div`,{className:`contents`,children:[t>0&&(0,F.jsx)(ge,{className:`size-3 text-muted-foreground/50 shrink-0`}),(0,F.jsxs)(`div`,{className:`flex items-center gap-1.5 rounded-md border px-2.5 py-1.5 bg-card`,children:[$m[e.action],(0,F.jsx)(P,{variant:eh[e.action]??`secondary`,className:`text-[10px] capitalize`,children:e.action.replace(`_`,` `)}),(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:Wn(e.timestamp)})]})]},`${e.action}-${t}`))}),c&&(0,F.jsxs)(`div`,{className:`flex items-center gap-3 rounded-md border bg-muted/20 px-3 py-2`,children:[typeof c.net_change==`number`&&(0,F.jsxs)(`div`,{className:`flex items-center gap-1`,children:[c.net_change>0?(0,F.jsx)(k,{className:`size-3.5 text-emerald-500`}):(0,F.jsx)(De,{className:`size-3.5 text-red-500`}),(0,F.jsxs)(`span`,{className:`text-sm font-semibold font-mono ${c.net_change>0?`text-emerald-600 dark:text-emerald-400`:`text-red-500`}`,children:[c.net_change>0?`+`:``,Math.round(c.net_change*100),`%`]})]}),typeof c.before_pass_rate==`number`&&typeof c.after_pass_rate==`number`&&(0,F.jsxs)(`span`,{className:`text-xs text-muted-foreground font-mono`,children:[Math.round(c.before_pass_rate*100),`% →`,` `,Math.round(c.after_pass_rate*100),`%`]}),c.improved!==void 0&&(0,F.jsx)(P,{variant:c.improved?`default`:`destructive`,className:`text-[10px]`,children:c.improved?`Improved`:`Regressed`})]}),r.length>0&&r[r.length-1].details&&(0,F.jsx)(`p`,{className:`text-xs text-muted-foreground leading-relaxed`,children:r[r.length-1].details})]})]}),l.map(e=>(0,F.jsx)(dh,{entry:e,roundLabel:null,roundStatus:`single`,prevPassRate:null,currPassRate:null},`proposal-${e.target}-${e.timestamp}`)),Array.from(u.entries()).map(([e,t])=>{let n=t.length>1;return(0,F.jsx)(`div`,{className:`space-y-2`,children:t.map((r,i)=>{let o=i===t.length-1,c=n?`Round ${i+1} of ${t.length}`:null,l=i>0?ch(t[i-1]):null,u=ch(r),d=`${e}-${r.timestamp}`,f=n?o?`final`:`intermediate`:`single`;return f===`intermediate`&&!a.has(d)?(0,F.jsx)(fh,{entry:r,roundLabel:c,onExpand:()=>s(d)},d):f===`intermediate`&&a.has(d)?(0,F.jsxs)(`div`,{className:`space-y-1`,children:[(0,F.jsxs)(`button`,{type:`button`,onClick:()=>s(d),className:`flex items-center gap-1 text-[10px] text-muted-foreground hover:text-foreground transition-colors px-1`,children:[(0,F.jsx)(Te,{className:`size-3`}),`Collapse `,c]}),(0,F.jsx)(dh,{entry:r,roundLabel:c,roundStatus:f,prevPassRate:l,currPassRate:u})]},d):(0,F.jsx)(dh,{entry:r,roundLabel:c,roundStatus:f,prevPassRate:l,currPassRate:u},d)})},e)}),i.length===0&&(0,F.jsx)(`div`,{className:`flex items-center justify-center rounded-lg border border-dashed py-8`,children:(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No evidence entries for this proposal`})})]})}var mh={created:(0,F.jsx)(_e,{className:`size-3.5`}),validated:(0,F.jsx)(O,{className:`size-3.5`}),deployed:(0,F.jsx)(ee,{className:`size-3.5`}),rejected:(0,F.jsx)(h,{className:`size-3.5`}),rolled_back:(0,F.jsx)(b,{className:`size-3.5`})},hh={created:`bg-blue-500`,validated:`bg-amber-500`,deployed:`bg-emerald-500`,rejected:`bg-red-500`,rolled_back:`bg-red-400`},gh={created:`ring-blue-500/30`,validated:`ring-amber-500/30`,deployed:`ring-emerald-500/30`,rejected:`ring-red-500/30`,rolled_back:`ring-red-400/30`},_h={created:`bg-blue-500/30`,validated:`bg-amber-500/30`,deployed:`bg-emerald-500/30`,rejected:`bg-red-500/30`,rolled_back:`bg-red-400/30`};function vh(e){let t=new Map;for(let n of e){let e=t.get(n.proposal_id)??[];e.push(n),t.set(n.proposal_id,e)}for(let e of t.values())e.sort((e,t)=>new Date(e.timestamp).getTime()-new Date(t.timestamp).getTime());return Array.from(t.entries()).sort((e,t)=>{let n=e[1][e[1].length-1],r=t[1][t[1].length-1];return new Date(r.timestamp).getTime()-new Date(n.timestamp).getTime()})}function yh(e){return e[e.length-1].action}function bh(e){for(let t=e.length-1;t>=0;t--)if(e[t].eval_snapshot)return e[t].eval_snapshot;return null}function xh({snapshot:e}){let t=e.net_change;if(t==null)return null;let n=Math.round(t*100),r=n>0;return(0,F.jsxs)(`span`,{className:N(`inline-flex items-center gap-0.5 text-[10px] font-mono font-medium`,r?`text-emerald-600 dark:text-emerald-400`:`text-red-500`),children:[r?(0,F.jsx)(k,{className:`size-2.5`}):(0,F.jsx)(De,{className:`size-2.5`}),r?`+`:``,n,`%`]})}var Sh=[{action:`created`,label:`Created`,desc:`Proposal generated from session data`},{action:`validated`,label:`Validated`,desc:`Eval tests run, awaiting deployment`},{action:`deployed`,label:`Deployed`,desc:`Accepted and applied to skill file`},{action:`rejected`,label:`Rejected`,desc:`Failed validation criteria`},{action:`rolled_back`,label:`Rolled Back`,desc:`Reverted after deployment`}];function Ch(){let[e,t]=(0,M.useState)(!1);return(0,F.jsxs)(`div`,{className:`px-2 pb-2`,children:[(0,F.jsxs)(`button`,{type:`button`,onClick:()=>t(!e),className:`flex items-center gap-1 text-[10px] text-muted-foreground/70 hover:text-muted-foreground transition-colors w-full`,children:[e?(0,F.jsx)(Te,{className:`size-3`}):(0,F.jsx)(Be,{className:`size-3`}),`Lifecycle stages`]}),e&&(0,F.jsx)(`div`,{className:`mt-1.5 space-y-1.5 rounded-md border bg-muted/30 p-2`,children:Sh.map(e=>(0,F.jsxs)(`div`,{className:`flex items-start gap-2`,children:[(0,F.jsx)(`div`,{className:N(`size-2 rounded-full mt-1 shrink-0`,hh[e.action])}),(0,F.jsxs)(`div`,{className:`min-w-0`,children:[(0,F.jsx)(`span`,{className:`text-[10px] font-medium`,children:e.label}),(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground/70 leading-tight`,children:e.desc})]})]},e.action))})]})}function wh({entries:e,selectedProposalId:t,onSelect:n}){let r=vh(e);return r.length===0?(0,F.jsx)(`div`,{className:`flex items-center justify-center rounded-lg border border-dashed py-6 px-3`,children:(0,F.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`No evolution history yet`})}):(0,F.jsxs)(`div`,{className:`flex flex-col gap-0`,children:[(0,F.jsx)(`h2`,{className:`text-xs font-semibold text-muted-foreground uppercase tracking-wider px-2 pb-2 sticky top-0 z-10 bg-background`,children:`Evolution`}),(0,F.jsx)(Ch,{}),(0,F.jsx)(`nav`,{className:`flex flex-col`,children:r.map(([e,i],a)=>{let o=yh(i),s=t===e,c=i[i.length-1],l=hh[o]??`bg-muted-foreground`,u=gh[o]??`ring-muted-foreground/30`,d=_h[o]??`bg-border`,f=a===r.length-1,p=bh(i);return(0,F.jsxs)(`div`,{className:`relative flex gap-3`,children:[(0,F.jsxs)(`div`,{className:`flex flex-col items-center`,children:[(0,F.jsx)(`div`,{className:N(`flex items-center justify-center size-7 rounded-full ring-2 text-white shrink-0 z-10`,l,u),children:mh[o]??(0,F.jsx)(_e,{className:`size-3.5`})}),!f&&(0,F.jsx)(`div`,{className:N(`w-0.5 flex-1 min-h-[16px]`,d)})]}),(0,F.jsxs)(`button`,{type:`button`,onClick:()=>n(e),className:N(`flex-1 min-w-0 rounded-md px-2.5 py-2 text-left transition-all mb-1`,`hover:bg-accent/50`,s?`bg-primary/5 ring-1 ring-primary/20`:``),children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,F.jsx)(P,{variant:o===`deployed`?`default`:o===`rejected`||o===`rolled_back`?`destructive`:`secondary`,className:`text-[10px] capitalize`,children:o.replace(`_`,` `)}),(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:Wn(c.timestamp)})]}),p&&(0,F.jsxs)(`div`,{className:`flex items-center gap-1.5 mt-1`,children:[(0,F.jsx)(xh,{snapshot:p}),p.before_pass_rate!==void 0&&p.after_pass_rate!==void 0&&(0,F.jsxs)(`span`,{className:`text-[10px] text-muted-foreground/60 font-mono`,children:[Math.round(p.before_pass_rate*100),`→`,Math.round(p.after_pass_rate*100),`%`]})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-1.5 mt-1`,children:[(0,F.jsxs)(`span`,{className:`text-[10px] font-mono text-muted-foreground/70`,children:[`#`,e.slice(0,8)]}),i.length>1&&(0,F.jsx)(`div`,{className:`flex gap-0.5 ml-auto`,children:i.map((e,t)=>(0,F.jsx)(`div`,{className:N(`size-1.5 rounded-full`,hh[e.action]??`bg-muted-foreground`)},`${e.action}-${t}`))})]}),c.details&&(0,F.jsx)(`p`,{className:`text-[11px] text-muted-foreground/80 line-clamp-2 mt-1 leading-snug`,children:c.details})]})]},e)})})]})}function Th({text:e}){return(0,F.jsxs)(pt,{children:[(0,F.jsx)(mt,{className:`inline-flex items-center text-muted-foreground/50 hover:text-muted-foreground transition-colors cursor-help`,onClick:e=>e.preventDefault(),children:(0,F.jsx)(ae,{className:`size-3`})}),(0,F.jsx)(ht,{side:`top`,className:`max-w-[220px]`,children:e})]})}function Eh(e){switch(e){case`repaired_contextual_miss`:return{label:`repaired miss`,variant:`destructive`};case`repaired_trigger`:return{label:`repaired trigger`,variant:`secondary`};case`legacy_materialized`:return{label:`legacy row`,variant:`outline`};default:return null}}function Dh(e){switch(e){case`previously_missed`:return{label:`previously missed`,variant:`secondary`};default:return null}}function Oh({sessionId:e,meta:t,invocations:n,defaultExpanded:r}){let[i,a]=(0,M.useState)(r),o=t?.started_at??n[0]?.timestamp,s=n.reduce((e,t)=>{let n=t.invocation_mode??`unknown`;return e[n]=(e[n]??0)+1,e},{}),c=e=>{let n=t?.agent_cli?.replace(/_/g,` `),r=t?.platform?.replace(/_/g,` `);return e.agent_type&&e.agent_type!==`main`?{label:e.agent_type,hint:n?`${n} subagent`:`subagent invocation`}:n?{label:n,hint:e.agent_type===`main`?`main agent invocation`:`session agent that invoked the skill`}:r?{label:r,hint:e.agent_type===`main`?`main agent invocation`:`session platform`}:e.agent_type?{label:e.agent_type,hint:`recorded subagent type`}:{label:`No data`,hint:`invoker was not captured in this record`}};return(0,F.jsxs)(`div`,{className:`overflow-hidden rounded-lg border border-slate-200 transition-colors dark:border-slate-800`,children:[(0,F.jsxs)(`button`,{type:`button`,className:`flex w-full items-center gap-3 px-4 py-3 text-left transition-colors hover:bg-slate-50 active:bg-slate-100 dark:hover:bg-slate-800/40 dark:active:bg-slate-800/60`,onClick:()=>a(!i),children:[(0,F.jsx)(Be,{className:`size-3.5 shrink-0 text-slate-400 transition-transform duration-150 dark:text-slate-500 ${i?`rotate-90`:``}`}),(0,F.jsxs)(`div`,{className:`flex min-w-0 flex-1 flex-col gap-1`,children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,F.jsxs)(`span`,{className:`text-sm font-medium text-slate-900 dark:text-white`,children:[n.length,` invocation`,n.length===1?``:`s`]}),(0,F.jsx)(`span`,{className:`text-xs text-slate-500 dark:text-slate-400`,children:o?Wn(o):``})]}),(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center gap-1.5`,children:[t?.model&&(0,F.jsx)(P,{variant:`secondary`,className:`text-[10px] font-normal`,children:t.model}),t?.workspace_path&&(0,F.jsx)(`span`,{className:`font-mono text-[11px] text-slate-500 dark:text-slate-400`,title:t.workspace_path,children:t.workspace_path.split(`/`).slice(-2).join(`/`)})]})]}),!i&&(0,F.jsx)(`div`,{className:`flex shrink-0 items-center gap-1`,children:Object.entries(s).map(([e,t])=>(0,F.jsxs)(P,{variant:`outline`,className:`gap-1 text-[10px] font-normal`,children:[e,` `,(0,F.jsx)(`span`,{className:`text-slate-400 dark:text-slate-500`,children:t})]},e))}),(0,F.jsx)(`span`,{className:`shrink-0 font-mono text-[10px] text-slate-300 dark:text-slate-600`,children:e.substring(0,8)})]}),i&&(0,F.jsx)(`div`,{className:`overflow-x-auto border-t border-slate-200 dark:border-slate-800`,children:(0,F.jsxs)(rt,{children:[(0,F.jsx)(it,{children:(0,F.jsxs)(ot,{className:`bg-slate-50 hover:bg-slate-50 dark:bg-slate-800/40 dark:hover:bg-slate-800/40`,children:[(0,F.jsxs)(V,{className:`h-8 text-[10px] font-semibold uppercase tracking-[0.15em]`,children:[`Prompt `,(0,F.jsx)(Th,{text:`The user prompt that led to this skill being invoked`})]}),(0,F.jsxs)(V,{className:`h-8 w-[90px] text-[10px] font-semibold uppercase tracking-[0.15em]`,children:[`Mode`,` `,(0,F.jsx)(Th,{text:`explicit = user typed /skillname; implicit = user mentioned skill by name; inferred = agent chose skill autonomously`})]}),(0,F.jsxs)(V,{className:`h-8 w-[70px] text-[10px] font-semibold uppercase tracking-[0.15em]`,children:[`Confidence`,` `,(0,F.jsx)(Th,{text:`Model's confidence score (0-100%) when routing this prompt to the skill`})]}),(0,F.jsxs)(V,{className:`h-8 w-[110px] text-[10px] font-semibold uppercase tracking-[0.15em]`,children:[`Invoker`,` `,(0,F.jsx)(Th,{text:`Who invoked the skill. Prefers subagent type when present, otherwise falls back to the session agent or platform.`})]}),(0,F.jsx)(V,{className:`h-8 w-[120px] text-[10px] font-semibold uppercase tracking-[0.15em]`,children:`Evidence`}),(0,F.jsx)(V,{className:`h-8 w-[70px] text-right text-[10px] font-semibold uppercase tracking-[0.15em]`,children:`Time`})]})}),(0,F.jsx)(at,{children:n.map((e,t)=>(0,F.jsxs)(ot,{className:e.triggered?``:`bg-red-50/50 dark:bg-red-950/10`,children:[(0,F.jsxs)(H,{className:`max-w-[500px] truncate py-2 text-sm`,title:e.query||void 0,children:[e.query||(0,F.jsx)(`span`,{className:`italic text-slate-300 dark:text-slate-600`,children:`No prompt recorded`}),!e.triggered&&(0,F.jsx)(P,{variant:`destructive`,className:`ml-2 text-[10px] font-normal`,children:`missed`})]}),(0,F.jsx)(H,{className:`py-2`,children:e.invocation_mode?(0,F.jsx)(P,{variant:`secondary`,className:`text-[10px] font-normal`,children:e.invocation_mode}):(0,F.jsx)(`span`,{className:`text-[11px] text-slate-400 dark:text-slate-500`,children:`Unknown mode`})}),(0,F.jsx)(H,{className:`py-2 font-mono text-xs tabular-nums text-slate-600 dark:text-slate-300`,children:e.confidence===null?`Not recorded`:`${Math.round(e.confidence*100)}%`}),(0,F.jsx)(H,{className:`py-2`,children:(()=>{let t=c(e);return t.label===`No data`?(0,F.jsx)(`span`,{className:`text-[11px] text-slate-400 dark:text-slate-500`,title:t.hint,children:t.label}):(0,F.jsx)(P,{variant:e.agent_type&&e.agent_type!==`main`?`outline`:`secondary`,className:`text-[10px] font-normal capitalize`,title:t.hint,children:t.label})})()}),(0,F.jsx)(H,{className:`py-2`,children:(()=>{let t=Eh(e.observation_kind),n=Dh(e.historical_context);return t?(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center gap-1.5`,children:[(0,F.jsx)(P,{variant:t.variant,className:`text-[10px] font-normal`,children:t.label}),n&&(0,F.jsx)(P,{variant:n.variant,className:`text-[10px] font-normal`,children:n.label})]}):(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center gap-1.5`,children:[(0,F.jsx)(`span`,{className:`text-[11px] text-slate-400 dark:text-slate-500`,children:`canonical`}),n&&(0,F.jsx)(P,{variant:n.variant,className:`text-[10px] font-normal`,children:n.label})]})})()}),(0,F.jsx)(H,{className:`whitespace-nowrap py-2 text-right font-mono text-[11px] text-slate-400 dark:text-slate-500`,children:e.timestamp?Wn(e.timestamp):``})]},t))})]})})]})}function kh({invocations:e,sessionMetadata:t=[]}){let[n,r]=(0,M.useState)(`all`),i=(0,M.useMemo)(()=>new Map(t.map(e=>[e.session_id,e])),[t]),a=(0,M.useMemo)(()=>{switch(n){case`misses`:return e.filter(e=>!e.triggered);case`low_confidence`:return e.filter(e=>e.confidence!==null&&e.confidence<.5);default:return e}},[e,n]),o=(0,M.useMemo)(()=>{let e=new Map;for(let t of a){let n=t.session_id??`unknown`,r=e.get(n);r?r.push(t):e.set(n,[t])}return[...e.entries()].sort(([,e],[,t])=>(t[0]?.timestamp??``).localeCompare(e[0]?.timestamp??``))},[a]);return e.length===0?(0,F.jsx)(`div`,{className:`flex items-center justify-center rounded-lg border border-dashed border-slate-300 py-12 dark:border-slate-700`,children:(0,F.jsx)(`p`,{className:`text-sm text-slate-500 dark:text-slate-400`,children:`No invocation records yet. Invocations appear when skills are triggered during real sessions.`})}):(0,F.jsxs)(`div`,{className:`space-y-3`,children:[(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center justify-between gap-2`,children:[(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center gap-2`,children:[(0,F.jsx)(T,{className:`size-3.5 text-slate-400 dark:text-slate-500`}),[[`all`,`All`],[`misses`,`Misses`],[`low_confidence`,`Low confidence`]].map(([e,t])=>(0,F.jsx)(`button`,{type:`button`,onClick:()=>r(e),className:`inline-block`,children:(0,F.jsx)(P,{variant:n===e?`default`:`outline`,className:`cursor-pointer text-[10px]`,children:t})},e))]}),(0,F.jsxs)(`span`,{className:`text-xs text-slate-500 dark:text-slate-400`,children:[a.length,` invocations across `,o.length,` sessions`]})]}),(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center gap-x-4 gap-y-1 text-[11px] text-slate-500 dark:text-slate-400`,children:[(0,F.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,F.jsx)(`span`,{className:`size-1.5 rounded-full bg-slate-400`}),`explicit = user typed /skill`]}),(0,F.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,F.jsx)(`span`,{className:`size-1.5 rounded-full bg-slate-400`}),`implicit = mentioned by name`]}),(0,F.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,F.jsx)(`span`,{className:`size-1.5 rounded-full bg-slate-400`}),`inferred = agent chose autonomously`]}),(0,F.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,F.jsx)(`span`,{className:`size-1.5 rounded-full bg-red-400`}),`missed = skill should have triggered`]})]}),o.length===0?(0,F.jsx)(`div`,{className:`flex items-center justify-center py-8 text-sm text-slate-500 dark:text-slate-400`,children:`No invocations match this filter.`}):o.map(([e,t],n)=>(0,F.jsx)(Oh,{sessionId:e,meta:i.get(e),invocations:t,defaultExpanded:n<3},e))]})}M.createContext(null);var Ah=`selftune.skill-report-onboarding-dismissed`;function jh({open:e,onOpenChange:t}){let n=(0,M.useRef)(null);return(0,M.useEffect)(()=>{if(!e)return;let n=e=>{e.key===`Escape`&&t(!1)};return document.addEventListener(`keydown`,n),()=>document.removeEventListener(`keydown`,n)},[e,t]),e?(0,F.jsxs)(`div`,{className:`fixed inset-0 z-50 flex justify-end`,children:[(0,F.jsx)(`div`,{className:`absolute inset-0 bg-black/40 backdrop-blur-[2px] transition-opacity`,onClick:()=>t(!1)}),(0,F.jsxs)(`div`,{ref:n,className:`relative z-10 w-full max-w-lg overflow-y-auto bg-white shadow-xl dark:bg-slate-900 animate-in slide-in-from-right duration-200`,children:[(0,F.jsxs)(`div`,{className:`sticky top-0 z-10 flex items-center justify-between border-b border-slate-200 bg-white px-6 py-4 dark:border-slate-800 dark:bg-slate-900`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`h2`,{className:`text-lg font-semibold text-slate-900 dark:text-white`,children:`How to read this page`}),(0,F.jsx)(`p`,{className:`mt-0.5 text-sm text-slate-500 dark:text-slate-400`,children:`selftune earns trust by showing what it observed, what it proposed, how it tested the change, and what happened next.`})]}),(0,F.jsx)(I,{variant:`ghost`,className:`shrink-0 rounded-full p-1.5`,onClick:()=>t(!1),children:(0,F.jsx)(v,{className:`size-4`})})]}),(0,F.jsxs)(`div`,{className:`space-y-8 px-6 py-6`,children:[(0,F.jsxs)(`section`,{className:`space-y-3`,children:[(0,F.jsx)(`h3`,{className:`text-[10px] font-semibold uppercase tracking-[0.18em] text-slate-400 dark:text-slate-500`,children:`The improvement loop`}),(0,F.jsxs)(`div`,{className:`space-y-3 text-sm text-slate-600 dark:text-slate-400`,children:[(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`1. Observe.`}),` selftune watches real sessions and notes when a skill triggered, missed, or looked noisy.`]}),(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`2. Propose.`}),` When the signal is strong enough, it suggests a wording change to the skill.`]}),(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`3. Validate.`}),` It checks whether the new wording improves routing without breaking important cases.`]}),(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`4. Decide.`}),` Only validated winners should be deployed. Rejected or pending proposals do not change the live skill.`]})]})]}),(0,F.jsxs)(`section`,{className:`space-y-3`,children:[(0,F.jsx)(`h3`,{className:`text-[10px] font-semibold uppercase tracking-[0.18em] text-slate-400 dark:text-slate-500`,children:`What each section means`}),(0,F.jsxs)(`div`,{className:`space-y-3 text-sm text-slate-600 dark:text-slate-400`,children:[(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Next Best Action`}),` tells you whether you should review, deploy, or simply keep observing.`]}),(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`How selftune is improving this skill`}),` `,`explains the current state in plain language.`]}),(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Trust Signals`}),` are the condensed metrics behind that story: coverage, evidence quality, routing quality, and evolution state.`]}),(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Evidence`}),` shows what changed and why a proposal was accepted, rejected, or left pending.`]}),(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Invocations`}),` shows real prompts where this skill triggered or likely should have triggered.`]}),(0,F.jsxs)(`p`,{children:[(0,F.jsx)(`strong`,{className:`text-slate-900 dark:text-white`,children:`Community`}),` surfaces aggregated contributor signals and usage patterns from the broader selftune community.`]})]})]}),(0,F.jsxs)(`section`,{className:`space-y-3`,children:[(0,F.jsx)(`h3`,{className:`text-[10px] font-semibold uppercase tracking-[0.18em] text-slate-400 dark:text-slate-500`,children:`FAQ`}),(0,F.jsxs)(`div`,{className:`space-y-4 text-sm text-slate-600 dark:text-slate-400`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-medium text-slate-900 dark:text-white`,children:`What is a missed trigger?`}),(0,F.jsx)(`p`,{children:`A case where selftune believes the skill should have been used, but the agent did not invoke it.`})]}),(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-medium text-slate-900 dark:text-white`,children:`Why was a proposal rejected?`}),(0,F.jsx)(`p`,{children:`Usually because validation showed the new wording would regress existing behavior, or because it violated a hard rule like dropping an important anchor phrase.`})]}),(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-medium text-slate-900 dark:text-white`,children:`When should I trust a recommendation?`}),(0,F.jsx)(`p`,{children:`Trust it more when the page shows broad coverage, prompt-linked evidence, and a validated result. Trust it less when the sample is tiny or the data is noisy.`})]}),(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-medium text-slate-900 dark:text-white`,children:`Do I need to understand every metric?`}),(0,F.jsx)(`p`,{children:`No. Start with the plain-English summary and next best action. Use the deeper tabs only when you want to inspect the evidence yourself.`})]})]})]})]})]})]}):null}function Mh({onOpenGuide:e}){let[t,n]=(0,M.useState)(()=>typeof window<`u`?window.localStorage.getItem(Ah)===`1`:!1);return t?null:(0,F.jsx)(`div`,{className:`rounded-lg border border-blue-200/40 bg-blue-50/50 px-4 py-3 dark:border-blue-900/40 dark:bg-blue-950/20`,children:(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center justify-between gap-3`,children:[(0,F.jsxs)(`div`,{className:`text-sm text-slate-600 dark:text-slate-400`,children:[(0,F.jsx)(`span`,{className:`font-medium text-slate-900 dark:text-white`,children:`New to selftune?`}),` Start with the summary below, then open the guide if you want the full improvement loop explained step by step.`]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,F.jsx)(I,{variant:`outline`,onClick:e,children:`Open guide`}),(0,F.jsx)(I,{variant:`ghost`,onClick:()=>{typeof window<`u`&&window.localStorage.setItem(Ah,`1`),n(!0)},children:`Hide`})]})]})})}var Nh=[{key:`ALL`,label:`All Skills`},{key:`HEALTHY`,label:`Healthy`},{key:`WARNING`,label:`Warning`},{key:`CRITICAL`,label:`Critical`},{key:`UNGRADED`,label:`Ungraded`}],Ph={HEALTHY:{text:`text-primary`,bg:`bg-primary`,label:`Deployed`},WARNING:{text:`text-primary-accent`,bg:`bg-primary-accent`,label:`Needs Attention`},CRITICAL:{text:`text-destructive`,bg:`bg-destructive`,label:`Critical`},UNGRADED:{text:`text-muted-foreground`,bg:`bg-muted-foreground`,label:`Ungraded`},UNKNOWN:{text:`text-muted-foreground`,bg:`bg-muted-foreground`,label:`Unknown`}};function Fh(e){return e===null?0:Math.round(e*100)}function Ih(){return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col gap-8 p-6 md:p-10 animate-in fade-in duration-500`,children:[(0,F.jsxs)(`div`,{className:`space-y-2`,children:[(0,F.jsx)(`div`,{className:`h-12 w-64 rounded-lg bg-muted animate-pulse`}),(0,F.jsx)(`div`,{className:`h-5 w-96 rounded-lg bg-muted animate-pulse`})]}),(0,F.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[(0,F.jsx)(`div`,{className:`col-span-12 lg:col-span-8 h-72 rounded-xl bg-muted animate-pulse`}),(0,F.jsxs)(`div`,{className:`col-span-12 lg:col-span-4 flex flex-col gap-6`,children:[(0,F.jsx)(`div`,{className:`h-32 rounded-xl bg-muted animate-pulse`}),(0,F.jsx)(`div`,{className:`h-32 rounded-xl bg-muted animate-pulse`})]})]}),(0,F.jsx)(`div`,{className:`grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-6`,children:Array.from({length:6}).map((e,t)=>(0,F.jsx)(`div`,{className:`h-52 rounded-xl bg-muted animate-pulse`},`skel-${t}`))})]})}function Lh({skillName:e,skillScope:t,platforms:n,passRate:r,totalChecks:i,uniqueSessions:a,status:o,latestEvolutionTimestamp:s,renderActions:c}){let l=Fh(i>0?r:null),u=Ph[o];return(0,F.jsxs)(L,{className:`col-span-12 lg:col-span-8 rounded-3xl border border-border/15 p-8 relative overflow-hidden flex flex-col`,children:[(0,F.jsx)(`div`,{className:`absolute top-0 left-0 w-full h-1 bg-input`,children:(0,F.jsx)(`div`,{className:`h-full bg-primary shadow-[0_0_15px_rgba(79,242,255,0.6)] transition-all duration-700`,style:{width:`${l}%`}})}),(0,F.jsxs)(`div`,{className:`flex justify-between items-start mb-6`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-3 mb-2`,children:[(0,F.jsx)(`span`,{className:`px-2 py-0.5 rounded text-[10px] font-bold bg-primary/10 text-primary uppercase tracking-widest`,children:o===`HEALTHY`?`Deployed`:`Evolving`}),n&&n.length>0?(0,F.jsx)(`span`,{className:`flex items-center gap-1`,children:n.map(e=>(0,F.jsx)(`span`,{className:`px-1.5 py-0.5 rounded bg-muted text-muted-foreground font-mono text-[10px]`,children:e},e))}):(0,F.jsxs)(`span`,{className:`text-muted-foreground font-mono text-xs`,children:[t??`global`,` scope`]})]}),(0,F.jsx)(`h2`,{className:`font-headline text-3xl font-bold text-foreground`,children:e})]}),(0,F.jsxs)(`div`,{className:`text-right`,children:[(0,F.jsx)(`span`,{className:`text-4xl font-headline font-light text-primary`,children:Hn(i>0?r:null)}),(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mt-1`,children:s?`Evolved ${Wn(s)}`:`Pass Rate`})]})]}),(0,F.jsxs)(`div`,{className:`grid grid-cols-3 gap-8 mb-8`,children:[(0,F.jsxs)(`div`,{className:`bg-muted p-4 rounded-2xl border border-border/15`,children:[(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-1`,children:`Total Checks`}),(0,F.jsx)(`p`,{className:`text-xl font-bold font-headline tabular-nums`,children:i.toLocaleString()})]}),(0,F.jsxs)(`div`,{className:`bg-muted p-4 rounded-2xl border border-border/15`,children:[(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-1`,children:`Pass Rate`}),(0,F.jsx)(`p`,{className:`text-xl font-bold font-headline tabular-nums ${u.text}`,children:Hn(i>0?r:null)})]}),(0,F.jsxs)(`div`,{className:`bg-muted p-4 rounded-2xl border border-border/15`,children:[(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-1`,children:`Unique Sessions`}),(0,F.jsx)(`p`,{className:`text-xl font-bold font-headline tabular-nums`,children:a.toLocaleString()})]})]}),(0,F.jsx)(`div`,{className:`flex justify-end gap-4`,children:c?.(e)})]})}function Rh({aggregatePassRate:e,gradedCount:t}){return(0,F.jsxs)(L,{className:`rounded-3xl border border-border/15 p-6 flex flex-col justify-center`,children:[(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-4`,children:`Library Health`}),(0,F.jsx)(`div`,{className:`flex items-end gap-2 mb-2`,children:(0,F.jsx)(`span`,{className:`text-5xl font-headline font-bold tabular-nums`,children:e===null?`--`:`${Math.round(e*100)}%`})}),(0,F.jsxs)(`p`,{className:`text-sm text-muted-foreground`,children:[`Aggregate pass rate across `,t,` graded skill`,t===1?``:`s`,`.`]})]})}function zh({proposals:e}){return e.length===0?(0,F.jsxs)(L,{className:`rounded-3xl p-6 flex flex-col gap-3 border border-border/15 border-l-4 border-l-primary/40`,children:[(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-2`,children:`Pending Proposals`}),(0,F.jsx)(`h3`,{className:`font-headline font-bold text-lg`,children:`No proposals pending`})]}):(0,F.jsxs)(L,{className:`rounded-3xl p-6 flex flex-col gap-3 border border-border/15 border-l-4 border-l-primary/40`,children:[(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest mb-2`,children:`Pending Proposals`}),(0,F.jsxs)(`h3`,{className:`font-headline font-bold text-lg mb-4`,children:[`Awaiting Review`,(0,F.jsx)(P,{variant:`secondary`,className:`ml-2 h-5 px-2 text-[10px] bg-primary/15 text-primary border-none align-middle`,children:e.length})]}),(0,F.jsx)(`div`,{className:`space-y-3 max-h-32 overflow-y-auto themed-scroll`,children:e.map(e=>(0,F.jsxs)(`div`,{className:`flex items-center justify-between p-3 bg-muted rounded-xl`,children:[(0,F.jsx)(`span`,{className:`text-sm truncate`,children:e.skillName??`Unknown`}),(0,F.jsx)(`span`,{className:`text-xs text-muted-foreground shrink-0`,children:e.action})]},e.id))})]})}function Bh({skill:e,renderActions:t}){let n=Fh(e.passRate),r=Ph[e.status];return(0,F.jsxs)(L,{className:`border border-border/15 p-6 hover:border-border/30 transition-all duration-300 flex flex-col`,children:[(0,F.jsxs)(`div`,{className:`flex justify-between items-start mb-4`,children:[(0,F.jsx)(`div`,{className:`w-12 h-12 rounded-xl bg-muted flex items-center justify-center`,children:(0,F.jsx)(`span`,{className:`size-3 rounded-full ${r.bg}`})}),(0,F.jsxs)(`div`,{className:`text-right`,children:[(0,F.jsx)(`div`,{className:`flex flex-wrap justify-end gap-1`,children:e.platforms&&e.platforms.length>0?e.platforms.map(e=>(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest`,children:e},e)):(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest`,children:e.scope??`unknown`})}),(0,F.jsx)(`p`,{className:`text-sm font-bold tabular-nums`,children:e.checks.toLocaleString()})]})]}),(0,F.jsx)(`h3`,{className:`font-headline font-bold text-xl tracking-tight text-foreground truncate mb-1`,children:e.name}),(0,F.jsxs)(`p`,{className:`text-sm text-muted-foreground mb-6`,children:[e.uniqueSessions,` sessions · Last seen`,` `,e.lastSeen?Wn(e.lastSeen):`never`]}),(0,F.jsxs)(`div`,{className:`space-y-4`,children:[(0,F.jsxs)(`div`,{className:`flex justify-between items-end text-xs uppercase tracking-tighter`,children:[(0,F.jsx)(`span`,{className:`text-muted-foreground`,children:`Pass Rate`}),(0,F.jsx)(`span`,{className:`font-bold ${r.text}`,children:r.label})]}),(0,F.jsx)(`div`,{className:`w-full h-1 bg-input rounded-full overflow-hidden`,children:(0,F.jsx)(`div`,{className:`h-full rounded-full transition-all duration-500 ${r.bg}`,style:{width:`${n}%`}})}),(0,F.jsx)(`div`,{className:`pt-4 flex gap-3`,children:t?.(e.name)})]})]})}function Vh({filter:e,onFilterChange:t,counts:n,sortDesc:r,onSortToggle:i}){return(0,F.jsxs)(`div`,{className:`flex items-center justify-between gap-4 flex-wrap`,children:[(0,F.jsx)(`div`,{className:`flex gap-1 bg-muted rounded-xl p-1`,children:Nh.map(r=>(0,F.jsxs)(`button`,{type:`button`,onClick:()=>t(r.key),className:`px-4 py-2 rounded-lg text-sm font-headline font-semibold transition-all duration-200 ${e===r.key?`bg-card text-foreground shadow-sm`:`text-muted-foreground hover:text-foreground`}`,children:[r.label,(0,F.jsx)(`span`,{className:`ml-1.5 text-xs opacity-60`,children:n[r.key]})]},r.key))}),(0,F.jsxs)(`button`,{type:`button`,onClick:i,className:`flex items-center gap-2 px-3 py-2 text-sm text-muted-foreground hover:text-foreground transition-colors font-headline`,title:r?`Highest pass rate first`:`Lowest pass rate first`,children:[(0,F.jsx)(Ke,{className:`size-4`}),(0,F.jsx)(`span`,{children:`Sort by Performance`})]})]})}function Hh(){return(0,F.jsx)(L,{className:`col-span-12 lg:col-span-8 border border-border/15 p-8 flex items-center justify-center`,children:(0,F.jsxs)(`div`,{className:`text-center space-y-2`,children:[(0,F.jsx)(He,{className:`size-10 text-muted-foreground mx-auto`}),(0,F.jsx)(`p`,{className:`text-muted-foreground`,children:`No evolution activity yet. Run an evolution cycle to see your most active skill.`})]})})}function Uh(){return(0,F.jsxs)(L,{className:`border border-border/15 p-12 text-center`,children:[(0,F.jsx)(_e,{className:`size-8 text-muted-foreground mx-auto mb-3`}),(0,F.jsx)(`p`,{className:`text-muted-foreground font-headline`,children:`No skills match the current filter`})]})}function Wh({message:e,onRetry:t}){return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,F.jsx)(Ne,{className:`size-10 text-destructive`}),(0,F.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:e}),t&&(0,F.jsxs)(`button`,{type:`button`,onClick:t,className:`inline-flex items-center gap-2 rounded-md border border-border px-3 py-1.5 text-sm font-medium hover:bg-muted transition-colors`,children:[(0,F.jsx)(j,{className:`size-3.5`}),`Retry`]})]})}async function Gh(){let e=await fetch(`/api/v2/analytics`);if(!e.ok)throw Error(`Failed to load analytics (${e.status})`);return await e.json()}function Kh(e){let[t,n,r]=e.split(`-`).map(Number);return!t||!n||!r?null:new Date(t,n-1,r)}function qh(){let[e,t]=(0,M.useState)(`pass_rate`),{data:n,isPending:r,isError:i,error:a,refetch:o}=Bn({queryKey:[`analytics`],queryFn:Gh,refetchInterval:3e4}),s=(0,M.useMemo)(()=>{if(!n?.pass_rate_trend.length)return null;let e=n.pass_rate_trend[n.pass_rate_trend.length-1];if(!e)return null;let t=Kh(e.date);if(!t)return null;let r=new Date;r.setHours(0,0,0,0);let i=Math.max(0,Math.floor((r.getTime()-t.getTime())/864e5));return i===0?`today`:i===1?`1d ago`:`${i}d ago`},[n]),c=(0,M.useMemo)(()=>n?.skill_rankings?[...n.skill_rankings].sort((e,t)=>t.pass_rate-e.pass_rate).slice(0,5):[],[n]),l=(0,M.useMemo)(()=>c.length?c.reduce((e,t)=>e+t.pass_rate,0)/c.length:0,[c]),u=(0,M.useMemo)(()=>n?.evolution_impact?n.evolution_impact.filter(e=>e.pass_rate_after>e.pass_rate_before):[],[n]);if(r)return(0,F.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-6 py-6 px-4 lg:px-6`,children:[(0,F.jsx)(W,{className:`h-12 w-80`}),(0,F.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[(0,F.jsx)(W,{className:`col-span-8 h-[380px] rounded-xl`}),(0,F.jsx)(W,{className:`col-span-4 h-[380px] rounded-xl`}),(0,F.jsx)(W,{className:`col-span-7 h-[320px] rounded-xl`}),(0,F.jsx)(W,{className:`col-span-5 h-[320px] rounded-xl`}),(0,F.jsx)(W,{className:`col-span-12 h-[140px] rounded-xl`})]})]});if(i)return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,F.jsx)(Ne,{className:`size-10 text-destructive`}),(0,F.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:a instanceof Error?a.message:`Failed to load analytics`}),(0,F.jsxs)(I,{variant:`outline`,size:`sm`,onClick:()=>o(),children:[(0,F.jsx)(j,{className:`mr-2 size-3.5`}),`Retry`]})]});if(!n)return(0,F.jsx)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-2 py-16`,children:(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No analytics data available yet. Run some sessions and grading first.`})});let{summary:d}=n;return(0,F.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-8 py-8 px-4 lg:px-6`,children:[(0,F.jsxs)(`div`,{className:`flex items-start justify-between flex-wrap gap-4`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,F.jsx)(`h1`,{className:`font-headline text-4xl font-bold tracking-tight text-foreground`,children:`Performance Analytics`}),(0,F.jsxs)(P,{variant:`outline`,className:`border-primary/20 bg-primary/10 text-primary gap-1.5 text-[10px] font-headline uppercase tracking-widest`,children:[(0,F.jsx)(`span`,{className:`size-1.5 rounded-full bg-primary animate-pulse`}),`Live`]})]}),(0,F.jsxs)(`p`,{className:`mt-2 text-sm text-muted-foreground`,children:[s?`Last graded: ${s}`:`Awaiting first grading run`,d.active_skills>0&&` \u00B7 ${d.active_skills} active skills`]})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,F.jsxs)(I,{variant:`secondary`,size:`sm`,onClick:()=>o(),className:`gap-1.5 font-headline text-[10px] uppercase tracking-widest`,children:[(0,F.jsx)(j,{className:`size-3`}),`Refresh`]}),(0,F.jsxs)(I,{variant:`secondary`,size:`sm`,className:`gap-1.5 font-headline text-[10px] uppercase tracking-widest`,disabled:!0,"aria-disabled":`true`,title:`Export is not available yet.`,children:[(0,F.jsx)(ce,{className:`size-3`}),`Export`]})]})]}),(0,F.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[(0,F.jsxs)(L,{className:`col-span-12 @4xl/main:col-span-8 bg-muted border-none shadow-none`,children:[(0,F.jsxs)(R,{className:`pb-2`,children:[(0,F.jsx)(tt,{className:`font-headline text-[10px] uppercase tracking-widest`,children:`Evolution Trajectory`}),(0,F.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,F.jsx)(z,{className:`font-headline text-lg`,children:`Evolution Impact Curve`}),(0,F.jsx)(`div`,{className:`flex items-center gap-1 bg-background rounded-lg p-0.5`,children:[{key:`pass_rate`,label:`Pass Rate`},{key:`volume`,label:`Check Volume`}].map(n=>(0,F.jsx)(`button`,{type:`button`,onClick:()=>t(n.key),className:`px-3 py-1 rounded-md text-[10px] font-headline uppercase tracking-widest transition-colors ${e===n.key?`bg-secondary text-primary`:`text-muted-foreground hover:text-foreground`}`,children:n.label},n.key))})]})]}),(0,F.jsx)(B,{children:(0,F.jsx)(hc,{data:n.pass_rate_trend,mode:e})})]}),(0,F.jsxs)(L,{className:`col-span-12 @4xl/main:col-span-4 bg-muted border-none shadow-none flex flex-col`,children:[(0,F.jsxs)(R,{className:`pb-2`,children:[(0,F.jsx)(tt,{className:`font-headline text-[10px] uppercase tracking-widest`,children:`Skill Rankings`}),(0,F.jsx)(z,{className:`font-headline text-lg`,children:`Skill Performance`})]}),(0,F.jsxs)(B,{className:`flex-1 flex flex-col`,children:[(0,F.jsx)(gc,{skills:c}),(0,F.jsx)(`div`,{className:`mt-5 pt-4 border-t border-border/20`,children:(0,F.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-widest text-muted-foreground`,children:`Avg Pass Rate`}),(0,F.jsx)(`span`,{className:`font-headline text-2xl font-bold text-primary`,children:c.length>0?`${Math.round(l*100)}%`:`--`})]})})]})]}),(0,F.jsxs)(L,{className:`col-span-12 @4xl/main:col-span-7 bg-muted border-none shadow-none`,children:[(0,F.jsxs)(R,{className:`pb-2`,children:[(0,F.jsx)(tt,{className:`font-headline text-[10px] uppercase tracking-widest`,children:`Grading Activity`}),(0,F.jsx)(z,{className:`font-headline text-lg`,children:`Check Activity Over Time`})]}),(0,F.jsx)(B,{className:`flex-1 flex flex-col`,children:(0,F.jsx)(_c,{data:n.daily_activity})})]}),(0,F.jsxs)(L,{className:`col-span-12 @4xl/main:col-span-5 bg-muted border-none shadow-none`,children:[(0,F.jsxs)(R,{className:`pb-2`,children:[(0,F.jsx)(tt,{className:`font-headline text-[10px] uppercase tracking-widest`,children:`Evolution Outcomes`}),(0,F.jsx)(z,{className:`font-headline text-lg`,children:`Evolution ROI`})]}),(0,F.jsx)(B,{children:(0,F.jsx)(vc,{impacts:n.evolution_impact})})]}),(0,F.jsx)(L,{className:`col-span-12 bg-muted/60 backdrop-blur-md border-none shadow-none`,children:(0,F.jsx)(B,{className:`pt-6`,children:(0,F.jsxs)(`div`,{className:`flex flex-col @3xl/main:flex-row items-start @3xl/main:items-center justify-between gap-4`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`font-headline text-[10px] uppercase tracking-widest text-muted-foreground mb-2`,children:`Data-Driven Insight`}),(0,F.jsx)(`p`,{className:`text-[15px] text-foreground leading-relaxed max-w-2xl`,children:u.length>0?`${u.length} skill${u.length===1?``:`s`} improved after evolution, averaging ${Math.round(d.avg_improvement*100)}% improvement. ${d.total_checks_30d} checks processed in the last 30 days across ${d.active_skills} active skills.`:d.total_checks_30d>0?`${d.total_checks_30d} checks processed in the last 30 days across ${d.active_skills} active skills. Run an evolution cycle to start improving skill pass rates.`:`Start grading sessions to generate performance insights. Run selftune orchestrate to begin the autonomous improvement loop.`})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-3 shrink-0`,children:[(0,F.jsx)(I,{size:`sm`,className:`font-headline text-[10px] uppercase tracking-widest`,disabled:!0,"aria-disabled":`true`,title:`Dashboard-triggered evolution is not available yet.`,children:`Run Evolution`}),(0,F.jsx)(I,{variant:`outline`,size:`sm`,className:`font-headline text-[10px] uppercase tracking-widest border-primary/20 text-primary hover:border-primary/40`,disabled:!0,"aria-disabled":`true`,title:`Detailed analytics drill-down is not available yet.`,children:`View Details`})]})]})})})]}),(0,F.jsxs)(`div`,{className:`flex items-center justify-between text-[10px] font-headline uppercase tracking-widest text-muted-foreground px-1`,children:[(0,F.jsxs)(`span`,{children:[d.total_evolutions,` evolution`,d.total_evolutions===1?``:`s`,` deployed`]}),(0,F.jsxs)(`span`,{children:[d.total_checks_30d,` checks (30d)`]}),(0,F.jsxs)(`span`,{children:[d.active_skills,` active skill`,d.active_skills===1?``:`s`]})]})]})}function Jh(e){switch(e){case`repaired_contextual_miss`:return{label:`repaired miss`,variant:`destructive`};case`repaired_trigger`:return{label:`repaired trigger`,variant:`secondary`};case`legacy_materialized`:return{label:`legacy row`,variant:`outline`};default:return null}}function Yh(e){switch(e){case`previously_missed`:return{label:`previously missed`,variant:`secondary`};default:return null}}function Xh({row:e}){let t=e.workspace_path?e.workspace_path.split(`/`).slice(-2).join(`/`):null,n=Jh(e.observation_kind),r=Yh(e.historical_context);return(0,F.jsxs)(ot,{className:e.triggered?``:`bg-destructive/5`,children:[(0,F.jsx)(H,{className:`max-w-[420px] truncate py-2 text-[12px]`,title:e.query_text||void 0,children:e.query_text||(0,F.jsx)(`span`,{className:`italic text-muted-foreground/40`,children:`No prompt recorded`})}),(0,F.jsx)(H,{className:`py-2`,children:(0,F.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[e.triggered?(0,F.jsx)(P,{variant:`outline`,className:`border-green-600/30 text-[10px] font-normal text-green-600`,children:`triggered`}):(0,F.jsx)(P,{variant:`destructive`,className:`text-[10px] font-normal`,children:`missed`}),n&&(0,F.jsx)(P,{variant:n.variant,className:`text-[10px] font-normal`,children:n.label}),r&&(0,F.jsx)(P,{variant:r.variant,className:`text-[10px] font-normal`,children:r.label})]})}),(0,F.jsx)(H,{className:`py-2 font-mono text-[11px] tabular-nums text-muted-foreground`,children:e.confidence==null?`Not recorded`:`${Math.round(e.confidence*100)}%`}),(0,F.jsx)(H,{className:`py-2`,children:e.invocation_mode?(0,F.jsx)(P,{variant:`secondary`,className:`text-[10px] font-normal`,children:e.invocation_mode}):(0,F.jsx)(`span`,{className:`text-[11px] text-muted-foreground`,children:`Unknown mode`})}),(0,F.jsx)(H,{className:`py-2 text-[11px] text-muted-foreground`,children:e.prompt_kind??`Unclassified`}),(0,F.jsx)(H,{className:`py-2 text-[11px] text-muted-foreground`,children:e.source??`No data`}),(0,F.jsx)(H,{className:`py-2 text-[11px] text-muted-foreground`,children:e.platform??`No data`}),(0,F.jsx)(H,{className:`py-2 font-mono text-[11px] text-muted-foreground`,title:e.workspace_path??void 0,children:t??`No data`}),(0,F.jsx)(H,{className:`py-2`,children:(0,F.jsx)(P,{variant:e.query_origin===`inline_query`?`outline`:e.query_origin===`matched_prompt`?`secondary`:`destructive`,className:`text-[10px] font-normal`,children:e.query_origin})})]})}function Zh({rows:e,emptyMessage:t}){return e.length===0?(0,F.jsx)(`div`,{className:`flex items-center justify-center py-12 text-sm text-muted-foreground`,children:t}):(0,F.jsx)(`div`,{className:`themed-scroll max-h-[340px] overflow-auto`,children:(0,F.jsxs)(rt,{children:[(0,F.jsx)(it,{children:(0,F.jsxs)(ot,{className:`sticky top-0 z-10 bg-muted/70 backdrop-blur hover:bg-muted/70`,children:[(0,F.jsx)(V,{className:`h-8 font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Prompt`}),(0,F.jsx)(V,{className:`h-8 w-[80px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Status`}),(0,F.jsx)(V,{className:`h-8 w-[70px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Confidence`}),(0,F.jsx)(V,{className:`h-8 w-[80px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Mode`}),(0,F.jsx)(V,{className:`h-8 w-[80px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Kind`}),(0,F.jsx)(V,{className:`h-8 w-[70px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Source`}),(0,F.jsx)(V,{className:`h-8 w-[70px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Platform`}),(0,F.jsx)(V,{className:`h-8 w-[100px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Workspace`}),(0,F.jsx)(V,{className:`h-8 w-[100px] font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Origin`})]})}),(0,F.jsx)(at,{children:e.map((e,t)=>(0,F.jsx)(Xh,{row:e},`${e.session_id}-${t}`))})]})})}function Qh({label:e,value:t,warn:n}){let r=t==null?null:Math.round(t*100);return(0,F.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,F.jsx)(`span`,{className:`w-40 shrink-0 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:e}),(0,F.jsx)(`div`,{className:`h-2 flex-1 overflow-hidden rounded-full bg-muted`,children:r!=null&&(0,F.jsx)(`div`,{className:`h-full rounded-full transition-all ${n?`bg-destructive`:`bg-primary`}`,style:{width:`${Math.min(r,100)}%`}})}),(0,F.jsx)(`span`,{className:`w-10 text-right font-mono text-xs tabular-nums ${n?`text-destructive`:`text-muted-foreground`}`,children:r==null?`No data`:`${r}%`})]})}function $h({title:e,data:t}){if(!t||t.length===0)return null;let n=e=>{switch(e){case`repaired_contextual_miss`:return`repaired contextual miss`;case`repaired_trigger`:return`repaired trigger`;case`legacy_materialized`:return`legacy materialized`;default:return e}},r=t.map(e=>[n(e.source??e.kind??`(unknown)`),e.count]).sort(([,e],[,t])=>t-e),i=r.reduce((e,[,t])=>e+t,0);return(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`h4`,{className:`mb-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:e}),(0,F.jsxs)(rt,{children:[(0,F.jsx)(it,{children:(0,F.jsxs)(ot,{className:`hover:bg-transparent`,children:[(0,F.jsx)(V,{className:`h-7 font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Value`}),(0,F.jsx)(V,{className:`h-7 w-[80px] text-right font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Count`}),(0,F.jsx)(V,{className:`h-7 w-[80px] text-right font-headline text-[10px] uppercase tracking-[0.15em]`,children:`Rate`})]})}),(0,F.jsx)(at,{children:r.map(([e,t])=>(0,F.jsxs)(ot,{children:[(0,F.jsx)(H,{className:`py-2 text-[11px]`,children:e}),(0,F.jsx)(H,{className:`py-2 text-right font-mono text-[11px]`,children:t}),(0,F.jsx)(H,{className:`py-2 text-right font-mono text-[11px] text-muted-foreground`,children:i>0?`${Math.round(t/i*100)}%`:`0%`})]},e))})]})]})}function eg({nextAction:e,latestDecision:t}){let n=e.variant===`destructive`?`border-destructive/25`:e.variant===`default`?`border-primary/20`:`border-border/15`;return(0,F.jsxs)(`div`,{className:`grid grid-cols-1 gap-3 @4xl/main:grid-cols-12`,children:[(0,F.jsx)(L,{className:`rounded-xl border bg-muted/35 shadow-none ${t?`@4xl/main:col-span-8`:`@4xl/main:col-span-12`} ${n}`,children:(0,F.jsxs)(B,{className:`flex items-start gap-3 px-4 py-4`,children:[(0,F.jsx)(`div`,{className:`shrink-0 pt-0.5`,children:e.icon}),(0,F.jsxs)(`div`,{className:`flex-1`,children:[(0,F.jsx)(`h3`,{className:`mb-1 font-headline text-[10px] uppercase tracking-[0.18em] text-muted-foreground`,children:`Next Best Action`}),(0,F.jsx)(`p`,{className:`text-[15px] font-medium leading-6 text-foreground`,children:e.text})]}),(0,F.jsx)(P,{variant:e.variant,className:`shrink-0 self-start text-[10px]`,children:e.actionLabel})]})}),t&&(0,F.jsx)(L,{className:`rounded-xl border border-border/10 bg-muted/20 @4xl/main:col-span-4`,children:(0,F.jsxs)(B,{className:`flex h-full items-start gap-3 px-4 py-4`,children:[(0,F.jsx)(Re,{className:`mt-0.5 size-4 shrink-0 text-primary/80`}),(0,F.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,F.jsx)(`h3`,{className:`mb-1 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Latest Decision`}),(0,F.jsx)(`p`,{className:`truncate text-sm font-medium leading-6`,children:t.action}),t.timestamp&&(0,F.jsx)(`p`,{className:`mt-0.5 font-mono text-[10px] text-muted-foreground`,children:Wn(t.timestamp)})]}),(0,F.jsxs)(P,{variant:`outline`,className:`shrink-0 self-start text-[9px]`,children:[t.evolutionCount,` evolution`,t.evolutionCount===1?``:`s`]})]})})]})}function tg({checks:e,sessions:t,promptLinkRate:n}){return`Selftune watched ${e} skill checks across ${t} sessions.${n==null?``:` It could link ${Hn(n)} of those checks back to prompts.`}`}function ng({missRate:e,missedTriggers:t,systemLikeRate:n}){return(t??0)>0&&e!=null?`It found ${t} likely misses (${Hn(e)} miss rate), which means people asked for this skill and it probably should have triggered.`:(n??0)>.05?`Routing looks mostly stable, but some records appear system-generated, so selftune is being cautious about making strong claims.`:`Routing looks consistent in the current sample, with no strong signs that this skill is missing obvious requests.`}function rg({trustState:e,latestAction:t,nextActionText:n}){switch(e){case`validated`:return`Selftune found a candidate that looks promising, but it has not been deployed yet. ${n}`;case`deployed`:return`A change has already been deployed for this skill. Selftune is now watching for regressions in real use.`;case`rolled_back`:return`A previous change was rolled back, so the live skill is back on the safer version while selftune keeps observing.`;case`watch`:return`Selftune sees enough signal to keep a close eye on this skill, but not enough to blindly change it. ${n}`;case`observed`:return`Selftune is still learning how people use this skill before making stronger recommendations.`;case`low_sample`:return`There is not enough evidence yet to trust a big change here. Selftune is still collecting examples.`;default:return t?`The latest automated decision for this skill was ${t}. ${n}`:n}}function ig({title:e,icon:t,body:n}){return(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 p-4`,children:[(0,F.jsxs)(`div`,{className:`mb-2 flex items-center gap-2`,children:[(0,F.jsx)(`div`,{className:`text-primary/80`,children:t}),(0,F.jsx)(`h3`,{className:`font-headline text-[10px] uppercase tracking-[0.18em] text-muted-foreground`,children:e})]}),(0,F.jsx)(`p`,{className:`text-sm leading-6 text-foreground/90`,children:n})]})}function ag({trustState:e,coverage:t,evidenceQuality:n,routingQuality:r,evolutionState:i,dataHygiene:a,fallbackChecks:o,fallbackSessions:s,nextActionText:c,onOpenGuide:l}){let u=t?.checks??o,d=t?.sessions??s,f=a?.raw_checks??u,p=a?.internal_prompt_rows??0,m=a?.legacy_rows??0,h=a?.repaired_rows??0,g=Math.max(f-u,0)>0||m>0||h>0;return(0,F.jsxs)(L,{className:`rounded-xl border border-border/10 bg-card/95`,children:[(0,F.jsx)(R,{className:`gap-2 px-4 py-4`,children:(0,F.jsxs)(`div`,{className:`flex flex-wrap items-start justify-between gap-3`,children:[(0,F.jsxs)(`div`,{className:`space-y-1`,children:[(0,F.jsx)(z,{className:`text-base`,children:`How selftune is improving this skill`}),(0,F.jsx)(tt,{children:`Read this first if you want the plain-English version before diving into the evidence below.`})]}),l&&(0,F.jsx)(I,{variant:`outline`,size:`sm`,onClick:l,children:`How to read this page`})]})}),(0,F.jsxs)(B,{className:`space-y-4 px-4 pb-4 pt-0`,children:[g&&(0,F.jsxs)(`div`,{className:`rounded-xl border border-primary/10 bg-primary/5 px-4 py-3 text-sm text-muted-foreground`,children:[(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:`Trust note:`}),` This summary is based on `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:u}),` operational checks from real usage.`,p>0&&(0,F.jsxs)(F.Fragment,{children:[` `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:p}),` internal selftune eval or optimizer prompts are excluded from trust scoring.`]}),m>0&&(0,F.jsxs)(F.Fragment,{children:[` `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:m}),` legacy rows stay in history only.`]}),h>0&&(0,F.jsxs)(F.Fragment,{children:[` `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:h}),` repaired misses come from transcript replay rather than first-party trigger events.`]})]}),(0,F.jsxs)(`div`,{className:`grid grid-cols-1 gap-3 @4xl/main:grid-cols-3`,children:[(0,F.jsx)(ig,{title:`What selftune saw`,icon:(0,F.jsx)(Le,{className:`size-4`}),body:tg({checks:u,sessions:d,promptLinkRate:n?.prompt_link_rate})}),(0,F.jsx)(ig,{title:`Why it acted`,icon:(0,F.jsx)(w,{className:`size-4`}),body:ng({missRate:r?.miss_rate,missedTriggers:r?.missed_triggers,systemLikeRate:n?.system_like_rate})}),(0,F.jsx)(ig,{title:`What happened next`,icon:(0,F.jsx)(Re,{className:`size-4`}),body:rg({trustState:e,latestAction:i?.latest_action,nextActionText:c})})]}),(0,F.jsx)(`div`,{className:`rounded-xl border border-border/10 bg-muted/15 px-4 py-3 text-sm text-muted-foreground`,children:`If a proposal is rejected or still pending, your live skill has not changed yet. Selftune only earns trust by testing changes before deployment.`})]})]})}function og({coverage:e,evidenceQuality:t,routingQuality:n,evolutionState:r,fallbackChecks:i,fallbackSessions:a,fallbackEvidenceRows:o,fallbackEvolutionRows:s,fallbackLatestAction:c}){let l=(r?.evolution_rows??s)>0;return(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`h2`,{className:`mb-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Trust Signals`}),(0,F.jsxs)(`div`,{className:`grid grid-cols-1 gap-3 @xl/main:grid-cols-2 @5xl/main:grid-cols-4`,children:[(0,F.jsx)(L,{className:`rounded-xl border border-border/10 bg-muted/20 transition-colors hover:border-border/20 @container/card`,children:(0,F.jsxs)(R,{className:`gap-2 px-4 py-3`,children:[(0,F.jsxs)(tt,{className:`flex items-center gap-1.5`,children:[(0,F.jsx)(Le,{className:`size-3.5`}),(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Coverage`})]}),(0,F.jsx)(z,{className:`text-[32px] font-semibold leading-none tabular-nums text-foreground`,children:e?.checks??i}),(0,F.jsx)(nt,{children:(0,F.jsxs)(`span`,{className:`font-mono text-[10px] text-muted-foreground`,children:[e?.sessions??a,` sessions /`,` `,e?.workspaces??`No data`,` dirs`]})})]})}),(0,F.jsx)(L,{className:`rounded-xl border border-border/10 bg-muted/20 transition-colors hover:border-border/20 @container/card`,children:(0,F.jsxs)(R,{className:`gap-2 px-4 py-3`,children:[(0,F.jsxs)(tt,{className:`flex items-center gap-1.5`,children:[(0,F.jsx)(w,{className:`size-3.5`}),(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Evidence Quality`}),(0,F.jsx)(Th,{text:`How well prompts are linked to invocations. Higher prompt-link rate = more trustworthy data.`})]}),(0,F.jsx)(z,{className:`text-[32px] font-semibold leading-none tabular-nums text-foreground`,children:t?.prompt_link_rate==null?`No data`:Hn(t.prompt_link_rate)}),(0,F.jsx)(nt,{children:(0,F.jsxs)(`div`,{className:`flex flex-col items-end gap-0.5`,children:[(0,F.jsxs)(`span`,{className:`text-[10px] text-muted-foreground`,children:[`inline:`,` `,t?.inline_query_rate==null?`No data`:Hn(t.inline_query_rate)]}),(t?.system_like_rate??0)>.05&&(0,F.jsxs)(P,{variant:`destructive`,className:`text-[9px]`,children:[Hn(t?.system_like_rate??0),` system-like`]})]})})]})}),(0,F.jsx)(L,{className:`rounded-xl border border-border/10 bg-muted/20 transition-colors hover:border-border/20 @container/card`,children:(0,F.jsxs)(R,{className:`gap-2 px-4 py-3`,children:[(0,F.jsxs)(tt,{className:`flex items-center gap-1.5`,children:[(0,F.jsx)(g,{className:`size-3.5`}),(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Routing`}),(0,F.jsx)(Th,{text:`Routing accuracy: average confidence when triggering, and miss rate`})]}),(0,F.jsx)(z,{className:`text-[32px] font-semibold leading-none tabular-nums text-foreground`,children:n?.avg_confidence==null?`No data`:Hn(n.avg_confidence)}),(0,F.jsx)(nt,{children:(0,F.jsxs)(`div`,{className:`flex flex-col items-end gap-0.5`,children:[(0,F.jsxs)(`span`,{className:`text-[10px] text-muted-foreground`,children:[`miss:`,` `,n?.miss_rate==null?`No data`:Hn(n.miss_rate)]}),(0,F.jsxs)(`span`,{className:`text-[10px] tabular-nums text-muted-foreground`,children:[n?.missed_triggers??`No data`,` missed`]})]})})]})}),(0,F.jsx)(L,{className:`rounded-xl border border-border/10 bg-muted/20 transition-colors hover:border-border/20 @container/card`,children:(0,F.jsxs)(R,{className:`gap-2 px-4 py-3`,children:[(0,F.jsxs)(tt,{className:`flex items-center gap-1.5`,children:[(0,F.jsx)(Re,{className:`size-3.5`}),(0,F.jsx)(`span`,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Evolution`})]}),l?(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(z,{className:`text-sm font-medium leading-6`,children:r?.latest_action??c??`No data`}),(0,F.jsx)(nt,{children:(0,F.jsxs)(`div`,{className:`flex flex-col items-end gap-0.5`,children:[(0,F.jsxs)(`span`,{className:`text-[10px] tabular-nums text-muted-foreground`,children:[r?.evidence_rows??o,` evidence`]}),(0,F.jsxs)(`span`,{className:`text-[10px] tabular-nums text-muted-foreground`,children:[r?.evolution_rows??s,` evolution`]}),r?.latest_timestamp&&(0,F.jsx)(`span`,{className:`font-mono text-[10px] text-muted-foreground`,children:Wn(r.latest_timestamp)})]})})]}):(0,F.jsx)(z,{className:`text-sm font-normal text-muted-foreground`,children:`No evolution yet`})]})})]})]})}function sg({examples:e}){return!e||e.good.length===0&&e.missed.length===0&&e.noisy.length===0?null:(0,F.jsxs)(L,{className:`rounded-xl border border-border/10 bg-card/90`,children:[(0,F.jsx)(R,{className:`px-4 pb-2 pt-4`,children:(0,F.jsxs)(`div`,{className:`flex items-start justify-between gap-4`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(z,{className:`font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Prompt Evidence`}),(0,F.jsx)(tt,{children:`Representative real usage first. Internal selftune traffic is separated so it does not masquerade as normal skill use.`})]}),(0,F.jsxs)(`div`,{className:`hidden items-center gap-2 text-[10px] text-muted-foreground @3xl/main:flex`,children:[(0,F.jsxs)(`span`,{children:[e.good.length,` successful`]}),(0,F.jsx)(`span`,{className:`text-border`,children:`|`}),(0,F.jsxs)(`span`,{children:[e.missed.length,` missed`]}),(0,F.jsx)(`span`,{className:`text-border`,children:`|`}),(0,F.jsxs)(`span`,{children:[e.noisy.length,` internal/polluted`]})]})]})}),(0,F.jsx)(B,{className:`px-4 pb-4 pt-0`,children:(0,F.jsxs)(st,{defaultValue:`good`,children:[(0,F.jsxs)(lt,{variant:`line`,className:`min-h-0 rounded-xl border border-border/10 bg-muted/20 px-1.5 py-1`,children:[(0,F.jsxs)(ut,{value:`good`,className:`rounded-lg px-3 data-active:bg-background/70 data-active:text-foreground`,children:[`Successful Triggers`,(0,F.jsx)(P,{variant:`outline`,className:`ml-1.5 text-[10px]`,children:e.good.length})]}),(0,F.jsxs)(ut,{value:`missed`,className:`rounded-lg px-3 data-active:bg-background/70 data-active:text-foreground`,children:[`Missed Real Usage`,(0,F.jsx)(P,{variant:e.missed.length>0?`destructive`:`outline`,className:`ml-1.5 text-[10px]`,children:e.missed.length})]}),(0,F.jsxs)(ut,{value:`noisy`,className:`rounded-lg px-3 data-active:bg-background/70 data-active:text-foreground`,children:[`Internal / Polluted`,(0,F.jsx)(P,{variant:e.noisy.length>0?`destructive`:`outline`,className:`ml-1.5 text-[10px]`,children:e.noisy.length})]})]}),(0,F.jsx)(dt,{value:`good`,className:`mt-2`,children:(0,F.jsx)(Zh,{rows:e.good,emptyMessage:`No successful trigger samples yet.`})}),(0,F.jsx)(dt,{value:`missed`,className:`mt-2`,children:(0,F.jsx)(Zh,{rows:e.missed,emptyMessage:`No missed real-usage samples detected.`})}),(0,F.jsx)(dt,{value:`noisy`,className:`mt-2`,children:(0,F.jsx)(Zh,{rows:e.noisy,emptyMessage:`No internal or polluted samples detected.`})})]})})]})}function cg({evidenceQuality:e,dataHygiene:t}){return(0,F.jsxs)(`div`,{className:`grid grid-cols-1 gap-6 @5xl/main:grid-cols-2 @5xl/main:items-start`,children:[(0,F.jsxs)(L,{className:`rounded-2xl border border-border/15 bg-card`,children:[(0,F.jsx)(R,{children:(0,F.jsxs)(z,{className:`flex items-center gap-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:[(0,F.jsx)(Fe,{className:`size-4`}),`Evidence Quality Rates`]})}),(0,F.jsxs)(B,{className:`space-y-3 p-4`,children:[(0,F.jsx)(Qh,{label:`Prompt-linked`,value:e?.prompt_link_rate}),(0,F.jsx)(Qh,{label:`Inline query`,value:e?.inline_query_rate}),(0,F.jsx)(Qh,{label:`User prompt`,value:e?.user_prompt_rate}),(0,F.jsx)(Qh,{label:`Meta prompt`,value:e?.meta_prompt_rate}),(0,F.jsx)(Qh,{label:`No prompt`,value:e?.no_prompt_rate}),(0,F.jsx)(Qh,{label:`System-like`,value:e?.system_like_rate,warn:(e?.system_like_rate??0)>.05}),(0,F.jsx)(`div`,{className:`mt-3 border-t border-border/40 pt-3`}),(0,F.jsx)(Qh,{label:`Invocation mode`,value:e?.invocation_mode_coverage}),(0,F.jsx)(Qh,{label:`Confidence`,value:e?.confidence_coverage}),(0,F.jsx)(Qh,{label:`Source`,value:e?.source_coverage}),(0,F.jsx)(Qh,{label:`Scope`,value:e?.scope_coverage})]})]}),t&&(0,F.jsxs)(L,{className:`rounded-2xl border border-border/15 bg-card`,children:[(0,F.jsx)(R,{children:(0,F.jsxs)(z,{className:`flex items-center gap-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:[(0,F.jsx)(A,{className:`size-4`}),`Data Hygiene`]})}),(0,F.jsxs)(B,{className:`space-y-6 p-4`,children:[(0,F.jsxs)(`div`,{className:`grid grid-cols-2 gap-3`,children:[(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/30 p-3`,children:[(0,F.jsx)(`div`,{className:`text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Raw vs Operational`}),(0,F.jsxs)(`div`,{className:`mt-2 flex items-end gap-2`,children:[(0,F.jsx)(`div`,{className:`text-lg font-semibold tabular-nums text-foreground`,children:t.operational_checks}),(0,F.jsxs)(`div`,{className:`pb-0.5 text-xs text-muted-foreground`,children:[`of `,t.raw_checks,` checks`]})]}),(0,F.jsx)(`p`,{className:`mt-1 text-[11px] text-muted-foreground`,children:`Operational checks exclude internal selftune eval and optimizer traffic.`})]}),(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/15 bg-muted/30 p-3`,children:[(0,F.jsx)(`div`,{className:`text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Historical Residue`}),(0,F.jsxs)(`div`,{className:`mt-2 flex items-end gap-2`,children:[(0,F.jsx)(`div`,{className:`text-lg font-semibold tabular-nums text-foreground`,children:t.legacy_rows}),(0,F.jsxs)(`div`,{className:`pb-0.5 text-xs text-muted-foreground`,children:[`legacy / `,t.repaired_rows,` repaired`]})]}),(0,F.jsx)(`p`,{className:`mt-1 text-[11px] text-muted-foreground`,children:`Legacy rows are older materialized history. Repaired rows are transcript-based reconstructions.`})]})]}),t.naming_variants&&t.naming_variants.length>1&&(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`h4`,{className:`mb-2 font-headline text-[10px] uppercase tracking-[0.2em] text-muted-foreground`,children:`Naming Variants`}),(0,F.jsx)(`div`,{className:`flex flex-wrap gap-1.5`,children:t.naming_variants.map(e=>(0,F.jsx)(P,{variant:`outline`,className:`font-mono text-[10px]`,children:e},e))}),(0,F.jsx)(`p`,{className:`mt-1 text-[11px] text-muted-foreground`,children:`Multiple naming variants may indicate inconsistent skill registration.`})]}),(0,F.jsx)($h,{title:`Source Breakdown`,data:t.source_breakdown}),(0,F.jsx)($h,{title:`Prompt Kind Breakdown`,data:t.prompt_kind_breakdown}),(0,F.jsx)($h,{title:`Observation Breakdown`,data:t.observation_breakdown})]})]})]})}var lg=6e4;function ug(e){return Bn({queryKey:[`skill-report`,e],queryFn:()=>Ps(e),enabled:!!e,staleTime:5e3,refetchInterval:lg,retry:(e,t)=>t instanceof Ls?!1:e<2})}var dg={low_sample:{label:`Low Sample`,variant:`secondary`,icon:(0,F.jsx)(D,{className:`size-3`})},observed:{label:`Observed`,variant:`outline`,icon:(0,F.jsx)(oe,{className:`size-3`})},watch:{label:`Watch`,variant:`secondary`,icon:(0,F.jsx)(te,{className:`size-3`})},validated:{label:`Validated`,variant:`default`,icon:(0,F.jsx)(O,{className:`size-3`})},deployed:{label:`Deployed`,variant:`default`,icon:(0,F.jsx)(O,{className:`size-3`})},rolled_back:{label:`Rolled Back`,variant:`destructive`,icon:(0,F.jsx)(Ee,{className:`size-3`})}};function fg(e,t,n,r,i){return e===`low_sample`?{icon:(0,F.jsx)(oe,{className:`size-5`}),text:`Keep observing. This skill needs more sessions before trust can be assessed.`,actionLabel:`Keep observing`,variant:`secondary`}:e===`rolled_back`?{icon:(0,F.jsx)(y,{className:`size-5 text-destructive`}),text:`Inspect rollback evidence before re-deploying.`,actionLabel:`Inspect rollback`,variant:`destructive`}:e===`watch`&&(n??0)>.05?{icon:(0,F.jsx)(y,{className:`size-5 text-amber-500`}),text:`Clean source-truth data or routing data before trusting this report.`,actionLabel:`Clean data`,variant:`secondary`}:e===`watch`&&(t??0)>0?{icon:(0,F.jsx)(w,{className:`size-5 text-amber-500`}),text:`Generate evals to investigate missed triggers.`,actionLabel:`Generate evals`,variant:`secondary`}:e===`watch`?{icon:(0,F.jsx)(oe,{className:`size-5 text-amber-500`}),text:`This skill is under active observation. Review recent invocations to verify routing accuracy.`,actionLabel:`Review invocations`,variant:`secondary`}:r?{icon:(0,F.jsx)(Re,{className:`size-5 text-primary`}),text:`Review pending proposal.`,actionLabel:`Review proposal`,variant:`default`}:e===`validated`?{icon:(0,F.jsx)(ge,{className:`size-5 text-primary`}),text:`Deploy the validated candidate.`,actionLabel:`Deploy candidate`,variant:`default`}:e===`deployed`?{icon:(0,F.jsx)(We,{className:`size-5 text-green-500`}),text:`No action needed. Skill is healthy and being monitored.`,actionLabel:`Healthy`,variant:`outline`}:e===`observed`?{icon:(0,F.jsx)(oe,{className:`size-5 text-muted-foreground`}),text:`No action needed. Selftune is still observing this skill and building confidence from real usage.`,actionLabel:`Observed`,variant:`outline`}:{icon:(0,F.jsx)(oe,{className:`size-5`}),text:`Continue monitoring this skill.`,actionLabel:`Monitor`,variant:`outline`}}function pg({evolution:e,activeProposal:t,onSelect:n}){let r=new Set(e.map(e=>e.proposal_id)).size,i=r>6,[a,o]=(0,M.useState)(!i),s=(0,M.useMemo)(()=>{if(a)return e;let t=new Set,n=[];for(let r of e){if(!t.has(r.proposal_id)){if(t.size>=6)continue;t.add(r.proposal_id)}n.push(r)}return n},[6,e,a]);return(0,F.jsx)(`aside`,{className:`w-full px-4 py-4 @5xl/main:w-[252px] @5xl/main:self-start @5xl/main:pr-0`,children:(0,F.jsx)(`div`,{className:`@5xl/main:sticky @5xl/main:top-16`,children:(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-3 py-3 text-xs ${a?`themed-scroll max-h-[26rem] overflow-y-auto @5xl/main:max-h-[calc(100svh-6rem)]`:`overflow-visible`}`,children:[(0,F.jsx)(wh,{entries:s,selectedProposalId:t,onSelect:n}),i&&(0,F.jsxs)(`button`,{type:`button`,onClick:()=>o(!a),className:`mt-2 flex w-full items-center justify-center gap-1.5 py-2 text-[11px] text-muted-foreground transition-colors hover:text-foreground`,children:[(0,F.jsx)(Te,{className:`size-3 transition-transform duration-150 ${a?`rotate-180`:``}`}),a?`Collapse timeline`:`Show full timeline (${r} proposals)`]})]})})})}function mg(){let{name:e}=f(),[t,n]=i(),{data:r,isPending:a,isError:o,error:s,refetch:c}=ug(e),[u,d]=(0,M.useState)(!1),[p,m]=(0,M.useState)(`invocations`),h=r?.evolution??[],g=new Set(h.map(e=>e.proposal_id)),_=t.get(`proposal`),v=_&&g.has(_)?_:h.length>0?h[0].proposal_id:null;(0,M.useEffect)(()=>{let e=t.get(`proposal`);if(v&&e!==v){let e=new URLSearchParams(t);e.set(`proposal`,v),n(e,{replace:!0});return}if(!v&&e){let e=new URLSearchParams(t);e.delete(`proposal`),n(e,{replace:!0})}},[v,t,n]);let y=e=>{let r=new URLSearchParams(t);r.set(`proposal`,e),n(r,{replace:!0})},b=r?.trust,x=r?.coverage,S=r?.evidence_quality,C=r?.routing_quality,w=r?.evolution_state,T=r?.data_hygiene,E=r?.examples,ee=T?.raw_checks??x?.checks??r?.usage.total_checks??0,D=T?.operational_checks??x?.checks??r?.usage.total_checks??0,O=Math.max(ee-D,0),k=(w?.evolution_rows??h.length)>0,te=k?`evidence`:`invocations`;(0,M.useEffect)(()=>{m(te)},[te]);let A=(0,M.useMemo)(()=>{let e=(r?.canonical_invocations??[]).map(e=>({timestamp:e.timestamp||e.occurred_at||null,session_id:e.session_id,triggered:e.triggered,query:e.query??``,source:e.source??``,invocation_mode:e.invocation_mode??null,confidence:e.confidence??null,tool_name:e.tool_name??null,agent_type:e.agent_type??null,observation_kind:e.observation_kind??`canonical`,historical_context:e.historical_context??null}));return e.sort((e,t)=>(t.timestamp??``).localeCompare(e.timestamp??``)),e},[r?.canonical_invocations]);if(!e)return(0,F.jsx)(`div`,{className:`flex flex-1 items-center justify-center py-16`,children:(0,F.jsx)(`p`,{className:`text-sm text-destructive`,children:`No skill name provided`})});if(a)return(0,F.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-6 p-4 lg:p-6`,children:[(0,F.jsx)(W,{className:`h-10 w-64`}),(0,F.jsx)(`div`,{className:`grid grid-cols-1 gap-4 @xl/main:grid-cols-2 @5xl/main:grid-cols-4`,children:Array.from({length:4}).map((e,t)=>(0,F.jsx)(W,{className:`h-28 rounded-2xl`},t))}),(0,F.jsx)(W,{className:`h-20 rounded-2xl`}),(0,F.jsx)(W,{className:`h-64 rounded-2xl`})]});if(o)return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,F.jsx)(Ne,{className:`size-10 text-destructive`}),(0,F.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:s instanceof Error?s.message:`Unknown error`}),(0,F.jsxs)(I,{variant:`outline`,size:`sm`,onClick:()=>c(),children:[(0,F.jsx)(j,{className:`mr-2 size-3.5`}),`Retry`]})]});if(!r)return(0,F.jsx)(`div`,{className:`flex flex-1 items-center justify-center py-16`,children:(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No data yet`})});if((x?.checks??r.usage.total_checks)===0&&r.evidence.length===0&&r.evolution.length===0&&(r.canonical_invocations?.length??0)===0)return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,F.jsxs)(`p`,{className:`text-sm text-muted-foreground`,children:[`No data found for skill "`,e,`".`]}),(0,F.jsxs)(I,{variant:`outline`,size:`sm`,render:(0,F.jsx)(l,{to:`/`}),children:[(0,F.jsx)(ye,{className:`mr-2 size-3.5`}),`Back to Overview`]})]});let ne=b?.state??`low_sample`,re=dg[ne],ie=fg(ne,C?.miss_rate,S?.system_like_rate,w?.has_pending_proposals??r.pending_proposals.length>0,k);return(0,F.jsxs)(st,{value:p,onValueChange:m,children:[(0,F.jsx)(jh,{open:u,onOpenChange:d}),(0,F.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-5 p-4 lg:px-6 lg:pb-6 lg:pt-0`,children:[(0,F.jsxs)(`div`,{className:`sticky top-0 z-30 space-y-2 border-b border-border/15 bg-background/95 py-2.5 backdrop-blur supports-[backdrop-filter]:bg-background/85`,children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,F.jsx)(I,{variant:`outline`,size:`sm`,render:(0,F.jsx)(l,{to:`/`}),className:`shrink-0`,children:(0,F.jsx)(ye,{className:`size-3.5`})}),(0,F.jsx)(`h1`,{className:`text-base font-semibold tracking-tight lg:text-lg font-headline shrink-0`,children:r.skill_name}),(0,F.jsxs)(P,{variant:re.variant,className:`gap-1 shrink-0 text-[10px]`,children:[re.icon,re.label]}),(0,F.jsxs)(`div`,{className:`ml-auto flex items-center gap-4 shrink-0`,children:[(0,F.jsx)(I,{variant:`outline`,size:`sm`,onClick:()=>d(!0),children:`How this works`}),(0,F.jsxs)(`div`,{className:`hidden @xl/main:flex items-center gap-3 text-xs text-muted-foreground`,children:[(0,F.jsxs)(`span`,{className:`tabular-nums`,children:[(0,F.jsx)(`strong`,{className:`text-foreground`,children:x?.checks??r.usage.total_checks}),` `,`checks`]}),(0,F.jsx)(`span`,{className:`text-border`,children:`|`}),(0,F.jsxs)(`span`,{className:`tabular-nums`,children:[(0,F.jsx)(`strong`,{className:`text-foreground`,children:x?.sessions??r.sessions_with_skill}),` `,`sessions`]}),(0,F.jsx)(`span`,{className:`text-border`,children:`|`}),(0,F.jsxs)(`span`,{className:`tabular-nums`,children:[(0,F.jsx)(`strong`,{className:`text-foreground`,children:x?.workspaces??`No data`}),` `,`workspaces`]})]}),(x?.first_seen||x?.last_seen)&&(0,F.jsxs)(`div`,{className:`hidden @3xl/main:flex items-center gap-2 text-[10px] text-muted-foreground font-mono`,children:[x.first_seen&&(0,F.jsx)(`span`,{title:`First seen`,children:Wn(x.first_seen)}),x.first_seen&&x.last_seen&&(0,F.jsx)(`span`,{children:`-`}),x.last_seen&&(0,F.jsx)(`span`,{title:`Last seen`,children:Wn(x.last_seen)})]})]})]}),b?.summary&&(0,F.jsxs)(`div`,{className:`space-y-1.5 text-sm leading-relaxed text-muted-foreground`,children:[(0,F.jsxs)(`div`,{className:`flex flex-wrap items-center gap-3`,children:[(0,F.jsx)(`span`,{children:b.summary}),w?.latest_action&&w?.latest_timestamp&&(0,F.jsxs)(`span`,{className:`text-[11px] text-muted-foreground/70 font-mono`,children:[`Latest: `,w.latest_action,` (`,Wn(w.latest_timestamp),`)`]})]}),O>0&&(0,F.jsxs)(`div`,{className:`text-[12px] text-muted-foreground/80`,children:[`Based on `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:D}),` `,`real checks. `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:O}),` `,`internal or legacy rows are excluded from trust scoring.`]})]})]}),(0,F.jsx)(Mh,{onOpenGuide:()=>d(!0)}),(0,F.jsxs)(`div`,{className:`space-y-4`,children:[(0,F.jsx)(eg,{nextAction:ie,latestDecision:k&&w?.latest_action?{action:w.latest_action,timestamp:w.latest_timestamp,evolutionCount:w.evolution_rows??h.length}:void 0}),(0,F.jsx)(ag,{trustState:ne,coverage:x,evidenceQuality:S,routingQuality:C,evolutionState:w,dataHygiene:T,fallbackChecks:r.usage.total_checks,fallbackSessions:r.sessions_with_skill,nextActionText:ie.text,onOpenGuide:()=>d(!0)}),(0,F.jsx)(og,{coverage:x,evidenceQuality:S,routingQuality:C,evolutionState:w,fallbackChecks:r.usage.total_checks,fallbackSessions:r.sessions_with_skill,fallbackEvidenceRows:r.evidence.length,fallbackEvolutionRows:h.length,fallbackLatestAction:h[0]?.action})]}),(0,F.jsxs)(`div`,{className:`space-y-4 border-t border-border/10 pt-4`,children:[(0,F.jsxs)(lt,{variant:`line`,className:`rounded-xl border border-border/10 bg-muted/20 px-1.5 py-1`,children:[k&&(0,F.jsxs)(pt,{children:[(0,F.jsx)(mt,{render:(0,F.jsx)(ut,{value:`evidence`,className:`rounded-lg px-3 font-headline text-xs uppercase tracking-wider data-active:bg-background/70 data-active:text-foreground`}),children:`Evidence`}),(0,F.jsx)(ht,{children:`Change history and validation results`})]}),(0,F.jsxs)(pt,{children:[(0,F.jsxs)(mt,{render:(0,F.jsx)(ut,{value:`invocations`,className:`rounded-lg px-3 font-headline text-xs uppercase tracking-wider data-active:bg-background/70 data-active:text-foreground`}),children:[`Invocations`,(0,F.jsx)(P,{variant:`secondary`,className:`ml-1.5 text-[10px]`,children:A.length})]}),(0,F.jsx)(ht,{children:`Real usage and repaired misses only. Internal selftune traffic and legacy residue are excluded from this working set.`})]}),(0,F.jsxs)(pt,{children:[(0,F.jsx)(mt,{render:(0,F.jsx)(ut,{value:`data-quality`,className:`rounded-lg px-3 font-headline text-xs uppercase tracking-wider data-active:bg-background/70 data-active:text-foreground`}),children:`Data Quality`}),(0,F.jsx)(ht,{children:`Evidence quality metrics and data hygiene`})]})]}),k&&(0,F.jsxs)(dt,{value:`evidence`,className:`space-y-6`,children:[(0,F.jsx)(sg,{examples:E}),(0,F.jsx)(`div`,{className:`overflow-hidden rounded-2xl border border-border/15 bg-card`,children:(0,F.jsxs)(`div`,{className:`flex flex-col @5xl/main:grid @5xl/main:grid-cols-[252px_minmax(0,1fr)] @5xl/main:items-start`,children:[h.length>0&&(0,F.jsx)(pg,{evolution:h,activeProposal:v,onSelect:y}),(0,F.jsx)(`div`,{className:`min-w-0 p-4 @xl/main:p-5`,children:v?(0,F.jsx)(ph,{proposalId:v,evolution:h,evidence:r.evidence}):(0,F.jsx)(L,{className:`rounded-2xl`,children:(0,F.jsx)(B,{className:`py-12`,children:(0,F.jsxs)(`div`,{className:`flex flex-col items-center justify-center gap-3 text-center`,children:[(0,F.jsx)(oe,{className:`size-8 text-muted-foreground/40`}),(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`This skill is being observed but has no reviewable evolution evidence yet.`})]})})})})]})})]}),(0,F.jsx)(dt,{value:`invocations`,children:(0,F.jsxs)(`div`,{className:`space-y-2`,children:[O>0&&(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-muted/20 px-4 py-3 text-sm text-muted-foreground`,children:[`Showing`,` `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:A.length}),` `,`operational invocations.`,` `,(0,F.jsx)(`span`,{className:`font-medium text-foreground`,children:O}),` internal or legacy rows are tracked in Data Quality instead of being mixed into this working set.`]}),(0,F.jsx)(kh,{invocations:A,sessionMetadata:r?.session_metadata??[]})]})}),(0,F.jsx)(dt,{value:`data-quality`,children:(0,F.jsx)(cg,{evidenceQuality:S,dataHygiene:T})})]})]})]})}function hg(e){return Un(e.map(e=>({name:e.skill_name,scope:e.skill_scope,platforms:[],passRate:e.total_checks>0?e.pass_rate:null,checks:e.total_checks,status:Vn(e.pass_rate,e.total_checks),uniqueSessions:e.unique_sessions,triggeredCount:e.triggered_count,lastSeen:e.last_seen})))}function gg(e){let t=e.filter(e=>e.total_checks>=5);if(t.length===0)return null;let n=t.reduce((e,t)=>e+t.total_checks,0),r=t.reduce((e,t)=>e+Math.round(t.pass_rate*t.total_checks),0);return n>0?r/n:null}function _g(e,t){let n=[...t].filter(e=>e.skill_name).sort((e,t)=>new Date(t.timestamp).getTime()-new Date(e.timestamp).getTime());for(let t of n){let n=e.find(e=>e.skill_name===t.skill_name);if(n)return{skill:n,latestEvolution:t}}return e.length>0?{skill:[...e].sort((e,t)=>t.total_checks-e.total_checks)[0],latestEvolution:n[0]??null}:null}function vg(e){let t=encodeURIComponent(e);return(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(l,{to:`/skills/${t}`,className:`px-6 py-2 rounded-xl text-muted-foreground font-bold hover:bg-input transition-colors`,children:`Configure`}),(0,F.jsx)(l,{to:`/skills/${t}`,className:`px-8 py-2 bg-primary text-primary-foreground font-bold rounded-xl shadow-[0_4px_20px_rgba(79,242,255,0.2)] hover:shadow-[0_4px_25px_rgba(79,242,255,0.4)] transition-all`,children:`View Report`})]})}function yg(e){let t=encodeURIComponent(e);return(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(l,{to:`/skills/${t}`,className:`flex-1 py-2 text-xs font-bold text-muted-foreground bg-muted rounded-lg text-center hover:bg-input transition-colors`,children:`Configure`}),(0,F.jsx)(l,{to:`/skills/${t}`,className:`flex-1 py-2 text-xs font-bold text-muted-foreground bg-secondary rounded-lg text-center hover:bg-input hover:text-foreground transition-all`,children:`View Report`})]})}function bg({overviewQuery:e}){let{data:t,isLoading:n,isError:r,error:i,refetch:a}=e,[o,s]=(0,M.useState)(`ALL`),[c,l]=(0,M.useState)(!0),u=(0,M.useMemo)(()=>t?hg(t.skills):[],[t]),d=(0,M.useMemo)(()=>{let e=u;return o!==`ALL`&&(e=e.filter(e=>e.status===o)),c?e.reduceRight((e,t)=>(e.push(t),e),[]):e},[u,o,c]),f=(0,M.useMemo)(()=>t?_g(t.skills,t.overview.evolution):null,[t]),p=(0,M.useMemo)(()=>{let e={ALL:u.length,HEALTHY:0,WARNING:0,CRITICAL:0,UNGRADED:0};for(let t of u)t.status in e&&e[t.status]++;return e},[u]);if(n)return(0,F.jsx)(Ih,{});if(r)return(0,F.jsx)(Wh,{message:i instanceof Error?i.message:`Failed to load skills library.`,onRetry:()=>a()});if(!t)return(0,F.jsx)(Ih,{});let m=t.overview.pending_proposals.map(e=>({id:e.proposal_id,skillName:e.skill_name??null,action:e.action})),h=gg(t.skills),g=t.skills.filter(e=>e.total_checks>=5).length;return(0,F.jsxs)(`div`,{className:`@container/main flex flex-1 flex-col gap-8 py-8 px-4 lg:px-6 animate-in fade-in duration-500`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`h1`,{className:`font-headline text-4xl font-bold tracking-tight text-foreground`,children:`Skills Library`}),(0,F.jsx)(`p`,{className:`mt-2 text-sm text-muted-foreground max-w-2xl`,children:`Monitor and manage your evolving skill definitions across all scopes.`})]}),(0,F.jsxs)(`div`,{className:`grid grid-cols-12 gap-6`,children:[f?(0,F.jsx)(Lh,{skillName:f.skill.skill_name,skillScope:f.skill.skill_scope,passRate:f.skill.total_checks>0?f.skill.pass_rate:null,totalChecks:f.skill.total_checks,uniqueSessions:f.skill.unique_sessions,status:Vn(f.skill.pass_rate,f.skill.total_checks),latestEvolutionTimestamp:f.latestEvolution?.timestamp??null,renderActions:vg}):(0,F.jsx)(Hh,{}),(0,F.jsxs)(`div`,{className:`col-span-12 lg:col-span-4 flex flex-col gap-6`,children:[(0,F.jsx)(Rh,{aggregatePassRate:h,gradedCount:g}),(0,F.jsx)(zh,{proposals:m})]})]}),(0,F.jsxs)(`div`,{className:`space-y-6`,children:[(0,F.jsx)(Vh,{filter:o,onFilterChange:s,counts:p,sortDesc:c,onSortToggle:()=>l(e=>!e)}),d.length>0?(0,F.jsx)(`div`,{className:`grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-6`,children:d.map(e=>(0,F.jsx)(Bh,{skill:e,renderActions:yg},e.name))}):(0,F.jsx)(Uh,{})]})]})}var xg=6e4;function Sg(){return Bn({queryKey:[`doctor`],queryFn:Is,staleTime:5e3,refetchInterval:xg})}var Cg={pass:{color:`text-primary`,label:`Pass`,dotColor:`bg-primary`,dotGlow:`shadow-[0_0_8px_rgba(79,242,255,0.6)]`,animate:!0},warn:{color:`text-amber-400`,label:`Warn`,dotColor:`bg-amber-400`,dotGlow:``,animate:!1},fail:{color:`text-destructive`,label:`Fail`,dotColor:`bg-destructive`,dotGlow:`shadow-[0_0_8px_rgba(255,180,171,0.6)]`,animate:!1}},wg={config:{label:`Configuration`,description:`selftune.json exists and contains valid agent_type and llm_mode`,icon:(0,F.jsx)(x,{className:`size-4`})},log_session_telemetry:{label:`Session Telemetry Log`,description:`session_telemetry_log.jsonl exists and records parse correctly`,icon:(0,F.jsx)(se,{className:`size-4`})},log_skill_usage:{label:`Skill Usage Log`,description:`skill_usage_log.jsonl exists and records parse correctly`,icon:(0,F.jsx)(se,{className:`size-4`})},log_all_queries:{label:`Query Log`,description:`all_queries_log.jsonl exists and records parse correctly`,icon:(0,F.jsx)(se,{className:`size-4`})},log_evolution_audit:{label:`Evolution Audit Log`,description:`evolution_audit_log.jsonl exists and records parse correctly`,icon:(0,F.jsx)(se,{className:`size-4`})},hook_settings:{label:`Hook Installation`,description:`Claude Code settings.json has all required selftune hooks configured`,icon:(0,F.jsx)(Ze,{className:`size-4`})},evolution_audit:{label:`Evolution Health`,description:`Evolution audit log is intact and records are well-formed`,icon:(0,F.jsx)(O,{className:`size-4`})},dashboard_freshness_mode:{label:`Dashboard Freshness`,description:`The current dashboard still invalidates live updates from JSONL log watchers. SQLite WAL live invalidation has not been cut over yet.`,icon:(0,F.jsx)(E,{className:`size-4`})}};function Tg(e){if(typeof e!=`object`||!e)return!1;let t=e;return typeof t.workspace_root==`string`&&typeof t.git_sha==`string`&&typeof t.db_path==`string`&&typeof t.process_mode==`string`&&(t.watcher_mode===`wal`||t.watcher_mode===`jsonl`||t.watcher_mode===`none`)}function Eg({refreshKey:e}){let[t,n]=(0,M.useState)(null);if((0,M.useEffect)(()=>{fetch(`/api/health`).then(e=>e.json()).then(e=>{Tg(e)&&n(e)}).catch(()=>{})},[e]),!t)return null;let r=t.watcher_mode===`jsonl`?{className:`border-amber-400/25 bg-amber-400/10 text-amber-400`,label:`Legacy watcher path active`}:t.watcher_mode===`none`?{className:`border-muted-foreground/20 bg-muted/40 text-muted-foreground`,label:`Watcher inactive`}:{className:`border-primary/25 bg-primary/10 text-primary`,label:`Live invalidation active`};return(0,F.jsxs)(`section`,{className:`glass-panel rounded-2xl border border-border/15 p-6`,children:[(0,F.jsxs)(`div`,{className:`flex flex-col gap-2 md:flex-row md:items-end md:justify-between`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.2em] text-muted-foreground`,children:`Runtime Environment`}),(0,F.jsx)(`h2`,{className:`mt-1 font-headline text-xl font-semibold text-foreground`,children:`Active dashboard runtime`})]}),(0,F.jsx)(P,{variant:`outline`,className:r.className,children:r.label})]}),(0,F.jsxs)(`div`,{className:`mt-5 grid gap-3 md:grid-cols-2 xl:grid-cols-4`,children:[(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,F.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Process mode`}),(0,F.jsx)(`p`,{className:`mt-2 text-sm font-semibold text-foreground`,children:t.process_mode})]}),(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,F.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Watcher mode`}),(0,F.jsx)(`p`,{className:`mt-2 text-sm font-semibold text-foreground`,children:t.watcher_mode})]}),(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,F.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Git SHA`}),(0,F.jsx)(`p`,{className:`mt-2 truncate font-mono text-sm text-foreground`,children:t.git_sha})]}),(0,F.jsxs)(`div`,{className:`rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,F.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Database path`}),(0,F.jsx)(`p`,{className:`mt-2 truncate font-mono text-sm text-foreground`,children:t.db_path})]})]}),(0,F.jsxs)(`div`,{className:`mt-3 rounded-xl border border-border/10 bg-background/35 p-4`,children:[(0,F.jsx)(`p`,{className:`text-[10px] font-headline uppercase tracking-[0.18em] text-muted-foreground`,children:`Workspace root`}),(0,F.jsx)(`p`,{className:`mt-2 break-all font-mono text-sm text-foreground`,children:t.workspace_root})]})]})}function Dg({check:e}){let t=wg[e.name]??{label:e.name,description:``,icon:(0,F.jsx)(E,{className:`size-4`})},n=Cg[e.status]??{color:`text-muted-foreground`,label:e.status,dotColor:`bg-muted-foreground`,dotGlow:``,animate:!1};return(0,F.jsxs)(`div`,{className:`group flex items-start gap-4 px-6 py-4 border-b border-border/10 last:border-b-0 hover:bg-secondary/40 transition-colors`,children:[(0,F.jsx)(`div`,{className:`mt-1.5 flex-shrink-0`,children:(0,F.jsx)(`span`,{className:`block size-1.5 rounded-full ${n.dotColor} ${n.dotGlow} ${n.animate?`animate-pulse`:``}`})}),(0,F.jsx)(`div`,{className:`flex-shrink-0 mt-0.5 text-muted-foreground`,children:t.icon}),(0,F.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,F.jsx)(`span`,{className:`text-sm font-semibold text-foreground`,children:t.label}),t.description&&(0,F.jsx)(Th,{text:t.description})]}),(0,F.jsx)(`p`,{className:`text-xs text-muted-foreground mt-0.5 leading-relaxed`,children:e.message||`No details`}),e.path&&(0,F.jsx)(`p`,{className:`text-[11px] text-muted-foreground/60 font-mono mt-1 truncate`,children:e.path})]}),(0,F.jsx)(`div`,{className:`flex-shrink-0`,children:(0,F.jsxs)(`div`,{className:`inline-flex items-center gap-2 px-2 py-1 rounded-md ${e.status===`pass`?`bg-primary/10`:e.status===`fail`?`bg-destructive/10`:`bg-amber-400/10`}`,children:[(0,F.jsx)(`span`,{className:`size-1.5 rounded-full ${n.dotColor} ${n.animate?`animate-pulse`:``}`}),(0,F.jsx)(`span`,{className:`text-[10px] font-bold uppercase tracking-tighter font-headline ${n.color}`,children:n.label})]})})]})}function Og(){let{data:e,isPending:t,isError:n,error:r,refetch:i}=Sg(),[a,o]=(0,M.useState)(0);if(t)return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col gap-8 p-8`,children:[(0,F.jsx)(W,{className:`h-12 w-64`}),(0,F.jsx)(W,{className:`h-24 rounded-xl`}),(0,F.jsx)(W,{className:`h-[400px] rounded-xl`})]});if(n)return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col items-center justify-center gap-4 py-16`,children:[(0,F.jsx)(Ne,{className:`size-10 text-destructive`}),(0,F.jsx)(`p`,{className:`text-sm font-medium text-destructive`,children:r instanceof Error?r.message:`Unknown error`}),(0,F.jsxs)(I,{variant:`outline`,size:`sm`,onClick:()=>i(),children:[(0,F.jsx)(j,{className:`mr-2 size-3.5`}),`Retry`]})]});if(!e)return(0,F.jsx)(`div`,{className:`flex flex-1 items-center justify-center py-16`,children:(0,F.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:`No diagnostics data available.`})});let{checks:s,summary:c,healthy:l=!1,timestamp:u}=e,d=s??[],f=c??{pass:0,warn:0,fail:0},p=f.pass+f.warn+f.fail,m=d.filter(e=>e.name===`config`),h=d.filter(e=>e.name.startsWith(`log_`)),g=d.filter(e=>e.name===`hook_settings`),_=d.filter(e=>e.name===`evolution_audit`),v=d.filter(e=>e.name===`dashboard_freshness_mode`),y=new Set([`config`,...h.map(e=>e.name),`hook_settings`,`evolution_audit`,`dashboard_freshness_mode`]),b=d.filter(e=>!y.has(e.name)),x=[{title:`Configuration`,checks:m},{title:`Log Files`,checks:h},{title:`Hooks`,checks:g},{title:`Evolution`,checks:_},{title:`Integrity`,checks:v},{title:`Other`,checks:b}].filter(e=>e.checks.length>0);return(0,F.jsxs)(`div`,{className:`flex flex-1 flex-col gap-8 p-8 max-w-5xl mx-auto w-full`,children:[(0,F.jsxs)(`section`,{className:`flex flex-col md:flex-row md:items-end justify-between gap-4`,children:[(0,F.jsxs)(`div`,{children:[(0,F.jsx)(`h1`,{className:`font-headline text-4xl font-bold tracking-tight text-foreground`,children:`System Status`}),(0,F.jsx)(`p`,{className:`text-muted-foreground max-w-md mt-1`,children:`Diagnostics and health checks for selftune infrastructure.`})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,F.jsxs)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-widest font-headline`,children:[`Last checked `,u?Wn(u):`—`]}),(0,F.jsx)(I,{"aria-label":`Refresh status`,variant:`ghost`,size:`sm`,onClick:()=>{o(e=>e+1),i()},className:`shrink-0`,children:(0,F.jsx)(j,{className:`size-3.5`})})]})]}),(0,F.jsxs)(`div`,{className:`glass-panel rounded-2xl border border-border/15 p-6 flex items-center justify-between overflow-hidden relative`,children:[(0,F.jsxs)(`div`,{className:`flex items-center gap-8`,children:[(0,F.jsxs)(`div`,{className:`flex flex-col`,children:[(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-[0.2em] font-headline mb-1`,children:`Overall`}),(0,F.jsxs)(`div`,{className:`flex items-center gap-2`,children:[l?(0,F.jsx)(`span`,{className:`size-3 rounded-full bg-primary animate-pulse shadow-[0_0_12px_rgba(79,242,255,0.6)]`}):(0,F.jsx)(`span`,{className:`size-3 rounded-full bg-destructive shadow-[0_0_12px_rgba(255,180,171,0.6)]`}),(0,F.jsx)(`span`,{className:`font-headline text-2xl font-bold text-foreground`,children:l?`Healthy`:`Unhealthy`})]})]}),(0,F.jsx)(`div`,{className:`h-10 w-px bg-border/20`}),(0,F.jsxs)(`div`,{className:`flex flex-col`,children:[(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-[0.2em] font-headline mb-1`,children:`Passed`}),(0,F.jsx)(`span`,{className:`font-headline text-2xl font-bold text-primary`,children:f.pass})]}),(0,F.jsxs)(`div`,{className:`flex flex-col`,children:[(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-[0.2em] font-headline mb-1`,children:`Warnings`}),(0,F.jsx)(`span`,{className:`font-headline text-2xl font-bold ${f.warn>0?`text-amber-400`:`text-foreground`}`,children:f.warn})]}),(0,F.jsxs)(`div`,{className:`flex flex-col`,children:[(0,F.jsx)(`span`,{className:`text-[10px] text-muted-foreground uppercase tracking-[0.2em] font-headline mb-1`,children:`Failed`}),(0,F.jsx)(`span`,{className:`font-headline text-2xl font-bold ${f.fail>0?`text-destructive`:`text-foreground`}`,children:f.fail})]})]}),(0,F.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,F.jsxs)(`div`,{className:`text-right`,children:[(0,F.jsxs)(`p`,{className:`text-xs font-bold text-foreground font-headline`,children:[p,` Checks`]}),(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:f.pass===p?`All checks passing`:`${f.fail+f.warn} issue${f.fail+f.warn===1?``:`s`} detected`})]}),(0,F.jsx)(`div`,{className:`size-12 rounded-full flex items-center justify-center border-4 border-primary/20 border-t-primary`,children:(0,F.jsx)(S,{className:`size-5 text-primary`})})]}),(0,F.jsx)(`div`,{className:`absolute -right-20 -bottom-20 w-64 h-64 bg-primary/5 blur-3xl rounded-full pointer-events-none`})]}),(0,F.jsx)(Eg,{refreshKey:a}),(0,F.jsx)(`div`,{className:`bg-muted rounded-2xl border border-border/15 overflow-hidden`,children:x.map((e,t)=>(0,F.jsxs)(`div`,{children:[(0,F.jsxs)(`div`,{className:`px-6 py-3 bg-secondary/60 border-b border-border/15`,children:[(0,F.jsx)(`span`,{className:`text-[10px] font-bold text-muted-foreground uppercase tracking-[0.2em] font-headline`,children:e.title}),(0,F.jsx)(P,{variant:`outline`,className:`ml-3 text-[10px] px-1.5 py-0 border-border/40 text-muted-foreground`,children:e.checks.length})]}),e.checks.map((e,t)=>(0,F.jsx)(Dg,{check:e},`${e.name}-${t}`)),t<x.length-1&&(0,F.jsx)(`div`,{className:`border-b border-border/25`})]},e.title))})]})}var kg=new Cn({defaultOptions:{queries:{refetchOnWindowFocus:!0,gcTime:300*1e3}}});function Ag(){Ks();let[e,t]=(0,M.useState)(`ALL`),n=zs(),{data:r}=n;return(0,F.jsxs)(cr,{children:[(0,F.jsx)(gr,{version:r?.version}),(0,F.jsxs)(dr,{children:[(0,F.jsx)(Hs,{}),(0,F.jsxs)(s,{children:[(0,F.jsx)(d,{path:`/`,element:(0,F.jsx)(pc,{search:``,statusFilter:e,onStatusFilterChange:t,overviewQuery:n})}),(0,F.jsx)(d,{path:`/skills-library`,element:(0,F.jsx)(bg,{overviewQuery:n})}),(0,F.jsx)(d,{path:`/analytics`,element:(0,F.jsx)(qh,{})}),(0,F.jsx)(d,{path:`/skills/:name`,element:(0,F.jsx)(mg,{})}),(0,F.jsx)(d,{path:`/status`,element:(0,F.jsx)(Og,{})})]})]}),(0,F.jsx)(vr,{})]})}function jg(){return(0,F.jsx)(En,{client:kg,children:(0,F.jsx)(p,{children:(0,F.jsx)(Gs,{defaultTheme:`dark`,children:(0,F.jsxs)(ft,{children:[(0,F.jsx)(Ag,{}),!1]})})})})}(0,Qe.createRoot)(document.getElementById(`root`)).render((0,F.jsx)(M.StrictMode,{children:(0,F.jsx)(jg,{})}));
|