@hienlh/ppm 0.17.34 → 0.17.36
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 +12 -0
- package/CLAUDE.md +1 -0
- package/Dockerfile.test +5 -1
- package/assets/skills/ppm/SKILL.md +1 -1
- package/assets/skills/ppm/references/http-api.md +1 -1
- package/bun.lock +5 -0
- package/dist/web/assets/{ai-resource-editor-QNfSU0Fi.js → ai-resource-editor-aT2nC1lK.js} +1 -1
- package/dist/web/assets/{audio-preview-IokB77Cj.js → audio-preview-DPS0VpgU.js} +1 -1
- package/dist/web/assets/chat-tab-k7e8hE9y.js +13 -0
- package/dist/web/assets/{code-editor-B8YiBPOX.js → code-editor-C8ClI1kO.js} +2 -2
- package/dist/web/assets/{conflict-editor-CY1o5kBO.js → conflict-editor-Dag7buRT.js} +1 -1
- package/dist/web/assets/{csv-preview-AEg0GB-V.js → csv-preview-6JQDYpOU.js} +1 -1
- package/dist/web/assets/{database-viewer-C5Meg0s_.js → database-viewer-BFzNauDX.js} +1 -1
- package/dist/web/assets/{diff-viewer-BRRGvZnp.js → diff-viewer-Dub9yryk.js} +1 -1
- package/dist/web/assets/{docx-preview-DqTX7NDp.js → docx-preview-Bj2Xzdef.js} +1 -1
- package/dist/web/assets/{edit-diff-preview-_CXUdwsF.js → edit-diff-preview-D1TEK7Jz.js} +1 -1
- package/dist/web/assets/{extension-webview-CQceYb7O.js → extension-webview-DUqZPzfp.js} +1 -1
- package/dist/web/assets/{git-log-panel-D7QlAJqu.js → git-log-panel-90_p5Qdn.js} +1 -1
- package/dist/web/assets/{glide-data-grid-cGxkgluR.js → glide-data-grid-BSSyHBRx.js} +1 -1
- package/dist/web/assets/{group-chat-tab-B-eA5ytm.js → group-chat-tab-j1CoraSo.js} +1 -1
- package/dist/web/assets/image-gallery-CObzTisL.js +1 -0
- package/dist/web/assets/{image-preview-DRUzYptI.js → image-preview-ChhxwmZU.js} +1 -1
- package/dist/web/assets/index-BA8NcuLe.js +50 -0
- package/dist/web/assets/index-eW0VEaRF.css +2 -0
- package/dist/web/assets/{keybindings-store-B3plqyxF.js → keybindings-store-Bp-oUCTT.js} +1 -1
- package/dist/web/assets/markdown-renderer-BaPAXsZW.js +3 -0
- package/dist/web/assets/markdown-renderer-CUHI3gc6.js +1 -0
- package/dist/web/assets/{notification-store-jFDauzse.js → notification-store-COr3urzj.js} +1 -1
- package/dist/web/assets/panel-store-CpKvXNnm.js +1 -0
- package/dist/web/assets/{pdf-preview-CzHUqXJB.js → pdf-preview-cJC8Cm9R.js} +1 -1
- package/dist/web/assets/{postgres-viewer-BeantJZe.js → postgres-viewer-uMVBwY8R.js} +1 -1
- package/dist/web/assets/{settings-store-DFMz_Oer.js → settings-store-CBLPPIts.js} +2 -2
- package/dist/web/assets/{settings-tab-CqQHhqV1.js → settings-tab-BdEa4MLs.js} +1 -1
- package/dist/web/assets/{sql-query-editor-DqU9zfVy.js → sql-query-editor-R1WsE3n7.js} +1 -1
- package/dist/web/assets/{sqlite-viewer-BH891DC0.js → sqlite-viewer-CppHnW_J.js} +1 -1
- package/dist/web/assets/{system-monitor-tab-Bue4p4Vb.js → system-monitor-tab-BzK46Q3D.js} +1 -1
- package/dist/web/assets/{tab-store-CNxCwdXw.js → tab-store-BQmDVh9c.js} +1 -1
- package/dist/web/assets/{terminal-tab-BfNnKU71.js → terminal-tab-2CWIYa05.js} +1 -1
- package/dist/web/assets/tool-cards-DS4vQ3qy.js +7 -0
- package/dist/web/assets/{use-monaco-theme-5XjAzOzE.js → use-monaco-theme-CEAY5h6Y.js} +1 -1
- package/dist/web/assets/{video-preview-DMqLOqmc.js → video-preview-C7RTSYae.js} +1 -1
- package/dist/web/index.html +5 -5
- package/dist/web/sw.js +1 -1
- package/docker-compose.test.yml +5 -1
- package/package.json +3 -2
- package/src/server/routes/chat.ts +66 -1
- package/src/services/image-dimensions.ts +67 -0
- package/src/services/transcript-images.ts +174 -0
- package/src/shared/tool-result-content.ts +14 -3
- package/src/web/components/chat/chat-history-bar.tsx +3 -104
- package/src/web/components/chat/message-list.tsx +10 -3
- package/src/web/components/chat/session-debug-dialog.tsx +240 -0
- package/src/web/components/chat/tool-image-preview.tsx +4 -2
- package/src/web/components/group-chat/group-create-dialog.tsx +2 -1
- package/src/web/components/layout/editor-panel.tsx +31 -5
- package/src/web/components/layout/notification-bell-popover.tsx +5 -1
- package/src/web/components/layout/tab-bar.tsx +2 -2
- package/src/web/components/shared/image-overlay.tsx +188 -24
- package/src/web/components/shared/markdown-context.ts +1 -1
- package/src/web/components/shared/markdown-renderer.tsx +3 -1
- package/src/web/hooks/use-image-transform.ts +276 -0
- package/src/web/lib/clipboard.ts +41 -0
- package/src/web/lib/file-download.ts +1 -1
- package/src/web/lib/image-gallery.ts +25 -0
- package/src/web/stores/image-overlay-store.ts +35 -7
- package/src/web/stores/panel-store.ts +40 -6
- package/src/web/stores/panel-utils.ts +19 -0
- package/dist/web/assets/chat-tab-BZNEvS88.js +0 -13
- package/dist/web/assets/index-BuX7JkCt.js +0 -50
- package/dist/web/assets/index-PX2pZ3bH.css +0 -2
- package/dist/web/assets/markdown-renderer-BKDbjc3g.js +0 -3
- package/dist/web/assets/markdown-renderer-C9Gy8tM2.js +0 -1
- package/dist/web/assets/panel-store-D-RxcUgH.js +0 -1
- package/dist/web/assets/tool-cards-CSOwe7_i.js +0 -7
- package/skills-lock.json +0 -11
- package/spike-memory-region-dump.ps1 +0 -69
- /package/dist/web/assets/{api-themes-BpoKUPkQ.js → api-themes-BLUwA0Gh.js} +0 -0
- /package/dist/web/assets/{csv-parser-BPS94T2h.js → csv-parser-DVHBcvuE.js} +0 -0
- /package/dist/web/assets/{lib-DA3QSc5_.js → lib-DTaN9riD.js} +0 -0
- /package/dist/web/assets/{libesm-BS7D9de3.js → libesm-DdtEjhIi.js} +0 -0
- /package/dist/web/assets/{vendor-xterm-CsgYwG03.js → vendor-xterm-QDr0jvpJ.js} +0 -0
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/terminal-tab-BfNnKU71.js","assets/rolldown-runtime-FhOqtrmT.js","assets/vendor-mermaid-CYOBtZtD.js","assets/vendor-ui-DMRGWRuc.js","assets/vendor-markdown-CKTlmXbz.js","assets/vendor-xterm-CsgYwG03.js","assets/vendor-xterm-DkTCHfhq.css","assets/utils-E0yyGxXt.js","assets/api-client-DhXpjLdi.js","assets/panel-store-D-RxcUgH.js","assets/react-8hrD3-kv.js","assets/settings-store-DFMz_Oer.js","assets/apply-theme-BSJDABU3.js","assets/resolve-theme-B9Mgd5GG.js","assets/chat-tab-BZNEvS88.js","assets/dialog-HHdNInEH.js","assets/createLucideIcon-ConhwJnb.js","assets/x-BsFLg-T8.js","assets/bot-E9mcVZnr.js","assets/mobile-bottom-sheet-BwPBKZON.js","assets/chevron-right-DeUue2aK.js","assets/use-is-mobile-BcuCjH19.js","assets/tool-cards-CSOwe7_i.js","assets/circle-question-mark-PaJgx-3d.js","assets/code-TekEnDFM.js","assets/sparkles-B3DmG8PJ.js","assets/use-blob-url-jSRmyXVg.js","assets/tab-store-CNxCwdXw.js","assets/plus-DcuJuDC3.js","assets/shield-off-D5tU7gQT.js","assets/libesm-BS7D9de3.js","assets/api-settings-BUYvGBdi.js","assets/project-store-C1jInVih.js","assets/code-editor-B8YiBPOX.js","assets/glide-data-grid-cGxkgluR.js","assets/dist-m_oJqIDk.js","assets/data-grid-types-BuMHLKXV.js","assets/save-BM4p9_9n.js","assets/csv-parser-BPS94T2h.js","assets/use-monaco-theme-5XjAzOzE.js","assets/glide-data-grid-nthEL3fk.css","assets/database-COYAMZaw.js","assets/file-exclamation-point-DBEC-Kst.js","assets/shield-check-C3qYSU8a.js","assets/table-Di8pv2Y_.js","assets/database-viewer-C5Meg0s_.js","assets/sql-query-editor-DqU9zfVy.js","assets/sqlite-viewer-BH891DC0.js","assets/postgres-viewer-BeantJZe.js","assets/dist-Bi4gRyhr.js","assets/lib-DA3QSc5_.js","assets/diff-viewer-BRRGvZnp.js","assets/settings-tab-CqQHhqV1.js","assets/extension-webview-CQceYb7O.js","assets/conflict-editor-CY1o5kBO.js","assets/system-monitor-tab-Bue4p4Vb.js","assets/git-log-panel-D7QlAJqu.js","assets/ai-resource-editor-QNfSU0Fi.js","assets/group-chat-tab-B-eA5ytm.js","assets/markdown-renderer-BKDbjc3g.js","assets/angular-html-D4YJUMLP.js","assets/html-2p0RvXi4.js","assets/css-CIjciIIk.js","assets/javascript-DQR6GQKs.js","assets/angular-ts-CUvq2h3X.js","assets/scss-GAyp5euH.js","assets/apl-DSANFLx0.js","assets/json-uWUKqOxq.js","assets/xml-BHzIcDWI.js","assets/java-PRMSQp24.js","assets/astro-CXIotiNS.js","assets/postcss-DouzwG4F.js","assets/tsx-DJfG3fzg.js","assets/typescript-BLfAIchl.js","assets/blade-BvrP2gPd.js","assets/html-derivative-BiTPuOba.js","assets/sql-CoqObhgo.js","assets/bsl-CGf6Xuyu.js","assets/sdbl-C34Cg6e7.js","assets/c-BQFvJ6Ux.js","assets/cairo-BboZ9qIf.js","assets/python-Ctyr4faP.js","assets/cobol-D39V6ukp.js","assets/coffee-DTtK7kKi.js","assets/cpp-CnU9hfBq.js","assets/glsl-BED7ZmUZ.js","assets/regexp-CCSe1Fc4.js","assets/crystal-DMjCL--0.js","assets/shellscript-DxfzKSgU.js","assets/edge-CTom35R_.js","assets/elixir-BAX9HSOu.js","assets/elm-CpD28xsW.js","assets/erb-DHX2IIEs.js","assets/ruby-O_z2NTLY.js","assets/graphql-B_KyE6oz.js","assets/jsx-z4TGELE1.js","assets/haml-Dts9JlPU.js","assets/lua-D8NNsLbC.js","assets/yaml-DOZ10aZe.js","assets/erlang-B_etLcPG.js","assets/markdown-BQNMNiYS.js","assets/fortran-fixed-form-CpR0cN7O.js","assets/fortran-free-form-BN7VmmxZ.js","assets/fsharp-DxITxZW5.js","assets/gdresource-DJ7IvROZ.js","assets/gdscript-BYdRNu_P.js","assets/gdshader-C2XOq90k.js","assets/git-commit-sQznNP43.js","assets/diff-CupGmT1a.js","assets/git-rebase-DkHvejAR.js","assets/glimmer-js-BwJnDfL-.js","assets/glimmer-ts-Coz155XK.js","assets/hack-sxywdIAQ.js","assets/handlebars-C9HXIMtj.js","assets/http-CHd2gYPf.js","assets/hurl-boMPgDm9.js","assets/csv-DW48Z5d-.js","assets/hxml-BQvjiuBt.js","assets/haxe-DLRwZxmt.js","assets/jinja-B-zKiwlp.js","assets/jison-C2vJYjbJ.js","assets/julia-DJ8MrQPA.js","assets/r-Dvfjp0wc.js","assets/just-BvQHq7VE.js","assets/perl-Bd_0l-b4.js","assets/latex-ChNeshUC.js","assets/tex-ugJpgYPc.js","assets/liquid-KNJEBOwW.js","assets/marko-HGo5Qtz4.js","assets/less-Dfn9YC_2.js","assets/mdc-omkodQB5.js","assets/nextflow-Adq02pv-.js","assets/nextflow-groovy-CMy5-Z4k.js","assets/nginx-ByvWruGD.js","assets/nim-BrMojX4O.js","assets/php-D-DLTnWJ.js","assets/pug-D2aO-l2T.js","assets/qml-CyQVzNXS.js","assets/razor-8tvJXsO3.js","assets/csharp-DcR97P0D.js","assets/rst-C4AZyQQl.js","assets/cmake-DsZu4U4F.js","assets/sas-BtnF4zaV.js","assets/shaderlab-nM5YZwa5.js","assets/hlsl-DCKvuEyZ.js","assets/shellsession-D2OCI4Gv.js","assets/soy-DrLNhqfp.js","assets/sparql-CsM6F2Yv.js","assets/turtle-DaQac_UT.js","assets/stata-Bk3cgfXJ.js","assets/surrealql-Dkz0DPK8.js","assets/svelte-23si1KV5.js","assets/templ-CPxlP4vF.js","assets/go-BL16cMJO.js","assets/ts-tags-BovP9TMu.js","assets/twig-B7VUm2Ca.js","assets/vue-m75pWowk.js","assets/vue-html-odHs7IMn.js","assets/vue-vine-BbBB3V_G.js","assets/stylus-D0uTFXCy.js","assets/xsl-DTLhN7uu.js","assets/keybindings-store-B3plqyxF.js","assets/notification-store-jFDauzse.js"])))=>i.map(i=>d[i]);
|
|
2
|
-
import{o as e,r as t,t as n}from"./rolldown-runtime-FhOqtrmT.js";import{b as r,y as i}from"./vendor-markdown-CKTlmXbz.js";import{A as a,B as o,C as s,D as c,E as l,F as u,I as d,L as f,M as p,N as m,O as h,P as g,R as _,S as v,T as y,V as b,_ as x,a as S,b as C,c as w,d as T,f as E,g as D,h as O,i as k,j as A,k as ee,l as te,m as ne,n as j,o as M,ot as re,p as ie,r as ae,s as oe,t as se,u as ce,v as N,w as le,x as ue,y as de,z as fe}from"./vendor-ui-DMRGWRuc.js";import{t as P}from"./createLucideIcon-ConhwJnb.js";import{n as pe,t as me}from"./eye-off-Rq1n2-oe.js";import{t as he}from"./bot-E9mcVZnr.js";import{a as ge,c as _e,d as ve,f as ye,g as be,h as xe,i as Se,l as Ce,m as we,n as Te,o as Ee,p as De,r as Oe,s as ke,t as Ae,u as je}from"./mobile-bottom-sheet-BwPBKZON.js";import{n as Me,r as Ne,t as Pe}from"./use-is-mobile-BcuCjH19.js";import{t as Fe}from"./chevron-right-DeUue2aK.js";import{a as Ie,c as F,i as Le,l as Re,n as ze,o as Be,r as Ve,s as He,t as Ue,u as We}from"./dialog-HHdNInEH.js";import{n as Ge,r as Ke,t as qe}from"./sparkles-B3DmG8PJ.js";import{t as Je}from"./database-COYAMZaw.js";import{n as Ye,r as Xe,t as Ze}from"./plus-DcuJuDC3.js";import{t as Qe}from"./x-BsFLg-T8.js";import{a as $e,i as et,n as tt,o as I,r as L,t as R}from"./api-client-DhXpjLdi.js";import{t as nt}from"./react-8hrD3-kv.js";import{q as z}from"./vendor-mermaid-CYOBtZtD.js";import{t as B}from"./settings-store-DFMz_Oer.js";import{n as V,t as rt}from"./utils-E0yyGxXt.js";import{i as it,n as at,o as ot,r as st,s as ct,t as H}from"./panel-store-D-RxcUgH.js";import{i as U,n as lt,r as ut,t as dt}from"./project-store-C1jInVih.js";import{t as W}from"./tab-store-CNxCwdXw.js";import{a as ft,b as pt,d as mt,f as ht,g as gt,n as _t,y as vt}from"./api-settings-BUYvGBdi.js";import{n as yt,r as bt,t as xt}from"./resolve-theme-B9Mgd5GG.js";import{n as St,r as Ct,t as wt}from"./apply-theme-BSJDABU3.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 Tt=n((e=>{function t(e,t){var n=e.length;e.push(t);a:for(;0<n;){var r=n-1>>>1,a=e[r];if(0<i(a,t))e[r]=t,e[n]=a,n=r;else break a}}function n(e){return e.length===0?null:e[0]}function r(e){if(e.length===0)return null;var t=e[0],n=e.pop();if(n!==t){e[0]=n;a:for(var r=0,a=e.length,o=a>>>1;r<o;){var s=2*(r+1)-1,c=e[s],l=s+1,u=e[l];if(0>i(c,n))l<a&&0>i(u,c)?(e[r]=u,e[l]=n,r=l):(e[r]=c,e[s]=n,r=s);else if(l<a&&0>i(u,n))e[r]=u,e[l]=n,r=l;else break a}}return t}function i(e,t){var n=e.sortIndex-t.sortIndex;return n===0?e.id-t.id:n}if(e.unstable_now=void 0,typeof performance==`object`&&typeof performance.now==`function`){var a=performance;e.unstable_now=function(){return a.now()}}else{var o=Date,s=o.now();e.unstable_now=function(){return o.now()-s}}var c=[],l=[],u=1,d=null,f=3,p=!1,m=!1,h=!1,g=!1,_=typeof setTimeout==`function`?setTimeout:null,v=typeof clearTimeout==`function`?clearTimeout:null,y=typeof setImmediate<`u`?setImmediate:null;function b(e){for(var i=n(l);i!==null;){if(i.callback===null)r(l);else if(i.startTime<=e)r(l),i.sortIndex=i.expirationTime,t(c,i);else break;i=n(l)}}function x(e){if(h=!1,b(e),!m)if(n(c)!==null)m=!0,S||(S=!0,O());else{var t=n(l);t!==null&&ee(x,t.startTime-e)}}var S=!1,C=-1,w=5,T=-1;function E(){return g?!0:!(e.unstable_now()-T<w)}function D(){if(g=!1,S){var t=e.unstable_now();T=t;var i=!0;try{a:{m=!1,h&&(h=!1,v(C),C=-1),p=!0;var a=f;try{b:{for(b(t),d=n(c);d!==null&&!(d.expirationTime>t&&E());){var o=d.callback;if(typeof o==`function`){d.callback=null,f=d.priorityLevel;var s=o(d.expirationTime<=t);if(t=e.unstable_now(),typeof s==`function`){d.callback=s,b(t),i=!0;break b}d===n(c)&&r(c),b(t)}else r(c);d=n(c)}if(d!==null)i=!0;else{var u=n(l);u!==null&&ee(x,u.startTime-t),i=!1}}break a}finally{d=null,f=a,p=!1}i=void 0}}finally{i?O():S=!1}}}var O;if(typeof y==`function`)O=function(){y(D)};else if(typeof MessageChannel<`u`){var k=new MessageChannel,A=k.port2;k.port1.onmessage=D,O=function(){A.postMessage(null)}}else O=function(){_(D,0)};function ee(t,n){C=_(function(){t(e.unstable_now())},n)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(e){e.callback=null},e.unstable_forceFrameRate=function(e){0>e||125<e?console.error(`forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported`):w=0<e?Math.floor(1e3/e):5},e.unstable_getCurrentPriorityLevel=function(){return f},e.unstable_next=function(e){switch(f){case 1:case 2:case 3:var t=3;break;default:t=f}var n=f;f=t;try{return e()}finally{f=n}},e.unstable_requestPaint=function(){g=!0},e.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=f;f=e;try{return t()}finally{f=n}},e.unstable_scheduleCallback=function(r,i,a){var o=e.unstable_now();switch(typeof a==`object`&&a?(a=a.delay,a=typeof a==`number`&&0<a?o+a:o):a=o,r){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return s=a+s,r={id:u++,callback:i,priorityLevel:r,startTime:a,expirationTime:s,sortIndex:-1},a>o?(r.sortIndex=a,t(l,r),n(c)===null&&r===n(l)&&(h?(v(C),C=-1):h=!0,ee(x,a-o))):(r.sortIndex=s,t(c,r),m||p||(m=!0,S||(S=!0,O()))),r},e.unstable_shouldYield=E,e.unstable_wrapCallback=function(e){var t=f;return function(){var n=f;f=t;try{return e.apply(this,arguments)}finally{f=n}}}})),Et=n(((e,t)=>{t.exports=Tt()})),Dt=n((e=>{var t=Et(),n=r(),i=re();function a(e){var t=`https://react.dev/errors/`+e;if(1<arguments.length){t+=`?args[]=`+encodeURIComponent(arguments[1]);for(var n=2;n<arguments.length;n++)t+=`&args[]=`+encodeURIComponent(arguments[n])}return`Minified React error #`+e+`; visit `+t+` for the full message or use the non-minified dev environment for full errors and additional helpful warnings.`}function o(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function s(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do t=e,t.flags&4098&&(n=t.return),e=t.return;while(e)}return t.tag===3?n:null}function c(e){if(e.tag===13){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function l(e){if(e.tag===31){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function u(e){if(s(e)!==e)throw Error(a(188))}function d(e){var t=e.alternate;if(!t){if(t=s(e),t===null)throw Error(a(188));return t===e?e:null}for(var n=e,r=t;;){var i=n.return;if(i===null)break;var o=i.alternate;if(o===null){if(r=i.return,r!==null){n=r;continue}break}if(i.child===o.child){for(o=i.child;o;){if(o===n)return u(i),e;if(o===r)return u(i),t;o=o.sibling}throw Error(a(188))}if(n.return!==r.return)n=i,r=o;else{for(var c=!1,l=i.child;l;){if(l===n){c=!0,n=i,r=o;break}if(l===r){c=!0,r=i,n=o;break}l=l.sibling}if(!c){for(l=o.child;l;){if(l===n){c=!0,n=o,r=i;break}if(l===r){c=!0,r=o,n=i;break}l=l.sibling}if(!c)throw Error(a(189))}}if(n.alternate!==r)throw Error(a(190))}if(n.tag!==3)throw Error(a(188));return n.stateNode.current===n?e:t}function f(e){var t=e.tag;if(t===5||t===26||t===27||t===6)return e;for(e=e.child;e!==null;){if(t=f(e),t!==null)return t;e=e.sibling}return null}var p=Object.assign,m=Symbol.for(`react.element`),h=Symbol.for(`react.transitional.element`),g=Symbol.for(`react.portal`),_=Symbol.for(`react.fragment`),v=Symbol.for(`react.strict_mode`),y=Symbol.for(`react.profiler`),b=Symbol.for(`react.consumer`),x=Symbol.for(`react.context`),S=Symbol.for(`react.forward_ref`),C=Symbol.for(`react.suspense`),w=Symbol.for(`react.suspense_list`),T=Symbol.for(`react.memo`),E=Symbol.for(`react.lazy`),D=Symbol.for(`react.activity`),O=Symbol.for(`react.memo_cache_sentinel`),k=Symbol.iterator;function A(e){return typeof e!=`object`||!e?null:(e=k&&e[k]||e[`@@iterator`],typeof e==`function`?e:null)}var ee=Symbol.for(`react.client.reference`);function te(e){if(e==null)return null;if(typeof e==`function`)return e.$$typeof===ee?null:e.displayName||e.name||null;if(typeof e==`string`)return e;switch(e){case _:return`Fragment`;case y:return`Profiler`;case v:return`StrictMode`;case C:return`Suspense`;case w:return`SuspenseList`;case D:return`Activity`}if(typeof e==`object`)switch(e.$$typeof){case g:return`Portal`;case x:return e.displayName||`Context`;case b:return(e._context.displayName||`Context`)+`.Consumer`;case S:var t=e.render;return e=e.displayName,e||=(e=t.displayName||t.name||``,e===``?`ForwardRef`:`ForwardRef(`+e+`)`),e;case T:return t=e.displayName||null,t===null?te(e.type)||`Memo`:t;case E:t=e._payload,e=e._init;try{return te(e(t))}catch{}}return null}var ne=Array.isArray,j=n.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,M=i.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,ie={pending:!1,data:null,method:null,action:null},ae=[],oe=-1;function se(e){return{current:e}}function ce(e){0>oe||(e.current=ae[oe],ae[oe]=null,oe--)}function N(e,t){oe++,ae[oe]=e.current,e.current=t}var le=se(null),ue=se(null),de=se(null),fe=se(null);function P(e,t){switch(N(de,t),N(ue,e),N(le,null),t.nodeType){case 9:case 11:e=(e=t.documentElement)&&(e=e.namespaceURI)?Ud(e):0;break;default:if(e=t.tagName,t=t.namespaceURI)t=Ud(t),e=Wd(t,e);else switch(e){case`svg`:e=1;break;case`math`:e=2;break;default:e=0}}ce(le),N(le,e)}function pe(){ce(le),ce(ue),ce(de)}function me(e){e.memoizedState!==null&&N(fe,e);var t=le.current,n=Wd(t,e.type);t!==n&&(N(ue,e),N(le,n))}function he(e){ue.current===e&&(ce(le),ce(ue)),fe.current===e&&(ce(fe),ep._currentValue=ie)}var ge,_e;function ve(e){if(ge===void 0)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);ge=t&&t[1]||``,_e=-1<e.stack.indexOf(`
|
|
3
|
-
at`)?` (<anonymous>)`:-1<e.stack.indexOf(`@`)?`@unknown:0:0`:``}return`
|
|
4
|
-
`+ge+e+_e}var ye=!1;function be(e,t){if(!e||ye)return``;ye=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var r={DetermineComponentFrameRoot:function(){try{if(t){var n=function(){throw Error()};if(Object.defineProperty(n.prototype,`props`,{set:function(){throw Error()}}),typeof Reflect==`object`&&Reflect.construct){try{Reflect.construct(n,[])}catch(e){var r=e}Reflect.construct(e,[],n)}else{try{n.call()}catch(e){r=e}e.call(n.prototype)}}else{try{throw Error()}catch(e){r=e}(n=e())&&typeof n.catch==`function`&&n.catch(function(){})}}catch(e){if(e&&r&&typeof e.stack==`string`)return[e.stack,r.stack]}return[null,null]}};r.DetermineComponentFrameRoot.displayName=`DetermineComponentFrameRoot`;var i=Object.getOwnPropertyDescriptor(r.DetermineComponentFrameRoot,`name`);i&&i.configurable&&Object.defineProperty(r.DetermineComponentFrameRoot,`name`,{value:`DetermineComponentFrameRoot`});var a=r.DetermineComponentFrameRoot(),o=a[0],s=a[1];if(o&&s){var c=o.split(`
|
|
5
|
-
`),l=s.split(`
|
|
6
|
-
`);for(i=r=0;r<c.length&&!c[r].includes(`DetermineComponentFrameRoot`);)r++;for(;i<l.length&&!l[i].includes(`DetermineComponentFrameRoot`);)i++;if(r===c.length||i===l.length)for(r=c.length-1,i=l.length-1;1<=r&&0<=i&&c[r]!==l[i];)i--;for(;1<=r&&0<=i;r--,i--)if(c[r]!==l[i]){if(r!==1||i!==1)do if(r--,i--,0>i||c[r]!==l[i]){var u=`
|
|
7
|
-
`+c[r].replace(` at new `,` at `);return e.displayName&&u.includes(`<anonymous>`)&&(u=u.replace(`<anonymous>`,e.displayName)),u}while(1<=r&&0<=i);break}}}finally{ye=!1,Error.prepareStackTrace=n}return(n=e?e.displayName||e.name:``)?ve(n):``}function xe(e,t){switch(e.tag){case 26:case 27:case 5:return ve(e.type);case 16:return ve(`Lazy`);case 13:return e.child!==t&&t!==null?ve(`Suspense Fallback`):ve(`Suspense`);case 19:return ve(`SuspenseList`);case 0:case 15:return be(e.type,!1);case 11:return be(e.type.render,!1);case 1:return be(e.type,!0);case 31:return ve(`Activity`);default:return``}}function Se(e){try{var t=``,n=null;do t+=xe(e,n),n=e,e=e.return;while(e);return t}catch(e){return`
|
|
8
|
-
Error generating stack: `+e.message+`
|
|
9
|
-
`+e.stack}}var Ce=Object.prototype.hasOwnProperty,we=t.unstable_scheduleCallback,Te=t.unstable_cancelCallback,Ee=t.unstable_shouldYield,De=t.unstable_requestPaint,Oe=t.unstable_now,ke=t.unstable_getCurrentPriorityLevel,Ae=t.unstable_ImmediatePriority,je=t.unstable_UserBlockingPriority,Me=t.unstable_NormalPriority,Ne=t.unstable_LowPriority,Pe=t.unstable_IdlePriority,Fe=t.log,Ie=t.unstable_setDisableYieldValue,F=null,Le=null;function Re(e){if(typeof Fe==`function`&&Ie(e),Le&&typeof Le.setStrictMode==`function`)try{Le.setStrictMode(F,e)}catch{}}var ze=Math.clz32?Math.clz32:He,Be=Math.log,Ve=Math.LN2;function He(e){return e>>>=0,e===0?32:31-(Be(e)/Ve|0)|0}var Ue=256,We=262144,Ge=4194304;function Ke(e){var t=e&42;if(t!==0)return t;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function qe(e,t,n){var r=e.pendingLanes;if(r===0)return 0;var i=0,a=e.suspendedLanes,o=e.pingedLanes;e=e.warmLanes;var s=r&134217727;return s===0?(s=r&~a,s===0?o===0?n||(n=r&~e,n!==0&&(i=Ke(n))):i=Ke(o):i=Ke(s)):(r=s&~a,r===0?(o&=s,o===0?n||(n=s&~e,n!==0&&(i=Ke(n))):i=Ke(o)):i=Ke(r)),i===0?0:t!==0&&t!==i&&(t&a)===0&&(a=i&-i,n=t&-t,a>=n||a===32&&n&4194048)?t:i}function Je(e,t){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)===0}function Ye(e,t){switch(e){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Xe(){var e=Ge;return Ge<<=1,!(Ge&62914560)&&(Ge=4194304),e}function Ze(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Qe(e,t){e.pendingLanes|=t,t!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function $e(e,t,n,r,i,a){var o=e.pendingLanes;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=n,e.entangledLanes&=n,e.errorRecoveryDisabledLanes&=n,e.shellSuspendCounter=0;var s=e.entanglements,c=e.expirationTimes,l=e.hiddenUpdates;for(n=o&~n;0<n;){var u=31-ze(n),d=1<<u;s[u]=0,c[u]=-1;var f=l[u];if(f!==null)for(l[u]=null,u=0;u<f.length;u++){var p=f[u];p!==null&&(p.lane&=-536870913)}n&=~d}r!==0&&et(e,r,0),a!==0&&i===0&&e.tag!==0&&(e.suspendedLanes|=a&~(o&~t))}function et(e,t,n){e.pendingLanes|=t,e.suspendedLanes&=~t;var r=31-ze(t);e.entangledLanes|=t,e.entanglements[r]=e.entanglements[r]|1073741824|n&261930}function tt(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-ze(n),i=1<<r;i&t|e[r]&t&&(e[r]|=t),n&=~i}}function I(e,t){var n=t&-t;return n=n&42?1:L(n),(n&(e.suspendedLanes|t))===0?n:0}function L(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:e=128;break;case 268435456:e=134217728;break;default:e=0}return e}function R(e){return e&=-e,2<e?8<e?e&134217727?32:268435456:8:2}function nt(){var e=M.p;return e===0?(e=window.event,e===void 0?32:gp(e.type)):e}function z(e,t){var n=M.p;try{return M.p=e,t()}finally{M.p=n}}var B=Math.random().toString(36).slice(2),V=`__reactFiber$`+B,rt=`__reactProps$`+B,it=`__reactContainer$`+B,at=`__reactEvents$`+B,ot=`__reactListeners$`+B,st=`__reactHandles$`+B,ct=`__reactResources$`+B,H=`__reactMarker$`+B;function U(e){delete e[V],delete e[rt],delete e[at],delete e[ot],delete e[st]}function lt(e){var t=e[V];if(t)return t;for(var n=e.parentNode;n;){if(t=n[it]||n[V]){if(n=t.alternate,t.child!==null||n!==null&&n.child!==null)for(e=pf(e);e!==null;){if(n=e[V])return n;e=pf(e)}return t}e=n,n=e.parentNode}return null}function ut(e){if(e=e[V]||e[it]){var t=e.tag;if(t===5||t===6||t===13||t===31||t===26||t===27||t===3)return e}return null}function dt(e){var t=e.tag;if(t===5||t===26||t===27||t===6)return e.stateNode;throw Error(a(33))}function W(e){var t=e[ct];return t||=e[ct]={hoistableStyles:new Map,hoistableScripts:new Map},t}function ft(e){e[H]=!0}var pt=new Set,mt={};function ht(e,t){gt(e,t),gt(e+`Capture`,t)}function gt(e,t){for(mt[e]=t,e=0;e<t.length;e++)pt.add(t[e])}var _t=RegExp(`^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$`),vt={},yt={};function bt(e){return Ce.call(yt,e)?!0:Ce.call(vt,e)?!1:_t.test(e)?yt[e]=!0:(vt[e]=!0,!1)}function xt(e,t,n){if(bt(t))if(n===null)e.removeAttribute(t);else{switch(typeof n){case`undefined`:case`function`:case`symbol`:e.removeAttribute(t);return;case`boolean`:var r=t.toLowerCase().slice(0,5);if(r!==`data-`&&r!==`aria-`){e.removeAttribute(t);return}}e.setAttribute(t,``+n)}}function St(e,t,n){if(n===null)e.removeAttribute(t);else{switch(typeof n){case`undefined`:case`function`:case`symbol`:case`boolean`:e.removeAttribute(t);return}e.setAttribute(t,``+n)}}function Ct(e,t,n,r){if(r===null)e.removeAttribute(n);else{switch(typeof r){case`undefined`:case`function`:case`symbol`:case`boolean`:e.removeAttribute(n);return}e.setAttributeNS(t,n,``+r)}}function wt(e){switch(typeof e){case`bigint`:case`boolean`:case`number`:case`string`:case`undefined`:return e;case`object`:return e;default:return``}}function Tt(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()===`input`&&(t===`checkbox`||t===`radio`)}function Dt(e,t,n){var r=Object.getOwnPropertyDescriptor(e.constructor.prototype,t);if(!e.hasOwnProperty(t)&&r!==void 0&&typeof r.get==`function`&&typeof r.set==`function`){var i=r.get,a=r.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(e){n=``+e,a.call(this,e)}}),Object.defineProperty(e,t,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(e){n=``+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function Ot(e){if(!e._valueTracker){var t=Tt(e)?`checked`:`value`;e._valueTracker=Dt(e,t,``+e[t])}}function kt(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r=``;return e&&(r=Tt(e)?e.checked?`true`:`false`:e.value),e=r,e===n?!1:(t.setValue(e),!0)}function At(e){if(e||=typeof document<`u`?document:void 0,e===void 0)return null;try{return e.activeElement||e.body}catch{return e.body}}var jt=/[\n"\\]/g;function Mt(e){return e.replace(jt,function(e){return`\\`+e.charCodeAt(0).toString(16)+` `})}function Nt(e,t,n,r,i,a,o,s){e.name=``,o!=null&&typeof o!=`function`&&typeof o!=`symbol`&&typeof o!=`boolean`?e.type=o:e.removeAttribute(`type`),t==null?o!==`submit`&&o!==`reset`||e.removeAttribute(`value`):o===`number`?(t===0&&e.value===``||e.value!=t)&&(e.value=``+wt(t)):e.value!==``+wt(t)&&(e.value=``+wt(t)),t==null?n==null?r!=null&&e.removeAttribute(`value`):Ft(e,o,wt(n)):Ft(e,o,wt(t)),i==null&&a!=null&&(e.defaultChecked=!!a),i!=null&&(e.checked=i&&typeof i!=`function`&&typeof i!=`symbol`),s!=null&&typeof s!=`function`&&typeof s!=`symbol`&&typeof s!=`boolean`?e.name=``+wt(s):e.removeAttribute(`name`)}function Pt(e,t,n,r,i,a,o,s){if(a!=null&&typeof a!=`function`&&typeof a!=`symbol`&&typeof a!=`boolean`&&(e.type=a),t!=null||n!=null){if(!(a!==`submit`&&a!==`reset`||t!=null)){Ot(e);return}n=n==null?``:``+wt(n),t=t==null?n:``+wt(t),s||t===e.value||(e.value=t),e.defaultValue=t}r??=i,r=typeof r!=`function`&&typeof r!=`symbol`&&!!r,e.checked=s?e.checked:!!r,e.defaultChecked=!!r,o!=null&&typeof o!=`function`&&typeof o!=`symbol`&&typeof o!=`boolean`&&(e.name=o),Ot(e)}function Ft(e,t,n){t===`number`&&At(e.ownerDocument)===e||e.defaultValue===``+n||(e.defaultValue=``+n)}function It(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i<n.length;i++)t[`$`+n[i]]=!0;for(n=0;n<e.length;n++)i=t.hasOwnProperty(`$`+e[n].value),e[n].selected!==i&&(e[n].selected=i),i&&r&&(e[n].defaultSelected=!0)}else{for(n=``+wt(n),t=null,i=0;i<e.length;i++){if(e[i].value===n){e[i].selected=!0,r&&(e[i].defaultSelected=!0);return}t!==null||e[i].disabled||(t=e[i])}t!==null&&(t.selected=!0)}}function Lt(e,t,n){if(t!=null&&(t=``+wt(t),t!==e.value&&(e.value=t),n==null)){e.defaultValue!==t&&(e.defaultValue=t);return}e.defaultValue=n==null?``:``+wt(n)}function Rt(e,t,n,r){if(t==null){if(r!=null){if(n!=null)throw Error(a(92));if(ne(r)){if(1<r.length)throw Error(a(93));r=r[0]}n=r}n??=``,t=n}n=wt(t),e.defaultValue=n,r=e.textContent,r===n&&r!==``&&r!==null&&(e.value=r),Ot(e)}function zt(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Bt=new Set(`animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp`.split(` `));function Vt(e,t,n){var r=t.indexOf(`--`)===0;n==null||typeof n==`boolean`||n===``?r?e.setProperty(t,``):t===`float`?e.cssFloat=``:e[t]=``:r?e.setProperty(t,n):typeof n!=`number`||n===0||Bt.has(t)?t===`float`?e.cssFloat=n:e[t]=(``+n).trim():e[t]=n+`px`}function Ht(e,t,n){if(t!=null&&typeof t!=`object`)throw Error(a(62));if(e=e.style,n!=null){for(var r in n)!n.hasOwnProperty(r)||t!=null&&t.hasOwnProperty(r)||(r.indexOf(`--`)===0?e.setProperty(r,``):r===`float`?e.cssFloat=``:e[r]=``);for(var i in t)r=t[i],t.hasOwnProperty(i)&&n[i]!==r&&Vt(e,i,r)}else for(var o in t)t.hasOwnProperty(o)&&Vt(e,o,t[o])}function Ut(e){if(e.indexOf(`-`)===-1)return!1;switch(e){case`annotation-xml`:case`color-profile`:case`font-face`:case`font-face-src`:case`font-face-uri`:case`font-face-format`:case`font-face-name`:case`missing-glyph`:return!1;default:return!0}}var Wt=new Map([[`acceptCharset`,`accept-charset`],[`htmlFor`,`for`],[`httpEquiv`,`http-equiv`],[`crossOrigin`,`crossorigin`],[`accentHeight`,`accent-height`],[`alignmentBaseline`,`alignment-baseline`],[`arabicForm`,`arabic-form`],[`baselineShift`,`baseline-shift`],[`capHeight`,`cap-height`],[`clipPath`,`clip-path`],[`clipRule`,`clip-rule`],[`colorInterpolation`,`color-interpolation`],[`colorInterpolationFilters`,`color-interpolation-filters`],[`colorProfile`,`color-profile`],[`colorRendering`,`color-rendering`],[`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`],[`horizAdvX`,`horiz-adv-x`],[`horizOriginX`,`horiz-origin-x`],[`imageRendering`,`image-rendering`],[`letterSpacing`,`letter-spacing`],[`lightingColor`,`lighting-color`],[`markerEnd`,`marker-end`],[`markerMid`,`marker-mid`],[`markerStart`,`marker-start`],[`overlinePosition`,`overline-position`],[`overlineThickness`,`overline-thickness`],[`paintOrder`,`paint-order`],[`panose-1`,`panose-1`],[`pointerEvents`,`pointer-events`],[`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`],[`textAnchor`,`text-anchor`],[`textDecoration`,`text-decoration`],[`textRendering`,`text-rendering`],[`transformOrigin`,`transform-origin`],[`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`],[`xmlnsXlink`,`xmlns:xlink`],[`xHeight`,`x-height`]]),Gt=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function Kt(e){return Gt.test(``+e)?`javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')`:e}function qt(){}var Jt=null;function Yt(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Xt=null,Zt=null;function Qt(e){var t=ut(e);if(t&&(e=t.stateNode)){var n=e[rt]||null;a:switch(e=t.stateNode,t.type){case`input`:if(Nt(e,n.value,n.defaultValue,n.defaultValue,n.checked,n.defaultChecked,n.type,n.name),t=n.name,n.type===`radio`&&t!=null){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll(`input[name="`+Mt(``+t)+`"][type="radio"]`),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var i=r[rt]||null;if(!i)throw Error(a(90));Nt(r,i.value,i.defaultValue,i.defaultValue,i.checked,i.defaultChecked,i.type,i.name)}}for(t=0;t<n.length;t++)r=n[t],r.form===e.form&&kt(r)}break a;case`textarea`:Lt(e,n.value,n.defaultValue);break a;case`select`:t=n.value,t!=null&&It(e,!!n.multiple,t,!1)}}}var $t=!1;function en(e,t,n){if($t)return e(t,n);$t=!0;try{return e(t)}finally{if($t=!1,(Xt!==null||Zt!==null)&&(yu(),Xt&&(t=Xt,e=Zt,Zt=Xt=null,Qt(t),e)))for(t=0;t<e.length;t++)Qt(e[t])}}function tn(e,t){var n=e.stateNode;if(n===null)return null;var r=n[rt]||null;if(r===null)return null;n=r[t];a:switch(t){case`onClick`:case`onClickCapture`:case`onDoubleClick`:case`onDoubleClickCapture`:case`onMouseDown`:case`onMouseDownCapture`:case`onMouseMove`:case`onMouseMoveCapture`:case`onMouseUp`:case`onMouseUpCapture`:case`onMouseEnter`:(r=!r.disabled)||(e=e.type,r=!(e===`button`||e===`input`||e===`select`||e===`textarea`)),e=!r;break a;default:e=!1}if(e)return null;if(n&&typeof n!=`function`)throw Error(a(231,t,typeof n));return n}var nn=!(typeof window>`u`||window.document===void 0||window.document.createElement===void 0),rn=!1;if(nn)try{var an={};Object.defineProperty(an,`passive`,{get:function(){rn=!0}}),window.addEventListener(`test`,an,an),window.removeEventListener(`test`,an,an)}catch{rn=!1}var on=null,sn=null,cn=null;function ln(){if(cn)return cn;var e,t=sn,n=t.length,r,i=`value`in on?on.value:on.textContent,a=i.length;for(e=0;e<n&&t[e]===i[e];e++);var o=n-e;for(r=1;r<=o&&t[n-r]===i[a-r];r++);return cn=i.slice(e,1<r?1-r:void 0)}function un(e){var t=e.keyCode;return`charCode`in e?(e=e.charCode,e===0&&t===13&&(e=13)):e=t,e===10&&(e=13),32<=e||e===13?e:0}function dn(){return!0}function fn(){return!1}function G(e){function t(t,n,r,i,a){for(var o in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=i,this.target=a,this.currentTarget=null,e)e.hasOwnProperty(o)&&(t=e[o],this[o]=t?t(i):i[o]);return this.isDefaultPrevented=(i.defaultPrevented==null?!1===i.returnValue:i.defaultPrevented)?dn:fn,this.isPropagationStopped=fn,this}return p(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():typeof e.returnValue!=`unknown`&&(e.returnValue=!1),this.isDefaultPrevented=dn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():typeof e.cancelBubble!=`unknown`&&(e.cancelBubble=!0),this.isPropagationStopped=dn)},persist:function(){},isPersistent:dn}),t}var pn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},mn=G(pn),hn=p({},pn,{view:0,detail:0}),gn=G(hn),_n,vn,yn,bn=p({},hn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:jn,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return`movementX`in e?e.movementX:(e!==yn&&(yn&&e.type===`mousemove`?(_n=e.screenX-yn.screenX,vn=e.screenY-yn.screenY):vn=_n=0,yn=e),_n)},movementY:function(e){return`movementY`in e?e.movementY:vn}}),xn=G(bn),Sn=G(p({},bn,{dataTransfer:0})),Cn=G(p({},hn,{relatedTarget:0})),wn=G(p({},pn,{animationName:0,elapsedTime:0,pseudoElement:0})),Tn=G(p({},pn,{clipboardData:function(e){return`clipboardData`in e?e.clipboardData:window.clipboardData}})),En=G(p({},pn,{data:0})),Dn={Esc:`Escape`,Spacebar:` `,Left:`ArrowLeft`,Up:`ArrowUp`,Right:`ArrowRight`,Down:`ArrowDown`,Del:`Delete`,Win:`OS`,Menu:`ContextMenu`,Apps:`ContextMenu`,Scroll:`ScrollLock`,MozPrintableKey:`Unidentified`},On={8:`Backspace`,9:`Tab`,12:`Clear`,13:`Enter`,16:`Shift`,17:`Control`,18:`Alt`,19:`Pause`,20:`CapsLock`,27:`Escape`,32:` `,33:`PageUp`,34:`PageDown`,35:`End`,36:`Home`,37:`ArrowLeft`,38:`ArrowUp`,39:`ArrowRight`,40:`ArrowDown`,45:`Insert`,46:`Delete`,112:`F1`,113:`F2`,114:`F3`,115:`F4`,116:`F5`,117:`F6`,118:`F7`,119:`F8`,120:`F9`,121:`F10`,122:`F11`,123:`F12`,144:`NumLock`,145:`ScrollLock`,224:`Meta`},kn={Alt:`altKey`,Control:`ctrlKey`,Meta:`metaKey`,Shift:`shiftKey`};function An(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=kn[e])?!!t[e]:!1}function jn(){return An}var Mn=G(p({},hn,{key:function(e){if(e.key){var t=Dn[e.key]||e.key;if(t!==`Unidentified`)return t}return e.type===`keypress`?(e=un(e),e===13?`Enter`:String.fromCharCode(e)):e.type===`keydown`||e.type===`keyup`?On[e.keyCode]||`Unidentified`:``},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:jn,charCode:function(e){return e.type===`keypress`?un(e):0},keyCode:function(e){return e.type===`keydown`||e.type===`keyup`?e.keyCode:0},which:function(e){return e.type===`keypress`?un(e):e.type===`keydown`||e.type===`keyup`?e.keyCode:0}})),Nn=G(p({},bn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Pn=G(p({},hn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:jn})),Fn=G(p({},pn,{propertyName:0,elapsedTime:0,pseudoElement:0})),In=G(p({},bn,{deltaX:function(e){return`deltaX`in e?e.deltaX:`wheelDeltaX`in e?-e.wheelDeltaX:0},deltaY:function(e){return`deltaY`in e?e.deltaY:`wheelDeltaY`in e?-e.wheelDeltaY:`wheelDelta`in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0})),Ln=G(p({},pn,{newState:0,oldState:0})),Rn=[9,13,27,32],zn=nn&&`CompositionEvent`in window,Bn=null;nn&&`documentMode`in document&&(Bn=document.documentMode);var Vn=nn&&`TextEvent`in window&&!Bn,Hn=nn&&(!zn||Bn&&8<Bn&&11>=Bn),Un=` `,Wn=!1;function Gn(e,t){switch(e){case`keyup`:return Rn.indexOf(t.keyCode)!==-1;case`keydown`:return t.keyCode!==229;case`keypress`:case`mousedown`:case`focusout`:return!0;default:return!1}}function Kn(e){return e=e.detail,typeof e==`object`&&`data`in e?e.data:null}var qn=!1;function Jn(e,t){switch(e){case`compositionend`:return Kn(t);case`keypress`:return t.which===32?(Wn=!0,Un):null;case`textInput`:return e=t.data,e===Un&&Wn?null:e;default:return null}}function K(e,t){if(qn)return e===`compositionend`||!zn&&Gn(e,t)?(e=ln(),cn=sn=on=null,qn=!1,e):null;switch(e){case`paste`:return null;case`keypress`:if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case`compositionend`:return Hn&&t.locale!==`ko`?null:t.data;default:return null}}var Yn={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Xn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t===`input`?!!Yn[e.type]:t===`textarea`}function Zn(e,t,n,r){Xt?Zt?Zt.push(r):Zt=[r]:Xt=r,t=Dd(t,`onChange`),0<t.length&&(n=new mn(`onChange`,`change`,null,n,r),e.push({event:n,listeners:t}))}var Qn=null,$n=null;function er(e){yd(e,0)}function tr(e){if(kt(dt(e)))return e}function nr(e,t){if(e===`change`)return t}var rr=!1;if(nn){var ir;if(nn){var ar=`oninput`in document;if(!ar){var or=document.createElement(`div`);or.setAttribute(`oninput`,`return;`),ar=typeof or.oninput==`function`}ir=ar}else ir=!1;rr=ir&&(!document.documentMode||9<document.documentMode)}function sr(){Qn&&(Qn.detachEvent(`onpropertychange`,cr),$n=Qn=null)}function cr(e){if(e.propertyName===`value`&&tr($n)){var t=[];Zn(t,$n,e,Yt(e)),en(er,t)}}function lr(e,t,n){e===`focusin`?(sr(),Qn=t,$n=n,Qn.attachEvent(`onpropertychange`,cr)):e===`focusout`&&sr()}function ur(e){if(e===`selectionchange`||e===`keyup`||e===`keydown`)return tr($n)}function dr(e,t){if(e===`click`)return tr(t)}function fr(e,t){if(e===`input`||e===`change`)return tr(t)}function pr(e,t){return e===t&&(e!==0||1/e==1/t)||e!==e&&t!==t}var mr=typeof Object.is==`function`?Object.is:pr;function hr(e,t){if(mr(e,t))return!0;if(typeof e!=`object`||!e||typeof t!=`object`||!t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var i=n[r];if(!Ce.call(t,i)||!mr(e[i],t[i]))return!1}return!0}function gr(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function _r(e,t){var n=gr(e);e=0;for(var r;n;){if(n.nodeType===3){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}a:{for(;n;){if(n.nextSibling){n=n.nextSibling;break a}n=n.parentNode}n=void 0}n=gr(n)}}function vr(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?vr(e,t.parentNode):`contains`in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function yr(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=At(e.document);t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href==`string`}catch{n=!1}if(n)e=t.contentWindow;else break;t=At(e.document)}return t}function br(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t===`input`&&(e.type===`text`||e.type===`search`||e.type===`tel`||e.type===`url`||e.type===`password`)||t===`textarea`||e.contentEditable===`true`)}var xr=nn&&`documentMode`in document&&11>=document.documentMode,Sr=null,Cr=null,wr=null,Tr=!1;function Er(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Tr||Sr==null||Sr!==At(r)||(r=Sr,`selectionStart`in r&&br(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),wr&&hr(wr,r)||(wr=r,r=Dd(Cr,`onSelect`),0<r.length&&(t=new mn(`onSelect`,`select`,null,t,n),e.push({event:t,listeners:r}),t.target=Sr)))}function Dr(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[`Webkit`+e]=`webkit`+t,n[`Moz`+e]=`moz`+t,n}var Or={animationend:Dr(`Animation`,`AnimationEnd`),animationiteration:Dr(`Animation`,`AnimationIteration`),animationstart:Dr(`Animation`,`AnimationStart`),transitionrun:Dr(`Transition`,`TransitionRun`),transitionstart:Dr(`Transition`,`TransitionStart`),transitioncancel:Dr(`Transition`,`TransitionCancel`),transitionend:Dr(`Transition`,`TransitionEnd`)},kr={},Ar={};nn&&(Ar=document.createElement(`div`).style,`AnimationEvent`in window||(delete Or.animationend.animation,delete Or.animationiteration.animation,delete Or.animationstart.animation),`TransitionEvent`in window||delete Or.transitionend.transition);function jr(e){if(kr[e])return kr[e];if(!Or[e])return e;var t=Or[e],n;for(n in t)if(t.hasOwnProperty(n)&&n in Ar)return kr[e]=t[n];return e}var Mr=jr(`animationend`),Nr=jr(`animationiteration`),Pr=jr(`animationstart`),Fr=jr(`transitionrun`),Ir=jr(`transitionstart`),Lr=jr(`transitioncancel`),Rr=jr(`transitionend`),zr=new Map,Br=`abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel`.split(` `);Br.push(`scrollEnd`);function Vr(e,t){zr.set(e,t),ht(t,[e])}var Hr=typeof reportError==`function`?reportError:function(e){if(typeof window==`object`&&typeof window.ErrorEvent==`function`){var t=new window.ErrorEvent(`error`,{bubbles:!0,cancelable:!0,message:typeof e==`object`&&e&&typeof e.message==`string`?String(e.message):String(e),error:e});if(!window.dispatchEvent(t))return}else if(typeof process==`object`&&typeof process.emit==`function`){process.emit(`uncaughtException`,e);return}console.error(e)},Ur=[],Wr=0,Gr=0;function Kr(){for(var e=Wr,t=Gr=Wr=0;t<e;){var n=Ur[t];Ur[t++]=null;var r=Ur[t];Ur[t++]=null;var i=Ur[t];Ur[t++]=null;var a=Ur[t];if(Ur[t++]=null,r!==null&&i!==null){var o=r.pending;o===null?i.next=i:(i.next=o.next,o.next=i),r.pending=i}a!==0&&q(n,i,a)}}function qr(e,t,n,r){Ur[Wr++]=e,Ur[Wr++]=t,Ur[Wr++]=n,Ur[Wr++]=r,Gr|=r,e.lanes|=r,e=e.alternate,e!==null&&(e.lanes|=r)}function Jr(e,t,n,r){return qr(e,t,n,r),J(e)}function Yr(e,t){return qr(e,null,null,t),J(e)}function q(e,t,n){e.lanes|=n;var r=e.alternate;r!==null&&(r.lanes|=n);for(var i=!1,a=e.return;a!==null;)a.childLanes|=n,r=a.alternate,r!==null&&(r.childLanes|=n),a.tag===22&&(e=a.stateNode,e===null||e._visibility&1||(i=!0)),e=a,a=a.return;return e.tag===3?(a=e.stateNode,i&&t!==null&&(i=31-ze(n),e=a.hiddenUpdates,r=e[i],r===null?e[i]=[t]:r.push(t),t.lane=n|536870912),a):null}function J(e){if(50<uu)throw uu=0,du=null,Error(a(185));for(var t=e.return;t!==null;)e=t,t=e.return;return e.tag===3?e.stateNode:null}var Xr={};function Zr(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Qr(e,t,n,r){return new Zr(e,t,n,r)}function $r(e){return e=e.prototype,!(!e||!e.isReactComponent)}function ei(e,t){var n=e.alternate;return n===null?(n=Qr(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&65011712,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n.refCleanup=e.refCleanup,n}function ti(e,t){e.flags&=65011714;var n=e.alternate;return n===null?(e.childLanes=0,e.lanes=t,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null):(e.childLanes=n.childLanes,e.lanes=n.lanes,e.child=n.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=n.memoizedProps,e.memoizedState=n.memoizedState,e.updateQueue=n.updateQueue,e.type=n.type,t=n.dependencies,e.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext}),e}function ni(e,t,n,r,i,o){var s=0;if(r=e,typeof e==`function`)$r(e)&&(s=1);else if(typeof e==`string`)s=Gf(e,n,le.current)?26:e===`html`||e===`head`||e===`body`?27:5;else a:switch(e){case D:return e=Qr(31,n,t,i),e.elementType=D,e.lanes=o,e;case _:return ri(n.children,i,o,t);case v:s=8,i|=24;break;case y:return e=Qr(12,n,t,i|2),e.elementType=y,e.lanes=o,e;case C:return e=Qr(13,n,t,i),e.elementType=C,e.lanes=o,e;case w:return e=Qr(19,n,t,i),e.elementType=w,e.lanes=o,e;default:if(typeof e==`object`&&e)switch(e.$$typeof){case x:s=10;break a;case b:s=9;break a;case S:s=11;break a;case T:s=14;break a;case E:s=16,r=null;break a}s=29,n=Error(a(130,e===null?`null`:typeof e,``)),r=null}return t=Qr(s,n,t,i),t.elementType=e,t.type=r,t.lanes=o,t}function ri(e,t,n,r){return e=Qr(7,e,r,t),e.lanes=n,e}function ii(e,t,n){return e=Qr(6,e,null,t),e.lanes=n,e}function ai(e){var t=Qr(18,null,null,0);return t.stateNode=e,t}function oi(e,t,n){return t=Qr(4,e.children===null?[]:e.children,e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}var si=new WeakMap;function ci(e,t){if(typeof e==`object`&&e){var n=si.get(e);return n===void 0?(t={value:e,source:t,stack:Se(t)},si.set(e,t),t):n}return{value:e,source:t,stack:Se(t)}}var li=[],ui=0,di=null,fi=0,pi=[],mi=0,hi=null,gi=1,_i=``;function vi(e,t){li[ui++]=fi,li[ui++]=di,di=e,fi=t}function yi(e,t,n){pi[mi++]=gi,pi[mi++]=_i,pi[mi++]=hi,hi=e;var r=gi;e=_i;var i=32-ze(r)-1;r&=~(1<<i),n+=1;var a=32-ze(t)+i;if(30<a){var o=i-i%5;a=(r&(1<<o)-1).toString(32),r>>=o,i-=o,gi=1<<32-ze(t)+i|n<<i|r,_i=a+e}else gi=1<<a|n<<i|r,_i=e}function bi(e){e.return!==null&&(vi(e,1),yi(e,1,0))}function xi(e){for(;e===di;)di=li[--ui],li[ui]=null,fi=li[--ui],li[ui]=null;for(;e===hi;)hi=pi[--mi],pi[mi]=null,_i=pi[--mi],pi[mi]=null,gi=pi[--mi],pi[mi]=null}function Si(e,t){pi[mi++]=gi,pi[mi++]=_i,pi[mi++]=hi,gi=t.id,_i=t.overflow,hi=e}var Ci=null,wi=null,Y=!1,Ti=null,Ei=!1,Di=Error(a(519));function Oi(e){throw Pi(ci(Error(a(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?`text`:`HTML`,``)),e)),Di}function ki(e){var t=e.stateNode,n=e.type,r=e.memoizedProps;switch(t[V]=e,t[rt]=r,n){case`dialog`:bd(`cancel`,t),bd(`close`,t);break;case`iframe`:case`object`:case`embed`:bd(`load`,t);break;case`video`:case`audio`:for(n=0;n<_d.length;n++)bd(_d[n],t);break;case`source`:bd(`error`,t);break;case`img`:case`image`:case`link`:bd(`error`,t),bd(`load`,t);break;case`details`:bd(`toggle`,t);break;case`input`:bd(`invalid`,t),Pt(t,r.value,r.defaultValue,r.checked,r.defaultChecked,r.type,r.name,!0);break;case`select`:bd(`invalid`,t);break;case`textarea`:bd(`invalid`,t),Rt(t,r.value,r.defaultValue,r.children)}n=r.children,typeof n!=`string`&&typeof n!=`number`&&typeof n!=`bigint`||t.textContent===``+n||!0===r.suppressHydrationWarning||Nd(t.textContent,n)?(r.popover!=null&&(bd(`beforetoggle`,t),bd(`toggle`,t)),r.onScroll!=null&&bd(`scroll`,t),r.onScrollEnd!=null&&bd(`scrollend`,t),r.onClick!=null&&(t.onclick=qt),t=!0):t=!1,t||Oi(e,!0)}function Ai(e){for(Ci=e.return;Ci;)switch(Ci.tag){case 5:case 31:case 13:Ei=!1;return;case 27:case 3:Ei=!0;return;default:Ci=Ci.return}}function ji(e){if(e!==Ci)return!1;if(!Y)return Ai(e),Y=!0,!1;var t=e.tag,n;if((n=t!==3&&t!==27)&&((n=t===5)&&(n=e.type,n=!(n!==`form`&&n!==`button`)||Gd(e.type,e.memoizedProps)),n=!n),n&&wi&&Oi(e),Ai(e),t===13){if(e=e.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(a(317));wi=ff(e)}else if(t===31){if(e=e.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(a(317));wi=ff(e)}else t===27?(t=wi,$d(e.type)?(e=df,df=null,wi=e):wi=t):wi=Ci?uf(e.stateNode.nextSibling):null;return!0}function Mi(){wi=Ci=null,Y=!1}function Ni(){var e=Ti;return e!==null&&(Xl===null?Xl=e:Xl.push.apply(Xl,e),Ti=null),e}function Pi(e){Ti===null?Ti=[e]:Ti.push(e)}var Fi=se(null),Ii=null,Li=null;function Ri(e,t,n){N(Fi,t._currentValue),t._currentValue=n}function zi(e){e._currentValue=Fi.current,ce(Fi)}function Bi(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)===t?r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t):(e.childLanes|=t,r!==null&&(r.childLanes|=t)),e===n)break;e=e.return}}function Vi(e,t,n,r){var i=e.child;for(i!==null&&(i.return=e);i!==null;){var o=i.dependencies;if(o!==null){var s=i.child;o=o.firstContext;a:for(;o!==null;){var c=o;o=i;for(var l=0;l<t.length;l++)if(c.context===t[l]){o.lanes|=n,c=o.alternate,c!==null&&(c.lanes|=n),Bi(o.return,n,e),r||(s=null);break a}o=c.next}}else if(i.tag===18){if(s=i.return,s===null)throw Error(a(341));s.lanes|=n,o=s.alternate,o!==null&&(o.lanes|=n),Bi(s,n,e),s=null}else s=i.child;if(s!==null)s.return=i;else for(s=i;s!==null;){if(s===e){s=null;break}if(i=s.sibling,i!==null){i.return=s.return,s=i;break}s=s.return}i=s}}function Hi(e,t,n,r){e=null;for(var i=t,o=!1;i!==null;){if(!o){if(i.flags&524288)o=!0;else if(i.flags&262144)break}if(i.tag===10){var s=i.alternate;if(s===null)throw Error(a(387));if(s=s.memoizedProps,s!==null){var c=i.type;mr(i.pendingProps.value,s.value)||(e===null?e=[c]:e.push(c))}}else if(i===fe.current){if(s=i.alternate,s===null)throw Error(a(387));s.memoizedState.memoizedState!==i.memoizedState.memoizedState&&(e===null?e=[ep]:e.push(ep))}i=i.return}e!==null&&Vi(t,e,n,r),t.flags|=262144}function Ui(e){for(e=e.firstContext;e!==null;){if(!mr(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function Wi(e){Ii=e,Li=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function Gi(e){return qi(Ii,e)}function Ki(e,t){return Ii===null&&Wi(e),qi(e,t)}function qi(e,t){var n=t._currentValue;if(t={context:t,memoizedValue:n,next:null},Li===null){if(e===null)throw Error(a(308));Li=t,e.dependencies={lanes:0,firstContext:t},e.flags|=524288}else Li=Li.next=t;return n}var Ji=typeof AbortController<`u`?AbortController:function(){var e=[],t=this.signal={aborted:!1,addEventListener:function(t,n){e.push(n)}};this.abort=function(){t.aborted=!0,e.forEach(function(e){return e()})}},Yi=t.unstable_scheduleCallback,Xi=t.unstable_NormalPriority,Zi={$$typeof:x,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function Qi(){return{controller:new Ji,data:new Map,refCount:0}}function $i(e){e.refCount--,e.refCount===0&&Yi(Xi,function(){e.controller.abort()})}var ea=null,ta=0,na=0,ra=null;function ia(e,t){if(ea===null){var n=ea=[];ta=0,na=dd(),ra={status:`pending`,value:void 0,then:function(e){n.push(e)}}}return ta++,t.then(aa,aa),t}function aa(){if(--ta===0&&ea!==null){ra!==null&&(ra.status=`fulfilled`);var e=ea;ea=null,na=0,ra=null;for(var t=0;t<e.length;t++)(0,e[t])()}}function oa(e,t){var n=[],r={status:`pending`,value:null,reason:null,then:function(e){n.push(e)}};return e.then(function(){r.status=`fulfilled`,r.value=t;for(var e=0;e<n.length;e++)(0,n[e])(t)},function(e){for(r.status=`rejected`,r.reason=e,e=0;e<n.length;e++)(0,n[e])(void 0)}),r}var sa=j.S;j.S=function(e,t){$l=Oe(),typeof t==`object`&&t&&typeof t.then==`function`&&ia(e,t),sa!==null&&sa(e,t)};var ca=se(null);function la(){var e=ca.current;return e===null?Pl.pooledCache:e}function ua(e,t){t===null?N(ca,ca.current):N(ca,t.pool)}function da(){var e=la();return e===null?null:{parent:Zi._currentValue,pool:e}}var fa=Error(a(460)),pa=Error(a(474)),ma=Error(a(542)),ha={then:function(){}};function ga(e){return e=e.status,e===`fulfilled`||e===`rejected`}function _a(e,t,n){switch(n=e[n],n===void 0?e.push(t):n!==t&&(t.then(qt,qt),t=n),t.status){case`fulfilled`:return t.value;case`rejected`:throw e=t.reason,xa(e),e;default:if(typeof t.status==`string`)t.then(qt,qt);else{if(e=Pl,e!==null&&100<e.shellSuspendCounter)throw Error(a(482));e=t,e.status=`pending`,e.then(function(e){if(t.status===`pending`){var n=t;n.status=`fulfilled`,n.value=e}},function(e){if(t.status===`pending`){var n=t;n.status=`rejected`,n.reason=e}})}switch(t.status){case`fulfilled`:return t.value;case`rejected`:throw e=t.reason,xa(e),e}throw ya=t,fa}}function va(e){try{var t=e._init;return t(e._payload)}catch(e){throw typeof e==`object`&&e&&typeof e.then==`function`?(ya=e,fa):e}}var ya=null;function ba(){if(ya===null)throw Error(a(459));var e=ya;return ya=null,e}function xa(e){if(e===fa||e===ma)throw Error(a(483))}var Sa=null,Ca=0;function wa(e){var t=Ca;return Ca+=1,Sa===null&&(Sa=[]),_a(Sa,e,t)}function Ta(e,t){t=t.props.ref,e.ref=t===void 0?null:t}function Ea(e,t){throw t.$$typeof===m?Error(a(525)):(e=Object.prototype.toString.call(t),Error(a(31,e===`[object Object]`?`object with keys {`+Object.keys(t).join(`, `)+`}`:e)))}function Da(e){function t(t,n){if(e){var r=t.deletions;r===null?(t.deletions=[n],t.flags|=16):r.push(n)}}function n(n,r){if(!e)return null;for(;r!==null;)t(n,r),r=r.sibling;return null}function r(e){for(var t=new Map;e!==null;)e.key===null?t.set(e.index,e):t.set(e.key,e),e=e.sibling;return t}function i(e,t){return e=ei(e,t),e.index=0,e.sibling=null,e}function o(t,n,r){return t.index=r,e?(r=t.alternate,r===null?(t.flags|=67108866,n):(r=r.index,r<n?(t.flags|=67108866,n):r)):(t.flags|=1048576,n)}function s(t){return e&&t.alternate===null&&(t.flags|=67108866),t}function c(e,t,n,r){return t===null||t.tag!==6?(t=ii(n,e.mode,r),t.return=e,t):(t=i(t,n),t.return=e,t)}function l(e,t,n,r){var a=n.type;return a===_?d(e,t,n.props.children,r,n.key):t!==null&&(t.elementType===a||typeof a==`object`&&a&&a.$$typeof===E&&va(a)===t.type)?(t=i(t,n.props),Ta(t,n),t.return=e,t):(t=ni(n.type,n.key,n.props,null,e.mode,r),Ta(t,n),t.return=e,t)}function u(e,t,n,r){return t===null||t.tag!==4||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?(t=oi(n,e.mode,r),t.return=e,t):(t=i(t,n.children||[]),t.return=e,t)}function d(e,t,n,r,a){return t===null||t.tag!==7?(t=ri(n,e.mode,r,a),t.return=e,t):(t=i(t,n),t.return=e,t)}function f(e,t,n){if(typeof t==`string`&&t!==``||typeof t==`number`||typeof t==`bigint`)return t=ii(``+t,e.mode,n),t.return=e,t;if(typeof t==`object`&&t){switch(t.$$typeof){case h:return n=ni(t.type,t.key,t.props,null,e.mode,n),Ta(n,t),n.return=e,n;case g:return t=oi(t,e.mode,n),t.return=e,t;case E:return t=va(t),f(e,t,n)}if(ne(t)||A(t))return t=ri(t,e.mode,n,null),t.return=e,t;if(typeof t.then==`function`)return f(e,wa(t),n);if(t.$$typeof===x)return f(e,Ki(e,t),n);Ea(e,t)}return null}function p(e,t,n,r){var i=t===null?null:t.key;if(typeof n==`string`&&n!==``||typeof n==`number`||typeof n==`bigint`)return i===null?c(e,t,``+n,r):null;if(typeof n==`object`&&n){switch(n.$$typeof){case h:return n.key===i?l(e,t,n,r):null;case g:return n.key===i?u(e,t,n,r):null;case E:return n=va(n),p(e,t,n,r)}if(ne(n)||A(n))return i===null?d(e,t,n,r,null):null;if(typeof n.then==`function`)return p(e,t,wa(n),r);if(n.$$typeof===x)return p(e,t,Ki(e,n),r);Ea(e,n)}return null}function m(e,t,n,r,i){if(typeof r==`string`&&r!==``||typeof r==`number`||typeof r==`bigint`)return e=e.get(n)||null,c(t,e,``+r,i);if(typeof r==`object`&&r){switch(r.$$typeof){case h:return e=e.get(r.key===null?n:r.key)||null,l(t,e,r,i);case g:return e=e.get(r.key===null?n:r.key)||null,u(t,e,r,i);case E:return r=va(r),m(e,t,n,r,i)}if(ne(r)||A(r))return e=e.get(n)||null,d(t,e,r,i,null);if(typeof r.then==`function`)return m(e,t,n,wa(r),i);if(r.$$typeof===x)return m(e,t,n,Ki(t,r),i);Ea(t,r)}return null}function v(i,a,s,c){for(var l=null,u=null,d=a,h=a=0,g=null;d!==null&&h<s.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var _=p(i,d,s[h],c);if(_===null){d===null&&(d=g);break}e&&d&&_.alternate===null&&t(i,d),a=o(_,a,h),u===null?l=_:u.sibling=_,u=_,d=g}if(h===s.length)return n(i,d),Y&&vi(i,h),l;if(d===null){for(;h<s.length;h++)d=f(i,s[h],c),d!==null&&(a=o(d,a,h),u===null?l=d:u.sibling=d,u=d);return Y&&vi(i,h),l}for(d=r(d);h<s.length;h++)g=m(d,i,h,s[h],c),g!==null&&(e&&g.alternate!==null&&d.delete(g.key===null?h:g.key),a=o(g,a,h),u===null?l=g:u.sibling=g,u=g);return e&&d.forEach(function(e){return t(i,e)}),Y&&vi(i,h),l}function y(i,s,c,l){if(c==null)throw Error(a(151));for(var u=null,d=null,h=s,g=s=0,_=null,v=c.next();h!==null&&!v.done;g++,v=c.next()){h.index>g?(_=h,h=null):_=h.sibling;var y=p(i,h,v.value,l);if(y===null){h===null&&(h=_);break}e&&h&&y.alternate===null&&t(i,h),s=o(y,s,g),d===null?u=y:d.sibling=y,d=y,h=_}if(v.done)return n(i,h),Y&&vi(i,g),u;if(h===null){for(;!v.done;g++,v=c.next())v=f(i,v.value,l),v!==null&&(s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return Y&&vi(i,g),u}for(h=r(h);!v.done;g++,v=c.next())v=m(h,i,g,v.value,l),v!==null&&(e&&v.alternate!==null&&h.delete(v.key===null?g:v.key),s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return e&&h.forEach(function(e){return t(i,e)}),Y&&vi(i,g),u}function b(e,r,o,c){if(typeof o==`object`&&o&&o.type===_&&o.key===null&&(o=o.props.children),typeof o==`object`&&o){switch(o.$$typeof){case h:a:{for(var l=o.key;r!==null;){if(r.key===l){if(l=o.type,l===_){if(r.tag===7){n(e,r.sibling),c=i(r,o.props.children),c.return=e,e=c;break a}}else if(r.elementType===l||typeof l==`object`&&l&&l.$$typeof===E&&va(l)===r.type){n(e,r.sibling),c=i(r,o.props),Ta(c,o),c.return=e,e=c;break a}n(e,r);break}else t(e,r);r=r.sibling}o.type===_?(c=ri(o.props.children,e.mode,c,o.key),c.return=e,e=c):(c=ni(o.type,o.key,o.props,null,e.mode,c),Ta(c,o),c.return=e,e=c)}return s(e);case g:a:{for(l=o.key;r!==null;){if(r.key===l)if(r.tag===4&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),c=i(r,o.children||[]),c.return=e,e=c;break a}else{n(e,r);break}else t(e,r);r=r.sibling}c=oi(o,e.mode,c),c.return=e,e=c}return s(e);case E:return o=va(o),b(e,r,o,c)}if(ne(o))return v(e,r,o,c);if(A(o)){if(l=A(o),typeof l!=`function`)throw Error(a(150));return o=l.call(o),y(e,r,o,c)}if(typeof o.then==`function`)return b(e,r,wa(o),c);if(o.$$typeof===x)return b(e,r,Ki(e,o),c);Ea(e,o)}return typeof o==`string`&&o!==``||typeof o==`number`||typeof o==`bigint`?(o=``+o,r!==null&&r.tag===6?(n(e,r.sibling),c=i(r,o),c.return=e,e=c):(n(e,r),c=ii(o,e.mode,c),c.return=e,e=c),s(e)):n(e,r)}return function(e,t,n,r){try{Ca=0;var i=b(e,t,n,r);return Sa=null,i}catch(t){if(t===fa||t===ma)throw t;var a=Qr(29,t,null,e.mode);return a.lanes=r,a.return=e,a}}}var Oa=Da(!0),ka=Da(!1),Aa=!1;function ja(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Ma(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function Na(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function Pa(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,Nl&2){var i=r.pending;return i===null?t.next=t:(t.next=i.next,i.next=t),r.pending=t,t=J(e),q(e,null,n),t}return qr(e,r,t,n),J(e)}function Fa(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,n&4194048)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,tt(e,n)}}function Ia(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var i=null,a=null;if(n=n.firstBaseUpdate,n!==null){do{var o={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};a===null?i=a=o:a=a.next=o,n=n.next}while(n!==null);a===null?i=a=t:a=a.next=t}else i=a=t;n={baseState:r.baseState,firstBaseUpdate:i,lastBaseUpdate:a,shared:r.shared,callbacks:r.callbacks},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}var La=!1;function Ra(){if(La){var e=ra;if(e!==null)throw e}}function za(e,t,n,r){La=!1;var i=e.updateQueue;Aa=!1;var a=i.firstBaseUpdate,o=i.lastBaseUpdate,s=i.shared.pending;if(s!==null){i.shared.pending=null;var c=s,l=c.next;c.next=null,o===null?a=l:o.next=l,o=c;var u=e.alternate;u!==null&&(u=u.updateQueue,s=u.lastBaseUpdate,s!==o&&(s===null?u.firstBaseUpdate=l:s.next=l,u.lastBaseUpdate=c))}if(a!==null){var d=i.baseState;o=0,u=l=c=null,s=a;do{var f=s.lane&-536870913,m=f!==s.lane;if(m?(Il&f)===f:(r&f)===f){f!==0&&f===na&&(La=!0),u!==null&&(u=u.next={lane:0,tag:s.tag,payload:s.payload,callback:null,next:null});a:{var h=e,g=s;f=t;var _=n;switch(g.tag){case 1:if(h=g.payload,typeof h==`function`){d=h.call(_,d,f);break a}d=h;break a;case 3:h.flags=h.flags&-65537|128;case 0:if(h=g.payload,f=typeof h==`function`?h.call(_,d,f):h,f==null)break a;d=p({},d,f);break a;case 2:Aa=!0}}f=s.callback,f!==null&&(e.flags|=64,m&&(e.flags|=8192),m=i.callbacks,m===null?i.callbacks=[f]:m.push(f))}else m={lane:f,tag:s.tag,payload:s.payload,callback:s.callback,next:null},u===null?(l=u=m,c=d):u=u.next=m,o|=f;if(s=s.next,s===null){if(s=i.shared.pending,s===null)break;m=s,s=m.next,m.next=null,i.lastBaseUpdate=m,i.shared.pending=null}}while(1);u===null&&(c=d),i.baseState=c,i.firstBaseUpdate=l,i.lastBaseUpdate=u,a===null&&(i.shared.lanes=0),Wl|=o,e.lanes=o,e.memoizedState=d}}function Ba(e,t){if(typeof e!=`function`)throw Error(a(191,e));e.call(t)}function Va(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;e<n.length;e++)Ba(n[e],t)}var Ha=se(null),Ua=se(0);function Wa(e,t){e=Hl,N(Ua,e),N(Ha,t),Hl=e|t.baseLanes}function Ga(){N(Ua,Hl),N(Ha,Ha.current)}function Ka(){Hl=Ua.current,ce(Ha),ce(Ua)}var qa=se(null),Ja=null;function Ya(e){var t=e.alternate;N(eo,eo.current&1),N(qa,e),Ja===null&&(t===null||Ha.current!==null||t.memoizedState!==null)&&(Ja=e)}function Xa(e){N(eo,eo.current),N(qa,e),Ja===null&&(Ja=e)}function Za(e){e.tag===22?(N(eo,eo.current),N(qa,e),Ja===null&&(Ja=e)):Qa(e)}function Qa(){N(eo,eo.current),N(qa,qa.current)}function $a(e){ce(qa),Ja===e&&(Ja=null),ce(eo)}var eo=se(0);function to(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||sf(n)||cf(n)))return t}else if(t.tag===19&&(t.memoizedProps.revealOrder===`forwards`||t.memoizedProps.revealOrder===`backwards`||t.memoizedProps.revealOrder===`unstable_legacy-backwards`||t.memoizedProps.revealOrder===`together`)){if(t.flags&128)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var no=0,X=null,ro=null,io=null,ao=!1,oo=!1,so=!1,co=0,lo=0,uo=null,fo=0;function po(){throw Error(a(321))}function mo(e,t){if(t===null)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!mr(e[n],t[n]))return!1;return!0}function ho(e,t,n,r,i,a){return no=a,X=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,j.H=e===null||e.memoizedState===null?Ms:Ns,so=!1,a=n(r,i),so=!1,oo&&(a=_o(t,n,r,i)),go(e),a}function go(e){j.H=js;var t=ro!==null&&ro.next!==null;if(no=0,io=ro=X=null,ao=!1,lo=0,uo=null,t)throw Error(a(300));e===null||Xs||(e=e.dependencies,e!==null&&Ui(e)&&(Xs=!0))}function _o(e,t,n,r){X=e;var i=0;do{if(oo&&(uo=null),lo=0,oo=!1,25<=i)throw Error(a(301));if(i+=1,io=ro=null,e.updateQueue!=null){var o=e.updateQueue;o.lastEffect=null,o.events=null,o.stores=null,o.memoCache!=null&&(o.memoCache.index=0)}j.H=Ps,o=t(n,r)}while(oo);return o}function vo(){var e=j.H,t=e.useState()[0];return t=typeof t.then==`function`?To(t):t,e=e.useState()[0],(ro===null?null:ro.memoizedState)!==e&&(X.flags|=1024),t}function yo(){var e=co!==0;return co=0,e}function bo(e,t,n){t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~n}function xo(e){if(ao){for(e=e.memoizedState;e!==null;){var t=e.queue;t!==null&&(t.pending=null),e=e.next}ao=!1}no=0,io=ro=X=null,oo=!1,lo=co=0,uo=null}function So(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return io===null?X.memoizedState=io=e:io=io.next=e,io}function Co(){if(ro===null){var e=X.alternate;e=e===null?null:e.memoizedState}else e=ro.next;var t=io===null?X.memoizedState:io.next;if(t!==null)io=t,ro=e;else{if(e===null)throw X.alternate===null?Error(a(467)):Error(a(310));ro=e,e={memoizedState:ro.memoizedState,baseState:ro.baseState,baseQueue:ro.baseQueue,queue:ro.queue,next:null},io===null?X.memoizedState=io=e:io=io.next=e}return io}function wo(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function To(e){var t=lo;return lo+=1,uo===null&&(uo=[]),e=_a(uo,e,t),t=X,(io===null?t.memoizedState:io.next)===null&&(t=t.alternate,j.H=t===null||t.memoizedState===null?Ms:Ns),e}function Eo(e){if(typeof e==`object`&&e){if(typeof e.then==`function`)return To(e);if(e.$$typeof===x)return Gi(e)}throw Error(a(438,String(e)))}function Do(e){var t=null,n=X.updateQueue;if(n!==null&&(t=n.memoCache),t==null){var r=X.alternate;r!==null&&(r=r.updateQueue,r!==null&&(r=r.memoCache,r!=null&&(t={data:r.data.map(function(e){return e.slice()}),index:0})))}if(t??={data:[],index:0},n===null&&(n=wo(),X.updateQueue=n),n.memoCache=t,n=t.data[t.index],n===void 0)for(n=t.data[t.index]=Array(e),r=0;r<e;r++)n[r]=O;return t.index++,n}function Oo(e,t){return typeof t==`function`?t(e):t}function ko(e){return Ao(Co(),ro,e)}function Ao(e,t,n){var r=e.queue;if(r===null)throw Error(a(311));r.lastRenderedReducer=n;var i=e.baseQueue,o=r.pending;if(o!==null){if(i!==null){var s=i.next;i.next=o.next,o.next=s}t.baseQueue=i=o,r.pending=null}if(o=e.baseState,i===null)e.memoizedState=o;else{t=i.next;var c=s=null,l=null,u=t,d=!1;do{var f=u.lane&-536870913;if(f===u.lane?(no&f)===f:(Il&f)===f){var p=u.revertLane;if(p===0)l!==null&&(l=l.next={lane:0,revertLane:0,gesture:null,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null}),f===na&&(d=!0);else if((no&p)===p){u=u.next,p===na&&(d=!0);continue}else f={lane:0,revertLane:u.revertLane,gesture:null,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null},l===null?(c=l=f,s=o):l=l.next=f,X.lanes|=p,Wl|=p;f=u.action,so&&n(o,f),o=u.hasEagerState?u.eagerState:n(o,f)}else p={lane:f,revertLane:u.revertLane,gesture:u.gesture,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null},l===null?(c=l=p,s=o):l=l.next=p,X.lanes|=f,Wl|=f;u=u.next}while(u!==null&&u!==t);if(l===null?s=o:l.next=c,!mr(o,e.memoizedState)&&(Xs=!0,d&&(n=ra,n!==null)))throw n;e.memoizedState=o,e.baseState=s,e.baseQueue=l,r.lastRenderedState=o}return i===null&&(r.lanes=0),[e.memoizedState,r.dispatch]}function jo(e){var t=Co(),n=t.queue;if(n===null)throw Error(a(311));n.lastRenderedReducer=e;var r=n.dispatch,i=n.pending,o=t.memoizedState;if(i!==null){n.pending=null;var s=i=i.next;do o=e(o,s.action),s=s.next;while(s!==i);mr(o,t.memoizedState)||(Xs=!0),t.memoizedState=o,t.baseQueue===null&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function Mo(e,t,n){var r=X,i=Co(),o=Y;if(o){if(n===void 0)throw Error(a(407));n=n()}else n=t();var s=!mr((ro||i).memoizedState,n);if(s&&(i.memoizedState=n,Xs=!0),i=i.queue,rs(Fo.bind(null,r,i,e),[e]),i.getSnapshot!==t||s||io!==null&&io.memoizedState.tag&1){if(r.flags|=2048,Qo(9,{destroy:void 0},Po.bind(null,r,i,n,t),null),Pl===null)throw Error(a(349));o||no&127||No(r,t,n)}return n}function No(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},t=X.updateQueue,t===null?(t=wo(),X.updateQueue=t,t.stores=[e]):(n=t.stores,n===null?t.stores=[e]:n.push(e))}function Po(e,t,n,r){t.value=n,t.getSnapshot=r,Io(t)&&Lo(e)}function Fo(e,t,n){return n(function(){Io(t)&&Lo(e)})}function Io(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!mr(e,n)}catch{return!0}}function Lo(e){var t=Yr(e,2);t!==null&&mu(t,e,2)}function Ro(e){var t=So();if(typeof e==`function`){var n=e;if(e=n(),so){Re(!0);try{n()}finally{Re(!1)}}}return t.memoizedState=t.baseState=e,t.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Oo,lastRenderedState:e},t}function zo(e,t,n,r){return e.baseState=n,Ao(e,ro,typeof r==`function`?r:Oo)}function Bo(e,t,n,r,i){if(Os(e))throw Error(a(485));if(e=t.action,e!==null){var o={payload:i,action:e,next:null,isTransition:!0,status:`pending`,value:null,reason:null,listeners:[],then:function(e){o.listeners.push(e)}};j.T===null?o.isTransition=!1:n(!0),r(o),n=t.pending,n===null?(o.next=t.pending=o,Vo(t,o)):(o.next=n.next,t.pending=n.next=o)}}function Vo(e,t){var n=t.action,r=t.payload,i=e.state;if(t.isTransition){var a=j.T,o={};j.T=o;try{var s=n(i,r),c=j.S;c!==null&&c(o,s),Ho(e,t,s)}catch(n){Wo(e,t,n)}finally{a!==null&&o.types!==null&&(a.types=o.types),j.T=a}}else try{a=n(i,r),Ho(e,t,a)}catch(n){Wo(e,t,n)}}function Ho(e,t,n){typeof n==`object`&&n&&typeof n.then==`function`?n.then(function(n){Uo(e,t,n)},function(n){return Wo(e,t,n)}):Uo(e,t,n)}function Uo(e,t,n){t.status=`fulfilled`,t.value=n,Go(t),e.state=n,t=e.pending,t!==null&&(n=t.next,n===t?e.pending=null:(n=n.next,t.next=n,Vo(e,n)))}function Wo(e,t,n){var r=e.pending;if(e.pending=null,r!==null){r=r.next;do t.status=`rejected`,t.reason=n,Go(t),t=t.next;while(t!==r)}e.action=null}function Go(e){e=e.listeners;for(var t=0;t<e.length;t++)(0,e[t])()}function Ko(e,t){return t}function qo(e,t){if(Y){var n=Pl.formState;if(n!==null){a:{var r=X;if(Y){if(wi){b:{for(var i=wi,a=Ei;i.nodeType!==8;){if(!a){i=null;break b}if(i=uf(i.nextSibling),i===null){i=null;break b}}a=i.data,i=a===`F!`||a===`F`?i:null}if(i){wi=uf(i.nextSibling),r=i.data===`F!`;break a}}Oi(r)}r=!1}r&&(t=n[0])}}return n=So(),n.memoizedState=n.baseState=t,r={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Ko,lastRenderedState:t},n.queue=r,n=Ts.bind(null,X,r),r.dispatch=n,r=Ro(!1),a=Ds.bind(null,X,!1,r.queue),r=So(),i={state:t,dispatch:null,action:e,pending:null},r.queue=i,n=Bo.bind(null,X,i,a,n),i.dispatch=n,r.memoizedState=e,[t,n,!1]}function Jo(e){return Yo(Co(),ro,e)}function Yo(e,t,n){if(t=Ao(e,t,Ko)[0],e=ko(Oo)[0],typeof t==`object`&&t&&typeof t.then==`function`)try{var r=To(t)}catch(e){throw e===fa?ma:e}else r=t;t=Co();var i=t.queue,a=i.dispatch;return n!==t.memoizedState&&(X.flags|=2048,Qo(9,{destroy:void 0},Xo.bind(null,i,n),null)),[r,a,e]}function Xo(e,t){e.action=t}function Zo(e){var t=Co(),n=ro;if(n!==null)return Yo(t,n,e);Co(),t=t.memoizedState,n=Co();var r=n.queue.dispatch;return n.memoizedState=e,[t,r,!1]}function Qo(e,t,n,r){return e={tag:e,create:n,deps:r,inst:t,next:null},t=X.updateQueue,t===null&&(t=wo(),X.updateQueue=t),n=t.lastEffect,n===null?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function $o(){return Co().memoizedState}function es(e,t,n,r){var i=So();X.flags|=e,i.memoizedState=Qo(1|t,{destroy:void 0},n,r===void 0?null:r)}function ts(e,t,n,r){var i=Co();r=r===void 0?null:r;var a=i.memoizedState.inst;ro!==null&&r!==null&&mo(r,ro.memoizedState.deps)?i.memoizedState=Qo(t,a,n,r):(X.flags|=e,i.memoizedState=Qo(1|t,a,n,r))}function ns(e,t){es(8390656,8,e,t)}function rs(e,t){ts(2048,8,e,t)}function is(e){X.flags|=4;var t=X.updateQueue;if(t===null)t=wo(),X.updateQueue=t,t.events=[e];else{var n=t.events;n===null?t.events=[e]:n.push(e)}}function as(e){var t=Co().memoizedState;return is({ref:t,nextImpl:e}),function(){if(Nl&2)throw Error(a(440));return t.impl.apply(void 0,arguments)}}function os(e,t){return ts(4,2,e,t)}function ss(e,t){return ts(4,4,e,t)}function cs(e,t){if(typeof t==`function`){e=e();var n=t(e);return function(){typeof n==`function`?n():t(null)}}if(t!=null)return e=e(),t.current=e,function(){t.current=null}}function ls(e,t,n){n=n==null?null:n.concat([e]),ts(4,4,cs.bind(null,t,e),n)}function us(){}function ds(e,t){var n=Co();t=t===void 0?null:t;var r=n.memoizedState;return t!==null&&mo(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function fs(e,t){var n=Co();t=t===void 0?null:t;var r=n.memoizedState;if(t!==null&&mo(t,r[1]))return r[0];if(r=e(),so){Re(!0);try{e()}finally{Re(!1)}}return n.memoizedState=[r,t],r}function ps(e,t,n){return n===void 0||no&1073741824&&!(Il&261930)?e.memoizedState=t:(e.memoizedState=n,e=pu(),X.lanes|=e,Wl|=e,n)}function ms(e,t,n,r){return mr(n,t)?n:Ha.current===null?!(no&42)||no&1073741824&&!(Il&261930)?(Xs=!0,e.memoizedState=n):(e=pu(),X.lanes|=e,Wl|=e,t):(e=ps(e,n,r),mr(e,t)||(Xs=!0),e)}function hs(e,t,n,r,i){var a=M.p;M.p=a!==0&&8>a?a:8;var o=j.T,s={};j.T=s,Ds(e,!1,t,n);try{var c=i(),l=j.S;l!==null&&l(s,c),typeof c==`object`&&c&&typeof c.then==`function`?Es(e,t,oa(c,r),fu(e)):Es(e,t,r,fu(e))}catch(n){Es(e,t,{then:function(){},status:`rejected`,reason:n},fu())}finally{M.p=a,o!==null&&s.types!==null&&(o.types=s.types),j.T=o}}function gs(){}function _s(e,t,n,r){if(e.tag!==5)throw Error(a(476));var i=vs(e).queue;hs(e,i,t,ie,n===null?gs:function(){return ys(e),n(r)})}function vs(e){var t=e.memoizedState;if(t!==null)return t;t={memoizedState:ie,baseState:ie,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Oo,lastRenderedState:ie},next:null};var n={};return t.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Oo,lastRenderedState:n},next:null},e.memoizedState=t,e=e.alternate,e!==null&&(e.memoizedState=t),t}function ys(e){var t=vs(e);t.next===null&&(t=e.alternate.memoizedState),Es(e,t.next.queue,{},fu())}function bs(){return Gi(ep)}function xs(){return Co().memoizedState}function Ss(){return Co().memoizedState}function Cs(e){for(var t=e.return;t!==null;){switch(t.tag){case 24:case 3:var n=fu();e=Na(n);var r=Pa(t,e,n);r!==null&&(mu(r,t,n),Fa(r,t,n)),t={cache:Qi()},e.payload=t;return}t=t.return}}function ws(e,t,n){var r=fu();n={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},Os(e)?ks(t,n):(n=Jr(e,t,n,r),n!==null&&(mu(n,e,r),As(n,t,r)))}function Ts(e,t,n){Es(e,t,n,fu())}function Es(e,t,n,r){var i={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(Os(e))ks(t,i);else{var a=e.alternate;if(e.lanes===0&&(a===null||a.lanes===0)&&(a=t.lastRenderedReducer,a!==null))try{var o=t.lastRenderedState,s=a(o,n);if(i.hasEagerState=!0,i.eagerState=s,mr(s,o))return qr(e,t,i,0),Pl===null&&Kr(),!1}catch{}if(n=Jr(e,t,i,r),n!==null)return mu(n,e,r),As(n,t,r),!0}return!1}function Ds(e,t,n,r){if(r={lane:2,revertLane:dd(),gesture:null,action:r,hasEagerState:!1,eagerState:null,next:null},Os(e)){if(t)throw Error(a(479))}else t=Jr(e,n,r,2),t!==null&&mu(t,e,2)}function Os(e){var t=e.alternate;return e===X||t!==null&&t===X}function ks(e,t){oo=ao=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function As(e,t,n){if(n&4194048){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,tt(e,n)}}var js={readContext:Gi,use:Eo,useCallback:po,useContext:po,useEffect:po,useImperativeHandle:po,useLayoutEffect:po,useInsertionEffect:po,useMemo:po,useReducer:po,useRef:po,useState:po,useDebugValue:po,useDeferredValue:po,useTransition:po,useSyncExternalStore:po,useId:po,useHostTransitionStatus:po,useFormState:po,useActionState:po,useOptimistic:po,useMemoCache:po,useCacheRefresh:po};js.useEffectEvent=po;var Ms={readContext:Gi,use:Eo,useCallback:function(e,t){return So().memoizedState=[e,t===void 0?null:t],e},useContext:Gi,useEffect:ns,useImperativeHandle:function(e,t,n){n=n==null?null:n.concat([e]),es(4194308,4,cs.bind(null,t,e),n)},useLayoutEffect:function(e,t){return es(4194308,4,e,t)},useInsertionEffect:function(e,t){es(4,2,e,t)},useMemo:function(e,t){var n=So();t=t===void 0?null:t;var r=e();if(so){Re(!0);try{e()}finally{Re(!1)}}return n.memoizedState=[r,t],r},useReducer:function(e,t,n){var r=So();if(n!==void 0){var i=n(t);if(so){Re(!0);try{n(t)}finally{Re(!1)}}}else i=t;return r.memoizedState=r.baseState=i,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:i},r.queue=e,e=e.dispatch=ws.bind(null,X,e),[r.memoizedState,e]},useRef:function(e){var t=So();return e={current:e},t.memoizedState=e},useState:function(e){e=Ro(e);var t=e.queue,n=Ts.bind(null,X,t);return t.dispatch=n,[e.memoizedState,n]},useDebugValue:us,useDeferredValue:function(e,t){return ps(So(),e,t)},useTransition:function(){var e=Ro(!1);return e=hs.bind(null,X,e.queue,!0,!1),So().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,t,n){var r=X,i=So();if(Y){if(n===void 0)throw Error(a(407));n=n()}else{if(n=t(),Pl===null)throw Error(a(349));Il&127||No(r,t,n)}i.memoizedState=n;var o={value:n,getSnapshot:t};return i.queue=o,ns(Fo.bind(null,r,o,e),[e]),r.flags|=2048,Qo(9,{destroy:void 0},Po.bind(null,r,o,n,t),null),n},useId:function(){var e=So(),t=Pl.identifierPrefix;if(Y){var n=_i,r=gi;n=(r&~(1<<32-ze(r)-1)).toString(32)+n,t=`_`+t+`R_`+n,n=co++,0<n&&(t+=`H`+n.toString(32)),t+=`_`}else n=fo++,t=`_`+t+`r_`+n.toString(32)+`_`;return e.memoizedState=t},useHostTransitionStatus:bs,useFormState:qo,useActionState:qo,useOptimistic:function(e){var t=So();t.memoizedState=t.baseState=e;var n={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return t.queue=n,t=Ds.bind(null,X,!0,n),n.dispatch=t,[e,t]},useMemoCache:Do,useCacheRefresh:function(){return So().memoizedState=Cs.bind(null,X)},useEffectEvent:function(e){var t=So(),n={impl:e};return t.memoizedState=n,function(){if(Nl&2)throw Error(a(440));return n.impl.apply(void 0,arguments)}}},Ns={readContext:Gi,use:Eo,useCallback:ds,useContext:Gi,useEffect:rs,useImperativeHandle:ls,useInsertionEffect:os,useLayoutEffect:ss,useMemo:fs,useReducer:ko,useRef:$o,useState:function(){return ko(Oo)},useDebugValue:us,useDeferredValue:function(e,t){return ms(Co(),ro.memoizedState,e,t)},useTransition:function(){var e=ko(Oo)[0],t=Co().memoizedState;return[typeof e==`boolean`?e:To(e),t]},useSyncExternalStore:Mo,useId:xs,useHostTransitionStatus:bs,useFormState:Jo,useActionState:Jo,useOptimistic:function(e,t){return zo(Co(),ro,e,t)},useMemoCache:Do,useCacheRefresh:Ss};Ns.useEffectEvent=as;var Ps={readContext:Gi,use:Eo,useCallback:ds,useContext:Gi,useEffect:rs,useImperativeHandle:ls,useInsertionEffect:os,useLayoutEffect:ss,useMemo:fs,useReducer:jo,useRef:$o,useState:function(){return jo(Oo)},useDebugValue:us,useDeferredValue:function(e,t){var n=Co();return ro===null?ps(n,e,t):ms(n,ro.memoizedState,e,t)},useTransition:function(){var e=jo(Oo)[0],t=Co().memoizedState;return[typeof e==`boolean`?e:To(e),t]},useSyncExternalStore:Mo,useId:xs,useHostTransitionStatus:bs,useFormState:Zo,useActionState:Zo,useOptimistic:function(e,t){var n=Co();return ro===null?(n.baseState=e,[e,n.queue.dispatch]):zo(n,ro,e,t)},useMemoCache:Do,useCacheRefresh:Ss};Ps.useEffectEvent=as;function Fs(e,t,n,r){t=e.memoizedState,n=n(r,t),n=n==null?t:p({},t,n),e.memoizedState=n,e.lanes===0&&(e.updateQueue.baseState=n)}var Is={enqueueSetState:function(e,t,n){e=e._reactInternals;var r=fu(),i=Na(r);i.payload=t,n!=null&&(i.callback=n),t=Pa(e,i,r),t!==null&&(mu(t,e,r),Fa(t,e,r))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=fu(),i=Na(r);i.tag=1,i.payload=t,n!=null&&(i.callback=n),t=Pa(e,i,r),t!==null&&(mu(t,e,r),Fa(t,e,r))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=fu(),r=Na(n);r.tag=2,t!=null&&(r.callback=t),t=Pa(e,r,n),t!==null&&(mu(t,e,n),Fa(t,e,n))}};function Ls(e,t,n,r,i,a,o){return e=e.stateNode,typeof e.shouldComponentUpdate==`function`?e.shouldComponentUpdate(r,a,o):t.prototype&&t.prototype.isPureReactComponent?!hr(n,r)||!hr(i,a):!0}function Rs(e,t,n,r){e=t.state,typeof t.componentWillReceiveProps==`function`&&t.componentWillReceiveProps(n,r),typeof t.UNSAFE_componentWillReceiveProps==`function`&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&Is.enqueueReplaceState(t,t.state,null)}function zs(e,t){var n=t;if(`ref`in t)for(var r in n={},t)r!==`ref`&&(n[r]=t[r]);if(e=e.defaultProps)for(var i in n===t&&(n=p({},n)),e)n[i]===void 0&&(n[i]=e[i]);return n}function Bs(e){Hr(e)}function Vs(e){console.error(e)}function Hs(e){Hr(e)}function Us(e,t){try{var n=e.onUncaughtError;n(t.value,{componentStack:t.stack})}catch(e){setTimeout(function(){throw e})}}function Ws(e,t,n){try{var r=e.onCaughtError;r(n.value,{componentStack:n.stack,errorBoundary:t.tag===1?t.stateNode:null})}catch(e){setTimeout(function(){throw e})}}function Gs(e,t,n){return n=Na(n),n.tag=3,n.payload={element:null},n.callback=function(){Us(e,t)},n}function Ks(e){return e=Na(e),e.tag=3,e}function qs(e,t,n,r){var i=n.type.getDerivedStateFromError;if(typeof i==`function`){var a=r.value;e.payload=function(){return i(a)},e.callback=function(){Ws(t,n,r)}}var o=n.stateNode;o!==null&&typeof o.componentDidCatch==`function`&&(e.callback=function(){Ws(t,n,r),typeof i!=`function`&&(nu===null?nu=new Set([this]):nu.add(this));var e=r.stack;this.componentDidCatch(r.value,{componentStack:e===null?``:e})})}function Js(e,t,n,r,i){if(n.flags|=32768,typeof r==`object`&&r&&typeof r.then==`function`){if(t=n.alternate,t!==null&&Hi(t,n,i,!0),n=qa.current,n!==null){switch(n.tag){case 31:case 13:return Ja===null?Eu():n.alternate===null&&Ul===0&&(Ul=3),n.flags&=-257,n.flags|=65536,n.lanes=i,r===ha?n.flags|=16384:(t=n.updateQueue,t===null?n.updateQueue=new Set([r]):t.add(r),Gu(e,r,i)),!1;case 22:return n.flags|=65536,r===ha?n.flags|=16384:(t=n.updateQueue,t===null?(t={transitions:null,markerInstances:null,retryQueue:new Set([r])},n.updateQueue=t):(n=t.retryQueue,n===null?t.retryQueue=new Set([r]):n.add(r)),Gu(e,r,i)),!1}throw Error(a(435,n.tag))}return Gu(e,r,i),Eu(),!1}if(Y)return t=qa.current,t===null?(r!==Di&&(t=Error(a(423),{cause:r}),Pi(ci(t,n))),e=e.current.alternate,e.flags|=65536,i&=-i,e.lanes|=i,r=ci(r,n),i=Gs(e.stateNode,r,i),Ia(e,i),Ul!==4&&(Ul=2)):(!(t.flags&65536)&&(t.flags|=256),t.flags|=65536,t.lanes=i,r!==Di&&(e=Error(a(422),{cause:r}),Pi(ci(e,n)))),!1;var o=Error(a(520),{cause:r});if(o=ci(o,n),Yl===null?Yl=[o]:Yl.push(o),Ul!==4&&(Ul=2),t===null)return!0;r=ci(r,n),n=t;do{switch(n.tag){case 3:return n.flags|=65536,e=i&-i,n.lanes|=e,e=Gs(n.stateNode,r,e),Ia(n,e),!1;case 1:if(t=n.type,o=n.stateNode,!(n.flags&128)&&(typeof t.getDerivedStateFromError==`function`||o!==null&&typeof o.componentDidCatch==`function`&&(nu===null||!nu.has(o))))return n.flags|=65536,i&=-i,n.lanes|=i,i=Ks(i),qs(i,e,n,r),Ia(n,i),!1}n=n.return}while(n!==null);return!1}var Ys=Error(a(461)),Xs=!1;function Zs(e,t,n,r){t.child=e===null?ka(t,null,n,r):Oa(t,e.child,n,r)}function Qs(e,t,n,r,i){n=n.render;var a=t.ref;if(`ref`in r){var o={};for(var s in r)s!==`ref`&&(o[s]=r[s])}else o=r;return Wi(t),r=ho(e,t,n,o,a,i),s=yo(),e!==null&&!Xs?(bo(e,t,i),Sc(e,t,i)):(Y&&s&&bi(t),t.flags|=1,Zs(e,t,r,i),t.child)}function $s(e,t,n,r,i){if(e===null){var a=n.type;return typeof a==`function`&&!$r(a)&&a.defaultProps===void 0&&n.compare===null?(t.tag=15,t.type=a,ec(e,t,a,r,i)):(e=ni(n.type,null,r,t,t.mode,i),e.ref=t.ref,e.return=t,t.child=e)}if(a=e.child,!Cc(e,i)){var o=a.memoizedProps;if(n=n.compare,n=n===null?hr:n,n(o,r)&&e.ref===t.ref)return Sc(e,t,i)}return t.flags|=1,e=ei(a,r),e.ref=t.ref,e.return=t,t.child=e}function ec(e,t,n,r,i){if(e!==null){var a=e.memoizedProps;if(hr(a,r)&&e.ref===t.ref)if(Xs=!1,t.pendingProps=r=a,Cc(e,i))e.flags&131072&&(Xs=!0);else return t.lanes=e.lanes,Sc(e,t,i)}return cc(e,t,n,r,i)}function tc(e,t,n,r){var i=r.children,a=e===null?null:e.memoizedState;if(e===null&&t.stateNode===null&&(t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),r.mode===`hidden`){if(t.flags&128){if(a=a===null?n:a.baseLanes|n,e!==null){for(r=t.child=e.child,i=0;r!==null;)i=i|r.lanes|r.childLanes,r=r.sibling;r=i&~a}else r=0,t.child=null;return rc(e,t,a,n,r)}if(n&536870912)t.memoizedState={baseLanes:0,cachePool:null},e!==null&&ua(t,a===null?null:a.cachePool),a===null?Ga():Wa(t,a),Za(t);else return r=t.lanes=536870912,rc(e,t,a===null?n:a.baseLanes|n,n,r)}else a===null?(e!==null&&ua(t,null),Ga(),Qa(t)):(ua(t,a.cachePool),Wa(t,a),Qa(t),t.memoizedState=null);return Zs(e,t,i,n),t.child}function nc(e,t){return e!==null&&e.tag===22||t.stateNode!==null||(t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),t.sibling}function rc(e,t,n,r,i){var a=la();return a=a===null?null:{parent:Zi._currentValue,pool:a},t.memoizedState={baseLanes:n,cachePool:a},e!==null&&ua(t,null),Ga(),Za(t),e!==null&&Hi(e,t,r,!0),t.childLanes=i,null}function ic(e,t){return t=_c({mode:t.mode,children:t.children},e.mode),t.ref=e.ref,e.child=t,t.return=e,t}function ac(e,t,n){return Oa(t,e.child,null,n),e=ic(t,t.pendingProps),e.flags|=2,$a(t),t.memoizedState=null,e}function oc(e,t,n){var r=t.pendingProps,i=(t.flags&128)!=0;if(t.flags&=-129,e===null){if(Y){if(r.mode===`hidden`)return e=ic(t,r),t.lanes=536870912,nc(null,e);if(Xa(t),(e=wi)?(e=of(e,Ei),e=e!==null&&e.data===`&`?e:null,e!==null&&(t.memoizedState={dehydrated:e,treeContext:hi===null?null:{id:gi,overflow:_i},retryLane:536870912,hydrationErrors:null},n=ai(e),n.return=t,t.child=n,Ci=t,wi=null)):e=null,e===null)throw Oi(t);return t.lanes=536870912,null}return ic(t,r)}var o=e.memoizedState;if(o!==null){var s=o.dehydrated;if(Xa(t),i)if(t.flags&256)t.flags&=-257,t=ac(e,t,n);else if(t.memoizedState!==null)t.child=e.child,t.flags|=128,t=null;else throw Error(a(558));else if(Xs||Hi(e,t,n,!1),i=(n&e.childLanes)!==0,Xs||i){if(r=Pl,r!==null&&(s=I(r,n),s!==0&&s!==o.retryLane))throw o.retryLane=s,Yr(e,s),mu(r,e,s),Ys;Eu(),t=ac(e,t,n)}else e=o.treeContext,wi=uf(s.nextSibling),Ci=t,Y=!0,Ti=null,Ei=!1,e!==null&&Si(t,e),t=ic(t,r),t.flags|=4096;return t}return e=ei(e.child,{mode:r.mode,children:r.children}),e.ref=t.ref,t.child=e,e.return=t,e}function sc(e,t){var n=t.ref;if(n===null)e!==null&&e.ref!==null&&(t.flags|=4194816);else{if(typeof n!=`function`&&typeof n!=`object`)throw Error(a(284));(e===null||e.ref!==n)&&(t.flags|=4194816)}}function cc(e,t,n,r,i){return Wi(t),n=ho(e,t,n,r,void 0,i),r=yo(),e!==null&&!Xs?(bo(e,t,i),Sc(e,t,i)):(Y&&r&&bi(t),t.flags|=1,Zs(e,t,n,i),t.child)}function lc(e,t,n,r,i,a){return Wi(t),t.updateQueue=null,n=_o(t,r,n,i),go(e),r=yo(),e!==null&&!Xs?(bo(e,t,a),Sc(e,t,a)):(Y&&r&&bi(t),t.flags|=1,Zs(e,t,n,a),t.child)}function uc(e,t,n,r,i){if(Wi(t),t.stateNode===null){var a=Xr,o=n.contextType;typeof o==`object`&&o&&(a=Gi(o)),a=new n(r,a),t.memoizedState=a.state!==null&&a.state!==void 0?a.state:null,a.updater=Is,t.stateNode=a,a._reactInternals=t,a=t.stateNode,a.props=r,a.state=t.memoizedState,a.refs={},ja(t),o=n.contextType,a.context=typeof o==`object`&&o?Gi(o):Xr,a.state=t.memoizedState,o=n.getDerivedStateFromProps,typeof o==`function`&&(Fs(t,n,o,r),a.state=t.memoizedState),typeof n.getDerivedStateFromProps==`function`||typeof a.getSnapshotBeforeUpdate==`function`||typeof a.UNSAFE_componentWillMount!=`function`&&typeof a.componentWillMount!=`function`||(o=a.state,typeof a.componentWillMount==`function`&&a.componentWillMount(),typeof a.UNSAFE_componentWillMount==`function`&&a.UNSAFE_componentWillMount(),o!==a.state&&Is.enqueueReplaceState(a,a.state,null),za(t,r,a,i),Ra(),a.state=t.memoizedState),typeof a.componentDidMount==`function`&&(t.flags|=4194308),r=!0}else if(e===null){a=t.stateNode;var s=t.memoizedProps,c=zs(n,s);a.props=c;var l=a.context,u=n.contextType;o=Xr,typeof u==`object`&&u&&(o=Gi(u));var d=n.getDerivedStateFromProps;u=typeof d==`function`||typeof a.getSnapshotBeforeUpdate==`function`,s=t.pendingProps!==s,u||typeof a.UNSAFE_componentWillReceiveProps!=`function`&&typeof a.componentWillReceiveProps!=`function`||(s||l!==o)&&Rs(t,a,r,o),Aa=!1;var f=t.memoizedState;a.state=f,za(t,r,a,i),Ra(),l=t.memoizedState,s||f!==l||Aa?(typeof d==`function`&&(Fs(t,n,d,r),l=t.memoizedState),(c=Aa||Ls(t,n,c,r,f,l,o))?(u||typeof a.UNSAFE_componentWillMount!=`function`&&typeof a.componentWillMount!=`function`||(typeof a.componentWillMount==`function`&&a.componentWillMount(),typeof a.UNSAFE_componentWillMount==`function`&&a.UNSAFE_componentWillMount()),typeof a.componentDidMount==`function`&&(t.flags|=4194308)):(typeof a.componentDidMount==`function`&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=l),a.props=r,a.state=l,a.context=o,r=c):(typeof a.componentDidMount==`function`&&(t.flags|=4194308),r=!1)}else{a=t.stateNode,Ma(e,t),o=t.memoizedProps,u=zs(n,o),a.props=u,d=t.pendingProps,f=a.context,l=n.contextType,c=Xr,typeof l==`object`&&l&&(c=Gi(l)),s=n.getDerivedStateFromProps,(l=typeof s==`function`||typeof a.getSnapshotBeforeUpdate==`function`)||typeof a.UNSAFE_componentWillReceiveProps!=`function`&&typeof a.componentWillReceiveProps!=`function`||(o!==d||f!==c)&&Rs(t,a,r,c),Aa=!1,f=t.memoizedState,a.state=f,za(t,r,a,i),Ra();var p=t.memoizedState;o!==d||f!==p||Aa||e!==null&&e.dependencies!==null&&Ui(e.dependencies)?(typeof s==`function`&&(Fs(t,n,s,r),p=t.memoizedState),(u=Aa||Ls(t,n,u,r,f,p,c)||e!==null&&e.dependencies!==null&&Ui(e.dependencies))?(l||typeof a.UNSAFE_componentWillUpdate!=`function`&&typeof a.componentWillUpdate!=`function`||(typeof a.componentWillUpdate==`function`&&a.componentWillUpdate(r,p,c),typeof a.UNSAFE_componentWillUpdate==`function`&&a.UNSAFE_componentWillUpdate(r,p,c)),typeof a.componentDidUpdate==`function`&&(t.flags|=4),typeof a.getSnapshotBeforeUpdate==`function`&&(t.flags|=1024)):(typeof a.componentDidUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),typeof a.getSnapshotBeforeUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=p),a.props=r,a.state=p,a.context=c,r=u):(typeof a.componentDidUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),typeof a.getSnapshotBeforeUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),r=!1)}return a=r,sc(e,t),r=(t.flags&128)!=0,a||r?(a=t.stateNode,n=r&&typeof n.getDerivedStateFromError!=`function`?null:a.render(),t.flags|=1,e!==null&&r?(t.child=Oa(t,e.child,null,i),t.child=Oa(t,null,n,i)):Zs(e,t,n,i),t.memoizedState=a.state,e=t.child):e=Sc(e,t,i),e}function dc(e,t,n,r){return Mi(),t.flags|=256,Zs(e,t,n,r),t.child}var fc={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function pc(e){return{baseLanes:e,cachePool:da()}}function mc(e,t,n){return e=e===null?0:e.childLanes&~n,t&&(e|=ql),e}function hc(e,t,n){var r=t.pendingProps,i=!1,o=(t.flags&128)!=0,s;if((s=o)||(s=e!==null&&e.memoizedState===null?!1:(eo.current&2)!=0),s&&(i=!0,t.flags&=-129),s=(t.flags&32)!=0,t.flags&=-33,e===null){if(Y){if(i?Ya(t):Qa(t),(e=wi)?(e=of(e,Ei),e=e!==null&&e.data!==`&`?e:null,e!==null&&(t.memoizedState={dehydrated:e,treeContext:hi===null?null:{id:gi,overflow:_i},retryLane:536870912,hydrationErrors:null},n=ai(e),n.return=t,t.child=n,Ci=t,wi=null)):e=null,e===null)throw Oi(t);return cf(e)?t.lanes=32:t.lanes=536870912,null}var c=r.children;return r=r.fallback,i?(Qa(t),i=t.mode,c=_c({mode:`hidden`,children:c},i),r=ri(r,i,n,null),c.return=t,r.return=t,c.sibling=r,t.child=c,r=t.child,r.memoizedState=pc(n),r.childLanes=mc(e,s,n),t.memoizedState=fc,nc(null,r)):(Ya(t),gc(t,c))}var l=e.memoizedState;if(l!==null&&(c=l.dehydrated,c!==null)){if(o)t.flags&256?(Ya(t),t.flags&=-257,t=vc(e,t,n)):t.memoizedState===null?(Qa(t),c=r.fallback,i=t.mode,r=_c({mode:`visible`,children:r.children},i),c=ri(c,i,n,null),c.flags|=2,r.return=t,c.return=t,r.sibling=c,t.child=r,Oa(t,e.child,null,n),r=t.child,r.memoizedState=pc(n),r.childLanes=mc(e,s,n),t.memoizedState=fc,t=nc(null,r)):(Qa(t),t.child=e.child,t.flags|=128,t=null);else if(Ya(t),cf(c)){if(s=c.nextSibling&&c.nextSibling.dataset,s)var u=s.dgst;s=u,r=Error(a(419)),r.stack=``,r.digest=s,Pi({value:r,source:null,stack:null}),t=vc(e,t,n)}else if(Xs||Hi(e,t,n,!1),s=(n&e.childLanes)!==0,Xs||s){if(s=Pl,s!==null&&(r=I(s,n),r!==0&&r!==l.retryLane))throw l.retryLane=r,Yr(e,r),mu(s,e,r),Ys;sf(c)||Eu(),t=vc(e,t,n)}else sf(c)?(t.flags|=192,t.child=e.child,t=null):(e=l.treeContext,wi=uf(c.nextSibling),Ci=t,Y=!0,Ti=null,Ei=!1,e!==null&&Si(t,e),t=gc(t,r.children),t.flags|=4096);return t}return i?(Qa(t),c=r.fallback,i=t.mode,l=e.child,u=l.sibling,r=ei(l,{mode:`hidden`,children:r.children}),r.subtreeFlags=l.subtreeFlags&65011712,u===null?(c=ri(c,i,n,null),c.flags|=2):c=ei(u,c),c.return=t,r.return=t,r.sibling=c,t.child=r,nc(null,r),r=t.child,c=e.child.memoizedState,c===null?c=pc(n):(i=c.cachePool,i===null?i=da():(l=Zi._currentValue,i=i.parent===l?i:{parent:l,pool:l}),c={baseLanes:c.baseLanes|n,cachePool:i}),r.memoizedState=c,r.childLanes=mc(e,s,n),t.memoizedState=fc,nc(e.child,r)):(Ya(t),n=e.child,e=n.sibling,n=ei(n,{mode:`visible`,children:r.children}),n.return=t,n.sibling=null,e!==null&&(s=t.deletions,s===null?(t.deletions=[e],t.flags|=16):s.push(e)),t.child=n,t.memoizedState=null,n)}function gc(e,t){return t=_c({mode:`visible`,children:t},e.mode),t.return=e,e.child=t}function _c(e,t){return e=Qr(22,e,null,t),e.lanes=0,e}function vc(e,t,n){return Oa(t,e.child,null,n),e=gc(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function yc(e,t,n){e.lanes|=t;var r=e.alternate;r!==null&&(r.lanes|=t),Bi(e.return,t,n)}function bc(e,t,n,r,i,a){var o=e.memoizedState;o===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:i,treeForkCount:a}:(o.isBackwards=t,o.rendering=null,o.renderingStartTime=0,o.last=r,o.tail=n,o.tailMode=i,o.treeForkCount=a)}function xc(e,t,n){var r=t.pendingProps,i=r.revealOrder,a=r.tail;r=r.children;var o=eo.current,s=(o&2)!=0;if(s?(o=o&1|2,t.flags|=128):o&=1,N(eo,o),Zs(e,t,r,n),r=Y?fi:0,!s&&e!==null&&e.flags&128)a:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&yc(e,n,t);else if(e.tag===19)yc(e,n,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break a;for(;e.sibling===null;){if(e.return===null||e.return===t)break a;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(i){case`forwards`:for(n=t.child,i=null;n!==null;)e=n.alternate,e!==null&&to(e)===null&&(i=n),n=n.sibling;n=i,n===null?(i=t.child,t.child=null):(i=n.sibling,n.sibling=null),bc(t,!1,i,n,a,r);break;case`backwards`:case`unstable_legacy-backwards`:for(n=null,i=t.child,t.child=null;i!==null;){if(e=i.alternate,e!==null&&to(e)===null){t.child=i;break}e=i.sibling,i.sibling=n,n=i,i=e}bc(t,!0,n,null,a,r);break;case`together`:bc(t,!1,null,null,void 0,r);break;default:t.memoizedState=null}return t.child}function Sc(e,t,n){if(e!==null&&(t.dependencies=e.dependencies),Wl|=t.lanes,(n&t.childLanes)===0)if(e!==null){if(Hi(e,t,n,!1),(n&t.childLanes)===0)return null}else return null;if(e!==null&&t.child!==e.child)throw Error(a(153));if(t.child!==null){for(e=t.child,n=ei(e,e.pendingProps),t.child=n,n.return=t;e.sibling!==null;)e=e.sibling,n=n.sibling=ei(e,e.pendingProps),n.return=t;n.sibling=null}return t.child}function Cc(e,t){return(e.lanes&t)===0?(e=e.dependencies,!!(e!==null&&Ui(e))):!0}function wc(e,t,n){switch(t.tag){case 3:P(t,t.stateNode.containerInfo),Ri(t,Zi,e.memoizedState.cache),Mi();break;case 27:case 5:me(t);break;case 4:P(t,t.stateNode.containerInfo);break;case 10:Ri(t,t.type,t.memoizedProps.value);break;case 31:if(t.memoizedState!==null)return t.flags|=128,Xa(t),null;break;case 13:var r=t.memoizedState;if(r!==null)return r.dehydrated===null?(n&t.child.childLanes)===0?(Ya(t),e=Sc(e,t,n),e===null?null:e.sibling):hc(e,t,n):(Ya(t),t.flags|=128,null);Ya(t);break;case 19:var i=(e.flags&128)!=0;if(r=(n&t.childLanes)!==0,r||=(Hi(e,t,n,!1),(n&t.childLanes)!==0),i){if(r)return xc(e,t,n);t.flags|=128}if(i=t.memoizedState,i!==null&&(i.rendering=null,i.tail=null,i.lastEffect=null),N(eo,eo.current),r)break;return null;case 22:return t.lanes=0,tc(e,t,n,t.pendingProps);case 24:Ri(t,Zi,e.memoizedState.cache)}return Sc(e,t,n)}function Tc(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps)Xs=!0;else{if(!Cc(e,n)&&!(t.flags&128))return Xs=!1,wc(e,t,n);Xs=!!(e.flags&131072)}else Xs=!1,Y&&t.flags&1048576&&yi(t,fi,t.index);switch(t.lanes=0,t.tag){case 16:a:{var r=t.pendingProps;if(e=va(t.elementType),t.type=e,typeof e==`function`)$r(e)?(r=zs(e,r),t.tag=1,t=uc(null,t,e,r,n)):(t.tag=0,t=cc(null,t,e,r,n));else{if(e!=null){var i=e.$$typeof;if(i===S){t.tag=11,t=Qs(null,t,e,r,n);break a}else if(i===T){t.tag=14,t=$s(null,t,e,r,n);break a}}throw t=te(e)||e,Error(a(306,t,``))}}return t;case 0:return cc(e,t,t.type,t.pendingProps,n);case 1:return r=t.type,i=zs(r,t.pendingProps),uc(e,t,r,i,n);case 3:a:{if(P(t,t.stateNode.containerInfo),e===null)throw Error(a(387));r=t.pendingProps;var o=t.memoizedState;i=o.element,Ma(e,t),za(t,r,null,n);var s=t.memoizedState;if(r=s.cache,Ri(t,Zi,r),r!==o.cache&&Vi(t,[Zi],n,!0),Ra(),r=s.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:s.cache},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){t=dc(e,t,r,n);break a}else if(r!==i){i=ci(Error(a(424)),t),Pi(i),t=dc(e,t,r,n);break a}else{switch(e=t.stateNode.containerInfo,e.nodeType){case 9:e=e.body;break;default:e=e.nodeName===`HTML`?e.ownerDocument.body:e}for(wi=uf(e.firstChild),Ci=t,Y=!0,Ti=null,Ei=!0,n=ka(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling}else{if(Mi(),r===i){t=Sc(e,t,n);break a}Zs(e,t,r,n)}t=t.child}return t;case 26:return sc(e,t),e===null?(n=jf(t.type,null,t.pendingProps,null))?t.memoizedState=n:Y||(n=t.type,e=t.pendingProps,r=Hd(de.current).createElement(n),r[V]=t,r[rt]=e,Id(r,n,e),ft(r),t.stateNode=r):t.memoizedState=jf(t.type,e.memoizedProps,t.pendingProps,e.memoizedState),null;case 27:return me(t),e===null&&Y&&(r=t.stateNode=mf(t.type,t.pendingProps,de.current),Ci=t,Ei=!0,i=wi,$d(t.type)?(df=i,wi=uf(r.firstChild)):wi=i),Zs(e,t,t.pendingProps.children,n),sc(e,t),e===null&&(t.flags|=4194304),t.child;case 5:return e===null&&Y&&((i=r=wi)&&(r=rf(r,t.type,t.pendingProps,Ei),r===null?i=!1:(t.stateNode=r,Ci=t,wi=uf(r.firstChild),Ei=!1,i=!0)),i||Oi(t)),me(t),i=t.type,o=t.pendingProps,s=e===null?null:e.memoizedProps,r=o.children,Gd(i,o)?r=null:s!==null&&Gd(i,s)&&(t.flags|=32),t.memoizedState!==null&&(i=ho(e,t,vo,null,null,n),ep._currentValue=i),sc(e,t),Zs(e,t,r,n),t.child;case 6:return e===null&&Y&&((e=n=wi)&&(n=af(n,t.pendingProps,Ei),n===null?e=!1:(t.stateNode=n,Ci=t,wi=null,e=!0)),e||Oi(t)),null;case 13:return hc(e,t,n);case 4:return P(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=Oa(t,null,r,n):Zs(e,t,r,n),t.child;case 11:return Qs(e,t,t.type,t.pendingProps,n);case 7:return Zs(e,t,t.pendingProps,n),t.child;case 8:return Zs(e,t,t.pendingProps.children,n),t.child;case 12:return Zs(e,t,t.pendingProps.children,n),t.child;case 10:return r=t.pendingProps,Ri(t,t.type,r.value),Zs(e,t,r.children,n),t.child;case 9:return i=t.type._context,r=t.pendingProps.children,Wi(t),i=Gi(i),r=r(i),t.flags|=1,Zs(e,t,r,n),t.child;case 14:return $s(e,t,t.type,t.pendingProps,n);case 15:return ec(e,t,t.type,t.pendingProps,n);case 19:return xc(e,t,n);case 31:return oc(e,t,n);case 22:return tc(e,t,n,t.pendingProps);case 24:return Wi(t),r=Gi(Zi),e===null?(i=la(),i===null&&(i=Pl,o=Qi(),i.pooledCache=o,o.refCount++,o!==null&&(i.pooledCacheLanes|=n),i=o),t.memoizedState={parent:r,cache:i},ja(t),Ri(t,Zi,i)):((e.lanes&n)!==0&&(Ma(e,t),za(t,null,null,n),Ra()),i=e.memoizedState,o=t.memoizedState,i.parent===r?(r=o.cache,Ri(t,Zi,r),r!==i.cache&&Vi(t,[Zi],n,!0)):(i={parent:r,cache:r},t.memoizedState=i,t.lanes===0&&(t.memoizedState=t.updateQueue.baseState=i),Ri(t,Zi,r))),Zs(e,t,t.pendingProps.children,n),t.child;case 29:throw t.pendingProps}throw Error(a(156,t.tag))}function Ec(e){e.flags|=4}function Dc(e,t,n,r,i){if((t=(e.mode&32)!=0)&&(t=!1),t){if(e.flags|=16777216,(i&335544128)===i)if(e.stateNode.complete)e.flags|=8192;else if(Cu())e.flags|=8192;else throw ya=ha,pa}else e.flags&=-16777217}function Oc(e,t){if(t.type!==`stylesheet`||t.state.loading&4)e.flags&=-16777217;else if(e.flags|=16777216,!Kf(t))if(Cu())e.flags|=8192;else throw ya=ha,pa}function kc(e,t){t!==null&&(e.flags|=4),e.flags&16384&&(t=e.tag===22?536870912:Xe(),e.lanes|=t,Jl|=t)}function Ac(e,t){if(!Y)switch(e.tailMode){case`hidden`:t=e.tail;for(var n=null;t!==null;)t.alternate!==null&&(n=t),t=t.sibling;n===null?e.tail=null:n.sibling=null;break;case`collapsed`:n=e.tail;for(var r=null;n!==null;)n.alternate!==null&&(r=n),n=n.sibling;r===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:r.sibling=null}}function jc(e){var t=e.alternate!==null&&e.alternate.child===e.child,n=0,r=0;if(t)for(var i=e.child;i!==null;)n|=i.lanes|i.childLanes,r|=i.subtreeFlags&65011712,r|=i.flags&65011712,i.return=e,i=i.sibling;else for(i=e.child;i!==null;)n|=i.lanes|i.childLanes,r|=i.subtreeFlags,r|=i.flags,i.return=e,i=i.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function Mc(e,t,n){var r=t.pendingProps;switch(xi(t),t.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return jc(t),null;case 1:return jc(t),null;case 3:return n=t.stateNode,r=null,e!==null&&(r=e.memoizedState.cache),t.memoizedState.cache!==r&&(t.flags|=2048),zi(Zi),pe(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),(e===null||e.child===null)&&(ji(t)?Ec(t):e===null||e.memoizedState.isDehydrated&&!(t.flags&256)||(t.flags|=1024,Ni())),jc(t),null;case 26:var i=t.type,o=t.memoizedState;return e===null?(Ec(t),o===null?(jc(t),Dc(t,i,null,r,n)):(jc(t),Oc(t,o))):o?o===e.memoizedState?(jc(t),t.flags&=-16777217):(Ec(t),jc(t),Oc(t,o)):(e=e.memoizedProps,e!==r&&Ec(t),jc(t),Dc(t,i,e,r,n)),null;case 27:if(he(t),n=de.current,i=t.type,e!==null&&t.stateNode!=null)e.memoizedProps!==r&&Ec(t);else{if(!r){if(t.stateNode===null)throw Error(a(166));return jc(t),null}e=le.current,ji(t)?ki(t,e):(e=mf(i,r,n),t.stateNode=e,Ec(t))}return jc(t),null;case 5:if(he(t),i=t.type,e!==null&&t.stateNode!=null)e.memoizedProps!==r&&Ec(t);else{if(!r){if(t.stateNode===null)throw Error(a(166));return jc(t),null}if(o=le.current,ji(t))ki(t,o);else{var s=Hd(de.current);switch(o){case 1:o=s.createElementNS(`http://www.w3.org/2000/svg`,i);break;case 2:o=s.createElementNS(`http://www.w3.org/1998/Math/MathML`,i);break;default:switch(i){case`svg`:o=s.createElementNS(`http://www.w3.org/2000/svg`,i);break;case`math`:o=s.createElementNS(`http://www.w3.org/1998/Math/MathML`,i);break;case`script`:o=s.createElement(`div`),o.innerHTML=`<script><\/script>`,o=o.removeChild(o.firstChild);break;case`select`:o=typeof r.is==`string`?s.createElement(`select`,{is:r.is}):s.createElement(`select`),r.multiple?o.multiple=!0:r.size&&(o.size=r.size);break;default:o=typeof r.is==`string`?s.createElement(i,{is:r.is}):s.createElement(i)}}o[V]=t,o[rt]=r;a:for(s=t.child;s!==null;){if(s.tag===5||s.tag===6)o.appendChild(s.stateNode);else if(s.tag!==4&&s.tag!==27&&s.child!==null){s.child.return=s,s=s.child;continue}if(s===t)break a;for(;s.sibling===null;){if(s.return===null||s.return===t)break a;s=s.return}s.sibling.return=s.return,s=s.sibling}t.stateNode=o;a:switch(Id(o,i,r),i){case`button`:case`input`:case`select`:case`textarea`:r=!!r.autoFocus;break a;case`img`:r=!0;break a;default:r=!1}r&&Ec(t)}}return jc(t),Dc(t,t.type,e===null?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&t.stateNode!=null)e.memoizedProps!==r&&Ec(t);else{if(typeof r!=`string`&&t.stateNode===null)throw Error(a(166));if(e=de.current,ji(t)){if(e=t.stateNode,n=t.memoizedProps,r=null,i=Ci,i!==null)switch(i.tag){case 27:case 5:r=i.memoizedProps}e[V]=t,e=!!(e.nodeValue===n||r!==null&&!0===r.suppressHydrationWarning||Nd(e.nodeValue,n)),e||Oi(t,!0)}else e=Hd(e).createTextNode(r),e[V]=t,t.stateNode=e}return jc(t),null;case 31:if(n=t.memoizedState,e===null||e.memoizedState!==null){if(r=ji(t),n!==null){if(e===null){if(!r)throw Error(a(318));if(e=t.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(a(557));e[V]=t}else Mi(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;jc(t),e=!1}else n=Ni(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e)return t.flags&256?($a(t),t):($a(t),null);if(t.flags&128)throw Error(a(558))}return jc(t),null;case 13:if(r=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(i=ji(t),r!==null&&r.dehydrated!==null){if(e===null){if(!i)throw Error(a(318));if(i=t.memoizedState,i=i===null?null:i.dehydrated,!i)throw Error(a(317));i[V]=t}else Mi(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;jc(t),i=!1}else i=Ni(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=i),i=!0;if(!i)return t.flags&256?($a(t),t):($a(t),null)}return $a(t),t.flags&128?(t.lanes=n,t):(n=r!==null,e=e!==null&&e.memoizedState!==null,n&&(r=t.child,i=null,r.alternate!==null&&r.alternate.memoizedState!==null&&r.alternate.memoizedState.cachePool!==null&&(i=r.alternate.memoizedState.cachePool.pool),o=null,r.memoizedState!==null&&r.memoizedState.cachePool!==null&&(o=r.memoizedState.cachePool.pool),o!==i&&(r.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),kc(t,t.updateQueue),jc(t),null);case 4:return pe(),e===null&&Cd(t.stateNode.containerInfo),jc(t),null;case 10:return zi(t.type),jc(t),null;case 19:if(ce(eo),r=t.memoizedState,r===null)return jc(t),null;if(i=(t.flags&128)!=0,o=r.rendering,o===null)if(i)Ac(r,!1);else{if(Ul!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(o=to(e),o!==null){for(t.flags|=128,Ac(r,!1),e=o.updateQueue,t.updateQueue=e,kc(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)ti(n,e),n=n.sibling;return N(eo,eo.current&1|2),Y&&vi(t,r.treeForkCount),t.child}e=e.sibling}r.tail!==null&&Oe()>eu&&(t.flags|=128,i=!0,Ac(r,!1),t.lanes=4194304)}else{if(!i)if(e=to(o),e!==null){if(t.flags|=128,i=!0,e=e.updateQueue,t.updateQueue=e,kc(t,e),Ac(r,!0),r.tail===null&&r.tailMode===`hidden`&&!o.alternate&&!Y)return jc(t),null}else 2*Oe()-r.renderingStartTime>eu&&n!==536870912&&(t.flags|=128,i=!0,Ac(r,!1),t.lanes=4194304);r.isBackwards?(o.sibling=t.child,t.child=o):(e=r.last,e===null?t.child=o:e.sibling=o,r.last=o)}return r.tail===null?(jc(t),null):(e=r.tail,r.rendering=e,r.tail=e.sibling,r.renderingStartTime=Oe(),e.sibling=null,n=eo.current,N(eo,i?n&1|2:n&1),Y&&vi(t,r.treeForkCount),e);case 22:case 23:return $a(t),Ka(),r=t.memoizedState!==null,e===null?r&&(t.flags|=8192):e.memoizedState!==null!==r&&(t.flags|=8192),r?n&536870912&&!(t.flags&128)&&(jc(t),t.subtreeFlags&6&&(t.flags|=8192)):jc(t),n=t.updateQueue,n!==null&&kc(t,n.retryQueue),n=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),r=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(r=t.memoizedState.cachePool.pool),r!==n&&(t.flags|=2048),e!==null&&ce(ca),null;case 24:return n=null,e!==null&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),zi(Zi),jc(t),null;case 25:return null;case 30:return null}throw Error(a(156,t.tag))}function Nc(e,t){switch(xi(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return zi(Zi),pe(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 26:case 27:case 5:return he(t),null;case 31:if(t.memoizedState!==null){if($a(t),t.alternate===null)throw Error(a(340));Mi()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 13:if($a(t),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(a(340));Mi()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return ce(eo),null;case 4:return pe(),null;case 10:return zi(t.type),null;case 22:case 23:return $a(t),Ka(),e!==null&&ce(ca),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 24:return zi(Zi),null;case 25:return null;default:return null}}function Pc(e,t){switch(xi(t),t.tag){case 3:zi(Zi),pe();break;case 26:case 27:case 5:he(t);break;case 4:pe();break;case 31:t.memoizedState!==null&&$a(t);break;case 13:$a(t);break;case 19:ce(eo);break;case 10:zi(t.type);break;case 22:case 23:$a(t),Ka(),e!==null&&ce(ca);break;case 24:zi(Zi)}}function Fc(e,t){try{var n=t.updateQueue,r=n===null?null:n.lastEffect;if(r!==null){var i=r.next;n=i;do{if((n.tag&e)===e){r=void 0;var a=n.create,o=n.inst;r=a(),o.destroy=r}n=n.next}while(n!==i)}}catch(e){Wu(t,t.return,e)}}function Ic(e,t,n){try{var r=t.updateQueue,i=r===null?null:r.lastEffect;if(i!==null){var a=i.next;r=a;do{if((r.tag&e)===e){var o=r.inst,s=o.destroy;if(s!==void 0){o.destroy=void 0,i=t;var c=n,l=s;try{l()}catch(e){Wu(i,c,e)}}}r=r.next}while(r!==a)}}catch(e){Wu(t,t.return,e)}}function Lc(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;try{Va(t,n)}catch(t){Wu(e,e.return,t)}}}function Rc(e,t,n){n.props=zs(e.type,e.memoizedProps),n.state=e.memoizedState;try{n.componentWillUnmount()}catch(n){Wu(e,t,n)}}function zc(e,t){try{var n=e.ref;if(n!==null){switch(e.tag){case 26:case 27:case 5:var r=e.stateNode;break;case 30:r=e.stateNode;break;default:r=e.stateNode}typeof n==`function`?e.refCleanup=n(r):n.current=r}}catch(n){Wu(e,t,n)}}function Bc(e,t){var n=e.ref,r=e.refCleanup;if(n!==null)if(typeof r==`function`)try{r()}catch(n){Wu(e,t,n)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof n==`function`)try{n(null)}catch(n){Wu(e,t,n)}else n.current=null}function Vc(e){var t=e.type,n=e.memoizedProps,r=e.stateNode;try{a:switch(t){case`button`:case`input`:case`select`:case`textarea`:n.autoFocus&&r.focus();break a;case`img`:n.src?r.src=n.src:n.srcSet&&(r.srcset=n.srcSet)}}catch(t){Wu(e,e.return,t)}}function Hc(e,t,n){try{var r=e.stateNode;Ld(r,e.type,n,t),r[rt]=t}catch(t){Wu(e,e.return,t)}}function Uc(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&$d(e.type)||e.tag===4}function Wc(e){a:for(;;){for(;e.sibling===null;){if(e.return===null||Uc(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&$d(e.type)||e.flags&2||e.child===null||e.tag===4)continue a;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Gc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?(n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n).insertBefore(e,t):(t=n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n,t.appendChild(e),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=qt));else if(r!==4&&(r===27&&$d(e.type)&&(n=e.stateNode,t=null),e=e.child,e!==null))for(Gc(e,t,n),e=e.sibling;e!==null;)Gc(e,t,n),e=e.sibling}function Kc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(r===27&&$d(e.type)&&(n=e.stateNode),e=e.child,e!==null))for(Kc(e,t,n),e=e.sibling;e!==null;)Kc(e,t,n),e=e.sibling}function qc(e){var t=e.stateNode,n=e.memoizedProps;try{for(var r=e.type,i=t.attributes;i.length;)t.removeAttributeNode(i[0]);Id(t,r,n),t[V]=e,t[rt]=n}catch(t){Wu(e,e.return,t)}}var Jc=!1,Yc=!1,Xc=!1,Zc=typeof WeakSet==`function`?WeakSet:Set,Z=null;function Qc(e,t){if(e=e.containerInfo,Bd=lp,e=yr(e),br(e)){if(`selectionStart`in e)var n={start:e.selectionStart,end:e.selectionEnd};else a:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var i=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break a}var s=0,c=-1,l=-1,u=0,d=0,f=e,p=null;b:for(;;){for(var m;f!==n||i!==0&&f.nodeType!==3||(c=s+i),f!==o||r!==0&&f.nodeType!==3||(l=s+r),f.nodeType===3&&(s+=f.nodeValue.length),(m=f.firstChild)!==null;)p=f,f=m;for(;;){if(f===e)break b;if(p===n&&++u===i&&(c=s),p===o&&++d===r&&(l=s),(m=f.nextSibling)!==null)break;f=p,p=f.parentNode}f=m}n=c===-1||l===-1?null:{start:c,end:l}}else n=null}n||={start:0,end:0}}else n=null;for(Vd={focusedElem:e,selectionRange:n},lp=!1,Z=t;Z!==null;)if(t=Z,e=t.child,t.subtreeFlags&1028&&e!==null)e.return=t,Z=e;else for(;Z!==null;){switch(t=Z,o=t.alternate,e=t.flags,t.tag){case 0:if(e&4&&(e=t.updateQueue,e=e===null?null:e.events,e!==null))for(n=0;n<e.length;n++)i=e[n],i.ref.impl=i.nextImpl;break;case 11:case 15:break;case 1:if(e&1024&&o!==null){e=void 0,n=t,i=o.memoizedProps,o=o.memoizedState,r=n.stateNode;try{var h=zs(n.type,i);e=r.getSnapshotBeforeUpdate(h,o),r.__reactInternalSnapshotBeforeUpdate=e}catch(e){Wu(n,n.return,e)}}break;case 3:if(e&1024){if(e=t.stateNode.containerInfo,n=e.nodeType,n===9)nf(e);else if(n===1)switch(e.nodeName){case`HEAD`:case`HTML`:case`BODY`:nf(e);break;default:e.textContent=``}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if(e&1024)throw Error(a(163))}if(e=t.sibling,e!==null){e.return=t.return,Z=e;break}Z=t.return}}function $c(e,t,n){var r=n.flags;switch(n.tag){case 0:case 11:case 15:ml(e,n),r&4&&Fc(5,n);break;case 1:if(ml(e,n),r&4)if(e=n.stateNode,t===null)try{e.componentDidMount()}catch(e){Wu(n,n.return,e)}else{var i=zs(n.type,t.memoizedProps);t=t.memoizedState;try{e.componentDidUpdate(i,t,e.__reactInternalSnapshotBeforeUpdate)}catch(e){Wu(n,n.return,e)}}r&64&&Lc(n),r&512&&zc(n,n.return);break;case 3:if(ml(e,n),r&64&&(e=n.updateQueue,e!==null)){if(t=null,n.child!==null)switch(n.child.tag){case 27:case 5:t=n.child.stateNode;break;case 1:t=n.child.stateNode}try{Va(e,t)}catch(e){Wu(n,n.return,e)}}break;case 27:t===null&&r&4&&qc(n);case 26:case 5:ml(e,n),t===null&&r&4&&Vc(n),r&512&&zc(n,n.return);break;case 12:ml(e,n);break;case 31:ml(e,n),r&4&&al(e,n);break;case 13:ml(e,n),r&4&&ol(e,n),r&64&&(e=n.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(n=Ju.bind(null,n),lf(e,n))));break;case 22:if(r=n.memoizedState!==null||Jc,!r){t=t!==null&&t.memoizedState!==null||Yc,i=Jc;var a=Yc;Jc=r,(Yc=t)&&!a?gl(e,n,(n.subtreeFlags&8772)!=0):ml(e,n),Jc=i,Yc=a}break;case 30:break;default:ml(e,n)}}function el(e){var t=e.alternate;t!==null&&(e.alternate=null,el(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&U(t)),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}var tl=null,nl=!1;function rl(e,t,n){for(n=n.child;n!==null;)il(e,t,n),n=n.sibling}function il(e,t,n){if(Le&&typeof Le.onCommitFiberUnmount==`function`)try{Le.onCommitFiberUnmount(F,n)}catch{}switch(n.tag){case 26:Yc||Bc(n,t),rl(e,t,n),n.memoizedState?n.memoizedState.count--:n.stateNode&&(n=n.stateNode,n.parentNode.removeChild(n));break;case 27:Yc||Bc(n,t);var r=tl,i=nl;$d(n.type)&&(tl=n.stateNode,nl=!1),rl(e,t,n),hf(n.stateNode),tl=r,nl=i;break;case 5:Yc||Bc(n,t);case 6:if(r=tl,i=nl,tl=null,rl(e,t,n),tl=r,nl=i,tl!==null)if(nl)try{(tl.nodeType===9?tl.body:tl.nodeName===`HTML`?tl.ownerDocument.body:tl).removeChild(n.stateNode)}catch(e){Wu(n,t,e)}else try{tl.removeChild(n.stateNode)}catch(e){Wu(n,t,e)}break;case 18:tl!==null&&(nl?(e=tl,ef(e.nodeType===9?e.body:e.nodeName===`HTML`?e.ownerDocument.body:e,n.stateNode),Fp(e)):ef(tl,n.stateNode));break;case 4:r=tl,i=nl,tl=n.stateNode.containerInfo,nl=!0,rl(e,t,n),tl=r,nl=i;break;case 0:case 11:case 14:case 15:Ic(2,n,t),Yc||Ic(4,n,t),rl(e,t,n);break;case 1:Yc||(Bc(n,t),r=n.stateNode,typeof r.componentWillUnmount==`function`&&Rc(n,t,r)),rl(e,t,n);break;case 21:rl(e,t,n);break;case 22:Yc=(r=Yc)||n.memoizedState!==null,rl(e,t,n),Yc=r;break;default:rl(e,t,n)}}function al(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{Fp(e)}catch(e){Wu(t,t.return,e)}}}function ol(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{Fp(e)}catch(e){Wu(t,t.return,e)}}function sl(e){switch(e.tag){case 31:case 13:case 19:var t=e.stateNode;return t===null&&(t=e.stateNode=new Zc),t;case 22:return e=e.stateNode,t=e._retryCache,t===null&&(t=e._retryCache=new Zc),t;default:throw Error(a(435,e.tag))}}function cl(e,t){var n=sl(e);t.forEach(function(t){if(!n.has(t)){n.add(t);var r=Yu.bind(null,e,t);t.then(r,r)}})}function ll(e,t){var n=t.deletions;if(n!==null)for(var r=0;r<n.length;r++){var i=n[r],o=e,s=t,c=s;a:for(;c!==null;){switch(c.tag){case 27:if($d(c.type)){tl=c.stateNode,nl=!1;break a}break;case 5:tl=c.stateNode,nl=!1;break a;case 3:case 4:tl=c.stateNode.containerInfo,nl=!0;break a}c=c.return}if(tl===null)throw Error(a(160));il(o,s,i),tl=null,nl=!1,o=i.alternate,o!==null&&(o.return=null),i.return=null}if(t.subtreeFlags&13886)for(t=t.child;t!==null;)dl(t,e),t=t.sibling}var ul=null;function dl(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:ll(t,e),fl(e),r&4&&(Ic(3,e,e.return),Fc(3,e),Ic(5,e,e.return));break;case 1:ll(t,e),fl(e),r&512&&(Yc||n===null||Bc(n,n.return)),r&64&&Jc&&(e=e.updateQueue,e!==null&&(r=e.callbacks,r!==null&&(n=e.shared.hiddenCallbacks,e.shared.hiddenCallbacks=n===null?r:n.concat(r))));break;case 26:var i=ul;if(ll(t,e),fl(e),r&512&&(Yc||n===null||Bc(n,n.return)),r&4){var o=n===null?null:n.memoizedState;if(r=e.memoizedState,n===null)if(r===null)if(e.stateNode===null){a:{r=e.type,n=e.memoizedProps,i=i.ownerDocument||i;b:switch(r){case`title`:o=i.getElementsByTagName(`title`)[0],(!o||o[H]||o[V]||o.namespaceURI===`http://www.w3.org/2000/svg`||o.hasAttribute(`itemprop`))&&(o=i.createElement(r),i.head.insertBefore(o,i.querySelector(`head > title`))),Id(o,r,n),o[V]=e,ft(o),r=o;break a;case`link`:var s=Uf(`link`,`href`,i).get(r+(n.href||``));if(s){for(var c=0;c<s.length;c++)if(o=s[c],o.getAttribute(`href`)===(n.href==null||n.href===``?null:n.href)&&o.getAttribute(`rel`)===(n.rel==null?null:n.rel)&&o.getAttribute(`title`)===(n.title==null?null:n.title)&&o.getAttribute(`crossorigin`)===(n.crossOrigin==null?null:n.crossOrigin)){s.splice(c,1);break b}}o=i.createElement(r),Id(o,r,n),i.head.appendChild(o);break;case`meta`:if(s=Uf(`meta`,`content`,i).get(r+(n.content||``))){for(c=0;c<s.length;c++)if(o=s[c],o.getAttribute(`content`)===(n.content==null?null:``+n.content)&&o.getAttribute(`name`)===(n.name==null?null:n.name)&&o.getAttribute(`property`)===(n.property==null?null:n.property)&&o.getAttribute(`http-equiv`)===(n.httpEquiv==null?null:n.httpEquiv)&&o.getAttribute(`charset`)===(n.charSet==null?null:n.charSet)){s.splice(c,1);break b}}o=i.createElement(r),Id(o,r,n),i.head.appendChild(o);break;default:throw Error(a(468,r))}o[V]=e,ft(o),r=o}e.stateNode=r}else Wf(i,e.type,e.stateNode);else e.stateNode=Rf(i,r,e.memoizedProps);else o===r?r===null&&e.stateNode!==null&&Hc(e,e.memoizedProps,n.memoizedProps):(o===null?n.stateNode!==null&&(n=n.stateNode,n.parentNode.removeChild(n)):o.count--,r===null?Wf(i,e.type,e.stateNode):Rf(i,r,e.memoizedProps))}break;case 27:ll(t,e),fl(e),r&512&&(Yc||n===null||Bc(n,n.return)),n!==null&&r&4&&Hc(e,e.memoizedProps,n.memoizedProps);break;case 5:if(ll(t,e),fl(e),r&512&&(Yc||n===null||Bc(n,n.return)),e.flags&32){i=e.stateNode;try{zt(i,``)}catch(t){Wu(e,e.return,t)}}r&4&&e.stateNode!=null&&(i=e.memoizedProps,Hc(e,i,n===null?i:n.memoizedProps)),r&1024&&(Xc=!0);break;case 6:if(ll(t,e),fl(e),r&4){if(e.stateNode===null)throw Error(a(162));r=e.memoizedProps,n=e.stateNode;try{n.nodeValue=r}catch(t){Wu(e,e.return,t)}}break;case 3:if(Hf=null,i=ul,ul=vf(t.containerInfo),ll(t,e),ul=i,fl(e),r&4&&n!==null&&n.memoizedState.isDehydrated)try{Fp(t.containerInfo)}catch(t){Wu(e,e.return,t)}Xc&&(Xc=!1,pl(e));break;case 4:r=ul,ul=vf(e.stateNode.containerInfo),ll(t,e),fl(e),ul=r;break;case 12:ll(t,e),fl(e);break;case 31:ll(t,e),fl(e),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,cl(e,r)));break;case 13:ll(t,e),fl(e),e.child.flags&8192&&e.memoizedState!==null!=(n!==null&&n.memoizedState!==null)&&(Ql=Oe()),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,cl(e,r)));break;case 22:i=e.memoizedState!==null;var l=n!==null&&n.memoizedState!==null,u=Jc,d=Yc;if(Jc=u||i,Yc=d||l,ll(t,e),Yc=d,Jc=u,fl(e),r&8192)a:for(t=e.stateNode,t._visibility=i?t._visibility&-2:t._visibility|1,i&&(n===null||l||Jc||Yc||hl(e)),n=null,t=e;;){if(t.tag===5||t.tag===26){if(n===null){l=n=t;try{if(o=l.stateNode,i)s=o.style,typeof s.setProperty==`function`?s.setProperty(`display`,`none`,`important`):s.display=`none`;else{c=l.stateNode;var f=l.memoizedProps.style,p=f!=null&&f.hasOwnProperty(`display`)?f.display:null;c.style.display=p==null||typeof p==`boolean`?``:(``+p).trim()}}catch(e){Wu(l,l.return,e)}}}else if(t.tag===6){if(n===null){l=t;try{l.stateNode.nodeValue=i?``:l.memoizedProps}catch(e){Wu(l,l.return,e)}}}else if(t.tag===18){if(n===null){l=t;try{var m=l.stateNode;i?tf(m,!0):tf(l.stateNode,!1)}catch(e){Wu(l,l.return,e)}}}else if((t.tag!==22&&t.tag!==23||t.memoizedState===null||t===e)&&t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break a;for(;t.sibling===null;){if(t.return===null||t.return===e)break a;n===t&&(n=null),t=t.return}n===t&&(n=null),t.sibling.return=t.return,t=t.sibling}r&4&&(r=e.updateQueue,r!==null&&(n=r.retryQueue,n!==null&&(r.retryQueue=null,cl(e,n))));break;case 19:ll(t,e),fl(e),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,cl(e,r)));break;case 30:break;case 21:break;default:ll(t,e),fl(e)}}function fl(e){var t=e.flags;if(t&2){try{for(var n,r=e.return;r!==null;){if(Uc(r)){n=r;break}r=r.return}if(n==null)throw Error(a(160));switch(n.tag){case 27:var i=n.stateNode;Kc(e,Wc(e),i);break;case 5:var o=n.stateNode;n.flags&32&&(zt(o,``),n.flags&=-33),Kc(e,Wc(e),o);break;case 3:case 4:var s=n.stateNode.containerInfo;Gc(e,Wc(e),s);break;default:throw Error(a(161))}}catch(t){Wu(e,e.return,t)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function pl(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var t=e;pl(t),t.tag===5&&t.flags&1024&&t.stateNode.reset(),e=e.sibling}}function ml(e,t){if(t.subtreeFlags&8772)for(t=t.child;t!==null;)$c(e,t.alternate,t),t=t.sibling}function hl(e){for(e=e.child;e!==null;){var t=e;switch(t.tag){case 0:case 11:case 14:case 15:Ic(4,t,t.return),hl(t);break;case 1:Bc(t,t.return);var n=t.stateNode;typeof n.componentWillUnmount==`function`&&Rc(t,t.return,n),hl(t);break;case 27:hf(t.stateNode);case 26:case 5:Bc(t,t.return),hl(t);break;case 22:t.memoizedState===null&&hl(t);break;case 30:hl(t);break;default:hl(t)}e=e.sibling}}function gl(e,t,n){for(n&&=(t.subtreeFlags&8772)!=0,t=t.child;t!==null;){var r=t.alternate,i=e,a=t,o=a.flags;switch(a.tag){case 0:case 11:case 15:gl(i,a,n),Fc(4,a);break;case 1:if(gl(i,a,n),r=a,i=r.stateNode,typeof i.componentDidMount==`function`)try{i.componentDidMount()}catch(e){Wu(r,r.return,e)}if(r=a,i=r.updateQueue,i!==null){var s=r.stateNode;try{var c=i.shared.hiddenCallbacks;if(c!==null)for(i.shared.hiddenCallbacks=null,i=0;i<c.length;i++)Ba(c[i],s)}catch(e){Wu(r,r.return,e)}}n&&o&64&&Lc(a),zc(a,a.return);break;case 27:qc(a);case 26:case 5:gl(i,a,n),n&&r===null&&o&4&&Vc(a),zc(a,a.return);break;case 12:gl(i,a,n);break;case 31:gl(i,a,n),n&&o&4&&al(i,a);break;case 13:gl(i,a,n),n&&o&4&&ol(i,a);break;case 22:a.memoizedState===null&&gl(i,a,n),zc(a,a.return);break;case 30:break;default:gl(i,a,n)}t=t.sibling}}function _l(e,t){var n=null;e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),e=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(e=t.memoizedState.cachePool.pool),e!==n&&(e!=null&&e.refCount++,n!=null&&$i(n))}function vl(e,t){e=null,t.alternate!==null&&(e=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==e&&(t.refCount++,e!=null&&$i(e))}function yl(e,t,n,r){if(t.subtreeFlags&10256)for(t=t.child;t!==null;)bl(e,t,n,r),t=t.sibling}function bl(e,t,n,r){var i=t.flags;switch(t.tag){case 0:case 11:case 15:yl(e,t,n,r),i&2048&&Fc(9,t);break;case 1:yl(e,t,n,r);break;case 3:yl(e,t,n,r),i&2048&&(e=null,t.alternate!==null&&(e=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==e&&(t.refCount++,e!=null&&$i(e)));break;case 12:if(i&2048){yl(e,t,n,r),e=t.stateNode;try{var a=t.memoizedProps,o=a.id,s=a.onPostCommit;typeof s==`function`&&s(o,t.alternate===null?`mount`:`update`,e.passiveEffectDuration,-0)}catch(e){Wu(t,t.return,e)}}else yl(e,t,n,r);break;case 31:yl(e,t,n,r);break;case 13:yl(e,t,n,r);break;case 23:break;case 22:a=t.stateNode,o=t.alternate,t.memoizedState===null?a._visibility&2?yl(e,t,n,r):(a._visibility|=2,xl(e,t,n,r,(t.subtreeFlags&10256)!=0||!1)):a._visibility&2?yl(e,t,n,r):Sl(e,t),i&2048&&_l(o,t);break;case 24:yl(e,t,n,r),i&2048&&vl(t.alternate,t);break;default:yl(e,t,n,r)}}function xl(e,t,n,r,i){for(i&&=(t.subtreeFlags&10256)!=0||!1,t=t.child;t!==null;){var a=e,o=t,s=n,c=r,l=o.flags;switch(o.tag){case 0:case 11:case 15:xl(a,o,s,c,i),Fc(8,o);break;case 23:break;case 22:var u=o.stateNode;o.memoizedState===null?(u._visibility|=2,xl(a,o,s,c,i)):u._visibility&2?xl(a,o,s,c,i):Sl(a,o),i&&l&2048&&_l(o.alternate,o);break;case 24:xl(a,o,s,c,i),i&&l&2048&&vl(o.alternate,o);break;default:xl(a,o,s,c,i)}t=t.sibling}}function Sl(e,t){if(t.subtreeFlags&10256)for(t=t.child;t!==null;){var n=e,r=t,i=r.flags;switch(r.tag){case 22:Sl(n,r),i&2048&&_l(r.alternate,r);break;case 24:Sl(n,r),i&2048&&vl(r.alternate,r);break;default:Sl(n,r)}t=t.sibling}}var Cl=8192;function wl(e,t,n){if(e.subtreeFlags&Cl)for(e=e.child;e!==null;)Tl(e,t,n),e=e.sibling}function Tl(e,t,n){switch(e.tag){case 26:wl(e,t,n),e.flags&Cl&&e.memoizedState!==null&&qf(n,ul,e.memoizedState,e.memoizedProps);break;case 5:wl(e,t,n);break;case 3:case 4:var r=ul;ul=vf(e.stateNode.containerInfo),wl(e,t,n),ul=r;break;case 22:e.memoizedState===null&&(r=e.alternate,r!==null&&r.memoizedState!==null?(r=Cl,Cl=16777216,wl(e,t,n),Cl=r):wl(e,t,n));break;default:wl(e,t,n)}}function El(e){var t=e.alternate;if(t!==null&&(e=t.child,e!==null)){t.child=null;do t=e.sibling,e.sibling=null,e=t;while(e!==null)}}function Dl(e){var t=e.deletions;if(e.flags&16){if(t!==null)for(var n=0;n<t.length;n++){var r=t[n];Z=r,Al(r,e)}El(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)Ol(e),e=e.sibling}function Ol(e){switch(e.tag){case 0:case 11:case 15:Dl(e),e.flags&2048&&Ic(9,e,e.return);break;case 3:Dl(e);break;case 12:Dl(e);break;case 22:var t=e.stateNode;e.memoizedState!==null&&t._visibility&2&&(e.return===null||e.return.tag!==13)?(t._visibility&=-3,kl(e)):Dl(e);break;default:Dl(e)}}function kl(e){var t=e.deletions;if(e.flags&16){if(t!==null)for(var n=0;n<t.length;n++){var r=t[n];Z=r,Al(r,e)}El(e)}for(e=e.child;e!==null;){switch(t=e,t.tag){case 0:case 11:case 15:Ic(8,t,t.return),kl(t);break;case 22:n=t.stateNode,n._visibility&2&&(n._visibility&=-3,kl(t));break;default:kl(t)}e=e.sibling}}function Al(e,t){for(;Z!==null;){var n=Z;switch(n.tag){case 0:case 11:case 15:Ic(8,n,t);break;case 23:case 22:if(n.memoizedState!==null&&n.memoizedState.cachePool!==null){var r=n.memoizedState.cachePool.pool;r!=null&&r.refCount++}break;case 24:$i(n.memoizedState.cache)}if(r=n.child,r!==null)r.return=n,Z=r;else a:for(n=e;Z!==null;){r=Z;var i=r.sibling,a=r.return;if(el(r),r===n){Z=null;break a}if(i!==null){i.return=a,Z=i;break a}Z=a}}}var jl={getCacheForType:function(e){var t=Gi(Zi),n=t.data.get(e);return n===void 0&&(n=e(),t.data.set(e,n)),n},cacheSignal:function(){return Gi(Zi).controller.signal}},Ml=typeof WeakMap==`function`?WeakMap:Map,Nl=0,Pl=null,Fl=null,Il=0,Ll=0,Rl=null,zl=!1,Bl=!1,Vl=!1,Hl=0,Ul=0,Wl=0,Gl=0,Kl=0,ql=0,Jl=0,Yl=null,Xl=null,Zl=!1,Ql=0,$l=0,eu=1/0,tu=null,nu=null,ru=0,iu=null,au=null,ou=0,su=0,cu=null,lu=null,uu=0,du=null;function fu(){return Nl&2&&Il!==0?Il&-Il:j.T===null?nt():dd()}function pu(){if(ql===0)if(!(Il&536870912)||Y){var e=We;We<<=1,!(We&3932160)&&(We=262144),ql=e}else ql=536870912;return e=qa.current,e!==null&&(e.flags|=32),ql}function mu(e,t,n){(e===Pl&&(Ll===2||Ll===9)||e.cancelPendingCommit!==null)&&(xu(e,0),vu(e,Il,ql,!1)),Qe(e,n),(!(Nl&2)||e!==Pl)&&(e===Pl&&(!(Nl&2)&&(Gl|=n),Ul===4&&vu(e,Il,ql,!1)),rd(e))}function hu(e,t,n){if(Nl&6)throw Error(a(327));var r=!n&&(t&127)==0&&(t&e.expiredLanes)===0||Je(e,t),i=r?ku(e,t):Du(e,t,!0),o=r;do{if(i===0){Bl&&!r&&vu(e,t,0,!1);break}else{if(n=e.current.alternate,o&&!_u(n)){i=Du(e,t,!1),o=!1;continue}if(i===2){if(o=t,e.errorRecoveryDisabledLanes&o)var s=0;else s=e.pendingLanes&-536870913,s=s===0?s&536870912?536870912:0:s;if(s!==0){t=s;a:{var c=e;i=Yl;var l=c.current.memoizedState.isDehydrated;if(l&&(xu(c,s).flags|=256),s=Du(c,s,!1),s!==2){if(Vl&&!l){c.errorRecoveryDisabledLanes|=o,Gl|=o,i=4;break a}o=Xl,Xl=i,o!==null&&(Xl===null?Xl=o:Xl.push.apply(Xl,o))}i=s}if(o=!1,i!==2)continue}}if(i===1){xu(e,0),vu(e,t,0,!0);break}a:{switch(r=e,o=i,o){case 0:case 1:throw Error(a(345));case 4:if((t&4194048)!==t)break;case 6:vu(r,t,ql,!zl);break a;case 2:Xl=null;break;case 3:case 5:break;default:throw Error(a(329))}if((t&62914560)===t&&(i=Ql+300-Oe(),10<i)){if(vu(r,t,ql,!zl),qe(r,0,!0)!==0)break a;ou=t,r.timeoutHandle=Jd(gu.bind(null,r,n,Xl,tu,Zl,t,ql,Gl,Jl,zl,o,`Throttled`,-0,0),i);break a}gu(r,n,Xl,tu,Zl,t,ql,Gl,Jl,zl,o,null,-0,0)}}break}while(1);rd(e)}function gu(e,t,n,r,i,a,o,s,c,l,u,d,f,p){if(e.timeoutHandle=-1,d=t.subtreeFlags,d&8192||(d&16785408)==16785408){d={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:qt},Tl(t,a,d);var m=(a&62914560)===a?Ql-Oe():(a&4194048)===a?$l-Oe():0;if(m=Yf(d,m),m!==null){ou=a,e.cancelPendingCommit=m(Iu.bind(null,e,t,a,n,r,i,o,s,c,u,d,null,f,p)),vu(e,a,o,!l);return}}Iu(e,t,a,n,r,i,o,s,c)}function _u(e){for(var t=e;;){var n=t.tag;if((n===0||n===11||n===15)&&t.flags&16384&&(n=t.updateQueue,n!==null&&(n=n.stores,n!==null)))for(var r=0;r<n.length;r++){var i=n[r],a=i.getSnapshot;i=i.value;try{if(!mr(a(),i))return!1}catch{return!1}}if(n=t.child,t.subtreeFlags&16384&&n!==null)n.return=t,t=n;else{if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}function vu(e,t,n,r){t&=~Kl,t&=~Gl,e.suspendedLanes|=t,e.pingedLanes&=~t,r&&(e.warmLanes|=t),r=e.expirationTimes;for(var i=t;0<i;){var a=31-ze(i),o=1<<a;r[a]=-1,i&=~o}n!==0&&et(e,n,t)}function yu(){return Nl&6?!0:(id(0,!1),!1)}function bu(){if(Fl!==null){if(Ll===0)var e=Fl.return;else e=Fl,Li=Ii=null,xo(e),Sa=null,Ca=0,e=Fl;for(;e!==null;)Pc(e.alternate,e),e=e.return;Fl=null}}function xu(e,t){var n=e.timeoutHandle;n!==-1&&(e.timeoutHandle=-1,Yd(n)),n=e.cancelPendingCommit,n!==null&&(e.cancelPendingCommit=null,n()),ou=0,bu(),Pl=e,Fl=n=ei(e.current,null),Il=t,Ll=0,Rl=null,zl=!1,Bl=Je(e,t),Vl=!1,Jl=ql=Kl=Gl=Wl=Ul=0,Xl=Yl=null,Zl=!1,t&8&&(t|=t&32);var r=e.entangledLanes;if(r!==0)for(e=e.entanglements,r&=t;0<r;){var i=31-ze(r),a=1<<i;t|=e[i],r&=~a}return Hl=t,Kr(),n}function Su(e,t){X=null,j.H=js,t===fa||t===ma?(t=ba(),Ll=3):t===pa?(t=ba(),Ll=4):Ll=t===Ys?8:typeof t==`object`&&t&&typeof t.then==`function`?6:1,Rl=t,Fl===null&&(Ul=1,Us(e,ci(t,e.current)))}function Cu(){var e=qa.current;return e===null?!0:(Il&4194048)===Il?Ja===null:(Il&62914560)===Il||Il&536870912?e===Ja:!1}function wu(){var e=j.H;return j.H=js,e===null?js:e}function Tu(){var e=j.A;return j.A=jl,e}function Eu(){Ul=4,zl||(Il&4194048)!==Il&&qa.current!==null||(Bl=!0),!(Wl&134217727)&&!(Gl&134217727)||Pl===null||vu(Pl,Il,ql,!1)}function Du(e,t,n){var r=Nl;Nl|=2;var i=wu(),a=Tu();(Pl!==e||Il!==t)&&(tu=null,xu(e,t)),t=!1;var o=Ul;a:do try{if(Ll!==0&&Fl!==null){var s=Fl,c=Rl;switch(Ll){case 8:bu(),o=6;break a;case 3:case 2:case 9:case 6:qa.current===null&&(t=!0);var l=Ll;if(Ll=0,Rl=null,Nu(e,s,c,l),n&&Bl){o=0;break a}break;default:l=Ll,Ll=0,Rl=null,Nu(e,s,c,l)}}Ou(),o=Ul;break}catch(t){Su(e,t)}while(1);return t&&e.shellSuspendCounter++,Li=Ii=null,Nl=r,j.H=i,j.A=a,Fl===null&&(Pl=null,Il=0,Kr()),o}function Ou(){for(;Fl!==null;)ju(Fl)}function ku(e,t){var n=Nl;Nl|=2;var r=wu(),i=Tu();Pl!==e||Il!==t?(tu=null,eu=Oe()+500,xu(e,t)):Bl=Je(e,t);a:do try{if(Ll!==0&&Fl!==null){t=Fl;var o=Rl;b:switch(Ll){case 1:Ll=0,Rl=null,Nu(e,t,o,1);break;case 2:case 9:if(ga(o)){Ll=0,Rl=null,Mu(t);break}t=function(){Ll!==2&&Ll!==9||Pl!==e||(Ll=7),rd(e)},o.then(t,t);break a;case 3:Ll=7;break a;case 4:Ll=5;break a;case 7:ga(o)?(Ll=0,Rl=null,Mu(t)):(Ll=0,Rl=null,Nu(e,t,o,7));break;case 5:var s=null;switch(Fl.tag){case 26:s=Fl.memoizedState;case 5:case 27:var c=Fl;if(s?Kf(s):c.stateNode.complete){Ll=0,Rl=null;var l=c.sibling;if(l!==null)Fl=l;else{var u=c.return;u===null?Fl=null:(Fl=u,Pu(u))}break b}}Ll=0,Rl=null,Nu(e,t,o,5);break;case 6:Ll=0,Rl=null,Nu(e,t,o,6);break;case 8:bu(),Ul=6;break a;default:throw Error(a(462))}}Au();break}catch(t){Su(e,t)}while(1);return Li=Ii=null,j.H=r,j.A=i,Nl=n,Fl===null?(Pl=null,Il=0,Kr(),Ul):0}function Au(){for(;Fl!==null&&!Ee();)ju(Fl)}function ju(e){var t=Tc(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,t===null?Pu(e):Fl=t}function Mu(e){var t=e,n=t.alternate;switch(t.tag){case 15:case 0:t=lc(n,t,t.pendingProps,t.type,void 0,Il);break;case 11:t=lc(n,t,t.pendingProps,t.type.render,t.ref,Il);break;case 5:xo(t);default:Pc(n,t),t=Fl=ti(t,Hl),t=Tc(n,t,Hl)}e.memoizedProps=e.pendingProps,t===null?Pu(e):Fl=t}function Nu(e,t,n,r){Li=Ii=null,xo(t),Sa=null,Ca=0;var i=t.return;try{if(Js(e,i,t,n,Il)){Ul=1,Us(e,ci(n,e.current)),Fl=null;return}}catch(t){if(i!==null)throw Fl=i,t;Ul=1,Us(e,ci(n,e.current)),Fl=null;return}t.flags&32768?(Y||r===1?e=!0:Bl||Il&536870912?e=!1:(zl=e=!0,(r===2||r===9||r===3||r===6)&&(r=qa.current,r!==null&&r.tag===13&&(r.flags|=16384))),Fu(t,e)):Pu(t)}function Pu(e){var t=e;do{if(t.flags&32768){Fu(t,zl);return}e=t.return;var n=Mc(t.alternate,t,Hl);if(n!==null){Fl=n;return}if(t=t.sibling,t!==null){Fl=t;return}Fl=t=e}while(t!==null);Ul===0&&(Ul=5)}function Fu(e,t){do{var n=Nc(e.alternate,e);if(n!==null){n.flags&=32767,Fl=n;return}if(n=e.return,n!==null&&(n.flags|=32768,n.subtreeFlags=0,n.deletions=null),!t&&(e=e.sibling,e!==null)){Fl=e;return}Fl=e=n}while(e!==null);Ul=6,Fl=null}function Iu(e,t,n,r,i,o,s,c,l){e.cancelPendingCommit=null;do Vu();while(ru!==0);if(Nl&6)throw Error(a(327));if(t!==null){if(t===e.current)throw Error(a(177));if(o=t.lanes|t.childLanes,o|=Gr,$e(e,n,o,s,c,l),e===Pl&&(Fl=Pl=null,Il=0),au=t,iu=e,ou=n,su=o,cu=i,lu=r,t.subtreeFlags&10256||t.flags&10256?(e.callbackNode=null,e.callbackPriority=0,Xu(Me,function(){return Hu(),null})):(e.callbackNode=null,e.callbackPriority=0),r=(t.flags&13878)!=0,t.subtreeFlags&13878||r){r=j.T,j.T=null,i=M.p,M.p=2,s=Nl,Nl|=4;try{Qc(e,t,n)}finally{Nl=s,M.p=i,j.T=r}}ru=1,Lu(),Ru(),zu()}}function Lu(){if(ru===1){ru=0;var e=iu,t=au,n=(t.flags&13878)!=0;if(t.subtreeFlags&13878||n){n=j.T,j.T=null;var r=M.p;M.p=2;var i=Nl;Nl|=4;try{dl(t,e);var a=Vd,o=yr(e.containerInfo),s=a.focusedElem,c=a.selectionRange;if(o!==s&&s&&s.ownerDocument&&vr(s.ownerDocument.documentElement,s)){if(c!==null&&br(s)){var l=c.start,u=c.end;if(u===void 0&&(u=l),`selectionStart`in s)s.selectionStart=l,s.selectionEnd=Math.min(u,s.value.length);else{var d=s.ownerDocument||document,f=d&&d.defaultView||window;if(f.getSelection){var p=f.getSelection(),m=s.textContent.length,h=Math.min(c.start,m),g=c.end===void 0?h:Math.min(c.end,m);!p.extend&&h>g&&(o=g,g=h,h=o);var _=_r(s,h),v=_r(s,g);if(_&&v&&(p.rangeCount!==1||p.anchorNode!==_.node||p.anchorOffset!==_.offset||p.focusNode!==v.node||p.focusOffset!==v.offset)){var y=d.createRange();y.setStart(_.node,_.offset),p.removeAllRanges(),h>g?(p.addRange(y),p.extend(v.node,v.offset)):(y.setEnd(v.node,v.offset),p.addRange(y))}}}}for(d=[],p=s;p=p.parentNode;)p.nodeType===1&&d.push({element:p,left:p.scrollLeft,top:p.scrollTop});for(typeof s.focus==`function`&&s.focus(),s=0;s<d.length;s++){var b=d[s];b.element.scrollLeft=b.left,b.element.scrollTop=b.top}}lp=!!Bd,Vd=Bd=null}finally{Nl=i,M.p=r,j.T=n}}e.current=t,ru=2}}function Ru(){if(ru===2){ru=0;var e=iu,t=au,n=(t.flags&8772)!=0;if(t.subtreeFlags&8772||n){n=j.T,j.T=null;var r=M.p;M.p=2;var i=Nl;Nl|=4;try{$c(e,t.alternate,t)}finally{Nl=i,M.p=r,j.T=n}}ru=3}}function zu(){if(ru===4||ru===3){ru=0,De();var e=iu,t=au,n=ou,r=lu;t.subtreeFlags&10256||t.flags&10256?ru=5:(ru=0,au=iu=null,Bu(e,e.pendingLanes));var i=e.pendingLanes;if(i===0&&(nu=null),R(n),t=t.stateNode,Le&&typeof Le.onCommitFiberRoot==`function`)try{Le.onCommitFiberRoot(F,t,void 0,(t.current.flags&128)==128)}catch{}if(r!==null){t=j.T,i=M.p,M.p=2,j.T=null;try{for(var a=e.onRecoverableError,o=0;o<r.length;o++){var s=r[o];a(s.value,{componentStack:s.stack})}}finally{j.T=t,M.p=i}}ou&3&&Vu(),rd(e),i=e.pendingLanes,n&261930&&i&42?e===du?uu++:(uu=0,du=e):uu=0,id(0,!1)}}function Bu(e,t){(e.pooledCacheLanes&=t)===0&&(t=e.pooledCache,t!=null&&(e.pooledCache=null,$i(t)))}function Vu(){return Lu(),Ru(),zu(),Hu()}function Hu(){if(ru!==5)return!1;var e=iu,t=su;su=0;var n=R(ou),r=j.T,i=M.p;try{M.p=32>n?32:n,j.T=null,n=cu,cu=null;var o=iu,s=ou;if(ru=0,au=iu=null,ou=0,Nl&6)throw Error(a(331));var c=Nl;if(Nl|=4,Ol(o.current),bl(o,o.current,s,n),Nl=c,id(0,!1),Le&&typeof Le.onPostCommitFiberRoot==`function`)try{Le.onPostCommitFiberRoot(F,o)}catch{}return!0}finally{M.p=i,j.T=r,Bu(e,t)}}function Uu(e,t,n){t=ci(n,t),t=Gs(e.stateNode,t,2),e=Pa(e,t,2),e!==null&&(Qe(e,2),rd(e))}function Wu(e,t,n){if(e.tag===3)Uu(e,e,n);else for(;t!==null;){if(t.tag===3){Uu(t,e,n);break}else if(t.tag===1){var r=t.stateNode;if(typeof t.type.getDerivedStateFromError==`function`||typeof r.componentDidCatch==`function`&&(nu===null||!nu.has(r))){e=ci(n,e),n=Ks(2),r=Pa(t,n,2),r!==null&&(qs(n,r,t,e),Qe(r,2),rd(r));break}}t=t.return}}function Gu(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new Ml;var i=new Set;r.set(t,i)}else i=r.get(t),i===void 0&&(i=new Set,r.set(t,i));i.has(n)||(Vl=!0,i.add(n),e=Ku.bind(null,e,t,n),t.then(e,e))}function Ku(e,t,n){var r=e.pingCache;r!==null&&r.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,Pl===e&&(Il&n)===n&&(Ul===4||Ul===3&&(Il&62914560)===Il&&300>Oe()-Ql?!(Nl&2)&&xu(e,0):Kl|=n,Jl===Il&&(Jl=0)),rd(e)}function qu(e,t){t===0&&(t=Xe()),e=Yr(e,t),e!==null&&(Qe(e,t),rd(e))}function Ju(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),qu(e,n)}function Yu(e,t){var n=0;switch(e.tag){case 31:case 13:var r=e.stateNode,i=e.memoizedState;i!==null&&(n=i.retryLane);break;case 19:r=e.stateNode;break;case 22:r=e.stateNode._retryCache;break;default:throw Error(a(314))}r!==null&&r.delete(t),qu(e,n)}function Xu(e,t){return we(e,t)}var Zu=null,Qu=null,$u=!1,ed=!1,td=!1,nd=0;function rd(e){e!==Qu&&e.next===null&&(Qu===null?Zu=Qu=e:Qu=Qu.next=e),ed=!0,$u||($u=!0,ud())}function id(e,t){if(!td&&ed){td=!0;do for(var n=!1,r=Zu;r!==null;){if(!t)if(e!==0){var i=r.pendingLanes;if(i===0)var a=0;else{var o=r.suspendedLanes,s=r.pingedLanes;a=(1<<31-ze(42|e)+1)-1,a&=i&~(o&~s),a=a&201326741?a&201326741|1:a?a|2:0}a!==0&&(n=!0,ld(r,a))}else a=Il,a=qe(r,r===Pl?a:0,r.cancelPendingCommit!==null||r.timeoutHandle!==-1),!(a&3)||Je(r,a)||(n=!0,ld(r,a));r=r.next}while(n);td=!1}}function ad(){od()}function od(){ed=$u=!1;var e=0;nd!==0&&qd()&&(e=nd);for(var t=Oe(),n=null,r=Zu;r!==null;){var i=r.next,a=sd(r,t);a===0?(r.next=null,n===null?Zu=i:n.next=i,i===null&&(Qu=n)):(n=r,(e!==0||a&3)&&(ed=!0)),r=i}ru!==0&&ru!==5||id(e,!1),nd!==0&&(nd=0)}function sd(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,i=e.expirationTimes,a=e.pendingLanes&-62914561;0<a;){var o=31-ze(a),s=1<<o,c=i[o];c===-1?((s&n)===0||(s&r)!==0)&&(i[o]=Ye(s,t)):c<=t&&(e.expiredLanes|=s),a&=~s}if(t=Pl,n=Il,n=qe(e,e===t?n:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),r=e.callbackNode,n===0||e===t&&(Ll===2||Ll===9)||e.cancelPendingCommit!==null)return r!==null&&r!==null&&Te(r),e.callbackNode=null,e.callbackPriority=0;if(!(n&3)||Je(e,n)){if(t=n&-n,t===e.callbackPriority)return t;switch(r!==null&&Te(r),R(n)){case 2:case 8:n=je;break;case 32:n=Me;break;case 268435456:n=Pe;break;default:n=Me}return r=cd.bind(null,e),n=we(n,r),e.callbackPriority=t,e.callbackNode=n,t}return r!==null&&r!==null&&Te(r),e.callbackPriority=2,e.callbackNode=null,2}function cd(e,t){if(ru!==0&&ru!==5)return e.callbackNode=null,e.callbackPriority=0,null;var n=e.callbackNode;if(Vu()&&e.callbackNode!==n)return null;var r=Il;return r=qe(e,e===Pl?r:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),r===0?null:(hu(e,r,t),sd(e,Oe()),e.callbackNode!=null&&e.callbackNode===n?cd.bind(null,e):null)}function ld(e,t){if(Vu())return null;hu(e,t,!0)}function ud(){Zd(function(){Nl&6?we(Ae,ad):od()})}function dd(){if(nd===0){var e=na;e===0&&(e=Ue,Ue<<=1,!(Ue&261888)&&(Ue=256)),nd=e}return nd}function fd(e){return e==null||typeof e==`symbol`||typeof e==`boolean`?null:typeof e==`function`?e:Kt(``+e)}function pd(e,t){var n=t.ownerDocument.createElement(`input`);return n.name=t.name,n.value=t.value,e.id&&n.setAttribute(`form`,e.id),t.parentNode.insertBefore(n,t),e=new FormData(e),n.parentNode.removeChild(n),e}function md(e,t,n,r,i){if(t===`submit`&&n&&n.stateNode===i){var a=fd((i[rt]||null).action),o=r.submitter;o&&(t=(t=o[rt]||null)?fd(t.formAction):o.getAttribute(`formAction`),t!==null&&(a=t,o=null));var s=new mn(`action`,`action`,null,r,i);e.push({event:s,listeners:[{instance:null,listener:function(){if(r.defaultPrevented){if(nd!==0){var e=o?pd(i,o):new FormData(i);_s(n,{pending:!0,data:e,method:i.method,action:a},null,e)}}else typeof a==`function`&&(s.preventDefault(),e=o?pd(i,o):new FormData(i),_s(n,{pending:!0,data:e,method:i.method,action:a},a,e))},currentTarget:i}]})}}for(var hd=0;hd<Br.length;hd++){var gd=Br[hd];Vr(gd.toLowerCase(),`on`+(gd[0].toUpperCase()+gd.slice(1)))}Vr(Mr,`onAnimationEnd`),Vr(Nr,`onAnimationIteration`),Vr(Pr,`onAnimationStart`),Vr(`dblclick`,`onDoubleClick`),Vr(`focusin`,`onFocus`),Vr(`focusout`,`onBlur`),Vr(Fr,`onTransitionRun`),Vr(Ir,`onTransitionStart`),Vr(Lr,`onTransitionCancel`),Vr(Rr,`onTransitionEnd`),gt(`onMouseEnter`,[`mouseout`,`mouseover`]),gt(`onMouseLeave`,[`mouseout`,`mouseover`]),gt(`onPointerEnter`,[`pointerout`,`pointerover`]),gt(`onPointerLeave`,[`pointerout`,`pointerover`]),ht(`onChange`,`change click focusin focusout input keydown keyup selectionchange`.split(` `)),ht(`onSelect`,`focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange`.split(` `)),ht(`onBeforeInput`,[`compositionend`,`keypress`,`textInput`,`paste`]),ht(`onCompositionEnd`,`compositionend focusout keydown keypress keyup mousedown`.split(` `)),ht(`onCompositionStart`,`compositionstart focusout keydown keypress keyup mousedown`.split(` `)),ht(`onCompositionUpdate`,`compositionupdate focusout keydown keypress keyup mousedown`.split(` `));var _d=`abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting`.split(` `),vd=new Set(`beforetoggle cancel close invalid load scroll scrollend toggle`.split(` `).concat(_d));function yd(e,t){t=(t&4)!=0;for(var n=0;n<e.length;n++){var r=e[n],i=r.event;r=r.listeners;a:{var a=void 0;if(t)for(var o=r.length-1;0<=o;o--){var s=r[o],c=s.instance,l=s.currentTarget;if(s=s.listener,c!==a&&i.isPropagationStopped())break a;a=s,i.currentTarget=l;try{a(i)}catch(e){Hr(e)}i.currentTarget=null,a=c}else for(o=0;o<r.length;o++){if(s=r[o],c=s.instance,l=s.currentTarget,s=s.listener,c!==a&&i.isPropagationStopped())break a;a=s,i.currentTarget=l;try{a(i)}catch(e){Hr(e)}i.currentTarget=null,a=c}}}}function bd(e,t){var n=t[at];n===void 0&&(n=t[at]=new Set);var r=e+`__bubble`;n.has(r)||(wd(t,e,2,!1),n.add(r))}function xd(e,t,n){var r=0;t&&(r|=4),wd(n,e,r,t)}var Sd=`_reactListening`+Math.random().toString(36).slice(2);function Cd(e){if(!e[Sd]){e[Sd]=!0,pt.forEach(function(t){t!==`selectionchange`&&(vd.has(t)||xd(t,!1,e),xd(t,!0,e))});var t=e.nodeType===9?e:e.ownerDocument;t===null||t[Sd]||(t[Sd]=!0,xd(`selectionchange`,!1,t))}}function wd(e,t,n,r){switch(gp(t)){case 2:var i=up;break;case 8:i=dp;break;default:i=fp}n=i.bind(null,t,n,e),i=void 0,!rn||t!==`touchstart`&&t!==`touchmove`&&t!==`wheel`||(i=!0),r?i===void 0?e.addEventListener(t,n,!0):e.addEventListener(t,n,{capture:!0,passive:i}):i===void 0?e.addEventListener(t,n,!1):e.addEventListener(t,n,{passive:i})}function Td(e,t,n,r,i){var a=r;if(!(t&1)&&!(t&2)&&r!==null)a:for(;;){if(r===null)return;var o=r.tag;if(o===3||o===4){var c=r.stateNode.containerInfo;if(c===i)break;if(o===4)for(o=r.return;o!==null;){var l=o.tag;if((l===3||l===4)&&o.stateNode.containerInfo===i)return;o=o.return}for(;c!==null;){if(o=lt(c),o===null)return;if(l=o.tag,l===5||l===6||l===26||l===27){r=a=o;continue a}c=c.parentNode}}r=r.return}en(function(){var r=a,i=Yt(n),o=[];a:{var c=zr.get(e);if(c!==void 0){var l=mn,u=e;switch(e){case`keypress`:if(un(n)===0)break a;case`keydown`:case`keyup`:l=Mn;break;case`focusin`:u=`focus`,l=Cn;break;case`focusout`:u=`blur`,l=Cn;break;case`beforeblur`:case`afterblur`:l=Cn;break;case`click`:if(n.button===2)break a;case`auxclick`:case`dblclick`:case`mousedown`:case`mousemove`:case`mouseup`:case`mouseout`:case`mouseover`:case`contextmenu`:l=xn;break;case`drag`:case`dragend`:case`dragenter`:case`dragexit`:case`dragleave`:case`dragover`:case`dragstart`:case`drop`:l=Sn;break;case`touchcancel`:case`touchend`:case`touchmove`:case`touchstart`:l=Pn;break;case Mr:case Nr:case Pr:l=wn;break;case Rr:l=Fn;break;case`scroll`:case`scrollend`:l=gn;break;case`wheel`:l=In;break;case`copy`:case`cut`:case`paste`:l=Tn;break;case`gotpointercapture`:case`lostpointercapture`:case`pointercancel`:case`pointerdown`:case`pointermove`:case`pointerout`:case`pointerover`:case`pointerup`:l=Nn;break;case`toggle`:case`beforetoggle`:l=Ln}var d=(t&4)!=0,f=!d&&(e===`scroll`||e===`scrollend`),p=d?c===null?null:c+`Capture`:c;d=[];for(var m=r,h;m!==null;){var g=m;if(h=g.stateNode,g=g.tag,g!==5&&g!==26&&g!==27||h===null||p===null||(g=tn(m,p),g!=null&&d.push(Ed(m,g,h))),f)break;m=m.return}0<d.length&&(c=new l(c,u,null,n,i),o.push({event:c,listeners:d}))}}if(!(t&7)){a:{if(c=e===`mouseover`||e===`pointerover`,l=e===`mouseout`||e===`pointerout`,c&&n!==Jt&&(u=n.relatedTarget||n.fromElement)&&(lt(u)||u[it]))break a;if((l||c)&&(c=i.window===i?i:(c=i.ownerDocument)?c.defaultView||c.parentWindow:window,l?(u=n.relatedTarget||n.toElement,l=r,u=u?lt(u):null,u!==null&&(f=s(u),d=u.tag,u!==f||d!==5&&d!==27&&d!==6)&&(u=null)):(l=null,u=r),l!==u)){if(d=xn,g=`onMouseLeave`,p=`onMouseEnter`,m=`mouse`,(e===`pointerout`||e===`pointerover`)&&(d=Nn,g=`onPointerLeave`,p=`onPointerEnter`,m=`pointer`),f=l==null?c:dt(l),h=u==null?c:dt(u),c=new d(g,m+`leave`,l,n,i),c.target=f,c.relatedTarget=h,g=null,lt(i)===r&&(d=new d(p,m+`enter`,u,n,i),d.target=h,d.relatedTarget=f,g=d),f=g,l&&u)b:{for(d=Od,p=l,m=u,h=0,g=p;g;g=d(g))h++;g=0;for(var _=m;_;_=d(_))g++;for(;0<h-g;)p=d(p),h--;for(;0<g-h;)m=d(m),g--;for(;h--;){if(p===m||m!==null&&p===m.alternate){d=p;break b}p=d(p),m=d(m)}d=null}else d=null;l!==null&&kd(o,c,l,d,!1),u!==null&&f!==null&&kd(o,f,u,d,!0)}}a:{if(c=r?dt(r):window,l=c.nodeName&&c.nodeName.toLowerCase(),l===`select`||l===`input`&&c.type===`file`)var v=nr;else if(Xn(c))if(rr)v=fr;else{v=ur;var y=lr}else l=c.nodeName,!l||l.toLowerCase()!==`input`||c.type!==`checkbox`&&c.type!==`radio`?r&&Ut(r.elementType)&&(v=nr):v=dr;if(v&&=v(e,r)){Zn(o,v,n,i);break a}y&&y(e,c,r),e===`focusout`&&r&&c.type===`number`&&r.memoizedProps.value!=null&&Ft(c,`number`,c.value)}switch(y=r?dt(r):window,e){case`focusin`:(Xn(y)||y.contentEditable===`true`)&&(Sr=y,Cr=r,wr=null);break;case`focusout`:wr=Cr=Sr=null;break;case`mousedown`:Tr=!0;break;case`contextmenu`:case`mouseup`:case`dragend`:Tr=!1,Er(o,n,i);break;case`selectionchange`:if(xr)break;case`keydown`:case`keyup`:Er(o,n,i)}var b;if(zn)b:{switch(e){case`compositionstart`:var x=`onCompositionStart`;break b;case`compositionend`:x=`onCompositionEnd`;break b;case`compositionupdate`:x=`onCompositionUpdate`;break b}x=void 0}else qn?Gn(e,n)&&(x=`onCompositionEnd`):e===`keydown`&&n.keyCode===229&&(x=`onCompositionStart`);x&&(Hn&&n.locale!==`ko`&&(qn||x!==`onCompositionStart`?x===`onCompositionEnd`&&qn&&(b=ln()):(on=i,sn=`value`in on?on.value:on.textContent,qn=!0)),y=Dd(r,x),0<y.length&&(x=new En(x,e,null,n,i),o.push({event:x,listeners:y}),b?x.data=b:(b=Kn(n),b!==null&&(x.data=b)))),(b=Vn?Jn(e,n):K(e,n))&&(x=Dd(r,`onBeforeInput`),0<x.length&&(y=new En(`onBeforeInput`,`beforeinput`,null,n,i),o.push({event:y,listeners:x}),y.data=b)),md(o,e,r,n,i)}yd(o,t)})}function Ed(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Dd(e,t){for(var n=t+`Capture`,r=[];e!==null;){var i=e,a=i.stateNode;if(i=i.tag,i!==5&&i!==26&&i!==27||a===null||(i=tn(e,n),i!=null&&r.unshift(Ed(e,i,a)),i=tn(e,t),i!=null&&r.push(Ed(e,i,a))),e.tag===3)return r;e=e.return}return[]}function Od(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function kd(e,t,n,r,i){for(var a=t._reactName,o=[];n!==null&&n!==r;){var s=n,c=s.alternate,l=s.stateNode;if(s=s.tag,c!==null&&c===r)break;s!==5&&s!==26&&s!==27||l===null||(c=l,i?(l=tn(n,a),l!=null&&o.unshift(Ed(n,l,c))):i||(l=tn(n,a),l!=null&&o.push(Ed(n,l,c)))),n=n.return}o.length!==0&&e.push({event:t,listeners:o})}var Ad=/\r\n?/g,jd=/\u0000|\uFFFD/g;function Md(e){return(typeof e==`string`?e:``+e).replace(Ad,`
|
|
10
|
-
`).replace(jd,``)}function Nd(e,t){return t=Md(t),Md(e)===t}function Pd(e,t,n,r,i,o){switch(n){case`children`:typeof r==`string`?t===`body`||t===`textarea`&&r===``||zt(e,r):(typeof r==`number`||typeof r==`bigint`)&&t!==`body`&&zt(e,``+r);break;case`className`:St(e,`class`,r);break;case`tabIndex`:St(e,`tabindex`,r);break;case`dir`:case`role`:case`viewBox`:case`width`:case`height`:St(e,n,r);break;case`style`:Ht(e,r,o);break;case`data`:if(t!==`object`){St(e,`data`,r);break}case`src`:case`href`:if(r===``&&(t!==`a`||n!==`href`)){e.removeAttribute(n);break}if(r==null||typeof r==`function`||typeof r==`symbol`||typeof r==`boolean`){e.removeAttribute(n);break}r=Kt(``+r),e.setAttribute(n,r);break;case`action`:case`formAction`:if(typeof r==`function`){e.setAttribute(n,`javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')`);break}else typeof o==`function`&&(n===`formAction`?(t!==`input`&&Pd(e,t,`name`,i.name,i,null),Pd(e,t,`formEncType`,i.formEncType,i,null),Pd(e,t,`formMethod`,i.formMethod,i,null),Pd(e,t,`formTarget`,i.formTarget,i,null)):(Pd(e,t,`encType`,i.encType,i,null),Pd(e,t,`method`,i.method,i,null),Pd(e,t,`target`,i.target,i,null)));if(r==null||typeof r==`symbol`||typeof r==`boolean`){e.removeAttribute(n);break}r=Kt(``+r),e.setAttribute(n,r);break;case`onClick`:r!=null&&(e.onclick=qt);break;case`onScroll`:r!=null&&bd(`scroll`,e);break;case`onScrollEnd`:r!=null&&bd(`scrollend`,e);break;case`dangerouslySetInnerHTML`:if(r!=null){if(typeof r!=`object`||!(`__html`in r))throw Error(a(61));if(n=r.__html,n!=null){if(i.children!=null)throw Error(a(60));e.innerHTML=n}}break;case`multiple`:e.multiple=r&&typeof r!=`function`&&typeof r!=`symbol`;break;case`muted`:e.muted=r&&typeof r!=`function`&&typeof r!=`symbol`;break;case`suppressContentEditableWarning`:case`suppressHydrationWarning`:case`defaultValue`:case`defaultChecked`:case`innerHTML`:case`ref`:break;case`autoFocus`:break;case`xlinkHref`:if(r==null||typeof r==`function`||typeof r==`boolean`||typeof r==`symbol`){e.removeAttribute(`xlink:href`);break}n=Kt(``+r),e.setAttributeNS(`http://www.w3.org/1999/xlink`,`xlink:href`,n);break;case`contentEditable`:case`spellCheck`:case`draggable`:case`value`:case`autoReverse`:case`externalResourcesRequired`:case`focusable`:case`preserveAlpha`:r!=null&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,``+r):e.removeAttribute(n);break;case`inert`:case`allowFullScreen`:case`async`:case`autoPlay`:case`controls`:case`default`:case`defer`:case`disabled`:case`disablePictureInPicture`:case`disableRemotePlayback`:case`formNoValidate`:case`hidden`:case`loop`:case`noModule`:case`noValidate`:case`open`:case`playsInline`:case`readOnly`:case`required`:case`reversed`:case`scoped`:case`seamless`:case`itemScope`:r&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,``):e.removeAttribute(n);break;case`capture`:case`download`:!0===r?e.setAttribute(n,``):!1!==r&&r!=null&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,r):e.removeAttribute(n);break;case`cols`:case`rows`:case`size`:case`span`:r!=null&&typeof r!=`function`&&typeof r!=`symbol`&&!isNaN(r)&&1<=r?e.setAttribute(n,r):e.removeAttribute(n);break;case`rowSpan`:case`start`:r==null||typeof r==`function`||typeof r==`symbol`||isNaN(r)?e.removeAttribute(n):e.setAttribute(n,r);break;case`popover`:bd(`beforetoggle`,e),bd(`toggle`,e),xt(e,`popover`,r);break;case`xlinkActuate`:Ct(e,`http://www.w3.org/1999/xlink`,`xlink:actuate`,r);break;case`xlinkArcrole`:Ct(e,`http://www.w3.org/1999/xlink`,`xlink:arcrole`,r);break;case`xlinkRole`:Ct(e,`http://www.w3.org/1999/xlink`,`xlink:role`,r);break;case`xlinkShow`:Ct(e,`http://www.w3.org/1999/xlink`,`xlink:show`,r);break;case`xlinkTitle`:Ct(e,`http://www.w3.org/1999/xlink`,`xlink:title`,r);break;case`xlinkType`:Ct(e,`http://www.w3.org/1999/xlink`,`xlink:type`,r);break;case`xmlBase`:Ct(e,`http://www.w3.org/XML/1998/namespace`,`xml:base`,r);break;case`xmlLang`:Ct(e,`http://www.w3.org/XML/1998/namespace`,`xml:lang`,r);break;case`xmlSpace`:Ct(e,`http://www.w3.org/XML/1998/namespace`,`xml:space`,r);break;case`is`:xt(e,`is`,r);break;case`innerText`:case`textContent`:break;default:(!(2<n.length)||n[0]!==`o`&&n[0]!==`O`||n[1]!==`n`&&n[1]!==`N`)&&(n=Wt.get(n)||n,xt(e,n,r))}}function Fd(e,t,n,r,i,o){switch(n){case`style`:Ht(e,r,o);break;case`dangerouslySetInnerHTML`:if(r!=null){if(typeof r!=`object`||!(`__html`in r))throw Error(a(61));if(n=r.__html,n!=null){if(i.children!=null)throw Error(a(60));e.innerHTML=n}}break;case`children`:typeof r==`string`?zt(e,r):(typeof r==`number`||typeof r==`bigint`)&&zt(e,``+r);break;case`onScroll`:r!=null&&bd(`scroll`,e);break;case`onScrollEnd`:r!=null&&bd(`scrollend`,e);break;case`onClick`:r!=null&&(e.onclick=qt);break;case`suppressContentEditableWarning`:case`suppressHydrationWarning`:case`innerHTML`:case`ref`:break;case`innerText`:case`textContent`:break;default:if(!mt.hasOwnProperty(n))a:{if(n[0]===`o`&&n[1]===`n`&&(i=n.endsWith(`Capture`),t=n.slice(2,i?n.length-7:void 0),o=e[rt]||null,o=o==null?null:o[n],typeof o==`function`&&e.removeEventListener(t,o,i),typeof r==`function`)){typeof o!=`function`&&o!==null&&(n in e?e[n]=null:e.hasAttribute(n)&&e.removeAttribute(n)),e.addEventListener(t,r,i);break a}n in e?e[n]=r:!0===r?e.setAttribute(n,``):xt(e,n,r)}}}function Id(e,t,n){switch(t){case`div`:case`span`:case`svg`:case`path`:case`a`:case`g`:case`p`:case`li`:break;case`img`:bd(`error`,e),bd(`load`,e);var r=!1,i=!1,o;for(o in n)if(n.hasOwnProperty(o)){var s=n[o];if(s!=null)switch(o){case`src`:r=!0;break;case`srcSet`:i=!0;break;case`children`:case`dangerouslySetInnerHTML`:throw Error(a(137,t));default:Pd(e,t,o,s,n,null)}}i&&Pd(e,t,`srcSet`,n.srcSet,n,null),r&&Pd(e,t,`src`,n.src,n,null);return;case`input`:bd(`invalid`,e);var c=o=s=i=null,l=null,u=null;for(r in n)if(n.hasOwnProperty(r)){var d=n[r];if(d!=null)switch(r){case`name`:i=d;break;case`type`:s=d;break;case`checked`:l=d;break;case`defaultChecked`:u=d;break;case`value`:o=d;break;case`defaultValue`:c=d;break;case`children`:case`dangerouslySetInnerHTML`:if(d!=null)throw Error(a(137,t));break;default:Pd(e,t,r,d,n,null)}}Pt(e,o,c,l,u,s,i,!1);return;case`select`:for(i in bd(`invalid`,e),r=s=o=null,n)if(n.hasOwnProperty(i)&&(c=n[i],c!=null))switch(i){case`value`:o=c;break;case`defaultValue`:s=c;break;case`multiple`:r=c;default:Pd(e,t,i,c,n,null)}t=o,n=s,e.multiple=!!r,t==null?n!=null&&It(e,!!r,n,!0):It(e,!!r,t,!1);return;case`textarea`:for(s in bd(`invalid`,e),o=i=r=null,n)if(n.hasOwnProperty(s)&&(c=n[s],c!=null))switch(s){case`value`:r=c;break;case`defaultValue`:i=c;break;case`children`:o=c;break;case`dangerouslySetInnerHTML`:if(c!=null)throw Error(a(91));break;default:Pd(e,t,s,c,n,null)}Rt(e,r,i,o);return;case`option`:for(l in n)if(n.hasOwnProperty(l)&&(r=n[l],r!=null))switch(l){case`selected`:e.selected=r&&typeof r!=`function`&&typeof r!=`symbol`;break;default:Pd(e,t,l,r,n,null)}return;case`dialog`:bd(`beforetoggle`,e),bd(`toggle`,e),bd(`cancel`,e),bd(`close`,e);break;case`iframe`:case`object`:bd(`load`,e);break;case`video`:case`audio`:for(r=0;r<_d.length;r++)bd(_d[r],e);break;case`image`:bd(`error`,e),bd(`load`,e);break;case`details`:bd(`toggle`,e);break;case`embed`:case`source`:case`link`:bd(`error`,e),bd(`load`,e);case`area`:case`base`:case`br`:case`col`:case`hr`:case`keygen`:case`meta`:case`param`:case`track`:case`wbr`:case`menuitem`:for(u in n)if(n.hasOwnProperty(u)&&(r=n[u],r!=null))switch(u){case`children`:case`dangerouslySetInnerHTML`:throw Error(a(137,t));default:Pd(e,t,u,r,n,null)}return;default:if(Ut(t)){for(d in n)n.hasOwnProperty(d)&&(r=n[d],r!==void 0&&Fd(e,t,d,r,n,void 0));return}}for(c in n)n.hasOwnProperty(c)&&(r=n[c],r!=null&&Pd(e,t,c,r,n,null))}function Ld(e,t,n,r){switch(t){case`div`:case`span`:case`svg`:case`path`:case`a`:case`g`:case`p`:case`li`:break;case`input`:var i=null,o=null,s=null,c=null,l=null,u=null,d=null;for(m in n){var f=n[m];if(n.hasOwnProperty(m)&&f!=null)switch(m){case`checked`:break;case`value`:break;case`defaultValue`:l=f;default:r.hasOwnProperty(m)||Pd(e,t,m,null,r,f)}}for(var p in r){var m=r[p];if(f=n[p],r.hasOwnProperty(p)&&(m!=null||f!=null))switch(p){case`type`:o=m;break;case`name`:i=m;break;case`checked`:u=m;break;case`defaultChecked`:d=m;break;case`value`:s=m;break;case`defaultValue`:c=m;break;case`children`:case`dangerouslySetInnerHTML`:if(m!=null)throw Error(a(137,t));break;default:m!==f&&Pd(e,t,p,m,r,f)}}Nt(e,s,c,l,u,d,o,i);return;case`select`:for(o in m=s=c=p=null,n)if(l=n[o],n.hasOwnProperty(o)&&l!=null)switch(o){case`value`:break;case`multiple`:m=l;default:r.hasOwnProperty(o)||Pd(e,t,o,null,r,l)}for(i in r)if(o=r[i],l=n[i],r.hasOwnProperty(i)&&(o!=null||l!=null))switch(i){case`value`:p=o;break;case`defaultValue`:c=o;break;case`multiple`:s=o;default:o!==l&&Pd(e,t,i,o,r,l)}t=c,n=s,r=m,p==null?!!r!=!!n&&(t==null?It(e,!!n,n?[]:``,!1):It(e,!!n,t,!0)):It(e,!!n,p,!1);return;case`textarea`:for(c in m=p=null,n)if(i=n[c],n.hasOwnProperty(c)&&i!=null&&!r.hasOwnProperty(c))switch(c){case`value`:break;case`children`:break;default:Pd(e,t,c,null,r,i)}for(s in r)if(i=r[s],o=n[s],r.hasOwnProperty(s)&&(i!=null||o!=null))switch(s){case`value`:p=i;break;case`defaultValue`:m=i;break;case`children`:break;case`dangerouslySetInnerHTML`:if(i!=null)throw Error(a(91));break;default:i!==o&&Pd(e,t,s,i,r,o)}Lt(e,p,m);return;case`option`:for(var h in n)if(p=n[h],n.hasOwnProperty(h)&&p!=null&&!r.hasOwnProperty(h))switch(h){case`selected`:e.selected=!1;break;default:Pd(e,t,h,null,r,p)}for(l in r)if(p=r[l],m=n[l],r.hasOwnProperty(l)&&p!==m&&(p!=null||m!=null))switch(l){case`selected`:e.selected=p&&typeof p!=`function`&&typeof p!=`symbol`;break;default:Pd(e,t,l,p,r,m)}return;case`img`:case`link`:case`area`:case`base`:case`br`:case`col`:case`embed`:case`hr`:case`keygen`:case`meta`:case`param`:case`source`:case`track`:case`wbr`:case`menuitem`:for(var g in n)p=n[g],n.hasOwnProperty(g)&&p!=null&&!r.hasOwnProperty(g)&&Pd(e,t,g,null,r,p);for(u in r)if(p=r[u],m=n[u],r.hasOwnProperty(u)&&p!==m&&(p!=null||m!=null))switch(u){case`children`:case`dangerouslySetInnerHTML`:if(p!=null)throw Error(a(137,t));break;default:Pd(e,t,u,p,r,m)}return;default:if(Ut(t)){for(var _ in n)p=n[_],n.hasOwnProperty(_)&&p!==void 0&&!r.hasOwnProperty(_)&&Fd(e,t,_,void 0,r,p);for(d in r)p=r[d],m=n[d],!r.hasOwnProperty(d)||p===m||p===void 0&&m===void 0||Fd(e,t,d,p,r,m);return}}for(var v in n)p=n[v],n.hasOwnProperty(v)&&p!=null&&!r.hasOwnProperty(v)&&Pd(e,t,v,null,r,p);for(f in r)p=r[f],m=n[f],!r.hasOwnProperty(f)||p===m||p==null&&m==null||Pd(e,t,f,p,r,m)}function Rd(e){switch(e){case`css`:case`script`:case`font`:case`img`:case`image`:case`input`:case`link`:return!0;default:return!1}}function zd(){if(typeof performance.getEntriesByType==`function`){for(var e=0,t=0,n=performance.getEntriesByType(`resource`),r=0;r<n.length;r++){var i=n[r],a=i.transferSize,o=i.initiatorType,s=i.duration;if(a&&s&&Rd(o)){for(o=0,s=i.responseEnd,r+=1;r<n.length;r++){var c=n[r],l=c.startTime;if(l>s)break;var u=c.transferSize,d=c.initiatorType;u&&Rd(d)&&(c=c.responseEnd,o+=u*(c<s?1:(s-l)/(c-l)))}if(--r,t+=8*(a+o)/(i.duration/1e3),e++,10<e)break}}if(0<e)return t/e/1e6}return navigator.connection&&(e=navigator.connection.downlink,typeof e==`number`)?e:5}var Bd=null,Vd=null;function Hd(e){return e.nodeType===9?e:e.ownerDocument}function Ud(e){switch(e){case`http://www.w3.org/2000/svg`:return 1;case`http://www.w3.org/1998/Math/MathML`:return 2;default:return 0}}function Wd(e,t){if(e===0)switch(t){case`svg`:return 1;case`math`:return 2;default:return 0}return e===1&&t===`foreignObject`?0:e}function Gd(e,t){return e===`textarea`||e===`noscript`||typeof t.children==`string`||typeof t.children==`number`||typeof t.children==`bigint`||typeof t.dangerouslySetInnerHTML==`object`&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}var Kd=null;function qd(){var e=window.event;return e&&e.type===`popstate`?e===Kd?!1:(Kd=e,!0):(Kd=null,!1)}var Jd=typeof setTimeout==`function`?setTimeout:void 0,Yd=typeof clearTimeout==`function`?clearTimeout:void 0,Xd=typeof Promise==`function`?Promise:void 0,Zd=typeof queueMicrotask==`function`?queueMicrotask:Xd===void 0?Jd:function(e){return Xd.resolve(null).then(e).catch(Qd)};function Qd(e){setTimeout(function(){throw e})}function $d(e){return e===`head`}function ef(e,t){var n=t,r=0;do{var i=n.nextSibling;if(e.removeChild(n),i&&i.nodeType===8)if(n=i.data,n===`/$`||n===`/&`){if(r===0){e.removeChild(i),Fp(t);return}r--}else if(n===`$`||n===`$?`||n===`$~`||n===`$!`||n===`&`)r++;else if(n===`html`)hf(e.ownerDocument.documentElement);else if(n===`head`){n=e.ownerDocument.head,hf(n);for(var a=n.firstChild;a;){var o=a.nextSibling,s=a.nodeName;a[H]||s===`SCRIPT`||s===`STYLE`||s===`LINK`&&a.rel.toLowerCase()===`stylesheet`||n.removeChild(a),a=o}}else n===`body`&&hf(e.ownerDocument.body);n=i}while(n);Fp(t)}function tf(e,t){var n=e;e=0;do{var r=n.nextSibling;if(n.nodeType===1?t?(n._stashedDisplay=n.style.display,n.style.display=`none`):(n.style.display=n._stashedDisplay||``,n.getAttribute(`style`)===``&&n.removeAttribute(`style`)):n.nodeType===3&&(t?(n._stashedText=n.nodeValue,n.nodeValue=``):n.nodeValue=n._stashedText||``),r&&r.nodeType===8)if(n=r.data,n===`/$`){if(e===0)break;e--}else n!==`$`&&n!==`$?`&&n!==`$~`&&n!==`$!`||e++;n=r}while(n)}function nf(e){var t=e.firstChild;for(t&&t.nodeType===10&&(t=t.nextSibling);t;){var n=t;switch(t=t.nextSibling,n.nodeName){case`HTML`:case`HEAD`:case`BODY`:nf(n),U(n);continue;case`SCRIPT`:case`STYLE`:continue;case`LINK`:if(n.rel.toLowerCase()===`stylesheet`)continue}e.removeChild(n)}}function rf(e,t,n,r){for(;e.nodeType===1;){var i=n;if(e.nodeName.toLowerCase()!==t.toLowerCase()){if(!r&&(e.nodeName!==`INPUT`||e.type!==`hidden`))break}else if(!r)if(t===`input`&&e.type===`hidden`){var a=i.name==null?null:``+i.name;if(i.type===`hidden`&&e.getAttribute(`name`)===a)return e}else return e;else if(!e[H])switch(t){case`meta`:if(!e.hasAttribute(`itemprop`))break;return e;case`link`:if(a=e.getAttribute(`rel`),a===`stylesheet`&&e.hasAttribute(`data-precedence`)||a!==i.rel||e.getAttribute(`href`)!==(i.href==null||i.href===``?null:i.href)||e.getAttribute(`crossorigin`)!==(i.crossOrigin==null?null:i.crossOrigin)||e.getAttribute(`title`)!==(i.title==null?null:i.title))break;return e;case`style`:if(e.hasAttribute(`data-precedence`))break;return e;case`script`:if(a=e.getAttribute(`src`),(a!==(i.src==null?null:i.src)||e.getAttribute(`type`)!==(i.type==null?null:i.type)||e.getAttribute(`crossorigin`)!==(i.crossOrigin==null?null:i.crossOrigin))&&a&&e.hasAttribute(`async`)&&!e.hasAttribute(`itemprop`))break;return e;default:return e}if(e=uf(e.nextSibling),e===null)break}return null}function af(e,t,n){if(t===``)return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!==`INPUT`||e.type!==`hidden`)&&!n||(e=uf(e.nextSibling),e===null))return null;return e}function of(e,t){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!==`INPUT`||e.type!==`hidden`)&&!t||(e=uf(e.nextSibling),e===null))return null;return e}function sf(e){return e.data===`$?`||e.data===`$~`}function cf(e){return e.data===`$!`||e.data===`$?`&&e.ownerDocument.readyState!==`loading`}function lf(e,t){var n=e.ownerDocument;if(e.data===`$~`)e._reactRetry=t;else if(e.data!==`$?`||n.readyState!==`loading`)t();else{var r=function(){t(),n.removeEventListener(`DOMContentLoaded`,r)};n.addEventListener(`DOMContentLoaded`,r),e._reactRetry=r}}function uf(e){for(;e!=null;e=e.nextSibling){var t=e.nodeType;if(t===1||t===3)break;if(t===8){if(t=e.data,t===`$`||t===`$!`||t===`$?`||t===`$~`||t===`&`||t===`F!`||t===`F`)break;if(t===`/$`||t===`/&`)return null}}return e}var df=null;function ff(e){e=e.nextSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===`/$`||n===`/&`){if(t===0)return uf(e.nextSibling);t--}else n!==`$`&&n!==`$!`&&n!==`$?`&&n!==`$~`&&n!==`&`||t++}e=e.nextSibling}return null}function pf(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===`$`||n===`$!`||n===`$?`||n===`$~`||n===`&`){if(t===0)return e;t--}else n!==`/$`&&n!==`/&`||t++}e=e.previousSibling}return null}function mf(e,t,n){switch(t=Hd(n),e){case`html`:if(e=t.documentElement,!e)throw Error(a(452));return e;case`head`:if(e=t.head,!e)throw Error(a(453));return e;case`body`:if(e=t.body,!e)throw Error(a(454));return e;default:throw Error(a(451))}}function hf(e){for(var t=e.attributes;t.length;)e.removeAttributeNode(t[0]);U(e)}var gf=new Map,_f=new Set;function vf(e){return typeof e.getRootNode==`function`?e.getRootNode():e.nodeType===9?e:e.ownerDocument}var yf=M.d;M.d={f:bf,r:xf,D:wf,C:Tf,L:Ef,m:Df,X:kf,S:Of,M:Af};function bf(){var e=yf.f(),t=yu();return e||t}function xf(e){var t=ut(e);t!==null&&t.tag===5&&t.type===`form`?ys(t):yf.r(e)}var Sf=typeof document>`u`?null:document;function Cf(e,t,n){var r=Sf;if(r&&typeof t==`string`&&t){var i=Mt(t);i=`link[rel="`+e+`"][href="`+i+`"]`,typeof n==`string`&&(i+=`[crossorigin="`+n+`"]`),_f.has(i)||(_f.add(i),e={rel:e,crossOrigin:n,href:t},r.querySelector(i)===null&&(t=r.createElement(`link`),Id(t,`link`,e),ft(t),r.head.appendChild(t)))}}function wf(e){yf.D(e),Cf(`dns-prefetch`,e,null)}function Tf(e,t){yf.C(e,t),Cf(`preconnect`,e,t)}function Ef(e,t,n){yf.L(e,t,n);var r=Sf;if(r&&e&&t){var i=`link[rel="preload"][as="`+Mt(t)+`"]`;t===`image`&&n&&n.imageSrcSet?(i+=`[imagesrcset="`+Mt(n.imageSrcSet)+`"]`,typeof n.imageSizes==`string`&&(i+=`[imagesizes="`+Mt(n.imageSizes)+`"]`)):i+=`[href="`+Mt(e)+`"]`;var a=i;switch(t){case`style`:a=Mf(e);break;case`script`:a=If(e)}gf.has(a)||(e=p({rel:`preload`,href:t===`image`&&n&&n.imageSrcSet?void 0:e,as:t},n),gf.set(a,e),r.querySelector(i)!==null||t===`style`&&r.querySelector(Nf(a))||t===`script`&&r.querySelector(Lf(a))||(t=r.createElement(`link`),Id(t,`link`,e),ft(t),r.head.appendChild(t)))}}function Df(e,t){yf.m(e,t);var n=Sf;if(n&&e){var r=t&&typeof t.as==`string`?t.as:`script`,i=`link[rel="modulepreload"][as="`+Mt(r)+`"][href="`+Mt(e)+`"]`,a=i;switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:a=If(e)}if(!gf.has(a)&&(e=p({rel:`modulepreload`,href:e},t),gf.set(a,e),n.querySelector(i)===null)){switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:if(n.querySelector(Lf(a)))return}r=n.createElement(`link`),Id(r,`link`,e),ft(r),n.head.appendChild(r)}}}function Of(e,t,n){yf.S(e,t,n);var r=Sf;if(r&&e){var i=W(r).hoistableStyles,a=Mf(e);t||=`default`;var o=i.get(a);if(!o){var s={loading:0,preload:null};if(o=r.querySelector(Nf(a)))s.loading=5;else{e=p({rel:`stylesheet`,href:e,"data-precedence":t},n),(n=gf.get(a))&&Bf(e,n);var c=o=r.createElement(`link`);ft(c),Id(c,`link`,e),c._p=new Promise(function(e,t){c.onload=e,c.onerror=t}),c.addEventListener(`load`,function(){s.loading|=1}),c.addEventListener(`error`,function(){s.loading|=2}),s.loading|=4,zf(o,t,r)}o={type:`stylesheet`,instance:o,count:1,state:s},i.set(a,o)}}}function kf(e,t){yf.X(e,t);var n=Sf;if(n&&e){var r=W(n).hoistableScripts,i=If(e),a=r.get(i);a||(a=n.querySelector(Lf(i)),a||(e=p({src:e,async:!0},t),(t=gf.get(i))&&Vf(e,t),a=n.createElement(`script`),ft(a),Id(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function Af(e,t){yf.M(e,t);var n=Sf;if(n&&e){var r=W(n).hoistableScripts,i=If(e),a=r.get(i);a||(a=n.querySelector(Lf(i)),a||(e=p({src:e,async:!0,type:`module`},t),(t=gf.get(i))&&Vf(e,t),a=n.createElement(`script`),ft(a),Id(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function jf(e,t,n,r){var i=(i=de.current)?vf(i):null;if(!i)throw Error(a(446));switch(e){case`meta`:case`title`:return null;case`style`:return typeof n.precedence==`string`&&typeof n.href==`string`?(t=Mf(n.href),n=W(i).hoistableStyles,r=n.get(t),r||(r={type:`style`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};case`link`:if(n.rel===`stylesheet`&&typeof n.href==`string`&&typeof n.precedence==`string`){e=Mf(n.href);var o=W(i).hoistableStyles,s=o.get(e);if(s||(i=i.ownerDocument||i,s={type:`stylesheet`,instance:null,count:0,state:{loading:0,preload:null}},o.set(e,s),(o=i.querySelector(Nf(e)))&&!o._p&&(s.instance=o,s.state.loading=5),gf.has(e)||(n={rel:`preload`,as:`style`,href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy},gf.set(e,n),o||Ff(i,e,n,s.state))),t&&r===null)throw Error(a(528,``));return s}if(t&&r!==null)throw Error(a(529,``));return null;case`script`:return t=n.async,n=n.src,typeof n==`string`&&t&&typeof t!=`function`&&typeof t!=`symbol`?(t=If(n),n=W(i).hoistableScripts,r=n.get(t),r||(r={type:`script`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};default:throw Error(a(444,e))}}function Mf(e){return`href="`+Mt(e)+`"`}function Nf(e){return`link[rel="stylesheet"][`+e+`]`}function Pf(e){return p({},e,{"data-precedence":e.precedence,precedence:null})}function Ff(e,t,n,r){e.querySelector(`link[rel="preload"][as="style"][`+t+`]`)?r.loading=1:(t=e.createElement(`link`),r.preload=t,t.addEventListener(`load`,function(){return r.loading|=1}),t.addEventListener(`error`,function(){return r.loading|=2}),Id(t,`link`,n),ft(t),e.head.appendChild(t))}function If(e){return`[src="`+Mt(e)+`"]`}function Lf(e){return`script[async]`+e}function Rf(e,t,n){if(t.count++,t.instance===null)switch(t.type){case`style`:var r=e.querySelector(`style[data-href~="`+Mt(n.href)+`"]`);if(r)return t.instance=r,ft(r),r;var i=p({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return r=(e.ownerDocument||e).createElement(`style`),ft(r),Id(r,`style`,i),zf(r,n.precedence,e),t.instance=r;case`stylesheet`:i=Mf(n.href);var o=e.querySelector(Nf(i));if(o)return t.state.loading|=4,t.instance=o,ft(o),o;r=Pf(n),(i=gf.get(i))&&Bf(r,i),o=(e.ownerDocument||e).createElement(`link`),ft(o);var s=o;return s._p=new Promise(function(e,t){s.onload=e,s.onerror=t}),Id(o,`link`,r),t.state.loading|=4,zf(o,n.precedence,e),t.instance=o;case`script`:return o=If(n.src),(i=e.querySelector(Lf(o)))?(t.instance=i,ft(i),i):(r=n,(i=gf.get(o))&&(r=p({},n),Vf(r,i)),e=e.ownerDocument||e,i=e.createElement(`script`),ft(i),Id(i,`link`,r),e.head.appendChild(i),t.instance=i);case`void`:return null;default:throw Error(a(443,t.type))}else t.type===`stylesheet`&&!(t.state.loading&4)&&(r=t.instance,t.state.loading|=4,zf(r,n.precedence,e));return t.instance}function zf(e,t,n){for(var r=n.querySelectorAll(`link[rel="stylesheet"][data-precedence],style[data-precedence]`),i=r.length?r[r.length-1]:null,a=i,o=0;o<r.length;o++){var s=r[o];if(s.dataset.precedence===t)a=s;else if(a!==i)break}a?a.parentNode.insertBefore(e,a.nextSibling):(t=n.nodeType===9?n.head:n,t.insertBefore(e,t.firstChild))}function Bf(e,t){e.crossOrigin??=t.crossOrigin,e.referrerPolicy??=t.referrerPolicy,e.title??=t.title}function Vf(e,t){e.crossOrigin??=t.crossOrigin,e.referrerPolicy??=t.referrerPolicy,e.integrity??=t.integrity}var Hf=null;function Uf(e,t,n){if(Hf===null){var r=new Map,i=Hf=new Map;i.set(n,r)}else i=Hf,r=i.get(n),r||(r=new Map,i.set(n,r));if(r.has(e))return r;for(r.set(e,null),n=n.getElementsByTagName(e),i=0;i<n.length;i++){var a=n[i];if(!(a[H]||a[V]||e===`link`&&a.getAttribute(`rel`)===`stylesheet`)&&a.namespaceURI!==`http://www.w3.org/2000/svg`){var o=a.getAttribute(t)||``;o=e+o;var s=r.get(o);s?s.push(a):r.set(o,[a])}}return r}function Wf(e,t,n){e=e.ownerDocument||e,e.head.insertBefore(n,t===`title`?e.querySelector(`head > title`):null)}function Gf(e,t,n){if(n===1||t.itemProp!=null)return!1;switch(e){case`meta`:case`title`:return!0;case`style`:if(typeof t.precedence!=`string`||typeof t.href!=`string`||t.href===``)break;return!0;case`link`:if(typeof t.rel!=`string`||typeof t.href!=`string`||t.href===``||t.onLoad||t.onError)break;switch(t.rel){case`stylesheet`:return e=t.disabled,typeof t.precedence==`string`&&e==null;default:return!0}case`script`:if(t.async&&typeof t.async!=`function`&&typeof t.async!=`symbol`&&!t.onLoad&&!t.onError&&t.src&&typeof t.src==`string`)return!0}return!1}function Kf(e){return!(e.type===`stylesheet`&&!(e.state.loading&3))}function qf(e,t,n,r){if(n.type===`stylesheet`&&(typeof r.media!=`string`||!1!==matchMedia(r.media).matches)&&!(n.state.loading&4)){if(n.instance===null){var i=Mf(r.href),a=t.querySelector(Nf(i));if(a){t=a._p,typeof t==`object`&&t&&typeof t.then==`function`&&(e.count++,e=Xf.bind(e),t.then(e,e)),n.state.loading|=4,n.instance=a,ft(a);return}a=t.ownerDocument||t,r=Pf(r),(i=gf.get(i))&&Bf(r,i),a=a.createElement(`link`),ft(a);var o=a;o._p=new Promise(function(e,t){o.onload=e,o.onerror=t}),Id(a,`link`,r),n.instance=a}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&!(n.state.loading&3)&&(e.count++,n=Xf.bind(e),t.addEventListener(`load`,n),t.addEventListener(`error`,n))}}var Jf=0;function Yf(e,t){return e.stylesheets&&e.count===0&&Qf(e,e.stylesheets),0<e.count||0<e.imgCount?function(n){var r=setTimeout(function(){if(e.stylesheets&&Qf(e,e.stylesheets),e.unsuspend){var t=e.unsuspend;e.unsuspend=null,t()}},6e4+t);0<e.imgBytes&&Jf===0&&(Jf=62500*zd());var i=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Qf(e,e.stylesheets),e.unsuspend)){var t=e.unsuspend;e.unsuspend=null,t()}},(e.imgBytes>Jf?50:800)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(r),clearTimeout(i)}}:null}function Xf(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Qf(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var Zf=null;function Qf(e,t){e.stylesheets=null,e.unsuspend!==null&&(e.count++,Zf=new Map,t.forEach($f,e),Zf=null,Xf.call(e))}function $f(e,t){if(!(t.state.loading&4)){var n=Zf.get(e);if(n)var r=n.get(null);else{n=new Map,Zf.set(e,n);for(var i=e.querySelectorAll(`link[data-precedence],style[data-precedence]`),a=0;a<i.length;a++){var o=i[a];(o.nodeName===`LINK`||o.getAttribute(`media`)!==`not all`)&&(n.set(o.dataset.precedence,o),r=o)}r&&n.set(null,r)}i=t.instance,o=i.getAttribute(`data-precedence`),a=n.get(o)||r,a===r&&n.set(null,i),n.set(o,i),this.count++,r=Xf.bind(this),i.addEventListener(`load`,r),i.addEventListener(`error`,r),a?a.parentNode.insertBefore(i,a.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(i,e.firstChild)),t.state.loading|=4}}var ep={$$typeof:x,Provider:null,Consumer:null,_currentValue:ie,_currentValue2:ie,_threadCount:0};function tp(e,t,n,r,i,a,o,s,c){this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Ze(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ze(0),this.hiddenUpdates=Ze(null),this.identifierPrefix=r,this.onUncaughtError=i,this.onCaughtError=a,this.onRecoverableError=o,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=c,this.incompleteTransitions=new Map}function np(e,t,n,r,i,a,o,s,c,l,u,d){return e=new tp(e,t,n,o,c,l,u,d,s),t=1,!0===a&&(t|=24),a=Qr(3,null,null,t),e.current=a,a.stateNode=e,t=Qi(),t.refCount++,e.pooledCache=t,t.refCount++,a.memoizedState={element:r,isDehydrated:n,cache:t},ja(a),e}function rp(e){return e?(e=Xr,e):Xr}function ip(e,t,n,r,i,a){i=rp(i),r.context===null?r.context=i:r.pendingContext=i,r=Na(t),r.payload={element:n},a=a===void 0?null:a,a!==null&&(r.callback=a),n=Pa(e,r,t),n!==null&&(mu(n,e,t),Fa(n,e,t))}function ap(e,t){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var n=e.retryLane;e.retryLane=n!==0&&n<t?n:t}}function op(e,t){ap(e,t),(e=e.alternate)&&ap(e,t)}function sp(e){if(e.tag===13||e.tag===31){var t=Yr(e,67108864);t!==null&&mu(t,e,67108864),op(e,67108864)}}function cp(e){if(e.tag===13||e.tag===31){var t=fu();t=L(t);var n=Yr(e,t);n!==null&&mu(n,e,t),op(e,t)}}var lp=!0;function up(e,t,n,r){var i=j.T;j.T=null;var a=M.p;try{M.p=2,fp(e,t,n,r)}finally{M.p=a,j.T=i}}function dp(e,t,n,r){var i=j.T;j.T=null;var a=M.p;try{M.p=8,fp(e,t,n,r)}finally{M.p=a,j.T=i}}function fp(e,t,n,r){if(lp){var i=pp(r);if(i===null)Td(e,t,r,mp,n),Tp(e,r);else if(Dp(i,e,t,n,r))r.stopPropagation();else if(Tp(e,r),t&4&&-1<wp.indexOf(e)){for(;i!==null;){var a=ut(i);if(a!==null)switch(a.tag){case 3:if(a=a.stateNode,a.current.memoizedState.isDehydrated){var o=Ke(a.pendingLanes);if(o!==0){var s=a;for(s.pendingLanes|=2,s.entangledLanes|=2;o;){var c=1<<31-ze(o);s.entanglements[1]|=c,o&=~c}rd(a),!(Nl&6)&&(eu=Oe()+500,id(0,!1))}}break;case 31:case 13:s=Yr(a,2),s!==null&&mu(s,a,2),yu(),op(a,2)}if(a=pp(r),a===null&&Td(e,t,r,mp,n),a===i)break;i=a}i!==null&&r.stopPropagation()}else Td(e,t,r,null,n)}}function pp(e){return e=Yt(e),hp(e)}var mp=null;function hp(e){if(mp=null,e=lt(e),e!==null){var t=s(e);if(t===null)e=null;else{var n=t.tag;if(n===13){if(e=c(t),e!==null)return e;e=null}else if(n===31){if(e=l(t),e!==null)return e;e=null}else if(n===3){if(t.stateNode.current.memoizedState.isDehydrated)return t.tag===3?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null)}}return mp=e,null}function gp(e){switch(e){case`beforetoggle`:case`cancel`:case`click`:case`close`:case`contextmenu`:case`copy`:case`cut`:case`auxclick`:case`dblclick`:case`dragend`:case`dragstart`:case`drop`:case`focusin`:case`focusout`:case`input`:case`invalid`:case`keydown`:case`keypress`:case`keyup`:case`mousedown`:case`mouseup`:case`paste`:case`pause`:case`play`:case`pointercancel`:case`pointerdown`:case`pointerup`:case`ratechange`:case`reset`:case`resize`:case`seeked`:case`submit`:case`toggle`:case`touchcancel`:case`touchend`:case`touchstart`:case`volumechange`:case`change`:case`selectionchange`:case`textInput`:case`compositionstart`:case`compositionend`:case`compositionupdate`:case`beforeblur`:case`afterblur`:case`beforeinput`:case`blur`:case`fullscreenchange`:case`focus`:case`hashchange`:case`popstate`:case`select`:case`selectstart`:return 2;case`drag`:case`dragenter`:case`dragexit`:case`dragleave`:case`dragover`:case`mousemove`:case`mouseout`:case`mouseover`:case`pointermove`:case`pointerout`:case`pointerover`:case`scroll`:case`touchmove`:case`wheel`:case`mouseenter`:case`mouseleave`:case`pointerenter`:case`pointerleave`:return 8;case`message`:switch(ke()){case Ae:return 2;case je:return 8;case Me:case Ne:return 32;case Pe:return 268435456;default:return 32}default:return 32}}var _p=!1,vp=null,yp=null,bp=null,xp=new Map,Sp=new Map,Cp=[],wp=`mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset`.split(` `);function Tp(e,t){switch(e){case`focusin`:case`focusout`:vp=null;break;case`dragenter`:case`dragleave`:yp=null;break;case`mouseover`:case`mouseout`:bp=null;break;case`pointerover`:case`pointerout`:xp.delete(t.pointerId);break;case`gotpointercapture`:case`lostpointercapture`:Sp.delete(t.pointerId)}}function Ep(e,t,n,r,i,a){return e===null||e.nativeEvent!==a?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:a,targetContainers:[i]},t!==null&&(t=ut(t),t!==null&&sp(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,i!==null&&t.indexOf(i)===-1&&t.push(i),e)}function Dp(e,t,n,r,i){switch(t){case`focusin`:return vp=Ep(vp,e,t,n,r,i),!0;case`dragenter`:return yp=Ep(yp,e,t,n,r,i),!0;case`mouseover`:return bp=Ep(bp,e,t,n,r,i),!0;case`pointerover`:var a=i.pointerId;return xp.set(a,Ep(xp.get(a)||null,e,t,n,r,i)),!0;case`gotpointercapture`:return a=i.pointerId,Sp.set(a,Ep(Sp.get(a)||null,e,t,n,r,i)),!0}return!1}function Op(e){var t=lt(e.target);if(t!==null){var n=s(t);if(n!==null){if(t=n.tag,t===13){if(t=c(n),t!==null){e.blockedOn=t,z(e.priority,function(){cp(n)});return}}else if(t===31){if(t=l(n),t!==null){e.blockedOn=t,z(e.priority,function(){cp(n)});return}}else if(t===3&&n.stateNode.current.memoizedState.isDehydrated){e.blockedOn=n.tag===3?n.stateNode.containerInfo:null;return}}}e.blockedOn=null}function kp(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;0<t.length;){var n=pp(e.nativeEvent);if(n===null){n=e.nativeEvent;var r=new n.constructor(n.type,n);Jt=r,n.target.dispatchEvent(r),Jt=null}else return t=ut(n),t!==null&&sp(t),e.blockedOn=n,!1;t.shift()}return!0}function Ap(e,t,n){kp(e)&&n.delete(t)}function jp(){_p=!1,vp!==null&&kp(vp)&&(vp=null),yp!==null&&kp(yp)&&(yp=null),bp!==null&&kp(bp)&&(bp=null),xp.forEach(Ap),Sp.forEach(Ap)}function Mp(e,n){e.blockedOn===n&&(e.blockedOn=null,_p||(_p=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,jp)))}var Np=null;function Pp(e){Np!==e&&(Np=e,t.unstable_scheduleCallback(t.unstable_NormalPriority,function(){Np===e&&(Np=null);for(var t=0;t<e.length;t+=3){var n=e[t],r=e[t+1],i=e[t+2];if(typeof r!=`function`){if(hp(r||n)===null)continue;break}var a=ut(n);a!==null&&(e.splice(t,3),t-=3,_s(a,{pending:!0,data:i,method:n.method,action:r},r,i))}}))}function Fp(e){function t(t){return Mp(t,e)}vp!==null&&Mp(vp,e),yp!==null&&Mp(yp,e),bp!==null&&Mp(bp,e),xp.forEach(t),Sp.forEach(t);for(var n=0;n<Cp.length;n++){var r=Cp[n];r.blockedOn===e&&(r.blockedOn=null)}for(;0<Cp.length&&(n=Cp[0],n.blockedOn===null);)Op(n),n.blockedOn===null&&Cp.shift();if(n=(e.ownerDocument||e).$$reactFormReplay,n!=null)for(r=0;r<n.length;r+=3){var i=n[r],a=n[r+1],o=i[rt]||null;if(typeof a==`function`)o||Pp(n);else if(o){var s=null;if(a&&a.hasAttribute(`formAction`)){if(i=a,o=a[rt]||null)s=o.formAction;else if(hp(i)!==null)continue}else s=o.action;typeof s==`function`?n[r+1]=s:(n.splice(r,3),r-=3),Pp(n)}}}function Ip(){function e(e){e.canIntercept&&e.info===`react-transition`&&e.intercept({handler:function(){return new Promise(function(e){return i=e})},focusReset:`manual`,scroll:`manual`})}function t(){i!==null&&(i(),i=null),r||setTimeout(n,20)}function n(){if(!r&&!navigation.transition){var e=navigation.currentEntry;e&&e.url!=null&&navigation.navigate(e.url,{state:e.getState(),info:`react-transition`,history:`replace`})}}if(typeof navigation==`object`){var r=!1,i=null;return navigation.addEventListener(`navigate`,e),navigation.addEventListener(`navigatesuccess`,t),navigation.addEventListener(`navigateerror`,t),setTimeout(n,100),function(){r=!0,navigation.removeEventListener(`navigate`,e),navigation.removeEventListener(`navigatesuccess`,t),navigation.removeEventListener(`navigateerror`,t),i!==null&&(i(),i=null)}}}function Lp(e){this._internalRoot=e}Rp.prototype.render=Lp.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw Error(a(409));var n=t.current;ip(n,fu(),e,t,null,null)},Rp.prototype.unmount=Lp.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var t=e.containerInfo;ip(e.current,2,null,e,null,null),yu(),t[it]=null}};function Rp(e){this._internalRoot=e}Rp.prototype.unstable_scheduleHydration=function(e){if(e){var t=nt();e={blockedOn:null,target:e,priority:t};for(var n=0;n<Cp.length&&t!==0&&t<Cp[n].priority;n++);Cp.splice(n,0,e),n===0&&Op(e)}};var zp=n.version;if(zp!==`19.2.4`)throw Error(a(527,zp,`19.2.4`));M.findDOMNode=function(e){var t=e._reactInternals;if(t===void 0)throw typeof e.render==`function`?Error(a(188)):(e=Object.keys(e).join(`,`),Error(a(268,e)));return e=d(t),e=e===null?null:f(e),e=e===null?null:e.stateNode,e};var Bp={bundleType:0,version:`19.2.4`,rendererPackageName:`react-dom`,currentDispatcherRef:j,reconcilerVersion:`19.2.4`};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<`u`){var Vp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Vp.isDisabled&&Vp.supportsFiber)try{F=Vp.inject(Bp),Le=Vp}catch{}}e.createRoot=function(e,t){if(!o(e))throw Error(a(299));var n=!1,r=``,i=Bs,s=Vs,c=Hs;return t!=null&&(!0===t.unstable_strictMode&&(n=!0),t.identifierPrefix!==void 0&&(r=t.identifierPrefix),t.onUncaughtError!==void 0&&(i=t.onUncaughtError),t.onCaughtError!==void 0&&(s=t.onCaughtError),t.onRecoverableError!==void 0&&(c=t.onRecoverableError)),t=np(e,1,!1,null,null,n,r,null,i,s,c,Ip),e[it]=t.current,Cd(e),new Lp(t)}})),Ot=n(((e,t)=>{function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>`u`||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=`function`))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}n(),t.exports=Dt()})),kt=P(`arrow-down-a-z`,[[`path`,{d:`m3 16 4 4 4-4`,key:`1co6wj`}],[`path`,{d:`M7 20V4`,key:`1yoxec`}],[`path`,{d:`M20 8h-5`,key:`1vsyxs`}],[`path`,{d:`M15 10V6.5a2.5 2.5 0 0 1 5 0V10`,key:`ag13bf`}],[`path`,{d:`M15 14h5l-5 6h5`,key:`ur5jdg`}]]),At=P(`arrow-down-up`,[[`path`,{d:`m3 16 4 4 4-4`,key:`1co6wj`}],[`path`,{d:`M7 20V4`,key:`1yoxec`}],[`path`,{d:`m21 8-4-4-4 4`,key:`1c9v7m`}],[`path`,{d:`M17 4v16`,key:`7dpous`}]]),jt=P(`arrow-down-to-line`,[[`path`,{d:`M12 17V3`,key:`1cwfxf`}],[`path`,{d:`m6 11 6 6 6-6`,key:`12ii2o`}],[`path`,{d:`M19 21H5`,key:`150jfl`}]]),Mt=P(`arrow-down`,[[`path`,{d:`M12 5v14`,key:`s699le`}],[`path`,{d:`m19 12-7 7-7-7`,key:`1idqje`}]]),Nt=P(`arrow-up-from-line`,[[`path`,{d:`m18 9-6-6-6 6`,key:`kcunyi`}],[`path`,{d:`M12 3v14`,key:`7cf3v8`}],[`path`,{d:`M5 21h14`,key:`11awu3`}]]),Pt=P(`arrow-up`,[[`path`,{d:`m5 12 7-7 7 7`,key:`hav0vg`}],[`path`,{d:`M12 19V5`,key:`x0mq9r`}]]),Ft=P(`bell-off`,[[`path`,{d:`M10.268 21a2 2 0 0 0 3.464 0`,key:`vwvbt9`}],[`path`,{d:`M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742`,key:`178tsu`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}],[`path`,{d:`M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05`,key:`1hqiys`}]]),It=P(`bell-ring`,[[`path`,{d:`M10.268 21a2 2 0 0 0 3.464 0`,key:`vwvbt9`}],[`path`,{d:`M22 8c0-2.3-.8-4.3-2-6`,key:`5bb3ad`}],[`path`,{d:`M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326`,key:`11g9vi`}],[`path`,{d:`M4 2C2.8 3.7 2 5.7 2 8`,key:`tap9e0`}]]),Lt=P(`bell`,[[`path`,{d:`M10.268 21a2 2 0 0 0 3.464 0`,key:`vwvbt9`}],[`path`,{d:`M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326`,key:`11g9vi`}]]),Rt=P(`bot-message-square`,[[`path`,{d:`M12 6V2H8`,key:`1155em`}],[`path`,{d:`M15 11v2`,key:`i11awn`}],[`path`,{d:`M2 12h2`,key:`1t8f8n`}],[`path`,{d:`M20 12h2`,key:`1q8mjw`}],[`path`,{d:`M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z`,key:`11gyqh`}],[`path`,{d:`M9 11v2`,key:`1ueba0`}]]),zt=P(`bug`,[[`path`,{d:`M12 20v-9`,key:`1qisl0`}],[`path`,{d:`M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z`,key:`uouzyp`}],[`path`,{d:`M14.12 3.88 16 2`,key:`qol33r`}],[`path`,{d:`M21 21a4 4 0 0 0-3.81-4`,key:`1b0z45`}],[`path`,{d:`M21 5a4 4 0 0 1-3.55 3.97`,key:`5cxbf6`}],[`path`,{d:`M22 13h-4`,key:`1jl80f`}],[`path`,{d:`M3 21a4 4 0 0 1 3.81-4`,key:`1fjd4g`}],[`path`,{d:`M3 5a4 4 0 0 0 3.55 3.97`,key:`1d7oge`}],[`path`,{d:`M6 13H2`,key:`82j7cp`}],[`path`,{d:`m8 2 1.88 1.88`,key:`fmnt4t`}],[`path`,{d:`M9 7.13V6a3 3 0 1 1 6 0v1.13`,key:`1vgav8`}]]),Bt=P(`calendar-clock`,[[`path`,{d:`M16 14v2.2l1.6 1`,key:`fo4ql5`}],[`path`,{d:`M16 2v4`,key:`4m81vk`}],[`path`,{d:`M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5`,key:`1osxxc`}],[`path`,{d:`M3 10h5`,key:`r794hk`}],[`path`,{d:`M8 2v4`,key:`1cmpym`}],[`circle`,{cx:`16`,cy:`16`,r:`6`,key:`qoo3c4`}]]),Vt=P(`calendar-x-2`,[[`path`,{d:`M8 2v4`,key:`1cmpym`}],[`path`,{d:`M16 2v4`,key:`4m81vk`}],[`path`,{d:`M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8`,key:`3spt84`}],[`path`,{d:`M3 10h18`,key:`8toen8`}],[`path`,{d:`m17 22 5-5`,key:`1k6ppv`}],[`path`,{d:`m17 17 5 5`,key:`p7ous7`}]]),Ht=P(`case-sensitive`,[[`path`,{d:`m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16`,key:`d5nyq2`}],[`path`,{d:`M22 9v7`,key:`pvm9v3`}],[`path`,{d:`M3.304 13h6.392`,key:`1q3zxz`}],[`circle`,{cx:`18.5`,cy:`12.5`,r:`3.5`,key:`z97x68`}]]),Ut=P(`chevron-left`,[[`path`,{d:`m15 18-6-6 6-6`,key:`1wnfg3`}]]),Wt=P(`chevron-up`,[[`path`,{d:`m18 15-6-6-6 6`,key:`153udz`}]]),Gt=P(`chevrons-down-up`,[[`path`,{d:`m7 20 5-5 5 5`,key:`13a0gw`}],[`path`,{d:`m7 4 5 5 5-5`,key:`1kwcof`}]]),Kt=P(`chevrons-right`,[[`path`,{d:`m6 17 5-5-5-5`,key:`xnjwq`}],[`path`,{d:`m13 17 5-5-5-5`,key:`17xmmf`}]]),qt=P(`chevrons-up-down`,[[`path`,{d:`m7 15 5 5 5-5`,key:`1hf1tw`}],[`path`,{d:`m7 9 5-5 5 5`,key:`sgt6xg`}]]),Jt=P(`circle-alert`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`12`,x2:`12`,y1:`8`,y2:`12`,key:`1pkeuh`}],[`line`,{x1:`12`,x2:`12.01`,y1:`16`,y2:`16`,key:`4dfq90`}]]),Yt=P(`circle-check-big`,[[`path`,{d:`M21.801 10A10 10 0 1 1 17 3.335`,key:`yps3ct`}],[`path`,{d:`m9 11 3 3L22 4`,key:`1pflzl`}]]),Xt=P(`circle-arrow-up`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`m16 12-4-4-4 4`,key:`177agl`}],[`path`,{d:`M12 16V8`,key:`1sbj14`}]]),Zt=P(`circle-check`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),Qt=P(`circle`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}]]),$t=P(`clipboard-paste`,[[`path`,{d:`M11 14h10`,key:`1w8e9d`}],[`path`,{d:`M16 4h2a2 2 0 0 1 2 2v1.344`,key:`1e62lh`}],[`path`,{d:`m17 18 4-4-4-4`,key:`z2g111`}],[`path`,{d:`M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113`,key:`bjbb7m`}],[`rect`,{x:`8`,y:`2`,width:`8`,height:`4`,rx:`1`,key:`ublpy`}]]),en=P(`clipboard`,[[`rect`,{width:`8`,height:`4`,x:`8`,y:`2`,rx:`1`,ry:`1`,key:`tgr4d6`}],[`path`,{d:`M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2`,key:`116196`}]]),tn=P(`cloud`,[[`path`,{d:`M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z`,key:`p7xjir`}]]),nn=P(`coffee`,[[`path`,{d:`M10 2v2`,key:`7u0qdc`}],[`path`,{d:`M14 2v2`,key:`6buw04`}],[`path`,{d:`M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1`,key:`pwadti`}],[`path`,{d:`M6 2v2`,key:`colzsn`}]]),rn=P(`copy`,[[`rect`,{width:`14`,height:`14`,x:`8`,y:`8`,rx:`2`,ry:`2`,key:`17jyea`}],[`path`,{d:`M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2`,key:`zix9uf`}]]),an=P(`cpu`,[[`path`,{d:`M12 20v2`,key:`1lh1kg`}],[`path`,{d:`M12 2v2`,key:`tus03m`}],[`path`,{d:`M17 20v2`,key:`1rnc9c`}],[`path`,{d:`M17 2v2`,key:`11trls`}],[`path`,{d:`M2 12h2`,key:`1t8f8n`}],[`path`,{d:`M2 17h2`,key:`7oei6x`}],[`path`,{d:`M2 7h2`,key:`asdhe0`}],[`path`,{d:`M20 12h2`,key:`1q8mjw`}],[`path`,{d:`M20 17h2`,key:`1fpfkl`}],[`path`,{d:`M20 7h2`,key:`1o8tra`}],[`path`,{d:`M7 20v2`,key:`4gnj0m`}],[`path`,{d:`M7 2v2`,key:`1i4yhu`}],[`rect`,{x:`4`,y:`4`,width:`16`,height:`16`,rx:`2`,key:`1vbyd7`}],[`rect`,{x:`8`,y:`8`,width:`8`,height:`8`,rx:`1`,key:`z9xiuo`}]]),on=P(`crosshair`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`22`,x2:`18`,y1:`12`,y2:`12`,key:`l9bcsi`}],[`line`,{x1:`6`,x2:`2`,y1:`12`,y2:`12`,key:`13hhkx`}],[`line`,{x1:`12`,x2:`12`,y1:`6`,y2:`2`,key:`10w3f3`}],[`line`,{x1:`12`,x2:`12`,y1:`22`,y2:`18`,key:`15g9kq`}]]),sn=P(`database-zap`,[[`ellipse`,{cx:`12`,cy:`5`,rx:`9`,ry:`3`,key:`msslwz`}],[`path`,{d:`M3 5V19A9 3 0 0 0 15 21.84`,key:`14ibmq`}],[`path`,{d:`M21 5V8`,key:`1marbg`}],[`path`,{d:`M21 12L18 17H22L19 22`,key:`zafso`}],[`path`,{d:`M3 12A9 3 0 0 0 14.59 14.87`,key:`1y4wr8`}]]),cn=P(`ellipsis-vertical`,[[`circle`,{cx:`12`,cy:`12`,r:`1`,key:`41hilf`}],[`circle`,{cx:`12`,cy:`5`,r:`1`,key:`gxeob9`}],[`circle`,{cx:`12`,cy:`19`,r:`1`,key:`lyex9k`}]]),ln=P(`ellipsis`,[[`circle`,{cx:`12`,cy:`12`,r:`1`,key:`41hilf`}],[`circle`,{cx:`19`,cy:`12`,r:`1`,key:`1wjl8i`}],[`circle`,{cx:`5`,cy:`12`,r:`1`,key:`1pcz8c`}]]),un=P(`external-link`,[[`path`,{d:`M15 3h6v6`,key:`1q9fwt`}],[`path`,{d:`M10 14 21 3`,key:`gplh6r`}],[`path`,{d:`M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6`,key:`a6xqqp`}]]),dn=P(`file-archive`,[[`path`,{d:`M13.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v11.5`,key:`4pqfef`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M8 12v-1`,key:`1ej8lb`}],[`path`,{d:`M8 18v-2`,key:`qcmpov`}],[`path`,{d:`M8 7V6`,key:`1nbb54`}],[`circle`,{cx:`8`,cy:`20`,r:`2`,key:`ckkr5m`}]]),fn=P(`file-braces`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1`,key:`1oajmo`}],[`path`,{d:`M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1`,key:`mpwhp6`}]]),G=P(`file-code`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M10 12.5 8 15l2 2.5`,key:`1tg20x`}],[`path`,{d:`m14 12.5 2 2.5-2 2.5`,key:`yinavb`}]]),pn=P(`file-diff`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M9 10h6`,key:`9gxzsh`}],[`path`,{d:`M12 13V7`,key:`h0r20n`}],[`path`,{d:`M9 17h6`,key:`r8uit2`}]]),mn=P(`file-headphone`,[[`path`,{d:`M4 6.835V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-.343`,key:`1vfytu`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M2 19a2 2 0 0 1 4 0v1a2 2 0 0 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 0 1-4 0v-1a2 2 0 0 1 4 0`,key:`1etmh7`}]]),hn=P(`file-image`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`circle`,{cx:`10`,cy:`12`,r:`2`,key:`737tya`}],[`path`,{d:`m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22`,key:`wt3hpn`}]]),gn=P(`file-play`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z`,key:`1tzo1f`}]]),_n=P(`file-plus`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M9 15h6`,key:`cctwl0`}],[`path`,{d:`M12 18v-6`,key:`17g6i2`}]]),vn=P(`file-spreadsheet`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M8 13h2`,key:`yr2amv`}],[`path`,{d:`M14 13h2`,key:`un5t4a`}],[`path`,{d:`M8 17h2`,key:`2yhykz`}],[`path`,{d:`M14 17h2`,key:`10kma7`}]]),yn=P(`file-text`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M10 9H8`,key:`b1mrlr`}],[`path`,{d:`M16 13H8`,key:`t4e002`}],[`path`,{d:`M16 17H8`,key:`z1uh3a`}]]),bn=P(`file-type`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M11 18h2`,key:`12mj7e`}],[`path`,{d:`M12 12v6`,key:`3ahymv`}],[`path`,{d:`M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5`,key:`qbrxap`}]]),xn=P(`file`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}]]),Sn=P(`flask-conical`,[[`path`,{d:`M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2`,key:`18mbvz`}],[`path`,{d:`M6.453 15h11.094`,key:`3shlmq`}],[`path`,{d:`M8.5 2h7`,key:`csnxdl`}]]),Cn=P(`folder-open`,[[`path`,{d:`m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2`,key:`usdka0`}]]),wn=P(`folder-plus`,[[`path`,{d:`M12 10v6`,key:`1bos4e`}],[`path`,{d:`M9 13h6`,key:`1uhe8q`}],[`path`,{d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z`,key:`1kt360`}]]),Tn=P(`folder-search`,[[`path`,{d:`M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1`,key:`1bw5m7`}],[`path`,{d:`m21 21-1.9-1.9`,key:`1g2n9r`}],[`circle`,{cx:`17`,cy:`17`,r:`3`,key:`18b49y`}]]),En=P(`folder-symlink`,[[`path`,{d:`M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7`,key:`y8kt7d`}],[`path`,{d:`m8 16 3-3-3-3`,key:`rlqrt1`}]]),Dn=P(`folder-tree`,[[`path`,{d:`M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z`,key:`hod4my`}],[`path`,{d:`M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z`,key:`w4yl2u`}],[`path`,{d:`M3 5a2 2 0 0 0 2 2h3`,key:`f2jnh7`}],[`path`,{d:`M3 3v13a2 2 0 0 0 2 2h3`,key:`k8epm1`}]]),On=P(`folder`,[[`path`,{d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z`,key:`1kt360`}]]),kn=P(`git-branch`,[[`path`,{d:`M15 6a9 9 0 0 0-9 9V3`,key:`1cii5b`}],[`circle`,{cx:`18`,cy:`6`,r:`3`,key:`1h7g24`}],[`circle`,{cx:`6`,cy:`18`,r:`3`,key:`fqmcym`}]]),An=P(`git-commit-horizontal`,[[`circle`,{cx:`12`,cy:`12`,r:`3`,key:`1v7zrd`}],[`line`,{x1:`3`,x2:`9`,y1:`12`,y2:`12`,key:`1dyftd`}],[`line`,{x1:`15`,x2:`21`,y1:`12`,y2:`12`,key:`oup4p8`}]]),jn=P(`github`,[[`path`,{d:`M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4`,key:`tonef`}],[`path`,{d:`M9 18c-4.51 2-5-2-7-2`,key:`9comsn`}]]),Mn=P(`grid-2x2`,[[`path`,{d:`M12 3v18`,key:`108xh3`}],[`path`,{d:`M3 12h18`,key:`1i2n21`}],[`rect`,{x:`3`,y:`3`,width:`18`,height:`18`,rx:`2`,key:`h1oib`}]]),Nn=P(`grip-horizontal`,[[`circle`,{cx:`12`,cy:`9`,r:`1`,key:`124mty`}],[`circle`,{cx:`19`,cy:`9`,r:`1`,key:`1ruzo2`}],[`circle`,{cx:`5`,cy:`9`,r:`1`,key:`1a8b28`}],[`circle`,{cx:`12`,cy:`15`,r:`1`,key:`1e56xg`}],[`circle`,{cx:`19`,cy:`15`,r:`1`,key:`1a92ep`}],[`circle`,{cx:`5`,cy:`15`,r:`1`,key:`5r1jwy`}]]),Pn=P(`grip-vertical`,[[`circle`,{cx:`9`,cy:`12`,r:`1`,key:`1vctgf`}],[`circle`,{cx:`9`,cy:`5`,r:`1`,key:`hp0tcf`}],[`circle`,{cx:`9`,cy:`19`,r:`1`,key:`fkjjf6`}],[`circle`,{cx:`15`,cy:`12`,r:`1`,key:`1tmaij`}],[`circle`,{cx:`15`,cy:`5`,r:`1`,key:`19l28e`}],[`circle`,{cx:`15`,cy:`19`,r:`1`,key:`f4zoj3`}]]),Fn=P(`heart`,[[`path`,{d:`M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5`,key:`mvr1a0`}]]),In=P(`hexagon`,[[`path`,{d:`M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z`,key:`yt0hxn`}]]),Ln=P(`history`,[[`path`,{d:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`,key:`1357e3`}],[`path`,{d:`M3 3v5h5`,key:`1xhq8a`}],[`path`,{d:`M12 7v5l4 2`,key:`1fdv2h`}]]),Rn=P(`house`,[[`path`,{d:`M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8`,key:`5wwlr5`}],[`path`,{d:`M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z`,key:`r6nss1`}]]),zn=P(`image`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,ry:`2`,key:`1m3agn`}],[`circle`,{cx:`9`,cy:`9`,r:`2`,key:`af1f0g`}],[`path`,{d:`m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21`,key:`1xmnt7`}]]),Bn=P(`info`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`M12 16v-4`,key:`1dtifu`}],[`path`,{d:`M12 8h.01`,key:`e9boi3`}]]),Vn=P(`key-round`,[[`path`,{d:`M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z`,key:`1s6t7t`}],[`circle`,{cx:`16.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`w0ekpg`}]]),Hn=P(`key`,[[`path`,{d:`m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4`,key:`g0fldk`}],[`path`,{d:`m21 2-9.6 9.6`,key:`1j0ho8`}],[`circle`,{cx:`7.5`,cy:`15.5`,r:`5.5`,key:`yqb3hr`}]]),Un=P(`keyboard`,[[`path`,{d:`M10 8h.01`,key:`1r9ogq`}],[`path`,{d:`M12 12h.01`,key:`1mp3jc`}],[`path`,{d:`M14 8h.01`,key:`1primd`}],[`path`,{d:`M16 12h.01`,key:`1l6xoz`}],[`path`,{d:`M18 8h.01`,key:`emo2bl`}],[`path`,{d:`M6 8h.01`,key:`x9i8wu`}],[`path`,{d:`M7 16h10`,key:`wp8him`}],[`path`,{d:`M8 12h.01`,key:`czm47f`}],[`rect`,{width:`20`,height:`16`,x:`2`,y:`4`,rx:`2`,key:`18n3k1`}]]),Wn=P(`layers`,[[`path`,{d:`M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z`,key:`zw3jo`}],[`path`,{d:`M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12`,key:`1wduqc`}],[`path`,{d:`M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17`,key:`kqbvx6`}]]),Gn=P(`link-2`,[[`path`,{d:`M9 17H7A5 5 0 0 1 7 7h2`,key:`8i5ue5`}],[`path`,{d:`M15 7h2a5 5 0 1 1 0 10h-2`,key:`1b9ql8`}],[`line`,{x1:`8`,x2:`16`,y1:`12`,y2:`12`,key:`1jonct`}]]),Kn=P(`link`,[[`path`,{d:`M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71`,key:`1cjeqo`}],[`path`,{d:`M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71`,key:`19qd67`}]]),qn=P(`list-filter`,[[`path`,{d:`M2 5h20`,key:`1fs1ex`}],[`path`,{d:`M6 12h12`,key:`8npq4p`}],[`path`,{d:`M9 19h6`,key:`456am0`}]]),Jn=P(`list`,[[`path`,{d:`M3 5h.01`,key:`18ugdj`}],[`path`,{d:`M3 12h.01`,key:`nlz23k`}],[`path`,{d:`M3 19h.01`,key:`noohij`}],[`path`,{d:`M8 5h13`,key:`1pao27`}],[`path`,{d:`M8 12h13`,key:`1za7za`}],[`path`,{d:`M8 19h13`,key:`m83p4d`}]]),K=P(`loader-circle`,[[`path`,{d:`M21 12a9 9 0 1 1-6.219-8.56`,key:`13zald`}]]),Yn=P(`lock`,[[`rect`,{width:`18`,height:`11`,x:`3`,y:`11`,rx:`2`,ry:`2`,key:`1w4ew1`}],[`path`,{d:`M7 11V7a5 5 0 0 1 10 0v4`,key:`fwvmzm`}]]),Xn=P(`log-out`,[[`path`,{d:`m16 17 5-5-5-5`,key:`1bji2h`}],[`path`,{d:`M21 12H9`,key:`dn1m92`}],[`path`,{d:`M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4`,key:`1uf3rs`}]]),Zn=P(`maximize-2`,[[`path`,{d:`M15 3h6v6`,key:`1q9fwt`}],[`path`,{d:`m21 3-7 7`,key:`1l2asr`}],[`path`,{d:`m3 21 7-7`,key:`tjx5ai`}],[`path`,{d:`M9 21H3v-6`,key:`wtvkvv`}]]),Qn=P(`menu`,[[`path`,{d:`M4 5h16`,key:`1tepv9`}],[`path`,{d:`M4 12h16`,key:`1lakjw`}],[`path`,{d:`M4 19h16`,key:`1djgab`}]]),$n=P(`message-square`,[[`path`,{d:`M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z`,key:`18887p`}]]),er=P(`mic`,[[`path`,{d:`M12 19v3`,key:`npa21l`}],[`path`,{d:`M19 10v2a7 7 0 0 1-14 0v-2`,key:`1vc78b`}],[`rect`,{x:`9`,y:`2`,width:`6`,height:`13`,rx:`3`,key:`s6n7sd`}]]),tr=P(`minimize-2`,[[`path`,{d:`m14 10 7-7`,key:`oa77jy`}],[`path`,{d:`M20 10h-6V4`,key:`mjg0md`}],[`path`,{d:`m3 21 7-7`,key:`tjx5ai`}],[`path`,{d:`M4 14h6v6`,key:`rmj7iw`}]]),nr=P(`minus`,[[`path`,{d:`M5 12h14`,key:`1ays0h`}]]),rr=P(`monitor-smartphone`,[[`path`,{d:`M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8`,key:`10dyio`}],[`path`,{d:`M10 19v-3.96 3.15`,key:`1irgej`}],[`path`,{d:`M7 19h5`,key:`qswx4l`}],[`rect`,{width:`6`,height:`10`,x:`16`,y:`12`,rx:`2`,key:`1egngj`}]]),ir=P(`monitor`,[[`rect`,{width:`20`,height:`14`,x:`2`,y:`3`,rx:`2`,key:`48i651`}],[`line`,{x1:`8`,x2:`16`,y1:`21`,y2:`21`,key:`1svkeh`}],[`line`,{x1:`12`,x2:`12`,y1:`17`,y2:`21`,key:`vw1qmm`}]]),ar=P(`moon`,[[`path`,{d:`M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401`,key:`kfwtm`}]]),or=P(`octagon-x`,[[`path`,{d:`m15 9-6 6`,key:`1uzhvr`}],[`path`,{d:`M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z`,key:`2d38gg`}],[`path`,{d:`m9 9 6 6`,key:`z0biqf`}]]),sr=P(`palette`,[[`path`,{d:`M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z`,key:`e79jfc`}],[`circle`,{cx:`13.5`,cy:`6.5`,r:`.5`,fill:`currentColor`,key:`1okk4w`}],[`circle`,{cx:`17.5`,cy:`10.5`,r:`.5`,fill:`currentColor`,key:`f64h9f`}],[`circle`,{cx:`6.5`,cy:`12.5`,r:`.5`,fill:`currentColor`,key:`qy21gx`}],[`circle`,{cx:`8.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`fotxhn`}]]),cr=P(`panel-bottom`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}],[`path`,{d:`M3 15h18`,key:`5xshup`}]]),lr=P(`panel-left-open`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}],[`path`,{d:`M9 3v18`,key:`fh3hqa`}],[`path`,{d:`m14 9 3 3-3 3`,key:`8010ee`}]]),ur=P(`panel-left`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}],[`path`,{d:`M9 3v18`,key:`fh3hqa`}]]),dr=P(`panel-right`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}],[`path`,{d:`M15 3v18`,key:`14nvp0`}]]),fr=P(`pin-off`,[[`path`,{d:`M12 17v5`,key:`bb1du9`}],[`path`,{d:`M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89`,key:`znwnzq`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}],[`path`,{d:`M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11`,key:`c9qhm2`}]]),pr=P(`pin`,[[`path`,{d:`M12 17v5`,key:`bb1du9`}],[`path`,{d:`M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z`,key:`1nkz8b`}]]),mr=P(`play`,[[`path`,{d:`M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z`,key:`10ikf1`}]]),hr=P(`plug`,[[`path`,{d:`M12 22v-5`,key:`1ega77`}],[`path`,{d:`M15 8V2`,key:`18g5xt`}],[`path`,{d:`M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z`,key:`1xoxul`}],[`path`,{d:`M9 8V2`,key:`14iosj`}]]),gr=P(`power-off`,[[`path`,{d:`M18.36 6.64A9 9 0 0 1 20.77 15`,key:`dxknvb`}],[`path`,{d:`M6.16 6.16a9 9 0 1 0 12.68 12.68`,key:`1x7qb5`}],[`path`,{d:`M12 2v4`,key:`3427ic`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}]]),_r=P(`power`,[[`path`,{d:`M12 2v10`,key:`mnfbl`}],[`path`,{d:`M18.4 6.6a9 9 0 1 1-12.77.04`,key:`obofu9`}]]),vr=P(`puzzle`,[[`path`,{d:`M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z`,key:`w46dr5`}]]),yr=P(`qr-code`,[[`rect`,{width:`5`,height:`5`,x:`3`,y:`3`,rx:`1`,key:`1tu5fj`}],[`rect`,{width:`5`,height:`5`,x:`16`,y:`3`,rx:`1`,key:`1v8r4q`}],[`rect`,{width:`5`,height:`5`,x:`3`,y:`16`,rx:`1`,key:`1x03jg`}],[`path`,{d:`M21 16h-3a2 2 0 0 0-2 2v3`,key:`177gqh`}],[`path`,{d:`M21 21v.01`,key:`ents32`}],[`path`,{d:`M12 7v3a2 2 0 0 1-2 2H7`,key:`8crl2c`}],[`path`,{d:`M3 12h.01`,key:`nlz23k`}],[`path`,{d:`M12 3h.01`,key:`n36tog`}],[`path`,{d:`M12 16v.01`,key:`133mhm`}],[`path`,{d:`M16 12h1`,key:`1slzba`}],[`path`,{d:`M21 12v.01`,key:`1lwtk9`}],[`path`,{d:`M12 21v-1`,key:`1880an`}]]),br=P(`refresh-cw`,[[`path`,{d:`M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8`,key:`v9h5vc`}],[`path`,{d:`M21 3v5h-5`,key:`1q7to0`}],[`path`,{d:`M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16`,key:`3uifl3`}],[`path`,{d:`M8 16H3v5`,key:`1cv678`}]]),xr=P(`regex`,[[`path`,{d:`M17 3v10`,key:`15fgeh`}],[`path`,{d:`m12.67 5.5 8.66 5`,key:`1gpheq`}],[`path`,{d:`m12.67 10.5 8.66-5`,key:`1dkfa6`}],[`path`,{d:`M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z`,key:`swwfx4`}]]),Sr=P(`replace-all`,[[`path`,{d:`M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1`,key:`zg1ipl`}],[`path`,{d:`M14 4a1 1 0 0 1 1-1`,key:`dhj8ez`}],[`path`,{d:`M15 10a1 1 0 0 1-1-1`,key:`1mnyi5`}],[`path`,{d:`M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1`,key:`txt6k4`}],[`path`,{d:`M21 4a1 1 0 0 0-1-1`,key:`sfs9ap`}],[`path`,{d:`M21 9a1 1 0 0 1-1 1`,key:`mp6qeo`}],[`path`,{d:`m3 7 3 3 3-3`,key:`x25e72`}],[`path`,{d:`M6 10V5a2 2 0 0 1 2-2h2`,key:`15xut4`}],[`rect`,{x:`3`,y:`14`,width:`7`,height:`7`,rx:`1`,key:`1bkyp8`}]]),Cr=P(`rotate-ccw`,[[`path`,{d:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`,key:`1357e3`}],[`path`,{d:`M3 3v5h5`,key:`1xhq8a`}]]),wr=P(`send`,[[`path`,{d:`M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z`,key:`1ffxy3`}],[`path`,{d:`m21.854 2.147-10.94 10.939`,key:`12cjpa`}]]),Tr=P(`server-off`,[[`path`,{d:`M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5`,key:`bt2siv`}],[`path`,{d:`M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z`,key:`1hjrv1`}],[`path`,{d:`M22 17v-1a2 2 0 0 0-2-2h-1`,key:`1iynyr`}],[`path`,{d:`M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z`,key:`161ggg`}],[`path`,{d:`M6 18h.01`,key:`uhywen`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}]]),Er=P(`settings-2`,[[`path`,{d:`M14 17H5`,key:`gfn3mx`}],[`path`,{d:`M19 7h-9`,key:`6i9tg`}],[`circle`,{cx:`17`,cy:`17`,r:`3`,key:`18b49y`}],[`circle`,{cx:`7`,cy:`7`,r:`3`,key:`dfmy0x`}]]),Dr=P(`settings`,[[`path`,{d:`M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915`,key:`1i5ecw`}],[`circle`,{cx:`12`,cy:`12`,r:`3`,key:`1v7zrd`}]]),Or=P(`share-2`,[[`circle`,{cx:`18`,cy:`5`,r:`3`,key:`gq8acd`}],[`circle`,{cx:`6`,cy:`12`,r:`3`,key:`w7nqdw`}],[`circle`,{cx:`18`,cy:`19`,r:`3`,key:`1xt0gg`}],[`line`,{x1:`8.59`,x2:`15.42`,y1:`13.51`,y2:`17.49`,key:`47mynk`}],[`line`,{x1:`15.41`,x2:`8.59`,y1:`6.51`,y2:`10.49`,key:`1n3mei`}]]),kr=P(`smartphone`,[[`rect`,{width:`14`,height:`20`,x:`5`,y:`2`,rx:`2`,ry:`2`,key:`1yt0o3`}],[`path`,{d:`M12 18h.01`,key:`mhygvu`}]]),Ar=P(`square-terminal`,[[`path`,{d:`m7 11 2-2-2-2`,key:`1lz0vl`}],[`path`,{d:`M11 13h4`,key:`1p7l4v`}],[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,ry:`2`,key:`1m3agn`}]]),jr=P(`square-x`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,ry:`2`,key:`1m3agn`}],[`path`,{d:`m15 9-6 6`,key:`1uzhvr`}],[`path`,{d:`m9 9 6 6`,key:`z0biqf`}]]),Mr=P(`square`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}]]),Nr=P(`sun`,[[`circle`,{cx:`12`,cy:`12`,r:`4`,key:`4exip2`}],[`path`,{d:`M12 2v2`,key:`tus03m`}],[`path`,{d:`M12 20v2`,key:`1lh1kg`}],[`path`,{d:`m4.93 4.93 1.41 1.41`,key:`149t6j`}],[`path`,{d:`m17.66 17.66 1.41 1.41`,key:`ptbguv`}],[`path`,{d:`M2 12h2`,key:`1t8f8n`}],[`path`,{d:`M20 12h2`,key:`1q8mjw`}],[`path`,{d:`m6.34 17.66-1.41 1.41`,key:`1m8zz5`}],[`path`,{d:`m19.07 4.93-1.41 1.41`,key:`1shlcs`}]]),Pr=P(`tag`,[[`path`,{d:`M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z`,key:`vktsd0`}],[`circle`,{cx:`7.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`kqv944`}]]),Fr=P(`tags`,[[`path`,{d:`M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z`,key:`16rjxf`}],[`path`,{d:`M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193`,key:`178nd4`}],[`circle`,{cx:`10.5`,cy:`6.5`,r:`.5`,fill:`currentColor`,key:`12ikhr`}]]),Ir=P(`terminal`,[[`path`,{d:`M12 19h8`,key:`baeox8`}],[`path`,{d:`m4 17 6-6-6-6`,key:`1yngyt`}]]),Lr=P(`text-wrap`,[[`path`,{d:`m16 16-3 3 3 3`,key:`117b85`}],[`path`,{d:`M3 12h14.5a1 1 0 0 1 0 7H13`,key:`18xa6z`}],[`path`,{d:`M3 19h6`,key:`1ygdsz`}],[`path`,{d:`M3 5h18`,key:`1u36vt`}]]),Rr=P(`trash-2`,[[`path`,{d:`M10 11v6`,key:`nco0om`}],[`path`,{d:`M14 11v6`,key:`outv1u`}],[`path`,{d:`M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6`,key:`miytrc`}],[`path`,{d:`M3 6h18`,key:`d0wm0j`}],[`path`,{d:`M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2`,key:`e791ji`}]]),zr=P(`triangle-alert`,[[`path`,{d:`m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3`,key:`wmoenq`}],[`path`,{d:`M12 9v4`,key:`juzpu7`}],[`path`,{d:`M12 17h.01`,key:`p32p05`}]]),Br=P(`undo-2`,[[`path`,{d:`M9 14 4 9l5-5`,key:`102s5s`}],[`path`,{d:`M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11`,key:`f3b9sd`}]]),Vr=P(`unlink`,[[`path`,{d:`m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71`,key:`yqzxt4`}],[`path`,{d:`m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71`,key:`4qinb0`}],[`line`,{x1:`8`,x2:`8`,y1:`2`,y2:`5`,key:`1041cp`}],[`line`,{x1:`2`,x2:`5`,y1:`8`,y2:`8`,key:`14m1p5`}],[`line`,{x1:`16`,x2:`16`,y1:`19`,y2:`22`,key:`rzdirn`}],[`line`,{x1:`19`,x2:`22`,y1:`16`,y2:`16`,key:`ox905f`}]]),Hr=P(`upload`,[[`path`,{d:`M12 3v12`,key:`1x0j5s`}],[`path`,{d:`m17 8-5-5-5 5`,key:`7q97r8`}],[`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`,key:`ih7n3h`}]]),Ur=P(`users`,[[`path`,{d:`M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2`,key:`1yyitq`}],[`path`,{d:`M16 3.128a4 4 0 0 1 0 7.744`,key:`16gr8j`}],[`path`,{d:`M22 21v-2a4 4 0 0 0-3-3.87`,key:`kshegd`}],[`circle`,{cx:`9`,cy:`7`,r:`4`,key:`nufk8`}]]),Wr=P(`whole-word`,[[`circle`,{cx:`7`,cy:`12`,r:`3`,key:`12clwm`}],[`path`,{d:`M10 9v6`,key:`17i7lo`}],[`circle`,{cx:`17`,cy:`12`,r:`3`,key:`gl7c2s`}],[`path`,{d:`M14 7v8`,key:`dl84cr`}],[`path`,{d:`M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1`,key:`lt2kga`}]]),Gr=P(`wifi-off`,[[`path`,{d:`M12 20h.01`,key:`zekei9`}],[`path`,{d:`M8.5 16.429a5 5 0 0 1 7 0`,key:`1bycff`}],[`path`,{d:`M5 12.859a10 10 0 0 1 5.17-2.69`,key:`1dl1wf`}],[`path`,{d:`M19 12.859a10 10 0 0 0-2.007-1.523`,key:`4k23kn`}],[`path`,{d:`M2 8.82a15 15 0 0 1 4.177-2.643`,key:`1grhjp`}],[`path`,{d:`M22 8.82a15 15 0 0 0-11.288-3.764`,key:`z3jwby`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}]]),Kr=P(`zap`,[[`path`,{d:`M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z`,key:`1xq2db`}]]),qr=P(`zoom-in`,[[`circle`,{cx:`11`,cy:`11`,r:`8`,key:`4ej97u`}],[`line`,{x1:`21`,x2:`16.65`,y1:`21`,y2:`16.65`,key:`13gj7c`}],[`line`,{x1:`11`,x2:`11`,y1:`8`,y2:`14`,key:`1vmskp`}],[`line`,{x1:`8`,x2:`14`,y1:`11`,y2:`11`,key:`durymu`}]]),Jr=P(`zoom-out`,[[`circle`,{cx:`11`,cy:`11`,r:`8`,key:`4ej97u`}],[`line`,{x1:`21`,x2:`16.65`,y1:`21`,y2:`16.65`,key:`13gj7c`}],[`line`,{x1:`8`,x2:`14`,y1:`11`,y2:`11`,key:`durymu`}]]),Yr=Ot(),q=e(r(),1),J=i(),Xr=({...e})=>{let t=B(e=>e.themeMode);return(0,J.jsx)($e,{theme:t===`system`?window.matchMedia(`(prefers-color-scheme: dark)`).matches?`dark`:`light`:t,className:`toaster group`,icons:{success:(0,J.jsx)(Zt,{className:`size-4`}),info:(0,J.jsx)(Bn,{className:`size-4`}),warning:(0,J.jsx)(zr,{className:`size-4`}),error:(0,J.jsx)(or,{className:`size-4`}),loading:(0,J.jsx)(K,{className:`size-4 animate-spin`})},style:{"--normal-bg":`var(--color-popover)`,"--normal-text":`var(--color-popover-foreground)`,"--normal-border":`var(--color-border)`,"--border-radius":`var(--radius)`},...e})};function Zr({delayDuration:e=0,...t}){return(0,J.jsx)(k,{"data-slot":`tooltip-provider`,delayDuration:e,...t})}function Qr({...e}){return(0,J.jsx)(S,{"data-slot":`tooltip`,...e})}function $r({...e}){return(0,J.jsx)(M,{"data-slot":`tooltip-trigger`,...e})}function ei({className:e,sideOffset:t=0,children:n,...r}){return(0,J.jsx)(ae,{children:(0,J.jsxs)(j,{"data-slot":`tooltip-content`,sideOffset:t,className:V(`z-50 w-fit origin-(--radix-tooltip-content-transform-origin) animate-in rounded-md bg-foreground px-3 py-1.5 text-xs text-balance text-background fade-in-0 zoom-in-95 data-[side=bottom]:slide-in-from-top-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-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95`,e),...r,children:[n,(0,J.jsx)(se,{className:`z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground`})]})})}function ti(e,t){let n=getComputedStyle(e);return t*parseFloat(n.fontSize)}function ni(e,t){let n=getComputedStyle(e.ownerDocument.body);return t*parseFloat(n.fontSize)}function ri(e){return e/100*window.innerHeight}function ii(e){return e/100*window.innerWidth}function ai(e){switch(typeof e){case`number`:return[e,`px`];case`string`:{let t=parseFloat(e);return e.endsWith(`%`)?[t,`%`]:e.endsWith(`px`)?[t,`px`]:e.endsWith(`rem`)?[t,`rem`]:e.endsWith(`em`)?[t,`em`]:e.endsWith(`vh`)?[t,`vh`]:e.endsWith(`vw`)?[t,`vw`]:[t,`%`]}}}function oi({groupSize:e,panelElement:t,styleProp:n}){let r,[i,a]=ai(n);switch(a){case`%`:r=i/100*e;break;case`px`:r=i;break;case`rem`:r=ni(t,i);break;case`em`:r=ti(t,i);break;case`vh`:r=ri(i);break;case`vw`:r=ii(i);break}return r}function si(e){return parseFloat(e.toFixed(3))}function ci({group:e}){let{orientation:t,panels:n}=e;return n.reduce((e,n)=>(e+=t===`horizontal`?n.element.offsetWidth:n.element.offsetHeight,e),0)}function li(e){let{panels:t}=e,n=ci({group:e});return n===0?t.map(e=>({groupResizeBehavior:e.panelConstraints.groupResizeBehavior,collapsedSize:0,collapsible:e.panelConstraints.collapsible===!0,defaultSize:void 0,disabled:e.panelConstraints.disabled,minSize:0,maxSize:100,panelId:e.id})):t.map(e=>{let{element:t,panelConstraints:r}=e,i=0;r.collapsedSize!==void 0&&(i=si(oi({groupSize:n,panelElement:t,styleProp:r.collapsedSize})/n*100));let a;r.defaultSize!==void 0&&(a=si(oi({groupSize:n,panelElement:t,styleProp:r.defaultSize})/n*100));let o=0;r.minSize!==void 0&&(o=si(oi({groupSize:n,panelElement:t,styleProp:r.minSize})/n*100));let s=100;return r.maxSize!==void 0&&(s=si(oi({groupSize:n,panelElement:t,styleProp:r.maxSize})/n*100)),{groupResizeBehavior:r.groupResizeBehavior,collapsedSize:i,collapsible:r.collapsible===!0,defaultSize:a,disabled:r.disabled,minSize:o,maxSize:s,panelId:e.id}})}function ui(e,t=`Assertion error`){if(!e)throw Error(t)}function di(e,t){return Array.from(t).sort(e===`horizontal`?fi:pi)}function fi(e,t){let n=e.element.offsetLeft-t.element.offsetLeft;return n===0?e.element.offsetWidth-t.element.offsetWidth:n}function pi(e,t){let n=e.element.offsetTop-t.element.offsetTop;return n===0?e.element.offsetHeight-t.element.offsetHeight:n}function mi(e){return typeof e==`object`&&!!e&&`nodeType`in e&&e.nodeType===Node.ELEMENT_NODE}function hi(e,t){return{x:e.x>=t.left&&e.x<=t.right?0:Math.min(Math.abs(e.x-t.left),Math.abs(e.x-t.right)),y:e.y>=t.top&&e.y<=t.bottom?0:Math.min(Math.abs(e.y-t.top),Math.abs(e.y-t.bottom))}}function gi({orientation:e,rects:t,targetRect:n}){let r={x:n.x+n.width/2,y:n.y+n.height/2},i,a=Number.MAX_VALUE;for(let n of t){let{x:t,y:o}=hi(r,n),s=e===`horizontal`?t:o;s<a&&(a=s,i=n)}return ui(i,`No rect found`),i}var _i;function vi(){return _i===void 0&&(_i=typeof matchMedia==`function`?!!matchMedia(`(pointer:coarse)`).matches:!1),_i}function yi(e){let{element:t,orientation:n,panels:r,separators:i}=e,a=di(n,Array.from(t.children).filter(mi).map(e=>({element:e}))).map(({element:e})=>e),o=[],s=!1,c=!1,l=-1,u=-1,d=0,f,p=[];{let e=-1;for(let t of a)t.hasAttribute(`data-panel`)&&(e++,t.ariaDisabled===null&&(d++,l===-1&&(l=e),u=e))}if(d>1){let t=-1;for(let d of a)if(d.hasAttribute(`data-panel`)){t++;let i=r.find(e=>e.element===d);if(i){if(f){let r=f.element.getBoundingClientRect(),a=d.getBoundingClientRect(),m;if(c){let e=n===`horizontal`?new DOMRect(r.right,r.top,0,r.height):new DOMRect(r.left,r.bottom,r.width,0),t=n===`horizontal`?new DOMRect(a.left,a.top,0,a.height):new DOMRect(a.left,a.top,a.width,0);switch(p.length){case 0:m=[e,t];break;case 1:{let i=p[0];m=[i,gi({orientation:n,rects:[r,a],targetRect:i.element.getBoundingClientRect()})===r?t:e];break}default:m=p;break}}else m=p.length?p:[n===`horizontal`?new DOMRect(r.right,a.top,a.left-r.right,a.height):new DOMRect(a.left,r.bottom,a.width,a.top-r.bottom)];for(let n of m){let r=`width`in n?n:n.element.getBoundingClientRect(),a=vi()?e.resizeTargetMinimumSize.coarse:e.resizeTargetMinimumSize.fine;if(r.width<a){let e=a-r.width;r=new DOMRect(r.x-e/2,r.y,r.width+e,r.height)}if(r.height<a){let e=a-r.height;r=new DOMRect(r.x,r.y-e/2,r.width,r.height+e)}!s&&!(t<=l||t>u)&&o.push({group:e,groupSize:ci({group:e}),panels:[f,i],separator:`width`in n?void 0:n,rect:r}),s=!1}}c=!1,f=i,p=[]}}else if(d.hasAttribute(`data-separator`)){d.ariaDisabled!==null&&(s=!0);let e=i.find(e=>e.element===d);e?p.push(e):(f=void 0,p=[])}else c=!0}return o}var bi=class{#e={};addListener(e,t){let n=this.#e[e];return n===void 0?this.#e[e]=[t]:n.includes(t)||n.push(t),()=>{this.removeListener(e,t)}}emit(e,t){let n=this.#e[e];if(n!==void 0)if(n.length===1)n[0].call(null,t);else{let e=!1,r=null,i=Array.from(n);for(let n=0;n<i.length;n++){let a=i[n];try{a.call(null,t)}catch(t){r===null&&(e=!0,r=t)}}if(e)throw r}}removeAllListeners(){this.#e={}}removeListener(e,t){let n=this.#e[e];if(n!==void 0){let e=n.indexOf(t);e>=0&&n.splice(e,1)}}},xi=new Map,Si=new bi;function Ci(e){xi=new Map(xi),xi.delete(e)}function wi(e,t){for(let[t]of xi)if(t.id===e)return t}function Y(e,t){for(let[t,n]of xi)if(t.id===e)return n;if(t)throw Error(`Could not find data for Group with id ${e}`)}function Ti(){return xi}function Ei(e,t){return Si.addListener(`groupChange`,n=>{n.group.id===e&&t(n)})}function Di(e,t){let n=xi.get(e);xi=new Map(xi),xi.set(e,t),Si.emit(`groupChange`,{group:e,prev:n,next:t})}function Oi(e,t,n){let r,i={x:1/0,y:1/0};for(let a of t){let t=hi(n,a.rect);switch(e){case`horizontal`:t.x<=i.x&&(r=a,i=t);break;case`vertical`:t.y<=i.y&&(r=a,i=t);break}}return r?{distance:i,hitRegion:r}:void 0}function ki(e){return typeof e==`object`&&!!e&&`nodeType`in e&&e.nodeType===Node.DOCUMENT_FRAGMENT_NODE}function Ai(e,t){if(e===t)throw Error(`Cannot compare node with itself`);let n={a:Ii(e),b:Ii(t)},r;for(;n.a.at(-1)===n.b.at(-1);)r=n.a.pop(),n.b.pop();ui(r,`Stacking order can only be calculated for elements with a common ancestor`);let i={a:Fi(Pi(n.a)),b:Fi(Pi(n.b))};if(i.a===i.b){let e=r.childNodes,t={a:n.a.at(-1),b:n.b.at(-1)},i=e.length;for(;i--;){let n=e[i];if(n===t.a)return 1;if(n===t.b)return-1}}return Math.sign(i.a-i.b)}var ji=/\b(?:position|zIndex|opacity|transform|webkitTransform|mixBlendMode|filter|webkitFilter|isolation)\b/;function Mi(e){let t=getComputedStyle(Li(e)??e).display;return t===`flex`||t===`inline-flex`}function Ni(e){let t=getComputedStyle(e);return!!(t.position===`fixed`||t.zIndex!==`auto`&&(t.position!==`static`||Mi(e))||+t.opacity<1||`transform`in t&&t.transform!==`none`||`webkitTransform`in t&&t.webkitTransform!==`none`||`mixBlendMode`in t&&t.mixBlendMode!==`normal`||`filter`in t&&t.filter!==`none`||`webkitFilter`in t&&t.webkitFilter!==`none`||`isolation`in t&&t.isolation===`isolate`||ji.test(t.willChange)||t.webkitOverflowScrolling===`touch`)}function Pi(e){let t=e.length;for(;t--;){let n=e[t];if(ui(n,`Missing node`),Ni(n))return n}return null}function Fi(e){return e&&Number(getComputedStyle(e).zIndex)||0}function Ii(e){let t=[];for(;e;)t.push(e),e=Li(e);return t}function Li(e){let{parentNode:t}=e;return ki(t)?t.host:t}function Ri(e,t){return e.x<t.x+t.width&&e.x+e.width>t.x&&e.y<t.y+t.height&&e.y+e.height>t.y}function zi({groupElement:e,hitRegion:t,pointerEventTarget:n}){if(!mi(n)||n.contains(e)||e.contains(n))return!0;if(Ai(n,e)>0){let r=n;for(;r;){if(r.contains(e))return!0;if(Ri(r.getBoundingClientRect(),t))return!1;r=r.parentElement}}return!0}function Bi(e,t){let n=[];return t.forEach((t,r)=>{if(r.disabled)return;let i=yi(r),a=Oi(r.orientation,i,{x:e.clientX,y:e.clientY});a&&a.distance.x<=0&&a.distance.y<=0&&zi({groupElement:r.element,hitRegion:a.hitRegion.rect,pointerEventTarget:e.target})&&n.push(a.hitRegion)}),n}function Vi(e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!=t[n])return!1;return!0}function Hi(e,t,n=0){return Math.abs(si(e)-si(t))<=n}function Ui(e,t){return Hi(e,t)?0:e>t?1:-1}function Wi({overrideDisabledPanels:e,panelConstraints:t,prevSize:n,size:r}){let{collapsedSize:i=0,collapsible:a,disabled:o,maxSize:s=100,minSize:c=0}=t;if(o&&!e)return n;if(Ui(r,c)<0)if(a){let e=(i+c)/2;r=Ui(r,e)<0?i:c}else r=c;return r=Math.min(s,r),r=si(r),r}function Gi({delta:e,initialLayout:t,panelConstraints:n,pivotIndices:r,prevLayout:i,trigger:a}){if(Hi(e,0))return t;let o=a===`imperative-api`,s=Object.values(t),c=Object.values(i),l=[...s],[u,d]=r;ui(u!=null,`Invalid first pivot index`),ui(d!=null,`Invalid second pivot index`);let f=0;switch(a){case`keyboard`:{let t=e<0?d:u,r=n[t];ui(r,`Panel constraints not found for index ${t}`);let{collapsedSize:i=0,collapsible:a,minSize:o=0}=r;if(a){let n=s[t];if(ui(n!=null,`Previous layout not found for panel index ${t}`),Hi(n,i)){let t=o-n;Ui(t,Math.abs(e))>0&&(e=e<0?0-t:t)}}}{let t=e<0?u:d,r=n[t];ui(r,`No panel constraints found for index ${t}`);let{collapsedSize:i=0,collapsible:a,minSize:o=0}=r;if(a){let n=s[t];if(ui(n!=null,`Previous layout not found for panel index ${t}`),Hi(n,o)){let t=n-i;Ui(t,Math.abs(e))>0&&(e=e<0?0-t:t)}}}break;default:{let t=e<0?d:u,r=n[t];ui(r,`Panel constraints not found for index ${t}`);let i=s[t],{collapsible:a,collapsedSize:o,minSize:c}=r;if(a&&Ui(i,c)<0)if(e>0){let t=c-o,n=t/2;Ui(i+e,c)<0&&(e=Ui(e,n)<=0?0:t)}else{let t=c-o,n=100-t/2;Ui(i-e,c)<0&&(e=Ui(100+e,n)>0?0:-t)}break}}{let t=e<0?1:-1,r=e<0?d:u,i=0;for(;;){let e=s[r];ui(e!=null,`Previous layout not found for panel index ${r}`);let a=Wi({overrideDisabledPanels:o,panelConstraints:n[r],prevSize:e,size:100})-e;if(i+=a,r+=t,r<0||r>=n.length)break}let a=Math.min(Math.abs(e),Math.abs(i));e=e<0?0-a:a}{let t=e<0?u:d;for(;t>=0&&t<n.length;){let r=Math.abs(e)-Math.abs(f),i=s[t];ui(i!=null,`Previous layout not found for panel index ${t}`);let a=i-r,c=Wi({overrideDisabledPanels:o,panelConstraints:n[t],prevSize:i,size:a});if(!Hi(i,c)&&(f+=i-c,l[t]=c,f.toFixed(3).localeCompare(Math.abs(e).toFixed(3),void 0,{numeric:!0})>=0))break;e<0?t--:t++}}if(Vi(c,l))return i;{let t=e<0?d:u,r=s[t];ui(r!=null,`Previous layout not found for panel index ${t}`);let i=r+f,a=Wi({overrideDisabledPanels:o,panelConstraints:n[t],prevSize:r,size:i});if(l[t]=a,!Hi(a,i)){let t=i-a,r=e<0?d:u;for(;r>=0&&r<n.length;){let i=l[r];ui(i!=null,`Previous layout not found for panel index ${r}`);let a=i+t,s=Wi({overrideDisabledPanels:o,panelConstraints:n[r],prevSize:i,size:a});if(Hi(i,s)||(t-=s-i,l[r]=s),Hi(t,0))break;e>0?r--:r++}}}if(!Hi(Object.values(l).reduce((e,t)=>t+e,0),100,.1))return i;let p=Object.keys(i);return l.reduce((e,t,n)=>(e[p[n]]=t,e),{})}function Ki(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(let n in e)if(t[n]===void 0||Ui(e[n],t[n])!==0)return!1;return!0}function qi({layout:e,panelConstraints:t}){let n=Object.values(e),r=[...n],i=r.reduce((e,t)=>e+t,0);if(r.length!==t.length)throw Error(`Invalid ${t.length} panel layout: ${r.map(e=>`${e}%`).join(`, `)}`);if(!Hi(i,100)&&r.length>0)for(let e=0;e<t.length;e++){let t=r[e];ui(t!=null,`No layout data found for index ${e}`),r[e]=100/i*t}let a=0;for(let e=0;e<t.length;e++){let i=n[e];ui(i!=null,`No layout data found for index ${e}`);let o=r[e];ui(o!=null,`No layout data found for index ${e}`);let s=Wi({overrideDisabledPanels:!0,panelConstraints:t[e],prevSize:i,size:o});o!=s&&(a+=o-s,r[e]=s)}if(!Hi(a,0))for(let e=0;e<t.length;e++){let n=r[e];ui(n!=null,`No layout data found for index ${e}`);let i=n+a,o=Wi({overrideDisabledPanels:!0,panelConstraints:t[e],prevSize:n,size:i});if(n!==o&&(a-=o-n,r[e]=o,Hi(a,0)))break}let o=Object.keys(e);return r.reduce((e,t,n)=>(e[o[n]]=t,e),{})}function Ji({groupId:e,panelId:t}){let n=()=>{let t=Ti();for(let[n,{defaultLayoutDeferred:r,derivedPanelConstraints:i,layout:a,groupSize:o,separatorToPanels:s}]of t)if(n.id===e)return{defaultLayoutDeferred:r,derivedPanelConstraints:i,group:n,groupSize:o,layout:a,separatorToPanels:s};throw Error(`Group ${e} not found`)},r=()=>{let e=n().derivedPanelConstraints.find(e=>e.panelId===t);if(e!==void 0)return e;throw Error(`Panel constraints not found for Panel ${t}`)},i=()=>{let e=n().group.panels.find(e=>e.id===t);if(e!==void 0)return e;throw Error(`Layout not found for Panel ${t}`)},a=()=>{let e=n().layout[t];if(e!==void 0)return e;throw Error(`Layout not found for Panel ${t}`)},o=e=>{let r=a();if(e===r)return;let{defaultLayoutDeferred:i,derivedPanelConstraints:o,group:s,groupSize:c,layout:l,separatorToPanels:u}=n(),d=s.panels.findIndex(e=>e.id===t),f=d===s.panels.length-1,p=qi({layout:Gi({delta:f?r-e:e-r,initialLayout:l,panelConstraints:o,pivotIndices:f?[d-1,d]:[d,d+1],prevLayout:l,trigger:`imperative-api`}),panelConstraints:o});Ki(l,p)||Di(s,{defaultLayoutDeferred:i,derivedPanelConstraints:o,groupSize:c,layout:p,separatorToPanels:u})};return{collapse:()=>{let{collapsible:e,collapsedSize:t}=r(),{mutableValues:n}=i(),s=a();e&&s!==t&&(n.expandToSize=s,o(t))},expand:()=>{let{collapsible:e,collapsedSize:t,minSize:n}=r(),{mutableValues:s}=i(),c=a();if(e&&c===t){let e=s.expandToSize??n;e===0&&(e=1),o(e)}},getSize:()=>{let{group:e}=n(),t=a(),{element:r}=i();return{asPercentage:t,inPixels:e.orientation===`horizontal`?r.offsetWidth:r.offsetHeight}},isCollapsed:()=>{let{collapsible:e,collapsedSize:t}=r(),n=a();return e&&Hi(t,n)},resize:e=>{let{group:t}=n(),{element:r}=i(),a=ci({group:t});o(si(oi({groupSize:a,panelElement:r,styleProp:e})/a*100))}}}function Yi(e){e.defaultPrevented||Bi(e,Ti()).forEach(t=>{if(t.separator){let n=t.panels.find(e=>e.panelConstraints.defaultSize!==void 0);if(n){let r=n.panelConstraints.defaultSize,i=Ji({groupId:t.group.id,panelId:n.id});i&&r!==void 0&&(i.resize(r),e.preventDefault())}}})}function Xi(e){let t=Ti();for(let[n]of t)if(n.separators.some(t=>t.element===e))return n;throw Error(`Could not find parent Group for separator element`)}function Zi({groupId:e}){let t=()=>{let t=Ti();for(let[n,r]of t)if(n.id===e)return{group:n,...r};throw Error(`Could not find Group with id "${e}"`)};return{getLayout(){let{defaultLayoutDeferred:e,layout:n}=t();return e?{}:n},setLayout(e){let{defaultLayoutDeferred:n,derivedPanelConstraints:r,group:i,groupSize:a,layout:o,separatorToPanels:s}=t(),c=qi({layout:e,panelConstraints:r});return n?o:(Ki(o,c)||Di(i,{defaultLayoutDeferred:n,derivedPanelConstraints:r,groupSize:a,layout:c,separatorToPanels:s}),c)}}}function Qi(e,t){let n=Xi(e),r=Y(n.id,!0),i=n.separators.find(t=>t.element===e);ui(i,`Matching separator not found`);let a=r.separatorToPanels.get(i);ui(a,`Matching panels not found`);let o=a.map(e=>n.panels.indexOf(e)),s=Zi({groupId:n.id}).getLayout(),c=qi({layout:Gi({delta:t,initialLayout:s,panelConstraints:r.derivedPanelConstraints,pivotIndices:o,prevLayout:s,trigger:`keyboard`}),panelConstraints:r.derivedPanelConstraints});Ki(s,c)||Di(n,{defaultLayoutDeferred:r.defaultLayoutDeferred,derivedPanelConstraints:r.derivedPanelConstraints,groupSize:r.groupSize,layout:c,separatorToPanels:r.separatorToPanels})}function $i(e){if(e.defaultPrevented)return;let t=e.currentTarget,n=Xi(t);if(!n.disabled)switch(e.key){case`ArrowDown`:e.preventDefault(),n.orientation===`vertical`&&Qi(t,5);break;case`ArrowLeft`:e.preventDefault(),n.orientation===`horizontal`&&Qi(t,-5);break;case`ArrowRight`:e.preventDefault(),n.orientation===`horizontal`&&Qi(t,5);break;case`ArrowUp`:e.preventDefault(),n.orientation===`vertical`&&Qi(t,-5);break;case`End`:e.preventDefault(),Qi(t,100);break;case`Enter`:{e.preventDefault();let n=Xi(t),{derivedPanelConstraints:r,layout:i,separatorToPanels:a}=Y(n.id,!0),o=n.separators.find(e=>e.element===t);ui(o,`Matching separator not found`);let s=a.get(o);ui(s,`Matching panels not found`);let c=s[0],l=r.find(e=>e.panelId===c.id);if(ui(l,`Panel metadata not found`),l.collapsible){let e=i[c.id];Qi(t,(l.collapsedSize===e?n.mutableState.expandedPanelSizes[c.id]??l.minSize:l.collapsedSize)-e)}break}case`F6`:{e.preventDefault();let n=Xi(t).separators.map(e=>e.element),r=Array.from(n).findIndex(t=>t===e.currentTarget);ui(r!==null,`Index not found`),n[e.shiftKey?r>0?r-1:n.length-1:r+1<n.length?r+1:0].focus({preventScroll:!0});break}case`Home`:e.preventDefault(),Qi(t,-100);break}}var ea={cursorFlags:0,state:`inactive`},ta=new bi;function na(){return ea}function ra(e){return ta.addListener(`change`,e)}function ia(e){let t=ea,n={...ea};n.cursorFlags=e,ea=n,ta.emit(`change`,{prev:t,next:n})}function aa(e){let t=ea;ea=e,ta.emit(`change`,{prev:t,next:e})}function oa(e){if(e.defaultPrevented||e.pointerType===`mouse`&&e.button>0)return;let t=Ti(),n=Bi(e,t),r=new Map,i=!1;n.forEach(e=>{e.separator&&(i||(i=!0,e.separator.element.focus({preventScroll:!0})));let n=t.get(e.group);n&&r.set(e.group,n.layout)}),aa({cursorFlags:0,hitRegions:n,initialLayoutMap:r,pointerDownAtPoint:{x:e.clientX,y:e.clientY},state:`active`}),n.length&&e.preventDefault()}var sa=e=>e,ca=()=>{},la=1,ua=2,da=4,fa=8,pa=3,ma=12,ha;function ga(){return ha===void 0&&(ha=!1,typeof window<`u`&&(window.navigator.userAgent.includes(`Chrome`)||window.navigator.userAgent.includes(`Firefox`))&&(ha=!0)),ha}function _a({cursorFlags:e,groups:t,state:n}){let r=0,i=0;switch(n){case`active`:case`hover`:t.forEach(e=>{if(!e.mutableState.disableCursor)switch(e.orientation){case`horizontal`:r++;break;case`vertical`:i++;break}})}if(!(r===0&&i===0)){switch(n){case`active`:if(e&&ga()){let t=(e&la)!==0,n=(e&ua)!==0,r=(e&da)!==0,i=(e&fa)!==0;if(t)return r?`se-resize`:i?`ne-resize`:`e-resize`;if(n)return r?`sw-resize`:i?`nw-resize`:`w-resize`;if(r)return`s-resize`;if(i)return`n-resize`}break}return ga()?r>0&&i>0?`move`:r>0?`ew-resize`:`ns-resize`:r>0&&i>0?`grab`:r>0?`col-resize`:`row-resize`}}var va=new WeakMap;function ya(e){if(e.defaultView===null||e.defaultView===void 0)return;let{prevStyle:t,styleSheet:n}=va.get(e)??{};n===void 0&&(n=new e.defaultView.CSSStyleSheet,e.adoptedStyleSheets&&e.adoptedStyleSheets.push(n));let r=na();switch(r.state){case`active`:case`hover`:{let e=_a({cursorFlags:r.cursorFlags,groups:r.hitRegions.map(e=>e.group),state:r.state}),i=`*, *:hover {cursor: ${e} !important; }`;if(t===i)return;t=i,e?n.cssRules.length===0?n.insertRule(i):n.replaceSync(i):n.cssRules.length===1&&n.deleteRule(0);break}case`inactive`:t=void 0,n.cssRules.length===1&&n.deleteRule(0);break}va.set(e,{prevStyle:t,styleSheet:n})}function ba({document:e,event:t,hitRegions:n,initialLayoutMap:r,mountedGroups:i,pointerDownAtPoint:a,prevCursorFlags:o}){let s=0;n.forEach(e=>{let{group:n,groupSize:o}=e,{orientation:c,panels:l}=n,{disableCursor:u}=n.mutableState,d=0;d=a?c===`horizontal`?(t.clientX-a.x)/o*100:(t.clientY-a.y)/o*100:c===`horizontal`?t.clientX<0?-100:100:t.clientY<0?-100:100;let f=r.get(n),p=i.get(n);if(!f||!p)return;let{defaultLayoutDeferred:m,derivedPanelConstraints:h,groupSize:g,layout:_,separatorToPanels:v}=p;if(h&&_&&v){let t=Gi({delta:d,initialLayout:f,panelConstraints:h,pivotIndices:e.panels.map(e=>l.indexOf(e)),prevLayout:_,trigger:`mouse-or-touch`});if(Ki(t,_)){if(d!==0&&!u)switch(c){case`horizontal`:s|=d<0?la:ua;break;case`vertical`:s|=d<0?da:fa;break}}else Di(e.group,{defaultLayoutDeferred:m,derivedPanelConstraints:h,groupSize:g,layout:t,separatorToPanels:v})}});let c=0;t.movementX===0?c|=o&pa:c|=s&pa,t.movementY===0?c|=o&ma:c|=s&ma,ia(c),ya(e)}function xa(e){let t=Ti(),n=na();switch(n.state){case`active`:ba({document:e.currentTarget,event:e,hitRegions:n.hitRegions,initialLayoutMap:n.initialLayoutMap,mountedGroups:t,prevCursorFlags:n.cursorFlags})}}function Sa(e){if(e.defaultPrevented)return;let t=na(),n=Ti();switch(t.state){case`active`:if(e.buttons===0){aa({cursorFlags:0,state:`inactive`}),t.hitRegions.forEach(e=>{let t=Y(e.group.id,!0);Di(e.group,t)});return}ba({document:e.currentTarget,event:e,hitRegions:t.hitRegions,initialLayoutMap:t.initialLayoutMap,mountedGroups:n,pointerDownAtPoint:t.pointerDownAtPoint,prevCursorFlags:t.cursorFlags});break;default:{let r=Bi(e,n);r.length===0?t.state!==`inactive`&&aa({cursorFlags:0,state:`inactive`}):aa({cursorFlags:0,hitRegions:r,state:`hover`}),ya(e.currentTarget);break}}}function Ca(e){if(e.relatedTarget instanceof HTMLIFrameElement)switch(na().state){case`hover`:aa({cursorFlags:0,state:`inactive`})}}function wa(e){if(e.defaultPrevented||e.pointerType===`mouse`&&e.button>0)return;let t=na();switch(t.state){case`active`:aa({cursorFlags:0,state:`inactive`}),t.hitRegions.length>0&&(ya(e.currentTarget),t.hitRegions.forEach(e=>{let t=Y(e.group.id,!0);Di(e.group,t)}),e.preventDefault())}}function Ta(e){let t=0,n=0,r={};for(let i of e)if(i.defaultSize!==void 0){t++;let e=si(i.defaultSize);n+=e,r[i.panelId]=e}else r[i.panelId]=void 0;let i=e.length-t;if(i!==0){let t=si((100-n)/i);for(let n of e)n.defaultSize===void 0&&(r[n.panelId]=t)}return r}function Ea(e,t,n){if(!n[0])return;let r=e.panels.find(e=>e.element===t);if(!r||!r.onResize)return;let i=ci({group:e}),a=e.orientation===`horizontal`?r.element.offsetWidth:r.element.offsetHeight,o=r.mutableValues.prevSize,s={asPercentage:si(a/i*100),inPixels:a};r.mutableValues.prevSize=s,r.onResize(s,r.id,o)}function Da(e,t){if(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 Oa({group:e,nextGroupSize:t,prevGroupSize:n,prevLayout:r}){if(n<=0||t<=0||n===t)return r;let i=0,a=0,o=!1,s=new Map,c=[];for(let l of e.panels){let e=r[l.id]??0;switch(l.panelConstraints.groupResizeBehavior){case`preserve-pixel-size`:{o=!0;let r=si(e/100*n/t*100);s.set(l.id,r),i+=r;break}default:c.push(l.id),a+=e;break}}if(!o||c.length===0)return r;let l=100-i,u={...r};if(s.forEach((e,t)=>{u[t]=e}),a>0)for(let e of c)u[e]=si((r[e]??0)/a*l);else{let e=si(l/c.length);for(let t of c)u[t]=e}return u}function ka(e,t){let n=e.map(e=>e.id),r=Object.keys(t);if(n.length!==r.length)return!1;for(let e of n)if(!r.includes(e))return!1;return!0}var Aa=new Map;function ja(e){let t=!0;ui(e.element.ownerDocument.defaultView,`Cannot register an unmounted Group`);let n=e.element.ownerDocument.defaultView.ResizeObserver,r=new Set,i=new Set,a=new n(n=>{for(let r of n){let{borderBoxSize:n,target:i}=r;if(i===e.element){if(t){let t=ci({group:e});if(t===0)return;let n=Y(e.id);if(!n)return;let r=li(e),i=n.defaultLayoutDeferred?Ta(r):n.layout,a=qi({layout:Oa({group:e,nextGroupSize:t,prevGroupSize:n.groupSize,prevLayout:i}),panelConstraints:r});if(!n.defaultLayoutDeferred&&Ki(n.layout,a)&&Da(n.derivedPanelConstraints,r)&&n.groupSize===t)return;Di(e,{defaultLayoutDeferred:!1,derivedPanelConstraints:r,groupSize:t,layout:a,separatorToPanels:n.separatorToPanels})}}else Ea(e,i,n)}});a.observe(e.element),e.panels.forEach(e=>{ui(!r.has(e.id),`Panel ids must be unique; id "${e.id}" was used more than once`),r.add(e.id),e.onResize&&a.observe(e.element)});let o=ci({group:e}),s=li(e),c=e.panels.map(({id:e})=>e).join(`,`),l=e.mutableState.defaultLayout;l&&(ka(e.panels,l)||(l=void 0));let u=qi({layout:e.mutableState.layouts[c]??l??Ta(s),panelConstraints:s}),d=e.element.ownerDocument;Aa.set(d,(Aa.get(d)??0)+1);let f=new Map;return yi(e).forEach(e=>{e.separator&&f.set(e.separator,e.panels)}),Di(e,{defaultLayoutDeferred:o===0,derivedPanelConstraints:s,groupSize:o,layout:u,separatorToPanels:f}),e.separators.forEach(e=>{ui(!i.has(e.id),`Separator ids must be unique; id "${e.id}" was used more than once`),i.add(e.id),e.element.addEventListener(`keydown`,$i)}),Aa.get(d)===1&&(d.addEventListener(`dblclick`,Yi,!0),d.addEventListener(`pointerdown`,oa,!0),d.addEventListener(`pointerleave`,xa),d.addEventListener(`pointermove`,Sa),d.addEventListener(`pointerout`,Ca),d.addEventListener(`pointerup`,wa,!0)),function(){t=!1,Aa.set(d,Math.max(0,(Aa.get(d)??0)-1)),Ci(e),e.separators.forEach(e=>{e.element.removeEventListener(`keydown`,$i)}),Aa.get(d)||(d.removeEventListener(`dblclick`,Yi,!0),d.removeEventListener(`pointerdown`,oa,!0),d.removeEventListener(`pointerleave`,xa),d.removeEventListener(`pointermove`,Sa),d.removeEventListener(`pointerout`,Ca),d.removeEventListener(`pointerup`,wa,!0)),a.disconnect()}}function Ma(){let[e,t]=(0,q.useState)({});return[e,(0,q.useCallback)(()=>t({}),[])]}function Na(e){let t=(0,q.useId)();return`${e??t}`}var Pa=typeof window<`u`?q.useLayoutEffect:q.useEffect;function Fa(e){let t=(0,q.useRef)(e);return Pa(()=>{t.current=e},[e]),(0,q.useCallback)((...e)=>t.current?.(...e),[t])}function Ia(...e){return Fa(t=>{e.forEach(e=>{if(e)switch(typeof e){case`function`:e(t);break;case`object`:e.current=t;break}})})}function La(e){let t=(0,q.useRef)({...e});return Pa(()=>{for(let n in e)t.current[n]=e[n]},[e]),t.current}var Ra=(0,q.createContext)(null);function za(e,t){let n=(0,q.useRef)({getLayout:()=>({}),setLayout:sa});(0,q.useImperativeHandle)(t,()=>n.current,[]),Pa(()=>{Object.assign(n.current,Zi({groupId:e}))})}function Ba({children:e,className:t,defaultLayout:n,disableCursor:r,disabled:i,elementRef:a,groupRef:o,id:s,onLayoutChange:c,onLayoutChanged:l,orientation:u=`horizontal`,resizeTargetMinimumSize:d={coarse:20,fine:10},style:f,...p}){let m=(0,q.useRef)({onLayoutChange:{},onLayoutChanged:{}}),h=Fa(e=>{Ki(m.current.onLayoutChange,e)||(m.current.onLayoutChange=e,c?.(e))}),g=Fa(e=>{Ki(m.current.onLayoutChanged,e)||(m.current.onLayoutChanged=e,l?.(e))}),_=Na(s),v=(0,q.useRef)(null),[y,b]=Ma(),x=(0,q.useRef)({lastExpandedPanelSizes:{},layouts:{},panels:[],resizeTargetMinimumSize:d,separators:[]}),S=Ia(v,a);za(_,o);let C=Fa((e,t)=>{let r=na(),i=wi(e),a=Y(e);if(a){let e=!1;switch(r.state){case`active`:e=r.hitRegions.some(e=>e.group===i);break}return{flexGrow:a.layout[t]??1,pointerEvents:e?`none`:void 0}}return{flexGrow:n?.[t]??1}}),w=La({defaultLayout:n,disableCursor:r}),T=(0,q.useMemo)(()=>({get disableCursor(){return!!w.disableCursor},getPanelStyles:C,id:_,orientation:u,registerPanel:e=>{let t=x.current;return t.panels=di(u,[...t.panels,e]),b(),()=>{t.panels=t.panels.filter(t=>t!==e),b()}},registerSeparator:e=>{let t=x.current;return t.separators=di(u,[...t.separators,e]),b(),()=>{t.separators=t.separators.filter(t=>t!==e),b()}},togglePanelDisabled:(e,t)=>{let n=x.current.panels.find(t=>t.id===e);n&&(n.panelConstraints.disabled=t);let r=wi(_),i=Y(_);r&&i&&Di(r,{...i,derivedPanelConstraints:li(r)})},toggleSeparatorDisabled:(e,t)=>{let n=x.current.separators.find(t=>t.id===e);n&&(n.disabled=t)}}),[C,_,b,u,w]),E=(0,q.useRef)(null);return Pa(()=>{let e=v.current;if(e===null)return;let t=x.current,n;if(w.defaultLayout!==void 0&&Object.keys(w.defaultLayout).length===t.panels.length){n={};for(let e of t.panels){let t=w.defaultLayout[e.id];t!==void 0&&(n[e.id]=t)}}let r={disabled:!!i,element:e,id:_,mutableState:{defaultLayout:n,disableCursor:!!w.disableCursor,expandedPanelSizes:x.current.lastExpandedPanelSizes,layouts:x.current.layouts},orientation:u,panels:t.panels,resizeTargetMinimumSize:t.resizeTargetMinimumSize,separators:t.separators};E.current=r;let a=ja(r),{defaultLayoutDeferred:o,derivedPanelConstraints:s,layout:c}=Y(r.id,!0);!o&&s.length>0&&(h(c),g(c));let l=Ei(_,e=>{let{defaultLayoutDeferred:t,derivedPanelConstraints:n,layout:i}=e.next;if(t||n.length===0)return;let a=r.panels.map(({id:e})=>e).join(`,`);r.mutableState.layouts[a]=i,n.forEach(t=>{if(t.collapsible){let{layout:n}=e.prev??{};if(n){let e=Hi(t.collapsedSize,i[t.panelId]),a=Hi(t.collapsedSize,n[t.panelId]);e&&!a&&(r.mutableState.expandedPanelSizes[t.panelId]=n[t.panelId])}}});let o=na().state!==`active`;h(i),o&&g(i)});return()=>{E.current=null,a(),l()}},[i,_,g,h,u,y,w]),(0,q.useEffect)(()=>{let e=E.current;e&&(e.mutableState.defaultLayout=n,e.mutableState.disableCursor=!!r)}),(0,J.jsx)(Ra.Provider,{value:T,children:(0,J.jsx)(`div`,{...p,className:t,"data-group":!0,"data-testid":_,id:_,ref:S,style:{height:`100%`,width:`100%`,overflow:`hidden`,...f,display:`flex`,flexDirection:u===`horizontal`?`row`:`column`,flexWrap:`nowrap`,touchAction:u===`horizontal`?`pan-y`:`pan-x`},children:e})})}Ba.displayName=`Group`;function Va(){let e=(0,q.useContext)(Ra);return ui(e,`Group Context not found; did you render a Panel or Separator outside of a Group?`),e}function Ha(e,t){let{id:n}=Va(),r=(0,q.useRef)({collapse:ca,expand:ca,getSize:()=>({asPercentage:0,inPixels:0}),isCollapsed:()=>!1,resize:ca});(0,q.useImperativeHandle)(t,()=>r.current,[]),Pa(()=>{Object.assign(r.current,Ji({groupId:n,panelId:e}))})}function Ua({children:e,className:t,collapsedSize:n=`0%`,collapsible:r=!1,defaultSize:i,disabled:a,elementRef:o,groupResizeBehavior:s=`preserve-relative-size`,id:c,maxSize:l=`100%`,minSize:u=`0%`,onResize:d,panelRef:f,style:p,...m}){let h=!!c,g=Na(c),_=La({disabled:a}),v=(0,q.useRef)(null),y=Ia(v,o),{getPanelStyles:b,id:x,orientation:S,registerPanel:C,togglePanelDisabled:w}=Va(),T=d!==null,E=Fa((e,t,n)=>{d?.(e,c,n)});Pa(()=>{let e=v.current;if(e!==null)return C({element:e,id:g,idIsStable:h,mutableValues:{expandToSize:void 0,prevSize:void 0},onResize:T?E:void 0,panelConstraints:{groupResizeBehavior:s,collapsedSize:n,collapsible:r,defaultSize:i,disabled:_.disabled,maxSize:l,minSize:u}})},[s,n,r,i,T,g,h,l,u,E,C,_]),(0,q.useEffect)(()=>{w(g,!!a)},[a,g,w]),Ha(g,f);let D=(0,q.useSyncExternalStore)(e=>Ei(x,e),()=>JSON.stringify(b(x,g)),()=>JSON.stringify(b(x,g)));return(0,J.jsx)(`div`,{...m,"aria-disabled":a||void 0,"data-panel":!0,"data-testid":g,id:g,ref:y,style:{...Wa,display:`flex`,flexBasis:0,flexShrink:1,overflow:`visible`,...JSON.parse(D)},children:(0,J.jsx)(`div`,{className:t,style:{maxHeight:`100%`,maxWidth:`100%`,flexGrow:1,overflow:`auto`,...p,touchAction:S===`horizontal`?`pan-y`:`pan-x`},children:e})})}Ua.displayName=`Panel`;var Wa={minHeight:0,maxHeight:`100%`,height:`auto`,minWidth:0,maxWidth:`100%`,width:`auto`,border:`none`,borderWidth:0,padding:0,margin:0};function Ga({layout:e,panelConstraints:t,panelId:n,panelIndex:r}){let i,a,o=e[n],s=t.find(e=>e.panelId===n);if(s){let c=s.maxSize,l=s.collapsible?s.collapsedSize:s.minSize,u=[r,r+1];a=qi({layout:Gi({delta:l-o,initialLayout:e,panelConstraints:t,pivotIndices:u,prevLayout:e}),panelConstraints:t})[n],i=qi({layout:Gi({delta:c-o,initialLayout:e,panelConstraints:t,pivotIndices:u,prevLayout:e}),panelConstraints:t})[n]}return{valueControls:n,valueMax:i,valueMin:a,valueNow:o}}function Ka({children:e,className:t,disabled:n,elementRef:r,id:i,style:a,...o}){let s=Na(i),c=La({disabled:n}),[l,u]=(0,q.useState)({}),[d,f]=(0,q.useState)(`inactive`),p=(0,q.useRef)(null),m=Ia(p,r),{disableCursor:h,id:g,orientation:_,registerSeparator:v,toggleSeparatorDisabled:y}=Va(),b=_===`horizontal`?`vertical`:`horizontal`;Pa(()=>{let e=p.current;if(e!==null){let t={disabled:c.disabled,element:e,id:s},n=v(t),r=ra(e=>{f(e.next.state!==`inactive`&&e.next.hitRegions.some(e=>e.separator===t)?e.next.state:`inactive`)}),i=Ei(g,e=>{let{derivedPanelConstraints:n,layout:r,separatorToPanels:i}=e.next,a=i.get(t);if(a){let e=a[0],t=a.indexOf(e);u(Ga({layout:r,panelConstraints:n,panelId:e.id,panelIndex:t}))}});return()=>{r(),i(),n()}}},[g,s,v,c]),(0,q.useEffect)(()=>{y(s,!!n)},[n,s,y]);let x;return n&&!h&&(x=`not-allowed`),(0,J.jsx)(`div`,{...o,"aria-controls":l.valueControls,"aria-disabled":n||void 0,"aria-orientation":b,"aria-valuemax":l.valueMax,"aria-valuemin":l.valueMin,"aria-valuenow":l.valueNow,children:e,className:t,"data-separator":n?`disabled`:d,"data-testid":s,id:s,ref:m,role:`separator`,style:{flexBasis:`auto`,cursor:x,...a,flexGrow:0,flexShrink:0,touchAction:`none`},tabIndex:n?void 0:0})}Ka.displayName=`Separator`;function qa(e){let[t,n]=(0,q.useState)(()=>typeof window<`u`?window.matchMedia(e).matches:!1);return(0,q.useEffect)(()=>{let t=window.matchMedia(e),r=e=>n(e.matches);return t.addEventListener(`change`,r),n(t.matches),()=>t.removeEventListener(`change`,r)},[e]),t}function Ja(e){try{let t=new Date(e),n=new Date().getTime()-t.getTime(),r=Math.floor(n/6e4);if(r<1)return`just now`;if(r<60)return`${r}m ago`;let i=Math.floor(r/60);if(i<24)return`${i}h ago`;let a=Math.floor(i/24);return a<7?`${a}d ago`:t.toLocaleDateString(void 0,{month:`short`,day:`numeric`})}catch{return``}}function Ya(e,t){let[n,r]=(0,q.useState)(e);return(0,q.useEffect)(()=>{let n=setTimeout(()=>r(e),t);return()=>clearTimeout(n)},[e,t]),n}function Xa(e){let[t,n]=(0,q.useState)([]),[r,i]=(0,q.useState)({}),a=(0,q.useCallback)(async()=>{if(e)try{let t=await R.get(`${L(e)}/tags`);n(t.tags),i(t.counts)}catch{}},[e]);return(0,q.useEffect)(()=>{a()},[a]),{projectTags:t,tagCounts:r,loadTags:a}}function Za({projectTags:e,tagCounts:t,totalCount:n,selectedTagId:r,onSelect:i}){return e.length===0?null:(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-1.5 overflow-x-auto scrollbar-none`,children:[(0,J.jsxs)(`button`,{onClick:()=>i(null),className:`shrink-0 rounded-md border px-2 py-1 text-[10px] transition-colors ${r===null?`bg-primary/20 border-primary text-primary`:`border-border bg-surface text-text-secondary hover:bg-surface-elevated`}`,children:[`All (`,n,`)`]}),e.map(e=>(0,J.jsxs)(`button`,{onClick:()=>i(r===e.id?null:e.id),className:`shrink-0 flex items-center gap-1 rounded-md border px-2 py-1 text-[10px] transition-colors ${r===e.id?`border-current`:`border-border bg-surface hover:bg-surface-elevated`}`,style:r===e.id?{backgroundColor:e.color+`20`,color:e.color,borderColor:e.color}:void 0,children:[(0,J.jsx)(`span`,{className:`size-2 rounded-full shrink-0`,style:{backgroundColor:e.color}}),e.name,` (`,t[e.id]??0,`)`]},e.id))]})}var Qa={approval_request:`bg-error`,question:`bg-warning`,done:`bg-primary`},$a={done:0,question:1,approval_request:2};function eo(e){return e&&Qa[e]||`bg-error`}var to={approval_request:`bg-error/10`,question:`bg-warning/10`,done:`bg-primary/10`};function no(e){return e&&to[e]||`bg-error/10`}var X=nt()(e=>({notifications:new Map,addNotification:(t,n,r,i)=>{e(e=>{let a=new Map(e.notifications),o=a.get(t);return a.set(t,{count:(o?.count??0)+1,type:n,projectName:r,sessionTitle:i??o?.sessionTitle??null}),{notifications:a}})},markUnread:(t,n,r)=>{e(e=>{let i=new Map(e.notifications);return i.set(t,{count:1,type:`done`,projectName:n,sessionTitle:r??i.get(t)?.sessionTitle??null,manual:!0}),{notifications:i}}),R.post(`/api/project/${encodeURIComponent(n)}/chat/sessions/${encodeURIComponent(t)}/unread`,{projectName:n}).catch(()=>{})},clearForSession:t=>{let n=X.getState().notifications.get(t)?.projectName;e(e=>{if(!e.notifications.has(t))return e;let n=new Map(e.notifications);return n.delete(t),{notifications:n}}),n&&R.post(`/api/project/${encodeURIComponent(n)}/chat/sessions/${encodeURIComponent(t)}/read`).catch(()=>{})},clearAll:()=>e({notifications:new Map}),loadFromServer:async t=>{try{let n=await R.get(`/api/project/${encodeURIComponent(t)}/chat/sessions/unread`);e(()=>{let e=new Map;for(let t of n)t.unreadCount>0&&e.set(t.sessionId,{count:t.unreadCount,type:t.unreadType||`done`,projectName:t.projectName||``,sessionTitle:t.sessionTitle??null});return{notifications:e}})}catch{}},handleUnreadChanged:(t,n,r,i,a,o)=>{e(e=>{let s=new Map(e.notifications);if(n===0)s.delete(t);else{let e=s.get(t);s.set(t,{count:n>0?n:(e?.count??0)+1,type:r||`done`,projectName:i||e?.projectName||``,sessionTitle:a??e?.sessionTitle??null,manual:o??e?.manual})}return{notifications:s}})}}));function ro(e){return e.notifications.size}function io(e){return t=>{if(!e)return 0;let n=0;for(let[,r]of t.notifications)r.projectName===e&&n++;return n}}function ao(e){return t=>{let n=null,r=-1;for(let[,i]of t.notifications){if(i.projectName!==e)continue;let t=$a[i.type]??0;t>r&&(r=t,n=i.type)}return n}}function oo({session:e,projectName:t,projectTags:n,children:r,onTogglePin:i,onStartEditing:a,onDeleteSession:o,onTagChanged:s}){let c=X(e=>e.markUnread),l=X(t=>t.notifications.has(e.id)),u=(0,q.useCallback)(async r=>{try{if(r){await R.patch(`${L(t)}/chat/sessions/${e.id}/tag`,{tagId:r});let i=n.find(e=>e.id===r);i&&s(e.id,{id:i.id,name:i.name,color:i.color})}else await R.del(`${L(t)}/chat/sessions/${e.id}/tag`),s(e.id,null)}catch{}},[e.id,t,n,s]);return(0,J.jsxs)(ge,{children:[(0,J.jsx)(ye,{asChild:!0,children:r}),(0,J.jsxs)(Ee,{children:[(0,J.jsxs)(ke,{onClick:t=>i(t,e),children:[e.pinned?(0,J.jsx)(fr,{className:`size-3.5 mr-2`}):(0,J.jsx)(pr,{className:`size-3.5 mr-2`}),e.pinned?`Unpin`:`Pin`]}),!l&&(0,J.jsxs)(ke,{onClick:()=>c(e.id,t,e.title),children:[(0,J.jsx)(Qt,{className:`size-3.5 mr-2 fill-primary text-primary`}),`Mark as unread`]}),a&&(0,J.jsxs)(ke,{onClick:t=>a(e,t),children:[(0,J.jsx)(De,{className:`size-3.5 mr-2`}),`Rename`]}),n.length>0&&(0,J.jsxs)(Ce,{children:[(0,J.jsxs)(ve,{children:[(0,J.jsx)(Pr,{className:`size-3.5 mr-2`}),`Set Tag`]}),(0,J.jsxs)(je,{children:[n.map(t=>(0,J.jsxs)(ke,{onClick:()=>u(t.id),children:[(0,J.jsx)(`span`,{className:`size-2.5 rounded-full mr-2 shrink-0`,style:{backgroundColor:t.color}}),t.name,e.tag?.id===t.id&&(0,J.jsx)(xe,{className:`size-3 ml-auto`})]},t.id)),e.tag&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(_e,{}),(0,J.jsx)(ke,{onClick:()=>u(null),children:`Remove tag`})]})]})]}),o&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(_e,{}),(0,J.jsxs)(ke,{className:`text-error focus:text-error`,onClick:t=>o(t,e),children:[(0,J.jsx)(Rr,{className:`size-3.5 mr-2`}),`Delete`]})]})]})]})}var so=5,co=20;function lo({projectName:e,onSelectSession:t,className:n}){let[r,i]=(0,q.useState)([]),[a,o]=(0,q.useState)(!1),[s,c]=(0,q.useState)(!1),[l,u]=(0,q.useState)(``),d=Ya(l,300),[f,p]=(0,q.useState)(null),{projectTags:m,tagCounts:h,loadTags:g}=Xa(e),_=(0,q.useCallback)(async t=>{if(e){o(!0);try{let n=new URLSearchParams({limit:String(co)});t&&n.set(`q`,t),i((await R.get(`${L(e)}/chat/sessions?${n}`)).sessions.slice(0,co))}catch{}finally{o(!1)}}},[e]);(0,q.useEffect)(()=>{_()},[_]),(0,q.useEffect)(()=>{_(d||void 0)},[d]);let v=(0,q.useCallback)(async(t,n)=>{if(t.stopPropagation(),!e)return;let r=`${L(e)}/chat/sessions/${n.id}/pin`;try{n.pinned?await R.del(r):await R.put(r),i(e=>e.map(e=>e.id===n.id?{...e,pinned:!e.pinned}:e).sort((e,t)=>e.pinned&&!t.pinned?-1:!e.pinned&&t.pinned?1:new Date(t.createdAt).getTime()-new Date(e.createdAt).getTime()))}catch{}},[e]),y=(0,q.useCallback)((e,t)=>{i(n=>n.map(n=>n.id===e?{...n,tag:t}:n)),g()},[g]),b=f===null?r:r.filter(e=>e.tag?.id===f),x=b.filter(e=>e.pinned),S=b.filter(e=>!e.pinned),C=s?S:S.slice(0,so),w=S.length>so;return a||!e||r.length===0?null:(0,J.jsxs)(`div`,{className:n,children:[(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsx)(Ge,{className:`absolute left-2.5 top-1/2 -translate-y-1/2 size-3.5 text-text-subtle pointer-events-none`}),(0,J.jsx)(`input`,{type:`text`,value:l,onChange:e=>u(e.target.value),placeholder:`Search chats...`,className:`w-full pl-8 pr-8 py-1.5 text-xs rounded-md border border-border bg-surface text-text-primary placeholder:text-text-subtle focus:outline-none focus:ring-1 focus:ring-primary/50`}),l&&(0,J.jsx)(`button`,{onClick:()=>u(``),className:`absolute right-2 top-1/2 -translate-y-1/2 text-text-subtle hover:text-text-primary`,children:(0,J.jsx)(Qe,{className:`size-3.5`})})]}),(0,J.jsx)(`div`,{className:`mt-3`,children:(0,J.jsx)(Za,{projectTags:m,tagCounts:h,totalCount:r.length,selectedTagId:f,onSelect:p})}),x.length>0&&(0,J.jsxs)(`div`,{className:`flex flex-col gap-2 w-full mt-4`,children:[(0,J.jsx)(`p`,{className:`text-xs text-text-subtle text-center`,children:`Pinned`}),(0,J.jsx)(`div`,{className:`w-full rounded-md border border-border bg-surface overflow-hidden`,children:x.map(n=>(0,J.jsx)(uo,{session:n,projectName:e,projectTags:m,onSelect:t,onTogglePin:v,onTagChanged:y},n.id))})]}),C.length>0&&(0,J.jsxs)(`div`,{className:`flex flex-col gap-2 w-full mt-4`,children:[(0,J.jsx)(`p`,{className:`text-xs text-text-subtle text-center`,children:`Recent chats`}),(0,J.jsx)(`div`,{className:`w-full rounded-md border border-border bg-surface overflow-hidden`,children:C.map(n=>(0,J.jsx)(uo,{session:n,projectName:e,projectTags:m,onSelect:t,onTogglePin:v,onTagChanged:y},n.id))}),w&&(0,J.jsxs)(`button`,{onClick:()=>c(!s),className:`flex items-center justify-center gap-1 text-[11px] text-text-subtle hover:text-text-primary transition-colors py-1`,children:[s?(0,J.jsx)(Wt,{className:`size-3`}):(0,J.jsx)(Ne,{className:`size-3`}),s?`Show less`:`Show more (${S.length-so})`]})]})]})}function uo({session:e,projectName:t,projectTags:n,onSelect:r,onTogglePin:i,onTagChanged:a}){let o=X(t=>t.notifications.get(e.id));return(0,J.jsx)(oo,{session:e,projectName:t,projectTags:n,onTogglePin:i,onTagChanged:a,children:(0,J.jsxs)(`button`,{onClick:()=>r(e),className:V(`group flex items-center gap-2.5 w-full px-3 py-2.5 text-left hover:bg-surface-elevated active:bg-surface-elevated transition-colors border-b border-border/50 last:border-0`,o&&no(o.type)),children:[(0,J.jsx)($n,{className:`size-3.5 shrink-0 text-text-subtle`}),e.tag&&(0,J.jsx)(`span`,{className:`size-2 rounded-full shrink-0`,style:{backgroundColor:e.tag.color},title:e.tag.name}),(0,J.jsx)(`span`,{className:V(`flex-1 min-w-0 text-xs truncate`,o?`font-semibold text-foreground`:`font-medium text-text-primary`),children:e.title||`Untitled`}),e.updatedAt&&(0,J.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0`,children:Ja(e.updatedAt)}),(0,J.jsx)(`span`,{role:`button`,tabIndex:0,onClick:t=>i(t,e),className:`p-1 rounded transition-colors shrink-0 ${e.pinned?`text-primary hover:text-primary/70`:`text-text-subtle can-hover:opacity-0 can-hover:group-hover:opacity-100 hover:text-text-primary`}`,"aria-label":e.pinned?`Unpin session`:`Pin session`,children:e.pinned?(0,J.jsx)(fr,{className:`size-3`}):(0,J.jsx)(pr,{className:`size-3`})})]})})}function fo(e,t){return e.map(e=>({name:e.name,path:t?`${t}/${e.name}`:e.name,type:e.type,ignored:e.isIgnored}))}function po(e,t,n){return t?e.map(e=>mo(e,t,n)):n.map(t=>{let n=e.find(e=>e.path===t.path);return n?{...t,children:n.children}:t})}function mo(e,t,n){if(e.path===t){let t=n.map(t=>{let n=e.children?.find(e=>e.path===t.path);return n?{...t,children:n.children}:t});return{...e,children:t}}return e.children&&t.startsWith(e.path+`/`)?{...e,children:e.children.map(e=>mo(e,t,n))}:e}var ho=nt((e,t)=>({tree:[],fileIndex:[],loading:!1,error:null,expandedPaths:new Set,loadedPaths:new Set,inflight:new Map,indexStatus:`idle`,selectedFiles:[],inlineAction:null,clipboard:null,focusedPath:null,setInlineAction:t=>e({inlineAction:t}),clearInlineAction:()=>e({inlineAction:null}),setClipboard:t=>e({clipboard:t}),setFocusedPath:t=>e({focusedPath:t}),loadRoot:async n=>{e({loading:!0,error:null});try{let r=fo(await R.get(`${L(n)}/files/list?path=`),``),i=new Set(t().loadedPaths);i.add(``),e({tree:r,loading:!1,loadedPaths:i})}catch(t){e({error:t instanceof Error?t.message:`Failed to load files`,loading:!1})}},loadChildren:async(n,r)=>{let i=t();if(i.loadedPaths.has(r))return;let a=i.inflight.get(r);a&&a.abort();let o=new AbortController,s=new Map(i.inflight);s.set(r,o),e({inflight:s});try{let i=encodeURIComponent(r),a=await R.get(`${L(n)}/files/list?path=${i}`,{signal:o.signal});if(o.signal.aborted)return;let s=fo(a,r),c=t(),l=po(c.tree,r,s),u=new Set(c.loadedPaths);u.add(r);let d=new Map(c.inflight);d.delete(r),e({tree:l,loadedPaths:u,inflight:d})}catch(n){if(n instanceof Error&&n.name===`AbortError`)return;let i=new Map(t().inflight);i.delete(r),e({inflight:i})}},loadIndex:async t=>{e({indexStatus:`loading`});try{e({fileIndex:await R.get(`${L(t)}/files/index`),indexStatus:`ready`})}catch{e({indexStatus:`error`})}},invalidateIndex:()=>{e({indexStatus:`idle`,fileIndex:[]})},invalidateFolder:async(n,r)=>{let i=t();if(!i.loadedPaths.has(r))return;let a=new Set(i.loadedPaths);a.delete(r),e({loadedPaths:a}),(!r||i.expandedPaths.has(r))&&await t().loadChildren(n,r)},toggleExpand:(n,r)=>{let i=t(),a=new Set(i.expandedPaths);a.has(r)?(a.delete(r),e({expandedPaths:a})):(a.add(r),e({expandedPaths:a}),i.loadedPaths.has(r)||t().loadChildren(n,r))},setExpanded:(n,r)=>{let i=new Set(t().expandedPaths);r?i.add(n):i.delete(n),e({expandedPaths:i})},collapseAll:()=>{e({expandedPaths:new Set})},toggleFileSelect:n=>{let r=t().selectedFiles;r.indexOf(n)>=0?e({selectedFiles:r.filter(e=>e!==n)}):e({selectedFiles:[...r,n]})},setSelectedFiles:t=>e({selectedFiles:t}),clearSelection:()=>e({selectedFiles:[]}),reset:()=>{for(let e of t().inflight.values())e.abort();e({tree:[],fileIndex:[],loading:!1,error:null,expandedPaths:new Set,loadedPaths:new Set,inflight:new Map,indexStatus:`idle`,selectedFiles:[],inlineAction:null,clipboard:null,focusedPath:null})},fetchTree:async e=>{await t().loadRoot(e),t().loadIndex(e)}}));function go(){let{tree:e,expandedPaths:t}=ho.getState(),n=[];function r(e){let i=[...e].sort((e,t)=>e.type===t.type?e.name.localeCompare(t.name):e.type===`directory`?-1:1);for(let e of i){let i=e;if(e.type===`directory`&&t.has(e.path)&&e.children)for(;i.children&&i.children.length===1&&i.children[0].type===`directory`&&t.has(i.children[0].path);)i=i.children[0];n.push(i.path),i.type===`directory`&&t.has(i.path)&&i.children&&r(i.children)}}return r(e),n}function _o(e,t){let n;try{n=e()}catch{return}return{getItem:e=>{let r=e=>e===null?null:JSON.parse(e,t?.reviver),i=n.getItem(e)??null;return i instanceof Promise?i.then(r):r(i)},setItem:(e,r)=>n.setItem(e,JSON.stringify(r,t?.replacer)),removeItem:e=>n.removeItem(e)}}var vo=e=>t=>{try{let n=e(t);return n instanceof Promise?n:{then(e){return vo(e)(n)},catch(e){return this}}}catch(e){return{then(e){return this},catch(t){return vo(t)(e)}}}},yo=(e,t)=>(n,r,i)=>{let a={storage:_o(()=>window.localStorage),partialize:e=>e,version:0,merge:(e,t)=>({...t,...e}),...t},o=!1,s=0,c=new Set,l=new Set,u=a.storage;if(!u)return e((...e)=>{console.warn(`[zustand persist middleware] Unable to update item '${a.name}', the given storage is currently unavailable.`),n(...e)},r,i);let d=()=>{let e=a.partialize({...r()});return u.setItem(a.name,{state:e,version:a.version})},f=i.setState;i.setState=(e,t)=>(f(e,t),d());let p=e((...e)=>(n(...e),d()),r,i);i.getInitialState=()=>p;let m,h=()=>{if(!u)return;let e=++s;o=!1,c.forEach(e=>e(r()??p));let t=a.onRehydrateStorage?.call(a,r()??p)||void 0;return vo(u.getItem.bind(u))(a.name).then(e=>{if(e)if(typeof e.version==`number`&&e.version!==a.version){if(a.migrate){let t=a.migrate(e.state,e.version);return t instanceof Promise?t.then(e=>[!0,e]):[!0,t]}console.error(`State loaded from storage couldn't be migrated since no migrate function was provided`)}else return[!1,e.state];return[!1,void 0]}).then(t=>{if(e!==s)return;let[i,o]=t;if(m=a.merge(o,r()??p),n(m,!0),i)return d()}).then(()=>{e===s&&(t?.(m,void 0),m=r(),o=!0,l.forEach(e=>e(m)))}).catch(n=>{e===s&&t?.(void 0,n)})};return i.persist={setOptions:e=>{a={...a,...e},e.storage&&(u=e.storage)},clearStorage:()=>{u?.removeItem(a.name)},getOptions:()=>a,rehydrate:()=>h(),hasHydrated:()=>o,onHydrate:e=>(c.add(e),()=>{c.delete(e)}),onFinishHydration:e=>(l.add(e),()=>{l.delete(e)})},a.skipHydration||h(),m||p},bo=5e5,xo=nt()(yo(e=>({selection:null,setSelection:t=>e({selection:t}),clearSelection:()=>e({selection:null})}),{name:`ppm:compare-selection`,partialize:e=>{if(!e.selection)return{selection:null};let t=e.selection;if(t.dirtyContent&&t.dirtyContent.length>bo){let{dirtyContent:e,...n}=t;return{selection:n}}return{selection:t}}})),So=null;U.subscribe(e=>{let t=e.activeProject?.name??null;So!==null&&So!==t&&xo.getState().clearSelection(),So=t});async function Co(e,t,n){let r=`${rt(e.path)} ↔ ${rt(t.path)}`,i=e.dirtyContent!==void 0,a=t.dirtyContent!==void 0,o;if(i||a){let[r,i]=await Promise.all([wo(e,n),wo(t,n)]);o={projectName:n,original:r,modified:i,file1:e.path,file2:t.path}}else o={projectName:n,file1:e.path,file2:t.path};return W.getState().openTab({type:`git-diff`,title:r,projectId:n,metadata:o,closable:!0})}async function wo(e,t){if(e.dirtyContent!==void 0)return e.dirtyContent;try{let{content:n}=await R.get(`${L(t)}/files/read?path=${encodeURIComponent(e.path)}`);return n}catch(t){let n=t instanceof Error?t.message:String(t);throw Error(`Failed to read "${e.path}": ${n}`)}}var To=`application/ppm-tab`,Eo=!1,Do=new Set;function Oo(e){Eo!==e&&(Eo=e,Do.forEach(e=>e()))}function ko(){return(0,q.useSyncExternalStore)(e=>(Do.add(e),()=>Do.delete(e)),()=>Eo)}function Ao(){Oo(!1)}function jo(e){let[t,n]=(0,q.useState)(null),r=(0,q.useRef)(null);return{dropIndex:t,handleDragStart:(0,q.useCallback)((t,n)=>{let r={tabId:n,panelId:e};t.dataTransfer.setData(To,JSON.stringify(r)),t.dataTransfer.effectAllowed=`move`,requestAnimationFrame(()=>Oo(!0))},[e]),handleDragOver:(0,q.useCallback)((e,t,i)=>{if(!e.dataTransfer.types.includes(`application/ppm-tab`)||(e.preventDefault(),e.dataTransfer.dropEffect=`move`,r.current===t))return;r.current=t;let a=e.currentTarget.getBoundingClientRect(),o=a.left+a.width/2;n(e.clientX<o?i:i+1)},[]),handleDragOverBar:(0,q.useCallback)(e=>{e.dataTransfer.types.includes(`application/ppm-tab`)&&(e.preventDefault(),e.dataTransfer.dropEffect=`move`)},[]),handleDrop:(0,q.useCallback)(i=>{i.preventDefault(),Oo(!1);let a=i.dataTransfer.getData(To);if(a){try{let n=JSON.parse(a),r=H.getState();n.panelId===e?t!==null&&r.reorderTab(n.tabId,e,t):r.moveTab(n.tabId,n.panelId,e,t??void 0)}catch{}n(null),r.current=null}},[e,t]),handleDragEnd:(0,q.useCallback)(()=>{Oo(!1),n(null),r.current=null},[])}}var Mo=null,No=null,Po=0,Fo=new Set;function Io(){Fo.forEach(e=>e())}function Lo(){return(0,q.useSyncExternalStore)(e=>(Fo.add(e),()=>Fo.delete(e)),()=>No)}function Ro(){return Date.now()-Po<300}var zo=null;function Bo(e,t,n){let r=document.createElement(`div`);r.id=`touch-drag-ghost`,Object.assign(r.style,{position:`fixed`,zIndex:`9999`,pointerEvents:`none`,padding:`6px 14px`,borderRadius:`8px`,background:`rgba(30,30,30,0.92)`,color:`#fff`,fontSize:`12px`,whiteSpace:`nowrap`,opacity:`0.95`,boxShadow:`0 4px 16px rgba(0,0,0,0.35)`,transform:`translate(-50%, -130%)`,left:`${t}px`,top:`${n}px`}),r.textContent=e,document.body.appendChild(r),zo=r}function Vo(e,t){zo&&(zo.style.left=`${e}px`,zo.style.top=`${t}px`)}function Ho(){zo?.remove(),zo=null}function Uo(e,t){zo&&(zo.style.display=`none`);let n=document.elementFromPoint(e,t);zo&&(zo.style.display=``);let r=n?.closest(`[data-panel-drop-zone]`);if(!r)return null;let i=r.dataset.panelDropZone,a=r.getBoundingClientRect(),o=(e-a.left)/a.width,s=(t-a.top)/a.height,c=.25,{grid:l}=H.getState(),u=window.innerWidth<768,d=it(l,i),f=d?!u&&(l[d.row]?.length??0)<ct(!1):!1,p=!u&&l.length<3,m=`center`;return o<c&&f?m=`left`:o>1-c&&f?m=`right`:s<c&&p?m=`top`:s>1-c&&p&&(m=`bottom`),{panelId:i,zone:m}}function Wo(e){if(!Mo)return;e.preventDefault();let t=e.touches[0];if(!t)return;Vo(t.clientX,t.clientY);let n=Uo(t.clientX,t.clientY);(n?.panelId!==No?.panelId||n?.zone!==No?.zone)&&(No=n,Io())}function Go(){Mo=null,No=null,Io(),Ho(),Ao(),document.removeEventListener(`touchmove`,Wo),document.removeEventListener(`touchend`,Ko),document.removeEventListener(`touchcancel`,qo)}function Ko(){let e=Mo,t=No;if(Go(),Po=Date.now(),!e||!t)return;let n=H.getState();if(t.zone===`center`)e.panelId!==t.panelId&&n.moveTab(e.tabId,e.panelId,t.panelId);else{let r=t.zone===`top`?`up`:t.zone===`bottom`?`down`:t.zone;n.splitPanel(r,e.tabId,e.panelId,t.panelId)}}function qo(){Go(),Po=Date.now()}function Jo(e,t,n,r){Mo=e,Oo(!0),Bo(t,n,r),document.addEventListener(`touchmove`,Wo,{passive:!1}),document.addEventListener(`touchend`,Ko),document.addEventListener(`touchcancel`,qo)}var Yo=200,Xo=10;function Zo(e){let t=(0,q.useRef)(null),n=(0,q.useRef)(null),r=(0,q.useRef)(!1);return{handleTouchStart:(0,q.useCallback)((i,a,o)=>{let s=i.touches[0];s&&(n.current={x:s.clientX,y:s.clientY},r.current=!1,t.current=setTimeout(()=>{r.current=!0,Jo({tabId:a,panelId:e},o,n.current.x,n.current.y)},Yo))},[e]),handleTouchMove:(0,q.useCallback)(e=>{if(r.current||!n.current||!t.current)return;let i=e.touches[0];i&&(Math.abs(i.clientX-n.current.x)>Xo||Math.abs(i.clientY-n.current.y)>Xo)&&(clearTimeout(t.current),t.current=null)},[]),handleTouchEnd:(0,q.useCallback)(()=>{t.current&&=(clearTimeout(t.current),null)},[])}}var Qo=typeof navigator<`u`&&/Mac|iPhone|iPad/.test(navigator.userAgent),$o=[{id:`command-palette`,label:`Command Palette`,category:`general`,defaultKey:`F1`,note:`Shift+Shift also opens (not customizable)`},{id:`toggle-sidebar`,label:`Toggle Sidebar`,category:`general`,defaultKey:`Mod+B`},{id:`toggle-dock`,label:`Toggle Terminal Panel`,category:`general`,defaultKey:`Mod+'`,note:`Opens/closes the terminal panel; auto-opens a terminal when empty. Fires even when a terminal is focused.`},{id:`save-prevent`,label:`Prevent Save Dialog`,category:`general`,defaultKey:`Mod+S`,locked:!0,note:`Always active — prevents browser save`},{id:`next-tab`,label:`Next Tab`,category:`tabs`,defaultKey:`Alt+]`},{id:`prev-tab`,label:`Previous Tab`,category:`tabs`,defaultKey:`Alt+[`},{id:`new-file`,label:`New File`,category:`tabs`,defaultKey:`Mod+N`},{id:`open-chat`,label:`Open Chat`,category:`tabs`,defaultKey:`Mod+L`},{id:`open-terminal`,label:`Open Terminal Tab`,category:`tabs`,defaultKey:``,note:`No default shortcut — Mod+' now toggles the terminal panel; still available via the command palette`},{id:`open-settings`,label:`Open Settings`,category:`tabs`,defaultKey:`Mod+,`},{id:`open-git-status`,label:`Git Status (sidebar)`,category:`tabs`,defaultKey:`Mod+Shift+E`},{id:`open-search`,label:`Search Files (sidebar)`,category:`tabs`,defaultKey:`Mod+Shift+F`},{id:`voice-input`,label:`Voice Input`,category:`general`,defaultKey:`Mod+Shift+V`,note:`Toggle speech-to-text in chat`},{id:`chat-nav-prev`,label:`Previous Chat Message`,category:`general`,defaultKey:`Alt+ArrowUp`,note:`Jump to your previous message in the visible chat transcript`},{id:`chat-nav-next`,label:`Next Chat Message`,category:`general`,defaultKey:`Alt+ArrowDown`,note:`Jump to your next message in the visible chat transcript`},{id:`compare-files`,label:`Compare Files...`,category:`general`,defaultKey:`Mod+Alt+D`,note:`Open file-compare picker (seeds active file as A)`},...Array.from({length:9},(e,t)=>({id:`switch-project-${t+1}`,label:`Switch to Project ${t+1}`,category:`projects`,defaultKey:`Mod+${t+1}`}))],es=new Map($o.map(e=>[e.id,e.defaultKey]));function ts(e){let t=e.split(`+`),n={ctrl:!1,meta:!1,alt:!1,shift:!1,key:``};for(let e of t){let t=e.trim();switch(t){case`Mod`:Qo?n.meta=!0:n.ctrl=!0;break;case`Ctrl`:n.ctrl=!0;break;case`Meta`:case`Cmd`:n.meta=!0;break;case`Alt`:n.alt=!0;break;case`Shift`:n.shift=!0;break;default:n.key=t.toLowerCase();break}}return n}function ns(e,t){return e.ctrlKey!==t.ctrl||e.metaKey!==t.meta||e.altKey!==t.alt||e.shiftKey!==t.shift?!1:e.key.toLowerCase()===t.key}function rs(e){return e.replace(/Mod/g,Qo?`⌘`:`Ctrl`).replace(/Shift/g,Qo?`⇧`:`Shift`).replace(/Alt/g,Qo?`⌥`:`Alt`).replace(/Meta|Cmd/g,`⌘`).replace(/Ctrl/g,Qo?`⌃`:`Ctrl`)}function is(e){if([`Control`,`Meta`,`Alt`,`Shift`].includes(e.key))return null;let t=[];e.ctrlKey&&!e.metaKey&&t.push(Qo?`Ctrl`:`Mod`),e.metaKey&&t.push(Qo?`Mod`:`Meta`),e.altKey&&t.push(`Alt`),e.shiftKey&&t.push(`Shift`);let n=e.key;return n===` `?n=`Space`:n.length===1&&(n=n.toUpperCase()),t.push(n),t.join(`+`)}function as(e){let t=new Map;for(let n of $o){let r=e[n.id]??n.defaultKey;r&&t.set(n.id,ts(r))}return t}var os=as({}),ss=nt((e,t)=>({overrides:{},parsedCache:os,loaded:!1,getBinding:e=>t().overrides[e]??es.get(e)??``,matchesEvent:(e,n)=>{let r=t().parsedCache.get(n);return r?ns(e,r):!1},setBinding:(n,r)=>{let i={...t().overrides,[n]:r};e({overrides:i,parsedCache:as(i)}),R.put(`/api/settings/keybindings`,{[n]:r}).catch(()=>{})},resetBinding:n=>{let r={...t().overrides};delete r[n],e({overrides:r,parsedCache:as(r)}),R.put(`/api/settings/keybindings`,{[n]:null}).catch(()=>{})},resetAll:()=>{let n={};for(let e of Object.keys(t().overrides))n[e]=null;e({overrides:{},parsedCache:as({})}),Object.keys(n).length>0&&R.put(`/api/settings/keybindings`,n).catch(()=>{})},loadFromServer:async()=>{try{let t=await R.get(`/api/settings/keybindings`);e({overrides:t,parsedCache:as(t),loaded:!0})}catch{e({loaded:!0})}}})),cs=nt((e,t)=>({statusBarItems:[],addStatusBarItem:t=>e(e=>({statusBarItems:[...e.statusBarItems.filter(e=>e.id!==t.id),t]})),removeStatusBarItem:t=>e(e=>({statusBarItems:e.statusBarItems.filter(e=>e.id!==t)})),updateStatusBarItem:(t,n)=>e(e=>({statusBarItems:e.statusBarItems.map(e=>e.id===t?{...e,...n}:e)})),treeViews:{},updateTree:(t,n)=>e(e=>({treeViews:{...e.treeViews,[t]:n}})),updateTreeChildren:(t,n,r)=>e(e=>{let i=e.treeViews[t];if(!i)return e;let a=e=>e.map(e=>e.id===n?{...e,children:r,collapsibleState:`expanded`}:e.children?{...e,children:a(e.children)}:e);return{treeViews:{...e.treeViews,[t]:a(i)}}}),removeTree:t=>e(e=>{let{[t]:n,...r}=e.treeViews;return{treeViews:r}}),webviewPanels:{},addWebviewPanel:t=>e(e=>({webviewPanels:{...e.webviewPanels,[t.id]:t}})),removeWebviewPanel:t=>e(e=>{let{[t]:n,...r}=e.webviewPanels;return{webviewPanels:r}}),updateWebviewPanel:(t,n)=>e(e=>{let r=e.webviewPanels[t];return r?{webviewPanels:{...e.webviewPanels,[t]:{...r,...n}}}:e}),contributions:null,setContributions:t=>e({contributions:t}),activationErrors:{},setActivationErrors:t=>e({activationErrors:t}),quickPick:null,showQuickPick:(n,r={})=>{let i=t().quickPick;return i&&i.resolve(void 0),new Promise(t=>{e({quickPick:{items:n,options:r,resolve:t}})})},resolveQuickPick:n=>{let r=t().quickPick;r&&(r.resolve(n),e({quickPick:null}))},inputBox:null,showInputBox:(n={})=>{let r=t().inputBox;return r&&r.resolve(void 0),new Promise(t=>{e({inputBox:{options:n,resolve:t}})})},resolveInputBox:n=>{let r=t().inputBox;r&&(r.resolve(n),e({inputBox:null}))},clearExtension:t=>e(e=>{let n={...e.webviewPanels};for(let[e,r]of Object.entries(n))r.extensionId===t&&delete n[e];return{statusBarItems:e.statusBarItems.filter(e=>e.extensionId!==t),webviewPanels:n}})}));function ls(e){window.dispatchEvent(new CustomEvent(`open-command-palette`,{detail:e}))}function us(){let[e,t]=(0,q.useState)(!1),[n,r]=(0,q.useState)(``);return(0,q.useEffect)(()=>{let e=0,n=!1,{matchesEvent:i}=ss.getState(),a=new Map,o=!1;function s(){o=!0}function c(){o=!1}function l(e,t){let n=t(e,`chat-nav-prev`)?`prev`:t(e,`chat-nav-next`)?`next`:null;return n?(e.preventDefault(),window.dispatchEvent(new CustomEvent(`chat-nav-${n}`)),!0):!1}function u(i){if(i.type===`keydown`&&i.key===`Shift`){n=!0;return}if(i.type===`keydown`&&i.shiftKey&&(n=!1),i.type===`keydown`&&i.key!==`Shift`&&(e=0),i.type===`keyup`&&i.key===`Shift`&&n&&!i.ctrlKey&&!i.metaKey&&!i.altKey&&!o&&!i.isComposing){let n=Date.now();if(n-e<400){e=0,r(``),t(!0);return}e=n;return}if(i.type!==`keydown`||o||i.isComposing)return;let s=i.target?.tagName;if(s===`TEXTAREA`||s===`INPUT`||i.target?.isContentEditable){let{matchesEvent:e}=ss.getState();e(i,`save-prevent`)&&i.preventDefault(),e(i,`toggle-dock`)&&(i.preventDefault(),H.getState().toggleDock()),l(i,e);return}let{matchesEvent:c}=ss.getState();if(c(i,`save-prevent`)){i.preventDefault();return}if(c(i,`command-palette`)){i.preventDefault(),r(``),t(!0);return}if(c(i,`toggle-sidebar`)){i.preventDefault(),B.getState().toggleSidebar();return}if(c(i,`toggle-dock`)){i.preventDefault(),H.getState().toggleDock();return}if(c(i,`next-tab`)||c(i,`prev-tab`)){i.preventDefault();let{tabs:e,activeTabId:t,setActiveTab:n}=W.getState();if(e.length<2)return;let r=e.findIndex(e=>e.id===t);n(e[c(i,`next-tab`)?(r+1)%e.length:(r-1+e.length)%e.length].id);return}if(c(i,`new-file`)){i.preventDefault(),W.getState().openNewFile();return}for(let e of[{action:`open-chat`,type:`chat`,title:`AI Chat`},{action:`open-terminal`,type:`terminal`,title:`Terminal`}])if(c(i,e.action)){i.preventDefault();let t=U.getState().activeProject;W.getState().openTab({type:e.type,title:e.title,projectId:t?.name??null,metadata:t?{projectName:t.name}:void 0,closable:!0});return}if(c(i,`open-settings`)){i.preventDefault();let e=B.getState();e.sidebarCollapsed&&e.toggleSidebar(),e.setSidebarActiveTab(`settings`);return}if(c(i,`open-git-status`)){i.preventDefault();let e=B.getState();e.sidebarCollapsed&&e.toggleSidebar(),e.setSidebarActiveTab(`git`);return}if(c(i,`voice-input`)){i.preventDefault(),window.dispatchEvent(new CustomEvent(`toggle-voice-input`));return}if(l(i,c))return;if(c(i,`compare-files`)){i.preventDefault();let{activeTabId:e,tabs:t}=W.getState(),n=t.find(t=>t.id===e),r=n?.metadata;n?.type===`editor`&&r?.filePath&&r?.projectName&&xo.getState().setSelection({filePath:r.filePath,projectName:r.projectName,dirtyContent:r.unsavedContent,label:rt(r.filePath)}),window.dispatchEvent(new CustomEvent(`open-compare-picker`));return}if(c(i,`open-search`)){i.preventDefault();let e=B.getState();e.sidebarCollapsed&&e.toggleSidebar(),e.setSidebarActiveTab(`search`);return}for(let e=1;e<=9;e++)if(c(i,`switch-project-${e}`)){i.preventDefault();let t=U.getState().projects[e-1];t&&(U.getState().setActiveProject(t),W.getState().switchProject(t.name));return}let u=cs.getState().contributions?.keybindings;if(u){let e=typeof navigator<`u`&&/Mac|iPhone|iPad/.test(navigator.userAgent),{getBinding:t}=ss.getState();for(let n of u){let r=t(`ext:${n.command}`)||(e&&n.mac?n.mac:n.key);if(!r)continue;let o=a.get(r);if(o||(o=ts(r),a.set(r,o)),ns(i,o)){i.preventDefault();let e=U.getState().activeProject,t=[];e?.path&&t.push(e.path),window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:n.command,args:t}}));return}}}}function d(e){let n=e.detail;r(typeof n==`string`?n:``),t(!0)}return window.addEventListener(`keydown`,u),window.addEventListener(`keyup`,u),window.addEventListener(`compositionstart`,s),window.addEventListener(`compositionend`,c),window.addEventListener(`open-command-palette`,d),()=>{window.removeEventListener(`keydown`,u),window.removeEventListener(`keyup`,u),window.removeEventListener(`compositionstart`,s),window.removeEventListener(`compositionend`,c),window.removeEventListener(`open-command-palette`,d)}},[]),{paletteOpen:e,paletteInitialQuery:n,closePalette:(0,q.useCallback)(()=>{t(!1),r(``)},[])}}var ds=nt(e=>({sessions:new Set,setStreaming:(t,n)=>e(e=>{let r=new Set(e.sessions);return n?r.add(t):r.delete(t),{sessions:r}})})),fs=e=>e.sessions.size>0;function ps(e){let[t,n]=(0,q.useState)(!1),[r,i]=(0,q.useState)(!1),a=(0,q.useCallback)(()=>{let t=e.current;t&&(n(t.scrollLeft>1),i(t.scrollLeft+t.clientWidth<t.scrollWidth-1))},[e]);return(0,q.useEffect)(()=>{let t=e.current;if(!t)return;a(),t.addEventListener(`scroll`,a,{passive:!0});let n=new ResizeObserver(a);n.observe(t);let r=new MutationObserver(a);return r.observe(t,{childList:!0,subtree:!0}),()=>{t.removeEventListener(`scroll`,a),n.disconnect(),r.disconnect()}},[e,a]),{canScrollLeft:t,canScrollRight:r,scrollLeft:(0,q.useCallback)(()=>{e.current?.scrollBy({left:-150,behavior:`smooth`})},[e]),scrollRight:(0,q.useCallback)(()=>{e.current?.scrollBy({left:150,behavior:`smooth`})},[e])}}var ms={done:0,question:1,approval_request:2};function hs(e,t,n,r){if(!e)return{left:null,right:null};let i=e.scrollLeft,a=i+e.clientWidth,o=null,s=-1,c=null,l=-1,u=e.getBoundingClientRect();for(let d of n){if(d.type!==`chat`)continue;let n=d.metadata?.sessionId,f=n?r.get(n):void 0;if(!f||f.count===0)continue;let p=t.get(d.id);if(!p)continue;let m=p.getBoundingClientRect(),h=m.left-u.left+e.scrollLeft,g=h+m.width,_=ms[f.type]??0;g<=i&&_>s&&(s=_,o=f.type),h>=a&&_>l&&(l=_,c=f.type)}return{left:o,right:c}}var gs={default:{base:`group flex items-center gap-1 px-3 h-[41px] whitespace-nowrap text-xs transition-colors border-t-2 [border-right:1px_solid_var(--border-soft)] cursor-grab active:cursor-grabbing`,active:`border-t-primary bg-panel-2 text-primary`,inactive:`border-t-transparent text-text-secondary hover:text-foreground hover:bg-panel/60`,row:`flex items-center`,add:`flex items-center justify-center h-[41px] w-10 shrink-0 sticky right-0 border-t-2 border-transparent text-text-secondary hover:text-foreground transition-colors`},boxed:{base:`group flex items-center gap-1.5 px-2.5 h-8 rounded-md whitespace-nowrap text-xs transition-colors border cursor-grab active:cursor-grabbing`,active:`border-primary bg-primary/10 text-primary`,inactive:`border-border text-text-secondary hover:border-text-subtle hover:text-foreground`,row:`flex items-center gap-1.5 px-2 py-1.5`,add:`flex items-center justify-center size-8 shrink-0 sticky right-0 rounded-md text-text-secondary hover:text-foreground hover:bg-surface-elevated transition-colors`},pill:{base:`group flex items-center gap-1.5 px-3 h-8 rounded-lg whitespace-nowrap text-xs transition-colors border cursor-grab active:cursor-grabbing`,active:`border-border bg-surface-elevated text-foreground`,inactive:`border-transparent text-text-secondary hover:bg-surface hover:text-foreground`,row:`flex items-center gap-1 px-2 py-1.5`,add:`flex items-center justify-center size-8 shrink-0 sticky right-0 rounded-lg text-text-secondary hover:text-foreground hover:bg-surface-elevated transition-colors`}};function _s(e,t,n){let r=gs[e];return V(r.base,n?`border-t-transparent`:t?r.active:r.inactive)}function vs(e,t){let n=e===`default`?` [background:repeating-linear-gradient(to_bottom,transparent_0,transparent_40px,var(--border-soft)_40px,var(--border-soft)_41px)]`:``;return V(gs[e].row,t?`flex-wrap min-h-[41px]`+n:`h-[41px]`)}function ys(e){return gs[e].add}function bs(e){let t=/^#([0-9a-fA-F]{6})$/.exec(e.trim());if(!t)return null;let n=parseInt(t[1],16);return{r:n>>16&255,g:n>>8&255,b:n&255}}function xs(e){let t=e.trim();if(t.startsWith(`#`)){let e=t.slice(1),n=e.length===3?e.split(``).map(e=>e+e).join(``):e;return/^[0-9a-fA-F]{6,8}$/.test(n)?{r:parseInt(n.slice(0,2),16),g:parseInt(n.slice(2,4),16),b:parseInt(n.slice(4,6),16),a:n.length===8?parseInt(n.slice(6,8),16)/255:1}:null}let n=/^rgba?\(([^)]+)\)$/.exec(t);if(!n)return null;let r=n[1].split(/[,\s/]+/).filter(Boolean).map(Number);return r.length<3||r.slice(0,4).some(e=>Number.isNaN(e))?null:{r:r[0],g:r[1],b:r[2],a:r[3]??1}}function Ss(e,t){let n=xs(e),r=xs(t);if(!n||!r||n.a>=1)return e;let i=(e,t)=>Math.round(e*n.a+t*(1-n.a));return`rgb(${i(n.r,r.r)}, ${i(n.g,r.g)}, ${i(n.b,r.b)})`}function Cs(e,t,n){let[r,i,a]=[e,t,n].map(e=>{let t=e/255;return t<=.04045?t/12.92:((t+.055)/1.055)**2.4});return .2126*r+.7152*i+.0722*a}function ws(e){let t=bs(e);return t?Cs(t.r,t.g,t.b)<.4:!1}function Ts({tab:e,isActive:t,icon:n,showDropBefore:r,notificationType:i,notificationManual:a,isStreaming:o,onSelect:s,onClose:c,onDragStart:l,onDragOver:u,onDragEnd:d,onTouchStart:f,onTouchMove:p,onTouchEnd:m,tabRef:h,onRename:g,onContextAction:_,tagColor:v,extraMenuContent:y}){let[b,x]=(0,q.useState)(!1),[S,C]=(0,q.useState)(e.title),w=(0,q.useRef)(null),T=B(e=>e.editorTabStyle);(0,q.useEffect)(()=>{b&&(C(e.title),setTimeout(()=>w.current?.select(),0))},[b]);let E=()=>{x(!1);let t=S.trim();t&&t!==e.title&&g&&g(t)},D=e.metadata?.connectionColor,O=D?{backgroundColor:t?D:`${D}33`,color:t&&ws(D)?`#fff`:void 0}:void 0,k=e.type===`editor`,A=(0,J.jsxs)(`button`,{ref:h,"data-tab-item":!0,"data-tab-id":e.id,draggable:!b,onClick:s,onAuxClick:t=>{t.button===1&&e.closable&&(t.preventDefault(),c())},onDragStart:l,onDragOver:u,onDragEnd:d,onTouchStart:f,onTouchMove:p,onTouchEnd:m,style:O,className:_s(T,t,!!O),children:[(0,J.jsxs)(`span`,{className:V(`relative`,o&&`text-warning`),children:[(0,J.jsx)(n,{className:`size-4`}),o?(0,J.jsxs)(`span`,{"aria-hidden":!0,className:`absolute inset-0 flex items-center justify-center gap-[1.5px]`,children:[(0,J.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`}),(0,J.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`,style:{animationDelay:`0.15s`}}),(0,J.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`,style:{animationDelay:`0.3s`}})]}):i&&(!t||a)?(0,J.jsx)(`span`,{className:V(`absolute -top-1 -right-1 size-2 rounded-full`,eo(i))}):null]}),b?(0,J.jsx)(`input`,{ref:w,value:S,onChange:e=>C(e.target.value),onBlur:E,onKeyDown:e=>{e.key===`Enter`&&E(),e.key===`Escape`&&x(!1),e.stopPropagation()},onClick:e=>e.stopPropagation(),className:`max-w-[120px] bg-surface-elevated text-xs px-1 py-0.5 rounded border border-border outline-none focus:border-primary`,autoFocus:!0}):(0,J.jsx)(`span`,{className:`max-w-[120px] truncate`,title:e.title,onDoubleClick:e=>{g&&(e.stopPropagation(),x(!0))},children:e.title}),e.closable&&!b&&(0,J.jsx)(`span`,{role:`button`,tabIndex:0,onClick:e=>{e.stopPropagation(),c()},onKeyDown:e=>{e.key===`Enter`&&(e.stopPropagation(),c())},className:`ml-1 can-hover:opacity-0 can-hover:group-hover:opacity-100 rounded-sm hover:bg-surface-elevated p-0.5 transition-opacity`,children:(0,J.jsx)(Qe,{className:`size-3`})})]});return(0,J.jsxs)(`div`,{className:`relative flex items-center`,children:[r&&(0,J.jsx)(`div`,{className:`absolute left-0 top-1 bottom-1 w-0.5 bg-primary rounded-full z-10`}),v&&(0,J.jsx)(`span`,{"aria-hidden":!0,className:`absolute left-0 top-2 bottom-2 w-[3px] rounded-r-full pointer-events-none`,style:{backgroundColor:v}}),_?(0,J.jsxs)(ge,{children:[(0,J.jsx)(ye,{asChild:!0,children:A}),(0,J.jsxs)(Ee,{children:[k&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(ke,{onClick:()=>_(`copy-path`),children:`Copy Path`}),(0,J.jsx)(ke,{onClick:()=>_(`copy-full-path`),children:`Copy Full Path`}),(0,J.jsxs)(ke,{onClick:()=>_(`download`),children:[(0,J.jsx)(Xe,{className:`size-3.5 mr-2`}),`Download`]}),(0,J.jsx)(_e,{}),(0,J.jsx)(ke,{onClick:()=>_(`rename`),children:`Rename`}),(0,J.jsx)(ke,{variant:`destructive`,onClick:()=>_(`delete`),children:`Delete`}),(0,J.jsx)(_e,{})]}),y,e.closable&&(0,J.jsx)(ke,{onClick:()=>_(`close`),children:`Close`}),(0,J.jsx)(ke,{onClick:()=>_(`close-others`),children:`Close Others`}),(0,J.jsx)(ke,{onClick:()=>_(`close-right`),children:`Close to the Right`})]})]}):A]})}async function Es(e,t){if(/^(\/|[A-Za-z]:[/\\])/.test(t)){let{token:e}=await R.post(`/api/fs/download/token`);Os(`/api/fs/raw?path=${encodeURIComponent(t)}&download=true&dl_token=${encodeURIComponent(e)}`,t.split(`/`).pop()??`download`);return}let{token:n}=await R.post(`${L(e)}/files/download/token`);Os(`${L(e)}/files/raw?path=${encodeURIComponent(t)}&download=true&dl_token=${encodeURIComponent(n)}`,t.split(`/`).pop()??`download`)}async function Ds(e,t){let{token:n}=await R.post(`${L(e)}/files/download/token`),r=t.split(`/`).pop()??`folder`;Os(`${L(e)}/files/download/zip?path=${encodeURIComponent(t)}&dl_token=${encodeURIComponent(n)}`,`${r}.zip`)}function Os(e,t){let n=document.createElement(`a`);n.href=e,n.download=t,n.style.display=`none`,document.body.appendChild(n),n.click(),document.body.removeChild(n)}async function ks(e){if(navigator.clipboard?.writeText)try{return await navigator.clipboard.writeText(e),!0}catch{}return As(e)}function As(e){let t=document.createElement(`textarea`);t.value=e,t.setAttribute(`readonly`,``),t.style.cssText=`position:fixed;top:0;left:0;width:1px;height:1px;padding:0;border:none;opacity:0;`,document.body.appendChild(t);let n=document.getSelection(),r=n&&n.rangeCount>0?n.getRangeAt(0):null;try{return t.focus(),t.select(),t.setSelectionRange(0,e.length),document.execCommand(`copy`)}catch{return!1}finally{t.remove(),n&&r&&(n.removeAllRanges(),n.addRange(r))}}function js({node:e,projectName:t,onClose:n,onRefresh:r}){let[i,a]=(0,q.useState)(!1),[o,s]=(0,q.useState)(null);async function c(){a(!0),s(null);try{await R.del(`${L(t)}/files/delete`,{path:e.path}),r(),n()}catch(e){s(e instanceof Error?e.message:`Failed to delete`)}finally{a(!1)}}return(0,J.jsx)(Ue,{open:!0,onOpenChange:e=>!e&&n(),children:(0,J.jsxs)(ze,{children:[(0,J.jsxs)(Ie,{children:[(0,J.jsxs)(Be,{children:[`Delete `,e.type===`directory`?`Folder`:`File`]}),(0,J.jsxs)(Ve,{children:[`Are you sure you want to delete`,` `,(0,J.jsx)(`span`,{className:`font-mono font-semibold`,children:e.name}),`?`,e.type===`directory`&&` This will delete all contents.`]})]}),o&&(0,J.jsx)(`p`,{className:`text-sm text-error`,children:o}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(F,{variant:`outline`,onClick:n,disabled:i,children:`Cancel`}),(0,J.jsx)(F,{variant:`destructive`,onClick:c,disabled:i,children:i?`Deleting...`:`Delete`})]})]})})}var Ms={terminal:Ir,chat:$n,editor:G,database:Je,sqlite:Je,postgres:Je,"git-diff":pn,settings:Dr,extension:vr,"extension-webview":vr,"conflict-editor":pn,"system-monitor":Dr,"git-log":An,"ai-resource":qe,group:Ur},Ns=(0,q.memo)(function({panelId:e}){let t=U(e=>e.activeProject),n=(0,q.useRef)(new Map),r=(0,q.useRef)(null),i=(0,q.useRef)(0),a=H(t=>e?t.panels[e]:t.panels[t.focusedPanelId]),o=t?.name??null,s=(a?.tabs??[]).filter(e=>!e.projectId||!o||e.projectId===o),c=a?.activeTabId??null,l=a?.id??H.getState().focusedPanelId,{dropIndex:u,handleDragStart:d,handleDragOver:f,handleDragOverBar:p,handleDrop:m,handleDragEnd:h}=jo(l),{handleTouchStart:g,handleTouchMove:_,handleTouchEnd:v}=Zo(l),{projectTags:y,loadTags:b}=Xa(t?.name),[x,S]=(0,q.useState)({}),C=s.filter(e=>e.type===`chat`&&e.metadata?.sessionId).map(e=>e.metadata.sessionId);(0,q.useEffect)(()=>{!t?.name||C.length===0||R.get(`${L(t.name)}/chat/sessions?limit=50`).then(e=>{let t={};for(let n of e.sessions)n.tag&&(t[n.id]=n.tag);S(t)}).catch(()=>{})},[t?.name,C.join(`,`)]);let w=(0,q.useCallback)(async(e,n)=>{if(t?.name)try{if(n!==null){await R.patch(`${L(t.name)}/chat/sessions/${e}/tag`,{tagId:n});let r=y.find(e=>e.id===n);r&&S(t=>({...t,[e]:{id:r.id,name:r.name,color:r.color}}))}else await R.del(`${L(t.name)}/chat/sessions/${e}/tag`),S(t=>{let n={...t};return delete n[e],n});b()}catch{}},[t?.name,y,b]),T=X(e=>e.notifications),E=ds(e=>e.sessions),D=B(e=>e.tabWrap),O=B(e=>e.toggleTabWrap),k=B(e=>e.editorTabStyle),{canScrollLeft:A,canScrollRight:ee,scrollLeft:te,scrollRight:ne}=ps(r),j=hs(r.current,n.current,s,T);(0,q.useEffect)(()=>{if(s.length>i.current&&c){let e=n.current.get(c);e&&e.scrollIntoView({behavior:`smooth`,block:`nearest`,inline:`nearest`})}i.current=s.length},[s.length,c]);let M=(0,q.useCallback)((e,t)=>{W.getState().updateTab(e.id,{title:t});let n=e.metadata?.projectName,r=e.metadata?.sessionId;n&&r&&R.patch(`${L(n)}/chat/sessions/${r}`,{title:t}).catch(()=>{})},[]),re=xo(e=>e.selection),[ie,ae]=(0,q.useState)(null);function oe(e){if(e.type!==`editor`)return null;let t=e.metadata?.filePath,n=e.metadata?.projectName;if(!t||!n)return null;let r=re!=null&&re.projectName===n&&re.filePath!==t;return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(ke,{onClick:()=>{let r=e.metadata?.unsavedContent;xo.getState().setSelection({filePath:t,projectName:n,dirtyContent:r,label:rt(t)})},children:[(0,J.jsx)(Ke,{className:`size-3.5 mr-2`}),`Select for Compare`]}),r&&(0,J.jsxs)(ke,{onClick:async()=>{let r=xo.getState().selection;if(!r)return;let i=e.metadata?.unsavedContent;try{await Co({path:r.filePath,dirtyContent:r.dirtyContent},{path:t,dirtyContent:i},n),xo.getState().clearSelection()}catch(e){let t=e instanceof Error?e.message:`Compare failed`;I.error(t)}},children:[(0,J.jsx)(Ke,{className:`size-3.5 mr-2`}),`Compare with Selected (`,re.label,`)`]}),(0,J.jsx)(_e,{})]})}function se(e){if(e.type!==`terminal`)return null;let t=l===at;return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(ke,{onClick:()=>ce(e,t?`move-to-editor`:`move-to-dock`),children:t?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Mn,{className:`size-3.5 mr-2`}),`Move to Editor`]}):(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(cr,{className:`size-3.5 mr-2`}),`Move to Dock`]})}),(0,J.jsx)(_e,{})]})}let ce=(0,q.useCallback)((e,t)=>{let n=H.getState(),r=n.panels[l]?.tabs??[];switch(t){case`close`:n.closeTab(e.id,l);break;case`move-to-dock`:n.redockTab(e.id,l);break;case`move-to-editor`:{let t=n.focusedPanelId===`__dock__`?n.grid.flat()[0]:n.focusedPanelId;t&&n.moveTab(e.id,at,t);break}case`close-others`:for(let t of r)t.id!==e.id&&t.closable&&n.closeTab(t.id,l);break;case`close-right`:{let t=r.findIndex(t=>t.id===e.id);for(let e=t+1;e<r.length;e++)r[e].closable&&n.closeTab(r[e].id,l);break}case`copy-path`:{let t=e.metadata?.filePath;t&&ks(t);break}case`copy-full-path`:{let t=e.metadata?.filePath,n=e.metadata?.projectName;if(t){let e=n?U.getState().projects.find(e=>e.name===n):null;ks(e?`${e.path}/${t}`:t)}break}case`download`:{let t=e.metadata?.filePath,n=e.metadata?.projectName;t&&n&&Es(n,t);break}case`rename`:case`delete`:{let n=e.metadata?.filePath;n&&ae({action:t,tabId:e.id,node:{name:e.title,path:n,type:`file`}});break}}},[l]);function N(e){e.target.closest(`[data-tab-item]`)||ls()}return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(ge,{children:[(0,J.jsx)(ye,{asChild:!0,children:(0,J.jsxs)(`div`,{className:V(`hidden md:flex items-center border-b border-border relative shrink-0`,D?`min-h-[41px] flex-wrap`:`h-[41px]`),onDragOver:p,onDrop:m,onDoubleClick:N,children:[!D&&A&&(0,J.jsx)(`button`,{onClick:te,className:`absolute left-0 z-10 flex items-center justify-center size-8 bg-gradient-to-r from-background via-background to-transparent`,children:(0,J.jsxs)(`span`,{className:`relative`,children:[(0,J.jsx)(Ut,{className:`size-4 text-text-secondary`}),j.left&&(0,J.jsx)(`span`,{className:V(`absolute -top-1 -right-0.5 size-2 rounded-full`,eo(j.left))})]})}),(0,J.jsx)(`div`,{ref:r,className:V(`flex-1 min-w-0 scrollbar-none`,D?`overflow-y-auto overflow-x-hidden`:`overflow-x-auto overflow-y-hidden`),children:(0,J.jsxs)(`div`,{className:vs(k,D),children:[s.map((e,t)=>{let r=e.type===`chat`?e.metadata?.sessionId:void 0,i=r?T.get(r):void 0,a=i&&i.count>0?i.type:null,o=!!i?.manual,s=r?E.has(r):!1;return(0,J.jsx)(Ts,{tab:e,isActive:e.id===c,icon:Ms[e.type]||vr,showDropBefore:u===t,notificationType:a,notificationManual:o,isStreaming:s,onSelect:()=>{Ro()||(H.getState().setActiveTab(e.id,l),r&&X.getState().clearForSession(r))},onClose:()=>H.getState().closeTab(e.id,l),onDragStart:t=>d(t,e.id),onDragOver:n=>f(n,e.id,t),onDragEnd:h,onTouchStart:t=>g(t,e.id,e.title),onTouchMove:_,onTouchEnd:v,tabRef:t=>{t?n.current.set(e.id,t):n.current.delete(e.id)},onRename:e.type===`chat`?t=>M(e,t):void 0,onContextAction:t=>ce(e,t),tagColor:r?x[r]?.color:void 0,extraMenuContent:(0,J.jsxs)(J.Fragment,{children:[se(e),oe(e),r&&!a&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(ke,{onClick:()=>{let t=e.metadata?.projectName;t&&X.getState().markUnread(r,t,e.title)},children:[(0,J.jsx)(Qt,{className:`size-3.5 mr-2 fill-primary text-primary`}),`Mark as unread`]}),(0,J.jsx)(_e,{})]}),r&&y.length>0&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(Ce,{children:[(0,J.jsxs)(ve,{children:[(0,J.jsx)(Pr,{className:`size-3.5 mr-2`}),`Set Tag`]}),(0,J.jsxs)(je,{children:[y.map(e=>(0,J.jsxs)(ke,{onClick:()=>w(r,e.id),children:[(0,J.jsx)(`span`,{className:`size-2.5 rounded-full mr-2 shrink-0`,style:{backgroundColor:e.color}}),e.name,x[r]?.id===e.id&&(0,J.jsx)(xe,{className:`size-3 ml-auto`})]},e.id)),x[r]&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(_e,{}),(0,J.jsx)(ke,{onClick:()=>w(r,null),children:`Remove tag`})]})]})]}),(0,J.jsx)(_e,{})]})]})},e.id)}),u!==null&&u>=s.length&&(0,J.jsx)(`div`,{className:`w-0.5 h-6 bg-primary rounded-full`}),(0,J.jsx)(`button`,{onClick:()=>{if(l===`__dock__`){let e=U.getState().activeProject;H.getState().openInDock({type:`terminal`,title:`Terminal`,projectId:e?.name??null,closable:!0,metadata:e?{projectName:e.name}:void 0})}else ls()},title:l===`__dock__`?`New terminal in dock`:`Open command palette (Shift+Shift)`,className:ys(k),children:(0,J.jsx)(Ze,{className:`size-4`})})]})}),!D&&ee&&(0,J.jsx)(`button`,{onClick:ne,className:`absolute right-10 z-10 flex items-center justify-center size-8 bg-gradient-to-l from-background via-background to-transparent`,children:(0,J.jsxs)(`span`,{className:`relative`,children:[(0,J.jsx)(Fe,{className:`size-4 text-text-secondary`}),j.right&&(0,J.jsx)(`span`,{className:V(`absolute -top-1 -left-0.5 size-2 rounded-full`,eo(j.right))})]})})]})}),(0,J.jsxs)(Ee,{children:[(0,J.jsx)(ke,{onClick:O,children:D?`Scroll Tabs`:`Wrap Tabs`}),(0,J.jsx)(_e,{}),(0,J.jsx)(ke,{onClick:()=>ls(),children:`Open Command Palette`})]})]}),ie&&(0,J.jsx)(js,{node:ie.node,projectName:t?.name??``,onClose:()=>ae(null),onRefresh:()=>{t&&ho.getState().fetchTree(t.name),ie.action===`delete`&&H.getState().closeTab(ie.tabId,l)}})]})});function Ps({panelId:e}){let[t,n]=(0,q.useState)(null),r=ko(),i=Lo(),a=(i?.panelId===e?i.zone:null)??t,o=H(e=>e.grid),s=H(e=>e.isMobile()),c=it(o,e),l=!s&&o.length<3,u=c?!s&&(o[c.row]?.length??0)<ct(!1):!1,d=(0,q.useCallback)(e=>{let t=e.currentTarget.getBoundingClientRect(),n=(e.clientX-t.left)/t.width,r=(e.clientY-t.top)/t.height,i=.25;return n<i&&u?`left`:n>1-i&&u?`right`:r<i&&l?`top`:r>1-i&&l?`bottom`:`center`},[u,l]),f=(0,q.useCallback)(e=>{e.dataTransfer.types.includes(`application/ppm-tab`)&&(e.preventDefault(),e.stopPropagation(),n(d(e)))},[d]),p=(0,q.useCallback)(e=>{e.currentTarget.contains(e.relatedTarget)||n(null)},[]),m=(0,q.useCallback)(t=>{t.preventDefault(),t.stopPropagation();let r=d(t);if(n(null),Ao(),!r)return;let i=t.dataTransfer.getData(To);if(i)try{let t=JSON.parse(i),n=H.getState();if(r===`center`)t.panelId!==e&&n.moveTab(t.tabId,t.panelId,e);else{let i=r===`top`?`up`:r===`bottom`?`down`:r;n.splitPanel(i,t.tabId,t.panelId,e)}}catch{}},[d,e]);return r?(0,J.jsxs)(`div`,{className:`absolute inset-0 z-20`,onDragOver:f,onDragLeave:p,onDrop:m,children:[a===`left`&&(0,J.jsx)(`div`,{className:`absolute inset-y-0 left-0 w-1/3 bg-primary/10 border-2 border-primary/30 rounded-l-md`}),a===`right`&&(0,J.jsx)(`div`,{className:`absolute inset-y-0 right-0 w-1/3 bg-primary/10 border-2 border-primary/30 rounded-r-md`}),a===`top`&&(0,J.jsx)(`div`,{className:`absolute inset-x-0 top-0 h-1/3 bg-primary/10 border-2 border-primary/30 rounded-t-md`}),a===`bottom`&&(0,J.jsx)(`div`,{className:`absolute inset-x-0 bottom-0 h-1/3 bg-primary/10 border-2 border-primary/30 rounded-b-md`}),a===`center`&&(0,J.jsx)(`div`,{className:`absolute inset-0 bg-primary/5 border-2 border-dashed border-primary/30 rounded-md`})]}):null}var Fs=nt(e=>({mounted:new Set,mount:t=>e(e=>{if(e.mounted.has(t))return e;let n=new Set(e.mounted);return n.add(t),{mounted:n}})}));function Is(e,t,n,r,i,a){for(let o of e.flat()){let e=r[o];if(e)for(let r of e.tabs)i.has(r.id)||r.projectId&&t&&r.projectId!==t||!n&&(r.type===`extension`||r.type===`extension-webview`)||(i.add(r.id),a.push({tabId:r.id,panelId:o,type:r.type,metadata:r.metadata,isActive:r.id===e.activeTabId}))}}function Ls(e,t,n){for(let r of e.tabs)t.has(r.id)||(t.add(r.id),n.push({tabId:r.id,panelId:at,type:r.type,metadata:r.metadata,isActive:r.id===e.activeTabId}))}function Rs(e,t,n,r){let i=[],a=new Set;Is(t,r,!0,e,a,i);for(let[t,o]of Object.entries(n))t!==r&&Is(o,t,!1,e,a,i);let o=e[at];return o&&Ls(o,a,i),i.sort((e,t)=>e.tabId.localeCompare(t.tabId)),i}function zs(e,t){return e.filter(e=>e.isActive||t.has(e.tabId))}var Bs={terminal:(0,q.lazy)(()=>z(()=>import(`./terminal-tab-BfNnKU71.js`).then(e=>({default:e.TerminalTab})),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12,13]))),chat:(0,q.lazy)(()=>z(()=>import(`./chat-tab-BZNEvS88.js`).then(e=>({default:e.ChatTab})),__vite__mapDeps([14,1,2,3,4,15,7,16,17,18,19,20,21,22,23,24,25,26,8,27,10,9,28,29,30,31,32,11]))),editor:(0,q.lazy)(()=>z(()=>import(`./code-editor-B8YiBPOX.js`).then(e=>({default:e.CodeEditor})),__vite__mapDeps([33,1,2,3,4,34,35,36,16,20,25,28,37,17,38,39,11,8,10,12,13,27,9,7,40,15,24,41,42,43,29,44,32]))),database:(0,q.lazy)(()=>z(()=>import(`./database-viewer-C5Meg0s_.js`).then(e=>({default:e.DatabaseViewer})),__vite__mapDeps([45,1,2,3,4,34,35,36,16,20,25,28,37,17,38,39,11,8,10,12,13,27,9,7,40,41,43,29,46]))),sqlite:(0,q.lazy)(()=>z(()=>import(`./sqlite-viewer-BH891DC0.js`).then(e=>({default:e.SqliteViewer})),__vite__mapDeps([47,1,2,3,4,34,35,36,16,20,25,28,37,17,38,39,11,8,10,12,13,27,9,7,40,41,44,46]))),postgres:(0,q.lazy)(()=>z(()=>import(`./postgres-viewer-BeantJZe.js`).then(e=>({default:e.PostgresViewer})),__vite__mapDeps([48,1,2,49,3,4,50,20,16,41,44,8]))),"git-diff":(0,q.lazy)(()=>z(()=>import(`./diff-viewer-BRRGvZnp.js`).then(e=>({default:e.DiffViewer})),__vite__mapDeps([51,1,2,3,4,8,39,11,10,12,13]))),settings:(0,q.lazy)(()=>z(()=>import(`./settings-tab-CqQHhqV1.js`).then(e=>({default:e.SettingsTab})),__vite__mapDeps([52,2,1,3,4,15,7,16,17,19,20,21,8,31,32,10,11]))),extension:(0,q.lazy)(()=>z(()=>import(`./extension-webview-CQceYb7O.js`).then(e=>({default:e.ExtensionWebview})),__vite__mapDeps([53,1,3,4,8]))),"extension-webview":(0,q.lazy)(()=>z(()=>import(`./extension-webview-CQceYb7O.js`).then(e=>({default:e.ExtensionWebview})),__vite__mapDeps([53,1,3,4,8]))),"conflict-editor":(0,q.lazy)(()=>z(()=>import(`./conflict-editor-CY1o5kBO.js`).then(e=>({default:e.ConflictEditor})),__vite__mapDeps([54,1,2,3,4,8,39,11,10,12,13]))),"system-monitor":(0,q.lazy)(()=>z(()=>import(`./system-monitor-tab-Bue4p4Vb.js`).then(e=>({default:e.SystemMonitorTab})),__vite__mapDeps([55,1,3,4,7,16,18,21,20,23,17,8]))),"git-log":(0,q.lazy)(()=>z(()=>import(`./git-log-panel-D7QlAJqu.js`).then(e=>({default:e.GitLogPanel})),__vite__mapDeps([56,1,3,4,7,16,8,32,10]))),"ai-resource":(0,q.lazy)(()=>z(()=>import(`./ai-resource-editor-QNfSU0Fi.js`).then(e=>({default:e.AiResourceEditor})),__vite__mapDeps([57,1,2,3,4,7,37,16,8,39,11,10,12,13]))),group:(0,q.lazy)(()=>z(()=>import(`./group-chat-tab-B-eA5ytm.js`).then(e=>({default:e.GroupChatTab})),__vite__mapDeps([58,1,2,3,4,15,7,16,17,59,8,27,10,9,19,20,21,22,18,23,24,25,26,32,11])))},Vs=new class{slots=new Map;listeners=new Set;version=0;register(e,t){if(t){if(this.slots.get(e)===t)return;this.slots.set(e,t)}else{if(!this.slots.has(e))return;this.slots.delete(e)}this.version++,this.listeners.forEach(e=>e())}get(e){return this.slots.get(e)}subscribe(e){return this.listeners.add(e),()=>this.listeners.delete(e)}getVersion(){return this.version}};function Hs(e,t){Vs.register(e,t)}function Us(){let e=(0,q.useRef)(null);(0,q.useSyncExternalStore)(e=>Vs.subscribe(e),()=>Vs.getVersion());let t=H(e=>e.panels),n=H(e=>e.grid),r=H(e=>e.currentProject),i=Rs(t,n,H(e=>e.projectGrids),r),a=zs(i,Fs(e=>e.mounted)),o=i.filter(e=>e.isActive).map(e=>e.tabId);return(0,q.useEffect)(()=>{let{mount:e}=Fs.getState();for(let t of o)e(t)},[JSON.stringify(o)]),(0,J.jsx)(`div`,{ref:e,style:{position:`fixed`,top:0,left:0,width:0,height:0,overflow:`hidden`,pointerEvents:`none`,visibility:`hidden`},children:a.map(t=>(0,J.jsx)(Ws,{tabId:t.tabId,panelId:t.panelId,type:t.type,metadata:t.metadata,isActive:t.isActive,hiddenContainer:e},t.tabId))})}function Ws({tabId:e,panelId:t,type:n,metadata:r,isActive:i,hiddenContainer:a}){let o=(0,q.useRef)(null),s=Bs[n];return(0,q.useLayoutEffect)(()=>()=>{let e=o.current,t=a.current;e&&t&&e.parentElement!==t&&t.appendChild(e)},[a]),(0,q.useLayoutEffect)(()=>{let e=o.current,n=Vs.get(t);if(!e)return;if(!n){let t=a.current;t&&e.parentElement!==t&&t.appendChild(e);return}if(e.parentElement===n)return;let r=[];e.querySelectorAll(`*`).forEach(e=>{(e.scrollTop||e.scrollLeft)&&r.push({el:e,top:e.scrollTop,left:e.scrollLeft})}),n.appendChild(e);for(let{el:e,top:t,left:n}of r)e.scrollTop=t,e.scrollLeft=n}),s?(0,J.jsx)(`div`,{ref:o,className:`absolute inset-0`,style:i?void 0:{display:`none`},"data-tab-pool-id":e,onMouseDownCapture:()=>{t!==`__dock__`&&H.getState().setFocusedPanel(t)},children:(0,J.jsx)(q.Suspense,{fallback:(0,J.jsx)(`div`,{className:`flex items-center justify-center h-full`,children:(0,J.jsx)(K,{className:`size-6 animate-spin text-primary`})}),children:(0,J.jsx)(s,{metadata:r,tabId:e})})}):null}var Gs=[{type:`terminal`,label:`Terminal`,icon:Ir},{type:`chat`,label:`AI Chat`,icon:$n},{type:`editor`,label:`New File`,icon:_n}];function Ks({panelId:e,projectName:t}){let n=H(t=>t.panels[e]),r=H(t=>t.focusedPanelId===e),i=H(e=>(e.currentProject===t?e.grid:e.projectGrids[t]??[[]]).flat().length),a=(0,q.useCallback)(t=>{Hs(e,t)},[e]);return n?(0,J.jsxs)(`div`,{className:V(`flex flex-col h-full overflow-hidden`,i>1&&`border border-transparent`,i>1&&r&&`border-primary/30`),onMouseDown:()=>{H.getState().focusedPanelId!==e&&H.getState().setFocusedPanel(e)},children:[(0,J.jsx)(Ns,{panelId:e}),(0,J.jsxs)(`div`,{className:`flex-1 overflow-hidden relative`,"data-panel-drop-zone":e,children:[n.tabs.length===0&&(0,J.jsx)(qs,{panelId:e}),(0,J.jsx)(`div`,{ref:a,className:`absolute inset-0`,style:n.tabs.length===0?{display:`none`}:void 0}),(0,J.jsx)(Ps,{panelId:e})]})]}):null}function qs({panelId:e}){let t=U(e=>e.activeProject);function n(n){if(n===`editor`){W.getState().openNewFile();return}let r=n!==`settings`&&t?{projectName:t.name}:void 0;H.getState().openTab({type:n,title:Gs.find(e=>e.type===n)?.label??n,metadata:r,projectId:t?.name??null,closable:!0},e)}let r=(0,q.useCallback)(n=>{H.getState().openTab({type:`chat`,title:n.title||`Chat`,projectId:t?.name??null,metadata:{projectName:t?.name,sessionId:n.id,providerId:n.providerId},closable:!0},e)},[t?.name,e]);return(0,J.jsx)(`div`,{className:`flex flex-col h-full overflow-y-auto text-text-secondary`,children:(0,J.jsxs)(`div`,{className:`flex flex-col items-center justify-center gap-6 px-4 flex-1`,children:[(0,J.jsx)(`p`,{className:`text-sm`,children:`Open a tab to get started`}),(0,J.jsx)(`div`,{className:`grid grid-cols-3 gap-2 w-full max-w-sm`,children:Gs.map(e=>{let t=e.icon;return(0,J.jsxs)(`button`,{onClick:()=>n(e.type),className:`flex flex-col items-center justify-center gap-1.5 px-2 py-3 rounded-md border border-border bg-surface hover:bg-surface-elevated active:bg-surface-elevated text-xs text-foreground transition-colors`,children:[(0,J.jsx)(t,{className:`size-5`}),e.label]},e.type)})}),(0,J.jsx)(lo,{projectName:t?.name,onSelectSession:r,className:`w-full`})]})})}var Js={terminal:Ir,chat:$n,editor:G,database:Je,sqlite:Je,postgres:Je,"git-diff":pn,settings:Dr,extension:vr,"extension-webview":vr,"conflict-editor":pn,"system-monitor":Dr,"git-log":G,"ai-resource":qe,group:Ur};function Ys(e){return Js[e]??vr}function Xs(e,t,n){let r=n!==`bottom`;if(n===`bottom`||e.length<=2)return{visible:[...e],overflow:[],iconOnlyInactive:r};let i=new Set;t&&e.includes(t)&&i.add(t);for(let t of e){if(i.size>=2)break;i.add(t)}return{visible:e.filter(e=>i.has(e)),overflow:e.filter(e=>!i.has(e)),iconOnlyInactive:r}}function Zs({...e}){return(0,J.jsx)(d,{"data-slot":`dropdown-menu`,...e})}function Qs({...e}){return(0,J.jsx)(b,{"data-slot":`dropdown-menu-trigger`,...e})}function $s({className:e,sideOffset:t=4,...n}){return(0,J.jsx)(u,{children:(0,J.jsx)(p,{"data-slot":`dropdown-menu-content`,sideOffset:t,className:V(`z-50 max-h-(--radix-dropdown-menu-content-available-height) min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[side=bottom]:slide-in-from-top-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-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95`,e),...n})})}function ec({className:e,inset:t,variant:n=`default`,...r}){return(0,J.jsx)(m,{"data-slot":`dropdown-menu-item`,"data-inset":t,"data-variant":n,className:V(`relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground data-[variant=destructive]:*:[svg]:text-destructive!`,e),...r})}function tc({className:e,inset:t,...n}){return(0,J.jsx)(g,{"data-slot":`dropdown-menu-label`,"data-inset":t,className:V(`px-2 py-1.5 text-sm font-medium data-[inset]:pl-8`,e),...n})}function nc({className:e,...t}){return(0,J.jsx)(f,{"data-slot":`dropdown-menu-separator`,className:V(`-mx-1 my-1 h-px bg-border`,e),...t})}function rc({...e}){return(0,J.jsx)(_,{"data-slot":`dropdown-menu-sub`,...e})}function ic({className:e,inset:t,children:n,...r}){return(0,J.jsxs)(o,{"data-slot":`dropdown-menu-sub-trigger`,"data-inset":t,className:V(`flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[inset]:pl-8 data-[state=open]:bg-accent data-[state=open]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground`,e),...r,children:[n,(0,J.jsx)(Fe,{className:`ml-auto size-4`})]})}function ac({className:e,...t}){return(0,J.jsx)(fe,{"data-slot":`dropdown-menu-sub-content`,className:V(`z-50 min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[side=bottom]:slide-in-from-top-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-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95`,e),...t})}var oc={left:ur,bottom:cr,right:dr},sc={left:`Left`,bottom:`Bottom`,right:`Right`},cc=[`left`,`bottom`,`right`];function lc(){let e=H(e=>e.panels[at]),t=U(e=>e.activeProject?.name??null),n=B(e=>e.dockPosition),r=B(e=>e.setDockPosition),i=H(e=>e.dockExpanded),a=(e?.tabs??[]).filter(e=>!e.projectId||!t||e.projectId===t),o=e?.activeTabId??null,s=new Map(a.map(e=>[e.id,e])),c=Xs(a.map(e=>e.id),o,n);function l(e){H.getState().setActiveTab(e,at)}function u(e){H.getState().closeTab(e,at)}function d(){let e=U.getState().activeProject;H.getState().openInDock({type:`terminal`,title:`Terminal`,projectId:e?.name??null,closable:!0,metadata:e?{projectName:e.name}:void 0})}let f=oc[n];return(0,J.jsxs)(`div`,{className:`flex items-center h-8 min-w-0 flex-1 gap-1 px-1`,children:[(0,J.jsxs)(`div`,{className:`flex-1 min-w-0 flex items-center gap-1 overflow-x-auto scrollbar-none`,children:[c.visible.map(e=>{let t=s.get(e);if(!t)return null;let n=Ys(t.type),r=e===o,i=!c.iconOnlyInactive||r,a=(0,J.jsxs)(`button`,{onClick:()=>l(e),className:V(`flex items-center gap-1.5 h-6 rounded-full border shrink-0 transition-colors`,i?`px-2.5`:`px-1.5`,r?`border-primary text-primary bg-primary/10`:`border-border text-text-secondary hover:bg-surface-elevated`),children:[(0,J.jsx)(n,{className:`size-3`}),i&&(0,J.jsx)(`span`,{className:`text-[11px] font-medium max-w-[120px] truncate`,children:t.title}),i&&t.closable&&(0,J.jsx)(`span`,{role:`button`,tabIndex:0,"aria-label":`Close ${t.title}`,onClick:t=>{t.stopPropagation(),u(e)},className:`flex items-center justify-center size-4 -mr-1 rounded hover:bg-surface-elevated hover:text-foreground`,children:(0,J.jsx)(Qe,{className:`size-3`})})]},e);return i?a:(0,J.jsxs)(Qr,{children:[(0,J.jsx)($r,{asChild:!0,children:a}),(0,J.jsx)(ei,{side:`top`,className:`text-xs`,children:t.title})]},e)}),c.overflow.length>0&&(0,J.jsxs)(Zs,{children:[(0,J.jsx)(Qs,{asChild:!0,children:(0,J.jsxs)(`button`,{className:`flex items-center justify-center h-6 px-2 rounded-full border border-border text-text-secondary text-[10px] font-mono shrink-0 hover:bg-surface-elevated`,children:[`+`,c.overflow.length]})}),(0,J.jsx)($s,{align:`start`,className:`min-w-[10rem]`,children:c.overflow.map(e=>{let t=s.get(e);return t?(0,J.jsxs)(ec,{onClick:()=>l(e),children:[(0,J.jsx)(Ys(t.type),{className:`size-3.5`}),(0,J.jsx)(`span`,{className:`truncate`,children:t.title})]},e):null})})]}),(0,J.jsx)(`button`,{onClick:d,title:`New panel tab`,"aria-label":`New panel tab`,className:`flex items-center justify-center size-6 rounded-full border border-dashed border-border text-text-subtle shrink-0 hover:bg-surface-elevated hover:text-foreground`,children:(0,J.jsx)(Ze,{className:`size-3.5`})})]}),(0,J.jsxs)(Zs,{children:[(0,J.jsx)(Qs,{asChild:!0,children:(0,J.jsxs)(`button`,{title:`Panel position`,"aria-label":`Panel position`,className:`flex items-center gap-0.5 h-6 px-1.5 rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground shrink-0`,children:[(0,J.jsx)(f,{className:`size-3.5`}),(0,J.jsx)(Ne,{className:`size-2.5`})]})}),(0,J.jsxs)($s,{align:`end`,children:[(0,J.jsx)(tc,{className:`text-[10px] uppercase tracking-wide text-text-subtle`,children:`Panel Position`}),cc.map(e=>{let t=oc[e],i=e===n;return(0,J.jsxs)(ec,{onClick:()=>r(e),className:V(i&&`text-primary bg-primary/10`),children:[(0,J.jsx)(t,{className:`size-3.5`}),(0,J.jsx)(`span`,{className:`flex-1`,children:sc[e]}),i&&(0,J.jsx)(xe,{className:`size-3.5`})]},e)})]})]}),(0,J.jsx)(`div`,{className:`w-px h-4 bg-border shrink-0`}),(0,J.jsx)(`button`,{onClick:()=>H.getState().toggleDockExpanded(),title:i?`Restore panel`:`Maximize panel`,"aria-label":i?`Restore panel`:`Maximize panel`,className:`flex items-center justify-center size-7 rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground shrink-0`,children:i?(0,J.jsx)(tr,{className:`size-3.5`}):(0,J.jsx)(Zn,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:()=>H.getState().setDockVisible(!1),title:`Hide panel`,"aria-label":`Hide panel`,className:`flex items-center justify-center size-7 rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground shrink-0`,children:(0,J.jsx)(Ne,{className:`size-3.5`})})]})}var uc={top:`border-t`,left:`border-l`,right:`border-r`};function dc({variant:e=`desktop`,borderEdge:t=`top`}){let n=H(e=>e.panels[at]),r=U(e=>e.activeProject?.name??null),i=(n?.tabs??[]).some(e=>!e.projectId||!r||e.projectId===r),a=(0,q.useCallback)(e=>{Hs(at,e)},[]);return(0,J.jsxs)(`div`,{className:V(`flex flex-col h-full overflow-hidden border-border bg-panel`,uc[t]),children:[(0,J.jsx)(`div`,{className:`flex items-center shrink-0`,children:e===`mobile`?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(fc,{}),(0,J.jsx)(`button`,{onClick:()=>H.getState().setDockVisible(!1),title:`Hide terminal dock`,className:V(`shrink-0 flex items-center justify-center mr-1 size-11`,`text-text-subtle hover:text-foreground hover:bg-surface-elevated`,`active:bg-surface-elevated rounded transition-colors`),"aria-label":`Hide terminal dock`,children:(0,J.jsx)(Qe,{className:`size-3.5`})})]}):(0,J.jsx)(lc,{})}),(0,J.jsxs)(`div`,{className:`flex-1 overflow-hidden relative`,children:[!i&&(0,J.jsx)(pc,{variant:e}),(0,J.jsx)(`div`,{ref:a,className:`absolute inset-0`,style:i?void 0:{display:`none`}})]})]})}function fc(){let e=H(e=>e.panels[at]),t=U(e=>e.activeProject),n=H(e=>e.dockExpanded),r=t?.name??null,i=(e?.tabs??[]).filter(e=>!e.projectId||!r||e.projectId===r),a=e?.activeTabId??null;function o(e){H.getState().setActiveTab(e,at)}function s(){let e=t;H.getState().openInDock({type:`terminal`,title:`Terminal`,projectId:e?.name??null,closable:!0,metadata:e?{projectName:e.name}:void 0})}return(0,J.jsxs)(`div`,{className:`flex-1 min-w-0 flex items-center h-11 gap-1 pl-2 overflow-hidden`,children:[(0,J.jsxs)(`div`,{className:`flex-1 min-w-0 flex items-center gap-1.5 overflow-x-auto scrollbar-none`,children:[i.map(e=>{let t=Ys(e.type);return(0,J.jsxs)(`div`,{className:V(`flex items-center h-8 pl-3 pr-1 gap-1 rounded-full border shrink-0 transition-colors`,e.id===a?`border-primary text-primary bg-primary/10`:`border-border text-text-secondary`),children:[(0,J.jsxs)(`button`,{onClick:()=>o(e.id),className:`flex items-center gap-1.5 min-w-0`,children:[(0,J.jsx)(t,{className:`size-[13px] shrink-0`}),(0,J.jsx)(`span`,{className:`max-w-[96px] truncate text-xs font-medium`,children:e.title})]}),e.closable&&(0,J.jsx)(`button`,{onClick:()=>H.getState().closeTab(e.id,`__dock__`),"aria-label":`Close ${e.title}`,className:`shrink-0 flex items-center justify-center size-6 rounded-full text-text-subtle active:bg-surface-elevated active:text-foreground`,children:(0,J.jsx)(Qe,{className:`size-3.5`})})]},e.id)}),(0,J.jsx)(`button`,{onClick:s,title:`New panel tab`,"aria-label":`New panel tab`,className:`shrink-0 flex items-center justify-center size-8 rounded-full border border-dashed border-border text-text-subtle active:bg-surface-elevated`,children:(0,J.jsx)(Ze,{className:`size-4`})})]}),(0,J.jsx)(`button`,{onClick:()=>H.getState().toggleDockExpanded(),title:n?`Collapse panel`:`Expand panel`,"aria-label":n?`Collapse panel`:`Expand panel`,className:`shrink-0 flex items-center justify-center size-9 text-text-subtle active:bg-surface-elevated rounded transition-colors`,children:n?(0,J.jsx)(tr,{className:`size-4`}):(0,J.jsx)(Zn,{className:`size-4`})})]})}function pc({variant:e}){let t=U(e=>e.activeProject);function n(){let e=t;H.getState().openInDock({type:`terminal`,title:`Terminal`,projectId:e?.name??null,closable:!0,metadata:e?{projectName:e.name}:void 0})}return(0,J.jsx)(`div`,{className:`flex items-center justify-center h-full`,children:(0,J.jsxs)(`button`,{onClick:n,className:V(`flex items-center gap-2 rounded-md`,e===`mobile`?`px-4 py-3`:`px-3 py-2`,`border border-border bg-surface hover:bg-surface-elevated active:bg-surface-elevated`,`text-sm text-foreground transition-colors`),children:[(0,J.jsx)(Ir,{className:`size-4`}),`Open Terminal`]})})}function mc(e,t,n){return e===`bottom`?{orientation:`vertical`,dockFirst:!1,dockSize:`${n?70:t}%`,borderEdge:`top`}:{orientation:`horizontal`,dockFirst:e===`left`,dockSize:`${n?55:t}%`,borderEdge:e===`left`?`right`:`left`}}var hc=[[]],gc=(0,q.memo)(function({projectName:e}){let t=qa(`(min-width: 768px)`),n=H(t=>t.currentProject===e?t.grid:t.projectGrids[e]??hc),r=H(e=>e.focusedPanelId),i=H(e=>e.dock),a=H(e=>e.dockExpanded),o=B(e=>e.dockPosition),s=H(e=>e.currentProject),c=n.flat().length,l=s===e;(0,q.useEffect)(()=>{if(l&&c===0){let e=st();H.setState(t=>({panels:{...t.panels,[e.id]:e},grid:[[e.id]],focusedPanelId:e.id}))}},[l,c]);let u=(0,q.useCallback)(({asPercentage:e})=>{H.getState().dockExpanded||H.getState().setDockHeight(e)},[]),d=(0,q.useRef)({key:``,size:``});if(c===0)return null;if(!t){let t=n.flat(),i=t.includes(r)?r:t[0];return i?(0,J.jsx)(Ks,{panelId:i,projectName:e}):null}let f=c===1&&n[0]?.[0]?(0,J.jsx)(Ks,{panelId:n[0][0],projectName:e}):(0,J.jsx)(Ba,{orientation:`vertical`,style:{height:`100%`},children:n.map((t,r)=>(0,J.jsx)(_c,{row:t,rowIdx:r,totalRows:n.length,projectName:e},`row-${r}`))});if(!l)return(0,J.jsx)(J.Fragment,{children:f});let p=mc(o,i.height,a),m=p.orientation===`vertical`?`horizontal`:`vertical`,h=`${o}-${a}`;d.current.key!==h&&(d.current={key:h,size:p.dockSize});let g=(0,J.jsx)(Ua,{minSize:`15%`,children:f}),_=i.visible?(0,J.jsx)(Ua,{defaultSize:d.current.size,minSize:`10%`,maxSize:`85%`,onResize:u,children:(0,J.jsx)(dc,{borderEdge:p.borderEdge})}):null,v=i.visible?(0,J.jsx)(yc,{orientation:m}):null;return(0,J.jsxs)(Ba,{orientation:p.orientation,style:{height:`100%`},children:[p.dockFirst?_:g,v,p.dockFirst?g:_]},h)});function _c({row:e,rowIdx:t,totalRows:n,projectName:r}){return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Ua,{minSize:`15%`,defaultSize:`${Math.round(100/n)}%`,children:e.length===1?(0,J.jsx)(Ks,{panelId:e[0],projectName:r}):(0,J.jsx)(Ba,{orientation:`horizontal`,children:e.map((t,n)=>(0,J.jsx)(vc,{panelId:t,colIdx:n,totalCols:e.length,projectName:r},t))})}),t<n-1&&(0,J.jsx)(yc,{orientation:`horizontal`})]})}function vc({panelId:e,colIdx:t,totalCols:n,projectName:r}){return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Ua,{minSize:`15%`,defaultSize:`${Math.round(100/n)}%`,children:(0,J.jsx)(Ks,{panelId:e,projectName:r})}),t<n-1&&(0,J.jsx)(yc,{orientation:`vertical`})]})}function yc({orientation:e}){let t=e===`vertical`;return(0,J.jsx)(Ka,{className:`
|
|
11
|
-
group/handle relative flex items-center justify-center
|
|
12
|
-
${t?`w-px cursor-col-resize`:`h-px cursor-row-resize`}
|
|
13
|
-
bg-border/30 hover:bg-primary/30 active:bg-primary/50
|
|
14
|
-
transition-colors duration-150
|
|
15
|
-
`,children:(0,J.jsx)(`div`,{className:`absolute can-hover:opacity-0 can-hover:group-hover/handle:opacity-70 transition-opacity text-foreground/50`,children:t?(0,J.jsx)(Pn,{className:`size-3`}):(0,J.jsx)(Nn,{className:`size-3`})})})}var bc=e=>Symbol.iterator in e,xc=e=>`entries`in e,Sc=(e,t)=>{let n=e instanceof Map?e:new Map(e.entries()),r=t instanceof Map?t:new Map(t.entries());if(n.size!==r.size)return!1;for(let[e,t]of n)if(!r.has(e)||!Object.is(t,r.get(e)))return!1;return!0},Cc=(e,t)=>{let n=e[Symbol.iterator](),r=t[Symbol.iterator](),i=n.next(),a=r.next();for(;!i.done&&!a.done;){if(!Object.is(i.value,a.value))return!1;i=n.next(),a=r.next()}return!!i.done&&!!a.done};function wc(e,t){return Object.is(e,t)?!0:typeof e!=`object`||!e||typeof t!=`object`||!t||Object.getPrototypeOf(e)!==Object.getPrototypeOf(t)?!1:bc(e)&&bc(t)?xc(e)&&xc(t)?Sc(e,t):Cc(e,t):Sc({entries:()=>Object.entries(e)},{entries:()=>Object.entries(t)})}function Tc(e){let t=q.useRef(void 0);return n=>{let r=e(n);return wc(t.current,r)?t.current:t.current=r}}function Ec({icon:e,title:t,children:n}){return(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-2 border-b border-border shrink-0`,children:[(0,J.jsx)(e,{className:`size-4 text-primary`}),(0,J.jsx)(`span`,{className:`text-xs font-semibold uppercase tracking-wide text-text-secondary flex-1`,children:t}),n]})}function Dc({className:e,children:t,...n}){return(0,J.jsxs)(c,{"data-slot":`scroll-area`,className:V(`relative`,e),...n,children:[(0,J.jsx)(a,{"data-slot":`scroll-area-viewport`,className:`size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 [&>div]:!block`,children:t}),(0,J.jsx)(Oc,{}),(0,J.jsx)(l,{})]})}function Oc({className:e,orientation:t=`vertical`,...n}){return(0,J.jsx)(h,{"data-slot":`scroll-area-scrollbar`,orientation:t,className:V(`flex touch-none p-px transition-colors select-none`,t===`vertical`&&`h-full w-1.5 border-l border-l-transparent`,t===`horizontal`&&`h-1.5 flex-col border-t border-t-transparent`,e),...n,children:(0,J.jsx)(ee,{"data-slot":`scroll-area-thumb`,className:`relative flex-1 rounded-full bg-border`})})}var kc=500,Ac=q.createContext(!1);function jc({children:e,...t}){let n=Me(),[r,i]=(0,q.useState)(!1);return n?(0,J.jsx)(Ac.Provider,{value:!0,children:(0,J.jsx)(Te.Provider,{value:{open:r,setOpen:i},children:e})}):(0,J.jsx)(ge,{...t,children:e})}function Mc({children:e,asChild:t,...n}){let r=q.useContext(Ac),{setOpen:i}=q.useContext(Te),a=(0,q.useRef)(void 0),o=(0,q.useRef)(!1);return r?(0,J.jsx)(`div`,{onTouchStart:(0,q.useCallback)(e=>{e.stopPropagation(),o.current=!1,a.current=setTimeout(()=>{i(!0),o.current=!0},kc)},[i]),onTouchMove:(0,q.useCallback)(()=>{clearTimeout(a.current)},[]),onTouchEnd:(0,q.useCallback)(()=>{clearTimeout(a.current)},[]),onClickCapture:(0,q.useCallback)(e=>{o.current&&=(e.preventDefault(),e.stopPropagation(),!1)},[]),onContextMenu:(0,q.useCallback)(e=>{e.preventDefault(),e.stopPropagation()},[]),className:`contents`,children:e}):(0,J.jsx)(ye,{asChild:t,...n,children:e})}function Nc({children:e,className:t,...n}){if(!q.useContext(Ac))return(0,J.jsx)(Ee,{className:t,...n,children:e});let{open:r,setOpen:i}=q.useContext(Te);return(0,J.jsx)(Ae,{open:r,onClose:()=>i(!1),className:V(`p-2`,t),children:(0,J.jsx)(`div`,{className:`max-h-[60vh] overflow-y-auto`,children:e})})}function Pc({children:e,className:t,variant:n,onClick:r,disabled:i,...a}){return q.useContext(Ac)?(0,J.jsx)(Oe,{className:t,variant:n,disabled:i,onClick:r,children:e}):(0,J.jsx)(ke,{className:t,variant:n,disabled:i,onClick:r,...a,children:e})}function Fc({className:e,...t}){return q.useContext(Ac)?(0,J.jsx)(Se,{className:e}):(0,J.jsx)(_e,{className:e,...t})}var Ic={M:`text-warning`,A:`text-success`,D:`text-error`,R:`text-primary`,C:`text-accent-2`,U:`text-text-3`};function Lc(e){let t=new Map;for(let n of e.untracked)t.set(n,`U`);for(let n of e.unstaged){let e=n.status===`?`?`U`:n.status;t.set(n.path,e)}for(let n of e.staged){let e=n.status===`?`?`U`:n.status;t.set(n.path,e)}return t}function Rc(e){let t={D:5,A:4,M:3,R:2,C:1,U:0},n=new Map;for(let[r,i]of e){let e=r.split(`/`);for(let r=1;r<e.length;r++){let a=e.slice(0,r).join(`/`),o=n.get(a);(!o||t[i]>t[o])&&n.set(a,i)}}return n}var zc=nt()(e=>({counts:new Map,fileStatuses:new Map,folderStatuses:new Map,meta:new Map,setCount:(t,n)=>{e(e=>{if(e.counts.get(t)===n)return e;let r=new Map(e.counts);return r.set(t,n),{counts:r}})},setFileStatuses:(t,n)=>{let r=Lc(n),i=Rc(r);e(e=>{let n=new Map(e.fileStatuses);n.set(t,r);let a=new Map(e.folderStatuses);return a.set(t,i),{fileStatuses:n,folderStatuses:a}})},setMeta:(t,n)=>{e(e=>{let r=e.meta.get(t);if(r&&r.branch===n.current&&r.ahead===n.ahead&&r.behind===n.behind&&r.tracking===n.tracking)return e;let i=new Map(e.meta);return i.set(t,{branch:n.current,ahead:n.ahead,behind:n.behind,tracking:n.tracking}),{meta:i}})}}));function Bc(e,t){let n=zc(e=>e.setCount),r=zc(e=>e.setFileStatuses),i=zc(e=>e.setMeta),a=(0,q.useCallback)(async()=>{if(e)try{let t=await R.get(`${L(e)}/git/status`);n(e,t.staged.length+t.unstaged.length+t.untracked.length),r(e,t),i(e,t)}catch{}},[e,n,r]);(0,q.useEffect)(()=>{if(t)return;a();let e=setInterval(a,1e4);return()=>clearInterval(e)},[a,t])}function Vc({defaultValue:e,placeholder:t,depth:n,icon:r,onConfirm:i,onCancel:a}){let[o,s]=(0,q.useState)(e),[c,l]=(0,q.useState)(null),[u,d]=(0,q.useState)(!1),f=(0,q.useRef)(null),p=(0,q.useRef)(!1);(0,q.useEffect)(()=>{let t=f.current;t&&requestAnimationFrame(()=>{if(t.focus(),e){let n=e.lastIndexOf(`.`);t.setSelectionRange(0,n>0?n:e.length)}})},[e]);let m=(0,q.useCallback)(async()=>{if(p.current||u)return;let e=o.trim();if(!e){a();return}p.current=!0,d(!0),l(null);try{await i(e)}catch(e){p.current=!1,l(e instanceof Error?e.message:`Failed`),d(!1)}},[o,u,i,a]);function h(e){e.key===`Enter`?(e.preventDefault(),m()):e.key===`Escape`&&(e.preventDefault(),a())}function g(){p.current||m()}let _=r===`folder`?On:xn;return(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{className:V(`flex items-center w-full gap-1.5 px-2 py-0.5`,`min-h-[32px] text-left`),style:{paddingLeft:`${n*16+8}px`},children:[(0,J.jsx)(`span`,{className:`w-3.5 shrink-0`}),(0,J.jsx)(_,{className:`size-4 shrink-0 text-text-secondary`}),(0,J.jsx)(`input`,{ref:f,value:o,onChange:e=>{s(e.target.value),l(null)},onKeyDown:h,onBlur:g,placeholder:t,disabled:u,className:V(`flex-1 min-w-0 bg-input text-sm px-1.5 py-0.5 rounded border outline-none`,`focus:ring-1 focus:ring-primary/50`,c?`border-destructive`:`border-primary`)})]}),c&&(0,J.jsx)(`p`,{className:`text-[10px] text-destructive truncate`,style:{paddingLeft:`${n*16+8+14+22}px`},children:c})]})}var Hc={ts:{icon:G,color:`text-blue-400`},tsx:{icon:G,color:`text-blue-400`},js:{icon:G,color:`text-yellow-400`},jsx:{icon:G,color:`text-yellow-400`},py:{icon:G,color:`text-green-400`},rs:{icon:G,color:`text-orange-400`},go:{icon:G,color:`text-cyan-400`},c:{icon:G,color:`text-blue-300`},cpp:{icon:G,color:`text-blue-300`},java:{icon:G,color:`text-red-400`},rb:{icon:G,color:`text-red-400`},php:{icon:G,color:`text-purple-400`},swift:{icon:G,color:`text-orange-400`},kt:{icon:G,color:`text-purple-400`},dart:{icon:G,color:`text-cyan-400`},sh:{icon:G,color:`text-green-300`},html:{icon:G,color:`text-orange-400`},css:{icon:G,color:`text-blue-400`},scss:{icon:G,color:`text-pink-400`},json:{icon:fn,color:`text-yellow-400`},yaml:{icon:bn,color:`text-orange-300`},yml:{icon:bn,color:`text-orange-300`},toml:{icon:bn,color:`text-orange-300`},ini:{icon:bn,color:`text-orange-300`},env:{icon:bn,color:`text-yellow-300`},csv:{icon:vn,color:`text-green-400`},xls:{icon:vn,color:`text-green-400`},xlsx:{icon:vn,color:`text-green-400`},md:{icon:yn,color:`text-text-secondary`},txt:{icon:yn,color:`text-text-secondary`},log:{icon:yn,color:`text-text-subtle`},pdf:{icon:yn,color:`text-red-400`},png:{icon:hn,color:`text-green-400`},jpg:{icon:hn,color:`text-green-400`},jpeg:{icon:hn,color:`text-green-400`},gif:{icon:hn,color:`text-green-400`},svg:{icon:hn,color:`text-yellow-400`},webp:{icon:hn,color:`text-green-400`},ico:{icon:hn,color:`text-green-400`},bmp:{icon:hn,color:`text-green-400`},mp4:{icon:gn,color:`text-purple-400`},webm:{icon:gn,color:`text-purple-400`},mov:{icon:gn,color:`text-purple-400`},avi:{icon:gn,color:`text-purple-400`},mkv:{icon:gn,color:`text-purple-400`},mp3:{icon:mn,color:`text-pink-400`},wav:{icon:mn,color:`text-pink-400`},ogg:{icon:mn,color:`text-pink-400`},flac:{icon:mn,color:`text-pink-400`},db:{icon:Je,color:`text-amber-400`},sqlite:{icon:Je,color:`text-amber-400`},sqlite3:{icon:Je,color:`text-amber-400`},sql:{icon:Je,color:`text-amber-400`},zip:{icon:dn,color:`text-amber-300`},tar:{icon:dn,color:`text-amber-300`},gz:{icon:dn,color:`text-amber-300`},rar:{icon:dn,color:`text-amber-300`},"7z":{icon:dn,color:`text-amber-300`}},Uc={icon:xn};function Wc(e){return Hc[e.split(`.`).pop()?.toLowerCase()??``]??Uc}function Gc({node:e,isDir:t,projectName:n,selectedFiles:r,compareSelection:i,clipboard:a,onAction:o}){return(0,J.jsxs)(Nc,{children:[t&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Pc,{onClick:()=>o(`new-file`,e),children:`New File`}),(0,J.jsx)(Pc,{onClick:()=>o(`new-folder`,e),children:`New Folder`}),(0,J.jsx)(Fc,{})]}),(0,J.jsx)(Pc,{onClick:()=>o(`cut`,e),children:`Cut`}),(0,J.jsx)(Pc,{onClick:()=>o(`copy-file`,e),children:`Copy`}),t&&a&&(0,J.jsx)(Pc,{onClick:()=>o(`paste`,e),children:`Paste`}),(0,J.jsx)(Fc,{}),(0,J.jsx)(Pc,{onClick:()=>o(`rename`,e),children:`Rename`}),(0,J.jsx)(Pc,{variant:`destructive`,onClick:()=>o(`delete`,e),children:`Delete`}),(0,J.jsx)(Fc,{}),(0,J.jsx)(Pc,{onClick:()=>o(`copy-path`,e),children:`Copy Path`}),(0,J.jsx)(Pc,{onClick:()=>o(`copy-full-path`,e),children:`Copy Full Path`}),(0,J.jsx)(Fc,{}),(0,J.jsxs)(Pc,{onClick:()=>o(`download`,e),children:[(0,J.jsx)(Xe,{className:`size-3.5 mr-2`}),`Download`,t?` as Zip`:``]}),!t&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Fc,{}),(0,J.jsx)(Pc,{onClick:()=>o(`select-for-compare`,e),children:`Select for Compare`}),i&&i.projectName===n&&i.filePath!==e.path&&(0,J.jsxs)(Pc,{onClick:()=>o(`compare-with-selected`,e),children:[`Compare with Selected (`,i.label,`)`]})]}),!t&&r.length===2&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Fc,{}),(0,J.jsx)(Pc,{onClick:()=>o(`compare-selected`,e),children:`Compare Selected`})]})]})}function Kc(e){return e.dataTransfer.types.includes(`Files`)&&!e.dataTransfer.types.includes(`application/x-ppm-path`)}var qc=(0,q.memo)(function e({node:t,depth:n,projectName:r,onAction:i,onFileDrop:a,onFileOpen:o}){let{expandedPaths:s,loadedPaths:c,inflight:l,toggleExpand:u,selectedFiles:d,toggleFileSelect:f,inlineAction:p,clearInlineAction:m,clipboard:h,focusedPath:g,setFocusedPath:_}=ho(Tc(e=>({expandedPaths:e.expandedPaths,loadedPaths:e.loadedPaths,inflight:e.inflight,toggleExpand:e.toggleExpand,selectedFiles:e.selectedFiles,toggleFileSelect:e.toggleFileSelect,inlineAction:e.inlineAction,clearInlineAction:e.clearInlineAction,clipboard:e.clipboard,focusedPath:e.focusedPath,setFocusedPath:e.setFocusedPath}))),v=W(e=>e.openTab),y=xo(e=>e.selection),b=t.type===`directory`,x=zc(e=>(b?e.folderStatuses.get(r):e.fileStatuses.get(r))?.get(t.path)),S=x?Ic[x]:void 0,C=s.has(t.path),w=d.includes(t.path),T=t.ignored===!0,E=h?.operation===`cut`&&h.paths.includes(t.path),D=g===t.path,O=b&&C&&!c.has(t.path)&&l.has(t.path),[k,A]=(0,q.useState)(!1),ee=(0,q.useRef)(0),te=(0,q.useRef)(null);(0,q.useEffect)(()=>{D&&te.current&&te.current.scrollIntoView({block:`nearest`})},[D]);function ne(e){if(e.metaKey||e.ctrlKey){_(t.path),f(t.path);return}if(e.shiftKey&&g!=null){let e=go(),n=e.indexOf(g),r=e.indexOf(t.path);if(n>=0&&r>=0){let t=Math.min(n,r),i=Math.max(n,r);ho.getState().setSelectedFiles(e.slice(t,i+1))}return}if(_(t.path),ho.getState().clearSelection(),b){u(r,t.path);return}let n=t.name.split(`.`).pop()?.toLowerCase()??``;v({type:n===`db`||n===`sqlite`||n===`sqlite3`?`sqlite`:`editor`,title:t.name,metadata:{filePath:t.path,projectName:r},projectId:r,closable:!0}),o?.()}function j(e){let n=b?`${t.path}/`:t.path;e.dataTransfer.setData(`application/x-ppm-path`,n),e.dataTransfer.setData(`text/plain`,t.name),e.dataTransfer.effectAllowed=`copyMove`}function M(e){return b?Kc(e)||e.dataTransfer.types.includes(`application/x-ppm-path`):!1}function re(e){M(e)&&(e.preventDefault(),e.stopPropagation(),ee.current++,ee.current===1&&A(!0))}function ie(e){b&&(e.stopPropagation(),ee.current--,ee.current===0&&A(!1))}function ae(e){M(e)&&(e.preventDefault(),e.stopPropagation(),e.dataTransfer.dropEffect=Kc(e)?`copy`:`move`)}function oe(e){if(!b)return;if(e.preventDefault(),e.stopPropagation(),ee.current=0,A(!1),Kc(e)){e.dataTransfer.files.length>0&&a(t.path,e.dataTransfer.files);return}let n=e.dataTransfer.getData(`application/x-ppm-path`).replace(/\/$/,``);if(!n||n===t.path||t.path.startsWith(`${n}/`))return;let i=n.includes(`/`)?n.slice(0,n.lastIndexOf(`/`)):``;if(i===t.path)return;let o=n.includes(`/`)?n.slice(n.lastIndexOf(`/`)+1):n,s=t.path?`${t.path}/${o}`:o;R.post(`${L(r)}/files/move`,{source:n,destination:s}).then(()=>{let e=ho.getState();e.invalidateIndex(),e.loadIndex(r),e.invalidateFolder(r,i),e.invalidateFolder(r,t.path)}).catch(e=>{I.error(e instanceof Error?e.message:`Move failed`)})}let{icon:se,color:ce}=b?{icon:C?Cn:On,color:C?`text-primary`:`text-text-3`}:Wc(t.name),N=t.name,le=t;if(b&&C&&t.children){let e=t;for(;e.children&&e.children.length===1&&e.children[0].type===`directory`&&s.has(e.children[0].path);)e=e.children[0],N+=`/${e.name}`;e!==t&&(le=e)}let ue=le.children?[...le.children].sort((e,t)=>e.type===t.type?e.name.localeCompare(t.name):e.type===`directory`?-1:1):[],de=p?.type===`rename`&&p.existingNode?.path===t.path,fe=b&&p!=null&&(p.parentPath===t.path||p.parentPath===le.path)&&p.type!==`rename`;return(0,J.jsxs)(`div`,{onDragEnter:b?re:void 0,onDragLeave:b?ie:void 0,onDragOver:b?ae:void 0,onDrop:b?oe:void 0,children:[de?(0,J.jsx)(Vc,{defaultValue:t.name,placeholder:t.name,depth:n,icon:b?`folder`:`file`,onConfirm:async e=>{if(e===t.name){m();return}let n=t.path.includes(`/`)?t.path.slice(0,t.path.lastIndexOf(`/`)):``,i=n?`${n}/${e}`:e;await R.post(`${L(r)}/files/rename`,{oldPath:t.path,newPath:i}),m();let a=ho.getState();a.invalidateIndex(),a.loadIndex(r),a.invalidateFolder(r,n)},onCancel:m}):(0,J.jsxs)(jc,{children:[(0,J.jsx)(Mc,{asChild:!0,children:(0,J.jsxs)(`button`,{ref:te,draggable:!0,onDragStart:j,onClick:ne,className:V(`flex items-center w-full gap-1.5 px-2 py-1 rounded-[var(--rad-sm)] text-[13px]`,`min-h-[32px] md:min-h-[26px] hover:bg-surface-elevated transition-colors text-left`,`select-none`,(T||E)&&`opacity-40`,D&&`bg-surface-elevated`,w&&`bg-accent-wash`,k&&`ring-1 ring-dashed ring-primary bg-primary/10`),style:{paddingLeft:`${n*16+8}px`},children:[b?O?(0,J.jsx)(K,{className:`size-3.5 shrink-0 text-text-subtle animate-spin`}):C?(0,J.jsx)(Ne,{className:`size-3.5 shrink-0 text-text-subtle`}):(0,J.jsx)(Fe,{className:`size-3.5 shrink-0 text-text-subtle`}):(0,J.jsx)(`span`,{className:`w-3.5 shrink-0`}),(0,J.jsx)(se,{className:V(`size-4 shrink-0`,ce??`text-text-secondary`)}),(0,J.jsx)(`span`,{className:V(`truncate`,S??(w?`text-text`:b&&C?`text-text font-medium`:`text-text-2`)),children:N}),x&&!b&&(0,J.jsx)(`span`,{className:V(`text-[10px] ml-auto shrink-0 font-mono`,S),children:x})]})}),(0,J.jsx)(Gc,{node:t,isDir:b,projectName:r,selectedFiles:d,compareSelection:y,clipboard:h,onAction:i})]}),b&&C&&fe&&(0,J.jsx)(Vc,{defaultValue:``,placeholder:p.type===`new-file`?`filename.ts`:`folder-name`,depth:n+1,icon:p.type===`new-file`?`file`:`folder`,onConfirm:async e=>{let n=p.type===`new-file`?`file`:`directory`,i=le.path||t.path,a=i?`${i}/${e}`:e;await R.post(`${L(r)}/files/create`,{path:a,type:n}),m();let o=ho.getState();o.invalidateIndex(),o.loadIndex(r),o.invalidateFolder(r,i)},onCancel:m}),b&&C&&ue.map(t=>(0,J.jsx)(e,{node:t,depth:n+1,projectName:r,onAction:i,onFileDrop:a,onFileOpen:o},t.path))]})});function Jc({projectName:e,setExpanded:t}){let[n,r]=(0,q.useState)(!1),i=(0,q.useRef)(0),a=(0,q.useCallback)(async(n,r)=>{if(!e)return;let i=r.length,a=i===1?r[0].name:`${i} files`,o=I.loading(`Uploading ${a}…`),s=new FormData;s.append(`targetDir`,n);for(let e of r)s.append(`files`,e);let c={},l=tt();l&&(c.Authorization=`Bearer ${l}`);try{let r=await fetch(`${L(e)}/files/upload`,{method:`POST`,headers:c,body:s});if(!r.ok){let e=await r.json();I.error(`Upload failed: ${e.error??`Unknown error`}`,{id:o});return}I.success(`Uploaded ${a}`,{id:o});let i=ho.getState();i.loadedPaths.has(n)&&await i.invalidateFolder(e,n),n&&t(n,!0)}catch(e){I.error(e instanceof Error?e.message:`Upload failed`,{id:o})}},[e,t]);function o(e){Kc(e)&&(e.preventDefault(),i.current++,i.current===1&&r(!0))}function s(){i.current--,i.current===0&&r(!1)}function c(e){Kc(e)&&(e.preventDefault(),e.dataTransfer.dropEffect=`copy`)}function l(e){Kc(e)&&(e.preventDefault(),i.current=0,r(!1),e.dataTransfer.files.length>0&&a(``,e.dataTransfer.files))}return{uploadFiles:a,isRootDragOver:n,handleRootDragEnter:o,handleRootDragLeave:s,handleRootDragOver:c,handleRootDrop:l}}function Yc({tree:e,expandedPaths:t,focusedPath:n,setFocusedPath:r,setExpanded:i,toggleExpand:a,projectName:o,onAction:s}){let c=(0,q.useMemo)(()=>{let n=[];function r(e){let i=[...e].sort((e,t)=>e.type===t.type?e.name.localeCompare(t.name):e.type===`directory`?-1:1);for(let e of i){let i=e;if(e.type===`directory`&&t.has(e.path)&&e.children)for(;i.children&&i.children.length===1&&i.children[0].type===`directory`&&t.has(i.children[0].path);)i=i.children[0];n.push(i),i.type===`directory`&&t.has(i.path)&&i.children&&r(i.children)}}return r(e),n},[e,t]),l=(0,q.useMemo)(()=>c.find(e=>e.path===n)??null,[c,n]);function u(e){if(!o)return;let u=e.target;if(u.tagName===`INPUT`||u.tagName===`TEXTAREA`)return;let d=n==null?-1:c.findIndex(e=>e.path===n);switch(e.key){case`ArrowDown`:e.preventDefault(),r(c[d<c.length-1?d+1:0].path);break;case`ArrowUp`:e.preventDefault(),r(c[d>0?d-1:c.length-1].path);break;case`ArrowRight`:e.preventDefault(),l?.type===`directory`&&!t.has(l.path)&&a(o,l.path);break;case`ArrowLeft`:if(e.preventDefault(),l?.type===`directory`&&t.has(l.path))i(l.path,!1);else if(l){let e=l.path.includes(`/`)?l.path.slice(0,l.path.lastIndexOf(`/`)):``;if(e||e===``){let t=c.find(t=>t.path===e);t&&r(t.path)}}break;case`Enter`:e.preventDefault(),l&&s(l.type===`directory`?`toggle-expand`:`open-file`,l);break;case`F2`:e.preventDefault(),l&&s(`rename`,l);break;case`Delete`:e.preventDefault(),l&&s(`delete`,l);break}}return{visibleNodes:c,focusedNode:l,handleTreeKeyDown:u}}var Xc={name:``,path:``,type:`directory`};function Zc({onFileOpen:e}={}){let{tree:t,loading:n,error:r,loadRoot:i,loadIndex:a,loadChildren:o,invalidateIndex:s,invalidateFolder:c,reset:l,selectedFiles:u,clearSelection:d,setExpanded:f,fetchTree:p,inlineAction:m,setInlineAction:h,clearInlineAction:g,clipboard:_,setClipboard:v,collapseAll:y,focusedPath:b,setFocusedPath:x,expandedPaths:S,toggleExpand:C}=ho(Tc(e=>({tree:e.tree,loading:e.loading,error:e.error,loadRoot:e.loadRoot,loadIndex:e.loadIndex,loadChildren:e.loadChildren,invalidateIndex:e.invalidateIndex,invalidateFolder:e.invalidateFolder,reset:e.reset,selectedFiles:e.selectedFiles,clearSelection:e.clearSelection,setExpanded:e.setExpanded,fetchTree:e.fetchTree,inlineAction:e.inlineAction,setInlineAction:e.setInlineAction,clearInlineAction:e.clearInlineAction,clipboard:e.clipboard,setClipboard:e.setClipboard,collapseAll:e.collapseAll,focusedPath:e.focusedPath,setFocusedPath:e.setFocusedPath,expandedPaths:e.expandedPaths,toggleExpand:e.toggleExpand}))),w=U(e=>e.activeProject),T=W(e=>e.openTab),[E,D]=(0,q.useState)(null),O=(0,q.useCallback)(()=>{w&&(l(),i(w.name),a(w.name))},[w,l,i,a]),k=(0,q.useCallback)(async()=>{if(!w)return;let{tabs:e,activeTabId:t}=W.getState(),n=e.find(e=>e.id===t)?.metadata?.filePath;if(!n)return;let r=n.split(`/`),i=w.name;for(let e=1;e<r.length;e++){let t=r.slice(0,e).join(`/`);f(t,!0),await o(i,t)}x(n)},[w,f,o,x]),A=(0,q.useCallback)(async e=>{if(!w||!_)return;let t=w.name,n=_.operation===`cut`?`move`:`copy`;for(let r of _.paths){let i=r.includes(`/`)?r.slice(r.lastIndexOf(`/`)+1):r,a=e?`${e}/${i}`:i;try{await R.post(`${L(t)}/files/${n}`,{source:r,destination:a})}catch(e){I.error(e instanceof Error?e.message:`Failed to ${n}`)}}_.operation===`cut`&&v(null),O()},[w,_,v,O]),ee=(0,q.useRef)(null),te=(0,q.useCallback)(e=>{if(!w)return;let t=e.target;t.tagName===`INPUT`||t.tagName===`TEXTAREA`||t.isContentEditable||(e.metaKey||e.ctrlKey)&&(e.key===`x`&&u.length>0?(e.preventDefault(),v({paths:[...u],operation:`cut`})):e.key===`c`&&u.length>0?(e.preventDefault(),v({paths:[...u],operation:`copy`})):e.key===`v`&&_&&(e.preventDefault(),A(``)))},[w,u,_,v,A]),{handleTreeKeyDown:ne}=Yc({tree:t,expandedPaths:S,focusedPath:b,setFocusedPath:x,setExpanded:f,toggleExpand:C,projectName:w?.name,onAction:se});(0,q.useEffect)(()=>{if(!w)return;l();let e=w.name;i(e).then(()=>{ho.getState().setExpanded(``,!0)}),a(e)},[w?.name]),(0,q.useEffect)(()=>{if(!w)return;let e=w.name,t,n=n=>{let r=n.detail;r.projectName===e&&(clearTimeout(t),t=setTimeout(()=>{let t=ho.getState(),n=r.path??``,i=n.includes(`/`)?n.slice(0,n.lastIndexOf(`/`)):``;t.invalidateIndex(),t.loadIndex(e),t.invalidateFolder(e,i)},300))};return window.addEventListener(`file:changed`,n),()=>{clearTimeout(t),window.removeEventListener(`file:changed`,n)}},[w]);let{uploadFiles:j,isRootDragOver:M,handleRootDragEnter:re,handleRootDragLeave:ie,handleRootDragOver:ae,handleRootDrop:oe}=Jc({projectName:w?.name,setExpanded:f});async function se(t,n){if(t===`toggle-expand`&&n.type===`directory`){C(w.name,n.path);return}if(t===`open-file`&&n.type===`file`){let t=n.name.split(`.`).pop()?.toLowerCase()??``;T({type:t===`db`||t===`sqlite`||t===`sqlite3`?`sqlite`:`editor`,title:n.name,metadata:{filePath:n.path,projectName:w.name},projectId:w.name,closable:!0}),e?.();return}if(t===`cut`){v({paths:u.length>0&&u.includes(n.path)?[...u]:[n.path],operation:`cut`});return}if(t===`copy-file`){v({paths:u.length>0&&u.includes(n.path)?[...u]:[n.path],operation:`copy`});return}if(t===`paste`&&n.type===`directory`){A(n.path);return}if(t===`copy-path`){ks(n.path);return}if(t===`copy-full-path`){let e=w?.path;ks(e?`${e}/${n.path}`:n.path);return}if(t===`select-for-compare`){xo.getState().setSelection({filePath:n.path,projectName:w.name,label:n.name});return}if(t===`compare-with-selected`){let e=xo.getState().selection;if(!e)return;try{await Co({path:e.filePath,dirtyContent:e.dirtyContent},{path:n.path},w.name),xo.getState().clearSelection()}catch(e){let t=e instanceof Error?e.message:`Compare failed`;I.error(t)}return}if(t===`download`){n.type===`directory`?Ds(w.name,n.path):Es(w.name,n.path);return}if(t===`compare-selected`&&u.length===2){let e=u[0],t=u[1];T({type:`git-diff`,title:`Compare ${rt(e)} vs ${rt(t)}`,closable:!0,metadata:{projectName:w.name,file1:e,file2:t},projectId:w.name}),d();return}if(t===`new-file`||t===`new-folder`){let e=n.type===`directory`?n.path:``;e&&f(e,!0),h({type:t,parentPath:e});return}if(t===`rename`){h({type:`rename`,parentPath:n.path.includes(`/`)?n.path.slice(0,n.path.lastIndexOf(`/`)):``,existingNode:n});return}D({action:t,node:n})}if(!w)return(0,J.jsx)(`div`,{className:`p-3 text-xs text-text-subtle`,children:`Select a project to browse files.`});if(n&&t.length===0)return(0,J.jsxs)(`div`,{className:`flex items-center gap-2 p-3 text-xs text-text-secondary`,children:[(0,J.jsx)(K,{className:`size-3 animate-spin`}),`Loading files...`]});if(r)return(0,J.jsxs)(`div`,{className:`p-3 text-xs text-error`,children:[r,(0,J.jsx)(`button`,{onClick:O,className:`block mt-1 text-primary underline`,children:`Retry`})]});let ce=[...t].sort((e,t)=>e.type===t.type?e.name.localeCompare(t.name):e.type===`directory`?-1:1),N=`flex size-6 items-center justify-center rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground`;return(0,J.jsxs)(`div`,{ref:ee,className:V(`flex flex-col h-full outline-none`,M&&`bg-primary/5`),tabIndex:0,onKeyDown:e=>{te(e),ne(e)},onDragEnter:re,onDragLeave:ie,onDragOver:ae,onDrop:oe,children:[(0,J.jsxs)(Ec,{icon:Cn,title:`Explorer`,children:[(0,J.jsx)(`button`,{onClick:()=>se(`new-file`,Xc),title:`New File`,className:N,children:(0,J.jsx)(_n,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:()=>se(`new-folder`,Xc),title:`New Folder`,className:N,children:(0,J.jsx)(wn,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:k,title:`Reveal Active File`,className:N,children:(0,J.jsx)(on,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:y,title:`Collapse All`,className:N,children:(0,J.jsx)(Gt,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:O,title:`Refresh`,className:N,children:(0,J.jsx)(br,{className:`size-3.5`})})]}),(0,J.jsxs)(jc,{children:[(0,J.jsx)(Mc,{asChild:!0,children:(0,J.jsx)(Dc,{className:`flex-1`,children:(0,J.jsxs)(`div`,{className:`py-1`,children:[m&&m.parentPath===``&&m.type!==`rename`&&(0,J.jsx)(Vc,{defaultValue:``,placeholder:m.type===`new-file`?`filename.ts`:`folder-name`,depth:0,icon:m.type===`new-file`?`file`:`folder`,onConfirm:async e=>{let t=m.type===`new-file`?`file`:`directory`;await R.post(`${L(w.name)}/files/create`,{path:e,type:t}),g(),O()},onCancel:g}),ce.map(t=>(0,J.jsx)(qc,{node:t,depth:0,projectName:w.name,onAction:se,onFileDrop:j,onFileOpen:e},t.path)),ce.length===0&&(0,J.jsx)(`p`,{className:`p-3 text-xs text-text-subtle`,children:`Empty project.`})]})})}),(0,J.jsxs)(Nc,{children:[(0,J.jsxs)(Pc,{onClick:()=>se(`new-file`,Xc),children:[(0,J.jsx)(_n,{className:`size-3.5 mr-2`}),`New File`]}),(0,J.jsxs)(Pc,{onClick:()=>se(`new-folder`,Xc),children:[(0,J.jsx)(wn,{className:`size-3.5 mr-2`}),`New Folder`]}),(0,J.jsx)(Fc,{}),(0,J.jsxs)(Pc,{onClick:O,children:[(0,J.jsx)(br,{className:`size-3.5 mr-2`}),`Refresh`]})]})]}),E?.action===`delete`&&(0,J.jsx)(js,{node:E.node,projectName:w.name,onClose:()=>D(null),onRefresh:O})]})}function Z({className:e,type:t,...n}){return(0,J.jsx)(`input`,{type:t,"data-slot":`input`,className:V(`h-9 w-full min-w-0 rounded-lg border border-border bg-surface px-3 py-2 text-base md:text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:border-ring disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50`,`selection:bg-primary selection:text-primary-foreground`,`file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground`,`aria-invalid:border-destructive`,e),...n})}function Qc({className:e,...t}){return(0,J.jsx)(A,{"data-slot":`label`,className:V(`flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50`,e),...t})}function $c({open:e,onOpenChange:t,projectName:n,onCreated:r}){let[i,a]=(0,q.useState)(``),[o,s]=(0,q.useState)(`new`),[c,l]=(0,q.useState)(``),[u,d]=(0,q.useState)(``),[f,p]=(0,q.useState)([]),[m,h]=(0,q.useState)(!1),[g,_]=(0,q.useState)(null);(0,q.useEffect)(()=>{!e||!n||R.get(`${L(n)}/git/branches`).then(e=>{let t=e.filter(e=>!e.remote).map(e=>e.name);p(t),t.length>0&&!u&&d(t[0])}).catch(()=>p([]))},[e,n]);function v(){a(``),s(`new`),l(``),_(null)}function y(){v(),t(!1)}async function b(){if(!i.trim()){_(`Worktree path is required`);return}let e=o===`existing`?u:void 0,t=o===`new`&&c.trim()?c.trim():void 0;h(!0),_(null);try{await R.post(`${L(n)}/git/worktree/add`,{path:i.trim(),branch:e,newBranch:t}),r(),y()}catch(e){_(e instanceof Error?e.message:`Failed to create worktree`)}finally{h(!1)}}let x=(0,J.jsxs)(`div`,{className:`space-y-4`,children:[g&&(0,J.jsx)(`p`,{className:`text-xs text-destructive bg-destructive/10 px-3 py-2 rounded-md`,children:g}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{htmlFor:`wt-path`,children:`Worktree Path`}),(0,J.jsx)(Z,{id:`wt-path`,placeholder:`../my-feature`,value:i,onChange:e=>a(e.target.value),autoFocus:!0,className:`w-full`}),(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Relative or absolute path for the new worktree directory`})]}),(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsx)(Qc,{children:`Branch`}),(0,J.jsxs)(`div`,{className:`flex gap-3`,children:[(0,J.jsxs)(`label`,{className:`flex items-center gap-2 cursor-pointer`,children:[(0,J.jsx)(`input`,{type:`radio`,checked:o===`new`,onChange:()=>s(`new`),className:`accent-primary`}),(0,J.jsx)(`span`,{className:`text-sm`,children:`Create new branch`})]}),(0,J.jsxs)(`label`,{className:`flex items-center gap-2 cursor-pointer`,children:[(0,J.jsx)(`input`,{type:`radio`,checked:o===`existing`,onChange:()=>s(`existing`),className:`accent-primary`}),(0,J.jsx)(`span`,{className:`text-sm`,children:`Use existing branch`})]})]}),o===`new`?(0,J.jsx)(Z,{placeholder:`feature/my-branch`,value:c,onChange:e=>l(e.target.value),className:`w-full`}):(0,J.jsxs)(`select`,{value:u,onChange:e=>d(e.target.value),className:`w-full h-9 px-3 rounded-md border border-input bg-transparent text-sm focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring`,children:[f.length===0&&(0,J.jsx)(`option`,{value:``,children:`No branches available`}),f.map(e=>(0,J.jsx)(`option`,{value:e,children:e},e))]})]})]}),S=(0,J.jsxs)(`div`,{className:`flex gap-2 justify-end pt-2`,children:[(0,J.jsx)(F,{variant:`outline`,size:`sm`,onClick:y,disabled:m,children:`Cancel`}),(0,J.jsxs)(F,{size:`sm`,onClick:b,disabled:m||!i.trim(),children:[m?(0,J.jsx)(K,{className:`size-3 animate-spin mr-1`}):null,`Create Worktree`]})]});return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Ue,{open:e,onOpenChange:e=>{e||y()},children:(0,J.jsxs)(ze,{className:`hidden md:grid sm:max-w-md`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:`Add Worktree`})}),x,(0,J.jsx)(Le,{children:S})]})}),e&&(0,J.jsxs)(`div`,{className:`md:hidden`,children:[(0,J.jsx)(`div`,{className:`fixed inset-0 z-50 bg-black/50`,onClick:y}),(0,J.jsxs)(`div`,{className:V(`fixed bottom-0 left-0 right-0 z-50 bg-background rounded-t-2xl border-t border-border shadow-2xl`,`animate-in slide-in-from-bottom-2 duration-200`),children:[(0,J.jsx)(`div`,{className:`flex justify-center pt-3 pb-1`,children:(0,J.jsx)(`div`,{className:`w-10 h-1 rounded-full bg-border`})}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-b border-border`,children:[(0,J.jsx)(`span`,{className:`text-sm font-semibold`,children:`Add Worktree`}),(0,J.jsx)(`button`,{onClick:y,className:`flex items-center justify-center size-7 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,J.jsx)(Qe,{className:`size-4`})})]}),(0,J.jsxs)(`div`,{className:`px-4 py-4 space-y-4 max-h-[70vh] overflow-y-auto`,children:[x,S]})]})]})]})}function el({projectName:e,projectPath:t}){let[n,r]=(0,q.useState)(!1),[i,a]=(0,q.useState)([]),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(null),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(null),[m,h]=(0,q.useState)(!1),g=(0,q.useCallback)(async()=>{if(e){s(!0),l(null);try{a(await R.get(`${L(e)}/git/worktrees`))}catch(e){l(e instanceof Error?e.message:`Failed to load worktrees`)}finally{s(!1)}}},[e]);(0,q.useEffect)(()=>{n&&g()},[n,g]);async function _(t=!1){if(f){h(!0);try{await R.post(`${L(e)}/git/worktree/remove`,{path:f.path,force:t}),p(null),await g()}catch(e){l(e instanceof Error?e.message:`Failed to remove worktree`),p(null)}finally{h(!1)}}}async function v(){try{await R.post(`${L(e)}/git/worktree/prune`,{}),await g()}catch(e){l(e instanceof Error?e.message:`Prune failed`)}}return(0,J.jsxs)(`div`,{className:`border-t border-border`,children:[(0,J.jsxs)(`button`,{type:`button`,className:`flex items-center justify-between w-full px-3 py-2 hover:bg-muted/50 transition-colors`,onClick:()=>r(e=>!e),children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[n?(0,J.jsx)(Ne,{className:`size-3.5 text-muted-foreground`}):(0,J.jsx)(Fe,{className:`size-3.5 text-muted-foreground`}),(0,J.jsx)(`span`,{className:`text-xs font-medium text-muted-foreground uppercase`,children:`Worktrees`}),i.length>0&&(0,J.jsx)(`span`,{className:`text-[10px] bg-muted text-muted-foreground rounded px-1`,children:i.length})]}),(0,J.jsx)(`div`,{className:`flex items-center gap-0.5`,children:n&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`span`,{role:`button`,tabIndex:0,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-foreground transition-colors`,onClick:e=>{e.stopPropagation(),v()},onKeyDown:e=>{e.key===`Enter`&&(e.stopPropagation(),v())},title:`Prune stale worktrees`,"aria-label":`Prune stale worktrees`,children:(0,J.jsx)(br,{className:V(`size-3`,o&&`animate-spin`)})}),(0,J.jsx)(`span`,{role:`button`,tabIndex:0,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-foreground transition-colors`,onClick:e=>{e.stopPropagation(),d(!0)},onKeyDown:e=>{e.key===`Enter`&&(e.stopPropagation(),d(!0))},title:`Add worktree`,"aria-label":`Add worktree`,children:(0,J.jsx)(Ze,{className:`size-3`})})]})})]}),n&&(0,J.jsxs)(`div`,{className:`pb-1`,children:[c&&(0,J.jsx)(`p`,{className:`text-xs text-destructive px-3 py-1`,children:c}),o&&i.length===0&&(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-2 text-muted-foreground`,children:[(0,J.jsx)(K,{className:`size-3.5 animate-spin`}),(0,J.jsx)(`span`,{className:`text-xs`,children:`Loading worktrees...`})]}),!o&&i.length===0&&!c&&(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground px-3 py-1`,children:`No worktrees found.`}),i.map(e=>(0,J.jsx)(tl,{worktree:e,isActive:!!t&&e.path===t,onRemove:()=>p(e)},e.path)),(0,J.jsxs)(`button`,{type:`button`,className:`flex items-center gap-2 w-full px-3 py-2 text-xs text-muted-foreground hover:text-foreground hover:bg-muted/50 transition-colors`,onClick:()=>d(!0),children:[(0,J.jsx)(Ze,{className:`size-3.5`}),`Add worktree`]})]}),(0,J.jsx)($c,{open:u,onOpenChange:d,projectName:e,onCreated:g}),(0,J.jsx)(Ue,{open:!!f,onOpenChange:e=>!e&&p(null),children:(0,J.jsxs)(ze,{showCloseButton:!1,children:[(0,J.jsxs)(Ie,{children:[(0,J.jsx)(Be,{children:`Remove Worktree`}),(0,J.jsxs)(Ve,{children:[`Remove worktree at`,` `,(0,J.jsx)(`code`,{className:`px-1 py-0.5 rounded bg-muted text-xs font-mono`,children:f?.path}),f?.branch&&(0,J.jsxs)(J.Fragment,{children:[` (branch: `,(0,J.jsx)(`strong`,{children:f.branch}),`)`]}),`? The directory will be deleted.`]})]}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(F,{variant:`outline`,size:`sm`,onClick:()=>p(null),disabled:m,children:`Cancel`}),(0,J.jsx)(F,{variant:`outline`,size:`sm`,onClick:()=>_(!0),disabled:m,children:m?(0,J.jsx)(K,{className:`size-3 animate-spin`}):`Force Remove`}),(0,J.jsx)(F,{variant:`destructive`,size:`sm`,onClick:()=>_(!1),disabled:m,children:m?(0,J.jsx)(K,{className:`size-3 animate-spin`}):`Remove`})]})]})})]})}function tl({worktree:e,isActive:t,onRemove:n}){let r=e.branch||e.head.slice(0,7)||`detached`,i=e.path.replace(/^\/home\/[^/]+/,`~`);return(0,J.jsxs)(`div`,{className:V(`group flex items-center gap-2 px-3 py-1.5 hover:bg-muted/50 transition-colors`,t&&`bg-accent/10`),children:[(0,J.jsx)(kn,{className:`size-3.5 text-muted-foreground shrink-0`}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1 min-w-0`,children:[(0,J.jsx)(`span`,{className:`text-xs font-mono truncate`,title:e.branch,children:r}),t&&(0,J.jsx)(xe,{className:`size-3 text-success shrink-0`}),e.isMain&&(0,J.jsx)(`span`,{className:`text-[10px] bg-muted text-muted-foreground rounded px-1 shrink-0`,children:`main`}),e.locked&&(0,J.jsx)(`span`,{title:e.lockReason??`locked`,children:(0,J.jsx)(Yn,{className:`size-3 text-warning shrink-0`})}),e.prunable&&(0,J.jsx)(`span`,{title:`stale/prunable`,children:(0,J.jsx)(Jt,{className:`size-3 text-destructive shrink-0`})})]}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground truncate`,title:e.path,children:i})]}),!e.isMain&&(0,J.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-destructive opacity-0 group-hover:opacity-100 can-hover:opacity-0 can-hover:group-hover:opacity-100 transition-all active:scale-95 shrink-0`,onClick:n,title:`Remove worktree`,"aria-label":`Remove worktree`,children:(0,J.jsx)(Rr,{className:`size-3`})})]})}var nl={M:`text-warning`,A:`text-success`,D:`text-error`,R:`text-primary`,C:`text-accent-2`,"?":`text-text-3`};function rl(e){let t=[];for(let n of e){let e=n.path.split(`/`),r=t;for(let t=0;t<e.length;t++){let i=e[t],a=e.slice(0,t+1).join(`/`),o=t===e.length-1,s=r.find(e=>e.name===i);s||(s={name:i,fullPath:a,file:o?n:void 0,children:[]},r.push(s)),o&&(s.file=n),r=s.children}}return t}function il(e){let t=[];e.file&&t.push(e.file);for(let n of e.children)t.push(...il(n));return t}function al({metadata:e,tabId:t,onNavigate:n}){let r=e?.projectName,[i,a]=(0,q.useState)(null),[o,s]=(0,q.useState)(!0),[c,l]=(0,q.useState)(null),[u,d]=(0,q.useState)(``),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)(null),{openTab:g}=W(Tc(e=>({openTab:e.openTab}))),_=B(e=>e.gitStatusViewMode),v=B(e=>e.setGitStatusViewMode),y=U(e=>e.projects.find(e=>e.name===r)?.path),b=zc(e=>e.setCount),x=cs(e=>e.contributions?.commands?.some(e=>e.command===`git-graph.view`)??!1),S=(0,q.useCallback)(async()=>{if(r)try{s(!0);let e=await R.get(`${L(r)}/git/status`);a(e),b(r,e.staged.length+e.unstaged.length+e.untracked.length),zc.getState().setMeta(r,e),l(null)}catch(e){l(e instanceof Error?e.message:`Failed to fetch status`)}finally{s(!1)}},[r,b]);(0,q.useEffect)(()=>{S();let e=setInterval(S,5e3);return()=>clearInterval(e)},[S]);let C=async e=>{if(r){p(!0);try{await R.post(`${L(r)}/git/stage`,{files:e}),await S()}catch(e){l(e instanceof Error?e.message:`Stage failed`)}finally{p(!1)}}},w=async e=>{if(r){p(!0);try{await R.post(`${L(r)}/git/unstage`,{files:e}),await S()}catch(e){l(e instanceof Error?e.message:`Unstage failed`)}finally{p(!1)}}},T=async e=>{if(r){p(!0);try{await R.post(`${L(r)}/git/discard`,{files:e}),await S()}catch(e){l(e instanceof Error?e.message:`Discard failed`)}finally{p(!1)}}},E=async()=>{m&&(await T(m.files),h(null))},D=async()=>{if(!(!r||!u.trim()||!i?.staged.length)){p(!0);try{await R.post(`${L(r)}/git/commit`,{message:u.trim()}),d(``),await S()}catch(e){l(e instanceof Error?e.message:`Commit failed`)}finally{p(!1)}}},O=async()=>{if(r){p(!0);try{await R.post(`${L(r)}/git/push`,{}),await S()}catch(e){l(e instanceof Error?e.message:`Push failed`)}finally{p(!1)}}},k=async()=>{if(r){p(!0);try{await R.post(`${L(r)}/git/pull`,{}),await S()}catch(e){l(e instanceof Error?e.message:`Pull failed`)}finally{p(!1)}}},A=async()=>{if(r){p(!0);try{await R.post(`${L(r)}/git/commit`,{message:u.trim(),amend:!0}),d(``),await S()}catch(e){l(e instanceof Error?e.message:`Amend failed`)}finally{p(!1)}}},ee=async()=>{if(r){p(!0);try{await R.post(`${L(r)}/git/fetch`,{}),await S()}catch(e){l(e instanceof Error?e.message:`Fetch failed`)}finally{p(!1)}}},te=async()=>{await D(),await O()},ne=async()=>{await D(),await k(),await O()},j=e=>{g({type:`git-diff`,title:rt(e.path),closable:!0,metadata:{projectName:r,filePath:e.path},projectId:r??null}),n?.()},M=e=>{g({type:`editor`,title:rt(e.path),closable:!0,metadata:{projectName:r,filePath:e.path},projectId:r??null}),n?.()},re=(0,q.useMemo)(()=>[...i?.unstaged??[],...i?.untracked.map(e=>({path:e,status:`?`}))??[]],[i]);if(!r)return(0,J.jsx)(`div`,{className:`flex items-center justify-center h-full text-muted-foreground text-sm`,children:`No project selected.`});if(o&&!i)return(0,J.jsxs)(`div`,{className:`flex items-center justify-center h-full gap-2 text-muted-foreground`,children:[(0,J.jsx)(K,{className:`size-5 animate-spin`}),(0,J.jsx)(`span`,{className:`text-sm`,children:`Loading git status...`})]});if(c&&!i)return(0,J.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-2 text-destructive text-sm`,children:[(0,J.jsx)(`p`,{children:c}),(0,J.jsx)(F,{variant:`outline`,size:`sm`,onClick:S,children:`Retry`})]});let ie=i?.staged.length??0,ae=f||!u.trim()||!ie,oe=(0,J.jsxs)(`div`,{className:`p-2 flex flex-col gap-2`,children:[(0,J.jsx)(`textarea`,{className:`w-full h-10 px-3 py-2 text-base md:text-sm text-foreground bg-surface border border-border rounded-lg resize-none focus:outline-none focus:border-ring placeholder:text-muted-foreground`,placeholder:`Message (⌘↵)`,value:u,onChange:e=>d(e.target.value),onKeyDown:e=>{e.key===`Enter`&&(e.metaKey||e.ctrlKey)&&D()}}),(0,J.jsxs)(`div`,{className:`flex h-8`,children:[(0,J.jsx)(F,{size:`sm`,className:`flex-1 rounded-r-none`,disabled:ae,onClick:D,children:f?(0,J.jsx)(K,{className:`size-3 animate-spin`}):(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(xe,{className:`size-3.5`}),`Commit (`,ie,`)`]})}),(0,J.jsxs)(Zs,{children:[(0,J.jsx)(Qs,{asChild:!0,children:(0,J.jsx)(F,{size:`sm`,className:`w-8 px-0 rounded-l-none border-l border-white/20`,disabled:f,title:`More commit actions`,children:(0,J.jsx)(Ne,{className:`size-3.5`})})}),(0,J.jsxs)($s,{align:`end`,className:`w-56`,children:[(0,J.jsxs)(ec,{onClick:te,disabled:ae,children:[(0,J.jsx)(Nt,{className:`size-3.5`}),`Commit & Push`]}),(0,J.jsxs)(ec,{onClick:ne,disabled:ae,children:[(0,J.jsx)(br,{className:`size-3.5`}),`Commit & Sync`]}),(0,J.jsx)(nc,{}),(0,J.jsxs)(ec,{onClick:A,disabled:f,children:[(0,J.jsx)(An,{className:`size-3.5`}),`Amend Last Commit`]}),(0,J.jsx)(nc,{}),(0,J.jsxs)(ec,{onClick:O,disabled:f,children:[(0,J.jsx)(Nt,{className:`size-3.5`}),`Push`]}),(0,J.jsxs)(ec,{onClick:k,disabled:f,children:[(0,J.jsx)(jt,{className:`size-3.5`}),`Pull`]}),(0,J.jsxs)(ec,{onClick:ee,disabled:f,children:[(0,J.jsx)(br,{className:`size-3.5`}),`Fetch`]})]})]})]})]});return(0,J.jsxs)(`div`,{className:`flex flex-col h-full overflow-hidden`,children:[(0,J.jsxs)(Ec,{icon:kn,title:i?.current?`On: ${i.current}`:`Source Control`,children:[(0,J.jsx)(F,{variant:_===`flat`?`secondary`:`ghost`,size:`icon-xs`,onClick:()=>v(`flat`),title:`Flat view`,children:(0,J.jsx)(Jn,{className:`size-3.5`})}),(0,J.jsx)(F,{variant:_===`tree`?`secondary`:`ghost`,size:`icon-xs`,onClick:()=>v(`tree`),title:`Tree view`,children:(0,J.jsx)(Dn,{className:`size-3.5`})}),(0,J.jsx)(F,{variant:`ghost`,size:`icon-xs`,onClick:()=>{if(x){let e=[];y&&e.push(y),window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:`git-graph.view`,args:e}}))}else g({type:`git-log`,title:`Git Log`,projectId:r??null,closable:!0,metadata:{projectName:r}});n?.()},title:x?`Open Git Graph (⌘G)`:`View Git Log`,children:(0,J.jsx)(kn,{className:`size-3.5`})}),(0,J.jsx)(F,{variant:`ghost`,size:`icon-xs`,onClick:S,disabled:f,children:(0,J.jsx)(br,{className:o?`animate-spin`:``})})]}),c&&(0,J.jsx)(`div`,{className:`px-3 py-1.5 text-xs text-destructive bg-destructive/10 shrink-0`,children:c}),(0,J.jsx)(`div`,{className:`hidden md:block border-b border-border`,children:oe}),r&&(0,J.jsx)(el,{projectName:r,projectPath:y}),(0,J.jsx)(Dc,{className:`flex-1 overflow-hidden`,children:(0,J.jsxs)(`div`,{className:`p-1.5 space-y-2 overflow-hidden`,children:[(0,J.jsx)(sl,{title:`Staged Changes`,count:i?.staged.length??0,files:i?.staged??[],viewMode:_,actionIcon:(0,J.jsx)(nr,{className:`size-3`}),actionAllIcon:(0,J.jsx)(nr,{className:`size-3`}),actionTitle:`Unstage`,onAction:e=>w([e.path]),onActionAll:i?.staged.length?()=>w(i.staged.map(e=>e.path)):void 0,actionAllLabel:`Unstage All`,onFolderAction:e=>w(e.map(e=>e.path)),onClickFile:j,onOpenFile:M,disabled:f}),(0,J.jsx)(sl,{title:`Changes`,count:re.length,files:re,viewMode:_,actionIcon:(0,J.jsx)(Ze,{className:`size-3`}),actionAllIcon:(0,J.jsx)(Ze,{className:`size-3`}),actionTitle:`Stage`,onAction:e=>C([e.path]),onActionAll:re.length?()=>C(re.map(e=>e.path)):void 0,actionAllLabel:`Stage All`,onFolderAction:e=>C(e.map(e=>e.path)),onClickFile:j,onOpenFile:M,disabled:f,showRevert:!0,onRevert:e=>h({label:e.path,files:[e.path]}),onFolderRevert:(e,t)=>h({label:`${t}/ (${e.length} files)`,files:e.map(e=>e.path)})})]})}),(0,J.jsx)(`div`,{className:`md:hidden border-t border-border shrink-0`,children:oe}),(0,J.jsx)(Ue,{open:!!m,onOpenChange:e=>!e&&h(null),children:(0,J.jsxs)(ze,{showCloseButton:!1,children:[(0,J.jsxs)(Ie,{children:[(0,J.jsx)(Be,{children:`Discard Changes`}),(0,J.jsxs)(Ve,{children:[`Are you sure you want to discard all changes to`,` `,(0,J.jsx)(`code`,{className:`px-1 py-0.5 rounded bg-muted text-sm font-mono`,children:m?.label}),`? This action cannot be undone.`]})]}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(F,{variant:`outline`,onClick:()=>h(null),children:`Cancel`}),(0,J.jsx)(F,{variant:`destructive`,onClick:E,disabled:f,children:f?(0,J.jsx)(K,{className:`size-3 animate-spin`}):`Discard`})]})]})})]})}function ol({showRevert:e,onRevert:t,onAction:n,onOpenFile:r,actionIcon:i,actionTitle:a,disabled:o}){return(0,J.jsxs)(`div`,{className:`hidden md:flex absolute right-0 top-0 bottom-0 items-center gap-0.5 pl-6 pr-1 bg-gradient-to-l from-background from-70% to-transparent can-hover:opacity-0 can-hover:group-hover:opacity-100 transition-opacity`,children:[r&&(0,J.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-primary active:scale-95 transition-colors`,onClick:e=>{e.stopPropagation(),r()},disabled:o,title:`Open file`,children:(0,J.jsx)(yn,{className:`size-3`})}),e&&t&&(0,J.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-destructive active:scale-95 transition-colors`,onClick:e=>{e.stopPropagation(),t()},disabled:o,title:`Discard changes`,children:(0,J.jsx)(Br,{className:`size-3`})}),(0,J.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-accent-foreground active:scale-95 transition-colors`,onClick:e=>{e.stopPropagation(),n()},disabled:o,title:a,children:i})]})}function sl({title:e,count:t,files:n,viewMode:r,actionIcon:i,actionAllIcon:a,actionTitle:o,onAction:s,onActionAll:c,actionAllLabel:l,onFolderAction:u,onClickFile:d,onOpenFile:f,disabled:p,showRevert:m,onRevert:h,onFolderRevert:g}){return(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between mb-0.5`,children:[(0,J.jsxs)(`span`,{className:`text-xs font-medium text-muted-foreground uppercase`,children:[e,` (`,t,`)`]}),c&&t>0&&(0,J.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-accent-foreground active:scale-95 transition-colors`,onClick:c,disabled:p,title:l,children:a})]}),n.length===0?(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground px-1`,children:`No changes`}):r===`flat`?(0,J.jsx)(`div`,{className:`w-full overflow-hidden`,children:n.map(e=>(0,J.jsx)(ll,{file:e,actionIcon:i,actionTitle:o,onAction:s,onClickFile:d,onOpenFile:f,disabled:p,showRevert:m,onRevert:h},e.path))}):(0,J.jsx)(ul,{files:n,actionIcon:i,actionTitle:o,onAction:s,onFolderAction:u,onClickFile:d,onOpenFile:f,disabled:p,showRevert:m,onRevert:h,onFolderRevert:g})]})}function cl(e,t,n=400){let r=(0,q.useRef)(null),i=(0,q.useRef)(!1),a=(0,q.useRef)(!1),o=(0,q.useCallback)(()=>{r.current&&=(clearTimeout(r.current),null)},[]);return{onTouchStart:(0,q.useCallback)(t=>{i.current=!1,a.current=!1,r.current=setTimeout(()=>{a.current=!0,e()},n)},[e,n]),onTouchMove:(0,q.useCallback)(()=>{i.current=!0,o()},[o]),onTouchEnd:(0,q.useCallback)(e=>{o(),!i.current&&!a.current&&(e.preventDefault(),t())},[o,t])}}function ll({file:e,actionIcon:t,actionTitle:n,onAction:r,onClickFile:i,onOpenFile:a,disabled:o,showRevert:s,onRevert:c,displayName:l}){let[u,d]=(0,q.useState)(!1),f=cl((0,q.useCallback)(()=>d(!0),[]),(0,q.useCallback)(()=>i(e),[i,e])),p=(0,J.jsxs)(`div`,{className:`group relative flex items-center gap-1 hover:bg-muted/50 rounded pl-1 py-px w-full min-w-0`,children:[(0,J.jsx)(`span`,{className:`text-xs font-mono w-4 text-center shrink-0 ${nl[e.status]??``}`,children:e.status}),(0,J.jsx)(`button`,{type:`button`,className:`hidden md:block flex-1 text-left text-xs font-mono truncate hover:underline min-w-0`,onClick:()=>i(e),title:e.path,children:l??e.path}),(0,J.jsx)(`span`,{className:`md:hidden flex-1 text-left text-xs font-mono truncate min-w-0 select-none`,children:l??e.path}),(0,J.jsx)(ol,{showRevert:s,onRevert:c?()=>c(e):void 0,onOpenFile:a?()=>a(e):void 0,onAction:()=>r(e),actionIcon:t,actionTitle:n,disabled:o})]});return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`hidden md:block`,children:p}),(0,J.jsx)(`div`,{className:`md:hidden select-none`,...f,children:(0,J.jsxs)(Zs,{open:u,onOpenChange:d,children:[(0,J.jsx)(Qs,{asChild:!0,children:p}),(0,J.jsxs)($s,{align:`start`,className:`min-w-40`,children:[(0,J.jsx)(ec,{onClick:()=>i(e),children:`View Diff`}),a&&(0,J.jsx)(ec,{onClick:()=>a(e),children:`Open File`}),(0,J.jsx)(ec,{onClick:()=>r(e),disabled:o,children:n}),s&&c&&(0,J.jsx)(ec,{className:`text-destructive focus:text-destructive`,onClick:()=>c(e),disabled:o,children:`Discard Changes`})]})]})})]})}function ul({files:e,actionIcon:t,actionTitle:n,onAction:r,onFolderAction:i,onClickFile:a,onOpenFile:o,disabled:s,showRevert:c,onRevert:l,onFolderRevert:u}){let d=(0,q.useMemo)(()=>rl(e),[e]);return(0,J.jsx)(`div`,{children:d.map((e,f)=>(0,J.jsx)(dl,{node:e,depth:0,isLast:f===d.length-1,actionIcon:t,actionTitle:n,onAction:r,onFolderAction:i,onClickFile:a,onOpenFile:o,disabled:s,showRevert:c,onRevert:l,onFolderRevert:u},e.fullPath))})}function dl({node:e,depth:t,isLast:n,actionIcon:r,actionTitle:i,onAction:a,onFolderAction:o,onClickFile:s,onOpenFile:c,disabled:l,showRevert:u,onRevert:d,onFolderRevert:f}){let[p,m]=(0,q.useState)(!0),h=e.children.length>0&&!e.file,g=t*12-6,_=`absolute border-dashed border-border`;if(e.file)return(0,J.jsxs)(`div`,{className:`relative`,style:{paddingLeft:t*12},children:[t>0&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`${_} border-l`,style:{left:g,top:0,bottom:n?`50%`:0}}),(0,J.jsx)(`div`,{className:`${_} border-t`,style:{left:g,top:`50%`,width:6}})]}),(0,J.jsx)(ll,{file:e.file,displayName:e.name,actionIcon:r,actionTitle:i,onAction:a,onClickFile:s,onOpenFile:c,disabled:l,showRevert:u,onRevert:d})]});if(h){let h=il(e);return(0,J.jsxs)(`div`,{className:`relative`,children:[t>0&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`${_} border-l`,style:{left:g,top:0,...n?{height:13}:{bottom:0}}}),(0,J.jsx)(`div`,{className:`${_} border-t`,style:{left:g,top:13,width:8}})]}),(()=>{let n=(0,J.jsxs)(`div`,{className:`group relative flex items-center hover:bg-muted/50 rounded py-0.5`,style:{paddingLeft:t*12+2},children:[(0,J.jsxs)(`button`,{type:`button`,className:`flex items-center gap-1 flex-1 min-w-0 text-xs font-mono text-muted-foreground`,onClick:()=>m(!p),children:[p?(0,J.jsx)(Ne,{className:`size-3.5 shrink-0`}):(0,J.jsx)(Fe,{className:`size-3.5 shrink-0`}),(0,J.jsx)(`span`,{className:`truncate font-semibold`,children:e.name}),(0,J.jsxs)(`span`,{className:`text-[10px] opacity-60 shrink-0`,children:[`(`,h.length,`)`]})]}),(0,J.jsx)(ol,{showRevert:u,onRevert:f?()=>f(h,e.fullPath):void 0,onAction:()=>o?.(h),actionIcon:r,actionTitle:`${i} ${e.name}/`,disabled:l})]});return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`hidden md:block`,children:n}),(0,J.jsx)(`div`,{className:`md:hidden`,children:(0,J.jsxs)(Zs,{children:[(0,J.jsx)(Qs,{asChild:!0,children:n}),(0,J.jsxs)($s,{align:`start`,className:`min-w-40`,children:[(0,J.jsxs)(ec,{onClick:()=>o?.(h),disabled:l,children:[i,` `,e.name,`/`]}),f&&(0,J.jsx)(ec,{className:`text-destructive focus:text-destructive`,onClick:()=>f(h,e.fullPath),disabled:l,children:`Discard Changes`})]})]})})]})})(),p&&(0,J.jsx)(`div`,{children:e.children.map((n,p)=>(0,J.jsx)(dl,{node:n,depth:t+1,isLast:p===e.children.length-1,actionIcon:r,actionTitle:i,onAction:a,onFolderAction:o,onClickFile:s,onOpenFile:c,disabled:l,showRevert:u,onRevert:d,onFolderRevert:f},n.fullPath))})]})}return null}var fl=q.forwardRef(({className:e,...t},n)=>(0,J.jsx)(T,{className:V(`peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input`,e),...t,ref:n,children:(0,J.jsx)(E,{className:V(`pointer-events-none block h-4 w-4 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0`)})}));fl.displayName=T.displayName;function pl({className:e,orientation:t=`horizontal`,decorative:n=!0,...r}){return(0,J.jsx)(ie,{"data-slot":`separator`,decorative:n,orientation:t,className:V(`shrink-0 bg-border data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px`,e),...r})}function ml({...e}){return(0,J.jsx)(C,{"data-slot":`select`,...e})}function hl({...e}){return(0,J.jsx)(le,{"data-slot":`select-value`,...e})}function gl({className:e,size:t=`default`,children:n,...r}){return(0,J.jsxs)(s,{"data-slot":`select-trigger`,"data-size":t,className:V(`flex w-fit items-center justify-between gap-2 rounded-md border border-input bg-transparent px-3 py-2 text-sm whitespace-nowrap shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 data-[placeholder]:text-muted-foreground data-[size=default]:h-9 data-[size=sm]:h-8 *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-2 dark:bg-input/30 dark:hover:bg-input/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground`,e),...r,children:[n,(0,J.jsx)(O,{asChild:!0,children:(0,J.jsx)(Ne,{className:`size-4 opacity-50`})})]})}function _l({className:e,children:t,position:n=`item-aligned`,align:r=`center`,...i}){return(0,J.jsx)(de,{children:(0,J.jsxs)(ne,{"data-slot":`select-content`,className:V(`relative z-50 max-h-(--radix-select-content-available-height) min-w-[8rem] origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border bg-popover text-popover-foreground shadow-md data-[side=bottom]:slide-in-from-top-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-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95`,n===`popper`&&`data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1`,e),position:n,align:r,...i,children:[(0,J.jsx)(yl,{}),(0,J.jsx)(y,{className:V(`p-1`,n===`popper`&&`h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)] scroll-my-1`),children:t}),(0,J.jsx)(bl,{})]})})}function vl({className:e,children:t,...n}){return(0,J.jsxs)(D,{"data-slot":`select-item`,className:V(`relative flex w-full cursor-default items-center gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2`,e),...n,children:[(0,J.jsx)(`span`,{"data-slot":`select-item-indicator`,className:`absolute right-2 flex size-3.5 items-center justify-center`,children:(0,J.jsx)(x,{children:(0,J.jsx)(xe,{className:`size-4`})})}),(0,J.jsx)(N,{children:t})]})}function yl({className:e,...t}){return(0,J.jsx)(v,{"data-slot":`select-scroll-up-button`,className:V(`flex cursor-default items-center justify-center py-1`,e),...t,children:(0,J.jsx)(Wt,{className:`size-4`})})}function bl({className:e,...t}){return(0,J.jsx)(ue,{"data-slot":`select-scroll-down-button`,className:V(`flex cursor-default items-center justify-center py-1`,e),...t,children:(0,J.jsx)(Ne,{className:`size-4`})})}var xl={claude:`C`,cursor:`▶`,codex:`◆`,gemini:`G`};function Sl({value:e,onChange:t,projectName:n}){let[r,i]=(0,q.useState)([]),[a,o]=(0,q.useState)(!1),s=(0,q.useRef)(null),c=(0,q.useRef)(0);(0,q.useEffect)(()=>{n&&R.get(`${L(n)}/chat/providers`).then(i).catch(()=>{})},[n]),(0,q.useEffect)(()=>{if(!a)return;let e=e=>{s.current&&!s.current.contains(e.target)&&o(!1)};return document.addEventListener(`mousedown`,e),()=>document.removeEventListener(`mousedown`,e)},[a]),(0,q.useEffect)(()=>{a&&(c.current=Math.max(0,r.findIndex(t=>t.id===e)))},[a,e,r]);let l=(0,q.useCallback)(e=>{if(e.key===`Escape`){o(!1);return}if(e.key===`ArrowDown`||e.key===`ArrowUp`){e.preventDefault();let t=e.key===`ArrowDown`?1:-1;c.current=(c.current+t+r.length)%r.length,(s.current?.querySelector(`[data-idx="${c.current}"]`))?.focus()}if(e.key===`Enter`){e.preventDefault();let n=r[c.current];n&&(t(n.id),o(!1))}},[t,r]);if(r.length<=1)return null;let u=r.find(t=>t.id===e),d=xl[e]||`?`;return(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsxs)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),o(e=>!e)},className:`inline-flex items-center gap-1.5 px-[9px] py-1 rounded-full text-[11.5px] text-text-2 bg-panel-2 border border-border-soft hover:text-text-primary hover:border-border transition-colors`,"aria-label":`AI Provider: ${u?.name??e}`,children:[(0,J.jsx)(`span`,{className:`inline-flex h-3.5 w-3.5 items-center justify-center rounded text-[9px] font-bold bg-surface-elevated shrink-0`,children:d}),(0,J.jsx)(`span`,{className:`max-w-[80px] truncate capitalize`,children:u?.name??e})]}),a&&(0,J.jsxs)(`div`,{ref:s,role:`listbox`,"aria-label":`AI Providers`,onKeyDown:l,onMouseDown:e=>e.stopPropagation(),onClick:e=>e.stopPropagation(),className:`absolute bottom-full left-0 mb-1 z-50 w-56 rounded-lg border border-border popover-solid shadow-[var(--shadow-panel)]`,children:[(0,J.jsx)(`div`,{className:`px-3 py-2 border-b border-border`,children:(0,J.jsx)(`span`,{className:`text-xs font-medium text-text-secondary`,children:`Provider`})}),(0,J.jsx)(`div`,{className:`py-1`,children:r.map((n,r)=>{let i=xl[n.id]||`?`,a=n.id===e;return(0,J.jsxs)(`button`,{"data-idx":r,role:`option`,"aria-selected":a,tabIndex:0,onClick:()=>{t(n.id),o(!1)},className:`w-full flex items-center gap-3 px-3 py-2 text-left transition-colors hover:bg-surface-elevated focus:bg-surface-elevated focus:outline-none ${a?`bg-surface-elevated`:``}`,children:[(0,J.jsx)(`span`,{className:`inline-flex h-5 w-5 items-center justify-center rounded text-[11px] font-bold bg-surface-elevated text-text-subtle shrink-0`,children:i}),(0,J.jsx)(`span`,{className:`flex-1 text-sm font-medium text-text-primary capitalize`,children:n.name}),a&&(0,J.jsx)(xe,{className:`size-4 shrink-0 text-primary`})]},n.id)})})]})]})}function Cl({providerId:e}){return(0,J.jsx)(`span`,{className:`inline-flex h-4 w-4 items-center justify-center rounded text-[10px] font-bold bg-surface-elevated text-text-subtle shrink-0`,title:e,children:xl[e]||`?`})}var wl=[{value:`round-robin`,label:`Round-robin`},{value:`fill-first`,label:`Fill-first`},{value:`lowest-usage`,label:`Lowest usage`}];function Tl(e){return e==null?`—`:`${Math.round(e*100)}%`}function El(){let[e,t]=(0,q.useState)([]),[n,r]=(0,q.useState)(`round-robin`),[i,a]=(0,q.useState)({}),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(``),[u,d]=(0,q.useState)(``),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)(null),[g,_]=(0,q.useState)(null),[v,y]=(0,q.useState)(!1),[b,x]=(0,q.useState)(``),[S,C]=(0,q.useState)(!1),[w,T]=(0,q.useState)(!1),[E,D]=(0,q.useState)(null),O=(0,q.useRef)(null),k=(0,q.useCallback)(async()=>{s(!0);try{let e=await R.get(`/api/codex-accounts`);t(e.accounts),r(e.strategy),R.get(`/api/codex-accounts/usage`).then(a).catch(()=>{})}finally{s(!1)}},[]);(0,q.useEffect)(()=>{k()},[k]);let A=async()=>{if(c.trim()){p(!0),h(null);try{await R.post(`/api/codex-accounts/api-key`,{apiKey:c.trim(),label:u.trim()||void 0}),l(``),d(``),await k()}catch(e){h(e.message)}finally{p(!1)}}},ee=async()=>{h(null);try{let e=await R.post(`/api/codex-accounts/device-login`,{label:u.trim()||void 0});_(e),y(!0),R.post(`/api/codex-accounts/device-login/${e.id}/await`).then(async()=>{_(null),y(!1),d(``),await k()}).catch(e=>{h(e.message),_(null),y(!1)})}catch(e){h(e.message)}},te=async e=>{await R.del(`/api/codex-accounts/${e}`),await k()},ne=async e=>{r(e);try{await R.put(`/api/codex-accounts/strategy`,{strategy:e})}catch{}},j=async()=>{if(!b.trim()){h(`Set a backup password first.`);return}C(!0),h(null),D(null);try{let e={"Content-Type":`application/json`},t=tt();t&&(e.Authorization=`Bearer ${t}`);let n=await fetch(`/api/codex-accounts/export`,{method:`POST`,headers:e,body:JSON.stringify({password:b})});if(!n.ok){let e=await n.json().catch(()=>({}));throw Error(e.error??`Export failed: ${n.status}`)}let r=await n.text(),i=new Blob([r],{type:`application/json`}),a=document.createElement(`a`);a.href=URL.createObjectURL(i),a.download=`ppm-codex-accounts-backup.json`,a.click(),URL.revokeObjectURL(a.href),D(`Backup downloaded.`)}catch(e){h(e.message)}finally{C(!1)}},M=async e=>{if(!b.trim()){h(`Enter the backup password first.`);return}T(!0),h(null),D(null);try{let t=await e.text(),n=await R.post(`/api/codex-accounts/import`,{data:t,password:b});D(`Imported ${n.imported}${n.skipped?`, skipped ${n.skipped}`:``}.`),await k()}catch(e){h(e.message)}finally{T(!1),O.current&&(O.current.value=``)}};return(0,J.jsxs)(`div`,{className:`space-y-4`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`h3`,{className:`text-sm font-semibold text-text-primary`,children:`Codex Accounts`}),(0,J.jsx)(`p`,{className:`text-xs text-text-subtle mt-0.5`,children:`Each account uses its own login (CODEX_HOME). One is selected per chat by the strategy below.`})]}),m&&(0,J.jsx)(`div`,{className:`text-xs text-error bg-error/10 border border-error/30 rounded-md p-2`,children:m}),E&&(0,J.jsx)(`div`,{className:`text-xs text-success bg-success/10 border border-success/30 rounded-md p-2`,children:E}),(0,J.jsxs)(`div`,{className:`flex items-center gap-2 flex-wrap`,children:[(0,J.jsx)(`span`,{className:`text-xs text-text-secondary`,children:`Selection strategy:`}),wl.map(e=>(0,J.jsx)(`button`,{type:`button`,onClick:()=>ne(e.value),className:`text-xs px-3 min-h-[36px] rounded-md border transition-colors ${n===e.value?`border-primary bg-primary/15 text-text-primary`:`border-border bg-surface/50 text-text-secondary hover:bg-surface`}`,children:e.label},e.value))]}),(0,J.jsxs)(`div`,{className:`space-y-2`,children:[o&&e.length===0&&(0,J.jsxs)(`div`,{className:`text-xs text-text-subtle flex items-center gap-2`,children:[(0,J.jsx)(K,{className:`size-3 animate-spin`}),` Loading…`]}),!o&&e.length===0&&(0,J.jsxs)(`div`,{className:`text-xs text-text-subtle`,children:[`No codex accounts yet — add one below. (With none, chats use your default `,(0,J.jsx)(`code`,{children:`~/.codex`}),` login.)`]}),e.map(e=>{let t=i[e.id]??{};return(0,J.jsxs)(`div`,{className:`flex items-center gap-3 border border-border rounded-md bg-surface/40 p-2.5`,children:[(0,J.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(`span`,{className:`text-sm text-text-primary truncate`,children:e.label}),(0,J.jsx)(`span`,{className:`text-[10px] uppercase tracking-wide text-text-subtle border border-border rounded px-1`,children:e.type}),e.planType&&(0,J.jsx)(`span`,{className:`text-[10px] text-text-subtle`,children:e.planType})]}),(0,J.jsxs)(`div`,{className:`text-[11px] text-text-subtle mt-0.5`,children:[`5h `,Tl(t.fiveHour),` · weekly `,Tl(t.sevenDay)]})]}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>te(e.id),title:`Remove account`,className:`p-2 min-h-[44px] min-w-[44px] flex items-center justify-center text-text-subtle hover:text-error transition-colors`,children:(0,J.jsx)(Rr,{className:`size-4`})})]},e.id)})]}),(0,J.jsxs)(`div`,{className:`border border-border rounded-md p-3 space-y-2`,children:[(0,J.jsx)(`input`,{value:u,onChange:e=>d(e.target.value),placeholder:`Label (optional)`,className:`w-full text-sm bg-surface border border-border rounded-md px-3 min-h-[40px] text-text-primary placeholder:text-text-subtle`}),(0,J.jsxs)(`div`,{className:`flex gap-2 flex-col sm:flex-row`,children:[(0,J.jsx)(`input`,{value:c,onChange:e=>l(e.target.value),type:`password`,placeholder:`OpenAI API key (sk-…)`,className:`flex-1 text-sm bg-surface border border-border rounded-md px-3 min-h-[44px] text-text-primary placeholder:text-text-subtle font-mono`}),(0,J.jsxs)(`button`,{type:`button`,onClick:A,disabled:f||!c.trim(),className:`inline-flex items-center justify-center gap-2 text-sm px-4 min-h-[44px] rounded-md border border-border bg-surface/50 hover:bg-surface text-text-primary disabled:opacity-60`,children:[f?(0,J.jsx)(K,{className:`size-4 animate-spin`}):(0,J.jsx)(Vn,{className:`size-4`}),` Add key`]})]}),(0,J.jsxs)(`button`,{type:`button`,onClick:ee,disabled:v,className:`inline-flex items-center justify-center gap-2 text-sm px-4 min-h-[44px] w-full sm:w-auto rounded-md border border-border bg-surface/50 hover:bg-surface text-text-primary disabled:opacity-60`,children:[v?(0,J.jsx)(K,{className:`size-4 animate-spin`}):(0,J.jsx)(rr,{className:`size-4`}),` Sign in with ChatGPT (device code)`]})]}),(0,J.jsxs)(`div`,{className:`border border-border rounded-md p-3 space-y-2`,children:[(0,J.jsx)(`p`,{className:`text-xs text-text-secondary`,children:`Backup & transfer — password-encrypted file with each account's login.`}),(0,J.jsx)(`input`,{value:b,onChange:e=>x(e.target.value),type:`password`,placeholder:`Backup password`,className:`w-full text-sm bg-surface border border-border rounded-md px-3 min-h-[44px] text-text-primary placeholder:text-text-subtle`}),(0,J.jsxs)(`div`,{className:`flex gap-2 flex-col sm:flex-row`,children:[(0,J.jsxs)(`button`,{type:`button`,onClick:j,disabled:S||!b.trim(),className:`flex-1 inline-flex items-center justify-center gap-2 text-sm px-4 min-h-[44px] rounded-md border border-border bg-surface/50 hover:bg-surface text-text-primary disabled:opacity-60`,children:[S?(0,J.jsx)(K,{className:`size-4 animate-spin`}):(0,J.jsx)(Xe,{className:`size-4`}),` Export`]}),(0,J.jsxs)(`button`,{type:`button`,onClick:()=>O.current?.click(),disabled:w||!b.trim(),className:`flex-1 inline-flex items-center justify-center gap-2 text-sm px-4 min-h-[44px] rounded-md border border-border bg-surface/50 hover:bg-surface text-text-primary disabled:opacity-60`,children:[w?(0,J.jsx)(K,{className:`size-4 animate-spin`}):(0,J.jsx)(Hr,{className:`size-4`}),` Import`]}),(0,J.jsx)(`input`,{ref:O,type:`file`,accept:`application/json,.json`,className:`hidden`,onChange:e=>{let t=e.target.files?.[0];t&&M(t)}})]})]}),g&&(0,J.jsxs)(`div`,{className:`border border-primary/40 bg-primary/10 rounded-md p-3 space-y-2 text-sm`,children:[(0,J.jsx)(`p`,{className:`text-text-primary`,children:`Enter this code to authorize:`}),(0,J.jsx)(`div`,{className:`font-mono text-lg tracking-widest text-text-primary`,children:g.userCode}),(0,J.jsxs)(`a`,{href:g.verificationUrl,target:`_blank`,rel:`noreferrer`,className:`inline-flex items-center gap-1 text-primary hover:underline text-xs`,children:[(0,J.jsx)(un,{className:`size-3`}),` `,g.verificationUrl]}),(0,J.jsxs)(`p`,{className:`text-xs text-text-subtle flex items-center gap-2`,children:[(0,J.jsx)(K,{className:`size-3 animate-spin`}),` Waiting for authorization…`]})]})]})}var Dl=[{value:`low`,label:`Low`},{value:`medium`,label:`Medium`},{value:`high`,label:`High`},{value:`xhigh`,label:`Extra`},{value:`max`,label:`Max`}],Ol=[{value:`bypassPermissions`,label:`Bypass permissions (default)`},{value:`default`,label:`Ask before edits`},{value:`acceptEdits`,label:`Edit automatically`},{value:`plan`,label:`Plan mode`}],kl={claude:`Claude`,cursor:`Cursor`,codex:`Codex`,gemini:`Gemini`};function Al({compact:e}={}){let[t,n]=(0,q.useState)(null),[r,i]=(0,q.useState)(``),[a,o]=(0,q.useState)([]),[s,c]=(0,q.useState)(!1),[l,u]=(0,q.useState)(!1),[d,f]=(0,q.useState)(null),[p,m]=(0,q.useState)(0);(0,q.useEffect)(()=>{ft().then(e=>{n(e),i(e.default_provider??`claude`)}).catch(e=>f(e.message))},[]),(0,q.useEffect)(()=>{r&&(c(!0),R.get(`/api/settings/ai/providers/${r}/models`).then(o).catch(()=>o([])).finally(()=>c(!1)))},[r]);let h=t?Object.keys(t.providers).filter(e=>e!==`mock`).map(e=>({id:e,name:kl[e]??e})):[],g=t?.providers[r],_=g?.type===`agent-sdk`||!g?.type&&r===`claude`,v=async(e,i)=>{if(t){u(!0),f(null);try{n(await gt({providers:{[r]:{[e]:i}}})),m(e=>e+1)}catch(e){f(e.message)}finally{u(!1)}}},y=e?`text-[11px]`:`text-sm`,b=e?`text-xs`:`text-sm`,x=e?`space-y-2`:`space-y-4`,S=e?`space-y-1.5`:`space-y-3`,C=e?`space-y-1`:`space-y-1.5`;if(!t)return(0,J.jsxs)(`div`,{className:S,children:[(0,J.jsx)(`h3`,{className:`${b} font-medium text-text-secondary`,children:`AI Settings`}),(0,J.jsx)(`p`,{className:`${y} text-text-subtle`,children:d?`Error: ${d}`:`Loading...`})]});let w=_?a:[{value:`__default__`,label:`Auto (default)`},...a];return(0,J.jsxs)(`div`,{className:x,children:[(0,J.jsx)(`h3`,{className:`${b} font-medium text-text-secondary`,children:`AI Settings`}),h.length>1&&(0,J.jsx)(`div`,{className:`flex gap-0.5 border-b border-border/50 -mx-1 px-1`,children:h.map(e=>(0,J.jsxs)(`button`,{onClick:()=>i(e.id),className:`flex items-center gap-1 px-2 py-1 text-[11px] rounded-t transition-colors ${r===e.id?`text-primary border-b-2 border-primary font-medium`:`text-text-subtle hover:text-text-secondary`}`,children:[(0,J.jsx)(Cl,{providerId:e.id}),(0,J.jsx)(`span`,{className:`capitalize`,children:e.name})]},e.id))}),(0,J.jsxs)(`div`,{className:S,children:[r===`codex`&&(0,J.jsx)(El,{}),a.length>0&&(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-model`,className:e?y:void 0,children:`Model`}),(0,J.jsxs)(ml,{value:_?g?.model??a[0]?.value:g?.model||`__default__`,onValueChange:e=>v(`model`,e===`__default__`?void 0:e),disabled:s,children:[(0,J.jsx)(gl,{id:`ai-model`,className:`w-full ${e?`h-7 text-[11px]`:``}`,children:(0,J.jsx)(hl,{placeholder:s?`Loading models...`:`Select model`})}),(0,J.jsx)(_l,{className:`max-h-[300px]`,children:w.map(e=>(0,J.jsx)(vl,{value:e.value,children:e.label},e.value))})]})]}),_&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-base-url`,className:e?y:void 0,children:`Base URL`}),(0,J.jsx)(Z,{id:`ai-base-url`,type:`url`,defaultValue:g?.base_url??``,placeholder:`https://api.anthropic.com (default)`,className:e?`h-7 text-[11px]`:void 0,onBlur:e=>{v(`base_url`,e.target.value.trim()||void 0)}},`baseurl-${r}-${p}`)]}),(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-api-key`,className:e?y:void 0,children:`API Key / Token`}),(0,J.jsx)(Z,{id:`ai-api-key`,type:`password`,defaultValue:g?.api_key??``,placeholder:`sk-ant-... (optional, overrides accounts)`,className:e?`h-7 text-[11px] font-mono`:`font-mono`,onBlur:e=>{let t=e.target.value.trim();t.startsWith(`••••`)||v(`api_key`,t||void 0)}},`apikey-${r}-${p}`),(0,J.jsx)(`p`,{className:`${e?`text-[9px]`:`text-[11px]`} text-muted-foreground`,children:`Direct API key or OAuth token. Leave empty to use connected accounts.`})]}),(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-effort`,className:e?y:void 0,children:`Effort`}),(0,J.jsxs)(ml,{value:g?.effort??`high`,onValueChange:e=>v(`effort`,e),children:[(0,J.jsx)(gl,{id:`ai-effort`,className:`w-full ${e?`h-7 text-[11px]`:``}`,children:(0,J.jsx)(hl,{})}),(0,J.jsx)(_l,{children:Dl.map(e=>(0,J.jsx)(vl,{value:e.value,children:e.label},e.value))})]})]}),(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-max-turns`,className:e?y:void 0,children:`Max Turns (1-500)`}),(0,J.jsx)(Z,{id:`ai-max-turns`,type:`number`,min:1,max:500,defaultValue:g?.max_turns??100,className:e?`h-7 text-[11px]`:void 0,onBlur:e=>{let t=parseInt(e.target.value);isNaN(t)||v(`max_turns`,t)}},`turns-${r}-${p}`)]}),(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-budget`,className:e?y:void 0,children:`Max Budget (USD)`}),(0,J.jsx)(Z,{id:`ai-budget`,type:`number`,step:.1,min:.01,max:50,defaultValue:g?.max_budget_usd??``,placeholder:`No limit`,className:e?`h-7 text-[11px]`:void 0,onBlur:e=>{let t=parseFloat(e.target.value);v(`max_budget_usd`,isNaN(t)?void 0:t)}},`budget-${r}-${p}`)]}),(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-thinking`,className:e?y:void 0,children:`Thinking Budget (tokens)`}),(0,J.jsx)(Z,{id:`ai-thinking`,type:`number`,min:0,defaultValue:g?.thinking_budget_tokens??``,placeholder:`Adaptive (model decides)`,className:e?`h-7 text-[11px]`:void 0,onBlur:e=>{let t=parseInt(e.target.value);v(`thinking_budget_tokens`,isNaN(t)?void 0:t)}},`thinking-${r}-${p}`)]}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between gap-2`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(Qc,{htmlFor:`ai-agent-teams`,className:e?y:void 0,children:`Agent Teams`}),(0,J.jsx)(`p`,{className:`${e?`text-[9px]`:`text-[11px]`} text-muted-foreground`,children:`Experimental. Enables multi-agent collaboration with shared tasks and messaging. Uses ~7x more tokens.`})]}),(0,J.jsx)(fl,{id:`ai-agent-teams`,checked:g?.agent_teams??!1,onCheckedChange:e=>v(`agent_teams`,e)})]}),g?.agent_teams&&(0,J.jsx)(jl,{compact:e}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between gap-2`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(Qc,{htmlFor:`ai-context-1m`,className:e?y:void 0,children:`1M Context Window`}),(0,J.jsx)(`p`,{className:`${e?`text-[9px]`:`text-[11px]`} text-muted-foreground`,children:`Requires an entitled account (Max/Team/Enterprise) and an Opus 4 / Sonnet 4 model. Other accounts will error.`})]}),(0,J.jsx)(fl,{id:`ai-context-1m`,checked:g?.context_1m??!1,onCheckedChange:e=>v(`context_1m`,e)})]}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between gap-2`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(Qc,{htmlFor:`ai-inherit-mcp`,className:e?y:void 0,children:`Inherit Claude Code MCP`}),(0,J.jsx)(`p`,{className:`${e?`text-[9px]`:`text-[11px]`} text-muted-foreground`,children:`Auto-load MCP servers from Claude Code's ~/.claude.json (global + per-project). Your own MCP servers override inherited ones.`})]}),(0,J.jsx)(fl,{id:`ai-inherit-mcp`,checked:g?.inherit_claude_mcp??!0,onCheckedChange:e=>v(`inherit_claude_mcp`,e)})]})]}),(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-permission-mode`,className:e?y:void 0,children:`Default Permission Mode`}),(0,J.jsxs)(ml,{value:g?.permission_mode??`bypassPermissions`,onValueChange:e=>v(`permission_mode`,e),children:[(0,J.jsx)(gl,{id:`ai-permission-mode`,className:`w-full ${e?`h-7 text-[11px]`:``}`,children:(0,J.jsx)(hl,{})}),(0,J.jsx)(_l,{children:Ol.map(e=>(0,J.jsx)(vl,{value:e.value,children:e.label},e.value))})]})]}),(0,J.jsxs)(`div`,{className:C,children:[(0,J.jsx)(Qc,{htmlFor:`ai-system-prompt`,className:e?y:void 0,children:`Additional Instructions`}),(0,J.jsx)(`textarea`,{id:`ai-system-prompt`,rows:e?3:4,defaultValue:g?.system_prompt??``,placeholder:`Enter additional instructions for ${r}...`,className:`w-full rounded-md border border-input bg-background px-3 py-2 ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 ${e?`text-[11px]`:`text-sm`}`,onBlur:e=>{v(`system_prompt`,e.target.value.trim()||void 0)}},`sysprompt-${r}-${p}`)]})]}),l&&(0,J.jsx)(`p`,{className:`text-xs text-text-subtle`,children:`Saving...`}),d&&(0,J.jsx)(`p`,{className:`text-xs text-error`,children:d})]})}function jl({compact:e}){let[t,n]=(0,q.useState)([]),[r,i]=(0,q.useState)(!1),[a,o]=(0,q.useState)(null),s=(0,q.useCallback)(async()=>{i(!0);try{n(await R.get(`/api/teams`)??[])}catch{}i(!1)},[]);(0,q.useEffect)(()=>{s()},[s]);let c=async e=>{try{await R.del(`/api/teams/${encodeURIComponent(e)}`),n(t=>t.filter(t=>t.name!==e)),o(null)}catch{}};return t.length===0&&!r?null:(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsxs)(Qc,{className:e?`text-[11px]`:void 0,children:[`Teams (`,t.length,`)`]}),(0,J.jsx)(`button`,{onClick:s,className:`text-text-subtle hover:text-foreground p-1`,"aria-label":`Refresh teams`,children:(0,J.jsx)(br,{className:`size-3 ${r?`animate-spin`:``}`})})]}),t.map(e=>(0,J.jsxs)(`div`,{className:`flex items-center justify-between p-2 rounded bg-surface-elevated text-xs`,children:[(0,J.jsxs)(`div`,{className:`min-w-0`,children:[(0,J.jsx)(`div`,{className:`font-medium truncate`,children:e.name}),e.description&&(0,J.jsx)(`div`,{className:`text-text-subtle truncate`,children:e.description}),(0,J.jsxs)(`div`,{className:`text-text-subtle`,children:[e.members?.length??e.memberCount??0,` members`,e.createdAt?` · ${new Date(e.createdAt).toLocaleDateString()}`:``]})]}),a===e.name?(0,J.jsxs)(`div`,{className:`flex gap-1 shrink-0 ml-2`,children:[(0,J.jsx)(`button`,{onClick:()=>c(e.name),className:`px-2 py-1 bg-error text-white rounded text-[10px]`,children:`Delete`}),(0,J.jsx)(`button`,{onClick:()=>o(null),className:`px-2 py-1 bg-panel-2 text-text rounded text-[10px]`,children:`Cancel`})]}):(0,J.jsx)(`button`,{onClick:()=>o(e.name),className:`shrink-0 text-text-subtle hover:text-error p-1 ml-2`,"aria-label":`Delete team ${e.name}`,children:(0,J.jsx)(Rr,{className:`size-3.5`})})]},e.name))]})}var Ml=[{key:`general`,label:`General`},{key:`tabs`,label:`Tabs`},{key:`projects`,label:`Projects`}],Nl=[`Ctrl+T`,`Ctrl+W`,`Ctrl+N`,`Ctrl+Tab`,`Ctrl+L`,`Ctrl+H`,`Ctrl+J`,`F5`,`Ctrl+R`,`Ctrl+Shift+I`,`Ctrl+Shift+J`];function Pl({actionId:e,combo:t,locked:n}){let[r,i]=(0,q.useState)(!1),a=ss(e=>e.setBinding),o=(0,q.useRef)(null),s=(0,q.useCallback)(t=>{if(t.preventDefault(),t.stopPropagation(),t.key===`Escape`){i(!1);return}let n=is(t);n&&(a(e,n),i(!1))},[e,a]);return(0,q.useEffect)(()=>{if(r)return document.addEventListener(`keydown`,s,!0),()=>document.removeEventListener(`keydown`,s,!0)},[r,s]),(0,q.useEffect)(()=>{if(!r)return;let e=e=>{o.current&&!o.current.contains(e.target)&&i(!1)};return document.addEventListener(`mousedown`,e),()=>document.removeEventListener(`mousedown`,e)},[r]),n?(0,J.jsxs)(`span`,{className:`inline-flex items-center gap-1 rounded border border-border bg-muted px-2 py-0.5 text-[11px] font-mono text-muted-foreground`,children:[(0,J.jsx)(Yn,{className:`size-2.5`}),rs(t)]}):r?(0,J.jsx)(`button`,{ref:o,className:`inline-flex items-center rounded border-2 border-primary bg-primary/10 px-2 py-0.5 text-[11px] font-mono text-primary animate-pulse`,children:`Press keys...`}):(0,J.jsx)(`button`,{ref:o,onClick:()=>i(!0),className:`inline-flex items-center rounded border border-border bg-surface px-2 py-0.5 text-[11px] font-mono text-foreground hover:border-primary hover:bg-primary/5 transition-colors cursor-pointer`,title:`Click to change shortcut`,children:rs(t)})}function Fl(){let{getBinding:e,resetBinding:t,resetAll:n,overrides:r}=ss(),i=cs(e=>e.contributions),a=i?.keybindings??[],o=i?.commands??[];return(0,J.jsxs)(`div`,{className:`space-y-3`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-text-secondary`,children:`Keyboard Shortcuts`}),Object.keys(r).length>0&&(0,J.jsxs)(F,{variant:`ghost`,size:`sm`,className:`h-6 text-[10px] text-muted-foreground`,onClick:n,children:[(0,J.jsx)(Cr,{className:`size-3 mr-1`}),`Reset all`]})]}),(0,J.jsxs)(`div`,{className:`flex items-start gap-2 rounded-md border border-warning/30 bg-warning/5 px-2.5 py-2`,children:[(0,J.jsx)(zr,{className:`size-3.5 text-warning shrink-0 mt-0.5`}),(0,J.jsxs)(`p`,{className:`text-[10px] text-muted-foreground leading-relaxed`,children:[`Some shortcuts (`,Nl.slice(0,4).join(`, `),`...) are reserved by the browser and cannot be overridden.`]})]}),Ml.map(n=>{let i=$o.filter(e=>e.category===n.key);return i.length===0?null:(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:n.label}),(0,J.jsx)(`div`,{className:`space-y-0.5`,children:i.map(n=>{let i=e(n.id),a=n.id in r;return(0,J.jsxs)(`div`,{className:`flex items-center justify-between py-1 px-1 rounded hover:bg-surface-elevated/50 transition-colors`,children:[(0,J.jsxs)(`div`,{className:`flex flex-col min-w-0`,children:[(0,J.jsx)(`span`,{className:`text-xs text-foreground`,children:n.label}),n.note&&(0,J.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:n.note})]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1 shrink-0 ml-2`,children:[(0,J.jsx)(Pl,{actionId:n.id,combo:i,locked:n.locked}),a&&!n.locked&&(0,J.jsx)(`button`,{onClick:()=>t(n.id),className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-foreground hover:bg-surface-elevated transition-colors`,title:`Reset to default`,children:(0,J.jsx)(Cr,{className:`size-3`})})]})]},n.id)})})]},n.key)}),a.length>0&&(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:`Extensions`}),(0,J.jsx)(`div`,{className:`space-y-0.5`,children:a.map(n=>{let i=o.find(e=>e.command===n.command)?.title??n.command,a=`ext:${n.command}`,s=e(a)||n.key,c=a in r;return(0,J.jsxs)(`div`,{className:`flex items-center justify-between py-1 px-1 rounded hover:bg-surface-elevated/50 transition-colors`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 min-w-0`,children:[(0,J.jsx)(vr,{className:`size-3 text-muted-foreground shrink-0`}),(0,J.jsx)(`span`,{className:`text-xs text-foreground`,children:i})]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1 shrink-0 ml-2`,children:[(0,J.jsx)(Pl,{actionId:a,combo:s}),c&&(0,J.jsx)(`button`,{onClick:()=>t(a),className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-foreground hover:bg-surface-elevated transition-colors`,title:`Reset to default`,children:(0,J.jsx)(Cr,{className:`size-3`})})]})]},a)})})]})]})}var Il=`Hello! Reply briefly.`,Ll=`claude-opus-5`;function Rl(e){let[t,n]=(0,q.useState)(!1);return(0,J.jsxs)(Ue,{open:t,onOpenChange:n,children:[(0,J.jsx)(He,{asChild:!0,children:(0,J.jsxs)(F,{variant:`outline`,size:`sm`,className:`h-7 text-[11px] gap-1.5 cursor-pointer`,children:[(0,J.jsx)(Sn,{className:`size-3`}),`Test`]})}),(0,J.jsxs)(ze,{className:`sm:max-w-md max-h-[85vh] overflow-y-auto`,children:[(0,J.jsxs)(Ie,{children:[(0,J.jsx)(Be,{className:`text-sm`,children:`Test Proxy`}),(0,J.jsx)(Ve,{className:`text-[11px]`,children:`Send a test request and inspect the raw response.`})]}),t&&(0,J.jsx)(zl,{...e})]})]})}function zl({authKey:e,baseUrl:t}){let[n,r]=(0,q.useState)(`anthropic`),[i,a]=(0,q.useState)(Il),[o,s]=(0,q.useState)(Ll),[c,l]=(0,q.useState)(!0),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(null),[m,h]=(0,q.useState)(null),[g,_]=(0,q.useState)(null),v=(0,q.useRef)(null),y=(0,q.useRef)(null);(0,q.useEffect)(()=>{v.current?.select()},[]),(0,q.useEffect)(()=>{y.current&&(y.current.scrollTop=y.current.scrollHeight)},[f]);let b=e=>{r(e),p(null),h(null),_(null)},x=async()=>{d(!0),p(null),h(null),_(null);let r=Date.now(),a=n===`openai`,s=a?`${t}/proxy/v1/chat/completions`:`${t}/proxy/v1/messages`,l=JSON.stringify({model:o,max_tokens:256,stream:c,messages:[{role:`user`,content:i}]}),u={"Content-Type":`application/json`};a?u.Authorization=`Bearer ${e}`:(u[`x-api-key`]=e,u[`anthropic-version`]=`2023-06-01`);try{let e=await fetch(s,{method:`POST`,headers:u,body:l});if(!e.ok){let t=await e.text();h(`HTTP ${e.status}: ${t}`),d(!1),_(Date.now()-r);return}if(c){let t=e.body?.getReader();if(!t){h(`No response body`),d(!1);return}let n=new TextDecoder,i=``;for(;;){let{done:e,value:r}=await t.read();if(e)break;i+=n.decode(r,{stream:!0}),p(i)}_(Date.now()-r)}else{let t=await e.text();try{p(JSON.stringify(JSON.parse(t),null,2))}catch{p(t)}_(Date.now()-r)}}catch(e){h(e.message)}finally{d(!1),_(e=>e??Date.now()-r)}};return(0,J.jsxs)(`div`,{className:`space-y-3 min-w-0`,children:[(0,J.jsxs)(`div`,{className:`space-y-1.5 min-w-0`,children:[(0,J.jsx)(Qc,{className:`text-[11px]`,children:`Auth Style`}),(0,J.jsx)(`div`,{className:`flex gap-1`,children:[`anthropic`,`openai`].map(e=>(0,J.jsx)(`button`,{onClick:()=>b(e),className:`flex-1 h-8 rounded-md text-[11px] font-medium border transition-colors cursor-pointer ${n===e?`bg-primary text-primary-foreground border-primary`:`bg-muted text-muted-foreground border-transparent hover:bg-muted/80`}`,children:e===`anthropic`?`Anthropic`:`OpenAI`},e))}),(0,J.jsx)(`p`,{className:`text-[9px] text-muted-foreground`,children:n===`anthropic`?`x-api-key header`:`Authorization: Bearer header`})]}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{className:`text-[11px]`,children:`Model`}),(0,J.jsxs)(`select`,{value:o,onChange:e=>s(e.target.value),className:`h-8 w-full rounded-md border bg-background px-2 text-[11px]`,children:[(0,J.jsx)(`option`,{value:`claude-opus-5`,children:`claude-opus-5`}),(0,J.jsx)(`option`,{value:`claude-fable-5`,children:`claude-fable-5`}),(0,J.jsx)(`option`,{value:`claude-opus-4-8`,children:`claude-opus-4-8`}),(0,J.jsx)(`option`,{value:`claude-opus-4-7`,children:`claude-opus-4-7`}),(0,J.jsx)(`option`,{value:`claude-opus-4-6`,children:`claude-opus-4-6`}),(0,J.jsx)(`option`,{value:`claude-sonnet-5`,children:`claude-sonnet-5`}),(0,J.jsx)(`option`,{value:`claude-sonnet-4-6`,children:`claude-sonnet-4-6`}),(0,J.jsx)(`option`,{value:`claude-haiku-4-5`,children:`claude-haiku-4-5`})]})]}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(Qc,{className:`text-[11px]`,children:`Streaming`}),(0,J.jsx)(`div`,{className:`flex gap-1`,children:[!0,!1].map(e=>(0,J.jsx)(`button`,{onClick:()=>l(e),className:`h-7 px-3 rounded-md text-[11px] font-medium border transition-colors cursor-pointer ${c===e?`bg-primary text-primary-foreground border-primary`:`bg-muted text-muted-foreground border-transparent hover:bg-muted/80`}`,children:e?`Stream`:`JSON`},String(e)))})]}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{className:`text-[11px]`,children:`Message`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,J.jsx)(Z,{ref:v,value:i,onChange:e=>a(e.target.value),placeholder:`Type a test message...`,className:`h-9 text-[11px] flex-1 min-w-0`,onKeyDown:e=>{e.key===`Enter`&&!u&&x()}}),(0,J.jsxs)(F,{size:`sm`,className:`h-9 px-3 cursor-pointer shrink-0`,onClick:x,disabled:u||!i.trim(),children:[u?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):(0,J.jsx)(mr,{className:`size-3.5`}),(0,J.jsx)(`span`,{className:`ml-1 text-[11px]`,children:u?`...`:`Send`})]})]})]}),(f||m)&&(0,J.jsxs)(`div`,{className:`space-y-1 min-w-0`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(Qc,{className:`text-[10px] text-muted-foreground`,children:`Raw Response`}),g!=null&&(0,J.jsxs)(`span`,{className:`text-[9px] font-mono text-muted-foreground`,children:[(g/1e3).toFixed(1),`s`]})]}),m?(0,J.jsx)(`pre`,{className:`text-[9px] font-mono bg-error/10 text-error p-2 rounded overflow-auto max-h-52 whitespace-pre-wrap break-all`,children:m}):(0,J.jsx)(`pre`,{ref:y,className:`text-[9px] font-mono bg-muted p-2 rounded overflow-auto max-h-52 whitespace-pre-wrap break-all`,children:f})]})]})}function Bl(){let[e,t]=(0,q.useState)(null),[n,r]=(0,q.useState)(!0),[i,a]=(0,q.useState)(!1),[o,s]=(0,q.useState)(null),[c,l]=(0,q.useState)(null);(0,q.useEffect)(()=>{r(!0),mt().then(t).catch(e=>s(e.message)).finally(()=>r(!1))},[]);let u=async e=>{a(!0),s(null);try{t(await vt(e))}catch(e){s(e.message)}finally{a(!1)}},d=(e,t)=>{ks(e),l(t),setTimeout(()=>l(null),2e3)};if(n||!e)return(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-text-secondary`,children:`API Proxy`}),(0,J.jsx)(`p`,{className:`text-[11px] text-text-subtle`,children:o?`Error: ${o}`:`Loading...`})]});let f=!!e.authKey,p=!!e.tunnelUrl,m=e.localEndpoint,h=m.replace(/\/proxy\/v1\/messages$/,``);return(0,J.jsxs)(`div`,{className:`space-y-4`,children:[(0,J.jsx)(`div`,{className:`space-y-1.5`,children:(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Expose your Claude accounts as an Anthropic-compatible API endpoint. External tools (OpenCode, Cursor, etc.) can use your accounts via this proxy.`})}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,J.jsx)(Qc,{className:`text-xs`,children:`Enable Proxy`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Accept API requests on /proxy/v1/messages`})]}),(0,J.jsx)(fl,{checked:e.enabled,onCheckedChange:e=>u({enabled:e}),disabled:i})]}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{className:`text-[11px]`,children:`Auth Key`}),f?(0,J.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,J.jsx)(Z,{readOnly:!0,value:e.authKey,className:`h-7 text-[11px] font-mono flex-1`}),(0,J.jsx)(F,{variant:`outline`,size:`sm`,className:`h-7 px-2 cursor-pointer shrink-0`,onClick:()=>d(e.authKey,`key`),children:c===`key`?`Copied!`:(0,J.jsx)(rn,{className:`size-3`})}),(0,J.jsx)(F,{variant:`outline`,size:`sm`,className:`h-7 px-2 cursor-pointer shrink-0`,onClick:()=>u({generateKey:!0}),disabled:i,children:(0,J.jsx)(br,{className:`size-3`})})]}):(0,J.jsx)(F,{variant:`outline`,size:`sm`,className:`h-7 text-xs cursor-pointer`,onClick:()=>u({generateKey:!0}),disabled:i,children:`Generate Auth Key`}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Use as Bearer token or x-api-key when calling the proxy.`})]}),e.enabled&&f&&(0,J.jsxs)(`div`,{className:`space-y-2 rounded-md border p-3 bg-muted/30`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`h4`,{className:`text-[11px] font-medium`,children:`Connection Info`}),(0,J.jsx)(Rl,{authKey:e.authKey,baseUrl:window.location.origin})]}),(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(Qc,{className:`text-[10px] text-muted-foreground`,children:`Anthropic Endpoint`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,J.jsx)(`code`,{className:`text-[10px] font-mono bg-muted px-1.5 py-0.5 rounded flex-1 truncate`,children:p?e.proxyEndpoint:m}),(0,J.jsx)(F,{variant:`ghost`,size:`sm`,className:`h-6 px-1.5 cursor-pointer shrink-0`,onClick:()=>d(p?e.proxyEndpoint:m,`anthropic`),children:c===`anthropic`?`Copied!`:(0,J.jsx)(rn,{className:`size-3`})})]})]}),(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(Qc,{className:`text-[10px] text-muted-foreground`,children:`OpenAI-Compatible Endpoint`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,J.jsx)(`code`,{className:`text-[10px] font-mono bg-muted px-1.5 py-0.5 rounded flex-1 truncate`,children:p?e.openAiEndpoint:e.localOpenAiEndpoint}),(0,J.jsx)(F,{variant:`ghost`,size:`sm`,className:`h-6 px-1.5 cursor-pointer shrink-0`,onClick:()=>d(p?e.openAiEndpoint:e.localOpenAiEndpoint,`openai`),children:c===`openai`?`Copied!`:(0,J.jsx)(rn,{className:`size-3`})})]})]}),!p&&(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Start a Cloudflare tunnel (Share) to get a public URL.`}),(0,J.jsxs)(`div`,{className:`space-y-1 pt-1`,children:[(0,J.jsx)(Qc,{className:`text-[10px] text-muted-foreground`,children:`Anthropic Format`}),(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsx)(`pre`,{className:`text-[9px] font-mono bg-muted p-2 rounded overflow-x-auto whitespace-pre`,children:`ANTHROPIC_BASE_URL=${p?e.tunnelUrl+`/proxy`:h+`/proxy`}
|
|
16
|
-
ANTHROPIC_API_KEY=${e.authKey}`}),(0,J.jsx)(F,{variant:`ghost`,size:`sm`,className:`absolute top-1 right-1 h-5 px-1 cursor-pointer`,onClick:()=>d(`ANTHROPIC_BASE_URL=${p?e.tunnelUrl+`/proxy`:h+`/proxy`}\nANTHROPIC_API_KEY=${e.authKey}`,`anthropic-env`),children:c===`anthropic-env`?`Copied!`:(0,J.jsx)(rn,{className:`size-2.5`})})]})]}),(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(Qc,{className:`text-[10px] text-muted-foreground`,children:`OpenAI Format`}),(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsx)(`pre`,{className:`text-[9px] font-mono bg-muted p-2 rounded overflow-x-auto whitespace-pre`,children:`OPENAI_BASE_URL=${p?e.tunnelUrl+`/proxy/v1`:h+`/proxy/v1`}
|
|
17
|
-
OPENAI_API_KEY=${e.authKey}`}),(0,J.jsx)(F,{variant:`ghost`,size:`sm`,className:`absolute top-1 right-1 h-5 px-1 cursor-pointer`,onClick:()=>d(`OPENAI_BASE_URL=${p?e.tunnelUrl+`/proxy/v1`:h+`/proxy/v1`}\nOPENAI_API_KEY=${e.authKey}`,`openai-env`),children:c===`openai-env`?`Copied!`:(0,J.jsx)(rn,{className:`size-2.5`})})]})]}),(0,J.jsx)(`div`,{className:`flex items-center gap-3 pt-1`,children:(0,J.jsxs)(`span`,{className:`text-[10px] text-muted-foreground`,children:[`Requests served: `,(0,J.jsx)(`span`,{className:`font-mono`,children:e.requestCount})]})})]}),i&&(0,J.jsx)(`p`,{className:`text-[11px] text-text-subtle`,children:`Saving...`}),o&&(0,J.jsx)(`p`,{className:`text-[11px] text-error`,children:o})]})}function Vl(){let[e,t]=(0,q.useState)([]),[n,r]=(0,q.useState)(!0),[i,a]=(0,q.useState)(``),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(``),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(null),[m,h]=(0,q.useState)(null),g=(0,q.useCallback)(async()=>{try{t(await R.get(`/api/extensions`))}catch(e){console.error(`Failed to load extensions:`,e)}finally{r(!1)}},[]);(0,q.useEffect)(()=>{g()},[g]);let _=async()=>{let e=i.trim();if(e){s(!0);try{await R.post(`/api/extensions/install`,{name:e}),I.success(`Installed ${e}`),a(``),g()}catch(e){I.error(e.message||`Install failed`)}finally{s(!1)}}},v=async e=>{p(e.id);try{await R.patch(`/api/extensions/${e.id}`,{enabled:!e.enabled}),g()}catch(e){I.error(e.message||`Toggle failed`)}finally{p(null)}},y=async e=>{h(e);try{await R.del(`/api/extensions/${e}`),I.success(`Removed ${e}`),g()}catch(e){I.error(e.message||`Remove failed`)}finally{h(null)}};return n?(0,J.jsx)(`div`,{className:`flex items-center justify-center py-8`,children:(0,J.jsx)(K,{className:`size-4 animate-spin text-muted-foreground`})}):(0,J.jsxs)(`div`,{className:`space-y-4`,children:[(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Install Extension`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,J.jsx)(Z,{value:i,onChange:e=>a(e.target.value),onKeyDown:e=>{e.key===`Enter`&&_()},placeholder:`npm package name (e.g. @ppm/ext-myext)`,className:`h-8 text-xs flex-1`}),(0,J.jsxs)(F,{variant:`outline`,size:`sm`,className:`h-8 text-xs px-3 gap-1 cursor-pointer`,disabled:!i.trim()||o,onClick:_,children:[o?(0,J.jsx)(K,{className:`size-3 animate-spin`}):(0,J.jsx)(Ze,{className:`size-3`}),`Install`]})]}),(0,J.jsx)(`button`,{onClick:()=>d(!u),className:`text-[11px] text-muted-foreground hover:text-foreground transition-colors cursor-pointer`,children:u?`Hide`:`Dev link local extension...`}),u&&(0,J.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,J.jsx)(Z,{value:c,onChange:e=>l(e.target.value),placeholder:`Local path (e.g. ./packages/ext-myext)`,className:`h-8 text-xs flex-1`}),(0,J.jsxs)(F,{variant:`outline`,size:`sm`,className:`h-8 text-xs px-3 gap-1 cursor-pointer`,disabled:!c.trim(),onClick:async()=>{try{await R.post(`/api/extensions/dev-link`,{path:c.trim()}),I.success(`Dev-linked successfully`),l(``),g()}catch(e){I.error(e.message||`Dev link failed`)}},children:[(0,J.jsx)(En,{className:`size-3`}),`Link`]})]})]}),(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsxs)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:[`Installed (`,e.length,`)`]}),e.length===0?(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground py-4 text-center`,children:`No extensions installed`}):(0,J.jsx)(`div`,{className:`space-y-1`,children:e.map(e=>(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-2.5 py-2 rounded-lg bg-muted/50 hover:bg-muted transition-colors`,children:[(0,J.jsx)(`div`,{className:`size-8 rounded-md bg-background flex items-center justify-center shrink-0`,children:(0,J.jsx)(vr,{className:`size-4 text-muted-foreground`})}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,J.jsx)(`p`,{className:`text-xs font-medium truncate`,children:e.displayName||e.id}),(0,J.jsxs)(`p`,{className:`text-[11px] text-muted-foreground truncate`,children:[e.id,` v`,e.version,e.activated&&(0,J.jsx)(`span`,{className:`ml-1 text-success`,children:`active`})]})]}),(0,J.jsx)(F,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0 cursor-pointer`,title:e.enabled?`Disable`:`Enable`,disabled:f===e.id,onClick:()=>v(e),children:f===e.id?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):e.enabled?(0,J.jsx)(_r,{className:`size-3.5 text-success`}):(0,J.jsx)(gr,{className:`size-3.5 text-muted-foreground`})}),(0,J.jsx)(F,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0 cursor-pointer text-destructive hover:text-destructive`,title:`Remove`,disabled:m===e.id,onClick:()=>y(e.id),children:m===e.id?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):(0,J.jsx)(Rr,{className:`size-3.5`})})]},e.id))})]})]})}function Hl(){let[e,t]=(0,q.useState)(null),[n,r]=(0,q.useState)(!1),[i,a]=(0,q.useState)(null),[o,s]=(0,q.useState)(``),[c,l]=(0,q.useState)(!1),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)(``),[g,_]=(0,q.useState)(!0),[v,y]=(0,q.useState)(!1),[b,x]=(0,q.useState)(2e3),[S,C]=(0,q.useState)([]),[w,T]=(0,q.useState)(``),[E,D]=(0,q.useState)(!1),[O,k]=(0,q.useState)(!1),[A,ee]=(0,q.useState)([]),[te,ne]=(0,q.useState)(`_global`),[j,M]=(0,q.useState)([]),re=(0,q.useRef)(void 0),ie=(0,q.useCallback)(async()=>{try{C(await R.get(`/api/settings/clawbot/paired`))}catch{}},[]),ae=(0,q.useCallback)(async(e=te)=>{try{ee(await R.get(`/api/settings/clawbot/memories?project=${encodeURIComponent(e)}`))}catch{}},[te]),oe=(0,q.useCallback)(async()=>{try{M(await R.get(`/api/settings/clawbot/tasks?limit=20`))}catch{}},[]),se=async e=>{try{await R.del(`/api/settings/clawbot/memories/${e}`),ee(t=>t.filter(t=>t.id!==e))}catch{}};(0,q.useEffect)(()=>(R.get(`/api/settings/clawbot`).then(e=>{t(e),p(e.enabled),h(e.system_prompt),_(e.show_tool_calls),y(e.show_thinking),x(e.debounce_ms)}).catch(()=>{}),R.get(`/api/settings/telegram`).then(e=>{l(!!e.bot_token)}).catch(()=>{}),ie(),ae(`_global`),oe(),re.current=setInterval(oe,1e4),()=>{re.current&&clearInterval(re.current)}),[ie,ae,oe]);let ce=async()=>{if(o.trim()){d(!0),a(null);try{await R.put(`/api/settings/telegram`,{bot_token:o}),l(!0),s(``),a({type:`ok`,msg:`Bot token saved`})}catch(e){a({type:`err`,msg:e.message})}finally{d(!1)}}},N=async()=>{r(!0),a(null);try{let e={enabled:f,system_prompt:m,show_tool_calls:g,show_thinking:v,debounce_ms:b};t(await R.put(`/api/settings/clawbot`,e)),a({type:`ok`,msg:f?`Saved — bot started`:`Saved — bot stopped`})}catch(e){a({type:`err`,msg:e.message})}finally{r(!1)}},le=async()=>{if(w.trim()){D(!0);try{await R.post(`/api/settings/clawbot/paired/approve`,{code:w.trim().toUpperCase()}),T(``),await ie(),a({type:`ok`,msg:`Device approved`})}catch(e){a({type:`err`,msg:e.message})}finally{D(!1)}}},ue=async e=>{try{await R.del(`/api/settings/clawbot/paired/${e}`),await ie(),a({type:`ok`,msg:`Device revoked`})}catch(e){a({type:`err`,msg:e.message})}},de=async()=>{k(!0),a(null);try{await R.post(`/api/settings/telegram/test`,{}),a({type:`ok`,msg:`Test notification sent to all paired devices!`})}catch(e){a({type:`err`,msg:e.message})}finally{k(!1)}};if(!e)return(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Loading...`});let fe=S.filter(e=>e.status===`approved`).length,P={pending:`⏳`,running:`🔄`,completed:`✅`,failed:`❌`,timeout:`⏱`},pe={running:`text-primary`,completed:`text-success`,failed:`text-destructive`,timeout:`text-warning`};return(0,J.jsxs)(`div`,{className:`space-y-4`,children:[(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(`label`,{className:`text-[11px] text-muted-foreground`,children:`Telegram Bot Token`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,J.jsx)(Z,{type:`password`,placeholder:c?`•••••• (saved)`:`123456:ABC-DEF...`,value:o,onChange:e=>s(e.target.value),className:`h-7 text-xs flex-1`}),(0,J.jsx)(F,{variant:`outline`,size:`sm`,className:`h-7 text-xs shrink-0 cursor-pointer`,disabled:u||!o.trim(),onClick:ce,children:u?`...`:`Save`})]}),(0,J.jsxs)(`p`,{className:`text-[10px] text-muted-foreground`,children:[`Create a bot via `,(0,J.jsx)(`b`,{children:`@BotFather`}),` on Telegram. Used for both chat and notifications.`]})]}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`p`,{className:`text-xs font-medium`,children:`Enable PPMBot`}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`AI coordinator on Telegram — delegates tasks to your projects`})]}),(0,J.jsx)(fl,{checked:f,onCheckedChange:p})]}),(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsx)(`p`,{className:`text-xs font-medium`,children:`Paired Devices`}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Send any message to the bot on Telegram to get a pairing code. Enter it below to approve. Notifications are sent to all approved devices.`}),(0,J.jsxs)(`div`,{className:`flex gap-2`,children:[(0,J.jsx)(Z,{placeholder:`Enter pairing code (e.g. A3K7WR)`,value:w,onChange:e=>T(e.target.value.toUpperCase()),className:`h-8 text-xs font-mono tracking-wider uppercase`,maxLength:6}),(0,J.jsx)(F,{variant:`outline`,size:`sm`,className:`h-8 text-xs shrink-0 cursor-pointer`,disabled:E||w.length<6,onClick:le,children:E?`...`:`Approve`})]}),S.length===0?(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground italic`,children:`No paired devices yet.`}):(0,J.jsx)(`div`,{className:`space-y-1`,children:S.map(e=>(0,J.jsxs)(`div`,{className:`flex items-center justify-between rounded-md border p-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2 min-w-0`,children:[e.status===`approved`?(0,J.jsx)(Yt,{className:`size-3.5 text-success shrink-0`}):(0,J.jsx)(We,{className:`size-3.5 text-warning shrink-0`}),(0,J.jsxs)(`div`,{className:`min-w-0`,children:[(0,J.jsx)(`p`,{className:`text-xs truncate`,children:e.display_name||`Chat ${e.telegram_chat_id}`}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:e.status===`pending`&&e.pairing_code?`Code: ${e.pairing_code}`:e.status})]})]}),(0,J.jsx)(F,{variant:`ghost`,size:`sm`,className:`h-7 w-7 p-0 text-destructive hover:text-destructive cursor-pointer`,onClick:()=>ue(e.telegram_chat_id),children:(0,J.jsx)(Rr,{className:`size-3.5`})})]},e.id))}),c&&fe>0&&(0,J.jsxs)(F,{variant:`outline`,size:`sm`,className:`h-7 text-xs gap-1 w-full cursor-pointer`,disabled:O,onClick:de,children:[(0,J.jsx)(wr,{className:`size-3`}),O?`Sending...`:`Test Notification`]})]}),(0,J.jsx)(pl,{}),(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`p`,{className:`text-xs font-medium`,children:`Delegated Tasks`}),(0,J.jsx)(F,{variant:`ghost`,size:`sm`,className:`h-6 w-6 p-0 cursor-pointer`,onClick:oe,children:(0,J.jsx)(br,{className:`size-3`})})]}),j.length===0?(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground italic`,children:`No delegated tasks yet. The coordinator will create tasks when you ask it to work on a project.`}):(0,J.jsx)(`div`,{className:`space-y-1 max-h-[200px] overflow-y-auto`,children:j.map(e=>{let t=e.completed_at?`${Math.round((e.completed_at-e.created_at)/60)}m`:`${Math.round((Date.now()/1e3-e.created_at)/60)}m`;return(0,J.jsxs)(`div`,{className:`flex items-center gap-2 rounded-md border p-2 text-[11px]`,children:[(0,J.jsx)(`span`,{className:pe[e.status]??``,children:P[e.status]??`?`}),(0,J.jsx)(`span`,{className:`font-medium shrink-0`,children:e.project_name}),(0,J.jsx)(`span`,{className:`truncate text-muted-foreground flex-1`,children:e.prompt.slice(0,60)}),(0,J.jsx)(`span`,{className:`text-[10px] text-muted-foreground shrink-0`,children:t})]},e.id)})})]}),(0,J.jsx)(pl,{}),(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,J.jsx)(be,{className:`size-3.5 text-muted-foreground`}),(0,J.jsx)(`p`,{className:`text-xs font-medium`,children:`Memory & Identity`})]}),(0,J.jsx)(F,{variant:`ghost`,size:`sm`,className:`h-6 w-6 p-0 cursor-pointer`,onClick:()=>ae(te),children:(0,J.jsx)(br,{className:`size-3`})})]}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Facts the bot remembers across sessions. Use /remember on Telegram to add, or delete here.`}),A.length===0?(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground italic`,children:`No memories stored yet. Send /start on Telegram and introduce yourself.`}):(0,J.jsx)(`div`,{className:`space-y-1 max-h-[200px] overflow-y-auto`,children:A.map(e=>(0,J.jsxs)(`div`,{className:`flex items-start justify-between rounded-md border p-2 gap-1`,children:[(0,J.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`p`,{className:`text-[11px] break-words`,children:e.content}),(0,J.jsxs)(`p`,{className:`text-[10px] text-muted-foreground`,children:[e.category,` · `,e.project]})]}),(0,J.jsx)(F,{variant:`ghost`,size:`sm`,className:`h-6 w-6 p-0 text-destructive hover:text-destructive cursor-pointer shrink-0`,onClick:()=>se(e.id),children:(0,J.jsx)(Rr,{className:`size-3`})})]},e.id))})]}),(0,J.jsx)(pl,{}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(`label`,{className:`text-[11px] text-muted-foreground`,children:`Custom Instructions`}),(0,J.jsx)(`textarea`,{placeholder:`Additional instructions for the coordinator (optional)...`,value:m,onChange:e=>h(e.target.value),className:`flex w-full rounded-md border border-input bg-background px-3 py-2 text-xs min-h-[60px] resize-y ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2`,rows:3}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Extra instructions added to the coordinator identity. Leave empty to use defaults from coordinator.md.`})]}),(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`p`,{className:`text-xs`,children:`Show tool calls`}),(0,J.jsx)(fl,{checked:g,onCheckedChange:_})]}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`p`,{className:`text-xs`,children:`Show thinking`}),(0,J.jsx)(fl,{checked:v,onCheckedChange:y})]})]}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(`label`,{className:`text-[11px] text-muted-foreground`,children:`Debounce (ms)`}),(0,J.jsx)(Z,{type:`number`,min:0,max:3e4,step:500,value:b,onChange:e=>x(Number(e.target.value)),className:`h-7 text-xs w-24`}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Merge rapid messages within this window. 0 = no debounce.`})]}),(0,J.jsx)(F,{variant:`default`,size:`sm`,className:`h-8 text-xs w-full cursor-pointer`,disabled:n,onClick:N,children:n?`Saving...`:`Save`}),i&&(0,J.jsx)(`p`,{className:`text-[11px] ${i.type===`ok`?`text-success`:`text-destructive`}`,children:i.msg})]})}function Ul(){let[e,t]=(0,q.useState)(!1),[n,r]=(0,q.useState)(``),[i,a]=(0,q.useState)(``),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(!1),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(null),m=i.length>0&&n!==i,h=n.trim().length>=4&&n===i&&!c,g=(0,q.useCallback)(async()=>{if(h){l(!0),p(null);try{let{token:e}=await R.put(`/api/settings/auth/password`,{password:n.trim(),confirm:i.trim()});et(e),d(!0),r(``),a(``),setTimeout(()=>{d(!1),t(!1)},1500)}catch(e){p(e instanceof Error?e.message:`Failed to change password`)}finally{l(!1)}}},[h,n,i]);return e?(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Change Password`}),(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsx)(Z,{type:o?`text`:`password`,placeholder:`New password`,value:n,onChange:e=>r(e.target.value),className:`h-8 text-xs pr-8`,autoFocus:!0}),(0,J.jsx)(`button`,{type:`button`,className:`absolute right-2 top-1/2 -translate-y-1/2 text-muted-foreground cursor-pointer`,onClick:()=>s(!o),tabIndex:-1,children:o?(0,J.jsx)(me,{className:`size-3.5`}):(0,J.jsx)(Ye,{className:`size-3.5`})})]}),(0,J.jsx)(Z,{type:o?`text`:`password`,placeholder:`Confirm password`,value:i,onChange:e=>a(e.target.value),onKeyDown:e=>{e.key===`Enter`&&g()},className:`h-8 text-xs`}),m&&(0,J.jsx)(`p`,{className:`text-[11px] text-destructive`,children:`Passwords do not match`}),f&&(0,J.jsx)(`p`,{className:`text-[11px] text-destructive`,children:f}),(0,J.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,J.jsx)(F,{variant:`outline`,size:`sm`,className:`h-8 text-xs flex-1 cursor-pointer`,onClick:()=>{t(!1),r(``),a(``),p(null)},children:`Cancel`}),(0,J.jsx)(F,{variant:u?`default`:`outline`,size:`sm`,className:`h-8 text-xs flex-1 cursor-pointer`,disabled:!h,onClick:g,children:c?`...`:u?(0,J.jsx)(xe,{className:`size-3.5`}):`Save`})]}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Min 4 characters. You'll stay logged in on this device.`})]})]}):(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Security`}),(0,J.jsxs)(F,{variant:`outline`,size:`sm`,className:`h-8 text-xs gap-1.5 cursor-pointer`,onClick:()=>t(!0),children:[(0,J.jsx)(Vn,{className:`size-3.5`}),`Change Password`]})]})}function Wl(){return R.get(`/api/settings/files`)}function Gl(e){return R.patch(`/api/settings/files`,e)}function Kl(e){return R.get(`/api/projects/${encodeURIComponent(e)}/settings`)}function ql(e,t){return R.patch(`/api/projects/${encodeURIComponent(e)}/settings`,t)}function Jl({value:e,onChange:t,placeholder:n=`e.g. **/*.log`,disabled:r=!1}){let i=(0,q.useRef)([]);function a(n,r){let i=[...e];i[n]=r,t(i)}function o(n){t(e.filter((e,t)=>t!==n)),setTimeout(()=>{let e=Math.max(n-1,0);i.current[e]?.focus()},0)}function s(){t([...e,``]),setTimeout(()=>{i.current[e.length]?.focus()},0)}function c(t,n){n.key===`Enter`?(n.preventDefault(),e[t]?.trim()&&s()):n.key===`Backspace`&&e[t]===``&&(n.preventDefault(),o(t))}return(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[e.length===0&&(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground py-1`,children:`No patterns. Click "Add pattern" to start.`}),e.map((e,t)=>(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,J.jsx)(Z,{ref:e=>{i.current[t]=e},value:e,onChange:e=>a(t,e.target.value),onKeyDown:e=>c(t,e),placeholder:n,disabled:r,className:`h-8 text-xs flex-1 font-mono`,"aria-label":`Pattern ${t+1}`}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>o(t),disabled:r,"aria-label":`Remove pattern ${t+1}`,className:`shrink-0 flex items-center justify-center p-2.5 rounded-md text-muted-foreground hover:text-destructive hover:bg-destructive/10 transition-colors disabled:opacity-40 disabled:pointer-events-none`,children:(0,J.jsx)(Qe,{className:`size-3.5`})})]},t)),(0,J.jsxs)(F,{type:`button`,variant:`outline`,size:`sm`,onClick:s,disabled:r,className:`h-8 text-xs gap-1.5 w-full cursor-pointer`,children:[(0,J.jsx)(Ze,{className:`size-3.5`}),`Add pattern`]})]})}var Yl={filesExclude:[],searchExclude:[],useIgnoreFiles:!0};function Xl(){let e=U(e=>e.activeProject),[t,n]=(0,q.useState)(`global`),[r,i]=(0,q.useState)([]),[a,o]=(0,q.useState)([]),[s,c]=(0,q.useState)(!0),[l,u]=(0,q.useState)(!1),[d,f]=(0,q.useState)(!1),[p,m]=(0,q.useState)(null),[h,g]=(0,q.useState)(!1),_=(0,q.useRef)(null);(0,q.useEffect)(()=>{_.current?.abort();let n=new AbortController;return _.current=n,g(!0),m(null),(async()=>{try{if(t===`global`){let e=await Wl();if(n.signal.aborted)return;i(e.filesExclude),o(e.searchExclude),c(e.useIgnoreFiles)}else{if(!e)return;let t=await Kl(e.name);if(n.signal.aborted)return;let r=t.files??{};i(r.filesExclude??Yl.filesExclude),o(r.searchExclude??Yl.searchExclude),c(r.useIgnoreFiles??Yl.useIgnoreFiles)}}catch(e){if(n.signal.aborted)return;m(e.message)}finally{n.signal.aborted||g(!1)}})(),()=>n.abort()},[t,e?.name]);let v=async()=>{u(!0),f(!1),m(null);try{let n={filesExclude:r.filter(e=>e.trim()!==``),searchExclude:a.filter(e=>e.trim()!==``),useIgnoreFiles:s};if(t===`global`)await Gl(n);else{if(!e)throw Error(`No active project`);await ql(e.name,{files:n})}let i=ho.getState();i.invalidateIndex(),e&&i.loadIndex(e.name),f(!0),setTimeout(()=>f(!1),2e3)}catch(e){m(e.message)}finally{u(!1)}},y=!!e;return(0,J.jsxs)(`div`,{className:`space-y-4`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`File Filters`}),(0,J.jsxs)(`div`,{className:`flex gap-1`,children:[(0,J.jsx)(`button`,{type:`button`,onClick:()=>n(`global`),className:`flex-1 py-1.5 rounded-md text-xs font-medium transition-colors cursor-pointer ${t===`global`?`bg-primary text-primary-foreground`:`bg-muted text-muted-foreground hover:bg-accent`}`,children:`Global`}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>y&&n(`project`),disabled:!y,title:y?void 0:`Open a project to edit per-project overrides`,className:`flex-1 py-1.5 rounded-md text-xs font-medium transition-colors cursor-pointer disabled:opacity-40 disabled:cursor-not-allowed ${t===`project`?`bg-primary text-primary-foreground`:`bg-muted text-muted-foreground hover:bg-accent`}`,children:e?e.name:`Per-project`})]}),t===`project`&&e&&(0,J.jsxs)(`p`,{className:`text-[11px] text-muted-foreground -mt-2`,children:[`Overrides for `,(0,J.jsx)(`span`,{className:`font-medium`,children:e.name}),`. Leave empty to use global settings.`]}),h?(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Loading...`}):(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{className:`text-xs`,children:`Files to Exclude`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Glob patterns hidden from the file tree and palette.`}),(0,J.jsx)(Jl,{value:r,onChange:i,placeholder:`e.g. **/*.log or node_modules/**`,disabled:l})]}),(0,J.jsx)(pl,{}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{className:`text-xs`,children:`Search to Exclude`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Glob patterns excluded from file index / palette search.`}),(0,J.jsx)(Jl,{value:a,onChange:o,placeholder:`e.g. dist/** or **/*.min.js`,disabled:l})]}),(0,J.jsx)(pl,{}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between gap-2`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(Qc,{className:`text-xs`,children:`Use .gitignore rules`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Respect .gitignore when filtering the file tree and index.`})]}),(0,J.jsx)(fl,{checked:s,onCheckedChange:c,disabled:l})]}),p&&(0,J.jsx)(`p`,{className:`text-[11px] text-destructive`,children:p}),(0,J.jsx)(F,{onClick:v,disabled:l||h,size:`sm`,className:`h-8 text-xs w-full cursor-pointer`,children:l?`Saving...`:d?`Saved`:`Save`})]})]})}var Zl=1e4;function Ql(){let[e,t]=(0,q.useState)([]),[n,r]=(0,q.useState)(!0),i=(0,q.useCallback)(async()=>{try{t(await R.get(`/api/schedules`))}catch{}finally{r(!1)}},[]);return(0,q.useEffect)(()=>{i();let e=setInterval(()=>{document.visibilityState===`visible`&&i()},Zl);return()=>clearInterval(e)},[i]),{schedules:e,loading:n,refetch:i}}function $l(e){let[t,n]=(0,q.useState)([]),[r,i]=(0,q.useState)(!1),a=(0,q.useCallback)(async()=>{if(e!=null){i(!0);try{n(await R.get(`/api/schedules/${e}/runs?limit=20`))}catch{n([])}finally{i(!1)}}},[e]);return(0,q.useEffect)(()=>{a()},[a]),{runs:t,loading:r,refetch:a}}var eu={done:`bg-success/10 text-success`,error:`bg-error/10 text-error`,running:`bg-warning/10 text-warning`,skipped:`bg-muted text-muted-foreground`};function tu({scheduleId:e}){let{runs:t,loading:n}=$l(e);return n&&t.length===0?(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground py-1`,children:`Loading runs…`}):t.length===0?(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground py-1`,children:`No runs yet.`}):(0,J.jsx)(`div`,{className:`space-y-1`,children:t.map(e=>(0,J.jsx)(ru,{run:e},e.id))})}function nu(e){return new Date(e.includes(`T`)?e:e.replace(` `,`T`)+`Z`)}function ru({run:e}){let[t,n]=(0,q.useState)(!1),r=!!(e.output_truncated||e.error),i=e.ended_at?`${Math.round((nu(e.ended_at).getTime()-nu(e.started_at).getTime())/1e3)}s`:`…`;return(0,J.jsxs)(`div`,{className:`rounded border border-border text-[11px]`,children:[(0,J.jsxs)(`button`,{type:`button`,onClick:()=>r&&n(!t),className:V(`w-full flex items-center gap-2 px-2 py-2 min-h-11 text-left`,r&&`cursor-pointer hover:bg-accent/30`),children:[(0,J.jsx)(`span`,{className:V(`rounded px-1.5 py-0.5 font-medium shrink-0`,eu[e.status]),children:e.status}),(0,J.jsxs)(`span`,{className:`text-muted-foreground truncate flex-1`,children:[nu(e.started_at).toLocaleString(),` · `,i,e.cost_usd!=null&&` · $${e.cost_usd.toFixed(4)}`,e.context_window_pct!=null&&` · ctx ${e.context_window_pct}%`]})]}),t&&(0,J.jsxs)(`div`,{className:`px-2 pb-2 space-y-1`,children:[e.error&&(0,J.jsx)(`p`,{className:`text-error break-all`,children:e.error}),e.output_truncated&&(0,J.jsx)(`pre`,{className:`overflow-auto max-h-96 whitespace-pre-wrap break-all text-muted-foreground font-mono text-[10px]`,children:e.output_truncated})]})]})}function iu({schedule:e,onEdit:t,onChanged:n}){let[r,i]=(0,q.useState)(!1),[a,o]=(0,q.useState)(0);return(0,J.jsxs)(`div`,{className:`rounded-lg border border-border`,children:[(0,J.jsxs)(jc,{children:[(0,J.jsx)(Mc,{asChild:!0,children:(0,J.jsxs)(`button`,{type:`button`,onClick:()=>i(!r),className:`w-full flex items-center gap-2 px-2.5 py-2.5 min-h-11 text-left cursor-pointer hover:bg-accent/30`,children:[r?(0,J.jsx)(Ne,{className:`size-3.5 shrink-0 text-muted-foreground`}):(0,J.jsx)(Fe,{className:`size-3.5 shrink-0 text-muted-foreground`}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,J.jsx)(`p`,{className:`text-xs font-medium truncate`,children:e.name}),(0,J.jsxs)(`p`,{className:`text-[11px] text-muted-foreground truncate`,children:[(0,J.jsx)(`span`,{className:`font-mono`,children:e.cron_expr}),` · `,e.next_fire_at&&e.enabled?`next ${new Date(e.next_fire_at).toLocaleString()}`:`—`]})]}),(0,J.jsx)(`span`,{className:V(`rounded px-1.5 py-0.5 text-[10px] font-medium shrink-0`,e.enabled?`bg-success/10 text-success`:`bg-muted text-muted-foreground`),children:e.enabled?`Enabled`:`Disabled`})]})}),(0,J.jsxs)(Nc,{children:[(0,J.jsxs)(Pc,{onClick:async()=>{try{let t=await R.post(`/api/schedules/${e.id}/run-now`);I.success(`Run #${t.runId} started${t.wasRunning?` (previous run still active)`:``}`),i(!0),o(e=>e+1)}catch(e){I.error(e instanceof Error?e.message:`Run failed`)}},children:[(0,J.jsx)(mr,{className:`size-3.5`}),` Run now`]}),(0,J.jsxs)(Pc,{onClick:async()=>{try{await R.patch(`/api/schedules/${e.id}`,{enabled:!e.enabled}),n()}catch(e){I.error(e instanceof Error?e.message:`Update failed`)}},children:[(0,J.jsx)(_r,{className:`size-3.5`}),` `,e.enabled?`Disable`:`Enable`]}),(0,J.jsxs)(Pc,{onClick:t,children:[(0,J.jsx)(De,{className:`size-3.5`}),` Edit`]}),(0,J.jsx)(Fc,{}),(0,J.jsxs)(Pc,{variant:`destructive`,onClick:async()=>{try{await R.del(`/api/schedules/${e.id}`),I.success(`Schedule deleted`),n()}catch(e){I.error(e instanceof Error?e.message:`Delete failed`)}},children:[(0,J.jsx)(Rr,{className:`size-3.5`}),` Delete`]})]})]}),r&&(0,J.jsxs)(`div`,{className:`px-2.5 pb-2.5 space-y-1.5`,children:[(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground break-all line-clamp-3`,children:e.prompt}),(0,J.jsx)(tu,{scheduleId:e.id},a)]})]})}function au(e,t,n,r,i,a,o,s){return au.fromTZ(au.tp(e,t,n,r,i,a,o),s)}au.fromTZISO=(e,t,n)=>au.fromTZ(su(e,t),n),au.fromTZ=function(e,t){let n=new Date(Date.UTC(e.y,e.m-1,e.d,e.h,e.i,e.s)),r=ou(e.tz,n),i=new Date(n.getTime()-r),a=ou(e.tz,i);if(a-r===0)return i;{let r=new Date(n.getTime()-a),o=ou(e.tz,r);if(o-a===0||!t&&o-a>0)return r;if(t)throw Error(`Invalid date passed to fromTZ()`);return i}},au.toTZ=function(e,t){let n=e.toLocaleString(`en-US`,{timeZone:t}).replace(/[\u202f]/,` `),r=new Date(n);return{y:r.getFullYear(),m:r.getMonth()+1,d:r.getDate(),h:r.getHours(),i:r.getMinutes(),s:r.getSeconds(),tz:t}},au.tp=(e,t,n,r,i,a,o)=>({y:e,m:t,d:n,h:r,i,s:a,tz:o});function ou(e,t=new Date){let n=t.toLocaleString(`en-US`,{timeZone:e,timeZoneName:`shortOffset`}).split(` `).slice(-1)[0],r=t.toLocaleString(`en-US`).replace(/[\u202f]/,` `);return Date.parse(`${r} GMT`)-Date.parse(`${r} ${n}`)}function su(e,t){let n=new Date(Date.parse(e));if(isNaN(n))throw Error(`minitz: Invalid ISO8601 passed to parser.`);let r=e.substring(9);return e.includes(`Z`)||r.includes(`-`)||r.includes(`+`)?au.tp(n.getUTCFullYear(),n.getUTCMonth()+1,n.getUTCDate(),n.getUTCHours(),n.getUTCMinutes(),n.getUTCSeconds(),`Etc/UTC`):au.tp(n.getFullYear(),n.getMonth()+1,n.getDate(),n.getHours(),n.getMinutes(),n.getSeconds(),t)}au.minitz=au;var cu=32,lu=31|cu,uu=[1,2,4,8,16],du=class{pattern;timezone;second;minute;hour;day;month;dayOfWeek;lastDayOfMonth;starDOM;starDOW;constructor(e,t){this.pattern=e,this.timezone=t,this.second=Array(60).fill(0),this.minute=Array(60).fill(0),this.hour=Array(24).fill(0),this.day=Array(31).fill(0),this.month=Array(12).fill(0),this.dayOfWeek=Array(7).fill(0),this.lastDayOfMonth=!1,this.starDOM=!1,this.starDOW=!1,this.parse()}parse(){if(!(typeof this.pattern==`string`||this.pattern instanceof String))throw TypeError(`CronPattern: Pattern has to be of type string.`);this.pattern.indexOf(`@`)>=0&&(this.pattern=this.handleNicknames(this.pattern).trim());let e=this.pattern.replace(/\s+/g,` `).split(` `);if(e.length<5||e.length>6)throw TypeError(`CronPattern: invalid configuration format ('`+this.pattern+`'), exactly five or six space separated parts are required.`);if(e.length===5&&e.unshift(`0`),e[3].indexOf(`L`)>=0&&(e[3]=e[3].replace(`L`,``),this.lastDayOfMonth=!0),e[3]==`*`&&(this.starDOM=!0),e[4].length>=3&&(e[4]=this.replaceAlphaMonths(e[4])),e[5].length>=3&&(e[5]=this.replaceAlphaDays(e[5])),e[5]==`*`&&(this.starDOW=!0),this.pattern.indexOf(`?`)>=0){let t=new mu(new Date,this.timezone).getDate(!0);e[0]=e[0].replace(`?`,t.getSeconds().toString()),e[1]=e[1].replace(`?`,t.getMinutes().toString()),e[2]=e[2].replace(`?`,t.getHours().toString()),this.starDOM||(e[3]=e[3].replace(`?`,t.getDate().toString())),e[4]=e[4].replace(`?`,(t.getMonth()+1).toString()),this.starDOW||(e[5]=e[5].replace(`?`,t.getDay().toString()))}this.throwAtIllegalCharacters(e),this.partToArray(`second`,e[0],0,1),this.partToArray(`minute`,e[1],0,1),this.partToArray(`hour`,e[2],0,1),this.partToArray(`day`,e[3],-1,1),this.partToArray(`month`,e[4],-1,1),this.partToArray(`dayOfWeek`,e[5],0,lu),this.dayOfWeek[7]&&(this.dayOfWeek[0]=this.dayOfWeek[7])}partToArray(e,t,n,r){let i=this[e],a=e===`day`&&this.lastDayOfMonth;if(t===``&&!a)throw TypeError(`CronPattern: configuration entry `+e+` (`+t+`) is empty, check for trailing spaces.`);if(t===`*`)return i.fill(r);let o=t.split(`,`);if(o.length>1)for(let t=0;t<o.length;t++)this.partToArray(e,o[t],n,r);else t.indexOf(`-`)!==-1&&t.indexOf(`/`)!==-1?this.handleRangeWithStepping(t,e,n,r):t.indexOf(`-`)===-1?t.indexOf(`/`)===-1?t!==``&&this.handleNumber(t,e,n,r):this.handleStepping(t,e,n,r):this.handleRange(t,e,n,r)}throwAtIllegalCharacters(e){for(let t=0;t<e.length;t++)if((t===5?/[^/*0-9,\-#L]+/:/[^/*0-9,-]+/).test(e[t]))throw TypeError(`CronPattern: configuration entry `+t+` (`+e[t]+`) contains illegal characters.`)}handleNumber(e,t,n,r){let i=this.extractNth(e,t),a=parseInt(i[0],10)+n;if(isNaN(a))throw TypeError(`CronPattern: `+t+` is not a number: '`+e+`'`);this.setPart(t,a,i[1]||r)}setPart(e,t,n){if(!Object.prototype.hasOwnProperty.call(this,e))throw TypeError(`CronPattern: Invalid part specified: `+e);if(e===`dayOfWeek`){if(t===7&&(t=0),t<0||t>6)throw RangeError(`CronPattern: Invalid value for dayOfWeek: `+t);this.setNthWeekdayOfMonth(t,n);return}if(e===`second`||e===`minute`){if(t<0||t>=60)throw RangeError(`CronPattern: Invalid value for `+e+`: `+t)}else if(e===`hour`){if(t<0||t>=24)throw RangeError(`CronPattern: Invalid value for `+e+`: `+t)}else if(e===`day`){if(t<0||t>=31)throw RangeError(`CronPattern: Invalid value for `+e+`: `+t)}else if(e===`month`&&(t<0||t>=12))throw RangeError(`CronPattern: Invalid value for `+e+`: `+t);this[e][t]=n}handleRangeWithStepping(e,t,n,r){let i=this.extractNth(e,t),a=i[0].match(/^(\d+)-(\d+)\/(\d+)$/);if(a===null)throw TypeError(`CronPattern: Syntax error, illegal range with stepping: '`+e+`'`);let[,o,s,c]=a,l=parseInt(o,10)+n,u=parseInt(s,10)+n,d=parseInt(c,10);if(isNaN(l))throw TypeError(`CronPattern: Syntax error, illegal lower range (NaN)`);if(isNaN(u))throw TypeError(`CronPattern: Syntax error, illegal upper range (NaN)`);if(isNaN(d))throw TypeError(`CronPattern: Syntax error, illegal stepping: (NaN)`);if(d===0)throw TypeError(`CronPattern: Syntax error, illegal stepping: 0`);if(d>this[t].length)throw TypeError(`CronPattern: Syntax error, steps cannot be greater than maximum value of part (`+this[t].length+`)`);if(l>u)throw TypeError(`CronPattern: From value is larger than to value: '`+e+`'`);for(let e=l;e<=u;e+=d)this.setPart(t,e,i[1]||r)}extractNth(e,t){let n=e,r;if(n.includes(`#`)){if(t!==`dayOfWeek`)throw Error(`CronPattern: nth (#) only allowed in day-of-week field`);r=n.split(`#`)[1],n=n.split(`#`)[0]}return[n,r]}handleRange(e,t,n,r){let i=this.extractNth(e,t),a=i[0].split(`-`);if(a.length!==2)throw TypeError(`CronPattern: Syntax error, illegal range: '`+e+`'`);let o=parseInt(a[0],10)+n,s=parseInt(a[1],10)+n;if(isNaN(o))throw TypeError(`CronPattern: Syntax error, illegal lower range (NaN)`);if(isNaN(s))throw TypeError(`CronPattern: Syntax error, illegal upper range (NaN)`);if(o>s)throw TypeError(`CronPattern: From value is larger than to value: '`+e+`'`);for(let e=o;e<=s;e++)this.setPart(t,e,i[1]||r)}handleStepping(e,t,n,r){let i=this.extractNth(e,t),a=i[0].split(`/`);if(a.length!==2)throw TypeError(`CronPattern: Syntax error, illegal stepping: '`+e+`'`);a[0]===``&&(a[0]=`*`);let o=0;a[0]!==`*`&&(o=parseInt(a[0],10)+n);let s=parseInt(a[1],10);if(isNaN(s))throw TypeError(`CronPattern: Syntax error, illegal stepping: (NaN)`);if(s===0)throw TypeError(`CronPattern: Syntax error, illegal stepping: 0`);if(s>this[t].length)throw TypeError(`CronPattern: Syntax error, max steps for part is (`+this[t].length+`)`);for(let e=o;e<this[t].length;e+=s)this.setPart(t,e,i[1]||r)}replaceAlphaDays(e){return e.replace(/-sun/gi,`-7`).replace(/sun/gi,`0`).replace(/mon/gi,`1`).replace(/tue/gi,`2`).replace(/wed/gi,`3`).replace(/thu/gi,`4`).replace(/fri/gi,`5`).replace(/sat/gi,`6`)}replaceAlphaMonths(e){return e.replace(/jan/gi,`1`).replace(/feb/gi,`2`).replace(/mar/gi,`3`).replace(/apr/gi,`4`).replace(/may/gi,`5`).replace(/jun/gi,`6`).replace(/jul/gi,`7`).replace(/aug/gi,`8`).replace(/sep/gi,`9`).replace(/oct/gi,`10`).replace(/nov/gi,`11`).replace(/dec/gi,`12`)}handleNicknames(e){let t=e.trim().toLowerCase();return t===`@yearly`||t===`@annually`?`0 0 1 1 *`:t===`@monthly`?`0 0 1 * *`:t===`@weekly`?`0 0 * * 0`:t===`@daily`?`0 0 * * *`:t===`@hourly`?`0 * * * *`:e}setNthWeekdayOfMonth(e,t){if(typeof t!=`number`&&t===`L`)this.dayOfWeek[e]=this.dayOfWeek[e]|cu;else if(t===lu)this.dayOfWeek[e]=lu;else if(t<6&&t>0)this.dayOfWeek[e]=this.dayOfWeek[e]|uu[t-1];else throw TypeError(`CronPattern: nth weekday out of range, should be 1-5 or L. Value: ${t}, Type: ${typeof t}`)}},fu=[31,28,31,30,31,30,31,31,30,31,30,31],pu=[[`month`,`year`,0],[`day`,`month`,-1],[`hour`,`day`,0],[`minute`,`hour`,0],[`second`,`minute`,0]],mu=class e{tz;ms;second;minute;hour;day;month;year;constructor(t,n){if(this.tz=n,t&&t instanceof Date)if(!isNaN(t))this.fromDate(t);else throw TypeError(`CronDate: Invalid date passed to CronDate constructor`);else if(t===void 0)this.fromDate(new Date);else if(t&&typeof t==`string`)this.fromString(t);else if(t instanceof e)this.fromCronDate(t);else throw TypeError(`CronDate: Invalid type (`+typeof t+`) passed to CronDate constructor`)}isNthWeekdayOfMonth(e,t,n,r){let i=new Date(Date.UTC(e,t,n)).getUTCDay(),a=0;for(let r=1;r<=n;r++)new Date(Date.UTC(e,t,r)).getUTCDay()===i&&a++;if(r&lu&&uu[a-1]&r)return!0;if(r&cu){let r=new Date(Date.UTC(e,t+1,0)).getUTCDate();for(let a=n+1;a<=r;a++)if(new Date(Date.UTC(e,t,a)).getUTCDay()===i)return!1;return!0}return!1}fromDate(e){if(this.tz!==void 0)if(typeof this.tz==`number`)this.ms=e.getUTCMilliseconds(),this.second=e.getUTCSeconds(),this.minute=e.getUTCMinutes()+this.tz,this.hour=e.getUTCHours(),this.day=e.getUTCDate(),this.month=e.getUTCMonth(),this.year=e.getUTCFullYear(),this.apply();else{let t=au.toTZ(e,this.tz);this.ms=e.getMilliseconds(),this.second=t.s,this.minute=t.i,this.hour=t.h,this.day=t.d,this.month=t.m-1,this.year=t.y}else this.ms=e.getMilliseconds(),this.second=e.getSeconds(),this.minute=e.getMinutes(),this.hour=e.getHours(),this.day=e.getDate(),this.month=e.getMonth(),this.year=e.getFullYear()}fromCronDate(e){this.tz=e.tz,this.year=e.year,this.month=e.month,this.day=e.day,this.hour=e.hour,this.minute=e.minute,this.second=e.second,this.ms=e.ms}apply(){if(this.month>11||this.day>fu[this.month]||this.hour>59||this.minute>59||this.second>59||this.hour<0||this.minute<0||this.second<0){let e=new Date(Date.UTC(this.year,this.month,this.day,this.hour,this.minute,this.second,this.ms));return this.ms=e.getUTCMilliseconds(),this.second=e.getUTCSeconds(),this.minute=e.getUTCMinutes(),this.hour=e.getUTCHours(),this.day=e.getUTCDate(),this.month=e.getUTCMonth(),this.year=e.getUTCFullYear(),!0}else return!1}fromString(e){if(typeof this.tz==`number`){let t=au.fromTZISO(e);this.ms=t.getUTCMilliseconds(),this.second=t.getUTCSeconds(),this.minute=t.getUTCMinutes(),this.hour=t.getUTCHours(),this.day=t.getUTCDate(),this.month=t.getUTCMonth(),this.year=t.getUTCFullYear(),this.apply()}else return this.fromDate(au.fromTZISO(e,this.tz))}findNext(e,t,n,r){let i=this[t],a;n.lastDayOfMonth&&(a=this.month===1?new Date(Date.UTC(this.year,this.month+1,0,0,0,0,0)).getUTCDate():fu[this.month]);let o=!n.starDOW&&t==`day`?new Date(Date.UTC(this.year,this.month,1,0,0,0,0)).getUTCDay():void 0;for(let s=this[t]+r;s<n[t].length;s++){let c=n[t][s];if(t===`day`&&n.lastDayOfMonth&&s-r==a&&(c=1),t===`day`&&!n.starDOW){let t=n.dayOfWeek[(o+(s-r-1))%7];if(t&&t&lu)t=this.isNthWeekdayOfMonth(this.year,this.month,s-r,t)?1:0;else if(t)throw Error(`CronDate: Invalid value for dayOfWeek encountered. ${t}`);e.legacyMode&&!n.starDOM?c||=t:c&&=t}if(c)return this[t]=s-r,i===this[t]?1:2}return 3}recurse(e,t,n){let r=this.findNext(t,pu[n][0],e,pu[n][2]);if(r>1){let i=n+1;for(;i<pu.length;)this[pu[i][0]]=-pu[i][2],i++;if(r===3)return this[pu[n][1]]++,this[pu[n][0]]=-pu[n][2],this.apply(),this.recurse(e,t,0);if(this.apply())return this.recurse(e,t,n-1)}return n+=1,n>=pu.length?this:this.year>=3e3?null:this.recurse(e,t,n)}increment(e,t,n){return this.second+=t.interval!==void 0&&t.interval>1&&n?t.interval:1,this.ms=0,this.apply(),this.recurse(e,t,0)}getDate(e){return e||this.tz===void 0?new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.ms):typeof this.tz==`number`?new Date(Date.UTC(this.year,this.month,this.day,this.hour,this.minute-this.tz,this.second,this.ms)):au.fromTZ(au.tp(this.year,this.month+1,this.day,this.hour,this.minute,this.second,this.tz),!1)}getTime(){return this.getDate(!1).getTime()}};function hu(e){if(e===void 0&&(e={}),delete e.name,e.legacyMode=e.legacyMode===void 0?!0:e.legacyMode,e.paused=e.paused===void 0?!1:e.paused,e.maxRuns=e.maxRuns===void 0?1/0:e.maxRuns,e.catch=e.catch===void 0?!1:e.catch,e.interval=e.interval===void 0?0:parseInt(e.interval.toString(),10),e.utcOffset=e.utcOffset===void 0?void 0:parseInt(e.utcOffset.toString(),10),e.unref=e.unref===void 0?!1:e.unref,e.startAt&&=new mu(e.startAt,e.timezone),e.stopAt&&=new mu(e.stopAt,e.timezone),e.interval!==null){if(isNaN(e.interval))throw Error(`CronOptions: Supplied value for interval is not a number`);if(e.interval<0)throw Error(`CronOptions: Supplied value for interval can not be negative`)}if(e.utcOffset!==void 0){if(isNaN(e.utcOffset))throw Error(`CronOptions: Invalid value passed for utcOffset, should be number representing minutes offset from UTC.`);if(e.utcOffset<-870||e.utcOffset>870)throw Error(`CronOptions: utcOffset out of bounds.`);if(e.utcOffset!==void 0&&e.timezone)throw Error(`CronOptions: Combining 'utcOffset' with 'timezone' is not allowed.`)}if(e.unref!==!0&&e.unref!==!1)throw Error(`CronOptions: Unref should be either true, false or undefined(false).`);return e}function gu(e){return Object.prototype.toString.call(e)===`[object Function]`||typeof e==`function`||e instanceof Function}function _u(e){return gu(e)}function vu(e){typeof Deno<`u`&&typeof Deno.unrefTimer<`u`?Deno.unrefTimer(e):e&&typeof e.unref<`u`&&e.unref()}var yu=30*1e3,bu=[],xu=class{name;options;_states;fn;constructor(e,t,n){let r,i;if(gu(t))i=t;else if(typeof t==`object`)r=t;else if(t!==void 0)throw Error(`Cron: Invalid argument passed for optionsIn. Should be one of function, or object (options).`);if(gu(n))i=n;else if(typeof n==`object`)r=n;else if(n!==void 0)throw Error(`Cron: Invalid argument passed for funcIn. Should be one of function, or object (options).`);if(this.name=r?.name,this.options=hu(r),this._states={kill:!1,blocking:!1,previousRun:void 0,currentRun:void 0,once:void 0,currentTimeout:void 0,maxRuns:r?r.maxRuns:void 0,paused:r?r.paused:!1,pattern:new du(`* * * * *`)},e&&(e instanceof Date||typeof e==`string`&&e.indexOf(`:`)>0)?this._states.once=new mu(e,this.options.timezone||this.options.utcOffset):this._states.pattern=new du(e,this.options.timezone),this.name){if(bu.find(e=>e.name===this.name))throw Error(`Cron: Tried to initialize new named job '`+this.name+`', but name already taken.`);bu.push(this)}return i!==void 0&&_u(i)&&(this.fn=i,this.schedule()),this}nextRun(e){let t=this._next(e);return t?t.getDate(!1):null}nextRuns(e,t){this._states.maxRuns!==void 0&&e>this._states.maxRuns&&(e=this._states.maxRuns);let n=[],r=t||this._states.currentRun||void 0;for(;e--&&(r=this.nextRun(r));)n.push(r);return n}getPattern(){return this._states.pattern?this._states.pattern.pattern:void 0}isRunning(){let e=this.nextRun(this._states.currentRun),t=!this._states.paused,n=this.fn!==void 0,r=!this._states.kill;return t&&n&&r&&e!==null}isStopped(){return this._states.kill}isBusy(){return this._states.blocking}currentRun(){return this._states.currentRun?this._states.currentRun.getDate():null}previousRun(){return this._states.previousRun?this._states.previousRun.getDate():null}msToNext(e){let t=this._next(e);return t?e instanceof mu||e instanceof Date?t.getTime()-e.getTime():t.getTime()-new mu(e).getTime():null}stop(){this._states.kill=!0,this._states.currentTimeout&&clearTimeout(this._states.currentTimeout);let e=bu.indexOf(this);e>=0&&bu.splice(e,1)}pause(){return this._states.paused=!0,!this._states.kill}resume(){return this._states.paused=!1,!this._states.kill}schedule(e){if(e&&this.fn)throw Error(`Cron: It is not allowed to schedule two functions using the same Croner instance.`);e&&(this.fn=e);let t=this.msToNext(),n=this.nextRun(this._states.currentRun);return t==null||isNaN(t)||n===null?this:(t>yu&&(t=yu),this._states.currentTimeout=setTimeout(()=>this._checkTrigger(n),t),this._states.currentTimeout&&this.options.unref&&vu(this._states.currentTimeout),this)}async _trigger(e){if(this._states.blocking=!0,this._states.currentRun=new mu(void 0,this.options.timezone||this.options.utcOffset),this.options.catch)try{this.fn!==void 0&&await this.fn(this,this.options.context)}catch(e){gu(this.options.catch)&&this.options.catch(e,this)}else this.fn!==void 0&&await this.fn(this,this.options.context);this._states.previousRun=new mu(e,this.options.timezone||this.options.utcOffset),this._states.blocking=!1}async trigger(){await this._trigger()}runsLeft(){return this._states.maxRuns}_checkTrigger(e){let t=new Date,n=!this._states.paused&&t.getTime()>=e.getTime(),r=this._states.blocking&&this.options.protect;n&&!r?(this._states.maxRuns!==void 0&&this._states.maxRuns--,this._trigger()):n&&r&&gu(this.options.protect)&&setTimeout(()=>this.options.protect(this),0),this.schedule()}_next(e){let t=!!(e||this._states.currentRun),n=!1;!e&&this.options.startAt&&this.options.interval&&([e,t]=this._calculatePreviousRun(e,t),n=!e),e=new mu(e,this.options.timezone||this.options.utcOffset),this.options.startAt&&e&&e.getTime()<this.options.startAt.getTime()&&(e=this.options.startAt);let r=this._states.once||new mu(e,this.options.timezone||this.options.utcOffset);return!n&&r!==this._states.once&&(r=r.increment(this._states.pattern,this.options,t)),this._states.once&&this._states.once.getTime()<=e.getTime()||r===null||this._states.maxRuns!==void 0&&this._states.maxRuns<=0||this._states.kill||this.options.stopAt&&r.getTime()>=this.options.stopAt.getTime()?null:r}_calculatePreviousRun(e,t){let n=new mu(void 0,this.options.timezone||this.options.utcOffset),r=e;if(this.options.startAt.getTime()<=n.getTime()){r=this.options.startAt;let e=r.getTime()+this.options.interval*1e3;for(;e<=n.getTime();)r=new mu(r,this.options.timezone||this.options.utcOffset).increment(this._states.pattern,this.options,!0),e=r.getTime()+this.options.interval*1e3;t=!0}return r===null&&(r=void 0),[r,t]}},Su=[`bypassPermissions`,`acceptEdits`,`default`,`plan`];function Cu({open:e,schedule:t,onClose:n,onSaved:r}){let i=Me(),[a,o]=(0,q.useState)(()=>Tu(t)),[s,c]=(0,q.useState)([]),[l,u]=(0,q.useState)(!1),[d,f]=(0,q.useState)(null);(0,q.useEffect)(()=>{e&&(o(Tu(t)),f(null),R.get(`/api/projects`).then(c).catch(()=>c([])))},[e,t]);let p=(0,q.useMemo)(()=>{try{return new xu(a.cron_expr).nextRuns(3).map(e=>e.toLocaleString())}catch{return null}},[a.cron_expr]),m=(e,t)=>o(n=>({...n,[e]:t})),h=(0,J.jsxs)(`div`,{className:`space-y-3 px-1`,children:[(0,J.jsx)(wu,{label:`Name`,children:(0,J.jsx)(Z,{value:a.name,onChange:e=>m(`name`,e.target.value),placeholder:`Morning PR review`,className:`h-11 md:h-9 text-xs`})}),(0,J.jsxs)(wu,{label:`Cron expression (local timezone)`,children:[(0,J.jsx)(Z,{value:a.cron_expr,onChange:e=>m(`cron_expr`,e.target.value),placeholder:`0 7 * * *`,className:`h-11 md:h-9 text-xs font-mono`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:p?`Next: ${p.join(` · `)}`:`—`})]}),(0,J.jsx)(wu,{label:`Project`,children:(0,J.jsxs)(ml,{value:a.project_path,onValueChange:e=>m(`project_path`,e),children:[(0,J.jsx)(gl,{className:`w-full min-h-11 md:min-h-9 text-xs`,children:(0,J.jsx)(hl,{placeholder:`Select project`})}),(0,J.jsx)(_l,{children:s.map(e=>(0,J.jsx)(vl,{value:e.path,children:e.name},e.path))})]})}),(0,J.jsx)(wu,{label:`Prompt (do not embed secrets)`,children:(0,J.jsx)(`textarea`,{value:a.prompt,onChange:e=>m(`prompt`,e.target.value),placeholder:`Check open PRs and summarize. If nothing to do, finish immediately.`,rows:4,className:`w-full rounded-md border border-input bg-transparent px-3 py-2 text-xs outline-none focus-visible:ring-2 focus-visible:ring-ring/50 resize-y`})}),(0,J.jsxs)(wu,{label:`Permission mode`,children:[(0,J.jsxs)(ml,{value:a.permission_mode,onValueChange:e=>m(`permission_mode`,e),children:[(0,J.jsx)(gl,{className:`w-full min-h-11 md:min-h-9 text-xs`,children:(0,J.jsx)(hl,{})}),(0,J.jsx)(_l,{children:Su.map(e=>(0,J.jsx)(vl,{value:e,children:e},e))})]}),a.permission_mode===`bypassPermissions`&&(0,J.jsx)(`p`,{className:`text-[11px] text-warning`,children:`⚠ Unattended writes — agent can modify code and run commands`})]}),(0,J.jsxs)(`div`,{className:`grid grid-cols-2 gap-2`,children:[(0,J.jsx)(wu,{label:`Max turns (optional)`,children:(0,J.jsx)(Z,{type:`number`,min:1,value:a.max_turns,onChange:e=>m(`max_turns`,e.target.value),placeholder:`∞`,className:`h-11 md:h-9 text-xs`})}),(0,J.jsx)(wu,{label:`Timeout (ms)`,children:(0,J.jsx)(Z,{type:`number`,min:1e4,value:a.timeout_ms,onChange:e=>m(`timeout_ms`,e.target.value),className:`h-11 md:h-9 text-xs`})})]}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between min-h-11`,children:[(0,J.jsx)(`span`,{className:`text-xs font-medium`,children:`Enabled`}),(0,J.jsx)(fl,{checked:a.enabled,onCheckedChange:e=>m(`enabled`,e)})]}),d&&(0,J.jsx)(`p`,{className:`text-[11px] text-error`,children:d}),(0,J.jsx)(F,{onClick:async()=>{if(!a.name.trim()||!a.project_path||!a.prompt.trim()){f(`Name, project, and prompt are required`);return}if(!p){f(`Invalid cron expression`);return}u(!0),f(null);try{let e={name:a.name.trim(),cron_expr:a.cron_expr,project_path:a.project_path,prompt:a.prompt,permission_mode:a.permission_mode,max_turns:a.max_turns===``?null:Number(a.max_turns),timeout_ms:Number(a.timeout_ms)||18e5,enabled:a.enabled};t?await R.patch(`/api/schedules/${t.id}`,e):await R.post(`/api/schedules`,e),r(),n()}catch(e){f(e instanceof Error?e.message:String(e))}finally{u(!1)}},disabled:l,className:`w-full min-h-11 cursor-pointer`,children:l?`Saving…`:t?`Save changes`:`Create schedule`})]}),g=t?`Edit: ${t.name}`:`New schedule`;return i?(0,J.jsxs)(Ae,{open:e,onClose:n,className:`max-h-[85vh] flex flex-col`,children:[(0,J.jsx)(`p`,{className:`text-sm font-semibold text-center pb-2`,children:g}),(0,J.jsx)(Dc,{className:`flex-1 min-h-0 px-3 pb-3`,children:h})]}):(0,J.jsx)(Ue,{open:e,onOpenChange:e=>!e&&n(),children:(0,J.jsxs)(ze,{className:`max-w-md max-h-[85vh] overflow-y-auto`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{className:`text-sm`,children:g})}),h]})})}function wu({label:e,children:t}){return(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`p`,{className:`text-xs font-medium text-muted-foreground`,children:e}),t]})}function Tu(e){return{name:e?.name??``,cron_expr:e?.cron_expr??`0 7 * * *`,project_path:e?.project_path??``,prompt:e?.prompt??``,permission_mode:e?.permission_mode??`bypassPermissions`,max_turns:e?.max_turns==null?``:String(e.max_turns),timeout_ms:String(e?.timeout_ms??18e5),enabled:e?!!e.enabled:!0}}function Eu(){let{schedules:e,loading:t,refetch:n}=Ql(),[r,i]=(0,q.useState)(!1),[a,o]=(0,q.useState)(null),s=()=>{o(null),i(!0)},c=e=>{o(e),i(!0)};return(0,J.jsxs)(`div`,{className:`space-y-3`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Periodically wake Claude to work on a project unattended.`}),(0,J.jsxs)(F,{size:`sm`,onClick:s,className:`min-h-11 md:min-h-8 text-xs gap-1 cursor-pointer shrink-0`,children:[(0,J.jsx)(Ze,{className:`size-3.5`}),` Add`]})]}),t&&e.length===0?(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground py-4 text-center`,children:`Loading…`}):e.length===0?(0,J.jsxs)(`div`,{className:`flex flex-col items-center gap-2 py-8 text-center`,children:[(0,J.jsx)(Bt,{className:`size-8 text-muted-foreground/50`}),(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`No schedules yet. Add one to run Claude periodically.`}),(0,J.jsxs)(F,{size:`sm`,onClick:s,className:`min-h-11 text-xs gap-1 cursor-pointer`,children:[(0,J.jsx)(Ze,{className:`size-3.5`}),` Add schedule`]})]}):(0,J.jsx)(`div`,{className:`space-y-2`,children:e.map(e=>(0,J.jsx)(iu,{schedule:e,onEdit:()=>c(e),onChanged:n},e.id))}),(0,J.jsx)(Cu,{open:r,schedule:a,onClose:()=>i(!1),onSaved:n})]})}function Du({swatch:e,className:t}){return(0,J.jsx)(`span`,{className:V(`inline-flex overflow-hidden rounded-md border border-border shrink-0`,t),"aria-hidden":!0,children:e.map((e,t)=>(0,J.jsx)(`span`,{className:`w-3 h-6`,style:{background:e}},t))})}function Ou({className:e,orientation:t=`horizontal`,...n}){return(0,J.jsx)(te,{"data-slot":`tabs`,"data-orientation":t,orientation:t,className:V(`group/tabs flex gap-2 data-[orientation=horizontal]:flex-col`,e),...n})}var ku=Re(`group/tabs-list inline-flex w-fit items-center justify-center rounded-lg p-[3px] text-muted-foreground group-data-[orientation=horizontal]/tabs:h-9 group-data-[orientation=vertical]/tabs:h-fit group-data-[orientation=vertical]/tabs:flex-col data-[variant=line]:rounded-none`,{variants:{variant:{default:`bg-muted`,line:`gap-1 bg-transparent`}},defaultVariants:{variant:`default`}});function Au({className:e,variant:t=`default`,...n}){return(0,J.jsx)(w,{"data-slot":`tabs-list`,"data-variant":t,className:V(ku({variant:t}),e),...n})}function ju({className:e,...t}){return(0,J.jsx)(ce,{"data-slot":`tabs-trigger`,className:V(`relative inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border border-transparent px-2 py-1 text-sm font-medium whitespace-nowrap text-foreground/60 transition-all group-data-[orientation=vertical]/tabs:w-full group-data-[orientation=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 group-data-[variant=default]/tabs-list:data-[state=active]:shadow-sm group-data-[variant=line]/tabs-list:data-[state=active]:shadow-none dark:text-muted-foreground dark:hover:text-foreground [&_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-[state=active]:bg-transparent dark:group-data-[variant=line]/tabs-list:data-[state=active]:border-transparent dark:group-data-[variant=line]/tabs-list:data-[state=active]:bg-transparent`,`data-[state=active]:bg-background data-[state=active]:text-foreground dark:data-[state=active]:border-input dark:data-[state=active]:bg-input/30 dark:data-[state=active]:text-foreground`,`after:absolute after:bg-foreground after:opacity-0 after:transition-opacity group-data-[orientation=horizontal]/tabs:after:inset-x-0 group-data-[orientation=horizontal]/tabs:after:bottom-[-5px] group-data-[orientation=horizontal]/tabs:after:h-0.5 group-data-[orientation=vertical]/tabs:after:inset-y-0 group-data-[orientation=vertical]/tabs:after:-right-1 group-data-[orientation=vertical]/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-[state=active]:after:opacity-100`,e),...t})}function Mu({className:e,...t}){return(0,J.jsx)(oe,{"data-slot":`tabs-content`,className:V(`flex-1 outline-none`,e),...t})}function Nu({open:e,onOpenChange:t}){let n=B(e=>e.importThemeFrom),r=B(e=>e.setCustomTheme),[i,a]=(0,q.useState)(`url`),[o,s]=(0,q.useState)(``),[c,l]=(0,q.useState)(``),[u,d]=(0,q.useState)(``),[f,p]=(0,q.useState)(!1),m=()=>{s(``),l(``),d(``),a(`url`)},h=async()=>{let e=i===`url`?o.trim():c.trim();if(!e){I.error(`Nothing to import`);return}p(!0);try{let a=await n({source:i===`url`?`url`:i===`upload`?`upload`:`json`,value:e,name:u.trim()||void 0});I.success(a.length>1?`Imported ${a.length} themes`:`Imported "${a[0]?.name}"`),a[0]&&r(a[0].id),m(),t(!1)}catch(e){I.error(e.message||`Import failed`)}finally{p(!1)}},g=async e=>{if(e)try{l(await e.text()),d(e.name.replace(/\.json$/i,``))}catch{I.error(`Could not read file`)}};return(0,J.jsx)(Ue,{open:e,onOpenChange:t,children:(0,J.jsxs)(ze,{className:`max-w-md`,children:[(0,J.jsxs)(Ie,{children:[(0,J.jsx)(Be,{children:`Import theme`}),(0,J.jsx)(Ve,{className:`text-text-3`,children:`Import a VSCode color theme. Single-mode themes apply to both dark and light.`})]}),(0,J.jsxs)(Ou,{value:i,onValueChange:e=>a(e),children:[(0,J.jsxs)(Au,{className:`w-full`,children:[(0,J.jsx)(ju,{value:`url`,className:`flex-1`,children:`URL`}),(0,J.jsx)(ju,{value:`json`,className:`flex-1`,children:`Paste JSON`}),(0,J.jsx)(ju,{value:`upload`,className:`flex-1`,children:`Upload`})]}),(0,J.jsxs)(Mu,{value:`url`,className:`space-y-2 pt-2`,children:[(0,J.jsx)(Z,{placeholder:`https://…/theme.json or Marketplace .vsix URL`,value:o,onChange:e=>s(e.target.value)}),(0,J.jsx)(`p`,{className:`text-[11px] text-text-3`,children:`Only https URLs; private/internal addresses are blocked.`})]}),(0,J.jsx)(Mu,{value:`json`,className:`pt-2`,children:(0,J.jsx)(`textarea`,{className:`w-full h-40 rounded-md border border-border bg-surface p-2 text-xs font-mono text-text focus:outline-none focus:border-ring`,placeholder:`{ "name": "My Theme", "type": "dark", "colors": { … }, "tokenColors": [ … ] }`,value:c,onChange:e=>l(e.target.value)})}),(0,J.jsxs)(Mu,{value:`upload`,className:`space-y-2 pt-2`,children:[(0,J.jsx)(`input`,{type:`file`,accept:`.json,application/json`,onChange:e=>g(e.target.files?.[0]),className:`block w-full text-xs text-text-2 file:mr-3 file:rounded file:border file:border-border file:bg-panel-2 file:px-2 file:py-1 file:text-text`}),c&&(0,J.jsxs)(`p`,{className:`text-[11px] text-success`,children:[`File loaded (`,c.length,` chars)`]})]})]}),(0,J.jsx)(Z,{placeholder:`Optional name`,value:u,onChange:e=>d(e.target.value)}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(F,{variant:`outline`,onClick:()=>t(!1),disabled:f,children:`Cancel`}),(0,J.jsx)(F,{onClick:h,disabled:f,children:f?`Importing…`:`Import`})]})]})})}function Pu(){let e=B(e=>e.customThemes),t=B(e=>e.themeStyle),n=B(e=>e.customThemeId),r=B(e=>e.setCustomTheme),i=B(e=>e.deleteCustomTheme),[a,o]=(0,q.useState)(!1);return(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Imported themes`}),(0,J.jsxs)(F,{size:`sm`,variant:`outline`,className:`h-7 gap-1 text-xs`,onClick:()=>o(!0),children:[(0,J.jsx)(Ze,{className:`size-3.5`}),` Import`]})]}),e.length===0?(0,J.jsx)(`p`,{className:`text-[11px] text-text-3`,children:`No imported themes yet. Import a VSCode theme from a URL, .vsix, or JSON.`}):(0,J.jsx)(`ul`,{className:`space-y-1`,children:e.map(e=>{let a=t===`custom`&&n===e.id;return(0,J.jsxs)(`li`,{className:V(`flex items-center gap-2 rounded-md border px-2 py-1.5`,a?`border-primary bg-primary/10`:`border-border`),children:[(0,J.jsx)(Du,{swatch:e.swatch}),(0,J.jsxs)(`button`,{className:`flex-1 min-w-0 text-left`,onClick:()=>r(e.id),children:[(0,J.jsx)(`span`,{className:`block truncate text-xs text-text`,children:e.name}),(0,J.jsx)(`span`,{className:`block text-[10px] text-text-3`,children:e.mode})]}),a&&(0,J.jsx)(xe,{className:`size-4 text-primary shrink-0`}),(0,J.jsx)(`button`,{className:`text-text-3 hover:text-error transition-colors shrink-0`,title:`Delete`,onClick:()=>void i(e.id),children:(0,J.jsx)(Rr,{className:`size-3.5`})})]},e.id)})}),(0,J.jsx)(Nu,{open:a,onOpenChange:o})]})}function Fu(e){return e<1024*1024?`${(e/1024).toFixed(0)} KB`:`${(e/1024/1024).toFixed(1)} MB`}function Iu(){let[e,t]=(0,q.useState)(null),[n,r]=(0,q.useState)(``),[i,a]=(0,q.useState)(``),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(!1);function u(e){t(e),r(String(e.retention_days)),a(String(e.max_size_mb))}(0,q.useEffect)(()=>{ht().then(u).catch(e=>I.error(`Could not load audit settings`,{description:e.message}))},[]);async function d(){s(!0);try{u(await pt({retention_days:Number(n),max_size_mb:Number(i)})),I.success(`Audit retention updated`)}catch(e){I.error(`Could not save`,{description:e.message})}finally{s(!1)}}async function f(){if(confirm(`Delete every recorded query? This cannot be undone.`)){l(!0);try{await _t(),u(await ht()),I.success(`Query audit log cleared`)}catch(e){I.error(`Could not clear the log`,{description:e.message})}finally{l(!1)}}}if(!e)return(0,J.jsx)(`div`,{className:`flex items-center justify-center py-8 text-muted-foreground`,children:(0,J.jsx)(K,{className:`size-4 animate-spin`})});let p=n!==String(e.retention_days)||i!==String(e.max_size_mb);return(0,J.jsxs)(`div`,{className:`space-y-4`,children:[(0,J.jsxs)(`p`,{className:`text-[11px] text-muted-foreground`,children:[`Every statement run from the SQL editor, the data grid and the `,(0,J.jsx)(`code`,{children:`ppm db`}),` CLI is recorded, together with a sample of the result. Entries are pruned once they pass either limit below — whichever comes first.`]}),(0,J.jsxs)(`div`,{className:`grid grid-cols-2 gap-3`,children:[(0,J.jsxs)(`label`,{className:`space-y-1`,children:[(0,J.jsx)(`span`,{className:`text-xs font-medium`,children:`Keep for (days)`}),(0,J.jsx)(Z,{type:`number`,min:1,value:n,onChange:e=>r(e.target.value),className:`h-8 text-xs`})]}),(0,J.jsxs)(`label`,{className:`space-y-1`,children:[(0,J.jsx)(`span`,{className:`text-xs font-medium`,children:`Max size (MB)`}),(0,J.jsx)(Z,{type:`number`,min:10,value:i,onChange:e=>a(e.target.value),className:`h-8 text-xs`})]})]}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between gap-2`,children:[(0,J.jsxs)(`span`,{className:`text-[11px] text-muted-foreground`,children:[e.entry_count.toLocaleString(),` entries · `,Fu(e.size_bytes),` on disk`]}),(0,J.jsx)(F,{size:`sm`,className:`h-8 text-xs`,disabled:!p||o,onClick:d,children:o?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):`Save`})]}),(0,J.jsxs)(F,{variant:`outline`,size:`sm`,className:`h-8 w-full gap-1.5 text-xs text-destructive`,disabled:c||e.entry_count===0,onClick:f,children:[c?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):(0,J.jsx)(Rr,{className:`size-3.5`}),`Clear all recorded queries`]})]})}function Lu(){let e=B(e=>e.themeStyle),t=B(e=>e.themeMode),n=B(e=>e.customThemeId),r=B(e=>e.customThemes),i=B(e=>e.setThemeStyle),a=B(e=>e.setThemeMode),o=xt(e,t,r,n);return(0,J.jsx)(`div`,{className:`grid grid-cols-2 gap-2`,children:yt.map(e=>{let t=bt[e];if(!t)return null;let n=o.id===e;return(0,J.jsxs)(`button`,{onClick:()=>{i(t.style),a(t.mode)},className:V(`relative flex items-center gap-2 rounded-lg border p-2 text-left transition-colors min-h-11`,n?`border-primary ring-[3px] ring-accent-wash`:`border-border hover:bg-accent/40`),children:[(0,J.jsx)(Du,{swatch:t.swatch}),(0,J.jsxs)(`span`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`span`,{className:`block truncate text-xs font-medium text-text`,children:t.name.replace(/ (Dark|Light)$/,``)}),(0,J.jsx)(`span`,{className:`block text-[10px] text-text-3 capitalize`,children:t.mode})]}),n&&(0,J.jsx)(xe,{className:`absolute top-1 right-1 size-3.5 text-primary`})]},e)})})}var Ru=[{value:`light`,label:`Light`,icon:Nr},{value:`dark`,label:`Dark`,icon:ar},{value:`system`,label:`System`,icon:ir}],zu=[{value:`default`,label:`Default`},{value:`boxed`,label:`Boxed`},{value:`pill`,label:`Pill`}],Bu=[{value:`ai`,label:`AI Provider`,subtitle:`Model, execution mode, limits`,icon:he},{value:`notifications`,label:`Notifications`,subtitle:`Push & Telegram alerts`,icon:It},{value:`clawbot`,label:`PPMBot`,subtitle:`Telegram AI bot`,icon:he},{value:`schedules`,label:`Scheduled Agents`,subtitle:`Run Claude on a cron schedule`,icon:Bt},{value:`proxy`,label:`API Proxy`,subtitle:`Expose accounts as Anthropic API`,icon:we},{value:`shortcuts`,label:`Keyboard Shortcuts`,subtitle:`Customize key bindings`,icon:Un},{value:`extensions`,label:`Extensions`,subtitle:`Install and manage extensions`,icon:vr},{value:`files`,label:`File Filters`,subtitle:`Exclude patterns, ignore files`,icon:Tn},{value:`queryAudit`,label:`Query Audit Log`,subtitle:`SQL history retention and size`,icon:sn}];function Vu(){let{theme:e,setTheme:t,deviceName:n,setDeviceName:r,version:i,jiraEnabled:a,setJiraEnabled:o,tabWrap:s,toggleTabWrap:c,editorTabStyle:l,setEditorTabStyle:u}=B(Tc(e=>({theme:e.themeMode,setTheme:e.setThemeMode,deviceName:e.deviceName,setDeviceName:e.setDeviceName,version:e.version,jiraEnabled:e.jiraEnabled,setJiraEnabled:e.setJiraEnabled,tabWrap:e.tabWrap,toggleTabWrap:e.toggleTabWrap,editorTabStyle:e.editorTabStyle,setEditorTabStyle:e.setEditorTabStyle}))),[d,f]=(0,q.useState)(null),[p,m]=(0,q.useState)(n??``),[h,g]=(0,q.useState)(!1),[_,v]=(0,q.useState)(!1),y=(0,q.useRef)(void 0),b=p.trim()!==(n??``),x=(0,q.useCallback)(async()=>{if(b){g(!0);try{await r(p),v(!0),clearTimeout(y.current),y.current=setTimeout(()=>v(!1),2e3)}finally{g(!1)}}},[p,b,r]);if(d){let e=Bu.find(e=>e.value===d),t=e.icon;return(0,J.jsxs)(`div`,{className:`h-full w-full flex flex-col`,children:[(0,J.jsxs)(`div`,{className:`shrink-0 px-2 pt-3 pb-1 flex items-center gap-1`,children:[(0,J.jsx)(F,{variant:`ghost`,size:`icon`,className:`size-8 cursor-pointer shrink-0`,onClick:()=>f(null),children:(0,J.jsx)(pe,{className:`size-4`})}),(0,J.jsx)(t,{className:`size-4 text-muted-foreground shrink-0`}),(0,J.jsx)(`h2`,{className:`text-sm font-semibold truncate`,children:e.label})]}),(0,J.jsx)(pl,{}),(0,J.jsx)(Dc,{className:`flex-1 min-h-0`,children:(0,J.jsxs)(`div`,{className:`p-3`,children:[d===`ai`&&(0,J.jsx)(Al,{compact:!0}),d===`notifications`&&(0,J.jsx)(Hu,{}),d===`clawbot`&&(0,J.jsx)(Hl,{}),d===`schedules`&&(0,J.jsx)(Eu,{}),d===`proxy`&&(0,J.jsx)(Bl,{}),d===`shortcuts`&&(0,J.jsx)(Fl,{}),d===`extensions`&&(0,J.jsx)(Vl,{}),d===`files`&&(0,J.jsx)(Xl,{}),d===`queryAudit`&&(0,J.jsx)(Iu,{})]})})]})}return(0,J.jsxs)(`div`,{className:`h-full w-full flex flex-col`,children:[(0,J.jsx)(`div`,{className:`shrink-0 px-3 pt-3 pb-1`,children:(0,J.jsx)(`h2`,{className:`text-sm font-semibold`,children:`Settings`})}),(0,J.jsx)(Dc,{className:`flex-1 min-h-0`,children:(0,J.jsxs)(`div`,{className:`p-3 space-y-4`,children:[(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Device Name`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,J.jsx)(Z,{value:p,onChange:e=>m(e.target.value),onKeyDown:e=>{e.key===`Enter`&&x()},placeholder:`My Device`,className:`h-8 text-xs flex-1`,maxLength:100}),(0,J.jsx)(F,{variant:_?`default`:`outline`,size:`sm`,className:`h-8 text-xs px-3 cursor-pointer`,disabled:!b||h,onClick:x,children:h?`...`:_?(0,J.jsx)(xe,{className:`size-3.5`}):`Save`})]}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Shown in page title and synced to PPM Cloud.`})]}),(0,J.jsx)(Ul,{}),(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Theme`}),(0,J.jsx)(Lu,{}),(0,J.jsx)(`div`,{className:`flex gap-1.5 pt-1`,children:Ru.map(n=>{let r=n.icon;return(0,J.jsxs)(F,{variant:e===n.value?`default`:`outline`,size:`sm`,onClick:()=>t(n.value),className:V(`flex-1 gap-1.5 text-xs h-8 cursor-pointer`,e===n.value&&`ring-2 ring-primary`),children:[(0,J.jsx)(r,{className:`size-3.5`}),n.label]},n.value)})})]}),(0,J.jsx)(Pu,{}),(0,J.jsx)(`section`,{className:`space-y-1`,children:(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(zt,{className:`size-4 text-muted-foreground`}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`p`,{className:`text-xs font-medium`,children:`Jira Watcher`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Auto-debug Jira tickets`})]})]}),(0,J.jsx)(fl,{checked:a,onCheckedChange:o})]})}),(0,J.jsx)(`section`,{className:`space-y-1`,children:(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(Lr,{className:`size-4 text-muted-foreground`}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`p`,{className:`text-xs font-medium`,children:`Wrap Tabs`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Stack tabs in rows instead of scrolling`})]})]}),(0,J.jsx)(fl,{checked:s,onCheckedChange:c})]})}),(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Tab Style`}),(0,J.jsx)(`div`,{className:`flex gap-1.5`,children:zu.map(e=>(0,J.jsx)(F,{variant:l===e.value?`default`:`outline`,size:`sm`,onClick:()=>u(e.value),className:V(`flex-1 text-xs h-8 cursor-pointer`,l===e.value&&`ring-2 ring-primary`),children:e.label},e.value))})]}),(0,J.jsx)(pl,{}),(0,J.jsx)(`nav`,{className:`space-y-1`,"aria-label":`Settings categories`,children:Bu.map(e=>{let t=e.icon;return(0,J.jsxs)(`button`,{onClick:()=>f(e.value),className:`w-full flex items-center gap-3 px-2.5 py-2.5 rounded-lg hover:bg-accent/50 active:bg-accent transition-colors cursor-pointer text-left group`,children:[(0,J.jsx)(`div`,{className:`size-8 rounded-md bg-muted flex items-center justify-center shrink-0 group-hover:bg-accent`,children:(0,J.jsx)(t,{className:`size-4 text-muted-foreground`})}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,J.jsx)(`p`,{className:`text-xs font-medium text-foreground truncate`,children:e.label}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground truncate`,children:e.subtitle})]}),(0,J.jsx)(Fe,{className:`size-4 text-muted-foreground shrink-0`})]},e.value)})}),(0,J.jsx)(pl,{}),(0,J.jsxs)(`section`,{className:`space-y-1 pb-2`,children:[(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`PPM — Personal Project Manager`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`A mobile-first web IDE for managing your projects.`}),i&&(0,J.jsxs)(`p`,{className:`text-[11px] text-muted-foreground tabular-nums`,children:[`Version `,i]})]})]})})]})}function Hu(){return(0,J.jsxs)(`div`,{className:`space-y-4`,children:[(0,J.jsxs)(`section`,{className:`space-y-2`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Push Notifications`}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,J.jsx)(Lt,{className:`size-3.5 text-muted-foreground`}),(0,J.jsx)(`span`,{className:`text-xs`,children:`Not available yet`})]}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Browser push does not deliver right now. Use Telegram below to get alerted when a session finishes or needs approval.`})]}),(0,J.jsx)(pl,{}),(0,J.jsxs)(`section`,{className:`space-y-1`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Telegram`}),(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Telegram notifications are sent to all approved devices in PPMBot settings. Configure your bot token and pair devices there.`})]})]})}function Uu({connId:e,schemas:t,isSingleSchema:n,filter:r,expandedTables:i,loadingColumns:a,columnCache:o,columnErrors:s,onToggleTable:c,onOpenTable:l}){let u=r.toLowerCase();return(0,J.jsxs)(`div`,{className:`overflow-y-auto max-h-[40vh]`,children:[Array.from(t.entries()).map(([t,r])=>{let d=u?r.filter(e=>e.tableName.toLowerCase().includes(u)):r;return d.length===0?null:(0,J.jsxs)(`div`,{children:[!n&&(0,J.jsx)(`p`,{className:`px-2 py-0.5 text-[9px] font-semibold text-text-subtle uppercase tracking-wider`,children:t}),d.map(t=>{let n=`${e}:${t.schemaName}.${t.tableName}`,r=i.has(n),u=a.has(n),d=o?.get(n),f=s?.has(n);return(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1 pl-2 pr-2 py-0.5 hover:bg-surface-elevated transition-colors group/table`,children:[(0,J.jsx)(`button`,{onClick:()=>c(e,t.tableName,t.schemaName),className:`shrink-0 text-text-subtle hover:text-foreground transition-colors`,children:r?(0,J.jsx)(Ne,{className:`size-2.5`}):(0,J.jsx)(Fe,{className:`size-2.5`})}),(0,J.jsx)(Je,{className:`size-2.5 shrink-0 text-text-subtle`}),(0,J.jsx)(`button`,{onClick:()=>l(t.tableName,t.schemaName),className:`flex-1 text-left text-[11px] text-text-secondary hover:text-foreground transition-colors truncate`,children:t.tableName}),(0,J.jsx)(`span`,{className:`text-[9px] text-text-subtle`,children:t.rowCount})]}),r&&(0,J.jsxs)(`div`,{className:`ml-[18px] border-l border-dotted border-border pl-2`,children:[u&&(0,J.jsx)(`p`,{className:`text-[9px] text-text-subtle px-1 py-0.5`,children:`Loading…`}),f&&(0,J.jsx)(`p`,{className:`text-[9px] text-error px-1 py-0.5`,children:`Failed to load columns`}),d&&d.map(e=>(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-1 py-px text-[10px] text-text-subtle`,title:e.fk?`FK → ${e.fk.table}.${e.fk.column}`:void 0,children:[e.pk&&(0,J.jsx)(Hn,{className:`size-2.5 text-warning shrink-0`}),e.fk&&(0,J.jsx)(Gn,{className:`size-2.5 text-primary shrink-0`}),!e.pk&&!e.fk&&(0,J.jsx)(`span`,{className:`size-2.5 shrink-0`}),(0,J.jsxs)(`span`,{className:`truncate`,children:[e.name,e.nullable?`?`:``]}),(0,J.jsx)(`span`,{className:`ml-auto text-[9px] text-text-subtle/60 shrink-0`,children:e.type})]},e.name)),!u&&!f&&!d&&(0,J.jsx)(`p`,{className:`text-[9px] text-text-subtle px-1 py-0.5`,children:`No columns`})]})]},n)})]},t)}),r&&Array.from(t.values()).every(e=>!e.some(e=>e.tableName.toLowerCase().includes(u)))&&(0,J.jsx)(`p`,{className:`text-[10px] text-text-subtle px-2 py-1`,children:`No match`})]})}function Wu({conn:e,isExpanded:t,isRefreshing:n,tables:r,schemas:i,isSingleSchema:a,filter:o,expandedTables:s,loadingColumns:c,columnCache:l,columnErrors:u,refreshError:d,hasGroup:f,onToggle:p,onRefresh:m,onEdit:h,onDelete:g,onOpenTable:_,onToggleTable:v,onFilterChange:y}){let b=()=>p(e.id,!t&&r.length===0);return(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{className:V(`group flex items-center gap-1 py-1 hover:bg-surface-elevated transition-colors`,f?`pl-3 pr-2`:`px-2`),children:[(0,J.jsx)(`button`,{onClick:b,className:`shrink-0 text-text-subtle hover:text-foreground transition-colors`,children:t?(0,J.jsx)(Ne,{className:`size-3`}):(0,J.jsx)(Fe,{className:`size-3`})}),(0,J.jsx)(`span`,{className:`shrink-0 size-2 rounded-full border border-border`,style:{backgroundColor:e.color??`transparent`}}),(0,J.jsx)(`button`,{className:`flex-1 text-left text-xs truncate hover:text-primary transition-colors`,onClick:b,children:e.name}),(0,J.jsx)(`span`,{className:`shrink-0 text-[9px] text-text-subtle uppercase px-1 rounded bg-surface-elevated`,children:e.type===`postgres`?`PG`:`DB`}),e.readonly===1&&(0,J.jsx)(`span`,{title:`Readonly`,children:(0,J.jsx)(Yn,{className:`shrink-0 size-2.5 text-text-subtle`})}),(0,J.jsxs)(`div`,{className:`flex can-hover:hidden can-hover:group-hover:flex items-center gap-0.5 shrink-0`,children:[(0,J.jsx)(`button`,{onClick:()=>m(e.id),disabled:n,className:`p-0.5 text-text-subtle hover:text-foreground transition-colors`,title:`Refresh tables`,children:(0,J.jsx)(br,{className:V(`size-3`,n&&`animate-spin`)})}),(0,J.jsx)(`button`,{onClick:()=>h(e),className:`p-0.5 text-text-subtle hover:text-foreground transition-colors`,title:`Edit`,children:(0,J.jsx)(De,{className:`size-3`})}),(0,J.jsx)(`button`,{onClick:()=>g(e.id),className:`p-0.5 text-text-subtle hover:text-error transition-colors`,title:`Delete`,children:(0,J.jsx)(Rr,{className:`size-3`})})]})]}),t&&(0,J.jsxs)(`div`,{className:`ml-[11px] border-l border-dashed border-border pl-1`,children:[n&&r.length===0&&(0,J.jsx)(`p`,{className:`text-[10px] text-text-subtle px-2 py-1`,children:`Loading…`}),!n&&r.length===0&&(d?(0,J.jsx)(`p`,{className:`text-[10px] text-error px-2 py-1 break-all`,children:d}):(0,J.jsx)(`p`,{className:`text-[10px] text-text-subtle px-2 py-1`,children:`No tables cached`})),r.length>0&&(0,J.jsxs)(J.Fragment,{children:[r.length>5&&(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-0.5`,children:[(0,J.jsx)(Ge,{className:`size-2.5 text-text-subtle shrink-0`}),(0,J.jsx)(`input`,{type:`text`,value:o,onChange:t=>y(e.id,t.target.value),placeholder:`Filter tables…`,className:`w-full text-[10px] bg-transparent border-none outline-none text-foreground placeholder:text-text-subtle`})]}),(0,J.jsx)(Uu,{connId:e.id,schemas:i,isSingleSchema:a,filter:o,expandedTables:s,loadingColumns:c,columnCache:l,columnErrors:u,onToggleTable:v,onOpenTable:(t,n)=>_(e,t,n)})]})]})]})}function Gu(e,t,n){return`${e}:${t}.${n}`}function Ku(e){return Number(e.slice(0,e.indexOf(`:`)))}function qu(){let e=B(e=>e.dbSidebarExpanded),t=B(e=>e.setDbSidebarExpanded),n=(0,q.useMemo)(()=>new Set(e.conns),[e.conns]),r=(0,q.useMemo)(()=>new Set(e.groups),[e.groups]),i=(0,q.useMemo)(()=>new Set(e.tables),[e.tables]),a=(0,q.useCallback)(e=>{let n=B.getState().dbSidebarExpanded,r=e(n);r!==n&&t(r)},[t]);return{expandedConns:n,expandedGroups:r,expandedTables:i,toggleConn:(0,q.useCallback)(e=>{a(t=>({...t,conns:t.conns.includes(e)?t.conns.filter(t=>t!==e):[...t.conns,e]}))},[a]),toggleGroup:(0,q.useCallback)(e=>{a(t=>({...t,groups:t.groups.includes(e)?t.groups.filter(t=>t!==e):[...t.groups,e]}))},[a]),setTableExpanded:(0,q.useCallback)((e,t)=>{a(n=>({...n,tables:t?n.tables.includes(e)?n.tables:[...n.tables,e]:n.tables.filter(t=>t!==e)}))},[a]),pruneDeletedConns:(0,q.useCallback)(e=>{let t=new Set(e);a(e=>{let n=e.conns.filter(e=>t.has(e)),r=e.tables.filter(e=>t.has(Ku(e)));return n.length===e.conns.length&&r.length===e.tables.length?e:{...e,conns:n,tables:r}})},[a])}}function Ju({connections:e,cachedTables:t,refreshErrors:n,onOpenTable:r,onRefreshTables:i,onEdit:a,onDelete:o,onFetchColumns:s,columnCache:c}){let{expandedConns:l,expandedGroups:u,expandedTables:d,toggleConn:f,toggleGroup:p,setTableExpanded:m,pruneDeletedConns:h}=qu(),[g,_]=(0,q.useState)(new Set),[v,y]=(0,q.useState)(new Map),[b,x]=(0,q.useState)(new Set),[S,C]=(0,q.useState)(new Set),w=(e,t)=>{f(e),t&&D(e)},T=async(e,t,n)=>{let r=Gu(e,n,t);if(!(!s||c?.has(r))){x(e=>new Set(e).add(r)),C(e=>{let t=new Set(e);return t.delete(r),t});try{await s(e,t,n)}catch{C(e=>new Set(e).add(r))}x(e=>{let t=new Set(e);return t.delete(r),t})}},E=async(e,t,n)=>{let r=Gu(e,n,t);if(d.has(r)){m(r,!1);return}m(r,!0),await T(e,t,n)},D=async e=>{_(t=>new Set(t).add(e));try{await i(e)}finally{_(t=>{let n=new Set(t);return n.delete(e),n})}},O=(e,t)=>{y(n=>new Map(n).set(e,t))},k=(0,q.useRef)(new Set);(0,q.useEffect)(()=>{if(e.length!==0){h(e.map(e=>e.id));for(let n of e){if(!l.has(n.id))continue;let e=t.get(n.id)??[];if(e.length===0){if(k.current.has(`conn:${n.id}`))continue;k.current.add(`conn:${n.id}`),D(n.id).catch(()=>{});continue}for(let t of e){let e=Gu(n.id,t.schemaName,t.tableName);!d.has(e)||c?.has(e)||k.current.has(e)||(k.current.add(e),T(n.id,t.tableName,t.schemaName))}}}},[e,t,l,d,c,h]);let{groups:A,groupKeys:ee}=(0,q.useMemo)(()=>{let t={};for(let n of e){let e=n.group_name??`__ungrouped__`;(t[e]??=[]).push(n)}return{groups:t,groupKeys:Object.keys(t).sort((e,t)=>e===`__ungrouped__`?1:t===`__ungrouped__`?-1:e.localeCompare(t))}},[e]),te=(0,q.useMemo)(()=>{let n=new Map;for(let r of e){let e=t.get(r.id)??[],i=new Map;for(let t of e){let e=t.schemaName;(i.get(e)??i.set(e,[]).get(e)).push(t)}n.set(r.id,i)}return n},[e,t]);return e.length===0?(0,J.jsxs)(`p`,{className:`px-4 py-6 text-xs text-text-subtle text-center`,children:[`No connections yet.`,(0,J.jsx)(`br`,{}),`Click + to add one.`]}):(0,J.jsx)(`div`,{className:`py-1`,children:ee.map(e=>{let i=u.has(e),s=e===`__ungrouped__`?`Ungrouped`:e,f=A[e],m=ee.length>1||e!==`__ungrouped__`;return(0,J.jsxs)(`div`,{children:[m&&(0,J.jsxs)(`button`,{onClick:()=>p(e),className:`w-full flex items-center gap-1 px-2 py-1 text-[10px] font-semibold text-text-subtle uppercase tracking-wider hover:text-text-secondary transition-colors`,children:[i?(0,J.jsx)(Ne,{className:`size-3`}):(0,J.jsx)(Fe,{className:`size-3`}),s]}),i&&(0,J.jsx)(`div`,{className:m?`ml-[11px] border-l border-dashed border-border`:``,children:f.map(e=>(0,J.jsx)(Wu,{conn:e,isExpanded:l.has(e.id),isRefreshing:g.has(e.id),tables:t.get(e.id)??[],schemas:te.get(e.id)??new Map,isSingleSchema:(te.get(e.id)?.size??0)<=1,filter:v.get(e.id)??``,expandedTables:d,loadingColumns:b,columnCache:c,columnErrors:S,refreshError:n?.get(e.id),hasGroup:m,onToggle:w,onRefresh:D,onEdit:a,onDelete:o,onOpenTable:r,onToggleTable:E,onFilterChange:O},e.id))})]},e)})})}var Yu=`ppm-recent-paths`,Xu=5,Zu=[{name:`Home`,path:`~`,icon:Rn},{name:`Desktop`,path:`~/Desktop`,icon:ir},{name:`Documents`,path:`~/Documents`,icon:yn},{name:`Downloads`,path:`~/Downloads`,icon:Xe}];function Qu(){try{return JSON.parse(localStorage.getItem(Yu)??`[]`)}catch{return[]}}function $u(e){let t=[e,...Qu().filter(t=>t!==e)].slice(0,Xu);localStorage.setItem(Yu,JSON.stringify(t))}function ed(e){return e==null?``:e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`}function td(e){let t=Date.now()-new Date(e).getTime(),n=Math.floor(t/6e4);if(n<1)return`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 nd(e){if(e.type===`directory`)return(0,J.jsx)(On,{className:`size-4 text-primary`});let t=e.name.split(`.`).pop()?.toLowerCase();return t&&[`db`,`sqlite`,`sqlite3`].includes(t)?(0,J.jsx)(Je,{className:`size-4 text-warning`}):(0,J.jsx)(xn,{className:`size-4 text-text-subtle`})}function rd(e,t){if(!t?.length)return!0;let n=`.`+e.split(`.`).pop()?.toLowerCase();return t.includes(n)}function id({open:e,mode:t,accept:n,root:r,title:i,onSelect:a,onCancel:o}){let[s,c]=(0,q.useState)([]),[l,u]=(0,q.useState)(``),[d,f]=(0,q.useState)(null),[p,m]=(0,q.useState)([]),[h,g]=(0,q.useState)(null),[_,v]=(0,q.useState)(!1),[y,b]=(0,q.useState)(null),[x,S]=(0,q.useState)(``),[C,w]=(0,q.useState)(``),[T,E]=(0,q.useState)(!1),[D,O]=(0,q.useState)([]),[k,A]=(0,q.useState)(null),[ee,te]=(0,q.useState)(!1),[ne,j]=(0,q.useState)(null),M=(0,q.useRef)(null),re=(0,q.useRef)(null),ie=typeof window<`u`&&window.innerWidth<768,ae=t===`folder`?`Select Folder`:t===`file`?`Select File`:`Select File or Folder`,oe=(0,q.useCallback)(async(e,t)=>{v(!0),b(null),g(null),S(``);try{let n=new URLSearchParams;e&&n.set(`path`,e),t&&n.set(`showHidden`,`true`);let r=await R.get(`/api/fs/browse?${n}`);c(r.entries),u(r.current),f(r.parent),m(r.breadcrumbs),w(r.current)}catch(e){b(e.message||`Failed to browse directory`)}finally{v(!1)}},[]);(0,q.useEffect)(()=>{e&&(oe(r??`~`,T),O(Qu()))},[e,r,oe,T]);let se=e=>oe(e,T),ce=()=>{let e=!T;E(e),oe(l||(r??`~`),e)},N=e=>{e.key===`Enter`&&C.trim()&&oe(C.trim())},le=e=>{e.type===`directory`?t===`file`?se(e.path):g(e.path):t!==`folder`&&g(e.path)},ue=e=>{e.type===`directory`&&se(e.path)},de=()=>{h&&($u(l),a(h))},fe=async()=>{if(!k?.trim()||!l)return;let e=`${l}/${k.trim()}`;te(!0),j(null);try{await R.post(`/api/fs/mkdir`,{path:e}),A(null),j(null),await oe(l,T),g(e)}catch(e){j(e.message||`Failed to create folder`)}finally{te(!1)}},P=async()=>{if(!h)return;let e=s.find(e=>e.path===h);if(!(!e||e.type!==`directory`)&&window.confirm(`Delete folder "${e.name}"? This cannot be undone.`))try{await R.del(`/api/fs/rmdir`,{path:h}),g(null),await oe(l,T)}catch(e){b(e.message||`Failed to delete folder`)}},he=h?s.some(e=>e.path===h&&e.type===`directory`):!1,ge=s.filter(e=>!(x&&!e.name.toLowerCase().includes(x.toLowerCase())||e.type===`file`&&n?.length&&!rd(e.name,n))),_e=e=>e.type===`directory`?t!==`file`:t!==`folder`,ve=(0,J.jsxs)(`div`,{className:`flex flex-col flex-1 min-h-0`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 px-3 py-2 border-b border-border`,children:[d&&(0,J.jsx)(F,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0`,onClick:()=>se(d),children:(0,J.jsx)(pe,{className:`size-4`})}),(0,J.jsx)(Z,{value:C,onChange:e=>w(e.target.value),onKeyDown:N,placeholder:`Type path and press Enter`,className:`h-7 text-xs font-mono flex-1`})]}),(0,J.jsx)(`div`,{className:`flex items-center gap-0.5 px-3 py-1.5 border-b border-border overflow-x-auto text-xs`,children:p.map((e,t)=>(0,J.jsxs)(`span`,{className:`flex items-center shrink-0`,children:[t>0&&(0,J.jsx)(Fe,{className:`size-3 text-text-subtle mx-0.5`}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>se(e.path),className:`hover:text-primary hover:underline text-text-secondary`,children:e.name})]},e.path))}),(0,J.jsxs)(`div`,{className:`flex flex-1 min-h-0 overflow-hidden`,children:[!ie&&(0,J.jsxs)(`div`,{className:`w-36 border-r border-border py-2 px-1 shrink-0 overflow-y-auto`,children:[Zu.map(e=>(0,J.jsxs)(`button`,{type:`button`,onClick:()=>se(e.path),className:V(`flex items-center gap-2 w-full px-2 py-1 text-xs rounded-md hover:bg-surface-hover text-left`,l.endsWith(e.name)&&`bg-primary/10 text-primary`),children:[(0,J.jsx)(e.icon,{className:`size-3.5`}),e.name]},e.path)),D.length>0&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`text-[10px] text-text-subtle px-2 mt-3 mb-1 font-medium`,children:`Recent`}),D.map(e=>(0,J.jsxs)(`button`,{type:`button`,onClick:()=>se(e),className:`flex items-center gap-2 w-full px-2 py-1 text-xs rounded-md hover:bg-surface-hover text-left truncate`,children:[(0,J.jsx)(We,{className:`size-3 shrink-0`}),(0,J.jsx)(`span`,{className:`truncate`,children:e.split(`/`).pop()})]},e))]})]}),(0,J.jsx)(Dc,{className:`flex-1 min-h-0`,children:_?(0,J.jsx)(`div`,{className:`flex items-center justify-center py-12`,children:(0,J.jsx)(K,{className:`size-5 animate-spin text-text-subtle`})}):y?(0,J.jsx)(`div`,{className:`text-center py-8 text-xs text-error`,children:y}):ge.length===0?(0,J.jsx)(`div`,{className:`text-center py-8 text-xs text-text-subtle`,children:x?`No matching entries`:`Empty directory`}):(0,J.jsxs)(`div`,{ref:re,className:`py-1`,children:[k!=null&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-1.5 bg-primary/5 border-b border-border`,children:[(0,J.jsx)(wn,{className:`size-4 text-primary shrink-0`}),(0,J.jsx)(Z,{ref:M,value:k,onChange:e=>A(e.target.value),onKeyDown:e=>{e.key===`Enter`&&fe(),e.key===`Escape`&&A(null)},placeholder:`Folder name`,className:`h-6 text-xs flex-1`,disabled:ee,autoFocus:!0}),ee&&(0,J.jsx)(K,{className:`size-3.5 animate-spin text-primary shrink-0`})]}),ne&&(0,J.jsx)(`div`,{className:`px-3 py-1 text-[11px] text-destructive bg-destructive/5 border-b border-border`,children:ne})]}),ge.map(e=>{let t=_e(e);return(0,J.jsxs)(`button`,{type:`button`,onClick:()=>le(e),onDoubleClick:()=>ue(e),className:V(`flex items-center gap-2 w-full px-3 py-1.5 text-left text-xs transition-colors`,h===e.path?`bg-primary/10 text-primary`:t?`hover:bg-surface-hover text-text-primary`:`opacity-40 cursor-default`),disabled:!t&&e.type===`file`,children:[nd(e),(0,J.jsx)(`span`,{className:V(`flex-1 truncate`,e.type===`directory`&&`font-medium`),children:e.name}),(0,J.jsx)(`span`,{className:`text-text-subtle text-[10px] shrink-0 w-14 text-right`,children:ed(e.size)}),(0,J.jsx)(`span`,{className:`text-text-subtle text-[10px] shrink-0 w-14 text-right`,children:td(e.modified)})]},e.path)})]})})]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-2 border-t border-border shrink-0`,children:[(0,J.jsx)(F,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0`,onClick:()=>{A(``),j(null),setTimeout(()=>M.current?.focus(),50)},title:`New Folder`,children:(0,J.jsx)(wn,{className:`size-3.5`})}),(0,J.jsx)(F,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0 text-destructive/70 hover:text-destructive disabled:opacity-30`,onClick:P,disabled:!he,title:`Delete selected folder`,children:(0,J.jsx)(Rr,{className:`size-3.5`})}),(0,J.jsx)(F,{variant:`ghost`,size:`icon`,className:V(`size-7 shrink-0`,T&&`text-primary`),onClick:ce,title:T?`Hide hidden files`:`Show hidden files`,children:T?(0,J.jsx)(Ye,{className:`size-3.5`}):(0,J.jsx)(me,{className:`size-3.5`})}),n?.length?(0,J.jsx)(`span`,{className:`text-[10px] text-text-subtle bg-surface-hover px-1.5 py-0.5 rounded`,children:n.join(`, `)}):null,(0,J.jsx)(`div`,{className:`flex-1 max-w-48`,children:(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsx)(Ge,{className:`absolute left-2 top-1/2 -translate-y-1/2 size-3 text-text-subtle`}),(0,J.jsx)(Z,{value:x,onChange:e=>S(e.target.value),placeholder:`Filter...`,className:`h-6 text-[11px] pl-6`})]})}),(0,J.jsx)(`div`,{className:`flex-1`}),(0,J.jsx)(F,{variant:`outline`,size:`sm`,onClick:o,className:`h-7 text-xs`,children:`Cancel`}),(0,J.jsx)(F,{size:`sm`,onClick:de,disabled:!h,className:`h-7 text-xs`,children:`Select`})]})]});return(0,J.jsx)(Ue,{open:e,onOpenChange:e=>{e||o()},children:(0,J.jsxs)(ze,{className:V(`p-0 gap-0 overflow-hidden flex flex-col`,ie?`max-w-[95vw] h-[85vh]`:`max-w-2xl h-[70vh]`),children:[(0,J.jsx)(Ie,{className:`px-3 py-2 border-b border-border`,children:(0,J.jsx)(Be,{className:`text-sm`,children:i??ae})}),ve]})})}function ad({mode:e,accept:t,root:n,title:r,onSelect:i,className:a}){let[o,s]=(0,q.useState)(!1);return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(F,{type:`button`,variant:`ghost`,size:`icon`,className:V(`size-8 shrink-0`,a),onClick:()=>s(!0),title:r??`Browse...`,children:(0,J.jsx)(Cn,{className:`size-4`})}),(0,J.jsx)(id,{open:o,mode:e,accept:t,root:n,title:r,onSelect:e=>{i(e),s(!1)},onCancel:()=>s(!1)})]})}var od=[`#ef4444`,`#f97316`,`#eab308`,`#22c55e`,`#06b6d4`,`#3b82f6`,`#8b5cf6`,`#ec4899`,`#6b7280`,`#000000`];function sd({value:e,onChange:t}){return(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsxs)(`div`,{className:`flex flex-wrap gap-1.5`,children:[(0,J.jsx)(`button`,{type:`button`,onClick:()=>t(null),className:V(`size-6 rounded-full border-2 transition-all`,e?`border-border hover:scale-105`:`border-primary scale-110`,`bg-transparent relative`),title:`No color`,children:(0,J.jsx)(`span`,{className:`absolute inset-0 flex items-center justify-center text-[8px] text-text-subtle`,children:`×`})}),od.map(n=>(0,J.jsx)(`button`,{type:`button`,onClick:()=>t(n),className:V(`size-6 rounded-full border-2 transition-all hover:scale-105`,e===n?`border-primary scale-110`:`border-transparent`),style:{backgroundColor:n},title:n},n))]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(`div`,{className:`size-6 rounded-full border border-border shrink-0`,style:{backgroundColor:e??`transparent`}}),(0,J.jsx)(`input`,{type:`text`,value:e??``,onChange:e=>{let n=e.target.value.trim();if(n===``){t(null);return}/^#[0-9a-fA-F]{6}$/.test(n),t(n)},placeholder:`#3b82f6`,className:`flex-1 h-7 text-xs px-2 rounded-md border border-border bg-background focus:outline-none focus:border-primary font-mono`})]})]})}function cd({open:e,onClose:t,connection:n,onSave:r,onUpdate:i,onTest:a,onTestRaw:o}){let s=!!n,[c,l]=(0,q.useState)({name:``,type:`postgres`,path:``,connectionString:``,groupName:``,color:null,readonly:!0}),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(null),[m,h]=(0,q.useState)(!1),[g,_]=(0,q.useState)(null);(0,q.useEffect)(()=>{if(!e){p(null),_(null);return}l(n?{name:n.name,type:n.type,path:``,connectionString:``,groupName:n.group_name??``,color:n.color,readonly:n.readonly===1}:{name:``,type:`postgres`,path:``,connectionString:``,groupName:``,color:null,readonly:!0})},[e,n]);let v=(e,t)=>{l(n=>({...n,[e]:t})),p(null)};return(0,J.jsx)(Ue,{open:e,onOpenChange:e=>{e||t()},children:(0,J.jsxs)(ze,{className:`max-w-md`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:s?`Edit Connection`:`Add Connection`})}),(0,J.jsxs)(`div`,{className:`space-y-3 py-1`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Name *`}),(0,J.jsx)(`input`,{value:c.name,onChange:e=>v(`name`,e.target.value),placeholder:`my-database`,className:`w-full h-8 text-sm px-2.5 rounded-md border border-border bg-background focus:outline-none focus:border-primary`})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Type`}),(0,J.jsxs)(`select`,{value:c.type,onChange:e=>v(`type`,e.target.value),className:`w-full h-8 text-sm px-2 rounded-md border border-border bg-background focus:outline-none focus:border-primary`,children:[(0,J.jsx)(`option`,{value:`postgres`,children:`PostgreSQL`}),(0,J.jsx)(`option`,{value:`sqlite`,children:`SQLite`})]})]}),c.type===`postgres`?(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Connection String *`}),(0,J.jsx)(`input`,{type:`password`,value:c.connectionString,onChange:e=>v(`connectionString`,e.target.value),placeholder:`postgresql://user:pass@host:5432/db`,className:`w-full h-8 text-sm px-2.5 rounded-md border border-border bg-background focus:outline-none focus:border-primary font-mono`})]}):(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`File Path *`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,J.jsx)(`input`,{value:c.path,onChange:e=>v(`path`,e.target.value),placeholder:`/path/to/database.db`,className:`flex-1 h-8 text-sm px-2.5 rounded-md border border-border bg-background focus:outline-none focus:border-primary font-mono`}),(0,J.jsx)(ad,{mode:`file`,accept:[`.db`,`.sqlite`,`.sqlite3`],title:`Browse for SQLite database`,onSelect:e=>v(`path`,e)})]})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Group`}),(0,J.jsx)(`input`,{value:c.groupName,onChange:e=>v(`groupName`,e.target.value),placeholder:`Production`,className:`w-full h-8 text-sm px-2.5 rounded-md border border-border bg-background focus:outline-none focus:border-primary`})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Tab Color`}),(0,J.jsx)(sd,{value:c.color,onChange:e=>v(`color`,e)})]}),s&&(0,J.jsxs)(`div`,{className:`flex items-center justify-between py-1`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`p`,{className:`text-xs font-medium`,children:`Readonly`}),(0,J.jsx)(`p`,{className:`text-[10px] text-text-subtle`,children:`Block non-SELECT queries (AI protection)`})]}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>v(`readonly`,!c.readonly),className:`relative w-9 h-5 rounded-full transition-colors ${c.readonly?`bg-primary`:`bg-border`}`,children:(0,J.jsx)(`span`,{className:`absolute top-0.5 left-0.5 size-4 rounded-full bg-white transition-transform ${c.readonly?`translate-x-4`:``}`})})]}),f&&(0,J.jsx)(`p`,{className:`text-xs ${f.ok?`text-success`:`text-error`}`,children:f.ok?`✓ Connection successful`:`✗ ${f.error}`}),g&&(0,J.jsx)(`p`,{className:`text-xs text-error`,children:g})]}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(F,{variant:`outline`,size:`sm`,onClick:async()=>{d(!0),p(null);try{let e;if(s)e=await a(n.id);else if(o){let t=c.type===`postgres`?{type:`postgres`,connectionString:c.connectionString}:{type:`sqlite`,path:c.path};e=await o(c.type,t)}else e={ok:!1,error:`Save connection first`};p(e)}finally{d(!1)}},disabled:u,className:`mr-auto`,children:u?`Testing…`:`Test Connection`}),(0,J.jsx)(F,{variant:`outline`,size:`sm`,onClick:t,children:`Cancel`}),(0,J.jsx)(F,{size:`sm`,onClick:async()=>{if(_(null),!c.name.trim()){_(`Name is required`);return}h(!0);try{if(s&&i){let e=(c.type===`postgres`?c.connectionString.trim():c.path.trim())?c.type===`postgres`?{type:`postgres`,connectionString:c.connectionString}:{type:`sqlite`,path:c.path}:void 0;await i(n.id,{name:c.name.trim(),...e!==void 0&&{connectionConfig:e},groupName:c.groupName.trim()||null,color:c.color,readonly:c.readonly?1:0})}else if(r){let e=c.type===`postgres`?{type:`postgres`,connectionString:c.connectionString}:{type:`sqlite`,path:c.path};await r({type:c.type,name:c.name.trim(),connectionConfig:e,groupName:c.groupName.trim()||void 0,color:c.color??void 0})}t()}catch(e){_(e.message)}finally{h(!1)}},disabled:m,children:m?`Saving…`:s?`Save`:`Add`})]})]})})}function ld({onExport:e,onImport:t}){let[n,r]=(0,q.useState)(!1),i=(0,q.useRef)(null),a=()=>r(!1),o=async()=>{a();try{let t=await e(),n=new Blob([JSON.stringify(t,null,2)],{type:`application/json`}),r=URL.createObjectURL(n),i=document.createElement(`a`);i.href=r,i.download=`ppm-connections-${new Date().toISOString().slice(0,10)}.json`,i.click(),URL.revokeObjectURL(r)}catch(e){alert(`Export failed: ${e.message}`)}},s=async()=>{a();try{let t=await e(),n=await ks(JSON.stringify(t,null,2));alert(n?`Copied ${t.connections.length} connection(s) to clipboard`:`Copy failed — clipboard unavailable`)}catch(e){alert(`Export failed: ${e.message}`)}},c=async e=>{try{let n=JSON.parse(e),r=n.connections??n;if(!Array.isArray(r)){alert(`Invalid format: expected connections array`);return}let i=await t({connections:r}),a=`Imported ${i.imported} connection(s)`;i.skipped>0&&(a+=`, ${i.skipped} skipped`),i.errors?.length>0&&(a+=`\n\nErrors:\n${i.errors.join(`
|
|
18
|
-
`)}`),alert(a)}catch(e){alert(`Import failed: ${e.message}`)}};return(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsx)(`button`,{onClick:()=>r(e=>!e),className:`flex items-center justify-center size-5 rounded hover:bg-surface-elevated transition-colors text-text-subtle hover:text-foreground`,title:`Import / Export`,children:(0,J.jsx)(cn,{className:`size-3.5`})}),n&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`fixed inset-0 z-40`,onClick:a}),(0,J.jsxs)(`div`,{className:`absolute right-0 top-full mt-1 z-50 w-44 bg-background border border-border rounded-md shadow-lg py-1 text-xs`,children:[(0,J.jsxs)(`button`,{onClick:o,className:`w-full flex items-center gap-2 px-3 py-1.5 hover:bg-surface-elevated transition-colors text-left`,children:[(0,J.jsx)(Xe,{className:`size-3`}),` Export to file`]}),(0,J.jsxs)(`button`,{onClick:s,className:`w-full flex items-center gap-2 px-3 py-1.5 hover:bg-surface-elevated transition-colors text-left`,children:[(0,J.jsx)(en,{className:`size-3`}),` Export to clipboard`]}),(0,J.jsx)(`div`,{className:`border-t border-border my-1`}),(0,J.jsxs)(`button`,{onClick:()=>{a(),i.current?.click()},className:`w-full flex items-center gap-2 px-3 py-1.5 hover:bg-surface-elevated transition-colors text-left`,children:[(0,J.jsx)(Hr,{className:`size-3`}),` Import from file`]}),(0,J.jsxs)(`button`,{onClick:async()=>{a();try{let e=await navigator.clipboard.readText();if(!e.trim()){alert(`Clipboard is empty`);return}await c(e)}catch(e){alert(`Clipboard read failed: ${e.message}`)}},className:`w-full flex items-center gap-2 px-3 py-1.5 hover:bg-surface-elevated transition-colors text-left`,children:[(0,J.jsx)($t,{className:`size-3`}),` Import from clipboard`]})]})]}),(0,J.jsx)(`input`,{ref:i,type:`file`,accept:`.json`,className:`hidden`,onChange:e=>{let t=e.target.files?.[0];if(!t)return;let n=new FileReader;n.onload=()=>c(n.result),n.readAsText(t),e.target.value=``}})]})}function ud(){let[e,t]=(0,q.useState)([]),[n,r]=(0,q.useState)(!0),[i,a]=(0,q.useState)(new Map),[o,s]=(0,q.useState)(new Map),c=(0,q.useCallback)(async()=>{try{t(await R.get(`/api/db/connections`))}catch{}finally{r(!1)}},[]);(0,q.useEffect)(()=>{c()},[c]);let l=(0,q.useCallback)(async e=>{let n=await R.post(`/api/db/connections`,e);return t(e=>[...e,n]),n},[]),u=(0,q.useCallback)(async(e,n)=>{let r=await R.put(`/api/db/connections/${e}`,n);t(t=>t.map(t=>t.id===e?r:t))},[]),d=(0,q.useCallback)(async e=>{await R.del(`/api/db/connections/${e}`),t(t=>t.filter(t=>t.id!==e)),a(t=>{let n=new Map(t);return n.delete(e),n})},[]),f=(0,q.useCallback)(async e=>R.post(`/api/db/connections/${e}/test`),[]),p=(0,q.useCallback)(async(e,t)=>R.post(`/api/db/test`,{type:e,connectionConfig:t}),[]),m=(0,q.useCallback)(async e=>{s(t=>{let n=new Map(t);return n.delete(e),n});try{let t=(await R.get(`/api/db/connections/${e}/tables`)).map(t=>({connectionId:e,tableName:t.name,schemaName:t.schema,rowCount:t.rowCount,cachedAt:new Date().toISOString()}));a(n=>new Map(n).set(e,t))}catch(t){let n=t.message||`Connection failed`;throw s(t=>new Map(t).set(e,n)),t}},[]),[h,g]=(0,q.useState)(new Map),_=(0,q.useRef)(h);return _.current=h,{connections:e,loading:n,cachedTables:i,refreshErrors:o,columnCache:h,createConnection:l,updateConnection:u,deleteConnection:d,testConnection:f,testRawConnection:p,refreshTables:m,fetchColumns:(0,q.useCallback)(async(e,t,n)=>{let r=`${e}:${n??`main`}.${t}`,i=_.current.get(r);if(i)return i;let a=await R.get(`/api/db/connections/${e}/schema?table=${encodeURIComponent(t)}${n?`&schema=${encodeURIComponent(n)}`:``}`);return g(e=>new Map(e).set(r,a)),a},[]),exportConnections:(0,q.useCallback)(async()=>R.get(`/api/db/connections/export`),[]),importConnections:(0,q.useCallback)(async e=>{let t=await R.post(`/api/db/connections/import`,e);await c();let n=t.connections??[];return n.length>0&&Promise.all(n.map(e=>m(e.id).catch(()=>{}))),t},[c,m])}}function dd(){let{connections:e,loading:t,cachedTables:n,refreshErrors:r,columnCache:i,createConnection:a,updateConnection:o,deleteConnection:s,testConnection:c,testRawConnection:l,refreshTables:u,fetchColumns:d,exportConnections:f,importConnections:p}=ud(),m=W(e=>e.openTab),[h,g]=(0,q.useState)(!1),[_,v]=(0,q.useState)(null);return(0,J.jsxs)(`div`,{className:`flex flex-col h-full`,children:[(0,J.jsxs)(Ec,{icon:Je,title:`Database`,children:[(0,J.jsx)(ld,{onExport:f,onImport:p}),(0,J.jsx)(`button`,{onClick:()=>g(!0),className:`flex size-6 items-center justify-center rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground`,title:`Add connection`,children:(0,J.jsx)(Ze,{className:`size-3.5`})})]}),(0,J.jsx)(`div`,{className:`flex-1 overflow-y-auto min-h-0`,children:t?(0,J.jsx)(`p`,{className:`px-4 py-6 text-xs text-text-subtle text-center`,children:`Loading…`}):(0,J.jsx)(Ju,{connections:e,cachedTables:n,refreshErrors:r,onOpenTable:(e,t,n)=>{m({type:`database`,title:`${e.name} · ${t}`,projectId:null,closable:!0,metadata:{connectionId:e.id,connectionName:e.name,dbType:e.type,tableName:t,schemaName:n,connectionColor:e.color}})},onRefreshTables:u,onEdit:v,onDelete:async e=>{if(confirm(`Delete this connection?`))try{await s(e)}catch{}},onFetchColumns:d,columnCache:i})}),(0,J.jsx)(cd,{open:h,onClose:()=>g(!1),onSave:async e=>{let t=await a(e);t&&u(t.id).catch(()=>{})},onTest:()=>Promise.resolve({ok:!1,error:`Save connection first`}),onTestRaw:l}),_&&(0,J.jsx)(cd,{open:!!_,onClose:()=>v(null),connection:_,onUpdate:async(e,t)=>{await o(e,t)},onTest:e=>c(e)})]})}function fd(e,t,n,r){if(!e)return null;try{let i=r?e:e.replace(/[.*+?^${}()|[\]\\]/g,`\\$&`);return n&&(i=`\\b${i}\\b`),RegExp(`(${i})`,t?`g`:`gi`)}catch{return null}}function pd({text:e,re:t}){if(!t)return(0,J.jsx)(`span`,{children:e});try{t.lastIndex=0;let n=e.split(t);return t.lastIndex=0,(0,J.jsx)(`span`,{children:n.map((e,n)=>(t.lastIndex=0,t.test(e)?(0,J.jsx)(`mark`,{className:`bg-warning/40 text-foreground rounded-sm`,children:e},n):e))})}catch{return(0,J.jsx)(`span`,{children:e})}}function md({active:e,onClick:t,title:n,children:r}){return(0,J.jsx)(`button`,{onClick:t,title:n,className:V(`flex items-center justify-center w-6 h-6 rounded border shrink-0`,e?`border-primary text-primary bg-primary/10`:`border-border text-text-subtle hover:text-foreground hover:border-border/80`),children:r})}function hd(){let{activeProject:e}=U(Tc(e=>({activeProject:e.activeProject}))),t=W(e=>e.openTab),[n,r]=(0,q.useState)(``),[i,a]=(0,q.useState)(!1),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(!1),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(``),[m,h]=(0,q.useState)(``),[g,_]=(0,q.useState)(!1),[v,y]=(0,q.useState)(null),[b,x]=(0,q.useState)([]),[S,C]=(0,q.useState)(0),[w,T]=(0,q.useState)(!1),[E,D]=(0,q.useState)(new Set),O=(0,q.useRef)(null),k=(0,q.useRef)(null),A=(0,q.useCallback)(async(t,n,r,i,a)=>{if(d(!1),!e||!i&&t.length<2||i&&t.length<1){x([]),C(0);return}if(i)try{new RegExp(t)}catch{d(!0),x([]);return}T(!0);try{let o=new URLSearchParams({q:t,caseSensitive:String(n),wholeWord:String(r),regex:String(i)});a&&o.set(`include`,a);let s=await R.get(`${L(e.name)}/files/search?${o}`);x(s.results),C(s.total)}catch{x([])}finally{T(!1)}},[e]);(0,q.useEffect)(()=>(k.current&&clearTimeout(k.current),k.current=setTimeout(()=>A(n,i,o,c,f),300),()=>{k.current&&clearTimeout(k.current)}),[n,i,o,c,f,A]),(0,q.useEffect)(()=>{O.current?.focus()},[]);let ee=fd(n,i,o,c);function te(n,r){e&&t({type:`editor`,title:n.split(`/`).pop()??n,metadata:{filePath:n,projectName:e.name,lineNumber:r},projectId:e.name,closable:!0})}function ne(e){D(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})}async function j(){if(!e||!n||b.length===0||g)return;_(!0),y(null);let t=0;try{for(let r of b){let a=await R.get(`${L(e.name)}/files/read?path=${encodeURIComponent(r.file)}`),s=fd(n,i,o,c);if(!s)continue;s.lastIndex=0;let l=a.content.match(s)??[];if(!l.length)continue;t+=l.length,s.lastIndex=0;let u=a.content.replace(s,m);await R.put(`${L(e.name)}/files/write`,{path:r.file,content:u})}y(t),A(n,i,o,c,f)}catch{}finally{_(!1)}}return(0,J.jsxs)(`div`,{className:`flex flex-col h-full`,children:[(0,J.jsxs)(`div`,{className:`p-2 border-b border-border space-y-1.5`,children:[(0,J.jsx)(`div`,{className:`relative flex items-center gap-1`,children:(0,J.jsxs)(`div`,{className:`relative flex-1`,children:[(0,J.jsx)(Ge,{className:`absolute left-2 top-1/2 -translate-y-1/2 size-3.5 text-text-subtle pointer-events-none`}),(0,J.jsx)(`input`,{ref:O,value:n,onChange:e=>{r(e.target.value),y(null)},placeholder:e?`Search files…`:`Select a project first`,disabled:!e,className:V(`w-full pl-7 pr-6 py-1 text-xs bg-input border rounded focus:outline-none focus:ring-1 focus:ring-primary/50 disabled:opacity-50`,u?`border-destructive`:`border-border`)}),n&&(0,J.jsx)(`button`,{onClick:()=>{r(``),x([]),C(0),d(!1),y(null)},className:`absolute right-1.5 top-1/2 -translate-y-1/2 text-text-subtle hover:text-foreground`,children:(0,J.jsx)(Qe,{className:`size-3`})})]})}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,J.jsx)(md,{active:i,onClick:()=>a(e=>!e),title:`Match Case (Alt+C)`,children:(0,J.jsx)(Ht,{className:`size-3.5`})}),(0,J.jsx)(md,{active:o,onClick:()=>{s(e=>!e),c&&l(!1)},title:`Match Whole Word (Alt+W)`,children:(0,J.jsx)(Wr,{className:`size-3.5`})}),(0,J.jsx)(md,{active:c,onClick:()=>{l(e=>!e),o&&s(!1)},title:`Use Regular Expression (Alt+R)`,children:(0,J.jsx)(xr,{className:`size-3.5`})}),u&&(0,J.jsx)(`span`,{className:`text-[10px] text-destructive ml-1`,children:`Invalid regex`})]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,J.jsxs)(`div`,{className:`relative flex-1`,children:[(0,J.jsx)(`input`,{value:m,onChange:e=>h(e.target.value),placeholder:`Replace…`,disabled:!e,className:`w-full pl-2 pr-6 py-1 text-xs bg-input border border-border rounded focus:outline-none focus:ring-1 focus:ring-primary/50 disabled:opacity-50`}),m&&(0,J.jsx)(`button`,{onClick:()=>h(``),className:`absolute right-1.5 top-1/2 -translate-y-1/2 text-text-subtle hover:text-foreground`,children:(0,J.jsx)(Qe,{className:`size-3`})})]}),(0,J.jsx)(`button`,{onClick:j,disabled:!n||b.length===0||g,title:`Replace All`,className:`flex items-center justify-center w-6 h-6 rounded border border-border text-text-subtle hover:text-foreground hover:border-border/80 disabled:opacity-40 shrink-0`,children:g?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):(0,J.jsx)(Sr,{className:`size-3.5`})})]}),(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsx)(`input`,{value:f,onChange:e=>p(e.target.value),placeholder:`Files to include (e.g. *.ts, src/**)`,disabled:!e,className:`w-full pl-2 pr-6 py-1 text-xs bg-input border border-border rounded focus:outline-none focus:ring-1 focus:ring-primary/50 disabled:opacity-50`}),f&&(0,J.jsx)(`button`,{onClick:()=>p(``),className:`absolute right-1.5 top-1/2 -translate-y-1/2 text-text-subtle hover:text-foreground`,children:(0,J.jsx)(Qe,{className:`size-3`})})]}),(0,J.jsxs)(`div`,{className:`text-[10px] text-text-subtle h-3`,children:[(w||g)&&(0,J.jsxs)(`span`,{className:`flex items-center gap-1`,children:[(0,J.jsx)(K,{className:`size-2.5 animate-spin`}),g?`Replacing…`:`Searching…`]}),!w&&!g&&v!==null&&(0,J.jsxs)(`span`,{className:`text-success`,children:[v,` replacement`,v===1?``:`s`,` made`]}),!w&&!g&&v===null&&!u&&n.length>=2&&b.length===0&&(0,J.jsx)(`span`,{children:`No results`}),!w&&!g&&v===null&&S>0&&(0,J.jsxs)(`span`,{children:[S,` result`,S===1?``:`s`,` in `,b.length,` file`,b.length===1?``:`s`]})]})]}),(0,J.jsx)(`div`,{className:`flex-1 overflow-y-auto min-h-0`,children:b.map(e=>{let t=E.has(e.file),n=e.file.split(`/`).pop()??e.file,r=e.file.includes(`/`)?e.file.slice(0,e.file.lastIndexOf(`/`)):``;return(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`button`,{onClick:()=>ne(e.file),className:`w-full flex items-center gap-1 px-2 py-1 hover:bg-muted/50 text-left`,children:[t?(0,J.jsx)(Fe,{className:`size-3 shrink-0 text-text-subtle`}):(0,J.jsx)(Ne,{className:`size-3 shrink-0 text-text-subtle`}),(0,J.jsx)(yn,{className:`size-3 shrink-0 text-text-subtle`}),(0,J.jsx)(`span`,{className:`text-xs font-medium text-foreground truncate`,children:n}),(0,J.jsx)(`span`,{className:`text-[10px] text-text-subtle truncate flex-1 min-w-0 ml-1`,children:r}),(0,J.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0 ml-1 bg-muted px-1 rounded`,children:e.matches.length})]}),!t&&e.matches.map(t=>(0,J.jsxs)(`button`,{onClick:()=>te(e.file,t.lineNum),className:`w-full flex items-start gap-2 pl-7 pr-2 py-0.5 hover:bg-primary/10 text-left`,children:[(0,J.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0 w-7 text-right pt-px`,children:t.lineNum}),(0,J.jsx)(`span`,{className:`text-xs text-text-secondary truncate font-mono leading-4`,children:(0,J.jsx)(pd,{text:t.content.trimStart(),re:ee})})]},`${e.file}-${t.lineNum}`))]},e.file)})})]})}function gd(e,t){window.dispatchEvent(new CustomEvent(`ext:tree:expand`,{detail:{viewId:e,itemId:t}}))}function _d(e,t){window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:e,args:t}}))}var vd={refresh:br,edit:De,trash:Rr,plus:Ze,search:Ge};function yd({viewId:e,className:t}){let n=cs(t=>t.treeViews[e])??[],r=cs(e=>e.contributions),i=(0,q.useMemo)(()=>{if(!r)return{name:e,headerActions:[]};let t=e,n=r.views;if(n)for(let r of Object.values(n)){let n=r.find(t=>t.id===e);if(n){t=n.name;break}}let i=[],a=r.menus?.[`view/title`];if(a)for(let t of a){if(t.when){let n=t.when.match(/view\s*==\s*(\S+)/);if(n&&n[1]!==e)continue}let n=r.commands?.find(e=>e.command===t.command);n&&i.push({command:n.command,title:n.title,icon:n.icon})}return{name:t,headerActions:i}},[r,e]);return(0,J.jsxs)(`div`,{className:V(`flex flex-col h-full`,t),children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-3 py-2 border-b border-border shrink-0`,children:[(0,J.jsx)(`span`,{className:`text-[10px] font-semibold text-text-subtle uppercase tracking-wider`,children:i.name}),(0,J.jsx)(`div`,{className:`flex items-center gap-0.5`,children:i.headerActions.map(e=>{let t=vd[e.icon??bd(e.command)]??br;return(0,J.jsx)(`button`,{onClick:()=>_d(e.command),className:`flex items-center justify-center size-5 rounded hover:bg-surface-elevated transition-colors text-text-subtle hover:text-foreground`,title:e.title,children:(0,J.jsx)(t,{className:`size-3.5`})},e.command)})})]}),(0,J.jsx)(`div`,{className:`flex-1 overflow-y-auto min-h-0 py-1`,role:`tree`,"aria-label":e,children:n.length===0?(0,J.jsx)(`p`,{className:`px-4 py-6 text-xs text-text-subtle text-center`,children:`No items`}):n.map(t=>(0,J.jsx)(xd,{item:t,depth:0,viewId:e},t.id))})]})}function bd(e){return e.includes(`refresh`)?`refresh`:e.includes(`add`)||e.includes(`create`)||e.includes(`new`)?`plus`:e.includes(`delete`)||e.includes(`remove`)?`trash`:e.includes(`edit`)||e.includes(`update`)?`edit`:e.includes(`search`)||e.includes(`find`)?`search`:`refresh`}function xd({item:e,depth:t,viewId:n}){let[r,i]=(0,q.useState)(!1),a=e.collapsibleState!==`none`,o=(0,q.useRef)(!1);e.children&&e.children.length>0&&!o.current&&(o.current=!0,r||i(!0));let s=(0,q.useCallback)(()=>{if(!a)return;let t=!r;i(t),t&&(!e.children||e.children.length===0)&&gd(n,e.id)},[a,r,e.id,e.children,n]),c=(0,q.useCallback)(()=>{s(),e.command&&_d(e.command,e.commandArgs)},[s,e.command,e.commandArgs]),l=8+t*16;return(0,J.jsxs)(`div`,{role:`treeitem`,"aria-expanded":a?r:void 0,children:[(0,J.jsxs)(`div`,{className:V(`group/node flex items-center gap-1 py-1 hover:bg-surface-elevated transition-colors`),style:{paddingLeft:l,paddingRight:8},children:[(0,J.jsx)(`button`,{onClick:s,className:`shrink-0 text-text-subtle hover:text-foreground transition-colors`,children:a?r?(0,J.jsx)(Ne,{className:`size-3`}):(0,J.jsx)(Fe,{className:`size-3`}):(0,J.jsx)(`span`,{className:`size-3`})}),e.color&&(0,J.jsx)(`span`,{className:`shrink-0 size-2 rounded-full border border-border`,style:{backgroundColor:e.color}}),(0,J.jsx)(`button`,{className:`flex-1 text-left text-xs truncate hover:text-primary transition-colors`,onClick:c,children:e.label}),e.description&&(0,J.jsx)(`span`,{className:`shrink-0 ml-1 text-text-subtle text-[10px]`,children:e.description}),e.badge&&(0,J.jsx)(`span`,{className:`shrink-0 text-[9px] text-text-subtle uppercase px-1 rounded bg-surface-elevated`,children:e.badge}),e.actions&&e.actions.length>0&&(0,J.jsx)(`div`,{className:`flex can-hover:hidden can-hover:group-hover/node:flex items-center gap-0.5 shrink-0`,children:e.actions.map(e=>(0,J.jsx)(Sd,{action:e},e.command))})]}),a&&r&&e.children&&(0,J.jsx)(`div`,{role:`group`,children:e.children.map(e=>(0,J.jsx)(xd,{item:e,depth:t+1,viewId:n},e.id))})]})}function Sd({action:e}){let[t,n]=(0,q.useState)(!1),r=vd[e.icon]??br,i=e.icon===`trash`;return(0,J.jsx)(`button`,{onClick:(0,q.useCallback)(t=>{t.stopPropagation(),e.icon===`refresh`&&(n(!0),setTimeout(()=>n(!1),1e3)),_d(e.command,e.commandArgs)},[e]),className:V(`p-0.5 text-text-subtle transition-colors`,i?`hover:text-error`:`hover:text-foreground`),title:e.tooltip,children:(0,J.jsx)(r,{className:V(`size-3`,t&&`animate-spin`)})})}var Cd=nt((e,t)=>({projectsWithIds:[],configs:[],selectedProjectId:null,watchers:[],results:[],unreadCount:0,setSelectedProjectId:t=>e({selectedProjectId:t}),loadProjectsWithIds:async()=>{let t=await R.get(`/api/jira/config/projects`);e({projectsWithIds:Array.isArray(t)?t:[]})},loadConfigs:async()=>{e({configs:await R.get(`/api/jira/config`)})},saveConfig:async(e,n)=>{await R.put(`/api/jira/config/${e}`,n),await t().loadConfigs()},deleteConfig:async t=>{await R.del(`/api/jira/config/${t}`),e(e=>({configs:e.configs.filter(e=>e.projectId!==t),watchers:[]}))},testConnection:async e=>(await R.post(`/api/jira/config/${e}/test`)).connected,loadWatchers:async t=>{e({watchers:await R.get(`/api/jira/watchers?configId=${t}`)})},createWatcher:async e=>{await R.post(`/api/jira/watchers`,e),e.configId&&await t().loadWatchers(e.configId)},updateWatcher:async(e,n)=>{await R.put(`/api/jira/watchers/${e}`,n);let r=t().watchers.find(t=>t.id===e);r&&await t().loadWatchers(r.jiraConfigId)},deleteWatcher:async e=>{let n=t().watchers.find(t=>t.id===e);await R.del(`/api/jira/watchers/${e}`),n&&await t().loadWatchers(n.jiraConfigId)},toggleWatcher:async(t,n)=>{e(e=>({watchers:e.watchers.map(e=>e.id===t?{...e,enabled:n}:e)}));try{await R.put(`/api/jira/watchers/${t}`,{enabled:n})}catch{e(e=>({watchers:e.watchers.map(e=>e.id===t?{...e,enabled:!n}:e)}))}},pullWatcher:async e=>{let n=await R.post(`/api/jira/watchers/${e}/pull`);return await t().loadResults(),n},testJql:async(e,t)=>await R.post(`/api/jira/watchers/test-jql`,{configId:e,jql:t}),loadResults:async(t,n,r=50,i=0)=>{let a=new URLSearchParams;t!==void 0&&a.set(`watcherId`,String(t)),n&&a.set(`status`,n),a.set(`limit`,String(r)),a.set(`offset`,String(i));let o=await R.get(`/api/jira/results?${a}`);e(i>0?e=>({results:[...e.results,...o]}):{results:o})},softDeleteResult:async t=>{e(e=>({results:e.results.filter(e=>e.id!==t)}));try{await R.del(`/api/jira/results/${t}`)}catch{}},startDebug:async(n,r)=>{let i=t().results.find(e=>e.id===n)?.status;e(e=>({results:e.results.map(e=>e.id===n?{...e,status:`queued`}:e)}));try{await R.post(`/api/jira/results/${n}/debug`,r?{prompt:r}:{})}catch{e(e=>({results:e.results.map(e=>e.id===n?{...e,status:i??`pending`}:e)}))}},resumeDebug:async n=>{let r=t().results.find(e=>e.id===n)?.status;e(e=>({results:e.results.map(e=>e.id===n?{...e,status:`queued`}:e)}));try{await R.post(`/api/jira/results/${n}/resume`)}catch{e(e=>({results:e.results.map(e=>e.id===n?{...e,status:r??`failed`}:e)}))}},cancelDebug:async e=>{try{await R.post(`/api/jira/results/${e}/cancel`),await t().loadResults()}catch{}},markRead:async t=>{e(e=>({results:e.results.map(e=>e.id===t?{...e,readAt:new Date().toISOString()}:e),unreadCount:Math.max(0,e.unreadCount-1)}));try{await R.patch(`/api/jira/results/${t}/read`)}catch{}},loadUnreadCount:async()=>{try{e({unreadCount:(await R.get(`/api/jira/results/unread-count`)).count})}catch{}}})),wd={pending:`bg-warning`,queued:`bg-warning/80`,running:`bg-primary animate-pulse`,done:`bg-success`,failed:`bg-error`};function Td(e){let t=Date.now()-new Date(e).getTime(),n=Math.floor(t/6e4);if(n<1)return`now`;if(n<60)return`${n}m`;let r=Math.floor(n/60);return r<24?`${r}h`:`${Math.floor(r/24)}d`}function Ed({result:e,onDebug:t,onResume:n,onCancel:r,onOpenSession:i,onDelete:a,onClick:o}){let s=e,c=s.status===`done`&&!s.readAt,l=!!s.sessionId,u=s.status===`failed`&&l,d=s.status===`pending`||s.status===`failed`&&!l,f=s.status===`queued`||s.status===`running`,p=s.status;return(0,J.jsxs)(`div`,{className:V(`group rounded bg-card shadow-sm hover:shadow-md hover:bg-accent/50 hover:-translate-y-px cursor-pointer transition-all duration-150`,`px-2.5 py-2 space-y-1`,c&&`ring-1 ring-primary/30`),onClick:()=>o(s),children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 min-w-0`,children:[(0,J.jsx)(`span`,{className:`text-xs font-mono font-semibold text-foreground shrink-0`,children:s.issueKey}),c&&(0,J.jsx)(`span`,{className:`size-1.5 rounded-full bg-primary shrink-0`}),(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground truncate flex-1 min-w-0`,children:s.issueSummary||`No summary`}),(0,J.jsx)(`span`,{className:`text-[10px] text-muted-foreground/60 tabular-nums shrink-0`,children:Td(s.createdAt)})]}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between min-w-0`,children:[(0,J.jsxs)(`span`,{className:`inline-flex items-center gap-1.5 text-[11px] text-muted-foreground`,children:[(0,J.jsx)(`span`,{className:V(`size-1.5 rounded-full shrink-0`,wd[p])}),p]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-0.5 shrink-0`,onClick:e=>e.stopPropagation(),children:[u&&(0,J.jsxs)(`button`,{type:`button`,className:`flex items-center gap-1 h-6 px-1.5 rounded text-[10px] font-medium text-primary hover:bg-primary/10 active:scale-95 transition-colors`,onClick:()=>n(s),title:`Resume debug session`,children:[(0,J.jsx)(Cr,{className:`size-3`}),(0,J.jsx)(`span`,{children:`Resume`})]}),d&&(0,J.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-6 rounded text-muted-foreground hover:text-primary active:scale-95 transition-colors`,onClick:()=>t(s),title:`Debug`,children:(0,J.jsx)(mr,{className:`size-3`})}),f&&(0,J.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-6 rounded text-muted-foreground hover:text-destructive active:scale-95 transition-colors`,onClick:()=>r(s),title:`Stop debug`,children:(0,J.jsx)(Mr,{className:`size-3`})}),s.status===`running`&&(0,J.jsx)(K,{className:`size-3 animate-spin text-primary`}),l&&(0,J.jsxs)(`button`,{type:`button`,className:`flex items-center gap-1 h-6 px-1.5 rounded text-[10px] font-medium text-primary hover:bg-primary/10 active:scale-95 transition-colors`,onClick:()=>i(s),title:`Open session`,children:[(0,J.jsx)(un,{className:`size-3`}),(0,J.jsx)(`span`,{children:`Open`})]}),(0,J.jsxs)(Zs,{children:[(0,J.jsx)(Qs,{asChild:!0,children:(0,J.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-6 rounded text-muted-foreground hover:text-foreground active:scale-95 transition-colors`,children:(0,J.jsx)(ln,{className:`size-3`})})}),(0,J.jsx)($s,{align:`end`,children:(0,J.jsxs)(ec,{className:`text-destructive`,onClick:()=>a(s.id),children:[(0,J.jsx)(Rr,{className:`size-3.5 mr-2`}),` Delete`]})})]})]})]})]})}function Dd(e){let t=[];return e.project.length&&t.push(`project IN (${e.project.join(`, `)})`),e.issueType.length&&t.push(`issuetype IN (${e.issueType.map(e=>`"${e}"`).join(`, `)})`),e.priority.length&&t.push(`priority IN (${e.priority.map(e=>`"${e}"`).join(`, `)})`),e.status.length&&t.push(`status IN (${e.status.map(e=>`"${e}"`).join(`, `)})`),e.assignee.length&&t.push(`assignee IN (${e.assignee.map(e=>`"${e}"`).join(`, `)})`),(t.join(` AND `)||`ORDER BY updated DESC`)+(t.length?` ORDER BY updated DESC`:``)}var Od={project:[],issueType:[],priority:[],status:[],assignee:[]};function kd({value:e,onChange:t,configId:n}){let[r,i]=(0,q.useState)(e?`raw`:`builder`),[a,o]=(0,q.useState)(Od),[s,c]=(0,q.useState)(e),[l,u]=(0,q.useState)([]),[d,f]=(0,q.useState)([]),[p,m]=(0,q.useState)([]),[h,g]=(0,q.useState)([]),[_,v]=(0,q.useState)([]),[y,b]=(0,q.useState)(!1);(0,q.useEffect)(()=>{n&&(b(!0),Promise.all([R.get(`/api/jira/metadata/${n}/projects`).catch(()=>[]),R.get(`/api/jira/metadata/${n}/issuetype`).catch(()=>[]),R.get(`/api/jira/metadata/${n}/priority`).catch(()=>[]),R.get(`/api/jira/metadata/${n}/status`).catch(()=>[]),R.get(`/api/jira/metadata/${n}/assignees`).catch(()=>[])]).then(([e,t,n,r,i])=>{u(e),f(t),m(n),g(r),v(i.map(e=>({id:e.accountId,name:e.displayName})))}).finally(()=>b(!1)))},[n]),(0,q.useEffect)(()=>{r===`builder`&&t(Dd(a))},[a,r]);let x=(0,q.useCallback)(e=>{c(e),t(e)},[t]),S=(e,t)=>{!t||a[e].includes(t)||o(n=>({...n,[e]:[...n[e],t]}))},C=(e,t)=>{o(n=>({...n,[e]:n[e].filter(e=>e!==t)}))};return(0,J.jsxs)(`div`,{className:`space-y-2 min-w-0`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(F,{type:`button`,size:`sm`,variant:r===`builder`?`default`:`outline`,onClick:()=>i(`builder`),className:`min-h-[44px] text-xs`,children:`Builder`}),(0,J.jsx)(F,{type:`button`,size:`sm`,variant:r===`raw`?`default`:`outline`,onClick:()=>i(`raw`),className:`min-h-[44px] text-xs`,children:`Raw JQL`}),y&&(0,J.jsx)(K,{className:`size-3.5 animate-spin text-muted-foreground`})]}),r===`raw`?(0,J.jsx)(`textarea`,{value:s,onChange:e=>x(e.target.value),className:`w-full h-20 rounded-md border border-input bg-background px-3 py-2 text-sm font-mono resize-none focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring`,placeholder:`e.g. project = MYPROJ AND status = "In Progress"`}):(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsx)(Ad,{label:`Project`,field:`project`,filters:a,onAdd:S,onRemove:C,options:l.map(e=>({value:e.key??e.name,label:`${e.key??e.name} — ${e.name}`})),placeholder:`Select project...`}),(0,J.jsx)(Ad,{label:`Issue Type`,field:`issueType`,filters:a,onAdd:S,onRemove:C,options:d.map(e=>({value:e.name,label:e.name})),placeholder:`Select issue type...`}),(0,J.jsx)(Ad,{label:`Priority`,field:`priority`,filters:a,onAdd:S,onRemove:C,options:p.map(e=>({value:e.name,label:e.name})),placeholder:`Select priority...`}),(0,J.jsx)(Ad,{label:`Status`,field:`status`,filters:a,onAdd:S,onRemove:C,options:h.map(e=>({value:e.name,label:e.name})),placeholder:`Select status...`}),(0,J.jsx)(Ad,{label:`Assignee`,field:`assignee`,filters:a,onAdd:S,onRemove:C,options:_.map(e=>({value:e.id??e.name,label:e.name})),placeholder:`Select assignee...`})]}),(0,J.jsx)(`div`,{className:`text-xs text-muted-foreground bg-muted/50 rounded px-2 py-1 font-mono break-all`,children:r===`builder`?Dd(a):s||`(empty)`})]})}function Ad({label:e,field:t,filters:n,onAdd:r,onRemove:i,options:a,placeholder:o}){let s=a.filter(e=>!n[t].includes(e.value));return(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:e}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1 flex-wrap`,children:[n[t].map(e=>(0,J.jsxs)(`span`,{className:`inline-flex items-center gap-0.5 px-2 py-0.5 rounded-full bg-primary/10 text-xs`,children:[a.find(t=>t.value===e)?.label??e,(0,J.jsx)(`button`,{type:`button`,onClick:()=>i(t,e),className:`hover:text-destructive`,children:(0,J.jsx)(Qe,{className:`size-3`})})]},e)),s.length>0?(0,J.jsxs)(ml,{onValueChange:e=>r(t,e),children:[(0,J.jsx)(gl,{className:`h-7 w-auto min-w-[120px] text-xs`,children:(0,J.jsx)(hl,{placeholder:o})}),(0,J.jsx)(_l,{children:s.map(e=>(0,J.jsx)(vl,{value:e.value,children:e.label},e.value))})]}):a.length>0?(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground italic`,children:`All selected`}):(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground italic`,children:`Loading...`})]})]})}var jd=[{label:`30s`,value:3e4},{label:`1m`,value:6e4},{label:`2m`,value:12e4},{label:`5m`,value:3e5},{label:`10m`,value:6e5},{label:`30m`,value:18e5},{label:`1h`,value:36e5}];function Md({configId:e,existing:t,onDone:n}){let{createWatcher:r,updateWatcher:i,testJql:a}=Cd(),[o,s]=(0,q.useState)(t?.name??``),[c,l]=(0,q.useState)(t?.jql??``),[u,d]=(0,q.useState)(t?.intervalMs??12e4),[f,p]=(0,q.useState)(t?.mode??`debug`),[m,h]=(0,q.useState)(t?.promptTemplate??``),[g,_]=(0,q.useState)(!1),[v,y]=(0,q.useState)(!1),[b,x]=(0,q.useState)(null),[S,C]=(0,q.useState)(0),[w,T]=(0,q.useState)(null),E=!!t;return(0,J.jsxs)(`form`,{onSubmit:async a=>{if(a.preventDefault(),!(!o||!c)){_(!0);try{E?await i(t.id,{name:o,jql:c,intervalMs:u,mode:f,promptTemplate:m||null}):await r({configId:e,name:o,jql:c,intervalMs:u,mode:f,promptTemplate:m||void 0}),n()}catch{}_(!1)}},className:`space-y-3 min-w-0`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Name`}),(0,J.jsx)(Z,{value:o,onChange:e=>s(e.target.value),placeholder:`Bug watcher`,className:`h-9`})]}),(0,J.jsx)(kd,{value:c,onChange:l,configId:e}),(0,J.jsxs)(F,{type:`button`,size:`sm`,variant:`outline`,className:`w-full min-h-[44px]`,disabled:!c||v,onClick:async()=>{if(c){y(!0),T(null),x(null);try{let t=await a(e,c);x(t.issues),C(t.total)}catch(e){T(e.message??`Test failed`)}y(!1)}},children:[v?(0,J.jsx)(K,{className:`size-4 animate-spin mr-1.5`}):(0,J.jsx)(Ge,{className:`size-4 mr-1.5`}),`Test Filter`]}),w&&(0,J.jsx)(`p`,{className:`text-xs text-destructive bg-destructive/10 rounded-md px-3 py-2`,children:w}),b&&(0,J.jsxs)(`div`,{className:`border rounded-md max-h-48 overflow-hidden`,children:[(0,J.jsxs)(`div`,{className:`px-3 py-1.5 border-b bg-muted/50 text-xs text-muted-foreground font-medium`,children:[S,` ticket`,S===1?``:`s`,` found`,S>b.length&&` (showing ${b.length})`]}),(0,J.jsx)(`div`,{className:`overflow-y-auto max-h-[calc(12rem-30px)]`,children:b.length===0?(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground text-center py-4`,children:`No tickets match this filter.`}):b.map(e=>(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-1.5 border-b last:border-b-0 text-xs min-w-0`,children:[(0,J.jsx)(`span`,{className:`font-mono font-medium shrink-0`,children:e.key}),(0,J.jsx)(`span`,{className:`truncate text-muted-foreground flex-1 min-w-0`,children:e.fields.summary}),(0,J.jsx)(`span`,{className:`shrink-0 text-[10px] text-muted-foreground px-1.5 py-0.5 bg-muted rounded whitespace-nowrap`,children:e.fields.status.name})]},e.key))})]}),(0,J.jsxs)(`div`,{className:`flex gap-2`,children:[(0,J.jsxs)(`div`,{className:`flex-1`,children:[(0,J.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Interval`}),(0,J.jsxs)(ml,{value:String(u),onValueChange:e=>d(Number(e)),children:[(0,J.jsx)(gl,{className:`h-9`,children:(0,J.jsx)(hl,{})}),(0,J.jsx)(_l,{children:jd.map(e=>(0,J.jsx)(vl,{value:String(e.value),children:e.label},e.value))})]})]}),(0,J.jsxs)(`div`,{className:`flex-1`,children:[(0,J.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Mode`}),(0,J.jsxs)(ml,{value:f,onValueChange:e=>p(e),children:[(0,J.jsx)(gl,{className:`h-9`,children:(0,J.jsx)(hl,{})}),(0,J.jsxs)(_l,{children:[(0,J.jsx)(vl,{value:`debug`,children:`Debug + Notify`}),(0,J.jsx)(vl,{value:`notify`,children:`Notify only`})]})]})]})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Prompt template (optional)`}),(0,J.jsx)(`textarea`,{value:m,onChange:e=>h(e.target.value),className:`w-full h-16 rounded-md border border-input bg-background px-3 py-2 text-xs font-mono resize-none focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring`,placeholder:`Debug Jira issue {issue_key}: {summary}`})]}),(0,J.jsx)(F,{type:`submit`,size:`sm`,disabled:g||!o||!c,className:`min-h-[44px] w-full`,children:g?(0,J.jsx)(K,{className:`size-4 animate-spin`}):E?`Save Changes`:`Create Watcher`})]})}function Nd({configId:e}){let{watchers:t,deleteWatcher:n,toggleWatcher:r,pullWatcher:i}=Cd(),[a,o]=(0,q.useState)(!1),[s,c]=(0,q.useState)(null),[l,u]=(0,q.useState)(null),d=async e=>{u(e);try{let t=await i(e);I.success(`Pulled ${t.newIssues} new issue${t.newIssues===1?``:`s`}`)}catch(e){I.error(e.message??`Pull failed`)}u(null)};return(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`h4`,{className:`text-sm font-medium`,children:`Watchers`}),(0,J.jsxs)(Ue,{open:a,onOpenChange:o,children:[(0,J.jsx)(He,{asChild:!0,children:(0,J.jsxs)(F,{size:`sm`,variant:`outline`,className:`min-h-[44px]`,children:[(0,J.jsx)(Ze,{className:`size-4 mr-1`}),` Add`]})}),(0,J.jsxs)(ze,{className:`max-w-md overflow-hidden`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:`New Watcher`})}),(0,J.jsx)(Md,{configId:e,onDone:()=>o(!1)})]})]})]}),t.length===0&&(0,J.jsx)(`p`,{className:`text-sm text-muted-foreground py-4 text-center`,children:`No watchers yet.`}),t.map(e=>(0,J.jsxs)(`div`,{className:`flex items-center gap-2 p-2 rounded-md border text-sm`,children:[(0,J.jsx)(fl,{checked:e.enabled,onCheckedChange:t=>r(e.id,t),className:`shrink-0`}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,J.jsx)(`div`,{className:`font-medium truncate`,children:e.name}),(0,J.jsx)(`div`,{className:`text-xs text-muted-foreground truncate font-mono`,children:e.jql})]}),(0,J.jsxs)(`span`,{className:`text-xs text-muted-foreground shrink-0`,children:[e.mode===`notify`?`notify`:`debug`,` · `,Pd(e.intervalMs)]}),(0,J.jsx)(F,{size:`icon`,variant:`ghost`,className:`size-8`,onClick:()=>c(e),children:(0,J.jsx)(De,{className:`size-3.5`})}),(0,J.jsx)(F,{size:`icon`,variant:`ghost`,className:`size-8`,onClick:()=>d(e.id),disabled:l===e.id,children:l===e.id?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):(0,J.jsx)(mr,{className:`size-3.5`})}),(0,J.jsx)(F,{size:`icon`,variant:`ghost`,className:`size-8 text-destructive`,onClick:()=>n(e.id),children:(0,J.jsx)(Rr,{className:`size-3.5`})})]},e.id)),(0,J.jsx)(Ue,{open:!!s,onOpenChange:e=>{e||c(null)},children:(0,J.jsxs)(ze,{className:`max-w-md overflow-hidden`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:`Edit Watcher`})}),s&&(0,J.jsx)(Md,{configId:e,existing:s,onDone:()=>c(null)})]})})]})}function Pd(e){return e>=36e5?`${e/36e5}h`:e>=6e4?`${e/6e4}m`:`${e/1e3}s`}function Fd({projectId:e,existing:t}){let{saveConfig:n,deleteConfig:r,testConnection:i}=Cd(),[a,o]=(0,q.useState)(t?.baseUrl??``),[s,c]=(0,q.useState)(t?.email??``),[l,u]=(0,q.useState)(``);(0,q.useEffect)(()=>{t&&(o(t.baseUrl),c(t.email))},[t?.baseUrl,t?.email]);let[d,f]=(0,q.useState)(!1),[p,m]=(0,q.useState)(!1),[h,g]=(0,q.useState)(null),[_,v]=(0,q.useState)(null);return(0,J.jsxs)(`form`,{onSubmit:async r=>{if(r.preventDefault(),!(!a||!s||!l&&!t?.hasToken)){f(!0);try{await n(e,{baseUrl:a,email:s,...l?{token:l}:{}}),u(``)}catch{}f(!1)}},className:`space-y-3`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Base URL`}),(0,J.jsx)(Z,{value:a,onChange:e=>o(e.target.value),placeholder:`https://mysite.atlassian.net`,className:`h-9`})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Email`}),(0,J.jsx)(Z,{value:s,onChange:e=>c(e.target.value),placeholder:`you@company.com`,className:`h-9`})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`label`,{className:`text-xs text-muted-foreground`,children:[`API Token `,t?.hasToken&&(0,J.jsx)(`span`,{className:`text-success`,children:`(saved)`})]}),(0,J.jsx)(Z,{type:`password`,value:l,onChange:e=>u(e.target.value),placeholder:t?.hasToken?`Enter new token to replace`:`Your Jira API token`,className:`h-9`})]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-2 flex-wrap`,children:[(0,J.jsx)(F,{type:`submit`,size:`sm`,disabled:d,className:`min-w-[44px] min-h-[44px]`,children:d?(0,J.jsx)(K,{className:`size-4 animate-spin`}):`Save`}),t&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(F,{type:`button`,size:`sm`,variant:`outline`,onClick:async()=>{m(!0),g(null),v(null);try{g(await i(e)?`ok`:`fail`)}catch(e){g(`fail`),v(e?.message??`Connection failed`)}m(!1)},disabled:p,className:`min-h-[44px]`,children:p?(0,J.jsx)(K,{className:`size-4 animate-spin`}):`Test Connection`}),(0,J.jsx)(F,{type:`button`,size:`sm`,variant:`destructive`,onClick:()=>r(e),className:`min-h-[44px]`,children:(0,J.jsx)(Rr,{className:`size-4`})})]}),h===`ok`&&(0,J.jsx)(Yt,{className:`size-4 text-success`}),h===`fail`&&(0,J.jsx)(Jt,{className:`size-4 text-error`})]}),_&&(0,J.jsx)(`p`,{className:`text-xs text-error break-all`,children:_})]})}function Id({result:e,onClose:t}){let{watchers:n,startDebug:r}=Cd(),[i,a]=(0,q.useState)(``);return(0,q.useEffect)(()=>{e&&a((n.find(t=>t.id===e.watcherId)?.promptTemplate??`Debug Jira issue {issue_key}: {summary}`).replace(/\{issue_key\}/g,e.issueKey).replace(/\{summary\}/g,e.issueSummary??``))},[e,n]),(0,J.jsx)(Ue,{open:!!e,onOpenChange:e=>{e||t()},children:(0,J.jsxs)(ze,{className:`max-w-md`,children:[(0,J.jsx)(Ie,{children:(0,J.jsxs)(Be,{children:[`Start Debug: `,e?.issueKey]})}),(0,J.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:e?.issueSummary}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Debug Prompt`}),(0,J.jsx)(`textarea`,{value:i,onChange:e=>a(e.target.value),className:`w-full h-24 rounded-md border border-input bg-background px-3 py-2 text-xs font-mono resize-none mt-1`,placeholder:`Debug Jira issue {issue_key}: {summary}`})]}),(0,J.jsx)(F,{size:`sm`,className:`w-full min-h-[44px]`,onClick:async()=>{if(e){try{await r(e.id,i)}catch{}t()}},children:`Start Debug Session`})]})})}function Ld(){let e=U(e=>e.activeProject),t=W(e=>e.openTab),{configs:n,watchers:r,results:i,loadConfigs:a,loadWatchers:o,loadResults:s,loadProjectsWithIds:c,projectsWithIds:l,softDeleteResult:u,resumeDebug:d,cancelDebug:f,markRead:p,unreadCount:m,loadUnreadCount:h}=Cd(),[g,_]=(0,q.useState)(`tickets`),[v,y]=(0,q.useState)(!1),[b,x]=(0,q.useState)(null),S=l.find(t=>t.name===e?.name),C=n.find(e=>e.projectId===S?.id);(0,q.useEffect)(()=>{a(),c()},[]),(0,q.useEffect)(()=>{C&&o(C.id)},[C?.id]);let w=(0,q.useCallback)(async()=>{y(!0);try{await s()}catch{}y(!1)},[s]);(0,q.useEffect)(()=>{w(),h()},[C?.id]),(0,q.useEffect)(()=>{let n=n=>{let r=n.detail;r&&(w(),r.status===`done`?(h(),I.success(`Debug complete: ${r.issueKey}`,{action:r.sessionId?{label:`View`,onClick:()=>t({type:`chat`,title:`[Jira] ${r.issueKey}`,projectId:e?.name??null,metadata:{projectName:e?.name,sessionId:r.sessionId},closable:!0})}:void 0})):r.status===`failed`&&I.error(`Debug failed: ${r.issueKey}`))};return window.addEventListener(`jira:status_change`,n),()=>window.removeEventListener(`jira:status_change`,n)},[w,h]);let T=(0,q.useCallback)(n=>{n.sessionId&&(n.status===`done`&&!n.readAt&&p(n.id),t({type:`chat`,title:`[Jira] ${n.issueKey}`,projectId:e?.name??null,metadata:{projectName:e?.name,sessionId:n.sessionId},closable:!0}))},[t,p,e]),E=e=>{e.sessionId&&T(e)};return e?g===`tickets`?(0,J.jsxs)(`div`,{className:`h-full flex flex-col`,children:[(0,J.jsxs)(Ec,{icon:zt,title:`Jira`,children:[m>0&&(0,J.jsx)(`span`,{className:`inline-flex items-center justify-center min-w-[18px] h-[18px] px-1 rounded-full bg-primary text-primary-foreground text-[10px] font-bold`,children:m}),(0,J.jsx)(`button`,{onClick:w,disabled:v,title:`Refresh`,className:`flex size-6 items-center justify-center rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground disabled:opacity-50`,children:v?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):(0,J.jsx)(br,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:()=>_(`watchers`),title:`Watchers`,className:`flex size-6 items-center justify-center rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground`,children:(0,J.jsx)(qn,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:()=>_(`credentials`),title:`Credentials`,className:`flex size-6 items-center justify-center rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground`,children:(0,J.jsx)(Er,{className:`size-3.5`})})]}),(0,J.jsx)(Dc,{className:`flex-1 min-h-0`,children:(0,J.jsx)(`div`,{className:`p-1.5 space-y-1.5`,children:C?i.length===0&&r.length===0?(0,J.jsx)(Rd,{message:`No watchers yet`,action:`Add Watcher`,onAction:()=>_(`watchers`)}):i.length===0?(0,J.jsx)(Rd,{message:`No tickets yet. Watchers will pick up new issues.`}):i.map(e=>(0,J.jsx)(Ed,{result:e,onDebug:x,onResume:e=>d(e.id),onCancel:e=>f(e.id),onOpenSession:T,onDelete:u,onClick:E},e.id)):(0,J.jsx)(Rd,{message:`No Jira credentials configured`,action:`Set up Jira`,onAction:()=>_(`credentials`)})})}),(0,J.jsx)(Id,{result:b,onClose:()=>x(null)})]}):(0,J.jsxs)(`div`,{className:`h-full flex flex-col`,children:[(0,J.jsxs)(`div`,{className:`shrink-0 px-2 py-2 flex items-center gap-1.5 border-b border-border/50`,children:[(0,J.jsx)(F,{size:`icon`,variant:`ghost`,className:`size-7`,onClick:()=>_(`tickets`),children:(0,J.jsx)(pe,{className:`size-4`})}),(0,J.jsx)(`h2`,{className:`text-sm font-semibold truncate`,children:g===`watchers`?`Watchers`:`Jira Credentials`})]}),(0,J.jsx)(Dc,{className:`flex-1 min-h-0`,children:(0,J.jsx)(`div`,{className:`p-3`,children:g===`watchers`?C?(0,J.jsx)(Nd,{configId:C.id}):(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground text-center py-4`,children:`Configure Jira credentials first.`}):S?(0,J.jsx)(Fd,{projectId:S.id,existing:C?{baseUrl:C.baseUrl,email:C.email,hasToken:C.hasToken}:null}):(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground text-center py-4`,children:`Project not found in database.`})})})]}):(0,J.jsx)(`div`,{className:`flex items-center justify-center h-32 p-4`,children:(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground text-center`,children:`Select a project to use Jira`})})}function Rd({message:e,action:t,onAction:n}){return(0,J.jsxs)(`div`,{className:`flex flex-col items-center justify-center py-12 gap-3`,children:[(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground text-center`,children:e}),t&&n&&(0,J.jsxs)(F,{size:`sm`,variant:`outline`,className:`min-h-[44px]`,onClick:n,children:[(0,J.jsx)(Ze,{className:`size-4 mr-1.5`}),` `,t]})]})}var zd=`/api/ai-resources`;function Bd(e){return R.get(`${zd}?project=${encodeURIComponent(e)}`)}function Vd(e,t){return R.get(`${zd}/content?project=${encodeURIComponent(t)}&path=${encodeURIComponent(e)}`)}function Hd(e,t,n){return R.put(`${zd}/content`,{path:e,content:t,project:n})}function Ud(e,t,n,r){return R.post(zd,{type:e,scope:t,name:n,project:r})}function Wd(e,t,n,r,i){return R.post(`${zd}/duplicate`,{path:e,type:t,scope:n,name:r,project:i})}function Gd(e,t,n){return R.del(zd,{path:e,type:t,project:n})}var Kd=nt((e,t)=>({project:null,loading:!1,error:null,result:null,load:async n=>{e({project:n,loading:!0,error:null});try{let r=await Bd(n);if(t().project!==n)return;e({result:r,loading:!1})}catch(r){if(t().project!==n)return;e({error:r.message,loading:!1})}},reload:async()=>{let e=t().project;e&&await t().load(e)}}));function qd(){return R.get(`/api/settings/mcp`)}function Jd(e,t){return R.post(`/api/settings/mcp`,{name:e,config:t})}function Yd(e,t){return R.put(`/api/settings/mcp/${encodeURIComponent(e)}`,t)}function Xd(e){return R.del(`/api/settings/mcp/${encodeURIComponent(e)}`)}function Zd(){return R.post(`/api/settings/mcp/import`,{})}function Qd(e){return!e||!/^[a-zA-Z0-9][a-zA-Z0-9_-]*$/.test(e)?`Name must start with a letter/digit, then alphanumeric, hyphens, or underscores`:e.length>50?`Name max 50 chars`:null}function $d(e){let t=[];if(!e||typeof e!=`object`)return[`Config must be an object`];let n=e,r=n.type??`stdio`;return r===`stdio`?(!n.command||typeof n.command!=`string`)&&t.push(`command is required for stdio`):r===`http`||r===`sse`?((!n.url||typeof n.url!=`string`)&&t.push(`url is required for `+r),n.url&&typeof n.url==`string`&&!/^https?:\/\/.+/.test(n.url)&&t.push(`url must be HTTP(S)`)):t.push(`type must be stdio, http, or sse`),t}var ef=[`stdio`,`http`,`sse`];function tf({open:e,onClose:t,editServer:n}){let r=!!n,[i,a]=(0,q.useState)(``),[o,s]=(0,q.useState)(`stdio`),[c,l]=(0,q.useState)(``),[u,d]=(0,q.useState)(``),[f,p]=(0,q.useState)(``),[m,h]=(0,q.useState)([]),[g,_]=(0,q.useState)(!1),[v,y]=(0,q.useState)(null);(0,q.useEffect)(()=>{if(e)if(y(null),_(!1),n){a(n.name),s(n.transport||`stdio`);let e=n.config;`command`in e?(l(e.command||``),d((e.args??[]).join(` `)),h(nf(e.env))):`url`in e&&(p(e.url||``),h(nf(e.headers)))}else a(``),s(`stdio`),l(``),d(``),p(``),h([])},[e,n]);let b=()=>{let e=rf(m);return o===`stdio`?{type:`stdio`,command:c,...u.trim()&&{args:u.trim().split(/\s+/)},...Object.keys(e).length>0&&{env:e}}:{type:o,url:f,...Object.keys(e).length>0&&{headers:e}}},x=async()=>{if(y(null),!r){let e=Qd(i);if(e){y(e);return}}let e=b(),n=$d(e);if(n.length){y(n.join(`; `));return}_(!0);try{r?await Yd(i,e):await Jd(i,e),t(!0)}catch(e){y(e.message||`Save failed`)}finally{_(!1)}},S=()=>h([...m,{key:``,value:``}]),C=e=>h(m.filter((t,n)=>n!==e)),w=(e,t,n)=>{h(m.map((r,i)=>i===e?{key:t===`key`?n:r.key,value:t===`value`?n:r.value}:r))},T=o===`stdio`,E=T?`Environment Variables`:`Headers`;return(0,J.jsx)(Ue,{open:e,onOpenChange:e=>{e||t()},children:(0,J.jsxs)(ze,{className:`max-h-[85vh] overflow-y-auto sm:max-w-md`,children:[(0,J.jsxs)(Ie,{children:[(0,J.jsx)(Be,{className:`text-sm`,children:r?`Edit MCP Server`:`Add MCP Server`}),(0,J.jsx)(Ve,{className:`text-[11px]`,children:`Configure a Model Context Protocol server connection.`})]}),(0,J.jsxs)(`div`,{className:`space-y-3`,children:[(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Name`}),(0,J.jsx)(Z,{value:i,onChange:e=>a(e.target.value),placeholder:`my-mcp-server`,className:`h-8 text-xs`,disabled:r})]}),(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Transport`}),(0,J.jsx)(`div`,{className:`flex gap-1`,children:ef.map(e=>(0,J.jsx)(F,{variant:o===e?`default`:`outline`,size:`sm`,className:`flex-1 h-7 text-xs cursor-pointer`,onClick:()=>{s(e),h([]),l(``),d(``),p(``)},children:e},e))})]}),T?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Command *`}),(0,J.jsx)(Z,{value:c,onChange:e=>l(e.target.value),placeholder:`npx`,className:`h-8 text-xs`})]}),(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Arguments (space-separated)`}),(0,J.jsx)(Z,{value:u,onChange:e=>d(e.target.value),placeholder:`@playwright/mcp@latest`,className:`h-8 text-xs`})]})]}):(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`URL *`}),(0,J.jsx)(Z,{value:f,onChange:e=>p(e.target.value),placeholder:`https://mcp.example.com`,className:`h-8 text-xs`})]}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:E}),m.map((e,t)=>(0,J.jsxs)(`div`,{className:`flex gap-1 items-center`,children:[(0,J.jsx)(Z,{value:e.key,onChange:e=>w(t,`key`,e.target.value),placeholder:`KEY`,className:`h-7 text-xs flex-1`}),(0,J.jsx)(Z,{value:e.value,onChange:e=>w(t,`value`,e.target.value),placeholder:`value`,className:`h-7 text-xs flex-1`}),(0,J.jsx)(F,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0 cursor-pointer`,onClick:()=>C(t),children:(0,J.jsx)(Qe,{className:`size-3`})})]},t)),(0,J.jsxs)(F,{variant:`outline`,size:`sm`,className:`h-7 text-xs gap-1 cursor-pointer`,onClick:S,children:[(0,J.jsx)(Ze,{className:`size-3`}),` Add `,T?`Variable`:`Header`]})]}),v&&(0,J.jsx)(`p`,{className:`text-[11px] text-destructive`,children:v})]}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(F,{variant:`outline`,size:`sm`,className:`h-8 text-xs cursor-pointer`,onClick:()=>t(),children:`Cancel`}),(0,J.jsx)(F,{size:`sm`,className:`h-8 text-xs cursor-pointer`,onClick:x,disabled:g,children:g?`Saving...`:`Save`})]})]})})}function nf(e){return e?Object.entries(e).map(([e,t])=>({key:e,value:t})):[]}function rf(e){let t={};for(let{key:n,value:r}of e)n.trim()&&(t[n.trim()]=r);return t}var af={skill:In,agent:he,command:Ar},of={skill:`Skills`,agent:`Agents`,command:`Commands`},sf={project:`text-primary border-primary/30 bg-primary/10`,user:`text-emerald-400 border-emerald-500/30 bg-emerald-500/10`,bundled:`text-text-subtle border-border bg-surface-elevated`},cf={project:`Project`,user:`User`,bundled:`Bundled`};function lf({scope:e,className:t}){return(0,J.jsx)(`span`,{className:V(`shrink-0 rounded border px-1 py-px text-[9px] font-medium uppercase leading-none tracking-wide`,sf[e],t),children:cf[e]})}var uf=(0,q.memo)(function({item:e,active:t,onOpen:n,onDuplicate:r,onDelete:i}){let a=af[e.type];return(0,J.jsxs)(jc,{children:[(0,J.jsx)(Mc,{asChild:!0,children:(0,J.jsxs)(`button`,{onClick:()=>n(e),className:V(`group relative flex w-full items-center gap-2 px-2 py-1.5 text-left transition-colors`,t?`bg-accent-wash text-foreground shadow-[inset_2px_0_0_var(--accent)]`:`hover:bg-surface-elevated`,e.shadowed&&`opacity-55`),children:[(0,J.jsx)(a,{className:`size-4 shrink-0 text-text-subtle`,strokeWidth:t?2.3:2}),(0,J.jsxs)(`span`,{className:`min-w-0 flex-1`,children:[(0,J.jsxs)(`span`,{className:`flex items-center gap-1.5`,children:[(0,J.jsx)(`span`,{className:V(`truncate text-[13px] font-medium`,e.shadowed&&`line-through`),children:e.name}),e.overrides?(0,J.jsx)(`span`,{className:`shrink-0 rounded bg-amber-500/15 px-1 py-px text-[9px] font-medium text-amber-400 leading-none`,children:`overrides`}):null,e.shadowed?(0,J.jsx)(`span`,{className:`shrink-0 text-[9px] text-text-subtle`,children:`shadowed`}):null]}),e.description?(0,J.jsx)(`span`,{className:`block truncate text-[11px] text-text-subtle`,children:e.description}):null]}),(0,J.jsx)(lf,{scope:e.scope})]})}),(0,J.jsxs)(Nc,{className:`w-48`,children:[(0,J.jsx)(Pc,{onClick:()=>n(e),children:e.readOnly?`Open (read-only)`:`Open / Edit`}),(0,J.jsx)(Pc,{onClick:()=>r(e),children:`Duplicate…`}),!e.readOnly&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Fc,{}),(0,J.jsx)(Pc,{variant:`destructive`,onClick:()=>i(e),children:`Delete`})]})]})]})});function df({open:e,onOpenChange:t,mode:n,source:r,initialType:i,project:a,hasProject:o,onSuccess:s}){let[c,l]=(0,q.useState)(`skill`),[u,d]=(0,q.useState)(o?`project`:`user`),[f,p]=(0,q.useState)(``),[m,h]=(0,q.useState)(!1);(0,q.useEffect)(()=>{e&&(l(n===`duplicate`&&r?r.type:i??`skill`),p(n===`duplicate`&&r?`${r.name}-copy`:``),d(o?`project`:`user`),h(!1))},[e,n,r,i,o]);let g=/^[a-zA-Z0-9][a-zA-Z0-9._-]*$/.test(f);async function _(){if(!(!g||m)){h(!0);try{let e=n===`duplicate`&&r?await Wd(r.filePath,c,u,f,a):await Ud(c,u,f,a);I.success(n===`duplicate`?`Resource duplicated`:`Resource created`),t(!1),s(e.filePath)}catch(e){I.error(e.message),h(!1)}}}return(0,J.jsx)(Ue,{open:e,onOpenChange:t,children:(0,J.jsxs)(ze,{className:`sm:max-w-md`,children:[(0,J.jsxs)(Ie,{children:[(0,J.jsx)(Be,{children:n===`duplicate`?`Duplicate resource`:`New resource`}),(0,J.jsx)(Ve,{children:n===`duplicate`?`Copy this resource into a writable scope under a new name.`:`Create a new skill, agent, or command from a template.`})]}),(0,J.jsxs)(`div`,{className:`space-y-3 py-1`,children:[(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{children:`Type`}),(0,J.jsxs)(ml,{value:c,onValueChange:e=>l(e),disabled:n===`duplicate`,children:[(0,J.jsx)(gl,{children:(0,J.jsx)(hl,{})}),(0,J.jsxs)(_l,{children:[(0,J.jsx)(vl,{value:`skill`,children:`Skill`}),(0,J.jsx)(vl,{value:`agent`,children:`Agent`}),(0,J.jsx)(vl,{value:`command`,children:`Command`})]})]})]}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{children:`Scope`}),(0,J.jsxs)(ml,{value:u,onValueChange:e=>d(e),children:[(0,J.jsx)(gl,{children:(0,J.jsx)(hl,{})}),(0,J.jsxs)(_l,{children:[(0,J.jsxs)(vl,{value:`project`,disabled:!o,children:[`Project`,o?``:` (no project selected)`]}),(0,J.jsx)(vl,{value:`user`,children:`User (~/.claude)`})]})]})]}),(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(Qc,{children:`Name`}),(0,J.jsx)(Z,{value:f,autoFocus:!0,placeholder:`my-resource`,onChange:e=>p(e.target.value),onKeyDown:e=>{e.key===`Enter`&&_()}}),f&&!g&&(0,J.jsx)(`p`,{className:`text-[11px] text-destructive`,children:`Use letters, numbers, dots, dashes, underscores (no spaces or slashes).`})]})]}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(F,{variant:`ghost`,onClick:()=>t(!1),disabled:m,children:`Cancel`}),(0,J.jsx)(F,{onClick:_,disabled:!g||m,children:m?`Working…`:n===`duplicate`?`Duplicate`:`Create`})]})]})})}function ff({open:e,kind:t,name:n,folderWarning:r,onCancel:i,onConfirm:a}){return(0,J.jsx)(Ue,{open:e,onOpenChange:e=>{e||i()},children:(0,J.jsxs)(ze,{className:`sm:max-w-md`,children:[(0,J.jsxs)(Ie,{children:[(0,J.jsxs)(Be,{children:[`Delete `,t,`?`]}),(0,J.jsxs)(Ve,{children:[`This permanently deletes `,(0,J.jsx)(`span`,{className:`font-medium text-foreground`,children:n}),r?` and its entire skill folder`:``,`. This cannot be undone.`]})]}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(F,{variant:`ghost`,onClick:i,children:`Cancel`}),(0,J.jsx)(F,{variant:`destructive`,onClick:a,children:`Delete`})]})]})})}function pf(e,t){let n=W.getState(),r=n.tabs.find(t=>t.type===`ai-resource`&&t.metadata?.filePath===e.filePath);if(r){n.setActiveTab(r.id);return}n.openTab({type:`ai-resource`,title:e.name,projectId:null,closable:!0,metadata:{filePath:e.filePath,name:e.name,resourceType:e.type,scope:e.scope,readOnly:e.readOnly,shadowed:e.shadowed,shadowedBy:e.shadowedBy??null,project:t}})}function mf(){let[e,t]=(0,q.useState)([]),[n,r]=(0,q.useState)(!0),i=(0,q.useCallback)(async()=>{try{t(await qd())}catch{}finally{r(!1)}},[]);return(0,q.useEffect)(()=>{i()},[i]),{servers:e,loading:n,reload:i,remove:(0,q.useCallback)(async e=>{await Xd(e),await i()},[i])}}function hf({servers:e,showActions:t,importing:n,onAdd:r,onImport:i,onEdit:a,onDelete:o}){return e.length===0&&!t?null:(0,J.jsxs)(`div`,{className:`pb-1`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-1 text-[10px] font-semibold uppercase tracking-wide text-text-subtle`,children:[(0,J.jsx)(`span`,{children:`MCP Servers`}),(0,J.jsx)(`span`,{className:`text-text-subtle/60`,children:e.length})]}),e.map(e=>(0,J.jsxs)(jc,{children:[(0,J.jsx)(Mc,{asChild:!0,children:(0,J.jsxs)(`button`,{onClick:()=>a(e),className:`group flex w-full items-center gap-2 px-2 py-1.5 text-left transition-colors hover:bg-surface-elevated`,children:[(0,J.jsx)(hr,{className:`size-4 shrink-0 text-text-subtle`}),(0,J.jsxs)(`span`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`span`,{className:`block truncate text-[13px] font-medium`,children:e.name}),(0,J.jsx)(`span`,{className:`block truncate text-[11px] text-text-subtle`,children:gf(e)})]}),(0,J.jsx)(`span`,{className:`shrink-0 rounded border border-border bg-surface-elevated px-1 py-px text-[9px] font-medium uppercase leading-none tracking-wide text-text-subtle`,children:e.transport})]})}),(0,J.jsxs)(Nc,{className:`w-40`,children:[(0,J.jsx)(Pc,{onClick:()=>a(e),children:`Edit…`}),(0,J.jsx)(Fc,{}),(0,J.jsx)(Pc,{variant:`destructive`,onClick:()=>o(e),children:`Delete`})]})]},e.name)),e.length===0&&t&&(0,J.jsx)(`p`,{className:`px-2 py-2 text-[11px] text-text-subtle`,children:`No MCP servers configured.`}),t&&(0,J.jsxs)(`div`,{className:`flex flex-col gap-1 px-2 pt-1.5`,children:[(0,J.jsxs)(`button`,{onClick:r,className:`flex items-center justify-center gap-1.5 rounded-md bg-primary py-1.5 text-[11px] font-medium text-primary-foreground hover:bg-primary/90`,children:[(0,J.jsx)(Ze,{className:`size-3.5`}),` Add MCP server`]}),(0,J.jsxs)(`button`,{onClick:i,disabled:n,className:V(`flex items-center justify-center gap-1.5 rounded-md border border-border py-1.5 text-[11px] text-text-secondary hover:bg-surface-elevated`,n&&`opacity-50`),children:[(0,J.jsx)(Xe,{className:`size-3.5`}),` `,n?`Importing…`:`Import from Claude Code`]})]})]})}function gf(e){let t=e.config;if(e.transport===`stdio`||!(`url`in t)){let e=t;return[e.command,...e.args??[]].filter(Boolean).join(` `)}return t.url??``}function _f({onCreate:e,onAddMcp:t,onImportMcp:n}){return(0,J.jsxs)(Zs,{children:[(0,J.jsx)(Qs,{asChild:!0,children:(0,J.jsxs)(`button`,{className:`flex items-center gap-1 rounded bg-primary px-2 py-1 text-[11px] font-medium text-primary-foreground hover:bg-primary/90`,children:[(0,J.jsx)(Ze,{className:`size-3`}),` New`]})}),(0,J.jsxs)($s,{align:`end`,className:`w-44`,children:[(0,J.jsxs)(ec,{onClick:()=>e(`skill`),children:[(0,J.jsx)(In,{className:`size-3.5`}),` New Skill`]}),(0,J.jsxs)(ec,{onClick:()=>e(`agent`),children:[(0,J.jsx)(he,{className:`size-3.5`}),` New Agent`]}),(0,J.jsxs)(ec,{onClick:()=>e(`command`),children:[(0,J.jsx)(Ar,{className:`size-3.5`}),` New Command`]}),(0,J.jsx)(nc,{}),(0,J.jsxs)(ec,{onClick:t,children:[(0,J.jsx)(hr,{className:`size-3.5`}),` New MCP Server`]}),(0,J.jsxs)(ec,{onClick:n,children:[(0,J.jsx)(Xe,{className:`size-3.5`}),` Import MCP…`]})]})]})}var vf=[{id:`all`,label:`All`},{id:`skill`,label:`Skills`},{id:`agent`,label:`Agents`},{id:`command`,label:`Commands`},{id:`mcp`,label:`MCP`}];function yf(){let e=U(Tc(e=>e.activeProject)),t=e?.path??``,{result:n,loading:r,error:i,load:a,reload:o}=Kd(Tc(e=>({result:e.result,loading:e.loading,error:e.error,load:e.load,reload:e.reload}))),{tabs:s,activeTabId:c}=W(Tc(e=>({tabs:e.tabs,activeTabId:e.activeTabId}))),{servers:l,reload:u,remove:d}=mf(),[f,p]=(0,q.useState)(``),[m,h]=(0,q.useState)(`all`),[g,_]=(0,q.useState)(!1),[v,y]=(0,q.useState)(`skill`),[b,x]=(0,q.useState)(null),[S,C]=(0,q.useState)(null),[w,T]=(0,q.useState)(!1),[E,D]=(0,q.useState)(null),[O,k]=(0,q.useState)(null),[A,ee]=(0,q.useState)(!1);(0,q.useEffect)(()=>{a(t)},[t,a]);let te=(0,q.useMemo)(()=>s.find(e=>e.id===c&&e.type===`ai-resource`)?.metadata?.filePath??null,[s,c]),ne=m!==`mcp`,j=m===`all`||m===`mcp`,M=(0,q.useMemo)(()=>{if(!n||!ne)return[];let e=f.trim().toLowerCase();return n.groups.filter(e=>m===`all`||e.type===m).map(t=>({...t,items:t.items.filter(t=>!e||t.name.toLowerCase().includes(e)||t.description.toLowerCase().includes(e))})).filter(e=>e.items.length>0)},[n,m,f,ne]),re=(0,q.useMemo)(()=>{if(!j)return[];let e=f.trim().toLowerCase();return e?l.filter(t=>t.name.toLowerCase().includes(e)||gf(t).toLowerCase().includes(e)):l},[l,f,j]),ie=e=>pf(e,t),ae=async e=>{await o();let n=Kd.getState().result?.groups.flatMap(e=>e.items).find(t=>t.filePath===e);n&&pf(n,t)},oe=async()=>{if(S)try{await Gd(S.filePath,S.type,t),I.success(`Deleted ${S.name}`),C(null),await o()}catch(e){I.error(e.message)}},se=e=>{x(null),y(e),_(!0)},ce=()=>{D(null),T(!0)},N=e=>{T(!1),D(null),e&&u()},le=async()=>{if(O)try{await d(O.name),I.success(`Deleted ${O.name}`),k(null)}catch(e){I.error(e.message)}},ue=async()=>{ee(!0);try{let e=await Zd();I.success(`Imported ${e.imported}, skipped ${e.skipped}`),await u()}catch(e){I.error(e.message)}finally{ee(!1)}},de=n?.stats,fe=M.length===0&&(!j||re.length===0)&&m!==`mcp`;return(0,J.jsxs)(`div`,{className:`flex h-full flex-col`,children:[(0,J.jsxs)(Ec,{icon:qe,title:`AI Resources`,children:[(0,J.jsx)(`button`,{onClick:()=>{o(),u()},title:`Refresh`,className:`flex size-6 items-center justify-center rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground`,children:(0,J.jsx)(br,{className:V(`size-3.5`,r&&`animate-spin`)})}),(0,J.jsx)(_f,{onCreate:se,onAddMcp:ce,onImportMcp:ue})]}),(0,J.jsx)(`div`,{className:`px-2 pt-2 shrink-0`,children:(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsx)(Ge,{className:`pointer-events-none absolute left-2 top-1/2 size-3.5 -translate-y-1/2 text-text-subtle`}),(0,J.jsx)(`input`,{value:f,onChange:e=>p(e.target.value),placeholder:`Filter resources…`,className:`w-full rounded-md border border-border bg-surface-elevated py-1.5 pl-7 pr-2 text-xs outline-none focus:border-primary/50`})]})}),(0,J.jsx)(`div`,{className:`flex gap-1 px-2 py-2 shrink-0`,children:vf.map(e=>(0,J.jsx)(`button`,{onClick:()=>h(e.id),className:V(`rounded-full border px-2 py-0.5 text-[11px] transition-colors`,m===e.id?`border-primary/40 bg-primary/10 text-primary`:`border-border text-text-subtle hover:bg-surface-elevated`),children:e.label},e.id))}),(0,J.jsx)(`div`,{className:`flex-1 min-h-0 overflow-y-auto`,children:i?(0,J.jsx)(`div`,{className:`p-4 text-center text-xs text-destructive`,children:i}):r&&!n?(0,J.jsx)(`div`,{className:`space-y-1 p-2`,children:Array.from({length:6}).map((e,t)=>(0,J.jsx)(`div`,{className:`h-9 animate-pulse rounded bg-surface-elevated`},t))}):fe?(0,J.jsx)(bf,{hasProject:!!e,search:f}):(0,J.jsxs)(J.Fragment,{children:[M.map(e=>(0,J.jsxs)(`div`,{className:`pb-1`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-1 text-[10px] font-semibold uppercase tracking-wide text-text-subtle`,children:[(0,J.jsx)(`span`,{children:of[e.type]}),(0,J.jsx)(`span`,{className:`text-text-subtle/60`,children:e.items.length})]}),e.items.map(e=>(0,J.jsx)(uf,{item:e,active:te===e.filePath,onOpen:ie,onDuplicate:e=>x(e),onDelete:e=>C(e)},`${e.source}:${e.filePath}`))]},e.type)),j&&(0,J.jsx)(hf,{servers:re,showActions:m===`mcp`,importing:A,onAdd:ce,onImport:ue,onEdit:e=>{D(e),T(!0)},onDelete:e=>k(e)})]})}),de&&(0,J.jsxs)(`div`,{className:`flex items-center gap-2 border-t border-border px-2 py-1 text-[10px] text-text-subtle shrink-0`,children:[(0,J.jsxs)(`span`,{children:[de.active,` active`]}),(0,J.jsx)(`span`,{children:`·`}),(0,J.jsxs)(`span`,{children:[de.project,` project`]}),(0,J.jsx)(`span`,{children:`·`}),(0,J.jsxs)(`span`,{children:[de.shadowed,` shadowed`]})]}),(0,J.jsx)(df,{open:g||!!b,onOpenChange:e=>{e||(_(!1),x(null))},mode:b?`duplicate`:`create`,source:b,initialType:v,project:t,hasProject:!!e,onSuccess:ae}),(0,J.jsx)(ff,{open:!!S,kind:S?.type??``,name:S?.name??``,folderWarning:S?.type===`skill`,onCancel:()=>C(null),onConfirm:oe}),(0,J.jsx)(tf,{open:w,onClose:N,editServer:E}),(0,J.jsx)(ff,{open:!!O,kind:`MCP server`,name:O?.name??``,onCancel:()=>k(null),onConfirm:le})]})}function bf({hasProject:e,search:t}){return t?(0,J.jsxs)(`div`,{className:`p-6 text-center text-xs text-text-subtle`,children:[`No resources match “`,t,`”.`]}):(0,J.jsxs)(`div`,{className:`flex flex-col items-center gap-2 p-6 text-center`,children:[(0,J.jsx)(Cn,{className:`size-6 text-text-subtle`}),(0,J.jsx)(`p`,{className:`text-xs font-medium`,children:e?`No resources yet`:`No project selected`}),(0,J.jsx)(`p`,{className:`text-[11px] text-text-subtle`,children:e?`Create one with the New button above.`:`Project resources appear here once a project is open. User & bundled resources are still shown.`})]})}var xf={list:(e=!1)=>R.get(`/api/tunnels${e?`?force=1`:``}`),start:e=>R.post(`/api/tunnels`,{port:e}),stop:e=>R.del(`/api/tunnels/${e}`)},Sf={app:{label:`app`,cls:`bg-primary/10 text-primary`},ppm:{label:`ppm`,cls:`bg-success/10 text-success`},external:{label:`external`,cls:`bg-surface-elevated text-text-secondary`}};function Cf(){let[e,t]=(0,q.useState)([]),[n,r]=(0,q.useState)(``),[i,a]=(0,q.useState)(!1),[o,s]=(0,q.useState)(null),[c,l]=(0,q.useState)(null),[u,d]=(0,q.useState)(null),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)(!1),g=(0,q.useCallback)(async(e=!1)=>{e&&h(!0);try{t(await xf.list(e))}catch(e){console.warn(`[tunnels] failed to fetch`,e)}finally{p(!0),e&&h(!1)}},[]);(0,q.useEffect)(()=>{g();let e=setInterval(()=>g(),1e4);return()=>clearInterval(e)},[g]);let _=async e=>{a(!0),s(null);try{let t=await xf.start(e);window.open(t.url,`_blank`),r(``),await g()}catch(t){s(t.message||`Failed to start tunnel for port ${e}`)}finally{a(!1)}},v=async e=>{if(e.source===`external`&&u!==e.pid){d(e.pid),setTimeout(()=>d(t=>t===e.pid?null:t),4e3);return}d(null);try{await xf.stop(e.pid),await g()}catch(t){I.error(t.message||`Failed to stop tunnel (pid ${e.pid})`)}},y=(e,t)=>{ks(t).then(t=>{if(!t){I.error(`Failed to copy URL`);return}l(e),I.success(`URL copied`),setTimeout(()=>l(null),2e3)})};return(0,J.jsxs)(`div`,{className:`flex flex-col h-full w-full bg-background`,children:[(0,J.jsxs)(`div`,{className:`p-3 border-b border-border bg-surface`,children:[(0,J.jsxs)(`form`,{onSubmit:e=>{e.preventDefault();let t=parseInt(n,10);t>=1&&t<=65535?_(t):s(`Port must be 1-65535`)},className:`flex items-center gap-2`,children:[(0,J.jsxs)(`div`,{className:`flex-1 min-w-0 flex items-center gap-1.5 px-2.5 py-2 rounded-lg bg-background border border-border focus-within:border-primary/50 transition-colors`,children:[(0,J.jsx)(`span`,{className:`text-xs text-text-subtle shrink-0`,children:`localhost:`}),(0,J.jsx)(`input`,{type:`number`,value:n,onChange:e=>{r(e.target.value),s(null)},placeholder:`3000`,min:1,max:65535,className:`flex-1 min-w-0 bg-transparent text-sm text-text-primary outline-none placeholder:text-text-subtle [appearance:textfield] [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none`})]}),(0,J.jsx)(`button`,{type:`submit`,disabled:i||!n,className:`px-3 py-2 rounded-lg bg-primary text-primary-foreground text-sm font-medium hover:bg-primary/90 disabled:opacity-50 transition-colors shrink-0 flex items-center justify-center`,children:i?(0,J.jsx)(K,{className:`size-4 animate-spin`}):`Forward`}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>g(!0),disabled:m,title:`Refresh`,"aria-label":`Refresh tunnels`,className:`shrink-0 p-2 rounded-lg hover:bg-surface-elevated transition-colors disabled:opacity-50`,children:(0,J.jsx)(br,{className:`size-4 text-text-secondary ${m?`animate-spin`:``}`})})]}),o&&(0,J.jsx)(`p`,{className:`text-xs text-error mt-2`,children:o})]}),(0,J.jsx)(`div`,{className:`flex-1 overflow-y-auto p-3`,children:f?e.length===0?(0,J.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-3 text-center px-2`,children:[(0,J.jsx)(we,{className:`size-8 text-text-subtle`}),(0,J.jsx)(`p`,{className:`text-xs text-text-secondary`,children:`No cloudflared tunnels running. Forward a port, or start one elsewhere and it will appear here.`})]}):(0,J.jsx)(`div`,{className:`space-y-2`,children:e.map(e=>(0,J.jsxs)(`div`,{className:`p-2.5 rounded-lg bg-surface border border-border`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(`span`,{className:`shrink-0 font-mono text-sm font-medium text-text-primary`,children:e.port==null?`—`:`:${e.port}`}),(0,J.jsx)(`span`,{className:`shrink-0 px-1.5 py-0.5 rounded text-[10px] font-medium uppercase tracking-wide ${Sf[e.source].cls}`,children:Sf[e.source].label}),(0,J.jsx)(`div`,{className:`flex-1`}),e.protected?(0,J.jsx)(`div`,{className:`shrink-0 p-1.5`,title:`App tunnel — managed by PPM, not stoppable here`,children:(0,J.jsx)(Yn,{className:`size-4 text-text-subtle`})}):(0,J.jsx)(`button`,{onClick:()=>v(e),className:`shrink-0 h-8 min-w-8 px-1.5 flex items-center justify-center rounded-md transition-colors ${u===e.pid?`bg-error/15`:`hover:bg-error/10`}`,title:u===e.pid?`Click again to confirm stop`:`Stop tunnel`,children:u===e.pid?(0,J.jsx)(`span`,{className:`text-[10px] font-medium text-error`,children:`Sure?`}):(0,J.jsx)(Mr,{className:`size-4 text-error`})})]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1 mt-1`,children:[(0,J.jsx)(`span`,{className:`flex-1 min-w-0 truncate text-xs ${e.url?`text-text-secondary`:`text-text-subtle italic`}`,children:e.url??`unknown`}),e.url&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`button`,{onClick:()=>window.open(e.url,`_blank`),className:`shrink-0 p-1.5 rounded-md hover:bg-surface-elevated transition-colors`,title:`Open in browser`,children:(0,J.jsx)(un,{className:`size-3.5 text-text-secondary`})}),(0,J.jsx)(`button`,{onClick:()=>y(e.pid,e.url),className:`shrink-0 p-1.5 rounded-md hover:bg-surface-elevated transition-colors`,title:`Copy URL`,children:c===e.pid?(0,J.jsx)(xe,{className:`size-3.5 text-success`}):(0,J.jsx)(rn,{className:`size-3.5 text-text-secondary`})})]})]}),(0,J.jsxs)(`div`,{className:`mt-1 text-[10px] font-mono text-text-subtle`,children:[`pid `,e.pid]})]},e.pid))}):(0,J.jsx)(`div`,{className:`flex items-center justify-center h-full`,children:(0,J.jsx)(K,{className:`size-6 animate-spin text-primary`})})})]})}function wf({projectName:e,onTagsChanged:t}){let[n,r]=(0,q.useState)([]),[i,a]=(0,q.useState)(null),[o,s]=(0,q.useState)(!0),[c,l]=(0,q.useState)(null),[u,d]=(0,q.useState)(``),[f,p]=(0,q.useState)(``),[m,h]=(0,q.useState)(``),[g,_]=(0,q.useState)(`#22c55e`),[v,y]=(0,q.useState)(!1),b=`${L(e)}/tags`,x=(0,q.useCallback)(async()=>{try{let e=await R.get(b);r(e.tags),a(e.defaultTagId)}catch{}s(!1)},[b]);(0,q.useEffect)(()=>{x()},[x]);let S=async()=>{if(m.trim())try{await R.post(b,{name:m.trim(),color:g}),h(``),y(!1),x(),t?.()}catch{}},C=async e=>{try{await R.patch(`${b}/${e}`,{name:u.trim()||void 0,color:f||void 0}),l(null),x(),t?.()}catch{}},w=async(e,n)=>{if(window.confirm(`Delete tag "${n}"? Sessions with this tag will become untagged.`))try{await R.del(`${b}/${e}`),x(),t?.()}catch{}},T=async e=>{let t=e===i?null:e;try{await R.patch(`${b}/default-tag`,{tagId:t}),a(t)}catch{}};return o?(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground animate-pulse`,children:`Loading tags...`}):(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Session Tags`}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,J.jsx)(`button`,{onClick:async()=>{try{await R.post(`${b}/reset`,{}),x(),t?.()}catch{}},className:`p-1 rounded text-text-subtle hover:text-text-secondary`,title:`Reset to defaults`,children:(0,J.jsx)(Cr,{className:`size-3`})}),(0,J.jsx)(`button`,{onClick:()=>y(!v),className:`p-1 rounded text-primary hover:bg-primary/10`,title:`Add tag`,children:(0,J.jsx)(Ze,{className:`size-3.5`})})]})]}),v&&(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 px-1`,children:[(0,J.jsx)(`input`,{type:`color`,value:g,onChange:e=>_(e.target.value),className:`size-6 rounded cursor-pointer border-0 p-0`}),(0,J.jsx)(`input`,{value:m,onChange:e=>h(e.target.value),onKeyDown:e=>{e.key===`Enter`&&S(),e.key===`Escape`&&y(!1)},placeholder:`Tag name`,className:`flex-1 min-w-0 bg-surface-elevated text-[11px] text-text-primary px-2 py-1 rounded border border-border outline-none focus:border-primary`,autoFocus:!0}),(0,J.jsx)(`button`,{onClick:S,className:`p-1 text-success hover:text-success/80`,children:(0,J.jsx)(xe,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:()=>y(!1),className:`p-1 text-text-subtle hover:text-text-secondary`,children:(0,J.jsx)(Qe,{className:`size-3.5`})})]}),(0,J.jsxs)(`div`,{className:`space-y-0.5`,children:[n.map(e=>(0,J.jsx)(`div`,{className:`flex items-center gap-1.5 px-1 py-1 rounded hover:bg-surface-elevated group`,children:c===e.id?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`input`,{type:`color`,value:f,onChange:e=>p(e.target.value),className:`size-5 rounded cursor-pointer border-0 p-0`}),(0,J.jsx)(`input`,{value:u,onChange:e=>d(e.target.value),onKeyDown:t=>{t.key===`Enter`&&C(e.id),t.key===`Escape`&&l(null)},className:`flex-1 min-w-0 bg-surface-elevated text-[11px] px-1.5 py-0.5 rounded border border-border outline-none focus:border-primary`,autoFocus:!0}),(0,J.jsx)(`button`,{onClick:()=>C(e.id),className:`p-0.5 text-success`,children:(0,J.jsx)(xe,{className:`size-3`})}),(0,J.jsx)(`button`,{onClick:()=>l(null),className:`p-0.5 text-text-subtle`,children:(0,J.jsx)(Qe,{className:`size-3`})})]}):(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`span`,{className:`size-3 rounded-full shrink-0`,style:{backgroundColor:e.color}}),(0,J.jsx)(`span`,{className:`flex-1 text-[11px] text-text-primary truncate`,children:e.name}),(0,J.jsx)(`button`,{onClick:()=>T(e.id),className:`px-1.5 py-0.5 rounded text-[9px] font-medium transition-colors ${e.id===i?`bg-primary/15 text-primary border border-primary/30`:`text-text-subtle border border-transparent can-hover:opacity-0 can-hover:group-hover:opacity-100 hover:bg-surface-elevated hover:border-border`}`,title:e.id===i?`Default tag (click to unset)`:`Set as default for new sessions`,children:e.id===i?`Default`:`Set default`}),(0,J.jsx)(`button`,{onClick:()=>{l(e.id),d(e.name),p(e.color)},className:`p-0.5 rounded text-text-subtle hover:text-text-secondary can-hover:opacity-0 can-hover:group-hover:opacity-100`,children:(0,J.jsx)(De,{className:`size-3`})}),(0,J.jsx)(`button`,{onClick:()=>w(e.id,e.name),className:`p-0.5 rounded text-text-subtle hover:text-error can-hover:opacity-0 can-hover:group-hover:opacity-100`,children:(0,J.jsx)(Rr,{className:`size-3`})})]})},e.id)),n.length===0&&(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground py-2 text-center`,children:`No tags. Click + to create one.`})]})]})}function Tf(e){let t=[],n=/<mark>([\s\S]*?)<\/mark>/g,r=0,i;for(;(i=n.exec(e))!==null;)i.index>r&&t.push({text:e.slice(r,i.index),mark:!1}),t.push({text:i[1]??``,mark:!0}),r=n.lastIndex;return r<e.length&&t.push({text:e.slice(r),mark:!1}),t}function Ef({snippet:e,className:t}){return(0,J.jsx)(`span`,{className:t,children:Tf(e).map((e,t)=>e.mark?(0,J.jsx)(`mark`,{className:`bg-warning/30 text-foreground rounded-sm px-0.5`,children:e.text},t):(0,J.jsx)(`span`,{children:e.text},t))})}var Df=50;function Of({projectName:e,sessionId:t,onSelectSession:n,enableKeyboardShortcuts:r=!1}){let[i,a]=(0,q.useState)([]),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(``),u=Ya(c,300),[d,f]=(0,q.useState)(null),[p,m]=(0,q.useState)(``),[h,g]=(0,q.useState)(!1),[_,v]=(0,q.useState)(!1),[y,b]=(0,q.useState)([]),[x,S]=(0,q.useState)(null),[C,w]=(0,q.useState)({}),[T,E]=(0,q.useState)(!1),D=(0,q.useRef)(null),O=W(e=>e.openTab),k=(0,q.useCallback)(async t=>{if(e){s(!0);try{let n=new URLSearchParams({limit:String(Df),offset:`0`});t&&n.set(`q`,t);let r=await R.get(`${L(e)}/chat/sessions?${n}`);a(r.sessions),g(r.hasMore)}catch{}finally{s(!1)}}},[e]),A=(0,q.useCallback)(async()=>{if(!(!e||_||!h)){v(!0);try{let t=i.filter(e=>!e.pinned).length,n=new URLSearchParams({limit:String(Df),offset:String(t)});u&&n.set(`q`,u);let r=await R.get(`${L(e)}/chat/sessions?${n}`);a(e=>{let t=new Set(e.map(e=>e.id)),n=r.sessions.filter(e=>!t.has(e.id));return[...e,...n]}),g(r.hasMore)}catch{}finally{v(!1)}}},[e,_,h,i,u]),ee=(0,q.useCallback)(async()=>{if(e)try{let t=await R.get(`${L(e)}/tags`);b(t.tags),w(t.counts)}catch{}},[e]);(0,q.useEffect)(()=>{k()},[k]),(0,q.useEffect)(()=>{e&&ee()},[e,ee]),(0,q.useEffect)(()=>{k(u||void 0)},[u]);function te(t){n?n(t):O({type:`chat`,title:t.title||`Chat`,projectId:e??null,metadata:{projectName:e,sessionId:t.id,providerId:t.providerId},closable:!0})}let ne=(0,q.useCallback)((e,t)=>{t.stopPropagation(),f(e.id),m(e.title||``),setTimeout(()=>D.current?.select(),0)},[]),j=(0,q.useCallback)(async()=>{if(!d||!p.trim()||!e){f(null);return}try{await R.patch(`${L(e)}/chat/sessions/${d}`,{title:p.trim()}),a(e=>e.map(e=>e.id===d?{...e,title:p.trim()}:e))}catch{}f(null)},[d,p,e]),M=(0,q.useCallback)(()=>f(null),[]),re=(0,q.useCallback)(async(t,n)=>{if(t.stopPropagation(),!e)return;let r=`${L(e)}/chat/sessions/${n.id}/pin`;try{n.pinned?await R.del(r):await R.put(r),a(e=>e.map(e=>e.id===n.id?{...e,pinned:!e.pinned}:e).sort((e,t)=>e.pinned&&!t.pinned?-1:!e.pinned&&t.pinned?1:new Date(t.createdAt).getTime()-new Date(e.createdAt).getTime()))}catch{}},[e]),ie=(0,q.useCallback)(async(t,n)=>{if(t.stopPropagation(),e&&window.confirm(`Delete this session? This cannot be undone.`))try{await R.del(`${L(e)}/chat/sessions/${n.id}?providerId=${n.providerId}`),a(e=>e.filter(e=>e.id!==n.id))}catch{}},[e]),ae=(0,q.useCallback)((e,t)=>{a(n=>n.map(n=>n.id===e?{...n,tag:t}:n)),ee()},[ee]),oe=(0,q.useCallback)(async()=>{if(!e)return;let t=window.prompt(`Delete sessions older than how many days? (pinned sessions are kept)`,`30`);if(!t)return;let n=parseInt(t,10);if(!(!n||n<1)&&window.confirm(`Delete all unpinned sessions older than ${n} days? This cannot be undone.`)){s(!0);try{await R.del(`${L(e)}/chat/sessions?olderThanDays=${n}`),k(u||void 0)}catch{}}},[e,k,u]);return(0,q.useEffect)(()=>{if(!r)return;let n=n=>{if(n.target instanceof HTMLInputElement||n.target instanceof HTMLTextAreaElement)return;let r=parseInt(n.key);if(r>=1&&r<=y.length&&t){let n=y[r-1];n&&(R.patch(`${L(e)}/chat/sessions/${t}/tag`,{tagId:n.id}).catch(()=>{}),ae(t,{id:n.id,name:n.name,color:n.color}))}};return window.addEventListener(`keydown`,n),()=>window.removeEventListener(`keydown`,n)},[r,y,t,e,ae]),{sessions:i,filteredSessions:x===null?i:i.filter(e=>e.tag?.id===x),loading:o,hasMore:h,loadingMore:_,searchQuery:c,setSearchQuery:l,editingId:d,editingTitle:p,setEditingTitle:m,editInputRef:D,projectTags:y,selectedTagId:x,setSelectedTagId:S,tagCounts:C,showTagSettings:T,setShowTagSettings:E,load:k,loadMore:A,loadTags:ee,openSession:te,startEditing:ne,saveTitle:j,cancelEditing:M,togglePin:re,deleteSession:ie,handleTagChanged:ae,bulkDelete:oe}}var kf={results:[],indexing:{total:0,indexed:0,running:!1}};function Af(e,t){let n=Ya(t,300),[r,i]=(0,q.useState)(kf),[a,o]=(0,q.useState)(!1);return(0,q.useEffect)(()=>{let t=n.trim();if(!t||!e){i(kf),o(!1);return}let r=!1;return o(!0),R.get(`${L(e)}/chat/search?q=${encodeURIComponent(t)}`).then(e=>{r||i(e)}).catch(()=>{r||i(kf)}).finally(()=>{r||o(!1)}),()=>{r=!0}},[e,n]),{results:r.results,indexing:r.indexing,loading:a,query:n}}function jf({search:e,onOpen:t}){return(0,J.jsxs)(`div`,{children:[e.indexing.running&&(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-3 py-1 text-[10px] text-text-subtle`,children:[(0,J.jsx)(K,{className:`size-2.5 animate-spin`}),` Indexing `,e.indexing.indexed,`/`,e.indexing.total,`…`]}),e.loading&&e.results.length===0?(0,J.jsx)(`div`,{className:`flex items-center justify-center py-3`,children:(0,J.jsx)(K,{className:`size-3.5 animate-spin text-text-subtle`})}):e.results.length===0?(0,J.jsx)(`div`,{className:`flex items-center justify-center py-3 text-[11px] text-text-subtle`,children:e.indexing.running?`No matches yet — indexing…`:`No matches`}):e.results.map(e=>(0,J.jsxs)(`button`,{onClick:()=>t(e),className:`group relative flex w-full items-center gap-2 px-2 py-1.5 text-left hover:bg-surface-elevated transition-colors`,children:[(0,J.jsx)($n,{className:`size-4 shrink-0 text-text-subtle`}),(0,J.jsxs)(`span`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`span`,{className:`flex items-center gap-1.5`,children:(0,J.jsx)(`span`,{className:`truncate text-[13px] font-medium`,children:e.title||`Untitled`})}),e.matchedIn===`content`&&e.snippet&&(0,J.jsx)(Ef,{snippet:e.snippet,className:`block text-[11px] text-text-subtle line-clamp-2`})]})]},e.sessionId))]})}function Mf({projectName:e,variant:t,sessionId:n,onSelectSession:r,onNavigate:i,className:a}){let o=Of({projectName:e,sessionId:n,onSelectSession:r,enableKeyboardShortcuts:t===`bar`}),s=X(e=>e.notifications),c=W(e=>e.openTab),l=t===`sidebar`,u=Af(e,l?o.searchQuery:``),d=l&&o.searchQuery.trim().length>0;function f(t){c({type:`chat`,title:t.title||`Chat`,projectId:e,metadata:{projectName:e,sessionId:t.sessionId,providerId:t.providerId},closable:!0}),i?.()}function p(e){o.openSession(e),i?.()}return(0,J.jsxs)(`div`,{className:V(l?`flex flex-col h-full min-h-0`:`border-t border-border/30 bg-surface`,a),children:[l&&(0,J.jsx)(Ec,{icon:Rt,title:`Chat History`}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-2 shrink-0`,children:[(0,J.jsxs)(`div`,{className:`relative flex-1`,children:[(0,J.jsx)(Ge,{className:`pointer-events-none absolute left-2 top-1/2 size-3.5 -translate-y-1/2 text-text-subtle`}),(0,J.jsx)(`input`,{type:`text`,value:o.searchQuery,onChange:e=>o.setSearchQuery(e.target.value),placeholder:`Filter sessions…`,className:`w-full rounded-md border border-border bg-surface-elevated py-1.5 pl-7 pr-2 text-xs outline-none focus:border-primary/50`})]}),(0,J.jsx)(`button`,{onClick:o.bulkDelete,className:`flex size-6 items-center justify-center rounded text-text-subtle hover:bg-surface-elevated hover:text-error`,title:`Delete old sessions...`,children:(0,J.jsx)(Vt,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:()=>o.load(o.searchQuery||void 0),disabled:o.loading,className:`flex size-6 items-center justify-center rounded text-text-subtle hover:bg-surface-elevated hover:text-foreground disabled:opacity-50`,title:`Refresh`,children:(0,J.jsx)(br,{className:V(`size-3.5`,o.loading&&`animate-spin`)})})]}),o.projectTags.length>0&&(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-2 overflow-x-auto scrollbar-none shrink-0`,children:[(0,J.jsxs)(`button`,{onClick:()=>o.setSelectedTagId(null),className:V(`shrink-0 rounded-full border px-2 py-0.5 text-[11px] transition-colors`,o.selectedTagId===null?`border-primary/40 bg-primary/10 text-primary`:`border-border text-text-subtle hover:bg-surface-elevated`),children:[`All (`,o.sessions.length,`)`]}),o.projectTags.map(e=>(0,J.jsxs)(`button`,{onClick:()=>o.setSelectedTagId(o.selectedTagId===e.id?null:e.id),className:V(`shrink-0 flex items-center gap-1 rounded-full border px-2 py-0.5 text-[11px] transition-colors`,o.selectedTagId===e.id?`border-current`:`border-border text-text-subtle hover:bg-surface-elevated`),style:o.selectedTagId===e.id?{backgroundColor:e.color+`20`,color:e.color,borderColor:e.color}:void 0,children:[(0,J.jsx)(`span`,{className:`size-2 rounded-full shrink-0`,style:{backgroundColor:e.color}}),e.name,` (`,o.tagCounts[e.id]??0,`)`]},e.id)),(0,J.jsx)(`button`,{onClick:()=>o.setShowTagSettings(!o.showTagSettings),className:V(`shrink-0 flex size-5 items-center justify-center rounded-full transition-colors`,o.showTagSettings?`text-primary bg-primary/10`:`text-text-subtle hover:bg-surface-elevated`),title:`Manage tags`,children:(0,J.jsx)(Fr,{className:`size-3`})})]}),o.showTagSettings&&(0,J.jsx)(`div`,{className:`border-b border-border/30 px-2 py-2 max-h-[180px] overflow-y-auto bg-surface-elevated/50 shrink-0`,children:(0,J.jsx)(wf,{projectName:e,onTagsChanged:o.loadTags})}),(0,J.jsx)(`div`,{className:l?`flex-1 overflow-y-auto min-h-0`:`max-h-[200px] overflow-y-auto`,children:d?(0,J.jsx)(jf,{search:u,onOpen:f}):o.loading&&o.sessions.length===0?(0,J.jsx)(`div`,{className:`flex items-center justify-center py-3`,children:(0,J.jsx)(K,{className:`size-3.5 animate-spin text-text-subtle`})}):o.filteredSessions.length===0?(0,J.jsx)(`div`,{className:`flex items-center justify-center py-3 text-[11px] text-text-subtle`,children:o.searchQuery?`No matching sessions`:`No sessions yet`}):(0,J.jsxs)(J.Fragment,{children:[o.filteredSessions.map(t=>{let r=s.get(t.id),i=!!r;return(0,J.jsx)(oo,{session:t,projectName:e,projectTags:o.projectTags,onTogglePin:o.togglePin,onStartEditing:o.startEditing,onDeleteSession:o.deleteSession,onTagChanged:o.handleTagChanged,children:(0,J.jsxs)(`div`,{className:V(`group relative flex w-full items-center gap-2 px-2 py-1.5 text-left transition-colors`,n===t.id?`bg-accent-wash text-foreground shadow-[inset_2px_0_0_var(--accent)]`:`hover:bg-surface-elevated`,i&&no(r.type),!i&&n!==t.id&&`text-text-secondary`),children:[(0,J.jsx)(Cl,{providerId:t.providerId}),t.tag&&(0,J.jsx)(`span`,{className:`size-2 rounded-full shrink-0`,style:{backgroundColor:t.tag.color},title:t.tag.name}),o.editingId===t.id?(0,J.jsxs)(`form`,{className:`flex items-center gap-1 flex-1 min-w-0`,onSubmit:e=>{e.preventDefault(),o.saveTitle()},children:[(0,J.jsx)(`input`,{ref:o.editInputRef,value:o.editingTitle,onChange:e=>o.setEditingTitle(e.target.value),onBlur:o.saveTitle,onKeyDown:e=>{e.key===`Escape`&&o.cancelEditing()},className:`flex-1 min-w-0 bg-surface-elevated text-xs text-text-primary px-1.5 py-0.5 rounded border border-border outline-none focus:border-primary/50`,autoFocus:!0}),(0,J.jsx)(`button`,{type:`submit`,className:`p-0.5 text-success hover:text-success/80`,onClick:e=>e.stopPropagation(),children:(0,J.jsx)(xe,{className:`size-3`})}),(0,J.jsx)(`button`,{type:`button`,className:`p-0.5 text-text-subtle hover:text-text-secondary`,onClick:e=>{e.stopPropagation(),o.cancelEditing()},children:(0,J.jsx)(Qe,{className:`size-3`})})]}):(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`span`,{className:`min-w-0 flex-1`,children:(0,J.jsxs)(`button`,{onClick:()=>p(t),className:`w-full min-w-0 text-left`,children:[(0,J.jsxs)(`span`,{className:`flex items-center gap-1`,children:[t.title?.startsWith(`[PPM]`)&&(0,J.jsx)(he,{className:`size-3.5 text-muted-foreground shrink-0`}),(0,J.jsx)(`span`,{className:V(`truncate text-[13px]`,i?`font-semibold`:`font-medium`),children:t.title?.startsWith(`[PPM]`)?t.title.slice(7):t.title||`Untitled`})]}),t.updatedAt&&(0,J.jsx)(`span`,{className:`block text-[11px] text-text-subtle`,children:Ja(t.updatedAt)})]})}),(0,J.jsx)(`button`,{onClick:e=>o.togglePin(e,t),className:V(`p-0.5 rounded transition-all`,t.pinned?`text-primary hover:text-primary/70`:`text-text-subtle hover:text-text-secondary can-hover:opacity-0 can-hover:group-hover:opacity-100`),title:t.pinned?`Unpin session`:`Pin session`,children:t.pinned?(0,J.jsx)(fr,{className:`size-3`}):(0,J.jsx)(pr,{className:`size-3`})}),(0,J.jsxs)(`span`,{className:`flex items-center shrink-0 can-hover:hidden can-hover:group-hover:flex`,children:[(0,J.jsx)(`button`,{onClick:e=>o.startEditing(t,e),className:`p-0.5 rounded text-text-subtle hover:text-text-secondary transition-colors`,title:`Rename session`,children:(0,J.jsx)(De,{className:`size-3`})}),(0,J.jsx)(`button`,{onClick:e=>o.deleteSession(e,t),className:`p-0.5 rounded text-text-subtle hover:text-error hover:bg-error/20 transition-colors`,title:`Delete session`,children:(0,J.jsx)(Rr,{className:`size-3`})})]})]})]})},t.id)}),o.hasMore&&(0,J.jsxs)(`button`,{onClick:o.loadMore,disabled:o.loadingMore,className:`flex items-center justify-center gap-1 w-full py-1.5 text-[11px] text-text-subtle hover:text-text-secondary hover:bg-surface-elevated transition-colors`,children:[o.loadingMore?(0,J.jsx)(K,{className:`size-3 animate-spin`}):null,o.loadingMore?`Loading...`:`Load more`]})]})})]})}var Nf=`/api/group-chat`;function Pf(e){return R.get(`${Nf}?projectPath=${encodeURIComponent(e)}`)}function Ff(e){return R.get(`${Nf}/${encodeURIComponent(e)}`)}function If(e){return R.post(Nf,e)}function Lf(e,t){return R.patch(`${Nf}/${encodeURIComponent(e)}`,t)}function Rf(e,t){let n=new URLSearchParams;t?.limit!=null&&n.set(`limit`,String(t.limit)),t?.sinceTurn!=null&&n.set(`sinceTurn`,String(t.sinceTurn));let r=n.toString();return R.get(`${Nf}/${encodeURIComponent(e)}/feed${r?`?${r}`:``}`)}function zf(e,t){return R.post(`${Nf}/${encodeURIComponent(e)}/message`,{content:t})}function Bf(e){return R.post(`${Nf}/${encodeURIComponent(e)}/stop`)}function Vf(e){return R.post(`${Nf}/${encodeURIComponent(e)}/resume`)}function Hf(e){return R.del(`${Nf}/${encodeURIComponent(e)}`)}function Uf(e,t){return R.post(`${Nf}/${encodeURIComponent(e)}/members`,t)}function Wf(e,t,n){return R.patch(`${Nf}/${encodeURIComponent(e)}/members/${encodeURIComponent(t)}`,n)}function Gf(e,t){return R.del(`${Nf}/${encodeURIComponent(e)}/members/${encodeURIComponent(t)}`)}function Kf(e,t){return R.get(`${Nf}/${encodeURIComponent(e)}/transcript?sessionRef=${encodeURIComponent(t)}`)}function qf(e){return e.replace(/^Claude\s+/i,``)}function Jf({value:e,onChange:t,projectName:n,providerId:r,disabled:i}){let[a,o]=(0,q.useState)([]),[s,c]=(0,q.useState)(!1),l=(0,q.useRef)(null),u=(0,q.useRef)(0);(0,q.useEffect)(()=>{!n||!r||R.get(`${L(n)}/chat/providers/${r}/models`).then(o).catch(()=>{})},[n,r]),(0,q.useEffect)(()=>{i&&c(!1)},[i]),(0,q.useEffect)(()=>{if(!s)return;let e=e=>{l.current&&!l.current.contains(e.target)&&c(!1)};return document.addEventListener(`mousedown`,e),()=>document.removeEventListener(`mousedown`,e)},[s]),(0,q.useEffect)(()=>{s&&(u.current=Math.max(0,a.findIndex(t=>t.value===e)))},[s,e,a]);let d=(0,q.useCallback)(e=>{if(e.key===`Escape`){c(!1);return}if(e.key===`ArrowDown`||e.key===`ArrowUp`){e.preventDefault();let t=e.key===`ArrowDown`?1:-1;u.current=(u.current+t+a.length)%a.length,(l.current?.querySelector(`[data-idx="${u.current}"]`))?.focus()}if(e.key===`Enter`){e.preventDefault();let n=a[u.current];n&&(t(n.value),c(!1))}},[t,a]);if(a.length<=1)return null;let f=a.find(t=>t.value===e),p=f?qf(f.label):e??`Model`;return(0,J.jsxs)(`div`,{className:`relative`,children:[(0,J.jsxs)(`button`,{type:`button`,disabled:i,onClick:e=>{e.stopPropagation(),i||c(e=>!e)},className:`inline-flex items-center gap-1.5 px-[9px] py-1 rounded-full text-[11.5px] text-primary bg-accent-wash border border-accent-wash-border hover:brightness-110 transition-[filter] disabled:opacity-50 disabled:cursor-default`,"aria-label":`Model: ${f?.label??e??`default`}`,title:i?`Model can't change while running`:f?.label??void 0,children:[(0,J.jsx)(qe,{className:`h-3.5 w-3.5 shrink-0`}),(0,J.jsx)(`span`,{className:`max-w-[90px] truncate`,children:p})]}),s&&!i&&(0,J.jsxs)(`div`,{ref:l,role:`listbox`,"aria-label":`Models`,onKeyDown:d,onMouseDown:e=>e.stopPropagation(),onClick:e=>e.stopPropagation(),className:`absolute bottom-full left-0 mb-1 z-50 w-56 rounded-lg border border-border popover-solid shadow-[var(--shadow-panel)]`,children:[(0,J.jsx)(`div`,{className:`px-3 py-2 border-b border-border`,children:(0,J.jsx)(`span`,{className:`text-xs font-medium text-text-secondary`,children:`Model`})}),(0,J.jsx)(`div`,{className:`py-1`,children:a.map((n,r)=>{let i=n.value===e;return(0,J.jsxs)(`button`,{"data-idx":r,role:`option`,"aria-selected":i,tabIndex:0,onClick:()=>{t(n.value),c(!1)},className:`w-full flex items-center gap-3 px-3 py-2 text-left transition-colors hover:bg-surface-elevated focus:bg-surface-elevated focus:outline-none ${i?`bg-surface-elevated`:``}`,children:[(0,J.jsx)(`span`,{className:`flex-1 text-sm font-medium text-text-primary`,children:n.label}),i&&(0,J.jsx)(xe,{className:`size-4 shrink-0 text-primary`})]},n.value)})})]})]})}var Yf=[`#6366f1`,`#ec4899`,`#14b8a6`,`#f59e0b`,`#8b5cf6`,`#ef4444`];function Xf(){return{key:crypto.randomUUID(),name:``,persona:``,model:null}}function Zf({open:e,onClose:t,projectName:n,projectPath:r,providerId:i=`claude`,onCreated:a}){let o=Me(),[s,c]=(0,q.useState)(``),[l,u]=(0,q.useState)(10),[d,f]=(0,q.useState)(`Leader`),[p,m]=(0,q.useState)(``),[h,g]=(0,q.useState)(null),[_,v]=(0,q.useState)([Xf()]),[y,b]=(0,q.useState)(!1),[x,S]=(0,q.useState)(null),C=(0,q.useCallback)(()=>{c(``),u(10),f(`Leader`),m(``),g(null),v([Xf()]),S(null),b(!1)},[]),w=(0,q.useCallback)(()=>{C(),t()},[C,t]),T=(e,t)=>v(n=>n.map(n=>n.key===e?{...n,...t}:n)),E=(0,q.useCallback)(async()=>{let e=s.trim();if(!e){S(`Group name is required`);return}if(!d.trim()){S(`Leader name is required`);return}let t=_.filter(e=>e.name.trim());if(t.length===0){S(`Add at least one member`);return}let i=[{role:`leader`,name:d.trim(),persona:p.trim()||null,model:h,color:Yf[0]},...t.map((e,t)=>({role:`member`,name:e.name.trim(),persona:e.persona.trim()||null,model:e.model,color:Yf[(t+1)%Yf.length]}))];b(!0),S(null);try{a(await If({projectName:n,projectPath:r,name:e,maxTurns:l,members:i})),w()}catch(e){S(e instanceof Error?e.message:`Failed to create group`),b(!1)}},[s,l,d,p,h,_,n,r,a,w]),D=`w-full min-h-[40px] rounded-md border border-border bg-background px-3 py-2 text-sm text-foreground placeholder:text-text-subtle focus:outline-none focus:ring-1 focus:ring-primary`,O=(0,J.jsxs)(`div`,{className:`flex min-h-0 flex-1 flex-col gap-4 overflow-y-auto px-1 py-1`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`mb-1 block text-xs font-medium text-text-secondary`,children:`Group name`}),(0,J.jsx)(`input`,{className:D,value:s,onChange:e=>c(e.target.value),placeholder:`e.g. Design Review`,autoFocus:!0})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`mb-1 block text-xs font-medium text-text-secondary`,children:`Reply cap (max AI turns per message, 1–50)`}),(0,J.jsx)(`input`,{type:`number`,min:1,max:50,className:D,value:l,onChange:e=>u(Math.max(1,Math.min(50,Number(e.target.value)||1)))})]}),(0,J.jsxs)(`div`,{className:`rounded-lg border border-border p-3`,children:[(0,J.jsx)(`p`,{className:`mb-2 text-xs font-semibold uppercase tracking-wide text-primary`,children:`Leader`}),(0,J.jsxs)(`div`,{className:`flex flex-col gap-2`,children:[(0,J.jsx)(`input`,{className:D,value:d,onChange:e=>f(e.target.value),placeholder:`Leader name`}),(0,J.jsx)(`input`,{className:D,value:p,onChange:e=>m(e.target.value),placeholder:`Persona (optional)`}),(0,J.jsx)(Jf,{value:h,onChange:g,projectName:n,providerId:i})]})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{className:`mb-2 flex items-center justify-between`,children:[(0,J.jsx)(`p`,{className:`text-xs font-semibold uppercase tracking-wide text-text-secondary`,children:`Members`}),(0,J.jsxs)(`button`,{type:`button`,onClick:()=>v(e=>[...e,Xf()]),className:`inline-flex min-h-[32px] items-center gap-1 text-xs font-medium text-primary hover:underline`,children:[(0,J.jsx)(Ze,{className:`size-3.5`}),` Add`]})]}),(0,J.jsx)(`div`,{className:`flex flex-col gap-3`,children:_.map((e,t)=>(0,J.jsxs)(`div`,{className:`rounded-lg border border-border p-3`,children:[(0,J.jsxs)(`div`,{className:`mb-2 flex items-center justify-between`,children:[(0,J.jsxs)(`span`,{className:`text-[11px] text-text-subtle`,children:[`Member `,t+1]}),_.length>1&&(0,J.jsx)(`button`,{type:`button`,onClick:()=>v(t=>t.filter(t=>t.key!==e.key)),className:`flex size-8 items-center justify-center rounded-md text-text-subtle hover:bg-surface-elevated hover:text-destructive`,"aria-label":`Remove member`,children:(0,J.jsx)(Rr,{className:`size-4`})})]}),(0,J.jsxs)(`div`,{className:`flex flex-col gap-2`,children:[(0,J.jsx)(`input`,{className:D,value:e.name,onChange:t=>T(e.key,{name:t.target.value}),placeholder:`Member name`}),(0,J.jsx)(`input`,{className:D,value:e.persona,onChange:t=>T(e.key,{persona:t.target.value}),placeholder:`Persona (optional)`}),(0,J.jsx)(Jf,{value:e.model,onChange:t=>T(e.key,{model:t}),projectName:n,providerId:i})]})]},e.key))})]}),x&&(0,J.jsx)(`p`,{className:`text-xs text-destructive`,children:x}),(0,J.jsxs)(`div`,{className:`flex justify-end gap-2 pt-1`,children:[(0,J.jsx)(F,{variant:`outline`,onClick:w,disabled:y,children:`Cancel`}),(0,J.jsxs)(F,{onClick:E,disabled:y,children:[y&&(0,J.jsx)(K,{className:`mr-1.5 size-4 animate-spin`}),`Create group`]})]})]});return e?o?(0,J.jsx)(Ae,{open:!0,onClose:w,className:`flex max-h-[90vh] flex-col`,children:(0,J.jsxs)(`div`,{className:`flex min-h-0 flex-col px-4 pb-2`,children:[(0,J.jsx)(`h2`,{className:`mb-2 text-base font-semibold text-foreground`,children:`New group`}),O]})}):(0,J.jsx)(Ue,{open:!0,onOpenChange:e=>{e||w()},children:(0,J.jsxs)(ze,{className:`flex max-h-[85vh] flex-col sm:max-w-lg`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:`New group`})}),O]})}):null}function Qf(){let{activeProject:e}=U(Tc(e=>({activeProject:e.activeProject}))),t=H(e=>e.openTab),[n,r]=(0,q.useState)([]),[i,a]=(0,q.useState)(!1),[o,s]=(0,q.useState)(null),[c,l]=(0,q.useState)(!1),u=e?.path??null,d=e?.name??``,f=(0,q.useCallback)(()=>{if(!u){r([]);return}a(!0),Pf(u).then(r).catch(e=>s(e instanceof Error?e.message:`Failed to load groups`)).finally(()=>a(!1))},[u]);(0,q.useEffect)(()=>{f()},[f]);let p=(0,q.useCallback)(e=>{t({type:`group`,title:e.name,projectId:d,closable:!0,metadata:{groupId:e.id,projectName:d}})},[t,d]),m=(0,q.useCallback)(async e=>{try{await Hf(e.id),r(t=>t.filter(t=>t.id!==e.id))}catch(e){s(e instanceof Error?e.message:`Failed to delete group`)}},[]);return e?(0,J.jsxs)(`div`,{className:`flex h-full flex-col`,children:[(0,J.jsxs)(`div`,{className:`flex h-9 shrink-0 items-center justify-between border-b border-border px-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,J.jsx)(`span`,{className:`text-xs font-semibold uppercase tracking-wide text-text-secondary`,children:`Teams`}),(0,J.jsx)(`span`,{className:`rounded-full bg-accent-wash px-1.5 py-px text-[9px] font-semibold uppercase tracking-wide text-primary`,children:`beta`})]}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>l(!0),className:`flex size-11 items-center justify-center rounded-md text-text-subtle hover:bg-surface-elevated hover:text-foreground md:size-7`,"aria-label":`New group`,children:(0,J.jsx)(Ze,{className:`size-4`})})]}),(0,J.jsx)(`div`,{className:`min-h-0 flex-1 overflow-y-auto p-1`,children:i?(0,J.jsx)(`div`,{className:`flex items-center justify-center py-6`,children:(0,J.jsx)(K,{className:`size-4 animate-spin text-primary`})}):o?(0,J.jsx)(`p`,{className:`px-2 py-3 text-xs text-destructive`,children:o}):n.length===0?(0,J.jsx)(`p`,{className:`px-2 py-3 text-xs text-text-subtle`,children:`No groups yet. Create one to start.`}):n.map(e=>(0,J.jsxs)(jc,{children:[(0,J.jsx)(Mc,{asChild:!0,children:(0,J.jsxs)(`button`,{type:`button`,onClick:()=>p(e),className:`flex w-full min-h-[40px] items-center gap-2 rounded-md px-2 py-2 text-left text-sm text-text-secondary hover:bg-surface-elevated hover:text-foreground`,children:[(0,J.jsx)(Ur,{className:`size-4 shrink-0 text-text-subtle`}),(0,J.jsx)(`span`,{className:`truncate`,children:e.name})]})}),(0,J.jsx)(Nc,{children:(0,J.jsxs)(Pc,{variant:`destructive`,onClick:()=>m(e),children:[(0,J.jsx)(Rr,{className:`size-4`}),` Delete group`]})})]},e.id))}),(0,J.jsx)(Zf,{open:c,onClose:()=>l(!1),projectName:d,projectPath:u??``,onCreated:e=>{r(t=>[e,...t]),p(e)}})]}):(0,J.jsx)(`div`,{className:`flex items-center justify-center h-24 p-4`,children:(0,J.jsx)(`p`,{className:`text-xs text-text-subtle text-center`,children:`Select a project to view groups`})})}var $f=e(re(),1),ep=[{mode:`recent`,label:`Recent`,Icon:We},{mode:`priority`,label:`Priority`,Icon:At},{mode:`name`,label:`Name`,Icon:kt}];function tp(e,t,n){return n===`recent`?ut(e):n===`name`?[...e].sort((e,t)=>e.name.localeCompare(t.name)):lt(e,t)}var np=[`terminal`,`chat`,`editor`,`database`,`sqlite`,`postgres`,`git-diff`,`settings`,`extension`,`group`];function rp(){let e=window.location.pathname,t=new URLSearchParams(window.location.search).get(`openChat`),n=e.match(/^\/project\/([^/]+)(?:\/([^/]+)(\/.*)?)?/);if(!n)return{projectName:null,tabType:null,tabIdentifier:null,openChat:t};let r=decodeURIComponent(n[1]),i=n[2]??null,a=n[3]?n[3].slice(1):null;return i===`tab`?{projectName:r,tabType:null,tabIdentifier:null,openChat:t}:{projectName:r,tabType:np.includes(i)?i:null,tabIdentifier:a,openChat:t}}function ip(e,t){if(!e||e===`__global__`)return`/`;let n=`/project/${encodeURIComponent(e)}`;if(!t)return n;let r=t.indexOf(`@`),i=r===-1?t:t.slice(0,r),a=i.indexOf(`:`);if(a===-1)n+=`/${i}`;else{let e=i.slice(0,a),t=i.slice(a+1);n+=`/${e}/${t.replace(/[?#]/g,encodeURIComponent)}`}return n}function ap(e,t){return t?`${e}:${t}`:e}function op(e,t,n){switch(e){case`editor`:return t?{filePath:t,projectName:n}:null;case`chat`:{if(!t)return null;let e=t.indexOf(`/`),r=e===-1?t:t.slice(e+1),i=e===-1?void 0:t.slice(0,e),a=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(r)?r:void 0;return{...a&&{sessionId:a},...i&&{providerId:i},projectName:n}}case`terminal`:return{terminalIndex:parseInt(t??`1`,10),projectName:n};case`git-diff`:return t?{filePath:t,projectName:n}:null;case`settings`:return{};case`database`:{let[e,n]=(t??``).split(`:`);return e?{connectionId:e,tableName:n??``}:null}case`sqlite`:return t?{filePath:t,projectName:n}:null;case`postgres`:{let[e,n]=(t??``).split(`:`);return e?{connectionId:e,tableName:n??``}:null}case`extension`:return t?{viewType:t,projectName:n}:null;case`group`:return t?{groupId:t,projectName:n}:null;default:return null}}function sp(e,t){switch(e){case`editor`:return t?.split(`/`).pop()??`File`;case`chat`:return`Chat`;case`terminal`:return`Terminal ${t??`1`}`;case`git-diff`:return t?.split(`/`).pop()??`Diff`;case`settings`:return`Settings`;case`database`:return t??`Database`;case`sqlite`:return t?.split(`/`).pop()??`SQLite`;case`postgres`:return t??`PostgreSQL`;case`extension`:return t?t.split(`-`).map(e=>(e[0]?.toUpperCase()??``)+e.slice(1)).join(` `):`Extension`;case`group`:return`Group`;default:return e}}function cp(e,t,n){let{tabs:r,setActiveTab:i,openTab:a}=W.getState(),o=ap(e,t),s=r.find(e=>e.id===o);if(s){i(s.id);return}let c=op(e,t,n);c&&a({type:e,title:sp(e,t),projectId:n,closable:!0,metadata:c})}function lp(){let e=W(e=>e.activeTabId),t=W(e=>e.currentProject),n=(0,q.useRef)(!1);(0,q.useEffect)(()=>{if(n.current){n.current=!1;return}let r=ip(t,e);window.location.pathname!==r&&window.history.pushState(null,``,r)},[e,t]),(0,q.useEffect)(()=>{function e(){let{tabType:e,tabIdentifier:t}=rp();if(!e)return;n.current=!0;let{tabs:r,setActiveTab:i}=W.getState(),a=ap(e,t),o=r.find(e=>e.id===a);if(o)i(o.id);else{let n=W.getState().currentProject;n&&cp(e,t,n)}}return window.addEventListener(`popstate`,e),()=>window.removeEventListener(`popstate`,e)},[])}var up=[`linear-gradient(135deg, #667eea, #764ba2)`,`linear-gradient(135deg, #f5576c, #f093fb)`,`linear-gradient(135deg, #4facfe, #00c6ff)`,`linear-gradient(135deg, #43e97b, #38f9d7)`,`linear-gradient(135deg, #fa709a, #fee140)`,`linear-gradient(135deg, #a18cd1, #6a3de8)`,`linear-gradient(135deg, #fd7043, #ff8a65)`,`linear-gradient(135deg, #26c6da, #0097a7)`,`linear-gradient(135deg, #ab47bc, #7b1fa2)`,`linear-gradient(135deg, #ef5350, #b71c1c)`,`linear-gradient(135deg, #1976d2, #42a5f5)`,`linear-gradient(135deg, #2e7d32, #66bb6a)`];function dp(e,t){return e??up[t%up.length]}function fp(e,t){let n=e.split(/[-_.\s]+/).filter(Boolean),r=(n[0]?.[0]??e[0]??`?`).toUpperCase(),i=n.length>1?r+(n[1][0]??``).toUpperCase():r,a=t.filter(t=>t!==e);if(!a.map(e=>(e.split(/[-_.\s]+/).filter(Boolean)[0]?.[0]??e[0]??``).toUpperCase()).includes(r))return r;if(!a.map(e=>{let t=e.split(/[-_.\s]+/).filter(Boolean),n=(t[0]?.[0]??e[0]??``).toUpperCase(),r=t.length>1?(t[1][0]??``).toUpperCase():n;return t.length>1?n+r:n}).includes(i))return i;let o=t.indexOf(e);return String(o>=0?o+1:`?`)}var pp=(0,q.memo)(function({name:e,color:t,image:n,size:r,allNames:i,shape:a=`circle`}){let[o,s]=(0,q.useState)(!1);(0,q.useEffect)(()=>{s(!1)},[n]);let c=a===`square`?`rounded-[7px]`:`rounded-full`;if(n&&!o){let t=tt(),i=new URLSearchParams({v:n});return t&&i.set(`token`,t),(0,J.jsx)(`img`,{src:`/api/projects/${encodeURIComponent(e)}/image?${i.toString()}`,alt:e,onError:()=>s(!0),className:V(`object-cover shrink-0 select-none`,c),style:{width:r,height:r}})}return(0,J.jsx)(`div`,{className:V(`flex items-center justify-center font-bold text-white select-none shrink-0`,c),style:{background:t,width:r,height:r,fontSize:r<=24?10:11},children:fp(e,i)})});function mp({onSuccess:e,onCancel:t,footerClassName:n}){let{addProject:r}=U(Tc(e=>({addProject:e.addProject}))),[i,a]=(0,q.useState)(`local`),[o,s]=(0,q.useState)(``),[c,l]=(0,q.useState)(``),[u,d]=(0,q.useState)([]),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)(!1),[g,_]=(0,q.useState)(!1),[v,y]=(0,q.useState)(``),[b,x]=(0,q.useState)(`~/Projects`),[S,C]=(0,q.useState)(``),[w,T]=(0,q.useState)(!1),[E,D]=(0,q.useState)(``),O=(0,q.useRef)(null),k=(0,q.useRef)(null);(0,q.useEffect)(()=>{R.get(`/api/projects/last-clone-dir`).then(e=>{e?.dir&&x(e.dir)}).catch(()=>{})},[]),(0,q.useEffect)(()=>{if(!v.trim()){C(``);return}let e=v.match(/[/:]([^/:]+?)(?:\.git)?\s*$/);e?.[1]&&C(e[1])},[v]),(0,q.useEffect)(()=>{if(O.current&&clearTimeout(O.current),!o.trim()){d([]),p(!1);return}O.current=setTimeout(async()=>{h(!0);try{d(await R.get(`/api/projects/suggest-dirs?q=${encodeURIComponent(o)}`)??[]),p(!0)}catch{d([])}finally{h(!1)}},250)},[o]),(0,q.useEffect)(()=>{function e(e){k.current&&!k.current.contains(e.target)&&p(!1)}return document.addEventListener(`mousedown`,e),()=>document.removeEventListener(`mousedown`,e)},[]);function A(e){s(e.path),c||l(e.name),p(!1)}async function ee(t){if(t?.preventDefault(),!o.trim()){D(`Path is required`);return}D(``),_(!0);try{await r(o.trim(),c.trim()||void 0),e()}catch(e){D(e instanceof Error?e.message:`Failed to add project`)}finally{_(!1)}}async function te(t){if(t?.preventDefault(),!v.trim()){D(`Git URL is required`);return}if(!b.trim()){D(`Clone directory is required`);return}D(``),T(!0);try{let t=await R.post(`/api/projects/git/clone`,{url:v.trim(),targetDir:b.trim(),name:S.trim()||void 0}),{fetchProjects:n,setActiveProject:r}=U.getState();await n();let i=U.getState().projects.find(e=>e.path===t.path);i&&r(i),e()}catch(e){D(e instanceof Error?e.message:`Clone failed`)}finally{T(!1)}}return(0,J.jsxs)(`div`,{className:`flex flex-col gap-3`,children:[(0,J.jsx)(`div`,{className:`flex gap-1 border-b border-border`,children:[`local`,`clone`].map(e=>(0,J.jsx)(`button`,{type:`button`,onClick:()=>{a(e),D(``)},className:V(`px-3 py-1.5 text-sm font-medium border-b-2 -mb-px transition-colors`,i===e?`border-primary text-foreground`:`border-transparent text-text-secondary hover:text-foreground`),children:e===`local`?`Local folder`:`Clone from Git`},e))}),i===`local`?(0,J.jsxs)(`form`,{onSubmit:ee,className:`flex flex-col gap-3`,children:[(0,J.jsxs)(`div`,{ref:k,className:`relative`,children:[(0,J.jsx)(`label`,{className:`block text-xs font-medium text-foreground mb-1`,children:`Project path`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,J.jsxs)(`div`,{className:`relative flex items-center flex-1`,children:[(0,J.jsx)(Cn,{className:`absolute left-2.5 size-3.5 text-text-subtle pointer-events-none`}),(0,J.jsx)(`input`,{type:`text`,value:o,onChange:e=>{s(e.target.value),D(``)},onFocus:()=>u.length>0&&p(!0),placeholder:`/path/to/project`,className:`w-full pl-8 pr-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`,autoFocus:!0,autoComplete:`off`}),m&&(0,J.jsx)(K,{className:`absolute right-2.5 size-3.5 text-text-subtle animate-spin`})]}),(0,J.jsx)(ad,{mode:`folder`,onSelect:e=>{s(e),c||l(e.split(`/`).pop()??``),D(``)}})]}),f&&u.length>0&&(0,J.jsx)(`div`,{className:`absolute top-full left-0 right-0 mt-1 z-10 popover-solid border border-border rounded-md shadow-md max-h-48 overflow-y-auto`,children:u.map(e=>(0,J.jsxs)(`button`,{type:`button`,onMouseDown:()=>A(e),className:`w-full flex flex-col items-start px-3 py-2 text-left hover:bg-accent/50 transition-colors`,children:[(0,J.jsx)(`span`,{className:`text-sm font-medium truncate w-full`,children:e.name}),(0,J.jsx)(`span`,{className:`text-xs text-text-subtle truncate w-full`,children:e.path})]},e.path))})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`label`,{className:`block text-xs font-medium text-foreground mb-1`,children:[`Display name `,(0,J.jsx)(`span`,{className:`text-muted-foreground`,children:`(optional)`})]}),(0,J.jsx)(`input`,{type:`text`,value:c,onChange:e=>l(e.target.value),placeholder:`my-project`,className:`w-full px-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`})]}),E&&(0,J.jsx)(`p`,{className:`text-xs text-destructive`,children:E}),(0,J.jsxs)(`div`,{className:V(`flex justify-end gap-2 pt-1`,n),children:[(0,J.jsx)(`button`,{type:`button`,onClick:t,className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,J.jsx)(`button`,{type:`submit`,disabled:g||!o.trim(),className:`px-3 py-1.5 text-sm bg-primary text-white rounded-md hover:bg-primary/90 transition-colors disabled:opacity-50`,children:g?`Adding…`:`Add Project`})]})]}):(0,J.jsxs)(`form`,{onSubmit:te,className:`flex flex-col gap-3`,children:[(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`block text-xs font-medium text-foreground mb-1`,children:`Git URL`}),(0,J.jsx)(`input`,{type:`text`,value:v,onChange:e=>{y(e.target.value),D(``)},placeholder:`https://github.com/user/repo.git`,className:`w-full px-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`,autoFocus:!0,autoComplete:`off`})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`label`,{className:`block text-xs font-medium text-foreground mb-1`,children:`Clone to`}),(0,J.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,J.jsx)(`input`,{type:`text`,value:b,onChange:e=>{x(e.target.value),D(``)},placeholder:`~/Projects`,className:`flex-1 px-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`}),(0,J.jsx)(ad,{mode:`folder`,onSelect:e=>{x(e),D(``)}})]})]}),(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`label`,{className:`block text-xs font-medium text-foreground mb-1`,children:[`Name `,(0,J.jsx)(`span`,{className:`text-muted-foreground`,children:`(auto-parsed from URL)`})]}),(0,J.jsx)(`input`,{type:`text`,value:S,onChange:e=>C(e.target.value),placeholder:`repo-name`,className:`w-full px-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`})]}),E&&(0,J.jsx)(`p`,{className:`text-xs text-destructive`,children:E}),(0,J.jsxs)(`div`,{className:V(`flex justify-end gap-2 pt-1`,n),children:[(0,J.jsx)(`button`,{type:`button`,onClick:t,className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,J.jsx)(`button`,{type:`submit`,disabled:w||!v.trim()||!b.trim(),className:`px-3 py-1.5 text-sm bg-primary text-white rounded-md hover:bg-primary/90 transition-colors disabled:opacity-50`,children:w?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(K,{className:`inline size-3.5 animate-spin mr-1.5`}),`Cloning…`]}):`Clone & Add`})]})]})]})}var hp=(0,q.memo)(function({name:e,color:t,image:n,size:r,allNames:i,shape:a}){let o=X((0,q.useMemo)(()=>ao(e),[e]));return(0,J.jsxs)(`div`,{className:`relative shrink-0`,children:[(0,J.jsx)(pp,{name:e,color:t,image:n,size:r,allNames:i,shape:a}),o&&(0,J.jsx)(`div`,{className:V(`absolute -top-0.5 -right-0.5 size-2 rounded-full border-2 border-background`,eo(o))})]})});function gp({current:e,onChange:t}){return(0,J.jsx)(`div`,{className:`flex flex-wrap gap-2`,children:up.map(n=>(0,J.jsx)(`button`,{type:`button`,onClick:()=>t(n),className:V(`size-8 rounded-full border-2 transition-all`,e===n?`border-primary scale-110`:`border-transparent hover:scale-105`),style:{background:n}},n))})}var _p=(0,q.memo)(function(){let{projects:e,activeProject:t,setActiveProject:n,setProjectColor:r,setProjectImage:i,removeProjectImage:a,reorderProjects:o,renameProject:s,deleteProject:c,customOrder:l,sortMode:u,setProjectSortMode:d}=U(Tc(e=>({projects:e.projects,activeProject:e.activeProject,setActiveProject:e.setActiveProject,setProjectColor:e.setProjectColor,setProjectImage:e.setProjectImage,removeProjectImage:e.removeProjectImage,reorderProjects:e.reorderProjects,renameProject:e.renameProject,deleteProject:e.deleteProject,customOrder:e.customOrder,sortMode:e.projectSortMode,setProjectSortMode:e.setProjectSortMode}))),f=lt(e,l),p=f.map(e=>e.name),m=t??f[0]??null,h=m?f.findIndex(e=>e.name===m.name):-1,g=m?dp(m.color,h<0?0:h):`transparent`,[_,v]=(0,q.useState)(!1),[y,b]=(0,q.useState)(``),x=(0,q.useRef)(null),[S,C]=(0,q.useState)(null),w=(0,q.useCallback)(()=>{if(!_&&x.current){let e=x.current.getBoundingClientRect();C({left:e.left,top:e.bottom+4})}v(e=>!e)},[_]),T=(0,q.useCallback)(()=>{v(!1),b(``)},[]),[E,D]=(0,q.useState)(0),O=(0,q.useRef)(null),k=(0,q.useMemo)(()=>tp(e,l,u),[e,l,u,_]),A=(0,q.useMemo)(()=>dt(),[_]),ee=y.trim().toLowerCase(),te=ee?k.filter(e=>e.name.toLowerCase().includes(ee)||e.path.toLowerCase().includes(ee)):k,ne=u===`priority`&&!ee,j=(0,q.useCallback)(e=>{n(e),T()},[n,T]),M=(0,q.useCallback)(e=>{window.open(ip(e.name,null),`_blank`,`noopener`)},[]);(0,q.useEffect)(()=>{D(0)},[y,u,_]),(0,q.useEffect)(()=>{O.current?.querySelector(`[data-row-index="${E}"]`)?.scrollIntoView({block:`nearest`})},[E]);let re=(0,q.useCallback)(e=>{if(e.key===`ArrowDown`)e.preventDefault(),D(e=>Math.min(e+1,te.length-1));else if(e.key===`ArrowUp`)e.preventDefault(),D(e=>Math.max(e-1,0));else if(e.key===`Enter`){e.preventDefault();let t=te[E]??te[0];if(!t)return;e.ctrlKey||e.metaKey?M(t):j(t)}else e.key===`Escape`&&(e.preventDefault(),T())},[te,E,M,j,T]),[ie,ae]=(0,q.useState)(null),[oe,se]=(0,q.useState)(null),[ce,N]=(0,q.useState)(!1),[le,ue]=(0,q.useState)(!1),[de,fe]=(0,q.useState)(``),[P,pe]=(0,q.useState)(``),[me,he]=(0,q.useState)(!1),[ge,_e]=(0,q.useState)(``),[ve,ye]=(0,q.useState)(!1),[be,xe]=(0,q.useState)(``),[Se,Ce]=(0,q.useState)(``),[we,Te]=(0,q.useState)(!1),Ee=(0,q.useRef)(null),[Oe,ke]=(0,q.useState)(null),Ae=(0,q.useCallback)(async e=>{let t=e.target.files?.[0];if(e.target.value=``,!(!t||!Oe))try{await i(Oe,t)}catch(e){alert(e instanceof Error?e.message:`Upload failed`)}},[Oe,i]),je=(0,q.useCallback)(e=>{fe(e),pe(e),ue(!0)},[]),Me=(0,q.useCallback)(e=>{_e(e),he(!0)},[]),Ne=(0,q.useCallback)((e,t)=>{xe(e),Ce(t),ye(!0)},[]);async function Pe(){if(!P.trim()||P===de){ue(!1);return}try{await s(de,P.trim())}catch{}ue(!1)}async function Fe(){try{await c(ge)}catch{}he(!1)}async function F(){Te(!0);try{await r(be,Se),ye(!1)}catch(e){console.error(`Failed to save color:`,e)}finally{Te(!1)}}return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`input`,{ref:Ee,type:`file`,accept:`image/*`,className:`hidden`,onChange:Ae}),(0,J.jsxs)(`button`,{ref:x,onClick:w,title:`Switch project`,className:V(`flex items-center gap-[9px] w-full h-8 px-2 rounded-lg transition-colors border`,_?`bg-surface-elevated border-border`:`border-transparent hover:bg-surface-elevated`),children:[m?(0,J.jsx)(hp,{name:m.name,color:g,image:m.image,size:24,allNames:p,shape:`square`}):(0,J.jsx)(`div`,{className:`size-6 rounded-full bg-surface-elevated shrink-0`}),(0,J.jsxs)(`div`,{className:`min-w-0 flex-1 flex flex-col text-left leading-tight`,children:[(0,J.jsx)(`span`,{className:`text-[13px] font-semibold text-foreground truncate`,children:m?.name??`Select project`}),m?.path&&(0,J.jsx)(`span`,{className:`text-[10px] font-mono text-text-subtle truncate`,children:m.path})]}),(0,J.jsx)(qt,{className:`size-3.5 text-text-subtle shrink-0`})]}),_&&S&&(0,$f.createPortal)((0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`fixed inset-0 z-40`,onClick:T}),(0,J.jsxs)(`div`,{className:`fixed z-50 w-[340px] max-h-[680px] flex flex-col rounded-xl border border-border popover-solid shadow-[var(--shadow-panel)] overflow-hidden`,style:{left:S.left,top:S.top},children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-2.5 py-2 border-b border-border`,children:[(0,J.jsx)(Ge,{className:`size-3.5 text-text-subtle shrink-0`}),(0,J.jsx)(`input`,{value:y,onChange:e=>b(e.target.value),onKeyDown:re,placeholder:`Search projects…`,autoFocus:!0,className:`flex-1 bg-transparent text-xs text-foreground placeholder:text-text-subtle focus:outline-none`})]}),(0,J.jsx)(`div`,{className:`flex items-center gap-1 px-1.5 py-1.5 border-b border-border`,children:ep.map(({mode:e,label:t,Icon:n})=>(0,J.jsxs)(`button`,{onClick:()=>d(e),title:`Sort by ${t.toLowerCase()}`,className:V(`flex items-center justify-center gap-1 flex-1 px-2 py-1 rounded-md text-[11px] font-medium transition-colors`,u===e?`bg-primary/[0.12] text-primary`:`text-text-subtle hover:bg-surface-elevated hover:text-foreground`),children:[(0,J.jsx)(n,{className:`size-3`}),` `,t]},e))}),(0,J.jsxs)(`div`,{ref:O,className:`overflow-y-auto p-1.5`,children:[te.map((e,t)=>{let n=f.findIndex(t=>t.name===e.name),r=dp(e.color,n),i=m?.name===e.name,s=t===E,c=ie===n,l=oe===n&&ie!==n,u=A[e.name];return(0,J.jsxs)(jc,{children:[(0,J.jsx)(Mc,{asChild:!0,children:(0,J.jsxs)(`div`,{"data-row-index":t,draggable:ne,onDragStart:()=>ne&&ae(n),onDragOver:e=>{ne&&(e.preventDefault(),se(n))},onDragLeave:()=>se(null),onDragEnd:()=>{ae(null),se(null)},onDrop:()=>{if(ne&&ie!=null&&ie!==n){let e=f.map(e=>e.name),[t]=e.splice(ie,1);e.splice(n,0,t),o(e)}ae(null),se(null)},onMouseEnter:()=>D(t),className:V(`group relative flex items-center rounded-lg transition-colors`,i?`bg-primary/[0.12]`:s?`bg-surface-elevated`:``,c&&`opacity-40`,l&&`ring-2 ring-primary`),children:[(0,J.jsxs)(`button`,{onClick:()=>j(e),className:`flex items-center gap-2.5 min-w-0 flex-1 px-2 py-1.5 text-left`,children:[(0,J.jsx)(hp,{name:e.name,color:r,image:e.image,size:26,allNames:p}),(0,J.jsxs)(`div`,{className:`min-w-0`,children:[(0,J.jsx)(`div`,{className:V(`text-[13px] whitespace-nowrap overflow-hidden text-ellipsis`,i?`font-semibold text-primary`:`text-foreground`),children:e.name}),(0,J.jsx)(`div`,{className:`text-[10px] font-mono text-text-subtle whitespace-nowrap overflow-hidden text-ellipsis`,children:e.path})]})]}),u&&(0,J.jsx)(`span`,{title:`Last opened ${new Date(u).toLocaleString()}`,className:`shrink-0 mr-2 text-[10px] text-text-subtle whitespace-nowrap`,children:Ja(new Date(u).toISOString())}),(0,J.jsx)(`button`,{onClick:t=>{t.stopPropagation(),M(e)},title:`Open in new browser tab`,className:V(`shrink-0 mr-1 p-1.5 rounded-md text-text-subtle hover:bg-background hover:text-foreground transition-opacity`,s?`opacity-100`:`opacity-0 group-hover:opacity-100`),children:(0,J.jsx)(un,{className:`size-3.5`})})]})}),(0,J.jsxs)(Nc,{children:[(0,J.jsxs)(Pc,{onClick:()=>M(e),children:[(0,J.jsx)(un,{className:`size-3.5 mr-2`}),` Open in New Tab`]}),(0,J.jsx)(Fc,{}),(0,J.jsxs)(Pc,{onClick:()=>je(e.name),children:[(0,J.jsx)(De,{className:`size-3.5 mr-2`}),` Rename`]}),(0,J.jsxs)(Pc,{onClick:()=>Ne(e.name,r),children:[(0,J.jsx)(sr,{className:`size-3.5 mr-2`}),` Change Color`]}),(0,J.jsxs)(Pc,{onClick:()=>{ke(e.name),Ee.current?.click()},children:[(0,J.jsx)(zn,{className:`size-3.5 mr-2`}),` Change Image`]}),e.image&&(0,J.jsxs)(Pc,{onClick:()=>{a(e.name).catch(()=>{})},children:[(0,J.jsx)(Rr,{className:`size-3.5 mr-2`}),` Remove Image`]}),(0,J.jsxs)(Pc,{onClick:()=>void ks(e.path),children:[(0,J.jsx)(rn,{className:`size-3.5 mr-2`}),` Copy Path`]}),(0,J.jsx)(Fc,{}),(0,J.jsxs)(Pc,{className:`text-destructive focus:text-destructive`,onClick:()=>Me(e.name),children:[(0,J.jsx)(Rr,{className:`size-3.5 mr-2`}),` Delete`]})]})]},e.name)}),te.length===0&&(0,J.jsx)(`div`,{className:`px-2 py-4 text-center text-xs text-text-subtle`,children:`No projects found`})]}),(0,J.jsxs)(`button`,{onClick:()=>{N(!0),T()},className:`flex items-center gap-2 px-3 py-2.5 border-t border-border text-text-secondary text-[13px] font-medium hover:bg-surface-elevated transition-colors`,children:[(0,J.jsx)(Ze,{className:`size-[15px]`}),` Add Project`]})]})]}),document.body),(0,J.jsx)(Ue,{open:ce,onOpenChange:N,children:(0,J.jsxs)(ze,{className:`sm:max-w-sm`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:`Add Project`})}),(0,J.jsx)(mp,{onSuccess:()=>N(!1),onCancel:()=>N(!1)})]})}),(0,J.jsx)(Ue,{open:le,onOpenChange:ue,children:(0,J.jsxs)(ze,{className:`sm:max-w-sm`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:`Rename Project`})}),(0,J.jsx)(`input`,{type:`text`,value:P,onChange:e=>pe(e.target.value),onKeyDown:e=>{e.key===`Enter`&&Pe()},className:`w-full px-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`,autoFocus:!0}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(`button`,{onClick:()=>ue(!1),className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,J.jsx)(`button`,{onClick:Pe,className:`px-3 py-1.5 text-sm bg-primary text-white rounded-md hover:bg-primary/90 transition-colors`,children:`Rename`})]})]})}),(0,J.jsx)(Ue,{open:me,onOpenChange:he,children:(0,J.jsxs)(ze,{className:`sm:max-w-sm`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:`Delete Project`})}),(0,J.jsxs)(`p`,{className:`text-sm text-text-secondary`,children:[`Remove `,(0,J.jsx)(`strong`,{className:`text-foreground`,children:ge}),` from PPM? The files on disk won't be deleted.`]}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(`button`,{onClick:()=>he(!1),className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,J.jsx)(`button`,{onClick:Fe,className:`px-3 py-1.5 text-sm bg-destructive text-white rounded-md hover:bg-destructive/90 transition-colors`,children:`Delete`})]})]})}),(0,J.jsx)(Ue,{open:ve,onOpenChange:ye,children:(0,J.jsxs)(ze,{className:`sm:max-w-sm`,children:[(0,J.jsx)(Ie,{children:(0,J.jsx)(Be,{children:`Change Color`})}),(0,J.jsx)(gp,{current:Se,onChange:Ce}),(0,J.jsxs)(Le,{children:[(0,J.jsx)(`button`,{onClick:()=>ye(!1),className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,J.jsx)(`button`,{onClick:F,disabled:we,className:`px-3 py-1.5 text-sm bg-primary text-white rounded-md hover:bg-primary/90 transition-colors disabled:opacity-50`,children:we?`Saving…`:`Save`})]})]})})]})}),vp=[{id:`history`,label:`Chat History`,shortLabel:`History`,icon:Rt},{id:`teams`,label:`Teams`,icon:Ur,beta:!0},{id:`explorer`,label:`Explorer`,icon:Cn},{id:`search`,label:`Search`,icon:Ge},{id:`git`,label:`Git`,icon:kn},{id:`database`,label:`Database`,icon:Je},{id:`tunnels`,label:`Cloudflare Tunnels`,shortLabel:`Tunnels`,icon:we},{id:`ai-resources`,label:`AI Resources`,shortLabel:`AI`,icon:qe},{id:`settings`,label:`Settings`,icon:Dr}];function yp(e){let t=[...vp];if(e.jiraEnabled){let e=t.findIndex(e=>e.id===`settings`),n={id:`jira`,label:`Jira`,icon:zt};e>=0?t.splice(e,0,n):t.push(n)}let n=e.contributions?.views;if(n){let e=n.sidebar??n.explorer??[];for(let n of e)t.push({id:`ext:${n.id}`,label:n.name,icon:vr})}return t}function bp(e,t){if(!t||t.length===0)return[...e];let n=new Map(e.map(e=>[e.id,e])),r=[],i=new Set;for(let e of t){let t=n.get(e);t&&!i.has(e)&&(r.push(t),i.add(e))}for(let t of e)i.has(t.id)||r.push(t);return r}function xp({expanded:e}){let t=X(e=>e.notifications),n=X(e=>e.clearAll),r=X(ro),{projects:i,setActiveProject:a,customOrder:o}=U(Tc(e=>({projects:e.projects,setActiveProject:e.setActiveProject,customOrder:e.customOrder}))),s=lt(i,o),c=W(e=>e.openTab),[l,u]=(0,q.useState)(!1),d=(0,q.useRef)(null),[f,p]=(0,q.useState)(null),m=()=>{if(!l&&d.current){let e=d.current.getBoundingClientRect();p({left:e.right+6,bottom:window.innerHeight-e.bottom})}u(!l)},h=(e,t)=>{let n=i.find(e=>e.name===t);n&&a(n),c({type:`chat`,title:`Chat`,projectId:t,metadata:{projectName:t,sessionId:e,providerId:`claude`},closable:!0}),u(!1)},g=e=>{let t=s.findIndex(t=>t.name===e);if(t!==-1)return dp(s[t].color,t)},_=new Map;for(let[e,n]of t){let t=n.projectName||`Unknown`;_.has(t)||_.set(t,[]),_.get(t).push({sessionId:e,count:n.count,type:n.type,sessionTitle:n.sessionTitle})}return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`button`,{ref:d,onClick:m,className:V(`relative flex items-center rounded-md transition-colors`,e?`w-full h-8 gap-2 px-2 justify-start`:`justify-center size-8`,l?`text-primary bg-primary/10`:`text-text-subtle hover:text-foreground hover:bg-surface-elevated`),children:[(0,J.jsx)(Lt,{className:`size-4 shrink-0`}),e&&(0,J.jsx)(`span`,{className:`text-xs whitespace-nowrap`,children:`Notifications`}),r>0&&(0,J.jsx)(`span`,{className:V(`absolute flex items-center justify-center text-[9px] font-bold text-white bg-error rounded-full min-w-[16px] h-4 px-1`,e?`right-1.5`:`-top-1 -right-1`),children:r})]}),l&&f&&(0,$f.createPortal)((0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`fixed inset-0 z-40`,onClick:()=>u(!1)}),(0,J.jsxs)(`div`,{className:`fixed z-50 w-72 max-h-80 overflow-y-auto rounded-lg border border-border bg-background shadow-lg`,style:{left:f.left,bottom:f.bottom},children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-3 py-2 border-b border-border`,children:[(0,J.jsx)(`span`,{className:`text-xs font-medium text-foreground`,children:r>0?`${r} unread session${r>1?`s`:``}`:`No unread`}),r>0&&(0,J.jsxs)(`button`,{onClick:()=>{n(),u(!1)},className:`text-[10px] text-text-subtle hover:text-foreground transition-colors flex items-center gap-1`,children:[(0,J.jsx)(Ft,{className:`size-3`}),`Clear all`]})]}),r===0?(0,J.jsx)(`div`,{className:`px-3 py-4 text-center text-xs text-text-subtle`,children:`All caught up`}):(0,J.jsx)(`div`,{className:`py-1`,children:[..._.entries()].map(([e,t])=>(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{className:`px-3 py-1 text-[10px] font-medium text-text-subtle uppercase tracking-wider flex items-center gap-1.5`,children:[(0,J.jsx)(`span`,{className:`size-2 rounded-full shrink-0`,style:{background:g(e)||`currentColor`}}),e]}),t.map(({sessionId:t,type:n,sessionTitle:r})=>(0,J.jsx)(`button`,{onClick:()=>h(t,e),className:V(`w-full px-3 py-1.5 text-left text-[11px] text-foreground truncate hover:bg-surface-elevated transition-colors`,no(n)),children:r||`${t.slice(0,12)}...`},t))]},e))})]})]}),document.body)]})}var Sp=Object.defineProperty,Cp=Object.getOwnPropertySymbols,wp=Object.prototype.hasOwnProperty,Tp=Object.prototype.propertyIsEnumerable,Ep=(e,t,n)=>t in e?Sp(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Dp=(e,t)=>{for(var n in t||={})wp.call(t,n)&&Ep(e,n,t[n]);if(Cp)for(var n of Cp(t))Tp.call(t,n)&&Ep(e,n,t[n]);return e},Op=(e,t)=>{var n={};for(var r in e)wp.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&Cp)for(var r of Cp(e))t.indexOf(r)<0&&Tp.call(e,r)&&(n[r]=e[r]);return n},kp;(e=>{let t=class t{constructor(e,n,r,a){if(this.version=e,this.errorCorrectionLevel=n,this.modules=[],this.isFunction=[],e<t.MIN_VERSION||e>t.MAX_VERSION)throw RangeError(`Version value out of range`);if(a<-1||a>7)throw RangeError(`Mask value out of range`);this.size=e*4+17;let o=[];for(let e=0;e<this.size;e++)o.push(!1);for(let e=0;e<this.size;e++)this.modules.push(o.slice()),this.isFunction.push(o.slice());this.drawFunctionPatterns();let s=this.addEccAndInterleave(r);if(this.drawCodewords(s),a==-1){let e=1e9;for(let t=0;t<8;t++){this.applyMask(t),this.drawFormatBits(t);let n=this.getPenaltyScore();n<e&&(a=t,e=n),this.applyMask(t)}}i(0<=a&&a<=7),this.mask=a,this.applyMask(a),this.drawFormatBits(a),this.isFunction=[]}static encodeText(n,r){let i=e.QrSegment.makeSegments(n);return t.encodeSegments(i,r)}static encodeBinary(n,r){let i=e.QrSegment.makeBytes(n);return t.encodeSegments([i],r)}static encodeSegments(e,r,a=1,s=40,c=-1,l=!0){if(!(t.MIN_VERSION<=a&&a<=s&&s<=t.MAX_VERSION)||c<-1||c>7)throw RangeError(`Invalid value`);let u,d;for(u=a;;u++){let n=t.getNumDataCodewords(u,r)*8,i=o.getTotalBits(e,u);if(i<=n){d=i;break}if(u>=s)throw RangeError(`Data too long`)}for(let e of[t.Ecc.MEDIUM,t.Ecc.QUARTILE,t.Ecc.HIGH])l&&d<=t.getNumDataCodewords(u,e)*8&&(r=e);let f=[];for(let t of e){n(t.mode.modeBits,4,f),n(t.numChars,t.mode.numCharCountBits(u),f);for(let e of t.getData())f.push(e)}i(f.length==d);let p=t.getNumDataCodewords(u,r)*8;i(f.length<=p),n(0,Math.min(4,p-f.length),f),n(0,(8-f.length%8)%8,f),i(f.length%8==0);for(let e=236;f.length<p;e^=253)n(e,8,f);let m=[];for(;m.length*8<f.length;)m.push(0);return f.forEach((e,t)=>m[t>>>3]|=e<<7-(t&7)),new t(u,r,m,c)}getModule(e,t){return 0<=e&&e<this.size&&0<=t&&t<this.size&&this.modules[t][e]}getModules(){return this.modules}drawFunctionPatterns(){for(let e=0;e<this.size;e++)this.setFunctionModule(6,e,e%2==0),this.setFunctionModule(e,6,e%2==0);this.drawFinderPattern(3,3),this.drawFinderPattern(this.size-4,3),this.drawFinderPattern(3,this.size-4);let e=this.getAlignmentPatternPositions(),t=e.length;for(let n=0;n<t;n++)for(let r=0;r<t;r++)n==0&&r==0||n==0&&r==t-1||n==t-1&&r==0||this.drawAlignmentPattern(e[n],e[r]);this.drawFormatBits(0),this.drawVersion()}drawFormatBits(e){let t=this.errorCorrectionLevel.formatBits<<3|e,n=t;for(let e=0;e<10;e++)n=n<<1^(n>>>9)*1335;let a=(t<<10|n)^21522;i(a>>>15==0);for(let e=0;e<=5;e++)this.setFunctionModule(8,e,r(a,e));this.setFunctionModule(8,7,r(a,6)),this.setFunctionModule(8,8,r(a,7)),this.setFunctionModule(7,8,r(a,8));for(let e=9;e<15;e++)this.setFunctionModule(14-e,8,r(a,e));for(let e=0;e<8;e++)this.setFunctionModule(this.size-1-e,8,r(a,e));for(let e=8;e<15;e++)this.setFunctionModule(8,this.size-15+e,r(a,e));this.setFunctionModule(8,this.size-8,!0)}drawVersion(){if(this.version<7)return;let e=this.version;for(let t=0;t<12;t++)e=e<<1^(e>>>11)*7973;let t=this.version<<12|e;i(t>>>18==0);for(let e=0;e<18;e++){let n=r(t,e),i=this.size-11+e%3,a=Math.floor(e/3);this.setFunctionModule(i,a,n),this.setFunctionModule(a,i,n)}}drawFinderPattern(e,t){for(let n=-4;n<=4;n++)for(let r=-4;r<=4;r++){let i=Math.max(Math.abs(r),Math.abs(n)),a=e+r,o=t+n;0<=a&&a<this.size&&0<=o&&o<this.size&&this.setFunctionModule(a,o,i!=2&&i!=4)}}drawAlignmentPattern(e,t){for(let n=-2;n<=2;n++)for(let r=-2;r<=2;r++)this.setFunctionModule(e+r,t+n,Math.max(Math.abs(r),Math.abs(n))!=1)}setFunctionModule(e,t,n){this.modules[t][e]=n,this.isFunction[t][e]=!0}addEccAndInterleave(e){let n=this.version,r=this.errorCorrectionLevel;if(e.length!=t.getNumDataCodewords(n,r))throw RangeError(`Invalid argument`);let a=t.NUM_ERROR_CORRECTION_BLOCKS[r.ordinal][n],o=t.ECC_CODEWORDS_PER_BLOCK[r.ordinal][n],s=Math.floor(t.getNumRawDataModules(n)/8),c=a-s%a,l=Math.floor(s/a),u=[],d=t.reedSolomonComputeDivisor(o);for(let n=0,r=0;n<a;n++){let i=e.slice(r,r+l-o+(n<c?0:1));r+=i.length;let a=t.reedSolomonComputeRemainder(i,d);n<c&&i.push(0),u.push(i.concat(a))}let f=[];for(let e=0;e<u[0].length;e++)u.forEach((t,n)=>{(e!=l-o||n>=c)&&f.push(t[e])});return i(f.length==s),f}drawCodewords(e){if(e.length!=Math.floor(t.getNumRawDataModules(this.version)/8))throw RangeError(`Invalid argument`);let n=0;for(let t=this.size-1;t>=1;t-=2){t==6&&(t=5);for(let i=0;i<this.size;i++)for(let a=0;a<2;a++){let o=t-a,s=t+1&2?i:this.size-1-i;!this.isFunction[s][o]&&n<e.length*8&&(this.modules[s][o]=r(e[n>>>3],7-(n&7)),n++)}}i(n==e.length*8)}applyMask(e){if(e<0||e>7)throw RangeError(`Mask value out of range`);for(let t=0;t<this.size;t++)for(let n=0;n<this.size;n++){let r;switch(e){case 0:r=(n+t)%2==0;break;case 1:r=t%2==0;break;case 2:r=n%3==0;break;case 3:r=(n+t)%3==0;break;case 4:r=(Math.floor(n/3)+Math.floor(t/2))%2==0;break;case 5:r=n*t%2+n*t%3==0;break;case 6:r=(n*t%2+n*t%3)%2==0;break;case 7:r=((n+t)%2+n*t%3)%2==0;break;default:throw Error(`Unreachable`)}!this.isFunction[t][n]&&r&&(this.modules[t][n]=!this.modules[t][n])}}getPenaltyScore(){let e=0;for(let n=0;n<this.size;n++){let r=!1,i=0,a=[0,0,0,0,0,0,0];for(let o=0;o<this.size;o++)this.modules[n][o]==r?(i++,i==5?e+=t.PENALTY_N1:i>5&&e++):(this.finderPenaltyAddHistory(i,a),r||(e+=this.finderPenaltyCountPatterns(a)*t.PENALTY_N3),r=this.modules[n][o],i=1);e+=this.finderPenaltyTerminateAndCount(r,i,a)*t.PENALTY_N3}for(let n=0;n<this.size;n++){let r=!1,i=0,a=[0,0,0,0,0,0,0];for(let o=0;o<this.size;o++)this.modules[o][n]==r?(i++,i==5?e+=t.PENALTY_N1:i>5&&e++):(this.finderPenaltyAddHistory(i,a),r||(e+=this.finderPenaltyCountPatterns(a)*t.PENALTY_N3),r=this.modules[o][n],i=1);e+=this.finderPenaltyTerminateAndCount(r,i,a)*t.PENALTY_N3}for(let n=0;n<this.size-1;n++)for(let r=0;r<this.size-1;r++){let i=this.modules[n][r];i==this.modules[n][r+1]&&i==this.modules[n+1][r]&&i==this.modules[n+1][r+1]&&(e+=t.PENALTY_N2)}let n=0;for(let e of this.modules)n=e.reduce((e,t)=>e+(t?1:0),n);let r=this.size*this.size,a=Math.ceil(Math.abs(n*20-r*10)/r)-1;return i(0<=a&&a<=9),e+=a*t.PENALTY_N4,i(0<=e&&e<=2568888),e}getAlignmentPatternPositions(){if(this.version==1)return[];{let e=Math.floor(this.version/7)+2,t=this.version==32?26:Math.ceil((this.version*4+4)/(e*2-2))*2,n=[6];for(let r=this.size-7;n.length<e;r-=t)n.splice(1,0,r);return n}}static getNumRawDataModules(e){if(e<t.MIN_VERSION||e>t.MAX_VERSION)throw RangeError(`Version number out of range`);let n=(16*e+128)*e+64;if(e>=2){let t=Math.floor(e/7)+2;n-=(25*t-10)*t-55,e>=7&&(n-=36)}return i(208<=n&&n<=29648),n}static getNumDataCodewords(e,n){return Math.floor(t.getNumRawDataModules(e)/8)-t.ECC_CODEWORDS_PER_BLOCK[n.ordinal][e]*t.NUM_ERROR_CORRECTION_BLOCKS[n.ordinal][e]}static reedSolomonComputeDivisor(e){if(e<1||e>255)throw RangeError(`Degree out of range`);let n=[];for(let t=0;t<e-1;t++)n.push(0);n.push(1);let r=1;for(let i=0;i<e;i++){for(let e=0;e<n.length;e++)n[e]=t.reedSolomonMultiply(n[e],r),e+1<n.length&&(n[e]^=n[e+1]);r=t.reedSolomonMultiply(r,2)}return n}static reedSolomonComputeRemainder(e,n){let r=n.map(e=>0);for(let i of e){let e=i^r.shift();r.push(0),n.forEach((n,i)=>r[i]^=t.reedSolomonMultiply(n,e))}return r}static reedSolomonMultiply(e,t){if(e>>>8||t>>>8)throw RangeError(`Byte out of range`);let n=0;for(let r=7;r>=0;r--)n=n<<1^(n>>>7)*285,n^=(t>>>r&1)*e;return i(n>>>8==0),n}finderPenaltyCountPatterns(e){let t=e[1];i(t<=this.size*3);let n=t>0&&e[2]==t&&e[3]==t*3&&e[4]==t&&e[5]==t;return(n&&e[0]>=t*4&&e[6]>=t?1:0)+(n&&e[6]>=t*4&&e[0]>=t?1:0)}finderPenaltyTerminateAndCount(e,t,n){return e&&(this.finderPenaltyAddHistory(t,n),t=0),t+=this.size,this.finderPenaltyAddHistory(t,n),this.finderPenaltyCountPatterns(n)}finderPenaltyAddHistory(e,t){t[0]==0&&(e+=this.size),t.pop(),t.unshift(e)}};t.MIN_VERSION=1,t.MAX_VERSION=40,t.PENALTY_N1=3,t.PENALTY_N2=3,t.PENALTY_N3=40,t.PENALTY_N4=10,t.ECC_CODEWORDS_PER_BLOCK=[[-1,7,10,15,20,26,18,20,24,30,18,20,24,26,30,22,24,28,30,28,28,28,28,30,30,26,28,30,30,30,30,30,30,30,30,30,30,30,30,30,30],[-1,10,16,26,18,24,16,18,22,22,26,30,22,22,24,24,28,28,26,26,26,26,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28],[-1,13,22,18,26,18,24,18,22,20,24,28,26,24,20,30,24,28,28,26,30,28,30,30,30,30,28,30,30,30,30,30,30,30,30,30,30,30,30,30,30],[-1,17,28,22,16,22,28,26,26,24,28,24,28,22,24,24,30,28,28,26,28,30,24,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30]],t.NUM_ERROR_CORRECTION_BLOCKS=[[-1,1,1,1,1,1,2,2,2,2,4,4,4,4,4,6,6,6,6,7,8,8,9,9,10,12,12,12,13,14,15,16,17,18,19,19,20,21,22,24,25],[-1,1,1,1,2,2,4,4,4,5,5,5,8,9,9,10,10,11,13,14,16,17,17,18,20,21,23,25,26,28,29,31,33,35,37,38,40,43,45,47,49],[-1,1,1,2,2,4,4,6,6,8,8,8,10,12,16,12,17,16,18,21,20,23,23,25,27,29,34,34,35,38,40,43,45,48,51,53,56,59,62,65,68],[-1,1,1,2,4,4,4,5,6,8,8,11,11,16,16,18,16,19,21,25,25,25,34,30,32,35,37,40,42,45,48,51,54,57,60,63,66,70,74,77,81]],e.QrCode=t;function n(e,t,n){if(t<0||t>31||e>>>t)throw RangeError(`Value out of range`);for(let r=t-1;r>=0;r--)n.push(e>>>r&1)}function r(e,t){return(e>>>t&1)!=0}function i(e){if(!e)throw Error(`Assertion error`)}let a=class e{constructor(e,t,n){if(this.mode=e,this.numChars=t,this.bitData=n,t<0)throw RangeError(`Invalid argument`);this.bitData=n.slice()}static makeBytes(t){let r=[];for(let e of t)n(e,8,r);return new e(e.Mode.BYTE,t.length,r)}static makeNumeric(t){if(!e.isNumeric(t))throw RangeError(`String contains non-numeric characters`);let r=[];for(let e=0;e<t.length;){let i=Math.min(t.length-e,3);n(parseInt(t.substring(e,e+i),10),i*3+1,r),e+=i}return new e(e.Mode.NUMERIC,t.length,r)}static makeAlphanumeric(t){if(!e.isAlphanumeric(t))throw RangeError(`String contains unencodable characters in alphanumeric mode`);let r=[],i;for(i=0;i+2<=t.length;i+=2){let a=e.ALPHANUMERIC_CHARSET.indexOf(t.charAt(i))*45;a+=e.ALPHANUMERIC_CHARSET.indexOf(t.charAt(i+1)),n(a,11,r)}return i<t.length&&n(e.ALPHANUMERIC_CHARSET.indexOf(t.charAt(i)),6,r),new e(e.Mode.ALPHANUMERIC,t.length,r)}static makeSegments(t){return t==``?[]:e.isNumeric(t)?[e.makeNumeric(t)]:e.isAlphanumeric(t)?[e.makeAlphanumeric(t)]:[e.makeBytes(e.toUtf8ByteArray(t))]}static makeEci(t){let r=[];if(t<0)throw RangeError(`ECI assignment value out of range`);if(t<128)n(t,8,r);else if(t<16384)n(2,2,r),n(t,14,r);else if(t<1e6)n(6,3,r),n(t,21,r);else throw RangeError(`ECI assignment value out of range`);return new e(e.Mode.ECI,0,r)}static isNumeric(t){return e.NUMERIC_REGEX.test(t)}static isAlphanumeric(t){return e.ALPHANUMERIC_REGEX.test(t)}getData(){return this.bitData.slice()}static getTotalBits(e,t){let n=0;for(let r of e){let e=r.mode.numCharCountBits(t);if(r.numChars>=1<<e)return 1/0;n+=4+e+r.bitData.length}return n}static toUtf8ByteArray(e){e=encodeURI(e);let t=[];for(let n=0;n<e.length;n++)e.charAt(n)==`%`?(t.push(parseInt(e.substring(n+1,n+3),16)),n+=2):t.push(e.charCodeAt(n));return t}};a.NUMERIC_REGEX=/^[0-9]*$/,a.ALPHANUMERIC_REGEX=/^[A-Z0-9 $%*+.\/:-]*$/,a.ALPHANUMERIC_CHARSET=`0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:`;let o=a;e.QrSegment=a})(kp||={}),(e=>{(e=>{let t=class{constructor(e,t){this.ordinal=e,this.formatBits=t}};t.LOW=new t(0,1),t.MEDIUM=new t(1,0),t.QUARTILE=new t(2,3),t.HIGH=new t(3,2),e.Ecc=t})(e.QrCode||={})})(kp||={}),(e=>{(e=>{let t=class{constructor(e,t){this.modeBits=e,this.numBitsCharCount=t}numCharCountBits(e){return this.numBitsCharCount[Math.floor((e+7)/17)]}};t.NUMERIC=new t(1,[10,12,14]),t.ALPHANUMERIC=new t(2,[9,11,13]),t.BYTE=new t(4,[8,16,16]),t.KANJI=new t(8,[8,10,12]),t.ECI=new t(7,[0,0,0]),e.Mode=t})(e.QrSegment||={})})(kp||={});var Ap=kp,jp={L:Ap.QrCode.Ecc.LOW,M:Ap.QrCode.Ecc.MEDIUM,Q:Ap.QrCode.Ecc.QUARTILE,H:Ap.QrCode.Ecc.HIGH},Mp=128,Np=`L`,Pp=`#FFFFFF`,Fp=`#000000`,Ip=!1,Lp=1,Rp=4,zp=0,Bp=.1;function Vp(e,t=0){let n=[];return e.forEach(function(e,r){let i=null;e.forEach(function(a,o){if(!a&&i!==null){n.push(`M${i+t} ${r+t}h${o-i}v1H${i+t}z`),i=null;return}if(o===e.length-1){if(!a)return;i===null?n.push(`M${o+t},${r+t} h1v1H${o+t}z`):n.push(`M${i+t},${r+t} h${o+1-i}v1H${i+t}z`);return}a&&i===null&&(i=o)})}),n.join(``)}function Hp(e,t){return e.slice().map((e,n)=>n<t.y||n>=t.y+t.h?e:e.map((e,n)=>n<t.x||n>=t.x+t.w?e:!1))}function Up(e,t,n,r){if(r==null)return null;let i=e.length+n*2,a=Math.floor(t*Bp),o=i/t,s=(r.width||a)*o,c=(r.height||a)*o,l=r.x==null?e.length/2-s/2:r.x*o,u=r.y==null?e.length/2-c/2:r.y*o,d=r.opacity==null?1:r.opacity,f=null;if(r.excavate){let e=Math.floor(l),t=Math.floor(u);f={x:e,y:t,w:Math.ceil(s+l-e),h:Math.ceil(c+u-t)}}let p=r.crossOrigin;return{x:l,y:u,h:c,w:s,excavation:f,opacity:d,crossOrigin:p}}function Wp(e,t){return t==null?e?Rp:zp:Math.max(Math.floor(t),0)}function Gp({value:e,level:t,minVersion:n,includeMargin:r,marginSize:i,imageSettings:a,size:o,boostLevel:s}){let c=q.useMemo(()=>{let r=(Array.isArray(e)?e:[e]).reduce((e,t)=>(e.push(...Ap.QrSegment.makeSegments(t)),e),[]);return Ap.QrCode.encodeSegments(r,jp[t],n,void 0,void 0,s)},[e,t,n,s]),{cells:l,margin:u,numCells:d,calculatedImageSettings:f}=q.useMemo(()=>{let e=c.getModules(),t=Wp(r,i);return{cells:e,margin:t,numCells:e.length+t*2,calculatedImageSettings:Up(e,o,t,a)}},[c,o,a,r,i]);return{qrcode:c,margin:u,cells:l,numCells:d,calculatedImageSettings:f}}var Kp=function(){try{new Path2D().addPath(new Path2D)}catch{return!1}return!0}(),qp=q.forwardRef(function(e,t){let n=e,{value:r,size:i=Mp,level:a=Np,bgColor:o=Pp,fgColor:s=Fp,includeMargin:c=Ip,minVersion:l=Lp,boostLevel:u,marginSize:d,imageSettings:f}=n,p=Op(n,[`value`,`size`,`level`,`bgColor`,`fgColor`,`includeMargin`,`minVersion`,`boostLevel`,`marginSize`,`imageSettings`]),{style:m}=p,h=Op(p,[`style`]),g=f?.src,_=q.useRef(null),v=q.useRef(null),y=q.useCallback(e=>{_.current=e,typeof t==`function`?t(e):t&&(t.current=e)},[t]),[b,x]=q.useState(!1),{margin:S,cells:C,numCells:w,calculatedImageSettings:T}=Gp({value:r,level:a,minVersion:l,boostLevel:u,includeMargin:c,marginSize:d,imageSettings:f,size:i});q.useEffect(()=>{if(_.current!=null){let e=_.current,t=e.getContext(`2d`);if(!t)return;let n=C,r=v.current,a=T!=null&&r!==null&&r.complete&&r.naturalHeight!==0&&r.naturalWidth!==0;a&&T.excavation!=null&&(n=Hp(C,T.excavation));let c=window.devicePixelRatio||1;e.height=e.width=i*c;let l=i/w*c;t.scale(l,l),t.fillStyle=o,t.fillRect(0,0,w,w),t.fillStyle=s,Kp?t.fill(new Path2D(Vp(n,S))):C.forEach(function(e,n){e.forEach(function(e,r){e&&t.fillRect(r+S,n+S,1,1)})}),T&&(t.globalAlpha=T.opacity),a&&t.drawImage(r,T.x+S,T.y+S,T.w,T.h)}}),q.useEffect(()=>{x(!1)},[g]);let E=Dp({height:i,width:i},m),D=null;return g!=null&&(D=q.createElement(`img`,{src:g,key:g,style:{display:`none`},onLoad:()=>{x(!0)},ref:v,crossOrigin:T?.crossOrigin})),q.createElement(q.Fragment,null,q.createElement(`canvas`,Dp({style:E,height:i,width:i,ref:y,role:`img`},h)),D)});qp.displayName=`QRCodeCanvas`;var Jp=q.forwardRef(function(e,t){let n=e,{value:r,size:i=Mp,level:a=Np,bgColor:o=Pp,fgColor:s=Fp,includeMargin:c=Ip,minVersion:l=Lp,boostLevel:u,title:d,marginSize:f,imageSettings:p}=n,m=Op(n,[`value`,`size`,`level`,`bgColor`,`fgColor`,`includeMargin`,`minVersion`,`boostLevel`,`title`,`marginSize`,`imageSettings`]),{margin:h,cells:g,numCells:_,calculatedImageSettings:v}=Gp({value:r,level:a,minVersion:l,boostLevel:u,includeMargin:c,marginSize:f,imageSettings:p,size:i}),y=g,b=null;p!=null&&v!=null&&(v.excavation!=null&&(y=Hp(g,v.excavation)),b=q.createElement(`image`,{href:p.src,height:v.h,width:v.w,x:v.x+h,y:v.y+h,preserveAspectRatio:`none`,opacity:v.opacity,crossOrigin:v.crossOrigin}));let x=Vp(y,h);return q.createElement(`svg`,Dp({height:i,width:i,viewBox:`0 0 ${_} ${_}`,ref:t,role:`img`},m),!!d&&q.createElement(`title`,null,d),q.createElement(`path`,{fill:o,d:`M0,0 h${_}v${_}H0z`,shapeRendering:`crispEdges`}),q.createElement(`path`,{fill:s,d:x,shapeRendering:`crispEdges`}),b)});Jp.displayName=`QRCodeSVG`;var Yp=/^[a-z0-9][a-z0-9-]{1,31}$/,Xp=`2–32 characters: lowercase letters, numbers, hyphens.`;function Zp(e){return e.replace(/^https?:\/\//,``).replace(/\/$/,``)}function Qp(e){if(!e)return``;let t=e.toLowerCase().replace(/[^a-z0-9]+/g,`-`).replace(/^-+|-+$/g,``).slice(0,32);return Yp.test(t)?t:``}function $p({cloudUrl:e,deviceName:t}){let[n,r]=(0,q.useState)(null),[i,a]=(0,q.useState)(!0),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(!1),[u,d]=(0,q.useState)(``),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)(null);(0,q.useEffect)(()=>{(async()=>{try{r((await R.get(`/api/cloud/alias`)).slug)}catch{s(!0)}a(!1)})()},[]);let g=(0,q.useCallback)(()=>{d(n??Qp(t)),h(null),l(!0)},[n,t]),_=(0,q.useCallback)(async()=>{let e=u.trim().toLowerCase();if(!Yp.test(e)){h(Xp);return}p(!0),h(null);try{r((await R.patch(`/api/cloud/alias`,{slug:e})).slug),l(!1)}catch(e){h(e instanceof Error?e.message:`Could not save that name`)}finally{p(!1)}},[u]);return i?null:o?(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground leading-relaxed`,children:`Couldn't check this machine's permanent link. Open the cloud dashboard, or sign in again.`}):c?(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:`Permanent link`}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,J.jsxs)(`span`,{className:`text-xs font-mono text-muted-foreground shrink-0`,children:[Zp(e),`/`]}),(0,J.jsx)(`input`,{autoFocus:!0,value:u,onChange:e=>d(e.target.value),onKeyDown:e=>{e.key===`Enter`&&_(),e.key===`Escape`&&l(!1)},placeholder:`my-mac`,className:`flex-1 min-w-0 text-base md:text-xs font-mono text-foreground bg-muted px-2 min-h-11 md:min-h-0 md:py-1.5 rounded border border-border outline-none focus:border-primary`}),(0,J.jsx)(`button`,{onClick:_,disabled:f,title:`Save`,className:`flex items-center justify-center size-11 md:size-8 rounded border border-border text-primary bg-muted hover:bg-accent transition-colors shrink-0 disabled:opacity-50`,children:f?(0,J.jsx)(K,{className:`size-3.5 animate-spin`}):(0,J.jsx)(xe,{className:`size-3.5`})}),(0,J.jsx)(`button`,{onClick:()=>l(!1),title:`Cancel`,className:`flex items-center justify-center size-11 md:size-8 rounded border border-border text-muted-foreground bg-muted hover:bg-accent transition-colors shrink-0`,children:(0,J.jsx)(Qe,{className:`size-3.5`})})]}),(0,J.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:m??Xp})]}):n?(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:`Permanent link`}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,J.jsxs)(`a`,{href:`${e}/${n}`,target:`_blank`,rel:`noopener noreferrer`,className:`flex-1 min-w-0 flex items-center gap-1 text-xs font-mono text-primary hover:underline truncate`,children:[(0,J.jsxs)(`span`,{className:`truncate`,children:[Zp(e),`/`,n]}),(0,J.jsx)(un,{className:`size-3 shrink-0`})]}),(0,J.jsx)(`button`,{onClick:g,title:`Change permanent link`,className:`flex items-center justify-center size-11 md:size-8 rounded border border-border text-muted-foreground bg-muted hover:bg-accent hover:text-foreground transition-colors shrink-0`,children:(0,J.jsx)(De,{className:`size-3.5`})})]})]}):(0,J.jsxs)(`button`,{onClick:g,className:`w-full flex items-center justify-center gap-1.5 px-3 min-h-11 md:min-h-0 md:py-2 text-xs font-medium rounded-md border border-border hover:bg-muted transition-colors`,children:[(0,J.jsx)(De,{className:`size-3.5`}),`Set a permanent link`]})}function em({onClose:e,variant:t=`popover`}){let[n,r]=(0,q.useState)(null),[i,a]=(0,q.useState)(null),[o,s]=(0,q.useState)(!0),[c,l]=(0,q.useState)(!1),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)(null),[g,_]=(0,q.useState)(null),[v,y]=(0,q.useState)(null),[b,x]=(0,q.useState)(!1);(0,q.useEffect)(()=>{(async()=>{try{let[e,t]=await Promise.all([R.get(`/api/cloud/status`),R.get(`/api/tunnel`)]);r(e),a(t)}catch{}s(!1)})()},[]);let S=(0,q.useCallback)(e=>{ks(e),_(e),setTimeout(()=>_(null),2e3)},[]),C=(0,q.useCallback)(async()=>{l(!0),h(null);try{a({active:!0,url:(await R.post(`/api/tunnel/start`,{})).url,localUrl:i?.localUrl??null}),r(await R.get(`/api/cloud/status`))}catch(e){h(e instanceof Error?e.message:`Failed to start tunnel`)}finally{l(!1)}},[i]),w=(0,q.useCallback)(async()=>{h(null);try{let{cloud_url:e}=await R.get(`/api/cloud/login-url`),t=await fetch(`${e}/auth/device-code`,{method:`POST`,headers:{"Content-Type":`application/json`}});if(!t.ok)throw Error(`Failed to get device code`);let n=await t.json();y({userCode:n.user_code,verifyUrl:n.verification_uri}),x(!0);let i=(n.interval||5)*1e3,a=Date.now()+n.expires_in*1e3,o=setInterval(async()=>{if(Date.now()>a){clearInterval(o),x(!1),y(null),h(`Login expired. Try again.`);return}try{let t=await fetch(`${e}/auth/device-code/poll`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({device_code:n.device_code})});if(!t.ok)return;let i=await t.json();i.status===`approved`&&i.access_token&&i.email&&(clearInterval(o),x(!1),y(null),await R.post(`/api/cloud/login`,{access_token:i.access_token,email:i.email,cloud_url:e}),r(await R.get(`/api/cloud/status`)))}catch{}},i)}catch(e){h(e instanceof Error?e.message:`Failed to start login`),x(!1),y(null)}},[]),T=(0,q.useCallback)(async()=>{d(!0),h(null);try{i?.active||a({active:!0,url:(await R.post(`/api/tunnel/start`,{})).url,localUrl:i?.localUrl??null}),await R.post(`/api/cloud/link`,{}),r(await R.get(`/api/cloud/status`))}catch(e){h(e instanceof Error?e.message:`Failed to link device`)}finally{d(!1)}},[i]),E=(0,q.useCallback)(async()=>{if(confirm(`Unlink this device from PPM Cloud? It will no longer appear on your cloud dashboard.`)){p(!0);try{await R.post(`/api/cloud/unlink`,{}),r(await R.get(`/api/cloud/status`))}catch{}p(!1)}},[]),D=(0,q.useCallback)(async()=>{let e=n?.linked?`Sign out from PPM Cloud? This will also unlink your device.`:`Sign out from PPM Cloud?`;if(confirm(e)){if(n?.linked)try{await R.post(`/api/cloud/unlink`,{})}catch{}await R.post(`/api/cloud/logout`,{}),r(e=>e?{...e,logged_in:!1,email:null,linked:!1,device_name:null,device_id:null}:null)}},[n?.linked]),O=i?.url||n?.tunnel_url;return(0,J.jsxs)(`div`,{className:t===`sheet`?`w-full p-3 space-y-3`:`w-72 bg-background border border-border rounded-lg shadow-lg p-3 space-y-3`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,J.jsx)(tn,{className:`size-4 text-primary`}),(0,J.jsx)(`span`,{className:`text-sm font-medium text-foreground`,children:`PPM Cloud`})]}),(0,J.jsx)(`button`,{onClick:e,className:`text-text-subtle hover:text-foreground`,children:(0,J.jsx)(Qe,{className:`size-3.5`})})]}),o&&(0,J.jsxs)(`div`,{className:`flex items-center gap-2 text-muted-foreground text-xs py-2`,children:[(0,J.jsx)(K,{className:`size-4 animate-spin`}),(0,J.jsx)(`span`,{children:`Loading...`})]}),!o&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`space-y-1.5`,children:n?.logged_in?(0,J.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 min-w-0`,children:[(0,J.jsx)(`div`,{className:`size-2 rounded-full bg-success shrink-0`}),(0,J.jsx)(`span`,{className:`text-xs text-foreground truncate`,children:n.email})]}),(0,J.jsx)(`button`,{onClick:D,className:`text-text-subtle hover:text-foreground p-1 rounded hover:bg-muted transition-colors shrink-0`,title:`Sign out`,children:(0,J.jsx)(Xn,{className:`size-3`})})]}):v?(0,J.jsxs)(`div`,{className:`space-y-2 text-center`,children:[(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Open the link below and enter the code:`}),(0,J.jsx)(`div`,{className:`font-mono text-2xl font-bold tracking-[0.3em] text-primary`,children:v.userCode}),(0,J.jsx)(`a`,{href:v.verifyUrl,target:`_blank`,rel:`noopener noreferrer`,className:`text-xs text-primary hover:underline`,children:v.verifyUrl}),b&&(0,J.jsxs)(`div`,{className:`flex items-center justify-center gap-1.5 text-xs text-muted-foreground`,children:[(0,J.jsx)(K,{className:`size-3 animate-spin`}),(0,J.jsx)(`span`,{children:`Waiting for verification...`})]})]}):(0,J.jsxs)(J.Fragment,{children:[O&&(0,J.jsx)(`p`,{className:`text-[11px] text-muted-foreground leading-relaxed`,children:`This link changes every time PPM restarts. Sign in to get a permanent one that always points here — private to your account.`}),(0,J.jsxs)(`button`,{onClick:w,className:`w-full flex items-center justify-center gap-1.5 px-3 py-2 text-xs font-medium rounded-md border border-border hover:bg-muted transition-colors`,children:[(0,J.jsx)(tn,{className:`size-3.5`}),O?`Get a permanent link`:`Sign in to PPM Cloud`]})]})}),n?.logged_in&&(0,J.jsx)(`div`,{className:`space-y-1.5`,children:n.linked?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between text-xs`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 min-w-0`,children:[(0,J.jsx)(Kn,{className:`size-3 text-primary shrink-0`}),(0,J.jsx)(`span`,{className:`text-foreground truncate`,children:n.device_name})]}),(0,J.jsx)(`button`,{onClick:E,disabled:f,className:`text-text-subtle hover:text-destructive p-1 rounded hover:bg-muted transition-colors shrink-0`,title:`Unlink device`,children:f?(0,J.jsx)(K,{className:`size-3 animate-spin`}):(0,J.jsx)(Vr,{className:`size-3`})})]}),(0,J.jsx)($p,{cloudUrl:n.cloud_url,deviceName:n.device_name})]}):(0,J.jsx)(`button`,{onClick:T,disabled:u,className:`w-full flex items-center justify-center gap-1.5 px-3 py-1.5 text-xs font-medium rounded-md bg-primary text-primary-foreground hover:bg-primary/90 transition-colors disabled:opacity-50`,children:u?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(K,{className:`size-3.5 animate-spin`}),` Linking...`]}):(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Kn,{className:`size-3.5`}),` Link this machine`]})})}),(0,J.jsx)(`div`,{className:`border-t border-border`}),i?.localUrl&&(0,J.jsxs)(`div`,{className:`space-y-1`,children:[(0,J.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:`Local Network`}),(0,J.jsx)(tm,{url:i.localUrl,copied:g,onCopy:S})]}),!O&&!c&&(0,J.jsxs)(`button`,{onClick:C,className:`w-full flex items-center justify-center gap-1.5 px-3 py-1.5 text-xs font-medium rounded-md bg-primary text-primary-foreground hover:bg-primary/90 transition-colors`,children:[(0,J.jsx)(Or,{className:`size-3.5`}),`Start Sharing`]}),c&&(0,J.jsxs)(`div`,{className:`flex flex-col items-center gap-2 py-2`,children:[(0,J.jsx)(K,{className:`size-5 animate-spin text-primary`}),(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:`Starting tunnel...`})]}),O&&(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:`Public URL`}),(0,J.jsx)(`div`,{className:`flex justify-center`,children:(0,J.jsx)(`div`,{className:`p-3 rounded-lg`,style:{backgroundColor:`#ffffff`,colorScheme:`light`},children:(0,J.jsx)(Jp,{value:O,size:180,bgColor:`#ffffff`,fgColor:`#000000`,level:`L`,style:{display:`block`}})})}),(0,J.jsx)(tm,{url:O,copied:g,onCopy:S})]}),n?.logged_in&&n.linked&&(0,J.jsxs)(`a`,{href:n.cloud_url+`/dashboard`,target:`_blank`,rel:`noopener noreferrer`,className:`flex items-center justify-center gap-1.5 w-full px-3 py-1.5 text-xs text-muted-foreground hover:text-foreground rounded-md border border-border hover:bg-muted transition-colors`,children:[(0,J.jsx)(un,{className:`size-3`}),`Open Cloud Dashboard`]}),m&&(0,J.jsx)(`p`,{className:`text-xs text-destructive`,children:m})]})]})}function tm({url:e,copied:t,onCopy:n}){return(0,J.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,J.jsx)(`input`,{readOnly:!0,value:e,className:`flex-1 text-xs font-mono text-foreground bg-muted px-2 py-1.5 rounded border border-border truncate`,onClick:e=>e.target.select()}),(0,J.jsx)(`button`,{onClick:()=>n(e),className:`flex items-center justify-center size-7 rounded border border-border text-muted-foreground bg-muted hover:bg-accent hover:text-foreground transition-colors shrink-0`,title:`Copy URL`,children:t===e?(0,J.jsx)(xe,{className:`size-3.5 text-primary`}):(0,J.jsx)(rn,{className:`size-3.5`})})]})}var nm=`hienlh/ppm`;async function rm(e,t){let n=`(could not fetch)`;try{let e=tt(),t=await(await fetch(`/api/logs/recent`,e?{headers:{Authorization:`Bearer ${e}`}}:{})).json();t.ok&&(n=t.data.logs||`(empty)`)}catch{}let r=``;if(t?.sessionId&&t?.projectName)try{let e=await R.get(`${L(t.projectName)}/chat/sessions/${t.sessionId}/logs?tail=100`);e.logs&&(r=e.logs)}catch{}return[`## Environment`,`- PPM: v${e??`unknown`}`,`- Browser: ${navigator.userAgent}`,``,`## Description`,`<!-- Describe the bug -->`,``,`## Steps to Reproduce`,`1. `,``,`## Expected Behavior`,``,...r?[`## Chat Session Logs (${t?.sessionId?.slice(0,8)})`,"```",r,"```",``]:[],`## Server Logs (last 30 lines)`,"```",n,"```"].join(`
|
|
19
|
-
`)}function im(e){let t=`https://github.com/${nm}/issues/new?title=bug%3A%20&body=${encodeURIComponent(e)}`;window.open(t,`_blank`)}function am(e,t){rm(e,t).then(e=>{window.dispatchEvent(new CustomEvent(`open-bug-report`,{detail:e}))})}function om({count:e}){return(0,J.jsx)(`span`,{className:`absolute top-1 right-1 min-w-[16px] h-4 px-1 flex items-center justify-center rounded-full bg-primary text-primary-foreground text-[10px] font-medium leading-none`,children:e>99?`99+`:e})}function sm({icon:e,label:t,active:n,badge:r,beta:i,onClick:a,dragging:o,dropBefore:s,onDragStart:c,onDragOver:l,onDrop:u,onDragEnd:d}){return(0,J.jsxs)(`button`,{draggable:!0,onDragStart:c,onDragOver:l,onDrop:u,onDragEnd:d,onClick:a,className:V(`group relative flex items-center justify-center size-[38px] rounded-[9px] transition-colors shrink-0`,n?`bg-accent-wash text-primary shadow-[inset_2px_0_0_var(--accent)]`:`text-text-subtle hover:bg-surface-elevated hover:text-foreground`,o&&`opacity-40`,s&&`shadow-[inset_0_2px_0_var(--accent)]`),children:[(0,J.jsx)(e,{className:`size-[18px]`,strokeWidth:n?2.4:2}),r!=null&&r>0&&(0,J.jsx)(om,{count:r}),i&&(0,J.jsx)(`span`,{className:`absolute -top-0.5 -right-0.5 rounded-full bg-accent-wash px-1 text-[7px] font-bold uppercase leading-[1.4] tracking-wide text-primary shadow-sm`,children:`beta`}),(0,J.jsx)(`span`,{className:`pointer-events-none absolute left-[calc(100%+8px)] z-50 hidden can-hover:group-hover:block whitespace-nowrap rounded-md border border-border bg-surface-elevated px-2 py-1 text-xs font-medium text-foreground shadow-[0_4px_12px_rgba(0,0,0,.4)]`,children:t})]})}function cm({icon:e,label:t,onClick:n,active:r}){return(0,J.jsxs)(`button`,{onClick:n,className:V(`group relative flex items-center justify-center size-8 rounded-[7px] transition-colors shrink-0`,r?`text-primary bg-accent-wash`:`text-text-subtle hover:bg-surface-elevated hover:text-foreground`),children:[(0,J.jsx)(e,{className:`size-4`}),(0,J.jsx)(`span`,{className:`pointer-events-none absolute left-[calc(100%+8px)] z-50 hidden can-hover:group-hover:block whitespace-nowrap rounded-md border border-border bg-surface-elevated px-2 py-1 text-xs font-medium text-foreground shadow-[0_4px_12px_rgba(0,0,0,.4)]`,children:t})]})}var lm=(0,q.memo)(function({className:e}){let{activeProject:t}=U(Tc(e=>({activeProject:e.activeProject}))),n=B(e=>e.sidebarActiveTab),r=B(e=>e.setSidebarActiveTab),i=B(e=>e.sidebarTabOrder),a=B(e=>e.setSidebarTabOrder),o=B(e=>e.sidebarCollapsed),s=B(e=>e.toggleSidebar),c=B(e=>e.jiraEnabled),l=B(e=>e.version),u=cs(e=>e.contributions),d=zc(e=>t?.name?e.counts.get(t.name)??0:0),f=Cd(e=>e.unreadCount),p=X(io(t?.name)),m=(0,q.useMemo)(()=>bp(yp({jiraEnabled:c,contributions:u}),i),[u,c,i]),[h,g]=(0,q.useState)(null),[_,v]=(0,q.useState)(null),y=e=>{if(h&&h!==e){let t=m.map(e=>e.id),n=t.indexOf(h);if(n>=0){t.splice(n,1);let r=t.indexOf(e);t.splice(r<0?t.length:r,0,h),a(t)}}g(null),v(null)},[b,x]=(0,q.useState)(!1),S=(0,q.useRef)(null),[C,w]=(0,q.useState)(null);(0,q.useEffect)(()=>{if(!b||!S.current){w(null);return}let e=S.current.getBoundingClientRect();w({left:e.right+6,bottom:window.innerHeight-e.bottom})},[b]),(0,q.useEffect)(()=>{let e=()=>{Pe()||x(!0)};return window.addEventListener(`open-cloud-share`,e),()=>window.removeEventListener(`open-cloud-share`,e)},[]);let T=()=>am(l),E=e=>{o?(r(e),s()):n===e?s():r(e)};return(0,J.jsxs)(`div`,{className:V(`w-[52px] shrink-0 border-r border-border flex flex-col`,e),children:[(0,J.jsx)(`div`,{className:`flex-1 overflow-y-auto min-h-0 flex flex-col items-center gap-[3px] px-[3px] py-2 scrollbar-none`,children:m.map(e=>(0,J.jsx)(sm,{icon:e.icon,label:e.label,active:n===e.id,badge:e.id===`git`?d:e.id===`jira`?f:e.id===`history`?p:void 0,beta:e.beta,onClick:()=>E(e.id),dragging:h===e.id,dropBefore:_===e.id&&h!==e.id,onDragStart:t=>{g(e.id),t.dataTransfer.effectAllowed=`move`},onDragOver:t=>{t.preventDefault(),v(e.id)},onDrop:t=>{t.preventDefault(),y(e.id)},onDragEnd:()=>{g(null),v(null)}},e.id))}),(0,J.jsxs)(`div`,{className:`shrink-0 flex flex-col items-center gap-0.5 px-[3px] py-2 border-t border-border`,children:[(0,J.jsx)(xp,{expanded:!1}),(0,J.jsxs)(`button`,{ref:S,onClick:()=>x(!b),className:V(`group relative flex items-center justify-center size-8 rounded-[7px] transition-colors shrink-0`,b?`text-primary bg-primary/10`:`text-text-subtle hover:bg-surface-elevated hover:text-foreground`),children:[(0,J.jsx)(tn,{className:`size-4`}),(0,J.jsx)(`span`,{className:`pointer-events-none absolute left-[calc(100%+8px)] z-50 hidden can-hover:group-hover:block whitespace-nowrap rounded-md border border-border bg-surface-elevated px-2 py-1 text-xs font-medium text-foreground shadow-[0_4px_12px_rgba(0,0,0,.4)]`,children:`Cloud & Share`})]}),b&&C&&(0,$f.createPortal)((0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`fixed inset-0 z-40`,onClick:()=>x(!1)}),(0,J.jsx)(`div`,{className:`fixed z-50`,style:{left:C.left,bottom:C.bottom},children:(0,J.jsx)(em,{onClose:()=>x(!1)})})]}),document.body),(0,J.jsx)(cm,{icon:zt,label:`Report Bug`,onClick:T}),(0,J.jsx)(cm,{icon:Dr,label:`Settings`,active:n===`settings`,onClick:()=>E(`settings`)})]})]})});function um({onResize:e}){let t=(0,q.useRef)(!1);return(0,J.jsx)(`div`,{className:`absolute right-0 top-0 bottom-0 w-1 cursor-col-resize hover:bg-primary/30 active:bg-primary/50 transition-colors z-10`,onPointerDown:(0,q.useCallback)(e=>{e.preventDefault(),t.current=!0,e.currentTarget.setPointerCapture(e.pointerId),document.body.style.cursor=`col-resize`,document.body.style.userSelect=`none`},[]),onPointerMove:(0,q.useCallback)(n=>{t.current&&e(n.clientX)},[e]),onPointerUp:(0,q.useCallback)(e=>{t.current=!1,e.currentTarget.releasePointerCapture(e.pointerId),document.body.style.cursor=``,document.body.style.userSelect=``},[])})}function dm({onToggle:e}){return(0,J.jsx)(`button`,{onClick:e,title:`Toggle sidebar (⌘B)`,className:`w-[52px] shrink-0 flex items-center justify-center border-r border-border hover:bg-surface-elevated transition-colors`,children:(0,J.jsx)(`span`,{className:`text-sm font-extrabold text-primary leading-none tracking-tight`,children:`PPM`})})}var fm=(0,q.memo)(function(){let{activeProject:e}=U(Tc(e=>({activeProject:e.activeProject}))),t=B(e=>e.sidebarCollapsed),n=B(e=>e.sidebarWidth),r=B(e=>e.toggleSidebar),i=B(e=>e.setSidebarWidth),a=B(e=>e.sidebarActiveTab);return Bc(e?.name,a===`git`),t?(0,J.jsxs)(`aside`,{className:`hidden md:flex flex-col w-[52px] min-w-[52px] bg-rail border-r border-border`,children:[(0,J.jsx)(`button`,{onClick:r,title:`Expand sidebar (⌘B)`,className:`flex flex-col items-center justify-center gap-px h-[41px] border-b border-border text-primary hover:bg-surface-elevated transition-colors`,children:(0,J.jsx)(lr,{className:`size-4 text-text-secondary`})}),(0,J.jsx)(lm,{className:`flex-1 min-h-0`})]}):(0,J.jsxs)(`aside`,{className:`hidden md:flex flex-col bg-panel border-r border-border overflow-hidden relative`,style:{width:n,minWidth:200,maxWidth:600},children:[(0,J.jsxs)(`div`,{className:`flex h-[41px] border-b border-border shrink-0`,children:[(0,J.jsx)(dm,{onToggle:r}),(0,J.jsx)(`div`,{className:`flex-1 min-w-0 flex items-center px-1.5`,children:(0,J.jsx)(_p,{})})]}),(0,J.jsxs)(`div`,{className:`flex-1 min-h-0 flex`,children:[(0,J.jsx)(lm,{}),(0,J.jsx)(`div`,{className:`flex-1 min-w-0 flex flex-col`,children:(0,J.jsxs)(`div`,{className:`flex-1 overflow-y-auto min-h-0`,children:[a===`explorer`&&(e?(0,J.jsx)(Zc,{}):(0,J.jsx)(`div`,{className:`flex items-center justify-center h-24 p-4`,children:(0,J.jsx)(`p`,{className:`text-xs text-text-subtle text-center`,children:`Select a project to browse files`})})),a===`git`&&(0,J.jsx)(al,{metadata:{projectName:e?.name}}),a===`search`&&(0,J.jsx)(hd,{}),a===`history`&&(e?(0,J.jsx)(Mf,{variant:`sidebar`,projectName:e.name}):(0,J.jsx)(`div`,{className:`flex items-center justify-center h-24 p-4`,children:(0,J.jsx)(`p`,{className:`text-xs text-text-subtle text-center`,children:`Select a project to view chat history`})})),a===`teams`&&(0,J.jsx)(Qf,{}),a===`database`&&(0,J.jsx)(dd,{}),a===`tunnels`&&(0,J.jsx)(Cf,{}),a===`jira`&&(0,J.jsx)(Ld,{}),a===`ai-resources`&&(0,J.jsx)(yf,{}),a===`settings`&&(0,J.jsx)(Vu,{}),typeof a==`string`&&a.startsWith(`ext:`)&&(0,J.jsx)(yd,{viewId:a.slice(4),className:`h-full`})]})})]}),(0,J.jsx)(um,{onResize:i})]})}),pm=600,mm=null,hm=0,gm=null,_m=[],vm=!1,ym=new Set;function bm(){for(let e of ym)e()}function xm(){if(mm)return;let e=tt(),t=e?`?token=${encodeURIComponent(e)}`:``,n=new EventSource(`/api/system/resources/stream${t}`);n.addEventListener(`snapshot`,e=>{try{let t=JSON.parse(e.data);gm=t,_m=[..._m,t],_m.length>pm&&(_m=_m.slice(-pm)),vm=!0,bm()}catch{}}),n.onerror=()=>{vm=!1,mm&&=(mm.close(),null),bm(),hm>0&&setTimeout(()=>{!mm&&hm>0&&xm()},5e3)},n.onopen=()=>{vm=!0,bm()},mm=n}function Sm(){mm&&(mm.close(),mm=null,vm=!1,bm())}function Cm(){let[,e]=(0,q.useState)(0),t=(0,q.useRef)(!0),n=(0,q.useCallback)(()=>{t.current&&e(e=>e+1)},[]);return(0,q.useEffect)(()=>(t.current=!0,ym.add(n),hm++,hm===1&&xm(),()=>{t.current=!1,ym.delete(n),hm--,hm===0&&Sm()}),[n]),{latest:gm,history:_m,isConnected:vm}}function wm(e){return e>80?`text-error`:e>50?`text-warning`:`text-success`}var Tm=(0,q.memo)(function({compact:e=!1}){let{latest:t,isConnected:n}=Cm(),r=W(e=>e.openTab),i=Me(),a=()=>{r({type:`system-monitor`,title:`System Monitor`,projectId:null,closable:!0})};if(!n||!t)return e?null:(0,J.jsxs)(`button`,{onClick:a,className:`flex items-center gap-1.5 px-2 py-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors w-full`,children:[(0,J.jsx)(an,{className:`size-3 opacity-50`}),(0,J.jsx)(`span`,{className:`opacity-50`,children:`Connecting...`})]});let{cpu:o,ramMB:s,processCount:c}=t.total,l=s<1024?`${s.toFixed(0)}M`:`${(s/1024).toFixed(1)}G`;return e?(0,J.jsxs)(`button`,{onClick:a,className:`flex items-center gap-2 px-1 rounded-sm hover:bg-accent/15 transition-colors cursor-pointer`,title:`Open System Monitor`,children:[(0,J.jsxs)(`span`,{className:wm(o),children:[`CPU `,o.toFixed(0),`%`]}),(0,J.jsxs)(`span`,{className:`text-text-secondary`,children:[`MEM `,l]})]}):(0,J.jsxs)(`button`,{onClick:a,className:`flex items-center gap-1.5 px-2 py-1 text-[10px] hover:bg-surface-hover transition-colors w-full cursor-pointer`,title:`Open System Monitor`,children:[(0,J.jsx)(an,{className:V(`size-3`,wm(o))}),(0,J.jsx)(`span`,{className:wm(o),children:i?`${o.toFixed(0)}%`:`CPU ${o.toFixed(1)}%`}),(0,J.jsx)(`span`,{className:`text-text-subtle`,children:`|`}),(0,J.jsx)(`span`,{className:`text-text-secondary`,children:s<1024?`${s.toFixed(0)}MB`:`${(s/1024).toFixed(1)}GB`}),!i&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`span`,{className:`text-text-subtle`,children:`|`}),(0,J.jsxs)(`span`,{className:`text-text-subtle`,children:[c,` proc`]})]})]})}),Em=(0,q.memo)(function(){let e=B(e=>e.themeStyle),t=B(e=>e.themeMode),n=B(e=>e.customThemeId),r=B(e=>e.customThemes),i=B(e=>e.setThemeStyle),a=B(e=>e.setThemeMode),o=B(e=>e.setCustomTheme),s=xt(e,t,r,n),c=e=>{let t=bt[e];t&&(i(t.style),a(t.mode))};return(0,J.jsxs)(Zs,{children:[(0,J.jsx)(Qs,{asChild:!0,children:(0,J.jsxs)(`button`,{title:`Theme`,"aria-label":`Theme`,className:`flex items-center gap-1 px-1 rounded-sm transition-colors hover:bg-accent/40 hover:text-text-primary`,children:[(0,J.jsx)(sr,{className:`size-[11px]`}),(0,J.jsx)(`span`,{className:`truncate max-w-[90px]`,children:s.name})]})}),(0,J.jsxs)($s,{side:`top`,align:`end`,className:`w-56`,children:[(0,J.jsx)(tc,{children:`Theme`}),yt.map(e=>{let t=bt[e];if(!t)return null;let n=s.id===e;return(0,J.jsxs)(ec,{onClick:()=>c(e),className:`gap-2`,children:[(0,J.jsx)(Du,{swatch:t.swatch}),(0,J.jsx)(`span`,{className:`flex-1 truncate`,children:t.name}),(0,J.jsx)(xe,{className:V(`size-4 shrink-0`,n?`opacity-100`:`opacity-0`)})]},e)}),r.length>0&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(tc,{children:`Imported`}),r.map(t=>{let r=e===`custom`&&n===t.id;return(0,J.jsxs)(ec,{onClick:()=>o(t.id),className:`gap-2`,children:[(0,J.jsx)(Du,{swatch:t.swatch}),(0,J.jsx)(`span`,{className:`flex-1 truncate`,children:t.name}),(0,J.jsx)(xe,{className:V(`size-4 shrink-0`,r?`opacity-100`:`opacity-0`)})]},t.id)})]})]})]})}),Dm=`https://raw.githubusercontent.com/hienlh/ppm/main/CHANGELOG.md`;function Om(e,t){let n=e.split(`.`).map(e=>parseInt(e,10)||0),r=t.split(`.`).map(e=>parseInt(e,10)||0);for(let e=0;e<3;e++){let t=(n[e]??0)-(r[e]??0);if(t!==0)return t}return 0}var km=/^##\s*\[(\d+\.\d+\.\d+)\]\s*(?:-\s*(.+))?\s*$/;function Am(e){let t=e.split(/\r?\n/),n=[],r=null,i=[],a=()=>{r&&(r.body=i.join(`
|
|
20
|
-
`).trim(),n.push(r)),i.length=0};for(let e of t){let t=e.match(km);t?(a(),r={version:t[1],date:(t[2]??``).trim(),body:``}):r&&i.push(e)}return a(),n}function jm(e,t){return Am(e).filter(e=>Om(e.version,t)>0)}async function Mm(){let e=await fetch(`${Dm}?t=${Date.now()}`,{cache:`no-store`});if(!e.ok)throw Error(`CHANGELOG fetch failed (${e.status})`);return e.text()}async function Nm(e){return jm(await Mm(),e)}async function Pm(e=10){return Am(await Mm()).slice(0,e)}var Fm=6e4,Im=`ppm-upgrade-dismissed-`,Lm=`https://github.com/hienlh/ppm/releases`,Rm=`ppm-upgrade-test`;(function(){if(typeof window>`u`)return;let e=new URLSearchParams(window.location.search);if(!e.has(`ppm_upgrade_test`))return;let t=e.get(`ppm_upgrade_test`);t===`off`||t===`0`||t===`false`?sessionStorage.removeItem(Rm):sessionStorage.setItem(Rm,t||`1`)})();function zm(){if(typeof window>`u`)return null;let e=sessionStorage.getItem(Rm);return e===null?null:e===`1`?``:e}function Bm(e){let[t=0,n=0]=e.split(`.`).map(e=>parseInt(e,10)||0);return`${t}.${n+1}.0`}async function Vm(){if(`caches`in window){let e=await caches.keys();await Promise.all(e.map(e=>caches.delete(e)))}window.location.reload()}async function Hm(){let e=Date.now()+6e4;for(;Date.now()<e;){try{if((await fetch(`/api/health`,{cache:`no-store`})).ok)break}catch{}await new Promise(e=>setTimeout(e,2e3))}await Vm()}function Um(e){if(e instanceof TypeError)return!0;let t=e?.message??``;return/fetch|network|failed to fetch|load failed/i.test(t)?!0:/HTTP 5(0[234]|2\d)\b/.test(t)}function Wm({align:e=`right`}){let t=B(e=>e.version),[n,r]=(0,q.useState)(null),[i,a]=(0,q.useState)(null),[o,s]=(0,q.useState)(!1),[c,l]=(0,q.useState)(!1),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)(!1),[g,_]=(0,q.useState)(null),[v,y]=(0,q.useState)(!1);(0,q.useEffect)(()=>{let e;async function t(){try{let e=await R.get(`/api/upgrade`);r(e.currentVersion),e.availableVersion?(a(e.availableVersion),h(!!sessionStorage.getItem(Im+e.availableVersion))):a(null)}catch{}}return t(),e=setInterval(t,Fm),()=>clearInterval(e)},[]);let b=n??t,x=zm(),S=x!==null,C=x||(b?Bm(b):`9.9.9`),w=i&&b&&Om(i,b)>0?i:null,T=w??(S?C:null),E=!!T&&!m;(0,q.useEffect)(()=>{!o||!b||(y(!0),(E?Nm(S?`0.0.0`:b):Pm()).then(_).catch(()=>_([])).finally(()=>y(!1)))},[o,b,E,S]);let D=(0,q.useCallback)(()=>{l(!1),d(!0),p(!0),Hm()},[]),O=(0,q.useCallback)(async()=>{l(!0),s(!1);try{let e=await R.post(`/api/upgrade/apply`);e.restart?D():(I.info(e.message||`Upgrade installed. Restart PPM manually.`),l(!1),i&&sessionStorage.setItem(Im+i,`1`),h(!0))}catch(e){Um(e)?D():(I.error(`Upgrade failed: ${e.message}`),l(!1))}},[i,D]),k=(0,q.useCallback)(()=>{i&&sessionStorage.setItem(Im+i,`1`),h(!0),s(!1)},[i]);return!b&&!E?null:u?(0,J.jsx)(`button`,{onClick:()=>{p(!0),Hm()},disabled:f,className:`flex items-center gap-1 px-1 rounded-sm text-success hover:brightness-110 transition-[filter] disabled:opacity-70`,title:f?`Applying update — reconnecting to the server…`:`Reload to apply the update`,children:f?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(K,{className:`size-3 animate-spin`}),` Updating, reconnecting…`]}):(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(br,{className:`size-3`}),` Reload`]})}):c?(0,J.jsxs)(`span`,{className:`flex items-center gap-1 px-1 text-success`,children:[(0,J.jsx)(K,{className:`size-3 animate-spin`}),` Updating…`]}):(0,J.jsxs)(`div`,{className:`relative shrink-0`,children:[(0,J.jsxs)(`button`,{onClick:()=>b&&s(e=>!e),title:E?`Update available: v${T}`:`PPM v${b} — release notes`,className:V(`flex items-center gap-1 px-1 rounded-sm transition-colors`,E?`text-success hover:brightness-110`:`hover:text-text`),children:[E&&(0,J.jsx)(Xt,{className:`size-3`}),(0,J.jsx)(`span`,{children:E?`New version · v${T}`:`v${b}`})]}),o&&b&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`fixed inset-0 z-40`,onClick:()=>s(!1)}),(0,J.jsxs)(`div`,{className:V(`absolute bottom-full mb-2 w-72 z-50 rounded-[var(--rad-sm)] border border-border popover-solid shadow-[var(--shadow-panel)] overflow-hidden font-sans`,e===`left`?`left-0`:`right-0`),children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2.5 px-3 py-3 border-b border-border-soft`,children:[(0,J.jsx)(`span`,{className:V(`flex items-center justify-center size-[26px] shrink-0 rounded-lg`,E?`bg-success/20`:`bg-accent/15`),children:E?(0,J.jsx)(Xt,{className:`size-[15px] text-success`}):(0,J.jsx)(Ln,{className:`size-[15px] text-accent`})}),(0,J.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`div`,{className:`text-[13px] font-semibold text-text leading-tight`,children:E?`Update available`:`Release notes`}),(0,J.jsx)(`div`,{className:`text-[11px] text-text-3 font-mono mt-0.5`,children:E?`v${b} → v${T}`:`PPM v${b}`})]})]}),(0,J.jsx)(`div`,{className:`max-h-56 overflow-y-auto overflow-x-hidden px-3 py-2.5 text-[12px] text-text-2 leading-relaxed break-words`,children:v?(0,J.jsxs)(`span`,{className:`flex items-center gap-2 text-text-3`,children:[(0,J.jsx)(K,{className:`size-3.5 animate-spin`}),` Loading release notes…`]}):g&&g.length>0?(0,J.jsx)(`div`,{className:`space-y-2.5`,children:g.map(e=>(0,J.jsx)(Km,{version:e.version,body:e.body},e.version))}):(0,J.jsx)(`span`,{className:`text-text-3`,children:E?`A new version of PPM is available. Open the release notes for details.`:`No release notes available right now.`})}),(0,J.jsxs)(`div`,{className:`flex flex-col gap-1.5 px-3 pb-3`,children:[E&&(0,J.jsxs)(`button`,{onClick:S&&!w?()=>{I.info(`Test mode — no real update to install`),s(!1)}:O,className:`flex items-center justify-center gap-1.5 w-full py-2 rounded-lg bg-success text-[12.5px] font-bold text-[#04130c] hover:brightness-105 transition-[filter]`,children:[(0,J.jsx)(Xe,{className:`size-3.5`}),` Update now`]}),(0,J.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,J.jsxs)(`a`,{href:Lm,target:`_blank`,rel:`noopener noreferrer`,className:`flex-1 flex items-center justify-center gap-1.5 py-2 rounded-lg border border-border bg-panel text-xs font-medium text-text-2 hover:text-text transition-colors`,children:[(0,J.jsx)(un,{className:`size-3`}),` Release notes`]}),E&&(0,J.jsx)(`button`,{onClick:k,className:`px-3 py-2 rounded-lg border border-border text-xs text-text-3 hover:text-text-2 transition-colors`,children:`Later`})]})]})]})]})]})}function Gm(e){return e.replace(/\*\*(.+?)\*\*/g,`$1`).replace(/`([^`]+)`/g,`$1`)}function Km({version:e,body:t}){let n=t.split(`
|
|
21
|
-
`);return(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{className:`text-[11px] font-mono font-semibold text-text mb-1`,children:[`v`,e]}),(0,J.jsx)(`div`,{className:`space-y-1`,children:n.map((e,t)=>{let n=e.trim();return n?n.startsWith(`### `)?(0,J.jsx)(`div`,{className:`text-[10px] font-semibold uppercase tracking-wide text-text-3 pt-1`,children:n.slice(4)},t):n.startsWith(`- `)?(0,J.jsxs)(`div`,{className:`flex gap-1.5 text-text-2`,children:[(0,J.jsx)(`span`,{className:`text-text-3 shrink-0`,children:`•`}),(0,J.jsx)(`span`,{className:`min-w-0 break-words`,children:Gm(n.slice(2))})]},t):(0,J.jsx)(`div`,{className:`text-text-2 break-words`,children:Gm(n)},t):null})})]})}function qm(e,t){return e?e.tabs.filter(e=>!e.projectId||!t||e.projectId===t).length:0}var Jm=(0,q.memo)(function(){let e=cs(e=>e.statusBarItems),t=e.filter(e=>e.alignment===`left`).sort((e,t)=>t.priority-e.priority),n=e.filter(e=>e.alignment===`right`).sort((e,t)=>t.priority-e.priority);return(0,J.jsxs)(`div`,{className:`hidden md:flex items-center justify-between h-[26px] px-3.5 bg-panel border-t border-border-soft text-[11px] font-mono text-text-3 select-none shrink-0`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-3 min-w-0`,children:[(0,J.jsx)(Ym,{}),t.map(e=>(0,J.jsx)(Zm,{item:e},e.id)),(0,J.jsx)(Xm,{})]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-3 min-w-0`,children:[(0,J.jsx)(Tm,{compact:!0}),n.map(e=>(0,J.jsx)(Zm,{item:e},e.id)),(0,J.jsx)(Em,{}),(0,J.jsx)(Wm,{})]})]})}),Ym=(0,q.memo)(function(){let e=U(e=>e.activeProject?.name??null),t=zc(t=>e?t.meta.get(e):void 0);if(!t?.branch)return null;let{branch:n,ahead:r,behind:i,tracking:a}=t,o=!!a&&r===0&&i===0;return(0,J.jsxs)(`span`,{className:`flex items-center gap-2 min-w-0 shrink-0`,children:[(0,J.jsxs)(`span`,{className:`flex items-center gap-1 text-primary min-w-0`,title:a?`Tracking ${a}`:`No upstream`,children:[(0,J.jsx)(kn,{className:`size-3 shrink-0`}),(0,J.jsx)(`span`,{className:`truncate max-w-[140px]`,children:n})]}),(r>0||i>0)&&(0,J.jsxs)(`span`,{className:`flex items-center gap-1.5 shrink-0`,children:[r>0&&(0,J.jsxs)(`span`,{className:`flex items-center gap-0.5`,children:[(0,J.jsx)(Pt,{className:`size-3`}),r]}),i>0&&(0,J.jsxs)(`span`,{className:`flex items-center gap-0.5`,children:[(0,J.jsx)(Mt,{className:`size-3`}),i]})]}),o&&(0,J.jsxs)(`span`,{className:`flex items-center gap-1 text-success shrink-0`,children:[(0,J.jsx)(xe,{className:`size-3`}),`synced`]})]})}),Xm=(0,q.memo)(function(){let e=H(e=>e.dock.visible),t=qm(H(e=>e.panels[at]),U(e=>e.activeProject?.name??null));return(0,J.jsxs)(`button`,{onClick:()=>H.getState().toggleDock(),title:e?`Hide panel`:`Show panel`,"aria-label":e?`Hide panel`:`Show panel`,className:V(`flex items-center gap-1 px-1 rounded-sm transition-colors hover:bg-accent/15`,e?`text-primary`:`text-text-subtle hover:text-text-primary`),children:[(0,J.jsx)(cr,{className:`size-[11px]`}),t>0&&(0,J.jsx)(`span`,{children:t})]})}),Zm=(0,q.memo)(function({item:e}){let t=(0,J.jsx)(`button`,{className:`truncate px-1 rounded-sm transition-colors ${e.command?`hover:bg-accent/15 hover:text-text-primary cursor-pointer`:`cursor-default`}`,onClick:()=>{e.command&&window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:e.command}}))},children:e.text});return e.tooltip?(0,J.jsxs)(Qr,{children:[(0,J.jsx)($r,{asChild:!0,children:t}),(0,J.jsx)(ei,{side:`top`,className:`text-xs`,children:e.tooltip})]}):t});function Qm(e,t,n,r,i){let a=r.trim().toLowerCase(),o=e=>!a||e.title.toLowerCase().includes(a)||e.type.toLowerCase().includes(a);if(i?.sortMode===`recent`){let t=i.recency,n=e=>t?.get(e.id)??2**53-1,r=e.filter(o).sort((e,t)=>n(e)-n(t));return{groups:r.length?[{panelId:`__recent__`,label:``,tabs:r}]:[],total:r.length}}let s=new Map;for(let r of e){if(!o(r))continue;let e=t[r.id]??n[0]??`__unknown__`;(s.get(e)??s.set(e,[]).get(e)).push(r)}let c=[];return(n.length>0?n:[...s.keys()]).forEach((e,t)=>{let n=s.get(e);!n||n.length===0||c.push({panelId:e,label:`Panel ${t+1}`,tabs:n})}),{groups:c,total:c.reduce((e,t)=>e+t.tabs.length,0)}}var $m=`ppm:tab-sort-mode`;function eh(){try{return localStorage.getItem($m)===`recent`?`recent`:`default`}catch{return`default`}}function th({open:e,onClose:t,onOpenPalette:n,tabs:r,tabPanelMap:i,panelOrder:a,activeTabId:o,projectColor:s,onTabLongPress:c,recency:l,sessionTagMap:u}){let[d,f]=(0,q.useState)(``),p=X(e=>e.notifications),m=ds(e=>e.sessions),[h,g]=(0,q.useState)(eh),_=(0,q.useCallback)(e=>{g(e);try{localStorage.setItem($m,e)}catch{}},[]),{groups:v,total:y}=Qm(r,i,a,d,{sortMode:h,recency:l}),b=(0,q.useRef)(null),x=(0,q.useCallback)(e=>{c&&(b.current=setTimeout(()=>c(e),400))},[c]),S=(0,q.useCallback)(()=>{b.current&&=(clearTimeout(b.current),null)},[]);function C(e){if(H.getState().setActiveTab(e.id,i[e.id]),e.type===`chat`){let t=e.metadata?.sessionId;t&&X.getState().clearForSession(t)}t()}function w(e,t){t.stopPropagation(),H.getState().closeTab(e.id,i[e.id])}function T(){t(),n()}return(0,J.jsxs)(Ae,{open:e,onClose:t,className:`max-h-[72vh] flex flex-col`,children:[(0,J.jsxs)(`div`,{className:`shrink-0 flex items-center gap-2 pl-4 pr-3 pt-1 pb-2.5`,children:[(0,J.jsx)(`span`,{className:`text-[13px] font-semibold text-text-primary`,children:`Open Tabs`}),(0,J.jsx)(`span`,{className:`px-1.5 h-[18px] inline-flex items-center rounded-md border border-border bg-surface-elevated text-[10px] font-mono text-text-secondary`,children:r.length}),(0,J.jsx)(`div`,{className:`flex-1`}),(0,J.jsx)(`div`,{className:`flex items-center gap-0.5 p-0.5 rounded-lg bg-background border border-border`,children:[[`default`,`Default`],[`recent`,`Recent`]].map(([e,t])=>(0,J.jsx)(`button`,{onClick:()=>_(e),"aria-pressed":h===e,className:V(`h-7 px-2.5 rounded-md text-[11px] font-medium transition-colors select-none`,h===e?`bg-primary/10 text-primary`:`text-text-secondary active:bg-surface-elevated`),children:t},e))}),(0,J.jsx)(`button`,{onClick:T,title:`New tab`,"aria-label":`New tab`,className:`flex items-center justify-center size-8 rounded-full border border-dashed border-border text-text-subtle active:bg-surface-elevated`,children:(0,J.jsx)(Ze,{className:`size-4`})})]}),(0,J.jsx)(`div`,{className:`shrink-0 px-3 pb-2`,children:(0,J.jsxs)(`div`,{className:`flex items-center gap-2 h-10 px-3 rounded-xl bg-background border border-border`,children:[(0,J.jsx)(Ge,{className:`size-4 text-text-subtle shrink-0`}),(0,J.jsx)(`input`,{value:d,onChange:e=>f(e.target.value),placeholder:`Filter tabs...`,className:`flex-1 bg-transparent outline-none text-text-primary placeholder:text-text-subtle`,style:{fontSize:16}})]})}),(0,J.jsx)(`div`,{className:`flex-1 min-h-0 overflow-y-auto overscroll-contain px-2 pb-2`,children:y===0?(0,J.jsx)(`p`,{className:`text-center text-[13px] text-text-subtle py-6`,children:`No tabs match`}):v.map(e=>(0,J.jsxs)(`div`,{className:`mb-1`,children:[e.label&&(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 px-2 pt-2 pb-1`,children:[(0,J.jsx)(Ke,{className:`size-3 text-text-subtle`}),(0,J.jsx)(`span`,{className:`text-[11px] font-semibold uppercase tracking-[0.05em] text-text-subtle`,children:e.label}),(0,J.jsx)(`span`,{className:`text-[10px] font-mono text-text-subtle`,children:e.tabs.length})]}),e.tabs.map(e=>{let t=Ys(e.type),n=e.id===o,r=e.type===`chat`?e.metadata?.sessionId:void 0,i=r?u[r]?.color:void 0,a=r?p.get(r):void 0,c=a&&a.count>0?a.type:null,l=!!a?.manual,d=r?m.has(r):!1,f=i??(e.projectId&&s?s:void 0);return(0,J.jsxs)(`button`,{onClick:()=>C(e),onTouchStart:()=>x(e.id),onTouchEnd:S,onTouchMove:S,onContextMenu:e=>e.preventDefault(),className:V(`relative flex items-center gap-2.5 w-full h-11 rounded-lg pl-3.5 pr-2 transition-colors`,n?`bg-primary/10`:`active:bg-surface-elevated`),children:[(0,J.jsx)(`span`,{"aria-hidden":!0,className:`absolute left-0 top-2 bottom-2 w-[3px] rounded-r-sm`,style:{backgroundColor:f??`transparent`}}),(0,J.jsxs)(`span`,{className:V(`relative shrink-0`,d&&`text-warning`),children:[(0,J.jsx)(t,{className:V(`size-4`,d?void 0:n?`text-primary`:`text-text-secondary`)}),d?(0,J.jsxs)(`span`,{"aria-hidden":!0,className:`absolute inset-0 flex items-center justify-center gap-[1.5px]`,children:[(0,J.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`}),(0,J.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`,style:{animationDelay:`0.15s`}}),(0,J.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`,style:{animationDelay:`0.3s`}})]}):c&&(!n||l)?(0,J.jsx)(`span`,{className:V(`absolute -top-1 -right-1 size-2 rounded-full`,eo(c))}):null]}),(0,J.jsx)(`span`,{className:V(`flex-1 text-left text-sm font-medium truncate`,n?`text-primary`:`text-text-primary`),children:e.title}),n&&(0,J.jsx)(`span`,{className:`size-1.5 rounded-full bg-primary shrink-0`}),e.closable&&(0,J.jsx)(`span`,{role:`button`,tabIndex:0,onClick:t=>w(e,t),className:`flex items-center justify-center size-8 rounded-lg text-text-subtle active:bg-surface-elevated shrink-0`,children:(0,J.jsx)(Qe,{className:`size-4`})})]},e.id)})]},e.panelId))})]})}function nh({onMenuPress:e,onProjectsPress:t}){let n=H(e=>e.focusedPanelId),r=H(e=>e.panels),i=H(e=>e.grid),a=H(e=>e.dock),o=H(e=>e.dockExpanded),s=Me(),c=H(e=>e.currentProject),{tabs:l,tabPanelMap:u}=(0,q.useMemo)(()=>{let e=i.flat(),t=[],n={};for(let i of e){let e=r[i];if(e)for(let r of e.tabs)r.projectId&&c&&r.projectId!==c||(t.push(r),n[r.id]=i)}return{tabs:t,tabPanelMap:n}},[r,i,c]),d=(0,q.useMemo)(()=>{let e=e=>typeof e.metadata?.lastActiveAt==`number`?e.metadata.lastActiveAt:-1,t=new Map;return[...l].filter(t=>e(t)>=0).sort((t,n)=>e(n)-e(t)).forEach((e,n)=>t.set(e.id,n)),t},[l]),f=i.flat(),p=f.includes(n)?n:f[0],m=(p?r[p]?.activeTabId:null)??null,h=X(e=>e.notifications),g=xo(e=>e.selection),[_,v]=(0,q.useState)({}),[y,b]=(0,q.useState)(null),[x,S]=(0,q.useState)(!1),[C,w]=(0,q.useState)(null),[T,E]=(0,q.useState)(``),D=l.find(e=>e.id===m)??null,O=r[at],k=qm(O,c),A=y?l.find(e=>e.id===y):null,ee=r[y?u[y]??n:n]?.tabs??[],te=y?ee.findIndex(e=>e.id===y):-1,ne=A?.type===`chat`?A.metadata?.sessionId:void 0,j=ne?(h.get(ne)?.count??0)>0:!1,M=A?.metadata?.filePath,re=A?.metadata?.projectName,ie=g!=null&&!!re&&g.projectName===re&&g.filePath!==M;function ae(e){b(null),w(e.id),E(e.title)}async function oe(){let e=l.find(e=>e.id===C),t=e?.metadata?.sessionId,n=T.trim();if(!e||!t||!n||!c){w(null);return}try{await R.patch(`${L(c)}/chat/sessions/${t}`,{title:n}),H.getState().updateTab(e.id,{title:n})}catch{}w(null)}function se(e){let t=u[e]??n,r=H.getState().panels[t]?.tabs??[];for(let n of r)n.id!==e&&n.closable&&H.getState().closeTab(n.id,t);b(null)}function ce(e){let t=u[e]??n,r=H.getState().panels[t]?.tabs??[],i=r.findIndex(t=>t.id===e);for(let e=i+1;e<r.length;e++)r[e].closable&&H.getState().closeTab(r[e].id,t);b(null)}function N(e){let t=e.metadata?.filePath,n=e.metadata?.projectName;if(!t||!n)return;let r=e.metadata?.unsavedContent;xo.getState().setSelection({filePath:t,projectName:n,dirtyContent:r,label:rt(t)}),b(null)}async function le(e){let t=e.metadata?.filePath,n=e.metadata?.projectName,r=xo.getState().selection;if(!r||!t||!n)return;let i=e.metadata?.unsavedContent;try{await Co({path:r.filePath,dirtyContent:r.dirtyContent},{path:t,dirtyContent:i},n),xo.getState().clearSelection()}catch(e){I.error(e instanceof Error?e.message:`Compare failed`)}b(null)}function ue(e){let t=e.metadata?.sessionId,n=e.metadata?.projectName;t&&n&&X.getState().markUnread(t,n,e.title),b(null)}let[de,fe]=(0,q.useState)(null);function P(e,t){let n=e.metadata?.filePath,r=e.metadata?.projectName;switch(t){case`copy-path`:n&&ks(n);break;case`copy-full-path`:if(n){let e=r?U.getState().projects.find(e=>e.name===r):null;ks(e?`${e.path}/${n}`:n)}break;case`download`:n&&r&&Es(r,n);break;case`rename`:case`delete`:n&&fe({action:t,tabId:e.id,node:{name:e.title,path:n,type:`file`}});break}b(null)}let{activeProject:pe}=U.getState(),{activeProject:me,projects:he,customOrder:ge}=U(Tc(e=>({activeProject:e.activeProject,projects:e.projects,customOrder:e.customOrder}))),{projectTags:_e,loadTags:ve}=Xa(me?.name),ye=(0,q.useCallback)(async(e,t)=>{if(me?.name){try{if(t!==null){await R.patch(`${L(me.name)}/chat/sessions/${e}/tag`,{tagId:t});let n=_e.find(e=>e.id===t);n&&v(t=>({...t,[e]:{id:n.id,name:n.name,color:n.color}}))}else await R.del(`${L(me.name)}/chat/sessions/${e}/tag`),v(t=>{let n={...t};return delete n[e],n});ve()}catch{}b(null)}},[me?.name,_e,ve]),be=l.filter(e=>e.type===`chat`&&e.metadata?.sessionId).map(e=>e.metadata.sessionId);(0,q.useEffect)(()=>{!me?.name||be.length===0||R.get(`${L(me.name)}/chat/sessions?limit=50`).then(e=>{let t={};for(let n of e.sessions)n.tag&&(t[n.id]=n.tag);v(t)}).catch(()=>{})},[me?.name,be.join(`,`)]);let Se=lt(he,ge??null),Ce=Se.map(e=>e.name),we=Se.findIndex(e=>e.name===me?.name),Te=me?dp(me.color,we>=0?we:0):`#4f86c6`,Ee=D?Ys(D.type):null;return(0,J.jsxs)(`nav`,{className:`fixed bottom-0 left-0 right-0 md:hidden bg-background border-t border-border z-40 select-none`,children:[(0,J.jsxs)(`div`,{className:`flex items-center h-12`,children:[(0,J.jsxs)(`div`,{className:`flex items-center shrink-0 border-r border-border`,children:[(0,J.jsx)(`button`,{onClick:e,className:`flex items-center justify-center size-12 shrink-0 text-text-secondary`,children:(0,J.jsx)(Qn,{className:`size-5`})}),(0,J.jsx)(`div`,{className:`w-px self-stretch bg-border shrink-0`}),(0,J.jsx)(`button`,{onClick:t,className:`flex items-center justify-center size-12 shrink-0 text-text-secondary`,title:`Switch project`,children:me?(0,J.jsx)(pp,{name:me.name,color:Te,image:me.image,size:28,allNames:Ce}):(0,J.jsx)(Wn,{className:`size-5`})}),(0,J.jsx)(`div`,{className:`w-px self-stretch bg-border shrink-0`}),(0,J.jsxs)(`button`,{onClick:()=>H.getState().toggleDock(),title:a.visible?`Hide panel`:`Show panel`,"aria-label":a.visible?`Hide panel`:`Show panel`,className:V(`relative flex items-center justify-center size-12 shrink-0 transition-colors`,a.visible?`text-primary bg-primary/10`:`text-text-secondary`),children:[(0,J.jsx)(Ir,{className:`size-5`}),k>0&&(0,J.jsx)(`span`,{"aria-hidden":!0,className:`absolute top-1.5 right-1.5 size-[7px] rounded-full ring-[1.5px] ring-background`,style:{backgroundColor:`var(--color-success)`}})]}),(0,J.jsx)(`div`,{className:`w-px self-stretch bg-border shrink-0`}),(0,J.jsx)(`button`,{onClick:()=>ls(),title:`New tab`,"aria-label":`New tab`,className:`flex items-center justify-center size-12 shrink-0 text-text-secondary`,children:(0,J.jsx)(Ze,{className:`size-5`})})]}),D&&Ee?(0,J.jsxs)(`button`,{onClick:()=>S(!0),className:`flex-1 min-w-0 flex items-center gap-2 h-12 px-3 border-t-2 border-primary bg-surface`,children:[(0,J.jsx)(Ee,{className:`size-4 text-primary shrink-0`}),(0,J.jsx)(`span`,{className:`flex-1 min-w-0 truncate text-left text-xs font-medium text-primary`,children:D.title}),(0,J.jsx)(`span`,{className:`px-1.5 h-[18px] inline-flex items-center rounded-md border border-border bg-surface-elevated text-[10px] font-mono text-text-secondary shrink-0`,children:l.length}),(0,J.jsx)(Wt,{className:`size-3.5 text-text-subtle shrink-0`})]}):(0,J.jsxs)(`button`,{onClick:()=>ls(),className:`flex-1 flex items-center gap-1.5 h-12 px-3 text-text-secondary text-xs`,children:[(0,J.jsx)(Ze,{className:`size-4`}),` New Tab`]})]}),(0,J.jsx)(th,{open:x,onClose:()=>S(!1),onOpenPalette:()=>ls(),tabs:l,tabPanelMap:u,panelOrder:i.flat(),activeTabId:m,projectColor:me?Te:null,onTabLongPress:e=>b(e),recency:d,sessionTagMap:_}),(0,J.jsxs)(Ae,{open:!!A,onClose:()=>b(null),className:`select-none`,children:[(0,J.jsx)(`div`,{className:`px-3 py-2 text-xs text-text-secondary border-b border-border truncate`,children:A?.title}),ne&&(0,J.jsxs)(`button`,{onClick:()=>ae(A),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(De,{className:`size-4`}),` Rename`]}),A?.type===`editor`&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`button`,{onClick:()=>P(A,`copy-path`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(rn,{className:`size-4`}),` Copy Path`]}),(0,J.jsxs)(`button`,{onClick:()=>P(A,`copy-full-path`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(rn,{className:`size-4`}),` Copy Full Path`]}),(0,J.jsxs)(`button`,{onClick:()=>P(A,`download`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(Xe,{className:`size-4`}),` Download`]}),(0,J.jsxs)(`button`,{onClick:()=>P(A,`rename`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(De,{className:`size-4`}),` Rename`]}),(0,J.jsxs)(`button`,{onClick:()=>P(A,`delete`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-error active:bg-surface-elevated`,children:[(0,J.jsx)(Rr,{className:`size-4`}),` Delete`]}),(0,J.jsx)(`div`,{className:`h-px bg-border mx-2`}),(0,J.jsxs)(`button`,{onClick:()=>N(A),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(Ke,{className:`size-4`}),` Select for Compare`]}),ie&&(0,J.jsxs)(`button`,{onClick:()=>le(A),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(Ke,{className:`size-4`}),` Compare with Selected (`,g.label,`)`]}),(0,J.jsx)(`div`,{className:`h-px bg-border mx-2`})]}),ne&&!j&&(0,J.jsxs)(`button`,{onClick:()=>ue(A),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(Qt,{className:`size-4 fill-primary text-primary`}),` Mark as unread`]}),ne&&_e.length>0&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`div`,{className:`px-3 pt-2 pb-1 text-xs text-text-secondary flex items-center gap-2`,children:[(0,J.jsx)(Pr,{className:`size-3.5`}),` Set Tag`]}),_e.map(e=>(0,J.jsxs)(`button`,{onClick:()=>ye(ne,e.id),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(`span`,{className:`size-2.5 rounded-full shrink-0`,style:{backgroundColor:e.color}}),e.name,_[ne]?.id===e.id&&(0,J.jsx)(xe,{className:`size-3.5 ml-auto`})]},e.id)),_[ne]&&(0,J.jsx)(`button`,{onClick:()=>ye(ne,null),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:`Remove tag`}),(0,J.jsx)(`div`,{className:`h-px bg-border mx-2`})]}),A?.closable&&(0,J.jsxs)(`button`,{onClick:()=>{H.getState().closeTab(y),b(null)},className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(Qe,{className:`size-4`}),` Close`]}),ee.some(e=>e.id!==y&&e.closable)&&(0,J.jsxs)(`button`,{onClick:()=>se(y),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(jr,{className:`size-4`}),` Close Others`]}),te>=0&&te<ee.length-1&&(0,J.jsxs)(`button`,{onClick:()=>ce(y),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,J.jsx)(Kt,{className:`size-4`}),` Close to the Right`]})]}),(0,J.jsx)(Ae,{open:!!C,onClose:()=>w(null),children:(0,J.jsxs)(`div`,{className:`px-4 pt-1 pb-3`,children:[(0,J.jsx)(`div`,{className:`text-[13px] font-semibold text-text-primary mb-2`,children:`Rename chat`}),(0,J.jsx)(`input`,{autoFocus:!0,value:T,onChange:e=>E(e.target.value),onKeyDown:e=>{e.key===`Enter`&&oe()},placeholder:`Session title`,className:`w-full h-11 px-3 rounded-xl bg-background border border-border text-text-primary outline-none focus:border-primary`,style:{fontSize:16}}),(0,J.jsxs)(`div`,{className:`flex gap-2 mt-3`,children:[(0,J.jsx)(`button`,{onClick:()=>w(null),className:`flex-1 h-11 rounded-xl border border-border text-sm text-text-secondary active:bg-surface-elevated`,children:`Cancel`}),(0,J.jsx)(`button`,{onClick:oe,className:`flex-1 h-11 rounded-xl bg-primary text-primary-foreground text-sm font-medium active:opacity-90`,children:`Save`})]})]})}),de&&(0,J.jsx)(js,{node:de.node,projectName:pe?.name??``,onClose:()=>fe(null),onRefresh:()=>{pe&&ho.getState().fetchTree(pe.name),de.action===`delete`&&H.getState().closeTab(de.tabId)}}),s&&(0,J.jsx)(Ae,{open:a.visible,onClose:()=>H.getState().setDockVisible(!1),zIndex:60,className:V(`transition-[height] duration-200`,o?`h-[92vh]`:`h-[60vh]`),children:(0,J.jsx)(`div`,{className:`flex flex-col h-full overflow-hidden`,children:(0,J.jsx)(dc,{variant:`mobile`})})})]})}var rh=64,ih=350,ah=10;function oh(e,t,n){let r=[...e],i=r.indexOf(t);if(i<0||t===n)return e;r.splice(i,1);let a=r.indexOf(n);return r.splice(a<0?r.length:a,0,t),r}function sh({tabs:e,activeId:t,onSelect:n,onReorder:r}){let i=(0,q.useRef)(null),[a,o]=(0,q.useState)(0),[s,c]=(0,q.useState)(null),[l,u]=(0,q.useState)(null),d=(0,q.useRef)(null),f=(0,q.useRef)(null),[p,m]=(0,q.useState)(!1),h=(0,q.useRef)(null),g=(0,q.useRef)(null),_=e=>{d.current=e,c(e)},v=e=>{f.current=e,u(e)},y=()=>{_(null),v(null)},b=()=>{h.current&&=(clearTimeout(h.current),null)};(0,q.useEffect)(()=>{let e=i.current;if(!e)return;let t=new ResizeObserver(e=>o(e[0].contentRect.width));return t.observe(e),()=>t.disconnect()},[]),(0,q.useEffect)(()=>{let e=i.current;if(!e)return;let t=e=>{if(!d.current)return;e.preventDefault();let t=e.touches[0];if(!t)return;let n=(document.elementFromPoint(t.clientX,t.clientY)?.closest(`[data-tabid]`))?.getAttribute(`data-tabid`);n&&v(n)};return e.addEventListener(`touchmove`,t,{passive:!1}),()=>e.removeEventListener(`touchmove`,t)},[]);let x=a?Math.max(1,Math.floor(a/rh)):e.length,S=e.length>x,C=S?Math.max(1,x-1):e.length,w=e.slice(0,C),T=S&&!w.some(e=>e.id===t)&&e.some(e=>e.id===t);if(T){let n=e.find(e=>e.id===t);w=[...e.slice(0,C-1),n]}let E=new Set(w.map(e=>e.id)),D=e.filter(e=>!E.has(e.id)),O=t=>{d.current&&r(oh(e.map(e=>e.id),d.current,t)),y()},k=(e,t)=>V(`relative flex flex-col items-center justify-center gap-0.5 shrink-0 py-2.5 text-[10px] select-none transition-colors`,t?`text-primary`:`text-text-secondary`,s===e&&`opacity-40`,l===e&&s!==e&&`shadow-[inset_2px_0_0_var(--accent)]`);return(0,J.jsxs)(`div`,{ref:i,className:`flex items-center overflow-hidden`,children:[w.map(e=>{let r=e.icon;return(0,J.jsxs)(`button`,{"data-tabid":e.id,style:{width:rh},className:k(e.id,t===e.id),draggable:!0,onDragStart:t=>{_(e.id),t.dataTransfer.effectAllowed=`move`},onDragOver:t=>{t.preventDefault(),v(e.id)},onDrop:t=>{t.preventDefault(),O(e.id)},onDragEnd:y,onClick:()=>n(e.id),onTouchStart:t=>{g.current={x:t.touches[0].clientX,y:t.touches[0].clientY},b(),h.current=setTimeout(()=>_(e.id),ih)},onTouchMove:e=>{if(!d.current&&g.current){let t=Math.abs(e.touches[0].clientX-g.current.x),n=Math.abs(e.touches[0].clientY-g.current.y);(t>ah||n>ah)&&b()}},onTouchEnd:()=>{b(),d.current&&f.current?O(f.current):y(),g.current=null},children:[(0,J.jsx)(r,{className:`size-4`}),(0,J.jsx)(`span`,{children:e.shortLabel??e.label}),e.beta&&(0,J.jsx)(`span`,{className:`absolute top-1 right-2 rounded-full bg-accent-wash px-1 text-[7px] font-bold uppercase leading-[1.4] tracking-wide text-primary`,children:`beta`})]},e.id)}),S&&(0,J.jsxs)(`button`,{style:{width:rh},onClick:()=>m(!0),className:V(`flex flex-col items-center justify-center gap-0.5 shrink-0 py-2.5 text-[10px] transition-colors`,T?`text-primary`:`text-text-secondary`),children:[(0,J.jsx)(ln,{className:`size-4`}),(0,J.jsx)(`span`,{children:`More`})]}),(0,J.jsx)(Ae,{open:p,onClose:()=>m(!1),children:(0,J.jsxs)(`div`,{className:`px-2 pb-3 pt-1`,children:[(0,J.jsx)(`div`,{className:`px-2 py-1 text-xs text-text-secondary`,children:`More tabs`}),D.map(e=>{let r=e.icon;return(0,J.jsxs)(`button`,{onClick:()=>{n(e.id),m(!1)},className:V(`flex items-center gap-3 w-full px-3 py-2.5 rounded-md text-sm active:bg-surface-elevated`,t===e.id?`text-primary`:`text-foreground`),children:[(0,J.jsx)(r,{className:`size-4 shrink-0`}),(0,J.jsx)(`span`,{children:e.label}),e.beta&&(0,J.jsx)(`span`,{className:`rounded-full bg-accent-wash px-1.5 py-px text-[9px] font-semibold uppercase tracking-wide text-primary`,children:`beta`})]},e.id)})]})})]})}var ch=new Set([`history`,`teams`,`explorer`,`git`,`database`,`tunnels`,`ai-resources`,`settings`,`jira`]),lh=e=>ch.has(e)||e.startsWith(`ext:`);function uh({isOpen:e,onClose:t,initialTab:n}){let{activeProject:r}=U(Tc(e=>({activeProject:e.activeProject}))),i=B(e=>e.version),a=B(e=>e.jiraEnabled),o=B(e=>e.sidebarTabOrder),s=B(e=>e.setSidebarTabOrder),c=cs(e=>e.contributions),[l,u]=(0,q.useState)(n??`explorer`),[d,f]=(0,q.useState)(!1),p=(0,q.useMemo)(()=>bp(yp({jiraEnabled:a,contributions:c}),o).filter(e=>lh(e.id)),[a,c,o]);(0,q.useEffect)(()=>{n&&u(n)},[n]),(0,q.useEffect)(()=>{p.length>0&&!p.some(e=>e.id===l)&&u(p[0].id)},[p,l]),(0,q.useEffect)(()=>{let e=()=>{Pe()&&f(!0)};return window.addEventListener(`open-cloud-share`,e),()=>window.removeEventListener(`open-cloud-share`,e)},[]);let m=(0,q.useCallback)(()=>am(i),[i]),h=(0,J.jsx)(`p`,{className:`px-4 py-6 text-xs text-text-secondary text-center`,children:`Select a project from the bottom nav bar`});return(0,J.jsxs)(`div`,{className:V(`fixed inset-0 z-50 md:hidden transition-opacity duration-200`,e?`opacity-100`:`opacity-0 pointer-events-none`),children:[(0,J.jsx)(`div`,{className:`absolute inset-0 bg-black/50`,onClick:t,"aria-label":`Close drawer`}),(0,J.jsxs)(`div`,{className:V(`fixed left-0 top-0 bottom-0 w-[90vw] bg-background border-r border-border`,`z-50 flex flex-col transition-transform duration-300 ease-out`,e?`translate-x-0`:`-translate-x-full`),children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-3 border-b border-border shrink-0`,children:[(0,J.jsx)(`span`,{className:`text-sm font-bold text-primary tracking-tight`,children:r?.name??`PPM`}),(0,J.jsx)(`button`,{onClick:t,className:`flex items-center justify-center size-8 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,J.jsx)(Qe,{className:`size-4`})})]}),(0,J.jsxs)(`div`,{className:`flex-1 overflow-y-auto min-h-0`,children:[l===`history`&&(r?(0,J.jsx)(Mf,{variant:`sidebar`,projectName:r.name,onNavigate:t}):h),l===`teams`&&(r?(0,J.jsx)(Qf,{}):h),l===`explorer`&&(r?(0,J.jsx)(Zc,{onFileOpen:t}):h),l===`git`&&(0,J.jsx)(al,{metadata:{projectName:r?.name},onNavigate:t}),l===`database`&&(0,J.jsx)(dd,{}),l===`tunnels`&&(0,J.jsx)(Cf,{}),l===`jira`&&(0,J.jsx)(Ld,{}),l===`ai-resources`&&(0,J.jsx)(yf,{}),l===`settings`&&(0,J.jsx)(Vu,{}),l.startsWith(`ext:`)&&(0,J.jsx)(yd,{viewId:l.slice(4),className:`h-full`})]}),(0,J.jsxs)(`div`,{className:`shrink-0 border-t border-border`,children:[(0,J.jsx)(sh,{tabs:p,activeId:l,onSelect:u,onReorder:s}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-t border-border text-[11px]`,children:[(0,J.jsx)(Wm,{align:`left`}),(0,J.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,J.jsxs)(`button`,{onClick:()=>f(!0),className:`flex items-center gap-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors`,children:[(0,J.jsx)(tn,{className:`size-3`}),(0,J.jsx)(`span`,{children:`Cloud & Share`})]}),(0,J.jsxs)(`button`,{onClick:m,className:`flex items-center gap-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors`,children:[(0,J.jsx)(zt,{className:`size-3`}),(0,J.jsx)(`span`,{children:`Report Bug`})]})]})]})]})]}),(0,J.jsx)(Ae,{open:d,onClose:()=>f(!1),zIndex:60,children:(0,J.jsx)(em,{variant:`sheet`,onClose:()=>f(!1)})})]})}function dh({isOpen:e,onClose:t}){let{projects:n,activeProject:r,setActiveProject:i,setProjectColor:a,setProjectImage:o,removeProjectImage:s,reorderProjects:c,renameProject:l,deleteProject:u,customOrder:d,sortMode:f,setProjectSortMode:p}=U(Tc(e=>({projects:e.projects,activeProject:e.activeProject,setActiveProject:e.setActiveProject,setProjectColor:e.setProjectColor,setProjectImage:e.setProjectImage,removeProjectImage:e.removeProjectImage,reorderProjects:e.reorderProjects,renameProject:e.renameProject,deleteProject:e.deleteProject,customOrder:e.customOrder,sortMode:e.projectSortMode,setProjectSortMode:e.setProjectSortMode}))),m=B(e=>e.version),h=lt(n,d),g=h.map(e=>e.name),[_,v]=(0,q.useState)(`list`),[y,b]=(0,q.useState)(``),x=(0,q.useMemo)(()=>dt(),[e]),S=(0,q.useMemo)(()=>tp(n,d,f),[n,d,f]),C=y.trim().toLowerCase(),w=C?S.filter(e=>e.name.toLowerCase().includes(C)||e.path.toLowerCase().includes(C)):S,T=f===`priority`&&!C,E=(0,q.useCallback)(e=>{window.open(ip(e,null),`_blank`,`noopener`)},[]),[D,O]=(0,q.useState)(null),[k,A]=(0,q.useState)(``),[ee,te]=(0,q.useState)(!1),ne=(0,q.useRef)(null),[j,M]=(0,q.useState)(null),[re,ie]=(0,q.useState)(``),ae=(0,q.useRef)(null),[oe,se]=(0,q.useState)(null);async function ce(e){let t=e.target.files?.[0];if(e.target.value=``,!(!t||!oe)){O(null);try{await o(oe,t)}catch(e){alert(e instanceof Error?e.message:`Upload failed`)}}}let N=(0,q.useCallback)(e=>{ne.current=setTimeout(()=>O(e),400)},[]),le=(0,q.useCallback)(()=>{ne.current&&=(clearTimeout(ne.current),null)},[]);function ue(){v(`list`),t()}function de(e){let t=n.find(t=>t.name===e);t&&(i(t),ue())}function fe(){v(`add`)}function P(){if(ue(),window.innerWidth<768){window.dispatchEvent(new Event(`open-mobile-settings`));return}let{sidebarCollapsed:e,toggleSidebar:t,setSidebarActiveTab:n}=B.getState();e&&t(),n(`settings`)}async function me(){if(!j||!re.trim()||re===j){M(null);return}try{await l(j,re.trim())}catch{}M(null)}async function he(e){O(null);try{await u(e)}catch{}}async function ge(e,t){try{await a(e,t),te(!1),O(null)}catch(e){console.error(`Failed to save color:`,e)}}let _e=D?h.find(e=>e.name===D):null,ve=D?h.findIndex(e=>e.name===D):-1,ye=D?[{label:`Open in New Tab`,icon:un,onClick:()=>{E(D),O(null)}},{label:`Rename`,icon:De,onClick:()=>{ie(D),M(D),O(null)}},{label:`Change Color`,icon:sr,onClick:()=>{let e=h.findIndex(e=>e.name===D),t=h[e];A(dp(t?.color,e)),te(!0)}},{label:`Change Image`,icon:zn,onClick:()=>{se(D),ae.current?.click()}},..._e?.image?[{label:`Remove Image`,icon:Rr,onClick:()=>{s(D).catch(()=>{}),O(null)}}]:[],{label:`Copy Path`,icon:rn,onClick:()=>{_e&&ks(_e.path),O(null)}},...T&&ve>0?[{label:`Move Up`,icon:Wt,onClick:()=>{let e=h.map(e=>e.name),[t]=e.splice(ve,1);e.splice(ve-1,0,t),c(e),O(null)}}]:[],...T&&ve<h.length-1?[{label:`Move Down`,icon:Ne,onClick:()=>{let e=h.map(e=>e.name),[t]=e.splice(ve,1);e.splice(ve+1,0,t),c(e),O(null)}}]:[],{label:`Delete`,icon:Rr,destructive:!0,onClick:()=>he(D)}]:[];return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`input`,{ref:ae,type:`file`,accept:`image/*`,className:`hidden`,onChange:ce}),(0,J.jsxs)(Ae,{open:e,onClose:ue,className:`bg-background`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-b border-border`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[_===`add`&&(0,J.jsx)(`button`,{onClick:()=>v(`list`),className:`flex items-center justify-center size-7 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,J.jsx)(pe,{className:`size-4`})}),(0,J.jsx)(`span`,{className:`text-sm font-semibold`,children:_===`add`?`Add Project`:`Projects`})]}),(0,J.jsx)(`button`,{onClick:ue,className:`flex items-center justify-center size-7 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,J.jsx)(Qe,{className:`size-4`})})]}),_===`add`&&(0,J.jsx)(`div`,{className:`px-4 py-4`,children:(0,J.jsx)(mp,{onSuccess:()=>{v(`list`),t()},onCancel:()=>v(`list`),footerClassName:`pt-2`})}),_!==`add`&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-4 py-2 border-b border-border`,children:[(0,J.jsx)(Ge,{className:`size-4 text-text-subtle shrink-0`}),(0,J.jsx)(`input`,{value:y,onChange:e=>b(e.target.value),placeholder:`Search projects…`,className:`flex-1 bg-transparent text-sm text-foreground placeholder:text-text-subtle focus:outline-none`})]}),(0,J.jsx)(`div`,{className:`flex items-center gap-1 px-2 py-2 border-b border-border`,children:ep.map(({mode:e,label:t,Icon:n})=>(0,J.jsxs)(`button`,{onClick:()=>p(e),className:V(`flex items-center justify-center gap-1 flex-1 px-2 py-1.5 rounded-md text-xs font-medium transition-colors`,f===e?`bg-primary/[0.12] text-primary`:`text-text-subtle active:bg-surface-elevated`),children:[(0,J.jsx)(n,{className:`size-3.5`}),` `,t]},e))})]}),(0,J.jsxs)(`div`,{className:_===`add`?`hidden`:`max-h-[60vh] overflow-y-auto`,children:[w.map(e=>{let t=h.findIndex(t=>t.name===e.name),n=dp(e.color,t),i=r?.name===e.name,a=j===e.name,o=x[e.name];return(0,J.jsxs)(`div`,{className:V(`flex items-center gap-3 px-4 py-3 transition-colors active:bg-surface-elevated`,i&&`bg-accent/10`),onClick:()=>!a&&de(e.name),onTouchStart:()=>N(e.name),onTouchEnd:le,onTouchMove:le,children:[(0,J.jsx)(pp,{name:e.name,color:n,image:e.image,size:40,allNames:g}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[a?(0,J.jsx)(`input`,{type:`text`,value:re,onChange:e=>ie(e.target.value),onKeyDown:e=>{e.key===`Enter`&&me(),e.key===`Escape`&&M(null)},onBlur:me,onClick:e=>e.stopPropagation(),className:`w-full bg-transparent border-b border-primary text-sm outline-none`,autoFocus:!0}):(0,J.jsx)(`p`,{className:`text-sm font-medium truncate`,children:e.name}),(0,J.jsx)(`p`,{className:`text-xs text-text-subtle truncate`,children:e.path})]}),o&&!i&&(0,J.jsx)(`span`,{className:`shrink-0 text-[10px] text-text-subtle whitespace-nowrap`,children:Ja(new Date(o).toISOString())}),i&&(0,J.jsx)(xe,{className:`size-4 text-primary shrink-0`})]},e.name)}),w.length===0&&(0,J.jsx)(`div`,{className:`px-4 py-6 text-center text-sm text-text-subtle`,children:`No projects found`})]}),(0,J.jsx)(`div`,{className:`border-t border-border`,children:(0,J.jsxs)(`button`,{onClick:fe,className:`w-full flex items-center gap-3 px-4 py-3 text-text-secondary hover:bg-surface-elevated transition-colors`,children:[(0,J.jsx)(Ze,{className:`size-4 shrink-0`}),(0,J.jsx)(`span`,{className:`text-sm`,children:`Add Project`})]})}),(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-3 border-t border-border`,children:[(0,J.jsxs)(`button`,{onClick:P,className:`flex items-center gap-2 text-text-secondary hover:text-foreground transition-colors`,children:[(0,J.jsx)(Dr,{className:`size-4`}),(0,J.jsx)(`span`,{className:`text-sm`,children:`Settings`})]}),m&&(0,J.jsxs)(`span`,{className:`text-xs text-text-subtle`,children:[`v`,m]})]})]}),(0,J.jsxs)(Ae,{open:!!D&&!ee,onClose:()=>O(null),zIndex:60,children:[(0,J.jsx)(`div`,{className:`px-4 py-2 border-b border-border`,children:(0,J.jsx)(`p`,{className:`text-xs font-medium text-text-secondary`,children:D})}),ye.map(e=>{let t=e.icon;return(0,J.jsxs)(`button`,{onClick:e.onClick,className:V(`w-full flex items-center gap-3 px-4 py-3 text-sm transition-colors active:bg-surface-elevated`,e.destructive?`text-destructive`:`text-foreground`),children:[(0,J.jsx)(t,{className:`size-4 shrink-0`}),e.label]},e.label)})]}),(0,J.jsxs)(Ae,{open:ee&&!!D,onClose:()=>{te(!1),O(null)},zIndex:60,className:`p-4 space-y-4`,children:[(0,J.jsx)(`p`,{className:`text-sm font-medium`,children:`Change Color`}),(0,J.jsx)(`div`,{className:`flex flex-wrap gap-3`,children:up.map(e=>(0,J.jsx)(`button`,{type:`button`,onClick:()=>A(e),className:V(`size-9 rounded-full border-2 transition-all`,k===e?`border-primary scale-110`:`border-transparent`),style:{background:e}},e))}),(0,J.jsxs)(`div`,{className:`flex gap-2 pt-2`,children:[(0,J.jsx)(`button`,{onClick:()=>{te(!1),O(null)},className:`flex-1 py-2 text-sm text-text-secondary border border-border rounded-md`,children:`Cancel`}),(0,J.jsx)(`button`,{onClick:()=>ge(D,k),className:`flex-1 py-2 text-sm bg-primary text-white rounded-md`,children:`Save`})]})]})]})}var fh=`https://wise.com/pay/me/lehongh`,ph=`/donate-qr.png`,mh=`LE HONG HIEN`,hh=`Techcombank`;function gh({children:e}){return(0,J.jsx)(`span`,{className:`font-mono text-[11px] font-medium uppercase tracking-wide text-text-subtle`,children:e})}function _h(){let[e,t]=(0,q.useState)(!1);return(0,J.jsxs)(`div`,{className:`flex flex-col gap-5`,children:[(0,J.jsxs)(`div`,{className:`flex flex-col items-center gap-1 text-center`,children:[(0,J.jsx)(`div`,{className:`flex size-11 items-center justify-center rounded-xl bg-surface-elevated`,children:(0,J.jsx)(Fn,{className:`size-5 text-primary`})}),(0,J.jsx)(`h2`,{className:`text-lg font-semibold text-foreground`,children:`Support PPM`}),(0,J.jsx)(`p`,{className:`text-sm text-text-secondary`,children:`Thanks for keeping this project alive.`})]}),(0,J.jsxs)(`div`,{className:`grid gap-5 md:grid-cols-2 md:gap-6`,children:[(0,J.jsxs)(`section`,{className:`flex flex-col items-center gap-3`,children:[(0,J.jsx)(gh,{children:`Vietnam`}),e?(0,J.jsxs)(`div`,{className:`flex size-40 flex-col items-center justify-center gap-2 rounded-xl border border-dashed border-border text-text-subtle`,children:[(0,J.jsx)(yr,{className:`size-8`}),(0,J.jsx)(`span`,{className:`text-xs`,children:`QR code coming soon`})]}):(0,J.jsx)(`img`,{src:ph,alt:`Bank transfer QR code`,onError:()=>t(!0),className:`size-40 rounded-xl border border-border bg-white object-contain p-2`}),(0,J.jsxs)(`div`,{className:`text-center`,children:[(0,J.jsx)(`p`,{className:`text-sm font-medium text-foreground`,children:mh}),(0,J.jsx)(`p`,{className:`text-xs text-text-subtle`,children:hh})]}),(0,J.jsx)(`p`,{className:`text-center text-xs text-text-secondary`,children:`Quét mã QR bằng ứng dụng ngân hàng để chuyển khoản.`})]}),(0,J.jsxs)(`section`,{className:`flex flex-col items-center justify-center gap-3 border-t border-border pt-5 md:border-l md:border-t-0 md:pl-6 md:pt-0`,children:[(0,J.jsx)(gh,{children:`International`}),(0,J.jsx)(`p`,{className:`text-center text-sm text-text-secondary`,children:`Send an international transfer via Wise — multi-currency, low fees.`}),(0,J.jsx)(F,{asChild:!0,className:`w-full`,children:(0,J.jsxs)(`a`,{href:fh,target:`_blank`,rel:`noopener noreferrer`,children:[(0,J.jsx)(we,{className:`size-4`}),`Support via Wise`]})})]})]})]})}function vh({open:e,onOpenChange:t}){return Me()?(0,J.jsx)(Ae,{open:e,onClose:()=>t(!1),className:`popover-solid`,children:(0,J.jsx)(`div`,{className:`px-4 pb-4 pt-1`,children:(0,J.jsx)(_h,{})})}):(0,J.jsx)(Ue,{open:e,onOpenChange:t,children:(0,J.jsxs)(ze,{className:`sm:max-w-xl`,children:[(0,J.jsx)(Be,{className:`sr-only`,children:`Support PPM`}),(0,J.jsx)(_h,{})]})})}function yh(){let[e,t]=(0,q.useState)(null),[n,r]=(0,q.useState)(!1);(0,q.useEffect)(()=>{function e(e){let n=e.detail;n&&(t(n),r(!1))}return window.addEventListener(`open-bug-report`,e),()=>window.removeEventListener(`open-bug-report`,e)},[]);let i=(0,q.useCallback)(()=>t(null),[]);return e?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`fixed inset-0 z-50 bg-black/50`,onClick:i}),(0,J.jsxs)(`div`,{className:`fixed inset-4 md:inset-auto md:top-[15%] md:left-1/2 md:-translate-x-1/2 md:w-full md:max-w-lg md:max-h-[70vh] z-50 flex flex-col bg-background border border-border rounded-lg shadow-2xl overflow-hidden`,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-b border-border`,children:[(0,J.jsx)(`span`,{className:`text-sm font-medium`,children:`Bug Report`}),(0,J.jsx)(`button`,{onClick:i,className:`p-1 rounded hover:bg-surface-elevated`,children:(0,J.jsx)(Qe,{className:`size-4`})})]}),(0,J.jsx)(`pre`,{className:`flex-1 overflow-auto px-4 py-2 text-xs font-mono whitespace-pre-wrap break-all`,children:e}),(0,J.jsxs)(`div`,{className:`flex gap-2 p-3 border-t border-border`,children:[(0,J.jsxs)(`button`,{onClick:async()=>{await ks(e)&&r(!0)},className:`flex items-center gap-1.5 px-3 py-1.5 rounded-md bg-surface-elevated text-xs text-foreground hover:bg-surface transition-colors`,children:[n?(0,J.jsx)(xe,{className:`size-3`}):(0,J.jsx)(rn,{className:`size-3`}),n?`Copied`:`Copy`]}),(0,J.jsxs)(`button`,{onClick:()=>{im(e),i()},className:`flex items-center gap-1.5 px-3 py-1.5 rounded-md bg-primary text-primary-foreground text-xs hover:bg-primary/90 transition-colors`,children:[(0,J.jsx)(un,{className:`size-3`}),`Open GitHub Issue`]})]})]})]}):null}var bh=`https://github.com/hienlh/ppm`,xh={background:`radial-gradient(80% 60% at 50% -10%, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 60%)`},Sh={backgroundImage:`radial-gradient(circle at 1px 1px, rgba(255,255,255,.035) 1px, transparent 0)`,backgroundSize:`26px 26px`};function Ch({onSuccess:e}){let[t,n]=(0,q.useState)(``),[r,i]=(0,q.useState)(!1),a=B(e=>e.deviceName),o=B(e=>e.version),s=B(e=>e.tunnelActive),[c,l]=(0,q.useState)(null),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)(!1),m=Me();async function h(n){if(n.preventDefault(),!t.trim()){l(`Enter your password to continue`);return}d(!0),l(null);try{et(t.trim());let n=await(await fetch(`/api/auth/check`,{headers:{Authorization:`Bearer ${t.trim()}`}})).json();if(!n.ok)throw Error(n.error??`Invalid password`);e()}catch(e){l(e instanceof Error?e.message:`Authentication failed`),localStorage.removeItem(`ppm-auth-token`)}finally{d(!1)}}return(0,J.jsxs)(`div`,{className:`app-backdrop relative min-h-dvh overflow-hidden flex items-center justify-center p-6`,children:[(0,J.jsx)(`div`,{className:`pointer-events-none absolute inset-0`,style:xh}),(0,J.jsx)(`div`,{className:`pointer-events-none absolute inset-0`,style:Sh}),(0,J.jsxs)(`div`,{className:`relative flex w-full max-w-[392px] flex-col items-center gap-[22px] text-center`,children:[(0,J.jsxs)(`div`,{className:`flex flex-col items-center gap-4`,children:[(0,J.jsx)(`div`,{className:`flex size-16 items-center justify-center rounded-2xl border border-border bg-background shadow-float`,children:(0,J.jsx)(`div`,{className:`flex size-[52px] items-center justify-center rounded-xl bg-surface-elevated`,children:(0,J.jsx)(`span`,{className:`text-[15px] font-bold tracking-wide text-primary`,children:`PPM`})})}),(0,J.jsxs)(`div`,{children:[(0,J.jsx)(`h1`,{className:`mb-1.5 text-2xl font-semibold tracking-tight text-foreground`,children:`Unlock your workspace`}),(0,J.jsx)(`p`,{className:`text-sm text-text-secondary`,children:`Enter your access password to unlock`})]}),(0,J.jsxs)(`div`,{className:`flex flex-wrap items-center justify-center gap-2`,children:[a&&(0,J.jsxs)(`span`,{className:`inline-flex items-center gap-1.5 rounded-full border border-border bg-surface-elevated px-2.5 py-0.5 font-mono text-[11px] text-text-secondary`,children:[(0,J.jsx)(m?kr:ir,{className:`size-3 text-text-subtle`}),a]}),m?(s||o)&&(0,J.jsxs)(`span`,{className:V(`inline-flex items-center gap-1.5 rounded-full border px-2.5 py-0.5 font-mono text-[11px]`,s?`border-success/30 bg-success/10 text-success`:`border-border bg-surface-elevated text-text-secondary`),children:[s&&(0,J.jsx)(`span`,{className:`size-1.5 animate-pulse rounded-full bg-success`}),s?`tunnel · `:``,o?`v${o}`:``]}):(0,J.jsxs)(J.Fragment,{children:[o&&(0,J.jsxs)(`span`,{className:`inline-flex items-center rounded-full border border-border bg-surface-elevated px-2.5 py-0.5 font-mono text-[11px] text-text-secondary`,children:[`v`,o]}),s&&(0,J.jsxs)(`span`,{className:`inline-flex items-center gap-1.5 rounded-full border border-success/30 bg-success/10 px-2.5 py-0.5 font-mono text-[11px] text-success`,children:[(0,J.jsx)(`span`,{className:`size-1.5 animate-pulse rounded-full bg-success`}),`tunnel active`]})]})]})]}),(0,J.jsxs)(`form`,{onSubmit:h,className:`flex w-full flex-col gap-3`,children:[(0,J.jsxs)(`div`,{className:`relative w-full`,children:[(0,J.jsx)(Z,{type:r?`text`:`password`,placeholder:`Password`,value:t,onChange:e=>{n(e.target.value),c&&l(null)},className:`h-[50px] rounded-xl bg-surface-elevated pr-12 text-[15px] max-md:text-base`,autoFocus:!0}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>i(e=>!e),"aria-label":r?`Hide password`:`Show password`,className:`absolute right-2 top-1/2 flex size-9 -translate-y-1/2 items-center justify-center rounded-lg text-text-subtle can-hover:hover:bg-surface-elevated can-hover:hover:text-foreground`,children:r?(0,J.jsx)(me,{className:`size-[18px]`}):(0,J.jsx)(Ye,{className:`size-[18px]`})})]}),c&&(0,J.jsxs)(`div`,{className:`flex items-center gap-2 text-[13px] text-error`,children:[(0,J.jsx)(Jt,{className:`size-[15px] shrink-0`}),(0,J.jsx)(`span`,{children:c})]}),(0,J.jsx)(F,{type:`submit`,disabled:u,className:`h-[50px] w-full text-[15px]`,children:u?`Checking…`:`Unlock`})]}),(0,J.jsx)(`div`,{className:`hidden h-px w-full bg-border md:block`}),(0,J.jsxs)(`div`,{className:`flex items-center justify-center gap-5`,children:[(0,J.jsxs)(`button`,{type:`button`,onClick:()=>am(o),className:`inline-flex items-center gap-1.5 text-xs text-text-subtle can-hover:hover:text-foreground`,children:[(0,J.jsx)(zt,{className:`size-[18px] md:size-3.5`}),(0,J.jsx)(`span`,{className:`max-md:sr-only`,children:`Report Bug`})]}),(0,J.jsxs)(`a`,{href:bh,target:`_blank`,rel:`noopener noreferrer`,className:`inline-flex items-center gap-1.5 text-xs text-text-subtle can-hover:hover:text-foreground`,children:[(0,J.jsx)(jn,{className:`size-[18px] md:size-3.5`}),(0,J.jsx)(`span`,{className:`max-md:sr-only`,children:`Repo`})]}),(0,J.jsxs)(`button`,{type:`button`,onClick:()=>p(!0),className:`inline-flex items-center gap-1.5 text-xs text-text-subtle can-hover:hover:text-foreground`,children:[(0,J.jsx)(nn,{className:`size-[18px] md:size-3.5`}),(0,J.jsx)(`span`,{className:`max-md:sr-only`,children:`Buy me a coffee`})]})]})]}),(0,J.jsx)(vh,{open:f,onOpenChange:p}),(0,J.jsx)(yh,{})]})}function wh(){let e=B(e=>e.themeStyle),t=B(e=>e.themeMode),n=B(e=>e.customThemeId),r=B(e=>e.customThemes),[i,a]=(0,q.useState)(0),o=(0,q.useMemo)(()=>xt(e,t,r,n),[e,t,r,n,i]);return(0,q.useEffect)(()=>{St(o)},[o,i]),(0,q.useEffect)(()=>{let e=window.matchMedia(`(prefers-color-scheme: dark)`),t=window.matchMedia(`(max-width: 767px)`),n=()=>a(e=>e+1);return e.addEventListener(`change`,n),t.addEventListener(`change`,n),()=>{e.removeEventListener(`change`,n),t.removeEventListener(`change`,n)}},[]),o}var Th=Object.defineProperty,Eh=Object.getOwnPropertyDescriptor,Dh=Object.getOwnPropertyNames,Oh=Object.prototype.hasOwnProperty,kh=(e,t)=>{let n={};for(var r in e)Th(n,r,{get:e[r],enumerable:!0});return t||Th(n,Symbol.toStringTag,{value:`Module`}),n},Ah=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var i=Dh(t),a=0,o=i.length,s;a<o;a++)s=i[a],!Oh.call(e,s)&&s!==n&&Th(e,s,{get:(e=>t[e]).bind(null,s),enumerable:!(r=Eh(t,s))||r.enumerable});return e},jh=(e,t,n)=>(Ah(e,t,`default`),n&&Ah(n,t,`default`)),Mh=[{id:`abap`,name:`ABAP`,import:(()=>z(()=>import(`./abap-BM5PMK0-.js`),[]))},{id:`actionscript-3`,name:`ActionScript`,import:(()=>z(()=>import(`./actionscript-3-CML-MTNy.js`),[]))},{id:`ada`,name:`Ada`,import:(()=>z(()=>import(`./ada-DzO1tMqV.js`),[]))},{id:`angular-html`,name:`Angular HTML`,import:(()=>z(()=>import(`./angular-html-D4YJUMLP.js`).then(e=>e.n),__vite__mapDeps([60,1,61,62,63])))},{id:`angular-ts`,name:`Angular TypeScript`,import:(()=>z(()=>import(`./angular-ts-CUvq2h3X.js`),__vite__mapDeps([64,60,1,61,62,63,65])))},{id:`apache`,name:`Apache Conf`,import:(()=>z(()=>import(`./apache-Dg7oWQbs.js`),[]))},{id:`apex`,name:`Apex`,import:(()=>z(()=>import(`./apex-3O2170Ju.js`),[]))},{id:`apl`,name:`APL`,import:(()=>z(()=>import(`./apl-DSANFLx0.js`),__vite__mapDeps([66,62,1,61,63,67,68,69])))},{id:`applescript`,name:`AppleScript`,import:(()=>z(()=>import(`./applescript-5AlzBqQO.js`),[]))},{id:`ara`,name:`Ara`,import:(()=>z(()=>import(`./ara-BGtOX5Hn.js`),[]))},{id:`asciidoc`,name:`AsciiDoc`,aliases:[`adoc`],import:(()=>z(()=>import(`./asciidoc-CIsC4kkq.js`),[]))},{id:`asm`,name:`Assembly`,import:(()=>z(()=>import(`./asm-p1-PUkh3.js`),[]))},{id:`astro`,name:`Astro`,import:(()=>z(()=>import(`./astro-CXIotiNS.js`),__vite__mapDeps([70,62,1,63,67,71,72,73])))},{id:`awk`,name:`AWK`,import:(()=>z(()=>import(`./awk-Cj93pRL8.js`),[]))},{id:`ballerina`,name:`Ballerina`,import:(()=>z(()=>import(`./ballerina-DUO9mwyV.js`),[]))},{id:`bat`,name:`Batch File`,aliases:[`batch`],import:(()=>z(()=>import(`./bat-Cg8hlSct.js`),[]))},{id:`beancount`,name:`Beancount`,import:(()=>z(()=>import(`./beancount-f8f3BBqB.js`),[]))},{id:`berry`,name:`Berry`,aliases:[`be`],import:(()=>z(()=>import(`./berry-BqVQYZZr.js`),[]))},{id:`bibtex`,name:`BibTeX`,import:(()=>z(()=>import(`./bibtex-C_q8ygAM.js`),[]))},{id:`bicep`,name:`Bicep`,import:(()=>z(()=>import(`./bicep-DWS-2uWR.js`),[]))},{id:`bird2`,name:`BIRD2 Configuration`,aliases:[`bird`],import:(()=>z(()=>import(`./bird2-C0pvipi_.js`),[]))},{id:`blade`,name:`Blade`,import:(()=>z(()=>import(`./blade-BvrP2gPd.js`),__vite__mapDeps([74,62,1,75,61,63,67,76,68,69])))},{id:`bsl`,name:`1C (Enterprise)`,aliases:[`1c`],import:(()=>z(()=>import(`./bsl-CGf6Xuyu.js`),__vite__mapDeps([77,78])))},{id:`c`,name:`C`,import:(()=>z(()=>import(`./c-BQFvJ6Ux.js`).then(e=>e.n),__vite__mapDeps([79,1])))},{id:`c3`,name:`C3`,import:(()=>z(()=>import(`./c3-Da53KeG6.js`),[]))},{id:`cadence`,name:`Cadence`,aliases:[`cdc`],import:(()=>z(()=>import(`./cadence-B5X2vWm3.js`),[]))},{id:`cairo`,name:`Cairo`,import:(()=>z(()=>import(`./cairo-BboZ9qIf.js`),__vite__mapDeps([80,81])))},{id:`clarity`,name:`Clarity`,import:(()=>z(()=>import(`./clarity-BRdirlsw.js`),[]))},{id:`clojure`,name:`Clojure`,aliases:[`clj`],import:(()=>z(()=>import(`./clojure-pSLH-KQp.js`),[]))},{id:`cmake`,name:`CMake`,import:(()=>z(()=>import(`./cmake-DsZu4U4F.js`),[]))},{id:`cobol`,name:`COBOL`,import:(()=>z(()=>import(`./cobol-D39V6ukp.js`),__vite__mapDeps([82,61,1,62,63,69])))},{id:`codeowners`,name:`CODEOWNERS`,import:(()=>z(()=>import(`./codeowners-CtkKTnsH.js`),[]))},{id:`codeql`,name:`CodeQL`,aliases:[`ql`],import:(()=>z(()=>import(`./codeql-BpP1PDrj.js`),[]))},{id:`coffee`,name:`CoffeeScript`,aliases:[`coffeescript`],import:(()=>z(()=>import(`./coffee-DTtK7kKi.js`),__vite__mapDeps([83,63,1])))},{id:`common-lisp`,name:`Common Lisp`,aliases:[`lisp`],import:(()=>z(()=>import(`./common-lisp-BX1XgHTt.js`),[]))},{id:`coq`,name:`Coq`,import:(()=>z(()=>import(`./coq-D2bX6-8g.js`),[]))},{id:`cpp`,name:`C++`,aliases:[`c++`],import:(()=>z(()=>import(`./cpp-CnU9hfBq.js`).then(e=>e.n),__vite__mapDeps([84,1,85,79,86,76])))},{id:`crystal`,name:`Crystal`,import:(()=>z(()=>import(`./crystal-DMjCL--0.js`),__vite__mapDeps([87,79,1,62,61,63,88,76])))},{id:`csharp`,name:`C#`,aliases:[`c#`,`cs`],import:(()=>z(()=>import(`./csharp-DcR97P0D.js`),[]))},{id:`css`,name:`CSS`,import:(()=>z(()=>import(`./css-CIjciIIk.js`).then(e=>e.n),__vite__mapDeps([62,1])))},{id:`csv`,name:`CSV`,import:(()=>z(()=>import(`./csv-DW48Z5d-.js`),[]))},{id:`cue`,name:`CUE`,import:(()=>z(()=>import(`./cue-Byh1xHko.js`),[]))},{id:`cypher`,name:`Cypher`,aliases:[`cql`],import:(()=>z(()=>import(`./cypher-TVlMMWma.js`),[]))},{id:`d`,name:`D`,import:(()=>z(()=>import(`./d-CxaScvxf.js`),[]))},{id:`dart`,name:`Dart`,import:(()=>z(()=>import(`./dart-BmpakMe-.js`),[]))},{id:`dax`,name:`DAX`,import:(()=>z(()=>import(`./dax-B1aRUMXT.js`),[]))},{id:`desktop`,name:`Desktop`,import:(()=>z(()=>import(`./desktop-C6lD62ar.js`),[]))},{id:`diff`,name:`Diff`,import:(()=>z(()=>import(`./diff-CupGmT1a.js`),[]))},{id:`docker`,name:`Dockerfile`,aliases:[`dockerfile`],import:(()=>z(()=>import(`./docker-DjDr3TJF.js`),[]))},{id:`dotenv`,name:`dotEnv`,import:(()=>z(()=>import(`./dotenv-QeT1SLTv.js`),[]))},{id:`dream-maker`,name:`Dream Maker`,import:(()=>z(()=>import(`./dream-maker-TBDKiHrV.js`),[]))},{id:`edge`,name:`Edge`,import:(()=>z(()=>import(`./edge-CTom35R_.js`),__vite__mapDeps([89,75,61,1,62,63,73])))},{id:`elixir`,name:`Elixir`,import:(()=>z(()=>import(`./elixir-BAX9HSOu.js`),__vite__mapDeps([90,61,1,62,63])))},{id:`elm`,name:`Elm`,import:(()=>z(()=>import(`./elm-CpD28xsW.js`),__vite__mapDeps([91,85,1,79])))},{id:`emacs-lisp`,name:`Emacs Lisp`,aliases:[`elisp`],import:(()=>z(()=>import(`./emacs-lisp-B7aZTnJ_.js`),[]))},{id:`erb`,name:`ERB`,import:(()=>z(()=>import(`./erb-DHX2IIEs.js`),__vite__mapDeps([92,61,1,62,63,93,79,84,85,86,76,94,95,72,73,96,97,88,68,69,98])))},{id:`erlang`,name:`Erlang`,aliases:[`erl`],import:(()=>z(()=>import(`./erlang-B_etLcPG.js`),__vite__mapDeps([99,100])))},{id:`fennel`,name:`Fennel`,import:(()=>z(()=>import(`./fennel-C6ktGUzp.js`),[]))},{id:`fish`,name:`Fish`,import:(()=>z(()=>import(`./fish-Vr62C2vP.js`),[]))},{id:`fluent`,name:`Fluent`,aliases:[`ftl`],import:(()=>z(()=>import(`./fluent-CH3IJUki.js`),[]))},{id:`fortran-fixed-form`,name:`Fortran (Fixed Form)`,aliases:[`f`,`for`,`f77`],import:(()=>z(()=>import(`./fortran-fixed-form-CpR0cN7O.js`),__vite__mapDeps([101,102])))},{id:`fortran-free-form`,name:`Fortran (Free Form)`,aliases:[`f90`,`f95`,`f03`,`f08`,`f18`],import:(()=>z(()=>import(`./fortran-free-form-BN7VmmxZ.js`),[]))},{id:`fsharp`,name:`F#`,aliases:[`f#`,`fs`],import:(()=>z(()=>import(`./fsharp-DxITxZW5.js`),__vite__mapDeps([103,100])))},{id:`gdresource`,name:`GDResource`,aliases:[`tscn`,`tres`],import:(()=>z(()=>import(`./gdresource-DJ7IvROZ.js`),__vite__mapDeps([104,105,106])))},{id:`gdscript`,name:`GDScript`,aliases:[`gd`],import:(()=>z(()=>import(`./gdscript-BYdRNu_P.js`),[]))},{id:`gdshader`,name:`GDShader`,import:(()=>z(()=>import(`./gdshader-C2XOq90k.js`),[]))},{id:`genie`,name:`Genie`,import:(()=>z(()=>import(`./genie-B4hkIXNU.js`),[]))},{id:`gherkin`,name:`Gherkin`,import:(()=>z(()=>import(`./gherkin-CW9NH2DW.js`),[]))},{id:`git-commit`,name:`Git Commit Message`,import:(()=>z(()=>import(`./git-commit-sQznNP43.js`),__vite__mapDeps([107,108])))},{id:`git-rebase`,name:`Git Rebase Message`,import:(()=>z(()=>import(`./git-rebase-DkHvejAR.js`),__vite__mapDeps([109,88,1])))},{id:`gleam`,name:`Gleam`,import:(()=>z(()=>import(`./gleam-D4dP7V5M.js`),[]))},{id:`glimmer-js`,name:`Glimmer JS`,aliases:[`gjs`],import:(()=>z(()=>import(`./glimmer-js-BwJnDfL-.js`),__vite__mapDeps([110,62,1,61,63,73])))},{id:`glimmer-ts`,name:`Glimmer TS`,aliases:[`gts`],import:(()=>z(()=>import(`./glimmer-ts-Coz155XK.js`),__vite__mapDeps([111,62,1,61,63,73])))},{id:`glsl`,name:`GLSL`,import:(()=>z(()=>import(`./glsl-BED7ZmUZ.js`).then(e=>e.n),__vite__mapDeps([85,1,79])))},{id:`gn`,name:`GN`,import:(()=>z(()=>import(`./gn-DuO2D2eW.js`),[]))},{id:`gnuplot`,name:`Gnuplot`,import:(()=>z(()=>import(`./gnuplot-Df_8pFbI.js`),[]))},{id:`go`,name:`Go`,import:(()=>z(()=>import(`./go-BL16cMJO.js`),[]))},{id:`graphql`,name:`GraphQL`,aliases:[`gql`],import:(()=>z(()=>import(`./graphql-B_KyE6oz.js`).then(e=>e.n),__vite__mapDeps([94,1,63,95,72,73])))},{id:`groovy`,name:`Groovy`,import:(()=>z(()=>import(`./groovy-rfHeCRqy.js`),[]))},{id:`hack`,name:`Hack`,import:(()=>z(()=>import(`./hack-sxywdIAQ.js`),__vite__mapDeps([112,61,1,62,63,76])))},{id:`haml`,name:`Ruby Haml`,import:(()=>z(()=>import(`./haml-Dts9JlPU.js`).then(e=>e.n),__vite__mapDeps([96,1,62,63])))},{id:`handlebars`,name:`Handlebars`,aliases:[`hbs`],import:(()=>z(()=>import(`./handlebars-C9HXIMtj.js`),__vite__mapDeps([113,62,1,61,63,98])))},{id:`haskell`,name:`Haskell`,aliases:[`hs`],import:(()=>z(()=>import(`./haskell-DybKb9uW.js`),[]))},{id:`haxe`,name:`Haxe`,import:(()=>z(()=>import(`./haxe-DLRwZxmt.js`),[]))},{id:`hcl`,name:`HashiCorp HCL`,import:(()=>z(()=>import(`./hcl-CusCzwOk.js`),[]))},{id:`hjson`,name:`Hjson`,import:(()=>z(()=>import(`./hjson-BygWIJ-3.js`),[]))},{id:`hlsl`,name:`HLSL`,import:(()=>z(()=>import(`./hlsl-DCKvuEyZ.js`),[]))},{id:`html`,name:`HTML`,import:(()=>z(()=>import(`./html-2p0RvXi4.js`).then(e=>e.n),__vite__mapDeps([61,1,62,63])))},{id:`html-derivative`,name:`HTML (Derivative)`,import:(()=>z(()=>import(`./html-derivative-BiTPuOba.js`),__vite__mapDeps([75,61,1,62,63])))},{id:`http`,name:`HTTP`,import:(()=>z(()=>import(`./http-CHd2gYPf.js`),__vite__mapDeps([114,94,1,63,95,72,73,67,88,68,69])))},{id:`hurl`,name:`Hurl`,import:(()=>z(()=>import(`./hurl-boMPgDm9.js`),__vite__mapDeps([115,116,94,1,63,95,72,73,68,69])))},{id:`hxml`,name:`HXML`,import:(()=>z(()=>import(`./hxml-BQvjiuBt.js`),__vite__mapDeps([117,118])))},{id:`hy`,name:`Hy`,import:(()=>z(()=>import(`./hy-DzZa6alE.js`),[]))},{id:`imba`,name:`Imba`,import:(()=>z(()=>import(`./imba-aiXalPnK.js`),[]))},{id:`ini`,name:`INI`,aliases:[`properties`],import:(()=>z(()=>import(`./ini-CAvrVa5R.js`),[]))},{id:`java`,name:`Java`,import:(()=>z(()=>import(`./java-PRMSQp24.js`).then(e=>e.n),__vite__mapDeps([69,1])))},{id:`javascript`,name:`JavaScript`,aliases:[`js`,`cjs`,`mjs`],import:(()=>z(()=>import(`./javascript-DQR6GQKs.js`).then(e=>e.n),__vite__mapDeps([63,1])))},{id:`jinja`,name:`Jinja`,import:(()=>z(()=>import(`./jinja-B-zKiwlp.js`),__vite__mapDeps([119,61,1,62,63])))},{id:`jison`,name:`Jison`,import:(()=>z(()=>import(`./jison-C2vJYjbJ.js`),__vite__mapDeps([120,63,1])))},{id:`json`,name:`JSON`,import:(()=>z(()=>import(`./json-uWUKqOxq.js`).then(e=>e.n),__vite__mapDeps([67,1])))},{id:`json5`,name:`JSON5`,import:(()=>z(()=>import(`./json5-R_LXJXL0.js`),[]))},{id:`jsonc`,name:`JSON with Comments`,import:(()=>z(()=>import(`./jsonc-tC5zvrPO.js`),[]))},{id:`jsonl`,name:`JSON Lines`,import:(()=>z(()=>import(`./jsonl-BAwnWh7U.js`),[]))},{id:`jsonnet`,name:`Jsonnet`,import:(()=>z(()=>import(`./jsonnet-CPj4HCRm.js`),[]))},{id:`jssm`,name:`JSSM`,aliases:[`fsl`],import:(()=>z(()=>import(`./jssm-B7HswxOM.js`),[]))},{id:`jsx`,name:`JSX`,import:(()=>z(()=>import(`./jsx-z4TGELE1.js`).then(e=>e.n),__vite__mapDeps([95,1])))},{id:`julia`,name:`Julia`,aliases:[`jl`],import:(()=>z(()=>import(`./julia-DJ8MrQPA.js`),__vite__mapDeps([121,84,1,85,79,86,76,63,81,122])))},{id:`just`,name:`Just`,import:(()=>z(()=>import(`./just-BvQHq7VE.js`),__vite__mapDeps([123,63,1,124,62,61,76,68,69,81,93,79,84,85,86,94,95,72,73,96,97,88,98])))},{id:`kdl`,name:`KDL`,import:(()=>z(()=>import(`./kdl-B6blIqLq.js`),[]))},{id:`kotlin`,name:`Kotlin`,aliases:[`kt`,`kts`],import:(()=>z(()=>import(`./kotlin-DVAEYiwY.js`),[]))},{id:`kusto`,name:`Kusto`,aliases:[`kql`],import:(()=>z(()=>import(`./kusto-Ba87977j.js`),[]))},{id:`latex`,name:`LaTeX`,import:(()=>z(()=>import(`./latex-ChNeshUC.js`),__vite__mapDeps([125,126,122,1])))},{id:`lean`,name:`Lean 4`,aliases:[`lean4`],import:(()=>z(()=>import(`./lean-CJ_KLkrJ.js`),[]))},{id:`less`,name:`Less`,import:(()=>z(()=>import(`./less-Dfn9YC_2.js`),[]))},{id:`liquid`,name:`Liquid`,import:(()=>z(()=>import(`./liquid-KNJEBOwW.js`),__vite__mapDeps([127,62,1,61,63,67])))},{id:`llvm`,name:`LLVM IR`,import:(()=>z(()=>import(`./llvm-6UDP3NQb.js`),[]))},{id:`log`,name:`Log file`,import:(()=>z(()=>import(`./log-QW3dqr1D.js`),[]))},{id:`logo`,name:`Logo`,import:(()=>z(()=>import(`./logo-DUinJheI.js`),[]))},{id:`lua`,name:`Lua`,import:(()=>z(()=>import(`./lua-D8NNsLbC.js`).then(e=>e.n),__vite__mapDeps([97,1,79])))},{id:`luau`,name:`Luau`,import:(()=>z(()=>import(`./luau-B1vcBzl8.js`),[]))},{id:`make`,name:`Makefile`,aliases:[`makefile`],import:(()=>z(()=>import(`./make-CqNL10gS.js`),[]))},{id:`markdown`,name:`Markdown`,aliases:[`md`],import:(()=>z(()=>import(`./markdown-BQNMNiYS.js`),[]))},{id:`marko`,name:`Marko`,import:(()=>z(()=>import(`./marko-HGo5Qtz4.js`),__vite__mapDeps([128,62,1,129,65,73])))},{id:`matlab`,name:`MATLAB`,import:(()=>z(()=>import(`./matlab-tHQDNC9G.js`),[]))},{id:`mdc`,name:`MDC`,import:(()=>z(()=>import(`./mdc-omkodQB5.js`),__vite__mapDeps([130,75,61,1,62,63,100,98])))},{id:`mdx`,name:`MDX`,import:(()=>z(()=>import(`./mdx-D4kZ6c6G.js`),[]))},{id:`mermaid`,name:`Mermaid`,aliases:[`mmd`],import:(()=>z(()=>import(`./mermaid-DlR4U4Pe.js`),[]))},{id:`mipsasm`,name:`MIPS Assembly`,aliases:[`mips`],import:(()=>z(()=>import(`./mipsasm-DYyZAum-.js`),[]))},{id:`mojo`,name:`Mojo`,import:(()=>z(()=>import(`./mojo-q9wuEYKR.js`),[]))},{id:`moonbit`,name:`MoonBit`,aliases:[`mbt`,`mbti`],import:(()=>z(()=>import(`./moonbit-C9roWxMb.js`),[]))},{id:`move`,name:`Move`,import:(()=>z(()=>import(`./move-BvhjG2ic.js`),[]))},{id:`narrat`,name:`Narrat Language`,aliases:[`nar`],import:(()=>z(()=>import(`./narrat-BXGbPwG3.js`),[]))},{id:`nextflow`,name:`Nextflow`,aliases:[`nf`],import:(()=>z(()=>import(`./nextflow-Adq02pv-.js`),__vite__mapDeps([131,132])))},{id:`nextflow-groovy`,name:`Nextflow Groovy`,import:(()=>z(()=>import(`./nextflow-groovy-CMy5-Z4k.js`),[]))},{id:`nginx`,name:`Nginx`,import:(()=>z(()=>import(`./nginx-ByvWruGD.js`),__vite__mapDeps([133,97,1,79])))},{id:`nim`,name:`Nim`,import:(()=>z(()=>import(`./nim-BrMojX4O.js`),__vite__mapDeps([134,79,1,62,85,61,63,100,68,69])))},{id:`nix`,name:`Nix`,import:(()=>z(()=>import(`./nix-B9EAdptu.js`),[]))},{id:`nushell`,name:`nushell`,aliases:[`nu`],import:(()=>z(()=>import(`./nushell-BsY59i7N.js`),[]))},{id:`objective-c`,name:`Objective-C`,aliases:[`objc`],import:(()=>z(()=>import(`./objective-c-CoeQAcnP.js`),[]))},{id:`objective-cpp`,name:`Objective-C++`,import:(()=>z(()=>import(`./objective-cpp-BysdFvND.js`),[]))},{id:`ocaml`,name:`OCaml`,import:(()=>z(()=>import(`./ocaml-CrtQYMMK.js`),[]))},{id:`odin`,name:`Odin`,import:(()=>z(()=>import(`./odin-B8pz4gIL.js`),[]))},{id:`openscad`,name:`OpenSCAD`,aliases:[`scad`],import:(()=>z(()=>import(`./openscad-DcKia-sV.js`),[]))},{id:`pascal`,name:`Pascal`,import:(()=>z(()=>import(`./pascal-zM5SlmgF.js`),[]))},{id:`perl`,name:`Perl`,import:(()=>z(()=>import(`./perl-Bd_0l-b4.js`),__vite__mapDeps([124,62,1,61,63,76,68,69])))},{id:`php`,name:`PHP`,import:(()=>z(()=>import(`./php-D-DLTnWJ.js`),__vite__mapDeps([135,62,1,61,63,67,76,68,69])))},{id:`pkl`,name:`Pkl`,import:(()=>z(()=>import(`./pkl-C_r_zLLt.js`),[]))},{id:`plsql`,name:`PL/SQL`,import:(()=>z(()=>import(`./plsql-BzyjheXU.js`),[]))},{id:`po`,name:`Gettext PO`,aliases:[`pot`,`potx`],import:(()=>z(()=>import(`./po-Dz4OaDNi.js`),[]))},{id:`polar`,name:`Polar`,import:(()=>z(()=>import(`./polar-Che1XC2Z.js`),[]))},{id:`postcss`,name:`PostCSS`,import:(()=>z(()=>import(`./postcss-DouzwG4F.js`),[]))},{id:`powerquery`,name:`PowerQuery`,import:(()=>z(()=>import(`./powerquery-YOdcTZmd.js`),[]))},{id:`powershell`,name:`PowerShell`,aliases:[`ps`,`ps1`],import:(()=>z(()=>import(`./powershell-8ojzYH34.js`),[]))},{id:`prisma`,name:`Prisma`,import:(()=>z(()=>import(`./prisma-DCmjceML.js`),[]))},{id:`prolog`,name:`Prolog`,import:(()=>z(()=>import(`./prolog-ByNNz2pB.js`),[]))},{id:`proto`,name:`Protocol Buffer 3`,aliases:[`protobuf`],import:(()=>z(()=>import(`./proto-DWMt6Qu1.js`),[]))},{id:`pug`,name:`Pug`,aliases:[`jade`],import:(()=>z(()=>import(`./pug-D2aO-l2T.js`),__vite__mapDeps([136,62,1,61,63])))},{id:`puppet`,name:`Puppet`,import:(()=>z(()=>import(`./puppet-osfKyZp4.js`),[]))},{id:`purescript`,name:`PureScript`,import:(()=>z(()=>import(`./purescript-ClIblkvh.js`),[]))},{id:`python`,name:`Python`,aliases:[`py`],import:(()=>z(()=>import(`./python-Ctyr4faP.js`),[]))},{id:`qml`,name:`QML`,import:(()=>z(()=>import(`./qml-CyQVzNXS.js`),__vite__mapDeps([137,63,1])))},{id:`qmldir`,name:`QML Directory`,import:(()=>z(()=>import(`./qmldir-CbNgyhnI.js`),[]))},{id:`qss`,name:`Qt Style Sheets`,import:(()=>z(()=>import(`./qss-LbRHzb21.js`),[]))},{id:`r`,name:`R`,import:(()=>z(()=>import(`./r-Dvfjp0wc.js`).then(e=>e.n),__vite__mapDeps([122,1])))},{id:`racket`,name:`Racket`,import:(()=>z(()=>import(`./racket-DI8v8nzD.js`),[]))},{id:`raku`,name:`Raku`,aliases:[`perl6`],import:(()=>z(()=>import(`./raku-CX1q9GW0.js`),[]))},{id:`razor`,name:`ASP.NET Razor`,import:(()=>z(()=>import(`./razor-8tvJXsO3.js`),__vite__mapDeps([138,139,61,1,62,63])))},{id:`reg`,name:`Windows Registry Script`,import:(()=>z(()=>import(`./reg-FMjhUQE-.js`),[]))},{id:`regexp`,name:`RegExp`,aliases:[`regex`],import:(()=>z(()=>import(`./regexp-CCSe1Fc4.js`).then(e=>e.n),__vite__mapDeps([86,1])))},{id:`rel`,name:`Rel`,import:(()=>z(()=>import(`./rel-Ce0UO-OB.js`),[]))},{id:`riscv`,name:`RISC-V`,import:(()=>z(()=>import(`./riscv-BFZrdZtB.js`),[]))},{id:`ron`,name:`RON`,import:(()=>z(()=>import(`./ron-D0t4kvJG.js`),[]))},{id:`rosmsg`,name:`ROS Interface`,import:(()=>z(()=>import(`./rosmsg-DEJ8Snbv.js`),[]))},{id:`rst`,name:`reStructuredText`,import:(()=>z(()=>import(`./rst-C4AZyQQl.js`),__vite__mapDeps([140,141,84,1,85,79,86,76,75,61,62,63,81,93,94,95,72,73,96,97,88,68,69,98])))},{id:`ruby`,name:`Ruby`,aliases:[`rb`],import:(()=>z(()=>import(`./ruby-O_z2NTLY.js`),__vite__mapDeps([93,79,1,84,85,86,76,62,94,63,95,72,73,96,61,97,88,68,69,98])))},{id:`rust`,name:`Rust`,aliases:[`rs`],import:(()=>z(()=>import(`./rust-2jBzrC0l.js`),[]))},{id:`sas`,name:`SAS`,import:(()=>z(()=>import(`./sas-BtnF4zaV.js`),__vite__mapDeps([142,76,1])))},{id:`sass`,name:`Sass`,import:(()=>z(()=>import(`./sass-DD75Izu_.js`),[]))},{id:`scala`,name:`Scala`,import:(()=>z(()=>import(`./scala-DpBKROIu.js`),[]))},{id:`scheme`,name:`Scheme`,import:(()=>z(()=>import(`./scheme-DM2jzwUK.js`),[]))},{id:`scss`,name:`SCSS`,import:(()=>z(()=>import(`./scss-GAyp5euH.js`).then(e=>e.n),__vite__mapDeps([65,1,62])))},{id:`sdbl`,name:`1C (Query)`,aliases:[`1c-query`],import:(()=>z(()=>import(`./sdbl-C34Cg6e7.js`),[]))},{id:`shaderlab`,name:`ShaderLab`,aliases:[`shader`],import:(()=>z(()=>import(`./shaderlab-nM5YZwa5.js`),__vite__mapDeps([143,144])))},{id:`shellscript`,name:`Shell`,aliases:[`bash`,`sh`,`shell`,`zsh`],import:(()=>z(()=>import(`./shellscript-DxfzKSgU.js`).then(e=>e.n),__vite__mapDeps([88,1])))},{id:`shellsession`,name:`Shell Session`,aliases:[`console`],import:(()=>z(()=>import(`./shellsession-D2OCI4Gv.js`),__vite__mapDeps([145,88,1])))},{id:`smalltalk`,name:`Smalltalk`,import:(()=>z(()=>import(`./smalltalk-Bm0qg6SA.js`),[]))},{id:`solidity`,name:`Solidity`,import:(()=>z(()=>import(`./solidity-H9fSjkQP.js`),[]))},{id:`soy`,name:`Closure Templates`,aliases:[`closure-templates`],import:(()=>z(()=>import(`./soy-DrLNhqfp.js`),__vite__mapDeps([146,61,1,62,63])))},{id:`sparql`,name:`SPARQL`,import:(()=>z(()=>import(`./sparql-CsM6F2Yv.js`),__vite__mapDeps([147,148])))},{id:`splunk`,name:`Splunk Query Language`,aliases:[`spl`],import:(()=>z(()=>import(`./splunk-CDTN2iAG.js`),[]))},{id:`sql`,name:`SQL`,import:(()=>z(()=>import(`./sql-CoqObhgo.js`).then(e=>e.n),__vite__mapDeps([76,1])))},{id:`ssh-config`,name:`SSH Config`,import:(()=>z(()=>import(`./ssh-config-C3Wv6qRp.js`),[]))},{id:`stata`,name:`Stata`,import:(()=>z(()=>import(`./stata-Bk3cgfXJ.js`),__vite__mapDeps([149,76,1])))},{id:`stylus`,name:`Stylus`,aliases:[`styl`],import:(()=>z(()=>import(`./stylus-D0uTFXCy.js`),[]))},{id:`surrealql`,name:`SurrealQL`,aliases:[`surql`],import:(()=>z(()=>import(`./surrealql-Dkz0DPK8.js`),__vite__mapDeps([150,63,1])))},{id:`svelte`,name:`Svelte`,import:(()=>z(()=>import(`./svelte-23si1KV5.js`),__vite__mapDeps([151,62,1,63,71,73])))},{id:`swift`,name:`Swift`,import:(()=>z(()=>import(`./swift-DtMMgvRI.js`),[]))},{id:`system-verilog`,name:`SystemVerilog`,import:(()=>z(()=>import(`./system-verilog-Bj7X_lq4.js`),[]))},{id:`systemd`,name:`Systemd Units`,import:(()=>z(()=>import(`./systemd-CH8ApCUs.js`),[]))},{id:`talonscript`,name:`TalonScript`,aliases:[`talon`],import:(()=>z(()=>import(`./talonscript-70lVC3cw.js`),[]))},{id:`tasl`,name:`Tasl`,import:(()=>z(()=>import(`./tasl-WQR8VslV.js`),[]))},{id:`tcl`,name:`Tcl`,import:(()=>z(()=>import(`./tcl-caTR_frn.js`),[]))},{id:`templ`,name:`Templ`,import:(()=>z(()=>import(`./templ-CPxlP4vF.js`),__vite__mapDeps([152,62,1,153,63])))},{id:`terraform`,name:`Terraform`,aliases:[`tf`,`tfvars`],import:(()=>z(()=>import(`./terraform-CVRZ4SZ4.js`),[]))},{id:`tex`,name:`TeX`,import:(()=>z(()=>import(`./tex-ugJpgYPc.js`),__vite__mapDeps([126,122,1])))},{id:`toml`,name:`TOML`,import:(()=>z(()=>import(`./toml-B7D2mIDU.js`),[]))},{id:`ts-tags`,name:`TypeScript with Tags`,aliases:[`lit`],import:(()=>z(()=>import(`./ts-tags-BovP9TMu.js`),__vite__mapDeps([154,62,1,85,79,61,63,76,73,68,69])))},{id:`tsv`,name:`TSV`,import:(()=>z(()=>import(`./tsv-2kdn5dqL.js`),[]))},{id:`tsx`,name:`TSX`,import:(()=>z(()=>import(`./tsx-DJfG3fzg.js`).then(e=>e.n),__vite__mapDeps([72,1])))},{id:`turtle`,name:`Turtle`,import:(()=>z(()=>import(`./turtle-DaQac_UT.js`),[]))},{id:`twig`,name:`Twig`,import:(()=>z(()=>import(`./twig-B7VUm2Ca.js`),__vite__mapDeps([155,62,1,63,135,61,67,76,68,69,81,93,79,84,85,86,94,95,72,73,96,97,88,98,65])))},{id:`typescript`,name:`TypeScript`,aliases:[`ts`,`cts`,`mts`],import:(()=>z(()=>import(`./typescript-BLfAIchl.js`).then(e=>e.n),__vite__mapDeps([73,1])))},{id:`typespec`,name:`TypeSpec`,aliases:[`tsp`],import:(()=>z(()=>import(`./typespec-ymBaOi_c.js`),[]))},{id:`typst`,name:`Typst`,aliases:[`typ`],import:(()=>z(()=>import(`./typst-DkvUYMT-.js`),[]))},{id:`v`,name:`V`,import:(()=>z(()=>import(`./v-D4997FGs.js`),[]))},{id:`vala`,name:`Vala`,import:(()=>z(()=>import(`./vala-AFg9DmKE.js`),[]))},{id:`vb`,name:`Visual Basic`,aliases:[`cmd`],import:(()=>z(()=>import(`./vb-DNUJ9fOP.js`),[]))},{id:`verilog`,name:`Verilog`,import:(()=>z(()=>import(`./verilog-BrnAQ3tF.js`),[]))},{id:`vhdl`,name:`VHDL`,import:(()=>z(()=>import(`./vhdl-DoK4PjhE.js`),[]))},{id:`viml`,name:`Vim Script`,aliases:[`vim`,`vimscript`],import:(()=>z(()=>import(`./viml-D6EKG66q.js`),[]))},{id:`vue`,name:`Vue`,import:(()=>z(()=>import(`./vue-m75pWowk.js`),__vite__mapDeps([156,62,1,75,61,63,67,73])))},{id:`vue-html`,name:`Vue HTML`,import:(()=>z(()=>import(`./vue-html-odHs7IMn.js`),__vite__mapDeps([157,63,1])))},{id:`vue-vine`,name:`Vue Vine`,import:(()=>z(()=>import(`./vue-vine-BbBB3V_G.js`),__vite__mapDeps([158,62,1,63,129,71,65,159])))},{id:`vyper`,name:`Vyper`,aliases:[`vy`],import:(()=>z(()=>import(`./vyper-CwSN64Jn.js`),[]))},{id:`wasm`,name:`WebAssembly`,import:(()=>z(()=>import(`./wasm-BhQEkzil.js`),[]))},{id:`wenyan`,name:`Wenyan`,aliases:[`文言`],import:(()=>z(()=>import(`./wenyan-BC7irgM3.js`),[]))},{id:`wgsl`,name:`WGSL`,import:(()=>z(()=>import(`./wgsl-W-3UHMDO.js`),[]))},{id:`wikitext`,name:`Wikitext`,aliases:[`mediawiki`,`wiki`],import:(()=>z(()=>import(`./wikitext-T1DoFcm8.js`),[]))},{id:`wit`,name:`WebAssembly Interface Types`,import:(()=>z(()=>import(`./wit-DIrx_eCI.js`),[]))},{id:`wolfram`,name:`Wolfram`,aliases:[`wl`],import:(()=>z(()=>import(`./wolfram-Cza4b443.js`),[]))},{id:`xml`,name:`XML`,import:(()=>z(()=>import(`./xml-BHzIcDWI.js`).then(e=>e.n),__vite__mapDeps([68,1,69])))},{id:`xsl`,name:`XSL`,import:(()=>z(()=>import(`./xsl-DTLhN7uu.js`),__vite__mapDeps([160,68,1,69])))},{id:`yaml`,name:`YAML`,aliases:[`yml`],import:(()=>z(()=>import(`./yaml-DOZ10aZe.js`).then(e=>e.n),__vite__mapDeps([98,1])))},{id:`zenscript`,name:`ZenScript`,import:(()=>z(()=>import(`./zenscript-DDAXkseY.js`),[]))},{id:`zig`,name:`Zig`,import:(()=>z(()=>import(`./zig-CrzwMpQE.js`),[]))}],Nh=Object.fromEntries(Mh.map(e=>[e.id,e.import])),Ph=Object.fromEntries(Mh.flatMap(e=>e.aliases?.map(t=>[t,e.import])||[])),Fh={...Nh,...Ph},Ih=Object.fromEntries([{id:`andromeeda`,displayName:`Andromeeda`,type:`dark`,import:(()=>z(()=>import(`./andromeeda-C3nkvRhj.js`),[]))},{id:`aurora-x`,displayName:`Aurora X`,type:`dark`,import:(()=>z(()=>import(`./aurora-x-BPgGL50S.js`),[]))},{id:`ayu-dark`,displayName:`Ayu Dark`,type:`dark`,import:(()=>z(()=>import(`./ayu-dark-C50MYKhw.js`),[]))},{id:`ayu-light`,displayName:`Ayu Light`,type:`light`,import:(()=>z(()=>import(`./ayu-light-DyIp0Idy.js`),[]))},{id:`ayu-mirage`,displayName:`Ayu Mirage`,type:`dark`,import:(()=>z(()=>import(`./ayu-mirage-BAdm8pKU.js`),[]))},{id:`catppuccin-frappe`,displayName:`Catppuccin Frappé`,type:`dark`,import:(()=>z(()=>import(`./catppuccin-frappe-Dm3rVY3b.js`),[]))},{id:`catppuccin-latte`,displayName:`Catppuccin Latte`,type:`light`,import:(()=>z(()=>import(`./catppuccin-latte-ZxS-ga_K.js`),[]))},{id:`catppuccin-macchiato`,displayName:`Catppuccin Macchiato`,type:`dark`,import:(()=>z(()=>import(`./catppuccin-macchiato-B0bAzXh0.js`),[]))},{id:`catppuccin-mocha`,displayName:`Catppuccin Mocha`,type:`dark`,import:(()=>z(()=>import(`./catppuccin-mocha-BeMC5hqi.js`),[]))},{id:`dark-plus`,displayName:`Dark Plus`,type:`dark`,import:(()=>z(()=>import(`./dark-plus-sn-FFTT1.js`),[]))},{id:`dracula`,displayName:`Dracula Theme`,type:`dark`,import:(()=>z(()=>import(`./dracula-yI5kpKp5.js`),[]))},{id:`dracula-soft`,displayName:`Dracula Theme Soft`,type:`dark`,import:(()=>z(()=>import(`./dracula-soft-CYF6cJce.js`),[]))},{id:`everforest-dark`,displayName:`Everforest Dark`,type:`dark`,import:(()=>z(()=>import(`./everforest-dark-CN77B1NJ.js`),[]))},{id:`everforest-light`,displayName:`Everforest Light`,type:`light`,import:(()=>z(()=>import(`./everforest-light-CyFxGMIs.js`),[]))},{id:`github-dark`,displayName:`GitHub Dark`,type:`dark`,import:(()=>z(()=>import(`./github-dark-BWCf99kM.js`),[]))},{id:`github-dark-default`,displayName:`GitHub Dark Default`,type:`dark`,import:(()=>z(()=>import(`./github-dark-default-DZ1m_6OP.js`),[]))},{id:`github-dark-dimmed`,displayName:`GitHub Dark Dimmed`,type:`dark`,import:(()=>z(()=>import(`./github-dark-dimmed-CUXSQ8bS.js`),[]))},{id:`github-dark-high-contrast`,displayName:`GitHub Dark High Contrast`,type:`dark`,import:(()=>z(()=>import(`./github-dark-high-contrast-B6BvU8H-.js`),[]))},{id:`github-light`,displayName:`GitHub Light`,type:`light`,import:(()=>z(()=>import(`./github-light-Ch-E92cy.js`),[]))},{id:`github-light-default`,displayName:`GitHub Light Default`,type:`light`,import:(()=>z(()=>import(`./github-light-default-CKFslV7i.js`),[]))},{id:`github-light-high-contrast`,displayName:`GitHub Light High Contrast`,type:`light`,import:(()=>z(()=>import(`./github-light-high-contrast-DiJVeRlZ.js`),[]))},{id:`gruvbox-dark-hard`,displayName:`Gruvbox Dark Hard`,type:`dark`,import:(()=>z(()=>import(`./gruvbox-dark-hard-CLbDN-E3.js`),[]))},{id:`gruvbox-dark-medium`,displayName:`Gruvbox Dark Medium`,type:`dark`,import:(()=>z(()=>import(`./gruvbox-dark-medium-Df0L0qje.js`),[]))},{id:`gruvbox-dark-soft`,displayName:`Gruvbox Dark Soft`,type:`dark`,import:(()=>z(()=>import(`./gruvbox-dark-soft-DV6TAcen.js`),[]))},{id:`gruvbox-light-hard`,displayName:`Gruvbox Light Hard`,type:`light`,import:(()=>z(()=>import(`./gruvbox-light-hard-CWXUzp9b.js`),[]))},{id:`gruvbox-light-medium`,displayName:`Gruvbox Light Medium`,type:`light`,import:(()=>z(()=>import(`./gruvbox-light-medium-BOHMe1-7.js`),[]))},{id:`gruvbox-light-soft`,displayName:`Gruvbox Light Soft`,type:`light`,import:(()=>z(()=>import(`./gruvbox-light-soft-DrrS2sdV.js`),[]))},{id:`horizon`,displayName:`Horizon`,type:`dark`,import:(()=>z(()=>import(`./horizon-DSOVAzyH.js`),[]))},{id:`horizon-bright`,displayName:`Horizon Bright`,type:`light`,import:(()=>z(()=>import(`./horizon-bright-DKfVjGj_.js`),[]))},{id:`houston`,displayName:`Houston`,type:`dark`,import:(()=>z(()=>import(`./houston-Ddm8AgpV.js`),[]))},{id:`kanagawa-dragon`,displayName:`Kanagawa Dragon`,type:`dark`,import:(()=>z(()=>import(`./kanagawa-dragon-BpeLlraV.js`),[]))},{id:`kanagawa-lotus`,displayName:`Kanagawa Lotus`,type:`light`,import:(()=>z(()=>import(`./kanagawa-lotus-CLnIPAGs.js`),[]))},{id:`kanagawa-wave`,displayName:`Kanagawa Wave`,type:`dark`,import:(()=>z(()=>import(`./kanagawa-wave-BglPniBb.js`),[]))},{id:`laserwave`,displayName:`LaserWave`,type:`dark`,import:(()=>z(()=>import(`./laserwave-C-NuzoMp.js`),[]))},{id:`light-plus`,displayName:`Light Plus`,type:`light`,import:(()=>z(()=>import(`./light-plus-B3BLlguG.js`),[]))},{id:`material-theme`,displayName:`Material Theme`,type:`dark`,import:(()=>z(()=>import(`./material-theme-rbV8EefR.js`),[]))},{id:`material-theme-darker`,displayName:`Material Theme Darker`,type:`dark`,import:(()=>z(()=>import(`./material-theme-darker-BZrskvoo.js`),[]))},{id:`material-theme-lighter`,displayName:`Material Theme Lighter`,type:`light`,import:(()=>z(()=>import(`./material-theme-lighter-B0CBBjBw.js`),[]))},{id:`material-theme-ocean`,displayName:`Material Theme Ocean`,type:`dark`,import:(()=>z(()=>import(`./material-theme-ocean-CX_CHnQq.js`),[]))},{id:`material-theme-palenight`,displayName:`Material Theme Palenight`,type:`dark`,import:(()=>z(()=>import(`./material-theme-palenight-ztiOCPbw.js`),[]))},{id:`min-dark`,displayName:`Min Dark`,type:`dark`,import:(()=>z(()=>import(`./min-dark-BX-xHAD2.js`),[]))},{id:`min-light`,displayName:`Min Light`,type:`light`,import:(()=>z(()=>import(`./min-light-Bxw0_Gqq.js`),[]))},{id:`monokai`,displayName:`Monokai`,type:`dark`,import:(()=>z(()=>import(`./monokai-D9vrJ8JM.js`),[]))},{id:`night-owl`,displayName:`Night Owl`,type:`dark`,import:(()=>z(()=>import(`./night-owl-CBQBcbmw.js`),[]))},{id:`night-owl-light`,displayName:`Night Owl Light`,type:`light`,import:(()=>z(()=>import(`./night-owl-light-CC-brflp.js`),[]))},{id:`nord`,displayName:`Nord`,type:`dark`,import:(()=>z(()=>import(`./nord-DxASd4qG.js`),[]))},{id:`one-dark-pro`,displayName:`One Dark Pro`,type:`dark`,import:(()=>z(()=>import(`./one-dark-pro-3sSHqoqQ.js`),[]))},{id:`one-light`,displayName:`One Light`,type:`light`,import:(()=>z(()=>import(`./one-light-LUZAvT8g.js`),[]))},{id:`plastic`,displayName:`Plastic`,type:`dark`,import:(()=>z(()=>import(`./plastic-B3cRtgKD.js`),[]))},{id:`poimandres`,displayName:`Poimandres`,type:`dark`,import:(()=>z(()=>import(`./poimandres-BBbtYwmR.js`),[]))},{id:`red`,displayName:`Red`,type:`dark`,import:(()=>z(()=>import(`./red-CSz3QEOw.js`),[]))},{id:`rose-pine`,displayName:`Rosé Pine`,type:`dark`,import:(()=>z(()=>import(`./rose-pine-HzwmOzHM.js`),[]))},{id:`rose-pine-dawn`,displayName:`Rosé Pine Dawn`,type:`light`,import:(()=>z(()=>import(`./rose-pine-dawn-CSp9xAF9.js`),[]))},{id:`rose-pine-moon`,displayName:`Rosé Pine Moon`,type:`dark`,import:(()=>z(()=>import(`./rose-pine-moon-Cnzr2Cw0.js`),[]))},{id:`slack-dark`,displayName:`Slack Dark`,type:`dark`,import:(()=>z(()=>import(`./slack-dark-DIIV3bpD.js`),[]))},{id:`slack-ochin`,displayName:`Slack Ochin`,type:`light`,import:(()=>z(()=>import(`./slack-ochin-BTkxWjEP.js`),[]))},{id:`snazzy-light`,displayName:`Snazzy Light`,type:`light`,import:(()=>z(()=>import(`./snazzy-light-ClAuuhn4.js`),[]))},{id:`solarized-dark`,displayName:`Solarized Dark`,type:`dark`,import:(()=>z(()=>import(`./solarized-dark-93sEWmYT.js`),[]))},{id:`solarized-light`,displayName:`Solarized Light`,type:`light`,import:(()=>z(()=>import(`./solarized-light-C74FvgcO.js`),[]))},{id:`synthwave-84`,displayName:`Synthwave '84`,type:`dark`,import:(()=>z(()=>import(`./synthwave-84-DAroyZBu.js`),[]))},{id:`tokyo-night`,displayName:`Tokyo Night`,type:`dark`,import:(()=>z(()=>import(`./tokyo-night-CDyT1jCI.js`),[]))},{id:`vesper`,displayName:`Vesper`,type:`dark`,import:(()=>z(()=>import(`./vesper-DCZnFmY0.js`),[]))},{id:`vitesse-black`,displayName:`Vitesse Black`,type:`dark`,import:(()=>z(()=>import(`./vitesse-black-C6KILWdF.js`),[]))},{id:`vitesse-dark`,displayName:`Vitesse Dark`,type:`dark`,import:(()=>z(()=>import(`./vitesse-dark-BuSr6OT5.js`),[]))},{id:`vitesse-light`,displayName:`Vitesse Light`,type:`light`,import:(()=>z(()=>import(`./vitesse-light-M-eYyOoe.js`),[]))}].map(e=>[e.id,e.import])),Lh=t({createOnigurumaEngine:()=>dg,getDefaultWasmLoader:()=>ug,loadWasm:()=>ig,setDefaultWasmLoader:()=>lg}),Rh=class extends Error{constructor(e){super(e),this.name=`ShikiError`}};function zh(){return 2147483648}function Bh(){return typeof performance<`u`?performance.now():Date.now()}var Vh=(e,t)=>e+(t-e%t)%t;async function Hh(e){let t,n,r={};function i(e){n=e,r.HEAPU8=new Uint8Array(e),r.HEAPU32=new Uint32Array(e)}function a(e,t,n){r.HEAPU8.copyWithin(e,t,t+n)}function o(e){try{return t.grow(e-n.byteLength+65535>>>16),i(t.buffer),1}catch{}}function s(e){let t=r.HEAPU8.length;e>>>=0;let n=zh();if(e>n)return!1;for(let r=1;r<=4;r*=2){let i=t*(1+.2/r);if(i=Math.min(i,e+100663296),o(Math.min(n,Vh(Math.max(e,i),65536))))return!0}return!1}let c=typeof TextDecoder<`u`?new TextDecoder(`utf8`):void 0;function l(e,t,n=1024){let r=t+n,i=t;for(;e[i]&&!(i>=r);)++i;if(i-t>16&&e.buffer&&c)return c.decode(e.subarray(t,i));let a=``;for(;t<i;){let n=e[t++];if(!(n&128)){a+=String.fromCharCode(n);continue}let r=e[t++]&63;if((n&224)==192){a+=String.fromCharCode((n&31)<<6|r);continue}let i=e[t++]&63;if(n=(n&240)==224?(n&15)<<12|r<<6|i:(n&7)<<18|r<<12|i<<6|e[t++]&63,n<65536)a+=String.fromCharCode(n);else{let e=n-65536;a+=String.fromCharCode(55296|e>>10,56320|e&1023)}}return a}function u(e,t){return e?l(r.HEAPU8,e,t):``}let d={emscripten_get_now:Bh,emscripten_memcpy_big:a,emscripten_resize_heap:s,fd_write:()=>0};async function f(){let n=await e({env:d,wasi_snapshot_preview1:d});t=n.memory,i(t.buffer),Object.assign(r,n),r.UTF8ToString=u}return await f(),r}var Uh=Object.defineProperty,Wh=(e,t,n)=>t in e?Uh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Gh=(e,t,n)=>Wh(e,typeof t==`symbol`?t:t+``,n),Kh=null;function qh(e){throw new Rh(e.UTF8ToString(e.getLastOnigError()))}var Jh=class e{constructor(t){Gh(this,`utf16Length`),Gh(this,`utf8Length`),Gh(this,`utf16Value`),Gh(this,`utf8Value`),Gh(this,`utf16OffsetToUtf8`),Gh(this,`utf8OffsetToUtf16`);let n=t.length,r=e._utf8ByteLength(t),i=r!==n,a=i?new Uint32Array(n+1):null;i&&(a[n]=r);let o=i?new Uint32Array(r+1):null;i&&(o[r]=n);let s=new Uint8Array(r),c=0;for(let e=0;e<n;e++){let r=t.charCodeAt(e),l=r,u=!1;if(r>=55296&&r<=56319&&e+1<n){let n=t.charCodeAt(e+1);n>=56320&&n<=57343&&(l=(r-55296<<10)+65536|n-56320,u=!0)}i&&(a[e]=c,u&&(a[e+1]=c),l<=127?o[c+0]=e:l<=2047?(o[c+0]=e,o[c+1]=e):l<=65535?(o[c+0]=e,o[c+1]=e,o[c+2]=e):(o[c+0]=e,o[c+1]=e,o[c+2]=e,o[c+3]=e)),l<=127?s[c++]=l:l<=2047?(s[c++]=192|(l&1984)>>>6,s[c++]=128|(l&63)>>>0):l<=65535?(s[c++]=224|(l&61440)>>>12,s[c++]=128|(l&4032)>>>6,s[c++]=128|(l&63)>>>0):(s[c++]=240|(l&1835008)>>>18,s[c++]=128|(l&258048)>>>12,s[c++]=128|(l&4032)>>>6,s[c++]=128|(l&63)>>>0),u&&e++}this.utf16Length=n,this.utf8Length=r,this.utf16Value=t,this.utf8Value=s,this.utf16OffsetToUtf8=a,this.utf8OffsetToUtf16=o}static _utf8ByteLength(e){let t=0;for(let n=0,r=e.length;n<r;n++){let i=e.charCodeAt(n),a=i,o=!1;if(i>=55296&&i<=56319&&n+1<r){let t=e.charCodeAt(n+1);t>=56320&&t<=57343&&(a=(i-55296<<10)+65536|t-56320,o=!0)}a<=127?t+=1:a<=2047?t+=2:a<=65535?t+=3:t+=4,o&&n++}return t}createString(e){let t=e.omalloc(this.utf8Length);return e.HEAPU8.set(this.utf8Value,t),t}},Yh=class e{constructor(t){if(Gh(this,`id`,++e.LAST_ID),Gh(this,`_onigBinding`),Gh(this,`content`),Gh(this,`utf16Length`),Gh(this,`utf8Length`),Gh(this,`utf16OffsetToUtf8`),Gh(this,`utf8OffsetToUtf16`),Gh(this,`ptr`),!Kh)throw new Rh(`Must invoke loadWasm first.`);this._onigBinding=Kh,this.content=t;let n=new Jh(t);this.utf16Length=n.utf16Length,this.utf8Length=n.utf8Length,this.utf16OffsetToUtf8=n.utf16OffsetToUtf8,this.utf8OffsetToUtf16=n.utf8OffsetToUtf16,this.utf8Length<1e4&&!e._sharedPtrInUse?(e._sharedPtr||=Kh.omalloc(1e4),e._sharedPtrInUse=!0,Kh.HEAPU8.set(n.utf8Value,e._sharedPtr),this.ptr=e._sharedPtr):this.ptr=n.createString(Kh)}convertUtf8OffsetToUtf16(e){return this.utf8OffsetToUtf16?e<0?0:e>this.utf8Length?this.utf16Length:this.utf8OffsetToUtf16[e]:e}convertUtf16OffsetToUtf8(e){return this.utf16OffsetToUtf8?e<0?0:e>this.utf16Length?this.utf8Length:this.utf16OffsetToUtf8[e]:e}dispose(){this.ptr===e._sharedPtr?e._sharedPtrInUse=!1:this._onigBinding.ofree(this.ptr)}};Gh(Yh,`LAST_ID`,0),Gh(Yh,`_sharedPtr`,0),Gh(Yh,`_sharedPtrInUse`,!1);var Xh=Yh,Zh=class{constructor(e){if(Gh(this,`_onigBinding`),Gh(this,`_ptr`),!Kh)throw new Rh(`Must invoke loadWasm first.`);let t=[],n=[];for(let r=0,i=e.length;r<i;r++){let i=new Jh(e[r]);t[r]=i.createString(Kh),n[r]=i.utf8Length}let r=Kh.omalloc(4*e.length);Kh.HEAPU32.set(t,r/4);let i=Kh.omalloc(4*e.length);Kh.HEAPU32.set(n,i/4);let a=Kh.createOnigScanner(r,i,e.length);for(let n=0,r=e.length;n<r;n++)Kh.ofree(t[n]);Kh.ofree(i),Kh.ofree(r),a===0&&qh(Kh),this._onigBinding=Kh,this._ptr=a}dispose(){this._onigBinding.freeOnigScanner(this._ptr)}findNextMatchSync(e,t,n){let r=0;if(typeof n==`number`&&(r=n),typeof e==`string`){e=new Xh(e);let n=this._findNextMatchSync(e,t,!1,r);return e.dispose(),n}return this._findNextMatchSync(e,t,!1,r)}_findNextMatchSync(e,t,n,r){let i=this._onigBinding,a=i.findNextOnigScannerMatch(this._ptr,e.id,e.ptr,e.utf8Length,e.convertUtf16OffsetToUtf8(t),r);if(a===0)return null;let o=i.HEAPU32,s=a/4,c=o[s++],l=o[s++],u=[];for(let t=0;t<l;t++){let n=e.convertUtf8OffsetToUtf16(o[s++]),r=e.convertUtf8OffsetToUtf16(o[s++]);u[t]={start:n,end:r,length:r-n}}return{index:c,captureIndices:u}}};function Qh(e){return typeof e.instantiator==`function`}function $h(e){return typeof e.default==`function`}function eg(e){return e.data!==void 0}function tg(e){return typeof Response<`u`&&e instanceof Response}function ng(e){return typeof ArrayBuffer<`u`&&(e instanceof ArrayBuffer||ArrayBuffer.isView(e))||typeof Buffer<`u`&&Buffer.isBuffer?.(e)||typeof SharedArrayBuffer<`u`&&e instanceof SharedArrayBuffer||typeof Uint32Array<`u`&&e instanceof Uint32Array}var rg;function ig(e){if(rg)return rg;async function t(){Kh=await Hh(async t=>{let n=e;return n=await n,typeof n==`function`&&(n=await n(t)),typeof n==`function`&&(n=await n(t)),Qh(n)?n=await n.instantiator(t):$h(n)?n=await n.default(t):(eg(n)&&(n=n.data),tg(n)?n=typeof WebAssembly.instantiateStreaming==`function`?await og(n)(t):await sg(n)(t):ng(n)||n instanceof WebAssembly.Module?n=await ag(n)(t):`default`in n&&n.default instanceof WebAssembly.Module&&(n=await ag(n.default)(t))),`instance`in n&&(n=n.instance),`exports`in n&&(n=n.exports),n})}return rg=t(),rg}function ag(e){return t=>WebAssembly.instantiate(e,t)}function og(e){return t=>WebAssembly.instantiateStreaming(e,t)}function sg(e){return async t=>{let n=await e.arrayBuffer();return WebAssembly.instantiate(n,t)}}var cg;function lg(e){cg=e}function ug(){return cg}async function dg(e){return e&&await ig(e),{createScanner(e){return new Zh(e.map(e=>typeof e==`string`?e:e.source))},createString(e){return new Xh(e)}}}var fg=kh({});jh(fg,Lh);var pg=class extends Error{constructor(e){super(e),this.name=`ShikiError`}};function mg(e){return hg(e)}function hg(e){return Array.isArray(e)?gg(e):e instanceof RegExp?e:typeof e==`object`?_g(e):e}function gg(e){let t=[];for(let n=0,r=e.length;n<r;n++)t[n]=hg(e[n]);return t}function _g(e){let t={};for(let n in e)t[n]=hg(e[n]);return t}function vg(e,...t){return t.forEach(t=>{for(let n in t)e[n]=t[n]}),e}function yg(e){let t=~e.lastIndexOf(`/`)||~e.lastIndexOf(`\\`);return t===0?e:~t===e.length-1?yg(e.substring(0,e.length-1)):e.substr(~t+1)}var bg=/\$(\d+)|\${(\d+):\/(downcase|upcase)}/g,xg=class{static hasCaptures(e){return e===null?!1:(bg.lastIndex=0,bg.test(e))}static replaceCaptures(e,t,n){return e.replace(bg,(e,r,i,a)=>{let o=n[parseInt(r||i,10)];if(o){let e=t.substring(o.start,o.end);for(;e[0]===`.`;)e=e.substring(1);switch(a){case`downcase`:return e.toLowerCase();case`upcase`:return e.toUpperCase();default:return e}}else return e})}};function Sg(e,t){return e<t?-1:e>t?1:0}function Cg(e,t){if(e===null&&t===null)return 0;if(!e)return-1;if(!t)return 1;let n=e.length,r=t.length;if(n===r){for(let r=0;r<n;r++){let n=Sg(e[r],t[r]);if(n!==0)return n}return 0}return n-r}function wg(e){return!!(/^#[0-9a-f]{6}$/i.test(e)||/^#[0-9a-f]{8}$/i.test(e)||/^#[0-9a-f]{3}$/i.test(e)||/^#[0-9a-f]{4}$/i.test(e))}function Tg(e){return e.replace(/[\-\\\{\}\*\+\?\|\^\$\.\,\[\]\(\)\#\s]/g,`\\$&`)}var Eg=class{constructor(e){this.fn=e}cache=new Map;get(e){if(this.cache.has(e))return this.cache.get(e);let t=this.fn(e);return this.cache.set(e,t),t}},Dg=class{constructor(e,t,n){this._colorMap=e,this._defaults=t,this._root=n}static createFromRawTheme(e,t){return this.createFromParsedTheme(Mg(e),t)}static createFromParsedTheme(e,t){return Fg(e,t)}_cachedMatchRoot=new Eg(e=>this._root.match(e));getColorMap(){return this._colorMap.getColorMap()}getDefaults(){return this._defaults}match(e){if(e===null)return this._defaults;let t=e.scopeName,n=this._cachedMatchRoot.get(t).find(t=>kg(e.parent,t.parentScopes));return n?new jg(n.fontStyle,n.foreground,n.background):null}},Og=class e{constructor(e,t){this.parent=e,this.scopeName=t}static push(t,n){for(let r of n)t=new e(t,r);return t}static from(...t){let n=null;for(let r=0;r<t.length;r++)n=new e(n,t[r]);return n}push(t){return new e(this,t)}getSegments(){let e=this,t=[];for(;e;)t.push(e.scopeName),e=e.parent;return t.reverse(),t}toString(){return this.getSegments().join(` `)}extends(e){return this===e?!0:this.parent===null?!1:this.parent.extends(e)}getExtensionIfDefined(e){let t=[],n=this;for(;n&&n!==e;)t.push(n.scopeName),n=n.parent;return n===e?t.reverse():void 0}};function kg(e,t){if(t.length===0)return!0;for(let n=0;n<t.length;n++){let r=t[n],i=!1;if(r===`>`){if(n===t.length-1)return!1;r=t[++n],i=!0}for(;e&&!Ag(e.scopeName,r);){if(i)return!1;e=e.parent}if(!e)return!1;e=e.parent}return!0}function Ag(e,t){return t===e||e.startsWith(t)&&e[t.length]===`.`}var jg=class{constructor(e,t,n){this.fontStyle=e,this.foregroundId=t,this.backgroundId=n}};function Mg(e){if(!e||!e.settings||!Array.isArray(e.settings))return[];let t=e.settings,n=[],r=0;for(let e=0,i=t.length;e<i;e++){let i=t[e];if(!i.settings)continue;let a;if(typeof i.scope==`string`){let e=i.scope;e=e.replace(/^[,]+/,``),e=e.replace(/[,]+$/,``),a=e.split(`,`)}else a=Array.isArray(i.scope)?i.scope:[``];let o=-1;if(typeof i.settings.fontStyle==`string`){o=0;let e=i.settings.fontStyle.split(` `);for(let t=0,n=e.length;t<n;t++)switch(e[t]){case`italic`:o|=1;break;case`bold`:o|=2;break;case`underline`:o|=4;break;case`strikethrough`:o|=8;break}}let s=null;typeof i.settings.foreground==`string`&&wg(i.settings.foreground)&&(s=i.settings.foreground);let c=null;typeof i.settings.background==`string`&&wg(i.settings.background)&&(c=i.settings.background);for(let t=0,i=a.length;t<i;t++){let i=a[t].trim().split(` `),l=i[i.length-1],u=null;i.length>1&&(u=i.slice(0,i.length-1),u.reverse()),n[r++]=new Ng(l,u,e,o,s,c)}}return n}var Ng=class{constructor(e,t,n,r,i,a){this.scope=e,this.parentScopes=t,this.index=n,this.fontStyle=r,this.foreground=i,this.background=a}},Pg=(e=>(e[e.NotSet=-1]=`NotSet`,e[e.None=0]=`None`,e[e.Italic=1]=`Italic`,e[e.Bold=2]=`Bold`,e[e.Underline=4]=`Underline`,e[e.Strikethrough=8]=`Strikethrough`,e))(Pg||{});function Fg(e,t){e.sort((e,t)=>{let n=Sg(e.scope,t.scope);return n!==0||(n=Cg(e.parentScopes,t.parentScopes),n!==0)?n:e.index-t.index});let n=0,r=`#000000`,i=`#ffffff`;for(;e.length>=1&&e[0].scope===``;){let t=e.shift();t.fontStyle!==-1&&(n=t.fontStyle),t.foreground!==null&&(r=t.foreground),t.background!==null&&(i=t.background)}let a=new Ig(t),o=new jg(n,a.getId(r),a.getId(i)),s=new zg(new Rg(0,null,-1,0,0),[]);for(let t=0,n=e.length;t<n;t++){let n=e[t];s.insert(0,n.scope,n.parentScopes,n.fontStyle,a.getId(n.foreground),a.getId(n.background))}return new Dg(a,o,s)}var Ig=class{_isFrozen;_lastColorId;_id2color;_color2id;constructor(e){if(this._lastColorId=0,this._id2color=[],this._color2id=Object.create(null),Array.isArray(e)){this._isFrozen=!0;for(let t=0,n=e.length;t<n;t++)this._color2id[e[t]]=t,this._id2color[t]=e[t]}else this._isFrozen=!1}getId(e){if(e===null)return 0;e=e.toUpperCase();let t=this._color2id[e];if(t)return t;if(this._isFrozen)throw Error(`Missing color in color map - ${e}`);return t=++this._lastColorId,this._color2id[e]=t,this._id2color[t]=e,t}getColorMap(){return this._id2color.slice(0)}},Lg=Object.freeze([]),Rg=class e{scopeDepth;parentScopes;fontStyle;foreground;background;constructor(e,t,n,r,i){this.scopeDepth=e,this.parentScopes=t||Lg,this.fontStyle=n,this.foreground=r,this.background=i}clone(){return new e(this.scopeDepth,this.parentScopes,this.fontStyle,this.foreground,this.background)}static cloneArr(e){let t=[];for(let n=0,r=e.length;n<r;n++)t[n]=e[n].clone();return t}acceptOverwrite(e,t,n,r){this.scopeDepth>e?console.log(`how did this happen?`):this.scopeDepth=e,t!==-1&&(this.fontStyle=t),n!==0&&(this.foreground=n),r!==0&&(this.background=r)}},zg=class e{constructor(e,t=[],n={}){this._mainRule=e,this._children=n,this._rulesWithParentScopes=t}_rulesWithParentScopes;static _cmpBySpecificity(e,t){if(e.scopeDepth!==t.scopeDepth)return t.scopeDepth-e.scopeDepth;let n=0,r=0;for(;e.parentScopes[n]===`>`&&n++,t.parentScopes[r]===`>`&&r++,!(n>=e.parentScopes.length||r>=t.parentScopes.length);){let i=t.parentScopes[r].length-e.parentScopes[n].length;if(i!==0)return i;n++,r++}return t.parentScopes.length-e.parentScopes.length}match(t){if(t!==``){let e=t.indexOf(`.`),n,r;if(e===-1?(n=t,r=``):(n=t.substring(0,e),r=t.substring(e+1)),this._children.hasOwnProperty(n))return this._children[n].match(r)}let n=this._rulesWithParentScopes.concat(this._mainRule);return n.sort(e._cmpBySpecificity),n}insert(t,n,r,i,a,o){if(n===``){this._doInsertHere(t,r,i,a,o);return}let s=n.indexOf(`.`),c,l;s===-1?(c=n,l=``):(c=n.substring(0,s),l=n.substring(s+1));let u;this._children.hasOwnProperty(c)?u=this._children[c]:(u=new e(this._mainRule.clone(),Rg.cloneArr(this._rulesWithParentScopes)),this._children[c]=u),u.insert(t+1,l,r,i,a,o)}_doInsertHere(e,t,n,r,i){if(t===null){this._mainRule.acceptOverwrite(e,n,r,i);return}for(let a=0,o=this._rulesWithParentScopes.length;a<o;a++){let o=this._rulesWithParentScopes[a];if(Cg(o.parentScopes,t)===0){o.acceptOverwrite(e,n,r,i);return}}n===-1&&(n=this._mainRule.fontStyle),r===0&&(r=this._mainRule.foreground),i===0&&(i=this._mainRule.background),this._rulesWithParentScopes.push(new Rg(e,t,n,r,i))}},Bg=class e{static toBinaryStr(e){return e.toString(2).padStart(32,`0`)}static print(t){let n=e.getLanguageId(t),r=e.getTokenType(t),i=e.getFontStyle(t),a=e.getForeground(t),o=e.getBackground(t);console.log({languageId:n,tokenType:r,fontStyle:i,foreground:a,background:o})}static getLanguageId(e){return(e&255)>>>0}static getTokenType(e){return(e&768)>>>8}static containsBalancedBrackets(e){return(e&1024)!=0}static getFontStyle(e){return(e&30720)>>>11}static getForeground(e){return(e&16744448)>>>15}static getBackground(e){return(e&4278190080)>>>24}static set(t,n,r,i,a,o,s){let c=e.getLanguageId(t),l=e.getTokenType(t),u=e.containsBalancedBrackets(t)?1:0,d=e.getFontStyle(t),f=e.getForeground(t),p=e.getBackground(t);return n!==0&&(c=n),r!==8&&(l=Hg(r)),i!==null&&(u=i?1:0),a!==-1&&(d=a),o!==0&&(f=o),s!==0&&(p=s),(c<<0|l<<8|u<<10|d<<11|f<<15|p<<24)>>>0}};function Vg(e){return e}function Hg(e){return e}function Ug(e,t){let n=[],r=Gg(e),i=r.next();for(;i!==null;){let e=0;if(i.length===2&&i.charAt(1)===`:`){switch(i.charAt(0)){case`R`:e=1;break;case`L`:e=-1;break;default:console.log(`Unknown priority ${i} in scope selector`)}i=r.next()}let t=o();if(n.push({matcher:t,priority:e}),i!==`,`)break;i=r.next()}return n;function a(){if(i===`-`){i=r.next();let e=a();return t=>!!e&&!e(t)}if(i===`(`){i=r.next();let e=s();return i===`)`&&(i=r.next()),e}if(Wg(i)){let e=[];do e.push(i),i=r.next();while(Wg(i));return n=>t(e,n)}return null}function o(){let e=[],t=a();for(;t;)e.push(t),t=a();return t=>e.every(e=>e(t))}function s(){let e=[],t=o();for(;t&&(e.push(t),i===`|`||i===`,`);){do i=r.next();while(i===`|`||i===`,`);t=o()}return t=>e.some(e=>e(t))}}function Wg(e){return!!e&&!!e.match(/[\w\.:]+/)}function Gg(e){let t=/([LR]:|[\w\.:][\w\.:\-]*|[\,\|\-\(\)])/g,n=t.exec(e);return{next:()=>{if(!n)return null;let r=n[0];return n=t.exec(e),r}}}function Kg(e){typeof e.dispose==`function`&&e.dispose()}var qg=class{constructor(e){this.scopeName=e}toKey(){return this.scopeName}},Jg=class{constructor(e,t){this.scopeName=e,this.ruleName=t}toKey(){return`${this.scopeName}#${this.ruleName}`}},Yg=class{_references=[];_seenReferenceKeys=new Set;get references(){return this._references}visitedRule=new Set;add(e){let t=e.toKey();this._seenReferenceKeys.has(t)||(this._seenReferenceKeys.add(t),this._references.push(e))}},Xg=class{constructor(e,t){this.repo=e,this.initialScopeName=t,this.seenFullScopeRequests.add(this.initialScopeName),this.Q=[new qg(this.initialScopeName)]}seenFullScopeRequests=new Set;seenPartialScopeRequests=new Set;Q;processQueue(){let e=this.Q;this.Q=[];let t=new Yg;for(let n of e)Zg(n,this.initialScopeName,this.repo,t);for(let e of t.references)if(e instanceof qg){if(this.seenFullScopeRequests.has(e.scopeName))continue;this.seenFullScopeRequests.add(e.scopeName),this.Q.push(e)}else{if(this.seenFullScopeRequests.has(e.scopeName)||this.seenPartialScopeRequests.has(e.toKey()))continue;this.seenPartialScopeRequests.add(e.toKey()),this.Q.push(e)}}};function Zg(e,t,n,r){let i=n.lookup(e.scopeName);if(!i){if(e.scopeName===t)throw Error(`No grammar provided for <${t}>`);return}let a=n.lookup(t);e instanceof qg?$g({baseGrammar:a,selfGrammar:i},r):Qg(e.ruleName,{baseGrammar:a,selfGrammar:i,repository:i.repository},r);let o=n.injections(e.scopeName);if(o)for(let e of o)r.add(new qg(e))}function Qg(e,t,n){if(t.repository&&t.repository[e]){let r=t.repository[e];e_([r],t,n)}}function $g(e,t){e.selfGrammar.patterns&&Array.isArray(e.selfGrammar.patterns)&&e_(e.selfGrammar.patterns,{...e,repository:e.selfGrammar.repository},t),e.selfGrammar.injections&&e_(Object.values(e.selfGrammar.injections),{...e,repository:e.selfGrammar.repository},t)}function e_(e,t,n){for(let r of e){if(n.visitedRule.has(r))continue;n.visitedRule.add(r);let e=r.repository?vg({},t.repository,r.repository):t.repository;Array.isArray(r.patterns)&&e_(r.patterns,{...t,repository:e},n);let i=r.include;if(!i)continue;let a=o_(i);switch(a.kind){case 0:$g({...t,selfGrammar:t.baseGrammar},n);break;case 1:$g(t,n);break;case 2:Qg(a.ruleName,{...t,repository:e},n);break;case 3:case 4:let r=a.scopeName===t.selfGrammar.scopeName?t.selfGrammar:a.scopeName===t.baseGrammar.scopeName?t.baseGrammar:void 0;if(r){let i={baseGrammar:t.baseGrammar,selfGrammar:r,repository:e};a.kind===4?Qg(a.ruleName,i,n):$g(i,n)}else a.kind===4?n.add(new Jg(a.scopeName,a.ruleName)):n.add(new qg(a.scopeName));break}}}var t_=class{kind=0},n_=class{kind=1},r_=class{constructor(e){this.ruleName=e}kind=2},i_=class{constructor(e){this.scopeName=e}kind=3},a_=class{constructor(e,t){this.scopeName=e,this.ruleName=t}kind=4};function o_(e){if(e===`$base`)return new t_;if(e===`$self`)return new n_;let t=e.indexOf(`#`);return t===-1?new i_(e):t===0?new r_(e.substring(1)):new a_(e.substring(0,t),e.substring(t+1))}var s_=/\\(\d+)/,c_=/\\(\d+)/g,l_=-1,u_=-2;function d_(e){return e}function f_(e){return e}var p_=class{$location;id;_nameIsCapturing;_name;_contentNameIsCapturing;_contentName;constructor(e,t,n,r){this.$location=e,this.id=t,this._name=n||null,this._nameIsCapturing=xg.hasCaptures(this._name),this._contentName=r||null,this._contentNameIsCapturing=xg.hasCaptures(this._contentName)}get debugName(){let e=this.$location?`${yg(this.$location.filename)}:${this.$location.line}`:`unknown`;return`${this.constructor.name}#${this.id} @ ${e}`}getName(e,t){return!this._nameIsCapturing||this._name===null||e===null||t===null?this._name:xg.replaceCaptures(this._name,e,t)}getContentName(e,t){return!this._contentNameIsCapturing||this._contentName===null?this._contentName:xg.replaceCaptures(this._contentName,e,t)}},m_=class extends p_{retokenizeCapturedWithRuleId;constructor(e,t,n,r,i){super(e,t,n,r),this.retokenizeCapturedWithRuleId=i}dispose(){}collectPatterns(e,t){throw Error(`Not supported!`)}compile(e,t){throw Error(`Not supported!`)}compileAG(e,t,n,r){throw Error(`Not supported!`)}},h_=class extends p_{_match;captures;_cachedCompiledPatterns;constructor(e,t,n,r,i){super(e,t,n,null),this._match=new b_(r,this.id),this.captures=i,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&=(this._cachedCompiledPatterns.dispose(),null)}get debugMatchRegExp(){return`${this._match.source}`}collectPatterns(e,t){t.push(this._match)}compile(e,t){return this._getCachedCompiledPatterns(e).compile(e)}compileAG(e,t,n,r){return this._getCachedCompiledPatterns(e).compileAG(e,n,r)}_getCachedCompiledPatterns(e){return this._cachedCompiledPatterns||(this._cachedCompiledPatterns=new x_,this.collectPatterns(e,this._cachedCompiledPatterns)),this._cachedCompiledPatterns}},g_=class extends p_{hasMissingPatterns;patterns;_cachedCompiledPatterns;constructor(e,t,n,r,i){super(e,t,n,r),this.patterns=i.patterns,this.hasMissingPatterns=i.hasMissingPatterns,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&=(this._cachedCompiledPatterns.dispose(),null)}collectPatterns(e,t){for(let n of this.patterns)e.getRule(n).collectPatterns(e,t)}compile(e,t){return this._getCachedCompiledPatterns(e).compile(e)}compileAG(e,t,n,r){return this._getCachedCompiledPatterns(e).compileAG(e,n,r)}_getCachedCompiledPatterns(e){return this._cachedCompiledPatterns||(this._cachedCompiledPatterns=new x_,this.collectPatterns(e,this._cachedCompiledPatterns)),this._cachedCompiledPatterns}},__=class extends p_{_begin;beginCaptures;_end;endHasBackReferences;endCaptures;applyEndPatternLast;hasMissingPatterns;patterns;_cachedCompiledPatterns;constructor(e,t,n,r,i,a,o,s,c,l){super(e,t,n,r),this._begin=new b_(i,this.id),this.beginCaptures=a,this._end=new b_(o||``,-1),this.endHasBackReferences=this._end.hasBackReferences,this.endCaptures=s,this.applyEndPatternLast=c||!1,this.patterns=l.patterns,this.hasMissingPatterns=l.hasMissingPatterns,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&=(this._cachedCompiledPatterns.dispose(),null)}get debugBeginRegExp(){return`${this._begin.source}`}get debugEndRegExp(){return`${this._end.source}`}getEndWithResolvedBackReferences(e,t){return this._end.resolveBackReferences(e,t)}collectPatterns(e,t){t.push(this._begin)}compile(e,t){return this._getCachedCompiledPatterns(e,t).compile(e)}compileAG(e,t,n,r){return this._getCachedCompiledPatterns(e,t).compileAG(e,n,r)}_getCachedCompiledPatterns(e,t){if(!this._cachedCompiledPatterns){this._cachedCompiledPatterns=new x_;for(let t of this.patterns)e.getRule(t).collectPatterns(e,this._cachedCompiledPatterns);this.applyEndPatternLast?this._cachedCompiledPatterns.push(this._end.hasBackReferences?this._end.clone():this._end):this._cachedCompiledPatterns.unshift(this._end.hasBackReferences?this._end.clone():this._end)}return this._end.hasBackReferences&&(this.applyEndPatternLast?this._cachedCompiledPatterns.setSource(this._cachedCompiledPatterns.length()-1,t):this._cachedCompiledPatterns.setSource(0,t)),this._cachedCompiledPatterns}},v_=class extends p_{_begin;beginCaptures;whileCaptures;_while;whileHasBackReferences;hasMissingPatterns;patterns;_cachedCompiledPatterns;_cachedCompiledWhilePatterns;constructor(e,t,n,r,i,a,o,s,c){super(e,t,n,r),this._begin=new b_(i,this.id),this.beginCaptures=a,this.whileCaptures=s,this._while=new b_(o,u_),this.whileHasBackReferences=this._while.hasBackReferences,this.patterns=c.patterns,this.hasMissingPatterns=c.hasMissingPatterns,this._cachedCompiledPatterns=null,this._cachedCompiledWhilePatterns=null}dispose(){this._cachedCompiledPatterns&&=(this._cachedCompiledPatterns.dispose(),null),this._cachedCompiledWhilePatterns&&=(this._cachedCompiledWhilePatterns.dispose(),null)}get debugBeginRegExp(){return`${this._begin.source}`}get debugWhileRegExp(){return`${this._while.source}`}getWhileWithResolvedBackReferences(e,t){return this._while.resolveBackReferences(e,t)}collectPatterns(e,t){t.push(this._begin)}compile(e,t){return this._getCachedCompiledPatterns(e).compile(e)}compileAG(e,t,n,r){return this._getCachedCompiledPatterns(e).compileAG(e,n,r)}_getCachedCompiledPatterns(e){if(!this._cachedCompiledPatterns){this._cachedCompiledPatterns=new x_;for(let t of this.patterns)e.getRule(t).collectPatterns(e,this._cachedCompiledPatterns)}return this._cachedCompiledPatterns}compileWhile(e,t){return this._getCachedCompiledWhilePatterns(e,t).compile(e)}compileWhileAG(e,t,n,r){return this._getCachedCompiledWhilePatterns(e,t).compileAG(e,n,r)}_getCachedCompiledWhilePatterns(e,t){return this._cachedCompiledWhilePatterns||(this._cachedCompiledWhilePatterns=new x_,this._cachedCompiledWhilePatterns.push(this._while.hasBackReferences?this._while.clone():this._while)),this._while.hasBackReferences&&this._cachedCompiledWhilePatterns.setSource(0,t||``),this._cachedCompiledWhilePatterns}},y_=class e{static createCaptureRule(e,t,n,r,i){return e.registerRule(e=>new m_(t,e,n,r,i))}static getCompiledRuleId(t,n,r){return t.id||n.registerRule(i=>{if(t.id=i,t.match)return new h_(t.$vscodeTextmateLocation,t.id,t.name,t.match,e._compileCaptures(t.captures,n,r));if(t.begin===void 0){t.repository&&(r=vg({},r,t.repository));let i=t.patterns;return i===void 0&&t.include&&(i=[{include:t.include}]),new g_(t.$vscodeTextmateLocation,t.id,t.name,t.contentName,e._compilePatterns(i,n,r))}return t.while?new v_(t.$vscodeTextmateLocation,t.id,t.name,t.contentName,t.begin,e._compileCaptures(t.beginCaptures||t.captures,n,r),t.while,e._compileCaptures(t.whileCaptures||t.captures,n,r),e._compilePatterns(t.patterns,n,r)):new __(t.$vscodeTextmateLocation,t.id,t.name,t.contentName,t.begin,e._compileCaptures(t.beginCaptures||t.captures,n,r),t.end,e._compileCaptures(t.endCaptures||t.captures,n,r),t.applyEndPatternLast,e._compilePatterns(t.patterns,n,r))}),t.id}static _compileCaptures(t,n,r){let i=[];if(t){let a=0;for(let e in t){if(e===`$vscodeTextmateLocation`)continue;let t=parseInt(e,10);t>a&&(a=t)}for(let e=0;e<=a;e++)i[e]=null;for(let a in t){if(a===`$vscodeTextmateLocation`)continue;let o=parseInt(a,10),s=0;t[a].patterns&&(s=e.getCompiledRuleId(t[a],n,r)),i[o]=e.createCaptureRule(n,t[a].$vscodeTextmateLocation,t[a].name,t[a].contentName,s)}}return i}static _compilePatterns(t,n,r){let i=[];if(t)for(let a=0,o=t.length;a<o;a++){let o=t[a],s=-1;if(o.include){let t=o_(o.include);switch(t.kind){case 0:case 1:s=e.getCompiledRuleId(r[o.include],n,r);break;case 2:let i=r[t.ruleName];i&&(s=e.getCompiledRuleId(i,n,r));break;case 3:case 4:let a=t.scopeName,c=t.kind===4?t.ruleName:null,l=n.getExternalGrammar(a,r);if(l)if(c){let t=l.repository[c];t&&(s=e.getCompiledRuleId(t,n,l.repository))}else s=e.getCompiledRuleId(l.repository.$self,n,l.repository);break}}else s=e.getCompiledRuleId(o,n,r);if(s!==-1){let e=n.getRule(s),t=!1;if((e instanceof g_||e instanceof __||e instanceof v_)&&e.hasMissingPatterns&&e.patterns.length===0&&(t=!0),t)continue;i.push(s)}}return{patterns:i,hasMissingPatterns:(t?t.length:0)!==i.length}}},b_=class e{source;ruleId;hasAnchor;hasBackReferences;_anchorCache;constructor(e,t){if(e&&typeof e==`string`){let t=e.length,n=0,r=[],i=!1;for(let a=0;a<t;a++)if(e.charAt(a)===`\\`&&a+1<t){let t=e.charAt(a+1);t===`z`?(r.push(e.substring(n,a)),r.push(`$(?!\\n)(?<!\\n)`),n=a+2):(t===`A`||t===`G`)&&(i=!0),a++}this.hasAnchor=i,n===0?this.source=e:(r.push(e.substring(n,t)),this.source=r.join(``))}else this.hasAnchor=!1,this.source=e;this.hasAnchor?this._anchorCache=this._buildAnchorCache():this._anchorCache=null,this.ruleId=t,typeof this.source==`string`?this.hasBackReferences=s_.test(this.source):this.hasBackReferences=!1}clone(){return new e(this.source,this.ruleId)}setSource(e){this.source!==e&&(this.source=e,this.hasAnchor&&(this._anchorCache=this._buildAnchorCache()))}resolveBackReferences(e,t){if(typeof this.source!=`string`)throw Error(`This method should only be called if the source is a string`);let n=t.map(t=>e.substring(t.start,t.end));return c_.lastIndex=0,this.source.replace(c_,(e,t)=>Tg(n[parseInt(t,10)]||``))}_buildAnchorCache(){if(typeof this.source!=`string`)throw Error(`This method should only be called if the source is a string`);let e=[],t=[],n=[],r=[],i,a,o,s;for(i=0,a=this.source.length;i<a;i++)o=this.source.charAt(i),e[i]=o,t[i]=o,n[i]=o,r[i]=o,o===`\\`&&i+1<a&&(s=this.source.charAt(i+1),s===`A`?(e[i+1]=``,t[i+1]=``,n[i+1]=`A`,r[i+1]=`A`):s===`G`?(e[i+1]=``,t[i+1]=`G`,n[i+1]=``,r[i+1]=`G`):(e[i+1]=s,t[i+1]=s,n[i+1]=s,r[i+1]=s),i++);return{A0_G0:e.join(``),A0_G1:t.join(``),A1_G0:n.join(``),A1_G1:r.join(``)}}resolveAnchors(e,t){return!this.hasAnchor||!this._anchorCache||typeof this.source!=`string`?this.source:e?t?this._anchorCache.A1_G1:this._anchorCache.A1_G0:t?this._anchorCache.A0_G1:this._anchorCache.A0_G0}},x_=class{_items;_hasAnchors;_cached;_anchorCache;constructor(){this._items=[],this._hasAnchors=!1,this._cached=null,this._anchorCache={A0_G0:null,A0_G1:null,A1_G0:null,A1_G1:null}}dispose(){this._disposeCaches()}_disposeCaches(){this._cached&&=(this._cached.dispose(),null),this._anchorCache.A0_G0&&(this._anchorCache.A0_G0.dispose(),this._anchorCache.A0_G0=null),this._anchorCache.A0_G1&&(this._anchorCache.A0_G1.dispose(),this._anchorCache.A0_G1=null),this._anchorCache.A1_G0&&(this._anchorCache.A1_G0.dispose(),this._anchorCache.A1_G0=null),this._anchorCache.A1_G1&&(this._anchorCache.A1_G1.dispose(),this._anchorCache.A1_G1=null)}push(e){this._items.push(e),this._hasAnchors=this._hasAnchors||e.hasAnchor}unshift(e){this._items.unshift(e),this._hasAnchors=this._hasAnchors||e.hasAnchor}length(){return this._items.length}setSource(e,t){this._items[e].source!==t&&(this._disposeCaches(),this._items[e].setSource(t))}compile(e){return this._cached||=new S_(e,this._items.map(e=>e.source),this._items.map(e=>e.ruleId)),this._cached}compileAG(e,t,n){return this._hasAnchors?t?n?(this._anchorCache.A1_G1||(this._anchorCache.A1_G1=this._resolveAnchors(e,t,n)),this._anchorCache.A1_G1):(this._anchorCache.A1_G0||(this._anchorCache.A1_G0=this._resolveAnchors(e,t,n)),this._anchorCache.A1_G0):n?(this._anchorCache.A0_G1||(this._anchorCache.A0_G1=this._resolveAnchors(e,t,n)),this._anchorCache.A0_G1):(this._anchorCache.A0_G0||(this._anchorCache.A0_G0=this._resolveAnchors(e,t,n)),this._anchorCache.A0_G0):this.compile(e)}_resolveAnchors(e,t,n){return new S_(e,this._items.map(e=>e.resolveAnchors(t,n)),this._items.map(e=>e.ruleId))}},S_=class{constructor(e,t,n){this.regExps=t,this.rules=n,this.scanner=e.createOnigScanner(t)}scanner;dispose(){typeof this.scanner.dispose==`function`&&this.scanner.dispose()}toString(){let e=[];for(let t=0,n=this.rules.length;t<n;t++)e.push(` - `+this.rules[t]+`: `+this.regExps[t]);return e.join(`
|
|
22
|
-
`)}findNextMatchSync(e,t,n){let r=this.scanner.findNextMatchSync(e,t,n);return r?{ruleId:this.rules[r.index],captureIndices:r.captureIndices}:null}},C_=class{constructor(e,t){this.languageId=e,this.tokenType=t}},w_=class e{_defaultAttributes;_embeddedLanguagesMatcher;constructor(e,t){this._defaultAttributes=new C_(e,8),this._embeddedLanguagesMatcher=new T_(Object.entries(t||{}))}getDefaultAttributes(){return this._defaultAttributes}getBasicScopeAttributes(t){return t===null?e._NULL_SCOPE_METADATA:this._getBasicScopeAttributes.get(t)}static _NULL_SCOPE_METADATA=new C_(0,0);_getBasicScopeAttributes=new Eg(e=>new C_(this._scopeToLanguage(e),this._toStandardTokenType(e)));_scopeToLanguage(e){return this._embeddedLanguagesMatcher.match(e)||0}_toStandardTokenType(t){let n=t.match(e.STANDARD_TOKEN_TYPE_REGEXP);if(!n)return 8;switch(n[1]){case`comment`:return 1;case`string`:return 2;case`regex`:return 3;case`meta.embedded`:return 0}throw Error(`Unexpected match for standard token type!`)}static STANDARD_TOKEN_TYPE_REGEXP=/\b(comment|string|regex|meta\.embedded)\b/},T_=class{values;scopesRegExp;constructor(e){if(e.length===0)this.values=null,this.scopesRegExp=null;else{this.values=new Map(e);let t=e.map(([e,t])=>Tg(e));t.sort(),t.reverse(),this.scopesRegExp=RegExp(`^((${t.join(`)|(`)}))($|\\.)`,``)}}match(e){if(!this.scopesRegExp)return;let t=e.match(this.scopesRegExp);if(t)return this.values.get(t[1])}};typeof process<`u`&&{}.VSCODE_TEXTMATE_DEBUG;var E_=!1,D_=class{constructor(e,t){this.stack=e,this.stoppedEarly=t}};function O_(e,t,n,r,i,a,o,s){let c=t.content.length,l=!1,u=-1;if(o){let o=k_(e,t,n,r,i,a);i=o.stack,r=o.linePos,n=o.isFirstLine,u=o.anchorPosition}let d=Date.now();for(;!l;){if(s!==0&&Date.now()-d>s)return new D_(i,!0);f()}return new D_(i,!1);function f(){let o=A_(e,t,n,r,i,u);if(!o){a.produce(i,c),l=!0;return}let s=o.captureIndices,d=o.matchedRuleId,f=s&&s.length>0?s[0].end>r:!1;if(d===l_){let o=i.getRule(e);a.produce(i,s[0].start),i=i.withContentNameScopesList(i.nameScopesList),I_(e,t,n,i,a,o.endCaptures,s),a.produce(i,s[0].end);let d=i;if(i=i.parent,u=d.getAnchorPos(),!f&&d.getEnterPos()===r){i=d,a.produce(i,c),l=!0;return}}else{let o=e.getRule(d);a.produce(i,s[0].start);let p=i,m=o.getName(t.content,s),h=i.contentNameScopesList.pushAttributed(m,e);if(i=i.push(d,r,u,s[0].end===c,null,h,h),o instanceof __){let r=o;I_(e,t,n,i,a,r.beginCaptures,s),a.produce(i,s[0].end),u=s[0].end;let d=r.getContentName(t.content,s),m=h.pushAttributed(d,e);if(i=i.withContentNameScopesList(m),r.endHasBackReferences&&(i=i.withEndRule(r.getEndWithResolvedBackReferences(t.content,s))),!f&&p.hasSameRuleAs(i)){i=i.pop(),a.produce(i,c),l=!0;return}}else if(o instanceof v_){let r=o;I_(e,t,n,i,a,r.beginCaptures,s),a.produce(i,s[0].end),u=s[0].end;let d=r.getContentName(t.content,s),m=h.pushAttributed(d,e);if(i=i.withContentNameScopesList(m),r.whileHasBackReferences&&(i=i.withEndRule(r.getWhileWithResolvedBackReferences(t.content,s))),!f&&p.hasSameRuleAs(i)){i=i.pop(),a.produce(i,c),l=!0;return}}else if(I_(e,t,n,i,a,o.captures,s),a.produce(i,s[0].end),i=i.pop(),!f){i=i.safePop(),a.produce(i,c),l=!0;return}}s[0].end>r&&(r=s[0].end,n=!1)}}function k_(e,t,n,r,i,a){let o=i.beginRuleCapturedEOL?0:-1,s=[];for(let t=i;t;t=t.pop()){let n=t.getRule(e);n instanceof v_&&s.push({rule:n,stack:t})}for(let c=s.pop();c;c=s.pop()){let{ruleScanner:s,findOptions:l}=P_(c.rule,e,c.stack.endRule,n,r===o),u=s.findNextMatchSync(t,r,l);if(u){if(u.ruleId!==u_){i=c.stack.pop();break}u.captureIndices&&u.captureIndices.length&&(a.produce(c.stack,u.captureIndices[0].start),I_(e,t,n,c.stack,a,c.rule.whileCaptures,u.captureIndices),a.produce(c.stack,u.captureIndices[0].end),o=u.captureIndices[0].end,u.captureIndices[0].end>r&&(r=u.captureIndices[0].end,n=!1))}else{i=c.stack.pop();break}}return{stack:i,linePos:r,anchorPosition:o,isFirstLine:n}}function A_(e,t,n,r,i,a){let o=j_(e,t,n,r,i,a),s=e.getInjections();if(s.length===0)return o;let c=M_(s,e,t,n,r,i,a);if(!c)return o;if(!o)return c;let l=o.captureIndices[0].start,u=c.captureIndices[0].start;return u<l||c.priorityMatch&&u===l?c:o}function j_(e,t,n,r,i,a){let{ruleScanner:o,findOptions:s}=N_(i.getRule(e),e,i.endRule,n,r===a),c=o.findNextMatchSync(t,r,s);return c?{captureIndices:c.captureIndices,matchedRuleId:c.ruleId}:null}function M_(e,t,n,r,i,a,o){let s=Number.MAX_VALUE,c=null,l,u=0,d=a.contentNameScopesList.getScopeNames();for(let a=0,f=e.length;a<f;a++){let f=e[a];if(!f.matcher(d))continue;let{ruleScanner:p,findOptions:m}=N_(t.getRule(f.ruleId),t,null,r,i===o),h=p.findNextMatchSync(n,i,m);if(!h)continue;let g=h.captureIndices[0].start;if(!(g>=s)&&(s=g,c=h.captureIndices,l=h.ruleId,u=f.priority,s===i))break}return c?{priorityMatch:u===-1,captureIndices:c,matchedRuleId:l}:null}function N_(e,t,n,r,i){return E_?{ruleScanner:e.compile(t,n),findOptions:F_(r,i)}:{ruleScanner:e.compileAG(t,n,r,i),findOptions:0}}function P_(e,t,n,r,i){return E_?{ruleScanner:e.compileWhile(t,n),findOptions:F_(r,i)}:{ruleScanner:e.compileWhileAG(t,n,r,i),findOptions:0}}function F_(e,t){let n=0;return e||(n|=1),t||(n|=4),n}function I_(e,t,n,r,i,a,o){if(a.length===0)return;let s=t.content,c=Math.min(a.length,o.length),l=[],u=o[0].end;for(let t=0;t<c;t++){let c=a[t];if(c===null)continue;let d=o[t];if(d.length===0)continue;if(d.start>u)break;for(;l.length>0&&l[l.length-1].endPos<=d.start;)i.produceFromScopes(l[l.length-1].scopes,l[l.length-1].endPos),l.pop();if(l.length>0?i.produceFromScopes(l[l.length-1].scopes,d.start):i.produce(r,d.start),c.retokenizeCapturedWithRuleId){let t=c.getName(s,o),a=r.contentNameScopesList.pushAttributed(t,e),l=c.getContentName(s,o),u=a.pushAttributed(l,e),f=r.push(c.retokenizeCapturedWithRuleId,d.start,-1,!1,null,a,u),p=e.createOnigString(s.substring(0,d.end));O_(e,p,n&&d.start===0,d.start,f,i,!1,0),Kg(p);continue}let f=c.getName(s,o);if(f!==null){let t=(l.length>0?l[l.length-1].scopes:r.contentNameScopesList).pushAttributed(f,e);l.push(new L_(t,d.end))}}for(;l.length>0;)i.produceFromScopes(l[l.length-1].scopes,l[l.length-1].endPos),l.pop()}var L_=class{scopes;endPos;constructor(e,t){this.scopes=e,this.endPos=t}};function R_(e,t,n,r,i,a,o,s){return new H_(e,t,n,r,i,a,o,s)}function z_(e,t,n,r,i){let a=Ug(t,B_),o=y_.getCompiledRuleId(n,r,i.repository);for(let n of a)e.push({debugSelector:t,matcher:n.matcher,ruleId:o,grammar:i,priority:n.priority})}function B_(e,t){if(t.length<e.length)return!1;let n=0;return e.every(e=>{for(let r=n;r<t.length;r++)if(V_(t[r],e))return n=r+1,!0;return!1})}function V_(e,t){if(!e)return!1;if(e===t)return!0;let n=t.length;return e.length>n&&e.substr(0,n)===t&&e[n]===`.`}var H_=class{constructor(e,t,n,r,i,a,o,s){if(this._rootScopeName=e,this.balancedBracketSelectors=a,this._onigLib=s,this._basicScopeAttributesProvider=new w_(n,r),this._rootId=-1,this._lastRuleId=0,this._ruleId2desc=[null],this._includedGrammars={},this._grammarRepository=o,this._grammar=U_(t,null),this._injections=null,this._tokenTypeMatchers=[],i)for(let e of Object.keys(i)){let t=Ug(e,B_);for(let n of t)this._tokenTypeMatchers.push({matcher:n.matcher,type:i[e]})}}_rootId;_lastRuleId;_ruleId2desc;_includedGrammars;_grammarRepository;_grammar;_injections;_basicScopeAttributesProvider;_tokenTypeMatchers;get themeProvider(){return this._grammarRepository}dispose(){for(let e of this._ruleId2desc)e&&e.dispose()}createOnigScanner(e){return this._onigLib.createOnigScanner(e)}createOnigString(e){return this._onigLib.createOnigString(e)}getMetadataForScope(e){return this._basicScopeAttributesProvider.getBasicScopeAttributes(e)}_collectInjections(){let e={lookup:e=>e===this._rootScopeName?this._grammar:this.getExternalGrammar(e),injections:e=>this._grammarRepository.injections(e)},t=[],n=this._rootScopeName,r=e.lookup(n);if(r){let e=r.injections;if(e)for(let n in e)z_(t,n,e[n],this,r);let i=this._grammarRepository.injections(n);i&&i.forEach(e=>{let n=this.getExternalGrammar(e);if(n){let e=n.injectionSelector;e&&z_(t,e,n,this,n)}})}return t.sort((e,t)=>e.priority-t.priority),t}getInjections(){return this._injections===null&&(this._injections=this._collectInjections()),this._injections}registerRule(e){let t=++this._lastRuleId,n=e(d_(t));return this._ruleId2desc[t]=n,n}getRule(e){return this._ruleId2desc[f_(e)]}getExternalGrammar(e,t){if(this._includedGrammars[e])return this._includedGrammars[e];if(this._grammarRepository){let n=this._grammarRepository.lookup(e);if(n)return this._includedGrammars[e]=U_(n,t&&t.$base),this._includedGrammars[e]}}tokenizeLine(e,t,n=0){let r=this._tokenize(e,t,!1,n);return{tokens:r.lineTokens.getResult(r.ruleStack,r.lineLength),ruleStack:r.ruleStack,stoppedEarly:r.stoppedEarly}}tokenizeLine2(e,t,n=0){let r=this._tokenize(e,t,!0,n);return{tokens:r.lineTokens.getBinaryResult(r.ruleStack,r.lineLength),ruleStack:r.ruleStack,stoppedEarly:r.stoppedEarly}}_tokenize(e,t,n,r){this._rootId===-1&&(this._rootId=y_.getCompiledRuleId(this._grammar.repository.$self,this,this._grammar.repository),this.getInjections());let i;if(!t||t===G_.NULL){i=!0;let e=this._basicScopeAttributesProvider.getDefaultAttributes(),n=this.themeProvider.getDefaults(),r=Bg.set(0,e.languageId,e.tokenType,null,n.fontStyle,n.foregroundId,n.backgroundId),a=this.getRule(this._rootId).getName(null,null),o;o=a?W_.createRootAndLookUpScopeName(a,r,this):W_.createRoot(`unknown`,r),t=new G_(null,this._rootId,-1,-1,!1,null,o,o)}else i=!1,t.reset();e+=`
|
|
23
|
-
`;let a=this.createOnigString(e),o=a.content.length,s=new q_(n,e,this._tokenTypeMatchers,this.balancedBracketSelectors),c=O_(this,a,i,0,t,s,!0,r);return Kg(a),{lineLength:o,lineTokens:s,ruleStack:c.stack,stoppedEarly:c.stoppedEarly}}};function U_(e,t){return e=mg(e),e.repository=e.repository||{},e.repository.$self={$vscodeTextmateLocation:e.$vscodeTextmateLocation,patterns:e.patterns,name:e.scopeName},e.repository.$base=t||e.repository.$self,e}var W_=class e{constructor(e,t,n){this.parent=e,this.scopePath=t,this.tokenAttributes=n}static fromExtension(t,n){let r=t,i=t?.scopePath??null;for(let t of n)i=Og.push(i,t.scopeNames),r=new e(r,i,t.encodedTokenAttributes);return r}static createRoot(t,n){return new e(null,new Og(null,t),n)}static createRootAndLookUpScopeName(t,n,r){let i=r.getMetadataForScope(t),a=new Og(null,t),o=r.themeProvider.themeMatch(a);return new e(null,a,e.mergeAttributes(n,i,o))}get scopeName(){return this.scopePath.scopeName}toString(){return this.getScopeNames().join(` `)}equals(t){return e.equals(this,t)}static equals(e,t){do{if(e===t||!e&&!t)return!0;if(!e||!t||e.scopeName!==t.scopeName||e.tokenAttributes!==t.tokenAttributes)return!1;e=e.parent,t=t.parent}while(!0)}static mergeAttributes(e,t,n){let r=-1,i=0,a=0;return n!==null&&(r=n.fontStyle,i=n.foregroundId,a=n.backgroundId),Bg.set(e,t.languageId,t.tokenType,null,r,i,a)}pushAttributed(t,n){if(t===null)return this;if(t.indexOf(` `)===-1)return e._pushAttributed(this,t,n);let r=t.split(/ /g),i=this;for(let t of r)i=e._pushAttributed(i,t,n);return i}static _pushAttributed(t,n,r){let i=r.getMetadataForScope(n),a=t.scopePath.push(n),o=r.themeProvider.themeMatch(a);return new e(t,a,e.mergeAttributes(t.tokenAttributes,i,o))}getScopeNames(){return this.scopePath.getSegments()}getExtensionIfDefined(e){let t=[],n=this;for(;n&&n!==e;)t.push({encodedTokenAttributes:n.tokenAttributes,scopeNames:n.scopePath.getExtensionIfDefined(n.parent?.scopePath??null)}),n=n.parent;return n===e?t.reverse():void 0}},G_=class e{constructor(e,t,n,r,i,a,o,s){this.parent=e,this.ruleId=t,this.beginRuleCapturedEOL=i,this.endRule=a,this.nameScopesList=o,this.contentNameScopesList=s,this.depth=this.parent?this.parent.depth+1:1,this._enterPos=n,this._anchorPos=r}_stackElementBrand=void 0;static NULL=new e(null,0,0,0,!1,null,null,null);_enterPos;_anchorPos;depth;equals(t){return t===null?!1:e._equals(this,t)}static _equals(e,t){return e===t?!0:this._structuralEquals(e,t)?W_.equals(e.contentNameScopesList,t.contentNameScopesList):!1}static _structuralEquals(e,t){do{if(e===t||!e&&!t)return!0;if(!e||!t||e.depth!==t.depth||e.ruleId!==t.ruleId||e.endRule!==t.endRule)return!1;e=e.parent,t=t.parent}while(!0)}clone(){return this}static _reset(e){for(;e;)e._enterPos=-1,e._anchorPos=-1,e=e.parent}reset(){e._reset(this)}pop(){return this.parent}safePop(){return this.parent?this.parent:this}push(t,n,r,i,a,o,s){return new e(this,t,n,r,i,a,o,s)}getEnterPos(){return this._enterPos}getAnchorPos(){return this._anchorPos}getRule(e){return e.getRule(this.ruleId)}toString(){let e=[];return this._writeString(e,0),`[`+e.join(`,`)+`]`}_writeString(e,t){return this.parent&&(t=this.parent._writeString(e,t)),e[t++]=`(${this.ruleId}, ${this.nameScopesList?.toString()}, ${this.contentNameScopesList?.toString()})`,t}withContentNameScopesList(e){return this.contentNameScopesList===e?this:this.parent.push(this.ruleId,this._enterPos,this._anchorPos,this.beginRuleCapturedEOL,this.endRule,this.nameScopesList,e)}withEndRule(t){return this.endRule===t?this:new e(this.parent,this.ruleId,this._enterPos,this._anchorPos,this.beginRuleCapturedEOL,t,this.nameScopesList,this.contentNameScopesList)}hasSameRuleAs(e){let t=this;for(;t&&t._enterPos===e._enterPos;){if(t.ruleId===e.ruleId)return!0;t=t.parent}return!1}toStateStackFrame(){return{ruleId:f_(this.ruleId),beginRuleCapturedEOL:this.beginRuleCapturedEOL,endRule:this.endRule,nameScopesList:this.nameScopesList?.getExtensionIfDefined(this.parent?.nameScopesList??null)??[],contentNameScopesList:this.contentNameScopesList?.getExtensionIfDefined(this.nameScopesList)??[]}}static pushFrame(t,n){let r=W_.fromExtension(t?.nameScopesList??null,n.nameScopesList);return new e(t,d_(n.ruleId),n.enterPos??-1,n.anchorPos??-1,n.beginRuleCapturedEOL,n.endRule,r,W_.fromExtension(r,n.contentNameScopesList))}},K_=class{balancedBracketScopes;unbalancedBracketScopes;allowAny=!1;constructor(e,t){this.balancedBracketScopes=e.flatMap(e=>e===`*`?(this.allowAny=!0,[]):Ug(e,B_).map(e=>e.matcher)),this.unbalancedBracketScopes=t.flatMap(e=>Ug(e,B_).map(e=>e.matcher))}get matchesAlways(){return this.allowAny&&this.unbalancedBracketScopes.length===0}get matchesNever(){return this.balancedBracketScopes.length===0&&!this.allowAny}match(e){for(let t of this.unbalancedBracketScopes)if(t(e))return!1;for(let t of this.balancedBracketScopes)if(t(e))return!0;return this.allowAny}},q_=class{constructor(e,t,n,r){this.balancedBracketSelectors=r,this._emitBinaryTokens=e,this._tokenTypeOverrides=n,this._lineText=null,this._tokens=[],this._binaryTokens=[],this._lastTokenEndIndex=0}_emitBinaryTokens;_lineText;_tokens;_binaryTokens;_lastTokenEndIndex;_tokenTypeOverrides;produce(e,t){this.produceFromScopes(e.contentNameScopesList,t)}produceFromScopes(e,t){if(this._lastTokenEndIndex>=t)return;if(this._emitBinaryTokens){let n=e?.tokenAttributes??0,r=!1;if(this.balancedBracketSelectors?.matchesAlways&&(r=!0),this._tokenTypeOverrides.length>0||this.balancedBracketSelectors&&!this.balancedBracketSelectors.matchesAlways&&!this.balancedBracketSelectors.matchesNever){let t=e?.getScopeNames()??[];for(let e of this._tokenTypeOverrides)e.matcher(t)&&(n=Bg.set(n,0,Vg(e.type),null,-1,0,0));this.balancedBracketSelectors&&(r=this.balancedBracketSelectors.match(t))}if(r&&(n=Bg.set(n,0,8,r,-1,0,0)),this._binaryTokens.length>0&&this._binaryTokens[this._binaryTokens.length-1]===n){this._lastTokenEndIndex=t;return}this._binaryTokens.push(this._lastTokenEndIndex),this._binaryTokens.push(n),this._lastTokenEndIndex=t;return}let n=e?.getScopeNames()??[];this._tokens.push({startIndex:this._lastTokenEndIndex,endIndex:t,scopes:n}),this._lastTokenEndIndex=t}getResult(e,t){return this._tokens.length>0&&this._tokens[this._tokens.length-1].startIndex===t-1&&this._tokens.pop(),this._tokens.length===0&&(this._lastTokenEndIndex=-1,this.produce(e,t),this._tokens[this._tokens.length-1].startIndex=0),this._tokens}getBinaryResult(e,t){this._binaryTokens.length>0&&this._binaryTokens[this._binaryTokens.length-2]===t-1&&(this._binaryTokens.pop(),this._binaryTokens.pop()),this._binaryTokens.length===0&&(this._lastTokenEndIndex=-1,this.produce(e,t),this._binaryTokens[this._binaryTokens.length-2]=0);let n=new Uint32Array(this._binaryTokens.length);for(let e=0,t=this._binaryTokens.length;e<t;e++)n[e]=this._binaryTokens[e];return n}},J_=class{constructor(e,t){this._onigLib=t,this._theme=e}_grammars=new Map;_rawGrammars=new Map;_injectionGrammars=new Map;_theme;dispose(){for(let e of this._grammars.values())e.dispose()}setTheme(e){this._theme=e}getColorMap(){return this._theme.getColorMap()}addGrammar(e,t){this._rawGrammars.set(e.scopeName,e),t&&this._injectionGrammars.set(e.scopeName,t)}lookup(e){return this._rawGrammars.get(e)}injections(e){return this._injectionGrammars.get(e)}getDefaults(){return this._theme.getDefaults()}themeMatch(e){return this._theme.match(e)}grammarForScopeName(e,t,n,r,i){if(!this._grammars.has(e)){let a=this._rawGrammars.get(e);if(!a)return null;this._grammars.set(e,R_(e,a,t,n,r,i,this,this._onigLib))}return this._grammars.get(e)}},Y_=class{_options;_syncRegistry;_ensureGrammarCache;constructor(e){this._options=e,this._syncRegistry=new J_(Dg.createFromRawTheme(e.theme,e.colorMap),e.onigLib),this._ensureGrammarCache=new Map}dispose(){this._syncRegistry.dispose()}setTheme(e,t){this._syncRegistry.setTheme(Dg.createFromRawTheme(e,t))}getColorMap(){return this._syncRegistry.getColorMap()}loadGrammarWithEmbeddedLanguages(e,t,n){return this.loadGrammarWithConfiguration(e,t,{embeddedLanguages:n})}loadGrammarWithConfiguration(e,t,n){return this._loadGrammar(e,t,n.embeddedLanguages,n.tokenTypes,new K_(n.balancedBracketSelectors||[],n.unbalancedBracketSelectors||[]))}loadGrammar(e){return this._loadGrammar(e,0,null,null,null)}_loadGrammar(e,t,n,r,i){let a=new Xg(this._syncRegistry,e);for(;a.Q.length>0;)a.Q.map(e=>this._loadSingleGrammar(e.scopeName)),a.processQueue();return this._grammarForScopeName(e,t,n,r,i)}_loadSingleGrammar(e){this._ensureGrammarCache.has(e)||(this._doLoadSingleGrammar(e),this._ensureGrammarCache.set(e,!0))}_doLoadSingleGrammar(e){let t=this._options.loadGrammar(e);if(t){let n=typeof this._options.getInjections==`function`?this._options.getInjections(e):void 0;this._syncRegistry.addGrammar(t,n)}}addGrammar(e,t=[],n=0,r=null){return this._syncRegistry.addGrammar(e,t),this._grammarForScopeName(e.scopeName,n,r)}_grammarForScopeName(e,t=0,n=null,r=null,i=null){return this._syncRegistry.grammarForScopeName(e,t,n,r,i)}},X_=G_.NULL;function Z_(e,t){let n=typeof e==`string`?{}:{...e.colorReplacements},r=typeof e==`string`?e:e.name;for(let[e,i]of Object.entries(t?.colorReplacements||{}))typeof i==`string`?n[e]=i:e===r&&Object.assign(n,i);return n}function Q_(e,t){return e&&(t?.[e?.toLowerCase()]||e)}function $_(e){return Array.isArray(e)?e:[e]}async function ev(e){return Promise.resolve(typeof e==`function`?e():e).then(e=>e.default||e)}function tv(e){return!e||[`plaintext`,`txt`,`text`,`plain`].includes(e)}function nv(e){return e===`ansi`||tv(e)}function rv(e){return e===`none`}function iv(e){return rv(e)}var av=/(\r?\n)/g;function ov(e,t=!1){if(e.length===0)return[[``,0]];let n=e.split(av),r=0,i=[];for(let e=0;e<n.length;e+=2){let a=t?n[e]+(n[e+1]||``):n[e];i.push([a,r]),r+=n[e].length,r+=n[e+1]?.length||0}return i}var sv={light:`#333333`,dark:`#bbbbbb`},cv={light:`#fffffe`,dark:`#1e1e1e`},lv=`__shiki_resolved`;function uv(e){if(e?.[lv])return e;let t={...e};t.tokenColors&&!t.settings&&(t.settings=t.tokenColors,delete t.tokenColors),t.type||=`dark`,t.colorReplacements={...t.colorReplacements},t.settings||=[];let{bg:n,fg:r}=t;if(!n||!r){let e=t.settings?t.settings.find(e=>!e.name&&!e.scope):void 0;e?.settings?.foreground&&(r=e.settings.foreground),e?.settings?.background&&(n=e.settings.background),!r&&t?.colors?.[`editor.foreground`]&&(r=t.colors[`editor.foreground`]),!n&&t?.colors?.[`editor.background`]&&(n=t.colors[`editor.background`]),r||=t.type===`light`?sv.light:sv.dark,n||=t.type===`light`?cv.light:cv.dark,t.fg=r,t.bg=n}t.settings[0]&&t.settings[0].settings&&!t.settings[0].scope||t.settings.unshift({settings:{foreground:t.fg,background:t.bg}});let i=0,a=new Map;function o(e){if(a.has(e))return a.get(e);i+=1;let n=`#${i.toString(16).padStart(8,`0`).toLowerCase()}`;return t.colorReplacements?.[`#${n}`]?o(e):(a.set(e,n),n)}t.settings=t.settings.map(e=>{let n=e.settings?.foreground&&!e.settings.foreground.startsWith(`#`),r=e.settings?.background&&!e.settings.background.startsWith(`#`);if(!n&&!r)return e;let i={...e,settings:{...e.settings}};if(n){let n=o(e.settings.foreground);t.colorReplacements[n]=e.settings.foreground,i.settings.foreground=n}if(r){let n=o(e.settings.background);t.colorReplacements[n]=e.settings.background,i.settings.background=n}return i});for(let e of Object.keys(t.colors||{}))if((e===`editor.foreground`||e===`editor.background`||e.startsWith(`terminal.ansi`))&&!t.colors[e]?.startsWith(`#`)){let n=o(t.colors[e]);t.colorReplacements[n]=t.colors[e],t.colors[e]=n}return Object.defineProperty(t,lv,{enumerable:!1,writable:!1,value:!0}),t}async function dv(e){return[...new Set((await Promise.all(e.filter(e=>!nv(e)).map(async e=>await ev(e).then(e=>Array.isArray(e)?e:[e])))).flat())]}async function fv(e){return(await Promise.all(e.map(async e=>iv(e)?null:uv(await ev(e))))).filter(e=>!!e)}function pv(e,t){if(!t)return e;if(t[e]){let n=new Set([e]);for(;t[e];){if(e=t[e],n.has(e))throw new pg(`Circular alias \`${[...n].join(` -> `)} -> ${e}\``);n.add(e)}}return e}var mv=class extends Y_{_resolver;_themes;_langs;_alias;_resolvedThemes=new Map;_resolvedGrammars=new Map;_langMap=new Map;_langGraph=new Map;_textmateThemeCache=new WeakMap;_loadedThemesCache=null;_loadedLanguagesCache=null;constructor(e,t,n,r={}){super(e),this._resolver=e,this._themes=t,this._langs=n,this._alias=r,this._themes.map(e=>this.loadTheme(e)),this.loadLanguages(this._langs)}getTheme(e){return typeof e==`string`?this._resolvedThemes.get(e):this.loadTheme(e)}loadTheme(e){let t=uv(e);return t.name&&(this._resolvedThemes.set(t.name,t),this._loadedThemesCache=null),t}getLoadedThemes(){return this._loadedThemesCache||=[...this._resolvedThemes.keys()],this._loadedThemesCache}setTheme(e){let t=this._textmateThemeCache.get(e);t||(t=Dg.createFromRawTheme(e),this._textmateThemeCache.set(e,t)),this._syncRegistry.setTheme(t)}getGrammar(e){return e=pv(e,this._alias),this._resolvedGrammars.get(e)}loadLanguage(e){if(this.getGrammar(e.name))return;let t=new Set([...this._langMap.values()].filter(t=>t.embeddedLangsLazy?.includes(e.name)));this._resolver.addLanguage(e);let n={balancedBracketSelectors:e.balancedBracketSelectors||[`*`],unbalancedBracketSelectors:e.unbalancedBracketSelectors||[]};this._syncRegistry._rawGrammars.set(e.scopeName,e);let r=this.loadGrammarWithConfiguration(e.scopeName,1,n);if(r.name=e.name,this._resolvedGrammars.set(e.name,r),e.aliases&&e.aliases.forEach(t=>{this._alias[t]=e.name}),this._loadedLanguagesCache=null,t.size)for(let e of t)this._resolvedGrammars.delete(e.name),this._loadedLanguagesCache=null,this._syncRegistry?._injectionGrammars?.delete(e.scopeName),this._syncRegistry?._grammars?.delete(e.scopeName),this.loadLanguage(this._langMap.get(e.name))}dispose(){super.dispose(),this._resolvedThemes.clear(),this._resolvedGrammars.clear(),this._langMap.clear(),this._langGraph.clear(),this._loadedThemesCache=null}loadLanguages(e){for(let t of e)this.resolveEmbeddedLanguages(t);let t=[...this._langGraph.entries()],n=t.filter(([e,t])=>!t);if(n.length){let e=t.filter(([e,t])=>t?(t.embeddedLanguages||t.embeddedLangs)?.some(e=>n.map(([e])=>e).includes(e)):!1).filter(e=>!n.includes(e));throw new pg(`Missing languages ${n.map(([e])=>`\`${e}\``).join(`, `)}, required by ${e.map(([e])=>`\`${e}\``).join(`, `)}`)}for(let[e,n]of t)this._resolver.addLanguage(n);for(let[e,n]of t)this.loadLanguage(n)}getLoadedLanguages(){return this._loadedLanguagesCache||=[...new Set([...this._resolvedGrammars.keys(),...Object.keys(this._alias)])],this._loadedLanguagesCache}resolveEmbeddedLanguages(e){this._langMap.set(e.name,e),this._langGraph.set(e.name,e);let t=e.embeddedLanguages??e.embeddedLangs;if(t)for(let e of t)this._langGraph.set(e,this._langMap.get(e))}},hv=class{_langs=new Map;_scopeToLang=new Map;_injections=new Map;_onigLib;constructor(e,t){this._onigLib={createOnigScanner:t=>e.createScanner(t),createOnigString:t=>e.createString(t)},t.forEach(e=>this.addLanguage(e))}get onigLib(){return this._onigLib}getLangRegistration(e){return this._langs.get(e)}loadGrammar(e){return this._scopeToLang.get(e)}addLanguage(e){this._langs.set(e.name,e),e.aliases&&e.aliases.forEach(t=>{this._langs.set(t,e)}),this._scopeToLang.set(e.scopeName,e),e.injectTo&&e.injectTo.forEach(t=>{this._injections.get(t)||this._injections.set(t,[]),this._injections.get(t).push(e.scopeName)})}getInjections(e){let t=e.split(`.`),n=[];for(let e=1;e<=t.length;e++){let r=t.slice(0,e).join(`.`);n=[...n,...this._injections.get(r)||[]]}return n}},gv=0;function _v(e){gv+=1,e.warnings!==!1&&gv>=10&&gv%10==0&&console.warn(`[Shiki] ${gv} instances have been created. Shiki is supposed to be used as a singleton, consider refactoring your code to cache your highlighter instance; Or call \`highlighter.dispose()\` to release unused instances.`);let t=!1;if(!e.engine)throw new pg("`engine` option is required for synchronous mode");let n=(e.langs||[]).flat(1),r=(e.themes||[]).flat(1).map(uv),i=new mv(new hv(e.engine,n),r,n,e.langAlias),a;function o(t){return pv(t,e.langAlias)}function s(e){g();let t=i.getGrammar(typeof e==`string`?e:e.name);if(!t)throw new pg(`Language \`${e}\` not found, you may need to load it first`);return t}function c(e){if(e===`none`)return{bg:``,fg:``,name:`none`,settings:[],type:`dark`};g();let t=i.getTheme(e);if(!t)throw new pg(`Theme \`${e}\` not found, you may need to load it first`);return t}function l(e){g();let t=c(e);return a!==e&&(i.setTheme(t),a=e),{theme:t,colorMap:i.getColorMap()}}function u(){return g(),i.getLoadedThemes()}function d(){return g(),i.getLoadedLanguages()}function f(...e){g(),i.loadLanguages(e.flat(1))}async function p(...e){return f(await dv(e))}function m(...e){g();for(let t of e.flat(1))i.loadTheme(t)}async function h(...e){return g(),m(await fv(e))}function g(){if(t)throw new pg(`Shiki instance has been disposed`)}function _(){t||(t=!0,i.dispose(),--gv)}return{setTheme:l,getTheme:c,getLanguage:s,getLoadedThemes:u,getLoadedLanguages:d,resolveLangAlias:o,loadLanguage:p,loadLanguageSync:f,loadTheme:h,loadThemeSync:m,dispose:_,[Symbol.dispose]:_}}async function vv(e){e.engine||console.warn("`engine` option is required. Use `createOnigurumaEngine` or `createJavaScriptRegexEngine` to create an engine.");let[t,n,r]=await Promise.all([fv(e.themes||[]),dv(e.langs||[]),e.engine]);return _v({...e,themes:t,langs:n,engine:r})}var yv=new WeakMap;function bv(e,t){yv.set(e,t)}function xv(e){return yv.get(e)}var Sv=class e{_stacks={};lang;get themes(){return Object.keys(this._stacks)}get theme(){return this.themes[0]}get _stack(){return this._stacks[this.theme]}static initial(t,n){return new e(Object.fromEntries($_(n).map(e=>[e,X_])),t)}constructor(...e){if(e.length===2){let[t,n]=e;this.lang=n,this._stacks=t}else{let[t,n,r]=e;this.lang=n,this._stacks={[r]:t}}}getInternalStack(e=this.theme){return this._stacks[e]}getScopes(e=this.theme){return Cv(this._stacks[e])}toJSON(){return{lang:this.lang,theme:this.theme,themes:this.themes,scopes:this.getScopes()}}};function Cv(e){let t=[],n=new Set;function r(e){if(n.has(e))return;n.add(e);let i=e?.nameScopesList?.scopeName;i&&t.push(i),e.parent&&r(e.parent)}return r(e),t}function wv(e,t){if(!(e instanceof Sv))throw new pg(`Invalid grammar state`);return e.getInternalStack(t)}var Tv=/,/,Ev=/ /;function Dv(e,t,n={}){let{theme:r=e.getLoadedThemes()[0]}=n;if(tv(e.resolveLangAlias(n.lang||`text`))||rv(r))return ov(t).map(e=>[{content:e[0],offset:e[1]}]);let{theme:i,colorMap:a}=e.setTheme(r),o=e.getLanguage(n.lang||`text`);if(n.grammarState){if(n.grammarState.lang!==o.name)throw new pg(`Grammar state language "${n.grammarState.lang}" does not match highlight language "${o.name}"`);if(!n.grammarState.themes.includes(i.name))throw new pg(`Grammar state themes "${n.grammarState.themes}" do not contain highlight theme "${i.name}"`)}return kv(t,o,i,a,n)}function Ov(...e){if(e.length===2)return xv(e[1]);let[t,n,r={}]=e,{lang:i=`text`,theme:a=t.getLoadedThemes()[0]}=r;if(tv(i)||rv(a))throw new pg(`Plain language does not have grammar state`);if(i===`ansi`)throw new pg(`ANSI language does not have grammar state`);let{theme:o,colorMap:s}=t.setTheme(a),c=t.getLanguage(i);return new Sv(Av(n,c,o,s,r).stateStack,c.name,o.name)}function kv(e,t,n,r,i){let a=Av(e,t,n,r,i),o=new Sv(a.stateStack,t.name,n.name);return bv(a.tokens,o),a.tokens}function Av(e,t,n,r,i){let a=Z_(n,i),{tokenizeMaxLineLength:o=0,tokenizeTimeLimit:s=500,includeExplanation:c=!1}=i,l=ov(e),u=i.grammarState?wv(i.grammarState,n.name)??X_:i.grammarContextCode==null?X_:Av(i.grammarContextCode,t,n,r,{...i,grammarState:void 0,grammarContextCode:void 0}).stateStack,d=[],f=[];for(let e=0,i=l.length;e<i;e++){let[i,p]=l[e];if(i===``){d=[],f.push([]);continue}if(o>0&&i.length>=o){d=[],f.push([{content:i,offset:p,color:``,fontStyle:0}]);continue}let m,h,g;c&&c!==`tokenType`&&(m=t.tokenizeLine(i,u,s),h=m.tokens,g=0);let _=t.tokenizeLine2(i,u,s),v=_.tokens.length/2;for(let e=0;e<v;e++){let t=_.tokens[2*e],o=e+1<v?_.tokens[2*e+2]:i.length;if(t===o)continue;let s=_.tokens[2*e+1],l=Q_(r[Bg.getForeground(s)],a),u=Bg.getFontStyle(s),f={content:i.substring(t,o),offset:p+t,color:l,fontStyle:u};if(c===`tokenType`)f.type=Bg.getTokenType(s);else if(c){let e=[];if(c!==`scopeName`)for(let t of n.settings){let n;switch(typeof t.scope){case`string`:n=t.scope.split(Tv).map(e=>e.trim());break;case`object`:n=t.scope;break;default:continue}e.push({settings:t,selectors:n.map(e=>e.split(Ev))})}f.explanation=[];let r=0;for(;t+r<o;){let t=h[g],n=i.substring(t.startIndex,t.endIndex);r+=n.length,f.explanation.push({content:n,scopes:c===`scopeName`?jv(t.scopes):Mv(e,t.scopes)}),g+=1}}d.push(f)}f.push(d),d=[],u=_.ruleStack}return{tokens:f,stateStack:u}}function jv(e){return e.map(e=>({scopeName:e}))}function Mv(e,t){let n=[];for(let r=0,i=t.length;r<i;r++){let i=t[r];n[r]={scopeName:i,themeMatches:Fv(e,i,t.slice(0,r))}}return n}function Nv(e,t){return e===t||t.substring(0,e.length)===e&&t[e.length]===`.`}function Pv(e,t,n){if(!Nv(e.at(-1),t))return!1;let r=e.length-2,i=n.length-1;for(;r>=0&&i>=0;)Nv(e[r],n[i])&&--r,--i;return r===-1}function Fv(e,t,n){let r=[];for(let{selectors:i,settings:a}of e)for(let e of i)if(Pv(e,t,n)){r.push(a);break}return r}function Iv(e,t,n,r=Dv){let i=Object.entries(n.themes).filter(e=>e[1]).map(e=>({color:e[0],theme:e[1]})),a=i.map(i=>{let a=r(e,t,{...n,theme:i.theme});return{tokens:a,state:xv(a),theme:typeof i.theme==`string`?i.theme:i.theme.name}}),o=Lv(...a.map(e=>e.tokens)),s=o[0].map((e,t)=>e.map((e,r)=>{let a={content:e.content,variants:{},offset:e.offset};return`includeExplanation`in n&&n.includeExplanation&&(a.explanation=e.explanation),o.forEach((e,n)=>{let{content:o,explanation:s,offset:c,...l}=e[t][r];a.variants[i[n].color]=l}),a})),c=a[0].state?new Sv(Object.fromEntries(a.map(e=>[e.theme,e.state?.getInternalStack(e.theme)])),a[0].state.lang):void 0;return c&&bv(s,c),s}function Lv(...e){let t=e.map(()=>[]),n=e.length;for(let r=0;r<e[0].length;r++){let i=e.map(e=>e[r]),a=t.map(()=>[]);t.forEach((e,t)=>e.push(a[t]));let o=i.map(()=>0),s=i.map(e=>e[0]);for(;s.every(e=>e);){let e=Math.min(...s.map(e=>e.content.length));for(let t=0;t<n;t++){let n=s[t];n.content.length===e?(a[t].push(n),o[t]+=1,s[t]=i[t][o[t]]):(a[t].push({...n,content:n.content.slice(0,e)}),s[t]={...n,content:n.content.slice(e),offset:n.offset+e})}}}return t}var Rv=[`area`,`base`,`basefont`,`bgsound`,`br`,`col`,`command`,`embed`,`frame`,`hr`,`image`,`img`,`input`,`keygen`,`link`,`meta`,`param`,`source`,`track`,`wbr`],zv=class{constructor(e,t,n){this.normal=t,this.property=e,n&&(this.space=n)}};zv.prototype.normal={},zv.prototype.property={},zv.prototype.space=void 0;function Bv(e,t){let n={},r={};for(let t of e)Object.assign(n,t.property),Object.assign(r,t.normal);return new zv(n,r,t)}function Vv(e){return e.toLowerCase()}var Hv=class{constructor(e,t){this.attribute=t,this.property=e}};Hv.prototype.attribute=``,Hv.prototype.booleanish=!1,Hv.prototype.boolean=!1,Hv.prototype.commaOrSpaceSeparated=!1,Hv.prototype.commaSeparated=!1,Hv.prototype.defined=!1,Hv.prototype.mustUseProperty=!1,Hv.prototype.number=!1,Hv.prototype.overloadedBoolean=!1,Hv.prototype.property=``,Hv.prototype.spaceSeparated=!1,Hv.prototype.space=void 0;var Uv=t({boolean:()=>Q,booleanish:()=>Gv,commaOrSpaceSeparated:()=>Yv,commaSeparated:()=>Jv,number:()=>$,overloadedBoolean:()=>Kv,spaceSeparated:()=>qv}),Wv=0,Q=Xv(),Gv=Xv(),Kv=Xv(),$=Xv(),qv=Xv(),Jv=Xv(),Yv=Xv();function Xv(){return 2**++Wv}var Zv=Object.keys(Uv),Qv=class extends Hv{constructor(e,t,n,r){let i=-1;if(super(e,t),$v(this,`space`,r),typeof n==`number`)for(;++i<Zv.length;){let e=Zv[i];$v(this,Zv[i],(n&Uv[e])===Uv[e])}}};Qv.prototype.defined=!0;function $v(e,t,n){n&&(e[t]=n)}function ey(e){let t={},n={};for(let[r,i]of Object.entries(e.properties)){let a=new Qv(r,e.transform(e.attributes||{},r),i,e.space);e.mustUseProperty&&e.mustUseProperty.includes(r)&&(a.mustUseProperty=!0),t[r]=a,n[Vv(r)]=r,n[Vv(a.attribute)]=r}return new zv(t,n,e.space)}var ty=ey({properties:{ariaActiveDescendant:null,ariaAtomic:Gv,ariaAutoComplete:null,ariaBusy:Gv,ariaChecked:Gv,ariaColCount:$,ariaColIndex:$,ariaColSpan:$,ariaControls:qv,ariaCurrent:null,ariaDescribedBy:qv,ariaDetails:null,ariaDisabled:Gv,ariaDropEffect:qv,ariaErrorMessage:null,ariaExpanded:Gv,ariaFlowTo:qv,ariaGrabbed:Gv,ariaHasPopup:null,ariaHidden:Gv,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:qv,ariaLevel:$,ariaLive:null,ariaModal:Gv,ariaMultiLine:Gv,ariaMultiSelectable:Gv,ariaOrientation:null,ariaOwns:qv,ariaPlaceholder:null,ariaPosInSet:$,ariaPressed:Gv,ariaReadOnly:Gv,ariaRelevant:null,ariaRequired:Gv,ariaRoleDescription:qv,ariaRowCount:$,ariaRowIndex:$,ariaRowSpan:$,ariaSelected:Gv,ariaSetSize:$,ariaSort:null,ariaValueMax:$,ariaValueMin:$,ariaValueNow:$,ariaValueText:null,role:null},transform(e,t){return t===`role`?t:`aria-`+t.slice(4).toLowerCase()}});function ny(e,t){return t in e?e[t]:t}function ry(e,t){return ny(e,t.toLowerCase())}var iy=ey({attributes:{acceptcharset:`accept-charset`,classname:`class`,htmlfor:`for`,httpequiv:`http-equiv`},mustUseProperty:[`checked`,`multiple`,`muted`,`selected`],properties:{abbr:null,accept:Jv,acceptCharset:qv,accessKey:qv,action:null,allow:null,allowFullScreen:Q,allowPaymentRequest:Q,allowUserMedia:Q,alt:null,as:null,async:Q,autoCapitalize:null,autoComplete:qv,autoFocus:Q,autoPlay:Q,blocking:qv,capture:null,charSet:null,checked:Q,cite:null,className:qv,cols:$,colSpan:null,content:null,contentEditable:Gv,controls:Q,controlsList:qv,coords:$|Jv,crossOrigin:null,data:null,dateTime:null,decoding:null,default:Q,defer:Q,dir:null,dirName:null,disabled:Q,download:Kv,draggable:Gv,encType:null,enterKeyHint:null,fetchPriority:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:Q,formTarget:null,headers:qv,height:$,hidden:Kv,high:$,href:null,hrefLang:null,htmlFor:qv,httpEquiv:qv,id:null,imageSizes:null,imageSrcSet:null,inert:Q,inputMode:null,integrity:null,is:null,isMap:Q,itemId:null,itemProp:qv,itemRef:qv,itemScope:Q,itemType:qv,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:Q,low:$,manifest:null,max:null,maxLength:$,media:null,method:null,min:null,minLength:$,multiple:Q,muted:Q,name:null,nonce:null,noModule:Q,noValidate:Q,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:Q,optimum:$,pattern:null,ping:qv,placeholder:null,playsInline:Q,popover:null,popoverTarget:null,popoverTargetAction:null,poster:null,preload:null,readOnly:Q,referrerPolicy:null,rel:qv,required:Q,reversed:Q,rows:$,rowSpan:$,sandbox:qv,scope:null,scoped:Q,seamless:Q,selected:Q,shadowRootClonable:Q,shadowRootDelegatesFocus:Q,shadowRootMode:null,shape:null,size:$,sizes:null,slot:null,span:$,spellCheck:Gv,src:null,srcDoc:null,srcLang:null,srcSet:null,start:$,step:null,style:null,tabIndex:$,target:null,title:null,translate:null,type:null,typeMustMatch:Q,useMap:null,value:Gv,width:$,wrap:null,writingSuggestions:null,align:null,aLink:null,archive:qv,axis:null,background:null,bgColor:null,border:$,borderColor:null,bottomMargin:$,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:Q,declare:Q,event:null,face:null,frame:null,frameBorder:null,hSpace:$,leftMargin:$,link:null,longDesc:null,lowSrc:null,marginHeight:$,marginWidth:$,noResize:Q,noHref:Q,noShade:Q,noWrap:Q,object:null,profile:null,prompt:null,rev:null,rightMargin:$,rules:null,scheme:null,scrolling:Gv,standby:null,summary:null,text:null,topMargin:$,valueType:null,version:null,vAlign:null,vLink:null,vSpace:$,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:Q,disableRemotePlayback:Q,prefix:null,property:null,results:$,security:null,unselectable:null},space:`html`,transform:ry}),ay=ey({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:Yv,accentHeight:$,accumulate:null,additive:null,alignmentBaseline:null,alphabetic:$,amplitude:$,arabicForm:null,ascent:$,attributeName:null,attributeType:null,azimuth:$,bandwidth:null,baselineShift:null,baseFrequency:null,baseProfile:null,bbox:null,begin:null,bias:$,by:null,calcMode:null,capHeight:$,className:qv,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:$,diffuseConstant:$,direction:null,display:null,dur:null,divisor:$,dominantBaseline:null,download:Q,dx:null,dy:null,edgeMode:null,editable:null,elevation:$,enableBackground:null,end:null,event:null,exponent:$,externalResourcesRequired:null,fill:null,fillOpacity:$,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:Jv,g2:Jv,glyphName:Jv,glyphOrientationHorizontal:null,glyphOrientationVertical:null,glyphRef:null,gradientTransform:null,gradientUnits:null,handler:null,hanging:$,hatchContentUnits:null,hatchUnits:null,height:null,href:null,hrefLang:null,horizAdvX:$,horizOriginX:$,horizOriginY:$,id:null,ideographic:$,imageRendering:null,initialVisibility:null,in:null,in2:null,intercept:$,k:$,k1:$,k2:$,k3:$,k4:$,kernelMatrix:Yv,kernelUnitLength:null,keyPoints:null,keySplines:null,keyTimes:null,kerning:null,lang:null,lengthAdjust:null,letterSpacing:null,lightingColor:null,limitingConeAngle:$,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:$,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:$,overlineThickness:$,paintOrder:null,panose1:null,path:null,pathLength:$,patternContentUnits:null,patternTransform:null,patternUnits:null,phase:null,ping:qv,pitch:null,playbackOrder:null,pointerEvents:null,points:null,pointsAtX:$,pointsAtY:$,pointsAtZ:$,preserveAlpha:null,preserveAspectRatio:null,primitiveUnits:null,propagate:null,property:Yv,r:null,radius:null,referrerPolicy:null,refX:null,refY:null,rel:Yv,rev:Yv,renderingIntent:null,repeatCount:null,repeatDur:null,requiredExtensions:Yv,requiredFeatures:Yv,requiredFonts:Yv,requiredFormats:Yv,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:$,specularExponent:$,spreadMethod:null,spacing:null,startOffset:null,stdDeviation:null,stemh:null,stemv:null,stitchTiles:null,stopColor:null,stopOpacity:null,strikethroughPosition:$,strikethroughThickness:$,string:null,stroke:null,strokeDashArray:Yv,strokeDashOffset:null,strokeLineCap:null,strokeLineJoin:null,strokeMiterLimit:$,strokeOpacity:$,strokeWidth:null,style:null,surfaceScale:$,syncBehavior:null,syncBehaviorDefault:null,syncMaster:null,syncTolerance:null,syncToleranceDefault:null,systemLanguage:Yv,tabIndex:$,tableValues:null,target:null,targetX:$,targetY:$,textAnchor:null,textDecoration:null,textRendering:null,textLength:null,timelineBegin:null,title:null,transformBehavior:null,type:null,typeOf:Yv,to:null,transform:null,transformOrigin:null,u1:null,u2:null,underlinePosition:$,underlineThickness:$,unicode:null,unicodeBidi:null,unicodeRange:null,unitsPerEm:$,values:null,vAlphabetic:$,vMathematical:$,vectorEffect:null,vHanging:$,vIdeographic:$,version:null,vertAdvY:$,vertOriginX:$,vertOriginY:$,viewBox:null,viewTarget:null,visibility:null,width:null,widths:null,wordSpacing:null,writingMode:null,x:null,x1:null,x2:null,xChannelSelector:null,xHeight:$,y:null,y1:null,y2:null,yChannelSelector:null,z:null,zoomAndPan:null},space:`svg`,transform:ny}),oy=ey({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()}}),sy=ey({attributes:{xmlnsxlink:`xmlns:xlink`},properties:{xmlnsXLink:null,xmlns:null},space:`xmlns`,transform:ry}),cy=ey({properties:{xmlBase:null,xmlLang:null,xmlSpace:null},space:`xml`,transform(e,t){return`xml:`+t.slice(3).toLowerCase()}}),ly=/[A-Z]/g,uy=/-[a-z]/g,dy=/^data[-\w.:]+$/i;function fy(e,t){let n=Vv(t),r=t,i=Hv;if(n in e.normal)return e.property[e.normal[n]];if(n.length>4&&n.slice(0,4)===`data`&&dy.test(t)){if(t.charAt(4)===`-`){let e=t.slice(5).replace(uy,my);r=`data`+e.charAt(0).toUpperCase()+e.slice(1)}else{let e=t.slice(4);if(!uy.test(e)){let n=e.replace(ly,py);n.charAt(0)!==`-`&&(n=`-`+n),t=`data`+n}}i=Qv}return new i(r,t)}function py(e){return`-`+e.toLowerCase()}function my(e){return e.charAt(1).toUpperCase()}var hy=Bv([ty,iy,oy,sy,cy],`html`),gy=Bv([ty,ay,oy,sy,cy],`svg`),_y={}.hasOwnProperty;function vy(e,t){let n=t||{};function r(t,...n){let i=r.invalid,a=r.handlers;if(t&&_y.call(t,e)){let n=String(t[e]);i=_y.call(a,n)?a[n]:r.unknown}if(i)return i.call(this,t,...n)}return r.handlers=n.handlers||{},r.invalid=n.invalid,r.unknown=n.unknown,r}var yy=/["&'<>`]/g,by=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,xy=/[\x01-\t\v\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g,Sy=/[|\\{}()[\]^$+*?.]/g,Cy=new WeakMap;function wy(e,t){if(e=e.replace(t.subset?Ty(t.subset):yy,r),t.subset||t.escapeOnly)return e;return e.replace(by,n).replace(xy,r);function n(e,n,r){return t.format((e.charCodeAt(0)-55296)*1024+e.charCodeAt(1)-56320+65536,r.charCodeAt(n+2),t)}function r(e,n,r){return t.format(e.charCodeAt(0),r.charCodeAt(n+1),t)}}function Ty(e){let t=Cy.get(e);return t||(t=Ey(e),Cy.set(e,t)),t}function Ey(e){let t=[],n=-1;for(;++n<e.length;)t.push(e[n].replace(Sy,`\\$&`));return RegExp(`(?:`+t.join(`|`)+`)`,`g`)}var Dy=/[\dA-Fa-f]/;function Oy(e,t,n){let r=`&#x`+e.toString(16).toUpperCase();return n&&t&&!Dy.test(String.fromCharCode(t))?r:r+`;`}var ky=/\d/;function Ay(e,t,n){let r=`&#`+String(e);return n&&t&&!ky.test(String.fromCharCode(t))?r:r+`;`}var jy=`AElig.AMP.Aacute.Acirc.Agrave.Aring.Atilde.Auml.COPY.Ccedil.ETH.Eacute.Ecirc.Egrave.Euml.GT.Iacute.Icirc.Igrave.Iuml.LT.Ntilde.Oacute.Ocirc.Ograve.Oslash.Otilde.Ouml.QUOT.REG.THORN.Uacute.Ucirc.Ugrave.Uuml.Yacute.aacute.acirc.acute.aelig.agrave.amp.aring.atilde.auml.brvbar.ccedil.cedil.cent.copy.curren.deg.divide.eacute.ecirc.egrave.eth.euml.frac12.frac14.frac34.gt.iacute.icirc.iexcl.igrave.iquest.iuml.laquo.lt.macr.micro.middot.nbsp.not.ntilde.oacute.ocirc.ograve.ordf.ordm.oslash.otilde.ouml.para.plusmn.pound.quot.raquo.reg.sect.shy.sup1.sup2.sup3.szlig.thorn.times.uacute.ucirc.ugrave.uml.uuml.yacute.yen.yuml`.split(`.`),My={nbsp:`\xA0`,iexcl:`¡`,cent:`¢`,pound:`£`,curren:`¤`,yen:`¥`,brvbar:`¦`,sect:`§`,uml:`¨`,copy:`©`,ordf:`ª`,laquo:`«`,not:`¬`,shy:``,reg:`®`,macr:`¯`,deg:`°`,plusmn:`±`,sup2:`²`,sup3:`³`,acute:`´`,micro:`µ`,para:`¶`,middot:`·`,cedil:`¸`,sup1:`¹`,ordm:`º`,raquo:`»`,frac14:`¼`,frac12:`½`,frac34:`¾`,iquest:`¿`,Agrave:`À`,Aacute:`Á`,Acirc:`Â`,Atilde:`Ã`,Auml:`Ä`,Aring:`Å`,AElig:`Æ`,Ccedil:`Ç`,Egrave:`È`,Eacute:`É`,Ecirc:`Ê`,Euml:`Ë`,Igrave:`Ì`,Iacute:`Í`,Icirc:`Î`,Iuml:`Ï`,ETH:`Ð`,Ntilde:`Ñ`,Ograve:`Ò`,Oacute:`Ó`,Ocirc:`Ô`,Otilde:`Õ`,Ouml:`Ö`,times:`×`,Oslash:`Ø`,Ugrave:`Ù`,Uacute:`Ú`,Ucirc:`Û`,Uuml:`Ü`,Yacute:`Ý`,THORN:`Þ`,szlig:`ß`,agrave:`à`,aacute:`á`,acirc:`â`,atilde:`ã`,auml:`ä`,aring:`å`,aelig:`æ`,ccedil:`ç`,egrave:`è`,eacute:`é`,ecirc:`ê`,euml:`ë`,igrave:`ì`,iacute:`í`,icirc:`î`,iuml:`ï`,eth:`ð`,ntilde:`ñ`,ograve:`ò`,oacute:`ó`,ocirc:`ô`,otilde:`õ`,ouml:`ö`,divide:`÷`,oslash:`ø`,ugrave:`ù`,uacute:`ú`,ucirc:`û`,uuml:`ü`,yacute:`ý`,thorn:`þ`,yuml:`ÿ`,fnof:`ƒ`,Alpha:`Α`,Beta:`Β`,Gamma:`Γ`,Delta:`Δ`,Epsilon:`Ε`,Zeta:`Ζ`,Eta:`Η`,Theta:`Θ`,Iota:`Ι`,Kappa:`Κ`,Lambda:`Λ`,Mu:`Μ`,Nu:`Ν`,Xi:`Ξ`,Omicron:`Ο`,Pi:`Π`,Rho:`Ρ`,Sigma:`Σ`,Tau:`Τ`,Upsilon:`Υ`,Phi:`Φ`,Chi:`Χ`,Psi:`Ψ`,Omega:`Ω`,alpha:`α`,beta:`β`,gamma:`γ`,delta:`δ`,epsilon:`ε`,zeta:`ζ`,eta:`η`,theta:`θ`,iota:`ι`,kappa:`κ`,lambda:`λ`,mu:`μ`,nu:`ν`,xi:`ξ`,omicron:`ο`,pi:`π`,rho:`ρ`,sigmaf:`ς`,sigma:`σ`,tau:`τ`,upsilon:`υ`,phi:`φ`,chi:`χ`,psi:`ψ`,omega:`ω`,thetasym:`ϑ`,upsih:`ϒ`,piv:`ϖ`,bull:`•`,hellip:`…`,prime:`′`,Prime:`″`,oline:`‾`,frasl:`⁄`,weierp:`℘`,image:`ℑ`,real:`ℜ`,trade:`™`,alefsym:`ℵ`,larr:`←`,uarr:`↑`,rarr:`→`,darr:`↓`,harr:`↔`,crarr:`↵`,lArr:`⇐`,uArr:`⇑`,rArr:`⇒`,dArr:`⇓`,hArr:`⇔`,forall:`∀`,part:`∂`,exist:`∃`,empty:`∅`,nabla:`∇`,isin:`∈`,notin:`∉`,ni:`∋`,prod:`∏`,sum:`∑`,minus:`−`,lowast:`∗`,radic:`√`,prop:`∝`,infin:`∞`,ang:`∠`,and:`∧`,or:`∨`,cap:`∩`,cup:`∪`,int:`∫`,there4:`∴`,sim:`∼`,cong:`≅`,asymp:`≈`,ne:`≠`,equiv:`≡`,le:`≤`,ge:`≥`,sub:`⊂`,sup:`⊃`,nsub:`⊄`,sube:`⊆`,supe:`⊇`,oplus:`⊕`,otimes:`⊗`,perp:`⊥`,sdot:`⋅`,lceil:`⌈`,rceil:`⌉`,lfloor:`⌊`,rfloor:`⌋`,lang:`〈`,rang:`〉`,loz:`◊`,spades:`♠`,clubs:`♣`,hearts:`♥`,diams:`♦`,quot:`"`,amp:`&`,lt:`<`,gt:`>`,OElig:`Œ`,oelig:`œ`,Scaron:`Š`,scaron:`š`,Yuml:`Ÿ`,circ:`ˆ`,tilde:`˜`,ensp:` `,emsp:` `,thinsp:` `,zwnj:``,zwj:``,lrm:``,rlm:``,ndash:`–`,mdash:`—`,lsquo:`‘`,rsquo:`’`,sbquo:`‚`,ldquo:`“`,rdquo:`”`,bdquo:`„`,dagger:`†`,Dagger:`‡`,permil:`‰`,lsaquo:`‹`,rsaquo:`›`,euro:`€`},Ny=[`cent`,`copy`,`divide`,`gt`,`lt`,`not`,`para`,`times`],Py={}.hasOwnProperty,Fy={},Iy;for(Iy in My)Py.call(My,Iy)&&(Fy[My[Iy]]=Iy);var Ly=/[^\dA-Za-z]/;function Ry(e,t,n,r){let i=String.fromCharCode(e);if(Py.call(Fy,i)){let e=Fy[i],a=`&`+e;return n&&jy.includes(e)&&!Ny.includes(e)&&(!r||t&&t!==61&&Ly.test(String.fromCharCode(t)))?a:a+`;`}return``}function zy(e,t,n){let r=Oy(e,t,n.omitOptionalSemicolons),i;if((n.useNamedReferences||n.useShortestReferences)&&(i=Ry(e,t,n.omitOptionalSemicolons,n.attribute)),(n.useShortestReferences||!i)&&n.useShortestReferences){let i=Ay(e,t,n.omitOptionalSemicolons);i.length<r.length&&(r=i)}return i&&(!n.useShortestReferences||i.length<r.length)?i:r}function By(e,t){return wy(e,Object.assign({format:zy},t))}var Vy=/^>|^->|<!--|-->|--!>|<!-$/g,Hy=[`>`],Uy=[`<`,`>`];function Wy(e,t,n,r){return r.settings.bogusComments?`<?`+By(e.value,Object.assign({},r.settings.characterReferences,{subset:Hy}))+`>`:`<!--`+e.value.replace(Vy,i)+`-->`;function i(e){return By(e,Object.assign({},r.settings.characterReferences,{subset:Uy}))}}function Gy(e,t,n,r){return`<!`+(r.settings.upperDoctype?`DOCTYPE`:`doctype`)+(r.settings.tightDoctype?``:` `)+`html>`}function Ky(e,t){let n=String(e);if(typeof t!=`string`)throw TypeError(`Expected character`);let r=0,i=n.indexOf(t);for(;i!==-1;)r++,i=n.indexOf(t,i+t.length);return r}function qy(e,t){let n=t||{};return(e[e.length-1]===``?[...e,``]:e).join((n.padRight?` `:``)+`,`+(n.padLeft===!1?``:` `)).trim()}function Jy(e){return e.join(` `).trim()}var Yy=/[ \t\n\f\r]/g;function Xy(e){return typeof e==`object`?e.type===`text`?Zy(e.value):!1:Zy(e)}function Zy(e){return e.replace(Yy,``)===``}var Qy=tb(1),$y=tb(-1),eb=[];function tb(e){return t;function t(t,n,r){let i=t?t.children:eb,a=(n||0)+e,o=i[a];if(!r)for(;o&&Xy(o);)a+=e,o=i[a];return o}}var nb={}.hasOwnProperty;function rb(e){return t;function t(t,n,r){return nb.call(e,t.tagName)&&e[t.tagName](t,n,r)}}var ib=rb({body:sb,caption:ab,colgroup:ab,dd:db,dt:ub,head:ab,html:ob,li:lb,optgroup:pb,option:mb,p:cb,rp:fb,rt:fb,tbody:gb,td:yb,tfoot:_b,th:yb,thead:hb,tr:vb});function ab(e,t,n){let r=Qy(n,t,!0);return!r||r.type!==`comment`&&!(r.type===`text`&&Xy(r.value.charAt(0)))}function ob(e,t,n){let r=Qy(n,t);return!r||r.type!==`comment`}function sb(e,t,n){let r=Qy(n,t);return!r||r.type!==`comment`}function cb(e,t,n){let r=Qy(n,t);return r?r.type===`element`&&(r.tagName===`address`||r.tagName===`article`||r.tagName===`aside`||r.tagName===`blockquote`||r.tagName===`details`||r.tagName===`div`||r.tagName===`dl`||r.tagName===`fieldset`||r.tagName===`figcaption`||r.tagName===`figure`||r.tagName===`footer`||r.tagName===`form`||r.tagName===`h1`||r.tagName===`h2`||r.tagName===`h3`||r.tagName===`h4`||r.tagName===`h5`||r.tagName===`h6`||r.tagName===`header`||r.tagName===`hgroup`||r.tagName===`hr`||r.tagName===`main`||r.tagName===`menu`||r.tagName===`nav`||r.tagName===`ol`||r.tagName===`p`||r.tagName===`pre`||r.tagName===`section`||r.tagName===`table`||r.tagName===`ul`):!n||!(n.type===`element`&&(n.tagName===`a`||n.tagName===`audio`||n.tagName===`del`||n.tagName===`ins`||n.tagName===`map`||n.tagName===`noscript`||n.tagName===`video`))}function lb(e,t,n){let r=Qy(n,t);return!r||r.type===`element`&&r.tagName===`li`}function ub(e,t,n){let r=Qy(n,t);return!!(r&&r.type===`element`&&(r.tagName===`dt`||r.tagName===`dd`))}function db(e,t,n){let r=Qy(n,t);return!r||r.type===`element`&&(r.tagName===`dt`||r.tagName===`dd`)}function fb(e,t,n){let r=Qy(n,t);return!r||r.type===`element`&&(r.tagName===`rp`||r.tagName===`rt`)}function pb(e,t,n){let r=Qy(n,t);return!r||r.type===`element`&&r.tagName===`optgroup`}function mb(e,t,n){let r=Qy(n,t);return!r||r.type===`element`&&(r.tagName===`option`||r.tagName===`optgroup`)}function hb(e,t,n){let r=Qy(n,t);return!!(r&&r.type===`element`&&(r.tagName===`tbody`||r.tagName===`tfoot`))}function gb(e,t,n){let r=Qy(n,t);return!r||r.type===`element`&&(r.tagName===`tbody`||r.tagName===`tfoot`)}function _b(e,t,n){return!Qy(n,t)}function vb(e,t,n){let r=Qy(n,t);return!r||r.type===`element`&&r.tagName===`tr`}function yb(e,t,n){let r=Qy(n,t);return!r||r.type===`element`&&(r.tagName===`td`||r.tagName===`th`)}var bb=rb({body:Cb,colgroup:wb,head:Sb,html:xb,tbody:Tb});function xb(e){let t=Qy(e,-1);return!t||t.type!==`comment`}function Sb(e){let t=new Set;for(let n of e.children)if(n.type===`element`&&(n.tagName===`base`||n.tagName===`title`)){if(t.has(n.tagName))return!1;t.add(n.tagName)}let n=e.children[0];return!n||n.type===`element`}function Cb(e){let t=Qy(e,-1,!0);return!t||t.type!==`comment`&&!(t.type===`text`&&Xy(t.value.charAt(0)))&&!(t.type===`element`&&(t.tagName===`meta`||t.tagName===`link`||t.tagName===`script`||t.tagName===`style`||t.tagName===`template`))}function wb(e,t,n){let r=$y(n,t),i=Qy(e,-1,!0);return n&&r&&r.type===`element`&&r.tagName===`colgroup`&&ib(r,n.children.indexOf(r),n)?!1:!!(i&&i.type===`element`&&i.tagName===`col`)}function Tb(e,t,n){let r=$y(n,t),i=Qy(e,-1);return n&&r&&r.type===`element`&&(r.tagName===`thead`||r.tagName===`tbody`)&&ib(r,n.children.indexOf(r),n)?!1:!!(i&&i.type===`element`&&i.tagName===`tr`)}var Eb={name:[[`
|
|
24
|
-
\f\r &/=>`.split(``),`
|
|
25
|
-
\f\r "&'/=>\``.split(``)],[`\0
|
|
26
|
-
\f\r "&'/<=>`.split(``),`\0
|
|
27
|
-
\f\r "&'/<=>\``.split(``)]],unquoted:[[`
|
|
28
|
-
\f\r &>`.split(``),`\0
|
|
29
|
-
\f\r "&'<=>\``.split(``)],[`\0
|
|
30
|
-
\f\r "&'<=>\``.split(``),`\0
|
|
31
|
-
\f\r "&'<=>\``.split(``)]],single:[[`&'`.split(``),`"&'\``.split(``)],[`\0&'`.split(``),`\0"&'\``.split(``)]],double:[[`"&`.split(``),`"&'\``.split(``)],[`\0"&`.split(``),`\0"&'\``.split(``)]]};function Db(e,t,n,r){let i=r.schema,a=i.space===`svg`?!1:r.settings.omitOptionalTags,o=i.space===`svg`?r.settings.closeEmptyElements:r.settings.voids.includes(e.tagName.toLowerCase()),s=[],c;i.space===`html`&&e.tagName===`svg`&&(r.schema=gy);let l=Ob(r,e.properties),u=r.all(i.space===`html`&&e.tagName===`template`?e.content:e);return r.schema=i,u&&(o=!1),(l||!a||!bb(e,t,n))&&(s.push(`<`,e.tagName,l?` `+l:``),o&&(i.space===`svg`||r.settings.closeSelfClosing)&&(c=l.charAt(l.length-1),(!r.settings.tightSelfClosing||c===`/`||c&&c!==`"`&&c!==`'`)&&s.push(` `),s.push(`/`)),s.push(`>`)),s.push(u),!o&&(!a||!ib(e,t,n))&&s.push(`</`+e.tagName+`>`),s.join(``)}function Ob(e,t){let n=[],r=-1,i;if(t){for(i in t)if(t[i]!==null&&t[i]!==void 0){let r=kb(e,i,t[i]);r&&n.push(r)}}for(;++r<n.length;){let t=e.settings.tightAttributes?n[r].charAt(n[r].length-1):void 0;r!==n.length-1&&t!==`"`&&t!==`'`&&(n[r]+=` `)}return n.join(``)}function kb(e,t,n){let r=fy(e.schema,t),i=e.settings.allowParseErrors&&e.schema.space===`html`?0:1,a=e.settings.allowDangerousCharacters?0:1,o=e.quote,s;if(r.overloadedBoolean&&(n===r.attribute||n===``)?n=!0:(r.boolean||r.overloadedBoolean)&&(typeof n!=`string`||n===r.attribute||n===``)&&(n=!!n),n==null||n===!1||typeof n==`number`&&Number.isNaN(n))return``;let c=By(r.attribute,Object.assign({},e.settings.characterReferences,{subset:Eb.name[i][a]}));return n===!0||(n=Array.isArray(n)?(r.commaSeparated?qy:Jy)(n,{padLeft:!e.settings.tightCommaSeparatedLists}):String(n),e.settings.collapseEmptyAttributes&&!n)?c:(e.settings.preferUnquoted&&(s=By(n,Object.assign({},e.settings.characterReferences,{attribute:!0,subset:Eb.unquoted[i][a]}))),s!==n&&(e.settings.quoteSmart&&Ky(n,o)>Ky(n,e.alternative)&&(o=e.alternative),s=o+By(n,Object.assign({},e.settings.characterReferences,{subset:(o===`'`?Eb.single:Eb.double)[i][a],attribute:!0}))+o),c+(s&&`=`+s))}var Ab=[`<`,`&`];function jb(e,t,n,r){return n&&n.type===`element`&&(n.tagName===`script`||n.tagName===`style`)?e.value:By(e.value,Object.assign({},r.settings.characterReferences,{subset:Ab}))}function Mb(e,t,n,r){return r.settings.allowDangerousHtml?e.value:jb(e,t,n,r)}function Nb(e,t,n,r){return r.all(e)}var Pb=vy(`type`,{invalid:Fb,unknown:Ib,handlers:{comment:Wy,doctype:Gy,element:Db,raw:Mb,root:Nb,text:jb}});function Fb(e){throw Error("Expected node, not `"+e+"`")}function Ib(e){let t=e;throw Error("Cannot compile unknown node `"+t.type+"`")}var Lb={},Rb={},zb=[];function Bb(e,t){let n=t||Lb,r=n.quote||`"`,i=r===`"`?`'`:`"`;if(r!==`"`&&r!==`'`)throw Error("Invalid quote `"+r+"`, expected `'` or `\"`");return{one:Vb,all:Hb,settings:{omitOptionalTags:n.omitOptionalTags||!1,allowParseErrors:n.allowParseErrors||!1,allowDangerousCharacters:n.allowDangerousCharacters||!1,quoteSmart:n.quoteSmart||!1,preferUnquoted:n.preferUnquoted||!1,tightAttributes:n.tightAttributes||!1,upperDoctype:n.upperDoctype||!1,tightDoctype:n.tightDoctype||!1,bogusComments:n.bogusComments||!1,tightCommaSeparatedLists:n.tightCommaSeparatedLists||!1,tightSelfClosing:n.tightSelfClosing||!1,collapseEmptyAttributes:n.collapseEmptyAttributes||!1,allowDangerousHtml:n.allowDangerousHtml||!1,voids:n.voids||Rv,characterReferences:n.characterReferences||Rb,closeSelfClosing:n.closeSelfClosing||!1,closeEmptyElements:n.closeEmptyElements||!1},schema:n.space===`svg`?gy:hy,quote:r,alternative:i}.one(Array.isArray(e)?{type:`root`,children:e}:e,void 0,void 0)}function Vb(e,t,n){return Pb(e,t,n,this)}function Hb(e){let t=[],n=e&&e.children||zb,r=-1;for(;++r<n.length;)t[r]=this.one(n[r],r,e);return t.join(``)}var Ub=/\s+/g;function Wb(e,t){if(!t)return e;e.properties||={},e.properties.class||=[],typeof e.properties.class==`string`&&(e.properties.class=e.properties.class.split(Ub)),Array.isArray(e.properties.class)||(e.properties.class=[]);let n=Array.isArray(t)?t:t.split(Ub);for(let t of n)t&&!e.properties.class.includes(t)&&e.properties.class.push(t);return e}var Gb=/:?lang=["']([^"']+)["']/g,Kb=/(?:```|~~~)([\w-]+)/g,qb=/\\begin\{([\w-]+)\}/g,Jb=/<script\s+(?:type|lang)=["']([^"']+)["']/gi;function Yb(e){let t=ov(e,!0).map(([e])=>e);function n(n){if(n===e.length)return{line:t.length-1,character:t.at(-1).length};let r=n,i=0;for(let e of t){if(r<e.length)break;r-=e.length,i++}return{line:i,character:r}}function r(e,n){let r=0;for(let n=0;n<e;n++)r+=t[n].length;return r+=n,r}return{lines:t,indexToPos:n,posToIndex:r}}function Xb(e,t,n){let r=new Set;for(let t of e.matchAll(Gb)){let e=t[1].toLowerCase().trim();e&&r.add(e)}for(let t of e.matchAll(Kb)){let e=t[1].toLowerCase().trim();e&&r.add(e)}for(let t of e.matchAll(qb)){let e=t[1].toLowerCase().trim();e&&r.add(e)}for(let t of e.matchAll(Jb)){let e=t[1].toLowerCase().trim(),n=e.includes(`/`)?e.split(`/`).pop():e;n&&r.add(n)}if(!n)return[...r];let i=n.getBundledLanguages();return[...r].filter(e=>e&&i[e])}var Zb=[`color`,`background-color`];function Qb(e,t){let n=0,r=[];for(let i of t)i>n&&r.push({...e,content:e.content.slice(n,i),offset:e.offset+n}),n=i;return n<e.content.length&&r.push({...e,content:e.content.slice(n),offset:e.offset+n}),r}function $b(e,t){let n=[...t instanceof Set?t:new Set(t)].sort((e,t)=>e-t);return n.length?e.map(e=>e.flatMap(e=>{let t=n.filter(t=>e.offset<t&&t<e.offset+e.content.length).map(t=>t-e.offset).sort((e,t)=>e-t);return t.length?Qb(e,t):e})):e}function ex(e,t,n,r,i=`css-vars`){let a={content:e.content,explanation:e.explanation,offset:e.offset},o=t.map(t=>tx(e.variants[t])),s=new Set(o.flatMap(e=>Object.keys(e))),c={},l=(e,r)=>{let i=r===`color`?``:r===`background-color`?`-bg`:`-${r}`;return n+t[e]+(r===`color`?``:i)};return o.forEach((e,n)=>{for(let a of s){let s=e[a]||`inherit`;if(n===0&&r&&Zb.includes(a))if(r===`light-dark()`&&o.length>1){let e=t.findIndex(e=>e===`light`),r=t.findIndex(e=>e===`dark`);if(e===-1||r===-1)throw new pg('When using `defaultColor: "light-dark()"`, you must provide both `light` and `dark` themes');c[a]=`light-dark(${o[e][a]||`inherit`}, ${o[r][a]||`inherit`})`,i===`css-vars`&&(c[l(n,a)]=s)}else c[a]=s;else i===`css-vars`&&(c[l(n,a)]=s)}}),a.htmlStyle=c,a}function tx(e){let t={};if(e.color&&(t.color=e.color),e.bgColor&&(t[`background-color`]=e.bgColor),e.fontStyle){e.fontStyle&Pg.Italic&&(t[`font-style`]=`italic`),e.fontStyle&Pg.Bold&&(t[`font-weight`]=`bold`);let n=[];e.fontStyle&Pg.Underline&&n.push(`underline`),e.fontStyle&Pg.Strikethrough&&n.push(`line-through`),n.length&&(t[`text-decoration`]=n.join(` `))}return t}function nx(e){return typeof e==`string`?e:Object.entries(e).map(([e,t])=>`${e}:${t}`).join(`;`)}function rx(){let e=new WeakMap;function t(t){if(!e.has(t.meta)){let n=Yb(t.source);function r(e){if(typeof e==`number`){if(e<0||e>t.source.length)throw new pg(`Invalid decoration offset: ${e}. Code length: ${t.source.length}`);return{...n.indexToPos(e),offset:e}}else{let t=n.lines[e.line];if(t===void 0)throw new pg(`Invalid decoration position ${JSON.stringify(e)}. Lines length: ${n.lines.length}`);let r=e.character;if(r<0&&(r=t.length+r),r<0||r>t.length)throw new pg(`Invalid decoration position ${JSON.stringify(e)}. Line ${e.line} length: ${t.length}`);return{...e,character:r,offset:n.posToIndex(e.line,r)}}}let i=(t.options.decorations||[]).map(e=>({...e,start:r(e.start),end:r(e.end)}));ix(i),e.set(t.meta,{decorations:i,converter:n,source:t.source})}return e.get(t.meta)}return{name:`shiki:decorations`,tokens(e){if(this.options.decorations?.length)return $b(e,t(this).decorations.flatMap(e=>[e.start.offset,e.end.offset]))},code(e){if(!this.options.decorations?.length)return;let n=t(this),r=[...e.children].filter(e=>e.type===`element`&&e.tagName===`span`);if(r.length!==n.converter.lines.length)throw new pg(`Number of lines in code element (${r.length}) does not match the number of lines in the source (${n.converter.lines.length}). Failed to apply decorations.`);function i(e,t,n,i){let a=r[e],s=``,c=-1,l=-1;if(t===0&&(c=0),n===0&&(l=0),n===1/0&&(l=a.children.length),c===-1||l===-1)for(let e=0;e<a.children.length;e++)s+=ax(a.children[e]),c===-1&&s.length===t&&(c=e+1),l===-1&&s.length===n&&(l=e+1);if(c===-1)throw new pg(`Failed to find start index for decoration ${JSON.stringify(i.start)}`);if(l===-1)throw new pg(`Failed to find end index for decoration ${JSON.stringify(i.end)}`);let u=a.children.slice(c,l);if(!i.alwaysWrap&&u.length===a.children.length)o(a,i,`line`);else if(!i.alwaysWrap&&u.length===1&&u[0].type===`element`)o(u[0],i,`token`);else{let e={type:`element`,tagName:`span`,properties:{},children:u};o(e,i,`wrapper`),a.children.splice(c,u.length,e)}}function a(e,t){r[e]=o(r[e],t,`line`)}function o(e,t,n){let r=t.properties||{},i=t.transform||(e=>e);return e.tagName=t.tagName||`span`,e.properties={...e.properties,...r,class:e.properties.class},t.properties?.class&&Wb(e,t.properties.class),e=i(e,n)||e,e}let s=[],c=n.decorations.sort((e,t)=>t.start.offset-e.start.offset||e.end.offset-t.end.offset);for(let e of c){let{start:t,end:n}=e;if(t.line===n.line)i(t.line,t.character,n.character,e);else if(t.line<n.line){i(t.line,t.character,1/0,e);for(let r=t.line+1;r<n.line;r++)s.unshift(()=>a(r,e));i(n.line,0,n.character,e)}}s.forEach(e=>e())}}}function ix(e){for(let t=0;t<e.length;t++){let n=e[t];if(n.start.offset>n.end.offset)throw new pg(`Invalid decoration range: ${JSON.stringify(n.start)} - ${JSON.stringify(n.end)}`);for(let r=t+1;r<e.length;r++){let t=e[r],i=n.start.offset<=t.start.offset&&t.start.offset<n.end.offset,a=n.start.offset<t.end.offset&&t.end.offset<=n.end.offset,o=t.start.offset<=n.start.offset&&n.start.offset<t.end.offset,s=t.start.offset<n.end.offset&&n.end.offset<=t.end.offset;if(i||a||o||s){if(i&&a||o&&s||o&&n.start.offset===n.end.offset||a&&t.start.offset===t.end.offset)continue;throw new pg(`Decorations ${JSON.stringify(n.start)} and ${JSON.stringify(t.start)} intersect.`)}}}}function ax(e){return e.type===`text`?e.value:e.type===`element`?e.children.map(ax).join(``):``}var ox=[rx()];function sx(e){let t=cx(e.transformers||[]);return[...t.pre,...t.normal,...t.post,...ox]}function cx(e){let t=[],n=[],r=[];for(let i of e)switch(i.enforce){case`pre`:t.push(i);break;case`post`:n.push(i);break;default:r.push(i)}return{pre:t,post:n,normal:r}}var lx=[`black`,`red`,`green`,`yellow`,`blue`,`magenta`,`cyan`,`white`,`brightBlack`,`brightRed`,`brightGreen`,`brightYellow`,`brightBlue`,`brightMagenta`,`brightCyan`,`brightWhite`],ux={1:`bold`,2:`dim`,3:`italic`,4:`underline`,7:`reverse`,8:`hidden`,9:`strikethrough`};function dx(e,t){let n=e.indexOf(`\x1B`,t);if(n!==-1&&e[n+1]===`[`){let t=e.indexOf(`m`,n);if(t!==-1)return{sequence:e.substring(n+2,t).split(`;`),startPosition:n,position:t+1}}return{position:e.length}}function fx(e){let t=e.shift();if(t===`2`){let t=e.splice(0,3).map(e=>Number.parseInt(e));return t.length!==3||t.some(e=>Number.isNaN(e))?void 0:{type:`rgb`,rgb:t}}else if(t===`5`){let t=e.shift();if(t)return{type:`table`,index:Number(t)}}}function px(e){let t=[];for(;e.length>0;){let n=e.shift();if(!n)continue;let r=Number.parseInt(n);if(!Number.isNaN(r))if(r===0)t.push({type:`resetAll`});else if(r<=9)ux[r]&&t.push({type:`setDecoration`,value:ux[r]});else if(r<=29){let e=ux[r-20];e&&(t.push({type:`resetDecoration`,value:e}),e===`dim`&&t.push({type:`resetDecoration`,value:`bold`}))}else if(r<=37)t.push({type:`setForegroundColor`,value:{type:`named`,name:lx[r-30]}});else if(r===38){let n=fx(e);n&&t.push({type:`setForegroundColor`,value:n})}else if(r===39)t.push({type:`resetForegroundColor`});else if(r<=47)t.push({type:`setBackgroundColor`,value:{type:`named`,name:lx[r-40]}});else if(r===48){let n=fx(e);n&&t.push({type:`setBackgroundColor`,value:n})}else r===49?t.push({type:`resetBackgroundColor`}):r===53?t.push({type:`setDecoration`,value:`overline`}):r===55?t.push({type:`resetDecoration`,value:`overline`}):r>=90&&r<=97?t.push({type:`setForegroundColor`,value:{type:`named`,name:lx[r-90+8]}}):r>=100&&r<=107&&t.push({type:`setBackgroundColor`,value:{type:`named`,name:lx[r-100+8]}})}return t}function mx(){let e=null,t=null,n=new Set;return{parse(r){let i=[],a=0;do{let o=dx(r,a),s=o.sequence?r.substring(a,o.startPosition):r.substring(a);if(s.length>0&&i.push({value:s,foreground:e,background:t,decorations:new Set(n)}),o.sequence){let r=px(o.sequence);for(let i of r)i.type===`resetAll`?(e=null,t=null,n.clear()):i.type===`resetForegroundColor`?e=null:i.type===`resetBackgroundColor`?t=null:i.type===`resetDecoration`&&n.delete(i.value);for(let i of r)i.type===`setForegroundColor`?e=i.value:i.type===`setBackgroundColor`?t=i.value:i.type===`setDecoration`&&n.add(i.value)}a=o.position}while(a<r.length);return i}}}var hx={black:`#000000`,red:`#bb0000`,green:`#00bb00`,yellow:`#bbbb00`,blue:`#0000bb`,magenta:`#ff00ff`,cyan:`#00bbbb`,white:`#eeeeee`,brightBlack:`#555555`,brightRed:`#ff5555`,brightGreen:`#00ff00`,brightYellow:`#ffff55`,brightBlue:`#5555ff`,brightMagenta:`#ff55ff`,brightCyan:`#55ffff`,brightWhite:`#ffffff`};function gx(e=hx){function t(t){return e[t]}function n(e){return`#${e.map(e=>Math.max(0,Math.min(e,255)).toString(16).padStart(2,`0`)).join(``)}`}let r;function i(){if(r)return r;r=[];for(let e=0;e<lx.length;e++)r.push(t(lx[e]));let e=[0,95,135,175,215,255];for(let t=0;t<6;t++)for(let i=0;i<6;i++)for(let a=0;a<6;a++)r.push(n([e[t],e[i],e[a]]));let i=8;for(let e=0;e<24;e++,i+=10)r.push(n([i,i,i]));return r}function a(e){return i()[e]}function o(e){switch(e.type){case`named`:return t(e.name);case`rgb`:return n(e.rgb);case`table`:return a(e.index)}}return{value:o}}var _x=/#([0-9a-f]{3,8})/i,vx=/var\((--[\w-]+-ansi-[\w-]+)\)/,yx={black:`#000000`,red:`#cd3131`,green:`#0DBC79`,yellow:`#E5E510`,blue:`#2472C8`,magenta:`#BC3FBC`,cyan:`#11A8CD`,white:`#E5E5E5`,brightBlack:`#666666`,brightRed:`#F14C4C`,brightGreen:`#23D18B`,brightYellow:`#F5F543`,brightBlue:`#3B8EEA`,brightMagenta:`#D670D6`,brightCyan:`#29B8DB`,brightWhite:`#FFFFFF`};function bx(e,t,n){let r=Z_(e,n),i=ov(t),a=gx(Object.fromEntries(lx.map(t=>{let n=`terminal.ansi${t[0].toUpperCase()}${t.substring(1)}`;return[t,e.colors?.[n]||yx[t]]}))),o=mx();return i.map(t=>o.parse(t[0]).map(n=>{let i,o;n.decorations.has(`reverse`)?(i=n.background?a.value(n.background):e.bg,o=n.foreground?a.value(n.foreground):e.fg):(i=n.foreground?a.value(n.foreground):e.fg,o=n.background?a.value(n.background):void 0),i=Q_(i,r),o=Q_(o,r),n.decorations.has(`dim`)&&(i=xx(i));let s=Pg.None;return n.decorations.has(`bold`)&&(s|=Pg.Bold),n.decorations.has(`italic`)&&(s|=Pg.Italic),n.decorations.has(`underline`)&&(s|=Pg.Underline),n.decorations.has(`strikethrough`)&&(s|=Pg.Strikethrough),{content:n.value,offset:t[1],color:i,bgColor:o,fontStyle:s}}))}function xx(e){let t=e.match(_x);if(t){let e=t[1];if(e.length===8){let t=Math.round(Number.parseInt(e.slice(6,8),16)/2).toString(16).padStart(2,`0`);return`#${e.slice(0,6)}${t}`}else if(e.length===6)return`#${e}80`;else if(e.length===4){let t=e[0],n=e[1],r=e[2],i=e[3];return`#${t}${t}${n}${n}${r}${r}${Math.round(Number.parseInt(`${i}${i}`,16)/2).toString(16).padStart(2,`0`)}`}else if(e.length===3){let t=e[0],n=e[1],r=e[2];return`#${t}${t}${n}${n}${r}${r}80`}}let n=e.match(vx);return n?`var(${n[1]}-dim)`:e}function Sx(e,t,n={}){let r=e.resolveLangAlias(n.lang||`text`),{theme:i=e.getLoadedThemes()[0]}=n;if(!tv(r)&&!rv(i)&&r===`ansi`){let{theme:r}=e.setTheme(i);return bx(r,t,n)}return Dv(e,t,n)}function Cx(e,t,n){let r,i,a,o,s,c;if(`themes`in n){let{defaultColor:l=`light`,cssVariablePrefix:u=`--shiki-`,colorsRendering:d=`css-vars`}=n,f=Object.entries(n.themes).filter(e=>e[1]).map(e=>({color:e[0],theme:e[1]})).sort((e,t)=>e.color===l?-1:t.color===l?1:0);if(f.length===0)throw new pg("`themes` option must not be empty");let p=Iv(e,t,n,Sx);if(c=xv(p),l&&l!==`light-dark()`&&!f.some(e=>e.color===l))throw new pg(`\`themes\` option must contain the defaultColor key \`${l}\``);let m=f.map(t=>e.getTheme(t.theme)),h=f.map(e=>e.color);a=p.map(e=>e.map(e=>ex(e,h,u,l,d))),c&&bv(a,c);let g=f.map(e=>Z_(e.theme,n));i=wx(f,m,g,u,l,`fg`,d),r=wx(f,m,g,u,l,`bg`,d),o=`shiki-themes ${m.map(e=>e.name).join(` `)}`,s=l?void 0:[i,r].join(`;`)}else if(`theme`in n){let s=Z_(n.theme,n);a=Sx(e,t,n);let l=e.getTheme(n.theme);r=Q_(l.bg,s),i=Q_(l.fg,s),o=l.name,c=xv(a)}else throw new pg("Invalid options, either `theme` or `themes` must be provided");return{tokens:a,fg:i,bg:r,themeName:o,rootStyle:s,grammarState:c}}function wx(e,t,n,r,i,a,o){return e.map((s,c)=>{let l=Q_(t[c][a],n[c])||`inherit`,u=`${r+s.color}${a===`bg`?`-bg`:``}:${l}`;if(c===0&&i){if(i===`light-dark()`&&e.length>1){let r=e.findIndex(e=>e.color===`light`),i=e.findIndex(e=>e.color===`dark`);if(r===-1||i===-1)throw new pg('When using `defaultColor: "light-dark()"`, you must provide both `light` and `dark` themes');return`light-dark(${Q_(t[r][a],n[r])||`inherit`}, ${Q_(t[i][a],n[i])||`inherit`});${u}`}return l}return o===`css-vars`?u:null}).filter(e=>!!e).join(`;`)}var Tx=/^\s+$/,Ex=/^(\s*)(.*?)(\s*)$/;function Dx(e,t,n,r={meta:{},options:n,codeToHast:(t,n)=>Dx(e,t,n),codeToTokens:(t,n)=>Cx(e,t,n)}){let i=t;for(let e of sx(n))i=e.preprocess?.call(r,i,n)||i;let{tokens:a,fg:o,bg:s,themeName:c,rootStyle:l,grammarState:u}=Cx(e,i,n),{mergeWhitespaces:d=!0,mergeSameStyleTokens:f=!1}=n;d===!0?a=kx(a):d===`never`&&(a=Ax(a)),f&&(a=jx(a));let p={...r,get source(){return i}};for(let e of sx(n))a=e.tokens?.call(p,a)||a;return Ox(a,{...n,fg:o,bg:s,themeName:c,rootStyle:n.rootStyle===!1?!1:n.rootStyle??l},p,u)}function Ox(e,t,n,r=xv(e)){let i=sx(t),a=[],o={type:`root`,children:[]},{structure:s=`classic`,tabindex:c=`0`}=t,l={class:`shiki ${t.themeName||``}`};t.rootStyle!==!1&&(t.rootStyle==null?l.style=`background-color:${t.bg};color:${t.fg}`:l.style=t.rootStyle),c!==!1&&c!=null&&(l.tabindex=c.toString());for(let[e,n]of Object.entries(t.meta||{}))e.startsWith(`_`)||(l[e]=n);let u={type:`element`,tagName:`pre`,properties:l,children:[],data:t.data},d={type:`element`,tagName:`code`,properties:{},children:a},f=[],p={...n,structure:s,addClassToHast:Wb,get source(){return n.source},get tokens(){return e},get options(){return t},get root(){return o},get pre(){return u},get code(){return d},get lines(){return f}};if(e.forEach((e,t)=>{t&&(s===`inline`?o.children.push({type:`element`,tagName:`br`,properties:{},children:[]}):s===`classic`&&a.push({type:`text`,value:`
|
|
32
|
-
`}));let n={type:`element`,tagName:`span`,properties:{class:`line`},children:[]},r=0;for(let a of e){let e={type:`element`,tagName:`span`,properties:{...a.htmlAttrs},children:[{type:`text`,value:a.content}]},c=nx(a.htmlStyle||tx(a));c&&(e.properties.style=c);for(let o of i)e=o?.span?.call(p,e,t+1,r,n,a)||e;s===`inline`?o.children.push(e):s===`classic`&&n.children.push(e),r+=a.content.length}if(s===`classic`){for(let e of i)n=e?.line?.call(p,n,t+1)||n;f.push(n),a.push(n)}else s===`inline`&&f.push(n)}),s===`classic`){for(let e of i)d=e?.code?.call(p,d)||d;u.children.push(d);for(let e of i)u=e?.pre?.call(p,u)||u;o.children.push(u)}else if(s===`inline`){let e=[],t={type:`element`,tagName:`span`,properties:{class:`line`},children:[]};for(let n of o.children)n.type===`element`&&n.tagName===`br`?(e.push(t),t={type:`element`,tagName:`span`,properties:{class:`line`},children:[]}):(n.type===`element`||n.type===`text`)&&t.children.push(n);e.push(t);let n={type:`element`,tagName:`code`,properties:{},children:e};for(let e of i)n=e?.code?.call(p,n)||n;o.children=[];for(let e=0;e<n.children.length;e++){e>0&&o.children.push({type:`element`,tagName:`br`,properties:{},children:[]});let t=n.children[e];t.type===`element`&&o.children.push(...t.children)}}let m=o;for(let e of i)m=e?.root?.call(p,m)||m;return r&&bv(m,r),m}function kx(e){return e.map(e=>{let t=[],n=``,r;return e.forEach((i,a)=>{let o=!(i.fontStyle&&(i.fontStyle&Pg.Underline||i.fontStyle&Pg.Strikethrough));o&&Tx.test(i.content)&&e[a+1]?(r===void 0&&(r=i.offset),n+=i.content):n?(o?t.push({...i,offset:r,content:n+i.content}):t.push({content:n,offset:r},i),r=void 0,n=``):t.push(i)}),t})}function Ax(e){return e.map(e=>e.flatMap(e=>{if(Tx.test(e.content))return e;let t=e.content.match(Ex);if(!t)return e;let[,n,r,i]=t;if(!n&&!i)return e;let a=[{...e,offset:e.offset+n.length,content:r}];return n&&a.unshift({content:n,offset:e.offset}),i&&a.push({content:i,offset:e.offset+n.length+r.length}),a}))}function jx(e){return e.map(e=>{let t=[];for(let n of e){if(t.length===0){t.push({...n});continue}let e=t.at(-1),r=nx(e.htmlStyle||tx(e)),i=nx(n.htmlStyle||tx(n)),a=e.fontStyle&&(e.fontStyle&Pg.Underline||e.fontStyle&Pg.Strikethrough),o=n.fontStyle&&(n.fontStyle&Pg.Underline||n.fontStyle&Pg.Strikethrough);!a&&!o&&r===i?e.content+=n.content:t.push({...n})}return t})}var Mx=Bb;function Nx(e,t,n){let r={meta:{},options:n,codeToHast:(t,n)=>Dx(e,t,n),codeToTokens:(t,n)=>Cx(e,t,n)},i=Mx(Dx(e,t,n,r));for(let e of sx(n))i=e.postprocess?.call(r,i,n)||i;return i}async function Px(e){let t=await vv(e);return{getLastGrammarState:(...e)=>Ov(t,...e),codeToTokensBase:(e,n)=>Sx(t,e,n),codeToTokensWithThemes:(e,n)=>Iv(t,e,n),codeToTokens:(e,n)=>Cx(t,e,n),codeToHast:(e,n)=>Dx(t,e,n),codeToHtml:(e,n)=>Nx(t,e,n),getBundledLanguages:()=>({}),getBundledThemes:()=>({}),...t,getInternalContext:()=>t}}function Fx(e){let t=e.langs,n=e.themes,r=e.engine;async function i(e){function i(n){if(typeof n==`string`){if(n=e.langAlias?.[n]||n,nv(n))return[];let r=t[n];if(!r)throw new pg(`Language \`${n}\` is not included in this bundle. You may want to load it from external source.`);return r}return n}function a(e){if(iv(e))return`none`;if(typeof e==`string`){let t=n[e];if(!t)throw new pg(`Theme \`${e}\` is not included in this bundle. You may want to load it from external source.`);return t}return e}let o=(e.themes??[]).map(e=>a(e)),s=(e.langs??[]).map(e=>i(e)),c=await Px({engine:e.engine??r(),...e,themes:o,langs:s});return{...c,loadLanguage(...e){return c.loadLanguage(...e.map(i))},loadTheme(...e){return c.loadTheme(...e.map(a))},getBundledLanguages(){return t},getBundledThemes(){return n}}}return i}function Ix(e){let t;async function n(n={}){if(t){let e=await t;return await Promise.all([e.loadTheme(...n.themes||[]),e.loadLanguage(...n.langs||[])]),e}else{t=e({...n,themes:[],langs:[]});let r=await t;return await Promise.all([r.loadTheme(...n.themes||[]),r.loadLanguage(...n.langs||[])]),r}}return n}function Lx(e,t){let n=Ix(e);async function r(e,r){let i=await n({langs:[r.lang],themes:`theme`in r?[r.theme]:Object.values(r.themes)}),a=await t?.guessEmbeddedLanguages?.(e,r.lang,i);return a&&await i.loadLanguage(...a),i}return{getSingletonHighlighter(e){return n(e)},async codeToHtml(e,t){return(await r(e,t)).codeToHtml(e,t)},async codeToHast(e,t){return(await r(e,t)).codeToHast(e,t)},async codeToTokens(e,t){return(await r(e,t)).codeToTokens(e,t)},async codeToTokensBase(e,t){return(await r(e,t)).codeToTokensBase(e,t)},async codeToTokensWithThemes(e,t){return(await r(e,t)).codeToTokensWithThemes(e,t)},async getLastGrammarState(e,t){return(await n({langs:[t.lang],themes:[t.theme]})).getLastGrammarState(e,t)}}}var Rx=Fx({langs:Fh,themes:Ih,engine:()=>(0,fg.createOnigurumaEngine)(z(()=>import(`./wasm-CVlf9Jwb.js`),[]))}),{codeToHtml:zx,codeToHast:Bx,codeToTokens:Vx,codeToTokensBase:Hx,codeToTokensWithThemes:Ux,getSingletonHighlighter:Wx,getLastGrammarState:Gx}=Lx(Rx,{guessEmbeddedLanguages:Xb}),Kx=[`github-dark-dimmed`,`github-light`,`one-dark-pro`],qx=[`javascript`,`typescript`,`tsx`,`jsx`,`json`,`shellscript`,`bash`,`python`,`go`,`rust`,`sql`,`yaml`,`markdown`,`html`,`css`,`docker`],Jx={js:`javascript`,ts:`typescript`,sh:`bash`,shell:`bash`,zsh:`bash`,py:`python`,rs:`rust`,yml:`yaml`,md:`markdown`,dockerfile:`docker`,golang:`go`},Yx=null,Xx=null,Zx=`github-dark-dimmed`,Qx=new Set(qx),$x=new Set(Kx),eS=new Map,tS=600;function nS(e,t){return`${Zx}::${t}::${e}`}function rS(e,t){if(eS.size>=tS){let e=eS.keys().next().value;e!==void 0&&eS.delete(e)}eS.set(e,t)}function iS(){return Yx||=Rx({themes:Kx,langs:qx}).then(e=>(Xx=e,e)),Yx}function aS(e,t){let n=sS(t)||`text`,r=nS(e,n),i=eS.get(r);if(i!==void 0)return i;if(!Xx||n!==`text`&&!Qx.has(n))return null;try{let t=Xx.codeToHtml(e,{lang:n,theme:Zx});return rS(r,t),t}catch{return null}}function oS(){iS()}function sS(e){let t=(e||``).toLowerCase().trim();return Jx[t]??t}async function cS(e,t){let n=await iS(),r=sS(t);if(r&&!Qx.has(r))try{await n.loadLanguage(r),Qx.add(r)}catch{r=`text`}r||=`text`;let i=n.codeToHtml(e,{lang:r,theme:Zx});return rS(nS(e,r),i),i}function lS(){return Zx}async function uS(e){let t=await iS();if(typeof e==`string`){if(!$x.has(e))try{await t.loadTheme(e),$x.add(e)}catch{return}Zx=e}else{let n=e.name;if(!n)return;if(!$x.has(n))try{await t.loadTheme(e),$x.add(n)}catch{return}Zx=n}}function dS(e){return e.syntax?.shikiTheme?e.syntax.shikiTheme:e.mode===`light`?`github-light`:`github-dark-dimmed`}var fS=!1;function pS(){if(fS||typeof window>`u`)return;fS=!0,window.addEventListener(wt,e=>{let t=e.detail;t&&uS(dS(t)).then(()=>{window.dispatchEvent(new CustomEvent(`ppm:shiki-theme-change`))})});let e=Ct();e&&uS(dS(e)).then(()=>{window.dispatchEvent(new CustomEvent(`ppm:shiki-theme-change`))})}function mS(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function hS(e){if(Array.isArray(e))return e}function gS(e,t,n){return(t=TS(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _S(e,t){var n=e==null?null:typeof Symbol<`u`&&e[Symbol.iterator]||e[`@@iterator`];if(n!=null){var r,i,a,o,s=[],c=!0,l=!1;try{if(a=(n=n.call(e)).next,t!==0)for(;!(c=(r=a.call(n)).done)&&(s.push(r.value),s.length!==t);c=!0);}catch(e){l=!0,i=e}finally{try{if(!c&&n.return!=null&&(o=n.return(),Object(o)!==o))return}finally{if(l)throw i}}return s}}function vS(){throw TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
33
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function yS(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function bS(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]==null?{}:arguments[t];t%2?yS(Object(n),!0).forEach(function(t){gS(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yS(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function xS(e,t){if(e==null)return{};var n,r,i=SS(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)===-1&&{}.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function SS(e,t){if(e==null)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(t.indexOf(r)!==-1)continue;n[r]=e[r]}return n}function CS(e,t){return hS(e)||_S(e,t)||ES(e,t)||vS()}function wS(e,t){if(typeof e!=`object`||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!=`object`)return r;throw TypeError(`@@toPrimitive must return a primitive value.`)}return(t===`string`?String:Number)(e)}function TS(e){var t=wS(e,`string`);return typeof t==`symbol`?t:t+``}function ES(e,t){if(e){if(typeof e==`string`)return mS(e,t);var n={}.toString.call(e).slice(8,-1);return n===`Object`&&e.constructor&&(n=e.constructor.name),n===`Map`||n===`Set`?Array.from(e):n===`Arguments`||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?mS(e,t):void 0}}function DS(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function OS(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function kS(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]==null?{}:arguments[t];t%2?OS(Object(n),!0).forEach(function(t){DS(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):OS(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function AS(){var e=[...arguments];return function(t){return e.reduceRight(function(e,t){return t(e)},t)}}function jS(e){return function t(){var n=this,r=[...arguments];return r.length>=e.length?e.apply(this,r):function(){var e=[...arguments];return t.apply(n,[].concat(r,e))}}}function MS(e){return{}.toString.call(e).includes(`Object`)}function NS(e){return!Object.keys(e).length}function PS(e){return typeof e==`function`}function FS(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function IS(e,t){return MS(t)||VS(`changeType`),Object.keys(t).some(function(t){return!FS(e,t)})&&VS(`changeField`),t}function LS(e){PS(e)||VS(`selectorType`)}function RS(e){PS(e)||MS(e)||VS(`handlerType`),MS(e)&&Object.values(e).some(function(e){return!PS(e)})&&VS(`handlersType`)}function zS(e){e||VS(`initialIsRequired`),MS(e)||VS(`initialType`),NS(e)&&VS(`initialContent`)}function BS(e,t){throw Error(e[t]||e.default)}var VS=jS(BS)({initialIsRequired:`initial state is required`,initialType:`initial state should be an object`,initialContent:`initial state shouldn't be an empty object`,handlerType:`handler should be an object or a function`,handlersType:`all handlers should be a functions`,selectorType:`selector should be a function`,changeType:`provided value of changes should be an object`,changeField:`it seams you want to change a field in the state which is not specified in the "initial" state`,default:"an unknown error accured in `state-local` package"}),HS={changes:IS,selector:LS,handler:RS,initial:zS};function US(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};HS.initial(e),HS.handler(t);var n={current:e},r=jS(KS)(n,t),i=jS(GS)(n),a=jS(HS.changes)(e),o=jS(WS)(n);function s(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:function(e){return e};return HS.selector(e),e(n.current)}function c(e){AS(r,i,a,o)(e)}return[s,c]}function WS(e,t){return PS(t)?t(e.current):t}function GS(e,t){return e.current=kS(kS({},e.current),t),t}function KS(e,t,n){return PS(t)?t(e.current):Object.keys(n).forEach(function(n){return t[n]?.call(t,e.current[n])}),n}var qS={create:US},JS={paths:{vs:`https://cdn.jsdelivr.net/npm/monaco-editor@0.55.1/min/vs`}};function YS(e){return function t(){var n=this,r=[...arguments];return r.length>=e.length?e.apply(this,r):function(){var e=[...arguments];return t.apply(n,[].concat(r,e))}}}function XS(e){return{}.toString.call(e).includes(`Object`)}function ZS(e){return e||tC(`configIsRequired`),XS(e)||tC(`configType`),e.urls?(QS(),{paths:{vs:e.urls.monacoBase}}):e}function QS(){console.warn(eC.deprecation)}function $S(e,t){throw Error(e[t]||e.default)}var eC={configIsRequired:`the configuration object is required`,configType:`the configuration object should be an object`,default:"an unknown error accured in `@monaco-editor/loader` package",deprecation:`Deprecation warning!
|
|
34
|
-
You are using deprecated way of configuration.
|
|
35
|
-
|
|
36
|
-
Instead of using
|
|
37
|
-
monaco.config({ urls: { monacoBase: '...' } })
|
|
38
|
-
use
|
|
39
|
-
monaco.config({ paths: { vs: '...' } })
|
|
40
|
-
|
|
41
|
-
For more please check the link https://github.com/suren-atoyan/monaco-loader#config
|
|
42
|
-
`},tC=YS($S)(eC),nC={config:ZS},rC=function(){var e=[...arguments];return function(t){return e.reduceRight(function(e,t){return t(e)},t)}};function iC(e,t){return Object.keys(t).forEach(function(n){t[n]instanceof Object&&e[n]&&Object.assign(t[n],iC(e[n],t[n]))}),bS(bS({},e),t)}var aC={type:`cancelation`,msg:`operation is manually canceled`};function oC(e){var t=!1,n=new Promise(function(n,r){e.then(function(e){return t?r(aC):n(e)}),e.catch(r)});return n.cancel=function(){return t=!0},n}var sC=[`monaco`],cC=CS(qS.create({config:JS,isInitialized:!1,resolve:null,reject:null,monaco:null}),2),lC=cC[0],uC=cC[1];function dC(e){var t=nC.config(e),n=t.monaco,r=xS(t,sC);uC(function(e){return{config:iC(e.config,r),monaco:n}})}function fC(){var e=lC(function(e){return{monaco:e.monaco,isInitialized:e.isInitialized,resolve:e.resolve}});if(!e.isInitialized){if(uC({isInitialized:!0}),e.monaco)return e.resolve(e.monaco),oC(yC);if(window.monaco&&window.monaco.editor)return _C(window.monaco),e.resolve(window.monaco),oC(yC);rC(pC,hC)(gC)}return oC(yC)}function pC(e){return document.body.appendChild(e)}function mC(e){var t=document.createElement(`script`);return e&&(t.src=e),t}function hC(e){var t=lC(function(e){return{config:e.config,reject:e.reject}}),n=mC(`${t.config.paths.vs}/loader.js`);return n.onload=function(){return e()},n.onerror=t.reject,n}function gC(){var e=lC(function(e){return{config:e.config,resolve:e.resolve,reject:e.reject}}),t=window.require;t.config(e.config),t([`vs/editor/editor.main`],function(t){var n=t.m||t;_C(n),e.resolve(n)},function(t){e.reject(t)})}function _C(e){lC().monaco||uC({monaco:e})}function vC(){return lC(function(e){return e.monaco})}var yC=new Promise(function(e,t){return uC({resolve:e,reject:t})}),bC={config:dC,init:fC,__getMonacoInstance:vC},xC={wrapper:{display:`flex`,position:`relative`,textAlign:`initial`},fullWidth:{width:`100%`},hide:{display:`none`}},SC={container:{display:`flex`,height:`100%`,width:`100%`,justifyContent:`center`,alignItems:`center`}};function CC({children:e}){return q.createElement(`div`,{style:SC.container},e)}var wC=CC;function TC({width:e,height:t,isEditorReady:n,loading:r,_ref:i,className:a,wrapperProps:o}){return q.createElement(`section`,{style:{...xC.wrapper,width:e,height:t},...o},!n&&q.createElement(wC,null,r),q.createElement(`div`,{ref:i,style:{...xC.fullWidth,...!n&&xC.hide},className:a}))}var EC=(0,q.memo)(TC);function DC(e){(0,q.useEffect)(e,[])}var OC=DC;function kC(e,t,n=!0){let r=(0,q.useRef)(!0);(0,q.useEffect)(r.current||!n?()=>{r.current=!1}:e,t)}var AC=kC;function jC(){}function MC(e,t,n,r){return NC(e,r)||PC(e,t,n,r)}function NC(e,t){return e.editor.getModel(FC(e,t))}function PC(e,t,n,r){return e.editor.createModel(t,n,r?FC(e,r):void 0)}function FC(e,t){return e.Uri.parse(t)}function IC({original:e,modified:t,language:n,originalLanguage:r,modifiedLanguage:i,originalModelPath:a,modifiedModelPath:o,keepCurrentOriginalModel:s=!1,keepCurrentModifiedModel:c=!1,theme:l=`light`,loading:u=`Loading...`,options:d={},height:f=`100%`,width:p=`100%`,className:m,wrapperProps:h={},beforeMount:g=jC,onMount:_=jC}){let[v,y]=(0,q.useState)(!1),[b,x]=(0,q.useState)(!0),S=(0,q.useRef)(null),C=(0,q.useRef)(null),w=(0,q.useRef)(null),T=(0,q.useRef)(_),E=(0,q.useRef)(g),D=(0,q.useRef)(!1);OC(()=>{let e=bC.init();return e.then(e=>(C.current=e)&&x(!1)).catch(e=>e?.type!==`cancelation`&&console.error(`Monaco initialization: error:`,e)),()=>S.current?A():e.cancel()}),AC(()=>{if(S.current&&C.current){let t=S.current.getOriginalEditor(),i=MC(C.current,e||``,r||n||`text`,a||``);i!==t.getModel()&&t.setModel(i)}},[a],v),AC(()=>{if(S.current&&C.current){let e=S.current.getModifiedEditor(),r=MC(C.current,t||``,i||n||`text`,o||``);r!==e.getModel()&&e.setModel(r)}},[o],v),AC(()=>{let e=S.current.getModifiedEditor();e.getOption(C.current.editor.EditorOption.readOnly)?e.setValue(t||``):t!==e.getValue()&&(e.executeEdits(``,[{range:e.getModel().getFullModelRange(),text:t||``,forceMoveMarkers:!0}]),e.pushUndoStop())},[t],v),AC(()=>{S.current?.getModel()?.original.setValue(e||``)},[e],v),AC(()=>{let{original:e,modified:t}=S.current.getModel();C.current.editor.setModelLanguage(e,r||n||`text`),C.current.editor.setModelLanguage(t,i||n||`text`)},[n,r,i],v),AC(()=>{C.current?.editor.setTheme(l)},[l],v),AC(()=>{S.current?.updateOptions(d)},[d],v);let O=(0,q.useCallback)(()=>{if(!C.current)return;E.current(C.current);let s=MC(C.current,e||``,r||n||`text`,a||``),c=MC(C.current,t||``,i||n||`text`,o||``);S.current?.setModel({original:s,modified:c})},[n,t,i,e,r,a,o]),k=(0,q.useCallback)(()=>{!D.current&&w.current&&(S.current=C.current.editor.createDiffEditor(w.current,{automaticLayout:!0,...d}),O(),C.current?.editor.setTheme(l),y(!0),D.current=!0)},[d,l,O]);(0,q.useEffect)(()=>{v&&T.current(S.current,C.current)},[v]),(0,q.useEffect)(()=>{!b&&!v&&k()},[b,v,k]);function A(){let e=S.current?.getModel();s||e?.original?.dispose(),c||e?.modified?.dispose(),S.current?.dispose()}return q.createElement(EC,{width:p,height:f,isEditorReady:v,loading:u,_ref:w,className:m,wrapperProps:h})}var LC=(0,q.memo)(IC);function RC(e){let t=(0,q.useRef)();return(0,q.useEffect)(()=>{t.current=e},[e]),t.current}var zC=RC,BC=new Map;function VC({defaultValue:e,defaultLanguage:t,defaultPath:n,value:r,language:i,path:a,theme:o=`light`,line:s,loading:c=`Loading...`,options:l={},overrideServices:u={},saveViewState:d=!0,keepCurrentModel:f=!1,width:p=`100%`,height:m=`100%`,className:h,wrapperProps:g={},beforeMount:_=jC,onMount:v=jC,onChange:y,onValidate:b=jC}){let[x,S]=(0,q.useState)(!1),[C,w]=(0,q.useState)(!0),T=(0,q.useRef)(null),E=(0,q.useRef)(null),D=(0,q.useRef)(null),O=(0,q.useRef)(v),k=(0,q.useRef)(_),A=(0,q.useRef)(),ee=(0,q.useRef)(r),te=zC(a),ne=(0,q.useRef)(!1),j=(0,q.useRef)(!1);OC(()=>{let e=bC.init();return e.then(e=>(T.current=e)&&w(!1)).catch(e=>e?.type!==`cancelation`&&console.error(`Monaco initialization: error:`,e)),()=>E.current?re():e.cancel()}),AC(()=>{let o=MC(T.current,e||r||``,t||i||``,a||n||``);o!==E.current?.getModel()&&(d&&BC.set(te,E.current?.saveViewState()),E.current?.setModel(o),d&&E.current?.restoreViewState(BC.get(a)))},[a],x),AC(()=>{E.current?.updateOptions(l)},[l],x),AC(()=>{!E.current||r===void 0||(E.current.getOption(T.current.editor.EditorOption.readOnly)?E.current.setValue(r):r!==E.current.getValue()&&(j.current=!0,E.current.executeEdits(``,[{range:E.current.getModel().getFullModelRange(),text:r,forceMoveMarkers:!0}]),E.current.pushUndoStop(),j.current=!1))},[r],x),AC(()=>{let e=E.current?.getModel();e&&i&&T.current?.editor.setModelLanguage(e,i)},[i],x),AC(()=>{s!==void 0&&E.current?.revealLine(s)},[s],x),AC(()=>{T.current?.editor.setTheme(o)},[o],x);let M=(0,q.useCallback)(()=>{if(!(!D.current||!T.current)&&!ne.current){k.current(T.current);let c=a||n,f=MC(T.current,r||e||``,t||i||``,c||``);E.current=T.current?.editor.create(D.current,{model:f,automaticLayout:!0,...l},u),d&&E.current.restoreViewState(BC.get(c)),T.current.editor.setTheme(o),s!==void 0&&E.current.revealLine(s),S(!0),ne.current=!0}},[e,t,n,r,i,a,l,u,d,o,s]);(0,q.useEffect)(()=>{x&&O.current(E.current,T.current)},[x]),(0,q.useEffect)(()=>{!C&&!x&&M()},[C,x,M]),ee.current=r,(0,q.useEffect)(()=>{x&&y&&(A.current?.dispose(),A.current=E.current?.onDidChangeModelContent(e=>{j.current||y(E.current.getValue(),e)}))},[x,y]),(0,q.useEffect)(()=>{if(x){let e=T.current.editor.onDidChangeMarkers(e=>{let t=E.current.getModel()?.uri;if(t&&e.find(e=>e.path===t.path)){let e=T.current.editor.getModelMarkers({resource:t});b?.(e)}});return()=>{e?.dispose()}}return()=>{}},[x,b]);function re(){A.current?.dispose(),f?d&&BC.set(a,E.current.saveViewState()):E.current.getModel()?.dispose(),E.current.dispose()}return q.createElement(EC,{width:p,height:m,isEditorReady:x,loading:c,_ref:D,className:h,wrapperProps:g})}var HC=(0,q.memo)(VC);function UC(e){return`ppm-${e.id}`}function WC(e,t){return/^#[0-9a-fA-F]{6}$/.test(e)?e+t:e}function GC(e){let t=e.tokens;return{"editor.background":t.bgSolid,"editor.foreground":t.text,"editorLineNumber.foreground":t.text3,"editorLineNumber.activeForeground":t.text2,"editorCursor.foreground":t.accent,"editor.selectionBackground":WC(t.accent,`33`),"editor.lineHighlightBackground":WC(t.accent,`12`),"editorWidget.background":t.bgSolid,"editorGutter.background":t.bgSolid,"editorIndentGuide.background1":WC(t.text3,`40`),"editorWhitespace.foreground":WC(t.text3,`40`),...e.editor?.colors}}var KC=null;async function qC(e){let t=UC(e);return(KC??=await bC.init()).editor.defineTheme(t,{base:e.mode===`dark`?`vs-dark`:`vs`,inherit:!0,rules:e.editor?.rules??[],colors:GC(e)}),t}function JC(){let e=B.getState();return Ct()??xt(e.themeStyle,e.themeMode,e.customThemes,e.customThemeId)}var YC=!1;function XC(){if(YC||typeof window>`u`)return;YC=!0;let e=async()=>{let e=await qC(JC());(KC??=await bC.init()).editor.setTheme(e)};window.addEventListener(wt,()=>void e()),e()}var ZC=`#3b82f6`,QC=`#f59e0b`,$C=`#ef4444`;function ew(e){return`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
43
|
-
<rect width="32" height="32" rx="6" fill="${ZC}"/>
|
|
44
|
-
<text x="16" y="22" text-anchor="middle" font-family="system-ui,sans-serif" font-weight="700" font-size="11" fill="white">PPM</text>
|
|
45
|
-
${e?`<circle cx="26" cy="6" r="5" fill="${$C}"/>`:``}
|
|
46
|
-
</svg>`}function tw(e,t){return`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
47
|
-
<rect width="32" height="32" rx="6" fill="${QC}"/>
|
|
48
|
-
${[10,16,22].map((t,n)=>`<circle cx="${t}" cy="${n===e?13:17}" r="3" fill="white"/>`).join(``)}
|
|
49
|
-
${t?`<circle cx="26" cy="6" r="5" fill="${$C}"/>`:``}
|
|
50
|
-
</svg>`}var nw=e=>`data:image/svg+xml,${encodeURIComponent(e)}`,rw=[nw(ew(!1)),nw(ew(!0))],iw=[0,1,2,-1].map(e=>[nw(tw(e,!1)),nw(tw(e,!0))]),aw=iw.length;function ow(e,t=null){let n=document.getElementById(`ppm-favicon`);if(!n)return;let r=e?1:0;t===null?n.href=rw[r]:n.href=iw[(t%aw+aw)%aw][r]}function sw(e,t,n){let r=[t,n||null,`PPM`].filter(Boolean).join(` - `);return e>0?`(${e}) ${r}`:r}function cw(){let e=U(e=>e.activeProject),t=B(e=>e.deviceName),n=ds(fs),r=(0,q.useRef)(null);(0,q.useEffect)(()=>{let i=()=>ro(X.getState())>0,a=()=>{let n=ro(X.getState());document.title=sw(n,e?.name,t??void 0)};if(a(),n){let e=0;ow(i(),e),r.current=setInterval(()=>{e=(e+1)%aw,ow(i(),e)},300)}else ow(i());let o=X.subscribe(()=>{a(),n||ow(i())});return()=>{o(),r.current&&=(clearInterval(r.current),null)}},[e?.name,t,n])}var lw=`chat`;function uw(e,t,n){if(n<=0)return[];let r=[];for(let n of Object.values(e)){let e=new Map(n.tabs.map(e=>[e.id,e.type])),i=new Set,a=[],o=n.tabHistory??[];for(let n=o.length-1;n>=0;n--){let r=o[n];i.has(r)||t.has(r)||e.get(r)===lw&&(i.add(r),a.push(r))}a.length>0&&r.push(a)}let i=[],a=new Set;for(let e=0;i.length<n;e++){let t=!1;for(let o of r){if(i.length>=n)break;let r=o[e];r!==void 0&&(t=!0,!a.has(r)&&(a.add(r),i.push(r)))}if(!t)break}return i}var dw=3,fw=2500,pw=1200;function mw(e,t){let n,r=window,i=setTimeout(()=>{r.requestIdleCallback?n=r.requestIdleCallback(e,{timeout:2e3}):e()},t);return{cancel:()=>{clearTimeout(i),n!==void 0&&r.cancelIdleCallback?.(n)}}}function hw(){let e=Me();(0,q.useEffect)(()=>{if(e)return;let t=!1,n=dw,r=null,i=()=>{r?.cancel(),r=null},a=()=>{if(r=null,t||n<=0)return;let{panels:e}=H.getState(),{mounted:i,mount:a}=Fs.getState(),[s]=uw(e,i,1);s&&(a(s),n--,o(pw))},o=e=>{t||n<=0||(i(),r=mw(a,e))},s=H.subscribe((e,t)=>{if(e.panels!==t.panels){for(let n of Object.keys(e.panels))if(n in t.panels&&e.panels[n]?.activeTabId!==t.panels[n]?.activeTabId){o(fw);return}}});return o(fw),()=>{t=!0,i(),s()}},[e,H(e=>e.currentProject)])}var gw=3e4,_w=1e3,vw=class{ws=null;url;handlers=[];reconnectAttempts=0;reconnectTimer=null;intentionalClose=!1;pendingMessages=[];visibilityHandler=null;constructor(e){this.url=e,this.visibilityHandler=()=>{document.visibilityState===`visible`&&!this.intentionalClose&&this.ws?.readyState!==WebSocket.OPEN&&(this.reconnectTimer&&clearTimeout(this.reconnectTimer),this.reconnectTimer=null,this.reconnectAttempts=0,this.connect())},document.addEventListener(`visibilitychange`,this.visibilityHandler)}connect(){this.intentionalClose=!1,this.cleanup();let e=window.location.protocol===`https:`?`wss:`:`ws:`,t;t=this.url.startsWith(`ws`)?this.url:`${e}//${window.location.host}${this.url}`,this.ws=new WebSocket(t),this.ws.onopen=()=>{this.reconnectAttempts=0;try{this.ws?.send(JSON.stringify({type:`ready`}))}catch{}if(this.pendingMessages.length>0){console.log(`[ws] flushing ${this.pendingMessages.length} queued message(s)`);for(let e of this.pendingMessages)try{this.ws?.send(e)}catch{}this.pendingMessages=[]}},this.ws.onmessage=e=>{for(let t of this.handlers)t(e)},this.ws.onclose=()=>{this.intentionalClose||this.scheduleReconnect()},this.ws.onerror=()=>{this.ws?.close()}}disconnect(){this.intentionalClose=!0,this.pendingMessages=[],this.cleanup(),this.reconnectTimer&&=(clearTimeout(this.reconnectTimer),null),this.visibilityHandler&&=(document.removeEventListener(`visibilitychange`,this.visibilityHandler),null)}send(e){this.ws?.readyState===WebSocket.OPEN?this.ws.send(e):this.intentionalClose?console.warn(`[ws] message dropped — WS intentionally closed`):(console.warn(`[ws] WS not open (readyState=${this.ws?.readyState??`no-ws`}) — queuing message`),this.pendingMessages.push(e))}onMessage(e){return this.handlers.push(e),()=>{this.handlers=this.handlers.filter(t=>t!==e)}}get isConnected(){return this.ws?.readyState===WebSocket.OPEN}cleanup(){this.ws&&=(this.ws.onopen=null,this.ws.onclose=null,this.ws.onmessage=null,this.ws.onerror=null,(this.ws.readyState===WebSocket.OPEN||this.ws.readyState===WebSocket.CONNECTING)&&this.ws.close(),null)}scheduleReconnect(){let e=Math.min(_w*2**this.reconnectAttempts,gw);this.reconnectAttempts++,this.reconnectTimer=setTimeout(()=>this.connect(),e)}};function yw(e,t){let n=(0,q.useRef)(null),r=(0,q.useRef)(t);r.current=t,(0,q.useEffect)(()=>{if(!e)return;let t=tt(),i=new vw(`/ws/global${t?`?token=${encodeURIComponent(t)}`:``}`);n.current=i;let a=i.onMessage(e=>{let t;try{t=JSON.parse(e.data)}catch{return}let n=t.type;if(typeof n==`string`){if(n===`global_ready`){r.current&&i.send(JSON.stringify({type:`watch`,projectName:r.current}));return}if(n===`file:changed`){window.dispatchEvent(new CustomEvent(`file:changed`,{detail:t}));return}if(n===`session:unread_changed`){let e=t;X.getState().handleUnreadChanged(e.sessionId,e.unreadCount,e.unreadType,e.projectName,e.sessionTitle,e.manual);return}if(n===`session:phase_changed`){let e=t;ds.getState().setStreaming(e.sessionId,e.phase!==`idle`);return}n.startsWith(`jira:`)&&window.dispatchEvent(new CustomEvent(n,{detail:t}))}});return i.connect(),()=>{a(),i.disconnect(),n.current=null}},[e]),(0,q.useEffect)(()=>{!e||!t||n.current?.send(JSON.stringify({type:`watch`,projectName:t}))},[e,t])}var bw=15e3,xw=nt((e,t)=>({isDown:!1,downSince:null,showOverlay:!1,markDown:()=>{let{downSince:n}=t(),r=Date.now(),i=n??r;e({isDown:!0,downSince:i,showOverlay:r-i>=bw})},markUp:()=>{e({isDown:!1,downSince:null,showOverlay:!1})}})),Sw=1e4,Cw=2e3;function ww(){(0,q.useEffect)(()=>{let e=!1,t,{markDown:n,markUp:r}=xw.getState();async function i(){try{let t=await fetch(`/api/health`,{cache:`no-store`});if(t.ok&&e){if(r(),`caches`in window){let e=await caches.keys();await Promise.all(e.map(e=>caches.delete(e)))}window.location.reload();return}t.ok&&r(),e=!1}catch{e=!0,n()}t=setTimeout(i,e?Cw:Sw)}return t=setTimeout(i,Sw),()=>clearTimeout(t)},[])}function Tw(e){let t=Math.max(e.lastIndexOf(`/`),e.lastIndexOf(`\\`));return t>=0?e.slice(t+1):e}function Ew(e,t){let n=0,r=0,i=-1;for(let a=0;a<e.length;a++){if(n=t.indexOf(e[a],n),n===-1)return-1;i>=0&&(r+=n-i-1),i=n,n++}return r}function Dw(e,t,n,r,i){if(e.includes(` `)){let a=e.split(/\s+/).filter(Boolean);if(a.length===0)return null;if(a.length===1)return Dw(a[0],t,n,r,i);let o=0,s=0;for(let e of a){let a=Dw(e,t,n,r,i);if(!a)return null;o=Math.max(o,a.tier),s+=a.offset}return{tier:o,offset:s,nameLen:r,depth:i}}if(t===e)return{tier:0,offset:0,nameLen:r,depth:i};if(t.startsWith(e))return{tier:1,offset:0,nameLen:r,depth:i};let a=t.indexOf(e);if(a>=0)return{tier:2,offset:a,nameLen:r,depth:i};let o=n.indexOf(e);if(o>=0)return{tier:3,offset:o,nameLen:r,depth:i};let s=Ew(e,t);if(s>=0)return{tier:4,offset:s,nameLen:r,depth:i};let c=Ew(e,n);return c>=0?{tier:5,offset:c,nameLen:r,depth:i}:null}function Ow(e,t,n){let r=n.toLowerCase();return Dw(e.toLowerCase(),Tw(r),r,t.length,n.split(`/`).length)}function kw(e,t){return e.tier-t.tier||e.offset-t.offset||e.nameLen-t.nameLen||e.depth-t.depth}var Aw={action:{label:`Actions`,icon:Kr},file:{label:`Files`,icon:G},db:{label:`Database`,icon:Je},fs:{label:`Filesystem`,icon:Cn}};function jw({availableGroups:e,groupCounts:t,activeFilters:n,onToggle:r}){return e.length<=1?null:(0,J.jsx)(`div`,{className:`flex items-center gap-1.5 border-b border-border/50 px-3 py-1.5 overflow-x-auto`,children:e.map(e=>{let i=Aw[e];if(!i)return null;let a=t[e]??0,o=n.has(e),s=i.icon;return(0,J.jsxs)(`button`,{type:`button`,role:`switch`,"aria-checked":o,"aria-label":`Filter by ${i.label}`,onClick:()=>r(e),className:`inline-flex items-center gap-1 shrink-0 rounded-full border px-2.5 py-1 text-xs font-medium transition-colors ${o?`bg-primary/15 border-primary text-primary`:`bg-surface border-border text-text-subtle hover:bg-surface-elevated`} ${a===0?`opacity-50`:``}`,children:[(0,J.jsx)(s,{className:`size-3`}),(0,J.jsx)(`span`,{children:i.label}),(0,J.jsxs)(`span`,{className:`text-[10px] opacity-70`,children:[`(`,a,`)`]})]},e)})})}var Mw=100,Nw=typeof navigator<`u`&&/Mac|iPhone|iPad/.test(navigator.userAgent),Pw={"git-branch":kn,database:Je,refresh:br,plus:Ze,terminal:Ir,settings:Dr,search:Ge,"file-code":G,globe:we};function Fw(e){return e?e.replace(/Mod\+/g,Nw?`⌘`:`Ctrl+`).replace(/Alt\+/g,Nw?`⌥`:`Alt+`).replace(/Shift\+/g,Nw?`⇧`:`Shift+`).replace(/Meta\+/g,`⌘`).replace(/Ctrl\+/g,Nw?`⌃`:`Ctrl+`):``}function Iw(e){let t=[];for(let n of e)n.type===`file`&&t.push({name:n.name,path:n.path}),n.children&&t.push(...Iw(n.children));return t}function Lw(e){return e?e.startsWith(`/`)||e.startsWith(`~/`)||e.startsWith(`~\\`)||/^[A-Za-z]:[/\\]/.test(e):!1}function Rw(e){let t=e.replace(/\\/g,`/`);if(t.endsWith(`/`))return e;let n=Math.max(t.lastIndexOf(`/`),e.lastIndexOf(`\\`));return n>0?e.slice(0,n+1):e}var zw=new Map;function Bw({open:e,onClose:t,initialQuery:n=``}){let[r,i]=(0,q.useState)(``),a=(0,q.useDeferredValue)(r),[o,s]=(0,q.useState)(0),[c,l]=(0,q.useState)([]),[u,d]=(0,q.useState)(!1),[f,p]=(0,q.useState)([]),[m,h]=(0,q.useState)(new Set),g=(0,q.useRef)(null),_=(0,q.useRef)(null),v=W(e=>e.openTab),y=U(e=>e.activeProject),b=ho(e=>e.fileIndex),x=ho(e=>e.indexStatus),S=ho(e=>e.loadIndex),C=ho(e=>e.tree),w=B(e=>e.setSidebarActiveTab),T=B(e=>e.sidebarCollapsed),E=B(e=>e.toggleSidebar),D=ss(e=>e.getBinding),O=cs(e=>e.contributions),k=(0,q.useCallback)(async e=>{if(zw.has(e)){l(zw.get(e));return}d(!0);try{let t=await R.get(`/api/fs/list?dir=${encodeURIComponent(e)}`);zw.set(e,t),l(t)}catch{l([])}finally{d(!1)}},[]);(0,q.useEffect)(()=>{if(!Lw(r)){l([]);return}k(Rw(r))},[r,k]),(0,q.useEffect)(()=>{if(Lw(r)||r.trim().length<2){p([]);return}let e=setTimeout(async()=>{try{p(await R.get(`/api/db/search?q=${encodeURIComponent(r.trim())}`)??[])}catch{p([])}},300);return()=>clearTimeout(e)},[r]);let A=(0,q.useMemo)(()=>{let e=y?.name??null,n=y?{projectName:y.name}:void 0,r=(r,i)=>()=>{v({type:r,title:i,projectId:e,metadata:n,closable:!0}),t()},i=[{id:`chat`,label:`New AI Chat`,icon:$n,action:r(`chat`,`AI Chat`),keywords:`ai assistant claude`,group:`action`,shortcut:Fw(D(`open-chat`))},{id:`new-file`,label:`New File`,icon:_n,action:()=>{W.getState().openNewFile(),t()},keywords:`create untitled blank empty`,group:`action`,shortcut:Fw(D(`new-file`))},{id:`new-db-query`,label:`New DB Query`,icon:Je,action:()=>{W.getState().openNewFile({language:`sql`,title:`SQL Query`}),t()},keywords:`sql database query scratchpad new`,group:`action`},{id:`terminal`,label:`New Terminal`,icon:Ir,action:r(`terminal`,`Terminal`),keywords:`bash shell console`,group:`action`,shortcut:Fw(D(`open-terminal`))},{id:`tunnels`,label:`Cloudflare Tunnels`,icon:we,action:()=>{T&&E(),w(`tunnels`),t()},keywords:`web preview localhost port forward tunnel cloudflare url`,group:`action`},{id:`cloud-share`,label:`PPM Cloud & Share`,icon:tn,action:()=>{window.dispatchEvent(new CustomEvent(`open-cloud-share`)),t()},keywords:`cloud permanent link alias share phone remote device qr sign in login`,group:`action`},{id:`postgres`,label:`PostgreSQL`,icon:Je,action:r(`postgres`,`PostgreSQL`),keywords:`database pg sql query`,group:`action`},{id:`voice-input`,label:`Voice Input`,icon:er,action:()=>{window.dispatchEvent(new CustomEvent(`toggle-voice-input`)),t()},keywords:`speech microphone dictate voice`,group:`action`,shortcut:Fw(D(`voice-input`))},{id:`git-status`,label:`Git Status`,icon:An,action:()=>{w(`git`),t()},keywords:`changes diff staged`,group:`action`,shortcut:Fw(D(`open-git-status`))},{id:`compare-files`,label:`Compare Files...`,icon:Ke,group:`action`,keywords:`diff compare two files select`,shortcut:Fw(D(`compare-files`)),action:()=>{let{activeTabId:e,tabs:n}=W.getState(),r=n.find(t=>t.id===e),i=r?.metadata;r?.type===`editor`&&i?.filePath&&i?.projectName&&xo.getState().setSelection({filePath:i.filePath,projectName:i.projectName,dirtyContent:i.unsavedContent,label:rt(i.filePath)}),window.dispatchEvent(new CustomEvent(`open-compare-picker`)),t()}},{id:`settings`,label:`Settings`,icon:Dr,action:()=>{T&&E(),w(`settings`),t()},keywords:`config preferences theme`,group:`action`,shortcut:Fw(D(`open-settings`))}],a=O?.keybindings??[],o=(O?.commands??[]).map(e=>{let n=a.find(t=>t.command===e.command),r=(n?D(`ext:${n.command}`):``)||(n?Nw&&n.mac?n.mac:n.key:``);return{id:`ext:${e.command}`,label:e.title,hint:e.category,icon:e.icon&&Pw[e.icon]||vr,group:`action`,keywords:`extension ${e.command} ${e.category??``}`,shortcut:r?Fw(r):void 0,action:()=>{let n=[];y?.path&&n.push(y.path),window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:e.command,args:n}})),t()}}});return[...i,...o]},[y,v,t,w,T,E,D,O]),ee=(0,q.useMemo)(()=>{let e=y?.name??null,n=y?{projectName:y.name}:void 0;return(x===`ready`?b.filter(e=>e.type===`file`):Iw(C)).map(r=>({id:`file:${r.path}`,label:r.name,hint:r.path,icon:G,group:`file`,keywords:r.path,isIgnored:`isIgnored`in r?r.isIgnored:void 0,action:()=>{v({type:`editor`,title:r.name,projectId:e,metadata:{...n,filePath:r.path},closable:!0}),t()}}))},[x,b,C,y,v,t]),te=(0,q.useMemo)(()=>{let e=y?.name??null,n=y?{projectName:y.name}:void 0;return c.map(r=>{let i=rt(r);return{id:`fs:${r}`,label:i,hint:r,icon:Cn,group:`fs`,keywords:r,action:()=>{v({type:`editor`,title:i,projectId:e,metadata:{...n,filePath:r},closable:!0}),t()}}})},[c,y,v,t]),ne=(0,q.useMemo)(()=>f.map(e=>({id:`db:${e.connectionId}:${e.schemaName}.${e.tableName}`,label:e.tableName,hint:`${e.connectionName} (${e.connectionType===`postgres`?`PG`:`SQLite`})`,icon:Je,group:`db`,connectionColor:e.connectionColor,action:()=>{v({type:`database`,title:`${e.connectionName} · ${e.tableName}`,projectId:null,closable:!0,metadata:{connectionId:e.connectionId,connectionName:e.connectionName,dbType:e.connectionType,tableName:e.tableName,schemaName:e.schemaName,connectionColor:e.connectionColor}}),t()}})),[f,v,t]),j=(0,q.useMemo)(()=>[...A,...ee],[A,ee]),M=(0,q.useMemo)(()=>j.map(e=>{let t=e.keywords??e.label,n=t.toLowerCase();return{cmd:e,filenameLower:Tw(n),pathLower:n,labelLen:e.label.length,depth:t.split(`/`).length}}),[j]),re=(0,q.useMemo)(()=>{if(Lw(a)){let e=a.lastIndexOf(`/`),t=e>=0?a.slice(e+1).toLowerCase():``;return t?te.filter(e=>{let n=e.label.toLowerCase(),r=(e.keywords??``).toLowerCase();return n.includes(t)||r.includes(t)}).slice(0,50):te.slice(0,50)}if(!a.trim())return A;let e=a.toLowerCase().replace(/^\.\.?\//,``),t=[];for(let n of M){let r=Dw(e,n.filenameLower,n.pathLower,n.labelLen,n.depth);r&&t.push({cmd:n.cmd,score:r})}t.sort((e,t)=>kw(e.score,t.score));let n=t.slice(0,Mw).map(e=>e.cmd);return a.trim().length>=2?[...ne,...n]:n},[M,A,te,ne,a]),ie=(0,q.useMemo)(()=>{let e=new Set;for(let t of j)e.add(t.group);return f.length>0&&e.add(`db`),c.length>0&&e.add(`fs`),Array.from(e)},[j,f.length,c.length]),ae=(0,q.useMemo)(()=>{let e={};for(let t of re)e[t.group]=(e[t.group]??0)+1;return e},[re]),oe=(0,q.useMemo)(()=>m.size===0?re:re.filter(e=>m.has(e.group)),[re,m]),se=(0,q.useCallback)(e=>{h(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n}),s(0)},[]);(0,q.useEffect)(()=>{e&&x===`idle`&&y&&S(y.name)},[e,x,y,S]),(0,q.useEffect)(()=>{e&&(i(n||``),s(0),l([]),p([]),h(new Set),requestAnimationFrame(()=>g.current?.focus()))},[e]),(0,q.useEffect)(()=>{s(e=>Math.min(e,Math.max(oe.length-1,0)))},[oe.length]),(0,q.useEffect)(()=>{let e=_.current;e&&e.children[o]?.scrollIntoView({block:`nearest`})},[o]);let ce=(0,q.useCallback)(()=>{r.trim()&&(v({type:`chat`,title:`AI Chat`,projectId:y?.name??null,metadata:{projectName:y?.name,pendingMessage:r.trim()},closable:!0}),t())},[r,y,v,t]);function N(e){let n=oe.length;switch(e.key){case`ArrowDown`:e.preventDefault(),n>0&&s(e=>(e+1)%n);break;case`ArrowUp`:e.preventDefault(),n>0&&s(e=>(e-1+n)%n);break;case`Enter`:e.preventDefault(),n>0?oe[o]?.action():r.trim()&&ce();break;case`Escape`:e.preventDefault(),t();break}}if(!e)return null;let le=Lw(r);return(0,J.jsxs)(`div`,{className:`fixed inset-0 z-50 flex items-end md:items-start justify-center md:pt-[20vh]`,onClick:t,children:[(0,J.jsx)(`div`,{className:`fixed inset-0 bg-black/50`}),(0,J.jsxs)(`div`,{className:`relative z-10 w-full max-w-md rounded-t-xl md:rounded-xl border border-border bg-background shadow-2xl overflow-hidden max-h-[80vh] md:max-h-none`,onClick:e=>e.stopPropagation(),onKeyDown:N,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2 border-b border-border px-3 py-2.5`,children:[(0,J.jsx)(Ge,{className:`size-4 text-text-subtle shrink-0`}),(0,J.jsx)(`input`,{ref:g,type:`text`,value:r,onChange:e=>i(e.target.value),placeholder:`Search actions & files... (type / or ~/ for filesystem)`,className:`flex-1 bg-transparent text-sm text-text-primary outline-none placeholder:text-text-subtle`}),u&&(0,J.jsx)(K,{className:`size-3.5 animate-spin text-text-subtle shrink-0`}),(0,J.jsx)(`kbd`,{className:`hidden sm:inline-flex items-center rounded border border-border bg-surface px-1.5 py-0.5 text-[10px] text-text-subtle font-mono`,children:`ESC`})]}),le&&!u&&c.length===0&&r.length<4&&(0,J.jsx)(`div`,{className:`px-3 py-2 text-xs text-text-subtle border-b border-border/50`,children:`Type a directory path to browse files (e.g. ~/Projects/)`}),!le&&(x===`loading`||x===`idle`)&&(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 px-3 py-1.5 border-b border-border/50`,children:[(0,J.jsx)(K,{className:`size-3 animate-spin text-text-subtle shrink-0`}),(0,J.jsx)(`span`,{className:`text-[11px] text-text-subtle italic`,children:`Indexing project…`})]}),!le&&x===`error`&&(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-1.5 border-b border-border/50`,children:[(0,J.jsx)(`span`,{className:`text-[11px] text-text-subtle`,children:`Failed to build file index —`}),(0,J.jsx)(`button`,{onClick:()=>y&&S(y.name),className:`text-[11px] text-primary hover:underline`,children:`retry`})]}),!le&&(0,J.jsx)(jw,{availableGroups:ie,groupCounts:ae,activeFilters:m,onToggle:se}),(0,J.jsx)(`div`,{ref:_,className:`max-h-72 overflow-y-auto py-1`,children:oe.length===0?u?(0,J.jsx)(`p`,{className:`px-3 py-4 text-sm text-text-subtle text-center`,children:`Searching...`}):m.size>0&&re.length>0?(0,J.jsx)(`p`,{className:`px-3 py-4 text-sm text-text-subtle text-center`,children:`No results in selected filters`}):r.trim()?(0,J.jsxs)(`button`,{onClick:ce,className:`flex items-center gap-3 w-full px-3 py-3 text-sm text-left text-text-secondary hover:bg-accent/15 hover:text-text-primary transition-colors`,children:[(0,J.jsx)($n,{className:`size-4 shrink-0 text-primary`}),(0,J.jsxs)(`span`,{children:[`Ask AI: `,(0,J.jsx)(`span`,{className:`text-text-primary font-medium`,children:r.trim().slice(0,60)})]})]}):(0,J.jsx)(`p`,{className:`px-3 py-4 text-sm text-text-subtle text-center`,children:`No results`}):oe.map((e,t)=>{let n=e.icon;return(0,J.jsxs)(`button`,{onClick:e.action,className:`flex items-center gap-3 w-full px-3 py-2 text-sm text-left transition-colors ${t===o?`bg-accent/15 text-text-primary`:`text-text-secondary hover:bg-surface-elevated`} ${e.isIgnored?`opacity-60`:``}`,title:e.isIgnored?`Gitignored file`:void 0,children:[(0,J.jsx)(n,{className:`size-4 shrink-0`}),(0,J.jsx)(`span`,{className:`truncate`,children:e.label}),e.hint&&(0,J.jsxs)(`span`,{className:`ml-auto flex items-center gap-1.5 text-xs text-text-subtle truncate max-w-[200px]`,children:[e.connectionColor&&(0,J.jsx)(`span`,{className:`shrink-0 size-2 rounded-full`,style:{backgroundColor:e.connectionColor}}),e.hint]}),e.shortcut&&(0,J.jsx)(`kbd`,{className:`ml-auto shrink-0 rounded border border-border bg-surface px-1.5 py-0.5 text-[10px] text-text-subtle font-mono`,children:e.shortcut})]},e.id)})}),(0,J.jsxs)(`div`,{className:`flex items-center justify-center gap-1.5 border-t border-border px-3 py-1.5`,children:[(0,J.jsx)(`span`,{className:`text-[10px] text-text-subtle`,children:`Press`}),(0,J.jsx)(`kbd`,{className:`inline-flex items-center rounded border border-border bg-surface px-1 py-0.5 text-[10px] text-text-subtle font-mono`,children:`Shift`}),(0,J.jsx)(`kbd`,{className:`inline-flex items-center rounded border border-border bg-surface px-1 py-0.5 text-[10px] text-text-subtle font-mono`,children:`Shift`}),(0,J.jsx)(`span`,{className:`text-[10px] text-text-subtle`,children:`to open this palette`})]})]})]})}var Vw=50;function Hw({open:e,onOpenChange:t,initialA:n}={}){let r=e!==void 0,[i,a]=(0,q.useState)(!1),o=r?e:i,s=e=>{r?t?.(e):a(e)},[c,l]=(0,q.useState)(n??null);(0,q.useEffect)(()=>{if(r)return;function e(){l(xo.getState().selection),a(!0)}return window.addEventListener(`open-compare-picker`,e),()=>window.removeEventListener(`open-compare-picker`,e)},[r]);let[u,d]=(0,q.useState)(``),[f,p]=(0,q.useState)(0),[m,h]=(0,q.useState)(null),g=(0,q.useRef)(null),_=W(e=>e.tabs),v=ho(e=>e.fileIndex),y=U(e=>e.activeProject);(0,q.useEffect)(()=>{o&&(r&&l(n??null),d(``),p(0),h(null),setTimeout(()=>g.current?.focus(),50))},[o,n,r]);let b=(0,q.useMemo)(()=>{let e=_.filter(e=>e.type===`editor`&&e.metadata?.filePath).map(e=>({id:`tab:${e.id}`,path:e.metadata.filePath,label:rt(e.metadata.filePath),source:`tab`,dirtyContent:e.metadata.unsavedContent})),t=new Set(e.map(e=>e.path)),n=v.filter(e=>e.type===`file`&&!t.has(e.path)).map(e=>({id:`file:${e.path}`,path:e.path,label:e.name,source:`file`}));return[...e,...n]},[_,v]),x=(0,q.useMemo)(()=>u.trim()?b.map(e=>{let t=Ow(u,e.label,e.path);return t?{c:e,score:t}:null}).filter(e=>e!==null).sort((e,t)=>kw(e.score,t.score)).slice(0,Vw).map(e=>e.c):b.slice(0,Vw),[b,u]);(0,q.useEffect)(()=>{f>=x.length&&p(Math.max(0,x.length-1))},[x,f]);let S=(0,q.useRef)(!1);async function C(e){if(y){if(!c){l({filePath:e.path,projectName:y.name,dirtyContent:e.dirtyContent,label:e.label}),d(``),p(0),g.current?.focus();return}if(!S.current){S.current=!0;try{await Co({path:c.filePath,dirtyContent:c.dirtyContent},{path:e.path,dirtyContent:e.dirtyContent},y.name),xo.getState().clearSelection(),s(!1)}catch(e){h(e instanceof Error?e.message:`Compare failed`)}finally{S.current=!1}}}}function w(e){if(e.key===`ArrowDown`)e.preventDefault(),p(e=>Math.min(x.length-1,e+1));else if(e.key===`ArrowUp`)e.preventDefault(),p(e=>Math.max(0,e-1));else if(e.key===`Enter`){e.preventDefault();let t=x[f];t&&C(t)}}return(0,J.jsx)(Ue,{open:o,onOpenChange:s,children:(0,J.jsxs)(ze,{className:`max-w-lg p-0 gap-0 overflow-hidden`,children:[(0,J.jsx)(Ie,{className:`px-4 pt-4 pb-2`,children:(0,J.jsxs)(Be,{className:`flex items-center gap-2 text-sm`,children:[(0,J.jsx)(Ke,{className:`size-4`}),`Compare Files`]})}),(0,J.jsx)(`div`,{className:`px-4 pb-2`,children:c?(0,J.jsxs)(`div`,{className:`flex items-center gap-2 text-xs bg-muted rounded px-2 py-1 w-fit max-w-full`,children:[(0,J.jsx)(G,{className:`size-3.5 shrink-0`}),(0,J.jsx)(`span`,{className:`truncate`,title:c.filePath,children:c.label}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>l(null),className:`hover:bg-surface-elevated rounded p-0.5`,"aria-label":`Clear first file`,children:(0,J.jsx)(Qe,{className:`size-3`})})]}):(0,J.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Pick first file, then second.`})}),(0,J.jsx)(`input`,{ref:g,type:`text`,value:u,onChange:e=>{d(e.target.value),p(0)},onKeyDown:w,placeholder:c?`Search for file B...`:`Search for file A...`,className:`w-full px-4 py-2 bg-transparent border-y border-border text-sm outline-none`}),m&&(0,J.jsx)(`div`,{className:`px-4 py-2 text-xs text-destructive border-b border-border`,children:m}),(0,J.jsx)(`div`,{className:`max-h-[50vh] md:max-h-80 overflow-y-auto`,children:x.length===0?(0,J.jsx)(`div`,{className:`px-4 py-6 text-center text-xs text-muted-foreground`,children:b.length===0?`No files available`:`No matches`}):x.map((e,t)=>(0,J.jsxs)(`button`,{type:`button`,onClick:()=>C(e),onMouseEnter:()=>p(t),className:V(`w-full flex items-center gap-2 px-4 py-1.5 text-left text-sm`,`hover:bg-surface-elevated transition-colors`,t===f&&`bg-surface-elevated`),children:[(0,J.jsx)(G,{className:`size-3.5 shrink-0 text-text-secondary`}),(0,J.jsx)(`span`,{className:`truncate`,children:e.label}),(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground truncate ml-auto`,title:e.path,children:e.source===`tab`?`open`:e.path})]},e.id))})]})})}var Uw=nt(e=>({src:null,alt:``,open:(t,n=``)=>e({src:t,alt:n}),close:()=>e({src:null,alt:``})}));function Ww(){let{src:e,alt:t,close:n}=Uw(),r=(0,q.useCallback)(e=>{e.key===`Escape`&&n()},[n]);return(0,q.useEffect)(()=>{if(e)return document.addEventListener(`keydown`,r),()=>document.removeEventListener(`keydown`,r)},[e,r]),e?(0,J.jsxs)(`div`,{className:`fixed inset-0 z-[100] flex items-center justify-center bg-black/80 backdrop-blur-sm animate-in fade-in duration-150`,onClick:n,children:[(0,J.jsx)(`button`,{onClick:n,className:`absolute top-4 right-4 z-10 flex items-center justify-center size-8 rounded-full bg-white/10 hover:bg-white/20 text-white transition-colors`,"aria-label":`Close`,children:(0,J.jsx)(Qe,{className:`size-5`})}),(0,J.jsx)(`img`,{src:e,alt:t,className:`max-w-[90vw] max-h-[90vh] object-contain rounded-lg shadow-2xl`,onClick:e=>e.stopPropagation()})]}):null}var Gw=nt(e=>({svg:null,open:t=>e({svg:t}),close:()=>e({svg:null})})),Kw=.25,qw=4,Jw=.25;function Yw(){let{svg:e,close:t}=Gw(),n=(0,q.useRef)(null),[r,i]=(0,q.useState)(1),[a,o]=(0,q.useState)({x:0,y:0}),s=(0,q.useRef)(!1),c=(0,q.useRef)({x:0,y:0});(0,q.useEffect)(()=>{e&&(i(1),o({x:0,y:0}))},[e]);let l=(0,q.useCallback)(e=>{e.key===`Escape`&&t(),(e.key===`=`||e.key===`+`)&&i(e=>Math.min(qw,e+Jw)),e.key===`-`&&i(e=>Math.max(Kw,e-Jw)),e.key===`0`&&(i(1),o({x:0,y:0}))},[t]);(0,q.useEffect)(()=>{if(e)return document.addEventListener(`keydown`,l),()=>document.removeEventListener(`keydown`,l)},[e,l]);let u=(0,q.useCallback)(e=>{e.preventDefault();let t=e.deltaY>0?-Jw:Jw;i(e=>Math.min(qw,Math.max(Kw,e+t)))},[]),d=(0,q.useCallback)(e=>{e.button===0&&(s.current=!0,c.current={x:e.clientX,y:e.clientY},e.target.setPointerCapture(e.pointerId))},[]),f=(0,q.useCallback)(e=>{if(!s.current)return;let t=e.clientX-c.current.x,n=e.clientY-c.current.y;c.current={x:e.clientX,y:e.clientY},o(e=>({x:e.x+t,y:e.y+n}))},[]),p=(0,q.useCallback)(()=>{s.current=!1},[]);return e?(0,J.jsxs)(`div`,{className:`fixed inset-0 z-[100] flex flex-col bg-black/85 backdrop-blur-sm animate-in fade-in duration-150`,onClick:t,children:[(0,J.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 bg-black/40`,onClick:e=>e.stopPropagation(),children:[(0,J.jsxs)(`span`,{className:`text-sm text-white/70`,children:[Math.round(r*100),`% — Scroll to zoom, drag to pan, 0 to reset`]}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,J.jsx)(`button`,{onClick:()=>i(e=>Math.max(Kw,e-Jw)),className:`flex items-center justify-center size-8 rounded bg-white/10 hover:bg-white/20 text-white transition-colors`,"aria-label":`Zoom out`,children:(0,J.jsx)(Jr,{className:`size-4`})}),(0,J.jsx)(`button`,{onClick:()=>i(e=>Math.min(qw,e+Jw)),className:`flex items-center justify-center size-8 rounded bg-white/10 hover:bg-white/20 text-white transition-colors`,"aria-label":`Zoom in`,children:(0,J.jsx)(qr,{className:`size-4`})}),(0,J.jsx)(`button`,{onClick:()=>{i(1),o({x:0,y:0})},className:`flex items-center justify-center size-8 rounded bg-white/10 hover:bg-white/20 text-white transition-colors`,"aria-label":`Reset zoom`,children:(0,J.jsx)(Cr,{className:`size-4`})}),(0,J.jsx)(`button`,{onClick:t,className:`flex items-center justify-center size-8 rounded bg-white/10 hover:bg-white/20 text-white transition-colors ml-2`,"aria-label":`Close`,children:(0,J.jsx)(Qe,{className:`size-5`})})]})]}),(0,J.jsx)(`div`,{ref:n,className:`flex-1 overflow-hidden cursor-grab active:cursor-grabbing`,onClick:e=>e.stopPropagation(),onWheel:u,onPointerDown:d,onPointerMove:f,onPointerUp:p,children:(0,J.jsx)(`div`,{className:`w-full h-full flex items-center justify-center`,style:{transform:`translate(${a.x}px, ${a.y}px) scale(${r})`,transformOrigin:`center center`},children:(0,J.jsx)(`div`,{className:`mermaid-overlay-content bg-white rounded-lg p-6 shadow-2xl [&_svg]:max-w-full [&_svg]:h-auto`,dangerouslySetInnerHTML:{__html:e}})})})]}):null}var Xw=new Map,Zw=nt((e,t)=>({shellsBySession:{},panelShellId:null,setSessionShells:(t,n)=>e(e=>({shellsBySession:{...e.shellsBySession,[t]:n}})),retainSession:e=>{Xw.set(e,(Xw.get(e)??0)+1)},releaseSession:t=>{let n=(Xw.get(t)??1)-1;if(n>0){Xw.set(t,n);return}Xw.delete(t),e(e=>{let n={...e.shellsBySession};return delete n[t],{shellsBySession:n}})},findByOutput:e=>{if(!e)return;let n=rt(e).replace(/\.output$/,``);for(let r of Object.values(t().shellsBySession)){let t=r.find(t=>t.shellId===n||t.outputPath.endsWith(`${n}.output`)||t.outputPath.endsWith(e));if(t)return t}},getShell:e=>{for(let n of Object.values(t().shellsBySession)){let t=n.find(t=>t.shellId===e);if(t)return t}},openPanel:t=>e({panelShellId:t}),closePanel:()=>e({panelShellId:null})})),Qw=1500,$w=5e5;function eT(){let e=Zw(e=>e.panelShellId),t=Zw(e=>e.getShell),n=Zw(e=>e.closePanel),r=e?t(e):void 0,[i,a]=(0,q.useState)(``),[o,s]=(0,q.useState)(null),[c,l]=(0,q.useState)(!1),u=(0,q.useRef)(null),d=r?.outputPath,f=r?.status,p=(0,q.useCallback)(async()=>{if(d)try{let e=(await R.get(`/api/fs/read?path=${encodeURIComponent(d)}`)).content??``;a(e.length>$w?e.slice(-$w):e),s(null)}catch(e){s(e.message)}finally{l(!1)}},[d]);return(0,q.useEffect)(()=>{if(!d||(l(!0),a(``),p(),f!==`running`))return;let e=setInterval(p,Qw);return()=>clearInterval(e)},[d,f,p]),(0,q.useEffect)(()=>{u.current&&(u.current.scrollTop=u.current.scrollHeight)},[i]),(0,q.useEffect)(()=>{if(!e)return;let t=e=>{e.key===`Escape`&&n()};return document.addEventListener(`keydown`,t),()=>document.removeEventListener(`keydown`,t)},[e,n]),e?(0,J.jsx)(`div`,{className:`fixed inset-0 z-[100] flex items-end md:items-center justify-center bg-black/60 backdrop-blur-sm animate-in fade-in duration-150`,onClick:n,children:(0,J.jsxs)(`div`,{className:`flex flex-col w-full md:max-w-3xl md:w-[90vw] max-h-[80vh] md:max-h-[75vh] overflow-hidden rounded-t-xl md:rounded-xl border border-border bg-surface shadow-2xl`,onClick:e=>e.stopPropagation(),children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-4 py-3 border-b border-border`,children:[(0,J.jsx)(Ar,{className:`size-4 shrink-0 text-text-secondary`}),(0,J.jsx)(`span`,{className:`flex-1 truncate text-sm font-mono text-text-primary`,title:r?.command,children:r?.command||`Background command`}),f===`running`&&(0,J.jsxs)(`span`,{className:`flex items-center gap-1 text-[11px] text-emerald-500`,children:[(0,J.jsx)(K,{className:`size-3 animate-spin`}),` live`]}),f===`stopping`&&(0,J.jsx)(`span`,{className:`text-[11px] text-warning`,children:`stopping…`}),f===`stopped`&&(0,J.jsx)(`span`,{className:`text-[11px] text-text-subtle`,children:`stopped`}),(0,J.jsx)(`button`,{type:`button`,onClick:n,className:`flex items-center justify-center size-9 -mr-1 rounded hover:bg-surface-elevated text-text-secondary`,"aria-label":`Close`,children:(0,J.jsx)(Qe,{className:`size-5`})})]}),(0,J.jsx)(`pre`,{ref:u,className:`flex-1 overflow-auto p-4 text-xs font-mono whitespace-pre-wrap break-words text-text-primary bg-background`,children:o?`Failed to read output: ${o}`:i||(c?`Loading…`:`(no output yet)`)})]})}):null}var tT=`https://cloud.ppm.sh`;function nT(){return window.location.hostname.endsWith(`.trycloudflare.com`)}function rT(){let e=xw(e=>e.showOverlay),[t,n]=(0,q.useState)(!1);if(!e)return null;let r=nT();async function i(){n(!0);try{if((await fetch(`/api/health`,{cache:`no-store`})).ok){if(xw.getState().markUp(),`caches`in window){let e=await caches.keys();await Promise.all(e.map(e=>caches.delete(e)))}window.location.reload();return}}catch{}n(!1)}return(0,J.jsx)(`div`,{className:`fixed inset-0 z-[200] bg-background/95 backdrop-blur-sm flex items-center justify-center p-4`,children:(0,J.jsxs)(`div`,{className:`max-w-sm w-full text-center space-y-6`,children:[(0,J.jsx)(`div`,{className:`flex justify-center`,children:(0,J.jsx)(`div`,{className:`rounded-full bg-destructive/10 p-4`,children:(0,J.jsx)(r?Gr:Tr,{className:`h-10 w-10 text-destructive`})})}),(0,J.jsxs)(`div`,{className:`space-y-2`,children:[(0,J.jsx)(`h2`,{className:`text-xl font-semibold text-foreground`,children:r?`Connection Lost`:`Server Unreachable`}),(0,J.jsx)(`p`,{className:`text-sm text-muted-foreground leading-relaxed`,children:r?`The tunnel appears to have closed. The server may have restarted with a new URL.`:`Cannot connect to the PPM server. It may have stopped or is restarting.`})]}),(0,J.jsxs)(`div`,{className:`flex flex-col gap-3`,children:[r&&(0,J.jsx)(`a`,{href:tT,target:`_blank`,rel:`noopener noreferrer`,className:`inline-flex items-center justify-center rounded-md bg-primary px-4 py-2.5 text-sm font-medium text-primary-foreground hover:bg-primary/90 transition-colors`,children:`Open PPM Cloud`}),(0,J.jsxs)(`button`,{onClick:i,disabled:t,className:`inline-flex items-center justify-center gap-2 rounded-md border border-border px-4 py-2.5 text-sm font-medium text-foreground hover:bg-accent transition-colors disabled:opacity-50`,children:[(0,J.jsx)(br,{className:`h-4 w-4 ${t?`animate-spin`:``}`}),t?`Retrying…`:`Retry Connection`]})]}),!r&&(0,J.jsxs)(`p`,{className:`text-xs text-muted-foreground`,children:[`If the server was stopped, run `,(0,J.jsx)(`code`,{className:`bg-muted px-1 py-0.5 rounded text-[11px]`,children:`ppm start`}),` to restart it.`]})]})})}function iT(){let e=cs(e=>e.quickPick),t=cs(e=>e.resolveQuickPick);return e?(0,J.jsx)(aT,{items:e.items,options:e.options,onSelect:e=>t(e),onCancel:()=>t(void 0)}):null}function aT({items:e,options:t,onSelect:n,onCancel:r}){let[i,a]=(0,q.useState)(``),[o,s]=(0,q.useState)(0),[c,l]=(0,q.useState)(()=>{let t=new Set;return e.forEach((e,n)=>{e.picked&&t.add(n)}),t}),u=(0,q.useRef)(null),d=(0,q.useRef)(null),f=t.canPickMany??!1;(0,q.useEffect)(()=>{requestAnimationFrame(()=>u.current?.focus())},[]);let p=(0,q.useMemo)(()=>{if(!i.trim())return e.map((e,t)=>({item:e,originalIdx:t}));let t=i.toLowerCase();return e.map((e,t)=>({item:e,originalIdx:t})).filter(({item:e})=>e.label.toLowerCase().includes(t)||e.description?.toLowerCase().includes(t)||e.detail?.toLowerCase().includes(t))},[e,i]);(0,q.useEffect)(()=>{s(e=>Math.min(e,Math.max(p.length-1,0)))},[p.length]),(0,q.useEffect)(()=>{(d.current?.children[o])?.scrollIntoView({block:`nearest`})},[o]);let m=(0,q.useCallback)(()=>{f?n(e.filter((e,t)=>c.has(t))):p[o]&&n([p[o].item])},[f,c,e,p,o,n]);function h(e){switch(e.key){case`ArrowDown`:e.preventDefault(),p.length>0&&s(e=>(e+1)%p.length);break;case`ArrowUp`:e.preventDefault(),p.length>0&&s(e=>(e-1+p.length)%p.length);break;case` `:if(f&&p[o]){e.preventDefault();let t=p[o].originalIdx;l(e=>{let n=new Set(e);return n.has(t)?n.delete(t):n.add(t),n})}break;case`Enter`:e.preventDefault(),m();break;case`Escape`:e.preventDefault(),r();break}}return(0,J.jsxs)(`div`,{className:`fixed inset-0 z-50 flex items-end md:items-start justify-center md:pt-[20vh]`,onClick:r,children:[(0,J.jsx)(`div`,{className:`fixed inset-0 bg-black/50`}),(0,J.jsxs)(`div`,{className:`relative z-10 w-full max-w-md rounded-t-xl md:rounded-xl border border-border bg-background shadow-2xl overflow-hidden max-h-[80vh] md:max-h-none`,onClick:e=>e.stopPropagation(),onKeyDown:h,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2 border-b border-border px-3 py-2.5`,children:[(0,J.jsx)(Ge,{className:`size-4 text-text-subtle shrink-0`}),(0,J.jsx)(`input`,{ref:u,type:`text`,value:i,onChange:e=>a(e.target.value),placeholder:t.placeholder??`Select an item...`,className:`flex-1 bg-transparent text-sm text-text-primary outline-none placeholder:text-text-subtle`}),(0,J.jsx)(`kbd`,{className:`hidden sm:inline-flex items-center rounded border border-border bg-surface px-1.5 py-0.5 text-[10px] text-text-subtle font-mono`,children:`ESC`})]}),(0,J.jsx)(`div`,{ref:d,className:`max-h-72 overflow-y-auto py-1`,children:p.length===0?(0,J.jsx)(`p`,{className:`px-3 py-4 text-sm text-text-subtle text-center`,children:`No matching items`}):p.map(({item:e,originalIdx:t},r)=>(0,J.jsxs)(`button`,{onClick:()=>{f?l(e=>{let n=new Set(e);return n.has(t)?n.delete(t):n.add(t),n}):n([e])},className:V(`flex items-center gap-3 w-full px-3 py-2 text-sm text-left transition-colors`,r===o?`bg-accent/15 text-text-primary`:`text-text-secondary hover:bg-surface-elevated`),children:[f&&(0,J.jsx)(`span`,{className:V(`size-4 shrink-0 rounded border flex items-center justify-center`,c.has(t)?`bg-primary border-primary text-primary-foreground`:`border-border`),children:c.has(t)&&(0,J.jsx)(xe,{className:`size-3`})}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,J.jsx)(`div`,{className:`truncate`,children:e.label}),e.description&&(0,J.jsx)(`span`,{className:`text-xs text-text-subtle ml-2`,children:e.description}),e.detail&&(0,J.jsx)(`div`,{className:`text-xs text-text-subtle truncate mt-0.5`,children:e.detail})]})]},t))}),f&&(0,J.jsxs)(`div`,{className:`flex items-center justify-between border-t border-border px-3 py-1.5`,children:[(0,J.jsxs)(`span`,{className:`text-[10px] text-text-subtle`,children:[c.size,` selected`]}),(0,J.jsx)(`button`,{onClick:m,className:`text-xs text-primary hover:text-primary/80 font-medium`,children:`Confirm`})]})]})]})}function oT(){let e=cs(e=>e.inputBox),t=cs(e=>e.resolveInputBox);return e?(0,J.jsx)(sT,{options:e.options,onConfirm:e=>t(e),onCancel:()=>t(void 0)}):null}function sT({options:e,onConfirm:t,onCancel:n}){let[r,i]=(0,q.useState)(e.value??``),a=(0,q.useRef)(null);(0,q.useEffect)(()=>{requestAnimationFrame(()=>{a.current?.focus(),a.current?.select()})},[]);function o(e){e.key===`Enter`?(e.preventDefault(),t(r)):e.key===`Escape`&&(e.preventDefault(),n())}return(0,J.jsxs)(`div`,{className:`fixed inset-0 z-50 flex items-end md:items-start justify-center md:pt-[20vh]`,onClick:n,children:[(0,J.jsx)(`div`,{className:`fixed inset-0 bg-black/50`}),(0,J.jsxs)(`div`,{className:`relative z-10 w-full max-w-md rounded-t-xl md:rounded-xl border border-border bg-background shadow-2xl overflow-hidden`,onClick:e=>e.stopPropagation(),children:[e.prompt&&(0,J.jsx)(`div`,{className:`px-3 pt-3 pb-1 text-sm text-text-primary`,children:e.prompt}),(0,J.jsx)(`div`,{className:`flex items-center gap-2 px-3 py-2.5`,children:(0,J.jsx)(`input`,{ref:a,type:e.password?`password`:`text`,value:r,onChange:e=>i(e.target.value),onKeyDown:o,placeholder:e.placeholder??``,className:`flex-1 bg-surface border border-border rounded px-2 py-1.5 text-sm text-text-primary outline-none focus:border-primary placeholder:text-text-subtle`})}),(0,J.jsxs)(`div`,{className:`flex items-center justify-end gap-2 border-t border-border px-3 py-2`,children:[(0,J.jsx)(`button`,{onClick:n,className:`px-3 py-1.5 text-xs text-text-secondary hover:text-text-primary transition-colors rounded`,children:`Cancel`}),(0,J.jsx)(`button`,{onClick:()=>t(r),className:`px-3 py-1.5 text-xs bg-primary text-primary-foreground rounded hover:bg-primary/90 transition-colors font-medium`,children:`OK`})]})]})]})}var cT=new Set;function lT(e,t){return`${e}:${t??``}`}var uT=new Map,dT=15e3;function fT(e,t){let n=Date.now();for(let[e,t]of uT)n-t>dT&&uT.delete(e);if(uT.delete(`${e}:${t??``}`)||t&&uT.delete(`${e}:`))return!0;if(!t){for(let t of uT.keys())if(t.startsWith(`${e}:`))return uT.delete(t),!0}return!1}var pT=new Set;function mT(e=!0){let t=(0,q.useRef)(null),n=(0,q.useCallback)(e=>{t.current?.send(JSON.stringify(e))},[]);return(0,q.useEffect)(()=>{if(!e)return;let r=tt(),i=new vw(r?`/ws/extensions?token=${encodeURIComponent(r)}`:`/ws/extensions`);t.current=i,i.onMessage(e=>{let t;try{t=JSON.parse(e.data)}catch{return}let r=cs.getState();switch(t.type){case`contributions:update`:if(r.setContributions(t.contributions),t.activationErrors){let e=r.activationErrors;r.setActivationErrors(t.activationErrors);for(let[n,r]of Object.entries(t.activationErrors))e[n]||I.error(`Extension "${n}" failed to activate: ${r}`)}break;case`statusbar:update`:r.addStatusBarItem(t.item);break;case`statusbar:remove`:r.removeStatusBarItem(t.itemId);break;case`tree:update`:t.parentId?r.updateTreeChildren(t.viewId,t.parentId,t.items):r.updateTree(t.viewId,t.items);break;case`tree:refresh`:r.removeTree(t.viewId);break;case`notification`:{let e=t.level===`error`?I.error:t.level===`warn`?I.warning:I.info;if(t.actions&&t.actions.length>0){let r={action:{label:t.actions[0],onClick:()=>n({type:`notification:action`,id:t.id,action:t.actions[0]??null})},onDismiss:()=>n({type:`notification:action`,id:t.id,action:null})};t.actions.length>1&&(r.cancel={label:t.actions[1],onClick:()=>n({type:`notification:action`,id:t.id,action:t.actions[1]??null})}),e(t.message,r)}else e(t.message);break}case`quickpick:show`:r.showQuickPick(t.items,t.options).then(e=>{n({type:`quickpick:resolve`,requestId:t.requestId,selected:e??null})});break;case`inputbox:show`:r.showInputBox(t.options).then(e=>{n({type:`inputbox:resolve`,requestId:t.requestId,value:e??null})});break;case`webview:create`:{let e=t.viewType.replace(/\.view$/,``),n=fT(e,t.projectPath);r.addWebviewPanel({id:t.panelId,extensionId:t.extensionId,viewType:t.viewType,title:t.title,html:``,projectName:t.projectName});let i=`extension:${e}`,a=H.getState(),o=Object.values(a.panels).flatMap(e=>e.tabs).filter(e=>e.id===i||e.id.startsWith(`${i}@`)),s=e=>e.metadata?.projectName,c=t.projectName?o.find(e=>s(e)===t.projectName)??o.find(e=>!s(e)):o[0];if(c)W.getState().updateTab(c.id,{title:t.title,metadata:{...c.metadata,viewType:e,panelId:t.panelId,extensionId:t.extensionId,...t.projectName&&{projectName:t.projectName}}}),n&&!pT.has(e)&&W.getState().setActiveTab(c.id),pT.delete(e);else if(n&&!cT.has(lT(e,t.projectName))){let n=W.getState().currentProject,r=t.projectName??n??void 0;W.getState().openTab({type:`extension`,title:t.title,projectId:null,closable:!0,metadata:{viewType:e,panelId:t.panelId,extensionId:t.extensionId,...r&&{projectName:r}}})}break}case`webview:html`:r.updateWebviewPanel(t.panelId,{html:t.html});break;case`webview:dispose`:r.removeWebviewPanel(t.panelId);break;case`webview:postMessage`:window.dispatchEvent(new CustomEvent(`ext:webview:message`,{detail:{panelId:t.panelId,message:t.message}}));break;case`tab:open`:W.getState().openTab({type:t.tabType,title:t.title,projectId:t.projectId??null,closable:t.closable??!0,metadata:t.metadata});break;case`project:switch`:W.getState().switchProject(t.projectName);break}});let a=e=>{let{panelId:t,message:n}=e.detail;i.send(JSON.stringify({type:`webview:message`,panelId:t,message:n}))};window.addEventListener(`ext:webview:send`,a);let o=e=>{let{viewId:t,itemId:n}=e.detail;i.send(JSON.stringify({type:`tree:expand`,viewId:t,itemId:n}))};window.addEventListener(`ext:tree:expand`,o);let s=e=>{let{command:t,args:n,recovery:r}=e.detail,a=t.replace(/\.view$/,``);for(let e of cT)e.startsWith(`${a}:`)&&cT.delete(e);let o=Array.isArray(n)&&typeof n[0]==`string`?n[0]:``;uT.set(`${a}:${o}`,Date.now()),r?pT.add(a):pT.delete(a),i.send(JSON.stringify({type:`command:execute`,command:t,args:n}))};window.addEventListener(`ext:command:execute`,s);let c=e=>{let{panelId:t,viewType:n,projectName:r}=e.detail;if(i.send(JSON.stringify({type:`webview:close`,panelId:t})),n){let e=lT(n.replace(/\.view$/,``),r);cT.add(e),setTimeout(()=>cT.delete(e),5e3)}};return window.addEventListener(`ext:webview:close`,c),i.connect(),()=>{window.removeEventListener(`ext:webview:send`,a),window.removeEventListener(`ext:tree:expand`,o),window.removeEventListener(`ext:command:execute`,s),window.removeEventListener(`ext:webview:close`,c),i.disconnect(),t.current=null}},[n,e]),{send:n}}function hT(){let[e,t]=(0,q.useState)(`checking`),[n,r]=(0,q.useState)(!1),[i,a]=(0,q.useState)(),[o,s]=(0,q.useState)(!1);(0,q.useEffect)(()=>{let e=()=>{a(`settings`),r(!0)};return window.addEventListener(`open-mobile-settings`,e),()=>window.removeEventListener(`open-mobile-settings`,e)},[]);let[c,l]=(0,q.useState)(()=>new Set([`__global__`]));wh(),(0,q.useEffect)(()=>{pS(),oS(),XC()},[]);let u=B(e=>e.deviceName),d=U(e=>e.fetchProjects),f=B(e=>e.fetchServerInfo),p=U(e=>e.activeProject),m=(0,q.useRef)(rp());(0,q.useEffect)(()=>{f()},[f,e===`authenticated`]),(0,q.useEffect)(()=>{async function e(){let e=tt();try{let n={};e&&(n.Authorization=`Bearer ${e}`),(await(await fetch(`/api/auth/check`,{headers:n})).json()).ok?t(`authenticated`):t(`unauthenticated`)}catch{t(`unauthenticated`)}}e()},[]),lp();let{paletteOpen:h,paletteInitialQuery:g,closePalette:_}=us();cw(),ww(),mT(e===`authenticated`),yw(e===`authenticated`,p?.name),hw(),(0,q.useEffect)(()=>{if(e!==`authenticated`)return;let t=e=>{e.preventDefault()};return window.addEventListener(`beforeunload`,t),()=>window.removeEventListener(`beforeunload`,t)},[e]),(0,q.useEffect)(()=>{e===`authenticated`&&(z(async()=>{let{useKeybindingsStore:e}=await import(`./keybindings-store-B3plqyxF.js`);return{useKeybindingsStore:e}},__vite__mapDeps([161,3,1,4,8])).then(({useKeybindingsStore:e})=>{e.getState().loadFromServer()}),U.getState().hydrateUiPrefs())},[e]),(0,q.useEffect)(()=>{e===`authenticated`&&d().then(async()=>{let e=m.current,{projects:t,customOrder:n}=U.getState();if(t.length===0)return;let r=e.projectName?t.find(t=>t.name===e.projectName):void 0;if(r||=lt(t,n)[0],r&&(await ot(r.name),U.getState().setActiveProject(r),W.getState().switchProject(r.name),e.tabType&&cp(e.tabType,e.tabIdentifier,r.name),e.openChat)){cp(`chat`,e.openChat,r.name);let t=new URL(window.location.href);t.searchParams.delete(`openChat`),window.history.replaceState(null,``,t.pathname)}})},[e,d]),(0,q.useEffect)(()=>{let e=p?.name??`__global__`,t=!1;return(async()=>{e!==`__global__`&&!localStorage.getItem(`ppm-panels-${e}`)&&(await ot(e),t)||W.getState().switchProject(e)})(),()=>{t=!0}},[p?.name]),(0,q.useEffect)(()=>{e!==`authenticated`||!p?.name||z(async()=>{let{useNotificationStore:e}=await import(`./notification-store-jFDauzse.js`);return{useNotificationStore:e}},__vite__mapDeps([162,3,1,4,8])).then(({useNotificationStore:e})=>{e.getState().loadFromServer(p.name)})},[e,p?.name]),(0,q.useEffect)(()=>{e!==`authenticated`||!p?.name||R.get(`${L(p.name)}/chat/sessions/running`).then(e=>{let{setStreaming:t}=ds.getState();for(let n of e)t(n.sessionId,!0)}).catch(()=>{})},[e,p?.name]),(0,q.useEffect)(()=>{let e=p?.name??`__global__`;l(t=>t.has(e)?t:new Set([...t,e]))},[p?.name]),(0,q.useEffect)(()=>{e===`authenticated`&&!p&&W.getState().switchProject(`__global__`)},[e,p]);let v=(0,q.useCallback)(()=>{t(`authenticated`)},[]);if(e===`checking`)return(0,J.jsx)(`div`,{className:`app-backdrop min-h-dvh flex items-center justify-center`,children:(0,J.jsx)(`div`,{className:`animate-pulse text-text-secondary text-sm`,children:`Loading...`})});if(e===`unauthenticated`)return(0,J.jsx)(Ch,{onSuccess:v});let y=p?.name??`__global__`;return(0,J.jsx)(Zr,{children:(0,J.jsxs)(`div`,{className:`app-backdrop h-dvh flex flex-col text-foreground overflow-hidden relative`,children:[(0,J.jsx)(`div`,{className:`fixed z-50 overflow-hidden pointer-events-none max-md:right-0 max-md:top-0 md:left-0 md:top-0 w-10 h-10`,children:(0,J.jsx)(`div`,{className:`absolute flex items-center justify-center max-md:rotate-45 max-md:right-[-18px] max-md:top-[4px] md:-rotate-45 md:left-[-18px] md:top-[4px] w-[60px] bg-warning text-white text-[6px] font-bold leading-none py-[2.5px] shadow-sm`,children:`BETA`})}),u&&(0,J.jsx)(`div`,{className:`md:hidden fixed left-0 top-0 z-50 px-2 py-0.5 bg-primary/80 text-primary-foreground text-[10px] font-medium rounded-br`,children:u}),(0,J.jsxs)(`div`,{className:`flex flex-1 overflow-hidden`,children:[(0,J.jsx)(fm,{}),(0,J.jsxs)(`div`,{className:`flex-1 flex flex-col overflow-hidden`,children:[[...c].map(e=>(0,J.jsx)(`div`,{className:V(`flex-1 overflow-hidden pb-12 md:pb-0`,y!==e&&`hidden`),children:(0,J.jsx)(gc,{projectName:e})},e)),(0,J.jsx)(Us,{}),(0,J.jsx)(Jm,{})]})]}),(0,J.jsx)(nh,{onMenuPress:()=>r(!0),onProjectsPress:()=>s(!0)}),(0,J.jsx)(uh,{isOpen:n,onClose:()=>{r(!1),a(void 0)},initialTab:i}),(0,J.jsx)(dh,{isOpen:o,onClose:()=>s(!1)}),(0,J.jsx)(Bw,{open:h,onClose:_,initialQuery:g}),(0,J.jsx)(Hw,{}),(0,J.jsx)(yh,{}),(0,J.jsx)(Ww,{}),(0,J.jsx)(Yw,{}),(0,J.jsx)(eT,{}),(0,J.jsx)(iT,{}),(0,J.jsx)(oT,{}),(0,J.jsx)(rT,{}),(0,J.jsx)(Xr,{position:`bottom-left`,closeButton:!0,toastOptions:{className:`bg-surface border-border text-foreground`}})]})})}if(typeof Node<`u`){let e=Node.prototype.removeChild;Node.prototype.removeChild=function(t){try{return e.call(this,t)}catch(e){if(e instanceof DOMException&&e.name===`NotFoundError`)return t;throw e}};let t=Node.prototype.insertBefore;Node.prototype.insertBefore=function(e,n){try{return t.call(this,e,n)}catch(t){if(t instanceof DOMException&&t.name===`NotFoundError`)return e;throw t}}}(0,Yr.createRoot)(document.getElementById(`root`)).render((0,J.jsx)(q.StrictMode,{children:(0,J.jsx)(hT,{})}));export{ac as $,zn as $t,ud as A,zr as At,hl as B,wr as Bt,Lf as C,Mt as Cn,Ya as Ct,Kd as D,Ur as Dt,af as E,Gr as Et,Sl as F,Pr as Ft,Nc as G,fr as Gt,Qc as H,br as Ht,ml as I,Mr as It,Tc as J,er as Jt,Pc as K,ir as Kt,_l as L,Ar as Lt,Vu as M,Lr as Mt,Al as N,Ir as Nt,Vd as O,Hr as Ot,Cl as P,Fr as Pt,rc as Q,K as Qt,vl as R,Dr as Rt,Wf as S,Pt as Sn,X as St,lf as T,Kr as Tt,Z as U,mr as Ut,fl as V,Cr as Vt,jc as W,pr as Wt,$s as X,Zn as Xt,Zs as Y,$n as Yt,ec as Z,Yn as Zt,Kf as _,Wt as _n,eo as _t,UC as a,bn as an,ds as at,zf as b,zt as bn,ao as bt,lS as c,fn as cn,$o as ct,Cm as d,tn as dn,rs as dt,Ln as en,ic as et,am as f,$t as fn,ts as ft,Ff as g,qt as gn,oo as gt,Rf as h,Jt as hn,lo as ht,vw as i,xn as in,Ss as it,id as j,Rr as jt,Hd as k,Br as kt,aS as l,un as ln,is as lt,Uf as m,Zt as mn,ho as mt,Gw as n,An as nn,ks as nt,HC as o,yn as on,ls as ot,Jf as p,Qt as pn,ss as pt,Mc as q,tr as qt,Uw as r,On as rn,Es as rt,LC as s,G as sn,cs as st,Zw as t,Nn as tn,Qs as tt,cS as u,rn as un,ns as ut,Gf as v,Ut as vn,no as vt,wf as w,Ja as wt,Bf as x,Ft as xn,ro as xt,Vf as y,Vt as yn,io as yt,gl as z,Er as zt};
|