@agentprojectcontext/apx 1.66.0 → 1.68.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/package.json +3 -2
  2. package/skills/apx/SKILL.md +3 -0
  3. package/src/core/agent/index.js +2 -0
  4. package/src/core/agent/judge.js +174 -0
  5. package/src/core/agent/model-router.js +107 -5
  6. package/src/core/agent/prompts/modes/code-build.md +1 -1
  7. package/src/core/agent/run-agent.js +149 -12
  8. package/src/core/agent/security.js +97 -0
  9. package/src/core/agent/stuck-detector.js +89 -0
  10. package/src/core/agent/super-agent.js +58 -17
  11. package/src/core/agent/tools/handlers/run-subagent.js +117 -0
  12. package/src/core/agent/tools/helpers.js +11 -1
  13. package/src/core/agent/tools/names.js +2 -0
  14. package/src/core/agent/tools/registry.js +10 -0
  15. package/src/core/artifacts/preview.js +392 -0
  16. package/src/core/artifacts/tunnel.js +169 -0
  17. package/src/core/config/index.js +61 -0
  18. package/src/core/config/redact.js +44 -0
  19. package/src/core/config/secret-values.js +132 -0
  20. package/src/core/engines/mock.js +15 -1
  21. package/src/core/logging.js +10 -3
  22. package/src/core/memory/compactor.js +65 -56
  23. package/src/core/memory/summarizer.js +125 -0
  24. package/src/core/stores/conversations-compactor.js +24 -31
  25. package/src/host/daemon/api/admin-config.js +5 -0
  26. package/src/host/daemon/api/artifact-preview.js +82 -0
  27. package/src/host/daemon/api/config.js +17 -5
  28. package/src/host/daemon/api/sessions.js +9 -0
  29. package/src/host/daemon/api/web.js +1 -1
  30. package/src/host/daemon/api.js +2 -0
  31. package/src/host/daemon/index.js +16 -1
  32. package/src/interfaces/acp/index.js +363 -0
  33. package/src/interfaces/acp/jsonrpc.js +180 -0
  34. package/src/interfaces/acp/session.js +205 -0
  35. package/src/interfaces/cli/commands/acp.js +10 -0
  36. package/src/interfaces/cli/commands/artifact.js +115 -0
  37. package/src/interfaces/cli/index.js +74 -0
  38. package/src/interfaces/web/dist/assets/index-D4BmWoDM.css +1 -0
  39. package/src/interfaces/web/dist/assets/index-vwd6yQVw.js +803 -0
  40. package/src/interfaces/web/dist/assets/index-vwd6yQVw.js.map +1 -0
  41. package/src/interfaces/web/dist/index.html +2 -2
  42. package/src/interfaces/web/package-lock.json +9 -9
  43. package/src/interfaces/web/src/components/code/CodeArtifactsTab.tsx +145 -2
  44. package/src/interfaces/web/src/components/config/ConfigTabsEditor.tsx +46 -31
  45. package/src/interfaces/web/src/components/config/project-config-sections.ts +9 -11
  46. package/src/interfaces/web/src/components/memory/MemoryBrowser.tsx +162 -0
  47. package/src/interfaces/web/src/components/settings/RoutingPanel.tsx +236 -0
  48. package/src/interfaces/web/src/i18n/en.ts +53 -0
  49. package/src/interfaces/web/src/i18n/es.ts +53 -0
  50. package/src/interfaces/web/src/lib/api/artifacts.ts +38 -0
  51. package/src/interfaces/web/src/lib/api/sessions.ts +2 -1
  52. package/src/interfaces/web/src/screens/ProjectScreen.tsx +50 -60
  53. package/src/interfaces/web/src/screens/base/ModelsTab.tsx +4 -2
  54. package/src/interfaces/web/src/screens/base/SessionsTab.tsx +11 -5
  55. package/src/interfaces/web/src/screens/project/ConfigTab.tsx +110 -25
  56. package/src/interfaces/web/src/screens/project/MemoriesTab.tsx +7 -128
  57. package/src/interfaces/web/src/screens/project/Overview.tsx +3 -2
  58. package/src/interfaces/web/src/types/daemon.ts +16 -0
  59. package/src/interfaces/web/dist/assets/index-BuII-tAi.css +0 -1
  60. package/src/interfaces/web/dist/assets/index-YmMRG--4.js +0 -778
  61. package/src/interfaces/web/dist/assets/index-YmMRG--4.js.map +0 -1
@@ -1,778 +0,0 @@
1
- function bA(e,t){for(var a=0;a<t.length;a++){const o=t[a];if(typeof o!="string"&&!Array.isArray(o)){for(const l in o)if(l!=="default"&&!(l in e)){const c=Object.getOwnPropertyDescriptor(o,l);c&&Object.defineProperty(e,l,c.get?c:{enumerable:!0,get:()=>o[l]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))o(l);new MutationObserver(l=>{for(const c of l)if(c.type==="childList")for(const d of c.addedNodes)d.tagName==="LINK"&&d.rel==="modulepreload"&&o(d)}).observe(document,{childList:!0,subtree:!0});function a(l){const c={};return l.integrity&&(c.integrity=l.integrity),l.referrerPolicy&&(c.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?c.credentials="include":l.crossOrigin==="anonymous"?c.credentials="omit":c.credentials="same-origin",c}function o(l){if(l.ep)return;l.ep=!0;const c=a(l);fetch(l.href,c)}})();function nb(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Vg={exports:{}},rc={};/**
2
- * @license React
3
- * react-jsx-runtime.production.js
4
- *
5
- * Copyright (c) Meta Platforms, Inc. and affiliates.
6
- *
7
- * This source code is licensed under the MIT license found in the
8
- * LICENSE file in the root directory of this source tree.
9
- */var Z1;function _A(){if(Z1)return rc;Z1=1;var e=Symbol.for("react.transitional.element"),t=Symbol.for("react.fragment");function a(o,l,c){var d=null;if(c!==void 0&&(d=""+c),l.key!==void 0&&(d=""+l.key),"key"in l){c={};for(var p in l)p!=="key"&&(c[p]=l[p])}else c=l;return l=c.ref,{$$typeof:e,type:o,key:d,ref:l!==void 0?l:null,props:c}}return rc.Fragment=t,rc.jsx=a,rc.jsxs=a,rc}var J1;function vA(){return J1||(J1=1,Vg.exports=_A()),Vg.exports}var s=vA(),qg={exports:{}},ct={};/**
10
- * @license React
11
- * react.production.js
12
- *
13
- * Copyright (c) Meta Platforms, Inc. and affiliates.
14
- *
15
- * This source code is licensed under the MIT license found in the
16
- * LICENSE file in the root directory of this source tree.
17
- */var ej;function yA(){if(ej)return ct;ej=1;var e=Symbol.for("react.transitional.element"),t=Symbol.for("react.portal"),a=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),l=Symbol.for("react.profiler"),c=Symbol.for("react.consumer"),d=Symbol.for("react.context"),p=Symbol.for("react.forward_ref"),m=Symbol.for("react.suspense"),g=Symbol.for("react.memo"),h=Symbol.for("react.lazy"),b=Symbol.for("react.activity"),_=Symbol.iterator;function j(I){return I===null||typeof I!="object"?null:(I=_&&I[_]||I["@@iterator"],typeof I=="function"?I:null)}var E={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},k=Object.assign,y={};function w(I,X,Z){this.props=I,this.context=X,this.refs=y,this.updater=Z||E}w.prototype.isReactComponent={},w.prototype.setState=function(I,X){if(typeof I!="object"&&typeof I!="function"&&I!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,I,X,"setState")},w.prototype.forceUpdate=function(I){this.updater.enqueueForceUpdate(this,I,"forceUpdate")};function S(){}S.prototype=w.prototype;function N(I,X,Z){this.props=I,this.context=X,this.refs=y,this.updater=Z||E}var R=N.prototype=new S;R.constructor=N,k(R,w.prototype),R.isPureReactComponent=!0;var A=Array.isArray;function T(){}var O={H:null,A:null,T:null,S:null},z=Object.prototype.hasOwnProperty;function U(I,X,Z){var te=Z.ref;return{$$typeof:e,type:I,key:X,ref:te!==void 0?te:null,props:Z}}function P(I,X){return U(I.type,X,I.props)}function B(I){return typeof I=="object"&&I!==null&&I.$$typeof===e}function D(I){var X={"=":"=0",":":"=2"};return"$"+I.replace(/[=:]/g,function(Z){return X[Z]})}var L=/\/+/g;function $(I,X){return typeof I=="object"&&I!==null&&I.key!=null?D(""+I.key):X.toString(36)}function V(I){switch(I.status){case"fulfilled":return I.value;case"rejected":throw I.reason;default:switch(typeof I.status=="string"?I.then(T,T):(I.status="pending",I.then(function(X){I.status==="pending"&&(I.status="fulfilled",I.value=X)},function(X){I.status==="pending"&&(I.status="rejected",I.reason=X)})),I.status){case"fulfilled":return I.value;case"rejected":throw I.reason}}throw I}function H(I,X,Z,te,fe){var ee=typeof I;(ee==="undefined"||ee==="boolean")&&(I=null);var re=!1;if(I===null)re=!0;else switch(ee){case"bigint":case"string":case"number":re=!0;break;case"object":switch(I.$$typeof){case e:case t:re=!0;break;case h:return re=I._init,H(re(I._payload),X,Z,te,fe)}}if(re)return fe=fe(I),re=te===""?"."+$(I,0):te,A(fe)?(Z="",re!=null&&(Z=re.replace(L,"$&/")+"/"),H(fe,X,Z,"",function(Me){return Me})):fe!=null&&(B(fe)&&(fe=P(fe,Z+(fe.key==null||I&&I.key===fe.key?"":(""+fe.key).replace(L,"$&/")+"/")+re)),X.push(fe)),1;re=0;var le=te===""?".":te+":";if(A(I))for(var me=0;me<I.length;me++)te=I[me],ee=le+$(te,me),re+=H(te,X,Z,ee,fe);else if(me=j(I),typeof me=="function")for(I=me.call(I),me=0;!(te=I.next()).done;)te=te.value,ee=le+$(te,me++),re+=H(te,X,Z,ee,fe);else if(ee==="object"){if(typeof I.then=="function")return H(V(I),X,Z,te,fe);throw X=String(I),Error("Objects are not valid as a React child (found: "+(X==="[object Object]"?"object with keys {"+Object.keys(I).join(", ")+"}":X)+"). If you meant to render a collection of children, use an array instead.")}return re}function F(I,X,Z){if(I==null)return I;var te=[],fe=0;return H(I,te,"","",function(ee){return X.call(Z,ee,fe++)}),te}function Y(I){if(I._status===-1){var X=I._result;X=X(),X.then(function(Z){(I._status===0||I._status===-1)&&(I._status=1,I._result=Z)},function(Z){(I._status===0||I._status===-1)&&(I._status=2,I._result=Z)}),I._status===-1&&(I._status=0,I._result=X)}if(I._status===1)return I._result.default;throw I._result}var G=typeof reportError=="function"?reportError:function(I){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var X=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof I=="object"&&I!==null&&typeof I.message=="string"?String(I.message):String(I),error:I});if(!window.dispatchEvent(X))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",I);return}console.error(I)},K={map:F,forEach:function(I,X,Z){F(I,function(){X.apply(this,arguments)},Z)},count:function(I){var X=0;return F(I,function(){X++}),X},toArray:function(I){return F(I,function(X){return X})||[]},only:function(I){if(!B(I))throw Error("React.Children.only expected to receive a single React element child.");return I}};return ct.Activity=b,ct.Children=K,ct.Component=w,ct.Fragment=a,ct.Profiler=l,ct.PureComponent=N,ct.StrictMode=o,ct.Suspense=m,ct.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=O,ct.__COMPILER_RUNTIME={__proto__:null,c:function(I){return O.H.useMemoCache(I)}},ct.cache=function(I){return function(){return I.apply(null,arguments)}},ct.cacheSignal=function(){return null},ct.cloneElement=function(I,X,Z){if(I==null)throw Error("The argument must be a React element, but you passed "+I+".");var te=k({},I.props),fe=I.key;if(X!=null)for(ee in X.key!==void 0&&(fe=""+X.key),X)!z.call(X,ee)||ee==="key"||ee==="__self"||ee==="__source"||ee==="ref"&&X.ref===void 0||(te[ee]=X[ee]);var ee=arguments.length-2;if(ee===1)te.children=Z;else if(1<ee){for(var re=Array(ee),le=0;le<ee;le++)re[le]=arguments[le+2];te.children=re}return U(I.type,fe,te)},ct.createContext=function(I){return I={$$typeof:d,_currentValue:I,_currentValue2:I,_threadCount:0,Provider:null,Consumer:null},I.Provider=I,I.Consumer={$$typeof:c,_context:I},I},ct.createElement=function(I,X,Z){var te,fe={},ee=null;if(X!=null)for(te in X.key!==void 0&&(ee=""+X.key),X)z.call(X,te)&&te!=="key"&&te!=="__self"&&te!=="__source"&&(fe[te]=X[te]);var re=arguments.length-2;if(re===1)fe.children=Z;else if(1<re){for(var le=Array(re),me=0;me<re;me++)le[me]=arguments[me+2];fe.children=le}if(I&&I.defaultProps)for(te in re=I.defaultProps,re)fe[te]===void 0&&(fe[te]=re[te]);return U(I,ee,fe)},ct.createRef=function(){return{current:null}},ct.forwardRef=function(I){return{$$typeof:p,render:I}},ct.isValidElement=B,ct.lazy=function(I){return{$$typeof:h,_payload:{_status:-1,_result:I},_init:Y}},ct.memo=function(I,X){return{$$typeof:g,type:I,compare:X===void 0?null:X}},ct.startTransition=function(I){var X=O.T,Z={};O.T=Z;try{var te=I(),fe=O.S;fe!==null&&fe(Z,te),typeof te=="object"&&te!==null&&typeof te.then=="function"&&te.then(T,G)}catch(ee){G(ee)}finally{X!==null&&Z.types!==null&&(X.types=Z.types),O.T=X}},ct.unstable_useCacheRefresh=function(){return O.H.useCacheRefresh()},ct.use=function(I){return O.H.use(I)},ct.useActionState=function(I,X,Z){return O.H.useActionState(I,X,Z)},ct.useCallback=function(I,X){return O.H.useCallback(I,X)},ct.useContext=function(I){return O.H.useContext(I)},ct.useDebugValue=function(){},ct.useDeferredValue=function(I,X){return O.H.useDeferredValue(I,X)},ct.useEffect=function(I,X){return O.H.useEffect(I,X)},ct.useEffectEvent=function(I){return O.H.useEffectEvent(I)},ct.useId=function(){return O.H.useId()},ct.useImperativeHandle=function(I,X,Z){return O.H.useImperativeHandle(I,X,Z)},ct.useInsertionEffect=function(I,X){return O.H.useInsertionEffect(I,X)},ct.useLayoutEffect=function(I,X){return O.H.useLayoutEffect(I,X)},ct.useMemo=function(I,X){return O.H.useMemo(I,X)},ct.useOptimistic=function(I,X){return O.H.useOptimistic(I,X)},ct.useReducer=function(I,X,Z){return O.H.useReducer(I,X,Z)},ct.useRef=function(I){return O.H.useRef(I)},ct.useState=function(I){return O.H.useState(I)},ct.useSyncExternalStore=function(I,X,Z){return O.H.useSyncExternalStore(I,X,Z)},ct.useTransition=function(){return O.H.useTransition()},ct.version="19.2.7",ct}var tj;function eu(){return tj||(tj=1,qg.exports=yA()),qg.exports}var x=eu();const tu=nb(x),jA=bA({__proto__:null,default:tu},[x]);var Fg={exports:{}},oc={},Gg={exports:{}},Yg={};/**
18
- * @license React
19
- * scheduler.production.js
20
- *
21
- * Copyright (c) Meta Platforms, Inc. and affiliates.
22
- *
23
- * This source code is licensed under the MIT license found in the
24
- * LICENSE file in the root directory of this source tree.
25
- */var nj;function kA(){return nj||(nj=1,(function(e){function t(H,F){var Y=H.length;H.push(F);e:for(;0<Y;){var G=Y-1>>>1,K=H[G];if(0<l(K,F))H[G]=F,H[Y]=K,Y=G;else break e}}function a(H){return H.length===0?null:H[0]}function o(H){if(H.length===0)return null;var F=H[0],Y=H.pop();if(Y!==F){H[0]=Y;e:for(var G=0,K=H.length,I=K>>>1;G<I;){var X=2*(G+1)-1,Z=H[X],te=X+1,fe=H[te];if(0>l(Z,Y))te<K&&0>l(fe,Z)?(H[G]=fe,H[te]=Y,G=te):(H[G]=Z,H[X]=Y,G=X);else if(te<K&&0>l(fe,Y))H[G]=fe,H[te]=Y,G=te;else break e}}return F}function l(H,F){var Y=H.sortIndex-F.sortIndex;return Y!==0?Y:H.id-F.id}if(e.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var c=performance;e.unstable_now=function(){return c.now()}}else{var d=Date,p=d.now();e.unstable_now=function(){return d.now()-p}}var m=[],g=[],h=1,b=null,_=3,j=!1,E=!1,k=!1,y=!1,w=typeof setTimeout=="function"?setTimeout:null,S=typeof clearTimeout=="function"?clearTimeout:null,N=typeof setImmediate<"u"?setImmediate:null;function R(H){for(var F=a(g);F!==null;){if(F.callback===null)o(g);else if(F.startTime<=H)o(g),F.sortIndex=F.expirationTime,t(m,F);else break;F=a(g)}}function A(H){if(k=!1,R(H),!E)if(a(m)!==null)E=!0,T||(T=!0,D());else{var F=a(g);F!==null&&V(A,F.startTime-H)}}var T=!1,O=-1,z=5,U=-1;function P(){return y?!0:!(e.unstable_now()-U<z)}function B(){if(y=!1,T){var H=e.unstable_now();U=H;var F=!0;try{e:{E=!1,k&&(k=!1,S(O),O=-1),j=!0;var Y=_;try{t:{for(R(H),b=a(m);b!==null&&!(b.expirationTime>H&&P());){var G=b.callback;if(typeof G=="function"){b.callback=null,_=b.priorityLevel;var K=G(b.expirationTime<=H);if(H=e.unstable_now(),typeof K=="function"){b.callback=K,R(H),F=!0;break t}b===a(m)&&o(m),R(H)}else o(m);b=a(m)}if(b!==null)F=!0;else{var I=a(g);I!==null&&V(A,I.startTime-H),F=!1}}break e}finally{b=null,_=Y,j=!1}F=void 0}}finally{F?D():T=!1}}}var D;if(typeof N=="function")D=function(){N(B)};else if(typeof MessageChannel<"u"){var L=new MessageChannel,$=L.port2;L.port1.onmessage=B,D=function(){$.postMessage(null)}}else D=function(){w(B,0)};function V(H,F){O=w(function(){H(e.unstable_now())},F)}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(H){H.callback=null},e.unstable_forceFrameRate=function(H){0>H||125<H?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):z=0<H?Math.floor(1e3/H):5},e.unstable_getCurrentPriorityLevel=function(){return _},e.unstable_next=function(H){switch(_){case 1:case 2:case 3:var F=3;break;default:F=_}var Y=_;_=F;try{return H()}finally{_=Y}},e.unstable_requestPaint=function(){y=!0},e.unstable_runWithPriority=function(H,F){switch(H){case 1:case 2:case 3:case 4:case 5:break;default:H=3}var Y=_;_=H;try{return F()}finally{_=Y}},e.unstable_scheduleCallback=function(H,F,Y){var G=e.unstable_now();switch(typeof Y=="object"&&Y!==null?(Y=Y.delay,Y=typeof Y=="number"&&0<Y?G+Y:G):Y=G,H){case 1:var K=-1;break;case 2:K=250;break;case 5:K=1073741823;break;case 4:K=1e4;break;default:K=5e3}return K=Y+K,H={id:h++,callback:F,priorityLevel:H,startTime:Y,expirationTime:K,sortIndex:-1},Y>G?(H.sortIndex=Y,t(g,H),a(m)===null&&H===a(g)&&(k?(S(O),O=-1):k=!0,V(A,Y-G))):(H.sortIndex=K,t(m,H),E||j||(E=!0,T||(T=!0,D()))),H},e.unstable_shouldYield=P,e.unstable_wrapCallback=function(H){var F=_;return function(){var Y=_;_=F;try{return H.apply(this,arguments)}finally{_=Y}}}})(Yg)),Yg}var sj;function wA(){return sj||(sj=1,Gg.exports=kA()),Gg.exports}var Kg={exports:{}},Fn={};/**
26
- * @license React
27
- * react-dom.production.js
28
- *
29
- * Copyright (c) Meta Platforms, Inc. and affiliates.
30
- *
31
- * This source code is licensed under the MIT license found in the
32
- * LICENSE file in the root directory of this source tree.
33
- */var aj;function SA(){if(aj)return Fn;aj=1;var e=eu();function t(m){var g="https://react.dev/errors/"+m;if(1<arguments.length){g+="?args[]="+encodeURIComponent(arguments[1]);for(var h=2;h<arguments.length;h++)g+="&args[]="+encodeURIComponent(arguments[h])}return"Minified React error #"+m+"; visit "+g+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function a(){}var o={d:{f:a,r:function(){throw Error(t(522))},D:a,C:a,L:a,m:a,X:a,S:a,M:a},p:0,findDOMNode:null},l=Symbol.for("react.portal");function c(m,g,h){var b=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:l,key:b==null?null:""+b,children:m,containerInfo:g,implementation:h}}var d=e.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;function p(m,g){if(m==="font")return"";if(typeof g=="string")return g==="use-credentials"?g:""}return Fn.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=o,Fn.createPortal=function(m,g){var h=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!g||g.nodeType!==1&&g.nodeType!==9&&g.nodeType!==11)throw Error(t(299));return c(m,g,null,h)},Fn.flushSync=function(m){var g=d.T,h=o.p;try{if(d.T=null,o.p=2,m)return m()}finally{d.T=g,o.p=h,o.d.f()}},Fn.preconnect=function(m,g){typeof m=="string"&&(g?(g=g.crossOrigin,g=typeof g=="string"?g==="use-credentials"?g:"":void 0):g=null,o.d.C(m,g))},Fn.prefetchDNS=function(m){typeof m=="string"&&o.d.D(m)},Fn.preinit=function(m,g){if(typeof m=="string"&&g&&typeof g.as=="string"){var h=g.as,b=p(h,g.crossOrigin),_=typeof g.integrity=="string"?g.integrity:void 0,j=typeof g.fetchPriority=="string"?g.fetchPriority:void 0;h==="style"?o.d.S(m,typeof g.precedence=="string"?g.precedence:void 0,{crossOrigin:b,integrity:_,fetchPriority:j}):h==="script"&&o.d.X(m,{crossOrigin:b,integrity:_,fetchPriority:j,nonce:typeof g.nonce=="string"?g.nonce:void 0})}},Fn.preinitModule=function(m,g){if(typeof m=="string")if(typeof g=="object"&&g!==null){if(g.as==null||g.as==="script"){var h=p(g.as,g.crossOrigin);o.d.M(m,{crossOrigin:h,integrity:typeof g.integrity=="string"?g.integrity:void 0,nonce:typeof g.nonce=="string"?g.nonce:void 0})}}else g==null&&o.d.M(m)},Fn.preload=function(m,g){if(typeof m=="string"&&typeof g=="object"&&g!==null&&typeof g.as=="string"){var h=g.as,b=p(h,g.crossOrigin);o.d.L(m,h,{crossOrigin:b,integrity:typeof g.integrity=="string"?g.integrity:void 0,nonce:typeof g.nonce=="string"?g.nonce:void 0,type:typeof g.type=="string"?g.type:void 0,fetchPriority:typeof g.fetchPriority=="string"?g.fetchPriority:void 0,referrerPolicy:typeof g.referrerPolicy=="string"?g.referrerPolicy:void 0,imageSrcSet:typeof g.imageSrcSet=="string"?g.imageSrcSet:void 0,imageSizes:typeof g.imageSizes=="string"?g.imageSizes:void 0,media:typeof g.media=="string"?g.media:void 0})}},Fn.preloadModule=function(m,g){if(typeof m=="string")if(g){var h=p(g.as,g.crossOrigin);o.d.m(m,{as:typeof g.as=="string"&&g.as!=="script"?g.as:void 0,crossOrigin:h,integrity:typeof g.integrity=="string"?g.integrity:void 0})}else o.d.m(m)},Fn.requestFormReset=function(m){o.d.r(m)},Fn.unstable_batchedUpdates=function(m,g){return m(g)},Fn.useFormState=function(m,g,h){return d.H.useFormState(m,g,h)},Fn.useFormStatus=function(){return d.H.useHostTransitionStatus()},Fn.version="19.2.7",Fn}var rj;function oS(){if(rj)return Kg.exports;rj=1;function e(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(t){console.error(t)}}return e(),Kg.exports=SA(),Kg.exports}/**
34
- * @license React
35
- * react-dom-client.production.js
36
- *
37
- * Copyright (c) Meta Platforms, Inc. and affiliates.
38
- *
39
- * This source code is licensed under the MIT license found in the
40
- * LICENSE file in the root directory of this source tree.
41
- */var oj;function CA(){if(oj)return oc;oj=1;var e=wA(),t=eu(),a=oS();function o(n){var r="https://react.dev/errors/"+n;if(1<arguments.length){r+="?args[]="+encodeURIComponent(arguments[1]);for(var i=2;i<arguments.length;i++)r+="&args[]="+encodeURIComponent(arguments[i])}return"Minified React error #"+n+"; visit "+r+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function l(n){return!(!n||n.nodeType!==1&&n.nodeType!==9&&n.nodeType!==11)}function c(n){var r=n,i=n;if(n.alternate)for(;r.return;)r=r.return;else{n=r;do r=n,(r.flags&4098)!==0&&(i=r.return),n=r.return;while(n)}return r.tag===3?i:null}function d(n){if(n.tag===13){var r=n.memoizedState;if(r===null&&(n=n.alternate,n!==null&&(r=n.memoizedState)),r!==null)return r.dehydrated}return null}function p(n){if(n.tag===31){var r=n.memoizedState;if(r===null&&(n=n.alternate,n!==null&&(r=n.memoizedState)),r!==null)return r.dehydrated}return null}function m(n){if(c(n)!==n)throw Error(o(188))}function g(n){var r=n.alternate;if(!r){if(r=c(n),r===null)throw Error(o(188));return r!==n?null:n}for(var i=n,f=r;;){var v=i.return;if(v===null)break;var C=v.alternate;if(C===null){if(f=v.return,f!==null){i=f;continue}break}if(v.child===C.child){for(C=v.child;C;){if(C===i)return m(v),n;if(C===f)return m(v),r;C=C.sibling}throw Error(o(188))}if(i.return!==f.return)i=v,f=C;else{for(var M=!1,q=v.child;q;){if(q===i){M=!0,i=v,f=C;break}if(q===f){M=!0,f=v,i=C;break}q=q.sibling}if(!M){for(q=C.child;q;){if(q===i){M=!0,i=C,f=v;break}if(q===f){M=!0,f=C,i=v;break}q=q.sibling}if(!M)throw Error(o(189))}}if(i.alternate!==f)throw Error(o(190))}if(i.tag!==3)throw Error(o(188));return i.stateNode.current===i?n:r}function h(n){var r=n.tag;if(r===5||r===26||r===27||r===6)return n;for(n=n.child;n!==null;){if(r=h(n),r!==null)return r;n=n.sibling}return null}var b=Object.assign,_=Symbol.for("react.element"),j=Symbol.for("react.transitional.element"),E=Symbol.for("react.portal"),k=Symbol.for("react.fragment"),y=Symbol.for("react.strict_mode"),w=Symbol.for("react.profiler"),S=Symbol.for("react.consumer"),N=Symbol.for("react.context"),R=Symbol.for("react.forward_ref"),A=Symbol.for("react.suspense"),T=Symbol.for("react.suspense_list"),O=Symbol.for("react.memo"),z=Symbol.for("react.lazy"),U=Symbol.for("react.activity"),P=Symbol.for("react.memo_cache_sentinel"),B=Symbol.iterator;function D(n){return n===null||typeof n!="object"?null:(n=B&&n[B]||n["@@iterator"],typeof n=="function"?n:null)}var L=Symbol.for("react.client.reference");function $(n){if(n==null)return null;if(typeof n=="function")return n.$$typeof===L?null:n.displayName||n.name||null;if(typeof n=="string")return n;switch(n){case k:return"Fragment";case w:return"Profiler";case y:return"StrictMode";case A:return"Suspense";case T:return"SuspenseList";case U:return"Activity"}if(typeof n=="object")switch(n.$$typeof){case E:return"Portal";case N:return n.displayName||"Context";case S:return(n._context.displayName||"Context")+".Consumer";case R:var r=n.render;return n=n.displayName,n||(n=r.displayName||r.name||"",n=n!==""?"ForwardRef("+n+")":"ForwardRef"),n;case O:return r=n.displayName||null,r!==null?r:$(n.type)||"Memo";case z:r=n._payload,n=n._init;try{return $(n(r))}catch{}}return null}var V=Array.isArray,H=t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,F=a.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,Y={pending:!1,data:null,method:null,action:null},G=[],K=-1;function I(n){return{current:n}}function X(n){0>K||(n.current=G[K],G[K]=null,K--)}function Z(n,r){K++,G[K]=n.current,n.current=r}var te=I(null),fe=I(null),ee=I(null),re=I(null);function le(n,r){switch(Z(ee,r),Z(fe,n),Z(te,null),r.nodeType){case 9:case 11:n=(n=r.documentElement)&&(n=n.namespaceURI)?y1(n):0;break;default:if(n=r.tagName,r=r.namespaceURI)r=y1(r),n=j1(r,n);else switch(n){case"svg":n=1;break;case"math":n=2;break;default:n=0}}X(te),Z(te,n)}function me(){X(te),X(fe),X(ee)}function Me(n){n.memoizedState!==null&&Z(re,n);var r=te.current,i=j1(r,n.type);r!==i&&(Z(fe,n),Z(te,i))}function de(n){fe.current===n&&(X(te),X(fe)),re.current===n&&(X(re),tc._currentValue=Y)}var ge,Ce;function we(n){if(ge===void 0)try{throw Error()}catch(i){var r=i.stack.trim().match(/\n( *(at )?)/);ge=r&&r[1]||"",Ce=-1<i.stack.indexOf(`
42
- at`)?" (<anonymous>)":-1<i.stack.indexOf("@")?"@unknown:0:0":""}return`
43
- `+ge+n+Ce}var Be=!1;function Ve(n,r){if(!n||Be)return"";Be=!0;var i=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var f={DetermineComponentFrameRoot:function(){try{if(r){var ke=function(){throw Error()};if(Object.defineProperty(ke.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(ke,[])}catch(pe){var ce=pe}Reflect.construct(n,[],ke)}else{try{ke.call()}catch(pe){ce=pe}n.call(ke.prototype)}}else{try{throw Error()}catch(pe){ce=pe}(ke=n())&&typeof ke.catch=="function"&&ke.catch(function(){})}}catch(pe){if(pe&&ce&&typeof pe.stack=="string")return[pe.stack,ce.stack]}return[null,null]}};f.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var v=Object.getOwnPropertyDescriptor(f.DetermineComponentFrameRoot,"name");v&&v.configurable&&Object.defineProperty(f.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var C=f.DetermineComponentFrameRoot(),M=C[0],q=C[1];if(M&&q){var Q=M.split(`
44
- `),ie=q.split(`
45
- `);for(v=f=0;f<Q.length&&!Q[f].includes("DetermineComponentFrameRoot");)f++;for(;v<ie.length&&!ie[v].includes("DetermineComponentFrameRoot");)v++;if(f===Q.length||v===ie.length)for(f=Q.length-1,v=ie.length-1;1<=f&&0<=v&&Q[f]!==ie[v];)v--;for(;1<=f&&0<=v;f--,v--)if(Q[f]!==ie[v]){if(f!==1||v!==1)do if(f--,v--,0>v||Q[f]!==ie[v]){var xe=`
46
- `+Q[f].replace(" at new "," at ");return n.displayName&&xe.includes("<anonymous>")&&(xe=xe.replace("<anonymous>",n.displayName)),xe}while(1<=f&&0<=v);break}}}finally{Be=!1,Error.prepareStackTrace=i}return(i=n?n.displayName||n.name:"")?we(i):""}function Se(n,r){switch(n.tag){case 26:case 27:case 5:return we(n.type);case 16:return we("Lazy");case 13:return n.child!==r&&r!==null?we("Suspense Fallback"):we("Suspense");case 19:return we("SuspenseList");case 0:case 15:return Ve(n.type,!1);case 11:return Ve(n.type.render,!1);case 1:return Ve(n.type,!0);case 31:return we("Activity");default:return""}}function Te(n){try{var r="",i=null;do r+=Se(n,i),i=n,n=n.return;while(n);return r}catch(f){return`
47
- Error generating stack: `+f.message+`
48
- `+f.stack}}var je=Object.prototype.hasOwnProperty,Ee=e.unstable_scheduleCallback,De=e.unstable_cancelCallback,Le=e.unstable_shouldYield,Ie=e.unstable_requestPaint,ue=e.unstable_now,ye=e.unstable_getCurrentPriorityLevel,Ge=e.unstable_ImmediatePriority,Re=e.unstable_UserBlockingPriority,Oe=e.unstable_NormalPriority,tt=e.unstable_LowPriority,ot=e.unstable_IdlePriority,vt=e.log,Mt=e.unstable_setDisableYieldValue,lt=null,Rt=null;function _e(n){if(typeof vt=="function"&&Mt(n),Rt&&typeof Rt.setStrictMode=="function")try{Rt.setStrictMode(lt,n)}catch{}}var Pe=Math.clz32?Math.clz32:Qe,Xe=Math.log,it=Math.LN2;function Qe(n){return n>>>=0,n===0?32:31-(Xe(n)/it|0)|0}var mt=256,Ot=262144,Zt=4194304;function Qt(n){var r=n&42;if(r!==0)return r;switch(n&-n){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 n&261888;case 262144:case 524288:case 1048576:case 2097152:return n&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return n&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return n}}function Jt(n,r,i){var f=n.pendingLanes;if(f===0)return 0;var v=0,C=n.suspendedLanes,M=n.pingedLanes;n=n.warmLanes;var q=f&134217727;return q!==0?(f=q&~C,f!==0?v=Qt(f):(M&=q,M!==0?v=Qt(M):i||(i=q&~n,i!==0&&(v=Qt(i))))):(q=f&~C,q!==0?v=Qt(q):M!==0?v=Qt(M):i||(i=f&~n,i!==0&&(v=Qt(i)))),v===0?0:r!==0&&r!==v&&(r&C)===0&&(C=v&-v,i=r&-r,C>=i||C===32&&(i&4194048)!==0)?r:v}function mn(n,r){return(n.pendingLanes&~(n.suspendedLanes&~n.pingedLanes)&r)===0}function as(n,r){switch(n){case 1:case 2:case 4:case 8:case 64:return r+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 r+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 ms(){var n=Zt;return Zt<<=1,(Zt&62914560)===0&&(Zt=4194304),n}function Ss(n){for(var r=[],i=0;31>i;i++)r.push(n);return r}function gn(n,r){n.pendingLanes|=r,r!==268435456&&(n.suspendedLanes=0,n.pingedLanes=0,n.warmLanes=0)}function Cs(n,r,i,f,v,C){var M=n.pendingLanes;n.pendingLanes=i,n.suspendedLanes=0,n.pingedLanes=0,n.warmLanes=0,n.expiredLanes&=i,n.entangledLanes&=i,n.errorRecoveryDisabledLanes&=i,n.shellSuspendCounter=0;var q=n.entanglements,Q=n.expirationTimes,ie=n.hiddenUpdates;for(i=M&~i;0<i;){var xe=31-Pe(i),ke=1<<xe;q[xe]=0,Q[xe]=-1;var ce=ie[xe];if(ce!==null)for(ie[xe]=null,xe=0;xe<ce.length;xe++){var pe=ce[xe];pe!==null&&(pe.lane&=-536870913)}i&=~ke}f!==0&&Sa(n,f,0),C!==0&&v===0&&n.tag!==0&&(n.suspendedLanes|=C&~(M&~r))}function Sa(n,r,i){n.pendingLanes|=r,n.suspendedLanes&=~r;var f=31-Pe(r);n.entangledLanes|=r,n.entanglements[f]=n.entanglements[f]|1073741824|i&261930}function qs(n,r){var i=n.entangledLanes|=r;for(n=n.entanglements;i;){var f=31-Pe(i),v=1<<f;v&r|n[f]&r&&(n[f]|=r),i&=~v}}function Ca(n,r){var i=r&-r;return i=(i&42)!==0?1:dt(i),(i&(n.suspendedLanes|r))!==0?0:i}function dt(n){switch(n){case 2:n=1;break;case 8:n=4;break;case 32:n=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:n=128;break;case 268435456:n=134217728;break;default:n=0}return n}function Bt(n){return n&=-n,2<n?8<n?(n&134217727)!==0?32:268435456:8:2}function hn(){var n=F.p;return n!==0?n:(n=window.event,n===void 0?32:F1(n.type))}function En(n,r){var i=F.p;try{return F.p=n,r()}finally{F.p=i}}var wn=Math.random().toString(36).slice(2),Yt="__reactFiber$"+wn,Ln="__reactProps$"+wn,na="__reactContainer$"+wn,gi="__reactEvents$"+wn,gu="__reactListeners$"+wn,iR="__reactHandles$"+wn,iv="__reactResources$"+wn,hi="__reactMarker$"+wn;function Dp(n){delete n[Yt],delete n[Ln],delete n[gi],delete n[gu],delete n[iR]}function Ko(n){var r=n[Yt];if(r)return r;for(var i=n.parentNode;i;){if(r=i[na]||i[Yt]){if(i=r.alternate,r.child!==null||i!==null&&i.child!==null)for(n=R1(n);n!==null;){if(i=n[Yt])return i;n=R1(n)}return r}n=i,i=n.parentNode}return null}function Xo(n){if(n=n[Yt]||n[na]){var r=n.tag;if(r===5||r===6||r===13||r===31||r===26||r===27||r===3)return n}return null}function xi(n){var r=n.tag;if(r===5||r===26||r===27||r===6)return n.stateNode;throw Error(o(33))}function Qo(n){var r=n[iv];return r||(r=n[iv]={hoistableStyles:new Map,hoistableScripts:new Map}),r}function Rn(n){n[hi]=!0}var cv=new Set,uv={};function Jr(n,r){Wo(n,r),Wo(n+"Capture",r)}function Wo(n,r){for(uv[n]=r,n=0;n<r.length;n++)cv.add(r[n])}var cR=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]*$"),dv={},fv={};function uR(n){return je.call(fv,n)?!0:je.call(dv,n)?!1:cR.test(n)?fv[n]=!0:(dv[n]=!0,!1)}function hu(n,r,i){if(uR(r))if(i===null)n.removeAttribute(r);else{switch(typeof i){case"undefined":case"function":case"symbol":n.removeAttribute(r);return;case"boolean":var f=r.toLowerCase().slice(0,5);if(f!=="data-"&&f!=="aria-"){n.removeAttribute(r);return}}n.setAttribute(r,""+i)}}function xu(n,r,i){if(i===null)n.removeAttribute(r);else{switch(typeof i){case"undefined":case"function":case"symbol":case"boolean":n.removeAttribute(r);return}n.setAttribute(r,""+i)}}function Na(n,r,i,f){if(f===null)n.removeAttribute(i);else{switch(typeof f){case"undefined":case"function":case"symbol":case"boolean":n.removeAttribute(i);return}n.setAttributeNS(r,i,""+f)}}function Ns(n){switch(typeof n){case"bigint":case"boolean":case"number":case"string":case"undefined":return n;case"object":return n;default:return""}}function pv(n){var r=n.type;return(n=n.nodeName)&&n.toLowerCase()==="input"&&(r==="checkbox"||r==="radio")}function dR(n,r,i){var f=Object.getOwnPropertyDescriptor(n.constructor.prototype,r);if(!n.hasOwnProperty(r)&&typeof f<"u"&&typeof f.get=="function"&&typeof f.set=="function"){var v=f.get,C=f.set;return Object.defineProperty(n,r,{configurable:!0,get:function(){return v.call(this)},set:function(M){i=""+M,C.call(this,M)}}),Object.defineProperty(n,r,{enumerable:f.enumerable}),{getValue:function(){return i},setValue:function(M){i=""+M},stopTracking:function(){n._valueTracker=null,delete n[r]}}}}function Pp(n){if(!n._valueTracker){var r=pv(n)?"checked":"value";n._valueTracker=dR(n,r,""+n[r])}}function mv(n){if(!n)return!1;var r=n._valueTracker;if(!r)return!0;var i=r.getValue(),f="";return n&&(f=pv(n)?n.checked?"true":"false":n.value),n=f,n!==i?(r.setValue(n),!0):!1}function bu(n){if(n=n||(typeof document<"u"?document:void 0),typeof n>"u")return null;try{return n.activeElement||n.body}catch{return n.body}}var fR=/[\n"\\]/g;function Es(n){return n.replace(fR,function(r){return"\\"+r.charCodeAt(0).toString(16)+" "})}function Lp(n,r,i,f,v,C,M,q){n.name="",M!=null&&typeof M!="function"&&typeof M!="symbol"&&typeof M!="boolean"?n.type=M:n.removeAttribute("type"),r!=null?M==="number"?(r===0&&n.value===""||n.value!=r)&&(n.value=""+Ns(r)):n.value!==""+Ns(r)&&(n.value=""+Ns(r)):M!=="submit"&&M!=="reset"||n.removeAttribute("value"),r!=null?Ip(n,M,Ns(r)):i!=null?Ip(n,M,Ns(i)):f!=null&&n.removeAttribute("value"),v==null&&C!=null&&(n.defaultChecked=!!C),v!=null&&(n.checked=v&&typeof v!="function"&&typeof v!="symbol"),q!=null&&typeof q!="function"&&typeof q!="symbol"&&typeof q!="boolean"?n.name=""+Ns(q):n.removeAttribute("name")}function gv(n,r,i,f,v,C,M,q){if(C!=null&&typeof C!="function"&&typeof C!="symbol"&&typeof C!="boolean"&&(n.type=C),r!=null||i!=null){if(!(C!=="submit"&&C!=="reset"||r!=null)){Pp(n);return}i=i!=null?""+Ns(i):"",r=r!=null?""+Ns(r):i,q||r===n.value||(n.value=r),n.defaultValue=r}f=f??v,f=typeof f!="function"&&typeof f!="symbol"&&!!f,n.checked=q?n.checked:!!f,n.defaultChecked=!!f,M!=null&&typeof M!="function"&&typeof M!="symbol"&&typeof M!="boolean"&&(n.name=M),Pp(n)}function Ip(n,r,i){r==="number"&&bu(n.ownerDocument)===n||n.defaultValue===""+i||(n.defaultValue=""+i)}function Zo(n,r,i,f){if(n=n.options,r){r={};for(var v=0;v<i.length;v++)r["$"+i[v]]=!0;for(i=0;i<n.length;i++)v=r.hasOwnProperty("$"+n[i].value),n[i].selected!==v&&(n[i].selected=v),v&&f&&(n[i].defaultSelected=!0)}else{for(i=""+Ns(i),r=null,v=0;v<n.length;v++){if(n[v].value===i){n[v].selected=!0,f&&(n[v].defaultSelected=!0);return}r!==null||n[v].disabled||(r=n[v])}r!==null&&(r.selected=!0)}}function hv(n,r,i){if(r!=null&&(r=""+Ns(r),r!==n.value&&(n.value=r),i==null)){n.defaultValue!==r&&(n.defaultValue=r);return}n.defaultValue=i!=null?""+Ns(i):""}function xv(n,r,i,f){if(r==null){if(f!=null){if(i!=null)throw Error(o(92));if(V(f)){if(1<f.length)throw Error(o(93));f=f[0]}i=f}i==null&&(i=""),r=i}i=Ns(r),n.defaultValue=i,f=n.textContent,f===i&&f!==""&&f!==null&&(n.value=f),Pp(n)}function Jo(n,r){if(r){var i=n.firstChild;if(i&&i===n.lastChild&&i.nodeType===3){i.nodeValue=r;return}}n.textContent=r}var pR=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 bv(n,r,i){var f=r.indexOf("--")===0;i==null||typeof i=="boolean"||i===""?f?n.setProperty(r,""):r==="float"?n.cssFloat="":n[r]="":f?n.setProperty(r,i):typeof i!="number"||i===0||pR.has(r)?r==="float"?n.cssFloat=i:n[r]=(""+i).trim():n[r]=i+"px"}function _v(n,r,i){if(r!=null&&typeof r!="object")throw Error(o(62));if(n=n.style,i!=null){for(var f in i)!i.hasOwnProperty(f)||r!=null&&r.hasOwnProperty(f)||(f.indexOf("--")===0?n.setProperty(f,""):f==="float"?n.cssFloat="":n[f]="");for(var v in r)f=r[v],r.hasOwnProperty(v)&&i[v]!==f&&bv(n,v,f)}else for(var C in r)r.hasOwnProperty(C)&&bv(n,C,r[C])}function Bp(n){if(n.indexOf("-")===-1)return!1;switch(n){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 mR=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"]]),gR=/^[\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 _u(n){return gR.test(""+n)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":n}function Ea(){}var Up=null;function $p(n){return n=n.target||n.srcElement||window,n.correspondingUseElement&&(n=n.correspondingUseElement),n.nodeType===3?n.parentNode:n}var el=null,tl=null;function vv(n){var r=Xo(n);if(r&&(n=r.stateNode)){var i=n[Ln]||null;e:switch(n=r.stateNode,r.type){case"input":if(Lp(n,i.value,i.defaultValue,i.defaultValue,i.checked,i.defaultChecked,i.type,i.name),r=i.name,i.type==="radio"&&r!=null){for(i=n;i.parentNode;)i=i.parentNode;for(i=i.querySelectorAll('input[name="'+Es(""+r)+'"][type="radio"]'),r=0;r<i.length;r++){var f=i[r];if(f!==n&&f.form===n.form){var v=f[Ln]||null;if(!v)throw Error(o(90));Lp(f,v.value,v.defaultValue,v.defaultValue,v.checked,v.defaultChecked,v.type,v.name)}}for(r=0;r<i.length;r++)f=i[r],f.form===n.form&&mv(f)}break e;case"textarea":hv(n,i.value,i.defaultValue);break e;case"select":r=i.value,r!=null&&Zo(n,!!i.multiple,r,!1)}}}var Hp=!1;function yv(n,r,i){if(Hp)return n(r,i);Hp=!0;try{var f=n(r);return f}finally{if(Hp=!1,(el!==null||tl!==null)&&(od(),el&&(r=el,n=tl,tl=el=null,vv(r),n)))for(r=0;r<n.length;r++)vv(n[r])}}function bi(n,r){var i=n.stateNode;if(i===null)return null;var f=i[Ln]||null;if(f===null)return null;i=f[r];e:switch(r){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(f=!f.disabled)||(n=n.type,f=!(n==="button"||n==="input"||n==="select"||n==="textarea")),n=!f;break e;default:n=!1}if(n)return null;if(i&&typeof i!="function")throw Error(o(231,r,typeof i));return i}var Ra=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Vp=!1;if(Ra)try{var _i={};Object.defineProperty(_i,"passive",{get:function(){Vp=!0}}),window.addEventListener("test",_i,_i),window.removeEventListener("test",_i,_i)}catch{Vp=!1}var or=null,qp=null,vu=null;function jv(){if(vu)return vu;var n,r=qp,i=r.length,f,v="value"in or?or.value:or.textContent,C=v.length;for(n=0;n<i&&r[n]===v[n];n++);var M=i-n;for(f=1;f<=M&&r[i-f]===v[C-f];f++);return vu=v.slice(n,1<f?1-f:void 0)}function yu(n){var r=n.keyCode;return"charCode"in n?(n=n.charCode,n===0&&r===13&&(n=13)):n=r,n===10&&(n=13),32<=n||n===13?n:0}function ju(){return!0}function kv(){return!1}function rs(n){function r(i,f,v,C,M){this._reactName=i,this._targetInst=v,this.type=f,this.nativeEvent=C,this.target=M,this.currentTarget=null;for(var q in n)n.hasOwnProperty(q)&&(i=n[q],this[q]=i?i(C):C[q]);return this.isDefaultPrevented=(C.defaultPrevented!=null?C.defaultPrevented:C.returnValue===!1)?ju:kv,this.isPropagationStopped=kv,this}return b(r.prototype,{preventDefault:function(){this.defaultPrevented=!0;var i=this.nativeEvent;i&&(i.preventDefault?i.preventDefault():typeof i.returnValue!="unknown"&&(i.returnValue=!1),this.isDefaultPrevented=ju)},stopPropagation:function(){var i=this.nativeEvent;i&&(i.stopPropagation?i.stopPropagation():typeof i.cancelBubble!="unknown"&&(i.cancelBubble=!0),this.isPropagationStopped=ju)},persist:function(){},isPersistent:ju}),r}var eo={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(n){return n.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},ku=rs(eo),vi=b({},eo,{view:0,detail:0}),hR=rs(vi),Fp,Gp,yi,wu=b({},vi,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Kp,button:0,buttons:0,relatedTarget:function(n){return n.relatedTarget===void 0?n.fromElement===n.srcElement?n.toElement:n.fromElement:n.relatedTarget},movementX:function(n){return"movementX"in n?n.movementX:(n!==yi&&(yi&&n.type==="mousemove"?(Fp=n.screenX-yi.screenX,Gp=n.screenY-yi.screenY):Gp=Fp=0,yi=n),Fp)},movementY:function(n){return"movementY"in n?n.movementY:Gp}}),wv=rs(wu),xR=b({},wu,{dataTransfer:0}),bR=rs(xR),_R=b({},vi,{relatedTarget:0}),Yp=rs(_R),vR=b({},eo,{animationName:0,elapsedTime:0,pseudoElement:0}),yR=rs(vR),jR=b({},eo,{clipboardData:function(n){return"clipboardData"in n?n.clipboardData:window.clipboardData}}),kR=rs(jR),wR=b({},eo,{data:0}),Sv=rs(wR),SR={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},CR={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"},NR={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function ER(n){var r=this.nativeEvent;return r.getModifierState?r.getModifierState(n):(n=NR[n])?!!r[n]:!1}function Kp(){return ER}var RR=b({},vi,{key:function(n){if(n.key){var r=SR[n.key]||n.key;if(r!=="Unidentified")return r}return n.type==="keypress"?(n=yu(n),n===13?"Enter":String.fromCharCode(n)):n.type==="keydown"||n.type==="keyup"?CR[n.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Kp,charCode:function(n){return n.type==="keypress"?yu(n):0},keyCode:function(n){return n.type==="keydown"||n.type==="keyup"?n.keyCode:0},which:function(n){return n.type==="keypress"?yu(n):n.type==="keydown"||n.type==="keyup"?n.keyCode:0}}),TR=rs(RR),AR=b({},wu,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),Cv=rs(AR),MR=b({},vi,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Kp}),OR=rs(MR),zR=b({},eo,{propertyName:0,elapsedTime:0,pseudoElement:0}),DR=rs(zR),PR=b({},wu,{deltaX:function(n){return"deltaX"in n?n.deltaX:"wheelDeltaX"in n?-n.wheelDeltaX:0},deltaY:function(n){return"deltaY"in n?n.deltaY:"wheelDeltaY"in n?-n.wheelDeltaY:"wheelDelta"in n?-n.wheelDelta:0},deltaZ:0,deltaMode:0}),LR=rs(PR),IR=b({},eo,{newState:0,oldState:0}),BR=rs(IR),UR=[9,13,27,32],Xp=Ra&&"CompositionEvent"in window,ji=null;Ra&&"documentMode"in document&&(ji=document.documentMode);var $R=Ra&&"TextEvent"in window&&!ji,Nv=Ra&&(!Xp||ji&&8<ji&&11>=ji),Ev=" ",Rv=!1;function Tv(n,r){switch(n){case"keyup":return UR.indexOf(r.keyCode)!==-1;case"keydown":return r.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Av(n){return n=n.detail,typeof n=="object"&&"data"in n?n.data:null}var nl=!1;function HR(n,r){switch(n){case"compositionend":return Av(r);case"keypress":return r.which!==32?null:(Rv=!0,Ev);case"textInput":return n=r.data,n===Ev&&Rv?null:n;default:return null}}function VR(n,r){if(nl)return n==="compositionend"||!Xp&&Tv(n,r)?(n=jv(),vu=qp=or=null,nl=!1,n):null;switch(n){case"paste":return null;case"keypress":if(!(r.ctrlKey||r.altKey||r.metaKey)||r.ctrlKey&&r.altKey){if(r.char&&1<r.char.length)return r.char;if(r.which)return String.fromCharCode(r.which)}return null;case"compositionend":return Nv&&r.locale!=="ko"?null:r.data;default:return null}}var qR={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 Mv(n){var r=n&&n.nodeName&&n.nodeName.toLowerCase();return r==="input"?!!qR[n.type]:r==="textarea"}function Ov(n,r,i,f){el?tl?tl.push(f):tl=[f]:el=f,r=pd(r,"onChange"),0<r.length&&(i=new ku("onChange","change",null,i,f),n.push({event:i,listeners:r}))}var ki=null,wi=null;function FR(n){g1(n,0)}function Su(n){var r=xi(n);if(mv(r))return n}function zv(n,r){if(n==="change")return r}var Dv=!1;if(Ra){var Qp;if(Ra){var Wp="oninput"in document;if(!Wp){var Pv=document.createElement("div");Pv.setAttribute("oninput","return;"),Wp=typeof Pv.oninput=="function"}Qp=Wp}else Qp=!1;Dv=Qp&&(!document.documentMode||9<document.documentMode)}function Lv(){ki&&(ki.detachEvent("onpropertychange",Iv),wi=ki=null)}function Iv(n){if(n.propertyName==="value"&&Su(wi)){var r=[];Ov(r,wi,n,$p(n)),yv(FR,r)}}function GR(n,r,i){n==="focusin"?(Lv(),ki=r,wi=i,ki.attachEvent("onpropertychange",Iv)):n==="focusout"&&Lv()}function YR(n){if(n==="selectionchange"||n==="keyup"||n==="keydown")return Su(wi)}function KR(n,r){if(n==="click")return Su(r)}function XR(n,r){if(n==="input"||n==="change")return Su(r)}function QR(n,r){return n===r&&(n!==0||1/n===1/r)||n!==n&&r!==r}var gs=typeof Object.is=="function"?Object.is:QR;function Si(n,r){if(gs(n,r))return!0;if(typeof n!="object"||n===null||typeof r!="object"||r===null)return!1;var i=Object.keys(n),f=Object.keys(r);if(i.length!==f.length)return!1;for(f=0;f<i.length;f++){var v=i[f];if(!je.call(r,v)||!gs(n[v],r[v]))return!1}return!0}function Bv(n){for(;n&&n.firstChild;)n=n.firstChild;return n}function Uv(n,r){var i=Bv(n);n=0;for(var f;i;){if(i.nodeType===3){if(f=n+i.textContent.length,n<=r&&f>=r)return{node:i,offset:r-n};n=f}e:{for(;i;){if(i.nextSibling){i=i.nextSibling;break e}i=i.parentNode}i=void 0}i=Bv(i)}}function $v(n,r){return n&&r?n===r?!0:n&&n.nodeType===3?!1:r&&r.nodeType===3?$v(n,r.parentNode):"contains"in n?n.contains(r):n.compareDocumentPosition?!!(n.compareDocumentPosition(r)&16):!1:!1}function Hv(n){n=n!=null&&n.ownerDocument!=null&&n.ownerDocument.defaultView!=null?n.ownerDocument.defaultView:window;for(var r=bu(n.document);r instanceof n.HTMLIFrameElement;){try{var i=typeof r.contentWindow.location.href=="string"}catch{i=!1}if(i)n=r.contentWindow;else break;r=bu(n.document)}return r}function Zp(n){var r=n&&n.nodeName&&n.nodeName.toLowerCase();return r&&(r==="input"&&(n.type==="text"||n.type==="search"||n.type==="tel"||n.type==="url"||n.type==="password")||r==="textarea"||n.contentEditable==="true")}var WR=Ra&&"documentMode"in document&&11>=document.documentMode,sl=null,Jp=null,Ci=null,em=!1;function Vv(n,r,i){var f=i.window===i?i.document:i.nodeType===9?i:i.ownerDocument;em||sl==null||sl!==bu(f)||(f=sl,"selectionStart"in f&&Zp(f)?f={start:f.selectionStart,end:f.selectionEnd}:(f=(f.ownerDocument&&f.ownerDocument.defaultView||window).getSelection(),f={anchorNode:f.anchorNode,anchorOffset:f.anchorOffset,focusNode:f.focusNode,focusOffset:f.focusOffset}),Ci&&Si(Ci,f)||(Ci=f,f=pd(Jp,"onSelect"),0<f.length&&(r=new ku("onSelect","select",null,r,i),n.push({event:r,listeners:f}),r.target=sl)))}function to(n,r){var i={};return i[n.toLowerCase()]=r.toLowerCase(),i["Webkit"+n]="webkit"+r,i["Moz"+n]="moz"+r,i}var al={animationend:to("Animation","AnimationEnd"),animationiteration:to("Animation","AnimationIteration"),animationstart:to("Animation","AnimationStart"),transitionrun:to("Transition","TransitionRun"),transitionstart:to("Transition","TransitionStart"),transitioncancel:to("Transition","TransitionCancel"),transitionend:to("Transition","TransitionEnd")},tm={},qv={};Ra&&(qv=document.createElement("div").style,"AnimationEvent"in window||(delete al.animationend.animation,delete al.animationiteration.animation,delete al.animationstart.animation),"TransitionEvent"in window||delete al.transitionend.transition);function no(n){if(tm[n])return tm[n];if(!al[n])return n;var r=al[n],i;for(i in r)if(r.hasOwnProperty(i)&&i in qv)return tm[n]=r[i];return n}var Fv=no("animationend"),Gv=no("animationiteration"),Yv=no("animationstart"),ZR=no("transitionrun"),JR=no("transitionstart"),eT=no("transitioncancel"),Kv=no("transitionend"),Xv=new Map,nm="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(" ");nm.push("scrollEnd");function Fs(n,r){Xv.set(n,r),Jr(r,[n])}var Cu=typeof reportError=="function"?reportError:function(n){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var r=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof n=="object"&&n!==null&&typeof n.message=="string"?String(n.message):String(n),error:n});if(!window.dispatchEvent(r))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",n);return}console.error(n)},Rs=[],rl=0,sm=0;function Nu(){for(var n=rl,r=sm=rl=0;r<n;){var i=Rs[r];Rs[r++]=null;var f=Rs[r];Rs[r++]=null;var v=Rs[r];Rs[r++]=null;var C=Rs[r];if(Rs[r++]=null,f!==null&&v!==null){var M=f.pending;M===null?v.next=v:(v.next=M.next,M.next=v),f.pending=v}C!==0&&Qv(i,v,C)}}function Eu(n,r,i,f){Rs[rl++]=n,Rs[rl++]=r,Rs[rl++]=i,Rs[rl++]=f,sm|=f,n.lanes|=f,n=n.alternate,n!==null&&(n.lanes|=f)}function am(n,r,i,f){return Eu(n,r,i,f),Ru(n)}function so(n,r){return Eu(n,null,null,r),Ru(n)}function Qv(n,r,i){n.lanes|=i;var f=n.alternate;f!==null&&(f.lanes|=i);for(var v=!1,C=n.return;C!==null;)C.childLanes|=i,f=C.alternate,f!==null&&(f.childLanes|=i),C.tag===22&&(n=C.stateNode,n===null||n._visibility&1||(v=!0)),n=C,C=C.return;return n.tag===3?(C=n.stateNode,v&&r!==null&&(v=31-Pe(i),n=C.hiddenUpdates,f=n[v],f===null?n[v]=[r]:f.push(r),r.lane=i|536870912),C):null}function Ru(n){if(50<Ki)throw Ki=0,pg=null,Error(o(185));for(var r=n.return;r!==null;)n=r,r=n.return;return n.tag===3?n.stateNode:null}var ol={};function tT(n,r,i,f){this.tag=n,this.key=i,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=r,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=f,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function hs(n,r,i,f){return new tT(n,r,i,f)}function rm(n){return n=n.prototype,!(!n||!n.isReactComponent)}function Ta(n,r){var i=n.alternate;return i===null?(i=hs(n.tag,r,n.key,n.mode),i.elementType=n.elementType,i.type=n.type,i.stateNode=n.stateNode,i.alternate=n,n.alternate=i):(i.pendingProps=r,i.type=n.type,i.flags=0,i.subtreeFlags=0,i.deletions=null),i.flags=n.flags&65011712,i.childLanes=n.childLanes,i.lanes=n.lanes,i.child=n.child,i.memoizedProps=n.memoizedProps,i.memoizedState=n.memoizedState,i.updateQueue=n.updateQueue,r=n.dependencies,i.dependencies=r===null?null:{lanes:r.lanes,firstContext:r.firstContext},i.sibling=n.sibling,i.index=n.index,i.ref=n.ref,i.refCleanup=n.refCleanup,i}function Wv(n,r){n.flags&=65011714;var i=n.alternate;return i===null?(n.childLanes=0,n.lanes=r,n.child=null,n.subtreeFlags=0,n.memoizedProps=null,n.memoizedState=null,n.updateQueue=null,n.dependencies=null,n.stateNode=null):(n.childLanes=i.childLanes,n.lanes=i.lanes,n.child=i.child,n.subtreeFlags=0,n.deletions=null,n.memoizedProps=i.memoizedProps,n.memoizedState=i.memoizedState,n.updateQueue=i.updateQueue,n.type=i.type,r=i.dependencies,n.dependencies=r===null?null:{lanes:r.lanes,firstContext:r.firstContext}),n}function Tu(n,r,i,f,v,C){var M=0;if(f=n,typeof n=="function")rm(n)&&(M=1);else if(typeof n=="string")M=oA(n,i,te.current)?26:n==="html"||n==="head"||n==="body"?27:5;else e:switch(n){case U:return n=hs(31,i,r,v),n.elementType=U,n.lanes=C,n;case k:return ao(i.children,v,C,r);case y:M=8,v|=24;break;case w:return n=hs(12,i,r,v|2),n.elementType=w,n.lanes=C,n;case A:return n=hs(13,i,r,v),n.elementType=A,n.lanes=C,n;case T:return n=hs(19,i,r,v),n.elementType=T,n.lanes=C,n;default:if(typeof n=="object"&&n!==null)switch(n.$$typeof){case N:M=10;break e;case S:M=9;break e;case R:M=11;break e;case O:M=14;break e;case z:M=16,f=null;break e}M=29,i=Error(o(130,n===null?"null":typeof n,"")),f=null}return r=hs(M,i,r,v),r.elementType=n,r.type=f,r.lanes=C,r}function ao(n,r,i,f){return n=hs(7,n,f,r),n.lanes=i,n}function om(n,r,i){return n=hs(6,n,null,r),n.lanes=i,n}function Zv(n){var r=hs(18,null,null,0);return r.stateNode=n,r}function lm(n,r,i){return r=hs(4,n.children!==null?n.children:[],n.key,r),r.lanes=i,r.stateNode={containerInfo:n.containerInfo,pendingChildren:null,implementation:n.implementation},r}var Jv=new WeakMap;function Ts(n,r){if(typeof n=="object"&&n!==null){var i=Jv.get(n);return i!==void 0?i:(r={value:n,source:r,stack:Te(r)},Jv.set(n,r),r)}return{value:n,source:r,stack:Te(r)}}var ll=[],il=0,Au=null,Ni=0,As=[],Ms=0,lr=null,sa=1,aa="";function Aa(n,r){ll[il++]=Ni,ll[il++]=Au,Au=n,Ni=r}function ey(n,r,i){As[Ms++]=sa,As[Ms++]=aa,As[Ms++]=lr,lr=n;var f=sa;n=aa;var v=32-Pe(f)-1;f&=~(1<<v),i+=1;var C=32-Pe(r)+v;if(30<C){var M=v-v%5;C=(f&(1<<M)-1).toString(32),f>>=M,v-=M,sa=1<<32-Pe(r)+v|i<<v|f,aa=C+n}else sa=1<<C|i<<v|f,aa=n}function im(n){n.return!==null&&(Aa(n,1),ey(n,1,0))}function cm(n){for(;n===Au;)Au=ll[--il],ll[il]=null,Ni=ll[--il],ll[il]=null;for(;n===lr;)lr=As[--Ms],As[Ms]=null,aa=As[--Ms],As[Ms]=null,sa=As[--Ms],As[Ms]=null}function ty(n,r){As[Ms++]=sa,As[Ms++]=aa,As[Ms++]=lr,sa=r.id,aa=r.overflow,lr=n}var In=null,en=null,Nt=!1,ir=null,Os=!1,um=Error(o(519));function cr(n){var r=Error(o(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw Ei(Ts(r,n)),um}function ny(n){var r=n.stateNode,i=n.type,f=n.memoizedProps;switch(r[Yt]=n,r[Ln]=f,i){case"dialog":jt("cancel",r),jt("close",r);break;case"iframe":case"object":case"embed":jt("load",r);break;case"video":case"audio":for(i=0;i<Qi.length;i++)jt(Qi[i],r);break;case"source":jt("error",r);break;case"img":case"image":case"link":jt("error",r),jt("load",r);break;case"details":jt("toggle",r);break;case"input":jt("invalid",r),gv(r,f.value,f.defaultValue,f.checked,f.defaultChecked,f.type,f.name,!0);break;case"select":jt("invalid",r);break;case"textarea":jt("invalid",r),xv(r,f.value,f.defaultValue,f.children)}i=f.children,typeof i!="string"&&typeof i!="number"&&typeof i!="bigint"||r.textContent===""+i||f.suppressHydrationWarning===!0||_1(r.textContent,i)?(f.popover!=null&&(jt("beforetoggle",r),jt("toggle",r)),f.onScroll!=null&&jt("scroll",r),f.onScrollEnd!=null&&jt("scrollend",r),f.onClick!=null&&(r.onclick=Ea),r=!0):r=!1,r||cr(n,!0)}function sy(n){for(In=n.return;In;)switch(In.tag){case 5:case 31:case 13:Os=!1;return;case 27:case 3:Os=!0;return;default:In=In.return}}function cl(n){if(n!==In)return!1;if(!Nt)return sy(n),Nt=!0,!1;var r=n.tag,i;if((i=r!==3&&r!==27)&&((i=r===5)&&(i=n.type,i=!(i!=="form"&&i!=="button")||Eg(n.type,n.memoizedProps)),i=!i),i&&en&&cr(n),sy(n),r===13){if(n=n.memoizedState,n=n!==null?n.dehydrated:null,!n)throw Error(o(317));en=E1(n)}else if(r===31){if(n=n.memoizedState,n=n!==null?n.dehydrated:null,!n)throw Error(o(317));en=E1(n)}else r===27?(r=en,kr(n.type)?(n=Og,Og=null,en=n):en=r):en=In?Ds(n.stateNode.nextSibling):null;return!0}function ro(){en=In=null,Nt=!1}function dm(){var n=ir;return n!==null&&(cs===null?cs=n:cs.push.apply(cs,n),ir=null),n}function Ei(n){ir===null?ir=[n]:ir.push(n)}var fm=I(null),oo=null,Ma=null;function ur(n,r,i){Z(fm,r._currentValue),r._currentValue=i}function Oa(n){n._currentValue=fm.current,X(fm)}function pm(n,r,i){for(;n!==null;){var f=n.alternate;if((n.childLanes&r)!==r?(n.childLanes|=r,f!==null&&(f.childLanes|=r)):f!==null&&(f.childLanes&r)!==r&&(f.childLanes|=r),n===i)break;n=n.return}}function mm(n,r,i,f){var v=n.child;for(v!==null&&(v.return=n);v!==null;){var C=v.dependencies;if(C!==null){var M=v.child;C=C.firstContext;e:for(;C!==null;){var q=C;C=v;for(var Q=0;Q<r.length;Q++)if(q.context===r[Q]){C.lanes|=i,q=C.alternate,q!==null&&(q.lanes|=i),pm(C.return,i,n),f||(M=null);break e}C=q.next}}else if(v.tag===18){if(M=v.return,M===null)throw Error(o(341));M.lanes|=i,C=M.alternate,C!==null&&(C.lanes|=i),pm(M,i,n),M=null}else M=v.child;if(M!==null)M.return=v;else for(M=v;M!==null;){if(M===n){M=null;break}if(v=M.sibling,v!==null){v.return=M.return,M=v;break}M=M.return}v=M}}function ul(n,r,i,f){n=null;for(var v=r,C=!1;v!==null;){if(!C){if((v.flags&524288)!==0)C=!0;else if((v.flags&262144)!==0)break}if(v.tag===10){var M=v.alternate;if(M===null)throw Error(o(387));if(M=M.memoizedProps,M!==null){var q=v.type;gs(v.pendingProps.value,M.value)||(n!==null?n.push(q):n=[q])}}else if(v===re.current){if(M=v.alternate,M===null)throw Error(o(387));M.memoizedState.memoizedState!==v.memoizedState.memoizedState&&(n!==null?n.push(tc):n=[tc])}v=v.return}n!==null&&mm(r,n,i,f),r.flags|=262144}function Mu(n){for(n=n.firstContext;n!==null;){if(!gs(n.context._currentValue,n.memoizedValue))return!0;n=n.next}return!1}function lo(n){oo=n,Ma=null,n=n.dependencies,n!==null&&(n.firstContext=null)}function Bn(n){return ay(oo,n)}function Ou(n,r){return oo===null&&lo(n),ay(n,r)}function ay(n,r){var i=r._currentValue;if(r={context:r,memoizedValue:i,next:null},Ma===null){if(n===null)throw Error(o(308));Ma=r,n.dependencies={lanes:0,firstContext:r},n.flags|=524288}else Ma=Ma.next=r;return i}var nT=typeof AbortController<"u"?AbortController:function(){var n=[],r=this.signal={aborted:!1,addEventListener:function(i,f){n.push(f)}};this.abort=function(){r.aborted=!0,n.forEach(function(i){return i()})}},sT=e.unstable_scheduleCallback,aT=e.unstable_NormalPriority,vn={$$typeof:N,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function gm(){return{controller:new nT,data:new Map,refCount:0}}function Ri(n){n.refCount--,n.refCount===0&&sT(aT,function(){n.controller.abort()})}var Ti=null,hm=0,dl=0,fl=null;function rT(n,r){if(Ti===null){var i=Ti=[];hm=0,dl=_g(),fl={status:"pending",value:void 0,then:function(f){i.push(f)}}}return hm++,r.then(ry,ry),r}function ry(){if(--hm===0&&Ti!==null){fl!==null&&(fl.status="fulfilled");var n=Ti;Ti=null,dl=0,fl=null;for(var r=0;r<n.length;r++)(0,n[r])()}}function oT(n,r){var i=[],f={status:"pending",value:null,reason:null,then:function(v){i.push(v)}};return n.then(function(){f.status="fulfilled",f.value=r;for(var v=0;v<i.length;v++)(0,i[v])(r)},function(v){for(f.status="rejected",f.reason=v,v=0;v<i.length;v++)(0,i[v])(void 0)}),f}var oy=H.S;H.S=function(n,r){V0=ue(),typeof r=="object"&&r!==null&&typeof r.then=="function"&&rT(n,r),oy!==null&&oy(n,r)};var io=I(null);function xm(){var n=io.current;return n!==null?n:Kt.pooledCache}function zu(n,r){r===null?Z(io,io.current):Z(io,r.pool)}function ly(){var n=xm();return n===null?null:{parent:vn._currentValue,pool:n}}var pl=Error(o(460)),bm=Error(o(474)),Du=Error(o(542)),Pu={then:function(){}};function iy(n){return n=n.status,n==="fulfilled"||n==="rejected"}function cy(n,r,i){switch(i=n[i],i===void 0?n.push(r):i!==r&&(r.then(Ea,Ea),r=i),r.status){case"fulfilled":return r.value;case"rejected":throw n=r.reason,dy(n),n;default:if(typeof r.status=="string")r.then(Ea,Ea);else{if(n=Kt,n!==null&&100<n.shellSuspendCounter)throw Error(o(482));n=r,n.status="pending",n.then(function(f){if(r.status==="pending"){var v=r;v.status="fulfilled",v.value=f}},function(f){if(r.status==="pending"){var v=r;v.status="rejected",v.reason=f}})}switch(r.status){case"fulfilled":return r.value;case"rejected":throw n=r.reason,dy(n),n}throw uo=r,pl}}function co(n){try{var r=n._init;return r(n._payload)}catch(i){throw i!==null&&typeof i=="object"&&typeof i.then=="function"?(uo=i,pl):i}}var uo=null;function uy(){if(uo===null)throw Error(o(459));var n=uo;return uo=null,n}function dy(n){if(n===pl||n===Du)throw Error(o(483))}var ml=null,Ai=0;function Lu(n){var r=Ai;return Ai+=1,ml===null&&(ml=[]),cy(ml,n,r)}function Mi(n,r){r=r.props.ref,n.ref=r!==void 0?r:null}function Iu(n,r){throw r.$$typeof===_?Error(o(525)):(n=Object.prototype.toString.call(r),Error(o(31,n==="[object Object]"?"object with keys {"+Object.keys(r).join(", ")+"}":n)))}function fy(n){function r(J,W){if(n){var oe=J.deletions;oe===null?(J.deletions=[W],J.flags|=16):oe.push(W)}}function i(J,W){if(!n)return null;for(;W!==null;)r(J,W),W=W.sibling;return null}function f(J){for(var W=new Map;J!==null;)J.key!==null?W.set(J.key,J):W.set(J.index,J),J=J.sibling;return W}function v(J,W){return J=Ta(J,W),J.index=0,J.sibling=null,J}function C(J,W,oe){return J.index=oe,n?(oe=J.alternate,oe!==null?(oe=oe.index,oe<W?(J.flags|=67108866,W):oe):(J.flags|=67108866,W)):(J.flags|=1048576,W)}function M(J){return n&&J.alternate===null&&(J.flags|=67108866),J}function q(J,W,oe,ve){return W===null||W.tag!==6?(W=om(oe,J.mode,ve),W.return=J,W):(W=v(W,oe),W.return=J,W)}function Q(J,W,oe,ve){var Je=oe.type;return Je===k?xe(J,W,oe.props.children,ve,oe.key):W!==null&&(W.elementType===Je||typeof Je=="object"&&Je!==null&&Je.$$typeof===z&&co(Je)===W.type)?(W=v(W,oe.props),Mi(W,oe),W.return=J,W):(W=Tu(oe.type,oe.key,oe.props,null,J.mode,ve),Mi(W,oe),W.return=J,W)}function ie(J,W,oe,ve){return W===null||W.tag!==4||W.stateNode.containerInfo!==oe.containerInfo||W.stateNode.implementation!==oe.implementation?(W=lm(oe,J.mode,ve),W.return=J,W):(W=v(W,oe.children||[]),W.return=J,W)}function xe(J,W,oe,ve,Je){return W===null||W.tag!==7?(W=ao(oe,J.mode,ve,Je),W.return=J,W):(W=v(W,oe),W.return=J,W)}function ke(J,W,oe){if(typeof W=="string"&&W!==""||typeof W=="number"||typeof W=="bigint")return W=om(""+W,J.mode,oe),W.return=J,W;if(typeof W=="object"&&W!==null){switch(W.$$typeof){case j:return oe=Tu(W.type,W.key,W.props,null,J.mode,oe),Mi(oe,W),oe.return=J,oe;case E:return W=lm(W,J.mode,oe),W.return=J,W;case z:return W=co(W),ke(J,W,oe)}if(V(W)||D(W))return W=ao(W,J.mode,oe,null),W.return=J,W;if(typeof W.then=="function")return ke(J,Lu(W),oe);if(W.$$typeof===N)return ke(J,Ou(J,W),oe);Iu(J,W)}return null}function ce(J,W,oe,ve){var Je=W!==null?W.key:null;if(typeof oe=="string"&&oe!==""||typeof oe=="number"||typeof oe=="bigint")return Je!==null?null:q(J,W,""+oe,ve);if(typeof oe=="object"&&oe!==null){switch(oe.$$typeof){case j:return oe.key===Je?Q(J,W,oe,ve):null;case E:return oe.key===Je?ie(J,W,oe,ve):null;case z:return oe=co(oe),ce(J,W,oe,ve)}if(V(oe)||D(oe))return Je!==null?null:xe(J,W,oe,ve,null);if(typeof oe.then=="function")return ce(J,W,Lu(oe),ve);if(oe.$$typeof===N)return ce(J,W,Ou(J,oe),ve);Iu(J,oe)}return null}function pe(J,W,oe,ve,Je){if(typeof ve=="string"&&ve!==""||typeof ve=="number"||typeof ve=="bigint")return J=J.get(oe)||null,q(W,J,""+ve,Je);if(typeof ve=="object"&&ve!==null){switch(ve.$$typeof){case j:return J=J.get(ve.key===null?oe:ve.key)||null,Q(W,J,ve,Je);case E:return J=J.get(ve.key===null?oe:ve.key)||null,ie(W,J,ve,Je);case z:return ve=co(ve),pe(J,W,oe,ve,Je)}if(V(ve)||D(ve))return J=J.get(oe)||null,xe(W,J,ve,Je,null);if(typeof ve.then=="function")return pe(J,W,oe,Lu(ve),Je);if(ve.$$typeof===N)return pe(J,W,oe,Ou(W,ve),Je);Iu(W,ve)}return null}function qe(J,W,oe,ve){for(var Je=null,Tt=null,Ke=W,gt=W=0,wt=null;Ke!==null&&gt<oe.length;gt++){Ke.index>gt?(wt=Ke,Ke=null):wt=Ke.sibling;var At=ce(J,Ke,oe[gt],ve);if(At===null){Ke===null&&(Ke=wt);break}n&&Ke&&At.alternate===null&&r(J,Ke),W=C(At,W,gt),Tt===null?Je=At:Tt.sibling=At,Tt=At,Ke=wt}if(gt===oe.length)return i(J,Ke),Nt&&Aa(J,gt),Je;if(Ke===null){for(;gt<oe.length;gt++)Ke=ke(J,oe[gt],ve),Ke!==null&&(W=C(Ke,W,gt),Tt===null?Je=Ke:Tt.sibling=Ke,Tt=Ke);return Nt&&Aa(J,gt),Je}for(Ke=f(Ke);gt<oe.length;gt++)wt=pe(Ke,J,gt,oe[gt],ve),wt!==null&&(n&&wt.alternate!==null&&Ke.delete(wt.key===null?gt:wt.key),W=C(wt,W,gt),Tt===null?Je=wt:Tt.sibling=wt,Tt=wt);return n&&Ke.forEach(function(Er){return r(J,Er)}),Nt&&Aa(J,gt),Je}function rt(J,W,oe,ve){if(oe==null)throw Error(o(151));for(var Je=null,Tt=null,Ke=W,gt=W=0,wt=null,At=oe.next();Ke!==null&&!At.done;gt++,At=oe.next()){Ke.index>gt?(wt=Ke,Ke=null):wt=Ke.sibling;var Er=ce(J,Ke,At.value,ve);if(Er===null){Ke===null&&(Ke=wt);break}n&&Ke&&Er.alternate===null&&r(J,Ke),W=C(Er,W,gt),Tt===null?Je=Er:Tt.sibling=Er,Tt=Er,Ke=wt}if(At.done)return i(J,Ke),Nt&&Aa(J,gt),Je;if(Ke===null){for(;!At.done;gt++,At=oe.next())At=ke(J,At.value,ve),At!==null&&(W=C(At,W,gt),Tt===null?Je=At:Tt.sibling=At,Tt=At);return Nt&&Aa(J,gt),Je}for(Ke=f(Ke);!At.done;gt++,At=oe.next())At=pe(Ke,J,gt,At.value,ve),At!==null&&(n&&At.alternate!==null&&Ke.delete(At.key===null?gt:At.key),W=C(At,W,gt),Tt===null?Je=At:Tt.sibling=At,Tt=At);return n&&Ke.forEach(function(xA){return r(J,xA)}),Nt&&Aa(J,gt),Je}function Ht(J,W,oe,ve){if(typeof oe=="object"&&oe!==null&&oe.type===k&&oe.key===null&&(oe=oe.props.children),typeof oe=="object"&&oe!==null){switch(oe.$$typeof){case j:e:{for(var Je=oe.key;W!==null;){if(W.key===Je){if(Je=oe.type,Je===k){if(W.tag===7){i(J,W.sibling),ve=v(W,oe.props.children),ve.return=J,J=ve;break e}}else if(W.elementType===Je||typeof Je=="object"&&Je!==null&&Je.$$typeof===z&&co(Je)===W.type){i(J,W.sibling),ve=v(W,oe.props),Mi(ve,oe),ve.return=J,J=ve;break e}i(J,W);break}else r(J,W);W=W.sibling}oe.type===k?(ve=ao(oe.props.children,J.mode,ve,oe.key),ve.return=J,J=ve):(ve=Tu(oe.type,oe.key,oe.props,null,J.mode,ve),Mi(ve,oe),ve.return=J,J=ve)}return M(J);case E:e:{for(Je=oe.key;W!==null;){if(W.key===Je)if(W.tag===4&&W.stateNode.containerInfo===oe.containerInfo&&W.stateNode.implementation===oe.implementation){i(J,W.sibling),ve=v(W,oe.children||[]),ve.return=J,J=ve;break e}else{i(J,W);break}else r(J,W);W=W.sibling}ve=lm(oe,J.mode,ve),ve.return=J,J=ve}return M(J);case z:return oe=co(oe),Ht(J,W,oe,ve)}if(V(oe))return qe(J,W,oe,ve);if(D(oe)){if(Je=D(oe),typeof Je!="function")throw Error(o(150));return oe=Je.call(oe),rt(J,W,oe,ve)}if(typeof oe.then=="function")return Ht(J,W,Lu(oe),ve);if(oe.$$typeof===N)return Ht(J,W,Ou(J,oe),ve);Iu(J,oe)}return typeof oe=="string"&&oe!==""||typeof oe=="number"||typeof oe=="bigint"?(oe=""+oe,W!==null&&W.tag===6?(i(J,W.sibling),ve=v(W,oe),ve.return=J,J=ve):(i(J,W),ve=om(oe,J.mode,ve),ve.return=J,J=ve),M(J)):i(J,W)}return function(J,W,oe,ve){try{Ai=0;var Je=Ht(J,W,oe,ve);return ml=null,Je}catch(Ke){if(Ke===pl||Ke===Du)throw Ke;var Tt=hs(29,Ke,null,J.mode);return Tt.lanes=ve,Tt.return=J,Tt}finally{}}}var fo=fy(!0),py=fy(!1),dr=!1;function _m(n){n.updateQueue={baseState:n.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function vm(n,r){n=n.updateQueue,r.updateQueue===n&&(r.updateQueue={baseState:n.baseState,firstBaseUpdate:n.firstBaseUpdate,lastBaseUpdate:n.lastBaseUpdate,shared:n.shared,callbacks:null})}function fr(n){return{lane:n,tag:0,payload:null,callback:null,next:null}}function pr(n,r,i){var f=n.updateQueue;if(f===null)return null;if(f=f.shared,(zt&2)!==0){var v=f.pending;return v===null?r.next=r:(r.next=v.next,v.next=r),f.pending=r,r=Ru(n),Qv(n,null,i),r}return Eu(n,f,r,i),Ru(n)}function Oi(n,r,i){if(r=r.updateQueue,r!==null&&(r=r.shared,(i&4194048)!==0)){var f=r.lanes;f&=n.pendingLanes,i|=f,r.lanes=i,qs(n,i)}}function ym(n,r){var i=n.updateQueue,f=n.alternate;if(f!==null&&(f=f.updateQueue,i===f)){var v=null,C=null;if(i=i.firstBaseUpdate,i!==null){do{var M={lane:i.lane,tag:i.tag,payload:i.payload,callback:null,next:null};C===null?v=C=M:C=C.next=M,i=i.next}while(i!==null);C===null?v=C=r:C=C.next=r}else v=C=r;i={baseState:f.baseState,firstBaseUpdate:v,lastBaseUpdate:C,shared:f.shared,callbacks:f.callbacks},n.updateQueue=i;return}n=i.lastBaseUpdate,n===null?i.firstBaseUpdate=r:n.next=r,i.lastBaseUpdate=r}var jm=!1;function zi(){if(jm){var n=fl;if(n!==null)throw n}}function Di(n,r,i,f){jm=!1;var v=n.updateQueue;dr=!1;var C=v.firstBaseUpdate,M=v.lastBaseUpdate,q=v.shared.pending;if(q!==null){v.shared.pending=null;var Q=q,ie=Q.next;Q.next=null,M===null?C=ie:M.next=ie,M=Q;var xe=n.alternate;xe!==null&&(xe=xe.updateQueue,q=xe.lastBaseUpdate,q!==M&&(q===null?xe.firstBaseUpdate=ie:q.next=ie,xe.lastBaseUpdate=Q))}if(C!==null){var ke=v.baseState;M=0,xe=ie=Q=null,q=C;do{var ce=q.lane&-536870913,pe=ce!==q.lane;if(pe?(kt&ce)===ce:(f&ce)===ce){ce!==0&&ce===dl&&(jm=!0),xe!==null&&(xe=xe.next={lane:0,tag:q.tag,payload:q.payload,callback:null,next:null});e:{var qe=n,rt=q;ce=r;var Ht=i;switch(rt.tag){case 1:if(qe=rt.payload,typeof qe=="function"){ke=qe.call(Ht,ke,ce);break e}ke=qe;break e;case 3:qe.flags=qe.flags&-65537|128;case 0:if(qe=rt.payload,ce=typeof qe=="function"?qe.call(Ht,ke,ce):qe,ce==null)break e;ke=b({},ke,ce);break e;case 2:dr=!0}}ce=q.callback,ce!==null&&(n.flags|=64,pe&&(n.flags|=8192),pe=v.callbacks,pe===null?v.callbacks=[ce]:pe.push(ce))}else pe={lane:ce,tag:q.tag,payload:q.payload,callback:q.callback,next:null},xe===null?(ie=xe=pe,Q=ke):xe=xe.next=pe,M|=ce;if(q=q.next,q===null){if(q=v.shared.pending,q===null)break;pe=q,q=pe.next,pe.next=null,v.lastBaseUpdate=pe,v.shared.pending=null}}while(!0);xe===null&&(Q=ke),v.baseState=Q,v.firstBaseUpdate=ie,v.lastBaseUpdate=xe,C===null&&(v.shared.lanes=0),br|=M,n.lanes=M,n.memoizedState=ke}}function my(n,r){if(typeof n!="function")throw Error(o(191,n));n.call(r)}function gy(n,r){var i=n.callbacks;if(i!==null)for(n.callbacks=null,n=0;n<i.length;n++)my(i[n],r)}var gl=I(null),Bu=I(0);function hy(n,r){n=Ha,Z(Bu,n),Z(gl,r),Ha=n|r.baseLanes}function km(){Z(Bu,Ha),Z(gl,gl.current)}function wm(){Ha=Bu.current,X(gl),X(Bu)}var xs=I(null),zs=null;function mr(n){var r=n.alternate;Z(xn,xn.current&1),Z(xs,n),zs===null&&(r===null||gl.current!==null||r.memoizedState!==null)&&(zs=n)}function Sm(n){Z(xn,xn.current),Z(xs,n),zs===null&&(zs=n)}function xy(n){n.tag===22?(Z(xn,xn.current),Z(xs,n),zs===null&&(zs=n)):gr()}function gr(){Z(xn,xn.current),Z(xs,xs.current)}function bs(n){X(xs),zs===n&&(zs=null),X(xn)}var xn=I(0);function Uu(n){for(var r=n;r!==null;){if(r.tag===13){var i=r.memoizedState;if(i!==null&&(i=i.dehydrated,i===null||Ag(i)||Mg(i)))return r}else if(r.tag===19&&(r.memoizedProps.revealOrder==="forwards"||r.memoizedProps.revealOrder==="backwards"||r.memoizedProps.revealOrder==="unstable_legacy-backwards"||r.memoizedProps.revealOrder==="together")){if((r.flags&128)!==0)return r}else if(r.child!==null){r.child.return=r,r=r.child;continue}if(r===n)break;for(;r.sibling===null;){if(r.return===null||r.return===n)return null;r=r.return}r.sibling.return=r.return,r=r.sibling}return null}var za=0,ft=null,Ut=null,yn=null,$u=!1,hl=!1,po=!1,Hu=0,Pi=0,xl=null,lT=0;function dn(){throw Error(o(321))}function Cm(n,r){if(r===null)return!1;for(var i=0;i<r.length&&i<n.length;i++)if(!gs(n[i],r[i]))return!1;return!0}function Nm(n,r,i,f,v,C){return za=C,ft=r,r.memoizedState=null,r.updateQueue=null,r.lanes=0,H.H=n===null||n.memoizedState===null?e0:Hm,po=!1,C=i(f,v),po=!1,hl&&(C=_y(r,i,f,v)),by(n),C}function by(n){H.H=Bi;var r=Ut!==null&&Ut.next!==null;if(za=0,yn=Ut=ft=null,$u=!1,Pi=0,xl=null,r)throw Error(o(300));n===null||jn||(n=n.dependencies,n!==null&&Mu(n)&&(jn=!0))}function _y(n,r,i,f){ft=n;var v=0;do{if(hl&&(xl=null),Pi=0,hl=!1,25<=v)throw Error(o(301));if(v+=1,yn=Ut=null,n.updateQueue!=null){var C=n.updateQueue;C.lastEffect=null,C.events=null,C.stores=null,C.memoCache!=null&&(C.memoCache.index=0)}H.H=t0,C=r(i,f)}while(hl);return C}function iT(){var n=H.H,r=n.useState()[0];return r=typeof r.then=="function"?Li(r):r,n=n.useState()[0],(Ut!==null?Ut.memoizedState:null)!==n&&(ft.flags|=1024),r}function Em(){var n=Hu!==0;return Hu=0,n}function Rm(n,r,i){r.updateQueue=n.updateQueue,r.flags&=-2053,n.lanes&=~i}function Tm(n){if($u){for(n=n.memoizedState;n!==null;){var r=n.queue;r!==null&&(r.pending=null),n=n.next}$u=!1}za=0,yn=Ut=ft=null,hl=!1,Pi=Hu=0,xl=null}function Xn(){var n={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return yn===null?ft.memoizedState=yn=n:yn=yn.next=n,yn}function bn(){if(Ut===null){var n=ft.alternate;n=n!==null?n.memoizedState:null}else n=Ut.next;var r=yn===null?ft.memoizedState:yn.next;if(r!==null)yn=r,Ut=n;else{if(n===null)throw ft.alternate===null?Error(o(467)):Error(o(310));Ut=n,n={memoizedState:Ut.memoizedState,baseState:Ut.baseState,baseQueue:Ut.baseQueue,queue:Ut.queue,next:null},yn===null?ft.memoizedState=yn=n:yn=yn.next=n}return yn}function Vu(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function Li(n){var r=Pi;return Pi+=1,xl===null&&(xl=[]),n=cy(xl,n,r),r=ft,(yn===null?r.memoizedState:yn.next)===null&&(r=r.alternate,H.H=r===null||r.memoizedState===null?e0:Hm),n}function qu(n){if(n!==null&&typeof n=="object"){if(typeof n.then=="function")return Li(n);if(n.$$typeof===N)return Bn(n)}throw Error(o(438,String(n)))}function Am(n){var r=null,i=ft.updateQueue;if(i!==null&&(r=i.memoCache),r==null){var f=ft.alternate;f!==null&&(f=f.updateQueue,f!==null&&(f=f.memoCache,f!=null&&(r={data:f.data.map(function(v){return v.slice()}),index:0})))}if(r==null&&(r={data:[],index:0}),i===null&&(i=Vu(),ft.updateQueue=i),i.memoCache=r,i=r.data[r.index],i===void 0)for(i=r.data[r.index]=Array(n),f=0;f<n;f++)i[f]=P;return r.index++,i}function Da(n,r){return typeof r=="function"?r(n):r}function Fu(n){var r=bn();return Mm(r,Ut,n)}function Mm(n,r,i){var f=n.queue;if(f===null)throw Error(o(311));f.lastRenderedReducer=i;var v=n.baseQueue,C=f.pending;if(C!==null){if(v!==null){var M=v.next;v.next=C.next,C.next=M}r.baseQueue=v=C,f.pending=null}if(C=n.baseState,v===null)n.memoizedState=C;else{r=v.next;var q=M=null,Q=null,ie=r,xe=!1;do{var ke=ie.lane&-536870913;if(ke!==ie.lane?(kt&ke)===ke:(za&ke)===ke){var ce=ie.revertLane;if(ce===0)Q!==null&&(Q=Q.next={lane:0,revertLane:0,gesture:null,action:ie.action,hasEagerState:ie.hasEagerState,eagerState:ie.eagerState,next:null}),ke===dl&&(xe=!0);else if((za&ce)===ce){ie=ie.next,ce===dl&&(xe=!0);continue}else ke={lane:0,revertLane:ie.revertLane,gesture:null,action:ie.action,hasEagerState:ie.hasEagerState,eagerState:ie.eagerState,next:null},Q===null?(q=Q=ke,M=C):Q=Q.next=ke,ft.lanes|=ce,br|=ce;ke=ie.action,po&&i(C,ke),C=ie.hasEagerState?ie.eagerState:i(C,ke)}else ce={lane:ke,revertLane:ie.revertLane,gesture:ie.gesture,action:ie.action,hasEagerState:ie.hasEagerState,eagerState:ie.eagerState,next:null},Q===null?(q=Q=ce,M=C):Q=Q.next=ce,ft.lanes|=ke,br|=ke;ie=ie.next}while(ie!==null&&ie!==r);if(Q===null?M=C:Q.next=q,!gs(C,n.memoizedState)&&(jn=!0,xe&&(i=fl,i!==null)))throw i;n.memoizedState=C,n.baseState=M,n.baseQueue=Q,f.lastRenderedState=C}return v===null&&(f.lanes=0),[n.memoizedState,f.dispatch]}function Om(n){var r=bn(),i=r.queue;if(i===null)throw Error(o(311));i.lastRenderedReducer=n;var f=i.dispatch,v=i.pending,C=r.memoizedState;if(v!==null){i.pending=null;var M=v=v.next;do C=n(C,M.action),M=M.next;while(M!==v);gs(C,r.memoizedState)||(jn=!0),r.memoizedState=C,r.baseQueue===null&&(r.baseState=C),i.lastRenderedState=C}return[C,f]}function vy(n,r,i){var f=ft,v=bn(),C=Nt;if(C){if(i===void 0)throw Error(o(407));i=i()}else i=r();var M=!gs((Ut||v).memoizedState,i);if(M&&(v.memoizedState=i,jn=!0),v=v.queue,Pm(ky.bind(null,f,v,n),[n]),v.getSnapshot!==r||M||yn!==null&&yn.memoizedState.tag&1){if(f.flags|=2048,bl(9,{destroy:void 0},jy.bind(null,f,v,i,r),null),Kt===null)throw Error(o(349));C||(za&127)!==0||yy(f,r,i)}return i}function yy(n,r,i){n.flags|=16384,n={getSnapshot:r,value:i},r=ft.updateQueue,r===null?(r=Vu(),ft.updateQueue=r,r.stores=[n]):(i=r.stores,i===null?r.stores=[n]:i.push(n))}function jy(n,r,i,f){r.value=i,r.getSnapshot=f,wy(r)&&Sy(n)}function ky(n,r,i){return i(function(){wy(r)&&Sy(n)})}function wy(n){var r=n.getSnapshot;n=n.value;try{var i=r();return!gs(n,i)}catch{return!0}}function Sy(n){var r=so(n,2);r!==null&&us(r,n,2)}function zm(n){var r=Xn();if(typeof n=="function"){var i=n;if(n=i(),po){_e(!0);try{i()}finally{_e(!1)}}}return r.memoizedState=r.baseState=n,r.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Da,lastRenderedState:n},r}function Cy(n,r,i,f){return n.baseState=i,Mm(n,Ut,typeof f=="function"?f:Da)}function cT(n,r,i,f,v){if(Ku(n))throw Error(o(485));if(n=r.action,n!==null){var C={payload:v,action:n,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(M){C.listeners.push(M)}};H.T!==null?i(!0):C.isTransition=!1,f(C),i=r.pending,i===null?(C.next=r.pending=C,Ny(r,C)):(C.next=i.next,r.pending=i.next=C)}}function Ny(n,r){var i=r.action,f=r.payload,v=n.state;if(r.isTransition){var C=H.T,M={};H.T=M;try{var q=i(v,f),Q=H.S;Q!==null&&Q(M,q),Ey(n,r,q)}catch(ie){Dm(n,r,ie)}finally{C!==null&&M.types!==null&&(C.types=M.types),H.T=C}}else try{C=i(v,f),Ey(n,r,C)}catch(ie){Dm(n,r,ie)}}function Ey(n,r,i){i!==null&&typeof i=="object"&&typeof i.then=="function"?i.then(function(f){Ry(n,r,f)},function(f){return Dm(n,r,f)}):Ry(n,r,i)}function Ry(n,r,i){r.status="fulfilled",r.value=i,Ty(r),n.state=i,r=n.pending,r!==null&&(i=r.next,i===r?n.pending=null:(i=i.next,r.next=i,Ny(n,i)))}function Dm(n,r,i){var f=n.pending;if(n.pending=null,f!==null){f=f.next;do r.status="rejected",r.reason=i,Ty(r),r=r.next;while(r!==f)}n.action=null}function Ty(n){n=n.listeners;for(var r=0;r<n.length;r++)(0,n[r])()}function Ay(n,r){return r}function My(n,r){if(Nt){var i=Kt.formState;if(i!==null){e:{var f=ft;if(Nt){if(en){t:{for(var v=en,C=Os;v.nodeType!==8;){if(!C){v=null;break t}if(v=Ds(v.nextSibling),v===null){v=null;break t}}C=v.data,v=C==="F!"||C==="F"?v:null}if(v){en=Ds(v.nextSibling),f=v.data==="F!";break e}}cr(f)}f=!1}f&&(r=i[0])}}return i=Xn(),i.memoizedState=i.baseState=r,f={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Ay,lastRenderedState:r},i.queue=f,i=Wy.bind(null,ft,f),f.dispatch=i,f=zm(!1),C=$m.bind(null,ft,!1,f.queue),f=Xn(),v={state:r,dispatch:null,action:n,pending:null},f.queue=v,i=cT.bind(null,ft,v,C,i),v.dispatch=i,f.memoizedState=n,[r,i,!1]}function Oy(n){var r=bn();return zy(r,Ut,n)}function zy(n,r,i){if(r=Mm(n,r,Ay)[0],n=Fu(Da)[0],typeof r=="object"&&r!==null&&typeof r.then=="function")try{var f=Li(r)}catch(M){throw M===pl?Du:M}else f=r;r=bn();var v=r.queue,C=v.dispatch;return i!==r.memoizedState&&(ft.flags|=2048,bl(9,{destroy:void 0},uT.bind(null,v,i),null)),[f,C,n]}function uT(n,r){n.action=r}function Dy(n){var r=bn(),i=Ut;if(i!==null)return zy(r,i,n);bn(),r=r.memoizedState,i=bn();var f=i.queue.dispatch;return i.memoizedState=n,[r,f,!1]}function bl(n,r,i,f){return n={tag:n,create:i,deps:f,inst:r,next:null},r=ft.updateQueue,r===null&&(r=Vu(),ft.updateQueue=r),i=r.lastEffect,i===null?r.lastEffect=n.next=n:(f=i.next,i.next=n,n.next=f,r.lastEffect=n),n}function Py(){return bn().memoizedState}function Gu(n,r,i,f){var v=Xn();ft.flags|=n,v.memoizedState=bl(1|r,{destroy:void 0},i,f===void 0?null:f)}function Yu(n,r,i,f){var v=bn();f=f===void 0?null:f;var C=v.memoizedState.inst;Ut!==null&&f!==null&&Cm(f,Ut.memoizedState.deps)?v.memoizedState=bl(r,C,i,f):(ft.flags|=n,v.memoizedState=bl(1|r,C,i,f))}function Ly(n,r){Gu(8390656,8,n,r)}function Pm(n,r){Yu(2048,8,n,r)}function dT(n){ft.flags|=4;var r=ft.updateQueue;if(r===null)r=Vu(),ft.updateQueue=r,r.events=[n];else{var i=r.events;i===null?r.events=[n]:i.push(n)}}function Iy(n){var r=bn().memoizedState;return dT({ref:r,nextImpl:n}),function(){if((zt&2)!==0)throw Error(o(440));return r.impl.apply(void 0,arguments)}}function By(n,r){return Yu(4,2,n,r)}function Uy(n,r){return Yu(4,4,n,r)}function $y(n,r){if(typeof r=="function"){n=n();var i=r(n);return function(){typeof i=="function"?i():r(null)}}if(r!=null)return n=n(),r.current=n,function(){r.current=null}}function Hy(n,r,i){i=i!=null?i.concat([n]):null,Yu(4,4,$y.bind(null,r,n),i)}function Lm(){}function Vy(n,r){var i=bn();r=r===void 0?null:r;var f=i.memoizedState;return r!==null&&Cm(r,f[1])?f[0]:(i.memoizedState=[n,r],n)}function qy(n,r){var i=bn();r=r===void 0?null:r;var f=i.memoizedState;if(r!==null&&Cm(r,f[1]))return f[0];if(f=n(),po){_e(!0);try{n()}finally{_e(!1)}}return i.memoizedState=[f,r],f}function Im(n,r,i){return i===void 0||(za&1073741824)!==0&&(kt&261930)===0?n.memoizedState=r:(n.memoizedState=i,n=F0(),ft.lanes|=n,br|=n,i)}function Fy(n,r,i,f){return gs(i,r)?i:gl.current!==null?(n=Im(n,i,f),gs(n,r)||(jn=!0),n):(za&42)===0||(za&1073741824)!==0&&(kt&261930)===0?(jn=!0,n.memoizedState=i):(n=F0(),ft.lanes|=n,br|=n,r)}function Gy(n,r,i,f,v){var C=F.p;F.p=C!==0&&8>C?C:8;var M=H.T,q={};H.T=q,$m(n,!1,r,i);try{var Q=v(),ie=H.S;if(ie!==null&&ie(q,Q),Q!==null&&typeof Q=="object"&&typeof Q.then=="function"){var xe=oT(Q,f);Ii(n,r,xe,ys(n))}else Ii(n,r,f,ys(n))}catch(ke){Ii(n,r,{then:function(){},status:"rejected",reason:ke},ys())}finally{F.p=C,M!==null&&q.types!==null&&(M.types=q.types),H.T=M}}function fT(){}function Bm(n,r,i,f){if(n.tag!==5)throw Error(o(476));var v=Yy(n).queue;Gy(n,v,r,Y,i===null?fT:function(){return Ky(n),i(f)})}function Yy(n){var r=n.memoizedState;if(r!==null)return r;r={memoizedState:Y,baseState:Y,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Da,lastRenderedState:Y},next:null};var i={};return r.next={memoizedState:i,baseState:i,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Da,lastRenderedState:i},next:null},n.memoizedState=r,n=n.alternate,n!==null&&(n.memoizedState=r),r}function Ky(n){var r=Yy(n);r.next===null&&(r=n.alternate.memoizedState),Ii(n,r.next.queue,{},ys())}function Um(){return Bn(tc)}function Xy(){return bn().memoizedState}function Qy(){return bn().memoizedState}function pT(n){for(var r=n.return;r!==null;){switch(r.tag){case 24:case 3:var i=ys();n=fr(i);var f=pr(r,n,i);f!==null&&(us(f,r,i),Oi(f,r,i)),r={cache:gm()},n.payload=r;return}r=r.return}}function mT(n,r,i){var f=ys();i={lane:f,revertLane:0,gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null},Ku(n)?Zy(r,i):(i=am(n,r,i,f),i!==null&&(us(i,n,f),Jy(i,r,f)))}function Wy(n,r,i){var f=ys();Ii(n,r,i,f)}function Ii(n,r,i,f){var v={lane:f,revertLane:0,gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null};if(Ku(n))Zy(r,v);else{var C=n.alternate;if(n.lanes===0&&(C===null||C.lanes===0)&&(C=r.lastRenderedReducer,C!==null))try{var M=r.lastRenderedState,q=C(M,i);if(v.hasEagerState=!0,v.eagerState=q,gs(q,M))return Eu(n,r,v,0),Kt===null&&Nu(),!1}catch{}finally{}if(i=am(n,r,v,f),i!==null)return us(i,n,f),Jy(i,r,f),!0}return!1}function $m(n,r,i,f){if(f={lane:2,revertLane:_g(),gesture:null,action:f,hasEagerState:!1,eagerState:null,next:null},Ku(n)){if(r)throw Error(o(479))}else r=am(n,i,f,2),r!==null&&us(r,n,2)}function Ku(n){var r=n.alternate;return n===ft||r!==null&&r===ft}function Zy(n,r){hl=$u=!0;var i=n.pending;i===null?r.next=r:(r.next=i.next,i.next=r),n.pending=r}function Jy(n,r,i){if((i&4194048)!==0){var f=r.lanes;f&=n.pendingLanes,i|=f,r.lanes=i,qs(n,i)}}var Bi={readContext:Bn,use:qu,useCallback:dn,useContext:dn,useEffect:dn,useImperativeHandle:dn,useLayoutEffect:dn,useInsertionEffect:dn,useMemo:dn,useReducer:dn,useRef:dn,useState:dn,useDebugValue:dn,useDeferredValue:dn,useTransition:dn,useSyncExternalStore:dn,useId:dn,useHostTransitionStatus:dn,useFormState:dn,useActionState:dn,useOptimistic:dn,useMemoCache:dn,useCacheRefresh:dn};Bi.useEffectEvent=dn;var e0={readContext:Bn,use:qu,useCallback:function(n,r){return Xn().memoizedState=[n,r===void 0?null:r],n},useContext:Bn,useEffect:Ly,useImperativeHandle:function(n,r,i){i=i!=null?i.concat([n]):null,Gu(4194308,4,$y.bind(null,r,n),i)},useLayoutEffect:function(n,r){return Gu(4194308,4,n,r)},useInsertionEffect:function(n,r){Gu(4,2,n,r)},useMemo:function(n,r){var i=Xn();r=r===void 0?null:r;var f=n();if(po){_e(!0);try{n()}finally{_e(!1)}}return i.memoizedState=[f,r],f},useReducer:function(n,r,i){var f=Xn();if(i!==void 0){var v=i(r);if(po){_e(!0);try{i(r)}finally{_e(!1)}}}else v=r;return f.memoizedState=f.baseState=v,n={pending:null,lanes:0,dispatch:null,lastRenderedReducer:n,lastRenderedState:v},f.queue=n,n=n.dispatch=mT.bind(null,ft,n),[f.memoizedState,n]},useRef:function(n){var r=Xn();return n={current:n},r.memoizedState=n},useState:function(n){n=zm(n);var r=n.queue,i=Wy.bind(null,ft,r);return r.dispatch=i,[n.memoizedState,i]},useDebugValue:Lm,useDeferredValue:function(n,r){var i=Xn();return Im(i,n,r)},useTransition:function(){var n=zm(!1);return n=Gy.bind(null,ft,n.queue,!0,!1),Xn().memoizedState=n,[!1,n]},useSyncExternalStore:function(n,r,i){var f=ft,v=Xn();if(Nt){if(i===void 0)throw Error(o(407));i=i()}else{if(i=r(),Kt===null)throw Error(o(349));(kt&127)!==0||yy(f,r,i)}v.memoizedState=i;var C={value:i,getSnapshot:r};return v.queue=C,Ly(ky.bind(null,f,C,n),[n]),f.flags|=2048,bl(9,{destroy:void 0},jy.bind(null,f,C,i,r),null),i},useId:function(){var n=Xn(),r=Kt.identifierPrefix;if(Nt){var i=aa,f=sa;i=(f&~(1<<32-Pe(f)-1)).toString(32)+i,r="_"+r+"R_"+i,i=Hu++,0<i&&(r+="H"+i.toString(32)),r+="_"}else i=lT++,r="_"+r+"r_"+i.toString(32)+"_";return n.memoizedState=r},useHostTransitionStatus:Um,useFormState:My,useActionState:My,useOptimistic:function(n){var r=Xn();r.memoizedState=r.baseState=n;var i={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return r.queue=i,r=$m.bind(null,ft,!0,i),i.dispatch=r,[n,r]},useMemoCache:Am,useCacheRefresh:function(){return Xn().memoizedState=pT.bind(null,ft)},useEffectEvent:function(n){var r=Xn(),i={impl:n};return r.memoizedState=i,function(){if((zt&2)!==0)throw Error(o(440));return i.impl.apply(void 0,arguments)}}},Hm={readContext:Bn,use:qu,useCallback:Vy,useContext:Bn,useEffect:Pm,useImperativeHandle:Hy,useInsertionEffect:By,useLayoutEffect:Uy,useMemo:qy,useReducer:Fu,useRef:Py,useState:function(){return Fu(Da)},useDebugValue:Lm,useDeferredValue:function(n,r){var i=bn();return Fy(i,Ut.memoizedState,n,r)},useTransition:function(){var n=Fu(Da)[0],r=bn().memoizedState;return[typeof n=="boolean"?n:Li(n),r]},useSyncExternalStore:vy,useId:Xy,useHostTransitionStatus:Um,useFormState:Oy,useActionState:Oy,useOptimistic:function(n,r){var i=bn();return Cy(i,Ut,n,r)},useMemoCache:Am,useCacheRefresh:Qy};Hm.useEffectEvent=Iy;var t0={readContext:Bn,use:qu,useCallback:Vy,useContext:Bn,useEffect:Pm,useImperativeHandle:Hy,useInsertionEffect:By,useLayoutEffect:Uy,useMemo:qy,useReducer:Om,useRef:Py,useState:function(){return Om(Da)},useDebugValue:Lm,useDeferredValue:function(n,r){var i=bn();return Ut===null?Im(i,n,r):Fy(i,Ut.memoizedState,n,r)},useTransition:function(){var n=Om(Da)[0],r=bn().memoizedState;return[typeof n=="boolean"?n:Li(n),r]},useSyncExternalStore:vy,useId:Xy,useHostTransitionStatus:Um,useFormState:Dy,useActionState:Dy,useOptimistic:function(n,r){var i=bn();return Ut!==null?Cy(i,Ut,n,r):(i.baseState=n,[n,i.queue.dispatch])},useMemoCache:Am,useCacheRefresh:Qy};t0.useEffectEvent=Iy;function Vm(n,r,i,f){r=n.memoizedState,i=i(f,r),i=i==null?r:b({},r,i),n.memoizedState=i,n.lanes===0&&(n.updateQueue.baseState=i)}var qm={enqueueSetState:function(n,r,i){n=n._reactInternals;var f=ys(),v=fr(f);v.payload=r,i!=null&&(v.callback=i),r=pr(n,v,f),r!==null&&(us(r,n,f),Oi(r,n,f))},enqueueReplaceState:function(n,r,i){n=n._reactInternals;var f=ys(),v=fr(f);v.tag=1,v.payload=r,i!=null&&(v.callback=i),r=pr(n,v,f),r!==null&&(us(r,n,f),Oi(r,n,f))},enqueueForceUpdate:function(n,r){n=n._reactInternals;var i=ys(),f=fr(i);f.tag=2,r!=null&&(f.callback=r),r=pr(n,f,i),r!==null&&(us(r,n,i),Oi(r,n,i))}};function n0(n,r,i,f,v,C,M){return n=n.stateNode,typeof n.shouldComponentUpdate=="function"?n.shouldComponentUpdate(f,C,M):r.prototype&&r.prototype.isPureReactComponent?!Si(i,f)||!Si(v,C):!0}function s0(n,r,i,f){n=r.state,typeof r.componentWillReceiveProps=="function"&&r.componentWillReceiveProps(i,f),typeof r.UNSAFE_componentWillReceiveProps=="function"&&r.UNSAFE_componentWillReceiveProps(i,f),r.state!==n&&qm.enqueueReplaceState(r,r.state,null)}function mo(n,r){var i=r;if("ref"in r){i={};for(var f in r)f!=="ref"&&(i[f]=r[f])}if(n=n.defaultProps){i===r&&(i=b({},i));for(var v in n)i[v]===void 0&&(i[v]=n[v])}return i}function a0(n){Cu(n)}function r0(n){console.error(n)}function o0(n){Cu(n)}function Xu(n,r){try{var i=n.onUncaughtError;i(r.value,{componentStack:r.stack})}catch(f){setTimeout(function(){throw f})}}function l0(n,r,i){try{var f=n.onCaughtError;f(i.value,{componentStack:i.stack,errorBoundary:r.tag===1?r.stateNode:null})}catch(v){setTimeout(function(){throw v})}}function Fm(n,r,i){return i=fr(i),i.tag=3,i.payload={element:null},i.callback=function(){Xu(n,r)},i}function i0(n){return n=fr(n),n.tag=3,n}function c0(n,r,i,f){var v=i.type.getDerivedStateFromError;if(typeof v=="function"){var C=f.value;n.payload=function(){return v(C)},n.callback=function(){l0(r,i,f)}}var M=i.stateNode;M!==null&&typeof M.componentDidCatch=="function"&&(n.callback=function(){l0(r,i,f),typeof v!="function"&&(_r===null?_r=new Set([this]):_r.add(this));var q=f.stack;this.componentDidCatch(f.value,{componentStack:q!==null?q:""})})}function gT(n,r,i,f,v){if(i.flags|=32768,f!==null&&typeof f=="object"&&typeof f.then=="function"){if(r=i.alternate,r!==null&&ul(r,i,v,!0),i=xs.current,i!==null){switch(i.tag){case 31:case 13:return zs===null?ld():i.alternate===null&&fn===0&&(fn=3),i.flags&=-257,i.flags|=65536,i.lanes=v,f===Pu?i.flags|=16384:(r=i.updateQueue,r===null?i.updateQueue=new Set([f]):r.add(f),hg(n,f,v)),!1;case 22:return i.flags|=65536,f===Pu?i.flags|=16384:(r=i.updateQueue,r===null?(r={transitions:null,markerInstances:null,retryQueue:new Set([f])},i.updateQueue=r):(i=r.retryQueue,i===null?r.retryQueue=new Set([f]):i.add(f)),hg(n,f,v)),!1}throw Error(o(435,i.tag))}return hg(n,f,v),ld(),!1}if(Nt)return r=xs.current,r!==null?((r.flags&65536)===0&&(r.flags|=256),r.flags|=65536,r.lanes=v,f!==um&&(n=Error(o(422),{cause:f}),Ei(Ts(n,i)))):(f!==um&&(r=Error(o(423),{cause:f}),Ei(Ts(r,i))),n=n.current.alternate,n.flags|=65536,v&=-v,n.lanes|=v,f=Ts(f,i),v=Fm(n.stateNode,f,v),ym(n,v),fn!==4&&(fn=2)),!1;var C=Error(o(520),{cause:f});if(C=Ts(C,i),Yi===null?Yi=[C]:Yi.push(C),fn!==4&&(fn=2),r===null)return!0;f=Ts(f,i),i=r;do{switch(i.tag){case 3:return i.flags|=65536,n=v&-v,i.lanes|=n,n=Fm(i.stateNode,f,n),ym(i,n),!1;case 1:if(r=i.type,C=i.stateNode,(i.flags&128)===0&&(typeof r.getDerivedStateFromError=="function"||C!==null&&typeof C.componentDidCatch=="function"&&(_r===null||!_r.has(C))))return i.flags|=65536,v&=-v,i.lanes|=v,v=i0(v),c0(v,n,i,f),ym(i,v),!1}i=i.return}while(i!==null);return!1}var Gm=Error(o(461)),jn=!1;function Un(n,r,i,f){r.child=n===null?py(r,null,i,f):fo(r,n.child,i,f)}function u0(n,r,i,f,v){i=i.render;var C=r.ref;if("ref"in f){var M={};for(var q in f)q!=="ref"&&(M[q]=f[q])}else M=f;return lo(r),f=Nm(n,r,i,M,C,v),q=Em(),n!==null&&!jn?(Rm(n,r,v),Pa(n,r,v)):(Nt&&q&&im(r),r.flags|=1,Un(n,r,f,v),r.child)}function d0(n,r,i,f,v){if(n===null){var C=i.type;return typeof C=="function"&&!rm(C)&&C.defaultProps===void 0&&i.compare===null?(r.tag=15,r.type=C,f0(n,r,C,f,v)):(n=Tu(i.type,null,f,r,r.mode,v),n.ref=r.ref,n.return=r,r.child=n)}if(C=n.child,!eg(n,v)){var M=C.memoizedProps;if(i=i.compare,i=i!==null?i:Si,i(M,f)&&n.ref===r.ref)return Pa(n,r,v)}return r.flags|=1,n=Ta(C,f),n.ref=r.ref,n.return=r,r.child=n}function f0(n,r,i,f,v){if(n!==null){var C=n.memoizedProps;if(Si(C,f)&&n.ref===r.ref)if(jn=!1,r.pendingProps=f=C,eg(n,v))(n.flags&131072)!==0&&(jn=!0);else return r.lanes=n.lanes,Pa(n,r,v)}return Ym(n,r,i,f,v)}function p0(n,r,i,f){var v=f.children,C=n!==null?n.memoizedState:null;if(n===null&&r.stateNode===null&&(r.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),f.mode==="hidden"){if((r.flags&128)!==0){if(C=C!==null?C.baseLanes|i:i,n!==null){for(f=r.child=n.child,v=0;f!==null;)v=v|f.lanes|f.childLanes,f=f.sibling;f=v&~C}else f=0,r.child=null;return m0(n,r,C,i,f)}if((i&536870912)!==0)r.memoizedState={baseLanes:0,cachePool:null},n!==null&&zu(r,C!==null?C.cachePool:null),C!==null?hy(r,C):km(),xy(r);else return f=r.lanes=536870912,m0(n,r,C!==null?C.baseLanes|i:i,i,f)}else C!==null?(zu(r,C.cachePool),hy(r,C),gr(),r.memoizedState=null):(n!==null&&zu(r,null),km(),gr());return Un(n,r,v,i),r.child}function Ui(n,r){return n!==null&&n.tag===22||r.stateNode!==null||(r.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),r.sibling}function m0(n,r,i,f,v){var C=xm();return C=C===null?null:{parent:vn._currentValue,pool:C},r.memoizedState={baseLanes:i,cachePool:C},n!==null&&zu(r,null),km(),xy(r),n!==null&&ul(n,r,f,!0),r.childLanes=v,null}function Qu(n,r){return r=Zu({mode:r.mode,children:r.children},n.mode),r.ref=n.ref,n.child=r,r.return=n,r}function g0(n,r,i){return fo(r,n.child,null,i),n=Qu(r,r.pendingProps),n.flags|=2,bs(r),r.memoizedState=null,n}function hT(n,r,i){var f=r.pendingProps,v=(r.flags&128)!==0;if(r.flags&=-129,n===null){if(Nt){if(f.mode==="hidden")return n=Qu(r,f),r.lanes=536870912,Ui(null,n);if(Sm(r),(n=en)?(n=N1(n,Os),n=n!==null&&n.data==="&"?n:null,n!==null&&(r.memoizedState={dehydrated:n,treeContext:lr!==null?{id:sa,overflow:aa}:null,retryLane:536870912,hydrationErrors:null},i=Zv(n),i.return=r,r.child=i,In=r,en=null)):n=null,n===null)throw cr(r);return r.lanes=536870912,null}return Qu(r,f)}var C=n.memoizedState;if(C!==null){var M=C.dehydrated;if(Sm(r),v)if(r.flags&256)r.flags&=-257,r=g0(n,r,i);else if(r.memoizedState!==null)r.child=n.child,r.flags|=128,r=null;else throw Error(o(558));else if(jn||ul(n,r,i,!1),v=(i&n.childLanes)!==0,jn||v){if(f=Kt,f!==null&&(M=Ca(f,i),M!==0&&M!==C.retryLane))throw C.retryLane=M,so(n,M),us(f,n,M),Gm;ld(),r=g0(n,r,i)}else n=C.treeContext,en=Ds(M.nextSibling),In=r,Nt=!0,ir=null,Os=!1,n!==null&&ty(r,n),r=Qu(r,f),r.flags|=4096;return r}return n=Ta(n.child,{mode:f.mode,children:f.children}),n.ref=r.ref,r.child=n,n.return=r,n}function Wu(n,r){var i=r.ref;if(i===null)n!==null&&n.ref!==null&&(r.flags|=4194816);else{if(typeof i!="function"&&typeof i!="object")throw Error(o(284));(n===null||n.ref!==i)&&(r.flags|=4194816)}}function Ym(n,r,i,f,v){return lo(r),i=Nm(n,r,i,f,void 0,v),f=Em(),n!==null&&!jn?(Rm(n,r,v),Pa(n,r,v)):(Nt&&f&&im(r),r.flags|=1,Un(n,r,i,v),r.child)}function h0(n,r,i,f,v,C){return lo(r),r.updateQueue=null,i=_y(r,f,i,v),by(n),f=Em(),n!==null&&!jn?(Rm(n,r,C),Pa(n,r,C)):(Nt&&f&&im(r),r.flags|=1,Un(n,r,i,C),r.child)}function x0(n,r,i,f,v){if(lo(r),r.stateNode===null){var C=ol,M=i.contextType;typeof M=="object"&&M!==null&&(C=Bn(M)),C=new i(f,C),r.memoizedState=C.state!==null&&C.state!==void 0?C.state:null,C.updater=qm,r.stateNode=C,C._reactInternals=r,C=r.stateNode,C.props=f,C.state=r.memoizedState,C.refs={},_m(r),M=i.contextType,C.context=typeof M=="object"&&M!==null?Bn(M):ol,C.state=r.memoizedState,M=i.getDerivedStateFromProps,typeof M=="function"&&(Vm(r,i,M,f),C.state=r.memoizedState),typeof i.getDerivedStateFromProps=="function"||typeof C.getSnapshotBeforeUpdate=="function"||typeof C.UNSAFE_componentWillMount!="function"&&typeof C.componentWillMount!="function"||(M=C.state,typeof C.componentWillMount=="function"&&C.componentWillMount(),typeof C.UNSAFE_componentWillMount=="function"&&C.UNSAFE_componentWillMount(),M!==C.state&&qm.enqueueReplaceState(C,C.state,null),Di(r,f,C,v),zi(),C.state=r.memoizedState),typeof C.componentDidMount=="function"&&(r.flags|=4194308),f=!0}else if(n===null){C=r.stateNode;var q=r.memoizedProps,Q=mo(i,q);C.props=Q;var ie=C.context,xe=i.contextType;M=ol,typeof xe=="object"&&xe!==null&&(M=Bn(xe));var ke=i.getDerivedStateFromProps;xe=typeof ke=="function"||typeof C.getSnapshotBeforeUpdate=="function",q=r.pendingProps!==q,xe||typeof C.UNSAFE_componentWillReceiveProps!="function"&&typeof C.componentWillReceiveProps!="function"||(q||ie!==M)&&s0(r,C,f,M),dr=!1;var ce=r.memoizedState;C.state=ce,Di(r,f,C,v),zi(),ie=r.memoizedState,q||ce!==ie||dr?(typeof ke=="function"&&(Vm(r,i,ke,f),ie=r.memoizedState),(Q=dr||n0(r,i,Q,f,ce,ie,M))?(xe||typeof C.UNSAFE_componentWillMount!="function"&&typeof C.componentWillMount!="function"||(typeof C.componentWillMount=="function"&&C.componentWillMount(),typeof C.UNSAFE_componentWillMount=="function"&&C.UNSAFE_componentWillMount()),typeof C.componentDidMount=="function"&&(r.flags|=4194308)):(typeof C.componentDidMount=="function"&&(r.flags|=4194308),r.memoizedProps=f,r.memoizedState=ie),C.props=f,C.state=ie,C.context=M,f=Q):(typeof C.componentDidMount=="function"&&(r.flags|=4194308),f=!1)}else{C=r.stateNode,vm(n,r),M=r.memoizedProps,xe=mo(i,M),C.props=xe,ke=r.pendingProps,ce=C.context,ie=i.contextType,Q=ol,typeof ie=="object"&&ie!==null&&(Q=Bn(ie)),q=i.getDerivedStateFromProps,(ie=typeof q=="function"||typeof C.getSnapshotBeforeUpdate=="function")||typeof C.UNSAFE_componentWillReceiveProps!="function"&&typeof C.componentWillReceiveProps!="function"||(M!==ke||ce!==Q)&&s0(r,C,f,Q),dr=!1,ce=r.memoizedState,C.state=ce,Di(r,f,C,v),zi();var pe=r.memoizedState;M!==ke||ce!==pe||dr||n!==null&&n.dependencies!==null&&Mu(n.dependencies)?(typeof q=="function"&&(Vm(r,i,q,f),pe=r.memoizedState),(xe=dr||n0(r,i,xe,f,ce,pe,Q)||n!==null&&n.dependencies!==null&&Mu(n.dependencies))?(ie||typeof C.UNSAFE_componentWillUpdate!="function"&&typeof C.componentWillUpdate!="function"||(typeof C.componentWillUpdate=="function"&&C.componentWillUpdate(f,pe,Q),typeof C.UNSAFE_componentWillUpdate=="function"&&C.UNSAFE_componentWillUpdate(f,pe,Q)),typeof C.componentDidUpdate=="function"&&(r.flags|=4),typeof C.getSnapshotBeforeUpdate=="function"&&(r.flags|=1024)):(typeof C.componentDidUpdate!="function"||M===n.memoizedProps&&ce===n.memoizedState||(r.flags|=4),typeof C.getSnapshotBeforeUpdate!="function"||M===n.memoizedProps&&ce===n.memoizedState||(r.flags|=1024),r.memoizedProps=f,r.memoizedState=pe),C.props=f,C.state=pe,C.context=Q,f=xe):(typeof C.componentDidUpdate!="function"||M===n.memoizedProps&&ce===n.memoizedState||(r.flags|=4),typeof C.getSnapshotBeforeUpdate!="function"||M===n.memoizedProps&&ce===n.memoizedState||(r.flags|=1024),f=!1)}return C=f,Wu(n,r),f=(r.flags&128)!==0,C||f?(C=r.stateNode,i=f&&typeof i.getDerivedStateFromError!="function"?null:C.render(),r.flags|=1,n!==null&&f?(r.child=fo(r,n.child,null,v),r.child=fo(r,null,i,v)):Un(n,r,i,v),r.memoizedState=C.state,n=r.child):n=Pa(n,r,v),n}function b0(n,r,i,f){return ro(),r.flags|=256,Un(n,r,i,f),r.child}var Km={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function Xm(n){return{baseLanes:n,cachePool:ly()}}function Qm(n,r,i){return n=n!==null?n.childLanes&~i:0,r&&(n|=vs),n}function _0(n,r,i){var f=r.pendingProps,v=!1,C=(r.flags&128)!==0,M;if((M=C)||(M=n!==null&&n.memoizedState===null?!1:(xn.current&2)!==0),M&&(v=!0,r.flags&=-129),M=(r.flags&32)!==0,r.flags&=-33,n===null){if(Nt){if(v?mr(r):gr(),(n=en)?(n=N1(n,Os),n=n!==null&&n.data!=="&"?n:null,n!==null&&(r.memoizedState={dehydrated:n,treeContext:lr!==null?{id:sa,overflow:aa}:null,retryLane:536870912,hydrationErrors:null},i=Zv(n),i.return=r,r.child=i,In=r,en=null)):n=null,n===null)throw cr(r);return Mg(n)?r.lanes=32:r.lanes=536870912,null}var q=f.children;return f=f.fallback,v?(gr(),v=r.mode,q=Zu({mode:"hidden",children:q},v),f=ao(f,v,i,null),q.return=r,f.return=r,q.sibling=f,r.child=q,f=r.child,f.memoizedState=Xm(i),f.childLanes=Qm(n,M,i),r.memoizedState=Km,Ui(null,f)):(mr(r),Wm(r,q))}var Q=n.memoizedState;if(Q!==null&&(q=Q.dehydrated,q!==null)){if(C)r.flags&256?(mr(r),r.flags&=-257,r=Zm(n,r,i)):r.memoizedState!==null?(gr(),r.child=n.child,r.flags|=128,r=null):(gr(),q=f.fallback,v=r.mode,f=Zu({mode:"visible",children:f.children},v),q=ao(q,v,i,null),q.flags|=2,f.return=r,q.return=r,f.sibling=q,r.child=f,fo(r,n.child,null,i),f=r.child,f.memoizedState=Xm(i),f.childLanes=Qm(n,M,i),r.memoizedState=Km,r=Ui(null,f));else if(mr(r),Mg(q)){if(M=q.nextSibling&&q.nextSibling.dataset,M)var ie=M.dgst;M=ie,f=Error(o(419)),f.stack="",f.digest=M,Ei({value:f,source:null,stack:null}),r=Zm(n,r,i)}else if(jn||ul(n,r,i,!1),M=(i&n.childLanes)!==0,jn||M){if(M=Kt,M!==null&&(f=Ca(M,i),f!==0&&f!==Q.retryLane))throw Q.retryLane=f,so(n,f),us(M,n,f),Gm;Ag(q)||ld(),r=Zm(n,r,i)}else Ag(q)?(r.flags|=192,r.child=n.child,r=null):(n=Q.treeContext,en=Ds(q.nextSibling),In=r,Nt=!0,ir=null,Os=!1,n!==null&&ty(r,n),r=Wm(r,f.children),r.flags|=4096);return r}return v?(gr(),q=f.fallback,v=r.mode,Q=n.child,ie=Q.sibling,f=Ta(Q,{mode:"hidden",children:f.children}),f.subtreeFlags=Q.subtreeFlags&65011712,ie!==null?q=Ta(ie,q):(q=ao(q,v,i,null),q.flags|=2),q.return=r,f.return=r,f.sibling=q,r.child=f,Ui(null,f),f=r.child,q=n.child.memoizedState,q===null?q=Xm(i):(v=q.cachePool,v!==null?(Q=vn._currentValue,v=v.parent!==Q?{parent:Q,pool:Q}:v):v=ly(),q={baseLanes:q.baseLanes|i,cachePool:v}),f.memoizedState=q,f.childLanes=Qm(n,M,i),r.memoizedState=Km,Ui(n.child,f)):(mr(r),i=n.child,n=i.sibling,i=Ta(i,{mode:"visible",children:f.children}),i.return=r,i.sibling=null,n!==null&&(M=r.deletions,M===null?(r.deletions=[n],r.flags|=16):M.push(n)),r.child=i,r.memoizedState=null,i)}function Wm(n,r){return r=Zu({mode:"visible",children:r},n.mode),r.return=n,n.child=r}function Zu(n,r){return n=hs(22,n,null,r),n.lanes=0,n}function Zm(n,r,i){return fo(r,n.child,null,i),n=Wm(r,r.pendingProps.children),n.flags|=2,r.memoizedState=null,n}function v0(n,r,i){n.lanes|=r;var f=n.alternate;f!==null&&(f.lanes|=r),pm(n.return,r,i)}function Jm(n,r,i,f,v,C){var M=n.memoizedState;M===null?n.memoizedState={isBackwards:r,rendering:null,renderingStartTime:0,last:f,tail:i,tailMode:v,treeForkCount:C}:(M.isBackwards=r,M.rendering=null,M.renderingStartTime=0,M.last=f,M.tail=i,M.tailMode=v,M.treeForkCount=C)}function y0(n,r,i){var f=r.pendingProps,v=f.revealOrder,C=f.tail;f=f.children;var M=xn.current,q=(M&2)!==0;if(q?(M=M&1|2,r.flags|=128):M&=1,Z(xn,M),Un(n,r,f,i),f=Nt?Ni:0,!q&&n!==null&&(n.flags&128)!==0)e:for(n=r.child;n!==null;){if(n.tag===13)n.memoizedState!==null&&v0(n,i,r);else if(n.tag===19)v0(n,i,r);else if(n.child!==null){n.child.return=n,n=n.child;continue}if(n===r)break e;for(;n.sibling===null;){if(n.return===null||n.return===r)break e;n=n.return}n.sibling.return=n.return,n=n.sibling}switch(v){case"forwards":for(i=r.child,v=null;i!==null;)n=i.alternate,n!==null&&Uu(n)===null&&(v=i),i=i.sibling;i=v,i===null?(v=r.child,r.child=null):(v=i.sibling,i.sibling=null),Jm(r,!1,v,i,C,f);break;case"backwards":case"unstable_legacy-backwards":for(i=null,v=r.child,r.child=null;v!==null;){if(n=v.alternate,n!==null&&Uu(n)===null){r.child=v;break}n=v.sibling,v.sibling=i,i=v,v=n}Jm(r,!0,i,null,C,f);break;case"together":Jm(r,!1,null,null,void 0,f);break;default:r.memoizedState=null}return r.child}function Pa(n,r,i){if(n!==null&&(r.dependencies=n.dependencies),br|=r.lanes,(i&r.childLanes)===0)if(n!==null){if(ul(n,r,i,!1),(i&r.childLanes)===0)return null}else return null;if(n!==null&&r.child!==n.child)throw Error(o(153));if(r.child!==null){for(n=r.child,i=Ta(n,n.pendingProps),r.child=i,i.return=r;n.sibling!==null;)n=n.sibling,i=i.sibling=Ta(n,n.pendingProps),i.return=r;i.sibling=null}return r.child}function eg(n,r){return(n.lanes&r)!==0?!0:(n=n.dependencies,!!(n!==null&&Mu(n)))}function xT(n,r,i){switch(r.tag){case 3:le(r,r.stateNode.containerInfo),ur(r,vn,n.memoizedState.cache),ro();break;case 27:case 5:Me(r);break;case 4:le(r,r.stateNode.containerInfo);break;case 10:ur(r,r.type,r.memoizedProps.value);break;case 31:if(r.memoizedState!==null)return r.flags|=128,Sm(r),null;break;case 13:var f=r.memoizedState;if(f!==null)return f.dehydrated!==null?(mr(r),r.flags|=128,null):(i&r.child.childLanes)!==0?_0(n,r,i):(mr(r),n=Pa(n,r,i),n!==null?n.sibling:null);mr(r);break;case 19:var v=(n.flags&128)!==0;if(f=(i&r.childLanes)!==0,f||(ul(n,r,i,!1),f=(i&r.childLanes)!==0),v){if(f)return y0(n,r,i);r.flags|=128}if(v=r.memoizedState,v!==null&&(v.rendering=null,v.tail=null,v.lastEffect=null),Z(xn,xn.current),f)break;return null;case 22:return r.lanes=0,p0(n,r,i,r.pendingProps);case 24:ur(r,vn,n.memoizedState.cache)}return Pa(n,r,i)}function j0(n,r,i){if(n!==null)if(n.memoizedProps!==r.pendingProps)jn=!0;else{if(!eg(n,i)&&(r.flags&128)===0)return jn=!1,xT(n,r,i);jn=(n.flags&131072)!==0}else jn=!1,Nt&&(r.flags&1048576)!==0&&ey(r,Ni,r.index);switch(r.lanes=0,r.tag){case 16:e:{var f=r.pendingProps;if(n=co(r.elementType),r.type=n,typeof n=="function")rm(n)?(f=mo(n,f),r.tag=1,r=x0(null,r,n,f,i)):(r.tag=0,r=Ym(null,r,n,f,i));else{if(n!=null){var v=n.$$typeof;if(v===R){r.tag=11,r=u0(null,r,n,f,i);break e}else if(v===O){r.tag=14,r=d0(null,r,n,f,i);break e}}throw r=$(n)||n,Error(o(306,r,""))}}return r;case 0:return Ym(n,r,r.type,r.pendingProps,i);case 1:return f=r.type,v=mo(f,r.pendingProps),x0(n,r,f,v,i);case 3:e:{if(le(r,r.stateNode.containerInfo),n===null)throw Error(o(387));f=r.pendingProps;var C=r.memoizedState;v=C.element,vm(n,r),Di(r,f,null,i);var M=r.memoizedState;if(f=M.cache,ur(r,vn,f),f!==C.cache&&mm(r,[vn],i,!0),zi(),f=M.element,C.isDehydrated)if(C={element:f,isDehydrated:!1,cache:M.cache},r.updateQueue.baseState=C,r.memoizedState=C,r.flags&256){r=b0(n,r,f,i);break e}else if(f!==v){v=Ts(Error(o(424)),r),Ei(v),r=b0(n,r,f,i);break e}else{switch(n=r.stateNode.containerInfo,n.nodeType){case 9:n=n.body;break;default:n=n.nodeName==="HTML"?n.ownerDocument.body:n}for(en=Ds(n.firstChild),In=r,Nt=!0,ir=null,Os=!0,i=py(r,null,f,i),r.child=i;i;)i.flags=i.flags&-3|4096,i=i.sibling}else{if(ro(),f===v){r=Pa(n,r,i);break e}Un(n,r,f,i)}r=r.child}return r;case 26:return Wu(n,r),n===null?(i=O1(r.type,null,r.pendingProps,null))?r.memoizedState=i:Nt||(i=r.type,n=r.pendingProps,f=md(ee.current).createElement(i),f[Yt]=r,f[Ln]=n,$n(f,i,n),Rn(f),r.stateNode=f):r.memoizedState=O1(r.type,n.memoizedProps,r.pendingProps,n.memoizedState),null;case 27:return Me(r),n===null&&Nt&&(f=r.stateNode=T1(r.type,r.pendingProps,ee.current),In=r,Os=!0,v=en,kr(r.type)?(Og=v,en=Ds(f.firstChild)):en=v),Un(n,r,r.pendingProps.children,i),Wu(n,r),n===null&&(r.flags|=4194304),r.child;case 5:return n===null&&Nt&&((v=f=en)&&(f=YT(f,r.type,r.pendingProps,Os),f!==null?(r.stateNode=f,In=r,en=Ds(f.firstChild),Os=!1,v=!0):v=!1),v||cr(r)),Me(r),v=r.type,C=r.pendingProps,M=n!==null?n.memoizedProps:null,f=C.children,Eg(v,C)?f=null:M!==null&&Eg(v,M)&&(r.flags|=32),r.memoizedState!==null&&(v=Nm(n,r,iT,null,null,i),tc._currentValue=v),Wu(n,r),Un(n,r,f,i),r.child;case 6:return n===null&&Nt&&((n=i=en)&&(i=KT(i,r.pendingProps,Os),i!==null?(r.stateNode=i,In=r,en=null,n=!0):n=!1),n||cr(r)),null;case 13:return _0(n,r,i);case 4:return le(r,r.stateNode.containerInfo),f=r.pendingProps,n===null?r.child=fo(r,null,f,i):Un(n,r,f,i),r.child;case 11:return u0(n,r,r.type,r.pendingProps,i);case 7:return Un(n,r,r.pendingProps,i),r.child;case 8:return Un(n,r,r.pendingProps.children,i),r.child;case 12:return Un(n,r,r.pendingProps.children,i),r.child;case 10:return f=r.pendingProps,ur(r,r.type,f.value),Un(n,r,f.children,i),r.child;case 9:return v=r.type._context,f=r.pendingProps.children,lo(r),v=Bn(v),f=f(v),r.flags|=1,Un(n,r,f,i),r.child;case 14:return d0(n,r,r.type,r.pendingProps,i);case 15:return f0(n,r,r.type,r.pendingProps,i);case 19:return y0(n,r,i);case 31:return hT(n,r,i);case 22:return p0(n,r,i,r.pendingProps);case 24:return lo(r),f=Bn(vn),n===null?(v=xm(),v===null&&(v=Kt,C=gm(),v.pooledCache=C,C.refCount++,C!==null&&(v.pooledCacheLanes|=i),v=C),r.memoizedState={parent:f,cache:v},_m(r),ur(r,vn,v)):((n.lanes&i)!==0&&(vm(n,r),Di(r,null,null,i),zi()),v=n.memoizedState,C=r.memoizedState,v.parent!==f?(v={parent:f,cache:f},r.memoizedState=v,r.lanes===0&&(r.memoizedState=r.updateQueue.baseState=v),ur(r,vn,f)):(f=C.cache,ur(r,vn,f),f!==v.cache&&mm(r,[vn],i,!0))),Un(n,r,r.pendingProps.children,i),r.child;case 29:throw r.pendingProps}throw Error(o(156,r.tag))}function La(n){n.flags|=4}function tg(n,r,i,f,v){if((r=(n.mode&32)!==0)&&(r=!1),r){if(n.flags|=16777216,(v&335544128)===v)if(n.stateNode.complete)n.flags|=8192;else if(X0())n.flags|=8192;else throw uo=Pu,bm}else n.flags&=-16777217}function k0(n,r){if(r.type!=="stylesheet"||(r.state.loading&4)!==0)n.flags&=-16777217;else if(n.flags|=16777216,!I1(r))if(X0())n.flags|=8192;else throw uo=Pu,bm}function Ju(n,r){r!==null&&(n.flags|=4),n.flags&16384&&(r=n.tag!==22?ms():536870912,n.lanes|=r,jl|=r)}function $i(n,r){if(!Nt)switch(n.tailMode){case"hidden":r=n.tail;for(var i=null;r!==null;)r.alternate!==null&&(i=r),r=r.sibling;i===null?n.tail=null:i.sibling=null;break;case"collapsed":i=n.tail;for(var f=null;i!==null;)i.alternate!==null&&(f=i),i=i.sibling;f===null?r||n.tail===null?n.tail=null:n.tail.sibling=null:f.sibling=null}}function tn(n){var r=n.alternate!==null&&n.alternate.child===n.child,i=0,f=0;if(r)for(var v=n.child;v!==null;)i|=v.lanes|v.childLanes,f|=v.subtreeFlags&65011712,f|=v.flags&65011712,v.return=n,v=v.sibling;else for(v=n.child;v!==null;)i|=v.lanes|v.childLanes,f|=v.subtreeFlags,f|=v.flags,v.return=n,v=v.sibling;return n.subtreeFlags|=f,n.childLanes=i,r}function bT(n,r,i){var f=r.pendingProps;switch(cm(r),r.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return tn(r),null;case 1:return tn(r),null;case 3:return i=r.stateNode,f=null,n!==null&&(f=n.memoizedState.cache),r.memoizedState.cache!==f&&(r.flags|=2048),Oa(vn),me(),i.pendingContext&&(i.context=i.pendingContext,i.pendingContext=null),(n===null||n.child===null)&&(cl(r)?La(r):n===null||n.memoizedState.isDehydrated&&(r.flags&256)===0||(r.flags|=1024,dm())),tn(r),null;case 26:var v=r.type,C=r.memoizedState;return n===null?(La(r),C!==null?(tn(r),k0(r,C)):(tn(r),tg(r,v,null,f,i))):C?C!==n.memoizedState?(La(r),tn(r),k0(r,C)):(tn(r),r.flags&=-16777217):(n=n.memoizedProps,n!==f&&La(r),tn(r),tg(r,v,n,f,i)),null;case 27:if(de(r),i=ee.current,v=r.type,n!==null&&r.stateNode!=null)n.memoizedProps!==f&&La(r);else{if(!f){if(r.stateNode===null)throw Error(o(166));return tn(r),null}n=te.current,cl(r)?ny(r):(n=T1(v,f,i),r.stateNode=n,La(r))}return tn(r),null;case 5:if(de(r),v=r.type,n!==null&&r.stateNode!=null)n.memoizedProps!==f&&La(r);else{if(!f){if(r.stateNode===null)throw Error(o(166));return tn(r),null}if(C=te.current,cl(r))ny(r);else{var M=md(ee.current);switch(C){case 1:C=M.createElementNS("http://www.w3.org/2000/svg",v);break;case 2:C=M.createElementNS("http://www.w3.org/1998/Math/MathML",v);break;default:switch(v){case"svg":C=M.createElementNS("http://www.w3.org/2000/svg",v);break;case"math":C=M.createElementNS("http://www.w3.org/1998/Math/MathML",v);break;case"script":C=M.createElement("div"),C.innerHTML="<script><\/script>",C=C.removeChild(C.firstChild);break;case"select":C=typeof f.is=="string"?M.createElement("select",{is:f.is}):M.createElement("select"),f.multiple?C.multiple=!0:f.size&&(C.size=f.size);break;default:C=typeof f.is=="string"?M.createElement(v,{is:f.is}):M.createElement(v)}}C[Yt]=r,C[Ln]=f;e:for(M=r.child;M!==null;){if(M.tag===5||M.tag===6)C.appendChild(M.stateNode);else if(M.tag!==4&&M.tag!==27&&M.child!==null){M.child.return=M,M=M.child;continue}if(M===r)break e;for(;M.sibling===null;){if(M.return===null||M.return===r)break e;M=M.return}M.sibling.return=M.return,M=M.sibling}r.stateNode=C;e:switch($n(C,v,f),v){case"button":case"input":case"select":case"textarea":f=!!f.autoFocus;break e;case"img":f=!0;break e;default:f=!1}f&&La(r)}}return tn(r),tg(r,r.type,n===null?null:n.memoizedProps,r.pendingProps,i),null;case 6:if(n&&r.stateNode!=null)n.memoizedProps!==f&&La(r);else{if(typeof f!="string"&&r.stateNode===null)throw Error(o(166));if(n=ee.current,cl(r)){if(n=r.stateNode,i=r.memoizedProps,f=null,v=In,v!==null)switch(v.tag){case 27:case 5:f=v.memoizedProps}n[Yt]=r,n=!!(n.nodeValue===i||f!==null&&f.suppressHydrationWarning===!0||_1(n.nodeValue,i)),n||cr(r,!0)}else n=md(n).createTextNode(f),n[Yt]=r,r.stateNode=n}return tn(r),null;case 31:if(i=r.memoizedState,n===null||n.memoizedState!==null){if(f=cl(r),i!==null){if(n===null){if(!f)throw Error(o(318));if(n=r.memoizedState,n=n!==null?n.dehydrated:null,!n)throw Error(o(557));n[Yt]=r}else ro(),(r.flags&128)===0&&(r.memoizedState=null),r.flags|=4;tn(r),n=!1}else i=dm(),n!==null&&n.memoizedState!==null&&(n.memoizedState.hydrationErrors=i),n=!0;if(!n)return r.flags&256?(bs(r),r):(bs(r),null);if((r.flags&128)!==0)throw Error(o(558))}return tn(r),null;case 13:if(f=r.memoizedState,n===null||n.memoizedState!==null&&n.memoizedState.dehydrated!==null){if(v=cl(r),f!==null&&f.dehydrated!==null){if(n===null){if(!v)throw Error(o(318));if(v=r.memoizedState,v=v!==null?v.dehydrated:null,!v)throw Error(o(317));v[Yt]=r}else ro(),(r.flags&128)===0&&(r.memoizedState=null),r.flags|=4;tn(r),v=!1}else v=dm(),n!==null&&n.memoizedState!==null&&(n.memoizedState.hydrationErrors=v),v=!0;if(!v)return r.flags&256?(bs(r),r):(bs(r),null)}return bs(r),(r.flags&128)!==0?(r.lanes=i,r):(i=f!==null,n=n!==null&&n.memoizedState!==null,i&&(f=r.child,v=null,f.alternate!==null&&f.alternate.memoizedState!==null&&f.alternate.memoizedState.cachePool!==null&&(v=f.alternate.memoizedState.cachePool.pool),C=null,f.memoizedState!==null&&f.memoizedState.cachePool!==null&&(C=f.memoizedState.cachePool.pool),C!==v&&(f.flags|=2048)),i!==n&&i&&(r.child.flags|=8192),Ju(r,r.updateQueue),tn(r),null);case 4:return me(),n===null&&kg(r.stateNode.containerInfo),tn(r),null;case 10:return Oa(r.type),tn(r),null;case 19:if(X(xn),f=r.memoizedState,f===null)return tn(r),null;if(v=(r.flags&128)!==0,C=f.rendering,C===null)if(v)$i(f,!1);else{if(fn!==0||n!==null&&(n.flags&128)!==0)for(n=r.child;n!==null;){if(C=Uu(n),C!==null){for(r.flags|=128,$i(f,!1),n=C.updateQueue,r.updateQueue=n,Ju(r,n),r.subtreeFlags=0,n=i,i=r.child;i!==null;)Wv(i,n),i=i.sibling;return Z(xn,xn.current&1|2),Nt&&Aa(r,f.treeForkCount),r.child}n=n.sibling}f.tail!==null&&ue()>ad&&(r.flags|=128,v=!0,$i(f,!1),r.lanes=4194304)}else{if(!v)if(n=Uu(C),n!==null){if(r.flags|=128,v=!0,n=n.updateQueue,r.updateQueue=n,Ju(r,n),$i(f,!0),f.tail===null&&f.tailMode==="hidden"&&!C.alternate&&!Nt)return tn(r),null}else 2*ue()-f.renderingStartTime>ad&&i!==536870912&&(r.flags|=128,v=!0,$i(f,!1),r.lanes=4194304);f.isBackwards?(C.sibling=r.child,r.child=C):(n=f.last,n!==null?n.sibling=C:r.child=C,f.last=C)}return f.tail!==null?(n=f.tail,f.rendering=n,f.tail=n.sibling,f.renderingStartTime=ue(),n.sibling=null,i=xn.current,Z(xn,v?i&1|2:i&1),Nt&&Aa(r,f.treeForkCount),n):(tn(r),null);case 22:case 23:return bs(r),wm(),f=r.memoizedState!==null,n!==null?n.memoizedState!==null!==f&&(r.flags|=8192):f&&(r.flags|=8192),f?(i&536870912)!==0&&(r.flags&128)===0&&(tn(r),r.subtreeFlags&6&&(r.flags|=8192)):tn(r),i=r.updateQueue,i!==null&&Ju(r,i.retryQueue),i=null,n!==null&&n.memoizedState!==null&&n.memoizedState.cachePool!==null&&(i=n.memoizedState.cachePool.pool),f=null,r.memoizedState!==null&&r.memoizedState.cachePool!==null&&(f=r.memoizedState.cachePool.pool),f!==i&&(r.flags|=2048),n!==null&&X(io),null;case 24:return i=null,n!==null&&(i=n.memoizedState.cache),r.memoizedState.cache!==i&&(r.flags|=2048),Oa(vn),tn(r),null;case 25:return null;case 30:return null}throw Error(o(156,r.tag))}function _T(n,r){switch(cm(r),r.tag){case 1:return n=r.flags,n&65536?(r.flags=n&-65537|128,r):null;case 3:return Oa(vn),me(),n=r.flags,(n&65536)!==0&&(n&128)===0?(r.flags=n&-65537|128,r):null;case 26:case 27:case 5:return de(r),null;case 31:if(r.memoizedState!==null){if(bs(r),r.alternate===null)throw Error(o(340));ro()}return n=r.flags,n&65536?(r.flags=n&-65537|128,r):null;case 13:if(bs(r),n=r.memoizedState,n!==null&&n.dehydrated!==null){if(r.alternate===null)throw Error(o(340));ro()}return n=r.flags,n&65536?(r.flags=n&-65537|128,r):null;case 19:return X(xn),null;case 4:return me(),null;case 10:return Oa(r.type),null;case 22:case 23:return bs(r),wm(),n!==null&&X(io),n=r.flags,n&65536?(r.flags=n&-65537|128,r):null;case 24:return Oa(vn),null;case 25:return null;default:return null}}function w0(n,r){switch(cm(r),r.tag){case 3:Oa(vn),me();break;case 26:case 27:case 5:de(r);break;case 4:me();break;case 31:r.memoizedState!==null&&bs(r);break;case 13:bs(r);break;case 19:X(xn);break;case 10:Oa(r.type);break;case 22:case 23:bs(r),wm(),n!==null&&X(io);break;case 24:Oa(vn)}}function Hi(n,r){try{var i=r.updateQueue,f=i!==null?i.lastEffect:null;if(f!==null){var v=f.next;i=v;do{if((i.tag&n)===n){f=void 0;var C=i.create,M=i.inst;f=C(),M.destroy=f}i=i.next}while(i!==v)}}catch(q){Lt(r,r.return,q)}}function hr(n,r,i){try{var f=r.updateQueue,v=f!==null?f.lastEffect:null;if(v!==null){var C=v.next;f=C;do{if((f.tag&n)===n){var M=f.inst,q=M.destroy;if(q!==void 0){M.destroy=void 0,v=r;var Q=i,ie=q;try{ie()}catch(xe){Lt(v,Q,xe)}}}f=f.next}while(f!==C)}}catch(xe){Lt(r,r.return,xe)}}function S0(n){var r=n.updateQueue;if(r!==null){var i=n.stateNode;try{gy(r,i)}catch(f){Lt(n,n.return,f)}}}function C0(n,r,i){i.props=mo(n.type,n.memoizedProps),i.state=n.memoizedState;try{i.componentWillUnmount()}catch(f){Lt(n,r,f)}}function Vi(n,r){try{var i=n.ref;if(i!==null){switch(n.tag){case 26:case 27:case 5:var f=n.stateNode;break;case 30:f=n.stateNode;break;default:f=n.stateNode}typeof i=="function"?n.refCleanup=i(f):i.current=f}}catch(v){Lt(n,r,v)}}function ra(n,r){var i=n.ref,f=n.refCleanup;if(i!==null)if(typeof f=="function")try{f()}catch(v){Lt(n,r,v)}finally{n.refCleanup=null,n=n.alternate,n!=null&&(n.refCleanup=null)}else if(typeof i=="function")try{i(null)}catch(v){Lt(n,r,v)}else i.current=null}function N0(n){var r=n.type,i=n.memoizedProps,f=n.stateNode;try{e:switch(r){case"button":case"input":case"select":case"textarea":i.autoFocus&&f.focus();break e;case"img":i.src?f.src=i.src:i.srcSet&&(f.srcset=i.srcSet)}}catch(v){Lt(n,n.return,v)}}function ng(n,r,i){try{var f=n.stateNode;$T(f,n.type,i,r),f[Ln]=r}catch(v){Lt(n,n.return,v)}}function E0(n){return n.tag===5||n.tag===3||n.tag===26||n.tag===27&&kr(n.type)||n.tag===4}function sg(n){e:for(;;){for(;n.sibling===null;){if(n.return===null||E0(n.return))return null;n=n.return}for(n.sibling.return=n.return,n=n.sibling;n.tag!==5&&n.tag!==6&&n.tag!==18;){if(n.tag===27&&kr(n.type)||n.flags&2||n.child===null||n.tag===4)continue e;n.child.return=n,n=n.child}if(!(n.flags&2))return n.stateNode}}function ag(n,r,i){var f=n.tag;if(f===5||f===6)n=n.stateNode,r?(i.nodeType===9?i.body:i.nodeName==="HTML"?i.ownerDocument.body:i).insertBefore(n,r):(r=i.nodeType===9?i.body:i.nodeName==="HTML"?i.ownerDocument.body:i,r.appendChild(n),i=i._reactRootContainer,i!=null||r.onclick!==null||(r.onclick=Ea));else if(f!==4&&(f===27&&kr(n.type)&&(i=n.stateNode,r=null),n=n.child,n!==null))for(ag(n,r,i),n=n.sibling;n!==null;)ag(n,r,i),n=n.sibling}function ed(n,r,i){var f=n.tag;if(f===5||f===6)n=n.stateNode,r?i.insertBefore(n,r):i.appendChild(n);else if(f!==4&&(f===27&&kr(n.type)&&(i=n.stateNode),n=n.child,n!==null))for(ed(n,r,i),n=n.sibling;n!==null;)ed(n,r,i),n=n.sibling}function R0(n){var r=n.stateNode,i=n.memoizedProps;try{for(var f=n.type,v=r.attributes;v.length;)r.removeAttributeNode(v[0]);$n(r,f,i),r[Yt]=n,r[Ln]=i}catch(C){Lt(n,n.return,C)}}var Ia=!1,kn=!1,rg=!1,T0=typeof WeakSet=="function"?WeakSet:Set,Tn=null;function vT(n,r){if(n=n.containerInfo,Cg=yd,n=Hv(n),Zp(n)){if("selectionStart"in n)var i={start:n.selectionStart,end:n.selectionEnd};else e:{i=(i=n.ownerDocument)&&i.defaultView||window;var f=i.getSelection&&i.getSelection();if(f&&f.rangeCount!==0){i=f.anchorNode;var v=f.anchorOffset,C=f.focusNode;f=f.focusOffset;try{i.nodeType,C.nodeType}catch{i=null;break e}var M=0,q=-1,Q=-1,ie=0,xe=0,ke=n,ce=null;t:for(;;){for(var pe;ke!==i||v!==0&&ke.nodeType!==3||(q=M+v),ke!==C||f!==0&&ke.nodeType!==3||(Q=M+f),ke.nodeType===3&&(M+=ke.nodeValue.length),(pe=ke.firstChild)!==null;)ce=ke,ke=pe;for(;;){if(ke===n)break t;if(ce===i&&++ie===v&&(q=M),ce===C&&++xe===f&&(Q=M),(pe=ke.nextSibling)!==null)break;ke=ce,ce=ke.parentNode}ke=pe}i=q===-1||Q===-1?null:{start:q,end:Q}}else i=null}i=i||{start:0,end:0}}else i=null;for(Ng={focusedElem:n,selectionRange:i},yd=!1,Tn=r;Tn!==null;)if(r=Tn,n=r.child,(r.subtreeFlags&1028)!==0&&n!==null)n.return=r,Tn=n;else for(;Tn!==null;){switch(r=Tn,C=r.alternate,n=r.flags,r.tag){case 0:if((n&4)!==0&&(n=r.updateQueue,n=n!==null?n.events:null,n!==null))for(i=0;i<n.length;i++)v=n[i],v.ref.impl=v.nextImpl;break;case 11:case 15:break;case 1:if((n&1024)!==0&&C!==null){n=void 0,i=r,v=C.memoizedProps,C=C.memoizedState,f=i.stateNode;try{var qe=mo(i.type,v);n=f.getSnapshotBeforeUpdate(qe,C),f.__reactInternalSnapshotBeforeUpdate=n}catch(rt){Lt(i,i.return,rt)}}break;case 3:if((n&1024)!==0){if(n=r.stateNode.containerInfo,i=n.nodeType,i===9)Tg(n);else if(i===1)switch(n.nodeName){case"HEAD":case"HTML":case"BODY":Tg(n);break;default:n.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((n&1024)!==0)throw Error(o(163))}if(n=r.sibling,n!==null){n.return=r.return,Tn=n;break}Tn=r.return}}function A0(n,r,i){var f=i.flags;switch(i.tag){case 0:case 11:case 15:Ua(n,i),f&4&&Hi(5,i);break;case 1:if(Ua(n,i),f&4)if(n=i.stateNode,r===null)try{n.componentDidMount()}catch(M){Lt(i,i.return,M)}else{var v=mo(i.type,r.memoizedProps);r=r.memoizedState;try{n.componentDidUpdate(v,r,n.__reactInternalSnapshotBeforeUpdate)}catch(M){Lt(i,i.return,M)}}f&64&&S0(i),f&512&&Vi(i,i.return);break;case 3:if(Ua(n,i),f&64&&(n=i.updateQueue,n!==null)){if(r=null,i.child!==null)switch(i.child.tag){case 27:case 5:r=i.child.stateNode;break;case 1:r=i.child.stateNode}try{gy(n,r)}catch(M){Lt(i,i.return,M)}}break;case 27:r===null&&f&4&&R0(i);case 26:case 5:Ua(n,i),r===null&&f&4&&N0(i),f&512&&Vi(i,i.return);break;case 12:Ua(n,i);break;case 31:Ua(n,i),f&4&&z0(n,i);break;case 13:Ua(n,i),f&4&&D0(n,i),f&64&&(n=i.memoizedState,n!==null&&(n=n.dehydrated,n!==null&&(i=RT.bind(null,i),XT(n,i))));break;case 22:if(f=i.memoizedState!==null||Ia,!f){r=r!==null&&r.memoizedState!==null||kn,v=Ia;var C=kn;Ia=f,(kn=r)&&!C?$a(n,i,(i.subtreeFlags&8772)!==0):Ua(n,i),Ia=v,kn=C}break;case 30:break;default:Ua(n,i)}}function M0(n){var r=n.alternate;r!==null&&(n.alternate=null,M0(r)),n.child=null,n.deletions=null,n.sibling=null,n.tag===5&&(r=n.stateNode,r!==null&&Dp(r)),n.stateNode=null,n.return=null,n.dependencies=null,n.memoizedProps=null,n.memoizedState=null,n.pendingProps=null,n.stateNode=null,n.updateQueue=null}var an=null,os=!1;function Ba(n,r,i){for(i=i.child;i!==null;)O0(n,r,i),i=i.sibling}function O0(n,r,i){if(Rt&&typeof Rt.onCommitFiberUnmount=="function")try{Rt.onCommitFiberUnmount(lt,i)}catch{}switch(i.tag){case 26:kn||ra(i,r),Ba(n,r,i),i.memoizedState?i.memoizedState.count--:i.stateNode&&(i=i.stateNode,i.parentNode.removeChild(i));break;case 27:kn||ra(i,r);var f=an,v=os;kr(i.type)&&(an=i.stateNode,os=!1),Ba(n,r,i),Zi(i.stateNode),an=f,os=v;break;case 5:kn||ra(i,r);case 6:if(f=an,v=os,an=null,Ba(n,r,i),an=f,os=v,an!==null)if(os)try{(an.nodeType===9?an.body:an.nodeName==="HTML"?an.ownerDocument.body:an).removeChild(i.stateNode)}catch(C){Lt(i,r,C)}else try{an.removeChild(i.stateNode)}catch(C){Lt(i,r,C)}break;case 18:an!==null&&(os?(n=an,S1(n.nodeType===9?n.body:n.nodeName==="HTML"?n.ownerDocument.body:n,i.stateNode),Tl(n)):S1(an,i.stateNode));break;case 4:f=an,v=os,an=i.stateNode.containerInfo,os=!0,Ba(n,r,i),an=f,os=v;break;case 0:case 11:case 14:case 15:hr(2,i,r),kn||hr(4,i,r),Ba(n,r,i);break;case 1:kn||(ra(i,r),f=i.stateNode,typeof f.componentWillUnmount=="function"&&C0(i,r,f)),Ba(n,r,i);break;case 21:Ba(n,r,i);break;case 22:kn=(f=kn)||i.memoizedState!==null,Ba(n,r,i),kn=f;break;default:Ba(n,r,i)}}function z0(n,r){if(r.memoizedState===null&&(n=r.alternate,n!==null&&(n=n.memoizedState,n!==null))){n=n.dehydrated;try{Tl(n)}catch(i){Lt(r,r.return,i)}}}function D0(n,r){if(r.memoizedState===null&&(n=r.alternate,n!==null&&(n=n.memoizedState,n!==null&&(n=n.dehydrated,n!==null))))try{Tl(n)}catch(i){Lt(r,r.return,i)}}function yT(n){switch(n.tag){case 31:case 13:case 19:var r=n.stateNode;return r===null&&(r=n.stateNode=new T0),r;case 22:return n=n.stateNode,r=n._retryCache,r===null&&(r=n._retryCache=new T0),r;default:throw Error(o(435,n.tag))}}function td(n,r){var i=yT(n);r.forEach(function(f){if(!i.has(f)){i.add(f);var v=TT.bind(null,n,f);f.then(v,v)}})}function ls(n,r){var i=r.deletions;if(i!==null)for(var f=0;f<i.length;f++){var v=i[f],C=n,M=r,q=M;e:for(;q!==null;){switch(q.tag){case 27:if(kr(q.type)){an=q.stateNode,os=!1;break e}break;case 5:an=q.stateNode,os=!1;break e;case 3:case 4:an=q.stateNode.containerInfo,os=!0;break e}q=q.return}if(an===null)throw Error(o(160));O0(C,M,v),an=null,os=!1,C=v.alternate,C!==null&&(C.return=null),v.return=null}if(r.subtreeFlags&13886)for(r=r.child;r!==null;)P0(r,n),r=r.sibling}var Gs=null;function P0(n,r){var i=n.alternate,f=n.flags;switch(n.tag){case 0:case 11:case 14:case 15:ls(r,n),is(n),f&4&&(hr(3,n,n.return),Hi(3,n),hr(5,n,n.return));break;case 1:ls(r,n),is(n),f&512&&(kn||i===null||ra(i,i.return)),f&64&&Ia&&(n=n.updateQueue,n!==null&&(f=n.callbacks,f!==null&&(i=n.shared.hiddenCallbacks,n.shared.hiddenCallbacks=i===null?f:i.concat(f))));break;case 26:var v=Gs;if(ls(r,n),is(n),f&512&&(kn||i===null||ra(i,i.return)),f&4){var C=i!==null?i.memoizedState:null;if(f=n.memoizedState,i===null)if(f===null)if(n.stateNode===null){e:{f=n.type,i=n.memoizedProps,v=v.ownerDocument||v;t:switch(f){case"title":C=v.getElementsByTagName("title")[0],(!C||C[hi]||C[Yt]||C.namespaceURI==="http://www.w3.org/2000/svg"||C.hasAttribute("itemprop"))&&(C=v.createElement(f),v.head.insertBefore(C,v.querySelector("head > title"))),$n(C,f,i),C[Yt]=n,Rn(C),f=C;break e;case"link":var M=P1("link","href",v).get(f+(i.href||""));if(M){for(var q=0;q<M.length;q++)if(C=M[q],C.getAttribute("href")===(i.href==null||i.href===""?null:i.href)&&C.getAttribute("rel")===(i.rel==null?null:i.rel)&&C.getAttribute("title")===(i.title==null?null:i.title)&&C.getAttribute("crossorigin")===(i.crossOrigin==null?null:i.crossOrigin)){M.splice(q,1);break t}}C=v.createElement(f),$n(C,f,i),v.head.appendChild(C);break;case"meta":if(M=P1("meta","content",v).get(f+(i.content||""))){for(q=0;q<M.length;q++)if(C=M[q],C.getAttribute("content")===(i.content==null?null:""+i.content)&&C.getAttribute("name")===(i.name==null?null:i.name)&&C.getAttribute("property")===(i.property==null?null:i.property)&&C.getAttribute("http-equiv")===(i.httpEquiv==null?null:i.httpEquiv)&&C.getAttribute("charset")===(i.charSet==null?null:i.charSet)){M.splice(q,1);break t}}C=v.createElement(f),$n(C,f,i),v.head.appendChild(C);break;default:throw Error(o(468,f))}C[Yt]=n,Rn(C),f=C}n.stateNode=f}else L1(v,n.type,n.stateNode);else n.stateNode=D1(v,f,n.memoizedProps);else C!==f?(C===null?i.stateNode!==null&&(i=i.stateNode,i.parentNode.removeChild(i)):C.count--,f===null?L1(v,n.type,n.stateNode):D1(v,f,n.memoizedProps)):f===null&&n.stateNode!==null&&ng(n,n.memoizedProps,i.memoizedProps)}break;case 27:ls(r,n),is(n),f&512&&(kn||i===null||ra(i,i.return)),i!==null&&f&4&&ng(n,n.memoizedProps,i.memoizedProps);break;case 5:if(ls(r,n),is(n),f&512&&(kn||i===null||ra(i,i.return)),n.flags&32){v=n.stateNode;try{Jo(v,"")}catch(qe){Lt(n,n.return,qe)}}f&4&&n.stateNode!=null&&(v=n.memoizedProps,ng(n,v,i!==null?i.memoizedProps:v)),f&1024&&(rg=!0);break;case 6:if(ls(r,n),is(n),f&4){if(n.stateNode===null)throw Error(o(162));f=n.memoizedProps,i=n.stateNode;try{i.nodeValue=f}catch(qe){Lt(n,n.return,qe)}}break;case 3:if(xd=null,v=Gs,Gs=gd(r.containerInfo),ls(r,n),Gs=v,is(n),f&4&&i!==null&&i.memoizedState.isDehydrated)try{Tl(r.containerInfo)}catch(qe){Lt(n,n.return,qe)}rg&&(rg=!1,L0(n));break;case 4:f=Gs,Gs=gd(n.stateNode.containerInfo),ls(r,n),is(n),Gs=f;break;case 12:ls(r,n),is(n);break;case 31:ls(r,n),is(n),f&4&&(f=n.updateQueue,f!==null&&(n.updateQueue=null,td(n,f)));break;case 13:ls(r,n),is(n),n.child.flags&8192&&n.memoizedState!==null!=(i!==null&&i.memoizedState!==null)&&(sd=ue()),f&4&&(f=n.updateQueue,f!==null&&(n.updateQueue=null,td(n,f)));break;case 22:v=n.memoizedState!==null;var Q=i!==null&&i.memoizedState!==null,ie=Ia,xe=kn;if(Ia=ie||v,kn=xe||Q,ls(r,n),kn=xe,Ia=ie,is(n),f&8192)e:for(r=n.stateNode,r._visibility=v?r._visibility&-2:r._visibility|1,v&&(i===null||Q||Ia||kn||go(n)),i=null,r=n;;){if(r.tag===5||r.tag===26){if(i===null){Q=i=r;try{if(C=Q.stateNode,v)M=C.style,typeof M.setProperty=="function"?M.setProperty("display","none","important"):M.display="none";else{q=Q.stateNode;var ke=Q.memoizedProps.style,ce=ke!=null&&ke.hasOwnProperty("display")?ke.display:null;q.style.display=ce==null||typeof ce=="boolean"?"":(""+ce).trim()}}catch(qe){Lt(Q,Q.return,qe)}}}else if(r.tag===6){if(i===null){Q=r;try{Q.stateNode.nodeValue=v?"":Q.memoizedProps}catch(qe){Lt(Q,Q.return,qe)}}}else if(r.tag===18){if(i===null){Q=r;try{var pe=Q.stateNode;v?C1(pe,!0):C1(Q.stateNode,!1)}catch(qe){Lt(Q,Q.return,qe)}}}else if((r.tag!==22&&r.tag!==23||r.memoizedState===null||r===n)&&r.child!==null){r.child.return=r,r=r.child;continue}if(r===n)break e;for(;r.sibling===null;){if(r.return===null||r.return===n)break e;i===r&&(i=null),r=r.return}i===r&&(i=null),r.sibling.return=r.return,r=r.sibling}f&4&&(f=n.updateQueue,f!==null&&(i=f.retryQueue,i!==null&&(f.retryQueue=null,td(n,i))));break;case 19:ls(r,n),is(n),f&4&&(f=n.updateQueue,f!==null&&(n.updateQueue=null,td(n,f)));break;case 30:break;case 21:break;default:ls(r,n),is(n)}}function is(n){var r=n.flags;if(r&2){try{for(var i,f=n.return;f!==null;){if(E0(f)){i=f;break}f=f.return}if(i==null)throw Error(o(160));switch(i.tag){case 27:var v=i.stateNode,C=sg(n);ed(n,C,v);break;case 5:var M=i.stateNode;i.flags&32&&(Jo(M,""),i.flags&=-33);var q=sg(n);ed(n,q,M);break;case 3:case 4:var Q=i.stateNode.containerInfo,ie=sg(n);ag(n,ie,Q);break;default:throw Error(o(161))}}catch(xe){Lt(n,n.return,xe)}n.flags&=-3}r&4096&&(n.flags&=-4097)}function L0(n){if(n.subtreeFlags&1024)for(n=n.child;n!==null;){var r=n;L0(r),r.tag===5&&r.flags&1024&&r.stateNode.reset(),n=n.sibling}}function Ua(n,r){if(r.subtreeFlags&8772)for(r=r.child;r!==null;)A0(n,r.alternate,r),r=r.sibling}function go(n){for(n=n.child;n!==null;){var r=n;switch(r.tag){case 0:case 11:case 14:case 15:hr(4,r,r.return),go(r);break;case 1:ra(r,r.return);var i=r.stateNode;typeof i.componentWillUnmount=="function"&&C0(r,r.return,i),go(r);break;case 27:Zi(r.stateNode);case 26:case 5:ra(r,r.return),go(r);break;case 22:r.memoizedState===null&&go(r);break;case 30:go(r);break;default:go(r)}n=n.sibling}}function $a(n,r,i){for(i=i&&(r.subtreeFlags&8772)!==0,r=r.child;r!==null;){var f=r.alternate,v=n,C=r,M=C.flags;switch(C.tag){case 0:case 11:case 15:$a(v,C,i),Hi(4,C);break;case 1:if($a(v,C,i),f=C,v=f.stateNode,typeof v.componentDidMount=="function")try{v.componentDidMount()}catch(ie){Lt(f,f.return,ie)}if(f=C,v=f.updateQueue,v!==null){var q=f.stateNode;try{var Q=v.shared.hiddenCallbacks;if(Q!==null)for(v.shared.hiddenCallbacks=null,v=0;v<Q.length;v++)my(Q[v],q)}catch(ie){Lt(f,f.return,ie)}}i&&M&64&&S0(C),Vi(C,C.return);break;case 27:R0(C);case 26:case 5:$a(v,C,i),i&&f===null&&M&4&&N0(C),Vi(C,C.return);break;case 12:$a(v,C,i);break;case 31:$a(v,C,i),i&&M&4&&z0(v,C);break;case 13:$a(v,C,i),i&&M&4&&D0(v,C);break;case 22:C.memoizedState===null&&$a(v,C,i),Vi(C,C.return);break;case 30:break;default:$a(v,C,i)}r=r.sibling}}function og(n,r){var i=null;n!==null&&n.memoizedState!==null&&n.memoizedState.cachePool!==null&&(i=n.memoizedState.cachePool.pool),n=null,r.memoizedState!==null&&r.memoizedState.cachePool!==null&&(n=r.memoizedState.cachePool.pool),n!==i&&(n!=null&&n.refCount++,i!=null&&Ri(i))}function lg(n,r){n=null,r.alternate!==null&&(n=r.alternate.memoizedState.cache),r=r.memoizedState.cache,r!==n&&(r.refCount++,n!=null&&Ri(n))}function Ys(n,r,i,f){if(r.subtreeFlags&10256)for(r=r.child;r!==null;)I0(n,r,i,f),r=r.sibling}function I0(n,r,i,f){var v=r.flags;switch(r.tag){case 0:case 11:case 15:Ys(n,r,i,f),v&2048&&Hi(9,r);break;case 1:Ys(n,r,i,f);break;case 3:Ys(n,r,i,f),v&2048&&(n=null,r.alternate!==null&&(n=r.alternate.memoizedState.cache),r=r.memoizedState.cache,r!==n&&(r.refCount++,n!=null&&Ri(n)));break;case 12:if(v&2048){Ys(n,r,i,f),n=r.stateNode;try{var C=r.memoizedProps,M=C.id,q=C.onPostCommit;typeof q=="function"&&q(M,r.alternate===null?"mount":"update",n.passiveEffectDuration,-0)}catch(Q){Lt(r,r.return,Q)}}else Ys(n,r,i,f);break;case 31:Ys(n,r,i,f);break;case 13:Ys(n,r,i,f);break;case 23:break;case 22:C=r.stateNode,M=r.alternate,r.memoizedState!==null?C._visibility&2?Ys(n,r,i,f):qi(n,r):C._visibility&2?Ys(n,r,i,f):(C._visibility|=2,_l(n,r,i,f,(r.subtreeFlags&10256)!==0||!1)),v&2048&&og(M,r);break;case 24:Ys(n,r,i,f),v&2048&&lg(r.alternate,r);break;default:Ys(n,r,i,f)}}function _l(n,r,i,f,v){for(v=v&&((r.subtreeFlags&10256)!==0||!1),r=r.child;r!==null;){var C=n,M=r,q=i,Q=f,ie=M.flags;switch(M.tag){case 0:case 11:case 15:_l(C,M,q,Q,v),Hi(8,M);break;case 23:break;case 22:var xe=M.stateNode;M.memoizedState!==null?xe._visibility&2?_l(C,M,q,Q,v):qi(C,M):(xe._visibility|=2,_l(C,M,q,Q,v)),v&&ie&2048&&og(M.alternate,M);break;case 24:_l(C,M,q,Q,v),v&&ie&2048&&lg(M.alternate,M);break;default:_l(C,M,q,Q,v)}r=r.sibling}}function qi(n,r){if(r.subtreeFlags&10256)for(r=r.child;r!==null;){var i=n,f=r,v=f.flags;switch(f.tag){case 22:qi(i,f),v&2048&&og(f.alternate,f);break;case 24:qi(i,f),v&2048&&lg(f.alternate,f);break;default:qi(i,f)}r=r.sibling}}var Fi=8192;function vl(n,r,i){if(n.subtreeFlags&Fi)for(n=n.child;n!==null;)B0(n,r,i),n=n.sibling}function B0(n,r,i){switch(n.tag){case 26:vl(n,r,i),n.flags&Fi&&n.memoizedState!==null&&lA(i,Gs,n.memoizedState,n.memoizedProps);break;case 5:vl(n,r,i);break;case 3:case 4:var f=Gs;Gs=gd(n.stateNode.containerInfo),vl(n,r,i),Gs=f;break;case 22:n.memoizedState===null&&(f=n.alternate,f!==null&&f.memoizedState!==null?(f=Fi,Fi=16777216,vl(n,r,i),Fi=f):vl(n,r,i));break;default:vl(n,r,i)}}function U0(n){var r=n.alternate;if(r!==null&&(n=r.child,n!==null)){r.child=null;do r=n.sibling,n.sibling=null,n=r;while(n!==null)}}function Gi(n){var r=n.deletions;if((n.flags&16)!==0){if(r!==null)for(var i=0;i<r.length;i++){var f=r[i];Tn=f,H0(f,n)}U0(n)}if(n.subtreeFlags&10256)for(n=n.child;n!==null;)$0(n),n=n.sibling}function $0(n){switch(n.tag){case 0:case 11:case 15:Gi(n),n.flags&2048&&hr(9,n,n.return);break;case 3:Gi(n);break;case 12:Gi(n);break;case 22:var r=n.stateNode;n.memoizedState!==null&&r._visibility&2&&(n.return===null||n.return.tag!==13)?(r._visibility&=-3,nd(n)):Gi(n);break;default:Gi(n)}}function nd(n){var r=n.deletions;if((n.flags&16)!==0){if(r!==null)for(var i=0;i<r.length;i++){var f=r[i];Tn=f,H0(f,n)}U0(n)}for(n=n.child;n!==null;){switch(r=n,r.tag){case 0:case 11:case 15:hr(8,r,r.return),nd(r);break;case 22:i=r.stateNode,i._visibility&2&&(i._visibility&=-3,nd(r));break;default:nd(r)}n=n.sibling}}function H0(n,r){for(;Tn!==null;){var i=Tn;switch(i.tag){case 0:case 11:case 15:hr(8,i,r);break;case 23:case 22:if(i.memoizedState!==null&&i.memoizedState.cachePool!==null){var f=i.memoizedState.cachePool.pool;f!=null&&f.refCount++}break;case 24:Ri(i.memoizedState.cache)}if(f=i.child,f!==null)f.return=i,Tn=f;else e:for(i=n;Tn!==null;){f=Tn;var v=f.sibling,C=f.return;if(M0(f),f===i){Tn=null;break e}if(v!==null){v.return=C,Tn=v;break e}Tn=C}}}var jT={getCacheForType:function(n){var r=Bn(vn),i=r.data.get(n);return i===void 0&&(i=n(),r.data.set(n,i)),i},cacheSignal:function(){return Bn(vn).controller.signal}},kT=typeof WeakMap=="function"?WeakMap:Map,zt=0,Kt=null,yt=null,kt=0,Pt=0,_s=null,xr=!1,yl=!1,ig=!1,Ha=0,fn=0,br=0,ho=0,cg=0,vs=0,jl=0,Yi=null,cs=null,ug=!1,sd=0,V0=0,ad=1/0,rd=null,_r=null,Sn=0,vr=null,kl=null,Va=0,dg=0,fg=null,q0=null,Ki=0,pg=null;function ys(){return(zt&2)!==0&&kt!==0?kt&-kt:H.T!==null?_g():hn()}function F0(){if(vs===0)if((kt&536870912)===0||Nt){var n=Ot;Ot<<=1,(Ot&3932160)===0&&(Ot=262144),vs=n}else vs=536870912;return n=xs.current,n!==null&&(n.flags|=32),vs}function us(n,r,i){(n===Kt&&(Pt===2||Pt===9)||n.cancelPendingCommit!==null)&&(wl(n,0),yr(n,kt,vs,!1)),gn(n,i),((zt&2)===0||n!==Kt)&&(n===Kt&&((zt&2)===0&&(ho|=i),fn===4&&yr(n,kt,vs,!1)),oa(n))}function G0(n,r,i){if((zt&6)!==0)throw Error(o(327));var f=!i&&(r&127)===0&&(r&n.expiredLanes)===0||mn(n,r),v=f?CT(n,r):gg(n,r,!0),C=f;do{if(v===0){yl&&!f&&yr(n,r,0,!1);break}else{if(i=n.current.alternate,C&&!wT(i)){v=gg(n,r,!1),C=!1;continue}if(v===2){if(C=r,n.errorRecoveryDisabledLanes&C)var M=0;else M=n.pendingLanes&-536870913,M=M!==0?M:M&536870912?536870912:0;if(M!==0){r=M;e:{var q=n;v=Yi;var Q=q.current.memoizedState.isDehydrated;if(Q&&(wl(q,M).flags|=256),M=gg(q,M,!1),M!==2){if(ig&&!Q){q.errorRecoveryDisabledLanes|=C,ho|=C,v=4;break e}C=cs,cs=v,C!==null&&(cs===null?cs=C:cs.push.apply(cs,C))}v=M}if(C=!1,v!==2)continue}}if(v===1){wl(n,0),yr(n,r,0,!0);break}e:{switch(f=n,C=v,C){case 0:case 1:throw Error(o(345));case 4:if((r&4194048)!==r)break;case 6:yr(f,r,vs,!xr);break e;case 2:cs=null;break;case 3:case 5:break;default:throw Error(o(329))}if((r&62914560)===r&&(v=sd+300-ue(),10<v)){if(yr(f,r,vs,!xr),Jt(f,0,!0)!==0)break e;Va=r,f.timeoutHandle=k1(Y0.bind(null,f,i,cs,rd,ug,r,vs,ho,jl,xr,C,"Throttled",-0,0),v);break e}Y0(f,i,cs,rd,ug,r,vs,ho,jl,xr,C,null,-0,0)}}break}while(!0);oa(n)}function Y0(n,r,i,f,v,C,M,q,Q,ie,xe,ke,ce,pe){if(n.timeoutHandle=-1,ke=r.subtreeFlags,ke&8192||(ke&16785408)===16785408){ke={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:Ea},B0(r,C,ke);var qe=(C&62914560)===C?sd-ue():(C&4194048)===C?V0-ue():0;if(qe=iA(ke,qe),qe!==null){Va=C,n.cancelPendingCommit=qe(t1.bind(null,n,r,C,i,f,v,M,q,Q,xe,ke,null,ce,pe)),yr(n,C,M,!ie);return}}t1(n,r,C,i,f,v,M,q,Q)}function wT(n){for(var r=n;;){var i=r.tag;if((i===0||i===11||i===15)&&r.flags&16384&&(i=r.updateQueue,i!==null&&(i=i.stores,i!==null)))for(var f=0;f<i.length;f++){var v=i[f],C=v.getSnapshot;v=v.value;try{if(!gs(C(),v))return!1}catch{return!1}}if(i=r.child,r.subtreeFlags&16384&&i!==null)i.return=r,r=i;else{if(r===n)break;for(;r.sibling===null;){if(r.return===null||r.return===n)return!0;r=r.return}r.sibling.return=r.return,r=r.sibling}}return!0}function yr(n,r,i,f){r&=~cg,r&=~ho,n.suspendedLanes|=r,n.pingedLanes&=~r,f&&(n.warmLanes|=r),f=n.expirationTimes;for(var v=r;0<v;){var C=31-Pe(v),M=1<<C;f[C]=-1,v&=~M}i!==0&&Sa(n,i,r)}function od(){return(zt&6)===0?(Xi(0),!1):!0}function mg(){if(yt!==null){if(Pt===0)var n=yt.return;else n=yt,Ma=oo=null,Tm(n),ml=null,Ai=0,n=yt;for(;n!==null;)w0(n.alternate,n),n=n.return;yt=null}}function wl(n,r){var i=n.timeoutHandle;i!==-1&&(n.timeoutHandle=-1,qT(i)),i=n.cancelPendingCommit,i!==null&&(n.cancelPendingCommit=null,i()),Va=0,mg(),Kt=n,yt=i=Ta(n.current,null),kt=r,Pt=0,_s=null,xr=!1,yl=mn(n,r),ig=!1,jl=vs=cg=ho=br=fn=0,cs=Yi=null,ug=!1,(r&8)!==0&&(r|=r&32);var f=n.entangledLanes;if(f!==0)for(n=n.entanglements,f&=r;0<f;){var v=31-Pe(f),C=1<<v;r|=n[v],f&=~C}return Ha=r,Nu(),i}function K0(n,r){ft=null,H.H=Bi,r===pl||r===Du?(r=uy(),Pt=3):r===bm?(r=uy(),Pt=4):Pt=r===Gm?8:r!==null&&typeof r=="object"&&typeof r.then=="function"?6:1,_s=r,yt===null&&(fn=1,Xu(n,Ts(r,n.current)))}function X0(){var n=xs.current;return n===null?!0:(kt&4194048)===kt?zs===null:(kt&62914560)===kt||(kt&536870912)!==0?n===zs:!1}function Q0(){var n=H.H;return H.H=Bi,n===null?Bi:n}function W0(){var n=H.A;return H.A=jT,n}function ld(){fn=4,xr||(kt&4194048)!==kt&&xs.current!==null||(yl=!0),(br&134217727)===0&&(ho&134217727)===0||Kt===null||yr(Kt,kt,vs,!1)}function gg(n,r,i){var f=zt;zt|=2;var v=Q0(),C=W0();(Kt!==n||kt!==r)&&(rd=null,wl(n,r)),r=!1;var M=fn;e:do try{if(Pt!==0&&yt!==null){var q=yt,Q=_s;switch(Pt){case 8:mg(),M=6;break e;case 3:case 2:case 9:case 6:xs.current===null&&(r=!0);var ie=Pt;if(Pt=0,_s=null,Sl(n,q,Q,ie),i&&yl){M=0;break e}break;default:ie=Pt,Pt=0,_s=null,Sl(n,q,Q,ie)}}ST(),M=fn;break}catch(xe){K0(n,xe)}while(!0);return r&&n.shellSuspendCounter++,Ma=oo=null,zt=f,H.H=v,H.A=C,yt===null&&(Kt=null,kt=0,Nu()),M}function ST(){for(;yt!==null;)Z0(yt)}function CT(n,r){var i=zt;zt|=2;var f=Q0(),v=W0();Kt!==n||kt!==r?(rd=null,ad=ue()+500,wl(n,r)):yl=mn(n,r);e:do try{if(Pt!==0&&yt!==null){r=yt;var C=_s;t:switch(Pt){case 1:Pt=0,_s=null,Sl(n,r,C,1);break;case 2:case 9:if(iy(C)){Pt=0,_s=null,J0(r);break}r=function(){Pt!==2&&Pt!==9||Kt!==n||(Pt=7),oa(n)},C.then(r,r);break e;case 3:Pt=7;break e;case 4:Pt=5;break e;case 7:iy(C)?(Pt=0,_s=null,J0(r)):(Pt=0,_s=null,Sl(n,r,C,7));break;case 5:var M=null;switch(yt.tag){case 26:M=yt.memoizedState;case 5:case 27:var q=yt;if(M?I1(M):q.stateNode.complete){Pt=0,_s=null;var Q=q.sibling;if(Q!==null)yt=Q;else{var ie=q.return;ie!==null?(yt=ie,id(ie)):yt=null}break t}}Pt=0,_s=null,Sl(n,r,C,5);break;case 6:Pt=0,_s=null,Sl(n,r,C,6);break;case 8:mg(),fn=6;break e;default:throw Error(o(462))}}NT();break}catch(xe){K0(n,xe)}while(!0);return Ma=oo=null,H.H=f,H.A=v,zt=i,yt!==null?0:(Kt=null,kt=0,Nu(),fn)}function NT(){for(;yt!==null&&!Le();)Z0(yt)}function Z0(n){var r=j0(n.alternate,n,Ha);n.memoizedProps=n.pendingProps,r===null?id(n):yt=r}function J0(n){var r=n,i=r.alternate;switch(r.tag){case 15:case 0:r=h0(i,r,r.pendingProps,r.type,void 0,kt);break;case 11:r=h0(i,r,r.pendingProps,r.type.render,r.ref,kt);break;case 5:Tm(r);default:w0(i,r),r=yt=Wv(r,Ha),r=j0(i,r,Ha)}n.memoizedProps=n.pendingProps,r===null?id(n):yt=r}function Sl(n,r,i,f){Ma=oo=null,Tm(r),ml=null,Ai=0;var v=r.return;try{if(gT(n,v,r,i,kt)){fn=1,Xu(n,Ts(i,n.current)),yt=null;return}}catch(C){if(v!==null)throw yt=v,C;fn=1,Xu(n,Ts(i,n.current)),yt=null;return}r.flags&32768?(Nt||f===1?n=!0:yl||(kt&536870912)!==0?n=!1:(xr=n=!0,(f===2||f===9||f===3||f===6)&&(f=xs.current,f!==null&&f.tag===13&&(f.flags|=16384))),e1(r,n)):id(r)}function id(n){var r=n;do{if((r.flags&32768)!==0){e1(r,xr);return}n=r.return;var i=bT(r.alternate,r,Ha);if(i!==null){yt=i;return}if(r=r.sibling,r!==null){yt=r;return}yt=r=n}while(r!==null);fn===0&&(fn=5)}function e1(n,r){do{var i=_T(n.alternate,n);if(i!==null){i.flags&=32767,yt=i;return}if(i=n.return,i!==null&&(i.flags|=32768,i.subtreeFlags=0,i.deletions=null),!r&&(n=n.sibling,n!==null)){yt=n;return}yt=n=i}while(n!==null);fn=6,yt=null}function t1(n,r,i,f,v,C,M,q,Q){n.cancelPendingCommit=null;do cd();while(Sn!==0);if((zt&6)!==0)throw Error(o(327));if(r!==null){if(r===n.current)throw Error(o(177));if(C=r.lanes|r.childLanes,C|=sm,Cs(n,i,C,M,q,Q),n===Kt&&(yt=Kt=null,kt=0),kl=r,vr=n,Va=i,dg=C,fg=v,q0=f,(r.subtreeFlags&10256)!==0||(r.flags&10256)!==0?(n.callbackNode=null,n.callbackPriority=0,AT(Oe,function(){return o1(),null})):(n.callbackNode=null,n.callbackPriority=0),f=(r.flags&13878)!==0,(r.subtreeFlags&13878)!==0||f){f=H.T,H.T=null,v=F.p,F.p=2,M=zt,zt|=4;try{vT(n,r,i)}finally{zt=M,F.p=v,H.T=f}}Sn=1,n1(),s1(),a1()}}function n1(){if(Sn===1){Sn=0;var n=vr,r=kl,i=(r.flags&13878)!==0;if((r.subtreeFlags&13878)!==0||i){i=H.T,H.T=null;var f=F.p;F.p=2;var v=zt;zt|=4;try{P0(r,n);var C=Ng,M=Hv(n.containerInfo),q=C.focusedElem,Q=C.selectionRange;if(M!==q&&q&&q.ownerDocument&&$v(q.ownerDocument.documentElement,q)){if(Q!==null&&Zp(q)){var ie=Q.start,xe=Q.end;if(xe===void 0&&(xe=ie),"selectionStart"in q)q.selectionStart=ie,q.selectionEnd=Math.min(xe,q.value.length);else{var ke=q.ownerDocument||document,ce=ke&&ke.defaultView||window;if(ce.getSelection){var pe=ce.getSelection(),qe=q.textContent.length,rt=Math.min(Q.start,qe),Ht=Q.end===void 0?rt:Math.min(Q.end,qe);!pe.extend&&rt>Ht&&(M=Ht,Ht=rt,rt=M);var J=Uv(q,rt),W=Uv(q,Ht);if(J&&W&&(pe.rangeCount!==1||pe.anchorNode!==J.node||pe.anchorOffset!==J.offset||pe.focusNode!==W.node||pe.focusOffset!==W.offset)){var oe=ke.createRange();oe.setStart(J.node,J.offset),pe.removeAllRanges(),rt>Ht?(pe.addRange(oe),pe.extend(W.node,W.offset)):(oe.setEnd(W.node,W.offset),pe.addRange(oe))}}}}for(ke=[],pe=q;pe=pe.parentNode;)pe.nodeType===1&&ke.push({element:pe,left:pe.scrollLeft,top:pe.scrollTop});for(typeof q.focus=="function"&&q.focus(),q=0;q<ke.length;q++){var ve=ke[q];ve.element.scrollLeft=ve.left,ve.element.scrollTop=ve.top}}yd=!!Cg,Ng=Cg=null}finally{zt=v,F.p=f,H.T=i}}n.current=r,Sn=2}}function s1(){if(Sn===2){Sn=0;var n=vr,r=kl,i=(r.flags&8772)!==0;if((r.subtreeFlags&8772)!==0||i){i=H.T,H.T=null;var f=F.p;F.p=2;var v=zt;zt|=4;try{A0(n,r.alternate,r)}finally{zt=v,F.p=f,H.T=i}}Sn=3}}function a1(){if(Sn===4||Sn===3){Sn=0,Ie();var n=vr,r=kl,i=Va,f=q0;(r.subtreeFlags&10256)!==0||(r.flags&10256)!==0?Sn=5:(Sn=0,kl=vr=null,r1(n,n.pendingLanes));var v=n.pendingLanes;if(v===0&&(_r=null),Bt(i),r=r.stateNode,Rt&&typeof Rt.onCommitFiberRoot=="function")try{Rt.onCommitFiberRoot(lt,r,void 0,(r.current.flags&128)===128)}catch{}if(f!==null){r=H.T,v=F.p,F.p=2,H.T=null;try{for(var C=n.onRecoverableError,M=0;M<f.length;M++){var q=f[M];C(q.value,{componentStack:q.stack})}}finally{H.T=r,F.p=v}}(Va&3)!==0&&cd(),oa(n),v=n.pendingLanes,(i&261930)!==0&&(v&42)!==0?n===pg?Ki++:(Ki=0,pg=n):Ki=0,Xi(0)}}function r1(n,r){(n.pooledCacheLanes&=r)===0&&(r=n.pooledCache,r!=null&&(n.pooledCache=null,Ri(r)))}function cd(){return n1(),s1(),a1(),o1()}function o1(){if(Sn!==5)return!1;var n=vr,r=dg;dg=0;var i=Bt(Va),f=H.T,v=F.p;try{F.p=32>i?32:i,H.T=null,i=fg,fg=null;var C=vr,M=Va;if(Sn=0,kl=vr=null,Va=0,(zt&6)!==0)throw Error(o(331));var q=zt;if(zt|=4,$0(C.current),I0(C,C.current,M,i),zt=q,Xi(0,!1),Rt&&typeof Rt.onPostCommitFiberRoot=="function")try{Rt.onPostCommitFiberRoot(lt,C)}catch{}return!0}finally{F.p=v,H.T=f,r1(n,r)}}function l1(n,r,i){r=Ts(i,r),r=Fm(n.stateNode,r,2),n=pr(n,r,2),n!==null&&(gn(n,2),oa(n))}function Lt(n,r,i){if(n.tag===3)l1(n,n,i);else for(;r!==null;){if(r.tag===3){l1(r,n,i);break}else if(r.tag===1){var f=r.stateNode;if(typeof r.type.getDerivedStateFromError=="function"||typeof f.componentDidCatch=="function"&&(_r===null||!_r.has(f))){n=Ts(i,n),i=i0(2),f=pr(r,i,2),f!==null&&(c0(i,f,r,n),gn(f,2),oa(f));break}}r=r.return}}function hg(n,r,i){var f=n.pingCache;if(f===null){f=n.pingCache=new kT;var v=new Set;f.set(r,v)}else v=f.get(r),v===void 0&&(v=new Set,f.set(r,v));v.has(i)||(ig=!0,v.add(i),n=ET.bind(null,n,r,i),r.then(n,n))}function ET(n,r,i){var f=n.pingCache;f!==null&&f.delete(r),n.pingedLanes|=n.suspendedLanes&i,n.warmLanes&=~i,Kt===n&&(kt&i)===i&&(fn===4||fn===3&&(kt&62914560)===kt&&300>ue()-sd?(zt&2)===0&&wl(n,0):cg|=i,jl===kt&&(jl=0)),oa(n)}function i1(n,r){r===0&&(r=ms()),n=so(n,r),n!==null&&(gn(n,r),oa(n))}function RT(n){var r=n.memoizedState,i=0;r!==null&&(i=r.retryLane),i1(n,i)}function TT(n,r){var i=0;switch(n.tag){case 31:case 13:var f=n.stateNode,v=n.memoizedState;v!==null&&(i=v.retryLane);break;case 19:f=n.stateNode;break;case 22:f=n.stateNode._retryCache;break;default:throw Error(o(314))}f!==null&&f.delete(r),i1(n,i)}function AT(n,r){return Ee(n,r)}var ud=null,Cl=null,xg=!1,dd=!1,bg=!1,jr=0;function oa(n){n!==Cl&&n.next===null&&(Cl===null?ud=Cl=n:Cl=Cl.next=n),dd=!0,xg||(xg=!0,OT())}function Xi(n,r){if(!bg&&dd){bg=!0;do for(var i=!1,f=ud;f!==null;){if(n!==0){var v=f.pendingLanes;if(v===0)var C=0;else{var M=f.suspendedLanes,q=f.pingedLanes;C=(1<<31-Pe(42|n)+1)-1,C&=v&~(M&~q),C=C&201326741?C&201326741|1:C?C|2:0}C!==0&&(i=!0,f1(f,C))}else C=kt,C=Jt(f,f===Kt?C:0,f.cancelPendingCommit!==null||f.timeoutHandle!==-1),(C&3)===0||mn(f,C)||(i=!0,f1(f,C));f=f.next}while(i);bg=!1}}function MT(){c1()}function c1(){dd=xg=!1;var n=0;jr!==0&&VT()&&(n=jr);for(var r=ue(),i=null,f=ud;f!==null;){var v=f.next,C=u1(f,r);C===0?(f.next=null,i===null?ud=v:i.next=v,v===null&&(Cl=i)):(i=f,(n!==0||(C&3)!==0)&&(dd=!0)),f=v}Sn!==0&&Sn!==5||Xi(n),jr!==0&&(jr=0)}function u1(n,r){for(var i=n.suspendedLanes,f=n.pingedLanes,v=n.expirationTimes,C=n.pendingLanes&-62914561;0<C;){var M=31-Pe(C),q=1<<M,Q=v[M];Q===-1?((q&i)===0||(q&f)!==0)&&(v[M]=as(q,r)):Q<=r&&(n.expiredLanes|=q),C&=~q}if(r=Kt,i=kt,i=Jt(n,n===r?i:0,n.cancelPendingCommit!==null||n.timeoutHandle!==-1),f=n.callbackNode,i===0||n===r&&(Pt===2||Pt===9)||n.cancelPendingCommit!==null)return f!==null&&f!==null&&De(f),n.callbackNode=null,n.callbackPriority=0;if((i&3)===0||mn(n,i)){if(r=i&-i,r===n.callbackPriority)return r;switch(f!==null&&De(f),Bt(i)){case 2:case 8:i=Re;break;case 32:i=Oe;break;case 268435456:i=ot;break;default:i=Oe}return f=d1.bind(null,n),i=Ee(i,f),n.callbackPriority=r,n.callbackNode=i,r}return f!==null&&f!==null&&De(f),n.callbackPriority=2,n.callbackNode=null,2}function d1(n,r){if(Sn!==0&&Sn!==5)return n.callbackNode=null,n.callbackPriority=0,null;var i=n.callbackNode;if(cd()&&n.callbackNode!==i)return null;var f=kt;return f=Jt(n,n===Kt?f:0,n.cancelPendingCommit!==null||n.timeoutHandle!==-1),f===0?null:(G0(n,f,r),u1(n,ue()),n.callbackNode!=null&&n.callbackNode===i?d1.bind(null,n):null)}function f1(n,r){if(cd())return null;G0(n,r,!0)}function OT(){FT(function(){(zt&6)!==0?Ee(Ge,MT):c1()})}function _g(){if(jr===0){var n=dl;n===0&&(n=mt,mt<<=1,(mt&261888)===0&&(mt=256)),jr=n}return jr}function p1(n){return n==null||typeof n=="symbol"||typeof n=="boolean"?null:typeof n=="function"?n:_u(""+n)}function m1(n,r){var i=r.ownerDocument.createElement("input");return i.name=r.name,i.value=r.value,n.id&&i.setAttribute("form",n.id),r.parentNode.insertBefore(i,r),n=new FormData(n),i.parentNode.removeChild(i),n}function zT(n,r,i,f,v){if(r==="submit"&&i&&i.stateNode===v){var C=p1((v[Ln]||null).action),M=f.submitter;M&&(r=(r=M[Ln]||null)?p1(r.formAction):M.getAttribute("formAction"),r!==null&&(C=r,M=null));var q=new ku("action","action",null,f,v);n.push({event:q,listeners:[{instance:null,listener:function(){if(f.defaultPrevented){if(jr!==0){var Q=M?m1(v,M):new FormData(v);Bm(i,{pending:!0,data:Q,method:v.method,action:C},null,Q)}}else typeof C=="function"&&(q.preventDefault(),Q=M?m1(v,M):new FormData(v),Bm(i,{pending:!0,data:Q,method:v.method,action:C},C,Q))},currentTarget:v}]})}}for(var vg=0;vg<nm.length;vg++){var yg=nm[vg],DT=yg.toLowerCase(),PT=yg[0].toUpperCase()+yg.slice(1);Fs(DT,"on"+PT)}Fs(Fv,"onAnimationEnd"),Fs(Gv,"onAnimationIteration"),Fs(Yv,"onAnimationStart"),Fs("dblclick","onDoubleClick"),Fs("focusin","onFocus"),Fs("focusout","onBlur"),Fs(ZR,"onTransitionRun"),Fs(JR,"onTransitionStart"),Fs(eT,"onTransitionCancel"),Fs(Kv,"onTransitionEnd"),Wo("onMouseEnter",["mouseout","mouseover"]),Wo("onMouseLeave",["mouseout","mouseover"]),Wo("onPointerEnter",["pointerout","pointerover"]),Wo("onPointerLeave",["pointerout","pointerover"]),Jr("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),Jr("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),Jr("onBeforeInput",["compositionend","keypress","textInput","paste"]),Jr("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),Jr("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),Jr("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Qi="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(" "),LT=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(Qi));function g1(n,r){r=(r&4)!==0;for(var i=0;i<n.length;i++){var f=n[i],v=f.event;f=f.listeners;e:{var C=void 0;if(r)for(var M=f.length-1;0<=M;M--){var q=f[M],Q=q.instance,ie=q.currentTarget;if(q=q.listener,Q!==C&&v.isPropagationStopped())break e;C=q,v.currentTarget=ie;try{C(v)}catch(xe){Cu(xe)}v.currentTarget=null,C=Q}else for(M=0;M<f.length;M++){if(q=f[M],Q=q.instance,ie=q.currentTarget,q=q.listener,Q!==C&&v.isPropagationStopped())break e;C=q,v.currentTarget=ie;try{C(v)}catch(xe){Cu(xe)}v.currentTarget=null,C=Q}}}}function jt(n,r){var i=r[gi];i===void 0&&(i=r[gi]=new Set);var f=n+"__bubble";i.has(f)||(h1(r,n,2,!1),i.add(f))}function jg(n,r,i){var f=0;r&&(f|=4),h1(i,n,f,r)}var fd="_reactListening"+Math.random().toString(36).slice(2);function kg(n){if(!n[fd]){n[fd]=!0,cv.forEach(function(i){i!=="selectionchange"&&(LT.has(i)||jg(i,!1,n),jg(i,!0,n))});var r=n.nodeType===9?n:n.ownerDocument;r===null||r[fd]||(r[fd]=!0,jg("selectionchange",!1,r))}}function h1(n,r,i,f){switch(F1(r)){case 2:var v=dA;break;case 8:v=fA;break;default:v=Ig}i=v.bind(null,r,i,n),v=void 0,!Vp||r!=="touchstart"&&r!=="touchmove"&&r!=="wheel"||(v=!0),f?v!==void 0?n.addEventListener(r,i,{capture:!0,passive:v}):n.addEventListener(r,i,!0):v!==void 0?n.addEventListener(r,i,{passive:v}):n.addEventListener(r,i,!1)}function wg(n,r,i,f,v){var C=f;if((r&1)===0&&(r&2)===0&&f!==null)e:for(;;){if(f===null)return;var M=f.tag;if(M===3||M===4){var q=f.stateNode.containerInfo;if(q===v)break;if(M===4)for(M=f.return;M!==null;){var Q=M.tag;if((Q===3||Q===4)&&M.stateNode.containerInfo===v)return;M=M.return}for(;q!==null;){if(M=Ko(q),M===null)return;if(Q=M.tag,Q===5||Q===6||Q===26||Q===27){f=C=M;continue e}q=q.parentNode}}f=f.return}yv(function(){var ie=C,xe=$p(i),ke=[];e:{var ce=Xv.get(n);if(ce!==void 0){var pe=ku,qe=n;switch(n){case"keypress":if(yu(i)===0)break e;case"keydown":case"keyup":pe=TR;break;case"focusin":qe="focus",pe=Yp;break;case"focusout":qe="blur",pe=Yp;break;case"beforeblur":case"afterblur":pe=Yp;break;case"click":if(i.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":pe=wv;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":pe=bR;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":pe=OR;break;case Fv:case Gv:case Yv:pe=yR;break;case Kv:pe=DR;break;case"scroll":case"scrollend":pe=hR;break;case"wheel":pe=LR;break;case"copy":case"cut":case"paste":pe=kR;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":pe=Cv;break;case"toggle":case"beforetoggle":pe=BR}var rt=(r&4)!==0,Ht=!rt&&(n==="scroll"||n==="scrollend"),J=rt?ce!==null?ce+"Capture":null:ce;rt=[];for(var W=ie,oe;W!==null;){var ve=W;if(oe=ve.stateNode,ve=ve.tag,ve!==5&&ve!==26&&ve!==27||oe===null||J===null||(ve=bi(W,J),ve!=null&&rt.push(Wi(W,ve,oe))),Ht)break;W=W.return}0<rt.length&&(ce=new pe(ce,qe,null,i,xe),ke.push({event:ce,listeners:rt}))}}if((r&7)===0){e:{if(ce=n==="mouseover"||n==="pointerover",pe=n==="mouseout"||n==="pointerout",ce&&i!==Up&&(qe=i.relatedTarget||i.fromElement)&&(Ko(qe)||qe[na]))break e;if((pe||ce)&&(ce=xe.window===xe?xe:(ce=xe.ownerDocument)?ce.defaultView||ce.parentWindow:window,pe?(qe=i.relatedTarget||i.toElement,pe=ie,qe=qe?Ko(qe):null,qe!==null&&(Ht=c(qe),rt=qe.tag,qe!==Ht||rt!==5&&rt!==27&&rt!==6)&&(qe=null)):(pe=null,qe=ie),pe!==qe)){if(rt=wv,ve="onMouseLeave",J="onMouseEnter",W="mouse",(n==="pointerout"||n==="pointerover")&&(rt=Cv,ve="onPointerLeave",J="onPointerEnter",W="pointer"),Ht=pe==null?ce:xi(pe),oe=qe==null?ce:xi(qe),ce=new rt(ve,W+"leave",pe,i,xe),ce.target=Ht,ce.relatedTarget=oe,ve=null,Ko(xe)===ie&&(rt=new rt(J,W+"enter",qe,i,xe),rt.target=oe,rt.relatedTarget=Ht,ve=rt),Ht=ve,pe&&qe)t:{for(rt=IT,J=pe,W=qe,oe=0,ve=J;ve;ve=rt(ve))oe++;ve=0;for(var Je=W;Je;Je=rt(Je))ve++;for(;0<oe-ve;)J=rt(J),oe--;for(;0<ve-oe;)W=rt(W),ve--;for(;oe--;){if(J===W||W!==null&&J===W.alternate){rt=J;break t}J=rt(J),W=rt(W)}rt=null}else rt=null;pe!==null&&x1(ke,ce,pe,rt,!1),qe!==null&&Ht!==null&&x1(ke,Ht,qe,rt,!0)}}e:{if(ce=ie?xi(ie):window,pe=ce.nodeName&&ce.nodeName.toLowerCase(),pe==="select"||pe==="input"&&ce.type==="file")var Tt=zv;else if(Mv(ce))if(Dv)Tt=XR;else{Tt=YR;var Ke=GR}else pe=ce.nodeName,!pe||pe.toLowerCase()!=="input"||ce.type!=="checkbox"&&ce.type!=="radio"?ie&&Bp(ie.elementType)&&(Tt=zv):Tt=KR;if(Tt&&(Tt=Tt(n,ie))){Ov(ke,Tt,i,xe);break e}Ke&&Ke(n,ce,ie),n==="focusout"&&ie&&ce.type==="number"&&ie.memoizedProps.value!=null&&Ip(ce,"number",ce.value)}switch(Ke=ie?xi(ie):window,n){case"focusin":(Mv(Ke)||Ke.contentEditable==="true")&&(sl=Ke,Jp=ie,Ci=null);break;case"focusout":Ci=Jp=sl=null;break;case"mousedown":em=!0;break;case"contextmenu":case"mouseup":case"dragend":em=!1,Vv(ke,i,xe);break;case"selectionchange":if(WR)break;case"keydown":case"keyup":Vv(ke,i,xe)}var gt;if(Xp)e:{switch(n){case"compositionstart":var wt="onCompositionStart";break e;case"compositionend":wt="onCompositionEnd";break e;case"compositionupdate":wt="onCompositionUpdate";break e}wt=void 0}else nl?Tv(n,i)&&(wt="onCompositionEnd"):n==="keydown"&&i.keyCode===229&&(wt="onCompositionStart");wt&&(Nv&&i.locale!=="ko"&&(nl||wt!=="onCompositionStart"?wt==="onCompositionEnd"&&nl&&(gt=jv()):(or=xe,qp="value"in or?or.value:or.textContent,nl=!0)),Ke=pd(ie,wt),0<Ke.length&&(wt=new Sv(wt,n,null,i,xe),ke.push({event:wt,listeners:Ke}),gt?wt.data=gt:(gt=Av(i),gt!==null&&(wt.data=gt)))),(gt=$R?HR(n,i):VR(n,i))&&(wt=pd(ie,"onBeforeInput"),0<wt.length&&(Ke=new Sv("onBeforeInput","beforeinput",null,i,xe),ke.push({event:Ke,listeners:wt}),Ke.data=gt)),zT(ke,n,ie,i,xe)}g1(ke,r)})}function Wi(n,r,i){return{instance:n,listener:r,currentTarget:i}}function pd(n,r){for(var i=r+"Capture",f=[];n!==null;){var v=n,C=v.stateNode;if(v=v.tag,v!==5&&v!==26&&v!==27||C===null||(v=bi(n,i),v!=null&&f.unshift(Wi(n,v,C)),v=bi(n,r),v!=null&&f.push(Wi(n,v,C))),n.tag===3)return f;n=n.return}return[]}function IT(n){if(n===null)return null;do n=n.return;while(n&&n.tag!==5&&n.tag!==27);return n||null}function x1(n,r,i,f,v){for(var C=r._reactName,M=[];i!==null&&i!==f;){var q=i,Q=q.alternate,ie=q.stateNode;if(q=q.tag,Q!==null&&Q===f)break;q!==5&&q!==26&&q!==27||ie===null||(Q=ie,v?(ie=bi(i,C),ie!=null&&M.unshift(Wi(i,ie,Q))):v||(ie=bi(i,C),ie!=null&&M.push(Wi(i,ie,Q)))),i=i.return}M.length!==0&&n.push({event:r,listeners:M})}var BT=/\r\n?/g,UT=/\u0000|\uFFFD/g;function b1(n){return(typeof n=="string"?n:""+n).replace(BT,`
49
- `).replace(UT,"")}function _1(n,r){return r=b1(r),b1(n)===r}function $t(n,r,i,f,v,C){switch(i){case"children":typeof f=="string"?r==="body"||r==="textarea"&&f===""||Jo(n,f):(typeof f=="number"||typeof f=="bigint")&&r!=="body"&&Jo(n,""+f);break;case"className":xu(n,"class",f);break;case"tabIndex":xu(n,"tabindex",f);break;case"dir":case"role":case"viewBox":case"width":case"height":xu(n,i,f);break;case"style":_v(n,f,C);break;case"data":if(r!=="object"){xu(n,"data",f);break}case"src":case"href":if(f===""&&(r!=="a"||i!=="href")){n.removeAttribute(i);break}if(f==null||typeof f=="function"||typeof f=="symbol"||typeof f=="boolean"){n.removeAttribute(i);break}f=_u(""+f),n.setAttribute(i,f);break;case"action":case"formAction":if(typeof f=="function"){n.setAttribute(i,"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 C=="function"&&(i==="formAction"?(r!=="input"&&$t(n,r,"name",v.name,v,null),$t(n,r,"formEncType",v.formEncType,v,null),$t(n,r,"formMethod",v.formMethod,v,null),$t(n,r,"formTarget",v.formTarget,v,null)):($t(n,r,"encType",v.encType,v,null),$t(n,r,"method",v.method,v,null),$t(n,r,"target",v.target,v,null)));if(f==null||typeof f=="symbol"||typeof f=="boolean"){n.removeAttribute(i);break}f=_u(""+f),n.setAttribute(i,f);break;case"onClick":f!=null&&(n.onclick=Ea);break;case"onScroll":f!=null&&jt("scroll",n);break;case"onScrollEnd":f!=null&&jt("scrollend",n);break;case"dangerouslySetInnerHTML":if(f!=null){if(typeof f!="object"||!("__html"in f))throw Error(o(61));if(i=f.__html,i!=null){if(v.children!=null)throw Error(o(60));n.innerHTML=i}}break;case"multiple":n.multiple=f&&typeof f!="function"&&typeof f!="symbol";break;case"muted":n.muted=f&&typeof f!="function"&&typeof f!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(f==null||typeof f=="function"||typeof f=="boolean"||typeof f=="symbol"){n.removeAttribute("xlink:href");break}i=_u(""+f),n.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",i);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":f!=null&&typeof f!="function"&&typeof f!="symbol"?n.setAttribute(i,""+f):n.removeAttribute(i);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":f&&typeof f!="function"&&typeof f!="symbol"?n.setAttribute(i,""):n.removeAttribute(i);break;case"capture":case"download":f===!0?n.setAttribute(i,""):f!==!1&&f!=null&&typeof f!="function"&&typeof f!="symbol"?n.setAttribute(i,f):n.removeAttribute(i);break;case"cols":case"rows":case"size":case"span":f!=null&&typeof f!="function"&&typeof f!="symbol"&&!isNaN(f)&&1<=f?n.setAttribute(i,f):n.removeAttribute(i);break;case"rowSpan":case"start":f==null||typeof f=="function"||typeof f=="symbol"||isNaN(f)?n.removeAttribute(i):n.setAttribute(i,f);break;case"popover":jt("beforetoggle",n),jt("toggle",n),hu(n,"popover",f);break;case"xlinkActuate":Na(n,"http://www.w3.org/1999/xlink","xlink:actuate",f);break;case"xlinkArcrole":Na(n,"http://www.w3.org/1999/xlink","xlink:arcrole",f);break;case"xlinkRole":Na(n,"http://www.w3.org/1999/xlink","xlink:role",f);break;case"xlinkShow":Na(n,"http://www.w3.org/1999/xlink","xlink:show",f);break;case"xlinkTitle":Na(n,"http://www.w3.org/1999/xlink","xlink:title",f);break;case"xlinkType":Na(n,"http://www.w3.org/1999/xlink","xlink:type",f);break;case"xmlBase":Na(n,"http://www.w3.org/XML/1998/namespace","xml:base",f);break;case"xmlLang":Na(n,"http://www.w3.org/XML/1998/namespace","xml:lang",f);break;case"xmlSpace":Na(n,"http://www.w3.org/XML/1998/namespace","xml:space",f);break;case"is":hu(n,"is",f);break;case"innerText":case"textContent":break;default:(!(2<i.length)||i[0]!=="o"&&i[0]!=="O"||i[1]!=="n"&&i[1]!=="N")&&(i=mR.get(i)||i,hu(n,i,f))}}function Sg(n,r,i,f,v,C){switch(i){case"style":_v(n,f,C);break;case"dangerouslySetInnerHTML":if(f!=null){if(typeof f!="object"||!("__html"in f))throw Error(o(61));if(i=f.__html,i!=null){if(v.children!=null)throw Error(o(60));n.innerHTML=i}}break;case"children":typeof f=="string"?Jo(n,f):(typeof f=="number"||typeof f=="bigint")&&Jo(n,""+f);break;case"onScroll":f!=null&&jt("scroll",n);break;case"onScrollEnd":f!=null&&jt("scrollend",n);break;case"onClick":f!=null&&(n.onclick=Ea);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!uv.hasOwnProperty(i))e:{if(i[0]==="o"&&i[1]==="n"&&(v=i.endsWith("Capture"),r=i.slice(2,v?i.length-7:void 0),C=n[Ln]||null,C=C!=null?C[i]:null,typeof C=="function"&&n.removeEventListener(r,C,v),typeof f=="function")){typeof C!="function"&&C!==null&&(i in n?n[i]=null:n.hasAttribute(i)&&n.removeAttribute(i)),n.addEventListener(r,f,v);break e}i in n?n[i]=f:f===!0?n.setAttribute(i,""):hu(n,i,f)}}}function $n(n,r,i){switch(r){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":jt("error",n),jt("load",n);var f=!1,v=!1,C;for(C in i)if(i.hasOwnProperty(C)){var M=i[C];if(M!=null)switch(C){case"src":f=!0;break;case"srcSet":v=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(o(137,r));default:$t(n,r,C,M,i,null)}}v&&$t(n,r,"srcSet",i.srcSet,i,null),f&&$t(n,r,"src",i.src,i,null);return;case"input":jt("invalid",n);var q=C=M=v=null,Q=null,ie=null;for(f in i)if(i.hasOwnProperty(f)){var xe=i[f];if(xe!=null)switch(f){case"name":v=xe;break;case"type":M=xe;break;case"checked":Q=xe;break;case"defaultChecked":ie=xe;break;case"value":C=xe;break;case"defaultValue":q=xe;break;case"children":case"dangerouslySetInnerHTML":if(xe!=null)throw Error(o(137,r));break;default:$t(n,r,f,xe,i,null)}}gv(n,C,q,Q,ie,M,v,!1);return;case"select":jt("invalid",n),f=M=C=null;for(v in i)if(i.hasOwnProperty(v)&&(q=i[v],q!=null))switch(v){case"value":C=q;break;case"defaultValue":M=q;break;case"multiple":f=q;default:$t(n,r,v,q,i,null)}r=C,i=M,n.multiple=!!f,r!=null?Zo(n,!!f,r,!1):i!=null&&Zo(n,!!f,i,!0);return;case"textarea":jt("invalid",n),C=v=f=null;for(M in i)if(i.hasOwnProperty(M)&&(q=i[M],q!=null))switch(M){case"value":f=q;break;case"defaultValue":v=q;break;case"children":C=q;break;case"dangerouslySetInnerHTML":if(q!=null)throw Error(o(91));break;default:$t(n,r,M,q,i,null)}xv(n,f,v,C);return;case"option":for(Q in i)if(i.hasOwnProperty(Q)&&(f=i[Q],f!=null))switch(Q){case"selected":n.selected=f&&typeof f!="function"&&typeof f!="symbol";break;default:$t(n,r,Q,f,i,null)}return;case"dialog":jt("beforetoggle",n),jt("toggle",n),jt("cancel",n),jt("close",n);break;case"iframe":case"object":jt("load",n);break;case"video":case"audio":for(f=0;f<Qi.length;f++)jt(Qi[f],n);break;case"image":jt("error",n),jt("load",n);break;case"details":jt("toggle",n);break;case"embed":case"source":case"link":jt("error",n),jt("load",n);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(ie in i)if(i.hasOwnProperty(ie)&&(f=i[ie],f!=null))switch(ie){case"children":case"dangerouslySetInnerHTML":throw Error(o(137,r));default:$t(n,r,ie,f,i,null)}return;default:if(Bp(r)){for(xe in i)i.hasOwnProperty(xe)&&(f=i[xe],f!==void 0&&Sg(n,r,xe,f,i,void 0));return}}for(q in i)i.hasOwnProperty(q)&&(f=i[q],f!=null&&$t(n,r,q,f,i,null))}function $T(n,r,i,f){switch(r){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var v=null,C=null,M=null,q=null,Q=null,ie=null,xe=null;for(pe in i){var ke=i[pe];if(i.hasOwnProperty(pe)&&ke!=null)switch(pe){case"checked":break;case"value":break;case"defaultValue":Q=ke;default:f.hasOwnProperty(pe)||$t(n,r,pe,null,f,ke)}}for(var ce in f){var pe=f[ce];if(ke=i[ce],f.hasOwnProperty(ce)&&(pe!=null||ke!=null))switch(ce){case"type":C=pe;break;case"name":v=pe;break;case"checked":ie=pe;break;case"defaultChecked":xe=pe;break;case"value":M=pe;break;case"defaultValue":q=pe;break;case"children":case"dangerouslySetInnerHTML":if(pe!=null)throw Error(o(137,r));break;default:pe!==ke&&$t(n,r,ce,pe,f,ke)}}Lp(n,M,q,Q,ie,xe,C,v);return;case"select":pe=M=q=ce=null;for(C in i)if(Q=i[C],i.hasOwnProperty(C)&&Q!=null)switch(C){case"value":break;case"multiple":pe=Q;default:f.hasOwnProperty(C)||$t(n,r,C,null,f,Q)}for(v in f)if(C=f[v],Q=i[v],f.hasOwnProperty(v)&&(C!=null||Q!=null))switch(v){case"value":ce=C;break;case"defaultValue":q=C;break;case"multiple":M=C;default:C!==Q&&$t(n,r,v,C,f,Q)}r=q,i=M,f=pe,ce!=null?Zo(n,!!i,ce,!1):!!f!=!!i&&(r!=null?Zo(n,!!i,r,!0):Zo(n,!!i,i?[]:"",!1));return;case"textarea":pe=ce=null;for(q in i)if(v=i[q],i.hasOwnProperty(q)&&v!=null&&!f.hasOwnProperty(q))switch(q){case"value":break;case"children":break;default:$t(n,r,q,null,f,v)}for(M in f)if(v=f[M],C=i[M],f.hasOwnProperty(M)&&(v!=null||C!=null))switch(M){case"value":ce=v;break;case"defaultValue":pe=v;break;case"children":break;case"dangerouslySetInnerHTML":if(v!=null)throw Error(o(91));break;default:v!==C&&$t(n,r,M,v,f,C)}hv(n,ce,pe);return;case"option":for(var qe in i)if(ce=i[qe],i.hasOwnProperty(qe)&&ce!=null&&!f.hasOwnProperty(qe))switch(qe){case"selected":n.selected=!1;break;default:$t(n,r,qe,null,f,ce)}for(Q in f)if(ce=f[Q],pe=i[Q],f.hasOwnProperty(Q)&&ce!==pe&&(ce!=null||pe!=null))switch(Q){case"selected":n.selected=ce&&typeof ce!="function"&&typeof ce!="symbol";break;default:$t(n,r,Q,ce,f,pe)}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 rt in i)ce=i[rt],i.hasOwnProperty(rt)&&ce!=null&&!f.hasOwnProperty(rt)&&$t(n,r,rt,null,f,ce);for(ie in f)if(ce=f[ie],pe=i[ie],f.hasOwnProperty(ie)&&ce!==pe&&(ce!=null||pe!=null))switch(ie){case"children":case"dangerouslySetInnerHTML":if(ce!=null)throw Error(o(137,r));break;default:$t(n,r,ie,ce,f,pe)}return;default:if(Bp(r)){for(var Ht in i)ce=i[Ht],i.hasOwnProperty(Ht)&&ce!==void 0&&!f.hasOwnProperty(Ht)&&Sg(n,r,Ht,void 0,f,ce);for(xe in f)ce=f[xe],pe=i[xe],!f.hasOwnProperty(xe)||ce===pe||ce===void 0&&pe===void 0||Sg(n,r,xe,ce,f,pe);return}}for(var J in i)ce=i[J],i.hasOwnProperty(J)&&ce!=null&&!f.hasOwnProperty(J)&&$t(n,r,J,null,f,ce);for(ke in f)ce=f[ke],pe=i[ke],!f.hasOwnProperty(ke)||ce===pe||ce==null&&pe==null||$t(n,r,ke,ce,f,pe)}function v1(n){switch(n){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function HT(){if(typeof performance.getEntriesByType=="function"){for(var n=0,r=0,i=performance.getEntriesByType("resource"),f=0;f<i.length;f++){var v=i[f],C=v.transferSize,M=v.initiatorType,q=v.duration;if(C&&q&&v1(M)){for(M=0,q=v.responseEnd,f+=1;f<i.length;f++){var Q=i[f],ie=Q.startTime;if(ie>q)break;var xe=Q.transferSize,ke=Q.initiatorType;xe&&v1(ke)&&(Q=Q.responseEnd,M+=xe*(Q<q?1:(q-ie)/(Q-ie)))}if(--f,r+=8*(C+M)/(v.duration/1e3),n++,10<n)break}}if(0<n)return r/n/1e6}return navigator.connection&&(n=navigator.connection.downlink,typeof n=="number")?n:5}var Cg=null,Ng=null;function md(n){return n.nodeType===9?n:n.ownerDocument}function y1(n){switch(n){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function j1(n,r){if(n===0)switch(r){case"svg":return 1;case"math":return 2;default:return 0}return n===1&&r==="foreignObject"?0:n}function Eg(n,r){return n==="textarea"||n==="noscript"||typeof r.children=="string"||typeof r.children=="number"||typeof r.children=="bigint"||typeof r.dangerouslySetInnerHTML=="object"&&r.dangerouslySetInnerHTML!==null&&r.dangerouslySetInnerHTML.__html!=null}var Rg=null;function VT(){var n=window.event;return n&&n.type==="popstate"?n===Rg?!1:(Rg=n,!0):(Rg=null,!1)}var k1=typeof setTimeout=="function"?setTimeout:void 0,qT=typeof clearTimeout=="function"?clearTimeout:void 0,w1=typeof Promise=="function"?Promise:void 0,FT=typeof queueMicrotask=="function"?queueMicrotask:typeof w1<"u"?function(n){return w1.resolve(null).then(n).catch(GT)}:k1;function GT(n){setTimeout(function(){throw n})}function kr(n){return n==="head"}function S1(n,r){var i=r,f=0;do{var v=i.nextSibling;if(n.removeChild(i),v&&v.nodeType===8)if(i=v.data,i==="/$"||i==="/&"){if(f===0){n.removeChild(v),Tl(r);return}f--}else if(i==="$"||i==="$?"||i==="$~"||i==="$!"||i==="&")f++;else if(i==="html")Zi(n.ownerDocument.documentElement);else if(i==="head"){i=n.ownerDocument.head,Zi(i);for(var C=i.firstChild;C;){var M=C.nextSibling,q=C.nodeName;C[hi]||q==="SCRIPT"||q==="STYLE"||q==="LINK"&&C.rel.toLowerCase()==="stylesheet"||i.removeChild(C),C=M}}else i==="body"&&Zi(n.ownerDocument.body);i=v}while(i);Tl(r)}function C1(n,r){var i=n;n=0;do{var f=i.nextSibling;if(i.nodeType===1?r?(i._stashedDisplay=i.style.display,i.style.display="none"):(i.style.display=i._stashedDisplay||"",i.getAttribute("style")===""&&i.removeAttribute("style")):i.nodeType===3&&(r?(i._stashedText=i.nodeValue,i.nodeValue=""):i.nodeValue=i._stashedText||""),f&&f.nodeType===8)if(i=f.data,i==="/$"){if(n===0)break;n--}else i!=="$"&&i!=="$?"&&i!=="$~"&&i!=="$!"||n++;i=f}while(i)}function Tg(n){var r=n.firstChild;for(r&&r.nodeType===10&&(r=r.nextSibling);r;){var i=r;switch(r=r.nextSibling,i.nodeName){case"HTML":case"HEAD":case"BODY":Tg(i),Dp(i);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(i.rel.toLowerCase()==="stylesheet")continue}n.removeChild(i)}}function YT(n,r,i,f){for(;n.nodeType===1;){var v=i;if(n.nodeName.toLowerCase()!==r.toLowerCase()){if(!f&&(n.nodeName!=="INPUT"||n.type!=="hidden"))break}else if(f){if(!n[hi])switch(r){case"meta":if(!n.hasAttribute("itemprop"))break;return n;case"link":if(C=n.getAttribute("rel"),C==="stylesheet"&&n.hasAttribute("data-precedence"))break;if(C!==v.rel||n.getAttribute("href")!==(v.href==null||v.href===""?null:v.href)||n.getAttribute("crossorigin")!==(v.crossOrigin==null?null:v.crossOrigin)||n.getAttribute("title")!==(v.title==null?null:v.title))break;return n;case"style":if(n.hasAttribute("data-precedence"))break;return n;case"script":if(C=n.getAttribute("src"),(C!==(v.src==null?null:v.src)||n.getAttribute("type")!==(v.type==null?null:v.type)||n.getAttribute("crossorigin")!==(v.crossOrigin==null?null:v.crossOrigin))&&C&&n.hasAttribute("async")&&!n.hasAttribute("itemprop"))break;return n;default:return n}}else if(r==="input"&&n.type==="hidden"){var C=v.name==null?null:""+v.name;if(v.type==="hidden"&&n.getAttribute("name")===C)return n}else return n;if(n=Ds(n.nextSibling),n===null)break}return null}function KT(n,r,i){if(r==="")return null;for(;n.nodeType!==3;)if((n.nodeType!==1||n.nodeName!=="INPUT"||n.type!=="hidden")&&!i||(n=Ds(n.nextSibling),n===null))return null;return n}function N1(n,r){for(;n.nodeType!==8;)if((n.nodeType!==1||n.nodeName!=="INPUT"||n.type!=="hidden")&&!r||(n=Ds(n.nextSibling),n===null))return null;return n}function Ag(n){return n.data==="$?"||n.data==="$~"}function Mg(n){return n.data==="$!"||n.data==="$?"&&n.ownerDocument.readyState!=="loading"}function XT(n,r){var i=n.ownerDocument;if(n.data==="$~")n._reactRetry=r;else if(n.data!=="$?"||i.readyState!=="loading")r();else{var f=function(){r(),i.removeEventListener("DOMContentLoaded",f)};i.addEventListener("DOMContentLoaded",f),n._reactRetry=f}}function Ds(n){for(;n!=null;n=n.nextSibling){var r=n.nodeType;if(r===1||r===3)break;if(r===8){if(r=n.data,r==="$"||r==="$!"||r==="$?"||r==="$~"||r==="&"||r==="F!"||r==="F")break;if(r==="/$"||r==="/&")return null}}return n}var Og=null;function E1(n){n=n.nextSibling;for(var r=0;n;){if(n.nodeType===8){var i=n.data;if(i==="/$"||i==="/&"){if(r===0)return Ds(n.nextSibling);r--}else i!=="$"&&i!=="$!"&&i!=="$?"&&i!=="$~"&&i!=="&"||r++}n=n.nextSibling}return null}function R1(n){n=n.previousSibling;for(var r=0;n;){if(n.nodeType===8){var i=n.data;if(i==="$"||i==="$!"||i==="$?"||i==="$~"||i==="&"){if(r===0)return n;r--}else i!=="/$"&&i!=="/&"||r++}n=n.previousSibling}return null}function T1(n,r,i){switch(r=md(i),n){case"html":if(n=r.documentElement,!n)throw Error(o(452));return n;case"head":if(n=r.head,!n)throw Error(o(453));return n;case"body":if(n=r.body,!n)throw Error(o(454));return n;default:throw Error(o(451))}}function Zi(n){for(var r=n.attributes;r.length;)n.removeAttributeNode(r[0]);Dp(n)}var Ps=new Map,A1=new Set;function gd(n){return typeof n.getRootNode=="function"?n.getRootNode():n.nodeType===9?n:n.ownerDocument}var qa=F.d;F.d={f:QT,r:WT,D:ZT,C:JT,L:eA,m:tA,X:sA,S:nA,M:aA};function QT(){var n=qa.f(),r=od();return n||r}function WT(n){var r=Xo(n);r!==null&&r.tag===5&&r.type==="form"?Ky(r):qa.r(n)}var Nl=typeof document>"u"?null:document;function M1(n,r,i){var f=Nl;if(f&&typeof r=="string"&&r){var v=Es(r);v='link[rel="'+n+'"][href="'+v+'"]',typeof i=="string"&&(v+='[crossorigin="'+i+'"]'),A1.has(v)||(A1.add(v),n={rel:n,crossOrigin:i,href:r},f.querySelector(v)===null&&(r=f.createElement("link"),$n(r,"link",n),Rn(r),f.head.appendChild(r)))}}function ZT(n){qa.D(n),M1("dns-prefetch",n,null)}function JT(n,r){qa.C(n,r),M1("preconnect",n,r)}function eA(n,r,i){qa.L(n,r,i);var f=Nl;if(f&&n&&r){var v='link[rel="preload"][as="'+Es(r)+'"]';r==="image"&&i&&i.imageSrcSet?(v+='[imagesrcset="'+Es(i.imageSrcSet)+'"]',typeof i.imageSizes=="string"&&(v+='[imagesizes="'+Es(i.imageSizes)+'"]')):v+='[href="'+Es(n)+'"]';var C=v;switch(r){case"style":C=El(n);break;case"script":C=Rl(n)}Ps.has(C)||(n=b({rel:"preload",href:r==="image"&&i&&i.imageSrcSet?void 0:n,as:r},i),Ps.set(C,n),f.querySelector(v)!==null||r==="style"&&f.querySelector(Ji(C))||r==="script"&&f.querySelector(ec(C))||(r=f.createElement("link"),$n(r,"link",n),Rn(r),f.head.appendChild(r)))}}function tA(n,r){qa.m(n,r);var i=Nl;if(i&&n){var f=r&&typeof r.as=="string"?r.as:"script",v='link[rel="modulepreload"][as="'+Es(f)+'"][href="'+Es(n)+'"]',C=v;switch(f){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":C=Rl(n)}if(!Ps.has(C)&&(n=b({rel:"modulepreload",href:n},r),Ps.set(C,n),i.querySelector(v)===null)){switch(f){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(i.querySelector(ec(C)))return}f=i.createElement("link"),$n(f,"link",n),Rn(f),i.head.appendChild(f)}}}function nA(n,r,i){qa.S(n,r,i);var f=Nl;if(f&&n){var v=Qo(f).hoistableStyles,C=El(n);r=r||"default";var M=v.get(C);if(!M){var q={loading:0,preload:null};if(M=f.querySelector(Ji(C)))q.loading=5;else{n=b({rel:"stylesheet",href:n,"data-precedence":r},i),(i=Ps.get(C))&&zg(n,i);var Q=M=f.createElement("link");Rn(Q),$n(Q,"link",n),Q._p=new Promise(function(ie,xe){Q.onload=ie,Q.onerror=xe}),Q.addEventListener("load",function(){q.loading|=1}),Q.addEventListener("error",function(){q.loading|=2}),q.loading|=4,hd(M,r,f)}M={type:"stylesheet",instance:M,count:1,state:q},v.set(C,M)}}}function sA(n,r){qa.X(n,r);var i=Nl;if(i&&n){var f=Qo(i).hoistableScripts,v=Rl(n),C=f.get(v);C||(C=i.querySelector(ec(v)),C||(n=b({src:n,async:!0},r),(r=Ps.get(v))&&Dg(n,r),C=i.createElement("script"),Rn(C),$n(C,"link",n),i.head.appendChild(C)),C={type:"script",instance:C,count:1,state:null},f.set(v,C))}}function aA(n,r){qa.M(n,r);var i=Nl;if(i&&n){var f=Qo(i).hoistableScripts,v=Rl(n),C=f.get(v);C||(C=i.querySelector(ec(v)),C||(n=b({src:n,async:!0,type:"module"},r),(r=Ps.get(v))&&Dg(n,r),C=i.createElement("script"),Rn(C),$n(C,"link",n),i.head.appendChild(C)),C={type:"script",instance:C,count:1,state:null},f.set(v,C))}}function O1(n,r,i,f){var v=(v=ee.current)?gd(v):null;if(!v)throw Error(o(446));switch(n){case"meta":case"title":return null;case"style":return typeof i.precedence=="string"&&typeof i.href=="string"?(r=El(i.href),i=Qo(v).hoistableStyles,f=i.get(r),f||(f={type:"style",instance:null,count:0,state:null},i.set(r,f)),f):{type:"void",instance:null,count:0,state:null};case"link":if(i.rel==="stylesheet"&&typeof i.href=="string"&&typeof i.precedence=="string"){n=El(i.href);var C=Qo(v).hoistableStyles,M=C.get(n);if(M||(v=v.ownerDocument||v,M={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},C.set(n,M),(C=v.querySelector(Ji(n)))&&!C._p&&(M.instance=C,M.state.loading=5),Ps.has(n)||(i={rel:"preload",as:"style",href:i.href,crossOrigin:i.crossOrigin,integrity:i.integrity,media:i.media,hrefLang:i.hrefLang,referrerPolicy:i.referrerPolicy},Ps.set(n,i),C||rA(v,n,i,M.state))),r&&f===null)throw Error(o(528,""));return M}if(r&&f!==null)throw Error(o(529,""));return null;case"script":return r=i.async,i=i.src,typeof i=="string"&&r&&typeof r!="function"&&typeof r!="symbol"?(r=Rl(i),i=Qo(v).hoistableScripts,f=i.get(r),f||(f={type:"script",instance:null,count:0,state:null},i.set(r,f)),f):{type:"void",instance:null,count:0,state:null};default:throw Error(o(444,n))}}function El(n){return'href="'+Es(n)+'"'}function Ji(n){return'link[rel="stylesheet"]['+n+"]"}function z1(n){return b({},n,{"data-precedence":n.precedence,precedence:null})}function rA(n,r,i,f){n.querySelector('link[rel="preload"][as="style"]['+r+"]")?f.loading=1:(r=n.createElement("link"),f.preload=r,r.addEventListener("load",function(){return f.loading|=1}),r.addEventListener("error",function(){return f.loading|=2}),$n(r,"link",i),Rn(r),n.head.appendChild(r))}function Rl(n){return'[src="'+Es(n)+'"]'}function ec(n){return"script[async]"+n}function D1(n,r,i){if(r.count++,r.instance===null)switch(r.type){case"style":var f=n.querySelector('style[data-href~="'+Es(i.href)+'"]');if(f)return r.instance=f,Rn(f),f;var v=b({},i,{"data-href":i.href,"data-precedence":i.precedence,href:null,precedence:null});return f=(n.ownerDocument||n).createElement("style"),Rn(f),$n(f,"style",v),hd(f,i.precedence,n),r.instance=f;case"stylesheet":v=El(i.href);var C=n.querySelector(Ji(v));if(C)return r.state.loading|=4,r.instance=C,Rn(C),C;f=z1(i),(v=Ps.get(v))&&zg(f,v),C=(n.ownerDocument||n).createElement("link"),Rn(C);var M=C;return M._p=new Promise(function(q,Q){M.onload=q,M.onerror=Q}),$n(C,"link",f),r.state.loading|=4,hd(C,i.precedence,n),r.instance=C;case"script":return C=Rl(i.src),(v=n.querySelector(ec(C)))?(r.instance=v,Rn(v),v):(f=i,(v=Ps.get(C))&&(f=b({},i),Dg(f,v)),n=n.ownerDocument||n,v=n.createElement("script"),Rn(v),$n(v,"link",f),n.head.appendChild(v),r.instance=v);case"void":return null;default:throw Error(o(443,r.type))}else r.type==="stylesheet"&&(r.state.loading&4)===0&&(f=r.instance,r.state.loading|=4,hd(f,i.precedence,n));return r.instance}function hd(n,r,i){for(var f=i.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),v=f.length?f[f.length-1]:null,C=v,M=0;M<f.length;M++){var q=f[M];if(q.dataset.precedence===r)C=q;else if(C!==v)break}C?C.parentNode.insertBefore(n,C.nextSibling):(r=i.nodeType===9?i.head:i,r.insertBefore(n,r.firstChild))}function zg(n,r){n.crossOrigin==null&&(n.crossOrigin=r.crossOrigin),n.referrerPolicy==null&&(n.referrerPolicy=r.referrerPolicy),n.title==null&&(n.title=r.title)}function Dg(n,r){n.crossOrigin==null&&(n.crossOrigin=r.crossOrigin),n.referrerPolicy==null&&(n.referrerPolicy=r.referrerPolicy),n.integrity==null&&(n.integrity=r.integrity)}var xd=null;function P1(n,r,i){if(xd===null){var f=new Map,v=xd=new Map;v.set(i,f)}else v=xd,f=v.get(i),f||(f=new Map,v.set(i,f));if(f.has(n))return f;for(f.set(n,null),i=i.getElementsByTagName(n),v=0;v<i.length;v++){var C=i[v];if(!(C[hi]||C[Yt]||n==="link"&&C.getAttribute("rel")==="stylesheet")&&C.namespaceURI!=="http://www.w3.org/2000/svg"){var M=C.getAttribute(r)||"";M=n+M;var q=f.get(M);q?q.push(C):f.set(M,[C])}}return f}function L1(n,r,i){n=n.ownerDocument||n,n.head.insertBefore(i,r==="title"?n.querySelector("head > title"):null)}function oA(n,r,i){if(i===1||r.itemProp!=null)return!1;switch(n){case"meta":case"title":return!0;case"style":if(typeof r.precedence!="string"||typeof r.href!="string"||r.href==="")break;return!0;case"link":if(typeof r.rel!="string"||typeof r.href!="string"||r.href===""||r.onLoad||r.onError)break;switch(r.rel){case"stylesheet":return n=r.disabled,typeof r.precedence=="string"&&n==null;default:return!0}case"script":if(r.async&&typeof r.async!="function"&&typeof r.async!="symbol"&&!r.onLoad&&!r.onError&&r.src&&typeof r.src=="string")return!0}return!1}function I1(n){return!(n.type==="stylesheet"&&(n.state.loading&3)===0)}function lA(n,r,i,f){if(i.type==="stylesheet"&&(typeof f.media!="string"||matchMedia(f.media).matches!==!1)&&(i.state.loading&4)===0){if(i.instance===null){var v=El(f.href),C=r.querySelector(Ji(v));if(C){r=C._p,r!==null&&typeof r=="object"&&typeof r.then=="function"&&(n.count++,n=bd.bind(n),r.then(n,n)),i.state.loading|=4,i.instance=C,Rn(C);return}C=r.ownerDocument||r,f=z1(f),(v=Ps.get(v))&&zg(f,v),C=C.createElement("link"),Rn(C);var M=C;M._p=new Promise(function(q,Q){M.onload=q,M.onerror=Q}),$n(C,"link",f),i.instance=C}n.stylesheets===null&&(n.stylesheets=new Map),n.stylesheets.set(i,r),(r=i.state.preload)&&(i.state.loading&3)===0&&(n.count++,i=bd.bind(n),r.addEventListener("load",i),r.addEventListener("error",i))}}var Pg=0;function iA(n,r){return n.stylesheets&&n.count===0&&vd(n,n.stylesheets),0<n.count||0<n.imgCount?function(i){var f=setTimeout(function(){if(n.stylesheets&&vd(n,n.stylesheets),n.unsuspend){var C=n.unsuspend;n.unsuspend=null,C()}},6e4+r);0<n.imgBytes&&Pg===0&&(Pg=62500*HT());var v=setTimeout(function(){if(n.waitingForImages=!1,n.count===0&&(n.stylesheets&&vd(n,n.stylesheets),n.unsuspend)){var C=n.unsuspend;n.unsuspend=null,C()}},(n.imgBytes>Pg?50:800)+r);return n.unsuspend=i,function(){n.unsuspend=null,clearTimeout(f),clearTimeout(v)}}:null}function bd(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)vd(this,this.stylesheets);else if(this.unsuspend){var n=this.unsuspend;this.unsuspend=null,n()}}}var _d=null;function vd(n,r){n.stylesheets=null,n.unsuspend!==null&&(n.count++,_d=new Map,r.forEach(cA,n),_d=null,bd.call(n))}function cA(n,r){if(!(r.state.loading&4)){var i=_d.get(n);if(i)var f=i.get(null);else{i=new Map,_d.set(n,i);for(var v=n.querySelectorAll("link[data-precedence],style[data-precedence]"),C=0;C<v.length;C++){var M=v[C];(M.nodeName==="LINK"||M.getAttribute("media")!=="not all")&&(i.set(M.dataset.precedence,M),f=M)}f&&i.set(null,f)}v=r.instance,M=v.getAttribute("data-precedence"),C=i.get(M)||f,C===f&&i.set(null,v),i.set(M,v),this.count++,f=bd.bind(this),v.addEventListener("load",f),v.addEventListener("error",f),C?C.parentNode.insertBefore(v,C.nextSibling):(n=n.nodeType===9?n.head:n,n.insertBefore(v,n.firstChild)),r.state.loading|=4}}var tc={$$typeof:N,Provider:null,Consumer:null,_currentValue:Y,_currentValue2:Y,_threadCount:0};function uA(n,r,i,f,v,C,M,q,Q){this.tag=1,this.containerInfo=n,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=Ss(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ss(0),this.hiddenUpdates=Ss(null),this.identifierPrefix=f,this.onUncaughtError=v,this.onCaughtError=C,this.onRecoverableError=M,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=Q,this.incompleteTransitions=new Map}function B1(n,r,i,f,v,C,M,q,Q,ie,xe,ke){return n=new uA(n,r,i,M,Q,ie,xe,ke,q),r=1,C===!0&&(r|=24),C=hs(3,null,null,r),n.current=C,C.stateNode=n,r=gm(),r.refCount++,n.pooledCache=r,r.refCount++,C.memoizedState={element:f,isDehydrated:i,cache:r},_m(C),n}function U1(n){return n?(n=ol,n):ol}function $1(n,r,i,f,v,C){v=U1(v),f.context===null?f.context=v:f.pendingContext=v,f=fr(r),f.payload={element:i},C=C===void 0?null:C,C!==null&&(f.callback=C),i=pr(n,f,r),i!==null&&(us(i,n,r),Oi(i,n,r))}function H1(n,r){if(n=n.memoizedState,n!==null&&n.dehydrated!==null){var i=n.retryLane;n.retryLane=i!==0&&i<r?i:r}}function Lg(n,r){H1(n,r),(n=n.alternate)&&H1(n,r)}function V1(n){if(n.tag===13||n.tag===31){var r=so(n,67108864);r!==null&&us(r,n,67108864),Lg(n,67108864)}}function q1(n){if(n.tag===13||n.tag===31){var r=ys();r=dt(r);var i=so(n,r);i!==null&&us(i,n,r),Lg(n,r)}}var yd=!0;function dA(n,r,i,f){var v=H.T;H.T=null;var C=F.p;try{F.p=2,Ig(n,r,i,f)}finally{F.p=C,H.T=v}}function fA(n,r,i,f){var v=H.T;H.T=null;var C=F.p;try{F.p=8,Ig(n,r,i,f)}finally{F.p=C,H.T=v}}function Ig(n,r,i,f){if(yd){var v=Bg(f);if(v===null)wg(n,r,f,jd,i),G1(n,f);else if(mA(v,n,r,i,f))f.stopPropagation();else if(G1(n,f),r&4&&-1<pA.indexOf(n)){for(;v!==null;){var C=Xo(v);if(C!==null)switch(C.tag){case 3:if(C=C.stateNode,C.current.memoizedState.isDehydrated){var M=Qt(C.pendingLanes);if(M!==0){var q=C;for(q.pendingLanes|=2,q.entangledLanes|=2;M;){var Q=1<<31-Pe(M);q.entanglements[1]|=Q,M&=~Q}oa(C),(zt&6)===0&&(ad=ue()+500,Xi(0))}}break;case 31:case 13:q=so(C,2),q!==null&&us(q,C,2),od(),Lg(C,2)}if(C=Bg(f),C===null&&wg(n,r,f,jd,i),C===v)break;v=C}v!==null&&f.stopPropagation()}else wg(n,r,f,null,i)}}function Bg(n){return n=$p(n),Ug(n)}var jd=null;function Ug(n){if(jd=null,n=Ko(n),n!==null){var r=c(n);if(r===null)n=null;else{var i=r.tag;if(i===13){if(n=d(r),n!==null)return n;n=null}else if(i===31){if(n=p(r),n!==null)return n;n=null}else if(i===3){if(r.stateNode.current.memoizedState.isDehydrated)return r.tag===3?r.stateNode.containerInfo:null;n=null}else r!==n&&(n=null)}}return jd=n,null}function F1(n){switch(n){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(ye()){case Ge:return 2;case Re:return 8;case Oe:case tt:return 32;case ot:return 268435456;default:return 32}default:return 32}}var $g=!1,wr=null,Sr=null,Cr=null,nc=new Map,sc=new Map,Nr=[],pA="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 G1(n,r){switch(n){case"focusin":case"focusout":wr=null;break;case"dragenter":case"dragleave":Sr=null;break;case"mouseover":case"mouseout":Cr=null;break;case"pointerover":case"pointerout":nc.delete(r.pointerId);break;case"gotpointercapture":case"lostpointercapture":sc.delete(r.pointerId)}}function ac(n,r,i,f,v,C){return n===null||n.nativeEvent!==C?(n={blockedOn:r,domEventName:i,eventSystemFlags:f,nativeEvent:C,targetContainers:[v]},r!==null&&(r=Xo(r),r!==null&&V1(r)),n):(n.eventSystemFlags|=f,r=n.targetContainers,v!==null&&r.indexOf(v)===-1&&r.push(v),n)}function mA(n,r,i,f,v){switch(r){case"focusin":return wr=ac(wr,n,r,i,f,v),!0;case"dragenter":return Sr=ac(Sr,n,r,i,f,v),!0;case"mouseover":return Cr=ac(Cr,n,r,i,f,v),!0;case"pointerover":var C=v.pointerId;return nc.set(C,ac(nc.get(C)||null,n,r,i,f,v)),!0;case"gotpointercapture":return C=v.pointerId,sc.set(C,ac(sc.get(C)||null,n,r,i,f,v)),!0}return!1}function Y1(n){var r=Ko(n.target);if(r!==null){var i=c(r);if(i!==null){if(r=i.tag,r===13){if(r=d(i),r!==null){n.blockedOn=r,En(n.priority,function(){q1(i)});return}}else if(r===31){if(r=p(i),r!==null){n.blockedOn=r,En(n.priority,function(){q1(i)});return}}else if(r===3&&i.stateNode.current.memoizedState.isDehydrated){n.blockedOn=i.tag===3?i.stateNode.containerInfo:null;return}}}n.blockedOn=null}function kd(n){if(n.blockedOn!==null)return!1;for(var r=n.targetContainers;0<r.length;){var i=Bg(n.nativeEvent);if(i===null){i=n.nativeEvent;var f=new i.constructor(i.type,i);Up=f,i.target.dispatchEvent(f),Up=null}else return r=Xo(i),r!==null&&V1(r),n.blockedOn=i,!1;r.shift()}return!0}function K1(n,r,i){kd(n)&&i.delete(r)}function gA(){$g=!1,wr!==null&&kd(wr)&&(wr=null),Sr!==null&&kd(Sr)&&(Sr=null),Cr!==null&&kd(Cr)&&(Cr=null),nc.forEach(K1),sc.forEach(K1)}function wd(n,r){n.blockedOn===r&&(n.blockedOn=null,$g||($g=!0,e.unstable_scheduleCallback(e.unstable_NormalPriority,gA)))}var Sd=null;function X1(n){Sd!==n&&(Sd=n,e.unstable_scheduleCallback(e.unstable_NormalPriority,function(){Sd===n&&(Sd=null);for(var r=0;r<n.length;r+=3){var i=n[r],f=n[r+1],v=n[r+2];if(typeof f!="function"){if(Ug(f||i)===null)continue;break}var C=Xo(i);C!==null&&(n.splice(r,3),r-=3,Bm(C,{pending:!0,data:v,method:i.method,action:f},f,v))}}))}function Tl(n){function r(Q){return wd(Q,n)}wr!==null&&wd(wr,n),Sr!==null&&wd(Sr,n),Cr!==null&&wd(Cr,n),nc.forEach(r),sc.forEach(r);for(var i=0;i<Nr.length;i++){var f=Nr[i];f.blockedOn===n&&(f.blockedOn=null)}for(;0<Nr.length&&(i=Nr[0],i.blockedOn===null);)Y1(i),i.blockedOn===null&&Nr.shift();if(i=(n.ownerDocument||n).$$reactFormReplay,i!=null)for(f=0;f<i.length;f+=3){var v=i[f],C=i[f+1],M=v[Ln]||null;if(typeof C=="function")M||X1(i);else if(M){var q=null;if(C&&C.hasAttribute("formAction")){if(v=C,M=C[Ln]||null)q=M.formAction;else if(Ug(v)!==null)continue}else q=M.action;typeof q=="function"?i[f+1]=q:(i.splice(f,3),f-=3),X1(i)}}}function Q1(){function n(C){C.canIntercept&&C.info==="react-transition"&&C.intercept({handler:function(){return new Promise(function(M){return v=M})},focusReset:"manual",scroll:"manual"})}function r(){v!==null&&(v(),v=null),f||setTimeout(i,20)}function i(){if(!f&&!navigation.transition){var C=navigation.currentEntry;C&&C.url!=null&&navigation.navigate(C.url,{state:C.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var f=!1,v=null;return navigation.addEventListener("navigate",n),navigation.addEventListener("navigatesuccess",r),navigation.addEventListener("navigateerror",r),setTimeout(i,100),function(){f=!0,navigation.removeEventListener("navigate",n),navigation.removeEventListener("navigatesuccess",r),navigation.removeEventListener("navigateerror",r),v!==null&&(v(),v=null)}}}function Hg(n){this._internalRoot=n}Cd.prototype.render=Hg.prototype.render=function(n){var r=this._internalRoot;if(r===null)throw Error(o(409));var i=r.current,f=ys();$1(i,f,n,r,null,null)},Cd.prototype.unmount=Hg.prototype.unmount=function(){var n=this._internalRoot;if(n!==null){this._internalRoot=null;var r=n.containerInfo;$1(n.current,2,null,n,null,null),od(),r[na]=null}};function Cd(n){this._internalRoot=n}Cd.prototype.unstable_scheduleHydration=function(n){if(n){var r=hn();n={blockedOn:null,target:n,priority:r};for(var i=0;i<Nr.length&&r!==0&&r<Nr[i].priority;i++);Nr.splice(i,0,n),i===0&&Y1(n)}};var W1=t.version;if(W1!=="19.2.7")throw Error(o(527,W1,"19.2.7"));F.findDOMNode=function(n){var r=n._reactInternals;if(r===void 0)throw typeof n.render=="function"?Error(o(188)):(n=Object.keys(n).join(","),Error(o(268,n)));return n=g(r),n=n!==null?h(n):null,n=n===null?null:n.stateNode,n};var hA={bundleType:0,version:"19.2.7",rendererPackageName:"react-dom",currentDispatcherRef:H,reconcilerVersion:"19.2.7"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Nd=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Nd.isDisabled&&Nd.supportsFiber)try{lt=Nd.inject(hA),Rt=Nd}catch{}}return oc.createRoot=function(n,r){if(!l(n))throw Error(o(299));var i=!1,f="",v=a0,C=r0,M=o0;return r!=null&&(r.unstable_strictMode===!0&&(i=!0),r.identifierPrefix!==void 0&&(f=r.identifierPrefix),r.onUncaughtError!==void 0&&(v=r.onUncaughtError),r.onCaughtError!==void 0&&(C=r.onCaughtError),r.onRecoverableError!==void 0&&(M=r.onRecoverableError)),r=B1(n,1,!1,null,null,i,f,null,v,C,M,Q1),n[na]=r.current,kg(n),new Hg(r)},oc.hydrateRoot=function(n,r,i){if(!l(n))throw Error(o(299));var f=!1,v="",C=a0,M=r0,q=o0,Q=null;return i!=null&&(i.unstable_strictMode===!0&&(f=!0),i.identifierPrefix!==void 0&&(v=i.identifierPrefix),i.onUncaughtError!==void 0&&(C=i.onUncaughtError),i.onCaughtError!==void 0&&(M=i.onCaughtError),i.onRecoverableError!==void 0&&(q=i.onRecoverableError),i.formState!==void 0&&(Q=i.formState)),r=B1(n,1,!0,r,i??null,f,v,Q,C,M,q,Q1),r.context=U1(null),i=r.current,f=ys(),f=dt(f),v=fr(f),v.callback=null,pr(i,v,f),i=f,r.current.lanes=i,gn(r,i),oa(r),n[na]=r.current,kg(n),new Cd(r)},oc.version="19.2.7",oc}var lj;function NA(){if(lj)return Fg.exports;lj=1;function e(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(t){console.error(t)}}return e(),Fg.exports=CA(),Fg.exports}var EA=NA();const RA=nb(EA);/**
50
- * react-router v7.18.1
51
- *
52
- * Copyright (c) Remix Software Inc.
53
- *
54
- * This source code is licensed under the MIT license found in the
55
- * LICENSE.md file in the root directory of this source tree.
56
- *
57
- * @license MIT
58
- */var sb=/^(?:[a-z][a-z0-9+.-]*:|[\\/]{2})/i,lS=/^[\\/]{2}/;function TA(e,t){return t+e.replace(/\\/g,"/")}var ij="popstate";function cj(e){return typeof e=="object"&&e!=null&&"pathname"in e&&"search"in e&&"hash"in e&&"state"in e&&"key"in e}function AA(e={}){function t(o,l){let c=l.state?.masked,{pathname:d,search:p,hash:m}=c||o.location;return ux("",{pathname:d,search:p,hash:m},l.state&&l.state.usr||null,l.state&&l.state.key||"default",c?{pathname:o.location.pathname,search:o.location.search,hash:o.location.hash}:void 0)}function a(o,l){return typeof l=="string"?l:Uc(l)}return OA(t,a,null,e)}function rn(e,t){if(e===!1||e===null||typeof e>"u")throw new Error(t)}function $s(e,t){if(!e){typeof console<"u"&&console.warn(t);try{throw new Error(t)}catch{}}}function MA(){return Math.random().toString(36).substring(2,10)}function uj(e,t){return{usr:e.state,key:e.key,idx:t,masked:e.mask?{pathname:e.pathname,search:e.search,hash:e.hash}:void 0}}function ux(e,t,a=null,o,l){return{pathname:typeof e=="string"?e:e.pathname,search:"",hash:"",...typeof t=="string"?oi(t):t,state:a,key:t&&t.key||o||MA(),mask:l}}function Uc({pathname:e="/",search:t="",hash:a=""}){return t&&t!=="?"&&(e+=t.charAt(0)==="?"?t:"?"+t),a&&a!=="#"&&(e+=a.charAt(0)==="#"?a:"#"+a),e}function oi(e){let t={};if(e){let a=e.indexOf("#");a>=0&&(t.hash=e.substring(a),e=e.substring(0,a));let o=e.indexOf("?");o>=0&&(t.search=e.substring(o),e=e.substring(0,o)),e&&(t.pathname=e)}return t}function OA(e,t,a,o={}){let{window:l=document.defaultView,v5Compat:c=!1}=o,d=l.history,p="POP",m=null,g=h();g==null&&(g=0,d.replaceState({...d.state,idx:g},""));function h(){return(d.state||{idx:null}).idx}function b(){p="POP";let y=h(),w=y==null?null:y-g;g=y,m&&m({action:p,location:k.location,delta:w})}function _(y,w){p="PUSH";let S=cj(y)?y:ux(k.location,y,w);g=h()+1;let N=uj(S,g),R=k.createHref(S.mask||S);try{d.pushState(N,"",R)}catch(A){if(A instanceof DOMException&&A.name==="DataCloneError")throw A;l.location.assign(R)}c&&m&&m({action:p,location:k.location,delta:1})}function j(y,w){p="REPLACE";let S=cj(y)?y:ux(k.location,y,w);g=h();let N=uj(S,g),R=k.createHref(S.mask||S);d.replaceState(N,"",R),c&&m&&m({action:p,location:k.location,delta:0})}function E(y){return zA(l,y)}let k={get action(){return p},get location(){return e(l,d)},listen(y){if(m)throw new Error("A history only accepts one active listener");return l.addEventListener(ij,b),m=y,()=>{l.removeEventListener(ij,b),m=null}},createHref(y){return t(l,y)},createURL:E,encodeLocation(y){let w=E(y);return{pathname:w.pathname,search:w.search,hash:w.hash}},push:_,replace:j,go(y){return d.go(y)}};return k}function zA(e,t,a=!1){let o="http://localhost";e&&(o=e.location.origin!=="null"?e.location.origin:e.location.href),rn(o,"No window.location.(origin|href) available to create URL");let l=typeof t=="string"?t:Uc(t);return l=l.replace(/ $/,"%20"),!a&&lS.test(l)&&(l=o+l),new URL(l,o)}function iS(e,t,a="/"){return DA(e,t,a,!1)}function DA(e,t,a,o,l){let c=typeof t=="string"?oi(t):t,d=Ja(c.pathname||"/",a);if(d==null)return null;let p=PA(e),m=null,g=YA(d);for(let h=0;m==null&&h<p.length;++h)m=GA(p[h],g,o);return m}function PA(e){let t=cS(e);return LA(t),t}function cS(e,t=[],a=[],o="",l=!1){let c=(d,p,m=l,g)=>{let h={relativePath:g===void 0?d.path||"":g,caseSensitive:d.caseSensitive===!0,childrenIndex:p,route:d};if(h.relativePath.startsWith("/")){if(!h.relativePath.startsWith(o)&&m)return;rn(h.relativePath.startsWith(o),`Absolute route path "${h.relativePath}" nested under path "${o}" is not valid. An absolute child route path must start with the combined path of all its parent routes.`),h.relativePath=h.relativePath.slice(o.length)}let b=Xs([o,h.relativePath]),_=a.concat(h);d.children&&d.children.length>0&&(rn(d.index!==!0,`Index routes must not have child routes. Please remove all child routes from route path "${b}".`),cS(d.children,t,_,b,m)),!(d.path==null&&!d.index)&&t.push({path:b,score:qA(b,d.index),routesMeta:_.map((j,E)=>{let[k,y]=fS(j.relativePath,j.caseSensitive,E===_.length-1);return{...j,matcher:k,compiledParams:y}})})};return e.forEach((d,p)=>{if(d.path===""||!d.path?.includes("?"))c(d,p);else for(let m of uS(d.path))c(d,p,!0,m)}),t}function uS(e){let t=e.split("/");if(t.length===0)return[];let[a,...o]=t,l=a.endsWith("?"),c=a.replace(/\?$/,"");if(o.length===0)return l?[c,""]:[c];let d=uS(o.join("/")),p=[];return p.push(...d.map(m=>m===""?c:[c,m].join("/"))),l&&p.push(...d),p.map(m=>e.startsWith("/")&&m===""?"/":m)}function LA(e){e.sort((t,a)=>t.score!==a.score?a.score-t.score:FA(t.routesMeta.map(o=>o.childrenIndex),a.routesMeta.map(o=>o.childrenIndex)))}var IA=/^:[\w-]+$/,BA=3,UA=2,$A=1,HA=10,VA=-2,dj=e=>e==="*";function qA(e,t){let a=e.split("/"),o=a.length;return a.some(dj)&&(o+=VA),t&&(o+=UA),a.filter(l=>!dj(l)).reduce((l,c)=>l+(IA.test(c)?BA:c===""?$A:HA),o)}function FA(e,t){return e.length===t.length&&e.slice(0,-1).every((o,l)=>o===t[l])?e[e.length-1]-t[t.length-1]:0}function GA(e,t,a=!1){let{routesMeta:o}=e,l={},c="/",d=[];for(let p=0;p<o.length;++p){let m=o[p],g=p===o.length-1,h=c==="/"?t:t.slice(c.length)||"/",b={path:m.relativePath,caseSensitive:m.caseSensitive,end:g},_=m.matcher&&m.compiledParams?dS(b,h,m.matcher,m.compiledParams):ff(b,h),j=m.route;if(!_&&g&&a&&!o[o.length-1].route.index&&(_=ff({path:m.relativePath,caseSensitive:m.caseSensitive,end:!1},h)),!_)return null;Object.assign(l,_.params),d.push({params:l,pathname:Xs([c,_.pathname]),pathnameBase:QA(Xs([c,_.pathnameBase])),route:j}),_.pathnameBase!=="/"&&(c=Xs([c,_.pathnameBase]))}return d}function ff(e,t){typeof e=="string"&&(e={path:e,caseSensitive:!1,end:!0});let[a,o]=fS(e.path,e.caseSensitive,e.end);return dS(e,t,a,o)}function dS(e,t,a,o){let l=t.match(a);if(!l)return null;let c=l[0],d=c.replace(/(.)\/+$/,"$1"),p=l.slice(1);return{params:o.reduce((g,{paramName:h,isOptional:b},_)=>{if(h==="*"){let E=p[_]||"";d=c.slice(0,c.length-E.length).replace(/(.)\/+$/,"$1")}const j=p[_];return b&&!j?g[h]=void 0:g[h]=(j||"").replace(/%2F/g,"/"),g},{}),pathname:c,pathnameBase:d,pattern:e}}function fS(e,t=!1,a=!0){$s(e==="*"||!e.endsWith("*")||e.endsWith("/*"),`Route path "${e}" will be treated as if it were "${e.replace(/\*$/,"/*")}" because the \`*\` character must always follow a \`/\` in the pattern. To get rid of this warning, please change the route path to "${e.replace(/\*$/,"/*")}".`);let o=[],l="^"+e.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(d,p,m,g,h)=>{if(o.push({paramName:p,isOptional:m!=null}),m){let b=h.charAt(g+d.length);return b&&b!=="/"?"/([^\\/]*)":"(?:/([^\\/]*))?"}return"/([^\\/]+)"}).replace(/\/([\w-]+)\?(\/|$)/g,"(/$1)?$2");return e.endsWith("*")?(o.push({paramName:"*"}),l+=e==="*"||e==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):a?l+="\\/*$":e!==""&&e!=="/"&&(l+="(?:(?=\\/|$))"),[new RegExp(l,t?void 0:"i"),o]}function YA(e){try{return e.split("/").map(t=>decodeURIComponent(t).replace(/\//g,"%2F")).join("/")}catch(t){return $s(!1,`The URL path "${e}" could not be decoded because it is a malformed URL segment. This is probably due to a bad percent encoding (${t}).`),e}}function Ja(e,t){if(t==="/")return e;if(!e.toLowerCase().startsWith(t.toLowerCase()))return null;let a=t.endsWith("/")?t.length-1:t.length,o=e.charAt(a);return o&&o!=="/"?null:e.slice(a)||"/"}function KA(e,t="/"){let{pathname:a,search:o="",hash:l=""}=typeof e=="string"?oi(e):e,c;return a?(a=pS(a),a.startsWith("/")?c=fj(a.substring(1),"/"):c=fj(a,t)):c=t,{pathname:c,search:WA(o),hash:ZA(l)}}function fj(e,t){let a=pf(t).split("/");return e.split("/").forEach(l=>{l===".."?a.length>1&&a.pop():l!=="."&&a.push(l)}),a.length>1?a.join("/"):"/"}function Xg(e,t,a,o){return`Cannot include a '${e}' character in a manually specified \`to.${t}\` field [${JSON.stringify(o)}]. Please separate it out to the \`to.${a}\` field. Alternatively you may provide the full path as a string in <Link to="..."> and the router will parse it for you.`}function XA(e){return e.filter((t,a)=>a===0||t.route.path&&t.route.path.length>0)}function ab(e){let t=XA(e);return t.map((a,o)=>o===t.length-1?a.pathname:a.pathnameBase)}function Gf(e,t,a,o=!1){let l;typeof e=="string"?l=oi(e):(l={...e},rn(!l.pathname||!l.pathname.includes("?"),Xg("?","pathname","search",l)),rn(!l.pathname||!l.pathname.includes("#"),Xg("#","pathname","hash",l)),rn(!l.search||!l.search.includes("#"),Xg("#","search","hash",l)));let c=e===""||l.pathname==="",d=c?"/":l.pathname,p;if(d==null)p=a;else{let b=t.length-1;if(!o&&d.startsWith("..")){let _=d.split("/");for(;_[0]==="..";)_.shift(),b-=1;l.pathname=_.join("/")}p=b>=0?t[b]:"/"}let m=KA(l,p),g=d&&d!=="/"&&d.endsWith("/"),h=(c||d===".")&&a.endsWith("/");return!m.pathname.endsWith("/")&&(g||h)&&(m.pathname+="/"),m}var pS=e=>e.replace(/[\\/]{2,}/g,"/"),Xs=e=>pS(e.join("/")),pf=e=>e.replace(/\/+$/,""),QA=e=>pf(e).replace(/^\/*/,"/"),WA=e=>!e||e==="?"?"":e.startsWith("?")?e:"?"+e,ZA=e=>!e||e==="#"?"":e.startsWith("#")?e:"#"+e,JA=class{constructor(e,t,a,o=!1){this.status=e,this.statusText=t||"",this.internal=o,a instanceof Error?(this.data=a.toString(),this.error=a):this.data=a}};function eM(e){return e!=null&&typeof e.status=="number"&&typeof e.statusText=="string"&&typeof e.internal=="boolean"&&"data"in e}function tM(e){let t=e.map(a=>a.route.path).filter(Boolean);return Xs(t)||"/"}var mS=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u";function gS(e,t){let a=e;if(typeof a!="string"||!sb.test(a))return{absoluteURL:void 0,isExternal:!1,to:a};let o=a,l=!1;if(mS)try{let c=new URL(window.location.href),d=lS.test(a)?new URL(TA(a,c.protocol)):new URL(a),p=Ja(d.pathname,t);d.origin===c.origin&&p!=null?a=p+d.search+d.hash:l=!0}catch{$s(!1,`<Link to="${a}"> contains an invalid URL which will probably break when clicked - please update to a valid URL path.`)}return{absoluteURL:o,isExternal:l,to:a}}Object.getOwnPropertyNames(Object.prototype).sort().join("\0");var hS=["POST","PUT","PATCH","DELETE"];new Set(hS);var nM=["GET",...hS];new Set(nM);var sM=["about:","blob:","chrome:","chrome-untrusted:","content:","data:","devtools:","file:","filesystem:","javascript:"];function aM(e){try{return sM.includes(new URL(e).protocol)}catch{return!1}}var li=x.createContext(null);li.displayName="DataRouter";var Yf=x.createContext(null);Yf.displayName="DataRouterState";var xS=x.createContext(!1);function rM(){return x.useContext(xS)}var bS=x.createContext({isTransitioning:!1});bS.displayName="ViewTransition";var oM=x.createContext(new Map);oM.displayName="Fetchers";var lM=x.createContext(null);lM.displayName="Await";var ks=x.createContext(null);ks.displayName="Navigation";var nu=x.createContext(null);nu.displayName="Location";var Zs=x.createContext({outlet:null,matches:[],isDataRoute:!1});Zs.displayName="Route";var rb=x.createContext(null);rb.displayName="RouteError";var _S="REACT_ROUTER_ERROR",iM="REDIRECT",cM="ROUTE_ERROR_RESPONSE";function uM(e){if(e.startsWith(`${_S}:${iM}:{`))try{let t=JSON.parse(e.slice(28));if(typeof t=="object"&&t&&typeof t.status=="number"&&typeof t.statusText=="string"&&typeof t.location=="string"&&typeof t.reloadDocument=="boolean"&&typeof t.replace=="boolean")return t}catch{}}function dM(e){if(e.startsWith(`${_S}:${cM}:{`))try{let t=JSON.parse(e.slice(40));if(typeof t=="object"&&t&&typeof t.status=="number"&&typeof t.statusText=="string")return new JA(t.status,t.statusText,t.data)}catch{}}function fM(e,{relative:t}={}){rn(ii(),"useHref() may be used only in the context of a <Router> component.");let{basename:a,navigator:o}=x.useContext(ks),{hash:l,pathname:c,search:d}=su(e,{relative:t}),p=c;return a!=="/"&&(p=c==="/"?a:Xs([a,c])),o.createHref({pathname:p,search:d,hash:l})}function ii(){return x.useContext(nu)!=null}function ts(){return rn(ii(),"useLocation() may be used only in the context of a <Router> component."),x.useContext(nu).location}var vS="You should call navigate() in a React.useEffect(), not when your component is first rendered.";function yS(e){x.useContext(ks).static||x.useLayoutEffect(e)}function Pn(){let{isDataRoute:e}=x.useContext(Zs);return e?SM():pM()}function pM(){rn(ii(),"useNavigate() may be used only in the context of a <Router> component.");let e=x.useContext(li),{basename:t,navigator:a}=x.useContext(ks),{matches:o}=x.useContext(Zs),{pathname:l}=ts(),c=JSON.stringify(ab(o)),d=x.useRef(!1);return yS(()=>{d.current=!0}),x.useCallback((m,g={})=>{if($s(d.current,vS),!d.current)return;if(typeof m=="number"){a.go(m);return}let h=Gf(m,JSON.parse(c),l,g.relative==="path");e==null&&t!=="/"&&(h.pathname=h.pathname==="/"?t:Xs([t,h.pathname])),(g.replace?a.replace:a.push)(h,g.state,g)},[t,a,c,l,e])}x.createContext(null);function jS(){let{matches:e}=x.useContext(Zs);return e[e.length-1]?.params??{}}function su(e,{relative:t}={}){let{matches:a}=x.useContext(Zs),{pathname:o}=ts(),l=JSON.stringify(ab(a));return x.useMemo(()=>Gf(e,JSON.parse(l),o,t==="path"),[e,l,o,t])}function mM(e,t){return kS(e,t)}function kS(e,t,a){rn(ii(),"useRoutes() may be used only in the context of a <Router> component.");let{navigator:o}=x.useContext(ks),{matches:l}=x.useContext(Zs),c=l[l.length-1],d=c?c.params:{},p=c?c.pathname:"/",m=c?c.pathnameBase:"/",g=c&&c.route;{let y=g&&g.path||"";SS(p,!g||y.endsWith("*")||y.endsWith("*?"),`You rendered descendant <Routes> (or called \`useRoutes()\`) at "${p}" (under <Route path="${y}">) but the parent route path has no trailing "*". This means if you navigate deeper, the parent won't match anymore and therefore the child routes will never render.
59
-
60
- Please change the parent <Route path="${y}"> to <Route path="${y==="/"?"*":`${y}/*`}">.`)}let h=ts(),b;if(t){let y=typeof t=="string"?oi(t):t;rn(m==="/"||y.pathname?.startsWith(m),`When overriding the location using \`<Routes location>\` or \`useRoutes(routes, location)\`, the location pathname must begin with the portion of the URL pathname that was matched by all parent routes. The current pathname base is "${m}" but pathname "${y.pathname}" was given in the \`location\` prop.`),b=y}else b=h;let _=b.pathname||"/",j=_;if(m!=="/"){let y=m.replace(/^\//,"").split("/");j="/"+_.replace(/^\//,"").split("/").slice(y.length).join("/")}let E=a&&a.state.matches.length?a.state.matches.map(y=>Object.assign(y,{route:a.manifest[y.route.id]||y.route})):iS(e,{pathname:j});$s(g||E!=null,`No routes matched location "${b.pathname}${b.search}${b.hash}" `),$s(E==null||E[E.length-1].route.element!==void 0||E[E.length-1].route.Component!==void 0||E[E.length-1].route.lazy!==void 0,`Matched leaf route at location "${b.pathname}${b.search}${b.hash}" does not have an element or Component. This means it will render an <Outlet /> with a null value by default resulting in an "empty" page.`);let k=_M(E&&E.map(y=>Object.assign({},y,{params:Object.assign({},d,y.params),pathname:Xs([m,o.encodeLocation?o.encodeLocation(y.pathname.replace(/%/g,"%25").replace(/\?/g,"%3F").replace(/#/g,"%23")).pathname:y.pathname]),pathnameBase:y.pathnameBase==="/"?m:Xs([m,o.encodeLocation?o.encodeLocation(y.pathnameBase.replace(/%/g,"%25").replace(/\?/g,"%3F").replace(/#/g,"%23")).pathname:y.pathnameBase])})),l,a);return t&&k?x.createElement(nu.Provider,{value:{location:{pathname:"/",search:"",hash:"",state:null,key:"default",mask:void 0,...b},navigationType:"POP"}},k):k}function gM(){let e=wM(),t=eM(e)?`${e.status} ${e.statusText}`:e instanceof Error?e.message:JSON.stringify(e),a=e instanceof Error?e.stack:null,o="rgba(200,200,200, 0.5)",l={padding:"0.5rem",backgroundColor:o},c={padding:"2px 4px",backgroundColor:o},d=null;return console.error("Error handled by React Router default ErrorBoundary:",e),d=x.createElement(x.Fragment,null,x.createElement("p",null,"💿 Hey developer 👋"),x.createElement("p",null,"You can provide a way better UX than this when your app throws errors by providing your own ",x.createElement("code",{style:c},"ErrorBoundary")," or"," ",x.createElement("code",{style:c},"errorElement")," prop on your route.")),x.createElement(x.Fragment,null,x.createElement("h2",null,"Unexpected Application Error!"),x.createElement("h3",{style:{fontStyle:"italic"}},t),a?x.createElement("pre",{style:l},a):null,d)}var hM=x.createElement(gM,null),wS=class extends x.Component{constructor(e){super(e),this.state={location:e.location,revalidation:e.revalidation,error:e.error}}static getDerivedStateFromError(e){return{error:e}}static getDerivedStateFromProps(e,t){return t.location!==e.location||t.revalidation!=="idle"&&e.revalidation==="idle"?{error:e.error,location:e.location,revalidation:e.revalidation}:{error:e.error!==void 0?e.error:t.error,location:t.location,revalidation:e.revalidation||t.revalidation}}componentDidCatch(e,t){this.props.onError?this.props.onError(e,t):console.error("React Router caught the following error during render",e)}render(){let e=this.state.error;if(this.context&&typeof e=="object"&&e&&"digest"in e&&typeof e.digest=="string"){const a=dM(e.digest);a&&(e=a)}let t=e!==void 0?x.createElement(Zs.Provider,{value:this.props.routeContext},x.createElement(rb.Provider,{value:e,children:this.props.component})):this.props.children;return this.context?x.createElement(xM,{error:e},t):t}};wS.contextType=xS;var Qg=new WeakMap;function xM({children:e,error:t}){let{basename:a}=x.useContext(ks);if(typeof t=="object"&&t&&"digest"in t&&typeof t.digest=="string"){let o=uM(t.digest);if(o){let l=Qg.get(t);if(l)throw l;let c=gS(o.location,a),d=c.absoluteURL||c.to;if(aM(d))throw new Error("Invalid redirect location");if(mS&&!Qg.get(t))if(c.isExternal||o.reloadDocument)window.location.href=d;else{const p=Promise.resolve().then(()=>window.__reactRouterDataRouter.navigate(c.to,{replace:o.replace}));throw Qg.set(t,p),p}return x.createElement("meta",{httpEquiv:"refresh",content:`0;url=${d}`})}}return e}function bM({routeContext:e,match:t,children:a}){let o=x.useContext(li);return o&&o.static&&o.staticContext&&(t.route.errorElement||t.route.ErrorBoundary)&&(o.staticContext._deepestRenderedBoundaryId=t.route.id),x.createElement(Zs.Provider,{value:e},a)}function _M(e,t=[],a){let o=a?.state;if(e==null){if(!o)return null;if(o.errors)e=o.matches;else if(t.length===0&&!o.initialized&&o.matches.length>0)e=o.matches;else return null}let l=e,c=o?.errors;if(c!=null){let h=l.findIndex(b=>b.route.id&&c?.[b.route.id]!==void 0);rn(h>=0,`Could not find a matching route for errors on route IDs: ${Object.keys(c).join(",")}`),l=l.slice(0,Math.min(l.length,h+1))}let d=!1,p=-1;if(a&&o){d=o.renderFallback;for(let h=0;h<l.length;h++){let b=l[h];if((b.route.HydrateFallback||b.route.hydrateFallbackElement)&&(p=h),b.route.id){let{loaderData:_,errors:j}=o,E=b.route.loader&&!_.hasOwnProperty(b.route.id)&&(!j||j[b.route.id]===void 0);if(b.route.lazy||E){a.isStatic&&(d=!0),p>=0?l=l.slice(0,p+1):l=[l[0]];break}}}}let m=a?.onError,g=o&&m?(h,b)=>{m(h,{location:o.location,params:o.matches?.[0]?.params??{},pattern:tM(o.matches),errorInfo:b})}:void 0;return l.reduceRight((h,b,_)=>{let j,E=!1,k=null,y=null;o&&(j=c&&b.route.id?c[b.route.id]:void 0,k=b.route.errorElement||hM,d&&(p<0&&_===0?(SS("route-fallback",!1,"No `HydrateFallback` element provided to render during initial hydration"),E=!0,y=null):p===_&&(E=!0,y=b.route.hydrateFallbackElement||null)));let w=t.concat(l.slice(0,_+1)),S=()=>{let N;return j?N=k:E?N=y:b.route.Component?N=x.createElement(b.route.Component,null):b.route.element?N=b.route.element:N=h,x.createElement(bM,{match:b,routeContext:{outlet:h,matches:w,isDataRoute:o!=null},children:N})};return o&&(b.route.ErrorBoundary||b.route.errorElement||_===0)?x.createElement(wS,{location:o.location,revalidation:o.revalidation,component:k,error:j,children:S(),routeContext:{outlet:null,matches:w,isDataRoute:!0},onError:g}):S()},null)}function ob(e){return`${e} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`}function vM(e){let t=x.useContext(li);return rn(t,ob(e)),t}function yM(e){let t=x.useContext(Yf);return rn(t,ob(e)),t}function jM(e){let t=x.useContext(Zs);return rn(t,ob(e)),t}function lb(e){let t=jM(e),a=t.matches[t.matches.length-1];return rn(a.route.id,`${e} can only be used on routes that contain a unique "id"`),a.route.id}function kM(){return lb("useRouteId")}function wM(){let e=x.useContext(rb),t=yM("useRouteError"),a=lb("useRouteError");return e!==void 0?e:t.errors?.[a]}function SM(){let{router:e}=vM("useNavigate"),t=lb("useNavigate"),a=x.useRef(!1);return yS(()=>{a.current=!0}),x.useCallback(async(l,c={})=>{$s(a.current,vS),a.current&&(typeof l=="number"?await e.navigate(l):await e.navigate(l,{fromRouteId:t,...c}))},[e,t])}var pj={};function SS(e,t,a){!t&&!pj[e]&&(pj[e]=!0,$s(!1,a))}x.memo(CM);function CM({routes:e,manifest:t,future:a,state:o,isStatic:l,onError:c}){return kS(e,void 0,{manifest:t,state:o,isStatic:l,onError:c})}function NM({to:e,replace:t,state:a,relative:o}){rn(ii(),"<Navigate> may be used only in the context of a <Router> component.");let{static:l}=x.useContext(ks);$s(!l,"<Navigate> must not be used on the initial render in a <StaticRouter>. This is a no-op, but you should modify your code so the <Navigate> is only ever rendered in response to some user interaction or state change.");let{matches:c}=x.useContext(Zs),{pathname:d}=ts(),p=Pn(),m=Gf(e,ab(c),d,o==="path"),g=JSON.stringify(m);return x.useEffect(()=>{p(JSON.parse(g),{replace:t,state:a,relative:o})},[p,g,o,t,a]),null}function Dt(e){rn(!1,"A <Route> is only ever to be used as the child of <Routes> element, never rendered directly. Please wrap your <Route> in a <Routes>.")}function EM({basename:e="/",children:t=null,location:a,navigationType:o="POP",navigator:l,static:c=!1,useTransitions:d}){rn(!ii(),"You cannot render a <Router> inside another <Router>. You should never have more than one in your app.");let p=e.replace(/^\/*/,"/"),m=x.useMemo(()=>({basename:p,navigator:l,static:c,useTransitions:d,future:{}}),[p,l,c,d]);typeof a=="string"&&(a=oi(a));let{pathname:g="/",search:h="",hash:b="",state:_=null,key:j="default",mask:E}=a,k=x.useMemo(()=>{let y=Ja(g,p);return y==null?null:{location:{pathname:y,search:h,hash:b,state:_,key:j,mask:E},navigationType:o}},[p,g,h,b,_,j,o,E]);return $s(k!=null,`<Router basename="${p}"> is not able to match the URL "${g}${h}${b}" because it does not start with the basename, so the <Router> won't render anything.`),k==null?null:x.createElement(ks.Provider,{value:m},x.createElement(nu.Provider,{children:t,value:k}))}function CS({children:e,location:t}){return mM(dx(e),t)}function dx(e,t=[]){let a=[];return x.Children.forEach(e,(o,l)=>{if(!x.isValidElement(o))return;let c=[...t,l];if(o.type===x.Fragment){a.push.apply(a,dx(o.props.children,c));return}rn(o.type===Dt,`[${typeof o.type=="string"?o.type:o.type.name}] is not a <Route> component. All component children of <Routes> must be a <Route> or <React.Fragment>`),rn(!o.props.index||!o.props.children,"An index route cannot have child routes.");let d={id:o.props.id||c.join("-"),caseSensitive:o.props.caseSensitive,element:o.props.element,Component:o.props.Component,index:o.props.index,path:o.props.path,middleware:o.props.middleware,loader:o.props.loader,action:o.props.action,hydrateFallbackElement:o.props.hydrateFallbackElement,HydrateFallback:o.props.HydrateFallback,errorElement:o.props.errorElement,ErrorBoundary:o.props.ErrorBoundary,hasErrorBoundary:o.props.hasErrorBoundary===!0||o.props.ErrorBoundary!=null||o.props.errorElement!=null,shouldRevalidate:o.props.shouldRevalidate,handle:o.props.handle,lazy:o.props.lazy};o.props.children&&(d.children=dx(o.props.children,c)),a.push(d)}),a}var nf="get",sf="application/x-www-form-urlencoded";function Kf(e){return typeof HTMLElement<"u"&&e instanceof HTMLElement}function RM(e){return Kf(e)&&e.tagName.toLowerCase()==="button"}function TM(e){return Kf(e)&&e.tagName.toLowerCase()==="form"}function AM(e){return Kf(e)&&e.tagName.toLowerCase()==="input"}function MM(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}function OM(e,t){return e.button===0&&(!t||t==="_self")&&!MM(e)}function fx(e=""){return new URLSearchParams(typeof e=="string"||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce((t,a)=>{let o=e[a];return t.concat(Array.isArray(o)?o.map(l=>[a,l]):[[a,o]])},[]))}function zM(e,t){let a=fx(e);return t&&t.forEach((o,l)=>{a.has(l)||t.getAll(l).forEach(c=>{a.append(l,c)})}),a}var Ed=null;function DM(){if(Ed===null)try{new FormData(document.createElement("form"),0),Ed=!1}catch{Ed=!0}return Ed}var PM=new Set(["application/x-www-form-urlencoded","multipart/form-data","text/plain"]);function Wg(e){return e!=null&&!PM.has(e)?($s(!1,`"${e}" is not a valid \`encType\` for \`<Form>\`/\`<fetcher.Form>\` and will default to "${sf}"`),null):e}function LM(e,t){let a,o,l,c,d;if(TM(e)){let p=e.getAttribute("action");o=p?Ja(p,t):null,a=e.getAttribute("method")||nf,l=Wg(e.getAttribute("enctype"))||sf,c=new FormData(e)}else if(RM(e)||AM(e)&&(e.type==="submit"||e.type==="image")){let p=e.form;if(p==null)throw new Error('Cannot submit a <button> or <input type="submit"> without a <form>');let m=e.getAttribute("formaction")||p.getAttribute("action");if(o=m?Ja(m,t):null,a=e.getAttribute("formmethod")||p.getAttribute("method")||nf,l=Wg(e.getAttribute("formenctype"))||Wg(p.getAttribute("enctype"))||sf,c=new FormData(p,e),!DM()){let{name:g,type:h,value:b}=e;if(h==="image"){let _=g?`${g}.`:"";c.append(`${_}x`,"0"),c.append(`${_}y`,"0")}else g&&c.append(g,b)}}else{if(Kf(e))throw new Error('Cannot submit element that is not <form>, <button>, or <input type="submit|image">');a=nf,o=null,l=sf,d=e}return c&&l==="text/plain"&&(d=c,c=void 0),{action:o,method:a.toLowerCase(),encType:l,formData:c,body:d}}Object.getOwnPropertyNames(Object.prototype).sort().join("\0");function ib(e,t){if(e===!1||e===null||typeof e>"u")throw new Error(t)}function NS(e,t,a,o){let l=typeof e=="string"?new URL(e,typeof window>"u"?"server://singlefetch/":window.location.origin):e;return a?l.pathname.endsWith("/")?l.pathname=`${l.pathname}_.${o}`:l.pathname=`${l.pathname}.${o}`:l.pathname==="/"?l.pathname=`_root.${o}`:t&&Ja(l.pathname,t)==="/"?l.pathname=`${pf(t)}/_root.${o}`:l.pathname=`${pf(l.pathname)}.${o}`,l}async function IM(e,t){if(e.id in t)return t[e.id];try{let a=await import(e.module);return t[e.id]=a,a}catch(a){return console.error(`Error loading route module \`${e.module}\`, reloading page...`),console.error(a),window.__reactRouterContext&&window.__reactRouterContext.isSpaMode,window.location.reload(),new Promise(()=>{})}}function BM(e){return e==null?!1:e.href==null?e.rel==="preload"&&typeof e.imageSrcSet=="string"&&typeof e.imageSizes=="string":typeof e.rel=="string"&&typeof e.href=="string"}async function UM(e,t,a){let o=await Promise.all(e.map(async l=>{let c=t.routes[l.route.id];if(c){let d=await IM(c,a);return d.links?d.links():[]}return[]}));return qM(o.flat(1).filter(BM).filter(l=>l.rel==="stylesheet"||l.rel==="preload").map(l=>l.rel==="stylesheet"?{...l,rel:"prefetch",as:"style"}:{...l,rel:"prefetch"}))}function mj(e,t,a,o,l,c){let d=(m,g)=>a[g]?m.route.id!==a[g].route.id:!0,p=(m,g)=>a[g].pathname!==m.pathname||a[g].route.path?.endsWith("*")&&a[g].params["*"]!==m.params["*"];return c==="assets"?t.filter((m,g)=>d(m,g)||p(m,g)):c==="data"?t.filter((m,g)=>{let h=o.routes[m.route.id];if(!h||!h.hasLoader)return!1;if(d(m,g)||p(m,g))return!0;if(m.route.shouldRevalidate){let b=m.route.shouldRevalidate({currentUrl:new URL(l.pathname+l.search+l.hash,window.origin),currentParams:a[0]?.params||{},nextUrl:new URL(e,window.origin),nextParams:m.params,defaultShouldRevalidate:!0});if(typeof b=="boolean")return b}return!0}):[]}function $M(e,t,{includeHydrateFallback:a}={}){return HM(e.map(o=>{let l=t.routes[o.route.id];if(!l)return[];let c=[l.module];return l.clientActionModule&&(c=c.concat(l.clientActionModule)),l.clientLoaderModule&&(c=c.concat(l.clientLoaderModule)),a&&l.hydrateFallbackModule&&(c=c.concat(l.hydrateFallbackModule)),l.imports&&(c=c.concat(l.imports)),c}).flat(1))}function HM(e){return[...new Set(e)]}function VM(e){let t={},a=Object.keys(e).sort();for(let o of a)t[o]=e[o];return t}function qM(e,t){let a=new Set;return new Set(t),e.reduce((o,l)=>{let c=JSON.stringify(VM(l));return a.has(c)||(a.add(c),o.push({key:c,link:l})),o},[])}function cb(){let e=x.useContext(li);return ib(e,"You must render this element inside a <DataRouterContext.Provider> element"),e}function FM(){let e=x.useContext(Yf);return ib(e,"You must render this element inside a <DataRouterStateContext.Provider> element"),e}var ub=x.createContext(void 0);ub.displayName="FrameworkContext";function Xf(){let e=x.useContext(ub);return ib(e,"You must render this element inside a <HydratedRouter> element"),e}function GM(e,t){let a=x.useContext(ub),[o,l]=x.useState(!1),[c,d]=x.useState(!1),{onFocus:p,onBlur:m,onMouseEnter:g,onMouseLeave:h,onTouchStart:b}=t,_=x.useRef(null);x.useEffect(()=>{if(e==="render"&&d(!0),e==="viewport"){let k=w=>{w.forEach(S=>{d(S.isIntersecting)})},y=new IntersectionObserver(k,{threshold:.5});return _.current&&y.observe(_.current),()=>{y.disconnect()}}},[e]),x.useEffect(()=>{if(o){let k=setTimeout(()=>{d(!0)},100);return()=>{clearTimeout(k)}}},[o]);let j=()=>{l(!0)},E=()=>{l(!1),d(!1)};return a?e!=="intent"?[c,_,{}]:[c,_,{onFocus:lc(p,j),onBlur:lc(m,E),onMouseEnter:lc(g,j),onMouseLeave:lc(h,E),onTouchStart:lc(b,j)}]:[!1,_,{}]}function lc(e,t){return a=>{e&&e(a),a.defaultPrevented||t(a)}}function YM({page:e,...t}){let a=rM(),{nonce:o}=Xf(),{router:l}=cb(),c=x.useMemo(()=>iS(l.routes,e,l.basename),[l.routes,e,l.basename]);return c?(t.nonce==null&&o&&(t={...t,nonce:o}),a?x.createElement(XM,{page:e,matches:c,...t}):x.createElement(QM,{page:e,matches:c,...t})):null}function KM(e){let{manifest:t,routeModules:a}=Xf(),[o,l]=x.useState([]);return x.useEffect(()=>{let c=!1;return UM(e,t,a).then(d=>{c||l(d)}),()=>{c=!0}},[e,t,a]),o}function XM({page:e,matches:t,...a}){let o=ts(),{future:l}=Xf(),{basename:c}=cb(),d=x.useMemo(()=>{if(e===o.pathname+o.search+o.hash)return[];let p=NS(e,c,l.v8_trailingSlashAwareDataRequests,"rsc"),m=!1,g=[];for(let h of t)typeof h.route.shouldRevalidate=="function"?m=!0:g.push(h.route.id);return m&&g.length>0&&p.searchParams.set("_routes",g.join(",")),[p.pathname+p.search]},[c,l.v8_trailingSlashAwareDataRequests,e,o,t]);return x.createElement(x.Fragment,null,d.map(p=>x.createElement("link",{key:p,rel:"prefetch",as:"fetch",href:p,...a})))}function QM({page:e,matches:t,...a}){let o=ts(),{future:l,manifest:c,routeModules:d}=Xf(),{basename:p}=cb(),{loaderData:m,matches:g}=FM(),h=x.useMemo(()=>mj(e,t,g,c,o,"data"),[e,t,g,c,o]),b=x.useMemo(()=>mj(e,t,g,c,o,"assets"),[e,t,g,c,o]),_=x.useMemo(()=>{if(e===o.pathname+o.search+o.hash)return[];let k=new Set,y=!1;if(t.forEach(S=>{let N=c.routes[S.route.id];!N||!N.hasLoader||(!h.some(R=>R.route.id===S.route.id)&&S.route.id in m&&d[S.route.id]?.shouldRevalidate||N.hasClientLoader?y=!0:k.add(S.route.id))}),k.size===0)return[];let w=NS(e,p,l.v8_trailingSlashAwareDataRequests,"data");return y&&k.size>0&&w.searchParams.set("_routes",t.filter(S=>k.has(S.route.id)).map(S=>S.route.id).join(",")),[w.pathname+w.search]},[p,l.v8_trailingSlashAwareDataRequests,m,o,c,h,t,e,d]),j=x.useMemo(()=>$M(b,c),[b,c]),E=KM(b);return x.createElement(x.Fragment,null,_.map(k=>x.createElement("link",{key:k,rel:"prefetch",as:"fetch",href:k,...a})),j.map(k=>x.createElement("link",{key:k,rel:"modulepreload",href:k,...a})),E.map(({key:k,link:y})=>x.createElement("link",{key:k,nonce:a.nonce,...y,crossOrigin:y.crossOrigin??a.crossOrigin})))}function WM(...e){return t=>{e.forEach(a=>{typeof a=="function"?a(t):a!=null&&(a.current=t)})}}var ZM=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u";try{ZM&&(window.__reactRouterVersion="7.18.1")}catch{}function JM({basename:e,children:t,useTransitions:a,window:o}){let l=x.useRef();l.current==null&&(l.current=AA({window:o,v5Compat:!0}));let c=l.current,[d,p]=x.useState({action:c.action,location:c.location}),m=x.useCallback(g=>{a===!1?p(g):x.startTransition(()=>p(g))},[a]);return x.useLayoutEffect(()=>c.listen(m),[c,m]),x.createElement(EM,{basename:e,children:t,location:d.location,navigationType:d.action,navigator:c,useTransitions:a})}var Qf=x.forwardRef(function({onClick:t,discover:a="render",prefetch:o="none",relative:l,reloadDocument:c,replace:d,mask:p,state:m,target:g,to:h,preventScrollReset:b,viewTransition:_,defaultShouldRevalidate:j,...E},k){let{basename:y,navigator:w,useTransitions:S}=x.useContext(ks),N=typeof h=="string"&&sb.test(h),R=gS(h,y);h=R.to;let A=fM(h,{relative:l}),T=ts(),O=null;if(p){let V=Gf(p,[],T.mask?T.mask.pathname:"/",!0);y!=="/"&&(V.pathname=V.pathname==="/"?y:Xs([y,V.pathname])),O=w.createHref(V)}let[z,U,P]=GM(o,E),B=n5(h,{replace:d,mask:p,state:m,target:g,preventScrollReset:b,relative:l,viewTransition:_,defaultShouldRevalidate:j,useTransitions:S});function D(V){t&&t(V),V.defaultPrevented||B(V)}let L=!(R.isExternal||c),$=x.createElement("a",{...E,...P,href:(L?O:void 0)||R.absoluteURL||A,onClick:L?D:t,ref:WM(k,U),target:g,"data-discover":!N&&a==="render"?"true":void 0});return z&&!N?x.createElement(x.Fragment,null,$,x.createElement(YM,{page:A})):$});Qf.displayName="Link";var mf=x.forwardRef(function({"aria-current":t="page",caseSensitive:a=!1,className:o="",end:l=!1,style:c,to:d,viewTransition:p,children:m,...g},h){let b=su(d,{relative:g.relative}),_=ts(),j=x.useContext(Yf),{navigator:E,basename:k}=x.useContext(ks),y=j!=null&&l5(b)&&p===!0,w=E.encodeLocation?E.encodeLocation(b).pathname:b.pathname,S=_.pathname,N=j&&j.navigation&&j.navigation.location?j.navigation.location.pathname:null;a||(S=S.toLowerCase(),N=N?N.toLowerCase():null,w=w.toLowerCase()),N&&k&&(N=Ja(N,k)||N);const R=w!=="/"&&w.endsWith("/")?w.length-1:w.length;let A=S===w||!l&&S.startsWith(w)&&S.charAt(R)==="/",T=N!=null&&(N===w||!l&&N.startsWith(w)&&N.charAt(w.length)==="/"),O={isActive:A,isPending:T,isTransitioning:y},z=A?t:void 0,U;typeof o=="function"?U=o(O):U=[o,A?"active":null,T?"pending":null,y?"transitioning":null].filter(Boolean).join(" ");let P=typeof c=="function"?c(O):c;return x.createElement(Qf,{...g,"aria-current":z,className:U,ref:h,style:P,to:d,viewTransition:p},typeof m=="function"?m(O):m)});mf.displayName="NavLink";var e5=x.forwardRef(({discover:e="render",fetcherKey:t,navigate:a,reloadDocument:o,replace:l,state:c,method:d=nf,action:p,onSubmit:m,relative:g,preventScrollReset:h,viewTransition:b,defaultShouldRevalidate:_,...j},E)=>{let{useTransitions:k}=x.useContext(ks),y=r5(),w=o5(p,{relative:g}),S=d.toLowerCase()==="get"?"get":"post",N=typeof p=="string"&&sb.test(p),R=A=>{if(m&&m(A),A.defaultPrevented)return;A.preventDefault();let T=A.nativeEvent.submitter,O=T?.getAttribute("formmethod")||d,z=()=>y(T||A.currentTarget,{fetcherKey:t,method:O,navigate:a,replace:l,state:c,relative:g,preventScrollReset:h,viewTransition:b,defaultShouldRevalidate:_});k&&a!==!1?x.startTransition(()=>z()):z()};return x.createElement("form",{ref:E,method:S,action:w,onSubmit:o?m:R,...j,"data-discover":!N&&e==="render"?"true":void 0})});e5.displayName="Form";function t5(e){return`${e} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`}function ES(e){let t=x.useContext(li);return rn(t,t5(e)),t}function n5(e,{target:t,replace:a,mask:o,state:l,preventScrollReset:c,relative:d,viewTransition:p,defaultShouldRevalidate:m,useTransitions:g}={}){let h=Pn(),b=ts(),_=su(e,{relative:d});return x.useCallback(j=>{if(OM(j,t)){j.preventDefault();let E=a!==void 0?a:Uc(b)===Uc(_),k=()=>h(e,{replace:E,mask:o,state:l,preventScrollReset:c,relative:d,viewTransition:p,defaultShouldRevalidate:m});g?x.startTransition(()=>k()):k()}},[b,h,_,a,o,l,t,e,c,d,p,m,g])}function $o(e){$s(typeof URLSearchParams<"u","You cannot use the `useSearchParams` hook in a browser that does not support the URLSearchParams API. If you need to support Internet Explorer 11, we recommend you load a polyfill such as https://github.com/ungap/url-search-params.");let t=x.useRef(fx(e)),a=x.useRef(!1),o=ts(),l=x.useMemo(()=>zM(o.search,a.current?null:t.current),[o.search]),c=Pn(),d=x.useCallback((p,m)=>{const g=fx(typeof p=="function"?p(new URLSearchParams(l)):p);a.current=!0,c("?"+g,m)},[c,l]);return[l,d]}var s5=0,a5=()=>`__${String(++s5)}__`;function r5(){let{router:e}=ES("useSubmit"),{basename:t}=x.useContext(ks),a=kM(),o=e.fetch,l=e.navigate;return x.useCallback(async(c,d={})=>{let{action:p,method:m,encType:g,formData:h,body:b}=LM(c,t);if(d.navigate===!1){let _=d.fetcherKey||a5();await o(_,a,d.action||p,{defaultShouldRevalidate:d.defaultShouldRevalidate,preventScrollReset:d.preventScrollReset,formData:h,body:b,formMethod:d.method||m,formEncType:d.encType||g,flushSync:d.flushSync})}else await l(d.action||p,{defaultShouldRevalidate:d.defaultShouldRevalidate,preventScrollReset:d.preventScrollReset,formData:h,body:b,formMethod:d.method||m,formEncType:d.encType||g,replace:d.replace,state:d.state,fromRouteId:a,flushSync:d.flushSync,viewTransition:d.viewTransition})},[o,l,t,a])}function o5(e,{relative:t}={}){let{basename:a}=x.useContext(ks),o=x.useContext(Zs);rn(o,"useFormAction must be used inside a RouteContext");let[l]=o.matches.slice(-1),c={...su(e||".",{relative:t})},d=ts();if(e==null){c.search=d.search;let p=new URLSearchParams(c.search),m=p.getAll("index");if(m.some(h=>h==="")){p.delete("index"),m.filter(b=>b).forEach(b=>p.append("index",b));let h=p.toString();c.search=h?`?${h}`:""}}return(!e||e===".")&&l.route.index&&(c.search=c.search?c.search.replace(/^\?/,"?index&"):"?index"),a!=="/"&&(c.pathname=c.pathname==="/"?a:Xs([a,c.pathname])),Uc(c)}function l5(e,{relative:t}={}){let a=x.useContext(bS);rn(a!=null,"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`. Did you accidentally import `RouterProvider` from `react-router`?");let{basename:o}=ES("useViewTransitionState"),l=su(e,{relative:t});if(!a.isTransitioning)return!1;let c=Ja(a.currentLocation.pathname,o)||a.currentLocation.pathname,d=Ja(a.nextLocation.pathname,o)||a.nextLocation.pathname;return ff(l.pathname,d)!=null||ff(l.pathname,c)!=null}var Hs=oS();/**
61
- * @license lucide-react v0.469.0 - ISC
62
- *
63
- * This source code is licensed under the ISC license.
64
- * See the LICENSE file in the root directory of this source tree.
65
- */const i5=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),RS=(...e)=>e.filter((t,a,o)=>!!t&&t.trim()!==""&&o.indexOf(t)===a).join(" ").trim();/**
66
- * @license lucide-react v0.469.0 - ISC
67
- *
68
- * This source code is licensed under the ISC license.
69
- * See the LICENSE file in the root directory of this source tree.
70
- */var c5={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/**
71
- * @license lucide-react v0.469.0 - ISC
72
- *
73
- * This source code is licensed under the ISC license.
74
- * See the LICENSE file in the root directory of this source tree.
75
- */const u5=x.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:a=2,absoluteStrokeWidth:o,className:l="",children:c,iconNode:d,...p},m)=>x.createElement("svg",{ref:m,...c5,width:t,height:t,stroke:e,strokeWidth:o?Number(a)*24/Number(t):a,className:RS("lucide",l),...p},[...d.map(([g,h])=>x.createElement(g,h)),...Array.isArray(c)?c:[c]]));/**
76
- * @license lucide-react v0.469.0 - ISC
77
- *
78
- * This source code is licensed under the ISC license.
79
- * See the LICENSE file in the root directory of this source tree.
80
- */const be=(e,t)=>{const a=x.forwardRef(({className:o,...l},c)=>x.createElement(u5,{ref:c,iconNode:t,className:RS(`lucide-${i5(e)}`,o),...l}));return a.displayName=`${e}`,a};/**
81
- * @license lucide-react v0.469.0 - ISC
82
- *
83
- * This source code is licensed under the ISC license.
84
- * See the LICENSE file in the root directory of this source tree.
85
- */const db=be("Activity",[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]]);/**
86
- * @license lucide-react v0.469.0 - ISC
87
- *
88
- * This source code is licensed under the ISC license.
89
- * See the LICENSE file in the root directory of this source tree.
90
- */const TS=be("ArrowDownLeft",[["path",{d:"M17 7 7 17",key:"15tmo1"}],["path",{d:"M17 17H7V7",key:"1org7z"}]]);/**
91
- * @license lucide-react v0.469.0 - ISC
92
- *
93
- * This source code is licensed under the ISC license.
94
- * See the LICENSE file in the root directory of this source tree.
95
- */const d5=be("ArrowLeft",[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]]);/**
96
- * @license lucide-react v0.469.0 - ISC
97
- *
98
- * This source code is licensed under the ISC license.
99
- * See the LICENSE file in the root directory of this source tree.
100
- */const AS=be("ArrowRight",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]]);/**
101
- * @license lucide-react v0.469.0 - ISC
102
- *
103
- * This source code is licensed under the ISC license.
104
- * See the LICENSE file in the root directory of this source tree.
105
- */const MS=be("ArrowUpRight",[["path",{d:"M7 7h10v10",key:"1tivn9"}],["path",{d:"M7 17 17 7",key:"1vkiza"}]]);/**
106
- * @license lucide-react v0.469.0 - ISC
107
- *
108
- * This source code is licensed under the ISC license.
109
- * See the LICENSE file in the root directory of this source tree.
110
- */const f5=be("ArrowUp",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);/**
111
- * @license lucide-react v0.469.0 - ISC
112
- *
113
- * This source code is licensed under the ISC license.
114
- * See the LICENSE file in the root directory of this source tree.
115
- */const p5=be("Ban",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.9 4.9 14.2 14.2",key:"1m5liu"}]]);/**
116
- * @license lucide-react v0.469.0 - ISC
117
- *
118
- * This source code is licensed under the ISC license.
119
- * See the LICENSE file in the root directory of this source tree.
120
- */const m5=be("BookOpen",[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]]);/**
121
- * @license lucide-react v0.469.0 - ISC
122
- *
123
- * This source code is licensed under the ISC license.
124
- * See the LICENSE file in the root directory of this source tree.
125
- */const on=be("Bot",[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]]);/**
126
- * @license lucide-react v0.469.0 - ISC
127
- *
128
- * This source code is licensed under the ISC license.
129
- * See the LICENSE file in the root directory of this source tree.
130
- */const g5=be("Boxes",[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",key:"lc1i9w"}],["path",{d:"m7 16.5-4.74-2.85",key:"1o9zyk"}],["path",{d:"m7 16.5 5-3",key:"va8pkn"}],["path",{d:"M7 16.5v5.17",key:"jnp8gn"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",key:"8zsnat"}],["path",{d:"m17 16.5-5-3",key:"8arw3v"}],["path",{d:"m17 16.5 4.74-2.85",key:"8rfmw"}],["path",{d:"M17 16.5v5.17",key:"k6z78m"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",key:"1xygjf"}],["path",{d:"M12 8 7.26 5.15",key:"1vbdud"}],["path",{d:"m12 8 4.74-2.85",key:"3rx089"}],["path",{d:"M12 13.5V8",key:"1io7kd"}]]);/**
131
- * @license lucide-react v0.469.0 - ISC
132
- *
133
- * This source code is licensed under the ISC license.
134
- * See the LICENSE file in the root directory of this source tree.
135
- */const h5=be("Braces",[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1",key:"ezmyqa"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1",key:"e1hn23"}]]);/**
136
- * @license lucide-react v0.469.0 - ISC
137
- *
138
- * This source code is licensed under the ISC license.
139
- * See the LICENSE file in the root directory of this source tree.
140
- */const gf=be("Brain",[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M12 5a3 3 0 1 1 5.997.125 4 4 0 0 1 2.526 5.77 4 4 0 0 1-.556 6.588A4 4 0 1 1 12 18Z",key:"ep3f8r"}],["path",{d:"M15 13a4.5 4.5 0 0 1-3-4 4.5 4.5 0 0 1-3 4",key:"1p4c4q"}],["path",{d:"M17.599 6.5a3 3 0 0 0 .399-1.375",key:"tmeiqw"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M19.938 10.5a4 4 0 0 1 .585.396",key:"1qfode"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M19.967 17.484A4 4 0 0 1 18 18",key:"159ez6"}]]);/**
141
- * @license lucide-react v0.469.0 - ISC
142
- *
143
- * This source code is licensed under the ISC license.
144
- * See the LICENSE file in the root directory of this source tree.
145
- */const OS=be("Briefcase",[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16",key:"jecpp"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]);/**
146
- * @license lucide-react v0.469.0 - ISC
147
- *
148
- * This source code is licensed under the ISC license.
149
- * See the LICENSE file in the root directory of this source tree.
150
- */const x5=be("Building2",[["path",{d:"M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z",key:"1b4qmf"}],["path",{d:"M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2",key:"i71pzd"}],["path",{d:"M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2",key:"10jefs"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M10 14h4",key:"kelpxr"}],["path",{d:"M10 18h4",key:"1ulq68"}]]);/**
151
- * @license lucide-react v0.469.0 - ISC
152
- *
153
- * This source code is licensed under the ISC license.
154
- * See the LICENSE file in the root directory of this source tree.
155
- */const gj=be("Cable",[["path",{d:"M17 21v-2a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1",key:"10bnsj"}],["path",{d:"M19 15V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V9",key:"1eqmu1"}],["path",{d:"M21 21v-2h-4",key:"14zm7j"}],["path",{d:"M3 5h4V3",key:"z442eg"}],["path",{d:"M7 5a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1V3",key:"ebdjd7"}]]);/**
156
- * @license lucide-react v0.469.0 - ISC
157
- *
158
- * This source code is licensed under the ISC license.
159
- * See the LICENSE file in the root directory of this source tree.
160
- */const $r=be("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);/**
161
- * @license lucide-react v0.469.0 - ISC
162
- *
163
- * This source code is licensed under the ISC license.
164
- * See the LICENSE file in the root directory of this source tree.
165
- */const ns=be("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);/**
166
- * @license lucide-react v0.469.0 - ISC
167
- *
168
- * This source code is licensed under the ISC license.
169
- * See the LICENSE file in the root directory of this source tree.
170
- */const b5=be("ChevronLeft",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);/**
171
- * @license lucide-react v0.469.0 - ISC
172
- *
173
- * This source code is licensed under the ISC license.
174
- * See the LICENSE file in the root directory of this source tree.
175
- */const qr=be("ChevronRight",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]);/**
176
- * @license lucide-react v0.469.0 - ISC
177
- *
178
- * This source code is licensed under the ISC license.
179
- * See the LICENSE file in the root directory of this source tree.
180
- */const fb=be("ChevronUp",[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]]);/**
181
- * @license lucide-react v0.469.0 - ISC
182
- *
183
- * This source code is licensed under the ISC license.
184
- * See the LICENSE file in the root directory of this source tree.
185
- */const _5=be("ChevronsUpDown",[["path",{d:"m7 15 5 5 5-5",key:"1hf1tw"}],["path",{d:"m7 9 5-5 5 5",key:"sgt6xg"}]]);/**
186
- * @license lucide-react v0.469.0 - ISC
187
- *
188
- * This source code is licensed under the ISC license.
189
- * See the LICENSE file in the root directory of this source tree.
190
- */const v5=be("CircleAlert",[["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"}]]);/**
191
- * @license lucide-react v0.469.0 - ISC
192
- *
193
- * This source code is licensed under the ISC license.
194
- * See the LICENSE file in the root directory of this source tree.
195
- */const pb=be("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);/**
196
- * @license lucide-react v0.469.0 - ISC
197
- *
198
- * This source code is licensed under the ISC license.
199
- * See the LICENSE file in the root directory of this source tree.
200
- */const y5=be("CircleDot",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);/**
201
- * @license lucide-react v0.469.0 - ISC
202
- *
203
- * This source code is licensed under the ISC license.
204
- * See the LICENSE file in the root directory of this source tree.
205
- */const j5=be("CircleHelp",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);/**
206
- * @license lucide-react v0.469.0 - ISC
207
- *
208
- * This source code is licensed under the ISC license.
209
- * See the LICENSE file in the root directory of this source tree.
210
- */const zS=be("CircleX",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);/**
211
- * @license lucide-react v0.469.0 - ISC
212
- *
213
- * This source code is licensed under the ISC license.
214
- * See the LICENSE file in the root directory of this source tree.
215
- */const k5=be("ClipboardList",[["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"}],["path",{d:"M12 11h4",key:"1jrz19"}],["path",{d:"M12 16h4",key:"n85exb"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);/**
216
- * @license lucide-react v0.469.0 - ISC
217
- *
218
- * This source code is licensed under the ISC license.
219
- * See the LICENSE file in the root directory of this source tree.
220
- */const DS=be("Clock",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]]);/**
221
- * @license lucide-react v0.469.0 - ISC
222
- *
223
- * This source code is licensed under the ISC license.
224
- * See the LICENSE file in the root directory of this source tree.
225
- */const w5=be("Cloud",[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]]);/**
226
- * @license lucide-react v0.469.0 - ISC
227
- *
228
- * This source code is licensed under the ISC license.
229
- * See the LICENSE file in the root directory of this source tree.
230
- */const S5=be("CodeXml",[["path",{d:"m18 16 4-4-4-4",key:"1inbqp"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}],["path",{d:"m14.5 4-5 16",key:"e7oirm"}]]);/**
231
- * @license lucide-react v0.469.0 - ISC
232
- *
233
- * This source code is licensed under the ISC license.
234
- * See the LICENSE file in the root directory of this source tree.
235
- */const C5=be("Columns2",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 3v18",key:"108xh3"}]]);/**
236
- * @license lucide-react v0.469.0 - ISC
237
- *
238
- * This source code is licensed under the ISC license.
239
- * See the LICENSE file in the root directory of this source tree.
240
- */const N5=be("Construction",[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1",key:"1estib"}],["path",{d:"M17 14v7",key:"7m2elx"}],["path",{d:"M7 14v7",key:"1cm7wv"}],["path",{d:"M17 3v3",key:"1v4jwn"}],["path",{d:"M7 3v3",key:"7o6guu"}],["path",{d:"M10 14 2.3 6.3",key:"1023jk"}],["path",{d:"m14 6 7.7 7.7",key:"1s8pl2"}],["path",{d:"m8 6 8 8",key:"hl96qh"}]]);/**
241
- * @license lucide-react v0.469.0 - ISC
242
- *
243
- * This source code is licensed under the ISC license.
244
- * See the LICENSE file in the root directory of this source tree.
245
- */const $c=be("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"}]]);/**
246
- * @license lucide-react v0.469.0 - ISC
247
- *
248
- * This source code is licensed under the ISC license.
249
- * See the LICENSE file in the root directory of this source tree.
250
- */const E5=be("CornerDownLeft",[["polyline",{points:"9 10 4 15 9 20",key:"r3jprv"}],["path",{d:"M20 4v7a4 4 0 0 1-4 4H4",key:"6o5b7l"}]]);/**
251
- * @license lucide-react v0.469.0 - ISC
252
- *
253
- * This source code is licensed under the ISC license.
254
- * See the LICENSE file in the root directory of this source tree.
255
- */const R5=be("CornerDownRight",[["polyline",{points:"15 10 20 15 15 20",key:"1q7qjw"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12",key:"z08zvw"}]]);/**
256
- * @license lucide-react v0.469.0 - ISC
257
- *
258
- * This source code is licensed under the ISC license.
259
- * See the LICENSE file in the root directory of this source tree.
260
- */const mb=be("Cpu",[["rect",{width:"16",height:"16",x:"4",y:"4",rx:"2",key:"14l7u7"}],["rect",{width:"6",height:"6",x:"9",y:"9",rx:"1",key:"5aljv4"}],["path",{d:"M15 2v2",key:"13l42r"}],["path",{d:"M15 20v2",key:"15mkzm"}],["path",{d:"M2 15h2",key:"1gxd5l"}],["path",{d:"M2 9h2",key:"1bbxkp"}],["path",{d:"M20 15h2",key:"19e6y8"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M9 2v2",key:"165o2o"}],["path",{d:"M9 20v2",key:"i2bqo8"}]]);/**
261
- * @license lucide-react v0.469.0 - ISC
262
- *
263
- * This source code is licensed under the ISC license.
264
- * See the LICENSE file in the root directory of this source tree.
265
- */const xa=be("Crown",[["path",{d:"M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z",key:"1vdc57"}],["path",{d:"M5 21h14",key:"11awu3"}]]);/**
266
- * @license lucide-react v0.469.0 - ISC
267
- *
268
- * This source code is licensed under the ISC license.
269
- * See the LICENSE file in the root directory of this source tree.
270
- */const PS=be("Database",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]]);/**
271
- * @license lucide-react v0.469.0 - ISC
272
- *
273
- * This source code is licensed under the ISC license.
274
- * See the LICENSE file in the root directory of this source tree.
275
- */const T5=be("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);/**
276
- * @license lucide-react v0.469.0 - ISC
277
- *
278
- * This source code is licensed under the ISC license.
279
- * See the LICENSE file in the root directory of this source tree.
280
- */const A5=be("Eraser",[["path",{d:"m7 21-4.3-4.3c-1-1-1-2.5 0-3.4l9.6-9.6c1-1 2.5-1 3.4 0l5.6 5.6c1 1 1 2.5 0 3.4L13 21",key:"182aya"}],["path",{d:"M22 21H7",key:"t4ddhn"}],["path",{d:"m5 11 9 9",key:"1mo9qw"}]]);/**
281
- * @license lucide-react v0.469.0 - ISC
282
- *
283
- * This source code is licensed under the ISC license.
284
- * See the LICENSE file in the root directory of this source tree.
285
- */const LS=be("ExternalLink",[["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"}]]);/**
286
- * @license lucide-react v0.469.0 - ISC
287
- *
288
- * This source code is licensed under the ISC license.
289
- * See the LICENSE file in the root directory of this source tree.
290
- */const IS=be("EyeOff",[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",key:"ct8e1f"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242",key:"151rxh"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",key:"13bj9a"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);/**
291
- * @license lucide-react v0.469.0 - ISC
292
- *
293
- * This source code is licensed under the ISC license.
294
- * See the LICENSE file in the root directory of this source tree.
295
- */const au=be("Eye",[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);/**
296
- * @license lucide-react v0.469.0 - ISC
297
- *
298
- * This source code is licensed under the ISC license.
299
- * See the LICENSE file in the root directory of this source tree.
300
- */const hf=be("FileCode2",[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m5 12-3 3 3 3",key:"oke12k"}],["path",{d:"m9 18 3-3-3-3",key:"112psh"}]]);/**
301
- * @license lucide-react v0.469.0 - ISC
302
- *
303
- * This source code is licensed under the ISC license.
304
- * See the LICENSE file in the root directory of this source tree.
305
- */const M5=be("FileCode",[["path",{d:"M10 12.5 8 15l2 2.5",key:"1tg20x"}],["path",{d:"m14 12.5 2 2.5-2 2.5",key:"yinavb"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}]]);/**
306
- * @license lucide-react v0.469.0 - ISC
307
- *
308
- * This source code is licensed under the ISC license.
309
- * See the LICENSE file in the root directory of this source tree.
310
- */const xf=be("FilePen",[["path",{d:"M12.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v9.5",key:"1couwa"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1y4qbx"}]]);/**
311
- * @license lucide-react v0.469.0 - ISC
312
- *
313
- * This source code is licensed under the ISC license.
314
- * See the LICENSE file in the root directory of this source tree.
315
- */const px=be("FilePlus2",[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M3 15h6",key:"4e2qda"}],["path",{d:"M6 12v6",key:"1u72j0"}]]);/**
316
- * @license lucide-react v0.469.0 - ISC
317
- *
318
- * This source code is licensed under the ISC license.
319
- * See the LICENSE file in the root directory of this source tree.
320
- */const O5=be("FilePlus",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 15h6",key:"cctwl0"}],["path",{d:"M12 18v-6",key:"17g6i2"}]]);/**
321
- * @license lucide-react v0.469.0 - ISC
322
- *
323
- * This source code is licensed under the ISC license.
324
- * See the LICENSE file in the root directory of this source tree.
325
- */const z5=be("FileQuestion",[["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}]]);/**
326
- * @license lucide-react v0.469.0 - ISC
327
- *
328
- * This source code is licensed under the ISC license.
329
- * See the LICENSE file in the root directory of this source tree.
330
- */const Wf=be("FileText",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);/**
331
- * @license lucide-react v0.469.0 - ISC
332
- *
333
- * This source code is licensed under the ISC license.
334
- * See the LICENSE file in the root directory of this source tree.
335
- */const D5=be("FileX2",[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m8 12.5-5 5",key:"b853mi"}],["path",{d:"m3 12.5 5 5",key:"1qls4r"}]]);/**
336
- * @license lucide-react v0.469.0 - ISC
337
- *
338
- * This source code is licensed under the ISC license.
339
- * See the LICENSE file in the root directory of this source tree.
340
- */const BS=be("File",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}]]);/**
341
- * @license lucide-react v0.469.0 - ISC
342
- *
343
- * This source code is licensed under the ISC license.
344
- * See the LICENSE file in the root directory of this source tree.
345
- */const mx=be("FlaskConical",[["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"}]]);/**
346
- * @license lucide-react v0.469.0 - ISC
347
- *
348
- * This source code is licensed under the ISC license.
349
- * See the LICENSE file in the root directory of this source tree.
350
- */const P5=be("FolderGit2",[["path",{d:"M9 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 2v5",key:"1w6njk"}],["circle",{cx:"13",cy:"12",r:"2",key:"1j92g6"}],["path",{d:"M18 19c-2.8 0-5-2.2-5-5v8",key:"pkpw2h"}],["circle",{cx:"20",cy:"19",r:"2",key:"1obnsp"}]]);/**
351
- * @license lucide-react v0.469.0 - ISC
352
- *
353
- * This source code is licensed under the ISC license.
354
- * See the LICENSE file in the root directory of this source tree.
355
- */const gb=be("FolderKanban",[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M12 10v2",key:"hh53o1"}],["path",{d:"M16 10v6",key:"1d6xys"}]]);/**
356
- * @license lucide-react v0.469.0 - ISC
357
- *
358
- * This source code is licensed under the ISC license.
359
- * See the LICENSE file in the root directory of this source tree.
360
- */const ci=be("FolderOpen",[["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"}]]);/**
361
- * @license lucide-react v0.469.0 - ISC
362
- *
363
- * This source code is licensed under the ISC license.
364
- * See the LICENSE file in the root directory of this source tree.
365
- */const hb=be("FolderTree",[["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"}]]);/**
366
- * @license lucide-react v0.469.0 - ISC
367
- *
368
- * This source code is licensed under the ISC license.
369
- * See the LICENSE file in the root directory of this source tree.
370
- */const US=be("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"}]]);/**
371
- * @license lucide-react v0.469.0 - ISC
372
- *
373
- * This source code is licensed under the ISC license.
374
- * See the LICENSE file in the root directory of this source tree.
375
- */const L5=be("Folders",[["path",{d:"M20 17a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3.9a2 2 0 0 1-1.69-.9l-.81-1.2a2 2 0 0 0-1.67-.9H8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2Z",key:"4u7rpt"}],["path",{d:"M2 8v11a2 2 0 0 0 2 2h14",key:"1eicx1"}]]);/**
376
- * @license lucide-react v0.469.0 - ISC
377
- *
378
- * This source code is licensed under the ISC license.
379
- * See the LICENSE file in the root directory of this source tree.
380
- */const Zf=be("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);/**
381
- * @license lucide-react v0.469.0 - ISC
382
- *
383
- * This source code is licensed under the ISC license.
384
- * See the LICENSE file in the root directory of this source tree.
385
- */const I5=be("Gem",[["path",{d:"M6 3h12l4 6-10 13L2 9Z",key:"1pcd5k"}],["path",{d:"M11 3 8 9l4 13 4-13-3-6",key:"1fcu3u"}],["path",{d:"M2 9h20",key:"16fsjt"}]]);/**
386
- * @license lucide-react v0.469.0 - ISC
387
- *
388
- * This source code is licensed under the ISC license.
389
- * See the LICENSE file in the root directory of this source tree.
390
- */const ru=be("GitBranch",[["line",{x1:"6",x2:"6",y1:"3",y2:"15",key:"17qcm7"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M18 9a9 9 0 0 1-9 9",key:"n2h4wq"}]]);/**
391
- * @license lucide-react v0.469.0 - ISC
392
- *
393
- * This source code is licensed under the ISC license.
394
- * See the LICENSE file in the root directory of this source tree.
395
- */const B5=be("GitCompare",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9",key:"19pyzm"}]]);/**
396
- * @license lucide-react v0.469.0 - ISC
397
- *
398
- * This source code is licensed under the ISC license.
399
- * See the LICENSE file in the root directory of this source tree.
400
- */const $S=be("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"}]]);/**
401
- * @license lucide-react v0.469.0 - ISC
402
- *
403
- * This source code is licensed under the ISC license.
404
- * See the LICENSE file in the root directory of this source tree.
405
- */const HS=be("Globe",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);/**
406
- * @license lucide-react v0.469.0 - ISC
407
- *
408
- * This source code is licensed under the ISC license.
409
- * See the LICENSE file in the root directory of this source tree.
410
- */const U5=be("Hammer",[["path",{d:"m15 12-8.373 8.373a1 1 0 1 1-3-3L12 9",key:"eefl8a"}],["path",{d:"m18 15 4-4",key:"16gjal"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172V7l-2.26-2.26a6 6 0 0 0-4.202-1.756L9 2.96l.92.82A6.18 6.18 0 0 1 12 8.4V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5",key:"b7pghm"}]]);/**
411
- * @license lucide-react v0.469.0 - ISC
412
- *
413
- * This source code is licensed under the ISC license.
414
- * See the LICENSE file in the root directory of this source tree.
415
- */const Eo=be("Heart",[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}]]);/**
416
- * @license lucide-react v0.469.0 - ISC
417
- *
418
- * This source code is licensed under the ISC license.
419
- * See the LICENSE file in the root directory of this source tree.
420
- */const $5=be("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"}]]);/**
421
- * @license lucide-react v0.469.0 - ISC
422
- *
423
- * This source code is licensed under the ISC license.
424
- * See the LICENSE file in the root directory of this source tree.
425
- */const H5=be("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-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"1d0kgt"}]]);/**
426
- * @license lucide-react v0.469.0 - ISC
427
- *
428
- * This source code is licensed under the ISC license.
429
- * See the LICENSE file in the root directory of this source tree.
430
- */const V5=be("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"}]]);/**
431
- * @license lucide-react v0.469.0 - ISC
432
- *
433
- * This source code is licensed under the ISC license.
434
- * See the LICENSE file in the root directory of this source tree.
435
- */const VS=be("Info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);/**
436
- * @license lucide-react v0.469.0 - ISC
437
- *
438
- * This source code is licensed under the ISC license.
439
- * See the LICENSE file in the root directory of this source tree.
440
- */const gx=be("KeyRound",[["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"}]]);/**
441
- * @license lucide-react v0.469.0 - ISC
442
- *
443
- * This source code is licensed under the ISC license.
444
- * See the LICENSE file in the root directory of this source tree.
445
- */const q5=be("Languages",[["path",{d:"m5 8 6 6",key:"1wu5hv"}],["path",{d:"m4 14 6-6 2-3",key:"1k1g8d"}],["path",{d:"M2 5h12",key:"or177f"}],["path",{d:"M7 2h1",key:"1t2jsx"}],["path",{d:"m22 22-5-10-5 10",key:"don7ne"}],["path",{d:"M14 18h6",key:"1m8k6r"}]]);/**
446
- * @license lucide-react v0.469.0 - ISC
447
- *
448
- * This source code is licensed under the ISC license.
449
- * See the LICENSE file in the root directory of this source tree.
450
- */const F5=be("LayoutDashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]);/**
451
- * @license lucide-react v0.469.0 - ISC
452
- *
453
- * This source code is licensed under the ISC license.
454
- * See the LICENSE file in the root directory of this source tree.
455
- */const G5=be("LayoutGrid",[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}]]);/**
456
- * @license lucide-react v0.469.0 - ISC
457
- *
458
- * This source code is licensed under the ISC license.
459
- * See the LICENSE file in the root directory of this source tree.
460
- */const Y5=be("ListTodo",[["rect",{x:"3",y:"5",width:"6",height:"6",rx:"1",key:"1defrl"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"M13 6h8",key:"15sg57"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 18h8",key:"oe0vm4"}]]);/**
461
- * @license lucide-react v0.469.0 - ISC
462
- *
463
- * This source code is licensed under the ISC license.
464
- * See the LICENSE file in the root directory of this source tree.
465
- */const K5=be("List",[["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 18h.01",key:"1tta3j"}],["path",{d:"M3 6h.01",key:"1rqtza"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 18h13",key:"1lx6n3"}],["path",{d:"M8 6h13",key:"ik3vkj"}]]);/**
466
- * @license lucide-react v0.469.0 - ISC
467
- *
468
- * This source code is licensed under the ISC license.
469
- * See the LICENSE file in the root directory of this source tree.
470
- */const Lr=be("LoaderCircle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);/**
471
- * @license lucide-react v0.469.0 - ISC
472
- *
473
- * This source code is licensed under the ISC license.
474
- * See the LICENSE file in the root directory of this source tree.
475
- */const qS=be("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"}]]);/**
476
- * @license lucide-react v0.469.0 - ISC
477
- *
478
- * This source code is licensed under the ISC license.
479
- * See the LICENSE file in the root directory of this source tree.
480
- */const FS=be("MessageCircleQuestion",[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);/**
481
- * @license lucide-react v0.469.0 - ISC
482
- *
483
- * This source code is licensed under the ISC license.
484
- * See the LICENSE file in the root directory of this source tree.
485
- */const X5=be("MessageCircle",[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}]]);/**
486
- * @license lucide-react v0.469.0 - ISC
487
- *
488
- * This source code is licensed under the ISC license.
489
- * See the LICENSE file in the root directory of this source tree.
490
- */const xb=be("MessageSquare",[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]]);/**
491
- * @license lucide-react v0.469.0 - ISC
492
- *
493
- * This source code is licensed under the ISC license.
494
- * See the LICENSE file in the root directory of this source tree.
495
- */const bf=be("MessagesSquare",[["path",{d:"M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z",key:"p1xzt8"}],["path",{d:"M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1",key:"1cx29u"}]]);/**
496
- * @license lucide-react v0.469.0 - ISC
497
- *
498
- * This source code is licensed under the ISC license.
499
- * See the LICENSE file in the root directory of this source tree.
500
- */const bb=be("Mic",[["path",{d:"M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z",key:"131961"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2",key:"1vc78b"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}]]);/**
501
- * @license lucide-react v0.469.0 - ISC
502
- *
503
- * This source code is licensed under the ISC license.
504
- * See the LICENSE file in the root directory of this source tree.
505
- */const _b=be("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"}]]);/**
506
- * @license lucide-react v0.469.0 - ISC
507
- *
508
- * This source code is licensed under the ISC license.
509
- * See the LICENSE file in the root directory of this source tree.
510
- */const Q5=be("Moon",[["path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z",key:"a7tn18"}]]);/**
511
- * @license lucide-react v0.469.0 - ISC
512
- *
513
- * This source code is licensed under the ISC license.
514
- * See the LICENSE file in the root directory of this source tree.
515
- */const W5=be("Network",[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]]);/**
516
- * @license lucide-react v0.469.0 - ISC
517
- *
518
- * This source code is licensed under the ISC license.
519
- * See the LICENSE file in the root directory of this source tree.
520
- */const Z5=be("Package",[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 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.73z",key:"1a0edw"}],["path",{d:"M12 22V12",key:"d0xqtd"}],["path",{d:"m3.3 7 7.703 4.734a2 2 0 0 0 1.994 0L20.7 7",key:"yx3hmr"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}]]);/**
521
- * @license lucide-react v0.469.0 - ISC
522
- *
523
- * This source code is licensed under the ISC license.
524
- * See the LICENSE file in the root directory of this source tree.
525
- */const GS=be("PanelLeft",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}]]);/**
526
- * @license lucide-react v0.469.0 - ISC
527
- *
528
- * This source code is licensed under the ISC license.
529
- * See the LICENSE file in the root directory of this source tree.
530
- */const J5=be("PanelRight",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);/**
531
- * @license lucide-react v0.469.0 - ISC
532
- *
533
- * This source code is licensed under the ISC license.
534
- * See the LICENSE file in the root directory of this source tree.
535
- */const e3=be("PencilLine",[["path",{d:"M12 20h9",key:"t2du7b"}],["path",{d:"M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z",key:"1ykcvy"}],["path",{d:"m15 5 3 3",key:"1w25hb"}]]);/**
536
- * @license lucide-react v0.469.0 - ISC
537
- *
538
- * This source code is licensed under the ISC license.
539
- * See the LICENSE file in the root directory of this source tree.
540
- */const ya=be("Pencil",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);/**
541
- * @license lucide-react v0.469.0 - ISC
542
- *
543
- * This source code is licensed under the ISC license.
544
- * See the LICENSE file in the root directory of this source tree.
545
- */const vb=be("Play",[["polygon",{points:"6 3 20 12 6 21 6 3",key:"1oa8hb"}]]);/**
546
- * @license lucide-react v0.469.0 - ISC
547
- *
548
- * This source code is licensed under the ISC license.
549
- * See the LICENSE file in the root directory of this source tree.
550
- */const t3=be("Plug",[["path",{d:"M12 22v-5",key:"1ega77"}],["path",{d:"M9 8V2",key:"14iosj"}],["path",{d:"M15 8V2",key:"18g5xt"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z",key:"osxo6l"}]]);/**
551
- * @license lucide-react v0.469.0 - ISC
552
- *
553
- * This source code is licensed under the ISC license.
554
- * See the LICENSE file in the root directory of this source tree.
555
- */const It=be("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);/**
556
- * @license lucide-react v0.469.0 - ISC
557
- *
558
- * This source code is licensed under the ISC license.
559
- * See the LICENSE file in the root directory of this source tree.
560
- */const Hc=be("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"}]]);/**
561
- * @license lucide-react v0.469.0 - ISC
562
- *
563
- * This source code is licensed under the ISC license.
564
- * See the LICENSE file in the root directory of this source tree.
565
- */const n3=be("QrCode",[["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"}]]);/**
566
- * @license lucide-react v0.469.0 - ISC
567
- *
568
- * This source code is licensed under the ISC license.
569
- * See the LICENSE file in the root directory of this source tree.
570
- */const Qs=be("RefreshCw",[["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"}]]);/**
571
- * @license lucide-react v0.469.0 - ISC
572
- *
573
- * This source code is licensed under the ISC license.
574
- * See the LICENSE file in the root directory of this source tree.
575
- */const ui=be("RotateCcw",[["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"}]]);/**
576
- * @license lucide-react v0.469.0 - ISC
577
- *
578
- * This source code is licensed under the ISC license.
579
- * See the LICENSE file in the root directory of this source tree.
580
- */const di=be("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);/**
581
- * @license lucide-react v0.469.0 - ISC
582
- *
583
- * This source code is licensed under the ISC license.
584
- * See the LICENSE file in the root directory of this source tree.
585
- */const _f=be("ScrollText",[["path",{d:"M15 12h-5",key:"r7krc0"}],["path",{d:"M15 8h-5",key:"1khuty"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]]);/**
586
- * @license lucide-react v0.469.0 - ISC
587
- *
588
- * This source code is licensed under the ISC license.
589
- * See the LICENSE file in the root directory of this source tree.
590
- */const Mc=be("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);/**
591
- * @license lucide-react v0.469.0 - ISC
592
- *
593
- * This source code is licensed under the ISC license.
594
- * See the LICENSE file in the root directory of this source tree.
595
- */const Js=be("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"}]]);/**
596
- * @license lucide-react v0.469.0 - ISC
597
- *
598
- * This source code is licensed under the ISC license.
599
- * See the LICENSE file in the root directory of this source tree.
600
- */const YS=be("Server",[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2",key:"ngkwjq"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2",key:"iecqi9"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6",key:"16zg32"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18",key:"nzw8ys"}]]);/**
601
- * @license lucide-react v0.469.0 - ISC
602
- *
603
- * This source code is licensed under the ISC license.
604
- * See the LICENSE file in the root directory of this source tree.
605
- */const s3=be("Settings2",[["path",{d:"M20 7h-9",key:"3s1dr2"}],["path",{d:"M14 17H5",key:"gfn3mx"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]]);/**
606
- * @license lucide-react v0.469.0 - ISC
607
- *
608
- * This source code is licensed under the ISC license.
609
- * See the LICENSE file in the root directory of this source tree.
610
- */const Vc=be("Settings",[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",key:"1qme2f"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);/**
611
- * @license lucide-react v0.469.0 - ISC
612
- *
613
- * This source code is licensed under the ISC license.
614
- * See the LICENSE file in the root directory of this source tree.
615
- */const a3=be("SlidersHorizontal",[["line",{x1:"21",x2:"14",y1:"4",y2:"4",key:"obuewd"}],["line",{x1:"10",x2:"3",y1:"4",y2:"4",key:"1q6298"}],["line",{x1:"21",x2:"12",y1:"12",y2:"12",key:"1iu8h1"}],["line",{x1:"8",x2:"3",y1:"12",y2:"12",key:"ntss68"}],["line",{x1:"21",x2:"16",y1:"20",y2:"20",key:"14d8ph"}],["line",{x1:"12",x2:"3",y1:"20",y2:"20",key:"m0wm8r"}],["line",{x1:"14",x2:"14",y1:"2",y2:"6",key:"14e1ph"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14",key:"1i6ji0"}],["line",{x1:"16",x2:"16",y1:"18",y2:"22",key:"1lctlv"}]]);/**
616
- * @license lucide-react v0.469.0 - ISC
617
- *
618
- * This source code is licensed under the ISC license.
619
- * See the LICENSE file in the root directory of this source tree.
620
- */const r3=be("Smartphone",[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12 18h.01",key:"mhygvu"}]]);/**
621
- * @license lucide-react v0.469.0 - ISC
622
- *
623
- * This source code is licensed under the ISC license.
624
- * See the LICENSE file in the root directory of this source tree.
625
- */const Vs=be("Sparkles",[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]]);/**
626
- * @license lucide-react v0.469.0 - ISC
627
- *
628
- * This source code is licensed under the ISC license.
629
- * See the LICENSE file in the root directory of this source tree.
630
- */const o3=be("SquarePen",[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",key:"ohrbg2"}]]);/**
631
- * @license lucide-react v0.469.0 - ISC
632
- *
633
- * This source code is licensed under the ISC license.
634
- * See the LICENSE file in the root directory of this source tree.
635
- */const KS=be("Square",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);/**
636
- * @license lucide-react v0.469.0 - ISC
637
- *
638
- * This source code is licensed under the ISC license.
639
- * See the LICENSE file in the root directory of this source tree.
640
- */const l3=be("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"}]]);/**
641
- * @license lucide-react v0.469.0 - ISC
642
- *
643
- * This source code is licensed under the ISC license.
644
- * See the LICENSE file in the root directory of this source tree.
645
- */const ba=be("Terminal",[["polyline",{points:"4 17 10 11 4 5",key:"akl6gq"}],["line",{x1:"12",x2:"20",y1:"19",y2:"19",key:"q2wloq"}]]);/**
646
- * @license lucide-react v0.469.0 - ISC
647
- *
648
- * This source code is licensed under the ISC license.
649
- * See the LICENSE file in the root directory of this source tree.
650
- */const i3=be("Timer",[["line",{x1:"10",x2:"14",y1:"2",y2:"2",key:"14vaq8"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11",key:"17fdiu"}],["circle",{cx:"12",cy:"14",r:"8",key:"1e1u0o"}]]);/**
651
- * @license lucide-react v0.469.0 - ISC
652
- *
653
- * This source code is licensed under the ISC license.
654
- * See the LICENSE file in the root directory of this source tree.
655
- */const _n=be("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);/**
656
- * @license lucide-react v0.469.0 - ISC
657
- *
658
- * This source code is licensed under the ISC license.
659
- * See the LICENSE file in the root directory of this source tree.
660
- */const XS=be("TriangleAlert",[["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"}]]);/**
661
- * @license lucide-react v0.469.0 - ISC
662
- *
663
- * This source code is licensed under the ISC license.
664
- * See the LICENSE file in the root directory of this source tree.
665
- */const QS=be("Upload",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"17 8 12 3 7 8",key:"t8dd8p"}],["line",{x1:"12",x2:"12",y1:"3",y2:"15",key:"widbto"}]]);/**
666
- * @license lucide-react v0.469.0 - ISC
667
- *
668
- * This source code is licensed under the ISC license.
669
- * See the LICENSE file in the root directory of this source tree.
670
- */const yb=be("User",[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]]);/**
671
- * @license lucide-react v0.469.0 - ISC
672
- *
673
- * This source code is licensed under the ISC license.
674
- * See the LICENSE file in the root directory of this source tree.
675
- */const c3=be("Volume2",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728",key:"ijwkga"}]]);/**
676
- * @license lucide-react v0.469.0 - ISC
677
- *
678
- * This source code is licensed under the ISC license.
679
- * See the LICENSE file in the root directory of this source tree.
680
- */const u3=be("WandSparkles",[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]]);/**
681
- * @license lucide-react v0.469.0 - ISC
682
- *
683
- * This source code is licensed under the ISC license.
684
- * See the LICENSE file in the root directory of this source tree.
685
- */const d3=be("WifiOff",[["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"}]]);/**
686
- * @license lucide-react v0.469.0 - ISC
687
- *
688
- * This source code is licensed under the ISC license.
689
- * See the LICENSE file in the root directory of this source tree.
690
- */const ea=be("Wrench",[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z",key:"cbrjhi"}]]);/**
691
- * @license lucide-react v0.469.0 - ISC
692
- *
693
- * This source code is licensed under the ISC license.
694
- * See the LICENSE file in the root directory of this source tree.
695
- */const ws=be("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);/**
696
- * @license lucide-react v0.469.0 - ISC
697
- *
698
- * This source code is licensed under the ISC license.
699
- * See the LICENSE file in the root directory of this source tree.
700
- */const Kl=be("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"}]]),Jf={health:5e3,projects:15e3,telegramStatus:8e3,pairList:12e3},On={theme:"apx.theme",token:"apx.token",sidebarCollapsed:"apx.sidebar.collapsed",language:"apx.lang",robyChat:"apx.roby.chat"},jb=["total","automatico","permiso"],hj=["sky","violet","emerald","amber","rose","indigo","teal","fuchsia"],f3={icon:{light:"/logo/logo_only_white.webp",dark:"/logo/logo_only_dark.webp"},full:{light:"/logo/logo_white.webp",dark:"/logo/logo_dark.webp"},vertical:{light:"/logo/logo_vertical_white.webp",dark:"/logo/logo_vertical_dark.webp"}};function p3(){return typeof window<"u"&&typeof window.matchMedia=="function"&&window.matchMedia("(prefers-color-scheme: dark)").matches}function Zg(e){return e==="system"?p3()?"dark":"light":e}function xj(){if(typeof window>"u")return"dark";const e=localStorage.getItem(On.theme);return e==="light"||e==="dark"||e==="system"?e:"dark"}const WS=x.createContext(null);function m3({children:e}){const[t,a]=x.useState(xj),[o,l]=x.useState(()=>Zg(xj()));x.useEffect(()=>{const p=()=>{const m=Zg(t);l(m),document.documentElement.classList.toggle("dark",m==="dark")};p();try{localStorage.setItem(On.theme,t)}catch{}if(t==="system"&&typeof window.matchMedia=="function"){const m=window.matchMedia("(prefers-color-scheme: dark)");return m.addEventListener("change",p),()=>m.removeEventListener("change",p)}},[t]);const c=x.useCallback(()=>{a(p=>Zg(p)==="dark"?"light":"dark")},[]),d=x.useMemo(()=>({theme:o,preference:t,toggle:c,set:a}),[o,t,c]);return s.jsx(WS.Provider,{value:d,children:e})}function kb(){const e=x.useContext(WS);if(!e)throw new Error("useTheme must be used within ThemeProvider");return e}const g3=1367/458,h3=735/1016;function x3({size:e=32,title:t="APX",variant:a="icon"}){const{theme:o}=kb(),l=f3[a][o];if(a==="full"){const c=e,d=Math.round(e*g3);return s.jsx("img",{src:l,alt:t,width:d,height:c,className:"block object-contain",draggable:!1})}if(a==="vertical"){const c=e,d=Math.round(e/h3);return s.jsx("img",{src:l,alt:t,width:c,height:d,className:"block object-contain",draggable:!1})}return s.jsx("img",{src:l,alt:t,width:e,height:e,className:"block object-contain",draggable:!1})}function ZS(e){var t,a,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var l=e.length;for(t=0;t<l;t++)e[t]&&(a=ZS(e[t]))&&(o&&(o+=" "),o+=a)}else for(a in e)e[a]&&(o&&(o+=" "),o+=a);return o}function qc(){for(var e,t,a=0,o="",l=arguments.length;a<l;a++)(e=arguments[a])&&(t=ZS(e))&&(o&&(o+=" "),o+=t);return o}const wb="-",b3=e=>{const t=v3(e),{conflictingClassGroups:a,conflictingClassGroupModifiers:o}=e;return{getClassGroupId:d=>{const p=d.split(wb);return p[0]===""&&p.length!==1&&p.shift(),JS(p,t)||_3(d)},getConflictingClassGroupIds:(d,p)=>{const m=a[d]||[];return p&&o[d]?[...m,...o[d]]:m}}},JS=(e,t)=>{if(e.length===0)return t.classGroupId;const a=e[0],o=t.nextPart.get(a),l=o?JS(e.slice(1),o):void 0;if(l)return l;if(t.validators.length===0)return;const c=e.join(wb);return t.validators.find(({validator:d})=>d(c))?.classGroupId},bj=/^\[(.+)\]$/,_3=e=>{if(bj.test(e)){const t=bj.exec(e)[1],a=t?.substring(0,t.indexOf(":"));if(a)return"arbitrary.."+a}},v3=e=>{const{theme:t,prefix:a}=e,o={nextPart:new Map,validators:[]};return j3(Object.entries(e.classGroups),a).forEach(([c,d])=>{hx(d,o,c,t)}),o},hx=(e,t,a,o)=>{e.forEach(l=>{if(typeof l=="string"){const c=l===""?t:_j(t,l);c.classGroupId=a;return}if(typeof l=="function"){if(y3(l)){hx(l(o),t,a,o);return}t.validators.push({validator:l,classGroupId:a});return}Object.entries(l).forEach(([c,d])=>{hx(d,_j(t,c),a,o)})})},_j=(e,t)=>{let a=e;return t.split(wb).forEach(o=>{a.nextPart.has(o)||a.nextPart.set(o,{nextPart:new Map,validators:[]}),a=a.nextPart.get(o)}),a},y3=e=>e.isThemeGetter,j3=(e,t)=>t?e.map(([a,o])=>{const l=o.map(c=>typeof c=="string"?t+c:typeof c=="object"?Object.fromEntries(Object.entries(c).map(([d,p])=>[t+d,p])):c);return[a,l]}):e,k3=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,a=new Map,o=new Map;const l=(c,d)=>{a.set(c,d),t++,t>e&&(t=0,o=a,a=new Map)};return{get(c){let d=a.get(c);if(d!==void 0)return d;if((d=o.get(c))!==void 0)return l(c,d),d},set(c,d){a.has(c)?a.set(c,d):l(c,d)}}},e2="!",w3=e=>{const{separator:t,experimentalParseClassName:a}=e,o=t.length===1,l=t[0],c=t.length,d=p=>{const m=[];let g=0,h=0,b;for(let y=0;y<p.length;y++){let w=p[y];if(g===0){if(w===l&&(o||p.slice(y,y+c)===t)){m.push(p.slice(h,y)),h=y+c;continue}if(w==="/"){b=y;continue}}w==="["?g++:w==="]"&&g--}const _=m.length===0?p:p.substring(h),j=_.startsWith(e2),E=j?_.substring(1):_,k=b&&b>h?b-h:void 0;return{modifiers:m,hasImportantModifier:j,baseClassName:E,maybePostfixModifierPosition:k}};return a?p=>a({className:p,parseClassName:d}):d},S3=e=>{if(e.length<=1)return e;const t=[];let a=[];return e.forEach(o=>{o[0]==="["?(t.push(...a.sort(),o),a=[]):a.push(o)}),t.push(...a.sort()),t},C3=e=>({cache:k3(e.cacheSize),parseClassName:w3(e),...b3(e)}),N3=/\s+/,E3=(e,t)=>{const{parseClassName:a,getClassGroupId:o,getConflictingClassGroupIds:l}=t,c=[],d=e.trim().split(N3);let p="";for(let m=d.length-1;m>=0;m-=1){const g=d[m],{modifiers:h,hasImportantModifier:b,baseClassName:_,maybePostfixModifierPosition:j}=a(g);let E=!!j,k=o(E?_.substring(0,j):_);if(!k){if(!E){p=g+(p.length>0?" "+p:p);continue}if(k=o(_),!k){p=g+(p.length>0?" "+p:p);continue}E=!1}const y=S3(h).join(":"),w=b?y+e2:y,S=w+k;if(c.includes(S))continue;c.push(S);const N=l(k,E);for(let R=0;R<N.length;++R){const A=N[R];c.push(w+A)}p=g+(p.length>0?" "+p:p)}return p};function R3(){let e=0,t,a,o="";for(;e<arguments.length;)(t=arguments[e++])&&(a=t2(t))&&(o&&(o+=" "),o+=a);return o}const t2=e=>{if(typeof e=="string")return e;let t,a="";for(let o=0;o<e.length;o++)e[o]&&(t=t2(e[o]))&&(a&&(a+=" "),a+=t);return a};function T3(e,...t){let a,o,l,c=d;function d(m){const g=t.reduce((h,b)=>b(h),e());return a=C3(g),o=a.cache.get,l=a.cache.set,c=p,p(m)}function p(m){const g=o(m);if(g)return g;const h=E3(m,a);return l(m,h),h}return function(){return c(R3.apply(null,arguments))}}const nn=e=>{const t=a=>a[e]||[];return t.isThemeGetter=!0,t},n2=/^\[(?:([a-z-]+):)?(.+)\]$/i,A3=/^\d+\/\d+$/,M3=new Set(["px","full","screen"]),O3=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,z3=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,D3=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,P3=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,L3=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,Fa=e=>Bl(e)||M3.has(e)||A3.test(e),Rr=e=>fi(e,"length",F3),Bl=e=>!!e&&!Number.isNaN(Number(e)),Jg=e=>fi(e,"number",Bl),ic=e=>!!e&&Number.isInteger(Number(e)),I3=e=>e.endsWith("%")&&Bl(e.slice(0,-1)),ht=e=>n2.test(e),Tr=e=>O3.test(e),B3=new Set(["length","size","percentage"]),U3=e=>fi(e,B3,s2),$3=e=>fi(e,"position",s2),H3=new Set(["image","url"]),V3=e=>fi(e,H3,Y3),q3=e=>fi(e,"",G3),cc=()=>!0,fi=(e,t,a)=>{const o=n2.exec(e);return o?o[1]?typeof t=="string"?o[1]===t:t.has(o[1]):a(o[2]):!1},F3=e=>z3.test(e)&&!D3.test(e),s2=()=>!1,G3=e=>P3.test(e),Y3=e=>L3.test(e),K3=()=>{const e=nn("colors"),t=nn("spacing"),a=nn("blur"),o=nn("brightness"),l=nn("borderColor"),c=nn("borderRadius"),d=nn("borderSpacing"),p=nn("borderWidth"),m=nn("contrast"),g=nn("grayscale"),h=nn("hueRotate"),b=nn("invert"),_=nn("gap"),j=nn("gradientColorStops"),E=nn("gradientColorStopPositions"),k=nn("inset"),y=nn("margin"),w=nn("opacity"),S=nn("padding"),N=nn("saturate"),R=nn("scale"),A=nn("sepia"),T=nn("skew"),O=nn("space"),z=nn("translate"),U=()=>["auto","contain","none"],P=()=>["auto","hidden","clip","visible","scroll"],B=()=>["auto",ht,t],D=()=>[ht,t],L=()=>["",Fa,Rr],$=()=>["auto",Bl,ht],V=()=>["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top"],H=()=>["solid","dashed","dotted","double","none"],F=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],Y=()=>["start","end","center","between","around","evenly","stretch"],G=()=>["","0",ht],K=()=>["auto","avoid","all","avoid-page","page","left","right","column"],I=()=>[Bl,ht];return{cacheSize:500,separator:":",theme:{colors:[cc],spacing:[Fa,Rr],blur:["none","",Tr,ht],brightness:I(),borderColor:[e],borderRadius:["none","","full",Tr,ht],borderSpacing:D(),borderWidth:L(),contrast:I(),grayscale:G(),hueRotate:I(),invert:G(),gap:D(),gradientColorStops:[e],gradientColorStopPositions:[I3,Rr],inset:B(),margin:B(),opacity:I(),padding:D(),saturate:I(),scale:I(),sepia:G(),skew:I(),space:D(),translate:D()},classGroups:{aspect:[{aspect:["auto","square","video",ht]}],container:["container"],columns:[{columns:[Tr]}],"break-after":[{"break-after":K()}],"break-before":[{"break-before":K()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:[...V(),ht]}],overflow:[{overflow:P()}],"overflow-x":[{"overflow-x":P()}],"overflow-y":[{"overflow-y":P()}],overscroll:[{overscroll:U()}],"overscroll-x":[{"overscroll-x":U()}],"overscroll-y":[{"overscroll-y":U()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[k]}],"inset-x":[{"inset-x":[k]}],"inset-y":[{"inset-y":[k]}],start:[{start:[k]}],end:[{end:[k]}],top:[{top:[k]}],right:[{right:[k]}],bottom:[{bottom:[k]}],left:[{left:[k]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",ic,ht]}],basis:[{basis:B()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",ht]}],grow:[{grow:G()}],shrink:[{shrink:G()}],order:[{order:["first","last","none",ic,ht]}],"grid-cols":[{"grid-cols":[cc]}],"col-start-end":[{col:["auto",{span:["full",ic,ht]},ht]}],"col-start":[{"col-start":$()}],"col-end":[{"col-end":$()}],"grid-rows":[{"grid-rows":[cc]}],"row-start-end":[{row:["auto",{span:[ic,ht]},ht]}],"row-start":[{"row-start":$()}],"row-end":[{"row-end":$()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",ht]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",ht]}],gap:[{gap:[_]}],"gap-x":[{"gap-x":[_]}],"gap-y":[{"gap-y":[_]}],"justify-content":[{justify:["normal",...Y()]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal",...Y(),"baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":[...Y(),"baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[S]}],px:[{px:[S]}],py:[{py:[S]}],ps:[{ps:[S]}],pe:[{pe:[S]}],pt:[{pt:[S]}],pr:[{pr:[S]}],pb:[{pb:[S]}],pl:[{pl:[S]}],m:[{m:[y]}],mx:[{mx:[y]}],my:[{my:[y]}],ms:[{ms:[y]}],me:[{me:[y]}],mt:[{mt:[y]}],mr:[{mr:[y]}],mb:[{mb:[y]}],ml:[{ml:[y]}],"space-x":[{"space-x":[O]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[O]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",ht,t]}],"min-w":[{"min-w":[ht,t,"min","max","fit"]}],"max-w":[{"max-w":[ht,t,"none","full","min","max","fit","prose",{screen:[Tr]},Tr]}],h:[{h:[ht,t,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[ht,t,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[ht,t,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[ht,t,"auto","min","max","fit"]}],"font-size":[{text:["base",Tr,Rr]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",Jg]}],"font-family":[{font:[cc]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",ht]}],"line-clamp":[{"line-clamp":["none",Bl,Jg]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",Fa,ht]}],"list-image":[{"list-image":["none",ht]}],"list-style-type":[{list:["none","disc","decimal",ht]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[w]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[w]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...H(),"wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",Fa,Rr]}],"underline-offset":[{"underline-offset":["auto",Fa,ht]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:D()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",ht]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",ht]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[w]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:[...V(),$3]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",U3]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},V3]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[E]}],"gradient-via-pos":[{via:[E]}],"gradient-to-pos":[{to:[E]}],"gradient-from":[{from:[j]}],"gradient-via":[{via:[j]}],"gradient-to":[{to:[j]}],rounded:[{rounded:[c]}],"rounded-s":[{"rounded-s":[c]}],"rounded-e":[{"rounded-e":[c]}],"rounded-t":[{"rounded-t":[c]}],"rounded-r":[{"rounded-r":[c]}],"rounded-b":[{"rounded-b":[c]}],"rounded-l":[{"rounded-l":[c]}],"rounded-ss":[{"rounded-ss":[c]}],"rounded-se":[{"rounded-se":[c]}],"rounded-ee":[{"rounded-ee":[c]}],"rounded-es":[{"rounded-es":[c]}],"rounded-tl":[{"rounded-tl":[c]}],"rounded-tr":[{"rounded-tr":[c]}],"rounded-br":[{"rounded-br":[c]}],"rounded-bl":[{"rounded-bl":[c]}],"border-w":[{border:[p]}],"border-w-x":[{"border-x":[p]}],"border-w-y":[{"border-y":[p]}],"border-w-s":[{"border-s":[p]}],"border-w-e":[{"border-e":[p]}],"border-w-t":[{"border-t":[p]}],"border-w-r":[{"border-r":[p]}],"border-w-b":[{"border-b":[p]}],"border-w-l":[{"border-l":[p]}],"border-opacity":[{"border-opacity":[w]}],"border-style":[{border:[...H(),"hidden"]}],"divide-x":[{"divide-x":[p]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[p]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[w]}],"divide-style":[{divide:H()}],"border-color":[{border:[l]}],"border-color-x":[{"border-x":[l]}],"border-color-y":[{"border-y":[l]}],"border-color-s":[{"border-s":[l]}],"border-color-e":[{"border-e":[l]}],"border-color-t":[{"border-t":[l]}],"border-color-r":[{"border-r":[l]}],"border-color-b":[{"border-b":[l]}],"border-color-l":[{"border-l":[l]}],"divide-color":[{divide:[l]}],"outline-style":[{outline:["",...H()]}],"outline-offset":[{"outline-offset":[Fa,ht]}],"outline-w":[{outline:[Fa,Rr]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:L()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[w]}],"ring-offset-w":[{"ring-offset":[Fa,Rr]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",Tr,q3]}],"shadow-color":[{shadow:[cc]}],opacity:[{opacity:[w]}],"mix-blend":[{"mix-blend":[...F(),"plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":F()}],filter:[{filter:["","none"]}],blur:[{blur:[a]}],brightness:[{brightness:[o]}],contrast:[{contrast:[m]}],"drop-shadow":[{"drop-shadow":["","none",Tr,ht]}],grayscale:[{grayscale:[g]}],"hue-rotate":[{"hue-rotate":[h]}],invert:[{invert:[b]}],saturate:[{saturate:[N]}],sepia:[{sepia:[A]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[a]}],"backdrop-brightness":[{"backdrop-brightness":[o]}],"backdrop-contrast":[{"backdrop-contrast":[m]}],"backdrop-grayscale":[{"backdrop-grayscale":[g]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[h]}],"backdrop-invert":[{"backdrop-invert":[b]}],"backdrop-opacity":[{"backdrop-opacity":[w]}],"backdrop-saturate":[{"backdrop-saturate":[N]}],"backdrop-sepia":[{"backdrop-sepia":[A]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[d]}],"border-spacing-x":[{"border-spacing-x":[d]}],"border-spacing-y":[{"border-spacing-y":[d]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",ht]}],duration:[{duration:I()}],ease:[{ease:["linear","in","out","in-out",ht]}],delay:[{delay:I()}],animate:[{animate:["none","spin","ping","pulse","bounce",ht]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[R]}],"scale-x":[{"scale-x":[R]}],"scale-y":[{"scale-y":[R]}],rotate:[{rotate:[ic,ht]}],"translate-x":[{"translate-x":[z]}],"translate-y":[{"translate-y":[z]}],"skew-x":[{"skew-x":[T]}],"skew-y":[{"skew-y":[T]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",ht]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",ht]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":D()}],"scroll-mx":[{"scroll-mx":D()}],"scroll-my":[{"scroll-my":D()}],"scroll-ms":[{"scroll-ms":D()}],"scroll-me":[{"scroll-me":D()}],"scroll-mt":[{"scroll-mt":D()}],"scroll-mr":[{"scroll-mr":D()}],"scroll-mb":[{"scroll-mb":D()}],"scroll-ml":[{"scroll-ml":D()}],"scroll-p":[{"scroll-p":D()}],"scroll-px":[{"scroll-px":D()}],"scroll-py":[{"scroll-py":D()}],"scroll-ps":[{"scroll-ps":D()}],"scroll-pe":[{"scroll-pe":D()}],"scroll-pt":[{"scroll-pt":D()}],"scroll-pr":[{"scroll-pr":D()}],"scroll-pb":[{"scroll-pb":D()}],"scroll-pl":[{"scroll-pl":D()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",ht]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[Fa,Rr,Jg]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}},a2=T3(K3);function he(...e){return a2(qc(e))}const vj={};function es(e,t){const a=x.useRef(vj);return a.current===vj&&(a.current=e(t)),a}const xx=[];let bx;function X3(){return bx}function Q3(e){xx.push(e)}function Sb(e){const t=(a,o)=>{const l=es(W3).current;let c;try{bx=l;for(const d of xx)d.before(l);c=e(a,o);for(const d of xx)d.after(l);l.didInitialize=!0}finally{bx=void 0}return c};return t.displayName=e.displayName||e.name,t}function r2(e){return x.forwardRef(Sb(e))}function W3(){return{didInitialize:!1}}const Z3=()=>{},ze=typeof document<"u"?x.useLayoutEffect:Z3;function J3(e,t){return function(o,...l){const c=new URL(e);return c.searchParams.set("code",o.toString()),l.forEach(d=>c.searchParams.append("args[]",d)),`${t} error #${o}; visit ${c} for the full message.`}}const ln=J3("https://base-ui.com/production-error","Base UI"),o2=x.createContext(void 0);function ou(e){const t=x.useContext(o2);if(t===void 0&&!e)throw new Error(ln(72));return t}const e4=[];function Cb(e){x.useEffect(e,e4)}const uc=0;class Ws{static create(){return new Ws}currentId=uc;start(t,a){this.clear(),this.currentId=setTimeout(()=>{this.currentId=uc,a()},t)}isStarted(){return this.currentId!==uc}clear=()=>{this.currentId!==uc&&(clearTimeout(this.currentId),this.currentId=uc)};disposeEffect=()=>this.clear}function Nn(){const e=es(Ws.create).current;return Cb(e.disposeEffect),e}function t4(){return typeof navigator>"u"?{userAgent:"",platform:"",maxTouchPoints:0}:{userAgent:navigator.userAgent,platform:navigator.platform??"",maxTouchPoints:navigator.maxTouchPoints??0}}const{userAgent:n4,platform:s4,maxTouchPoints:a4}=t4(),ep=n4.toLowerCase(),Fc=s4.toLowerCase(),tp=/^i(os$|p)/.test(Fc)||Fc==="macintel"&&a4>1,yj="android",_x=Fc===yj||ep.includes(yj),Nb=!tp&&Fc.startsWith("mac");Fc.startsWith("win");const r4=Nb||tp,Fr=typeof CSS<"u"&&!!CSS.supports?.("-webkit-backdrop-filter:none");!Fr&&ep.includes("firefox");!Fr&&ep.includes("chrom");const o4=r4,Eb=/jsdom|happydom/.test(ep);function ia(e){e.preventDefault(),e.stopPropagation()}function l4(e){return"nativeEvent"in e}function Rb(e){return e.pointerType===""&&e.isTrusted?!0:_x&&e.pointerType?e.type==="click"&&e.buttons===1:e.detail===0&&!e.pointerType}function l2(e){return Eb?!1:!_x&&e.width===0&&e.height===0||_x&&e.width===1&&e.height===1&&e.pressure===0&&e.detail===0&&e.pointerType==="mouse"||e.width<1&&e.height<1&&e.pressure===0&&e.detail===0&&e.pointerType==="touch"}function Ro(e,t){const a=["mouse","pen"];return t||a.push("",void 0),a.includes(e)}function i4(e){const t=e.type;return t==="click"||t==="mousedown"||t==="keydown"||t==="keyup"}function np(){return typeof window<"u"}function qn(e){return Tb(e)?(e.nodeName||"").toLowerCase():"#document"}function Wt(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function ja(e){var t;return(t=(Tb(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function Tb(e){return np()?e instanceof Node||e instanceof Wt(e).Node:!1}function bt(e){return np()?e instanceof Element||e instanceof Wt(e).Element:!1}function Ft(e){return np()?e instanceof HTMLElement||e instanceof Wt(e).HTMLElement:!1}function Xl(e){return!np()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof Wt(e).ShadowRoot}function Gr(e){const{overflow:t,overflowX:a,overflowY:o,display:l}=ps(e);return/auto|scroll|overlay|hidden|clip/.test(t+o+a)&&l!=="inline"&&l!=="contents"}function c4(e){return/^(table|td|th)$/.test(qn(e))}function sp(e){try{if(e.matches(":popover-open"))return!0}catch{}try{return e.matches(":modal")}catch{return!1}}const u4=/transform|translate|scale|rotate|perspective|filter/,d4=/paint|layout|strict|content/,xo=e=>!!e&&e!=="none";let eh;function Ab(e){const t=bt(e)?ps(e):e;return xo(t.transform)||xo(t.translate)||xo(t.scale)||xo(t.rotate)||xo(t.perspective)||!Mb()&&(xo(t.backdropFilter)||xo(t.filter))||u4.test(t.willChange||"")||d4.test(t.contain||"")}function f4(e){let t=_a(e);for(;Ft(t)&&!ma(t);){if(Ab(t))return t;if(sp(t))return null;t=_a(t)}return null}function Mb(){return eh==null&&(eh=typeof CSS<"u"&&CSS.supports&&CSS.supports("-webkit-backdrop-filter","none")),eh}function ma(e){return/^(html|body|#document)$/.test(qn(e))}function ps(e){return Wt(e).getComputedStyle(e)}function ap(e){return bt(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function _a(e){if(qn(e)==="html")return e;const t=e.assignedSlot||e.parentNode||Xl(e)&&e.host||ja(e);return Xl(t)?t.host:t}function i2(e){const t=_a(e);return ma(t)?e.ownerDocument?e.ownerDocument.body:e.body:Ft(t)&&Gr(t)?t:i2(t)}function Gc(e,t,a){var o;t===void 0&&(t=[]),a===void 0&&(a=!0);const l=i2(e),c=l===((o=e.ownerDocument)==null?void 0:o.body),d=Wt(l);if(c){const p=vx(d);return t.concat(d,d.visualViewport||[],Gr(l)?l:[],p&&a?Gc(p):[])}else return t.concat(l,Gc(l,[],a))}function vx(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}const yx="data-base-ui-focusable",c2="input:not([type='hidden']):not([disabled]),[contenteditable]:not([contenteditable='false']),textarea:not([disabled])",rp="ArrowLeft",op="ArrowRight",u2="ArrowUp",Ob="ArrowDown";function Gn(e){let t=e.activeElement;for(;t?.shadowRoot?.activeElement!=null;)t=t.shadowRoot.activeElement;return t}function We(e,t){if(!e||!t)return!1;const a=t.getRootNode?.();if(e.contains(t))return!0;if(a&&Xl(a)){let o=t;for(;o;){if(e===o)return!0;o=o.parentNode||o.host}}return!1}function Vn(e){return"composedPath"in e?e.composedPath()[0]:e.target}function vf(e,t){if(!bt(e))return!1;const a=e;if(t.hasElement(a))return!a.hasAttribute("data-trigger-disabled");for(const[,o]of t.entries())if(We(o,a))return!o.hasAttribute("data-trigger-disabled");return!1}function th(e,t){if(t==null)return!1;if("composedPath"in e)return e.composedPath().includes(t);const a=e;return a.target!=null&&t.contains(a.target)}function p4(e){return e.matches("html,body")}function lp(e){return Ft(e)&&e.matches(c2)}function m4(e){return e?.closest(`button,a[href],[role="button"],select,[tabindex]:not([tabindex="-1"]),${c2}`)!=null}function jx(e){return e?e.getAttribute("role")==="combobox"&&lp(e):!1}function g4(e){if(!e||Eb)return!0;try{return e.matches(":focus-visible")}catch{return!0}}function yf(e){return e?e.hasAttribute(yx)?e:e.querySelector(`[${yx}]`)||e:null}function h4(e,t){return t!=null&&!Ro(t)?0:typeof e=="function"?e():e}function Ql(e,t,a){const o=h4(e,a);return typeof o=="number"?o:o?.[t]}function jj(e){return typeof e=="function"?e():e}function d2(e,t){return t||e==="click"||e==="mousedown"}function x4(e){return e?.includes("mouse")&&e!=="mousedown"}function An(){}const er=Object.freeze([]),Xt=Object.freeze({}),va="none",pi="trigger-press",Mn="trigger-hover",Ul="trigger-focus",ip="outside-press",$l="item-press",b4="close-press",To="focus-out",cp="escape-key",kx="list-navigation",f2="cancel-open",kc="sibling-open",p2="disabled",kj="missing",wj="initial",zb="imperative-action",_4="window-resize";function st(e,t,a,o){let l=!1,c=!1;const d=o??Xt;return{reason:e,event:t??new Event("base-ui"),cancel(){l=!0},allowPropagation(){c=!0},get isCanceled(){return l},get isPropagationAllowed(){return c},trigger:a,...d}}const m2=x.createContext({hasProvider:!1,timeoutMs:0,delayRef:{current:0},initialDelayRef:{current:0},timeout:new Ws,currentIdRef:{current:null},currentContextRef:{current:null}});function v4(e,t){e.current=t.current}function y4(e){const{children:t,delay:a,timeoutMs:o=0}=e,l=x.useRef(a),c=x.useRef(a),d=x.useRef(null),p=x.useRef(null),m=Nn();return ze(()=>{if(c.current=a,!d.current){l.current=a;return}l.current={open:Ql(l.current,"open"),close:Ql(a,"close")}},[a,d,l,c]),s.jsx(m2.Provider,{value:x.useMemo(()=>({hasProvider:!0,delayRef:l,initialDelayRef:c,currentIdRef:d,timeoutMs:o,currentContextRef:p,timeout:m}),[o,m]),children:t})}function j4(e,t={open:!1}){const{open:a}=t,o="rootStore"in e?e.rootStore:e,l=o.useState("floatingId"),c=x.useContext(m2),{currentIdRef:d,delayRef:p,timeoutMs:m,initialDelayRef:g,currentContextRef:h,hasProvider:b,timeout:_}=c,[j,E]=x.useState(!1),k=x.useRef(a),y=x.useRef(!1);return ze(()=>{k.current=a},[a]),ze(()=>()=>{y.current=!0},[]),ze(()=>{function w(){y.current||E(!1),h.current?.setIsInstantPhase(!1),d.current=null,h.current=null,p.current=g.current,_.clear()}if(d.current&&!a&&d.current===l){if(E(!1),m){const S=l;return _.start(m,()=>{o.select("open")||d.current&&d.current!==S||w()}),()=>{(k.current||d.current!==S)&&_.clear()}}w()}},[a,l,d,p,m,g,h,_,o]),ze(()=>{if(!a)return;const w=h.current,S=d.current;_.clear(),h.current={onOpenChange:o.setOpen,setIsInstantPhase:E},d.current=l,p.current={open:0,close:Ql(g.current,"close")},S!==null&&S!==l?(E(!0),w?.setIsInstantPhase(!0),w?.onOpenChange(!1,st(va))):(E(!1),w?.setIsInstantPhase(!1))},[a,l,o,d,p,g,h,_]),ze(()=>()=>{if(d.current===l){if(h.current=null,!k.current)return;d.current=null,v4(p,g),_.clear()}},[h,d,p,l,g,_]),x.useMemo(()=>({hasProvider:b,delayRef:p,isInstantPhase:j}),[b,p,j])}function _t(e,t,a,o){return e.addEventListener(t,a,o),()=>{e.removeEventListener(t,a,o)}}function ga(...e){return()=>{for(let t=0;t<e.length;t+=1){const a=e[t];a&&a()}}}function tr(e,t,a,o){const l=es(g2).current;return w4(l,e,t,a,o)&&h2(l,[e,t,a,o]),l.callback}function k4(e){const t=es(g2).current;return S4(t,e)&&h2(t,e),t.callback}function g2(){return{callback:null,cleanup:null,refs:[]}}function w4(e,t,a,o,l){return e.refs[0]!==t||e.refs[1]!==a||e.refs[2]!==o||e.refs[3]!==l}function S4(e,t){return e.refs.length!==t.length||e.refs.some((a,o)=>a!==t[o])}function h2(e,t){if(e.refs=t,t.every(a=>a==null)){e.callback=null;return}e.callback=a=>{if(e.cleanup&&(e.cleanup(),e.cleanup=null),a!=null){const o=Array(t.length).fill(null);for(let l=0;l<t.length;l+=1){const c=t[l];if(c!=null)switch(typeof c){case"function":{const d=c(a);typeof d=="function"&&(o[l]=d);break}case"object":{c.current=a;break}}}e.cleanup=()=>{for(let l=0;l<t.length;l+=1){const c=t[l];if(c!=null)switch(typeof c){case"function":{const d=o[l];typeof d=="function"?d():c(null);break}case"object":{c.current=null;break}}}}}}}function pn(e){const t=es(C4,e).current;return t.next=e,ze(t.effect),t}function C4(e){const t={current:e,next:e,effect:()=>{t.current=t.next}};return t}const Db={...jA},nh=Db.useInsertionEffect,N4=nh&&nh!==Db.useLayoutEffect?nh:e=>e();function Ue(e){const t=es(E4).current;return t.next=e,N4(t.effect),t.trampoline}function E4(){const e={next:void 0,callback:R4,trampoline:(...t)=>e.callback?.(...t),effect:()=>{e.callback=e.next}};return e}function R4(){}const Rd=null;class T4{callbacks=[];callbacksCount=0;nextId=1;startId=1;isScheduled=!1;tick=t=>{this.isScheduled=!1;const a=this.callbacks,o=this.callbacksCount;if(this.callbacks=[],this.callbacksCount=0,this.startId=this.nextId,o>0)for(let l=0;l<a.length;l+=1)a[l]?.(t)};request(t){const a=this.nextId;return this.nextId+=1,this.callbacks.push(t),this.callbacksCount+=1,(!this.isScheduled||!1)&&(requestAnimationFrame(this.tick),this.isScheduled=!0),a}cancel(t){const a=t-this.startId;a<0||a>=this.callbacks.length||(this.callbacks[a]=null,this.callbacksCount-=1)}}const Td=new T4;class ua{static create(){return new ua}static request(t){return Td.request(t)}static cancel(t){return Td.cancel(t)}currentId=Rd;request(t){this.cancel(),this.currentId=Td.request(()=>{this.currentId=Rd,t()})}cancel=()=>{this.currentId!==Rd&&(Td.cancel(this.currentId),this.currentId=Rd)};disposeEffect=()=>this.cancel}function Wl(){const e=es(ua.create).current;return Cb(e.disposeEffect),e}function xt(e){return e?.ownerDocument||document}const x2={clipPath:"inset(50%)",overflow:"hidden",whiteSpace:"nowrap",border:0,padding:0,width:1,height:1,margin:-1},Pb={...x2,position:"fixed",top:0,left:0},b2={...x2,position:"absolute"},Zl=x.forwardRef(function(t,a){const[o,l]=x.useState();ze(()=>{o4&&Fr&&l("button")},[]);const c={tabIndex:0,role:o};return s.jsx("span",{...t,ref:a,style:Pb,"aria-hidden":o?void 0:!0,...c,"data-base-ui-focus-guard":""})}),A4=["top","right","bottom","left"],Jl=Math.min,js=Math.max,jf=Math.round,Ad=Math.floor,ha=e=>({x:e,y:e}),M4={left:"right",right:"left",bottom:"top",top:"bottom"};function wx(e,t,a){return js(e,Jl(t,a))}function nr(e,t){return typeof e=="function"?e(t):e}function fs(e){return e.split("-")[0]}function Yr(e){return e.split("-")[1]}function Lb(e){return e==="x"?"y":"x"}function Ib(e){return e==="y"?"height":"width"}function Bs(e){const t=e[0];return t==="t"||t==="b"?"y":"x"}function Bb(e){return Lb(Bs(e))}function O4(e,t,a){a===void 0&&(a=!1);const o=Yr(e),l=Bb(e),c=Ib(l);let d=l==="x"?o===(a?"end":"start")?"right":"left":o==="start"?"bottom":"top";return t.reference[c]>t.floating[c]&&(d=kf(d)),[d,kf(d)]}function z4(e){const t=kf(e);return[Sx(e),t,Sx(t)]}function Sx(e){return e.includes("start")?e.replace("start","end"):e.replace("end","start")}const Sj=["left","right"],Cj=["right","left"],D4=["top","bottom"],P4=["bottom","top"];function L4(e,t,a){switch(e){case"top":case"bottom":return a?t?Cj:Sj:t?Sj:Cj;case"left":case"right":return t?D4:P4;default:return[]}}function I4(e,t,a,o){const l=Yr(e);let c=L4(fs(e),a==="start",o);return l&&(c=c.map(d=>d+"-"+l),t&&(c=c.concat(c.map(Sx)))),c}function kf(e){const t=fs(e);return M4[t]+e.slice(t.length)}function B4(e){return{top:0,right:0,bottom:0,left:0,...e}}function _2(e){return typeof e!="number"?B4(e):{top:e,right:e,bottom:e,left:e}}function Yc(e){const{x:t,y:a,width:o,height:l}=e;return{width:o,height:l,top:a,left:t,right:t+o,bottom:a+l,x:t,y:a}}function Oc(e,t){return t<0||t>=e.length}function af(e,t){return Qa(e.current,{disabledIndices:t})}function Cx(e,t){return Qa(e.current,{decrement:!0,startingIndex:e.current.length,disabledIndices:t})}function Qa(e,{startingIndex:t=-1,decrement:a=!1,disabledIndices:o,amount:l=1}={}){let c=t;do c+=a?-l:l;while(c>=0&&c<=e.length-1&&wf(e,c,o));return c}function wf(e,t,a){if(typeof a=="function"?a(t):a?.includes(t)??!1)return!0;const l=e[t];return l?up(l)?!a&&(l.hasAttribute("disabled")||l.getAttribute("aria-disabled")==="true"):!0:!1}function U4(e){return e.visibility==="hidden"||e.visibility==="collapse"}function up(e,t=e?ps(e):null){return!e||!e.isConnected||!t||U4(t)?!1:typeof e.checkVisibility=="function"?e.checkVisibility():t.display!=="none"&&t.display!=="contents"}const $4='a[href],button,input,select,textarea,summary,details,iframe,object,embed,[tabindex],[contenteditable]:not([contenteditable="false"]),audio[controls],video[controls]';function H4(e){const t=e.assignedSlot;if(t)return t;if(e.parentElement)return e.parentElement;const a=e.getRootNode();return Xl(a)?a.host:null}function Nx(e){for(const t of Array.from(e.children))if(qn(t)==="summary")return t;return null}function V4(e,t){const a=Nx(t);return!!a&&(e===a||We(a,e))}function v2(e){const t=e?qn(e):"";return e!=null&&e.matches($4)&&(t!=="summary"||e.parentElement!=null&&qn(e.parentElement)==="details"&&Nx(e.parentElement)===e)&&(t!=="details"||Nx(e)==null)&&(t!=="input"||e.type!=="hidden")}function y2(e){if(!v2(e)||!e.isConnected||e.matches(":disabled"))return!1;for(let t=e;t;t=H4(t)){const a=t!==e,o=qn(t)==="slot";if(t.hasAttribute("inert")||a&&qn(t)==="details"&&!t.open&&!V4(e,t)||t.hasAttribute("hidden")||!o&&!q4(t,a))return!1}return!0}function q4(e,t){const a=ps(e);return t?a.display!=="none":up(e,a)}function j2(e){const t=e.tabIndex;if(t<0){const a=qn(e);if(a==="details"||a==="audio"||a==="video"||Ft(e)&&e.isContentEditable)return 0}return t}function sh(e){if(qn(e)!=="input")return null;const t=e;return t.type==="radio"&&t.name!==""?t:null}function F4(e,t){const a=sh(e);if(!a)return!0;const o=t.find(l=>{const c=sh(l);return c?.name===a.name&&c.form===a.form&&c.checked});return o?o===a:t.find(l=>{const c=sh(l);return c?.name===a.name&&c.form===a.form})===a}function k2(e){if(Ft(e)&&qn(e)==="slot"){const t=e.assignedElements({flatten:!0});if(t.length>0)return t}return Ft(e)&&e.shadowRoot?Array.from(e.shadowRoot.children):Array.from(e.children)}function w2(e,t){k2(e).forEach(a=>{v2(a)&&t.push(a),w2(a,t)})}function S2(e,t,a){k2(e).forEach(o=>{Ft(o)&&o.matches(t)&&a.push(o),S2(o,t,a)})}function Ub(e){return y2(e)&&j2(e)>=0}function C2(e){const t=[];return w2(e,t),t.filter(y2)}function lu(e){const t=C2(e);return t.filter(a=>j2(a)>=0&&F4(a,t))}function N2(e,t){const a=lu(e),o=a.length;if(o===0)return;const l=Gn(xt(e)),c=a.indexOf(l),d=c===-1?t===1?0:o-1:c+t;return a[d]}function $b(e){return N2(xt(e).body,1)||e}function E2(e){return N2(xt(e).body,-1)||e}function R2(e,t){if(!e)return null;const a=lu(xt(e).body),o=a.length;if(o===0)return null;const l=a.indexOf(e);if(l===-1)return null;const c=(l+t+o)%o;return a[c]}function G4(e){return R2(e,1)}function Y4(e){return R2(e,-1)}function Hl(e,t){const a=t||e.currentTarget,o=e.relatedTarget;return!o||!We(a,o)}function K4(e){lu(e).forEach(a=>{a.dataset.tabindex=a.getAttribute("tabindex")||"",a.setAttribute("tabindex","-1")})}function Nj(e){const t=[];S2(e,"[data-tabindex]",t),t.forEach(a=>{const o=a.dataset.tabindex;delete a.dataset.tabindex,o?a.setAttribute("tabindex",o):a.removeAttribute("tabindex")})}function Hr(e,t,a=!0){return e.filter(l=>l.parentId===t).flatMap(l=>[...!a||l.context?.open?[l]:[],...Hr(e,l.id,a)])}function Ej(e,t){let a=[],o=e.find(l=>l.id===t)?.parentId;for(;o;){const l=e.find(c=>c.id===o);o=l?.parentId,l&&(a=a.concat(l))}return a}function Kc(e){return`data-base-ui-${e}`}let Md=0;function rf(e,t={}){const{preventScroll:a=!1,sync:o=!1,shouldFocus:l}=t;cancelAnimationFrame(Md);function c(){l&&!l()||e?.focus({preventScroll:a})}if(o)return c(),An;const d=requestAnimationFrame(c);return Md=d,()=>{Md===d&&(cancelAnimationFrame(d),Md=0)}}const ah={inert:new WeakMap,"aria-hidden":new WeakMap},Rj="data-base-ui-inert",Ex={inert:new WeakSet,"aria-hidden":new WeakSet};let dc=new WeakMap,rh=0;function X4(e){return Ex[e]}function T2(e){return e?Xl(e)?e.host:T2(e.parentNode):null}const Tj=(e,t)=>t.map(a=>{if(e.contains(a))return a;const o=T2(a);return e.contains(o)?o:null}).filter(a=>a!=null),Aj=e=>{const t=new Set;return e.forEach(a=>{let o=a;for(;o&&!t.has(o);)t.add(o),o=o.parentNode}),t},Mj=(e,t,a)=>{const o=[],l=c=>{!c||a.has(c)||Array.from(c.children).forEach(d=>{qn(d)!=="script"&&(t.has(d)?l(d):o.push(d))})};return l(e),o};function Q4(e,t,a,o,{mark:l=!0}){let c=null;o?c="inert":a&&(c="aria-hidden");let d=null,p=null;const m=Tj(t,e),g=l?Mj(t,Aj(m),new Set(m)):[],h=[],b=[];if(c){const _=ah[c],j=X4(c);p=j,d=_;const E=Tj(t,Array.from(t.querySelectorAll("[aria-live]"))),k=m.concat(E);Mj(t,Aj(k),new Set(k)).forEach(w=>{const S=w.getAttribute(c),N=S!==null&&S!=="false",R=(_.get(w)||0)+1;_.set(w,R),h.push(w),R===1&&N&&j.add(w),N||w.setAttribute(c,c==="inert"?"":"true")})}return l&&g.forEach(_=>{const j=(dc.get(_)||0)+1;dc.set(_,j),b.push(_),j===1&&_.setAttribute(Rj,"")}),rh+=1,()=>{d&&h.forEach(_=>{const E=(d.get(_)||0)-1;d.set(_,E),E||(!p?.has(_)&&c&&_.removeAttribute(c),p?.delete(_))}),l&&b.forEach(_=>{const j=(dc.get(_)||0)-1;dc.set(_,j),j||_.removeAttribute(Rj)}),rh-=1,rh||(ah.inert=new WeakMap,ah["aria-hidden"]=new WeakMap,Ex.inert=new WeakSet,Ex["aria-hidden"]=new WeakSet,dc=new WeakMap)}}function Oj(e,t={}){const{ariaHidden:a=!1,inert:o=!1,mark:l=!0}=t,c=xt(e[0]).body;return Q4(e,c,a,o,{mark:l})}let zj=0;function W4(e,t="mui"){const[a,o]=x.useState(e),l=e||a;return x.useEffect(()=>{a==null&&(zj+=1,o(`${t}-${zj}`))},[a,t]),l}const Dj=Db.useId;function Ao(e,t){if(Dj!==void 0){const a=Dj();return e??(t?`${t}-${a}`:a)}return W4(e,t)}const Z4=parseInt(x.version,10);function Hb(e){return Z4>=e}function Pj(e){if(!x.isValidElement(e))return null;const t=e,a=t.props;return(Hb(19)?a?.ref:t.ref)??null}function Rx(e,t){if(e&&!t)return e;if(!e&&t)return t;if(e||t)return{...e,...t}}function J4(e,t){const a={};for(const o in e){const l=e[o];if(t?.hasOwnProperty(o)){const c=t[o](l);c!=null&&Object.assign(a,c);continue}l===!0?a[`data-${o.toLowerCase()}`]="":l&&(a[`data-${o.toLowerCase()}`]=l.toString())}return a}function eO(e,t){return typeof e=="function"?e(t):e}function tO(e,t){return typeof e=="function"?e(t):e}const Vb={};function Kn(e,t,a,o,l){if(!a&&!o&&!l&&!e)return Sf(t);let c=Sf(e);return t&&(c=wc(c,t)),a&&(c=wc(c,a)),o&&(c=wc(c,o)),l&&(c=wc(c,l)),c}function nO(e){if(e.length===0)return Vb;if(e.length===1)return Sf(e[0]);let t=Sf(e[0]);for(let a=1;a<e.length;a+=1)t=wc(t,e[a]);return t}function Sf(e){return qb(e)?{...M2(e,Vb)}:sO(e)}function wc(e,t){return qb(t)?M2(t,e):aO(e,t)}function sO(e){const t={...e};for(const a in t){const o=t[a];A2(a,o)&&(t[a]=O2(o))}return t}function aO(e,t){if(!t)return e;for(const a in t){const o=t[a];switch(a){case"style":{e[a]=Rx(e.style,o);break}case"className":{e[a]=z2(e.className,o);break}default:A2(a,o)?e[a]=rO(e[a],o):e[a]=o}}return e}function A2(e,t){const a=e.charCodeAt(0),o=e.charCodeAt(1),l=e.charCodeAt(2);return a===111&&o===110&&l>=65&&l<=90&&(typeof t=="function"||typeof t>"u")}function qb(e){return typeof e=="function"}function M2(e,t){return qb(e)?e(t):e??Vb}function rO(e,t){return t?e?(...a)=>{const o=a[0];if(D2(o)){const c=o;Cf(c);const d=t(...a);return c.baseUIHandlerPrevented||e?.(...a),d}const l=t(...a);return e?.(...a),l}:O2(t):e}function O2(e){return e&&((...t)=>{const a=t[0];return D2(a)&&Cf(a),e(...t)})}function Cf(e){return e.preventBaseUIHandler=()=>{e.baseUIHandlerPrevented=!0},e}function z2(e,t){return t?e?t+" "+e:t:e}function D2(e){return e!=null&&typeof e=="object"&&"nativeEvent"in e}function Et(e,t,a={}){const o=t.render,l=oO(t,a);if(a.enabled===!1)return null;const c=a.state??Xt;return cO(e,o,l,c)}function oO(e,t={}){const{className:a,style:o,render:l}=e,{state:c=Xt,ref:d,props:p,stateAttributesMapping:m,enabled:g=!0}=t,h=g?eO(a,c):void 0,b=g?tO(o,c):void 0,_=g?J4(c,m):Xt,j=g&&p?lO(p):void 0,E=g?Rx(_,j)??{}:Xt;return typeof document<"u"&&(g?Array.isArray(d)?E.ref=k4([E.ref,Pj(l),...d]):E.ref=tr(E.ref,Pj(l),d):tr(null,null)),g?(h!==void 0&&(E.className=z2(E.className,h)),b!==void 0&&(E.style=Rx(E.style,b)),E):Xt}function lO(e){return Array.isArray(e)?nO(e):Kn(void 0,e)}const iO=Symbol.for("react.lazy");function cO(e,t,a,o){if(t){if(typeof t=="function")return t(a,o);const l=Kn(a,t.props);l.ref=a.ref;let c=t;return c?.$$typeof===iO&&(c=x.Children.toArray(t)[0]),x.cloneElement(c,l)}if(e&&typeof e=="string")return uO(e,a);throw new Error(ln(8))}function uO(e,t){return e==="button"?x.createElement("button",{type:"button",...t,key:t.key}):e==="img"?x.createElement("img",{alt:"",...t,key:t.key}):x.createElement(e,t)}const dO=500,fO=500,pO={style:{transition:"none"}},mO="data-base-ui-click-trigger",P2={fallbackAxisSide:"none"},L2={fallbackAxisSide:"end"},gO={clipPath:"inset(50%)",position:"fixed",top:0,left:0},I2=x.createContext(null),B2=()=>x.useContext(I2),hO=Kc("portal");function U2(e={}){const{ref:t,container:a,componentProps:o=Xt,elementProps:l}=e,c=Ao(),p=B2()?.portalNode,[m,g]=x.useState(null),[h,b]=x.useState(null),_=Ue(y=>{y!==null&&b(y)}),j=x.useRef(null);ze(()=>{if(a===null){j.current&&(j.current=null,b(null),g(null));return}if(c==null)return;const y=(a&&(Tb(a)?a:a.current))??p??document.body;if(y==null){j.current&&(j.current=null,b(null),g(null));return}j.current!==y&&(j.current=y,b(null),g(y))},[a,p,c]);const E=Et("div",o,{ref:[t,_],props:[{id:c,[hO]:""},l]});return{portalNode:h,portalSubtree:m&&E?Hs.createPortal(E,m):null}}const Fb=x.forwardRef(function(t,a){const{render:o,className:l,style:c,children:d,container:p,renderGuards:m,...g}=t,{portalNode:h,portalSubtree:b}=U2({container:p,ref:a,componentProps:t,elementProps:g}),_=x.useRef(null),j=x.useRef(null),E=x.useRef(null),k=x.useRef(null),[y,w]=x.useState(null),S=x.useRef(!1),N=y?.modal,R=y?.open,A=typeof m=="boolean"?m:!!y&&!y.modal&&y.open&&!!h;x.useEffect(()=>{if(!h||N)return;function O(z){h&&z.relatedTarget&&Hl(z)&&(z.type==="focusin"?S.current&&(Nj(h),S.current=!1):(K4(h),S.current=!0))}return ga(_t(h,"focusin",O,!0),_t(h,"focusout",O,!0))},[h,N]),ze(()=>{!h||R!==!0||!S.current||(Nj(h),S.current=!1)},[R,h]);const T=x.useMemo(()=>({beforeOutsideRef:_,afterOutsideRef:j,beforeInsideRef:E,afterInsideRef:k,portalNode:h,setFocusManagerState:w}),[h]);return s.jsxs(x.Fragment,{children:[b,s.jsxs(I2.Provider,{value:T,children:[A&&h&&s.jsx(Zl,{"data-type":"outside",ref:_,onFocus:O=>{if(Hl(O,h))E.current?.focus();else{const z=y?y.domReference:null;E2(z)?.focus()}}}),A&&h&&s.jsx("span",{"aria-owns":h.id,style:gO}),h&&Hs.createPortal(d,h),A&&h&&s.jsx(Zl,{"data-type":"outside",ref:j,onFocus:O=>{if(Hl(O,h))k.current?.focus();else{const z=y?y.domReference:null;$b(z)?.focus(),y?.closeOnFocusOut&&y?.onOpenChange(!1,st(To,O.nativeEvent))}}})]})]})});function $2(){const e=new Map;return{emit(t,a){e.get(t)?.forEach(o=>o(a))},on(t,a){e.has(t)||e.set(t,new Set),e.get(t).add(a)},off(t,a){e.get(t)?.delete(a)}}}class Gb{nodesRef={current:[]};events=$2();addNode(t){this.nodesRef.current.push(t)}removeNode(t){const a=this.nodesRef.current.findIndex(o=>o===t);a!==-1&&this.nodesRef.current.splice(a,1)}}const H2=x.createContext(null),V2=x.createContext(null),Kr=()=>x.useContext(H2)?.id||null,Xr=e=>{const t=x.useContext(V2);return e??t};function q2(e){const t=Ao(),a=Xr(e),o=Kr();return ze(()=>{if(!t)return;const l={id:t,parentId:o};return a?.addNode(l),()=>{a?.removeNode(l)}},[a,t,o]),t}function xO(e){const{children:t,id:a}=e,o=Kr();return s.jsx(H2.Provider,{value:x.useMemo(()=>({id:a,parentId:o}),[a,o]),children:t})}function bO(e){const{children:t,externalTree:a}=e,o=es(()=>a??new Gb).current;return s.jsx(V2.Provider,{value:o,children:t})}function Ka(e){return e==null?e:"current"in e?e.current:e}function _O(e,t){const a=Wt(Vn(e));return e instanceof a.KeyboardEvent?"keyboard":e instanceof a.FocusEvent?t||"keyboard":"pointerType"in e?e.pointerType||"keyboard":"touches"in e?"touch":e instanceof a.MouseEvent?t||(e.detail===0?"keyboard":"mouse"):""}const Lj=20;let zr=[];function Yb(){zr=zr.filter(e=>e.deref()?.isConnected)}function Ij(e){Yb(),e&&qn(e)!=="body"&&(zr.push(new WeakRef(e)),zr.length>Lj&&(zr=zr.slice(-Lj)))}function Bj(){return Yb(),zr[zr.length-1]?.deref()}function vO(e){return e?Ub(e)?e:lu(e)[0]||e:null}function Uj(e){if(e.hasAttribute("tabindex")&&!e.hasAttribute("data-tabindex")||!e.getAttribute("role")?.includes("dialog"))return;const a=C2(e).filter(l=>{const c=l.getAttribute("data-tabindex")||"";return Ub(l)||l.hasAttribute("data-tabindex")&&!c.startsWith("-")}),o=e.getAttribute("tabindex");a.length===0?o!=="0"&&(e.setAttribute("tabindex","0"),e.setAttribute("data-tabindex","0")):(o!=="-1"||e.hasAttribute("data-tabindex")&&e.getAttribute("data-tabindex")!=="-1")&&(e.setAttribute("tabindex","-1"),e.setAttribute("data-tabindex","-1"))}function Kb(e){const{context:t,children:a,disabled:o=!1,initialFocus:l=!0,returnFocus:c=!0,restoreFocus:d=!1,modal:p=!0,closeOnFocusOut:m=!0,openInteractionType:g="",nextFocusableElement:h,previousFocusableElement:b,beforeContentFocusGuardRef:_,externalTree:j,getInsideElements:E}=e,k="rootStore"in t?t.rootStore:t,y=k.useState("open"),w=k.useState("domReferenceElement"),S=k.useState("floatingElement"),{events:N,dataRef:R}=k.context,A=Ue(()=>R.current.floatingContext?.nodeId),T=l===!1,O=jx(w)&&T,z=pn(l),U=pn(c),P=pn(g),B=pn(y),D=Xr(j),L=B2(),$=x.useRef(!1),V=x.useRef(!1),H=x.useRef(!1),F=x.useRef(null),Y=x.useRef(""),G=x.useRef(""),K=x.useRef(null),I=x.useRef(null),X=tr(K,_,L?.beforeInsideRef),Z=tr(I,L?.afterInsideRef),te=Nn(),fe=Nn(),ee=Wl(),re=L!=null,le=yf(S),me=Ue((ge=le)=>ge?lu(ge):[]),Me=Ue(()=>E?.().filter(ge=>ge!=null)??[]);x.useEffect(()=>{if(o||!p)return;function ge(we){we.key==="Tab"&&We(le,Gn(xt(le)))&&me().length===0&&!O&&ia(we)}const Ce=xt(le);return _t(Ce,"keydown",ge)},[o,le,p,O,me]),x.useEffect(()=>{if(o||!y)return;const ge=xt(le);function Ce(){H.current=!1}function we(Ve){const Se=Vn(Ve),Te=Me(),je=We(S,Se)||We(w,Se)||We(L?.portalNode,Se)||Te.some(Ee=>Ee===Se||We(Ee,Se));H.current=!je,G.current=Ve.pointerType||"keyboard",Se?.closest(`[${mO}]`)&&(V.current=!0,fe.start(0,()=>{V.current=!1}))}function Be(){G.current="keyboard"}return ga(_t(ge,"pointerdown",we,!0),_t(ge,"pointerup",Ce,!0),_t(ge,"pointercancel",Ce,!0),_t(ge,"keydown",Be,!0),Ce)},[o,S,w,le,y,L,fe,Me]),x.useEffect(()=>{if(o||!m)return;const ge=xt(le);function Ce(){V.current=!0,fe.start(0,()=>{V.current=!1})}function we(Te){const je=Vn(Te);Ub(je)&&(F.current=je)}function Be(Te){const je=Te.relatedTarget,Ee=Te.currentTarget,De=Vn(Te);p&&je==null&&De!=null&&We(S,De)&&Ij(De),queueMicrotask(()=>{const Le=A(),Ie=k.context.triggerElements,ue=Me(),ye=je?.hasAttribute(Kc("focus-guard"))&&[K.current,I.current,L?.beforeInsideRef.current,L?.afterInsideRef.current,L?.beforeOutsideRef.current,L?.afterOutsideRef.current,Ka(b),Ka(h)].includes(je),Ge=!(We(w,je)||We(S,je)||We(je,S)||We(L?.portalNode,je)||ue.some(Re=>Re===je||We(Re,je))||je!=null&&Ie.hasElement(je)||Ie.hasMatchingElement(Re=>We(Re,je))||ye||D&&(Hr(D.nodesRef.current,Le).find(Re=>We(Re.context?.elements.floating,je)||We(Re.context?.elements.domReference,je))||Ej(D.nodesRef.current,Le).find(Re=>[Re.context?.elements.floating,yf(Re.context?.elements.floating)].includes(je)||Re.context?.elements.domReference===je)));if(Ee===w&&le&&Uj(le),d&&Ee!==w&&!up(De)&&Gn(ge)===ge.body){if(Ft(le)&&(le.focus(),d==="popup")){ee.request(()=>{le.focus()});return}const Re=me(),Oe=F.current,tt=(Oe&&Re.includes(Oe)?Oe:null)||Re[Re.length-1]||le;Ft(tt)&&tt.focus()}if(R.current.insideReactTree){R.current.insideReactTree=!1;return}(O||!p)&&je&&Ge&&!V.current&&(O||je!==Bj())&&($.current=!0,k.setOpen(!1,st(To,Te)))})}function Ve(){H.current||(R.current.insideReactTree=!0,te.start(0,()=>{R.current.insideReactTree=!1}))}const Se=Ft(w)?w:null;if(!(!S&&!Se))return ga(Se&&_t(Se,"focusout",Be),Se&&_t(Se,"pointerdown",Ce),S&&_t(S,"focusin",we),S&&_t(S,"focusout",Be),S&&L&&_t(S,"focusout",Ve,!0))},[o,w,S,le,p,D,L,k,m,d,me,O,A,R,te,fe,ee,h,b,Me]),x.useEffect(()=>{if(o||!S||!y)return;const ge=Array.from(L?.portalNode?.querySelectorAll(`[${Kc("portal")}]`)||[]),we=(D?Ej(D.nodesRef.current,A()):[]).find(Ee=>jx(Ee.context?.elements.domReference||null))?.context?.elements.domReference,Ve=[...[S,...ge,K.current,I.current,L?.beforeOutsideRef.current,L?.afterOutsideRef.current,...Me()],we,Ka(b),Ka(h),O?w:null].filter(Ee=>Ee!=null),Se=Oj(Ve,{ariaHidden:p||O,mark:!1}),Te=[S,...ge].filter(Ee=>Ee!=null),je=Oj(Te);return()=>{je(),Se()}},[y,o,w,S,p,L,O,D,A,h,b,Me]),ze(()=>{if(!y||o||!Ft(le))return;const ge=xt(le),Ce=Gn(ge);queueMicrotask(()=>{const we=z.current,Be=typeof we=="function"?we(P.current||""):we;if(Be===void 0||Be===!1||We(le,Ce))return;let Se=null;const Te=()=>(Se==null&&(Se=me(le)),Se[0]||le);let je;Be===!0||Be===null?je=Te():je=Ka(Be),je=je||Te();const Ee=We(le,Gn(ge));rf(je,{preventScroll:je===le,shouldFocus(){if(!B.current)return!1;if(Ee)return!0;const De=Gn(ge);return!(De!==je&&We(le,De))}})})},[o,y,le,me,z,P,B]),ze(()=>{if(o||!le)return;const ge=xt(le),Ce=Gn(ge),we=P.current==null;Ij(Ce);function Be(Se){if(Se.open||(Y.current=_O(Se.nativeEvent,G.current)),Se.reason===Mn&&Se.nativeEvent.type==="mouseleave"&&($.current=!0),Se.reason===ip)if(Se.nested)$.current=!1;else if(Rb(Se.nativeEvent)||l2(Se.nativeEvent))$.current=!1;else{let Te=!1;xt(le).createElement("div").focus({get preventScroll(){return Te=!0,!1}}),Te?$.current=!1:$.current=!0}}N.on("openchange",Be);function Ve(){const Se=U.current;let Te=typeof Se=="function"?Se(Y.current):Se;if(Te===void 0||Te===!1)return null;Te===null&&(Te=!0);const je=w?.isConnected?w:null,Ee=Ce?.isConnected&&qn(Ce)!=="body"?Ce:null;let De=we?Ee||je:je||Ee;return De||(De=Bj()||null),typeof Te=="boolean"?De:Ka(Te)||De||null}return()=>{N.off("openchange",Be);const Se=Gn(ge),Te=Me(),je=We(S,Se)||Te.some(Le=>Le===Se||We(Le,Se))||D&&Hr(D.nodesRef.current,A(),!1).some(Le=>We(Le.context?.elements.floating,Se)),Ee=U.current,De=Ve();queueMicrotask(()=>{const Le=vO(De),Ie=typeof Ee!="boolean";Ee&&!$.current&&Ft(Le)&&(!(!Ie&&Le!==Se&&Se!==ge.body)||je)&&Le.focus({preventScroll:!0}),$.current=!1})}},[o,S,le,U,P,N,D,w,A,Me]),ze(()=>{if(!Fr||y||!S)return;const ge=Gn(xt(S));!Ft(ge)||!lp(ge)||We(S,ge)&&ge.blur()},[y,S]),ze(()=>{if(!(o||!L))return L.setFocusManagerState({modal:p,closeOnFocusOut:m,open:y,onOpenChange:k.setOpen,domReference:w}),()=>{L.setFocusManagerState(null)}},[o,L,p,y,k,m,w]),ze(()=>{if(!(o||!le))return Uj(le),()=>{queueMicrotask(Yb)}},[o,le]);const de=!o&&(p?!O:!0)&&(re||p);return s.jsxs(x.Fragment,{children:[de&&s.jsx(Zl,{"data-type":"inside",ref:X,onFocus:ge=>{if(p){const Ce=me();rf(Ce[Ce.length-1])}else L?.portalNode&&($.current=!1,Hl(ge,L.portalNode)?$b(w)?.focus():Ka(b??L.beforeOutsideRef)?.focus())}}),a,de&&s.jsx(Zl,{"data-type":"inside",ref:Z,onFocus:ge=>{p?rf(me()[0]):L?.portalNode&&(m&&($.current=!0),Hl(ge,L.portalNode)?E2(w)?.focus():Ka(h??L.afterOutsideRef)?.focus())}})]})}function F2(e,t={}){const{enabled:a=!0,event:o="click",toggle:l=!0,ignoreMouse:c=!1,stickIfOpen:d=!0,touchOpenDelay:p=0,reason:m=pi}=t,g="rootStore"in e?e.rootStore:e,h=g.context.dataRef,b=x.useRef(void 0),_=Wl(),j=Nn(),E=x.useMemo(()=>{function k(w,S,N,R){const A=st(m,S,N);w&&R==="touch"&&p>0?j.start(p,()=>{g.setOpen(!0,A)}):g.setOpen(w,A)}function y(w,S,N){const R=h.current.openEvent,A=g.select("domReferenceElement")!==S;return w&&A||!w||!l?!0:R&&d?!N(R.type):!1}return{onPointerDown(w){b.current=w.pointerType},onMouseDown(w){const S=b.current,N=w.nativeEvent,R=g.select("open");if(w.button!==0||o==="click"||Ro(S,!0)&&c)return;const A=y(R,w.currentTarget,z=>z==="click"||z==="mousedown"),T=Vn(N);if(lp(T)){k(A,N,T,S);return}const O=w.currentTarget;_.request(()=>{k(A,N,O,S)})},onClick(w){if(o==="mousedown-only")return;const S=b.current;if(o==="mousedown"&&S){b.current=void 0;return}if(Ro(S,!0)&&c)return;const N=g.select("open"),R=y(N,w.currentTarget,A=>A==="click"||A==="mousedown"||A==="keydown"||A==="keyup");k(R,w.nativeEvent,w.currentTarget,S)},onKeyDown(){b.current=void 0}}},[h,o,c,m,g,d,l,_,j,p]);return x.useMemo(()=>a?{reference:E}:Xt,[a,E])}function yO(e,t){let a=null,o=null,l=!1;return{contextElement:e||void 0,getBoundingClientRect(){const c=e?.getBoundingClientRect()||{width:0,height:0,x:0,y:0},d=t.axis==="x"||t.axis==="both",p=t.axis==="y"||t.axis==="both",m=["mouseenter","mousemove"].includes(t.dataRef.current.openEvent?.type||"")&&t.pointerType!=="touch";let g=c.width,h=c.height,b=c.x,_=c.y;return a==null&&t.x&&d&&(a=c.x-t.x),o==null&&t.y&&p&&(o=c.y-t.y),b-=a||0,_-=o||0,g=0,h=0,!l||m?(g=t.axis==="y"?c.width:0,h=t.axis==="x"?c.height:0,b=d&&t.x!=null?t.x:b,_=p&&t.y!=null?t.y:_):l&&!m&&(h=t.axis==="x"?c.height:h,g=t.axis==="y"?c.width:g),l=!0,{width:g,height:h,x:b,y:_,top:_,right:b+g,bottom:_+h,left:b}}}}function $j(e){return e!=null&&e.clientX!=null}function jO(e,t={}){const{enabled:a=!0,axis:o="both"}=t,l="rootStore"in e?e.rootStore:e,c=l.useState("open"),d=l.useState("floatingElement"),p=l.useState("domReferenceElement"),m=l.context.dataRef,g=x.useRef(!1),h=x.useRef(null),[b,_]=x.useState(),[j,E]=x.useState([]),k=Ue(R=>{l.set("positionReference",R)}),y=Ue((R,A,T)=>{g.current||m.current.openEvent&&!$j(m.current.openEvent)||l.set("positionReference",yO(T??p,{x:R,y:A,axis:o,dataRef:m,pointerType:b}))}),w=Ue(R=>{c?h.current||(y(R.clientX,R.clientY,R.currentTarget),E([])):y(R.clientX,R.clientY,R.currentTarget)}),S=Ro(b)?d:c;x.useEffect(()=>{if(!a){k(p);return}if(!S)return;function R(){h.current?.(),h.current=null}const A=Wt(d);function T(O){const z=Vn(O);We(d,z)?R():y(O.clientX,O.clientY)}return!m.current.openEvent||$j(m.current.openEvent)?h.current=_t(A,"mousemove",T):k(p),R},[S,a,d,m,p,l,y,k,j]),x.useEffect(()=>()=>{l.set("positionReference",null)},[l]),x.useEffect(()=>{a&&!d&&(g.current=!1)},[a,d]),x.useEffect(()=>{!a&&c&&(g.current=!0)},[a,c]);const N=x.useMemo(()=>{function R(A){_(A.pointerType)}return{onPointerDown:R,onPointerEnter:R,onMouseMove:w,onMouseEnter:w}},[w]);return x.useMemo(()=>a?{reference:N,trigger:N}:{},[a,N])}function kO(){return!1}function wO(e){return{escapeKey:typeof e=="boolean"?e:e?.escapeKey??!1,outsidePress:typeof e=="boolean"?e:e?.outsidePress??!0}}function dp(e,t={}){const{enabled:a=!0,escapeKey:o=!0,outsidePress:l=!0,outsidePressEvent:c="sloppy",referencePress:d=kO,bubbles:p,externalTree:m}=t,g="rootStore"in e?e.rootStore:e,h=g.useState("open"),b=g.useState("floatingElement"),{dataRef:_}=g.context,j=Xr(m),E=Ue(typeof l=="function"?l:()=>!1),k=typeof l=="function"?E:l,y=k!==!1,w=Ue(()=>c),{escapeKey:S,outsidePress:N}=wO(p),R=x.useRef(!1),A=x.useRef(!1),T=x.useRef(!1),O=x.useRef(!1),z=x.useRef(""),U=x.useRef(null),P=Nn(),B=Nn(),D=Ue(()=>{B.clear(),_.current.insideReactTree=!1}),L=Ue(X=>{const Z=_.current.floatingContext?.nodeId;return(j?Hr(j.nodesRef.current,Z):[]).some(fe=>fe.context?.open&&!fe.context.dataRef.current[X])}),$=Ue(X=>th(X,g.select("floatingElement"))||th(X,g.select("domReferenceElement"))),V=Ue(X=>{d()&&g.setOpen(!1,st(pi,X.nativeEvent))}),H=Ue(X=>{if(!h||!a||!o||X.key!=="Escape"||O.current||!S&&L("__escapeKeyBubbles"))return;const Z=l4(X)?X.nativeEvent:X,te=st(cp,Z);g.setOpen(!1,te),te.isCanceled||X.preventDefault(),!S&&!te.isPropagationAllowed&&X.stopPropagation()}),F=Ue(()=>{_.current.insideReactTree=!0,B.start(0,D)}),Y=Ue(X=>{if(!h||!a||X.button!==0)return;const Z=Vn(X.nativeEvent);We(g.select("floatingElement"),Z)&&(R.current||(R.current=!0,A.current=!1))}),G=Ue(X=>{!h||!a||(X.defaultPrevented||X.nativeEvent.defaultPrevented)&&R.current&&(A.current=!0)});x.useEffect(()=>{if(!h||!a)return;_.current.__escapeKeyBubbles=S,_.current.__outsidePressBubbles=N;const X=new Ws,Z=new Ws;function te(){X.clear(),O.current=!0}function fe(){X.start(Fr?5:0,()=>{O.current=!1})}function ee(){T.current=!0,Z.start(0,()=>{T.current=!1})}function re(){R.current=!1,A.current=!1}function le(){const ue=z.current,ye=ue==="pen"||!ue?"mouse":ue,Ge=w(),Re=typeof Ge=="function"?Ge():Ge;return typeof Re=="string"?Re:Re[ye]}function me(ue){const ye=le();return ye==="intentional"&&ue.type!=="click"||ye==="sloppy"&&ue.type==="click"}function Me(ue){const ye=_.current.floatingContext?.nodeId,Ge=j&&Hr(j.nodesRef.current,ye).some(Re=>th(ue,Re.context?.elements.floating));return $(ue)||Ge}function de(ue){if(me(ue)){ue.type!=="click"&&!$(ue)&&(Z.clear(),T.current=!1),D();return}if(_.current.insideReactTree){D();return}const ye=Vn(ue),Ge=`[${Kc("inert")}]`,Re=bt(ye)?ye.getRootNode():null,Oe=Array.from((Xl(Re)?Re:xt(g.select("floatingElement"))).querySelectorAll(Ge)),tt=g.context.triggerElements;if(ye&&(tt.hasElement(ye)||tt.hasMatchingElement(vt=>We(vt,ye))))return;let ot=bt(ye)?ye:null;for(;ot&&!ma(ot);){const vt=_a(ot);if(ma(vt)||!bt(vt))break;ot=vt}if(!(Oe.length&&bt(ye)&&!p4(ye)&&!We(ye,g.select("floatingElement"))&&Oe.every(vt=>!We(ot,vt)))){if(Ft(ye)&&!("touches"in ue)){const vt=ma(ye),Mt=ps(ye),lt=/auto|scroll/,Rt=vt||lt.test(Mt.overflowX),_e=vt||lt.test(Mt.overflowY),Pe=Rt&&ye.clientWidth>0&&ye.scrollWidth>ye.clientWidth,Xe=_e&&ye.clientHeight>0&&ye.scrollHeight>ye.clientHeight,it=Mt.direction==="rtl",Qe=Xe&&(it?ue.offsetX<=ye.offsetWidth-ye.clientWidth:ue.offsetX>ye.clientWidth),mt=Pe&&ue.offsetY>ye.clientHeight;if(Qe||mt)return}if(!Me(ue)){if(le()==="intentional"&&T.current){Z.clear(),T.current=!1;return}typeof k=="function"&&!k(ue)||L("__outsidePressBubbles")||(g.setOpen(!1,st(ip,ue)),D())}}}function ge(ue){le()!=="sloppy"||ue.pointerType==="touch"||!g.select("open")||!a||$(ue)||de(ue)}function Ce(ue){if(le()!=="sloppy"||!g.select("open")||!a||$(ue))return;const ye=ue.touches[0];ye&&(U.current={startTime:Date.now(),startX:ye.clientX,startY:ye.clientY,dismissOnTouchEnd:!1,dismissOnMouseDown:!0},P.start(1e3,()=>{U.current&&(U.current.dismissOnTouchEnd=!1,U.current.dismissOnMouseDown=!1)}))}function we(ue,ye){const Ge=Vn(ue);if(!Ge)return;const Re=_t(Ge,ue.type,()=>{ye(ue),Re()})}function Be(ue){z.current="touch",we(ue,Ce)}function Ve(ue){P.clear(),ue.type==="pointerdown"&&(z.current=ue.pointerType),!(ue.type==="mousedown"&&U.current&&!U.current.dismissOnMouseDown)&&we(ue,ye=>{ye.type==="pointerdown"?ge(ye):de(ye)})}function Se(ue){if(!R.current)return;const ye=A.current;if(re(),le()==="intentional"){if(ue.type==="pointercancel"){ye&&ee();return}if(!Me(ue)){if(ye){ee();return}typeof k=="function"&&!k(ue)||(Z.clear(),T.current=!0,D())}}}function Te(ue){if(le()!=="sloppy"||!U.current||$(ue))return;const ye=ue.touches[0];if(!ye)return;const Ge=Math.abs(ye.clientX-U.current.startX),Re=Math.abs(ye.clientY-U.current.startY),Oe=Math.sqrt(Ge*Ge+Re*Re);Oe>5&&(U.current.dismissOnTouchEnd=!0),Oe>10&&(de(ue),P.clear(),U.current=null)}function je(ue){we(ue,Te)}function Ee(ue){le()!=="sloppy"||!U.current||$(ue)||(U.current.dismissOnTouchEnd&&de(ue),P.clear(),U.current=null)}function De(ue){we(ue,Ee)}const Le=xt(b),Ie=ga(o&&ga(_t(Le,"keydown",H),_t(Le,"compositionstart",te),_t(Le,"compositionend",fe)),y&&ga(_t(Le,"click",Ve,!0),_t(Le,"pointerdown",Ve,!0),_t(Le,"pointerup",Se,!0),_t(Le,"pointercancel",Se,!0),_t(Le,"mousedown",Ve,!0),_t(Le,"mouseup",Se,!0),_t(Le,"touchstart",Be,!0),_t(Le,"touchmove",je,!0),_t(Le,"touchend",De,!0)));return()=>{Ie(),X.clear(),Z.clear(),re(),T.current=!1}},[_,b,o,y,k,h,a,S,N,H,D,w,L,$,j,g,P]),x.useEffect(D,[k,D]);const K=x.useMemo(()=>({onKeyDown:H,onPointerDown:V,onClick:V}),[H,V]),I=x.useMemo(()=>({onKeyDown:H,onPointerDown:G,onMouseDown:G,onClickCapture:F,onMouseDownCapture(X){F(),Y(X)},onPointerDownCapture(X){F(),Y(X)},onMouseUpCapture:F,onTouchEndCapture:F,onTouchMoveCapture:F}),[H,F,Y,G]);return x.useMemo(()=>a?{reference:K,floating:I,trigger:K}:{},[a,K,I])}function Hj(e,t,a){let{reference:o,floating:l}=e;const c=Bs(t),d=Bb(t),p=Ib(d),m=fs(t),g=c==="y",h=o.x+o.width/2-l.width/2,b=o.y+o.height/2-l.height/2,_=o[p]/2-l[p]/2;let j;switch(m){case"top":j={x:h,y:o.y-l.height};break;case"bottom":j={x:h,y:o.y+o.height};break;case"right":j={x:o.x+o.width,y:b};break;case"left":j={x:o.x-l.width,y:b};break;default:j={x:o.x,y:o.y}}switch(Yr(t)){case"start":j[d]-=_*(a&&g?-1:1);break;case"end":j[d]+=_*(a&&g?-1:1);break}return j}async function SO(e,t){var a;t===void 0&&(t={});const{x:o,y:l,platform:c,rects:d,elements:p,strategy:m}=e,{boundary:g="clippingAncestors",rootBoundary:h="viewport",elementContext:b="floating",altBoundary:_=!1,padding:j=0}=nr(t,e),E=_2(j),y=p[_?b==="floating"?"reference":"floating":b],w=Yc(await c.getClippingRect({element:(a=await(c.isElement==null?void 0:c.isElement(y)))==null||a?y:y.contextElement||await(c.getDocumentElement==null?void 0:c.getDocumentElement(p.floating)),boundary:g,rootBoundary:h,strategy:m})),S=b==="floating"?{x:o,y:l,width:d.floating.width,height:d.floating.height}:d.reference,N=await(c.getOffsetParent==null?void 0:c.getOffsetParent(p.floating)),R=await(c.isElement==null?void 0:c.isElement(N))?await(c.getScale==null?void 0:c.getScale(N))||{x:1,y:1}:{x:1,y:1},A=Yc(c.convertOffsetParentRelativeRectToViewportRelativeRect?await c.convertOffsetParentRelativeRectToViewportRelativeRect({elements:p,rect:S,offsetParent:N,strategy:m}):S);return{top:(w.top-A.top+E.top)/R.y,bottom:(A.bottom-w.bottom+E.bottom)/R.y,left:(w.left-A.left+E.left)/R.x,right:(A.right-w.right+E.right)/R.x}}const CO=50,NO=async(e,t,a)=>{const{placement:o="bottom",strategy:l="absolute",middleware:c=[],platform:d}=a,p=d.detectOverflow?d:{...d,detectOverflow:SO},m=await(d.isRTL==null?void 0:d.isRTL(t));let g=await d.getElementRects({reference:e,floating:t,strategy:l}),{x:h,y:b}=Hj(g,o,m),_=o,j=0;const E={};for(let k=0;k<c.length;k++){const y=c[k];if(!y)continue;const{name:w,fn:S}=y,{x:N,y:R,data:A,reset:T}=await S({x:h,y:b,initialPlacement:o,placement:_,strategy:l,middlewareData:E,rects:g,platform:p,elements:{reference:e,floating:t}});h=N??h,b=R??b,E[w]={...E[w],...A},T&&j<CO&&(j++,typeof T=="object"&&(T.placement&&(_=T.placement),T.rects&&(g=T.rects===!0?await d.getElementRects({reference:e,floating:t,strategy:l}):T.rects),{x:h,y:b}=Hj(g,_,m)),k=-1)}return{x:h,y:b,placement:_,strategy:l,middlewareData:E}},EO=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var a,o;const{placement:l,middlewareData:c,rects:d,initialPlacement:p,platform:m,elements:g}=t,{mainAxis:h=!0,crossAxis:b=!0,fallbackPlacements:_,fallbackStrategy:j="bestFit",fallbackAxisSideDirection:E="none",flipAlignment:k=!0,...y}=nr(e,t);if((a=c.arrow)!=null&&a.alignmentOffset)return{};const w=fs(l),S=Bs(p),N=fs(p)===p,R=await(m.isRTL==null?void 0:m.isRTL(g.floating)),A=_||(N||!k?[kf(p)]:z4(p)),T=E!=="none";!_&&T&&A.push(...I4(p,k,E,R));const O=[p,...A],z=await m.detectOverflow(t,y),U=[];let P=((o=c.flip)==null?void 0:o.overflows)||[];if(h&&U.push(z[w]),b){const $=O4(l,d,R);U.push(z[$[0]],z[$[1]])}if(P=[...P,{placement:l,overflows:U}],!U.every($=>$<=0)){var B,D;const $=(((B=c.flip)==null?void 0:B.index)||0)+1,V=O[$];if(V&&(!(b==="alignment"?S!==Bs(V):!1)||P.every(Y=>Bs(Y.placement)===S?Y.overflows[0]>0:!0)))return{data:{index:$,overflows:P},reset:{placement:V}};let H=(D=P.filter(F=>F.overflows[0]<=0).sort((F,Y)=>F.overflows[1]-Y.overflows[1])[0])==null?void 0:D.placement;if(!H)switch(j){case"bestFit":{var L;const F=(L=P.filter(Y=>{if(T){const G=Bs(Y.placement);return G===S||G==="y"}return!0}).map(Y=>[Y.placement,Y.overflows.filter(G=>G>0).reduce((G,K)=>G+K,0)]).sort((Y,G)=>Y[1]-G[1])[0])==null?void 0:L[0];F&&(H=F);break}case"initialPlacement":H=p;break}if(l!==H)return{reset:{placement:H}}}return{}}}};function Vj(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function qj(e){return A4.some(t=>e[t]>=0)}const RO=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){const{rects:a,platform:o}=t,{strategy:l="referenceHidden",...c}=nr(e,t);switch(l){case"referenceHidden":{const d=await o.detectOverflow(t,{...c,elementContext:"reference"}),p=Vj(d,a.reference);return{data:{referenceHiddenOffsets:p,referenceHidden:qj(p)}}}case"escaped":{const d=await o.detectOverflow(t,{...c,altBoundary:!0}),p=Vj(d,a.floating);return{data:{escapedOffsets:p,escaped:qj(p)}}}default:return{}}}}},G2=new Set(["left","top"]);async function TO(e,t){const{placement:a,platform:o,elements:l}=e,c=await(o.isRTL==null?void 0:o.isRTL(l.floating)),d=fs(a),p=Yr(a),m=Bs(a)==="y",g=G2.has(d)?-1:1,h=c&&m?-1:1,b=nr(t,e);let{mainAxis:_,crossAxis:j,alignmentAxis:E}=typeof b=="number"?{mainAxis:b,crossAxis:0,alignmentAxis:null}:{mainAxis:b.mainAxis||0,crossAxis:b.crossAxis||0,alignmentAxis:b.alignmentAxis};return p&&typeof E=="number"&&(j=p==="end"?E*-1:E),m?{x:j*h,y:_*g}:{x:_*g,y:j*h}}const AO=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var a,o;const{x:l,y:c,placement:d,middlewareData:p}=t,m=await TO(t,e);return d===((a=p.offset)==null?void 0:a.placement)&&(o=p.arrow)!=null&&o.alignmentOffset?{}:{x:l+m.x,y:c+m.y,data:{...m,placement:d}}}}},MO=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:a,y:o,placement:l,platform:c}=t,{mainAxis:d=!0,crossAxis:p=!1,limiter:m={fn:w=>{let{x:S,y:N}=w;return{x:S,y:N}}},...g}=nr(e,t),h={x:a,y:o},b=await c.detectOverflow(t,g),_=Bs(fs(l)),j=Lb(_);let E=h[j],k=h[_];if(d){const w=j==="y"?"top":"left",S=j==="y"?"bottom":"right",N=E+b[w],R=E-b[S];E=wx(N,E,R)}if(p){const w=_==="y"?"top":"left",S=_==="y"?"bottom":"right",N=k+b[w],R=k-b[S];k=wx(N,k,R)}const y=m.fn({...t,[j]:E,[_]:k});return{...y,data:{x:y.x-a,y:y.y-o,enabled:{[j]:d,[_]:p}}}}}},OO=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:a,y:o,placement:l,rects:c,middlewareData:d}=t,{offset:p=0,mainAxis:m=!0,crossAxis:g=!0}=nr(e,t),h={x:a,y:o},b=Bs(l),_=Lb(b);let j=h[_],E=h[b];const k=nr(p,t),y=typeof k=="number"?{mainAxis:k,crossAxis:0}:{mainAxis:0,crossAxis:0,...k};if(m){const N=_==="y"?"height":"width",R=c.reference[_]-c.floating[N]+y.mainAxis,A=c.reference[_]+c.reference[N]-y.mainAxis;j<R?j=R:j>A&&(j=A)}if(g){var w,S;const N=_==="y"?"width":"height",R=G2.has(fs(l)),A=c.reference[b]-c.floating[N]+(R&&((w=d.offset)==null?void 0:w[b])||0)+(R?0:y.crossAxis),T=c.reference[b]+c.reference[N]+(R?0:((S=d.offset)==null?void 0:S[b])||0)-(R?y.crossAxis:0);E<A?E=A:E>T&&(E=T)}return{[_]:j,[b]:E}}}},zO=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){var a,o;const{placement:l,rects:c,platform:d,elements:p}=t,{apply:m=()=>{},...g}=nr(e,t),h=await d.detectOverflow(t,g),b=fs(l),_=Yr(l),j=Bs(l)==="y",{width:E,height:k}=c.floating;let y,w;b==="top"||b==="bottom"?(y=b,w=_===(await(d.isRTL==null?void 0:d.isRTL(p.floating))?"start":"end")?"left":"right"):(w=b,y=_==="end"?"top":"bottom");const S=k-h.top-h.bottom,N=E-h.left-h.right,R=Jl(k-h[y],S),A=Jl(E-h[w],N),T=!t.middlewareData.shift;let O=R,z=A;if((a=t.middlewareData.shift)!=null&&a.enabled.x&&(z=N),(o=t.middlewareData.shift)!=null&&o.enabled.y&&(O=S),T&&!_){const P=js(h.left,0),B=js(h.right,0),D=js(h.top,0),L=js(h.bottom,0);j?z=E-2*(P!==0||B!==0?P+B:js(h.left,h.right)):O=k-2*(D!==0||L!==0?D+L:js(h.top,h.bottom))}await m({...t,availableWidth:z,availableHeight:O});const U=await d.getDimensions(p.floating);return E!==U.width||k!==U.height?{reset:{rects:!0}}:{}}}};function Y2(e){const t=ps(e);let a=parseFloat(t.width)||0,o=parseFloat(t.height)||0;const l=Ft(e),c=l?e.offsetWidth:a,d=l?e.offsetHeight:o,p=jf(a)!==c||jf(o)!==d;return p&&(a=c,o=d),{width:a,height:o,$:p}}function Xb(e){return bt(e)?e:e.contextElement}function Vl(e){const t=Xb(e);if(!Ft(t))return ha(1);const a=t.getBoundingClientRect(),{width:o,height:l,$:c}=Y2(t);let d=(c?jf(a.width):a.width)/o,p=(c?jf(a.height):a.height)/l;return(!d||!Number.isFinite(d))&&(d=1),(!p||!Number.isFinite(p))&&(p=1),{x:d,y:p}}const DO=ha(0);function K2(e){const t=Wt(e);return!Mb()||!t.visualViewport?DO:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function PO(e,t,a){return t===void 0&&(t=!1),!a||t&&a!==Wt(e)?!1:t}function Mo(e,t,a,o){t===void 0&&(t=!1),a===void 0&&(a=!1);const l=e.getBoundingClientRect(),c=Xb(e);let d=ha(1);t&&(o?bt(o)&&(d=Vl(o)):d=Vl(e));const p=PO(c,a,o)?K2(c):ha(0);let m=(l.left+p.x)/d.x,g=(l.top+p.y)/d.y,h=l.width/d.x,b=l.height/d.y;if(c){const _=Wt(c),j=o&&bt(o)?Wt(o):o;let E=_,k=vx(E);for(;k&&o&&j!==E;){const y=Vl(k),w=k.getBoundingClientRect(),S=ps(k),N=w.left+(k.clientLeft+parseFloat(S.paddingLeft))*y.x,R=w.top+(k.clientTop+parseFloat(S.paddingTop))*y.y;m*=y.x,g*=y.y,h*=y.x,b*=y.y,m+=N,g+=R,E=Wt(k),k=vx(E)}}return Yc({width:h,height:b,x:m,y:g})}function fp(e,t){const a=ap(e).scrollLeft;return t?t.left+a:Mo(ja(e)).left+a}function X2(e,t){const a=e.getBoundingClientRect(),o=a.left+t.scrollLeft-fp(e,a),l=a.top+t.scrollTop;return{x:o,y:l}}function LO(e){let{elements:t,rect:a,offsetParent:o,strategy:l}=e;const c=l==="fixed",d=ja(o),p=t?sp(t.floating):!1;if(o===d||p&&c)return a;let m={scrollLeft:0,scrollTop:0},g=ha(1);const h=ha(0),b=Ft(o);if((b||!b&&!c)&&((qn(o)!=="body"||Gr(d))&&(m=ap(o)),b)){const j=Mo(o);g=Vl(o),h.x=j.x+o.clientLeft,h.y=j.y+o.clientTop}const _=d&&!b&&!c?X2(d,m):ha(0);return{width:a.width*g.x,height:a.height*g.y,x:a.x*g.x-m.scrollLeft*g.x+h.x+_.x,y:a.y*g.y-m.scrollTop*g.y+h.y+_.y}}function IO(e){return Array.from(e.getClientRects())}function BO(e){const t=ja(e),a=ap(e),o=e.ownerDocument.body,l=js(t.scrollWidth,t.clientWidth,o.scrollWidth,o.clientWidth),c=js(t.scrollHeight,t.clientHeight,o.scrollHeight,o.clientHeight);let d=-a.scrollLeft+fp(e);const p=-a.scrollTop;return ps(o).direction==="rtl"&&(d+=js(t.clientWidth,o.clientWidth)-l),{width:l,height:c,x:d,y:p}}const Fj=25;function UO(e,t){const a=Wt(e),o=ja(e),l=a.visualViewport;let c=o.clientWidth,d=o.clientHeight,p=0,m=0;if(l){c=l.width,d=l.height;const h=Mb();(!h||h&&t==="fixed")&&(p=l.offsetLeft,m=l.offsetTop)}const g=fp(o);if(g<=0){const h=o.ownerDocument,b=h.body,_=getComputedStyle(b),j=h.compatMode==="CSS1Compat"&&parseFloat(_.marginLeft)+parseFloat(_.marginRight)||0,E=Math.abs(o.clientWidth-b.clientWidth-j);E<=Fj&&(c-=E)}else g<=Fj&&(c+=g);return{width:c,height:d,x:p,y:m}}function $O(e,t){const a=Mo(e,!0,t==="fixed"),o=a.top+e.clientTop,l=a.left+e.clientLeft,c=Ft(e)?Vl(e):ha(1),d=e.clientWidth*c.x,p=e.clientHeight*c.y,m=l*c.x,g=o*c.y;return{width:d,height:p,x:m,y:g}}function Gj(e,t,a){let o;if(t==="viewport")o=UO(e,a);else if(t==="document")o=BO(ja(e));else if(bt(t))o=$O(t,a);else{const l=K2(e);o={x:t.x-l.x,y:t.y-l.y,width:t.width,height:t.height}}return Yc(o)}function Q2(e,t){const a=_a(e);return a===t||!bt(a)||ma(a)?!1:ps(a).position==="fixed"||Q2(a,t)}function HO(e,t){const a=t.get(e);if(a)return a;let o=Gc(e,[],!1).filter(p=>bt(p)&&qn(p)!=="body"),l=null;const c=ps(e).position==="fixed";let d=c?_a(e):e;for(;bt(d)&&!ma(d);){const p=ps(d),m=Ab(d);!m&&p.position==="fixed"&&(l=null),(c?!m&&!l:!m&&p.position==="static"&&!!l&&(l.position==="absolute"||l.position==="fixed")||Gr(d)&&!m&&Q2(e,d))?o=o.filter(h=>h!==d):l=p,d=_a(d)}return t.set(e,o),o}function VO(e){let{element:t,boundary:a,rootBoundary:o,strategy:l}=e;const d=[...a==="clippingAncestors"?sp(t)?[]:HO(t,this._c):[].concat(a),o],p=Gj(t,d[0],l);let m=p.top,g=p.right,h=p.bottom,b=p.left;for(let _=1;_<d.length;_++){const j=Gj(t,d[_],l);m=js(j.top,m),g=Jl(j.right,g),h=Jl(j.bottom,h),b=js(j.left,b)}return{width:g-b,height:h-m,x:b,y:m}}function qO(e){const{width:t,height:a}=Y2(e);return{width:t,height:a}}function FO(e,t,a){const o=Ft(t),l=ja(t),c=a==="fixed",d=Mo(e,!0,c,t);let p={scrollLeft:0,scrollTop:0};const m=ha(0);function g(){m.x=fp(l)}if(o||!o&&!c)if((qn(t)!=="body"||Gr(l))&&(p=ap(t)),o){const j=Mo(t,!0,c,t);m.x=j.x+t.clientLeft,m.y=j.y+t.clientTop}else l&&g();c&&!o&&l&&g();const h=l&&!o&&!c?X2(l,p):ha(0),b=d.left+p.scrollLeft-m.x-h.x,_=d.top+p.scrollTop-m.y-h.y;return{x:b,y:_,width:d.width,height:d.height}}function oh(e){return ps(e).position==="static"}function Yj(e,t){if(!Ft(e)||ps(e).position==="fixed")return null;if(t)return t(e);let a=e.offsetParent;return ja(e)===a&&(a=a.ownerDocument.body),a}function W2(e,t){const a=Wt(e);if(sp(e))return a;if(!Ft(e)){let l=_a(e);for(;l&&!ma(l);){if(bt(l)&&!oh(l))return l;l=_a(l)}return a}let o=Yj(e,t);for(;o&&c4(o)&&oh(o);)o=Yj(o,t);return o&&ma(o)&&oh(o)&&!Ab(o)?a:o||f4(e)||a}const GO=async function(e){const t=this.getOffsetParent||W2,a=this.getDimensions,o=await a(e.floating);return{reference:FO(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:o.width,height:o.height}}};function YO(e){return ps(e).direction==="rtl"}const Z2={convertOffsetParentRelativeRectToViewportRelativeRect:LO,getDocumentElement:ja,getClippingRect:VO,getOffsetParent:W2,getElementRects:GO,getClientRects:IO,getDimensions:qO,getScale:Vl,isElement:bt,isRTL:YO};function J2(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function KO(e,t){let a=null,o;const l=ja(e);function c(){var p;clearTimeout(o),(p=a)==null||p.disconnect(),a=null}function d(p,m){p===void 0&&(p=!1),m===void 0&&(m=1),c();const g=e.getBoundingClientRect(),{left:h,top:b,width:_,height:j}=g;if(p||t(),!_||!j)return;const E=Ad(b),k=Ad(l.clientWidth-(h+_)),y=Ad(l.clientHeight-(b+j)),w=Ad(h),N={rootMargin:-E+"px "+-k+"px "+-y+"px "+-w+"px",threshold:js(0,Jl(1,m))||1};let R=!0;function A(T){const O=T[0].intersectionRatio;if(O!==m){if(!R)return d();O?d(!1,O):o=setTimeout(()=>{d(!1,1e-7)},1e3)}O===1&&!J2(g,e.getBoundingClientRect())&&d(),R=!1}try{a=new IntersectionObserver(A,{...N,root:l.ownerDocument})}catch{a=new IntersectionObserver(A,N)}a.observe(e)}return d(!0),c}function Kj(e,t,a,o){o===void 0&&(o={});const{ancestorScroll:l=!0,ancestorResize:c=!0,elementResize:d=typeof ResizeObserver=="function",layoutShift:p=typeof IntersectionObserver=="function",animationFrame:m=!1}=o,g=Xb(e),h=l||c?[...g?Gc(g):[],...t?Gc(t):[]]:[];h.forEach(w=>{l&&w.addEventListener("scroll",a,{passive:!0}),c&&w.addEventListener("resize",a)});const b=g&&p?KO(g,a):null;let _=-1,j=null;d&&(j=new ResizeObserver(w=>{let[S]=w;S&&S.target===g&&j&&t&&(j.unobserve(t),cancelAnimationFrame(_),_=requestAnimationFrame(()=>{var N;(N=j)==null||N.observe(t)})),a()}),g&&!m&&j.observe(g),t&&j.observe(t));let E,k=m?Mo(e):null;m&&y();function y(){const w=Mo(e);k&&!J2(k,w)&&a(),k=w,E=requestAnimationFrame(y)}return a(),()=>{var w;h.forEach(S=>{l&&S.removeEventListener("scroll",a),c&&S.removeEventListener("resize",a)}),b?.(),(w=j)==null||w.disconnect(),j=null,m&&cancelAnimationFrame(E)}}const XO=AO,QO=MO,WO=EO,ZO=zO,JO=RO,ez=OO,tz=(e,t,a)=>{const o=new Map,l={platform:Z2,...a},c={...l.platform,_c:o};return NO(e,t,{...l,platform:c})};var nz=typeof document<"u",sz=function(){},of=nz?x.useLayoutEffect:sz;function Nf(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let a,o,l;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(a=e.length,a!==t.length)return!1;for(o=a;o--!==0;)if(!Nf(e[o],t[o]))return!1;return!0}if(l=Object.keys(e),a=l.length,a!==Object.keys(t).length)return!1;for(o=a;o--!==0;)if(!{}.hasOwnProperty.call(t,l[o]))return!1;for(o=a;o--!==0;){const c=l[o];if(!(c==="_owner"&&e.$$typeof)&&!Nf(e[c],t[c]))return!1}return!0}return e!==e&&t!==t}function eC(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function Xj(e,t){const a=eC(e);return Math.round(t*a)/a}function lh(e){const t=x.useRef(e);return of(()=>{t.current=e}),t}function az(e){e===void 0&&(e={});const{placement:t="bottom",strategy:a="absolute",middleware:o=[],platform:l,elements:{reference:c,floating:d}={},transform:p=!0,whileElementsMounted:m,open:g}=e,[h,b]=x.useState({x:0,y:0,strategy:a,placement:t,middlewareData:{},isPositioned:!1}),[_,j]=x.useState(o);Nf(_,o)||j(o);const[E,k]=x.useState(null),[y,w]=x.useState(null),S=x.useCallback(Y=>{Y!==T.current&&(T.current=Y,k(Y))},[]),N=x.useCallback(Y=>{Y!==O.current&&(O.current=Y,w(Y))},[]),R=c||E,A=d||y,T=x.useRef(null),O=x.useRef(null),z=x.useRef(h),U=m!=null,P=lh(m),B=lh(l),D=lh(g),L=x.useCallback(()=>{if(!T.current||!O.current)return;const Y={placement:t,strategy:a,middleware:_};B.current&&(Y.platform=B.current),tz(T.current,O.current,Y).then(G=>{const K={...G,isPositioned:D.current!==!1};$.current&&!Nf(z.current,K)&&(z.current=K,Hs.flushSync(()=>{b(K)}))})},[_,t,a,B,D]);of(()=>{g===!1&&z.current.isPositioned&&(z.current.isPositioned=!1,b(Y=>({...Y,isPositioned:!1})))},[g]);const $=x.useRef(!1);of(()=>($.current=!0,()=>{$.current=!1}),[]),of(()=>{if(R&&(T.current=R),A&&(O.current=A),R&&A){if(P.current)return P.current(R,A,L);L()}},[R,A,L,P,U]);const V=x.useMemo(()=>({reference:T,floating:O,setReference:S,setFloating:N}),[S,N]),H=x.useMemo(()=>({reference:R,floating:A}),[R,A]),F=x.useMemo(()=>{const Y={position:a,left:0,top:0};if(!H.floating)return Y;const G=Xj(H.floating,h.x),K=Xj(H.floating,h.y);return p?{...Y,transform:"translate("+G+"px, "+K+"px)",...eC(H.floating)>=1.5&&{willChange:"transform"}}:{position:a,left:G,top:K}},[a,p,H.floating,h.x,h.y]);return x.useMemo(()=>({...h,update:L,refs:V,elements:H,floatingStyles:F}),[h,L,V,H,F])}const rz=(e,t)=>{const a=XO(e);return{name:a.name,fn:a.fn,options:[e,t]}},oz=(e,t)=>{const a=QO(e);return{name:a.name,fn:a.fn,options:[e,t]}},lz=(e,t)=>({fn:ez(e).fn,options:[e,t]}),iz=(e,t)=>{const a=WO(e);return{name:a.name,fn:a.fn,options:[e,t]}},cz=(e,t)=>{const a=ZO(e);return{name:a.name,fn:a.fn,options:[e,t]}},uz=(e,t)=>{const a=JO(e);return{name:a.name,fn:a.fn,options:[e,t]}};function Qb(e){const t=x.useRef(!0);t.current&&(t.current=!1,e())}const Ae=(e,t,a,o,l,c,...d)=>{if(d.length>0)throw new Error(ln(1));let p;if(e)p=e;else throw new Error("Missing arguments");return p};var ih={exports:{}},ch={};/**
701
- * @license React
702
- * use-sync-external-store-shim.production.js
703
- *
704
- * Copyright (c) Meta Platforms, Inc. and affiliates.
705
- *
706
- * This source code is licensed under the MIT license found in the
707
- * LICENSE file in the root directory of this source tree.
708
- */var Qj;function dz(){if(Qj)return ch;Qj=1;var e=eu();function t(b,_){return b===_&&(b!==0||1/b===1/_)||b!==b&&_!==_}var a=typeof Object.is=="function"?Object.is:t,o=e.useState,l=e.useEffect,c=e.useLayoutEffect,d=e.useDebugValue;function p(b,_){var j=_(),E=o({inst:{value:j,getSnapshot:_}}),k=E[0].inst,y=E[1];return c(function(){k.value=j,k.getSnapshot=_,m(k)&&y({inst:k})},[b,j,_]),l(function(){return m(k)&&y({inst:k}),b(function(){m(k)&&y({inst:k})})},[b]),d(j),j}function m(b){var _=b.getSnapshot;b=b.value;try{var j=_();return!a(b,j)}catch{return!0}}function g(b,_){return _()}var h=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?g:p;return ch.useSyncExternalStore=e.useSyncExternalStore!==void 0?e.useSyncExternalStore:h,ch}var Wj;function tC(){return Wj||(Wj=1,ih.exports=dz()),ih.exports}var Ef=tC(),uh={exports:{}},dh={};/**
709
- * @license React
710
- * use-sync-external-store-shim/with-selector.production.js
711
- *
712
- * Copyright (c) Meta Platforms, Inc. and affiliates.
713
- *
714
- * This source code is licensed under the MIT license found in the
715
- * LICENSE file in the root directory of this source tree.
716
- */var Zj;function fz(){if(Zj)return dh;Zj=1;var e=eu(),t=tC();function a(g,h){return g===h&&(g!==0||1/g===1/h)||g!==g&&h!==h}var o=typeof Object.is=="function"?Object.is:a,l=t.useSyncExternalStore,c=e.useRef,d=e.useEffect,p=e.useMemo,m=e.useDebugValue;return dh.useSyncExternalStoreWithSelector=function(g,h,b,_,j){var E=c(null);if(E.current===null){var k={hasValue:!1,value:null};E.current=k}else k=E.current;E=p(function(){function w(T){if(!S){if(S=!0,N=T,T=_(T),j!==void 0&&k.hasValue){var O=k.value;if(j(O,T))return R=O}return R=T}if(O=R,o(N,T))return O;var z=_(T);return j!==void 0&&j(O,z)?(N=T,O):(N=T,R=z)}var S=!1,N,R,A=b===void 0?null:b;return[function(){return w(h())},A===null?void 0:function(){return w(A())}]},[h,b,_,j]);var y=l(g,E[0],E[1]);return d(function(){k.hasValue=!0,k.value=y},[y]),m(y),y},dh}var Jj;function pz(){return Jj||(Jj=1,uh.exports=fz()),uh.exports}var mz=pz();const gz=Hb(19),hz=gz?bz:_z;function nt(e,t,a,o,l){return hz(e,t,a,o,l)}function xz(e,t,a,o,l){const c=x.useCallback(()=>t(e.getSnapshot(),a,o,l),[e,t,a,o,l]);return Ef.useSyncExternalStore(e.subscribe,c,c)}Q3({before(e){e.syncIndex=0,e.didInitialize||(e.syncTick=1,e.syncHooks=[],e.didChangeStore=!0,e.getSnapshot=()=>{let t=!1;for(let a=0;a<e.syncHooks.length;a+=1){const o=e.syncHooks[a],l=o.selector(o.store.state,o.a1,o.a2,o.a3);Object.is(o.value,l)||(t=!0,o.value=l)}return t&&(e.syncTick+=1),e.syncTick})},after(e){e.syncHooks.length>0&&(e.didChangeStore&&(e.didChangeStore=!1,e.subscribe=t=>{const a=new Set;for(const l of e.syncHooks)a.add(l.store);const o=[];for(const l of a)o.push(l.subscribe(t));return()=>{for(const l of o)l()}}),Ef.useSyncExternalStore(e.subscribe,e.getSnapshot,e.getSnapshot))}});function bz(e,t,a,o,l){const c=X3();if(!c)return xz(e,t,a,o,l);const d=c.syncIndex;c.syncIndex+=1;let p;return c.didInitialize?(p=c.syncHooks[d],(p.store!==e||p.selector!==t||!Object.is(p.a1,a)||!Object.is(p.a2,o)||!Object.is(p.a3,l))&&(p.store!==e&&(c.didChangeStore=!0),p.store=e,p.selector=t,p.a1=a,p.a2=o,p.a3=l,p.value=t(e.getSnapshot(),a,o,l))):(p={store:e,selector:t,a1:a,a2:o,a3:l,value:t(e.getSnapshot(),a,o,l)},c.syncHooks.push(p)),p.value}function _z(e,t,a,o,l){return mz.useSyncExternalStoreWithSelector(e.subscribe,e.getSnapshot,e.getSnapshot,c=>t(c,a,o,l))}class nC{constructor(t){this.state=t,this.listeners=new Set,this.updateTick=0}subscribe=t=>(this.listeners.add(t),()=>{this.listeners.delete(t)});getSnapshot=()=>this.state;setState(t){if(this.state===t)return;this.state=t,this.updateTick+=1;const a=this.updateTick;for(const o of this.listeners){if(a!==this.updateTick)return;o(t)}}update(t){for(const a in t)if(!Object.is(this.state[a],t[a])){this.setState({...this.state,...t});return}}set(t,a){Object.is(this.state[t],a)||this.setState({...this.state,[t]:a})}notifyAll(){const t={...this.state};this.setState(t)}use(t,a,o,l){return nt(this,t,a,o,l)}}class pp extends nC{constructor(t,a={},o){super(t),this.context=a,this.selectors=o}useSyncedValue(t,a){x.useDebugValue(t);const o=this;ze(()=>{o.state[t]!==a&&o.set(t,a)},[o,t,a])}useSyncedValueWithCleanup(t,a){const o=this;ze(()=>(o.state[t]!==a&&o.set(t,a),()=>{o.set(t,void 0)}),[o,t,a])}useSyncedValues(t){const a=this,o=Object.values(t);ze(()=>{a.update(t)},[a,...o])}useControlledProp(t,a){x.useDebugValue(t);const o=this,l=a!==void 0;ze(()=>{l&&!Object.is(o.state[t],a)&&o.setState({...o.state,[t]:a})},[o,t,a,l])}select(t,a,o,l){const c=this.selectors[t];return c(this.state,a,o,l)}useState(t,a,o,l){return x.useDebugValue(t),nt(this,this.selectors[t],a,o,l)}useContextCallback(t,a){x.useDebugValue(t);const o=Ue(a??An);this.context[t]=o}useStateSetter(t){const a=x.useRef(void 0);return a.current===void 0&&(a.current=o=>{this.set(t,o)}),a.current}observe(t,a){let o;typeof t=="function"?o=t:o=this.selectors[t];let l=o(this.state);return a(l,l,this),this.subscribe(c=>{const d=o(c);if(!Object.is(l,d)){const p=l;l=d,a(d,p,this)}})}}const vz={open:Ae(e=>e.open),transitionStatus:Ae(e=>e.transitionStatus),domReferenceElement:Ae(e=>e.domReferenceElement),referenceElement:Ae(e=>e.positionReference??e.referenceElement),floatingElement:Ae(e=>e.floatingElement),floatingId:Ae(e=>e.floatingId)};class mp extends pp{constructor(t){const{syncOnly:a,nested:o,onOpenChange:l,triggerElements:c,...d}=t;super({...d,positionReference:d.referenceElement,domReferenceElement:d.referenceElement},{onOpenChange:l,dataRef:{current:{}},events:$2(),nested:o,triggerElements:c},vz),this.syncOnly=a}syncOpenEvent=(t,a)=>{(!t||!this.state.open||a!=null&&i4(a))&&(this.context.dataRef.current.openEvent=t?a:void 0)};dispatchOpenChange=(t,a)=>{this.syncOpenEvent(t,a.event);const o={open:t,reason:a.reason,nativeEvent:a.event,nested:this.context.nested,triggerElement:a.trigger};this.context.events.emit("openchange",o)};setOpen=(t,a)=>{if(this.syncOnly){this.context.onOpenChange?.(t,a);return}this.dispatchOpenChange(t,a),this.context.onOpenChange?.(t,a)}}function sC(e){const{popupStore:t,treatPopupAsFloatingElement:a=!1,floatingRootContext:o,floatingId:l,nested:c,onOpenChange:d}=e,p=t.useState("open"),m=t.useState("activeTriggerElement"),g=t.useState(a?"popupElement":"positionerElement"),h=t.context.triggerElements,b=d,_=x.useRef(null);o===void 0&&_.current===null&&(_.current=new mp({open:p,transitionStatus:void 0,referenceElement:m,floatingElement:g,triggerElements:h,onOpenChange:b,floatingId:l,syncOnly:!0,nested:c}));const j=o??_.current;return t.useSyncedValue("floatingId",l),ze(()=>{const E={open:p,floatingId:l,referenceElement:m,floatingElement:g};bt(m)&&(E.domReferenceElement=m),j.state.positionReference===j.state.referenceElement&&(E.positionReference=m),j.update(E)},[p,l,m,g,j]),j.context.onOpenChange=b,j.context.nested=c,j}function mi(e,t=!1,a=!1){const[o,l]=x.useState(e&&t?"idle":void 0),[c,d]=x.useState(e);return e&&!c&&(d(!0),l("starting")),!e&&c&&o!=="ending"&&!a&&l("ending"),!e&&!c&&o==="ending"&&l(void 0),ze(()=>{if(!e&&c&&o!=="ending"&&a){const p=ua.request(()=>{l("ending")});return()=>{ua.cancel(p)}}},[e,c,o,a]),ze(()=>{if(!e||t)return;const p=ua.request(()=>{l(void 0)});return()=>{ua.cancel(p)}},[t,e]),ze(()=>{if(!e||!t)return;e&&c&&o!=="idle"&&l("starting");const p=ua.request(()=>{l("idle")});return()=>{ua.cancel(p)}},[t,e,c,o]),{mounted:c,setMounted:d,transitionStatus:o}}let Oo=(function(e){return e.startingStyle="data-starting-style",e.endingStyle="data-ending-style",e})({});const yz={[Oo.startingStyle]:""},jz={[Oo.endingStyle]:""},rr={transitionStatus(e){return e==="starting"?yz:e==="ending"?jz:null}};function aC(e,t=!1,a=!0){const o=Wl();return Ue((l,c=null)=>{o.cancel();const d=Ka(e);if(d==null)return;const p=d,m=()=>{Hs.flushSync(l)};if(typeof p.getAnimations!="function"||globalThis.BASE_UI_ANIMATIONS_DISABLED){l();return}function g(){Promise.all(p.getAnimations().map(h=>h.finished)).then(()=>{c?.aborted||m()}).catch(()=>{if(a){c?.aborted||m();return}const h=p.getAnimations();!c?.aborted&&h.length>0&&h.some(b=>b.pending||b.playState!=="finished")&&g()})}if(t){const h=Oo.startingStyle;if(!p.hasAttribute(h)){o.request(g);return}const b=new MutationObserver(()=>{p.hasAttribute(h)||(b.disconnect(),g())});b.observe(p,{attributes:!0,attributeFilter:[h]}),c?.addEventListener("abort",()=>b.disconnect(),{once:!0});return}o.request(g)})}function ka(e){const{enabled:t=!0,open:a,ref:o,onComplete:l}=e,c=Ue(l),d=aC(o,a,!1);x.useEffect(()=>{if(!t)return;const p=new AbortController;return d(c,p.signal),()=>{p.abort()}},[t,a,c,d])}const gp={tabIndex:-1,[yx]:""};function kz(e){return t=>t==="touch"?e.current:!0}function rC(e,t,a=!1){const o=Ao(),l=Kr()!=null,c=x.useRef(null);e===void 0&&c.current===null&&(c.current=t(o,l));const d=e??c.current;return sC({popupStore:d,treatPopupAsFloatingElement:a,floatingRootContext:d.state.floatingRootContext,floatingId:o,nested:l,onOpenChange:d.setOpen}),{store:d,internalStore:c.current}}function wz(e,t){const a=x.useRef(null),o=x.useRef(null);return x.useCallback(l=>{if(e===void 0)return;let c=!1;if(a.current!==null){const d=a.current,p=o.current,m=t.context.triggerElements.getById(d);p&&m===p&&(t.context.triggerElements.delete(d),c=!0),a.current=null,o.current=null}if(l!==null&&(a.current=e,o.current=l,t.context.triggerElements.add(e,l),c=!0),c){const d=t.context.triggerElements.size;t.select("open")&&t.state.triggerCount!==d&&t.set("triggerCount",d)}},[t,e])}function Wb(e,t,a,o=!1){t?e.preventUnmountingOnClose=!1:o&&(e.preventUnmountingOnClose=!0);const l=a?.id??null;(l||t)&&(e.activeTriggerId=l,e.activeTriggerElement=a??null)}function oC(e){let t=!1;return e.preventUnmountOnClose=()=>{t=!0},()=>t}function Sz(e,t,a,o={}){const l=a.reason,c=l===Mn,d=t&&l===Ul,p=!t&&(l===pi||l===cp),m=oC(a);if(e.context.onOpenChange?.(t,a),a.isCanceled)return;o.onBeforeDispatch?.(),e.state.floatingRootContext.dispatchOpenChange(t,a);const g=()=>{const h={...o.extraState,open:t};d?h.instantType="focus":p?h.instantType="dismiss":c&&(h.instantType=void 0),Wb(h,t,a.trigger,m()),e.update(h)};c?Hs.flushSync(g):g()}function lC(e,t,a,o){Qb(()=>{t===void 0&&e.state.open===!1&&a&&(e.state={...e.state,open:!0,activeTriggerId:o,preventUnmountingOnClose:!1})})}function iC(e,t,a,o){const l=a.useState("isMountedByTrigger",e),c=wz(e,a),d=Ue(p=>{if(c(p),!p)return;const m=a.select("open"),g=a.select("activeTriggerId");if(g===e){a.update({activeTriggerElement:p,...m?o:null});return}g==null&&m&&a.update({activeTriggerId:e,activeTriggerElement:p,...o})});return ze(()=>{l&&a.update({activeTriggerElement:t.current,...o})},[l,a,t,...Object.values(o)]),{registerTrigger:d,isMountedByThisTrigger:l}}function Zb(e,t={}){const{closeOnActiveTriggerUnmount:a=!1}=t,o=e.useState("open"),l=e.useState("triggerCount");ze(()=>{if(!o){e.state.triggerCount!==0&&e.set("triggerCount",0);return}const c=e.context.triggerElements.size,d={};e.state.triggerCount!==c&&(d.triggerCount=c);const p=e.select("activeTriggerId");let m=null;if(p){const g=e.context.triggerElements.getById(p);g?g!==e.state.activeTriggerElement&&(d.activeTriggerElement=g):m=p}if(!m&&!p&&c===1){const g=e.context.triggerElements.entries().next();if(!g.done){const[h,b]=g.value;d.activeTriggerId=h,d.activeTriggerElement=b}}(d.triggerCount!==void 0||d.activeTriggerId!==void 0||d.activeTriggerElement!==void 0)&&e.update(d),m&&a&&queueMicrotask(()=>{if(e.select("open")&&e.select("activeTriggerId")===m&&!e.context.triggerElements.getById(m)){const g=st(va);e.setOpen(!1,g),g.isCanceled||e.update({activeTriggerId:null,activeTriggerElement:null})}})},[o,e,l,a])}function Jb(e,t,a){const{mounted:o,setMounted:l,transitionStatus:c}=mi(e),d=t.useState("preventUnmountingOnClose"),p=e?!1:d;t.useSyncedValues({mounted:o,transitionStatus:c,preventUnmountingOnClose:p});const m=Ue(()=>{l(!1),t.update({activeTriggerId:null,activeTriggerElement:null,mounted:!1,preventUnmountingOnClose:!1}),a?.(),t.context.onOpenChangeComplete?.(!1)});return ka({enabled:o&&!e&&!p,open:e,ref:t.context.popupRef,onComplete(){e||m()}}),{forceUnmount:m,transitionStatus:c}}function e_(e,t){e.useSyncedValues(t),ze(()=>()=>{e.update({activeTriggerProps:Xt,inactiveTriggerProps:Xt,popupProps:Xt})},[e])}function Cz(e,t){ze(()=>{!t&&e.state.openMethod!==null&&e.set("openMethod",null)},[t,e]),ze(()=>()=>{e.state.openMethod!==null&&e.set("openMethod",null)},[e])}class iu{constructor(){this.elementsSet=new Set,this.idMap=new Map}add(t,a){const o=this.idMap.get(t);o!==a&&(o!==void 0&&this.elementsSet.delete(o),this.elementsSet.add(a),this.idMap.set(t,a))}delete(t){const a=this.idMap.get(t);a&&(this.elementsSet.delete(a),this.idMap.delete(t))}hasElement(t){return this.elementsSet.has(t)}hasMatchingElement(t){for(const a of this.elementsSet)if(t(a))return!0;return!1}getById(t){return this.idMap.get(t)}entries(){return this.idMap.entries()}elements(){return this.elementsSet.values()}get size(){return this.idMap.size}}function Nz(){return new mp({open:!1,transitionStatus:void 0,floatingElement:null,referenceElement:null,triggerElements:new iu,floatingId:void 0,syncOnly:!1,nested:!1,onOpenChange:void 0})}function t_(){return{open:!1,openProp:void 0,mounted:!1,transitionStatus:void 0,floatingRootContext:Nz(),floatingId:void 0,triggerCount:0,preventUnmountingOnClose:!1,payload:void 0,activeTriggerId:null,activeTriggerElement:null,triggerIdProp:void 0,popupElement:null,positionerElement:null,activeTriggerProps:Xt,inactiveTriggerProps:Xt,popupProps:Xt}}function cC(e,t,a=!1){return new mp({open:!1,transitionStatus:void 0,floatingElement:null,referenceElement:null,triggerElements:e,floatingId:t,syncOnly:!0,nested:a,onOpenChange:void 0})}const zc=Ae(e=>e.triggerIdProp??e.activeTriggerId),n_=Ae(e=>e.openProp??e.open),ek=Ae(e=>(e.popupElement?.id??e.floatingId)||void 0);function uC(e,t){return t!==void 0&&n_(e)&&zc(e)===t}function Ez(e,t){return uC(e,t)?!0:t!==void 0&&n_(e)&&zc(e)==null&&e.triggerCount===1}const s_={open:n_,mounted:Ae(e=>e.mounted),transitionStatus:Ae(e=>e.transitionStatus),floatingRootContext:Ae(e=>e.floatingRootContext),triggerCount:Ae(e=>e.triggerCount),preventUnmountingOnClose:Ae(e=>e.preventUnmountingOnClose),payload:Ae(e=>e.payload),activeTriggerId:zc,activeTriggerElement:Ae(e=>e.mounted?e.activeTriggerElement:null),popupId:ek,isTriggerActive:Ae((e,t)=>t!==void 0&&zc(e)===t),isOpenedByTrigger:Ae((e,t)=>uC(e,t)),isMountedByTrigger:Ae((e,t)=>t!==void 0&&zc(e)===t&&e.mounted),triggerProps:Ae((e,t)=>t?e.activeTriggerProps:e.inactiveTriggerProps),triggerPopupId:Ae((e,t)=>Ez(e,t)?ek(e):void 0),popupProps:Ae(e=>e.popupProps),popupElement:Ae(e=>e.popupElement),positionerElement:Ae(e=>e.positionerElement)};function dC(e){const{open:t=!1,onOpenChange:a,elements:o={}}=e,l=Ao(),c=Kr()!=null,d=es(()=>new mp({open:t,transitionStatus:void 0,onOpenChange:a,referenceElement:o.reference??null,floatingElement:o.floating??null,triggerElements:new iu,floatingId:l,syncOnly:!1,nested:c})).current;return ze(()=>{const p={open:t,floatingId:l};o.reference!==void 0&&(p.referenceElement=o.reference,p.domReferenceElement=bt(o.reference)?o.reference:null),o.floating!==void 0&&(p.floatingElement=o.floating),d.update(p)},[t,l,o.reference,o.floating,d]),d.context.onOpenChange=a,d.context.nested=c,d}function Rz(e={}){const{nodeId:t,externalTree:a}=e,o=dC(e),l=e.rootContext||o,c=l.useState("referenceElement"),d=l.useState("floatingElement"),p=l.useState("domReferenceElement"),m=l.useState("open"),g=l.useState("floatingId"),[h,b]=x.useState(null),[_,j]=x.useState(void 0),[E,k]=x.useState(void 0),y=x.useRef(null),w=Xr(a),S=x.useMemo(()=>({reference:c,floating:d,domReference:p}),[c,d,p]),N=az({...e,elements:{...S,...h&&{reference:h}}}),R=bt(_)?_:null,A=E===void 0?l.state.floatingElement:E;l.useSyncedValue("referenceElement",_??null),l.useSyncedValue("domReferenceElement",_===void 0?p:R),l.useSyncedValue("floatingElement",A);const T=x.useCallback(D=>{const L=bt(D)?{getBoundingClientRect:()=>D.getBoundingClientRect(),getClientRects:()=>D.getClientRects(),contextElement:D}:D;b(L),N.refs.setReference(L)},[N.refs]),O=x.useCallback(D=>{(bt(D)||D===null)&&(y.current=D,j(D)),(bt(N.refs.reference.current)||N.refs.reference.current===null||D!==null&&!bt(D))&&N.refs.setReference(D)},[N.refs,j]),z=x.useCallback(D=>{k(D),N.refs.setFloating(D)},[N.refs]),U=x.useMemo(()=>({...N.refs,setReference:O,setFloating:z,setPositionReference:T,domReference:y}),[N.refs,O,z,T]),P=x.useMemo(()=>({...N.elements,domReference:p}),[N.elements,p]),B=x.useMemo(()=>({...N,dataRef:l.context.dataRef,open:m,onOpenChange:l.setOpen,events:l.context.events,floatingId:g,refs:U,elements:P,nodeId:t,rootStore:l}),[N,U,P,t,l,m,g]);return ze(()=>{p&&(y.current=p)},[p]),ze(()=>{l.context.dataRef.current.floatingContext=B;const D=w?.nodesRef.current.find(L=>L.id===t);D&&(D.context=B)}),x.useMemo(()=>({...N,context:B,refs:U,elements:P,rootStore:l}),[N,U,P,B,l])}const fh=Nb&&Fr;function fC(e,t={}){const{enabled:a=!0,delay:o}=t,l="rootStore"in e?e.rootStore:e,{events:c,dataRef:d}=l.context,p=x.useRef(!1),m=x.useRef(null),g=x.useRef(!0),h=Nn();x.useEffect(()=>{const _=l.select("domReferenceElement");if(!a)return;const j=Wt(_);function E(){const w=l.select("domReferenceElement");!l.select("open")&&Ft(w)&&w===Gn(xt(w))&&(p.current=!0)}function k(){g.current=!0}function y(){g.current=!1}return ga(_t(j,"blur",E),fh&&_t(j,"keydown",k,!0),fh&&_t(j,"pointerdown",y,!0))},[l,a]),x.useEffect(()=>{if(!a)return;function _(j){if(j.reason===pi||j.reason===cp){const E=l.select("domReferenceElement");bt(E)&&(m.current=E,p.current=!0)}}return c.on("openchange",_),()=>{c.off("openchange",_)}},[c,a,l]);const b=x.useMemo(()=>{function _(){p.current=!1,m.current=null}return{onMouseLeave(){_()},onFocus(j){const E=j.currentTarget;if(p.current){if(m.current===E)return;_()}const k=Vn(j.nativeEvent);if(bt(k)){if(fh&&!j.relatedTarget){if(!g.current&&!lp(k))return}else if(!g4(k))return}const y=vf(j.relatedTarget,l.context.triggerElements),{nativeEvent:w,currentTarget:S}=j,N=typeof o=="function"?o():o;if(l.select("open")&&y||N===0||N===void 0){l.setOpen(!0,st(Ul,w,S));return}h.start(N,()=>{p.current||l.setOpen(!0,st(Ul,w,S))})},onBlur(j){_();const E=j.relatedTarget,k=j.nativeEvent,y=bt(E)&&E.hasAttribute(Kc("focus-guard"))&&E.getAttribute("data-type")==="outside";h.start(0,()=>{const w=l.select("domReferenceElement"),S=Gn(xt(w));!E&&S===w||We(d.current.floatingContext?.refs.floating.current,S)||We(w,S)||y||vf(E??S,l.context.triggerElements)||l.setOpen(!1,st(Ul,k))})}}},[d,o,l,h]);return x.useMemo(()=>a?{reference:b,trigger:b}:{},[a,b])}class a_{constructor(){this.pointerType=void 0,this.interactedInside=!1,this.handler=void 0,this.blockMouseMove=!0,this.performedPointerEventsMutation=!1,this.pointerEventsScopeElement=null,this.pointerEventsReferenceElement=null,this.pointerEventsFloatingElement=null,this.restTimeoutPending=!1,this.openChangeTimeout=new Ws,this.restTimeout=new Ws,this.handleCloseOptions=void 0}static create(){return new a_}dispose=()=>{this.openChangeTimeout.clear(),this.restTimeout.clear()};disposeEffect=()=>this.dispose}const Rf=new WeakMap;function Tf(e){if(!e.performedPointerEventsMutation)return;const t=e.pointerEventsScopeElement;t&&Rf.get(t)===e&&(e.pointerEventsScopeElement?.style.removeProperty("pointer-events"),e.pointerEventsReferenceElement?.style.removeProperty("pointer-events"),e.pointerEventsFloatingElement?.style.removeProperty("pointer-events"),Rf.delete(t)),e.performedPointerEventsMutation=!1,e.pointerEventsScopeElement=null,e.pointerEventsReferenceElement=null,e.pointerEventsFloatingElement=null}function pC(e,t){const{scopeElement:a,referenceElement:o,floatingElement:l}=t,c=Rf.get(a);c&&c!==e&&Tf(c),Tf(e),e.performedPointerEventsMutation=!0,e.pointerEventsScopeElement=a,e.pointerEventsReferenceElement=o,e.pointerEventsFloatingElement=l,Rf.set(a,e),a.style.pointerEvents="none",o.style.pointerEvents="auto",l.style.pointerEvents="auto"}function r_(e){const t=e.context.dataRef.current,a=es(()=>t.hoverInteractionState??a_.create()).current;return t.hoverInteractionState||(t.hoverInteractionState=a),Cb(t.hoverInteractionState.disposeEffect),t.hoverInteractionState}function mC(e,t={}){const{enabled:a=!0,closeDelay:o=0,nodeId:l}=t,c="rootStore"in e?e.rootStore:e,d=c.useState("open"),p=c.useState("floatingElement"),m=c.useState("domReferenceElement"),{dataRef:g}=c.context,h=Xr(),b=Kr(),_=r_(c),j=Nn(),E=Ue(()=>d2(g.current.openEvent?.type,_.interactedInside)),k=Ue(()=>x4(g.current.openEvent?.type)),y=Ue(()=>{Tf(_)});ze(()=>{d||(_.pointerType=void 0,_.restTimeoutPending=!1,_.interactedInside=!1,y())},[d,_,y]),x.useEffect(()=>y,[y]),ze(()=>{if(a&&d&&_.handleCloseOptions?.blockPointerEvents&&k()&&bt(m)&&p){const w=m,S=p,N=xt(p),R=h?.nodesRef.current.find(z=>z.id===b)?.context?.elements.floating;R&&(R.style.pointerEvents="");const A=_.pointerEventsScopeElement!==S?_.pointerEventsScopeElement:null,T=R!==S?R:null,O=_.handleCloseOptions?.getScope?.()??A??T??w.closest("[data-rootownerid]")??N.body;return pC(_,{scopeElement:O,referenceElement:w,floatingElement:S}),()=>{y()}}},[a,d,m,p,_,k,h,b,y]),x.useEffect(()=>{if(!a)return;function w(){return!!(h&&b&&Hr(h.nodesRef.current,b).length>0)}function S(z){const U=Ql(o,"close",_.pointerType),P=()=>{c.setOpen(!1,st(Mn,z)),h?.events.emit("floating.closed",z)};U?_.openChangeTimeout.start(U,P):(_.openChangeTimeout.clear(),P())}function N(z){const U=Vn(z);if(!m4(U)){_.interactedInside=!1;return}_.interactedInside=U?.closest("[aria-haspopup]")!=null}function R(){_.openChangeTimeout.clear(),j.clear(),h?.events.off("floating.closed",T),y()}function A(z){if(w()&&h){h.events.on("floating.closed",T);return}if(vf(z.relatedTarget,c.context.triggerElements))return;const U=g.current.floatingContext?.nodeId??l,P=z.relatedTarget;if(!(h&&U&&bt(P)&&Hr(h.nodesRef.current,U,!1).some(D=>We(D.context?.elements.floating,P)))){if(_.handler){_.handler(z);return}y(),k()&&!E()&&S(z)}}function T(z){!h||!b||w()||j.start(0,()=>{h.events.off("floating.closed",T),c.setOpen(!1,st(Mn,z)),h.events.emit("floating.closed",z)})}const O=p;return ga(O&&_t(O,"mouseenter",R),O&&_t(O,"mouseleave",A),O&&_t(O,"pointerdown",N,!0),()=>{h?.events.off("floating.closed",T)})},[a,p,c,g,o,l,k,E,y,_,h,b,j])}const Tz={current:null};function gC(e,t={}){const{enabled:a=!0,delay:o=0,handleClose:l=null,mouseOnly:c=!1,restMs:d=0,move:p=!0,triggerElementRef:m=Tz,externalTree:g,isActiveTrigger:h=!0,getHandleCloseContext:b,isClosing:_,shouldOpen:j}=t,E="rootStore"in e?e.rootStore:e,{dataRef:k,events:y}=E.context,w=Xr(g),S=r_(E),N=x.useRef(!1),R=pn(l),A=pn(o),T=pn(d),O=pn(a),z=pn(j),U=pn(_),P=Ue(()=>d2(k.current.openEvent?.type,S.interactedInside)),B=Ue(()=>z.current?.()!==!1),D=Ue((V,H,F)=>{const Y=E.context.triggerElements;if(Y.hasElement(H))return!V||!We(V,H);if(!bt(F))return!1;const G=F;return Y.hasMatchingElement(K=>We(K,G))&&(!V||!We(V,G))}),L=Ue(()=>{if(!S.handler)return;xt(E.select("domReferenceElement")).removeEventListener("mousemove",S.handler),S.handler=void 0}),$=Ue(()=>{Tf(S)});return h&&(S.handleCloseOptions=R.current?.__options),x.useEffect(()=>L,[L]),x.useEffect(()=>{if(!a)return;function V(H){H.open?N.current=!1:(N.current=H.reason===Mn,L(),S.openChangeTimeout.clear(),S.restTimeout.clear(),S.blockMouseMove=!0,S.restTimeoutPending=!1)}return y.on("openchange",V),()=>{y.off("openchange",V)}},[a,y,S,L]),x.useEffect(()=>{if(!a)return;function V(G,K=!0){const I=Ql(A.current,"close",S.pointerType);I?S.openChangeTimeout.start(I,()=>{E.setOpen(!1,st(Mn,G)),w?.events.emit("floating.closed",G)}):K&&(S.openChangeTimeout.clear(),E.setOpen(!1,st(Mn,G)),w?.events.emit("floating.closed",G))}const H=m.current??(h?E.select("domReferenceElement"):null);if(!bt(H))return;function F(G){if(S.openChangeTimeout.clear(),S.blockMouseMove=!1,c&&!Ro(S.pointerType))return;const K=jj(T.current),I=Ql(A.current,"open",S.pointerType),X=Vn(G),Z=G.currentTarget??null,te=E.select("domReferenceElement");let fe=Z;if(bt(X)&&!E.context.triggerElements.hasElement(X)){for(const we of E.context.triggerElements.elements())if(We(we,X)){fe=we;break}}bt(Z)&&bt(te)&&!E.context.triggerElements.hasElement(Z)&&We(Z,te)&&(fe=te);const ee=fe==null?!1:D(te,fe,X),re=E.select("open"),le=U.current?.()??E.select("transitionStatus")==="ending",me=!re&&le&&N.current,Me=!ee&&bt(fe)&&bt(te)&&We(te,fe)&&me,de=K>0&&!I,ge=ee&&(re||me)||Me,Ce=!re||ee;if(ge){B()&&E.setOpen(!0,st(Mn,G,fe));return}de||(I?S.openChangeTimeout.start(I,()=>{Ce&&B()&&E.setOpen(!0,st(Mn,G,fe))}):Ce&&B()&&E.setOpen(!0,st(Mn,G,fe)))}function Y(G){if(P()){$();return}L();const K=E.select("domReferenceElement"),I=xt(K);S.restTimeout.clear(),S.restTimeoutPending=!1;const X=k.current.floatingContext??b?.();if(vf(G.relatedTarget,E.context.triggerElements))return;if(R.current&&X){E.select("open")||S.openChangeTimeout.clear();const te=m.current;S.handler=R.current({...X,tree:w,x:G.clientX,y:G.clientY,onClose(){$(),L(),O.current&&!P()&&te===E.select("domReferenceElement")&&V(G,!0)}}),I.addEventListener("mousemove",S.handler),S.handler(G);return}(S.pointerType==="touch"?!We(E.select("floatingElement"),G.relatedTarget):!0)&&V(G)}return p?ga(_t(H,"mousemove",F,{once:!0}),_t(H,"mouseenter",F),_t(H,"mouseleave",Y)):ga(_t(H,"mouseenter",F),_t(H,"mouseleave",Y))},[L,$,k,A,E,a,R,S,h,D,P,c,p,T,m,w,O,b,U,B]),x.useMemo(()=>{if(!a)return;function V(H){S.pointerType=H.pointerType}return{onPointerDown:V,onPointerEnter:V,onMouseMove(H){const{nativeEvent:F}=H,Y=H.currentTarget,G=E.select("domReferenceElement"),K=E.select("open"),I=D(G,Y,H.target);if(c&&!Ro(S.pointerType))return;if(K&&I&&S.handleCloseOptions?.blockPointerEvents){const te=E.select("floatingElement");if(te){const fe=S.handleCloseOptions?.getScope?.()??Y.ownerDocument.body;pC(S,{scopeElement:fe,referenceElement:Y,floatingElement:te})}}const X=jj(T.current);if(K&&!I||X===0||!I&&S.restTimeoutPending&&H.movementX**2+H.movementY**2<2)return;S.restTimeout.clear();function Z(){if(S.restTimeoutPending=!1,P())return;const te=E.select("open");!S.blockMouseMove&&(!te||I)&&B()&&E.setOpen(!0,st(Mn,F,Y))}S.pointerType==="touch"?Hs.flushSync(()=>{Z()}):I&&K?Z():(S.restTimeoutPending=!0,S.restTimeout.start(X,Z))}}},[a,S,P,D,c,E,T,B])}const Az="Escape";function hp(e,t,a){switch(e){case"vertical":return t;case"horizontal":return a;default:return t||a}}function Od(e,t){return hp(t,e===u2||e===Ob,e===rp||e===op)}function ph(e,t,a){return hp(t,e===Ob,a?e===rp:e===op)||e==="Enter"||e===" "||e===""}function Mz(e,t,a){return hp(t,a?e===rp:e===op,e===Ob)}function Oz(e,t,a,o){const l=a?e===op:e===rp,c=e===u2;return t==="both"||t==="horizontal"&&o?e===Az:hp(t,l,c)}function hC(e,t){const{listRef:a,activeIndex:o,onNavigate:l=()=>{},enabled:c=!0,selectedIndex:d=null,allowEscape:p=!1,loopFocus:m=!1,nested:g=!1,rtl:h=!1,virtual:b=!1,focusItemOnOpen:_="auto",focusItemOnHover:j=!0,openOnArrowKeyDown:E=!0,disabledIndices:k=void 0,orientation:y="vertical",parentOrientation:w,id:S,resetOnPointerLeave:N=!0,externalTree:R,grid:A}=t,T=A!=null,O="rootStore"in e?e.rootStore:e,z=O.useState("open"),U=O.useState("floatingElement"),P=O.useState("domReferenceElement"),B=O.context.dataRef,D=yf(U),L=jx(P),$=pn(D),V=Kr(),H=Xr(R),F=x.useRef(_),Y=x.useRef(d??-1),G=x.useRef(null),K=x.useRef(!0),I=Ue(ue=>{l(Y.current===-1?null:Y.current,ue)}),X=x.useRef(!!U),Z=x.useRef(z),te=x.useRef(!1),fe=x.useRef(!1),ee=x.useRef(null),re=pn(k),le=pn(z),me=pn(d),Me=pn(N),de=Wl(),ge=Wl(),Ce=Ue(()=>{function ue(Oe){b?H?.events.emit("virtualfocus",Oe):ee.current=rf(Oe,{sync:te.current,preventScroll:!0})}const ye=a.current[Y.current],Ge=fe.current;ye&&ue(ye),(te.current?Oe=>Oe():Oe=>de.request(Oe))(()=>{const Oe=a.current[Y.current]||ye;if(!Oe)return;ye||ue(Oe),je&&(Ge||!K.current)&&Oe.scrollIntoView?.({block:"nearest",inline:"nearest"})})});ze(()=>{B.current.orientation=y},[B,y]),ze(()=>{c&&(z&&U?(Y.current=d??-1,F.current&&d!=null&&(fe.current=!0,I())):X.current&&(Y.current=-1,I()))},[c,z,U,d,I]),ze(()=>{if(c){if(!z){te.current=!1;return}if(U)if(o==null){if(te.current=!1,me.current!=null)return;if(X.current&&(Y.current=-1,Ce()),(!Z.current||!X.current)&&F.current&&(G.current!=null||F.current===!0&&G.current==null)){let ue=0;const ye=()=>{a.current[0]==null?(ue<2&&(ue?Re=>ge.request(Re):queueMicrotask)(ye),ue+=1):(Y.current=G.current==null||ph(G.current,y,h)||g?af(a):Cx(a),G.current=null,I())};ye()}}else Oc(a.current,o)||(Y.current=o,Ce(),fe.current=!1)}},[c,z,U,o,me,g,a,y,h,I,Ce,ge]),ze(()=>{if(!c||U||!H||b||!X.current)return;const ue=H.nodesRef.current,ye=ue.find(Oe=>Oe.id===V)?.context?.elements.floating,Ge=Gn(xt(P??ye??null)),Re=ue.some(Oe=>Oe.context&&We(Oe.context.elements.floating,Ge));ye&&!Re&&K.current&&ye.focus({preventScroll:!0})},[c,U,P,H,V,b]),ze(()=>{Z.current=z,X.current=!!U}),ze(()=>{z||(G.current=null,F.current=_)},[z,_]);const we=o!=null,Be=Ue(ue=>{if(!le.current)return;const ye=a.current.indexOf(ue.currentTarget);ye!==-1&&(Y.current!==ye||o!==ye)&&(Y.current=ye,I(ue))}),Ve=Ue(()=>w??H?.nodesRef.current.find(ue=>ue.id===V)?.context?.dataRef?.current.orientation),Se=Ue(()=>af(a,re.current)),Te=Ue(ue=>{if(K.current=!1,te.current=!0,ue.which===229||!le.current&&ue.currentTarget===$.current)return;if(g&&Oz(ue.key,y,h,T)){Od(ue.key,Ve())||ia(ue),O.setOpen(!1,st(kx,ue.nativeEvent)),Ft(P)&&(b?H?.events.emit("virtualfocus",P):P.focus());return}const ye=Y.current,Ge=af(a,k),Re=Cx(a,k);if(L||(ue.key==="Home"&&(ia(ue),Y.current=Ge,I(ue)),ue.key==="End"&&(ia(ue),Y.current=Re,I(ue))),A!=null){const Oe=A(ue,Y.current,a,y,m,h,k,Ge,Re);if(Oe!=null&&(Y.current=Oe,I(ue)),y==="both")return}if(Od(ue.key,y)){if(ia(ue),z&&!b&&Gn(ue.currentTarget.ownerDocument)===ue.currentTarget){Y.current=ph(ue.key,y,h)?Ge:Re,I(ue);return}ph(ue.key,y,h)?m?ye>=Re?p&&ye!==a.current.length?Y.current=-1:(te.current=!1,Y.current=Ge):Y.current=Qa(a.current,{startingIndex:ye,disabledIndices:k}):Y.current=Math.min(Re,Qa(a.current,{startingIndex:ye,disabledIndices:k})):m?ye<=Ge?p&&ye!==-1?Y.current=a.current.length:(te.current=!1,Y.current=Re):Y.current=Qa(a.current,{startingIndex:ye,decrement:!0,disabledIndices:k}):Y.current=Math.max(Ge,Qa(a.current,{startingIndex:ye,decrement:!0,disabledIndices:k})),Oc(a.current,Y.current)&&(Y.current=-1),I(ue)}}),je=x.useMemo(()=>({onFocus(ye){te.current=!0,Be(ye)},onClick:({currentTarget:ye})=>ye.focus({preventScroll:!0}),onMouseMove(ye){te.current=!0,fe.current=!1,j&&Be(ye)},onPointerLeave(ye){if(!le.current||!K.current||ye.pointerType==="touch")return;te.current=!0;const Ge=ye.relatedTarget;if(!(!j||a.current.includes(Ge))&&Me.current&&(ee.current?.(),ee.current=null,Y.current=-1,I(ye),!b)){const Re=$.current,Oe=Gn(xt(Re));Re&&We(Re,Oe)&&Re.focus({preventScroll:!0})}}}),[Be,le,$,j,a,I,Me,b]),Ee=x.useMemo(()=>b&&z&&we&&{"aria-activedescendant":`${S}-${o}`},[b,z,we,S,o]),De=x.useMemo(()=>({"aria-orientation":y==="both"?void 0:y,...L?{}:Ee,onKeyDown(ue){if(ue.key==="Tab"&&ue.shiftKey&&z&&!b){const ye=Vn(ue.nativeEvent);if(ye&&!We($.current,ye))return;ia(ue),O.setOpen(!1,st(To,ue.nativeEvent)),Ft(P)&&P.focus();return}Te(ue)},onPointerMove(){K.current=!0}}),[Ee,Te,$,y,L,O,z,b,P]),Le=x.useMemo(()=>{function ue(Re){O.setOpen(!0,st(kx,Re.nativeEvent,Re.currentTarget))}function ye(Re){_==="auto"&&Rb(Re.nativeEvent)&&(F.current=!b)}function Ge(Re){F.current=_,_==="auto"&&l2(Re.nativeEvent)&&(F.current=!0)}return{onKeyDown(Re){const Oe=O.select("open");K.current=!1;const tt=Re.key.startsWith("Arrow"),ot=Mz(Re.key,Ve(),h),vt=Od(Re.key,y),Mt=(g?ot:vt)||Re.key==="Enter"||Re.key.trim()==="";if(b&&Oe)return Te(Re);if(!(!Oe&&!E&&tt)){if(Mt){const lt=Od(Re.key,Ve());G.current=g&&lt?null:Re.key}if(g){ot&&(ia(Re),Oe?(Y.current=Se(),I(Re)):ue(Re));return}vt&&(me.current!=null&&(Y.current=me.current),ia(Re),!Oe&&E?ue(Re):Te(Re),Oe&&I(Re))}},onFocus(Re){O.select("open")&&!b&&(Y.current=-1,I(Re))},onPointerDown:Ge,onPointerEnter:Ge,onMouseDown:ye,onClick:ye}},[Te,_,Se,g,I,O,E,y,Ve,h,me,b]),Ie=x.useMemo(()=>({...Ee,...Le}),[Ee,Le]);return x.useMemo(()=>c?{reference:Ie,floating:De,item:je,trigger:Le}:{},[c,Ie,De,Le,je])}function xC(e,t){const{listRef:a,elementsRef:o,activeIndex:l,onMatch:c,disabledIndices:d,onTyping:p,enabled:m=!0,resetMs:g=750,selectedIndex:h=null}=t,b="rootStore"in e?e.rootStore:e,_=b.useState("open"),j=Nn(),E=x.useRef(""),k=x.useRef(h??l??-1),y=x.useRef(null),w=Ue(R=>{function A($){const V=o?.current[$];return!V||up(V)}function T($){return A($)?d==null||!wf(er,$,d):!1}function O($,V,H=0){if($.length===0)return-1;const F=(H%$.length+$.length)%$.length,Y=V.toLowerCase();for(let G=0;G<$.length;G+=1){const K=(F+G)%$.length;if(!(!$[K]?.toLowerCase().startsWith(Y)||!T(K)))return K}return-1}const z=a.current;if(E.current.length>0&&R.key===" "&&(ia(R),p?.(!0)),E.current.length>0&&E.current[0]!==" "&&O(z,E.current)===-1&&R.key!==" "&&p?.(!1),z==null||R.key.length!==1||R.ctrlKey||R.metaKey||R.altKey)return;_&&R.key!==" "&&(ia(R),p?.(!0));const U=E.current==="";U&&(k.current=h??l??-1),z.every(($,V)=>$&&T(V)?$[0]?.toLowerCase()!==$[1]?.toLowerCase():!0)&&E.current===R.key&&(E.current="",k.current=y.current),E.current+=R.key,j.start(g,()=>{E.current="",k.current=y.current,p?.(!1)});const D=((U?h??l??-1:k.current)??0)+1,L=O(z,E.current,D);L!==-1?(c?.(L),y.current=L):R.key!==" "&&(E.current="",p?.(!1))}),S=Ue(R=>{const A=R.relatedTarget,T=b.select("domReferenceElement"),O=b.select("floatingElement");We(T,A)||We(O,A)||(j.clear(),E.current="",k.current=y.current,p?.(!1))});ze(()=>{!_&&h!==null||(j.clear(),y.current=null,E.current!==""&&(E.current=""))},[_,h,j]),ze(()=>{_&&E.current===""&&(k.current=h??l??-1)},[_,h,l]);const N=x.useMemo(()=>({onKeyDown:w,onBlur:S}),[w,S]);return x.useMemo(()=>m?{reference:N,floating:N}:{},[m,N])}const tk=.1,zz=tk*tk,Vt=.5;function zd(e,t,a,o,l,c){return o>=t!=c>=t&&e<=(l-a)*(t-o)/(c-o)+a}function Dd(e,t,a,o,l,c,d,p,m,g){let h=!1;return zd(e,t,a,o,l,c)&&(h=!h),zd(e,t,l,c,d,p)&&(h=!h),zd(e,t,d,p,m,g)&&(h=!h),zd(e,t,m,g,a,o)&&(h=!h),h}function Dz(e,t,a){return e>=a.x&&e<=a.x+a.width&&t>=a.y&&t<=a.y+a.height}function Pd(e,t,a,o,l,c){const d=Math.min(a,l),p=Math.max(a,l),m=Math.min(o,c),g=Math.max(o,c);return e>=d&&e<=p&&t>=m&&t<=g}function bC(e={}){const{blockPointerEvents:t=!1}=e,a=new Ws,o=({x:l,y:c,placement:d,elements:p,onClose:m,nodeId:g,tree:h})=>{const b=d?.split("-")[0];let _=!1,j=null,E=null,k=typeof performance<"u"?performance.now():0;function y(S,N){const R=performance.now(),A=R-k;if(j===null||E===null||A===0)return j=S,E=N,k=R,!1;const T=S-j,O=N-E,z=T*T+O*O,U=A*A*zz;return j=S,E=N,k=R,z<U}function w(){a.clear(),m()}return function(N){a.clear();const R=p.domReference,A=p.floating;if(!R||!A||b==null||l==null||c==null)return;const{clientX:T,clientY:O}=N,z=Vn(N),U=N.type==="mouseleave",P=We(A,z),B=We(R,z);if(P&&(_=!0,!U))return;if(B&&(_=!1,!U)){_=!0;return}if(U&&bt(N.relatedTarget)&&We(A,N.relatedTarget))return;function D(){return!!(h&&Hr(h.nodesRef.current,g).length>0)}function L(){D()||w()}if(D())return;const $=R.getBoundingClientRect(),V=A.getBoundingClientRect(),H=l>V.right-V.width/2,F=c>V.bottom-V.height/2,Y=V.width>$.width,G=V.height>$.height,K=(Y?$:V).left,I=(Y?$:V).right,X=(G?$:V).top,Z=(G?$:V).bottom;if(b==="top"&&c>=$.bottom-1||b==="bottom"&&c<=$.top+1||b==="left"&&l>=$.right-1||b==="right"&&l<=$.left+1){L();return}let te=!1;switch(b){case"top":te=Pd(T,O,K,$.top+1,I,V.bottom-1);break;case"bottom":te=Pd(T,O,K,V.top+1,I,$.bottom-1);break;case"left":te=Pd(T,O,V.right-1,Z,$.left+1,X);break;case"right":te=Pd(T,O,$.right-1,Z,V.left+1,X);break}if(te)return;if(_&&!Dz(T,O,$)){L();return}if(!U&&y(T,O)){L();return}let fe=!1;switch(b){case"top":{const ee=Y?Vt/2:Vt*4,re=Y||H?l+ee:l-ee,le=Y?l-ee:H?l+ee:l-ee,me=c+Vt+1,Me=H||Y?V.bottom-Vt:V.top,de=H?Y?V.bottom-Vt:V.top:V.bottom-Vt;fe=Dd(T,O,re,me,le,me,V.left,Me,V.right,de);break}case"bottom":{const ee=Y?Vt/2:Vt*4,re=Y||H?l+ee:l-ee,le=Y?l-ee:H?l+ee:l-ee,me=c-Vt,Me=H||Y?V.top+Vt:V.bottom,de=H?Y?V.top+Vt:V.bottom:V.top+Vt;fe=Dd(T,O,re,me,le,me,V.left,Me,V.right,de);break}case"left":{const ee=G?Vt/2:Vt*4,re=G||F?c+ee:c-ee,le=G?c-ee:F?c+ee:c-ee,me=l+Vt+1,Me=F||G?V.right-Vt:V.left,de=F?G?V.right-Vt:V.left:V.right-Vt;fe=Dd(T,O,Me,V.top,de,V.bottom,me,re,me,le);break}case"right":{const ee=G?Vt/2:Vt*4,re=G||F?c+ee:c-ee,le=G?c-ee:F?c+ee:c-ee,me=l-Vt,Me=F||G?V.left+Vt:V.right,de=F?G?V.left+Vt:V.right:V.left+Vt;fe=Dd(T,O,me,re,me,le,Me,V.top,de,V.bottom);break}}fe?_||a.start(40,L):L()}};return o.__options={...e,blockPointerEvents:t},o}const Pz={...s_,disabled:Ae(e=>e.disabled),instantType:Ae(e=>e.instantType),isInstantPhase:Ae(e=>e.isInstantPhase),trackCursorAxis:Ae(e=>e.trackCursorAxis),disableHoverablePopup:Ae(e=>e.disableHoverablePopup),lastOpenChangeReason:Ae(e=>e.openChangeReason),closeOnClick:Ae(e=>e.closeOnClick),closeDelay:Ae(e=>e.closeDelay),hasViewport:Ae(e=>e.hasViewport)};class o_ extends pp{constructor(t,a,o=!1){const l=new iu,c={...Lz(),...t};c.floatingRootContext=cC(l,a,o),super(c,{popupRef:x.createRef(),onOpenChange:void 0,onOpenChangeComplete:void 0,triggerElements:l},Pz)}setOpen=(t,a)=>{Sz(this,t,a,{extraState:{openChangeReason:a.reason}})};cancelPendingOpen(t){this.state.floatingRootContext.dispatchOpenChange(!1,st(pi,t))}static useStore(t,a){return rC(t,(l,c)=>new o_(a,l,c)).store}}function Lz(){return{...t_(),disabled:!1,instantType:void 0,isInstantPhase:!1,trackCursorAxis:"none",disableHoverablePopup:!1,openChangeReason:null,closeOnClick:!0,closeDelay:0,hasViewport:!1}}const Iz=Sb(function(t){const{disabled:a=!1,defaultOpen:o=!1,open:l,disableHoverablePopup:c=!1,trackCursorAxis:d="none",actionsRef:p,onOpenChange:m,onOpenChangeComplete:g,handle:h,triggerId:b,defaultTriggerId:_=null,children:j}=t,E=o_.useStore(h?.store,{open:o,openProp:l,activeTriggerId:_,triggerIdProp:b});lC(E,l,o,_),E.useControlledProp("openProp",l),E.useControlledProp("triggerIdProp",b),E.useContextCallback("onOpenChange",m),E.useContextCallback("onOpenChangeComplete",g);const k=E.useState("open"),y=!a&&k,w=E.useState("activeTriggerId"),S=E.useState("mounted"),N=E.useState("payload");E.useSyncedValues({trackCursorAxis:d,disableHoverablePopup:c}),E.useSyncedValue("disabled",a),Zb(E,{closeOnActiveTriggerUnmount:!0});const{forceUnmount:R,transitionStatus:A}=Jb(y,E),T=E.useState("isInstantPhase"),O=E.useState("instantType"),z=E.useState("lastOpenChangeReason"),U=x.useRef(null);ze(()=>{k&&a&&E.setOpen(!1,st(p2))},[k,a,E]),ze(()=>{A==="ending"&&z===va||A!=="ending"&&T?(O!=="delay"&&(U.current=O),E.set("instantType","delay")):U.current!==null&&(E.set("instantType",U.current),U.current=null)},[A,T,z,O,E]),ze(()=>{y&&w==null&&E.set("payload",void 0)},[E,w,y]);const P=x.useCallback(()=>{E.setOpen(!1,st(zb))},[E]);x.useImperativeHandle(p,()=>({unmount:R,close:P}),[R,P]);const B=y||S||!a&&d!=="none";return s.jsxs(o2.Provider,{value:E,children:[B&&s.jsx(Bz,{store:E,disabled:a,trackCursorAxis:d}),typeof j=="function"?j({payload:N}):j]})});function Bz({store:e,disabled:t,trackCursorAxis:a}){const o=e.useState("floatingRootContext"),l=dp(o,{enabled:!t,referencePress:()=>e.select("closeOnClick")}),c=jO(o,{enabled:!t&&a!=="none",axis:a==="none"?void 0:a}),d=x.useMemo(()=>Kn(c.reference,l.reference),[c.reference,l.reference]),p=x.useMemo(()=>Kn(c.trigger,l.trigger),[c.trigger,l.trigger]),m=x.useMemo(()=>Kn(gp,c.floating,l.floating),[c.floating,l.floating]);return e_(e,{activeTriggerProps:d,inactiveTriggerProps:p,popupProps:m}),null}let Co=(function(e){return e.open="data-open",e.closed="data-closed",e[e.startingStyle=Oo.startingStyle]="startingStyle",e[e.endingStyle=Oo.endingStyle]="endingStyle",e.anchorHidden="data-anchor-hidden",e.side="data-side",e.align="data-align",e})({}),Af=(function(e){return e.popupOpen="data-popup-open",e.pressed="data-pressed",e})({});const Uz={[Af.popupOpen]:""},$z={[Af.popupOpen]:"",[Af.pressed]:""},Hz={[Co.open]:""},Vz={[Co.closed]:""},qz={[Co.anchorHidden]:""},_C={open(e){return e?Uz:null}},Tx={open(e){return e?$z:null}},Ho={open(e){return e?Hz:Vz},anchorHidden(e){return e?qz:null}};function ta(e){return Ao(e,"base-ui")}const vC=x.createContext(void 0);function Fz(){return x.useContext(vC)}let Gz=(function(e){return e[e.popupOpen=Af.popupOpen]="popupOpen",e.triggerDisabled="data-trigger-disabled",e})({});const Yz=600,yC="data-base-ui-tooltip-trigger";function nk(e){if("composedPath"in e){const a=e.composedPath();for(let o=0;o<a.length;o+=1){const l=a[o];if(bt(l))return l}}const t=e.target;return bt(t)?t:null}function Kz(e){let t=e;for(;t;){if(t.hasAttribute(yC))return t;const a=t.parentElement;if(a){t=a;continue}const o=t.getRootNode();t="host"in o&&bt(o.host)?o.host:null}return null}const Xz=r2(function(t,a){const{render:o,className:l,style:c,handle:d,payload:p,disabled:m,delay:g,closeOnClick:h=!0,closeDelay:b,id:_,...j}=t,E=ou(!0),k=d?.store??E;if(!k)throw new Error(ln(82));const y=ta(_),w=k.useState("isTriggerActive",y),S=k.useState("isOpenedByTrigger",y),N=k.useState("floatingRootContext"),R=x.useRef(null),A=g??Yz,T=b??0,{registerTrigger:O,isMountedByThisTrigger:z}=iC(y,R,k,{payload:p,closeOnClick:h,closeDelay:T}),U=Fz(),{delayRef:P,isInstantPhase:B,hasProvider:D}=j4(N,{open:S}),L=r_(N);k.useSyncedValue("isInstantPhase",B);const $=k.useState("disabled"),V=m??$,H=pn(V),F=k.useState("trackCursorAxis"),Y=k.useState("disableHoverablePopup"),G=x.useRef(!1),K=Nn(),I=x.useRef(void 0);function X(){const ge=U?.delay,Ce=typeof P.current=="object"?P.current.open:void 0;let we=A;return D&&(Ce!==0?we=g??ge??A:we=0),we}function Z(ge){const Ce=R.current;if(!Ce||!ge)return!1;const we=Kz(ge);return we!==null&&we!==Ce&&We(Ce,we)}function te(ge){const Ce=Z(ge);return G.current=Ce,Ce&&(L.openChangeTimeout.clear(),L.restTimeout.clear(),L.restTimeoutPending=!1,K.clear()),Ce}const fe=gC(N,{enabled:!V,mouseOnly:!0,move:!1,handleClose:!Y&&F!=="both"?bC():null,restMs:X,delay(){const ge=typeof P.current=="object"?P.current.close:void 0;let Ce=T;return b==null&&D&&(Ce=ge),{close:Ce}},triggerElementRef:R,isActiveTrigger:w,isClosing:()=>k.select("transitionStatus")==="ending",shouldOpen(){return!G.current}}),ee=fC(N,{enabled:!V}).reference,re=ge=>{const Ce=G.current,we=nk(ge),Be=te(we),Ve=R.current,Se=Ve&&we&&We(Ve,we);if(Be&&k.select("open")&&k.select("lastOpenChangeReason")===Mn){k.setOpen(!1,st(Mn,ge));return}if(Ce&&!Be&&Se&&!H.current&&!k.select("open")&&Ve&&Ro(I.current)){const Te=()=>{!G.current&&!H.current&&!k.select("open")&&k.setOpen(!0,st(Mn,ge,Ve))},je=X();je===0?(K.clear(),Te()):K.start(je,Te)}},le=k.useState("triggerProps",z);return Et("button",t,{state:{open:S},ref:[a,O,R],props:[fe,ee,z||F!=="none"?le:void 0,{onMouseOver(ge){re(ge.nativeEvent)},onFocus(ge){Z(nk(ge.nativeEvent))&&ge.preventBaseUIHandler()},onMouseLeave(){G.current=!1,K.clear(),I.current=void 0},onPointerEnter(ge){I.current=ge.pointerType},onPointerDown(ge){I.current=ge.pointerType,k.set("closeOnClick",h),h&&!k.select("open")&&k.cancelPendingOpen(ge.nativeEvent)},onClick(ge){h&&!k.select("open")&&k.cancelPendingOpen(ge.nativeEvent)},id:y,[Gz.triggerDisabled]:V?"":void 0,[yC]:V?void 0:""},j],stateAttributesMapping:_C})}),jC=x.createContext(void 0);function Qz(){const e=x.useContext(jC);if(e===void 0)throw new Error(ln(70));return e}const Wz=x.forwardRef(function(t,a){const{children:o,container:l,className:c,render:d,style:p,...m}=t,{portalNode:g,portalSubtree:h}=U2({container:l,ref:a,componentProps:t,elementProps:m});return!h&&!g?null:s.jsxs(x.Fragment,{children:[h,g&&Hs.createPortal(o,g)]})}),Zz=x.forwardRef(function(t,a){const{keepMounted:o=!1,...l}=t;return ou().useState("mounted")||o?s.jsx(jC.Provider,{value:o,children:s.jsx(Wz,{ref:a,...l})}):null}),kC=x.createContext(void 0);function wC(){const e=x.useContext(kC);if(e===void 0)throw new Error(ln(71));return e}const Jz=x.createContext(void 0);function xp(){return x.useContext(Jz)?.direction??"ltr"}const eD=e=>({name:"arrow",options:e,async fn(t){const{x:a,y:o,placement:l,rects:c,platform:d,elements:p,middlewareData:m}=t,{element:g,padding:h=0,offsetParent:b="real"}=nr(e,t)||{};if(g==null)return{};const _=_2(h),j={x:a,y:o},E=Bb(l),k=Ib(E),y=await d.getDimensions(g),w=E==="y",S=w?"top":"left",N=w?"bottom":"right",R=w?"clientHeight":"clientWidth",A=c.reference[k]+c.reference[E]-j[E]-c.floating[k],T=j[E]-c.reference[E],O=b==="real"?await d.getOffsetParent?.(g):p.floating;let z=p.floating[R]||c.floating[k];(!z||!await d.isElement?.(O))&&(z=p.floating[R]||c.floating[k]);const U=A/2-T/2,P=z/2-y[k]/2-1,B=Math.min(_[S],P),D=Math.min(_[N],P),L=B,$=z-y[k]-D,V=z/2-y[k]/2+U,H=wx(L,V,$),F=!m.arrow&&Yr(l)!=null&&V!==H&&c.reference[k]/2-(V<L?B:D)-y[k]/2<0,Y=F?V<L?V-L:V-$:0;return{[E]:j[E]+Y,data:{[E]:H,centerOffset:V-H-Y,...F&&{alignmentOffset:Y}},reset:F}}}),tD=(e,t)=>({...eD(e),options:[e,t]}),nD=uz().fn,sD={name:"hide",async fn(e){const{width:t,height:a,x:o,y:l}=e.rects.reference,c=t===0&&a===0&&o===0&&l===0;return{data:{referenceHidden:(await nD(e)).data?.referenceHidden||c}}}},lf={sideX:"left",sideY:"top"},SC={name:"adaptiveOrigin",async fn(e){const{x:t,y:a,rects:{floating:o},elements:{floating:l},platform:c,strategy:d,placement:p}=e,m=Wt(l),g=m.getComputedStyle(l);if(!(g.transitionDuration!=="0s"&&g.transitionDuration!==""))return{x:t,y:a,data:lf};const b=await c.getOffsetParent?.(l);let _={width:0,height:0};if(d==="fixed"&&m?.visualViewport)_={width:m.visualViewport.width,height:m.visualViewport.height};else if(b===m){const S=xt(l);_={width:S.documentElement.clientWidth,height:S.documentElement.clientHeight}}else await c.isElement?.(b)&&(_=await c.getDimensions(b));const j=fs(p);let E=t,k=a;j==="left"&&(E=_.width-(t+o.width)),j==="top"&&(k=_.height-(a+o.height));const y=j==="left"?"right":lf.sideX,w=j==="top"?"bottom":lf.sideY;return{x:E,y:k,data:{sideX:y,sideY:w}}}};function CC(e,t,a){const o=e==="inline-start"||e==="inline-end";return{top:"top",right:o?a?"inline-start":"inline-end":"right",bottom:"bottom",left:o?a?"inline-end":"inline-start":"left"}[t]}function sk(e,t,a){const{rects:o,placement:l}=e;return{side:CC(t,fs(l),a),align:Yr(l)||"center",anchor:{width:o.reference.width,height:o.reference.height},positioner:{width:o.floating.width,height:o.floating.height}}}function l_(e){const{anchor:t,positionMethod:a="absolute",side:o="bottom",sideOffset:l=0,align:c="center",alignOffset:d=0,collisionBoundary:p,collisionPadding:m=5,sticky:g=!1,arrowPadding:h=5,disableAnchorTracking:b=!1,inline:_,keepMounted:j=!1,floatingRootContext:E,mounted:k,collisionAvoidance:y,shiftCrossAxis:w=!1,nodeId:S,adaptiveOrigin:N,lazyFlip:R=!1,externalTree:A}=e,[T,O]=x.useState(null);!k&&T!==null&&O(null);const z=y.side||"flip",U=y.align||"flip",P=y.fallbackAxisSide||"end",B=typeof t=="function"?t:void 0,D=Ue(B),L=B?D:t,$=pn(t),V=pn(k),F=xp()==="rtl",Y=T||{top:"top",right:"right",bottom:"bottom",left:"left","inline-end":F?"left":"right","inline-start":F?"right":"left"}[o],G=c==="center"?Y:`${Y}-${c}`;let K=m;const I=1,X=o==="bottom"?I:0,Z=o==="top"?I:0,te=o==="right"?I:0,fe=o==="left"?I:0;typeof K=="number"?K={top:K+X,right:K+fe,bottom:K+Z,left:K+te}:K&&(K={top:(K.top||0)+X,right:(K.right||0)+fe,bottom:(K.bottom||0)+Z,left:(K.left||0)+te});const ee={boundary:p==="clipping-ancestors"?"clippingAncestors":p,padding:K},re=x.useRef(null),le=pn(l),me=pn(d),Me=typeof l!="function"?l:0,de=typeof d!="function"?d:0,ge=[];_&&ge.push(_),ge.push(rz(Qe=>{const mt=sk(Qe,o,F),Ot=typeof le.current=="function"?le.current(mt):le.current,Zt=typeof me.current=="function"?me.current(mt):me.current;return{mainAxis:Ot,crossAxis:Zt,alignmentAxis:Zt}},[Me,de,F,o]));const Ce=U==="none"&&z!=="shift",we=!Ce&&(g||w||z==="shift"),Be=z==="none"?null:iz({...ee,padding:{top:K.top+I,right:K.right+I,bottom:K.bottom+I,left:K.left+I},mainAxis:!w&&z==="flip",crossAxis:U==="flip"?"alignment":!1,fallbackAxisSideDirection:P}),Ve=Ce?null:oz(Qe=>{const mt=xt(Qe.elements.floating).documentElement;return{...ee,rootBoundary:w?{x:0,y:0,width:mt.clientWidth,height:mt.clientHeight}:void 0,mainAxis:U!=="none",crossAxis:we,limiter:g||w?void 0:lz(Ot=>{if(!re.current)return{};const{width:Zt,height:Qt}=re.current.getBoundingClientRect(),Jt=Bs(fs(Ot.placement)),mn=Jt==="y"?Zt:Qt,as=Jt==="y"?K.left+K.right:K.top+K.bottom;return{offset:mn/2+as/2}})}},[ee,g,w,K,U]);z==="shift"||U==="shift"||c==="center"?ge.push(Ve,Be):ge.push(Be,Ve),ge.push(cz({...ee,apply({elements:{floating:Qe},availableWidth:mt,availableHeight:Ot,rects:Zt}){if(!V.current)return;const Qt=Qe.style;Qt.setProperty("--available-width",`${mt}px`),Qt.setProperty("--available-height",`${Ot}px`);const Jt=Wt(Qe).devicePixelRatio||1,{x:mn,y:as,width:ms,height:Ss}=Zt.reference,gn=(Math.round((mn+ms)*Jt)-Math.round(mn*Jt))/Jt,Cs=(Math.round((as+Ss)*Jt)-Math.round(as*Jt))/Jt;Qt.setProperty("--anchor-width",`${gn}px`),Qt.setProperty("--anchor-height",`${Cs}px`)}}),tD(Qe=>({element:re.current||xt(Qe.elements.floating).createElement("div"),padding:h,offsetParent:"floating"}),[h]),{name:"transformOrigin",fn(Qe){const{elements:mt,middlewareData:Ot,placement:Zt,rects:Qt,y:Jt}=Qe,mn=fs(Zt),as=Bs(mn),ms=re.current,Ss=Ot.arrow?.x||0,gn=Ot.arrow?.y||0,Cs=ms?.clientWidth||0,Sa=ms?.clientHeight||0,qs=Ss+Cs/2,Ca=gn+Sa/2,dt=Math.abs(Ot.shift?.y||0),Bt=Qt.reference.height/2,hn=typeof l=="function"?l(sk(Qe,o,F)):l,En=dt>hn,wn={top:`${qs}px calc(100% + ${hn}px)`,bottom:`${qs}px ${-hn}px`,left:`calc(100% + ${hn}px) ${Ca}px`,right:`${-hn}px ${Ca}px`}[mn],Yt=`${qs}px ${Qt.reference.y+Bt-Jt}px`;return mt.floating.style.setProperty("--transform-origin",we&&as==="y"&&En?Yt:wn),{}}},sD,N),ze(()=>{!k&&E&&E.update({referenceElement:null,floatingElement:null,domReferenceElement:null,positionReference:null})},[k,E]);const Se=x.useMemo(()=>({elementResize:!b&&typeof ResizeObserver<"u",layoutShift:!b&&typeof IntersectionObserver<"u"}),[b]),{refs:Te,elements:je,x:Ee,y:De,middlewareData:Le,update:Ie,placement:ue,context:ye,isPositioned:Ge,floatingStyles:Re}=Rz({rootContext:E,open:j?k:void 0,placement:G,middleware:ge,strategy:a,whileElementsMounted:j?void 0:(...Qe)=>Kj(...Qe,Se),nodeId:S,externalTree:A}),{sideX:Oe,sideY:tt}=Le.adaptiveOrigin||lf,ot=Ge?a:"fixed",vt=x.useMemo(()=>{const Qe=N?{position:ot,[Oe]:Ee,[tt]:De}:{position:ot,...Re};return Ge||(Qe.opacity=0),Qe},[N,ot,Oe,Ee,tt,De,Re,Ge]),Mt=x.useRef(null);ze(()=>{if(!k)return;const Qe=$.current,mt=typeof Qe=="function"?Qe():Qe,Zt=(ak(mt)?mt.current:mt)||null||null;Zt!==Mt.current&&(Te.setPositionReference(Zt),Mt.current=Zt)},[k,Te,L,$]),x.useEffect(()=>{if(!k)return;const Qe=$.current;typeof Qe!="function"&&ak(Qe)&&Qe.current!==Mt.current&&(Te.setPositionReference(Qe.current),Mt.current=Qe.current)},[k,Te,L,$]),x.useEffect(()=>{if(j&&k&&je.reference&&je.floating)return Kj(je.reference,je.floating,Ie,Se)},[j,k,je,Ie,Se]);const lt=fs(ue),Rt=CC(o,lt,F),_e=Yr(ue)||"center",Pe=!!Le.hide?.referenceHidden;ze(()=>{R&&k&&Ge&&O(lt)},[R,k,Ge,lt]);const Xe=x.useMemo(()=>({position:"absolute",top:Le.arrow?.y,left:Le.arrow?.x}),[Le.arrow]),it=Le.arrow?.centerOffset!==0;return x.useMemo(()=>({positionerStyles:vt,arrowStyles:Xe,arrowRef:re,arrowUncentered:it,side:Rt,align:_e,physicalSide:lt,anchorHidden:Pe,refs:Te,context:ye,isPositioned:Ge,update:Ie}),[vt,Xe,re,it,Rt,_e,lt,Pe,Te,ye,Ge,Ie])}function ak(e){return e!=null&&"current"in e}function bp(e){return e==="starting"?pO:Xt}function i_(e,t,{styles:a,transitionStatus:o,props:l,refs:c,hidden:d,inert:p=!1}){const m={...a};return p&&(m.pointerEvents="none"),Et("div",e,{state:t,ref:c,props:[{role:"presentation",hidden:d,style:m},bp(o),l],stateAttributesMapping:Ho})}const aD=x.forwardRef(function(t,a){const{render:o,className:l,anchor:c,positionMethod:d="absolute",side:p="top",align:m="center",sideOffset:g=0,alignOffset:h=0,collisionBoundary:b="clipping-ancestors",collisionPadding:_=5,arrowPadding:j=5,sticky:E=!1,disableAnchorTracking:k=!1,collisionAvoidance:y=L2,style:w,...S}=t,N=ou(),R=Qz(),A=N.useState("open"),T=N.useState("mounted"),O=N.useState("trackCursorAxis"),z=N.useState("disableHoverablePopup"),U=N.useState("floatingRootContext"),P=N.useState("instantType"),B=N.useState("transitionStatus"),D=N.useState("hasViewport"),L=l_({anchor:c,positionMethod:d,floatingRootContext:U,mounted:T,side:p,sideOffset:g,align:m,alignOffset:h,collisionBoundary:b,collisionPadding:_,sticky:E,arrowPadding:j,disableAnchorTracking:k,keepMounted:R,collisionAvoidance:y,adaptiveOrigin:D?SC:void 0}),$=x.useMemo(()=>({open:A,side:L.side,align:L.align,anchorHidden:L.anchorHidden,instant:O!=="none"?"tracking-cursor":P}),[A,L.side,L.align,L.anchorHidden,O,P]),V=i_(t,$,{styles:L.positionerStyles,transitionStatus:B,props:S,refs:[a,N.useStateSetter("positionerElement")],hidden:!T,inert:!A||O==="both"||z});return s.jsx(kC.Provider,{value:L,children:V})}),rD={...Ho,...rr},oD=x.forwardRef(function(t,a){const{render:o,className:l,style:c,...d}=t,p=ou(),{side:m,align:g}=wC(),h=p.useState("open"),b=p.useState("instantType"),_=p.useState("transitionStatus"),j=p.useState("popupProps"),E=p.useState("floatingRootContext"),k=p.useState("disabled"),y=p.useState("closeDelay");ka({open:h,ref:p.context.popupRef,onComplete(){h&&p.context.onOpenChangeComplete?.(!0)}}),mC(E,{enabled:!k,closeDelay:y});const w=p.useStateSetter("popupElement");return Et("div",t,{state:{open:h,side:m,align:g,instant:b,transitionStatus:_},ref:[a,p.context.popupRef,w],props:[j,bp(_),d],stateAttributesMapping:rD})}),lD=x.forwardRef(function(t,a){const{render:o,className:l,style:c,...d}=t,p=ou(),{arrowRef:m,side:g,align:h,arrowUncentered:b,arrowStyles:_}=wC(),j=p.useState("open"),E=p.useState("instantType");return Et("div",t,{state:{open:j,side:g,align:h,uncentered:b,instant:E},ref:[a,m],props:[{style:_,"aria-hidden":!0},d],stateAttributesMapping:Ho})}),iD=function(t){const{delay:a,closeDelay:o,timeout:l=400}=t,c=x.useMemo(()=>({delay:a,closeDelay:o}),[a,o]),d=x.useMemo(()=>({open:a,close:o}),[a,o]);return s.jsx(vC.Provider,{value:c,children:s.jsx(y4,{delay:d,timeoutMs:l,children:t.children})})};function _p(e){return Hb(19)?e:e?"true":void 0}function cD(e){const[t,a]=x.useState({current:e,previous:null});return e!==t.current&&a({current:e,previous:t.current}),t.previous}function Ct(...e){return a2(qc(e))}function uD({delay:e=0,...t}){return s.jsx(iD,{"data-slot":"tooltip-provider",delay:e,...t})}function c_({...e}){return s.jsx(Iz,{"data-slot":"tooltip",...e})}function u_({...e}){return s.jsx(Xz,{"data-slot":"tooltip-trigger",...e})}function d_({className:e,side:t="top",sideOffset:a=4,align:o="center",alignOffset:l=0,children:c,...d}){return s.jsx(Zz,{children:s.jsx(aD,{align:o,alignOffset:l,side:t,sideOffset:a,className:"isolate z-50",children:s.jsxs(oD,{"data-slot":"tooltip-content",className:Ct("z-50 inline-flex w-fit max-w-xs origin-(--transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 data-[side=bottom]:slide-in-from-top-2 data-[side=inline-end]:slide-in-from-left-2 data-[side=inline-start]:slide-in-from-right-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...d,children:[c,s.jsx(lD,{className:"z-50 size-2.5 translate-y-[calc(-50%-2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground data-[side=bottom]:top-1 data-[side=inline-end]:top-1/2! data-[side=inline-end]:-left-1 data-[side=inline-end]:-translate-y-1/2 data-[side=inline-start]:top-1/2! data-[side=inline-start]:-right-1 data-[side=inline-start]:-translate-y-1/2 data-[side=left]:top-1/2! data-[side=left]:-right-1 data-[side=left]:-translate-y-1/2 data-[side=right]:top-1/2! data-[side=right]:-left-1 data-[side=right]:-translate-y-1/2 data-[side=top]:-bottom-2.5"})]})})})}function Al({label:e,active:t,onClick:a,isAdd:o,isSettings:l,isDefault:c,icon:d,title:p,testId:m}){const g=e.trim()||"·",{initials:h,subLabel:b}=NC(g),_=o||l?"indigo":EC(g),j=b&&!o&&!l&&!c;return s.jsxs(c_,{children:[s.jsx(u_,{render:s.jsxs("button",{type:"button",onClick:a,"data-testid":m,className:"group relative flex w-full cursor-pointer flex-col items-center gap-1",children:[s.jsx("span",{className:he("flex size-10 items-center justify-center rounded-xl text-sm font-bold transition-all",t&&"ring-2 ring-foreground ring-offset-2 ring-offset-card",o&&"border border-dashed border-muted-fg/50 bg-transparent text-muted-fg hover:bg-accent/60 hover:text-foreground",l&&"bg-muted text-muted-fg hover:bg-accent hover:text-foreground",c&&"overflow-hidden bg-muted",!o&&!l&&!c&&t&&mD(_),!o&&!l&&!c&&!t&&pD(_)),children:d??h}),j&&s.jsx("span",{className:"block max-w-[3.6rem] truncate text-[9px] leading-tight text-muted-fg group-hover:text-foreground",children:b})]})}),s.jsx(d_,{side:"right",children:p||e})]})}function NC(e){const t=e.trim().replace(/[_\-.]+/g," ").replace(/\s+/g," ");if(!t)return{initials:"·",subLabel:null};const a=t.split(" ");if(a.length>=2)return{initials:(a[0][0]+a[1][0]).toUpperCase(),subLabel:dD(t)};const o=a[0];return o.length<=4?{initials:o[0].toUpperCase(),subLabel:o}:{initials:o[0].toUpperCase(),subLabel:o.slice(0,4)+"…"}}function dD(e){return e.length>6?e.slice(0,5)+"…":e}function EC(e){let t=0;for(let a=0;a<e.length;a++)t=t*31+e.charCodeAt(a)|0;return hj[Math.abs(t)%hj.length]}const RC={sky:"bg-sky-500/15 text-sky-300 hover:bg-sky-500/25",violet:"bg-violet-500/15 text-violet-300 hover:bg-violet-500/25",emerald:"bg-emerald-500/15 text-emerald-300 hover:bg-emerald-500/25",amber:"bg-amber-500/15 text-amber-300 hover:bg-amber-500/25",rose:"bg-rose-500/15 text-rose-300 hover:bg-rose-500/25",indigo:"bg-indigo-500/15 text-indigo-300 hover:bg-indigo-500/25",teal:"bg-teal-500/15 text-teal-300 hover:bg-teal-500/25",fuchsia:"bg-fuchsia-500/15 text-fuchsia-300 hover:bg-fuchsia-500/25"},fD={sky:"bg-sky-500/30 text-sky-100",violet:"bg-violet-500/30 text-violet-100",emerald:"bg-emerald-500/30 text-emerald-100",amber:"bg-amber-500/30 text-amber-100",rose:"bg-rose-500/30 text-rose-100",indigo:"bg-indigo-500/30 text-indigo-100",teal:"bg-teal-500/30 text-teal-100",fuchsia:"bg-fuchsia-500/30 text-fuchsia-100"};function pD(e){return RC[e]}function mD(e){return fD[e]}function gD(e){const{initials:t}=NC(e);return{initials:t,idleClass:RC[EC(e)]}}function Ye({content:e,side:t="top",children:a}){return e?s.jsxs(c_,{children:[s.jsx(u_,{render:a}),s.jsx(d_,{side:t,children:e})]}):a}const TC=x.createContext(void 0);function f_(e){const t=x.useContext(TC);if(t===void 0&&!e)throw new Error(ln(33));return t}const AC=x.createContext(void 0);function Qr(e){const t=x.useContext(AC);if(t===void 0&&!e)throw new Error(ln(36));return t}const hD=x.createContext(void 0);function vp(e=!0){const t=x.useContext(hD);if(t===void 0&&!e)throw new Error(ln(25));return t}function ei({controlled:e,default:t,name:a,state:o="value"}){const{current:l}=x.useRef(e!==void 0),[c,d]=x.useState(t),p=l?e:c,m=x.useCallback(g=>{l||d(g)},[]);return[p,m]}const MC=x.createContext(void 0);function p_(e=!1){const t=x.useContext(MC);if(t===void 0&&!e)throw new Error(ln(16));return t}function xD(e){const{focusableWhenDisabled:t,disabled:a,composite:o=!1,tabIndex:l=0,isNativeButton:c}=e,d=o&&t!==!1,p=o&&t===!1;return{props:x.useMemo(()=>{const g={onKeyDown(h){a&&t&&h.key!=="Tab"&&h.preventDefault()}};return o||(g.tabIndex=l,!c&&a&&(g.tabIndex=t?l:-1)),(c&&(t||d)||!c&&a)&&(g["aria-disabled"]=a),c&&(!t||p)&&(g.disabled=a),g},[o,a,t,d,p,c,l])}}function Wr(e={}){const{disabled:t=!1,focusableWhenDisabled:a,tabIndex:o=0,native:l=!0,composite:c}=e,d=x.useRef(null),p=p_(!0),m=c??p!==void 0,{props:g}=xD({focusableWhenDisabled:a,disabled:t,composite:m,tabIndex:o,isNativeButton:l}),h=x.useCallback(()=>{const j=d.current;mh(j)&&m&&t&&g.disabled===void 0&&j.disabled&&(j.disabled=!1)},[t,g.disabled,m]);ze(h,[h]);const b=x.useCallback((j={})=>{const{onClick:E,onMouseDown:k,onKeyUp:y,onKeyDown:w,onPointerDown:S,...N}=j;return Kn({onClick(R){if(t){R.preventDefault();return}E?.(R)},onMouseDown(R){t||k?.(R)},onKeyDown(R){if(t||(Cf(R),w?.(R),R.baseUIHandlerPrevented))return;const A=R.target===R.currentTarget,T=R.currentTarget,O=mh(T),z=!l&&bD(T),U=A&&(l?O:!z),P=R.key==="Enter",B=R.key===" ",D=T.getAttribute("role"),L=D?.startsWith("menuitem")||D==="option"||D==="gridcell";if(A&&m&&B){if(R.defaultPrevented&&L)return;R.preventDefault(),z||l&&O?(T.click(),R.preventBaseUIHandler()):U&&(E?.(R),R.preventBaseUIHandler());return}U&&(!l&&(B||P)&&R.preventDefault(),!l&&P&&E?.(R))},onKeyUp(R){if(!t){if(Cf(R),y?.(R),R.target===R.currentTarget&&l&&m&&mh(R.currentTarget)&&R.key===" "){R.preventDefault();return}R.baseUIHandlerPrevented||R.target===R.currentTarget&&!l&&!m&&R.key===" "&&E?.(R)}},onPointerDown(R){if(t){R.preventDefault();return}S?.(R)}},l?{type:"button"}:{role:"button"},g,N)},[t,g,m,l]),_=Ue(j=>{d.current=j,h()});return{getButtonProps:b,buttonRef:_}}function mh(e){return Ft(e)&&e.tagName==="BUTTON"}function bD(e){return!!(e?.tagName==="A"&&e?.href)}function _D(e){const{closeOnClick:t,highlighted:a,id:o,nodeId:l,store:c,typingRef:d,itemRef:p,itemMetadata:m}=e,{events:g}=c.useState("floatingTreeRoot"),h=c.useState("open"),b=vp(!0),_=b!==void 0;return x.useMemo(()=>({id:o,role:"menuitem",tabIndex:h&&a?0:-1,onKeyDown(j){j.key===" "&&d?.current&&j.preventDefault()},onMouseMove(j){l&&g.emit("itemhover",{nodeId:l,target:j.currentTarget})},onClick(j){t&&g.emit("close",{domEvent:j,reason:$l})},onMouseUp(j){if(b){const E=b.initialCursorPointRef.current;if(b.initialCursorPointRef.current=null,_&&E&&Math.abs(j.clientX-E.x)<=1&&Math.abs(j.clientY-E.y)<=1||_&&!Nb&&j.button===2)return}p.current&&c.context.allowMouseUpTriggerRef.current&&(!_||j.button===2)&&(!m||m.type==="regular-item")&&p.current.click()}}),[t,a,o,g,l,h,c,d,p,b,_,m])}const OC={type:"regular-item"};function zC(e){const{closeOnClick:t,disabled:a=!1,highlighted:o,id:l,store:c,typingRef:d=c.context.typingRef,nativeButton:p,itemMetadata:m,nodeId:g}=e,h=c.useState("disabled"),b=a||h,_=x.useRef(null),{getButtonProps:j,buttonRef:E}=Wr({disabled:b,focusableWhenDisabled:!0,native:p,composite:!0}),k=_D({closeOnClick:t,highlighted:o,id:l,nodeId:g,store:c,typingRef:d,itemRef:_,itemMetadata:m}),y=x.useCallback(S=>Kn(k,{onMouseEnter(){m.type==="submenu-trigger"&&m.setActive()}},S,j),[k,j,m]),w=tr(_,E);return x.useMemo(()=>({getItemProps:y,itemRef:w}),[y,w])}const DC=x.createContext({register:()=>{},unregister:()=>{},subscribeMapChange:()=>()=>{},elementsRef:{current:[]},nextIndexRef:{current:0}});function vD(){return x.useContext(DC)}let PC=(function(e){return e[e.None=0]="None",e[e.GuessFromOrder=1]="GuessFromOrder",e})({});function cu(e={}){const{label:t,metadata:a,textRef:o,indexGuessBehavior:l,index:c}=e,{register:d,unregister:p,subscribeMapChange:m,elementsRef:g,labelsRef:h,nextIndexRef:b}=vD(),_=x.useRef(-1),[j,E]=x.useState(c??(l===PC.GuessFromOrder?()=>{if(_.current===-1){const w=b.current;b.current+=1,_.current=w}return _.current}:-1)),k=x.useRef(null),y=x.useCallback(w=>{if(k.current=w,j!==-1&&w!==null&&(g.current[j]=w,h)){const S=t!==void 0;h.current[j]=S?t:o?.current?.textContent??w.textContent}},[j,g,h,t,o]);return ze(()=>{if(c!=null)return;const w=k.current;if(w)return d(w,a),()=>{p(w)}},[c,d,p,a]),ze(()=>{if(c==null)return m(w=>{const S=k.current?w.get(k.current)?.index:null;S!=null&&E(S)})},[c,m,E]),{ref:y,index:j}}let rk=(function(e){return e.checked="data-checked",e.unchecked="data-unchecked",e.disabled="data-disabled",e.highlighted="data-highlighted",e})({});const LC={checked(e){return e?{[rk.checked]:""}:{[rk.unchecked]:""}},...rr},yD=x.createContext(void 0),jD=x.forwardRef(function(t,a){const{render:o,className:l,id:c,label:d,nativeButton:p=!1,disabled:m=!1,closeOnClick:g=!0,style:h,...b}=t,_=cu({label:d}),j=f_(!0),E=ta(c),{store:k}=Qr(),y=k.useState("isActive",_.index),w=k.useState("itemProps"),{getItemProps:S,itemRef:N}=zC({closeOnClick:g,disabled:m,highlighted:y,id:E,store:k,nativeButton:p,nodeId:j?.context.nodeId,itemMetadata:OC});return Et("div",t,{state:{disabled:m,highlighted:y},props:[w,b,S],ref:[N,a,_.ref]})}),kD=x.createContext(void 0);function IC(e){return x.useContext(kD)}const Dc="ArrowUp",Pc="ArrowDown",Mf="ArrowLeft",Of="ArrowRight",yp="Home",jp="End",BC=new Set([Mf,Of]),wD=new Set([Mf,Of,yp,jp]),UC=new Set([Dc,Pc]),SD=new Set([Dc,Pc,yp,jp]),$C=new Set([...BC,...UC]),kp=new Set([...$C,yp,jp]),CD="Shift",ND="Control",ED="Alt",RD="Meta",TD=new Set([CD,ND,ED,RD]);function AD(e){return Ft(e)&&e.tagName==="INPUT"}function ok(e){return!!(AD(e)&&e.selectionStart!=null||Ft(e)&&e.tagName==="TEXTAREA")}function lk(e,t,a,o){if(!e||!t||!t.scrollTo)return;let l=e.scrollLeft,c=e.scrollTop;const d=e.clientWidth<e.scrollWidth,p=e.clientHeight<e.scrollHeight;if(d&&o!=="vertical"){const m=ik(e,t,"left"),g=Ld(e),h=Ld(t);a==="ltr"&&(m+t.offsetWidth+h.scrollMarginRight>e.scrollLeft+e.clientWidth-g.scrollPaddingRight?l=m+t.offsetWidth+h.scrollMarginRight-e.clientWidth+g.scrollPaddingRight:m-h.scrollMarginLeft<e.scrollLeft+g.scrollPaddingLeft&&(l=m-h.scrollMarginLeft-g.scrollPaddingLeft)),a==="rtl"&&(m-h.scrollMarginRight<e.scrollLeft+g.scrollPaddingLeft?l=m-h.scrollMarginLeft-g.scrollPaddingLeft:m+t.offsetWidth+h.scrollMarginRight>e.scrollLeft+e.clientWidth-g.scrollPaddingRight&&(l=m+t.offsetWidth+h.scrollMarginRight-e.clientWidth+g.scrollPaddingRight))}if(p&&o!=="horizontal"){const m=ik(e,t,"top"),g=Ld(e),h=Ld(t);m-h.scrollMarginTop<e.scrollTop+g.scrollPaddingTop?c=m-h.scrollMarginTop-g.scrollPaddingTop:m+t.offsetHeight+h.scrollMarginBottom>e.scrollTop+e.clientHeight-g.scrollPaddingBottom&&(c=m+t.offsetHeight+h.scrollMarginBottom-e.clientHeight+g.scrollPaddingBottom)}e.scrollTo({left:l,top:c,behavior:"auto"})}function ik(e,t,a){const o=a==="left"?"offsetLeft":"offsetTop";let l=0;for(;t.offsetParent&&(l+=t[o],t.offsetParent!==e);)t=t.offsetParent;return l}function Ld(e){const t=getComputedStyle(e);return{scrollMarginTop:parseFloat(t.scrollMarginTop)||0,scrollMarginRight:parseFloat(t.scrollMarginRight)||0,scrollMarginBottom:parseFloat(t.scrollMarginBottom)||0,scrollMarginLeft:parseFloat(t.scrollMarginLeft)||0,scrollPaddingTop:parseFloat(t.scrollPaddingTop)||0,scrollPaddingRight:parseFloat(t.scrollPaddingRight)||0,scrollPaddingBottom:parseFloat(t.scrollPaddingBottom)||0,scrollPaddingLeft:parseFloat(t.scrollPaddingLeft)||0}}const MD={...Ho,...rr},OD=x.forwardRef(function(t,a){const{render:o,className:l,style:c,finalFocus:d,...p}=t,{store:m}=Qr(),{side:g,align:h}=f_(),b=IC()!=null,_=m.useState("open"),j=m.useState("transitionStatus"),E=m.useState("popupProps"),k=m.useState("mounted"),y=m.useState("instantType"),w=m.useState("activeTriggerElement"),S=m.useState("parent"),N=m.useState("lastOpenChangeReason"),R=m.useState("rootId"),A=m.useState("floatingRootContext"),T=m.useState("floatingTreeRoot"),O=m.useState("closeDelay"),z=m.useState("activeTriggerElement"),U=m.useState("hoverEnabled"),P=m.useState("disabled"),B=m.useState("openMethod"),D=S.type==="context-menu";ka({open:_,ref:m.context.popupRef,onComplete(){_&&m.context.onOpenChangeComplete?.(!0)}}),x.useEffect(()=>{function F(Y){m.setOpen(!1,st(Y.reason,Y.domEvent))}return T.events.on("close",F),()=>{T.events.off("close",F)}},[T.events,m]),mC(A,{enabled:U&&!P&&!D&&S.type!=="menubar",closeDelay:O});const L=x.useCallback(F=>{m.set("popupElement",F)},[m]),$={transitionStatus:j,side:g,align:h,open:_,nested:S.type==="menu",instant:y},V=Et("div",t,{state:$,ref:[a,m.context.popupRef,L],stateAttributesMapping:MD,props:[E,{onKeyDown(F){b&&kp.has(F.key)&&F.stopPropagation()}},bp(j),p,{"data-rootownerid":R}]});let H=S.type===void 0||D;return(w||S.type==="menubar"&&N!==ip)&&(H=!0),s.jsx(Kb,{context:A,openInteractionType:B,modal:D,disabled:!k,returnFocus:d===void 0?H:d,initialFocus:S.type!=="menu",restoreFocus:!0,externalTree:S.type!=="menubar"?T:void 0,previousFocusableElement:z,nextFocusableElement:S.type===void 0?m.context.triggerFocusTargetRef:void 0,beforeContentFocusGuardRef:S.type===void 0?m.context.beforeContentFocusGuardRef:void 0,children:V})}),HC=x.createContext(void 0);function zD(){const e=x.useContext(HC);if(e===void 0)throw new Error(ln(32));return e}const DD=x.forwardRef(function(t,a){const{keepMounted:o=!1,...l}=t,{store:c}=Qr();return c.useState("mounted")||o?s.jsx(HC.Provider,{value:o,children:s.jsx(Fb,{ref:a,...l})}):null});function wp(e){const{children:t,elementsRef:a,labelsRef:o,onMapChange:l}=e,c=Ue(l),d=x.useRef(0),p=es(LD).current,m=es(PD).current,[g,h]=x.useState(0),b=x.useRef(g),_=Ue((w,S)=>{m.set(w,S??null),b.current+=1,h(b.current)}),j=Ue(w=>{m.delete(w),b.current+=1,h(b.current)}),E=x.useMemo(()=>{const w=new Map;return Array.from(m.keys()).filter(N=>N.isConnected).sort(ID).forEach((N,R)=>{const A=m.get(N)??{};w.set(N,{...A,index:R})}),w},[m,g]);ze(()=>{if(typeof MutationObserver!="function"||E.size===0)return;const w=new MutationObserver(S=>{const N=new Set,R=A=>N.has(A)?N.delete(A):N.add(A);S.forEach(A=>{A.removedNodes.forEach(R),A.addedNodes.forEach(R)}),N.size===0&&(b.current+=1,h(b.current))});return E.forEach((S,N)=>{N.parentElement&&w.observe(N.parentElement,{childList:!0})}),()=>{w.disconnect()}},[E]),ze(()=>{b.current===g&&(a.current.length!==E.size&&(a.current.length=E.size),o&&o.current.length!==E.size&&(o.current.length=E.size),d.current=E.size),c(E)},[c,E,a,o,g]),ze(()=>()=>{a.current=[]},[a]),ze(()=>()=>{o&&(o.current=[])},[o]);const k=Ue(w=>(p.add(w),()=>{p.delete(w)}));ze(()=>{p.forEach(w=>w(E))},[p,E]);const y=x.useMemo(()=>({register:_,unregister:j,subscribeMapChange:k,elementsRef:a,labelsRef:o,nextIndexRef:d}),[_,j,k,a,o,d]);return s.jsx(DC.Provider,{value:y,children:t})}function PD(){return new Map}function LD(){return new Set}function ID(e,t){const a=e.compareDocumentPosition(t);return a&Node.DOCUMENT_POSITION_FOLLOWING||a&Node.DOCUMENT_POSITION_CONTAINED_BY?-1:a&Node.DOCUMENT_POSITION_PRECEDING||a&Node.DOCUMENT_POSITION_CONTAINS?1:0}const m_=x.forwardRef(function(t,a){const{cutout:o,...l}=t;let c;if(o){const d=o.getBoundingClientRect();c=`polygon(0% 0%,100% 0%,100% 100%,0% 100%,0% 0%,${d.left}px ${d.top}px,${d.left}px ${d.bottom}px,${d.right}px ${d.bottom}px,${d.right}px ${d.top}px,${d.left}px ${d.top}px)`}return s.jsx("div",{ref:a,role:"presentation","data-base-ui-inert":"",...l,style:{position:"fixed",inset:0,userSelect:"none",WebkitUserSelect:"none",clipPath:c}})});let ck={},uk={},dk="";function BD(e){if(typeof document>"u")return!1;const t=xt(e);return Wt(t).innerWidth-t.documentElement.clientWidth>0}function UD(e){if(!(typeof CSS<"u"&&CSS.supports&&CSS.supports("scrollbar-gutter","stable"))||typeof document>"u")return!1;const a=xt(e),o=a.documentElement,l=a.body,c=Gr(o)?o:l,d=c.style.overflowY,p=o.style.scrollbarGutter;o.style.scrollbarGutter="stable",c.style.overflowY="scroll";const m=c.offsetWidth;c.style.overflowY="hidden";const g=c.offsetWidth;return c.style.overflowY=d,o.style.scrollbarGutter=p,m===g}function $D(e){const t=xt(e),a=t.documentElement,o=t.body,l=Gr(a)?a:o,c={overflowY:l.style.overflowY,overflowX:l.style.overflowX};return Object.assign(l.style,{overflowY:"hidden",overflowX:"hidden"}),()=>{Object.assign(l.style,c)}}function HD(e){const t=xt(e),a=t.documentElement,o=t.body,l=Wt(a);let c=0,d=0,p=!1;const m=ua.create();if(Fr&&(l.visualViewport?.scale??1)!==1)return()=>{};function g(){const j=l.getComputedStyle(a),E=l.getComputedStyle(o),w=(j.scrollbarGutter||"").includes("both-edges")?"stable both-edges":"stable";c=a.scrollTop,d=a.scrollLeft,ck={scrollbarGutter:a.style.scrollbarGutter,overflowY:a.style.overflowY,overflowX:a.style.overflowX},dk=a.style.scrollBehavior,uk={position:o.style.position,height:o.style.height,width:o.style.width,boxSizing:o.style.boxSizing,overflowY:o.style.overflowY,overflowX:o.style.overflowX,scrollBehavior:o.style.scrollBehavior};const S=a.scrollHeight>a.clientHeight,N=a.scrollWidth>a.clientWidth,R=j.overflowY==="scroll"||E.overflowY==="scroll",A=j.overflowX==="scroll"||E.overflowX==="scroll",T=Math.max(0,l.innerWidth-o.clientWidth),O=Math.max(0,l.innerHeight-o.clientHeight),z=parseFloat(E.marginTop)+parseFloat(E.marginBottom),U=parseFloat(E.marginLeft)+parseFloat(E.marginRight),P=Gr(a)?a:o;if(p=UD(e),p){a.style.scrollbarGutter=w,P.style.overflowY="hidden",P.style.overflowX="hidden";return}Object.assign(a.style,{scrollbarGutter:w,overflowY:"hidden",overflowX:"hidden"}),(S||R)&&(a.style.overflowY="scroll"),(N||A)&&(a.style.overflowX="scroll"),Object.assign(o.style,{position:"relative",height:z||O?`calc(100dvh - ${z+O}px)`:"100dvh",width:U||T?`calc(100vw - ${U+T}px)`:"100vw",boxSizing:"border-box",overflow:"hidden",scrollBehavior:"unset"}),o.scrollTop=c,o.scrollLeft=d,a.setAttribute("data-base-ui-scroll-locked",""),a.style.scrollBehavior="unset"}function h(){Object.assign(a.style,ck),Object.assign(o.style,uk),p||(a.scrollTop=c,a.scrollLeft=d,a.removeAttribute("data-base-ui-scroll-locked"),a.style.scrollBehavior=dk)}function b(){h(),m.request(g)}g();const _=_t(l,"resize",b);return()=>{m.cancel(),h(),typeof l.removeEventListener=="function"&&_()}}class VD{lockCount=0;restore=null;timeoutLock=Ws.create();timeoutUnlock=Ws.create();acquire(t){return this.lockCount+=1,this.lockCount===1&&this.restore===null&&this.timeoutLock.start(0,()=>this.lock(t)),this.release}release=()=>{this.lockCount-=1,this.lockCount===0&&this.restore&&this.timeoutUnlock.start(0,this.unlock)};unlock=()=>{this.lockCount===0&&this.restore&&(this.restore?.(),this.restore=null)};lock(t){if(this.lockCount===0||this.restore!==null)return;const o=xt(t).documentElement,l=Wt(o).getComputedStyle(o).overflowY;if(l==="hidden"||l==="clip"){this.restore=An;return}const c=tp||!BD(t);this.restore=c?$D(t):HD(t)}}const qD=new VD;function VC(e=!0,t=null){ze(()=>{if(e)return qD.acquire(t)},[e,t])}const FD=20;function qC(e,t,a,o){const[l,c]=x.useState(!1);ze(()=>{if(!e||!t||a==null){c(!1);return}const d=xt(a).documentElement.clientWidth,p=a.offsetWidth;c(d>0&&p>0&&p>=d-FD)},[e,t,a]),VC(e&&(!t||l),o)}const GD=x.forwardRef(function(t,a){const{anchor:o,positionMethod:l="absolute",className:c,render:d,side:p,align:m,sideOffset:g=0,alignOffset:h=0,collisionBoundary:b="clipping-ancestors",collisionPadding:_=5,arrowPadding:j=5,sticky:E=!1,disableAnchorTracking:k=!1,collisionAvoidance:y=P2,style:w,...S}=t,{store:N}=Qr(),R=zD(),A=vp(!0),T=N.useState("parent"),O=N.useState("floatingRootContext"),z=N.useState("floatingTreeRoot"),U=N.useState("mounted"),P=N.useState("open"),B=N.useState("modal"),D=N.useState("openMethod"),L=N.useState("activeTriggerElement"),$=N.useState("transitionStatus"),V=N.useState("positionerElement"),H=N.useState("instantType"),F=N.useState("hasViewport"),Y=N.useState("lastOpenChangeReason"),G=N.useState("floatingNodeId"),K=N.useState("floatingParentNodeId"),I=O.useState("domReferenceElement"),X=x.useRef(null),Z=aC(V,!1,!1);let te=o,fe=g,ee=h,re=m,le=y;T.type==="context-menu"&&(te=o??T.context?.anchor,re=re??"start",!p&&re!=="center"&&(ee=t.alignOffset??2,fe=t.sideOffset??-5));let me=p,Me=re;T.type==="menu"?(me=me??"inline-end",Me=Me??"start",le=t.collisionAvoidance??L2):T.type==="menubar"&&(me=me??(T.context.orientation==="vertical"?"inline-end":"bottom"),Me=Me??"start");const de=T.type==="context-menu",ge=l_({anchor:te,floatingRootContext:O,positionMethod:A?"fixed":l,mounted:U,side:me,sideOffset:fe,align:Me,alignOffset:ee,arrowPadding:de?0:j,collisionBoundary:b,collisionPadding:_,sticky:E,nodeId:G,keepMounted:R,disableAnchorTracking:k,collisionAvoidance:le,shiftCrossAxis:de&&!("side"in le&&le.side==="flip"),externalTree:z,adaptiveOrigin:F?SC:void 0});x.useEffect(()=>{function Ee(De){De.open&&(De.parentNodeId===G&&N.set("hoverEnabled",!1),De.nodeId!==G&&De.parentNodeId===N.select("floatingParentNodeId")&&N.setOpen(!1,st(kc)))}return z.events.on("menuopenchange",Ee),()=>{z.events.off("menuopenchange",Ee)}},[N,z.events,G]),x.useEffect(()=>{if(N.select("floatingParentNodeId")==null)return;function Ee(De){if(De.open||De.nodeId!==N.select("floatingParentNodeId"))return;const Le=De.reason??kc;N.setOpen(!1,st(Le))}return z.events.on("menuopenchange",Ee),()=>{z.events.off("menuopenchange",Ee)}},[z.events,N]);const Ce=Nn();x.useEffect(()=>{P||Ce.clear()},[P,Ce]),x.useEffect(()=>{function Ee(De){if(!(!P||De.nodeId!==N.select("floatingParentNodeId")))if(De.target&&L&&L!==De.target){const Le=N.select("closeDelay");Le>0?Ce.isStarted()||Ce.start(Le,()=>{N.setOpen(!1,st(kc))}):N.setOpen(!1,st(kc))}else Ce.clear()}return z.events.on("itemhover",Ee),()=>{z.events.off("itemhover",Ee)}},[z.events,P,L,N,Ce]),x.useEffect(()=>{const Ee={open:P,nodeId:G,parentNodeId:K,reason:N.select("lastOpenChangeReason")};z.events.emit("menuopenchange",Ee)},[z.events,P,N,G,K]),ze(()=>{const Ee=I,De=X.current;if(Ee&&(X.current=Ee),De&&Ee&&Ee!==De){N.set("instantType",void 0);const Le=new AbortController;return Z(()=>{N.set("instantType","trigger-change")},Le.signal),()=>{Le.abort()}}},[I,Z,N]);const we={open:P,side:ge.side,align:ge.align,anchorHidden:ge.anchorHidden,nested:T.type==="menu",instant:H},Be=T.type==="menubar"&&T.context.modal;qC(P&&(Be||B&&Y!==Mn),D==="touch",V,L);const Se=i_(t,we,{styles:ge.positionerStyles,transitionStatus:$,props:S,refs:[a,N.useStateSetter("positionerElement")],hidden:!U,inert:!P}),Te=U&&T.type!=="menu"&&(T.type!=="menubar"&&B&&Y!==Mn||T.type==="menubar"&&T.context.modal);let je=null;return T.type==="menubar"?je=T.context.contentElement:T.type===void 0&&(je=L),s.jsxs(TC.Provider,{value:ge,children:[Te&&s.jsx(m_,{ref:T.type==="context-menu"||T.type==="nested-context-menu"?T.context.internalBackdropRef:null,inert:_p(!P),cutout:je}),s.jsx(xO,{id:G,children:s.jsx(wp,{elementsRef:N.context.itemDomElements,labelsRef:N.context.itemLabels,children:Se})})]})}),FC=x.createContext(void 0);function YD(){const e=x.useContext(FC);if(e===void 0)throw new Error(ln(34));return e}const KD=x.memo(x.forwardRef(function(t,a){const{render:o,className:l,value:c,defaultValue:d,onValueChange:p,disabled:m=!1,style:g,"aria-labelledby":h,...b}=t,[_,j]=x.useState(void 0),[E,k]=ei({controlled:c,default:d,name:"MenuRadioGroup"}),y=Ue((R,A)=>{p?.(R,A),!A.isCanceled&&k(R)}),S=Et("div",t,{state:{disabled:m},ref:a,props:{role:"group","aria-labelledby":h??_,"aria-disabled":m||void 0,...b}}),N=x.useMemo(()=>({value:E,setValue:y,disabled:m}),[E,y,m]);return s.jsx(yD.Provider,{value:j,children:s.jsx(FC.Provider,{value:N,children:S})})})),GC=x.createContext(void 0);function XD(){const e=x.useContext(GC);if(e===void 0)throw new Error(ln(35));return e}const QD=x.forwardRef(function(t,a){const{render:o,className:l,id:c,label:d,nativeButton:p=!1,disabled:m=!1,closeOnClick:g=!1,value:h,style:b,..._}=t,j=cu({label:d}),E=f_(!0),k=ta(c),{store:y}=Qr(),w=y.useState("isActive",j.index),S=y.useState("itemProps"),{value:N,setValue:R,disabled:A}=YD(),T=A||m,O=N===h,{getItemProps:z,itemRef:U}=zC({closeOnClick:g,disabled:T,highlighted:w,id:k,store:y,nativeButton:p,nodeId:E?.context.nodeId,itemMetadata:OC}),P=x.useMemo(()=>({disabled:T,highlighted:w,checked:O}),[T,w,O]);function B(L){const $=st($l,L.nativeEvent,void 0,{preventUnmountOnClose(){}});R(h,$)}const D=Et("div",t,{state:P,stateAttributesMapping:LC,props:[S,{role:"menuitemradio","aria-checked":O,onClick:B},_,z],ref:[U,a,j.ref]});return s.jsx(GC.Provider,{value:P,children:D})}),WD=x.forwardRef(function(t,a){const{render:o,className:l,style:c,keepMounted:d=!1,...p}=t,m=XD(),g=x.useRef(null),{transitionStatus:h,setMounted:b}=mi(m.checked);ka({open:m.checked,ref:g,onComplete(){m.checked||b(!1)}});const _={checked:m.checked,disabled:m.disabled,highlighted:m.highlighted,transitionStatus:h};return Et("span",t,{state:_,stateAttributesMapping:LC,ref:[a,g],props:{"aria-hidden":!0,...p},enabled:d||m.checked})}),ZD=x.createContext(null);function YC(e){return x.useContext(ZD)}function JD(e){const t=x.useRef(""),a=x.useCallback(l=>{l.defaultPrevented||(t.current=l.pointerType,e(l,l.pointerType))},[e]);return{onClick:x.useCallback(l=>{if(l.detail===0){e(l,"keyboard");return}"pointerType"in l?e(l,l.pointerType):e(l,t.current),t.current=""},[e]),onPointerDown:a}}function g_(e,t){const a=x.useRef(e),o=Ue(t);ze(()=>{a.current!==e&&o(a.current)},[e,o]),ze(()=>{a.current=e},[e])}function eP(e,t){const a=Ue((c,d)=>{(typeof e=="function"?e():e)||t(d||(tp?"touch":""))}),{onClick:o,onPointerDown:l}=JD(a);return x.useMemo(()=>({onClick:o,onPointerDown:l}),[o,l])}function KC(e){const[t,a]=x.useState(null),o=eP(e,a);return g_(e,l=>{l&&!e&&a(null)}),x.useMemo(()=>({openMethod:t,triggerProps:o}),[t,o])}const tP={...s_,disabled:Ae(e=>e.parent.type==="menubar"&&e.parent.context.disabled||e.disabled),modal:Ae(e=>(e.parent.type===void 0||e.parent.type==="context-menu")&&(e.modal??!0)),openMethod:Ae(e=>e.openMethod),allowMouseEnter:Ae(e=>e.allowMouseEnter),highlightItemOnHover:Ae(e=>e.highlightItemOnHover),stickIfOpen:Ae(e=>e.stickIfOpen),parent:Ae(e=>e.parent),rootId:Ae(e=>e.parent.type==="menu"?e.parent.store.select("rootId"):e.parent.type!==void 0?e.parent.context.rootId:e.rootId),activeIndex:Ae(e=>e.activeIndex),isActive:Ae((e,t)=>e.activeIndex===t),hoverEnabled:Ae(e=>e.hoverEnabled),instantType:Ae(e=>e.instantType),lastOpenChangeReason:Ae(e=>e.openChangeReason),floatingTreeRoot:Ae(e=>e.parent.type==="menu"?e.parent.store.select("floatingTreeRoot"):e.floatingTreeRoot),floatingNodeId:Ae(e=>e.floatingNodeId),floatingParentNodeId:Ae(e=>e.floatingParentNodeId),itemProps:Ae(e=>e.itemProps),closeDelay:Ae(e=>e.closeDelay),hasViewport:Ae(e=>e.hasViewport),keyboardEventRelay:Ae(e=>{if(e.keyboardEventRelay)return e.keyboardEventRelay;if(e.parent.type==="menu")return e.parent.store.select("keyboardEventRelay")})};class h_ extends pp{constructor(t){super({...nP(),...t},{positionerRef:x.createRef(),popupRef:x.createRef(),typingRef:{current:!1},itemDomElements:{current:[]},itemLabels:{current:[]},allowMouseUpTriggerRef:{current:!1},triggerFocusTargetRef:x.createRef(),beforeContentFocusGuardRef:x.createRef(),onOpenChangeComplete:void 0,triggerElements:new iu},tP),this.unsubscribeParentListener=this.observe("parent",a=>{if(this.unsubscribeParentListener?.(),a.type==="menu"){let o=a.store.select("rootId"),l=a.store.select("floatingTreeRoot"),c=a.store.select("keyboardEventRelay");this.unsubscribeParentListener=a.store.subscribe(()=>{const d=a.store.select("rootId"),p=a.store.select("floatingTreeRoot"),m=a.store.select("keyboardEventRelay");o===d&&l===p&&c===m||(o=d,l=p,c=m,this.notifyAll())}),this.context.allowMouseUpTriggerRef=a.store.context.allowMouseUpTriggerRef;return}a.type!==void 0&&(this.context.allowMouseUpTriggerRef=a.context.allowMouseUpTriggerRef),this.unsubscribeParentListener=null})}setOpen(t,a){this.state.floatingRootContext.context.events.emit("setOpen",{open:t,eventDetails:a})}static useStore(t,a){const o=es(()=>new h_(a)).current;return t??o}unsubscribeParentListener=null}function nP(){return{...t_(),disabled:!1,modal:!0,openMethod:null,allowMouseEnter:!1,highlightItemOnHover:!0,stickIfOpen:!0,parent:{type:void 0},rootId:void 0,activeIndex:null,hoverEnabled:!0,instantType:void 0,openChangeReason:null,floatingTreeRoot:new Gb,floatingNodeId:void 0,floatingParentNodeId:null,itemProps:Xt,keyboardEventRelay:void 0,closeDelay:0,hasViewport:!1}}const sP=x.createContext(void 0);function aP(){return x.useContext(sP)}const rP=Sb(function(t){const{children:a,open:o,onOpenChange:l,onOpenChangeComplete:c,defaultOpen:d=!1,disabled:p=!1,modal:m,loopFocus:g=!0,orientation:h="vertical",actionsRef:b,closeParentOnEsc:_=!1,handle:j,triggerId:E,defaultTriggerId:k=null,highlightItemOnHover:y=!0}=t,w=vp(!0),S=Qr(!0),N=YC(!0),R=aP(),A=x.useMemo(()=>R&&S?{type:"menu",store:S.store}:N?{type:"menubar",context:N}:w&&!S?{type:"context-menu",context:w}:{type:void 0},[w,S,N,R]),T=h_.useStore(j?.store,{open:d,openProp:o,activeTriggerId:k,triggerIdProp:E,parent:A});lC(T,o,d,k),T.useControlledProp("openProp",o),T.useControlledProp("triggerIdProp",E),T.useContextCallback("onOpenChangeComplete",c);const O=Ao(),z=Ao(),U=T.useState("floatingTreeRoot"),P=q2(U),B=Kr(),D=T.useState("open"),L=T.useState("activeTriggerElement"),$=T.useState("positionerElement"),V=T.useState("hoverEnabled"),H=T.useState("disabled"),F=T.useState("lastOpenChangeReason"),Y=T.useState("parent"),G=T.useState("activeIndex"),K=T.useState("payload"),I=T.useState("floatingParentNodeId"),X=x.useRef(null),Z=x.useRef(Y.type!=="context-menu"),te=Nn(),fe=x.useRef(!0),ee=Nn(),re=I!=null,{openMethod:le,triggerProps:me}=KC(D);T.useSyncedValues({disabled:p,highlightItemOnHover:y,modal:Y.type===void 0?m:void 0,openMethod:le,rootId:O}),Zb(T);const{forceUnmount:Me}=Jb(D,T,()=>{T.update({allowMouseEnter:!1,stickIfOpen:!0})});ze(()=>{w&&!S?T.update({parent:{type:"context-menu",context:w},floatingNodeId:P,floatingParentNodeId:B}):S&&T.update({floatingNodeId:P,floatingParentNodeId:B})},[w,S,P,B,T]),x.useEffect(()=>{if(D||(X.current=null),Y.type==="context-menu"){if(!D){te.clear(),Z.current=!1;return}te.start(500,()=>{Z.current=!0})}},[te,D,Y.type]),ze(()=>{!D&&!V&&T.set("hoverEnabled",!0)},[D,V,T]);const de=Ue((Oe,tt)=>{const ot=tt.reason;if(D===Oe&&tt.trigger===L&&F===ot)return;const vt=oC(tt);if(!Oe&&tt.trigger==null&&(tt.trigger=L??void 0),l?.(Oe,tt),tt.isCanceled)return;T.state.floatingRootContext.dispatchOpenChange(Oe,tt);const Mt=tt.event;if(Oe===!1&&Mt?.type==="click"&&Mt.pointerType==="touch"&&!fe.current)return;Oe&&ot===Ul?(fe.current=!1,ee.start(300,()=>{fe.current=!0})):(fe.current=!0,ee.clear());const lt=(ot===pi||ot===$l)&&Mt.detail===0&&Mt?.isTrusted,Rt=!Oe&&(ot===cp||ot==null),_e={open:Oe,openChangeReason:ot};X.current=tt.event??null,Wb(_e,Oe,tt.trigger,vt()),T.update(_e),Y.type==="menubar"&&(ot===Ul||ot===To||ot===Mn||ot===kx||ot===kc)?T.set("instantType","group"):lt||Rt?T.set("instantType",lt?"click":"dismiss"):T.set("instantType",void 0)}),ge=sC({popupStore:T,floatingId:z,nested:B!=null,onOpenChange:de}),Ce=ge.context.events;x.useEffect(()=>{const Oe=({open:tt,eventDetails:ot})=>de(tt,ot);return Ce.on("setOpen",Oe),()=>{Ce?.off("setOpen",Oe)}},[Ce,de]);const we=x.useCallback(()=>{T.setOpen(!1,st(zb))},[T]);x.useImperativeHandle(b,()=>({unmount:Me,close:we}),[Me,we]);let Be;Y.type==="context-menu"&&(Be=Y.context),x.useImperativeHandle(Be?.positionerRef,()=>$,[$]),x.useImperativeHandle(Be?.actionsRef,()=>({setOpen:de}),[de]);const Ve=dp(ge,{enabled:!H,bubbles:{escapeKey:_&&Y.type==="menu"},outsidePress(){return Y.type!=="context-menu"||X.current?.type==="contextmenu"?!0:Z.current},externalTree:re?U:void 0}),Se=xp(),Te=x.useCallback(Oe=>{T.select("activeIndex")!==Oe&&T.set("activeIndex",Oe)},[T]),je=hC(ge,{enabled:!H,listRef:T.context.itemDomElements,activeIndex:G,nested:Y.type!==void 0,loopFocus:g,orientation:h,parentOrientation:Y.type==="menubar"?Y.context.orientation:void 0,rtl:Se==="rtl",disabledIndices:er,onNavigate:Te,openOnArrowKeyDown:Y.type!=="context-menu",externalTree:re?U:void 0,focusItemOnHover:y}),Ee=x.useCallback(Oe=>{T.context.typingRef.current=Oe},[T]),De=xC(ge,{enabled:!H,listRef:T.context.itemLabels,elementsRef:T.context.itemDomElements,activeIndex:G,resetMs:dO,onMatch:Oe=>{D&&Oe!==G&&T.set("activeIndex",Oe)},onTyping:Ee}),Le=x.useMemo(()=>{const Oe=Kn(De.reference,je.reference,Ve.reference,{onMouseMove(){T.set("allowMouseEnter",!0)}},me);return Oe["aria-haspopup"]="menu",Oe["aria-expanded"]=D,Oe},[T,De.reference,je.reference,Ve.reference,me,D]),Ie=x.useMemo(()=>{const Oe=Kn(je.trigger,Ve.trigger,me);return Oe["aria-haspopup"]="menu",Oe["aria-expanded"]=!1,Oe},[je.trigger,Ve.trigger,me]),ue=x.useMemo(()=>Kn(gp,{id:z,role:"menu","aria-labelledby":L?.id,onMouseMove(){T.set("allowMouseEnter",!0),Y.type==="menu"&&T.set("hoverEnabled",!1)},onClick(){T.select("hoverEnabled")&&T.set("hoverEnabled",!1)},onKeyDown(Oe){const tt=T.select("keyboardEventRelay");tt&&!Oe.isPropagationStopped()&&tt(Oe)}},De.floating,je.floating,Ve.floating),[L,z,Y.type,T,De.floating,je.floating,Ve.floating]),ye=je.item??Xt;e_(T,{floatingRootContext:ge,activeTriggerProps:Le,inactiveTriggerProps:Ie,popupProps:ue,itemProps:ye});const Ge=x.useMemo(()=>({store:T,parent:A}),[T,A]),Re=s.jsx(AC.Provider,{value:Ge,children:typeof a=="function"?a({payload:K}):a});return Y.type===void 0||Y.type==="context-menu"?s.jsx(bO,{externalTree:U,children:Re}):Re});function XC(e){const t=e.getBoundingClientRect(),a=Wt(e);if(Eb)return t;const o=a.getComputedStyle(e,"::before"),l=a.getComputedStyle(e,"::after");if(!(o.content!=="none"||l.content!=="none"))return t;const d=parseFloat(o.width)||0,p=parseFloat(o.height)||0,m=parseFloat(l.width)||0,g=parseFloat(l.height)||0,h=Math.max(t.width,d,m),b=Math.max(t.height,p,g),_=h-t.width,j=b-t.height;return{left:t.left-_/2,right:t.right+_/2,top:t.top-j/2,bottom:t.bottom+j/2}}function QC(e={}){const{highlightItemOnHover:t,highlightedIndex:a,onHighlightedIndexChange:o}=p_(),{ref:l,index:c}=cu(e),d=a===c,p=x.useRef(null),m=tr(l,p);return{compositeProps:{tabIndex:d?0:-1,onFocus(){o(c)},onMouseMove(){const h=p.current;if(!t||!h)return;const b=h.hasAttribute("disabled")||h.ariaDisabled==="true";!d&&!b&&h.focus()}},compositeRef:m,index:c}}function oP(e){const{render:t,className:a,style:o,state:l=Xt,props:c=er,refs:d=er,metadata:p,stateAttributesMapping:m,tag:g="div",...h}=e,{compositeProps:b,compositeRef:_}=QC({metadata:p});return Et(g,e,{state:l,ref:[...d,_],props:[b,...c,h],stateAttributesMapping:m})}function WC(e){if(Ft(e)&&e.hasAttribute("data-rootownerid"))return e.getAttribute("data-rootownerid")??void 0;if(!ma(e))return WC(_a(e))}function lP(e,t){const a=x.useRef(null);function o(c){Hs.flushSync(()=>{e.setOpen(!1,st(To,c.nativeEvent,c.currentTarget))}),Y4(a.current)?.focus()}function l(c){const d=e.select("positionerElement");if(d&&Hl(c,d))e.context.beforeContentFocusGuardRef.current?.focus();else{Hs.flushSync(()=>{e.setOpen(!1,st(To,c.nativeEvent,c.currentTarget))});let p=G4(e.context.triggerFocusTargetRef.current||t.current);for(;p!==null&&We(d,p);){const m=p;if(p=$b(p),p===m)break}p?.focus()}}return{preFocusGuardRef:a,handlePreFocusGuardFocus:o,handleFocusTargetFocus:l}}function iP(e){const{enabled:t=!0,mouseDownAction:a,open:o}=e,l=x.useRef(!1);return x.useMemo(()=>t?{onMouseDown:c=>{(a==="open"&&!o||a==="close"&&o)&&(l.current=!0,xt(c.currentTarget).addEventListener("click",()=>{l.current=!1},{once:!0}))},onClick:c=>{l.current&&(l.current=!1,c.preventBaseUIHandler())}}:Xt,[t,a,o])}const Id=2,cP=r2(function(t,a){const{render:o,className:l,style:c,disabled:d=!1,nativeButton:p=!0,id:m,openOnHover:g,delay:h=100,closeDelay:b=0,handle:_,payload:j,...E}=t,k=Qr(!0),y=_?.store??k?.store;if(!y)throw new Error(ln(85));const w=ta(m),S=y.useState("isTriggerActive",w),N=y.useState("floatingRootContext"),R=y.useState("isOpenedByTrigger",w),A=y.useState("triggerPopupId",w),T=x.useRef(null),O=dP(),z=p_(!0),U=Xr(),P=x.useMemo(()=>U??new Gb,[U]),B=q2(P),D=Kr(),{registerTrigger:L,isMountedByThisTrigger:$}=iC(w,T,y,{payload:j,closeDelay:b,parent:O,floatingTreeRoot:P,floatingNodeId:B,floatingParentNodeId:D,keyboardEventRelay:z?.relayKeyboardEvent}),V=O.type==="menubar",H=y.useState("disabled"),F=d||H||V&&O.context.disabled,{getButtonProps:Y,buttonRef:G}=Wr({disabled:F,native:p});x.useEffect(()=>{!R&&O.type===void 0&&(y.context.allowMouseUpTriggerRef.current=!1)},[y,R,O.type]);const K=x.useRef(null),I=Nn(),X=Ue(je=>{if(!K.current)return;I.clear(),y.context.allowMouseUpTriggerRef.current=!1;const Ee=je.target;if(We(K.current,Ee)||We(y.select("positionerElement"),Ee)||Ee===K.current||Ee!=null&&WC(Ee)===y.select("rootId"))return;const De=XC(K.current);je.clientX>=De.left-Id&&je.clientX<=De.right+Id&&je.clientY>=De.top-Id&&je.clientY<=De.bottom+Id||P.events.emit("close",{domEvent:je,reason:f2})});x.useEffect(()=>{R&&y.select("lastOpenChangeReason")===Mn&&xt(K.current).addEventListener("mouseup",X,{once:!0})},[R,X,y]);const Z=V&&O.context.hasSubmenuOpen,fe=gC(N,{enabled:(g??Z)&&!F&&O.type!=="context-menu"&&(!V||Z&&!$),handleClose:bC({blockPointerEvents:!V}),mouseOnly:!0,move:!1,restMs:O.type===void 0?h:void 0,delay:{close:b},triggerElementRef:T,externalTree:P,isActiveTrigger:S,isClosing:()=>y.select("transitionStatus")==="ending"}),ee=uP(R,y.select("lastOpenChangeReason")),re=F2(N,{enabled:!F&&O.type!=="context-menu",event:R&&V?"click":"mousedown",toggle:!0,ignoreMouse:!1,stickIfOpen:O.type===void 0?ee:!1}),le=fC(N,{enabled:!F&&Z}),me=iP({open:R,enabled:V,mouseDownAction:"open"}),Me=x.useMemo(()=>Kn(le.reference,re.reference),[le.reference,re.reference]),de=y.useState("triggerProps",$),{preFocusGuardRef:ge,handlePreFocusGuardFocus:Ce,handleFocusTargetFocus:we}=lP(y,T),Be={disabled:F,open:R},Ve=[K,a,G,L,T],Se=[Me,fe??Xt,de,{"aria-haspopup":"menu","aria-controls":A,id:w,onMouseDown:je=>{if(y.select("open"))return;I.start(200,()=>{y.context.allowMouseUpTriggerRef.current=!0}),xt(je.currentTarget).addEventListener("mouseup",X,{once:!0})}},V?{role:"menuitem"}:{},me,E,Y],Te=Et("button",t,{enabled:!V,stateAttributesMapping:Tx,state:Be,ref:Ve,props:Se});return V?s.jsx(oP,{tag:"button",render:o,className:l,style:c,state:Be,refs:Ve,props:Se,stateAttributesMapping:Tx}):R?s.jsxs(x.Fragment,{children:[s.jsx(Zl,{ref:ge,onFocus:Ce},`${w}-pre-focus-guard`),s.jsx(x.Fragment,{children:Te},w),s.jsx(Zl,{ref:y.context.triggerFocusTargetRef,onFocus:we},`${w}-post-focus-guard`)]}):s.jsx(x.Fragment,{children:Te},w)});function uP(e,t){const a=Nn(),[o,l]=x.useState(!1);return ze(()=>{e&&t==="trigger-hover"?(l(!0),a.start(fO,()=>{l(!1)})):e||(a.clear(),l(!1))},[e,t,a]),o}function dP(){const e=vp(!0),t=Qr(!0),a=YC();return x.useMemo(()=>a?{type:"menubar",context:a}:e&&!t?{type:"context-menu",context:e}:{type:void 0},[e,t,a])}function ZC(e){return e==null||e.hasAttribute("disabled")||e.getAttribute("aria-disabled")==="true"}function x_({...e}){return s.jsx(rP,{"data-slot":"dropdown-menu",...e})}function b_({...e}){return s.jsx(cP,{"data-slot":"dropdown-menu-trigger",...e})}function __({align:e="start",alignOffset:t=0,side:a="bottom",sideOffset:o=4,className:l,...c}){return s.jsx(DD,{children:s.jsx(GD,{className:"isolate z-50 outline-none",align:e,alignOffset:t,side:a,sideOffset:o,children:s.jsx(OD,{"data-slot":"dropdown-menu-content",className:Ct("z-50 max-h-(--available-height) w-(--anchor-width) min-w-32 origin-(--transform-origin) overflow-x-hidden overflow-y-auto rounded-lg bg-popover p-1 text-popover-foreground shadow-md ring-1 ring-foreground/10 duration-100 outline-none data-[side=bottom]:slide-in-from-top-2 data-[side=inline-end]:slide-in-from-left-2 data-[side=inline-start]:slide-in-from-right-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:overflow-hidden data-closed:fade-out-0 data-closed:zoom-out-95",l),...c})})})}function cf({className:e,inset:t,variant:a="default",...o}){return s.jsx(jD,{"data-slot":"dropdown-menu-item","data-inset":t,"data-variant":a,className:Ct("group/dropdown-menu-item relative flex cursor-default items-center gap-1.5 rounded-md px-1.5 py-1 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-inset:pl-7 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 data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-[variant=destructive]:*:[svg]:text-destructive",e),...o})}function fP({...e}){return s.jsx(KD,{"data-slot":"dropdown-menu-radio-group",...e})}function pP({className:e,children:t,inset:a,...o}){return s.jsxs(QD,{"data-slot":"dropdown-menu-radio-item","data-inset":a,className:Ct("relative flex cursor-default items-center gap-1.5 rounded-md py-1 pr-8 pl-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground data-inset:pl-7 data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",e),...o,children:[s.jsx("span",{className:"pointer-events-none absolute right-2 flex items-center justify-center","data-slot":"dropdown-menu-radio-item-indicator",children:s.jsx(WD,{children:s.jsx($r,{})})}),t]})}const mP={common:{loading:"Cargando…",saving:"Guardando…",cancel:"Cancelar",save:"Guardar",delete:"Borrar",edit:"Editar",create:"Crear",add:"Agregar",remove:"Quitar",reload:"Recargar",shutdown:"Apagar",enabled:"Habilitado",disabled:"Deshabilitado",enable:"Habilitar",disable:"Deshabilitar",open:"Abrir",close:"Cerrar",confirm:"Confirmar",optional:"(opcional)",none:"—",none_yet:"Todavía no hay nada.",error_generic:"Algo salió mal.",search:"Buscar",new:"Nuevo",restore:"Restaurar",show:"Mostrar",hide:"Ocultar",copy:"Copiar",run:"Ejecutar",refresh:"Refrescar",view_all:"Ver todo",saved:"Guardado.",deleted:"Eliminado.",pager_prev:"Anterior",pager_next:"Siguiente",pager_page:"Página {page} de {total}",pager_range:"{from}–{to} de {total}",pager_per_page:"Por página"},daemon:{connecting:"Conectando con el daemon…",unreachable:"No pude llegar al daemon en localhost:7430.",unreachable_hint:"Arrancá APX con `apx daemon start` y refrescá.",version:"Versión",uptime:"Uptime",status:"Status",running:"running",down:"down",reload_hint:"POST /admin/reload — relee ~/.apx/config.json sin reiniciar.",shutdown_confirm:"¿Apagar el daemon? Las próximas requests fallarán hasta levantarlo de nuevo.",shutdown_done:"Daemon detenido."},pairing:{title:"Vincular este equipo",subtitle:"Estás entrando desde fuera de esta máquina. Por seguridad, vinculá este navegador con un código de pairing.",steps_title:"Cómo obtener el código",step_1:"En la PC donde corre APX, abrí una terminal.",step_2:"Ejecutá `apx pair` (o escaneá el QR con APX Deck).",step_3:"Copiá el código que aparece debajo del QR y pegalo acá.",code_label:"Código de pairing",code_ph:"p. ej. 7f3a1c9e-…",label_label:"Nombre de este equipo",label_ph:"p. ej. Notebook del living",submit:"Vincular",linking:"Vinculando…",success:"Equipo vinculado ✓",err_required:"Pegá el código de pairing.",err_expired:"El código expiró. Volvé a correr `apx pair` y probá de nuevo.",err_unknown:"Código desconocido o ya usado. Generá uno nuevo con `apx pair`.",err_generic:"No se pudo vincular. Revisá el código e intentá otra vez.",revoke_hint:"Podés revocar este equipo cuando quieras desde Settings o con `apx pair revoke`."},nav:{apx_admin:"APX",settings:"Settings",project:"Proyecto",add_project:"Agregar proyecto",all_projects:"Todos los proyectos",more_projects:"{count} más",collapse_projects:"Ocultar proyectos",expand_projects:"Mostrar proyectos",modules:{voice:"Voces",desktop:"Escritorio",deck:"Deck",code:"Code",web:"Web"}},topbar:{breadcrumb_root:"APX",breadcrumb_settings:"APX › Settings",breadcrumb_project:"APX › Proyecto",breadcrumb_base:"Base",breadcrumb_projects:"Proyectos",light:"Cambiar a claro",dark:"Cambiar a oscuro",lang_toggle:"Idioma"},admin:{title:"APX",subtitle:"Panel general. Configuración global, canales y proyectos.",engines_title:"Engines",engines_subtitle:"Adaptadores LLM disponibles. Las API keys viven en ~/.apx/config.json.",telegram_title:"Telegram",telegram_subtitle:"Canales configurados. Cada uno puede estar pineado a un proyecto.",telegram_polling_on:"Polling activo",telegram_polling_off:"Deshabilitado",telegram_add_channel:"Canal",telegram_send_test:"Probar",telegram_send_test_title:"Enviar a",telegram_default_message:"Mensaje de prueba desde el panel de APX ✅",projects_title:"Proyectos registrados",projects_subtitle:"Click en un proyecto para abrir su panel.",unregister:"Desregistrar",unregister_confirm:"¿Quitar {label} de APX? La carpeta no se borra; sólo se desregistra.",reload_success:"Config recargada.",telegram_polling_started:"Polling iniciado.",telegram_polling_stopped:"Polling detenido.",telegram_channel_removed:"Canal eliminado.",agents_badge:"agents",engine_badge:"sí",engine_badge_no:"no",base_label:"Base"},add_project:{title:"Agregar proyecto",subtitle:"APX indexará .apc/, agents y AGENTS.md en esa carpeta.",path_label:"Ruta absoluta",path_hint:"Equivalente a apx project add /ruta/al/proyecto",path_placeholder:"/Volumes/SSDT7Shield/proyectos_varios/mi-proyecto",register:"Registrar",path_required:"Ruta requerida.",registered:"Proyecto #{id} registrado.",search_btn:"Buscar",picker_prompt:"Elegí la carpeta del proyecto",browser_unavailable:"Explorador no disponible hasta reiniciar daemon. Pegá ruta manual.",no_folders:"Sin carpetas."},settings:{title:"Settings",subtitle:"Preferencias del panel + diagnóstico del daemon local.",appearance:"Apariencia",light_mode:"Claro",dark_mode:"Oscuro",system_mode:"Sistema",language:"Idioma",daemon:"Daemon",daemon_sub:"Estado del proceso local que sirve esta web y orquesta los agentes.",engines:"Engines disponibles",engines_sub:"Adaptadores LLM compilados con el daemon.",token:"Token para esta sesión",token_sub:"Si esta web no logró auto-cargar el token, pegalo acá.",token_active:"(ya hay token activo)",token_paste:"Pegá el bearer del daemon",token_saved:"Token guardado.",devices:"Dispositivos pareados",devices_sub:"GET /pair/list. Revocar invalida ese bearer en el daemon.",devices_empty:"No hay clientes pareados todavía.",devices_revoke_confirm:"Revocar cliente {id}?",devices_revoke_success:"Cliente revocado.",devices_pair_btn:"Vincular dispositivo",devices_pair_title:"Vincular dispositivo",devices_pair_desc:"Escaneá el QR con la cámara del celu para entrar directo, o pegá el código en la otra PC.",devices_pair_scan:"Escaneá con la cámara del teléfono — te abre la web ya vinculada.",devices_pair_code:"O pegá este código en la pantalla de pairing:",devices_pair_url:"URL de acceso",devices_pair_link:"O copiá este link y abrilo en el otro dispositivo (entra solo):",devices_pair_copy:"Copiar",devices_pair_copied:"Link copiado al portapapeles.",devices_pair_copied_code:"Código copiado.",devices_pair_expires:"Expira en {s}s",devices_pair_expired:"El código expiró.",devices_pair_regen:"Generar otro",devices_pair_waiting:"Esperando que el dispositivo confirme…",devices_pair_done:"Dispositivo vinculado ✓",devices_pair_localhost_only:"Solo se pueden generar códigos desde la PC del daemon (localhost).",devices_last_seen:"visto:",devices_never:"nunca",devices_revoke:"Revocar",account_section:"Cuenta",agents_section:"Agentes & modelos",channels_section:"Canales & dispositivos",modules_section:"Módulos",advanced_section:"Avanzado",tabs:{identity:"Identidad",super_agent:"Super-agente",engines:"Engines & modelos",telegram:"Telegram",devices:"Dispositivos",advanced:"Avanzado"},identity:{title:"Identidad",subtitle:"Datos del usuario. Configuración del agente va en Super-agente.",agent_name:"Nombre del agente",owner_name:"Tu nombre",personality:"Personalidad",owner_context:"Contexto del dueño",owner_context_hint:"Quién sos, en qué trabajás, qué le interesa al agente saber de vos.",language:"Idioma preferido",timezone:"Timezone (IANA)",timezone_hint:"Detectado automáticamente — buscá para cambiar.",saved:"Identidad guardada."},super_agent:{title:"Super-agente",subtitle:"Personalidad, modelo, prompt y modos del super-agente.",personality:"Personalidad",model:"Modelo activo",model_hint:"Ej: anthropic:claude-sonnet-4.5, ollama:gemma2:9b",permission_mode:"Permission mode",system:"Prompt extra (system)",system_hint:"Texto que se prepende al system prompt base.",system_ph:"(Vacío = se usa el prompt base de core/agent/prompts/super-agent-base.md)",fallback_title:"Fallback chain",fallback_hint:"Si el modelo activo falla, prueba estos en orden.",fallback_add:"Agregar modelo a la cadena",saved:"Super-agente guardado.",enabled_label:"Super-agente habilitado",model_active:"Modelo activo (router)",model_configure:"Configurar en Modelos",behavior_subtitle:"Comportamiento del super-agente. El modelo y la cadena de fallback se configuran en el Router de modelos."},engines_keys:{title:"API keys de modelos",subtitle:"Cada engine guarda su key en ~/.apx/config.json. Los valores ya seteados muestran sufijo seguro.",ollama_url:"Ollama URL",ollama_hint:"Por defecto: http://127.0.0.1:11434",key_label:"API key",key_placeholder:"(no seteada)",clear:"Borrar key",saved:"Key guardada.",cleared:"Key borrada."},telegram_global:{title:"Telegram (default)",subtitle:"Canal default — los proyectos pueden overridear con su propio canal.",bot_token:"Bot token",chat_id:"Chat ID por defecto",poll_interval:"Poll interval (ms)",respond_with_engine:"Respond with engine",enabled:"Polling habilitado",saved:"Telegram guardado."},advanced:{title:"Avanzado",subtitle:"Editor raw del ~/.apx/config.json. Los secretos se ven *** set *** pero podés escribir uno nuevo.",write:"Aplicar cambios",written:"Config aplicada y daemon recargado.",reload_success:"Config recargada."}},project:{not_found:"Roby no encontró el proyecto {pid}: quizás se desregistró o el ID es incorrecto.",rebuild:"Rebuild context",rebuild_done:"Rebuild OK.",unregister_confirm:"¿Desregistrar {label}? La carpeta no se borra.",unregistered:"Desregistrado.",base_subtitle:"Espacio general · super-agente",danger:{title:"Zona peligrosa",subtitle:"Acciones que afectan el registro del proyecto en APX. No tocan archivos del repo.",rebuild_desc:"Re-escanea .apc/, MCPs y agents y regenera el contexto del super-agente para este proyecto.",unregister_desc:"Quita el proyecto del registry de APX. La carpeta del disco se mantiene intacta.",rebuild_confirm_title:"Rebuild context",rebuild_confirm_desc:"Regenerar contexto de {label}.",rebuild_long:"Vuelve a leer la config APC, lista MCPs y agents disponibles, y reconstruye el system prompt del super-agente. Es seguro de correr — no borra nada. Usalo después de tocar .apc/ a mano o si los cambios no se reflejan.",unregister_confirm_title:"Desregistrar proyecto",unregister_long:"El proyecto deja de aparecer en `apx`. Los archivos del disco (.apc/, código, todo) se mantienen. Podés volver a registrarlo con `apx project register <path>`."},nav:{overview:"Overview",chat:"Chat",config:"Config",telegram:"Telegram",agents:"Agents",routines:"Rutinas",tasks:"Tasks",mcps:"MCPs",artifacts:"Artifacts",vars:"Variables",logs:"Logs",memories:"Memorias",structure:"Estructura",docs:"Docs",files:"Archivos"},sections:{workspace:"Workspace",content:"Contenido",automation:"Automatización",knowledge:"Conversaciones",config:"Config"},overview:{tasks_open:"Tasks abiertas",routines:"Rutinas",routines_active:"Rutinas activas",agents:"Agents",mcps:"MCPs",artifacts:"Artifacts",chat:"Chat (super-agent)",chat_value:"abrir",roster:"Equipo",no_agents:"Todavía no hay agentes.",orchestrators:"Orquestadores",specialists:"Especialistas",recent_tasks:"Tasks recientes",no_activity:"No hay tasks abiertas."},artifacts:{title:"Artifacts",subtitle:"Scripts y archivos reutilizables guardados en el proyecto. Los crean los agentes; podés verlos, ejecutarlos, renombrarlos o eliminarlos."},chat:{title:"Chat con agente",subtitle:"Chat directo con el agente del proyecto.",live_title:"Chat con {agent}",superagent_title:"Chat con {persona}",superagent_subtitle:"Chat con {persona} — el super-agente APX. Puede usar tools (proyectos, tasks, mcps, agentes).",loaded_subtitle:"Conversación cargada con {slug}. Lo que mandes se agrega a este chat.",thread_subtitle:"Historial con {persona} en {channel}. Si respondés acá, la conversación sigue desde la web.",empty:"Mandá un mensaje para arrancar la conversación.",placeholder:"Escribí algo y enter para enviar (shift+enter = nueva línea)",send:"Enviar",stop:"Stop",new_session:"Nueva sesión",delete:"Borrar",delete_confirm_title:"Borrar chat",delete_confirm_desc:"Esta acción no se puede deshacer. Se elimina para siempre el historial de este chat.",deleted:"Chat borrado.",meta_created:"Creado {date} · {channel}",meta_new:"Chat nuevo · {channel}",copy:"copiar",copied:"Copiado.",stopped_marker:" [detenido]",create_agent:"Crear agente",create_agent_title:"Crear agente",create_agent_desc:"Necesario para iniciar chat en proyecto.",role_label:"rol",model_label:"modelo",model_hint:"ej. openai:gpt-5, groq:llama-3.3-70b-versatile",master_label:"Agente master",list:{title:"Chats",new:"Nuevo",search:"Buscar chats…",all_agents:"Todos los agentes",empty:"No hay conversaciones todavía. Arrancá una desde la derecha.",count:"{n} en total",pick_agent:"Elegí un agente"}},tasks:{title:"Tasks (TODOs)",subtitle:"Append-only JSONL en ~/.apx/projects/<id>/tasks/.",add:"agregar",add_label:"Nueva task",add_placeholder:"ej. revisar bug del scroll",empty:"No hay tasks {state}.",empty_open:"No hay tasks abiertas.",created:"Task creada.",create_error:"no pude crear la task",done:"✓ done",drop:"✗ drop",reopen:"↻ reopen",due:"vence",via:"via",aria_done:"marcar done",aria_drop:"descartar task",aria_reopen:"reabrir task"},global_tasks:{title:"Tasks (todos los proyectos)",subtitle:"Tareas agregadas de todos los proyectos registrados.",empty:"Sin tasks.",due:"vence",go_project:"Ir al proyecto"},routines:{title:"Heartbeats / Routines",subtitle:"Cron, every:Nm, once:ISO. Cada rutina dispara un agente o un shell.",empty:"Sin rutinas. Creá una arriba.",new:"nueva",new_btn:"Nueva",delete_confirm:"Borrar rutina {name}?",delete_confirm_body:"Esta acción no se puede deshacer.",saved:"Rutina guardada.",paused:"pausada",next_run:"próxima:",last_run:"última:",enabled_hint:"Activa · corre según el intervalo",disabled_hint:"Pausada · solo con el botón Run",enabled_label:"Habilitada",new_title:"Nueva rutina",edit_title:"Editar {name}",dialog_desc:"Se guarda en .apc/routines.json. La rutina corre mientras el daemon está activo.",name_field:"Nombre (name)",name_no_edit:"No se puede cambiar al editar.",kind_field:"Acción (kind)",schedule_field:"Intervalo (schedule)",schedule_hint:"Elegí un preset o escribilo a mano. Manual = solo corre con el botón Run.",vars_title:"Variables disponibles",what_happens:"Qué va a pasar",list_title:"Rutinas",detail_empty:"Elegí una rutina de la lista.",edit_btn:"Editar",edit_hint:"Abrir el editor: tipo, intervalo, prompt, pre/post y variables.",block_pre:"Pre-commands",block_post:"Post-commands",block_prompt:"Prompt",block_text:"Texto",block_command:"Comando",block_empty:"(vacío)",runs_title:"Ejecuciones",runs_empty:"Sin ejecuciones todavía.",runs_close:"Cerrar",runs_no_detail:"Sin más detalle.",runs_output:"Salida",status_ok:"ok",status_error:"error",status_skipped:"salteada",agent_field:"Agente (spec.agent)",agent_hint:"Quién ejecuta la rutina.",agent_loading:"cargando…",agent_pick:"— elegí un agente —",prompt_exec:"Prompt (spec.prompt)",prompt_exec_ph:"qué pendiente hay para hoy?",prompt_super:"Prompt (spec.prompt)",prompt_super_ph:"resumí el estado del proyecto",pre_field:"Pre-commands (pre_commands)",pre_hint:"Shell ANTES del prompt. Uno por línea.",post_field:"Post-commands (post_commands)",post_hint:"Shell DESPUÉS del prompt. Uno por línea.",tg_channel:"Canal (spec.channel)",tg_chat_id:"Chat ID (spec.chat_id)",tg_text:"Mensaje de Telegram (spec.text)",tg_text_hint:"Mensaje fijo a enviar. No usa modelo.",shell_field:"Comando (spec.command)",shell_hint:"Corre tal cual en el shell. Sin prompt ni pre/post.",hb_channel:"Canal (spec.channel)",hb_message:"Mensaje (spec.message)",name_required:"name requerido",save_error:"save falló",run_error:"run falló",toggle_error:"toggle falló",delete_error:"delete falló",run_success:"{name} disparada.",run_confirm:"¿Ejecutar la rutina {name} ahora?",run_confirm_body:"Corre la acción una vez, sin esperar al horario.",running:"Ejecutando…",delete_success:"borrada."},agents:{title:"Agents",subtitle:"Definidos en .apc/agents/<slug>.md.",subtitle_full:"Definidos en .apc/agents/<slug>.md. La memoria runtime vive en ~/.apx/projects/<id>/agents/<slug>/.",empty:"Sin agents. Agregá uno con <code>apx agent add</code> o el botón.",empty_text:"Sin agents. Agregá uno con `apx agent add` o el botón de arriba.",new:"Agente",created:"Agent {slug} creado.",slug_invalid:"slug debe matchear /^[a-z][a-z0-9_-]*$/",hierarchy:"Jerarquía",list_view:"Lista",import:"Importar",chat:"Chat",view:"Ver",orchestrator:"Orquestador",new_title:"Nuevo agent",new_desc:"POST /projects/:pid/agents — escribe .apc/agents/<slug>.md.",slug_label:"slug",slug_ph:"cody",role_label:"role (opcional)",role_ph:"code refactor",model_label:"model (opcional)",model_hint:"ej. ollama:gemma2:9b, openai:gpt-4o-mini",lang_label:"language (opcional)",desc_label:"description (opcional)",desc_ph:"Qué hace este agente…",skills_label:"skills (coma)",skills_ph:"skill-a, skill-b",tools_label:"tools (coma)",tools_ph:"tool-a, tool-b",parent_label:"reporta a (parent, opcional)",parent_hint:"Subagente de un orquestador.",none_parent:"— ninguno —",master_label:"Orquestador (master)",create_success:"Agent {slug} creado.",create_error:"create falló",import_title:"Importar del vault",import_desc:"Plantillas en ~/.apx/agents. Se registran en este proyecto (.apc/agents/<slug>.md).",import_empty:"Sin plantillas en el vault.",import_success:"Importado: {slug}",import_already:"ya está",import_btn:"Importar"},agent_detail:{not_found:"Agente no encontrado.",chat_btn:"Chat con {slug}",reports_to:"↳ reporta a",no_threads:"Sin threads.",no_activity:"Sin actividad registrada.",threads_recent:"Threads recientes",subagents:"Subagentes",subagents_desc:"Agentes que reportan a este orquestador.",config_title:"Configuración del agente",type_label:"Tipología (type)",area_label:"Área",area_hint:"ej. operaciones, marketing",area_ph:"operaciones",role_label:"Role",parent_label:"Reporta a (parent)",none_parent:"— ninguno —",model_label:"Modelo base",model_hint:"Vacío = usa el modelo del Router (default). Setealo solo para forzar un modelo a este agente.",model_ph:"(vacío = router default)",skills_label:"Skills (coma)",bio_label:"Bio / descripción",system_label:"System prompt",system_hint:"Define personalidad y comportamiento (cuerpo del AGENT.md).",master_label:"Orquestador (master)",delete_btn:"Borrar agente",save_btn:"Guardar cambios",delete_confirm:'Borrar el agente "{slug}"? Se elimina .apc/agents/{slug}.md y sus datos runtime locales.',update_success:"Agente actualizado.",delete_success:"Agente borrado.",tools_hint:"Qué tools puede usar el agente. Tocá para activar/desactivar; o editá la lista abajo.",tools_custom_ph:"lista (coma): echo, http_fetch",memory_title:"Memoria del agente",memory_empty:"(memoria vacía)",memory_saved:"Memoria guardada.",records_title:"Records",records_desc:"Log de actividad del agente (mensajes/acciones). Lo más nuevo primero.",sleep_title:"Sleep / Heartbeat",sleep_desc:"Estado de ejecución del agente, derivado de sus rutinas.",sleep_deep:"Deep sleep · sin heartbeat",sleep_deep_desc:"Este agente no tiene ninguna rutina que lo dispare. No se ejecuta de forma autónoma; solo responde cuando lo invocás (chat / tarea).",brain_title:"Brain",brain_desc:"Grafo de relaciones reales del agente: memoria, threads, tasks, heartbeats y jerarquía. (primera versión — lo refinamos)",brain_empty:"Aún no hay relaciones para graficar (sin memoria, threads, tasks ni rutinas).",msgs_count:"msgs"},mcps:{title:"MCP servers",subtitle:"3 scopes: Runtime > Shared > Global. Conflictos arriba si los hay.",empty:"Sin MCPs configurados.",new:"MCP",delete_confirm:"Borrar MCP {name} de scope {scope}?",conflicts:"⚠ Conflictos: {names}",conflict_detail:"{name} está definido en {winner} y {loser}. Se usa {winner}; {loser} queda ignorado.",new_title:"Nuevo MCP",edit_title:"Editar MCP",new_desc:"Se guarda según el scope elegido. Los valores con ${var.X} se resuelven al arrancar el MCP.",scope_label:"Scope",scope_runtime:"Runtime",scope_shared:"Shared",scope_global:"Global",source_runtime:"Runtime",source_apc:"APC / Shared",source_claude:"Claude",source_codex:"Codex",source_cursor:"Cursor",source_vscode:"VS Code",source_roo:"Roo",source_gemini:"Gemini",scope_runtime_desc:"Solo este proyecto · con secrets · no se commitea (~/.apx/projects/<id>/mcps.json)",scope_shared_desc:"Solo este proyecto · committeable · sin secrets (.apc/mcps.json)",scope_global_desc:"Todos los proyectos de esta máquina (~/.apx/mcps.json)",transport_stdio:"stdio",transport_http:"HTTP",transport_stdio_desc:"Proceso local — `command` + args",transport_http_desc:"Endpoint remoto — URL + headers",transport_label:"Transport",name_label:"Nombre",name_ph:"my-mcp",cmd_label:"Comando",cmd_ph:"npx",args_label:"Args",args_hint_tokens:"Una entrada por argumento. Usá el botón + para insertar variables.",env_label:"Env",env_hint_tokens:"Pares clave/valor. Los valores aceptan ${var.NOMBRE} (botón + a la derecha).",env_empty:"Sin variables de entorno.",url_label:"URL",url_ph:"https://example.com/v2/mcp",headers_label:"Headers",headers_hint:"Pares clave/valor — típicamente Authorization: Bearer ${var.TOKEN}.",headers_empty:"Sin headers.",enabled_label:"Habilitado",add_btn:"Agregar",save_btn:"Guardar",add_arg:"Agregar arg",edit_btn:"Editar",test_btn:"Probar",logs_btn:"Logs",testing:"Probando…",test_ok:"OK · {n} tools disponibles",tools_count:"{n} tools",logs_title:"Logs · {name}",logs_empty:"Sin logs todavía. Arrancá el MCP llamando un tool o probando.",logs_events:"Eventos recientes",logs_stderr:"stderr (últimos 4KB)",logs_panel_title:"Live logs",logs_panel_pick:"elegí un MCP",logs_panel_hint:"Click un MCP de la lista para ver lo que está pasando en vivo.",logs_panel_idle:"Sin actividad. Apretá Probar para arrancarlo.",name_required:"Nombre requerido",removed:"eliminado",added:"MCP agregado.",updated:"MCP actualizado."},vars:{title:"Variables",subtitle_project:"Reemplazan ${var.NOMBRE} al cargar MCPs y plantillas. Las del proyecto ganan sobre las globales. Se guardan fuera del repo (~/.apx/, chmod 0600).",subtitle_base:"Variables globales — disponibles para todos los proyectos. Se guardan en ~/.apx/vars.json (chmod 0600).",empty:"Sin variables todavía.",new:"Variable",new_title:"Nueva variable",edit_title:"Editar variable",new_desc:"Se referencia como ${var.NOMBRE} en cualquier campo que soporte interpolación.",reveal_all:"Mostrar valores",reveal:"Mostrar",hide:"Ocultar",filter_label:"Mostrar:",filter_all:"Todas",filter_project:"Sólo proyecto",filter_global:"Sólo globales",scope_label:"Scope",scope_project:"proyecto",scope_project_desc:"Sólo este proyecto. Pisa la global con mismo nombre.",scope_global:"global",scope_global_desc:"Disponible en todos los proyectos.",name_label:"Nombre",name_hint:"Mayúsculas, dígitos y _. P. ej.: MY_API_KEY, GITHUB_TOKEN.",value_label:"Valor",value_hint:"Se guarda en disco con permisos 0600. Nunca se commitea.",value_edit_ph:"(dejá vacío para no cambiarlo… aún no soportado, pegá el valor de nuevo)",add_btn:"Agregar",save_btn:"Guardar",edit_btn:"Editar",delete_btn:"Borrar",delete_confirm:"¿Borrar {name} ({scope})?",removed:"Variable eliminada.",added:"Variable agregada.",updated:"Variable actualizada.",name_required:"Nombre requerido.",value_required:"Valor requerido."},threads:{title:"Chats",subtitle:"Conversaciones por agent (vacío = ningún log persistido todavía).",no_agents:"No hay agents. Las conversaciones requieren un agent configurado.",pick:"Elegí un agent para ver sus conversaciones.",empty:"No hay conversaciones para {slug}.",conversation_title:"Conversación {id}",messages:"mensajes",via:"via"},config:{title:"Config rápida",subtitle:"Override del proyecto. Se escribe en {path}.",model:"super_agent.model",model_hint:"ej. anthropic:claude-sonnet-4.5, ollama:gemma2:9b",perm:"super_agent.permission_mode",route:"route_to_agent",route_hint:"Slug del agent que atiende por defecto en este proyecto.",use_global:"(usa global)",saved:"Guardado.",nothing:"Nada para guardar.",raw_title:"Config (JSON crudo)",raw_subtitle:"Pegá el objeto entero — equivale a PUT del archivo.",raw_save:"Reemplazar config",raw_done:"Config sobrescrita.",effective:"Effective config (read-only)",effective_sub:"Lo que ve realmente el daemon (global ⊕ override).",section_title:"Config proyecto",section_desc:"APC metadata y overrides separados. General APX vive en Settings > Config.",effective_read:"Lectura: global APX + override proyecto.",save_project:".apc/project.json guardado.",save_override:".apc/config.json guardado.",save_fields_success:"Overrides guardados.",save_meta_success:"Project metadata guardado.",no_data:"Sin datos."},telegram:{title:"Canal de Telegram (override)",subtitle:"Si seteás un canal acá, los mensajes generados por este proyecto se mandan ahí en lugar del default.",use_default:"Usar el canal default",bot_token:"Bot token (override)",chat_id:"Chat ID (override)",saved:"Override guardado.",cleared:"Override eliminado — vuelve al default.",override_active:"override activo",channel_badge:"Canal {name}",no_override:"Sin override. Los mensajes de este proyecto van al canal default.",respond_engine:"Responder con engine",route_agent:"route_to_agent",route_hint:"Slug del agent que atiende (vacío = super-agent).",bot_hint_none:"Si vacío, hereda del default."},memories:{project_title:"Memoria del proyecto",project_desc:"Hechos durables a nivel proyecto. .apc/memory.md — la leen los agentes y el super-agente.",project_ph:`# Memoria del proyecto
717
-
718
- Hechos estables que cualquier agente debería saber…`,agents_title:"Memorias de agentes",agents_desc:"Memoria individual por agente. ~/.apx/projects/<id>/agents/<slug>/memory.md",no_agents:"Sin agentes en este proyecto.",saved:"Memoria guardada.",empty:"(memoria vacía)",chars:"chars · Markdown",save_btn:"Guardar"}},base:{title:"Base",subtitle:"Espacio general · super-agente",nav_general:"General",nav_activity:"Actividad",nav_system:"Sistema",workspaces_title:"Workspaces",workspaces_desc:"Todos los proyectos registrados en APX.",workspaces_new:"Nuevo proyecto",workspaces_empty:"Sin proyectos. Agregá uno con el botón de arriba.",sessions_title:"Sessions",sessions_desc:"Sesiones de todos los engines (apx · claude · codex), más nuevas primero.",sessions_all:"Todos los engines",sessions_empty:"Sin sesiones.",sessions_error:"No pude leer las sesiones: {msg}",sessions_search_ph:"Buscar sesiones…",sessions_deep:"Profundo",sessions_deep_tip:"También busca dentro de los transcripts (más lento)",sessions_clear:"Limpiar filtros",sessions_refresh:"Refrescar lista",sessions_no_match:"Ninguna sesión coincide con «{q}».",sessions_act_cmd:"Copiar comando apx",sessions_act_ask:"Pedir a {name} que continúe",sessions_act_folder:"Abrir carpeta",sessions_act_path:"Copiar ruta",sessions_cmd_copied:"Comando copiado — pegalo en tu terminal",sessions_path_copied:"Ruta copiada",sessions_copy_failed:"No se pudo copiar",sessions_no_folder:"Esta sesión no tiene carpeta",sessions_no_path:"Esta sesión no tiene ruta",sessions_folder_failed:"No se pudo abrir la carpeta: {msg}",defaults_title:"Agent defaults",defaults_desc:"Plantillas globales del vault. Las bundled vienen con APX y siempre están; las que crees o edites quedan en ~/.apx/agents y se superponen. Importalas a un proyecto desde Agents › Importar.",defaults_show_removed:"Mostrar removidos",defaults_new:"Nuevo",defaults_empty:"Sin plantillas en el vault.",defaults_hide:"Ocultar",defaults_restore:"Restaurar",defaults_edit:"Editar",defaults_remove:"Ocultar",defaults_delete:"Borrar",defaults_tombstone_msg:'Ocultar el default "{slug}"? Es bundled — quedá tombstoneado y lo recuperás con Restaurar.',defaults_delete_msg:'Borrar el template "{slug}"?',defaults_hidden:"Ocultado.",defaults_deleted:"Borrado.",defaults_restored:"Restaurado.",defaults_new_title:"Nuevo template",defaults_new_desc:"POST /agents/vault — se guarda en ~/.apx/agents/<slug>.md",defaults_edit_title:'Editar "{slug}"',defaults_bundled_desc:"Es un default bundled. Al guardar se hace copy-on-write a ~/.apx/agents/<slug>.md (queda como override).",defaults_user_desc:"PATCH /agents/vault/:slug — edita el archivo en ~/.apx/agents.",defaults_master_label:"Agente master",defaults_slug_invalid:"slug inválido (debe matchear /^[a-z][a-z0-9_-]*$/)",defaults_created:'Template "{slug}" creado.',defaults_saved:'Template "{slug}" guardado.'},logs:{title:"Logs",desc_global:"Actividad del daemon (canales globales: telegram, direct…). ~/.apx/messages/<channel>/.",desc_project:"Actividad del proyecto. ~/.apx/projects/<id>/messages/.",filter_channel:"filtrar canal (ej. telegram)",filter_dir:"dirección",all_directions:"Todas las direcciones",in:"Entrada (in)",out:"Salida (out)",filter_type:"tipo",all_types:"Todos los tipos",search_text:"buscar en el texto…",count_of:"de",no_activity:"Sin actividad.",no_activity_ch:'Sin actividad en el canal "{ch}".',error:"No pude leer los mensajes: {msg}",show_more:"ver más",show_less:"ver menos",daemon_errors:"Errores del daemon (~/.apx/logs/errors.jsonl)",no_errors:"Sin errores registrados. 🎉"},telegram_contacts:{title:"Contactos de Telegram",desc:"Quién le escribe a los bots. El rol define qué herramientas puede usar; un invitado no tiene permisos hasta que le asignes un rol.",empty:"Todavía no hay contactos — se registran solos cuando alguien escribe a un bot.",owner_badge:"dueño",assign_role:"Asignar rol",owner_hint:"Es dueño de un canal — cambialo desde el canal",removed:"Contacto eliminado.",delete_confirm:"¿Borrar el contacto {name}?",last_seen:"visto:",tools_all:"tools: todas",tools_none:"tools: ninguna",tools_label:"tools:"},telegram_channels:{title:"Canales",desc:"Cada canal es un bot que el daemon polea. Acá podés añadir/quitar canales, cambiar el agente que contesta, el proyecto al que pertenece y su dueño.",new_btn:"Nuevo canal",empty:"Todavía no hay canales — agregá el primero.",removed:"Canal eliminado.",delete_confirm:"¿Borrar el canal {name}?",no_owner:"sin dueño (se reclama al primer DM)",owner_label:"dueño:"},telegram_channel_dialog:{new_title:"Nuevo canal de Telegram",edit_title:"Editar canal: {name}",name_label:"name (slug interno)",token_label:"bot_token",chat_id:"chat_id",project_label:"project",project_hint:"Slug o id del proyecto al que pinear este canal (opcional).",route_label:"route_to_agent",route_hint:"Agente que contesta; vacío = super-agent APX.",owner_label:"owner_user_id",owner_hint:"user_id de Telegram del dueño de este canal. Override del rol global a 'owner' acá. Si lo dejás vacío, el primer mensaje privado lo reclama.",owner_ph:"889721252",respond_label:"Responder con engine (no echo)",name_required:"name requerido",saved:"Canal guardado."},telegram_send_dialog:{title:"Enviar a {name}",default_msg:"Mensaje de prueba desde el panel de APX ✅"},telegram_roles:{title:"Roles",desc:"Cada rol define qué herramientas del super-agent puede usar quien lo tenga asignado. 'owner' siempre = todas; 'guest' siempre = ninguna (solo chat).",empty:"No hay roles definidos.",tools_all:"todas las herramientas",tools_none:"ninguna herramienta",builtin:"built-in",delete_confirm:'¿Borrar el rol "{name}"?',removed:"Rol eliminado.",saved:'Rol "{name}" guardado.',name_required:"Nombre requerido.",builtin_error:'"{name}" es un rol built-in.',new_title:"Nuevo rol o reemplazar uno custom",name_label:"Nombre",name_ph:"editor",tools_label:"Tools (separadas por coma)",tools_hint:"Vacío = ninguna. Ejemplos: call_agent, list_tasks, create_task.",tools_ph:"call_agent, list_tasks",full_access:"Acceso total (todas las tools)",save_btn:"Guardar rol",delete_btn:"Borrar"},superagent:{title:"{persona}",badge:"super-agent · APX",desc:"Conversación rápida con tu super-agente. Tiene acceso a tools (proyectos, tasks, mcps, agentes); para un hilo más largo y persistente, abrí Chats.",empty:"Mandale un mensaje a {persona} para arrancar.",thinking:"{persona} está pensando…",talk:"Hablar con {persona}",new_chat:"Nuevo chat",placeholder:"Escribí y enter para enviar (shift+enter = nueva línea)…"},not_found:{title:"404",message:"Roby se perdió: esta página no existe o se movió.",home:"Volver al inicio"},ask_panel:{answers_header:"Respuestas",other:"Otro",other_placeholder:"Escribí tu propia respuesta acá",text_placeholder:"Escribí tu respuesta…",back:"Atrás",skip:"Omitir",next:"Siguiente",submit:"Enviar",status_waiting:"Esperando respuesta…",status_received:"Respuestas recibidas"},code_module:{title:"Code",badge:"super-agent",desc:"Sesiones de código estilo OpenCode. Elegí un proyecto, abrí una sesión y pedile que lea, planifique, edite o ejecute.",no_projects:"No hay proyectos registrados. Registrá uno con `apx project add` para usar Code.",sessions:"Sesiones",new_session:"Nueva sesión",untitled:"Nueva sesión",no_sessions:"Todavía no hay sesiones — creá una para empezar a codear.",pick_project:"Elegí un proyecto para ver sus sesiones.",rename:"Renombrar",delete:"Eliminar",delete_confirm:"¿Eliminar esta sesión? Se borra la transcripción; tus archivos quedan intactos.",empty_chat:"Mandá una instrucción de código para arrancar.",placeholder:"Pedí un cambio… (enter envía, shift+enter = nueva línea)",mode_build:"Build",mode_plan:"Plan",mode_build_hint:"Build — edita archivos y ejecuta comandos",mode_plan_hint:"Plan — solo lectura, propone cambios sin tocar archivos",tab_context:"Contexto",tab_changes:"Cambios",tab_artifacts:"Artifacts",artifacts_none:"Todavía no hay artifacts. Pedile al agente que cree un script en `artifacts/<nombre>`.",artifacts_count:"{n} artifact(s)",artifacts_copy_path:"Copiar path",artifacts_run:"Run",artifacts_run_hint:"Para ejecutarlo desde la terminal:",artifacts_delete:"Eliminar",artifacts_delete_confirm:"¿Eliminar este artifact? El archivo se borra del disco.",ctx_model:"Modelo",ctx_tokens:"Tokens",ctx_input:"Entrada",ctx_output:"Salida",ctx_messages:"Mensajes",ctx_breakdown:"Desglose de contexto",ctx_none:"Sin uso todavía — mandá un turno para ver tokens.",seg_system:"Sistema",seg_user:"Usuario",seg_assistant:"Asistente",seg_tool:"Tools",seg_other:"Otro",changes_none:"Todavía no hay cambios en esta sesión.",changes_no_git:"Los cambios necesitan un repo git. Este proyecto no lo es.",changes_files:"{n} archivo(s) cambiados",stopped:"[detenido]",close:"Cerrar",reload:"Recargar",discard_changes:"Descartar cambios",save_shortcut_hint:"Guardar (Cmd/Ctrl+S)",artifacts_rename:"Renombrar",artifacts_view:"Ver contenido",artifacts_edit:"Editar contenido",tree_collapse_all:"Colapsar todo",terminal_clear:"Limpiar",terminal_close:"Cerrar terminal"},desktop_screen:{status_title:"Estado",autostart_title:"Arranque automático",shortcut_title:"Atajo de teclado",appearance_title:"Apariencia",activation_title:"Activación + transcripción",last_conv_title:"Última conversación",open_config:"Configuración"},voice_screen:{providers_title:"Proveedores de voz (TTS)",test_title:"Probar voz",stt_title:"Transcripción (STT)",configure_provider:"Configurar {name}"},deck_screen:{widgets_title:"Widgets",context_title:"Contexto APX",reload_manifest:"Recargar manifest",widget_native:"Widget nativo APX",widget_external:"Widget externo",preview_badge:"Vista previa",preview_title:"Deck — Próximamente",preview_body:"El módulo Deck todavía está en desarrollo y no fue lanzado aún. Lo volveremos a activar cuando Deck salga en una versión estable. Por ahora todo acá es de solo lectura y no se guardará ningún cambio."},memory_panel:{embeddings_title:"Embeddings (RAG)",embeddings_desc:"Modelo que vectoriza el historial de todos los canales para la memoria relevante. Igual que TTS/STT: elegí un proveedor y un modelo. 'Automático' prueba local primero y cae a offline si no hay nada disponible.",provider_label:"Proveedor",provider_hint:"Ollama es local y gratis. Gemini/OpenAI usan la API key de su sección en Modelos (o la de abajo).",mode_label:"Modo de selección",mode_hint:"Cadena cae al siguiente si uno falla; Único usa exactamente el proveedor elegido.",available:"disponible",unavailable:"no disp.",test_btn:"Probar embedding",reindex_btn:"Reindexar memoria",test_ok:"Embedding OK con {embedder}",test_failed:"Test falló: {msg}",reindexed:"Reindexado: {indexed} chunks (limpiados {cleared}).",reindex_failed:"Reindex falló: {msg}",save_failed:"No se pudo guardar: {msg}",provider_auto:"Automático (cadena: Ollama → Gemini → OpenAI → offline)",provider_ollama:"Ollama — local, sin API key (nomic-embed-text)",provider_gemini:"Gemini — free tier con key (text-embedding-004)",provider_openai:"OpenAI — text-embedding-3-small (cloud)",provider_tf:"Offline (term-frequency, sin modelo — degradado)",mode_chain:"Cadena (fallback automático)",mode_single:"Único (usa solo el elegido)",ollama_title:"Ollama (local)",ollama_desc:"Sin API key. Corre nomic-embed-text en tu Ollama local o cloud.",model_label:"Modelo",base_url_label:"Base URL",ollama_base_url_hint:"Vacío usa engines.ollama.base_url (default http://localhost:11434).",openai_title:"OpenAI",openai_desc:"text-embedding-3-small (1536 dims) u otro modelo compatible.",api_key_label:"API key",openai_key_hint:"Vacío reusa engines.openai.api_key. Dejalo en blanco para mantener la guardada.",gemini_title:"Gemini",gemini_desc:"text-embedding-004 (768 dims). Free tier con API key de Google.",gemini_key_hint:"Vacío reusa engines.gemini.api_key.",compaction_title:"Compactación de historial",compaction_desc:"Cuando un chat supera el umbral de turnos, los más viejos se resumen con un LLM liviano (local) y se guardan como [RESUMEN COMPACTADO], manteniendo el contexto acotado. Corre fuera del hot-path: el turno actual usa el resumen que ya exista.",threshold_label:"Umbral de compactación",threshold_hint:"Compactar una vez que el chat supera estos turnos (por defecto 60).",keep_recent_label:"Turnos recientes a preservar",keep_recent_hint:"Turnos verbatim que NUNCA se compactan (por defecto 40). Debe ser menor al umbral.",compact_model_label:"Modelo de compactación",compact_model_hint:"LLM liviano para resumir. Ideal uno local (Ollama) para no gastar. Formato proveedor:modelo.",compact_fallback_label:"Modelo de fallback",compact_fallback_hint:"Se usa si el de compactación falla. Vacío cae al modelo del super-agente.",compact_fallback_ph:"(vacío → modelo del super-agente)"},router_panel:{title:"Router de modelos",description:"Un único router general (sin casos por tarea). Elegí un proveedor y un modelo; si el activo falla, prueba la cadena de fallback en orden.",badge_default:"default",no_providers:"Agregá un proveedor abajo para poder elegir modelos.",active_model_label:"Modelo activo (default)",active_model_hint:"Proveedor + modelo. Se guarda como proveedor:modelo.",fallback_title:"Cadena de fallback",fallback_desc:"Si el modelo activo falla, prueba estos en orden. Click en uno para editarlo.",fallback_empty:"Sin fallback configurado.",add_to_chain:"Agregar a la cadena",done:"listo",save:"Guardar router",saved:"Guardado",saved_toast:"Router guardado.",provider_ph:"— proveedor —",provider_not_found:"⚠ {name} (no encontrado)",provider_not_configured:'El proveedor "{name}" no está configurado.'},engines_panel:{title:"Proveedores",new_btn:"Nuevo proveedor",description:"Proveedores LLM (API). Cada provider usa un engine/adapter (openai, ollama, …) con su key y URL.",empty:"Sin providers. Agregá uno con el botón de arriba.",add_card:"Agregar provider",saved:"Provider guardado.",saved_json:"Provider guardado (JSON).",deleted:"Provider borrado.",delete_confirm:"¿Borrar provider {name}?"},providers_modal:{new_title:"Nuevo proveedor",edit_title:"Editar {name}",description:"Proveedor LLM. El motor (engine) define qué adapter usa (openai, ollama, …).",list_models_hint:"Listar los modelos reales del proveedor",toggle_active:"Activo · click para desactivar",toggle_inactive:"Inactivo · click para activar",delete:"Borrar",custom:"Custom",json_mode:"JSON",form_mode:"Volver al formulario",json_label:"Config del provider (JSON)",json_hint:"Se guarda como engines.{slug} en config.json",json_help:"Debe ser un objeto JSON válido con al menos engine. El slug se toma del formulario.",name_label:"Nombre",name_ph:"Mi provider",engine_label:"Motor (engine)",base_url_label:"URL base (base_url)",base_url_hint:"Se completa sola al elegir un proveedor.",base_url_ph:"https://api.openai.com/v1",api_key_label:"API key",api_key_hint_existing:"Dejá en blanco para mantener la actual.",api_key_hint_env:"Se guarda como secreto. Env sugerida: {env}",api_key_hint:"Se guarda como secreto.",api_key_set:"…{suffix} (ya seteada)",model_label:"Modelo por defecto",load_models:"Cargar modelos",max_tokens_label:"Máx. tokens (max_tokens)",temperature_label:"Temperatura: {value}",pricing_summary:"Análisis de tokens / pricing (opcional)",context_limit_label:"Límite de contexto (tokens)",price_input:"$ entrada / 1M",price_output:"$ salida / 1M",price_cache_read:"$ cache read / 1M",price_cache_write:"$ cache write / 1M",model_limits_label:"Límites de contexto por modelo (JSON)",active_label:"Activo (los agentes pueden usarlo)",err_slug_required:"Slug requerido.",err_slug_required_form:"Slug requerido (en el formulario).",err_slug_exists:'Ya existe un provider "{slug}".',err_model_limits_json:"Límites de contexto por modelo: JSON inválido.",err_json_invalid:"JSON inválido: revisá la sintaxis.",err_json_object:"El JSON debe ser un objeto con la config del provider.",err_engine_missing:'Falta "engine" (ej. "anthropic", "ollama").',err_save:"Error al guardar.",err_no_models:"Sin modelos. ¿Key/URL correctas?",err_list_models:"No se pudo listar modelos."},providers_card:{active:"Activo",off:"Off",model:"Modelo",base_url:"Base URL",api_key:"API key",key_set:"✓ seteada",temp:"Temp",price_io:"$ in/out (1M)"},chat_ui:{copy:"Copiar",stop:"Detener",send:"Enviar",pick_model:"Elegir modelo (o Auto)",insert_variable:"Insertar variable"},sidebar_ui:{toggle:"Mostrar/ocultar sidebar"},models_ui:{invalid_hint:"Modelo/proveedor no disponible"},global_config:{title:"Config APX"},agent_detail_extra:{skills_title:"Skills & tools"},voice_ui:{api_key_label:"API key",api_key_set:"…{suffix} (ya seteada)",api_key_keep_hint:"Dejá en blanco para mantener la actual.",api_key_secret_hint:"Se guarda como secreto. Env: {env}",api_key_reuse_hint:"Si lo dejás vacío, reusa {engine}. Env: {env}",err_save:"Error al guardar.",model_label:"Modelo",voice_label:"Voz",format_label:"Formato",output_format_label:"Formato de salida",voice_id_label:"Voice ID",voice_id_hint:"Voice id de ElevenLabs (vacío = default).",gemini_model_hint:"El TTS de Gemini todavía está en preview.",base_url_label:"Base URL (opcional)",base_url_hint:"Endpoint compatible con OpenAI. Vacío = OpenAI. Apuntalo a un servidor local (ej. un daemon QVox / Qwen3-TTS) para usar ese en su lugar.",openai_model_hint:"tts-1 / tts-1-hd para OpenAI. Dejalo vacío para que un servidor custom elija.",openai_voice_hint:"Preset de OpenAI (alloy…) o preset de tu servidor custom (ej. custom). Vacío = default del servidor.",openai_style_hint:"Voz base / instruct, usada por endpoints custom (la persona que se mantiene en todo el audio). El tts-1 de OpenAI la ignora.",style_label:"Estilo (cómo debería hablar)",style_hint:"Instrucción en lenguaje natural. Vacío = sin estilo. Ej.: 'hablá en un tono alegre y pausado'.",style_ph:"hablá en un tono alegre y enérgico",temperature_label:"Temperatura (opcional)",temperature_hint:"Temperatura de sampleo para endpoints custom. Vacío = default del servidor.",emotions_short:"Emociones",emotions_label:"Tags de emoción inline",emotions_hint:"Cuando hable este motor, deja que el agente meta tags tipo [happy]/[whisper] en las respuestas de voz para darles color. Activalo solo si este motor entiende los tags (ej. un endpoint QVox/Qwen3-TTS) — si no, se quitan antes de sintetizar.",emotions_tags_label:"Tags permitidos",emotions_tags_hint:"Separados por coma. Vacío = el set por defecto.",piper_bin_label:"Binario (bin)",piper_bin_hint:"Ruta o nombre del CLI de piper (PATH).",piper_model_label:"Modelo (.onnx)",piper_model_hint:"Ruta absoluta al modelo de voz de piper.",piper_speaker_label:"Speaker (opcional)",piper_speaker_hint:"Speaker id para modelos multi-voz.",mock_desc:"El engine mock genera un WAV de prueba en silencio. No tiene parámetros: sirve como fallback garantizado cuando no hay ningún otro engine configurado.",selection_mode:"Modo de selección",mode_chain_desc:"Cadena con fallback: usa el primer engine disponible siguiendo el orden de abajo.",mode_single_desc:"Solo engine default: siempre usa el elegido; el resto queda configurado para otros usos.",mode_chain_btn:"Cadena (router)",mode_single_btn:"Solo engine default",move_up:"Subir",move_down:"Bajar",badge_local:"local",badge_available:"disponible",badge_unavailable:"configurado, no disponible",badge_not_configured:"sin configurar",badge_default:"default",badge_custom:"custom",set_as_default:"Usar como default",configure:"Configurar",remove:"Quitar",remove_confirm:"¿Quitar este proveedor custom?",add_provider:"Agregar proveedor",new_provider:"Nuevo proveedor",custom_note:"Endpoint custom compatible con OpenAI.",custom_desc:"Cualquier endpoint de voz compatible con OpenAI (ej. un servidor local QVox / Qwen3-TTS).",label_label:"Nombre",label_hint:"Nombre para mostrar de este proveedor.",base_url_req_label:"Base URL",base_url_req_hint:"Requerido. El endpoint compatible con OpenAI, ej. http://127.0.0.1:5111/v1",api_key_optional_hint:"Opcional — solo si tu servidor pide key.",advanced:"Avanzado",custom_model_hint:"Opcional. La mayoría de los servidores locales lo ignoran (ej. QVox).",custom_voice_hint:"Opcional. Un preset que entienda tu servidor (ej. custom). Vacío = default del servidor.",custom_optional_ph:"(opcional)",stt_engine_label:"Engine de transcripción",stt_engine_hint:"Local usa faster-whisper (requiere python3 + faster-whisper). OpenAI usa la key de engines.openai.",stt_model_label:"Modelo local (whisper)",stt_model_hint:"Más grande = más preciso y más lento.",stt_language_label:"Idioma",stt_language_hint:'Para español, elegir "Español" mejora la precisión.',stt_provider_auto:"Automático (local, después remoto)",stt_provider_local:"Local — faster-whisper (offline)",stt_provider_openai:"OpenAI — Whisper-1 (cloud)",stt_provider_custom:"Custom — server OpenAI-compatible",stt_openai_model_label:"Modelo OpenAI",stt_openai_model_hint:"Por defecto whisper-1.",stt_custom_baseurl_label:"URL base (OpenAI-compatible)",stt_custom_baseurl_hint:"Ej: http://localhost:8000/v1 (mlx-audio en Metal) o http://192.168.1.50:9000/v1 (Radeon/NVIDIA en la red).",stt_custom_model_label:"Modelo",stt_custom_model_hint:"Ej: mlx-community/whisper-large-v3-turbo o large-v3.",stt_custom_key_hint:"Opcional — la mayoría de los servers locales no requieren key.",stt_hw_label:"Hardware detectado",stt_hw_recommended:"Recomendado",stt_hw_limited:"aceleración GPU limitada, se usa CPU",stt_backend_label:"Aceleración / Motor",stt_backend_hint:"Auto elige según tu hardware. Metal corre en la GPU (mlx); CPU usa faster-whisper.",stt_backend_auto:"Automático (recomendado)",stt_model_needs_download:"Falta descargar (~{size}). Hay que bajar el modelo para usar este motor.",lang_auto:"Detección automática",lang_es:"Español",lang_en:"Inglés",lang_pt:"Portugués",lang_fr:"Francés",lang_it:"Italiano",lang_de:"Alemán",test_default_text:"Hola, soy APX. Esto es una prueba de voz.",test_default_engine:"Default ({name})",test_default_chain:"Default (cadena)",test_unavailable_suffix:" · no disponible",test_empty_error:"Escribí algo para decir.",test_synth_error:"No se pudo sintetizar.",test_engine_label:"Engine",test_engine_hint:"Override del default para probar.",test_style_label:"Estilo (solo Gemini)",test_style_hint:"Cómo debería hablar. Vacío = sin estilo.",test_text_label:"Texto a decir",test_text_ph:"Escribí lo que querés que diga…",say_this:"Decir esto",stop:"Detener",replay:"Repetir",engine_result:"Engine",providers_desc:"Engines de síntesis, en orden de fallback. El estado lo reporta el daemon en vivo. Agregá tus propios endpoints compatibles con OpenAI.",providers_load_error:"No pude cargar los proveedores: {msg}",test_desc:"Elegí con qué engine sintetizar y, si aplica, cómo debería hablar.",stt_desc:"Engine de speech-to-text que usan el deck, Telegram y la CLI al escuchar.",toast_default_engine:"Engine default: {id}.",toast_mode_chain:"Modo: cadena con fallback.",toast_mode_single:"Modo: solo engine default.",toast_config_saved:"Configuración de voz guardada.",toast_provider_removed:"Proveedor eliminado.",err_label_required:"Falta el nombre.",err_base_url_required:"Falta la base URL.",toast_transcription_updated:"Transcripción actualizada."},telegram_ui:{channel_dialog_desc:"POST /telegram/channels (upsert) — PATCH /telegram/channels/:name (parcial).",bot_token_hint:"Token de BotFather. Se guarda en ~/.apx/config.json.",bot_token_hint_short:"Token de BotFather.",secret_set_replace:"(seteado — escribí para reemplazar)",secret_already_set:"(ya seteado)",empty_keep:"— vacío = mantener",message_sent:"Mensaje enviado.",message_label:"Texto",send_chat_id:"chat_id: {id}",default_apx:"APX por defecto",yes:"sí",no:"no",user_id_fallback:"user_id {id}",role_assigned:"{name} → {role}"},agents_form:{emoji:"Emoji",area:"Área",role:"Rol",no_role:"— sin rol —",autonomy:"Autonomía",autonomy_hint:"Cuánto puede hacer el agente sin pedir confirmación.",auto_total:"Total",auto_automatico:"Auto",auto_permiso:"Permiso"},structure:{title:"Estructura",subtitle:"Áreas y roles de la empresa. Las áreas agrupan agentes; los roles definen su función.",info:"Las áreas son agrupaciones opcionales. Los roles definen la función de un agente y pueden pertenecer a un área.",empty:"Todavía no hay áreas ni roles. Creá el primero arriba.",new_area:"Nueva área",new_role:"Nuevo rol",edit_area:"Editar área",edit_role:"Editar rol",create_area:"Crear área",create_role:"Crear rol",name:"Nombre",slug:"Slug",goal:"Objetivo",goal_hint:"Para qué existe esta área (opcional).",area:"Área",description:"Descripción",no_area:"— sin área —",roles:"Roles",add_role:"rol",no_roles:"sin roles",general_roles:"Roles generales",delete_area:"Borrar área",delete_role:"Borrar rol",delete_area_desc:'¿Borrar el área "{name}"? Sus roles quedan sin área, no se eliminan.',delete_role_desc:'¿Borrar el rol "{name}"?'},files:{docs_label:"Docs",files_label:"Archivos",new_doc:"Nuevo documento",new_doc_hint:"Podés usar carpetas: cases/onboarding/spec.md",empty:"No hay archivos.",docs_empty:"Todavía no hay documentación. Creá el primer documento.",truncated:"Listado recortado (demasiados archivos).",select_prompt:"Elegí un archivo para verlo.",save:"Guardar",saved:"Guardado.",deleted:"Eliminado.",created:"Documento creado.",edit:"Editar",preview:"Preview",discard:"Descartar",no_preview:"No hay preview para este archivo.",too_large:"Archivo demasiado grande para mostrar.",path_label:"Ruta del archivo",path_example:"ej. cases/onboarding/spec.md",create:"Crear"},tasks:{state_open:"abiertas",state_done:"hechas",state_dropped:"descartadas",status_pending:"pendiente",status_running:"corriendo",status_in_review:"en revisión",status_blocked:"bloqueada",done_label:"hecha",dropped_label:"descartada",detail_title:"Detalle de task",field_title:"Título",field_prompt:"Prompt",field_status:"Estado",field_agent:"Agente",field_creator:"Creada por",field_source:"Origen",field_created:"Creada",field_updated:"Actualizada",field_done:"Completada",prompt_ph:"Descripción / prompt de la task…",toggle_prompt:"Prompt",view_thread:"Ver conversación",mark_done:"Completar"},agents_ui:{model_router_default:"modelo: default del router",slug_kebab_hint:"kebab-case, ej. reviewer, my-agent, content-writer",comma_separated:"separadas por coma",body_hint:"markdown — extiende el system prompt del agente",source_user:"user",source_override:"override",source_bundled:"bundled",tab_explorer:"Explorador",type_none:"— sin tipo —",type_orchestrator:"Orquestador",type_orchestrator_desc:"Coordina el equipo y delega.",type_specialist:"Especialista",type_specialist_desc:"Experto en el dominio; corre tareas.",type_assistant:"Asistente",type_assistant_desc:"Ayudante conversacional.",type_worker:"Worker",type_worker_desc:"Corre tareas autónomas.",type_monitor:"Monitor",type_monitor_desc:"Vigila el estado y reporta.",stat_threads:"Threads",stat_records:"Records",stat_tasks:"Tasks",stat_heartbeats:"Heartbeats",config_def_desc:"definición (frontmatter + system prompt).",memory_durable_desc:"hechos durables que el agente recuerda.",running:"running",paused:"pausada",last_error:"última: error",field_tick:"Tick",field_next_tick:"Próximo tick",field_last_tick:"Último tick",field_last_run:"Última corrida",tools_label:"Tools",kind_agent:"agente",kind_memory:"memoria",kind_thread:"thread",kind_task:"task",kind_routine:"rutina",kind_hierarchy:"jerarquía",nodes_drag_hint:"{n} nodos · arrastrá para reordenar",kind_exec_agent:"Agente del proyecto",kind_exec_agent_desc:"Corre un agente del proyecto con un prompt. Vos elegís cuál.",kind_super_agent:"Super-agente",kind_super_agent_desc:"Llama al super-agente APX con un prompt.",kind_telegram:"Telegram",kind_telegram_desc:"Manda un mensaje fijo a un canal de Telegram. Sin modelo ni agente.",kind_shell:"Shell",kind_shell_desc:"Corre un comando shell. Sin prompt ni pre/post — el comando es la acción.",kind_heartbeat:"Heartbeat",kind_heartbeat_desc:"No hace nada salvo escribir una línea en los logs cada vez que corre. Sirve para confirmar que el scheduler está vivo. Si no sabés si lo necesitás, no lo uses.",unit_seconds:"segundos",unit_minutes:"minutos",unit_hours:"horas",unit_days:"días",every_n_unit:"cada {n} {unit}",every_v:"cada {v}",preset_every_10m:"cada 10 min",preset_hourly:"cada hora",preset_daily_9am:"diario 9am",preset_weekdays_9am:"días hábiles 9am",preset_manual:"Manual",var_pre_output_prompt:"Salida de texto de los pre-commands. Se reemplaza dentro del prompt/texto antes de enviarlo. Útil para inyectar datos frescos (clima, una API) en la instrucción.",var_llm_output:"Respuesta final del agente o super-agente. Disponible en los post-commands como variable de entorno. Ej: reenviarla por Telegram.",var_status:"Resultado de la acción: ok o error. Disponible en los post-commands para decidir qué hacer después.",var_skipped:"Vale 1 si la acción se salteó (por skip_prompt_on), 0 si corrió. Disponible en los post-commands.",var_pre_output:"Salida completa de los pre-commands, como variable de entorno en los post-commands (hasta 32k).",var_pre_output_file:"Ruta a un archivo temporal con la salida de los pre-commands. Para salidas grandes que no convienen como variable.",var_pre_exit:"Código de salida del último pre-command (0 = ok). Disponible en los post-commands.",var_routine:"Nombre de esta rutina. Disponible como variable de entorno en los comandos.",summary_runs_agent:'Corre el agente "{agent}"',summary_runs_agent_none:"Corre un agente (todavía no elegiste cuál)",summary_super_agent:"Llama al super-agente",summary_telegram:'Manda Telegram a "{channel}"',summary_runs_cmd:"Corre: {cmd}",summary_shell:"Corre un comando shell",summary_heartbeat:"Deja un heartbeat en los logs",action_agent_answers:'El agente "{agent}" responde el prompt',action_agent_pick_answers:"El agente (elegí uno) responde el prompt",action_super_answers:"El super-agente responde el prompt",action_telegram_channel:'Manda Telegram al canal "{channel}"',action_runs_shell:"Corre el comando shell",step_pre:"Pre",step_post:"Post",last_label:"última:",tg_chat_id_ph:"(usa el del canal)",tg_text_ph:"mensaje a enviar",hb_message_ph:"sigo vivo",arg_placeholder:"--flag o valor",remove_arg:"quitar arg",super_agent_label:"{persona} (super-agente)",super_agent_badge:"super-agente"},modules_ui:{desktop_pos_left:"Izquierda",desktop_pos_center:"Centro",desktop_pos_right:"Derecha",desktop_theme_system:"Sistema",desktop_theme_light:"Claro",desktop_theme_dark:"Oscuro",desktop_status_desc:"La ventana se abre desde la terminal o por arranque automático.",desktop_running:"Corriendo",desktop_stopped:"Detenida",desktop_refresh:"refrescar",desktop_start:"Iniciar",desktop_stop:"Detener",desktop_restart:"Reiniciar",desktop_restart_hint:"Recarga la ventana abierta para aplicar ya los cambios de config (tema, posición).",desktop_restart_done:"Reiniciando la ventana — aplicando la última config.",desktop_restart_none:"No hay ninguna ventana de desktop conectada.",desktop_start_done:"Ventana de desktop iniciada.",desktop_start_already:"La ventana de desktop ya estaba corriendo.",desktop_stop_done:"Ventana de desktop detenida.",desktop_stop_none:"No había ninguna ventana de desktop corriendo.",desktop_from_terminal:"Desde la terminal:",desktop_autostart_desc:"Abre la ventana al iniciar sesión. Equivale a `apx desktop install` (no requiere sudo).",desktop_platform:"plataforma: {platform}",desktop_shortcut_desc:"Atajo global que muestra/oculta la ventana y empieza a escuchar.",desktop_accelerator:"Acelerador",desktop_accelerator_hint:"Hacé clic en el campo y apretá tu combinación de teclas. Reiniciá la ventana para aplicar.",desktop_shortcut_record:"Hacé clic para definir un atajo",desktop_shortcut_recording:"Apretá tu combinación…",desktop_shortcut_change:"clic para cambiar",desktop_shortcut_esc:"Esc para cancelar",desktop_shortcut_saved:"Atajo guardado. Reiniciá la ventana (apx desktop stop && start) para aplicarlo.",desktop_autostart_on:"Arranque automático habilitado para el próximo inicio de sesión.",desktop_autostart_off:"Arranque automático deshabilitado.",desktop_appearance_desc:"Tema de la ventana y posición en la pantalla.",desktop_theme:"Tema",desktop_restart_apply:"Reiniciá la ventana para aplicar.",desktop_theme_set:"Tema: {value}.",desktop_position:"Posición",desktop_position_hint:'"izquierda" / "centro" / "derecha" del borde superior.',desktop_position_set:"Posición: {value}.",desktop_activation_desc:"El plugin del daemon procesa los mensajes. El STT se configura en Voces.",desktop_enabled_toast:"Escritorio habilitado.",desktop_disabled_toast:"Escritorio deshabilitado.",desktop_plugin_on:"Plugin habilitado (responde mensajes)",desktop_plugin_off:"Plugin deshabilitado",desktop_stt_engine:"Motor de speech-to-text:",desktop_stt_engine_suffix:"(whisper local, idioma, modelo).",desktop_last_conv_desc:"El último intercambio con el agente desde la ventana flotante.",desktop_no_messages:"Todavía no hay mensajes. Mandá algo a la ventana de escritorio para que aparezca acá.",desktop_you:"Vos",desktop_roby:"Roby",desktop_empty_msg:"(vacío)",deck_widget_enabled:"Widget {id} habilitado.",deck_widget_disabled:"Widget {id} deshabilitado.",deck_save_error:"Error al guardar",deck_loading_manifest:"Cargando manifest…",deck_manifest_error:"Error al cargar el manifest.",deck_widgets_summary:"{count} widgets · {enabled} externos habilitados",deck_loading_manifest_full:"Cargando el manifest del Deck…",deck_manifest_load_failed:"No se pudo cargar el manifest del Deck.",deck_retry:"Reintentar",deck_no_widgets:"No hay widgets en el manifest.",deck_context_desc:"Información que el Deck ve desde el daemon.",deck_active_project:"Proyecto activo:",deck_none:"ninguno",deck_registered_projects:"Proyectos registrados:",deck_active_plugins:"Plugins activos:",deck_daemon_active:"activo · {uptime}",deck_daemon_started:"iniciado",deck_safety_no_shell:"sin shell directo",deck_safety_no_arbitrary:"comandos arbitrarios bloqueados",deck_safety_confirm:"las acciones peligrosas requieren confirmación",code_copied:"Copiado.",code_saved:"Guardado.",code_file_empty:"(vacío)",code_file_error:"Error: {msg}",code_stream_error:"error",code_super_agent:"super-agent",code_super_agent_desc:"Agente principal con todas las tools",code_chat_tab:"Chat",code_panel_sessions:"Lista de sesiones",code_panel_tree:"Árbol de archivos",code_panel_terminal:"Terminal",code_panel_context:"Panel de contexto",code_ctx_auto:"auto",code_ctx_mode:"Modo",code_ctx_agent:"Agente",code_ctx_msgs_value:"{user} usuario · {assistant} asistente",code_ctx_tokens_total:"Tokens Total",code_ctx_created:"Creado",code_ctx_activity:"Actividad",code_project_fallback:"proyecto {id}",code_pick_project_ph:"Elegí un proyecto…",code_artifact_exit_ok:"exit 0 — {ms}ms",code_artifact_exit_fail:"exit {code}{timeout}",code_artifact_timeout_suffix:" (timeout)",code_artifact_view_short:"Ver",code_artifact_edit_short:"Editar",code_artifact_exit_badge:"exit {code}",code_artifact_timeout:"timeout",code_artifact_truncated:"truncado"},settings_ui:{bearer_label:"Bearer",global_config_desc:"Config general en ~/.apx/config.json. Editable por tabs; el JSON queda separado.",global_json_desc:"Los secretos redacted no se sobrescriben.",save_json:"Guardar JSON",expand_menu:"Expandir menú",collapse_menu:"Colapsar menú",documentation:"Documentación",kind_personal:"Personal",kind_company:"Empresa",kind_app:"App",kind_software:"Software",kind_default:"Default",kind_other:"Otro",base_menu_view:"Vista del menú Base (workspace general).",coming_soon:"Próximamente",inspector_title:"Skill Inspector (RAG por turno)",inspector_desc:"Función experimental. Cuando está activa, el agente NO recibe la lista completa de skills en su prompt; en cada mensaje un RAG local decide qué skill(s) cargar — el cuerpo completo si hay match fuerte, una sugerencia si es medio, nada si no aplica. Se reevalúa en cada turno: una skill que dejó de ser relevante desaparece del contexto.",enable_inspector:"Habilitar inspector",enable_inspector_hint:"Off = comportamiento clásico (lista de slugs + sugerencia pasiva). On = el RAG decide por turno.",on:"On",off:"Off",index_count:"Índice: {n} skills",not_indexed:"sin indexar",dim:"dim {dim}",updated_at:"actualizado {date}",reindex:"Reindexar",reindex_forced:"Reindexar (forzado)",embedder_source:"El embedder viene de Memoria (RAG). Local con Ollama, u offline si no hay proveedor configurado.",thresholds_title:"Umbrales y límites",thresholds_desc:"Ajustá qué tan agresivo es el inspector. Subir los umbrales = menos falsos positivos pero más riesgo de perderte una skill; bajarlos = al revés.",test_title:"Probar (dry-run)",test_desc:"Escribí un mensaje como lo haría un usuario y mirá qué skills cargaría/sugeriría el inspector — sin llamar al modelo. Fuerza el inspector aunque esté apagado arriba.",test_placeholder:"ej.: necesito crear un video promocional con voz en off",test_btn:"Probar",jit_empty_index:"JIT (índice vacío)",loaded_label:"Cargadas:",suggested_label:"Sugeridas:",could_not_save:"No se pudo guardar: {msg}",indexed_with:"Indexado con {embedder} (dim {dim}): +{added} ~{refreshed} -{removed}.",index_failed:"Falló el indexado: {msg}",dry_run_failed:"Falló el dry-run: {msg}",knob_load_threshold:"Umbral de carga",knob_load_threshold_hint:"Similaridad mínima para inyectar el CUERPO de la skill (alto = más estricto).",knob_hint_threshold:"Umbral de sugerencia",knob_hint_threshold_hint:"Similaridad mínima para solo SUGERIR la skill (así el agente la carga si quiere).",knob_margin:"Margen sobre la 2da",knob_margin_hint:"La primera tiene que superar a la segunda por este margen para cargar su cuerpo (evita empates flojos).",knob_max_loaded:"Máx. cuerpos cargados",knob_max_loaded_hint:"Cuántas skills se inyectan completas por turno.",knob_max_hints:"Máx. sugerencias",knob_max_hints_hint:"Cuántas skills extra se nombran como sugerencia.",knob_prompt_floor:"Largo mínimo del prompt",knob_prompt_floor_hint:"Los mensajes más cortos que esto se ignoran (evita 'ok', 'hola').",knob_body_char_cap:"Tope de chars del cuerpo",knob_body_char_cap_hint:"Recorta los cuerpos largos para que no inflen el contexto.",cfg_overrides_label:"Overrides",cfg_overrides_desc:".apc/config.json. Solo valores específicos del proyecto; vacío hereda del global/effective.",cfg_route_to_agent:"Route to agent",cfg_super_agent_model:"Modelo del super-agente",cfg_permission_mode:"Permission mode",cfg_extra_prompt:"Prompt extra",cfg_telegram_label:"Telegram",cfg_chat_id:"Chat ID",cfg_bot_token:"Bot token",cfg_respond_with_engine:"Responder con engine",cfg_engines_label:"Engines",cfg_ollama_url:"Ollama URL",cfg_anthropic_key:"Anthropic API key",cfg_openai_key:"OpenAI API key",cfg_groq_key:"Groq API key",cfg_openrouter_key:"OpenRouter API key",cfg_gemini_key:"Gemini API key",cfg_project_label:"Proyecto",cfg_project_desc:".apc/project.json. Metadata APC portable; sin secretos, sin runtime.",cfg_name:"Nombre",cfg_version:"Versión",cfg_apc_spec:"APC spec",cfg_apx_install:"Estado de instalación APX",cfg_apx_storage_id:"ID de storage APX"},skills_page:{title:"Skills",desc:"Activá o desactivá qué skills carga cada agente. Elegí el scope: el super-agent (global) o un proyecto puntual.",list_title:"Skills instaladas",list_desc:"Las privadas de APX están siempre activas y no se pueden tocar.",scope_label:"Scope",scope_super_agent:"Super-agent (global)",scope_hint:"El super-agent usa el scope global. Cada proyecto puede sobrescribir skills de forma independiente.",count_label:"{n} skills · {on} activas",empty:"No hay skills. Creá una abajo o instalá con la CLI.",source_builtin:"APX",source_global:"Global",source_project:"Proyecto",private_badge:"Privada",private_hint:"Skill interna de APX — siempre activa, no se puede desactivar ni borrar.",overridden_badge:"Override",inherited_hint:"Heredada del global",reset_to_global:"Volver al global",on:"activa",off:"inactiva",toggle_failed:"No se pudo cambiar el estado: {msg}",add_title:"Agregar skill",add_desc:"Crea una skill de usuario en ~/.apx/skills/<slug>/SKILL.md. Queda disponible para todos los scopes.",add_slug_label:"Slug",add_slug_ph:"mi-skill",add_desc_label:"Descripción",add_desc_ph:"Una línea que explique cuándo usarla",add_body_label:"Cuerpo (Markdown)",add_body_ph:`# Mi skill
719
-
720
- Instrucciones para el agente…`,add_btn:"Crear skill",created_ok:'Skill "{slug}" creada.',create_failed:"No se pudo crear: {msg}",delete_btn:"Borrar",delete_confirm:'¿Borrar la skill "{slug}"? No se puede deshacer.',deleted_ok:'Skill "{slug}" borrada.',delete_failed:"No se pudo borrar: {msg}",inspector_section_title:"Skill Inspector (RAG por turno)",inspector_section_desc:"Config avanzada: RAG local que inyecta solo las skills que el mensaje necesita.",scope_ph:"— elegir scope —",select_a_skill:"Elegí una skill de la lista para ver su contenido.",added_by:"Agregado por",activator:"Activador",by_apx:"APX (built-in)",by_you:"Vos",activator_value:"Coincidencia semántica (RAG)",tab_preview:"Vista",tab_source:"Fuente",add_menu:"Agregar",add_online:"Crear con el editor",add_online_hint:"Escribí slug + descripción + contenido",add_zip:"Subir .zip",add_zip_hint:"Importar una skill empaquetada",add_repo:"Desde repo git",add_repo_hint:"Clonar desde una URL",create_dialog_title:"Crear skill",repo_dialog_title:"Importar desde repo git",repo_url_label:"URL del repo",repo_url_ph:"https://github.com/usuario/mi-skill.git",repo_url_hint:"El repo (o su subcarpeta) debe tener un SKILL.md.",import_btn:"Importar",imported_ok:'Skill "{slug}" importada.',import_failed:"No se pudo importar: {msg}",cancel:"Cancelar",manager_tab:"Skills",rag_tab:"Config (RAG)"},shared_ui:{skill_inspector_title:"Skill Inspector ({embedder}) eligió estas skills para este turno",tools_count:"{n} tools",tool_read_file:"Leer archivo",tool_write_file:"Escribir archivo",tool_edit_file:"Editar archivo",tool_list_files:"Listar archivos",tool_search_files:"Buscar en archivos",tool_search_messages:"Buscar mensajes",tool_tail_messages:"Últimos mensajes",tool_run_shell:"Correr shell",tool_send_telegram:"Enviar Telegram",tool_call_agent:"Llamar agente",tool_call_mcp:"Llamar MCP",tool_call_runtime:"Llamar runtime",tool_create_task:"Crear task",dedup:"dedup",args:"args",result:"result",auto:"Auto",auto_router:"Auto (decide el router)",model_filter_ph:"filtrar o escribir modelo…",loading_models:"cargando modelos…",use_value:"usar “{value}”",model_combobox_ph:"elegí o escribí un modelo…",search_variable_ph:"buscar variable…",no_matches:"sin coincidencias",create_variable:"Crear nueva variable…",kv_key_ph:"CLAVE",kv_value_ph:"valor",remove_row:"quitar fila",add_row:"Agregar fila",err_chat_failed:"Falló el chat.",err_stream_failed:"Falló el stream.",err_load_conversation:"No se pudo cargar la conversación.",err_stream:"Error de stream."},integrations:{title:"Integrations",description:"Plugins y tools disponibles para este proyecto",tab_plugins:"Plugins",tab_tools:"Tools",scope_label:"Ámbito:",scope_project:"Este proyecto",scope_global:"Global (default)",plugins_hint:"Plugins de canal y servicio instalables por proyecto. Se guardan en el ámbito seleccionado arriba.",more_soon:"Más plugins próximamente…",tools_hint:"Tools que los plugins conectados exponen a los agentes de este proyecto.",tools_empty:"No hay tools de integraciones. Conectá un plugin para habilitarlas.",tool_active:"activo",tool_inactive:"inactivo",status_active:"Activo",status_error:"Error",status_unconfigured:"No configurado",connected:"Conectado",connect:"Conectar",deactivate:"Desactivar",saving:"Guardando...",validating:"Validando...",verifying:"Verificando token...",confirm:"Confirmar",select_placeholder:"Seleccionar...",reveal:"Ver",hide:"Ocultar",credentials:"Credenciales {name}",coming_soon:"Próximamente",coming_soon_body:"Este plugin está declarado en el catálogo pero todavía no está conectable en APX. Se va a portar de forma nativa en una próxima iteración.",tools_for_agents:"Tools para agentes",tools_available_note:"Disponibles para los agentes que las tengan permitidas, o vía discover_tools.",err_connect:"Error al conectar",err_generic:"Ocurrió un error",asana:{select_label:"Seleccioná el workspace a usar",connected:{user_name:"Conectado como",user_email:"Email",workspace_name:"Workspace"},fields:{personal_access_token:{label:"Personal Access Token",help_label:"¿Cómo obtener el token?",help_steps:`Abrí app.asana.com/0/my-apps en el navegador.
721
- Bajá hasta la sección "Personal access tokens" (no tus apps OAuth).
722
- Hacé clic en "+ New access token".
723
- Dale un nombre y confirmá.
724
- Copiá el token completo — empieza con "1/..." y tiene un ":" en el medio.
725
- Pegalo en el campo de abajo.`}}},github:{connected:{user_login:"Conectado como",user_name:"Nombre"},fields:{token:{label:"Personal Access Token",help_label:"¿Cómo obtener el token?",help_steps:`Abrí github.com/settings/tokens.
726
- Generá un token (classic o fine-grained) con scope "repo".
727
- Copiá el token — empieza con ghp_ o github_pat_.
728
- Pegalo en el campo de abajo.`}}}}},gP={common:{loading:"Loading…",saving:"Saving…",cancel:"Cancel",save:"Save",delete:"Delete",edit:"Edit",create:"Create",add:"Add",remove:"Remove",reload:"Reload",shutdown:"Shut down",enabled:"Enabled",disabled:"Disabled",enable:"Enable",disable:"Disable",open:"Open",close:"Close",confirm:"Confirm",optional:"(optional)",none:"—",none_yet:"Nothing here yet.",error_generic:"Something went wrong.",search:"Search",new:"New",restore:"Restore",show:"Show",hide:"Hide",copy:"Copy",run:"Run",refresh:"Refresh",view_all:"View all",saved:"Saved.",deleted:"Deleted.",pager_prev:"Previous",pager_next:"Next",pager_page:"Page {page} of {total}",pager_range:"{from}–{to} of {total}",pager_per_page:"Per page"},daemon:{connecting:"Connecting to the daemon…",unreachable:"Could not reach the daemon at localhost:7430.",unreachable_hint:"Start APX with `apx daemon start` and refresh.",version:"Version",uptime:"Uptime",status:"Status",running:"running",down:"down",reload_hint:"POST /admin/reload — reloads ~/.apx/config.json without restarting.",shutdown_confirm:"Shut down the daemon? Upcoming requests will fail until it restarts.",shutdown_done:"Daemon stopped."},pairing:{title:"Pair this device",subtitle:"You are connecting from outside this machine. For security, pair this browser with a pairing code.",steps_title:"How to get the code",step_1:"On the PC where APX is running, open a terminal.",step_2:"Run `apx pair` (or scan the QR with APX Deck).",step_3:"Copy the code shown below the QR and paste it here.",code_label:"Pairing code",code_ph:"e.g. 7f3a1c9e-…",label_label:"Device name",label_ph:"e.g. Living room laptop",submit:"Pair",linking:"Pairing…",success:"Device paired ✓",err_required:"Paste the pairing code.",err_expired:"The code expired. Run `apx pair` again and try again.",err_unknown:"Unknown or already-used code. Generate a new one with `apx pair`.",err_generic:"Could not pair. Check the code and try again.",revoke_hint:"You can revoke this device at any time from Settings or with `apx pair revoke`."},nav:{apx_admin:"APX",settings:"Settings",project:"Project",add_project:"Add project",all_projects:"All projects",more_projects:"{count} more",collapse_projects:"Hide projects",expand_projects:"Show projects",modules:{voice:"Voices",desktop:"Desktop",deck:"Deck",code:"Code",web:"Web"}},topbar:{breadcrumb_root:"APX",breadcrumb_settings:"APX › Settings",breadcrumb_project:"APX › Project",breadcrumb_base:"Base",breadcrumb_projects:"Projects",light:"Switch to light",dark:"Switch to dark",lang_toggle:"Language"},admin:{title:"APX",subtitle:"Admin panel. Global config, channels and projects.",engines_title:"Engines",engines_subtitle:"Available LLM adapters. API keys live in ~/.apx/config.json.",telegram_title:"Telegram",telegram_subtitle:"Configured channels. Each one can be pinned to a project.",telegram_polling_on:"Polling active",telegram_polling_off:"Disabled",telegram_add_channel:"Channel",telegram_send_test:"Test",telegram_send_test_title:"Send to",telegram_default_message:"Test message from APX panel ✅",projects_title:"Registered projects",projects_subtitle:"Click a project to open its panel.",unregister:"Unregister",unregister_confirm:"Remove {label} from APX? The folder is not deleted; only unregistered.",reload_success:"Config reloaded.",telegram_polling_started:"Polling started.",telegram_polling_stopped:"Polling stopped.",telegram_channel_removed:"Channel deleted.",agents_badge:"agents",engine_badge:"yes",engine_badge_no:"no",base_label:"Base"},add_project:{title:"Add project",subtitle:"APX will index .apc/, agents and AGENTS.md in that folder.",path_label:"Absolute path",path_hint:"Equivalent to apx project add /path/to/project",path_placeholder:"/path/to/my-project",register:"Register",path_required:"Path required.",registered:"Project #{id} registered.",search_btn:"Browse",picker_prompt:"Pick the project folder",browser_unavailable:"Browser unavailable until daemon restarts. Paste path manually.",no_folders:"No folders."},settings:{title:"Settings",subtitle:"Panel preferences + local daemon diagnostics.",appearance:"Appearance",light_mode:"Light",dark_mode:"Dark",system_mode:"System",language:"Language",daemon:"Daemon",daemon_sub:"Status of the local process that serves this web and orchestrates agents.",engines:"Available engines",engines_sub:"LLM adapters compiled with the daemon.",token:"Session token",token_sub:"If this web could not auto-load the token, paste it here.",token_active:"(token already active)",token_paste:"Paste daemon bearer",token_saved:"Token saved.",devices:"Paired devices",devices_sub:"GET /pair/list. Revoking invalidates that bearer on the daemon.",devices_empty:"No paired clients yet.",devices_revoke_confirm:"Revoke client {id}?",devices_revoke_success:"Client revoked.",devices_pair_btn:"Pair device",devices_pair_title:"Pair device",devices_pair_desc:"Scan the QR with your phone camera to open the web already paired, or paste the code on another PC.",devices_pair_scan:"Scan with your phone camera — opens the web already paired.",devices_pair_code:"Or paste this code on the pairing screen:",devices_pair_url:"Access URL",devices_pair_link:"Or copy this link and open it on the other device (enters automatically):",devices_pair_copy:"Copy",devices_pair_copied:"Link copied to clipboard.",devices_pair_copied_code:"Code copied.",devices_pair_expires:"Expires in {s}s",devices_pair_expired:"The code expired.",devices_pair_regen:"Generate another",devices_pair_waiting:"Waiting for device to confirm…",devices_pair_done:"Device paired ✓",devices_pair_localhost_only:"Codes can only be generated from the daemon's PC (localhost).",devices_last_seen:"seen:",devices_never:"never",devices_revoke:"Revoke",account_section:"Account",agents_section:"Agents & models",channels_section:"Channels & devices",modules_section:"Modules",advanced_section:"Advanced",tabs:{identity:"Identity",super_agent:"Super-agent",engines:"Engines & models",telegram:"Telegram",devices:"Devices",advanced:"Advanced"},identity:{title:"Identity",subtitle:"User data. Agent configuration goes in Super-agent.",agent_name:"Agent name",owner_name:"Your name",personality:"Personality",owner_context:"Owner context",owner_context_hint:"Who you are, what you work on, what the agent should know about you.",language:"Preferred language",timezone:"Timezone (IANA)",timezone_hint:"Auto-detected — search to change.",saved:"Identity saved."},super_agent:{title:"Super-agent",subtitle:"Personality, model, prompt and modes of the super-agent.",personality:"Personality",model:"Active model",model_hint:"E.g.: anthropic:claude-sonnet-4.5, ollama:gemma2:9b",permission_mode:"Permission mode",system:"Extra prompt (system)",system_hint:"Text prepended to the base system prompt.",system_ph:"(Empty = the base prompt from core/agent/prompts/super-agent-base.md is used)",fallback_title:"Fallback chain",fallback_hint:"If the active model fails, these are tried in order.",fallback_add:"Add model to chain",saved:"Super-agent saved.",enabled_label:"Super-agent enabled",model_active:"Active model (router)",model_configure:"Configure in Models",behavior_subtitle:"Super-agent behavior. Model and fallback chain are configured in the Model Router."},engines_keys:{title:"Model API keys",subtitle:"Each engine stores its key in ~/.apx/config.json. Already-set values show a safe suffix.",ollama_url:"Ollama URL",ollama_hint:"Default: http://127.0.0.1:11434",key_label:"API key",key_placeholder:"(not set)",clear:"Clear key",saved:"Key saved.",cleared:"Key cleared."},telegram_global:{title:"Telegram (default)",subtitle:"Default channel — projects can override with their own channel.",bot_token:"Bot token",chat_id:"Default chat ID",poll_interval:"Poll interval (ms)",respond_with_engine:"Respond with engine",enabled:"Polling enabled",saved:"Telegram saved."},advanced:{title:"Advanced",subtitle:"Raw editor for ~/.apx/config.json. Secrets show as *** set *** but you can write a new one.",write:"Apply changes",written:"Config applied and daemon reloaded.",reload_success:"Config reloaded."}},project:{not_found:"Roby couldn't find project {pid}: it may have been unregistered, or the ID is wrong.",rebuild:"Rebuild context",rebuild_done:"Rebuild OK.",unregister_confirm:"Unregister {label}? The folder is not deleted.",unregistered:"Unregistered.",base_subtitle:"General workspace · super-agent",danger:{title:"Danger zone",subtitle:"Actions that affect APX's project registry. They do not touch repo files.",rebuild_desc:"Re-scans .apc/, MCPs and agents and regenerates the super-agent context for this project.",unregister_desc:"Removes the project from APX's registry. The folder on disk stays intact.",rebuild_confirm_title:"Rebuild context",rebuild_confirm_desc:"Regenerate context for {label}.",rebuild_long:"Re-reads APC config, lists available MCPs and agents, and rebuilds the super-agent system prompt. Safe to run — nothing is deleted. Use it after editing .apc/ by hand or if changes are not being picked up.",unregister_confirm_title:"Unregister project",unregister_long:"The project disappears from `apx`. Files on disk (.apc/, code, everything) stay. You can re-register it with `apx project register <path>`."},nav:{overview:"Overview",chat:"Chat",config:"Config",telegram:"Telegram",agents:"Agents",routines:"Routines",tasks:"Tasks",mcps:"MCPs",artifacts:"Artifacts",vars:"Variables",logs:"Logs",memories:"Memories",structure:"Structure",docs:"Docs",files:"Files"},sections:{workspace:"Workspace",content:"Content",automation:"Automation",knowledge:"Conversations",config:"Config"},overview:{tasks_open:"Open tasks",routines:"Routines",routines_active:"Active routines",agents:"Agents",mcps:"MCPs",artifacts:"Artifacts",chat:"Chat (super-agent)",chat_value:"open",roster:"Team",no_agents:"No agents yet.",orchestrators:"Orchestrators",specialists:"Specialists",recent_tasks:"Recent tasks",no_activity:"No open tasks."},artifacts:{title:"Artifacts",subtitle:"Reusable scripts and files stored under the project. Agents create them; you can view, run, rename or delete them."},chat:{title:"Chat with agent",subtitle:"Direct conversations with project agents. The super-agent does not intervene.",live_title:"Chat with {agent}",superagent_title:"Chat with {persona}",superagent_subtitle:"Chat with {persona} — the APX super-agent. Can use tools (projects, tasks, mcps, agents).",loaded_subtitle:"Loaded conversation with {slug}. Sending will append to this thread.",thread_subtitle:"History with {persona} on {channel}. Replying here continues the conversation from the web.",empty:"Send a message to start the conversation.",placeholder:"Type something and press enter to send (shift+enter = new line)",send:"Send",stop:"Stop",new_session:"New session",delete:"Delete",delete_confirm_title:"Delete chat",delete_confirm_desc:"This can't be undone. This chat's history will be permanently deleted.",deleted:"Chat deleted.",meta_created:"Created {date} · {channel}",meta_new:"New chat · {channel}",copy:"copy",copied:"Copied.",stopped_marker:" [stopped]",create_agent:"Create agent",create_agent_title:"Create agent",create_agent_desc:"Required to start a chat in this project.",role_label:"role",model_label:"model",model_hint:"e.g. openai:gpt-5, groq:llama-3.3-70b-versatile",master_label:"Master agent",list:{title:"Chats",new:"New",search:"Search chats…",all_agents:"All agents",empty:"No conversations yet. Start one from the right.",count:"{n} total",pick_agent:"Pick an agent"}},tasks:{title:"Tasks (TODOs)",subtitle:"Append-only JSONL in ~/.apx/projects/<id>/tasks/.",add:"add",add_label:"New task",add_placeholder:"e.g. fix scroll bug",empty:"No {state} tasks.",empty_open:"No open tasks.",created:"Task created.",create_error:"could not create task",done:"✓ done",drop:"✗ drop",reopen:"↻ reopen",due:"due",via:"via",aria_done:"mark done",aria_drop:"discard task",aria_reopen:"reopen task"},global_tasks:{title:"Tasks (all projects)",subtitle:"Aggregated tasks from all registered projects.",empty:"No tasks.",due:"due",go_project:"Go to project"},routines:{title:"Heartbeats / Routines",subtitle:"Cron, every:Nm, once:ISO. Each routine fires an agent or a shell.",empty:"No routines. Create one above.",new:"new",new_btn:"New",delete_confirm:"Delete routine {name}?",delete_confirm_body:"This can't be undone.",saved:"Routine saved.",paused:"paused",next_run:"next:",last_run:"last:",enabled_hint:"Active · runs on schedule",disabled_hint:"Paused · only via Run button",enabled_label:"Enabled",new_title:"New routine",edit_title:"Edit {name}",dialog_desc:"Saved in .apc/routines.json. The routine runs while the daemon is active.",name_field:"Name",name_no_edit:"Cannot be changed when editing.",kind_field:"Action (kind)",schedule_field:"Interval (schedule)",schedule_hint:"Choose a preset or type manually. Manual = only runs via Run button.",vars_title:"Available variables",what_happens:"What will happen",list_title:"Routines",detail_empty:"Pick a routine from the list.",edit_btn:"Edit",edit_hint:"Open the editor: kind, schedule, prompt, pre/post and variables.",block_pre:"Pre-commands",block_post:"Post-commands",block_prompt:"Prompt",block_text:"Text",block_command:"Command",block_empty:"(empty)",runs_title:"Executions",runs_empty:"No executions yet.",runs_close:"Close",runs_no_detail:"No further detail.",runs_output:"Output",status_ok:"ok",status_error:"error",status_skipped:"skipped",agent_field:"Agent (spec.agent)",agent_hint:"Who executes the routine.",agent_loading:"loading…",agent_pick:"— pick an agent —",prompt_exec:"Prompt (spec.prompt)",prompt_exec_ph:"what is pending for today?",prompt_super:"Prompt (spec.prompt)",prompt_super_ph:"summarize the project status",pre_field:"Pre-commands (pre_commands)",pre_hint:"Shell BEFORE the prompt. One per line.",post_field:"Post-commands (post_commands)",post_hint:"Shell AFTER the prompt. One per line.",tg_channel:"Channel (spec.channel)",tg_chat_id:"Chat ID (spec.chat_id)",tg_text:"Telegram Message (spec.text)",tg_text_hint:"Fixed message to send. Does not use a model.",shell_field:"Command (spec.command)",shell_hint:"Runs as-is in the shell. No prompt, no pre/post.",hb_channel:"Channel (spec.channel)",hb_message:"Message (spec.message)",name_required:"name required",save_error:"save failed",run_error:"run failed",toggle_error:"toggle failed",delete_error:"delete failed",run_success:"{name} fired.",run_confirm:"Run routine {name} now?",run_confirm_body:"Runs the action once, regardless of the schedule.",running:"Running…",delete_success:"deleted."},agents:{title:"Agents",subtitle:"Defined in .apc/agents/<slug>.md.",subtitle_full:"Defined in .apc/agents/<slug>.md. Runtime memory lives under ~/.apx/projects/<id>/agents/<slug>/.",empty:"No agents. Add one with <code>apx agent add</code> or the button.",empty_text:"No agents. Add one with `apx agent add` or the button above.",new:"Agent",created:"Agent {slug} created.",slug_invalid:"slug must match /^[a-z][a-z0-9_-]*$/",hierarchy:"Hierarchy",list_view:"List",import:"Import",chat:"Chat",view:"View",orchestrator:"Orchestrator",new_title:"New agent",new_desc:"POST /projects/:pid/agents — writes .apc/agents/<slug>.md.",slug_label:"slug",slug_ph:"cody",role_label:"role (optional)",role_ph:"code refactor",model_label:"model (optional)",model_hint:"e.g. ollama:gemma2:9b, openai:gpt-4o-mini",lang_label:"language (optional)",desc_label:"description (optional)",desc_ph:"What does this agent do…",skills_label:"skills (comma)",skills_ph:"skill-a, skill-b",tools_label:"tools (comma)",tools_ph:"tool-a, tool-b",parent_label:"reports to (parent, optional)",parent_hint:"Sub-agent of an orchestrator.",none_parent:"— none —",master_label:"Orchestrator (master)",create_success:"Agent {slug} created.",create_error:"create failed",import_title:"Import from vault",import_desc:"Templates in ~/.apx/agents. Registered in this project (.apc/agents/<slug>.md).",import_empty:"No templates in the vault.",import_success:"Imported: {slug}",import_already:"already here",import_btn:"Import"},agent_detail:{not_found:"Agent not found.",chat_btn:"Chat with {slug}",reports_to:"↳ reports to",no_threads:"No threads.",no_activity:"No recorded activity.",threads_recent:"Recent threads",subagents:"Sub-agents",subagents_desc:"Agents that report to this orchestrator.",config_title:"Agent configuration",type_label:"Type",area_label:"Area",area_hint:"e.g. operations, marketing",area_ph:"operations",role_label:"Role",parent_label:"Reports to (parent)",none_parent:"— none —",model_label:"Base model",model_hint:"Empty = uses the Router model (default). Set only to force a model for this agent.",model_ph:"(empty = router default)",skills_label:"Skills (comma)",bio_label:"Bio / description",system_label:"System prompt",system_hint:"Defines personality and behavior (body of AGENT.md).",master_label:"Orchestrator (master)",delete_btn:"Delete agent",save_btn:"Save changes",delete_confirm:'Delete agent "{slug}"? Removes .apc/agents/{slug}.md and local runtime data.',update_success:"Agent updated.",delete_success:"Agent deleted.",tools_hint:"Which tools this agent can use. Tap to toggle; or edit the list below.",tools_custom_ph:"list (comma): echo, http_fetch",memory_title:"Agent memory",memory_empty:"(empty memory)",memory_saved:"Memory saved.",records_title:"Records",records_desc:"Agent activity log (messages/actions). Newest first.",sleep_title:"Sleep / Heartbeat",sleep_desc:"Agent execution status, derived from its routines.",sleep_deep:"Deep sleep · no heartbeat",sleep_deep_desc:"This agent has no routine that triggers it. It does not run autonomously; it only responds when invoked (chat / task).",brain_title:"Brain",brain_desc:"Real relationship graph of the agent: memory, threads, tasks, heartbeats and hierarchy. (first version — will be refined)",brain_empty:"No relationships to graph yet (no memory, threads, tasks or routines).",msgs_count:"msgs"},mcps:{title:"MCP servers",subtitle:"3 scopes: runtime > shared > global. Conflicts shown above if any.",empty:"No MCPs configured.",new:"MCP",delete_confirm:"Delete MCP {name} from scope {scope}?",conflicts:"⚠ Conflicts: {names}",conflict_detail:"{name} is defined in {winner} and {loser}. APX uses {winner}; {loser} is ignored.",new_title:"New MCP",new_desc:"POST /projects/:pid/mcps?scope=…",scope_label:"Scope",transport_label:"Transport",name_label:"Name",name_ph:"filesystem",cmd_label:"Command",cmd_ph:"npx",args_label:"Args",args_hint:"space-separated",args_ph:"-y @modelcontextprotocol/server-filesystem /tmp",env_label:"Env (JSON, optional)",url_label:"URL",url_ph:"https://example.com/mcp",enabled_label:"Enabled",add_btn:"Add",name_required:"name required",env_invalid:"env must be valid JSON",removed:"removed",added:"MCP added.",updated:"MCP updated.",edit_title:"Edit MCP",save_btn:"Save",add_arg:"Add arg",edit_btn:"Edit",test_btn:"Test",logs_btn:"Logs",testing:"Testing…",test_ok:"OK · {n} tools available",tools_count:"{n} tools",logs_title:"Logs · {name}",logs_empty:"No logs yet. Start the MCP by calling a tool or running Test.",logs_events:"Recent events",logs_stderr:"stderr (last 4KB)",logs_panel_title:"Live logs",logs_panel_pick:"pick an MCP",logs_panel_hint:"Click an MCP in the list to see what's happening live.",logs_panel_idle:"No activity. Hit Test to spin it up.",scope_runtime:"Runtime",scope_shared:"Shared",scope_global:"Global",source_runtime:"Runtime",source_apc:"APC / Shared",source_claude:"Claude",source_codex:"Codex",source_cursor:"Cursor",source_vscode:"VS Code",source_roo:"Roo",source_gemini:"Gemini",scope_runtime_desc:"This project only · with secrets · not committed (~/.apx/projects/<id>/mcps.json)",scope_shared_desc:"This project only · committeable · no secrets (.apc/mcps.json)",scope_global_desc:"All projects on this machine (~/.apx/mcps.json)",transport_stdio:"stdio",transport_http:"HTTP",transport_stdio_desc:"Local process — `command` + args",transport_http_desc:"Remote endpoint — URL + headers",args_hint_tokens:"One entry per arg. Use the + button to insert a variable.",env_hint_tokens:"Key/value pairs. Values accept ${var.NAME} (+ button on the right).",env_empty:"No env vars.",headers_label:"Headers",headers_hint:"Key/value pairs — typically Authorization: Bearer ${var.TOKEN}.",headers_empty:"No headers."},vars:{title:"Variables",subtitle_project:"Replace ${var.NAME} when loading MCPs and templates. Project vars beat globals. Stored outside the repo (~/.apx/, chmod 0600).",subtitle_base:"Global variables — available to every project. Stored in ~/.apx/vars.json (chmod 0600).",empty:"No variables yet.",new:"Variable",new_title:"New variable",edit_title:"Edit variable",new_desc:"Referenced as ${var.NAME} in any field that supports interpolation.",reveal_all:"Show values",reveal:"Show",hide:"Hide",filter_label:"Show:",filter_all:"All",filter_project:"Project only",filter_global:"Globals only",scope_label:"Scope",scope_project:"project",scope_project_desc:"This project only. Beats the global with the same name.",scope_global:"global",scope_global_desc:"Available to every project.",name_label:"Name",name_hint:"Uppercase, digits and _. E.g. MY_API_KEY, GITHUB_TOKEN.",value_label:"Value",value_hint:"Stored on disk with 0600 perms. Never committed.",value_edit_ph:"(leave empty to keep current… not yet supported, paste the value again)",add_btn:"Add",save_btn:"Save",edit_btn:"Edit",delete_btn:"Delete",delete_confirm:"Delete {name} ({scope})?",removed:"Variable removed.",added:"Variable added.",updated:"Variable updated.",name_required:"Name required.",value_required:"Value required."},threads:{title:"Chats",subtitle:"Conversations per agent (empty = no logs persisted yet).",no_agents:"No agents. Conversations require a configured agent.",pick:"Pick an agent to view its conversations.",empty:"No conversations for {slug}.",conversation_title:"Conversation {id}",messages:"messages",via:"via"},config:{title:"Quick config",subtitle:"Project override. Written to {path}.",model:"super_agent.model",model_hint:"e.g. anthropic:claude-sonnet-4.5, ollama:gemma2:9b",perm:"super_agent.permission_mode",route:"route_to_agent",route_hint:"Slug of the agent that handles this project by default.",use_global:"(uses global)",saved:"Saved.",nothing:"Nothing to save.",raw_title:"Config (raw JSON)",raw_subtitle:"Paste the entire object — equivalent to PUT the file.",raw_save:"Replace config",raw_done:"Config overwritten.",effective:"Effective config (read-only)",effective_sub:"What the daemon actually sees (global ⊕ override).",section_title:"Project config",section_desc:"APC metadata and overrides separated. General APX lives in Settings > Config.",effective_read:"Read: global APX + project override.",save_project:".apc/project.json saved.",save_override:".apc/config.json saved.",save_fields_success:"Overrides saved.",save_meta_success:"Project metadata saved.",no_data:"No data."},telegram:{title:"Telegram channel (override)",subtitle:"If you set a channel here, messages from this project go there instead of the default.",use_default:"Use default channel",bot_token:"Bot token (override)",chat_id:"Chat ID (override)",saved:"Override saved.",cleared:"Override removed — falls back to default.",override_active:"override active",channel_badge:"Channel {name}",no_override:"No override. Messages from this project go to the default channel.",respond_engine:"Respond with engine",route_agent:"route_to_agent",route_hint:"Slug of the agent that handles messages (empty = super-agent).",bot_hint_none:"If empty, inherits from default."},memories:{project_title:"Project memory",project_desc:"Durable facts at the project level. .apc/memory.md — read by agents and the super-agent.",project_ph:`# Project Memory
729
-
730
- Stable facts that any agent should know…`,agents_title:"Agent memories",agents_desc:"Individual memory per agent. ~/.apx/projects/<id>/agents/<slug>/memory.md",no_agents:"No agents in this project.",saved:"Memory saved.",empty:"(empty memory)",chars:"chars · Markdown",save_btn:"Save"}},base:{title:"Base",subtitle:"General workspace · super-agent",nav_general:"General",nav_activity:"Activity",nav_system:"System",workspaces_title:"Workspaces",workspaces_desc:"All projects registered in APX.",workspaces_new:"New project",workspaces_empty:"No projects. Add one with the button above.",sessions_title:"Sessions",sessions_desc:"Sessions from all engines (apx · claude · codex), newest first.",sessions_all:"All engines",sessions_empty:"No sessions.",sessions_error:"Could not read sessions: {msg}",sessions_search_ph:"Search sessions…",sessions_deep:"Deep",sessions_deep_tip:"Also search inside transcripts (slower)",sessions_clear:"Clear filters",sessions_refresh:"Refresh list",sessions_no_match:"No sessions match “{q}”.",sessions_act_cmd:"Copy apx command",sessions_act_ask:"Ask {name} to continue",sessions_act_folder:"Open folder",sessions_act_path:"Copy path",sessions_cmd_copied:"Command copied — paste it in your terminal",sessions_path_copied:"Path copied",sessions_copy_failed:"Could not copy",sessions_no_folder:"This session has no folder",sessions_no_path:"This session has no path",sessions_folder_failed:"Could not open folder: {msg}",defaults_title:"Agent defaults",defaults_desc:"Global vault templates. Bundled ones come with APX and are always present; ones you create or edit go in ~/.apx/agents and override. Import them into a project from Agents › Import.",defaults_show_removed:"Show removed",defaults_new:"New",defaults_empty:"No templates in the vault.",defaults_hide:"Hide",defaults_restore:"Restore",defaults_edit:"Edit",defaults_remove:"Hide",defaults_delete:"Delete",defaults_tombstone_msg:`Hide the default "{slug}"? It's bundled — tombstoned and recoverable with Restore.`,defaults_delete_msg:'Delete the template "{slug}"?',defaults_hidden:"Hidden.",defaults_deleted:"Deleted.",defaults_restored:"Restored.",defaults_new_title:"New template",defaults_new_desc:"POST /agents/vault — saved to ~/.apx/agents/<slug>.md",defaults_edit_title:'Edit "{slug}"',defaults_bundled_desc:"This is a bundled default. Saving does a copy-on-write to ~/.apx/agents/<slug>.md (becomes an override).",defaults_user_desc:"PATCH /agents/vault/:slug — edits the file in ~/.apx/agents.",defaults_master_label:"Master agent",defaults_slug_invalid:"invalid slug (must match /^[a-z][a-z0-9_-]*$/)",defaults_created:'Template "{slug}" created.',defaults_saved:'Template "{slug}" saved.'},logs:{title:"Logs",desc_global:"Daemon activity (global channels: telegram, direct…). ~/.apx/messages/<channel>/.",desc_project:"Project activity. ~/.apx/projects/<id>/messages/.",filter_channel:"filter channel (e.g. telegram)",filter_dir:"direction",all_directions:"All directions",in:"Incoming (in)",out:"Outgoing (out)",filter_type:"type",all_types:"All types",search_text:"search text…",count_of:"of",no_activity:"No activity.",no_activity_ch:'No activity in channel "{ch}".',error:"Could not read messages: {msg}",show_more:"show more",show_less:"show less",daemon_errors:"Daemon errors (~/.apx/logs/errors.jsonl)",no_errors:"No errors recorded. 🎉"},telegram_contacts:{title:"Telegram contacts",desc:"Who writes to the bots. The role defines which tools they can use; a guest has no permissions until you assign a role.",empty:"No contacts yet — they register automatically when someone writes to a bot.",owner_badge:"owner",assign_role:"Assign role",owner_hint:"Channel owner — change it from the channel",removed:"Contact deleted.",delete_confirm:"Delete contact {name}?",last_seen:"seen:",tools_all:"tools: all",tools_none:"tools: none",tools_label:"tools:"},telegram_channels:{title:"Channels",desc:"Each channel is a bot the daemon polls. Here you can add/remove channels, change the answering agent, the project it belongs to and its owner.",new_btn:"New channel",empty:"No channels yet — add the first one.",removed:"Channel deleted.",delete_confirm:"Delete channel {name}?",no_owner:"no owner (claimed on first DM)",owner_label:"owner:"},telegram_channel_dialog:{new_title:"New Telegram channel",edit_title:"Edit channel: {name}",name_label:"name (internal slug)",token_label:"bot_token",chat_id:"chat_id",project_label:"project",project_hint:"Slug or id of the project to pin this channel to (optional).",route_label:"route_to_agent",route_hint:"Answering agent; empty = APX super-agent.",owner_label:"owner_user_id",owner_hint:"Telegram user_id of the channel owner. Overrides global role to 'owner' here. Leave empty — first private message claims it.",owner_ph:"889721252",respond_label:"Respond with engine (not echo)",name_required:"name required",saved:"Channel saved."},telegram_send_dialog:{title:"Send to {name}",default_msg:"Test message from APX panel ✅"},telegram_roles:{title:"Roles",desc:"Each role defines which super-agent tools the assigned user can invoke. 'owner' always = all; 'guest' always = none (chat only).",empty:"No roles defined.",tools_all:"all tools",tools_none:"no tools",builtin:"built-in",delete_confirm:'Delete role "{name}"?',removed:"Role deleted.",saved:'Role "{name}" saved.',name_required:"Name required.",builtin_error:'"{name}" is a built-in role.',new_title:"New role or replace a custom one",name_label:"Name",name_ph:"editor",tools_label:"Tools (comma-separated)",tools_hint:"Empty = none. Examples: call_agent, list_tasks, create_task.",tools_ph:"call_agent, list_tasks",full_access:"Full access (all tools)",save_btn:"Save role",delete_btn:"Delete"},superagent:{title:"{persona}",badge:"super-agent · APX",desc:"Quick chat with your super-agent. Has access to tools (projects, tasks, mcps, agents); for a longer persistent thread, open Chats.",empty:"Send {persona} a message to get started.",thinking:"{persona} is thinking…",talk:"Talk to {persona}",new_chat:"New chat",placeholder:"Type and press enter to send (shift+enter = new line)…"},not_found:{title:"404",message:"Roby got lost: this page doesn't exist or has moved.",home:"Back to home"},ask_panel:{answers_header:"Answers",other:"Other",other_placeholder:"Write your own answer here",text_placeholder:"Type your answer…",back:"Back",skip:"Skip",next:"Next",submit:"Send",status_waiting:"Waiting for your answer…",status_received:"Answers received"},code_module:{title:"Code",badge:"super-agent",desc:"OpenCode-style coding sessions. Pick a project, open a session, and ask it to read, plan, edit or run.",no_projects:"No registered projects. Register one with `apx project add` to use Code.",sessions:"Sessions",new_session:"New session",untitled:"New session",no_sessions:"No sessions yet — create one to start coding.",pick_project:"Pick a project to see its sessions.",rename:"Rename",delete:"Delete",delete_confirm:"Delete this session? The transcript is removed; your files are untouched.",empty_chat:"Send a coding instruction to get started.",placeholder:"Ask for a change… (enter sends, shift+enter = new line)",mode_build:"Build",mode_plan:"Plan",mode_build_hint:"Build — edits files and runs commands",mode_plan_hint:"Plan — read-only, proposes changes without touching files",tab_context:"Context",tab_changes:"Changes",tab_artifacts:"Artifacts",artifacts_none:"No artifacts yet. Ask the agent to create a script under `artifacts/<name>`.",artifacts_count:"{n} artifact(s)",artifacts_copy_path:"Copy path",artifacts_run:"Run",artifacts_run_hint:"Run it from your terminal:",artifacts_delete:"Delete",artifacts_delete_confirm:"Delete this artifact? The file will be removed from disk.",ctx_model:"Model",ctx_tokens:"Tokens",ctx_input:"Input",ctx_output:"Output",ctx_messages:"Messages",ctx_breakdown:"Context breakdown",ctx_none:"No usage yet — send a turn to see tokens.",seg_system:"System",seg_user:"User",seg_assistant:"Assistant",seg_tool:"Tools",seg_other:"Other",changes_none:"No changes in this session yet.",changes_no_git:"Changes need a git repository. This project isn't one.",changes_files:"{n} file(s) changed",stopped:"[stopped]",close:"Close",reload:"Reload",discard_changes:"Discard changes",save_shortcut_hint:"Save (Cmd/Ctrl+S)",artifacts_rename:"Rename",artifacts_view:"View contents",artifacts_edit:"Edit contents",tree_collapse_all:"Collapse all",terminal_clear:"Clear",terminal_close:"Close terminal"},desktop_screen:{status_title:"Status",autostart_title:"Auto-start",shortcut_title:"Keyboard shortcut",appearance_title:"Appearance",activation_title:"Activation + transcription",last_conv_title:"Last conversation",open_config:"Configuration"},voice_screen:{providers_title:"Voice providers (TTS)",test_title:"Test voice",stt_title:"Transcription (STT)",configure_provider:"Configure {name}"},deck_screen:{widgets_title:"Widgets",context_title:"APX context",reload_manifest:"Reload manifest",widget_native:"Native APX widget",widget_external:"External widget",preview_badge:"Preview",preview_title:"Deck — Coming soon",preview_body:"The Deck module is still in development and not released yet. We'll re-enable it once Deck ships in a stable release. For now everything here is read-only and no changes will be saved."},memory_panel:{embeddings_title:"Embeddings (RAG)",embeddings_desc:"Model that vectorizes the history of all channels for relevant memory. Just like TTS/STT: pick a provider and model. 'Automatic' tries local first and falls back to offline if nothing is available.",provider_label:"Provider",provider_hint:"Ollama is local and free. Gemini/OpenAI use the API key from their section in Models (or the one below).",mode_label:"Selection mode",mode_hint:"Chain falls back to the next if one fails; Single uses exactly the chosen provider.",available:"available",unavailable:"unavail.",test_btn:"Test embedding",reindex_btn:"Reindex memory",test_ok:"Embedding OK with {embedder}",test_failed:"Test failed: {msg}",reindexed:"Reindexed: {indexed} chunks (cleared {cleared}).",reindex_failed:"Reindex failed: {msg}",save_failed:"Could not save: {msg}",provider_auto:"Automatic (chain: Ollama → Gemini → OpenAI → offline)",provider_ollama:"Ollama — local, no API key (nomic-embed-text)",provider_gemini:"Gemini — free tier with key (text-embedding-004)",provider_openai:"OpenAI — text-embedding-3-small (cloud)",provider_tf:"Offline (term-frequency, no model — degraded)",mode_chain:"Chain (automatic fallback)",mode_single:"Single (uses only the chosen one)",ollama_title:"Ollama (local)",ollama_desc:"No API key. Runs nomic-embed-text on your local or cloud Ollama.",model_label:"Model",base_url_label:"Base URL",ollama_base_url_hint:"Empty uses engines.ollama.base_url (default http://localhost:11434).",openai_title:"OpenAI",openai_desc:"text-embedding-3-small (1536 dims) or another compatible model.",api_key_label:"API key",openai_key_hint:"Empty reuses engines.openai.api_key. Leave it blank to keep the saved one.",gemini_title:"Gemini",gemini_desc:"text-embedding-004 (768 dims). Free tier with a Google API key.",gemini_key_hint:"Empty reuses engines.gemini.api_key.",compaction_title:"History compaction",compaction_desc:"When a chat exceeds the turn threshold, the oldest turns are summarized with a lightweight (local) LLM and saved as [COMPACTED SUMMARY], keeping context bounded. Runs off the hot-path: the current turn uses whatever summary already exists.",threshold_label:"Compaction threshold",threshold_hint:"Compact once the chat exceeds these turns (default 60).",keep_recent_label:"Recent turns to preserve",keep_recent_hint:"Verbatim turns that are NEVER compacted (default 40). Must be lower than the threshold.",compact_model_label:"Compaction model",compact_model_hint:"Lightweight LLM for summarizing. Ideally a local one (Ollama) to avoid cost. Format provider:model.",compact_fallback_label:"Fallback model",compact_fallback_hint:"Used if the compaction one fails. Empty falls back to the super-agent model.",compact_fallback_ph:"(empty → super-agent model)"},router_panel:{title:"Model router",description:"A single general router (no per-task cases). Pick a provider and model; if the active one fails, it tries the fallback chain in order.",badge_default:"default",no_providers:"Add a provider below to be able to pick models.",active_model_label:"Active model (default)",active_model_hint:"Provider + model. Saved as provider:model.",fallback_title:"Fallback chain",fallback_desc:"If the active model fails, it tries these in order. Click one to edit it.",fallback_empty:"No fallback configured.",add_to_chain:"Add to the chain",done:"done",save:"Save router",saved:"Saved",saved_toast:"Router saved.",provider_ph:"— provider —",provider_not_found:"⚠ {name} (not found)",provider_not_configured:'The provider "{name}" is not configured.'},engines_panel:{title:"Providers",new_btn:"New provider",description:"LLM providers (API). Each provider uses an engine/adapter (openai, ollama, …) with its key and URL.",empty:"No providers. Add one with the button above.",add_card:"Add provider",saved:"Provider saved.",saved_json:"Provider saved (JSON).",deleted:"Provider deleted.",delete_confirm:"Delete provider {name}?"},providers_modal:{new_title:"New provider",edit_title:"Edit {name}",description:"LLM provider. The engine defines which adapter it uses (openai, ollama, …).",list_models_hint:"List the provider's actual models",toggle_active:"Active · click to deactivate",toggle_inactive:"Inactive · click to activate",delete:"Delete",custom:"Custom",json_mode:"JSON",form_mode:"Back to form",json_label:"Provider config (JSON)",json_hint:"Saved as engines.{slug} in config.json",json_help:"Must be a valid JSON object with at least engine. The slug is taken from the form.",name_label:"Name",name_ph:"My provider",engine_label:"Engine",base_url_label:"Base URL (base_url)",base_url_hint:"Auto-filled when you pick a provider.",base_url_ph:"https://api.openai.com/v1",api_key_label:"API key",api_key_hint_existing:"Leave blank to keep the current one.",api_key_hint_env:"Stored as a secret. Suggested env: {env}",api_key_hint:"Stored as a secret.",api_key_set:"…{suffix} (already set)",model_label:"Default model",load_models:"Load models",max_tokens_label:"Max tokens (max_tokens)",temperature_label:"Temperature: {value}",pricing_summary:"Token analysis / pricing (optional)",context_limit_label:"Context limit (tokens)",price_input:"$ input / 1M",price_output:"$ output / 1M",price_cache_read:"$ cache read / 1M",price_cache_write:"$ cache write / 1M",model_limits_label:"Per-model context limits (JSON)",active_label:"Active (agents can use it)",err_slug_required:"Slug required.",err_slug_required_form:"Slug required (in the form).",err_slug_exists:'A provider "{slug}" already exists.',err_model_limits_json:"Per-model context limits: invalid JSON.",err_json_invalid:"Invalid JSON: check the syntax.",err_json_object:"The JSON must be an object with the provider config.",err_engine_missing:'Missing "engine" (e.g. "anthropic", "ollama").',err_save:"Error saving.",err_no_models:"No models. Correct key/URL?",err_list_models:"Could not list models."},providers_card:{active:"Active",off:"Off",model:"Model",base_url:"Base URL",api_key:"API key",key_set:"✓ set",temp:"Temp",price_io:"$ in/out (1M)"},chat_ui:{copy:"Copy",stop:"Stop",send:"Send",pick_model:"Pick model (or Auto)",insert_variable:"Insert variable"},sidebar_ui:{toggle:"Toggle sidebar"},models_ui:{invalid_hint:"Model/provider unavailable"},global_config:{title:"APX config"},agent_detail_extra:{skills_title:"Skills & tools"},voice_ui:{api_key_label:"API key",api_key_set:"…{suffix} (already set)",api_key_keep_hint:"Leave blank to keep the current one.",api_key_secret_hint:"Stored as a secret. Env: {env}",api_key_reuse_hint:"Reuses {engine} if left blank. Env: {env}",err_save:"Error while saving.",model_label:"Model",voice_label:"Voice",format_label:"Format",output_format_label:"Output format",voice_id_label:"Voice ID",voice_id_hint:"ElevenLabs voice id (empty = default).",gemini_model_hint:"Gemini TTS is still in preview.",base_url_label:"Base URL (optional)",base_url_hint:"OpenAI-compatible endpoint. Empty = OpenAI. Point it at a local server (e.g. a QVox / Qwen3-TTS daemon) to use that instead.",openai_model_hint:"tts-1 / tts-1-hd for OpenAI. Leave blank to let a custom server pick.",openai_voice_hint:"OpenAI preset (alloy…) or a custom server's preset (e.g. custom). Empty = server default.",openai_style_hint:"Base voice / instruct, used by custom endpoints (the persona kept across the audio). Ignored by stock OpenAI tts-1.",style_label:"Style (how it should speak)",style_hint:"Natural-language instruction. Empty = no style. E.g.: 'speak in a cheerful, unhurried tone'.",style_ph:"speak in a cheerful, energetic tone",temperature_label:"Temperature (optional)",temperature_hint:"Sampling temperature for custom endpoints. Empty = server default.",emotions_short:"Emotions",emotions_label:"Inline emotion tags",emotions_hint:"When this engine speaks, let the agent drop [happy]/[whisper]-style tags into voice replies to color the delivery. Only enable it if this engine understands the tags (e.g. a QVox/Qwen3-TTS endpoint) — otherwise they're stripped before synthesis.",emotions_tags_label:"Allowed tags",emotions_tags_hint:"Comma-separated. Empty = the default set.",piper_bin_label:"Binary (bin)",piper_bin_hint:"Path or name of the piper CLI (PATH).",piper_model_label:"Model (.onnx)",piper_model_hint:"Absolute path to the piper voice model.",piper_speaker_label:"Speaker (optional)",piper_speaker_hint:"Speaker id for multi-voice models.",mock_desc:"The mock engine generates a silent test WAV. It has no parameters: it serves as a guaranteed fallback when no other engine is configured.",selection_mode:"Selection mode",mode_chain_desc:"Chain with fallback: uses the first available engine following the order below.",mode_single_desc:"Default engine only: always uses the chosen one; the rest stay configured for other purposes.",mode_chain_btn:"Chain (router)",mode_single_btn:"Default engine only",move_up:"Move up",move_down:"Move down",badge_local:"local",badge_available:"available",badge_unavailable:"configured, unavailable",badge_not_configured:"not configured",badge_default:"default",badge_custom:"custom",set_as_default:"Set as default",configure:"Configure",remove:"Remove",remove_confirm:"Remove this custom provider?",add_provider:"Add provider",new_provider:"New provider",custom_note:"Custom OpenAI-compatible endpoint.",custom_desc:"Any OpenAI-compatible speech endpoint (e.g. a local QVox / Qwen3-TTS server).",label_label:"Name",label_hint:"Display name for this provider.",base_url_req_label:"Base URL",base_url_req_hint:"Required. The OpenAI-compatible endpoint, e.g. http://127.0.0.1:5111/v1",api_key_optional_hint:"Optional — only if your server requires a key.",advanced:"Advanced",custom_model_hint:"Optional. Most local servers ignore it (e.g. QVox).",custom_voice_hint:"Optional. A preset your server understands (e.g. custom). Empty = server default.",custom_optional_ph:"(optional)",stt_engine_label:"Transcription engine",stt_engine_hint:"Local uses faster-whisper (requires python3 + faster-whisper). OpenAI uses the engines.openai key.",stt_model_label:"Local model (whisper)",stt_model_hint:"Bigger = more accurate and slower.",stt_language_label:"Language",stt_language_hint:'For Spanish, setting "Spanish" improves accuracy.',stt_provider_auto:"Automatic (local, then remote)",stt_provider_local:"Local — faster-whisper (offline)",stt_provider_openai:"OpenAI — Whisper-1 (cloud)",stt_provider_custom:"Custom — OpenAI-compatible server",stt_openai_model_label:"OpenAI model",stt_openai_model_hint:"Defaults to whisper-1.",stt_custom_baseurl_label:"Base URL (OpenAI-compatible)",stt_custom_baseurl_hint:"e.g. http://localhost:8000/v1 (mlx-audio on Metal) or http://192.168.1.50:9000/v1 (Radeon/NVIDIA on the LAN).",stt_custom_model_label:"Model",stt_custom_model_hint:"e.g. mlx-community/whisper-large-v3-turbo or large-v3.",stt_custom_key_hint:"Optional — most local servers need no key.",stt_hw_label:"Detected hardware",stt_hw_recommended:"Recommended",stt_hw_limited:"limited GPU acceleration, using CPU",stt_backend_label:"Acceleration / Engine",stt_backend_hint:"Auto adapts to your hardware. Metal runs on the GPU (mlx); CPU uses faster-whisper.",stt_backend_auto:"Automatic (recommended)",stt_model_needs_download:"Not downloaded (~{size}). The model must be downloaded to use this engine.",lang_auto:"Auto-detect",lang_es:"Spanish",lang_en:"English",lang_pt:"Portuguese",lang_fr:"French",lang_it:"Italian",lang_de:"German",test_default_text:"Hi, I'm APX. This is a voice test.",test_default_engine:"Default ({name})",test_default_chain:"Default (chain)",test_unavailable_suffix:" · unavailable",test_empty_error:"Type something to say.",test_synth_error:"Could not synthesize.",test_engine_label:"Engine",test_engine_hint:"Override the default for testing.",test_style_label:"Style (Gemini only)",test_style_hint:"How it should speak. Empty = no style.",test_text_label:"Text to say",test_text_ph:"Type what you want it to say…",say_this:"Say this",stop:"Stop",replay:"Replay",engine_result:"Engine",providers_desc:"Synthesis engines, in fallback order. Status is reported live by the daemon. Add your own OpenAI-compatible endpoints.",providers_load_error:"Could not load providers: {msg}",test_desc:"Pick which engine to synthesize with and, if applicable, how it should speak.",stt_desc:"Speech-to-text engine used by the deck, Telegram, and the CLI when listening.",toast_default_engine:"Default engine: {id}.",toast_mode_chain:"Mode: chain with fallback.",toast_mode_single:"Mode: default engine only.",toast_config_saved:"Voice configuration saved.",toast_provider_removed:"Provider removed.",err_label_required:"A name is required.",err_base_url_required:"A base URL is required.",toast_transcription_updated:"Transcription updated."},telegram_ui:{channel_dialog_desc:"POST /telegram/channels (upsert) — PATCH /telegram/channels/:name (partial).",bot_token_hint:"BotFather token. Stored in ~/.apx/config.json.",bot_token_hint_short:"BotFather token.",secret_set_replace:"(set — type to replace)",secret_already_set:"(already set)",empty_keep:"— empty = keep",message_sent:"Message sent.",message_label:"Text",send_chat_id:"chat_id: {id}",default_apx:"default APX",yes:"yes",no:"no",user_id_fallback:"user_id {id}",role_assigned:"{name} → {role}"},agents_form:{emoji:"Emoji",area:"Area",role:"Role",no_role:"— no role —",autonomy:"Autonomy",autonomy_hint:"How much the agent can do without asking for confirmation.",auto_total:"Total",auto_automatico:"Auto",auto_permiso:"Permission"},structure:{title:"Structure",subtitle:"Company areas and roles. Areas group agents; roles define their function.",info:"Areas are optional groupings. Roles define an agent's function and may belong to an area.",empty:"No areas or roles yet. Create the first one above.",new_area:"New area",new_role:"New role",edit_area:"Edit area",edit_role:"Edit role",create_area:"Create area",create_role:"Create role",name:"Name",slug:"Slug",goal:"Goal",goal_hint:"What this area exists for (optional).",area:"Area",description:"Description",no_area:"— no area —",roles:"Roles",add_role:"role",no_roles:"no roles",general_roles:"General roles",delete_area:"Delete area",delete_role:"Delete role",delete_area_desc:'Delete area "{name}"? Its roles are detached, not deleted.',delete_role_desc:'Delete role "{name}"?'},files:{docs_label:"Docs",files_label:"Files",new_doc:"New document",new_doc_hint:"Folders allowed: cases/onboarding/spec.md",empty:"No files.",docs_empty:"No documentation yet. Create the first document.",truncated:"Listing truncated (too many files).",select_prompt:"Pick a file to view it.",save:"Save",saved:"Saved.",deleted:"Deleted.",created:"Document created.",edit:"Edit",preview:"Preview",discard:"Discard",no_preview:"No preview for this file.",too_large:"File too large to display.",path_label:"File path",path_example:"e.g. cases/onboarding/spec.md",create:"Create"},tasks:{state_open:"open",state_done:"done",state_dropped:"dropped",status_pending:"pending",status_running:"running",status_in_review:"in review",status_blocked:"blocked",done_label:"done",dropped_label:"dropped",detail_title:"Task detail",field_title:"Title",field_prompt:"Prompt",field_status:"Status",field_agent:"Agent",field_creator:"Created by",field_source:"Source",field_created:"Created",field_updated:"Updated",field_done:"Completed",prompt_ph:"Task description / prompt…",toggle_prompt:"Prompt",view_thread:"View thread",mark_done:"Complete"},agents_ui:{model_router_default:"model: router default",slug_kebab_hint:"kebab-case, e.g. reviewer, my-agent, content-writer",comma_separated:"comma-separated",body_hint:"markdown — extends the agent's system prompt",source_user:"user",source_override:"override",source_bundled:"bundled",tab_explorer:"Explorer",type_none:"— no type —",type_orchestrator:"Orchestrator",type_orchestrator_desc:"Coordinates the team and delegates.",type_specialist:"Specialist",type_specialist_desc:"Domain expert; runs tasks.",type_assistant:"Assistant",type_assistant_desc:"Conversational helper.",type_worker:"Worker",type_worker_desc:"Runs autonomous tasks.",type_monitor:"Monitor",type_monitor_desc:"Watches state and reports.",stat_threads:"Threads",stat_records:"Records",stat_tasks:"Tasks",stat_heartbeats:"Heartbeats",config_def_desc:"definition (frontmatter + system prompt).",memory_durable_desc:"durable facts the agent remembers.",running:"running",paused:"paused",last_error:"last: error",field_tick:"Tick",field_next_tick:"Next tick",field_last_tick:"Last tick",field_last_run:"Last run",tools_label:"Tools",kind_agent:"agent",kind_memory:"memory",kind_thread:"thread",kind_task:"task",kind_routine:"routine",kind_hierarchy:"hierarchy",nodes_drag_hint:"{n} nodes · drag to rearrange",kind_exec_agent:"Project agent",kind_exec_agent_desc:"Runs a project agent with a prompt. You pick which one.",kind_super_agent:"Super-agent",kind_super_agent_desc:"Calls the APX super-agent with a prompt.",kind_telegram:"Telegram",kind_telegram_desc:"Sends a fixed message to a Telegram channel. No model or agent.",kind_shell:"Shell",kind_shell_desc:"Runs a shell command. No prompt or pre/post — the command is the action.",kind_heartbeat:"Heartbeat",kind_heartbeat_desc:"Does nothing except write a line to the logs each time it runs. Useful to confirm the scheduler is alive. If you don't know whether you need it, don't use it.",unit_seconds:"seconds",unit_minutes:"minutes",unit_hours:"hours",unit_days:"days",every_n_unit:"every {n} {unit}",every_v:"every {v}",preset_every_10m:"every 10 min",preset_hourly:"hourly",preset_daily_9am:"daily 9am",preset_weekdays_9am:"weekdays 9am",preset_manual:"Manual",var_pre_output_prompt:"Text output of the pre-commands. Replaced inside the prompt/text before it is sent. Use it to inject fresh data (weather, an API) into the instruction.",var_llm_output:"Final answer from the agent or super-agent. Available in the post-commands as an env var — e.g. forward it via Telegram.",var_status:"Action result: ok or error. Available in the post-commands to branch on what happened.",var_skipped:"1 if the action was skipped (via skip_prompt_on), 0 if it ran. Available in the post-commands.",var_pre_output:"Full pre-commands output, as an env var in the post-commands (up to 32k).",var_pre_output_file:"Path to a temp file with the pre-commands output. For large outputs not suited to an env var.",var_pre_exit:"Exit code of the last pre-command (0 = ok). Available in the post-commands.",var_routine:"Name of this routine. Available as an env var in the commands.",summary_runs_agent:'Runs the agent "{agent}"',summary_runs_agent_none:"Runs an agent (none chosen yet)",summary_super_agent:"Calls the super-agent",summary_telegram:'Sends Telegram to "{channel}"',summary_runs_cmd:"Runs: {cmd}",summary_shell:"Runs a shell command",summary_heartbeat:"Leaves a heartbeat in the logs",action_agent_answers:'Agent "{agent}" answers the prompt',action_agent_pick_answers:"Agent (pick one) answers the prompt",action_super_answers:"The super-agent answers the prompt",action_telegram_channel:'Sends Telegram to channel "{channel}"',action_runs_shell:"Runs the shell command",step_pre:"Pre",step_post:"Post",last_label:"last:",tg_chat_id_ph:"(uses the channel's)",tg_text_ph:"message to send",hb_message_ph:"still alive",arg_placeholder:"--flag or value",remove_arg:"remove arg",super_agent_label:"{persona} (super-agent)",super_agent_badge:"super-agent"},modules_ui:{desktop_pos_left:"Left",desktop_pos_center:"Center",desktop_pos_right:"Right",desktop_theme_system:"System",desktop_theme_light:"Light",desktop_theme_dark:"Dark",desktop_status_desc:"The window launches from the terminal or via autostart.",desktop_running:"Running",desktop_stopped:"Stopped",desktop_refresh:"refresh",desktop_start:"Start",desktop_stop:"Stop",desktop_restart:"Restart",desktop_restart_hint:"Reload the open window so config changes (theme, position) apply now.",desktop_restart_done:"Restarting the window — applying the latest config.",desktop_restart_none:"No desktop window is connected.",desktop_start_done:"Desktop window launched.",desktop_start_already:"Desktop window is already running.",desktop_stop_done:"Desktop window stopped.",desktop_stop_none:"No desktop window was running.",desktop_from_terminal:"From terminal:",desktop_autostart_desc:"Launches the window at user login. Equivalent to `apx desktop install` (no sudo required).",desktop_platform:"platform: {platform}",desktop_shortcut_desc:"Global hotkey that shows/hides the window and starts listening.",desktop_accelerator:"Accelerator",desktop_accelerator_hint:"Click the field and press your key combo. Restart the window to apply.",desktop_shortcut_record:"Click to set a shortcut",desktop_shortcut_recording:"Press your combo…",desktop_shortcut_change:"click to change",desktop_shortcut_esc:"Esc to cancel",desktop_shortcut_saved:"Shortcut saved. Restart the window (apx desktop stop && start) to apply it.",desktop_autostart_on:"Autostart enabled for the next login.",desktop_autostart_off:"Autostart disabled.",desktop_appearance_desc:"Window theme and position on the screen.",desktop_theme:"Theme",desktop_restart_apply:"Restart the window to apply.",desktop_theme_set:"Theme: {value}.",desktop_position:"Position",desktop_position_hint:'"left" / "center" / "right" of the top edge.',desktop_position_set:"Position: {value}.",desktop_activation_desc:"The daemon plugin processes the messages. STT is configured in Voices.",desktop_enabled_toast:"Desktop enabled.",desktop_disabled_toast:"Desktop disabled.",desktop_plugin_on:"Plugin enabled (replies to messages)",desktop_plugin_off:"Plugin disabled",desktop_stt_engine:"Speech-to-text engine:",desktop_stt_engine_suffix:"(local whisper, language, model).",desktop_last_conv_desc:"The latest exchange with the agent from the floating window.",desktop_no_messages:"No messages yet. Send something to the desktop window for it to appear here.",desktop_you:"You",desktop_roby:"Roby",desktop_empty_msg:"(empty)",deck_widget_enabled:"Widget {id} enabled.",deck_widget_disabled:"Widget {id} disabled.",deck_save_error:"Error while saving",deck_loading_manifest:"Loading manifest…",deck_manifest_error:"Error loading the manifest.",deck_widgets_summary:"{count} widgets · {enabled} external enabled",deck_loading_manifest_full:"Loading the Deck manifest…",deck_manifest_load_failed:"Could not load the Deck manifest.",deck_retry:"Retry",deck_no_widgets:"No widgets in the manifest.",deck_context_desc:"Information the Deck sees from the daemon.",deck_active_project:"Active project:",deck_none:"none",deck_registered_projects:"Registered projects:",deck_active_plugins:"Active plugins:",deck_daemon_active:"active · {uptime}",deck_daemon_started:"started",deck_safety_no_shell:"no direct shell",deck_safety_no_arbitrary:"arbitrary commands blocked",deck_safety_confirm:"dangerous actions require confirmation",code_copied:"Copied.",code_saved:"Saved.",code_file_empty:"(empty)",code_file_error:"Error: {msg}",code_stream_error:"error",code_super_agent:"super-agent",code_super_agent_desc:"Main agent with all tools",code_chat_tab:"Chat",code_panel_sessions:"Session list",code_panel_tree:"File tree",code_panel_terminal:"Terminal",code_panel_context:"Context panel",code_ctx_auto:"auto",code_ctx_mode:"Mode",code_ctx_agent:"Agent",code_ctx_msgs_value:"{user} user · {assistant} assistant",code_ctx_tokens_total:"Total Tokens",code_ctx_created:"Created",code_ctx_activity:"Activity",code_project_fallback:"project {id}",code_pick_project_ph:"Pick a project…",code_artifact_exit_ok:"exit 0 — {ms}ms",code_artifact_exit_fail:"exit {code}{timeout}",code_artifact_timeout_suffix:" (timeout)",code_artifact_view_short:"View",code_artifact_edit_short:"Edit",code_artifact_exit_badge:"exit {code}",code_artifact_timeout:"timeout",code_artifact_truncated:"truncated"},settings_ui:{bearer_label:"Bearer",global_config_desc:"General config in ~/.apx/config.json. Editable by tabs; JSON stays separate.",global_json_desc:"Redacted secrets are not overwritten.",save_json:"Save JSON",expand_menu:"Expand menu",collapse_menu:"Collapse menu",documentation:"Documentation",kind_personal:"Personal",kind_company:"Company",kind_app:"App",kind_software:"Software",kind_default:"Default",kind_other:"Other",base_menu_view:"Base menu view (general workspace).",coming_soon:"Coming soon",inspector_title:"Skill Inspector (per-turn RAG)",inspector_desc:"Experimental feature. When active, the agent does NOT receive the full skill list in its prompt; on each message a local RAG decides which skill(s) to load — the full body on a strong match, a suggestion on a medium match, nothing if it doesn't apply. It is re-evaluated every turn: a skill that stopped being relevant disappears from the context.",enable_inspector:"Enable inspector",enable_inspector_hint:"Off = classic behavior (slug list + passive suggestion). On = the RAG decides per turn.",on:"On",off:"Off",index_count:"Index: {n} skills",not_indexed:"not indexed",dim:"dim {dim}",updated_at:"updated {date}",reindex:"Reindex",reindex_forced:"Reindex (forced)",embedder_source:"The embedder comes from Memory (RAG). Local with Ollama, or offline if no provider is set.",thresholds_title:"Thresholds and limits",thresholds_desc:"Tune how aggressive the inspector is. Raising the thresholds = fewer false positives but more risk of missing a skill; lowering them = the opposite.",test_title:"Test (dry-run)",test_desc:"Type a message the way a user would and see which skills the inspector would load/suggest — without calling the model. Forces the inspector on even if it's off above.",test_placeholder:"e.g.: I need to create a promo video with voiceover",test_btn:"Test",jit_empty_index:"JIT (empty index)",loaded_label:"Loaded:",suggested_label:"Suggested:",could_not_save:"Could not save: {msg}",indexed_with:"Indexed with {embedder} (dim {dim}): +{added} ~{refreshed} -{removed}.",index_failed:"Index failed: {msg}",dry_run_failed:"Dry-run failed: {msg}",knob_load_threshold:"Load threshold",knob_load_threshold_hint:"Minimum similarity to inject the skill's BODY (high = stricter).",knob_hint_threshold:"Hint threshold",knob_hint_threshold_hint:"Minimum similarity to only SUGGEST the skill (so the agent loads it if it wants).",knob_margin:"Margin over the 2nd",knob_margin_hint:"The top must beat the second by this margin to load its body (avoids weak ties).",knob_max_loaded:"Max. loaded bodies",knob_max_loaded_hint:"How many skills are injected in full per turn.",knob_max_hints:"Max. hints",knob_max_hints_hint:"How many extra skills are named as a suggestion.",knob_prompt_floor:"Minimum prompt length",knob_prompt_floor_hint:"Messages shorter than this are ignored (avoids 'ok', 'hi').",knob_body_char_cap:"Body char cap",knob_body_char_cap_hint:"Trims long skill bodies so they don't bloat the context.",cfg_overrides_label:"Overrides",cfg_overrides_desc:".apc/config.json. Only project-specific values; empty inherits global/effective.",cfg_route_to_agent:"Route to agent",cfg_super_agent_model:"Super-agent model",cfg_permission_mode:"Permission mode",cfg_extra_prompt:"Extra prompt",cfg_telegram_label:"Telegram",cfg_chat_id:"Chat ID",cfg_bot_token:"Bot token",cfg_respond_with_engine:"Respond with engine",cfg_engines_label:"Engines",cfg_ollama_url:"Ollama URL",cfg_anthropic_key:"Anthropic API key",cfg_openai_key:"OpenAI API key",cfg_groq_key:"Groq API key",cfg_openrouter_key:"OpenRouter API key",cfg_gemini_key:"Gemini API key",cfg_project_label:"Project",cfg_project_desc:".apc/project.json. Portable APC metadata; no secrets, no runtime.",cfg_name:"Name",cfg_version:"Version",cfg_apc_spec:"APC spec",cfg_apx_install:"APX install state",cfg_apx_storage_id:"APX storage id"},skills_page:{title:"Skills",desc:"Turn skills on or off per agent. Pick a scope: the super-agent (global) or a specific project.",list_title:"Installed skills",list_desc:"APX's private skills are always active and can't be changed.",scope_label:"Scope",scope_super_agent:"Super-agent (global)",scope_hint:"The super-agent uses the global scope. Each project can override skills independently.",count_label:"{n} skills · {on} on",empty:"No skills yet. Create one below or install via the CLI.",source_builtin:"APX",source_global:"Global",source_project:"Project",private_badge:"Private",private_hint:"Built-in APX skill — always active, can't be disabled or deleted.",overridden_badge:"Override",inherited_hint:"Inherited from global",reset_to_global:"Reset to global",on:"on",off:"off",toggle_failed:"Could not change state: {msg}",add_title:"Add a skill",add_desc:"Creates a user skill at ~/.apx/skills/<slug>/SKILL.md. Available across all scopes.",add_slug_label:"Slug",add_slug_ph:"my-skill",add_desc_label:"Description",add_desc_ph:"One line describing when to use it",add_body_label:"Body (Markdown)",add_body_ph:`# My skill
731
-
732
- Instructions for the agent…`,add_btn:"Create skill",created_ok:'Skill "{slug}" created.',create_failed:"Could not create: {msg}",delete_btn:"Delete",delete_confirm:`Delete skill "{slug}"? This can't be undone.`,deleted_ok:'Skill "{slug}" deleted.',delete_failed:"Could not delete: {msg}",inspector_section_title:"Skill Inspector (per-turn RAG)",inspector_section_desc:"Advanced: local RAG that injects only the skills a message needs.",scope_ph:"— choose scope —",select_a_skill:"Pick a skill from the list to see its content.",added_by:"Added by",activator:"Activator",by_apx:"APX (built-in)",by_you:"You",activator_value:"Semantic match (RAG)",tab_preview:"Preview",tab_source:"Source",add_menu:"Add",add_online:"Create with editor",add_online_hint:"Write slug + description + content",add_zip:"Upload .zip",add_zip_hint:"Import a packaged skill",add_repo:"From git repo",add_repo_hint:"Clone from a URL",create_dialog_title:"Create skill",repo_dialog_title:"Import from git repo",repo_url_label:"Repo URL",repo_url_ph:"https://github.com/user/my-skill.git",repo_url_hint:"The repo (or its subfolder) must contain a SKILL.md.",import_btn:"Import",imported_ok:'Skill "{slug}" imported.',import_failed:"Could not import: {msg}",cancel:"Cancel",manager_tab:"Skills",rag_tab:"Config (RAG)"},shared_ui:{skill_inspector_title:"Skill Inspector ({embedder}) chose these skills for this turn",tools_count:"{n} tools",tool_read_file:"Read file",tool_write_file:"Write file",tool_edit_file:"Edit file",tool_list_files:"List files",tool_search_files:"Search in files",tool_search_messages:"Search messages",tool_tail_messages:"Latest messages",tool_run_shell:"Run shell",tool_send_telegram:"Send Telegram",tool_call_agent:"Call agent",tool_call_mcp:"Call MCP",tool_call_runtime:"Call runtime",tool_create_task:"Create task",dedup:"dedup",args:"args",result:"result",auto:"Auto",auto_router:"Auto (router decides)",model_filter_ph:"filter or type a model…",loading_models:"loading models…",use_value:"use “{value}”",model_combobox_ph:"pick or type a model…",search_variable_ph:"search variable…",no_matches:"no matches",create_variable:"Create new variable…",kv_key_ph:"KEY",kv_value_ph:"value",remove_row:"remove row",add_row:"Add row",err_chat_failed:"Chat failed.",err_stream_failed:"Stream failed.",err_load_conversation:"Could not load conversation.",err_stream:"Stream error."},integrations:{title:"Integrations",description:"Plugins and tools available for this project",tab_plugins:"Plugins",tab_tools:"Tools",scope_label:"Scope:",scope_project:"This project",scope_global:"Global (default)",plugins_hint:"Channel & service plugins installable per project. Saved in the scope selected above.",more_soon:"More plugins coming soon…",tools_hint:"Tools that connected plugins expose to this project's agents.",tools_empty:"No integration tools yet. Connect a plugin to enable them.",tool_active:"active",tool_inactive:"inactive",status_active:"Active",status_error:"Error",status_unconfigured:"Not configured",connected:"Connected",connect:"Connect",deactivate:"Deactivate",saving:"Saving...",validating:"Validating...",verifying:"Verifying token...",confirm:"Confirm",select_placeholder:"Select...",reveal:"Show",hide:"Hide",credentials:"{name} credentials",coming_soon:"Coming soon",coming_soon_body:"This plugin is declared in the catalog but isn't connectable in APX yet. It will be ported natively in a future iteration.",tools_for_agents:"Agent tools",tools_available_note:"Available to agents that allow them, or via discover_tools.",err_connect:"Failed to connect",err_generic:"Something went wrong",asana:{select_label:"Select the workspace to use",connected:{user_name:"Connected as",user_email:"Email",workspace_name:"Workspace"},fields:{personal_access_token:{label:"Personal Access Token",help_label:"How to get the token?",help_steps:`Open app.asana.com/0/my-apps in your browser.
733
- Scroll to the "Personal access tokens" section (not your OAuth apps).
734
- Click "+ New access token".
735
- Give it a name and confirm.
736
- Copy the full token — it starts with "1/..." and has a ":" in the middle.
737
- Paste it in the field below.`}}},github:{connected:{user_login:"Connected as",user_name:"Name"},fields:{token:{label:"Personal Access Token",help_label:"How to get the token?",help_steps:`Open github.com/settings/tokens.
738
- Generate a token (classic or fine-grained) with the "repo" scope.
739
- Copy the token — it starts with ghp_ or github_pat_.
740
- Paste it in the field below.`}}}}},v_={es:mP,en:gP};function hP(){try{const e=localStorage.getItem(On.language);if(e&&e in v_)return e}catch{}return"en"}let Sp=hP();function JC(e){Sp=e;try{localStorage.setItem(On.language,e)}catch{}}const eN=[{value:"es",label:"Español"},{value:"en",label:"English"}];function y_(){return Sp}function xP(e){const t=v_[Sp],a=e.split(".");let o=t;for(const l of a)if(o&&typeof o=="object"&&l in o)o=o[l];else return;return typeof o=="string"?o:void 0}function bP(e,t){return t?e.replace(/\{(\w+)\}/g,(a,o)=>o in t?String(t[o]):`{${o}}`):e}function _P(e){const t=xP(e);if(t!==void 0)return t;if(Sp!=="es"){const a=v_.es,o=e.split(".");let l=a;for(const c of o)if(l&&typeof l=="object"&&c in l)l=l[c];else return;return typeof l=="string"?l:void 0}}function u(e,t){const a=_P(e);return a===void 0?e:bP(a,t)}function j_(e){const[t,a]=x.useState(!1);x.useEffect(()=>{try{a(localStorage.getItem(e)==="true")}catch{}},[e]);const o=x.useCallback(()=>a(l=>{const c=!l;try{localStorage.setItem(e,String(c))}catch{}return c}),[e]);return{collapsed:t,toggle:o}}function vP({collapsed:e,onToggle:t}){return s.jsx(Ye,{content:u(e?"settings_ui.expand_menu":"settings_ui.collapse_menu"),side:"bottom",children:s.jsx("button",{type:"button",onClick:t,"aria-label":u(e?"settings_ui.expand_menu":"settings_ui.collapse_menu"),className:"flex size-7 shrink-0 items-center justify-center rounded-md text-muted-fg transition-colors hover:bg-accent hover:text-foreground",children:s.jsx(GS,{className:he("size-4 transition-transform",e&&"rotate-180")})})})}function yP({sections:e,active:t,onChange:a,collapsed:o=!1}){return s.jsx("nav",{className:he("hidden md:flex shrink-0 flex-col gap-1 py-3 transition-all",o?"w-12 items-center px-1":"w-44 px-2"),children:e.map((l,c)=>s.jsxs("div",{className:he("w-full",c>0&&"mt-2"),children:[!o&&l.title&&s.jsx("p",{className:"mb-1 px-2 text-[9px] font-semibold uppercase tracking-wider text-muted-fg/70",children:l.title}),s.jsx("div",{className:"space-y-0.5",children:l.items.map(({key:d,label:p,icon:m,badge:g})=>{const h=t===d,b=s.jsxs("button",{type:"button",onClick:()=>a(d),"data-testid":`tabnav-${d||"index"}`,className:he("flex cursor-pointer items-center rounded-lg transition-colors",o?"size-9 justify-center":"w-full gap-2 px-2.5 py-1.5",h?"bg-accent text-accent-fg":"text-muted-fg hover:bg-accent/60 hover:text-foreground"),children:[s.jsx(m,{className:"size-4 shrink-0"}),!o&&s.jsxs(s.Fragment,{children:[s.jsx("span",{className:"flex-1 truncate text-left text-xs",children:p}),g!==void 0&&s.jsx("span",{className:"rounded-full bg-muted px-1.5 text-[9px] text-muted-fg",children:g})]})]});return o?s.jsx(Ye,{content:p,side:"right",children:b},d):s.jsx(x.Fragment,{children:b},d)})})]},c))})}const tN=0,nN=1,sN=2,fk=3;var pk=Object.prototype.hasOwnProperty;function Ax(e,t){var a,o;if(e===t)return!0;if(e&&t&&(a=e.constructor)===t.constructor){if(a===Date)return e.getTime()===t.getTime();if(a===RegExp)return e.toString()===t.toString();if(a===Array){if((o=e.length)===t.length)for(;o--&&Ax(e[o],t[o]););return o===-1}if(!a||typeof e=="object"){o=0;for(a in e)if(pk.call(e,a)&&++o&&!pk.call(t,a)||!(a in t)||!Ax(e[a],t[a]))return!1;return Object.keys(t).length===o}}return e!==e&&t!==t}const Xa=new WeakMap,Wa=()=>{},Hn=Wa(),Mx=Object,St=e=>e===Hn,da=e=>typeof e=="function",Vr=(e,t)=>({...e,...t}),aN=e=>da(e.then),gh={},Bd={},k_="undefined",uu=typeof window!=k_,Ox=typeof document!=k_,jP=uu&&"Deno"in window,kP=()=>uu&&typeof window.requestAnimationFrame!=k_,rN=(e,t)=>{const a=Xa.get(e);return[()=>!St(t)&&e.get(t)||gh,o=>{if(!St(t)){const l=e.get(t);t in Bd||(Bd[t]=l),a[5](t,Vr(l,o),l||gh)}},a[6],()=>!St(t)&&t in Bd?Bd[t]:!St(t)&&e.get(t)||gh]};let zx=!0;const wP=()=>zx,[Dx,Px]=uu&&window.addEventListener?[window.addEventListener.bind(window),window.removeEventListener.bind(window)]:[Wa,Wa],SP=()=>{const e=Ox&&document.visibilityState;return St(e)||e!=="hidden"},CP=e=>(Ox&&document.addEventListener("visibilitychange",e),Dx("focus",e),()=>{Ox&&document.removeEventListener("visibilitychange",e),Px("focus",e)}),NP=e=>{const t=()=>{zx=!0,e()},a=()=>{zx=!1};return Dx("online",t),Dx("offline",a),()=>{Px("online",t),Px("offline",a)}},EP={isOnline:wP,isVisible:SP},RP={initFocus:CP,initReconnect:NP},mk=!tu.useId,ql=!uu||jP,TP=e=>kP()?window.requestAnimationFrame(e):setTimeout(e,1),hh=ql?x.useEffect:x.useLayoutEffect,xh=typeof navigator<"u"&&navigator.connection,gk=!ql&&xh&&(["slow-2g","2g"].includes(xh.effectiveType)||xh.saveData),Ud=new WeakMap,AP=e=>Mx.prototype.toString.call(e),bh=(e,t)=>e===`[object ${t}]`;let MP=0;const Lx=e=>{const t=typeof e,a=AP(e),o=bh(a,"Date"),l=bh(a,"RegExp"),c=bh(a,"Object");let d,p;if(Mx(e)===e&&!o&&!l){if(d=Ud.get(e),d)return d;if(d=++MP+"~",Ud.set(e,d),Array.isArray(e)){for(d="@",p=0;p<e.length;p++)d+=Lx(e[p])+",";Ud.set(e,d)}if(c){d="#";const m=Mx.keys(e).sort();for(;!St(p=m.pop());)St(e[p])||(d+=p+":"+Lx(e[p])+",");Ud.set(e,d)}}else d=o?e.toJSON():t=="symbol"?e.toString():t=="string"?JSON.stringify(e):""+e;return d},w_=e=>{if(da(e))try{e=e()}catch{e=""}const t=e;return e=typeof e=="string"?e:(Array.isArray(e)?e.length:e)?Lx(e):"",[e,t]};let OP=0;const Ix=()=>++OP;async function oN(...e){const[t,a,o,l]=e,c=Vr({populateCache:!0,throwOnError:!0},typeof l=="boolean"?{revalidate:l}:l||{});let d=c.populateCache;const p=c.rollbackOnError;let m=c.optimisticData;const g=_=>typeof p=="function"?p(_):p!==!1,h=c.throwOnError;if(da(a)){const _=a,j=[],E=t.keys();for(const k of E)!/^\$(inf|sub)\$/.test(k)&&_(t.get(k)._k)&&j.push(k);return Promise.all(j.map(b))}return b(a);async function b(_){const[j]=w_(_);if(!j)return;const[E,k]=rN(t,j),[y,w,S,N]=Xa.get(t),R=()=>{const $=y[j];return(da(c.revalidate)?c.revalidate(E().data,_):c.revalidate!==!1)&&(delete S[j],delete N[j],$&&$[0])?$[0](sN).then(()=>E().data):E().data};if(e.length<3)return R();let A=o,T,O=!1;const z=Ix();w[j]=[z,0];const U=!St(m),P=E(),B=P.data,D=P._c,L=St(D)?B:D;if(U&&(m=da(m)?m(L,B):m,k({data:m,_c:L})),da(A))try{A=A(L)}catch($){T=$,O=!0}if(A&&aN(A))if(A=await A.catch($=>{T=$,O=!0}),z!==w[j][0]){if(O)throw T;return A}else O&&U&&g(T)&&(d=!0,k({data:L,_c:Hn}));if(d&&!O)if(da(d)){const $=d(A,L);k({data:$,error:Hn,_c:Hn})}else k({data:A,error:Hn,_c:Hn});if(w[j][1]=Ix(),Promise.resolve(R()).then(()=>{k({_c:Hn})}),O){if(h)throw T;return}return A}}const hk=(e,t)=>{for(const a in e)e[a][0]&&e[a][0](t)},zP=(e,t)=>{if(!Xa.has(e)){const a=Vr(RP,t),o=Object.create(null),l=oN.bind(Hn,e);let c=Wa;const d=Object.create(null),p=(h,b)=>{const _=d[h]||[];return d[h]=_,_.push(b),()=>{const j=_.indexOf(b);j>=0&&(_[j]=_[_.length-1],_.pop())}},m=(h,b,_)=>{e.set(h,b);const j=d[h];if(j)for(const E of j)E(b,_)},g=()=>{if(!Xa.has(e)&&(Xa.set(e,[o,Object.create(null),Object.create(null),Object.create(null),l,m,p]),!ql)){const h=a.initFocus(setTimeout.bind(Hn,hk.bind(Hn,o,tN))),b=a.initReconnect(setTimeout.bind(Hn,hk.bind(Hn,o,nN)));c=()=>{h&&h(),b&&b(),Xa.delete(e)}}};return g(),[e,l,g,c]}return[e,Xa.get(e)[4]]},DP=(e,t,a,o,l)=>{const c=a.errorRetryCount,d=l.retryCount,p=~~((Math.random()+.5)*(1<<(d<8?d:8)))*a.errorRetryInterval;!St(c)&&d>c||setTimeout(o,p,l)},PP=Ax,[lN,zf]=zP(new Map),LP=Vr({onLoadingSlow:Wa,onSuccess:Wa,onError:Wa,onErrorRetry:DP,onDiscarded:Wa,revalidateOnFocus:!0,revalidateOnReconnect:!0,revalidateIfStale:!0,shouldRetryOnError:!0,errorRetryInterval:gk?1e4:5e3,focusThrottleInterval:5*1e3,dedupingInterval:2*1e3,loadingTimeout:gk?5e3:3e3,compare:PP,isPaused:()=>!1,cache:lN,mutate:zf,fallback:{}},EP),IP=(e,t)=>{const a=Vr(e,t);if(t){const{use:o,fallback:l}=e,{use:c,fallback:d}=t;o&&c&&(a.use=o.concat(c)),l&&d&&(a.fallback=Vr(l,d))}return a},BP=x.createContext({}),UP="$inf$",iN=uu&&window.__SWR_DEVTOOLS_USE__,$P=iN?window.__SWR_DEVTOOLS_USE__:[],HP=()=>{iN&&(window.__SWR_DEVTOOLS_REACT__=tu)},VP=e=>da(e[1])?[e[0],e[1],e[2]||{}]:[e[0],null,(e[1]===null?e[2]:e[1])||{}],cN=()=>{const e=x.useContext(BP);return x.useMemo(()=>Vr(LP,e),[e])},qP=e=>(t,a,o)=>e(t,a&&((...c)=>{const[d]=w_(t),[,,,p]=Xa.get(lN);if(d.startsWith(UP))return a(...c);const m=p[d];return St(m)?a(...c):(delete p[d],m)}),o),FP=$P.concat(qP),GP=e=>function(...a){const o=cN(),[l,c,d]=VP(a),p=IP(o,d);let m=e;const{use:g}=p,h=(g||[]).concat(FP);for(let b=h.length;b--;)m=h[b](m);return m(l,c||p.fetcher||null,p)},YP=(e,t,a)=>{const o=t[e]||(t[e]=[]);return o.push(a),()=>{const l=o.indexOf(a);l>=0&&(o[l]=o[o.length-1],o.pop())}};HP();const _h=tu.use||(e=>{switch(e.status){case"pending":throw e;case"fulfilled":return e.value;case"rejected":throw e.reason;default:throw e.status="pending",e.then(t=>{e.status="fulfilled",e.value=t},t=>{e.status="rejected",e.reason=t}),e}}),vh={dedupe:!0},Df=Promise.resolve(Hn);Df.status="fulfilled";Df.value=Hn;const KP=()=>Wa,XP=(e,t,a)=>{const{cache:o,compare:l,suspense:c,fallbackData:d,revalidateOnMount:p,revalidateIfStale:m,refreshInterval:g,refreshWhenHidden:h,refreshWhenOffline:b,keepPreviousData:_,strictServerPrefetchWarning:j}=a,[E,k,y,w]=Xa.get(o),[S,N]=w_(e),R=x.useRef(!1),A=x.useRef(!1),T=x.useRef(S),O=x.useRef(t),z=x.useRef(a),U=()=>z.current,P=()=>U().isVisible()&&U().isOnline(),[B,D,L,$]=rN(o,S),V=x.useRef({}).current,H=St(d)?St(a.fallback)?Hn:a.fallback[S]:d,F=(Se,Te)=>{for(const je in V){const Ee=je;if(Ee==="data"){if(!l(Se[Ee],Te[Ee])&&(!St(Se[Ee])||!l(ee,Te[Ee])))return!1}else if(Te[Ee]!==Se[Ee])return!1}return!0},Y=!R.current,G=x.useMemo(()=>{const Se=B(),Te=$(),je=Ie=>{const ue=Vr(Ie);return delete ue._k,(()=>{if(!S||!t||U().isPaused())return!1;if(Y&&!St(p))return p;const Ge=St(H)?ue.data:H;return St(Ge)||m})()?{isValidating:!0,isLoading:!0,...ue}:ue},Ee=je(Se),De=Se===Te?Ee:je(Te);let Le=Ee;return[()=>{const Ie=je(B());return F(Ie,Le)?(Le.data=Ie.data,Le.isLoading=Ie.isLoading,Le.isValidating=Ie.isValidating,Le.error=Ie.error,Le):(Le=Ie,Ie)},()=>De]},[o,S]),K=Ef.useSyncExternalStore(x.useCallback(Se=>L(S,(Te,je)=>{F(je,Te)||Se()}),[o,S]),G[0],G[1]),I=E[S]&&E[S].length>0,X=K.data,Z=St(X)?H&&aN(H)?_h(H):H:X,te=K.error,fe=x.useRef(Z),ee=_?St(X)?St(fe.current)?Z:fe.current:X:Z,re=S&&St(Z),le=x.useRef(null);!ql&&Ef.useSyncExternalStore(KP,()=>(le.current=!1,le),()=>(le.current=!0,le));const me=le.current;j&&me&&!c&&re&&console.warn(`Missing pre-initiated data for serialized key "${S}" during server-side rendering. Data fetching should be initiated on the server and provided to SWR via fallback data. You can set "strictServerPrefetchWarning: false" to disable this warning.`);const Me=!S||!t||U().isPaused()||I&&!St(te)?!1:Y&&!St(p)?p:c?St(Z)?!1:m:St(Z)||m,de=Y&&Me,ge=St(K.isValidating)?de:K.isValidating,Ce=St(K.isLoading)?de:K.isLoading,we=x.useCallback(async Se=>{const Te=O.current;if(!S||!Te||A.current||U().isPaused())return!1;let je,Ee,De=!0;const Le=Se||{},Ie=!y[S]||!Le.dedupe,ue=()=>mk?!A.current&&S===T.current&&R.current:S===T.current,ye={isValidating:!1,isLoading:!1},Ge=()=>{D(ye)},Re=()=>{const tt=y[S];tt&&tt[1]===Ee&&delete y[S]},Oe={isValidating:!0};St(B().data)&&(Oe.isLoading=!0);try{if(Ie&&(D(Oe),a.loadingTimeout&&St(B().data)&&setTimeout(()=>{De&&ue()&&U().onLoadingSlow(S,a)},a.loadingTimeout),y[S]=[Te(N),Ix()]),[je,Ee]=y[S],je=await je,Ie&&setTimeout(Re,a.dedupingInterval),!y[S]||y[S][1]!==Ee)return Ie&&ue()&&U().onDiscarded(S),!1;ye.error=Hn;const tt=k[S];if(!St(tt)&&(Ee<=tt[0]||Ee<=tt[1]||tt[1]===0))return Ge(),Ie&&ue()&&U().onDiscarded(S),!1;const ot=B().data;ye.data=l(ot,je)?ot:je,Ie&&ue()&&U().onSuccess(je,S,a)}catch(tt){Re();const ot=U(),{shouldRetryOnError:vt}=ot;ot.isPaused()||(ye.error=tt,Ie&&ue()&&(ot.onError(tt,S,ot),(vt===!0||da(vt)&&vt(tt))&&(!U().revalidateOnFocus||!U().revalidateOnReconnect||P())&&ot.onErrorRetry(tt,S,ot,Mt=>{const lt=E[S];lt&&lt[0]&&lt[0](fk,Mt)},{retryCount:(Le.retryCount||0)+1,dedupe:!0})))}return De=!1,Ge(),!0},[S,o]),Be=x.useCallback((...Se)=>oN(o,T.current,...Se),[]);if(hh(()=>{O.current=t,z.current=a,St(X)||(fe.current=X)}),hh(()=>{if(!S)return;const Se=we.bind(Hn,vh);let Te=0;U().revalidateOnFocus&&(Te=Date.now()+U().focusThrottleInterval);const Ee=YP(S,E,(De,Le={})=>{if(De==tN){const Ie=Date.now();U().revalidateOnFocus&&Ie>Te&&P()&&(Te=Ie+U().focusThrottleInterval,Se())}else if(De==nN)U().revalidateOnReconnect&&P()&&Se();else{if(De==sN)return we();if(De==fk)return we(Le)}});return A.current=!1,T.current=S,R.current=!0,D({_k:N}),Me&&(y[S]||(St(Z)||ql?Se():TP(Se))),()=>{A.current=!0,Ee()}},[S]),hh(()=>{let Se;function Te(){const Ee=da(g)?g(B().data):g;Ee&&Se!==-1&&(Se=setTimeout(je,Ee))}function je(){!B().error&&(h||U().isVisible())&&(b||U().isOnline())?we(vh).then(Te):Te()}return Te(),()=>{Se&&(clearTimeout(Se),Se=-1)}},[g,h,b,S]),x.useDebugValue(ee),c){if(!mk&&ql&&re)throw new Error("Fallback data is required when using Suspense in SSR.");re&&(O.current=t,z.current=a,A.current=!1);const Se=w[S],Te=!St(Se)&&re?Be(Se):Df;if(_h(Te),!St(te)&&re)throw te;const je=re?we(vh):Df;!St(ee)&&re&&(je.status="fulfilled",je.value=!0),_h(je)}return{mutate:Be,get data(){return V.data=!0,ee},get error(){return V.error=!0,te},get isValidating(){return V.isValidating=!0,ge},get isLoading(){return V.isLoading=!0,Ce}}},$e=GP(XP);let ti=null;function So(e){ti=e}function S_(){return ti}class du extends Error{status;body;constructor(t,a,o){super(a),this.status=t,this.body=o}}async function fc(e,t,a,o={}){const l={"content-type":"application/json",...ti?{authorization:`Bearer ${ti}`}:{},...o.headers||{}},c=await fetch(t,{...o,method:e,headers:l,body:a!==void 0?JSON.stringify(a):void 0});if(!c.ok){let d="",p=null;try{p=await c.json(),d=p?.error||JSON.stringify(p)}catch{d=await c.text()}throw new du(c.status,`${e} ${t} → ${c.status}: ${d}`,p)}if(c.status!==204)return await c.json()}function Pl(e){const t=e;if(Array.isArray(e))return{items:e,total:e.length};if(t&&Array.isArray(t.data)){const a=t.data;return{items:a,total:typeof t.meta?.total=="number"?t.meta.total:a.length}}if(t&&Array.isArray(t.sessions)){const a=t.sessions;return{items:a,total:a.length}}return{items:[],total:0}}const ne={get:e=>fc("GET",e),post:(e,t)=>fc("POST",e,t),put:(e,t)=>fc("PUT",e,t),patch:(e,t)=>fc("PATCH",e,t),del:e=>fc("DELETE",e)};async function uN(e,t,a,o){const l=await fetch(e,{method:"POST",signal:o,headers:{"content-type":"application/json",...ti?{authorization:`Bearer ${ti}`}:{}},body:JSON.stringify(t)});if(!l.ok||!l.body){const m=await l.text().catch(()=>"");throw new du(l.status,`POST ${e} → ${l.status}: ${m||"stream failed"}`)}const c=l.body.getReader(),d=new TextDecoder("utf-8");let p="";for(;;){const{value:m,done:g}=await c.read();if(g)break;p+=d.decode(m,{stream:!0});let h=p.indexOf(`
741
- `);for(;h>=0;){const b=p.slice(0,h).trim();if(p=p.slice(h+1),b)try{a(JSON.parse(b))}catch{}h=p.indexOf(`
742
- `)}}if(p.trim())try{a(JSON.parse(p.trim()))}catch{}}const QP={get:()=>ne.get("/health")},Qn={list:()=>ne.get("/projects"),register:e=>ne.post("/projects",{path:e}),remove:e=>ne.del(`/projects/${encodeURIComponent(e)}`),rebuild:e=>ne.post(`/projects/${encodeURIComponent(e)}/rebuild`),config:{show:e=>ne.get(`/projects/${e}/config`),set:(e,t)=>ne.patch(`/projects/${e}/config`,{set:t}),unset:(e,t)=>ne.patch(`/projects/${e}/config`,{unset:t}),put:(e,t)=>ne.put(`/projects/${e}/config`,t)},apcProject:{set:(e,t,a)=>ne.patch(`/projects/${e}/apc-project`,{set:t,unset:a}),put:(e,t)=>ne.put(`/projects/${e}/apc-project`,t)},memory:{get:e=>ne.get(`/projects/${e}/memory`),put:(e,t)=>ne.put(`/projects/${e}/memory`,{body:t})}},cn={list:e=>ne.get(`/projects/${e}/agents`),get:(e,t)=>ne.get(`/projects/${e}/agents/${t}`),create:(e,t)=>ne.post(`/projects/${e}/agents`,t),update:(e,t,a)=>ne.patch(`/projects/${e}/agents/${encodeURIComponent(t)}`,a),remove:(e,t)=>ne.del(`/projects/${e}/agents/${encodeURIComponent(t)}`),chat:(e,t,a)=>ne.post(`/projects/${e}/agents/${encodeURIComponent(t)}/chat`,a),memory:{get:(e,t)=>ne.get(`/projects/${e}/agents/${t}/memory`),put:(e,t,a)=>ne.put(`/projects/${e}/agents/${t}/memory`,{body:a})},vault:e=>ne.get(e?.includeRemoved?"/agents/vault?include_removed=1":"/agents/vault"),vaultCreate:(e,t={},a="")=>ne.post("/agents/vault",{slug:e,fields:t,body:a}),vaultPatch:(e,t)=>ne.patch(`/agents/vault/${encodeURIComponent(e)}`,t),vaultRemove:e=>ne.del(`/agents/vault/${encodeURIComponent(e)}`),vaultRestore:e=>ne.post(`/agents/vault/${encodeURIComponent(e)}/restore`),import:(e,t)=>ne.post(`/projects/${e}/agents/import`,{slug:t})},zo={list:(e,t)=>ne.get(`/projects/${e}/agents/${t}/conversations`),get:(e,t,a)=>ne.get(`/projects/${e}/agents/${t}/conversations/${a}`),threads:e=>ne.get(`/projects/${e}/super-agent/threads`),thread:(e,t,a)=>ne.get(`/projects/${e}/super-agent/threads/${t}/${a}`),remove:(e,t,a)=>ne.del(`/projects/${e}/agents/${t}/conversations/${a}`),removeThread:(e,t,a)=>ne.del(`/projects/${e}/super-agent/threads/${t}/${a}`),compact:(e,t,a)=>ne.post(a?`/projects/${e}/agents/${t}/conversations/${a}/compact`:`/projects/${e}/agents/${t}/compact`,{})},Mr={list:e=>ne.get(`/projects/${e}/routines`),get:(e,t)=>ne.get(`/projects/${e}/routines/${t}`),run:(e,t)=>ne.post(`/projects/${e}/routines/${t}/run`),enable:(e,t)=>ne.post(`/projects/${e}/routines/${t}/enable`),disable:(e,t)=>ne.post(`/projects/${e}/routines/${t}/disable`),upsert:(e,t)=>ne.post(`/projects/${e}/routines`,t),remove:(e,t)=>ne.del(`/projects/${e}/routines/${encodeURIComponent(t)}`)},Wn={list:(e,t="open")=>ne.get(`/projects/${e}/tasks?state=${t}`).then(a=>Pl(a).items),global:(e="open")=>ne.get(`/tasks?state=${e}`).then(t=>Pl(t).items),listPage:(e,{state:t,limit:a,offset:o})=>ne.get(`/projects/${e}/tasks?state=${t}&limit=${a}&offset=${o}`).then(l=>Pl(l)),globalPage:({state:e,limit:t,offset:a})=>ne.get(`/tasks?state=${e}&limit=${t}&offset=${a}`).then(o=>Pl(o)),get:(e,t)=>ne.get(`/projects/${e}/tasks/${t}`),add:(e,t)=>ne.post(`/projects/${e}/tasks`,t),patch:(e,t,a)=>ne.patch(`/projects/${e}/tasks/${t}`,{patch:a}),status:(e,t,a)=>ne.post(`/projects/${e}/tasks/${t}/status`,{status:a}),done:(e,t)=>ne.post(`/projects/${e}/tasks/${t}/done`),drop:(e,t)=>ne.post(`/projects/${e}/tasks/${t}/drop`),reopen:(e,t)=>ne.post(`/projects/${e}/tasks/${t}/reopen`),summary:e=>ne.get(`/projects/${e}/tasks-summary`)},Or={list:e=>ne.get(`/projects/${e}/mcps`),check:e=>ne.get(`/projects/${e}/mcps/check`),add:(e,t,a)=>ne.post(`/projects/${e}/mcps?scope=${t}`,a),remove:(e,t,a="shared")=>ne.del(`/projects/${e}/mcps/${encodeURIComponent(t)}?scope=${a}`),test:(e,t)=>ne.post(`/projects/${e}/mcps/${encodeURIComponent(t)}/test`,{}),logs:(e,t)=>ne.get(`/projects/${e}/mcps/${encodeURIComponent(t)}/logs`)},bo=e=>`?scope=${e}`,Ls={catalog:e=>ne.get(`/projects/${e}/integrations/catalog`),list:(e,t="project")=>ne.get(`/projects/${e}/integrations${bo(t)}`),status:(e,t,a="project")=>ne.get(`/projects/${e}/integrations/${t}${bo(a)}`),configure:(e,t,a,o)=>ne.post(`/projects/${e}/integrations/${t}/configure${bo(a)}`,o),validate:(e,t,a="project")=>ne.post(`/projects/${e}/integrations/${t}/validate${bo(a)}`,{}),deactivate:(e,t,a="project")=>ne.post(`/projects/${e}/integrations/${t}/deactivate${bo(a)}`,{}),action:(e,t,a,o="project")=>ne.post(`/projects/${e}/integrations/${t}/action/${a}${bo(o)}`,{}),remove:(e,t,a="project")=>ne.del(`/projects/${e}/integrations/${t}${bo(a)}`),asanaConfigure:(e,t,a)=>Ls.configure(e,"asana",t,{personal_access_token:a.personalAccessToken,workspace_gid:a.workspaceGid}),asanaValidate:(e,t)=>Ls.validate(e,"asana",t),asanaWorkspaces:(e,t)=>Ls.action(e,"asana","workspaces",t)},Xc={list:(e,t={})=>ne.get(`/projects/${e}/vars${t.reveal?"?reveal=1":""}`),get:(e,t,a={})=>ne.get(`/projects/${e}/vars/${encodeURIComponent(t)}${a.reveal?"?reveal=1":""}`),upsert:(e,t)=>ne.post(`/projects/${e}/vars`,t),remove:(e,t,a="project")=>ne.del(`/projects/${e}/vars/${encodeURIComponent(t)}?scope=${a}`)},yh=e=>{const t=new URLSearchParams;for(const[o,l]of Object.entries(e))l!==void 0&&l!==""&&t.set(o,String(l));const a=t.toString();return a?`?${a}`:""},Pf={global:(e={})=>ne.get(`/messages/global${yh(e)}`),project:(e,t={})=>ne.get(`/projects/${e}/messages${yh(t)}`),search:(e,t,a=50)=>ne.get(`/projects/${e}/messages/search${yh({q:t,limit:a})}`)},WP={global:e=>ne.get(`/sessions${e?`?engine=${encodeURIComponent(e)}`:""}`).then(t=>({sessions:Pl(t).items})),page:({engine:e,q:t,deep:a,limit:o,offset:l})=>{const c=new URLSearchParams({limit:String(o),offset:String(l)});return e&&c.set("engine",e),t?.trim()&&c.set("q",t.trim()),a&&c.set("deep","1"),ne.get(`/sessions?${c.toString()}`).then(d=>Pl(d))}},ZP={list:()=>ne.get("/tools")},zn={channels:{list:()=>ne.get("/telegram/channels"),upsert:e=>ne.post("/telegram/channels",e),patch:(e,t)=>ne.patch(`/telegram/channels/${e}`,t),remove:e=>ne.del(`/telegram/channels/${encodeURIComponent(e)}`)},contacts:{list:()=>ne.get("/telegram/contacts"),patch:(e,t)=>ne.patch(`/telegram/contacts/${encodeURIComponent(String(e))}`,t),remove:e=>ne.del(`/telegram/contacts/${encodeURIComponent(String(e))}`)},roles:{list:()=>ne.get("/telegram/roles"),set:(e,t)=>ne.put(`/telegram/roles/${encodeURIComponent(e)}`,{tools:t}),remove:e=>ne.del(`/telegram/roles/${encodeURIComponent(e)}`)},status:()=>ne.get("/telegram/status"),start:()=>ne.post("/telegram/start"),stop:()=>ne.post("/telegram/stop"),send:e=>ne.post("/telegram/send",e)},Qc={list:()=>ne.get("/engines"),presets:()=>ne.get("/engines/presets"),models:e=>ne.post("/engines/models",e)},JP=Object.freeze(Object.defineProperty({__proto__:null,Engines:Qc},Symbol.toStringTag,{value:"Module"})),ni={reload:()=>ne.post("/admin/reload"),shutdown:()=>ne.post("/admin/shutdown"),config:{get:()=>ne.get("/admin/config"),patch:e=>ne.patch("/admin/config",e)},superAgent:()=>ne.get("/admin/super-agent"),logs:(e="errors",t=200)=>ne.get(`/admin/logs?file=${e}&limit=${t}`)},si={list:()=>ne.get("/pair/list"),revoke:e=>ne.del(`/pair/revoke/${encodeURIComponent(e)}`),init:()=>ne.post("/pair/init",{}),status:e=>ne.get(`/pair/status/${encodeURIComponent(e)}`),confirm:e=>ne.post("/pair/confirm",e)},xk={get:()=>ne.get("/identity"),patch:e=>ne.patch("/identity",e)},dN={send:(e,t)=>ne.post(`/projects/${e}/super-agent/chat`,t),stream:(e,t,a,o)=>uN(`/projects/${e}/super-agent/chat/stream`,t,a,o),summarize:e=>ne.post("/super-agent/summarize",e)},bk={dirs:e=>ne.get(`/admin/fs/dirs?path=${encodeURIComponent(e)}`),pickDir:e=>ne.get(`/admin/fs/pick-dir${e?`?prompt=${encodeURIComponent(e)}`:""}`)},eL=["alloy","echo","fable","onyx","nova","shimmer"],tL=["Kore","Puck","Charon","Fenrir","Aoede"],nL=["eleven_multilingual_v2","eleven_turbo_v2_5","eleven_flash_v2_5"],sL=["tts-1","tts-1-hd"],aL=["happy","sad","excited","angry","calm","whisper","shout","laugh","cry","narrator","neutral"],rL=["tiny","base","small","medium","large-v2","large-v3","large-v3-turbo"],Lf={piper:{name:"Piper",note:"Local, offline (CLI + .onnx model). No API key.",local:!0},elevenlabs:{name:"ElevenLabs",note:"Cloud, multilingual. Requires an API key."},openai:{name:"OpenAI",note:"Cloud (tts-1 / tts-1-hd) or any OpenAI-compatible endpoint (set a base URL for a local server, e.g. QVox)."},gemini:{name:"Gemini",note:"Cloud (preview). Uses your Gemini key."},mock:{name:"Mock",note:"Silent test engine. Always available as a fallback.",local:!0}};async function oL(e){const t=S_(),a=await fetch(`/voice/tts?path=${encodeURIComponent(e)}`,{headers:t?{authorization:`Bearer ${t}`}:{}});if(!a.ok){const l=await a.text().catch(()=>"");throw new Error(`No se pudo leer el audio (${a.status}): ${l.slice(0,160)}`)}const o=await a.blob();return URL.createObjectURL(o)}const If={providers:()=>ne.get("/tts/providers"),sttHardware:()=>ne.get("/transcribe/hardware"),sttModels:e=>ne.get(`/transcribe/models?backend=${e}`),say:e=>ne.post("/tts/say",e),turn:e=>ne.post("/voice/turn",e)},fN={manifest:()=>ne.get("/deck/manifest"),setWidget:(e,t)=>ne.patch(`/deck/widgets/${encodeURIComponent(e)}`,t),exec:e=>ne.post("/deck/exec",e)},_o=e=>`/projects/${e}/code/sessions`,Ga={sessions:{list:e=>ne.get(_o(e)).then(t=>t.sessions),get:(e,t)=>ne.get(`${_o(e)}/${t}`),create:(e,t={})=>ne.post(_o(e),t),update:(e,t,a)=>ne.patch(`${_o(e)}/${t}`,a),remove:(e,t)=>ne.del(`${_o(e)}/${t}`)},changes:(e,t)=>ne.get(`${_o(e)}/${t}/changes`),stream:(e,t,a,o,l)=>uN(`${_o(e)}/${t}/chat/stream`,a,o,l)},Dr={list:e=>ne.get(`/projects/${encodeURIComponent(e)}/artifacts`),read:(e,t)=>ne.get(`/projects/${encodeURIComponent(e)}/artifacts/${encodeURIComponent(t)}`),run:(e,t,a=[])=>ne.post(`/projects/${encodeURIComponent(e)}/artifacts/${encodeURIComponent(t)}/run`,{args:a}),remove:(e,t)=>ne.del(`/projects/${encodeURIComponent(e)}/artifacts/${encodeURIComponent(t)}`),write:(e,t,a)=>ne.patch(`/projects/${encodeURIComponent(e)}/artifacts/${encodeURIComponent(t)}`,{content:a}),rename:(e,t,a)=>ne.patch(`/projects/${encodeURIComponent(e)}/artifacts/${encodeURIComponent(t)}`,{newName:a})},Is={list:e=>{const t=new URLSearchParams;e&&(t.set("project_path",e),t.set("scope",e));const a=t.toString();return ne.get(a?`/skills?${a}`:"/skills")},detail:(e,t)=>{const a=t?`?project_path=${encodeURIComponent(t)}`:"";return ne.get(`/skills/${encodeURIComponent(e)}/detail${a}`)},setEnabled:e=>ne.put("/skills/enabled",e),create:e=>ne.post("/skills",e),importZip:e=>ne.post("/skills/import/zip",e),importRepo:e=>ne.post("/skills/import/repo",e),remove:(e,t)=>{const a=t?`?project_path=${encodeURIComponent(t)}`:"";return ne.del(`/skills/${encodeURIComponent(e)}${a}`)},inspector:()=>ne.get("/skills/inspector"),updateInspector:e=>ne.put("/skills/inspector",e),index:(e={})=>ne.post("/skills/index",e),inspect:(e,t)=>ne.post("/skills/inspect",{prompt:e,project_path:t})},Ir={get:e=>ne.get(`/projects/${e}/organization`),createArea:(e,t)=>ne.post(`/projects/${e}/organization/areas`,t),updateArea:(e,t,a)=>ne.patch(`/projects/${e}/organization/areas/${encodeURIComponent(t)}`,a),removeArea:(e,t)=>ne.del(`/projects/${e}/organization/areas/${encodeURIComponent(t)}`),createRole:(e,t)=>ne.post(`/projects/${e}/organization/roles`,t),updateRole:(e,t,a)=>ne.patch(`/projects/${e}/organization/roles/${encodeURIComponent(t)}`,a),removeRole:(e,t)=>ne.del(`/projects/${e}/organization/roles/${encodeURIComponent(t)}`)},Sc={tree:(e,t="project")=>ne.get(`/projects/${e}/fs/tree?scope=${t}`),read:(e,t,a="project")=>ne.get(`/projects/${e}/fs/file?scope=${a}&path=${encodeURIComponent(t)}`),write:(e,t,a,o="project")=>ne.put(`/projects/${e}/fs/file`,{scope:o,path:t,content:a}),mkdir:(e,t,a="project")=>ne.post(`/projects/${e}/fs/dir`,{scope:a,path:t}),remove:(e,t,a="project")=>ne.del(`/projects/${e}/fs/entry?scope=${a}&path=${encodeURIComponent(t)}`)};function fu(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/projects",()=>Qn.list(),{refreshInterval:Jf.projects});return{projects:(e||[]).slice().sort((c,d)=>{const p=Number(c.id),m=Number(d.id);return p===0&&m!==0?-1:m===0&&p!==0?1:p-m}),error:t,isLoading:a,mutate:o}}function Cp(e){const{projects:t,isLoading:a,mutate:o}=fu();return{project:t.find(c=>String(c.id)===e)??null,isLoading:a,mutate:o}}function C_(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/identity",()=>xk.get());return{identity:e||{},error:t,isLoading:a,mutate:o,save:async c=>{const d=await xk.patch(c);return await o(d,{revalidate:!1}),d}}}function Np(){const{identity:e}=C_();return e?.agent_name?.trim()||"APX"}function lL(){return[{id:"desktop",label:u("nav.modules.desktop"),href:"/m/desktop",icon:_b},{id:"code",label:u("nav.modules.code"),href:"/m/code",icon:ba}]}function iL(e,t,a){const[o,l]=x.useState(t);return x.useLayoutEffect(()=>{const c=e.current;if(!c||!a)return;const d=()=>{const m=getComputedStyle(c),g=(parseFloat(m.paddingTop)||0)+(parseFloat(m.paddingBottom)||0),h=c.clientHeight-g;if(h<=0)return;const b=parseFloat(m.rowGap)||12,j=(c.querySelector("[data-rail-probe]")?.offsetHeight??56)+b,k=Math.max(0,Math.floor((h+b)/j))-1;l(k>=t?t:Math.max(0,k-1))};d();const p=new ResizeObserver(d);return p.observe(c),()=>p.disconnect()},[e,t,a]),a?Math.min(o,t):t}function _k({projects:e,label:t,sublabel:a,icon:o,tooltip:l,header:c,active:d,testId:p,onSelect:m,isActive:g}){return s.jsxs(x_,{children:[s.jsxs(b_,{"data-testid":p,title:l,"aria-label":l,className:"group flex w-full cursor-pointer flex-col items-center gap-1",children:[s.jsx("span",{className:he("flex size-10 items-center justify-center rounded-xl text-xs font-bold transition-all","bg-muted/40 text-muted-fg hover:bg-accent hover:text-foreground",d&&"ring-2 ring-foreground ring-offset-2 ring-offset-card"),children:o??t}),a&&s.jsx("span",{className:"block max-w-[3.6rem] truncate text-[9px] leading-tight text-muted-fg group-hover:text-foreground",children:a})]}),s.jsxs(__,{side:"right",align:"start",sideOffset:8,className:"max-h-[70vh] w-64",children:[s.jsx("div",{className:"px-1.5 py-1 text-xs font-medium text-muted-foreground",children:c}),e.map(h=>{const b=h.name||h.path.split("/").pop()||String(h.id),_=`/p/${h.id}`,{initials:j,idleClass:E}=gD(b);return s.jsxs(cf,{"data-testid":`project-menu-item-${h.id}`,onClick:()=>m(_),className:he(g(_)&&"bg-accent/60 text-foreground"),children:[s.jsx("span",{className:he("flex size-6 shrink-0 items-center justify-center rounded-md text-[10px] font-bold",E),children:j}),s.jsx("span",{className:"truncate",children:b})]},h.id)})]})]})}function cL({onSelect:e,onOpenRoby:t,onOpenAddProject:a}){const{projects:o,isLoading:l}=fu(),c=ts(),d=lL(),p=Np(),m=x.useRef(null),{collapsed:g,toggle:h}=j_(On.sidebarCollapsed+".projects"),b=S=>c.pathname===S||c.pathname.startsWith(`${S}/`),_=o.find(S=>String(S.id)==="0"),j=o.filter(S=>String(S.id)!=="0").sort((S,N)=>Number(N.id)-Number(S.id)),E=iL(m,j.length,!g&&j.length>0),k=j.slice(0,E),y=j.slice(E),w=y.some(S=>b(`/p/${S.id}`));return s.jsxs("aside",{className:"flex h-full w-20 flex-col items-center gap-3 overflow-hidden bg-transparent py-3",children:[s.jsx(Ye,{content:u("nav.apx_admin"),side:"right",children:s.jsx("button",{type:"button",onClick:()=>e("/"),"data-testid":"nav-home",className:"mb-2 cursor-pointer",children:s.jsx(x3,{size:36})})}),l&&s.jsx("div",{className:"size-10 animate-pulse rounded-xl bg-muted"}),_&&s.jsx(Al,{label:u("base.title"),testId:"project-avatar-0",title:u("base.subtitle"),active:b("/p/0"),isDefault:!0,icon:s.jsx("img",{src:"/modules/superagent.png",alt:u("base.title"),className:"size-7 object-contain",draggable:!1}),onClick:()=>e("/p/0")}),d.map(S=>s.jsx(Al,{label:S.label,testId:`module-avatar-${S.id}`,title:S.label,active:b(S.href),icon:s.jsx(S.icon,{size:18}),onClick:()=>e(S.href)},S.id)),s.jsxs("div",{className:"flex min-h-0 w-full flex-1 flex-col items-center gap-3",children:[j.length>0&&s.jsxs(s.Fragment,{children:[s.jsx("div",{className:"my-0.5 h-px w-8 rounded-full bg-border"}),s.jsx(Ye,{content:u(g?"nav.expand_projects":"nav.collapse_projects"),side:"right",children:s.jsx("button",{type:"button",onClick:h,"data-testid":"nav-toggle-projects","aria-label":u(g?"nav.expand_projects":"nav.collapse_projects"),"aria-expanded":!g,className:"flex h-5 w-8 cursor-pointer items-center justify-center rounded-md text-muted-fg transition-colors hover:bg-accent hover:text-foreground",children:s.jsx(ns,{className:he("size-3.5 transition-transform",g&&"-rotate-90")})})})]}),s.jsxs("div",{ref:m,className:"flex min-h-0 w-full flex-1 flex-col items-center gap-3 overflow-hidden py-1.5",children:[j.length>0&&g&&s.jsx(_k,{projects:j,icon:s.jsx(L5,{size:18}),sublabel:String(j.length),tooltip:u("nav.all_projects"),header:u("nav.all_projects"),active:j.some(S=>b(`/p/${S.id}`)),testId:"nav-projects-folder",onSelect:e,isActive:b}),j.length>0&&!g&&s.jsxs(s.Fragment,{children:[s.jsx("div",{"data-rail-probe":!0,"aria-hidden":!0,className:"invisible absolute w-full",children:s.jsx(Al,{label:"Ag",active:!1,onClick:()=>{}})}),k.map(S=>{const N=S.name||S.path.split("/").pop()||String(S.id),R=`/p/${S.id}`;return s.jsx("div",{"data-rail-item":!0,className:"w-full",children:s.jsx(Al,{label:N,testId:`project-avatar-${S.id}`,title:`${N} — ${S.path}`,active:b(R),onClick:()=>e(R)})},S.id)}),y.length>0&&s.jsx(_k,{projects:y,label:`+${y.length}`,tooltip:u("nav.more_projects",{count:y.length}),header:u("nav.more_projects",{count:y.length}),active:w,testId:"nav-projects-overflow",onSelect:e,isActive:b})]}),s.jsx(Al,{label:u("nav.add_project"),isAdd:!0,testId:"nav-add-project",icon:s.jsx(It,{size:18}),active:!1,onClick:()=>a?a():e("/?action=add-project"),title:u("nav.add_project")})]})]}),s.jsx(Al,{label:u("nav.settings"),isSettings:!0,testId:"nav-settings",icon:s.jsx(Vc,{size:16}),active:c.pathname==="/settings"||c.pathname.startsWith("/settings/"),onClick:()=>e("/settings"),title:u("nav.settings")}),s.jsx(Ye,{content:u("settings_ui.documentation"),side:"right",children:s.jsx("a",{href:"https://agentprojectcontext.github.io/apx/docs/",target:"_blank",rel:"noopener noreferrer","data-testid":"nav-docs","aria-label":u("settings_ui.documentation"),className:"flex size-10 items-center justify-center rounded-xl border border-border/60 bg-muted/30 text-muted-fg transition-colors hover:bg-accent hover:text-foreground",children:s.jsx(m5,{size:18})})}),s.jsx(Ye,{content:u("superagent.talk",{persona:p}),side:"right",children:s.jsx("button",{type:"button",onClick:t,"data-testid":"nav-roby","aria-label":u("superagent.talk",{persona:p}),className:"flex size-10 items-center justify-center rounded-xl border border-border/60 bg-muted/30 text-muted-fg transition-colors hover:bg-accent hover:text-foreground",children:s.jsx(on,{size:18})})})]})}function pN(e){switch(e){case"personal":return u("settings_ui.kind_personal");case"company":return u("settings_ui.kind_company");case"app":return u("settings_ui.kind_app");case"software":return u("settings_ui.kind_software");case"default":return u("settings_ui.kind_default");case"other":return u("settings_ui.kind_other");default:return u("nav.project")}}function Fe({title:e,description:t,action:a,className:o,children:l,fullHeight:c}){return s.jsxs("section",{className:he("rounded-xl border border-border bg-card p-5",c&&"flex h-full min-h-0 flex-col",o),children:[s.jsxs("header",{className:he("mb-4 flex items-start justify-between gap-4",c&&"shrink-0"),children:[s.jsxs("div",{children:[s.jsx("h2",{className:"text-lg font-semibold tracking-tight",children:e}),t&&s.jsx("p",{className:"mt-0.5 text-sm text-muted-fg",children:t})]}),a]}),s.jsx("div",{className:he(c&&"flex min-h-0 flex-1 flex-col"),children:l})]})}function vk({children:e}){return s.jsx("kbd",{className:"rounded border border-border bg-muted px-1.5 py-0.5 font-mono text-[10px] uppercase tracking-wide text-muted-fg",children:e})}function pu({ok:e}){return s.jsx("span",{className:he("inline-block size-2 rounded-full",e===null?"bg-muted-fg":e?"bg-emerald-500":"bg-red-500")})}const uL=x.forwardRef(function(t,a){const{render:o,className:l,disabled:c=!1,focusableWhenDisabled:d=!1,nativeButton:p=!0,style:m,...g}=t,{getButtonProps:h,buttonRef:b}=Wr({disabled:c,focusableWhenDisabled:d,native:p});return Et("button",t,{state:{disabled:c},ref:[a,b],props:[g,h]})}),yk=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,jk=qc,N_=(e,t)=>a=>{var o;if(t?.variants==null)return jk(e,a?.class,a?.className);const{variants:l,defaultVariants:c}=t,d=Object.keys(l).map(g=>{const h=a?.[g],b=c?.[g];if(h===null)return null;const _=yk(h)||yk(b);return l[g][_]}),p=a&&Object.entries(a).reduce((g,h)=>{let[b,_]=h;return _===void 0||(g[b]=_),g},{}),m=t==null||(o=t.compoundVariants)===null||o===void 0?void 0:o.reduce((g,h)=>{let{class:b,className:_,...j}=h;return Object.entries(j).every(E=>{let[k,y]=E;return Array.isArray(y)?y.includes({...c,...p}[k]):{...c,...p}[k]===y})?[...g,b,_]:g},[]);return jk(e,d,m,a?.class,a?.className)},dL=N_("group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-primary text-primary-foreground [a]:hover:bg-primary/80",outline:"border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground",ghost:"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50",destructive:"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",xs:"h-6 gap-1 rounded-[min(var(--radius-md),10px)] px-2 text-xs in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3",sm:"h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5",lg:"h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",icon:"size-8","icon-xs":"size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&_svg:not([class*='size-'])]:size-3","icon-sm":"size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg","icon-lg":"size-9"}},defaultVariants:{variant:"default",size:"default"}});function sr({className:e,variant:t="default",size:a="default",...o}){return s.jsx(uL,{"data-slot":"button",className:Ct(dL({variant:t,size:a,className:e})),...o})}let kk=(function(e){return e.disabled="data-disabled",e.valid="data-valid",e.invalid="data-invalid",e.touched="data-touched",e.dirty="data-dirty",e.filled="data-filled",e.focused="data-focused",e})({});const fL={badInput:!1,customError:!1,patternMismatch:!1,rangeOverflow:!1,rangeUnderflow:!1,stepMismatch:!1,tooLong:!1,tooShort:!1,typeMismatch:!1,valid:null,valueMissing:!1},Cc={valid:null,touched:!1,dirty:!1,filled:!1,focused:!1},pL={disabled:!1,...Cc},E_={valid(e){return e===null?null:e?{[kk.valid]:""}:{[kk.invalid]:""}}},mL={invalid:void 0,name:void 0,validityData:{state:fL,errors:[],error:"",value:"",initialValue:null},setValidityData:An,disabled:void 0,touched:Cc.touched,setTouched:An,dirty:Cc.dirty,setDirty:An,filled:Cc.filled,setFilled:An,focused:Cc.focused,setFocused:An,validate:()=>null,validationMode:"onSubmit",validationDebounceTime:0,shouldValidateOnChange:()=>!1,state:pL,markedDirtyRef:{current:!1},registerFieldControl:An,validation:{getValidationProps:(e,t=Xt)=>t,inputRef:{current:null},registerInput:An,commit:async()=>{},change:An}},gL=x.createContext(mL);function mu(e=!0){const t=x.useContext(gL);if(t.setValidityData===An&&!e)throw new Error(ln(28));return t}const hL=x.createContext({formRef:{current:{fields:new Map}},errors:{},clearErrors:An,validationMode:"onSubmit",submitAttemptedRef:{current:!1}});function R_(){return x.useContext(hL)}const xL=x.createContext({controlId:void 0,registerControlId:An,labelId:void 0,setLabelId:An,messageIds:[],setMessageIds:An,getDescriptionProps:e=>e});function Ep(){return x.useContext(xL)}function bL(e,t,a,o=!0,l){const[c,d]=x.useState(),p=ta(l?`${l}-label`:void 0),m=e??t??c;return ze(()=>{const g=e||t||!o?void 0:_L(a.current,p);c!==g&&d(g)}),m}function _L(e,t){const a=vL(e);if(a)return!a.id&&t&&(a.id=t),a.id||void 0}function vL(e){if(!e)return;const t=e.parentElement;if(t&&t.tagName==="LABEL")return t;const a=e.id;if(a){const l=e.nextElementSibling;if(l&&l.htmlFor===a)return l}const o=e.labels;return o&&o[0]}function Rp(e={}){const{id:t,implicit:a=!1,controlRef:o}=e,{controlId:l,registerControlId:c}=Ep(),d=ta(t),p=a?l:void 0,m=es(()=>Symbol("labelable-control")),g=x.useRef(!1),h=x.useRef(t!=null),b=Ue(()=>{!g.current||c===An||(g.current=!1,c(m.current,void 0))});return ze(()=>{if(c===An)return;let _;if(a){const j=o?.current;bt(j)&&j.closest("label")!=null?_=t??null:_=p??d}else if(t!=null)h.current=!0,_=t;else if(h.current)_=d;else{b();return}if(_===void 0){b();return}g.current=!0,c(m.current,_)},[t,o,p,c,a,d,m,b]),x.useEffect(()=>b,[b]),l??d}function T_(e,t,a,o,l=!0,c){const{registerFieldControl:d}=mu(),p=x.useRef(null);p.current||(p.current=Symbol()),ze(()=>{const m=p.current;return!m||!l?void 0:(d(m,{controlRef:e,getValue:o,id:t,name:c,value:a}),()=>{d(m,void 0)})},[e,l,o,t,c,d,a])}const yL=x.forwardRef(function(t,a){const{render:o,className:l,id:c,name:d,value:p,disabled:m=!1,onValueChange:g,defaultValue:h,autoFocus:b=!1,style:_,...j}=t,{state:E,name:k,disabled:y,setTouched:w,setDirty:S,validityData:N,setFocused:R,setFilled:A,validationMode:T,validation:O}=mu(),{clearErrors:z}=R_(),U=y||m,P=k??d,B={...E,disabled:U},{labelId:D}=Ep(),L=Rp({id:c});ze(()=>{const K=p!=null;O.inputRef.current?.value||K&&p!==""?A(!0):K&&p===""&&A(!1)},[O.inputRef,A,p]);const $=x.useRef(null);ze(()=>{b&&$.current===Gn(xt($.current))&&R(!0)},[b,R]);const[V]=ei({controlled:p,default:h,name:"FieldControl",state:"value"}),H=p!==void 0,F=H?V:void 0,Y=Ue(()=>O.inputRef.current?.value);return T_(O.inputRef,L,F,Y,!U,d),Et("input",t,{ref:[a,$],state:B,props:[{id:L,disabled:U,name:P,ref:O.inputRef,"aria-labelledby":D,autoFocus:b,...H?{value:F}:{defaultValue:h},onChange(K){const I=K.currentTarget.value;g?.(I,st(va,K.nativeEvent)),S(I!==N.initialValue),A(I!==""),K.nativeEvent.defaultPrevented||(z(P),O.change(I))},onFocus(){R(!0)},onBlur(K){w(!0),R(!1),T==="onBlur"&&O.commit(K.currentTarget.value)},onKeyDown(K){K.currentTarget.tagName==="INPUT"&&K.key==="Enter"&&(w(!0),O.commit(K.currentTarget.value))}},j,K=>O.getValidationProps(U,K)],stateAttributesMapping:E_})}),jL=x.forwardRef(function(t,a){return s.jsx(yL,{ref:a,...t})});function kL({className:e,type:t,...a}){return s.jsx(jL,{type:t,"data-slot":"input",className:Ct("h-8 w-full min-w-0 rounded-lg border border-input bg-transparent px-2.5 py-1 text-base transition-colors outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:pointer-events-none disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",e),...a})}function wL({className:e,...t}){return s.jsx("textarea",{"data-slot":"textarea",className:Ct("flex field-sizing-content min-h-16 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-base transition-colors outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",e),...t})}function SL(e){return Et(e.defaultTagName??"div",e,e)}const CL=N_("group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!",{variants:{variant:{default:"bg-primary text-primary-foreground [a]:hover:bg-primary/80",secondary:"bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",destructive:"bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20",outline:"border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",ghost:"hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",link:"text-primary underline-offset-4 hover:underline"}},defaultVariants:{variant:"default"}});function NL({className:e,variant:t="default",render:a,...o}){return SL({defaultTagName:"span",props:Kn({className:Ct(CL({variant:t}),e)},o),render:a,state:{slot:"badge",variant:t}})}const mN=x.createContext(void 0);function EL(){const e=x.useContext(mN);if(e===void 0)throw new Error(ln(63));return e}let wk=(function(e){return e.checked="data-checked",e.unchecked="data-unchecked",e.disabled="data-disabled",e.readonly="data-readonly",e.required="data-required",e.valid="data-valid",e.invalid="data-invalid",e.touched="data-touched",e.dirty="data-dirty",e.filled="data-filled",e.focused="data-focused",e})({});const gN={...E_,checked(e){return e?{[wk.checked]:""}:{[wk.unchecked]:""}}},RL=x.forwardRef(function(t,a){const{checked:o,className:l,defaultChecked:c,"aria-labelledby":d,form:p,id:m,inputRef:g,name:h,nativeButton:b=!1,onCheckedChange:_,readOnly:j=!1,required:E=!1,disabled:k=!1,render:y,uncheckedValue:w,value:S,style:N,...R}=t,{clearErrors:A}=R_(),{state:T,setTouched:O,setDirty:z,validityData:U,setFilled:P,setFocused:B,validationMode:D,disabled:L,name:$,validation:V}=mu(),{labelId:H}=Ep(),F=L||k,Y=$??h,G=x.useRef(null),K=tr(G,g,V.inputRef),I=x.useRef(null),X=ta(),Z=Rp({id:m,implicit:!1,controlRef:I}),te=b?void 0:Z,[fe,ee]=ei({controlled:o,default:!!c,name:"Switch",state:"checked"});T_(I,X,fe,void 0,!F,h),ze(()=>{G.current&&P(G.current.checked)},[G,P]),g_(fe,()=>{A(Y),z(fe!==U.initialValue),P(fe),V.change(fe)});const{getButtonProps:re,buttonRef:le}=Wr({disabled:F,native:b}),me=bL(d,H,G,!b,te),Me={id:b?Z:X,role:"switch","aria-checked":fe,"aria-readonly":j||void 0,"aria-required":E||void 0,"aria-labelledby":me,onFocus(){F||B(!0)},onBlur(){const we=G.current;!we||F||(O(!0),B(!1),D==="onBlur"&&V.commit(we.checked))},onClick(we){if(j||F)return;we.preventDefault();const Be=G.current;Be&&Be.dispatchEvent(new(Wt(Be)).PointerEvent("click",{bubbles:!0,shiftKey:we.shiftKey,ctrlKey:we.ctrlKey,altKey:we.altKey,metaKey:we.metaKey}))}},de=Kn({checked:fe,disabled:F,form:p,id:te,name:Y,required:E,style:Y?b2:Pb,tabIndex:-1,type:"checkbox","aria-hidden":!0,ref:K,onChange(we){if(we.nativeEvent.defaultPrevented)return;if(j){we.preventDefault();return}const Be=we.currentTarget.checked,Ve=st(va,we.nativeEvent);_?.(Be,Ve),!Ve.isCanceled&&ee(Be)},onFocus(){I.current?.focus()}},we=>V.getValidationProps(F,we),S!==void 0?{value:S}:Xt),ge=x.useMemo(()=>({...T,checked:fe,disabled:F,readOnly:j,required:E}),[T,fe,F,j,E]),Ce=Et("span",t,{state:ge,ref:[a,I,le],props:[Me,R,re,we=>V.getValidationProps(F,we)],stateAttributesMapping:gN});return s.jsxs(mN.Provider,{value:ge,children:[Ce,!fe&&Y&&w!==void 0&&s.jsx("input",{type:"hidden",form:p,name:Y,value:w,disabled:F}),s.jsx("input",{...de,suppressHydrationWarning:!0})]})}),TL=x.forwardRef(function(t,a){const{render:o,className:l,style:c,...d}=t,p=EL();return Et("span",t,{state:p,ref:a,stateAttributesMapping:gN,props:d})});function AL({className:e,size:t="default",...a}){return s.jsx(RL,{"data-slot":"switch","data-size":t,className:Ct("peer group/switch relative inline-flex shrink-0 items-center rounded-full border border-transparent transition-all outline-none after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-[size=default]:h-[18.4px] data-[size=default]:w-[32px] data-[size=sm]:h-[14px] data-[size=sm]:w-[24px] dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:bg-primary data-unchecked:bg-input dark:data-unchecked:bg-input/80 data-disabled:cursor-not-allowed data-disabled:opacity-50",e),...a,children:s.jsx(TL,{"data-slot":"switch-thumb",className:"pointer-events-none block rounded-full bg-background ring-0 transition-transform group-data-[size=default]/switch:size-4 group-data-[size=sm]/switch:size-3 group-data-[size=default]/switch:data-checked:translate-x-[calc(100%-2px)] group-data-[size=sm]/switch:data-checked:translate-x-[calc(100%-2px)] dark:data-checked:bg-primary-foreground group-data-[size=default]/switch:data-unchecked:translate-x-0 group-data-[size=sm]/switch:data-unchecked:translate-x-0 dark:data-unchecked:bg-foreground"})})}function ML({className:e,...t}){return s.jsx(Lr,{role:"status","aria-label":"Loading",className:Ct("size-4 animate-spin",e),...t})}const hN=x.createContext(!1),xN=x.createContext(void 0);function Vo(e){const t=x.useContext(xN);if(e===!1&&t===void 0)throw new Error(ln(27));return t}const OL={...Ho,...rr},bN=x.forwardRef(function(t,a){const{render:o,className:l,style:c,forceRender:d=!1,...p}=t,{store:m}=Vo(),g=m.useState("open"),h=m.useState("nested"),b=m.useState("mounted"),_=m.useState("transitionStatus");return Et("div",t,{state:{open:g,transitionStatus:_},ref:[m.context.backdropRef,a],stateAttributesMapping:OL,props:[{role:"presentation",hidden:!b,style:{userSelect:"none",WebkitUserSelect:"none"}},p],enabled:d||!h})}),Tp=x.forwardRef(function(t,a){const{render:o,className:l,style:c,disabled:d=!1,nativeButton:p=!0,...m}=t,{store:g}=Vo(),h=g.useState("open"),{getButtonProps:b,buttonRef:_}=Wr({disabled:d,native:p}),j={disabled:d};function E(k){h&&g.setOpen(!1,st(b4,k.nativeEvent))}return Et("button",t,{state:j,ref:[a,_],props:[{onClick:E},m,b]})}),_N=x.forwardRef(function(t,a){const{render:o,className:l,style:c,id:d,...p}=t,{store:m}=Vo(),g=ta(d);return m.useSyncedValueWithCleanup("descriptionElementId",g),Et("p",t,{ref:a,props:[{id:g},p]})});let zL=(function(e){return e.nestedDialogs="--nested-dialogs",e})({}),DL=(function(e){return e[e.open=Co.open]="open",e[e.closed=Co.closed]="closed",e[e.startingStyle=Co.startingStyle]="startingStyle",e[e.endingStyle=Co.endingStyle]="endingStyle",e.nested="data-nested",e.nestedDialogOpen="data-nested-dialog-open",e})({});const vN=x.createContext(void 0);function PL(){const e=x.useContext(vN);if(e===void 0)throw new Error(ln(26));return e}const LL={...Ho,...rr,nestedDialogOpen(e){return e?{[DL.nestedDialogOpen]:""}:null}},yN=x.forwardRef(function(t,a){const{render:o,className:l,style:c,finalFocus:d,initialFocus:p,...m}=t,{store:g}=Vo(),h=g.useState("descriptionElementId"),b=g.useState("disablePointerDismissal"),_=g.useState("floatingRootContext"),j=g.useState("popupProps"),E=g.useState("modal"),k=g.useState("mounted"),y=g.useState("nested"),w=g.useState("nestedOpenDialogCount"),S=g.useState("open"),N=g.useState("openMethod"),R=g.useState("titleElementId"),A=g.useState("transitionStatus"),T=g.useState("role"),O=_.useState("floatingId"),z=m.id??O;PL(),ka({open:S,ref:g.context.popupRef,onComplete(){S&&g.context.onOpenChangeComplete?.(!0)}});const U=p===void 0?kz(g.context.popupRef):p,P=w>0,B=g.useStateSetter("popupElement"),L=Et("div",t,{state:{open:S,nested:y,transitionStatus:A,nestedDialogOpen:P},props:[j,{id:z,"aria-labelledby":R??void 0,"aria-describedby":h??void 0,role:T,...gp,hidden:!k,onKeyDown($){kp.has($.key)&&$.stopPropagation()},style:{[zL.nestedDialogs]:w}},m],ref:[a,g.context.popupRef,B],stateAttributesMapping:LL});return s.jsx(Kb,{context:_,openInteractionType:N,disabled:!k,closeOnFocusOut:!b,initialFocus:U,returnFocus:d,modal:E!==!1,restoreFocus:"popup",children:L})}),jN=x.forwardRef(function(t,a){const{keepMounted:o=!1,...l}=t,{store:c}=Vo(),d=c.useState("mounted"),p=c.useState("modal"),m=c.useState("open");return d||o?s.jsx(vN.Provider,{value:o,children:s.jsxs(Fb,{ref:a,...l,children:[d&&p===!0&&s.jsx(m_,{ref:c.context.internalBackdropRef,inert:_p(!m)}),t.children]})}):null});function IL(e){const{store:t,actionsRef:a}=e,o=t.useState("open");Cz(t,o),Zb(t);const{forceUnmount:l}=Jb(o,t),c=x.useCallback(()=>{t.setOpen(!1,st(zb))},[t]);x.useImperativeHandle(a,()=>({unmount:l,close:c}),[l,c])}function BL({store:e,parentContext:t,isDrawer:a}){const o=e.useState("open"),l=e.useState("disablePointerDismissal"),c=e.useState("modal"),d=e.useState("popupElement"),p=e.useState("floatingRootContext"),[m,g]=x.useState(0),[h,b]=x.useState(0),_=m===0,j=dp(p,{outsidePressEvent(){return e.context.internalBackdropRef.current||e.context.backdropRef.current?"intentional":{mouse:c==="trap-focus"?"sloppy":"intentional",touch:"sloppy"}},outsidePress(w){if(!e.context.outsidePressEnabledRef.current||"button"in w&&w.button!==0||"touches"in w&&w.touches.length!==1)return!1;const S=Vn(w);return _&&!l?c&&(e.context.internalBackdropRef.current||e.context.backdropRef.current)?e.context.internalBackdropRef.current===S||e.context.backdropRef.current===S||We(S,d)&&!S?.hasAttribute("data-base-ui-portal"):!0:!1},escapeKey:_});VC(o&&c===!0,d),e.useContextCallback("onNestedDialogOpen",(w,S)=>{g(w),b(S)}),e.useContextCallback("onNestedDialogClose",()=>{g(0),b(0)}),x.useEffect(()=>(t?.onNestedDialogOpen&&o&&t.onNestedDialogOpen(m+1,h+(a?1:0)),t?.onNestedDialogClose&&!o&&t.onNestedDialogClose(),()=>{t?.onNestedDialogClose&&o&&t.onNestedDialogClose()}),[a,o,m,h,t]);const E=j.reference??Xt,k=j.trigger??Xt,y=j.floating??Xt;return e_(e,{activeTriggerProps:E,inactiveTriggerProps:k,popupProps:y,nestedOpenDialogCount:m,nestedOpenDrawerCount:h}),null}const UL={...s_,modal:Ae(e=>e.modal),nested:Ae(e=>e.nested),nestedOpenDialogCount:Ae(e=>e.nestedOpenDialogCount),nestedOpenDrawerCount:Ae(e=>e.nestedOpenDrawerCount),disablePointerDismissal:Ae(e=>e.disablePointerDismissal),openMethod:Ae(e=>e.openMethod),descriptionElementId:Ae(e=>e.descriptionElementId),titleElementId:Ae(e=>e.titleElementId),viewportElement:Ae(e=>e.viewportElement),role:Ae(e=>e.role)};class A_ extends pp{constructor(t,a,o=!1){const l=new iu,c=$L(t);c.floatingRootContext=cC(l,a,o),super(c,{popupRef:x.createRef(),backdropRef:x.createRef(),internalBackdropRef:x.createRef(),outsidePressEnabledRef:{current:!0},triggerElements:l,onOpenChange:void 0,onOpenChangeComplete:void 0},UL)}setOpen=(t,a)=>{if(a.preventUnmountOnClose=()=>{this.set("preventUnmountingOnClose",!0)},!t&&a.trigger==null&&this.state.activeTriggerId!=null&&(a.trigger=this.state.activeTriggerElement??void 0),this.context.onOpenChange?.(t,a),a.isCanceled)return;this.state.floatingRootContext.dispatchOpenChange(t,a);const o={open:t};Wb(o,t,a.trigger),this.update(o)};static useStore(t,a){return rC(t,(l,c)=>new A_(a,l,c),!0).store}}function $L(e={}){return{...t_(),modal:!0,disablePointerDismissal:!1,popupElement:null,viewportElement:null,descriptionElementId:void 0,titleElementId:void 0,openMethod:null,nested:!1,nestedOpenDialogCount:0,nestedOpenDrawerCount:0,role:"dialog",...e}}function HL(e,t="dialog"){const{children:a,open:o,defaultOpen:l=!1,onOpenChange:c,onOpenChangeComplete:d,disablePointerDismissal:p=!1,modal:m=!0,actionsRef:g,handle:h,triggerId:b,defaultTriggerId:_=null}=e,j=t==="drawer",E=t==="alert-dialog",k=E?!0:m,y=E||p,w=E?"alertdialog":"dialog",S=Vo(!0),R={modal:k,disablePointerDismissal:y,nested:!!S,role:w},A=A_.useStore(h?.store,{open:l,openProp:o,activeTriggerId:_,triggerIdProp:b,...R});Qb(()=>{const B=o===void 0&&A.state.open===!1&&l===!0?{open:!0,activeTriggerId:_}:null;E?A.update(B?{...R,...B}:R):B&&A.update(B)}),A.useControlledProp("openProp",o),A.useControlledProp("triggerIdProp",b),A.useSyncedValues(R),A.useContextCallback("onOpenChange",c),A.useContextCallback("onOpenChangeComplete",d);const T=A.useState("open"),O=A.useState("mounted"),z=A.useState("payload");IL({store:A,actionsRef:g});const U=T||O,P=x.useMemo(()=>({store:A}),[A]);return s.jsx(hN.Provider,{value:!1,children:s.jsxs(xN.Provider,{value:P,children:[U&&s.jsx(BL,{store:A,parentContext:S?.store.context,isDrawer:j}),typeof a=="function"?a({payload:z}):a]})})}function kN(e){const t=x.useContext(hN)?"drawer":"dialog";return HL(e,t)}const wN=x.forwardRef(function(t,a){const{render:o,className:l,style:c,id:d,...p}=t,{store:m}=Vo(),g=ta(d);return m.useSyncedValueWithCleanup("titleElementId",g),Et("h2",t,{ref:a,props:[{id:g},p]})});function Bx({...e}){return s.jsx(kN,{"data-slot":"dialog",...e})}function VL({...e}){return s.jsx(jN,{"data-slot":"dialog-portal",...e})}function qL({...e}){return s.jsx(Tp,{"data-slot":"dialog-close",...e})}function FL({className:e,...t}){return s.jsx(bN,{"data-slot":"dialog-overlay",className:Ct("fixed inset-0 isolate z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0",e),...t})}function Ux({className:e,children:t,showCloseButton:a=!0,...o}){return s.jsxs(VL,{children:[s.jsx(FL,{}),s.jsxs(yN,{"data-slot":"dialog-content",className:Ct("fixed top-1/2 left-1/2 z-50 grid w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl bg-popover p-4 text-sm text-popover-foreground ring-1 ring-foreground/10 duration-100 outline-none sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...o,children:[t,a&&s.jsxs(Tp,{"data-slot":"dialog-close",render:s.jsx(sr,{variant:"ghost",className:"absolute top-2 right-2",size:"icon-sm"}),children:[s.jsx(ws,{}),s.jsx("span",{className:"sr-only",children:"Close"})]})]})]})}function $x({className:e,...t}){return s.jsx("div",{"data-slot":"dialog-header",className:Ct("flex flex-col gap-2",e),...t})}function Sk({className:e,showCloseButton:t=!1,children:a,...o}){return s.jsxs("div",{"data-slot":"dialog-footer",className:Ct("-mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t bg-muted/50 p-4 sm:flex-row sm:justify-end",e),...o,children:[a,t&&s.jsx(Tp,{render:s.jsx(sr,{variant:"outline"}),children:"Close"})]})}function Hx({className:e,...t}){return s.jsx(wN,{"data-slot":"dialog-title",className:Ct("font-heading text-base leading-none font-medium",e),...t})}function GL({className:e,...t}){return s.jsx(_N,{"data-slot":"dialog-description",className:Ct("text-sm text-muted-foreground *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground",e),...t})}const YL={primary:"default",secondary:"outline",ghost:"ghost",destructive:"destructive"},KL={sm:"sm",md:"default"};function se({variant:e="secondary",size:t="md",loading:a,className:o,children:l,disabled:c,type:d="button",...p}){return s.jsxs(sr,{type:d,variant:YL[e],size:KL[t],disabled:c||a,className:o,...p,children:[a?s.jsx(Dn,{size:14}):null,l]})}function Ne(e){return s.jsx(kL,{...e})}function un(e){return s.jsx(wL,{...e})}function XL(e){return s.jsx("select",{...e,className:he("h-8 w-full rounded-lg border border-input bg-transparent px-2.5 text-sm outline-none transition-colors focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50",e.className)})}function ae({label:e,hint:t,badge:a,children:o}){return s.jsxs("div",{className:"block space-y-1",children:[s.jsxs("span",{className:"flex items-center gap-1.5 text-xs font-medium text-muted-foreground",children:[e,a&&s.jsx("span",{className:"rounded bg-muted px-1 py-0.5 text-[9px] font-semibold uppercase tracking-wide text-muted-foreground",children:a})]}),o,t&&s.jsx("span",{className:"block text-[11px] text-muted-foreground/70",children:t})]})}function Gt({checked:e,onChange:t,label:a,disabled:o}){return s.jsxs("label",{className:he("inline-flex items-center gap-2",o&&"opacity-50"),children:[s.jsx(AL,{checked:e,onCheckedChange:t,disabled:o}),a&&s.jsx("span",{className:"text-sm",children:a})]})}function He({children:e,tone:t="muted",className:a}){const o=t==="danger"?"destructive":t==="muted"?"secondary":"outline",l={muted:"",danger:"",success:"text-emerald-400 border-emerald-500/30",warning:"text-amber-400 border-amber-500/30",info:"text-sky-400 border-sky-500/30"};return s.jsx(NL,{variant:o,className:he("rounded-md",l[t],a),children:e})}function sn({open:e,onClose:t,title:a,description:o,children:l,footer:c,size:d="md"}){const p={sm:"sm:max-w-md",md:"sm:max-w-lg",lg:"sm:max-w-2xl",xl:"sm:max-w-4xl"};return s.jsx(Bx,{open:e,onOpenChange:m=>{m||t()},children:s.jsxs(Ux,{className:he("flex max-h-[88vh] w-full flex-col gap-0 p-0",p[d]),children:[(a||o)&&s.jsxs($x,{className:"shrink-0 border-b border-border px-5 py-4 pr-12",children:[a&&s.jsx(Hx,{children:a}),o&&s.jsx(GL,{children:o})]}),s.jsx("div",{className:"min-h-0 flex-1 overflow-auto px-5 py-4",children:l}),c&&s.jsx("div",{className:"flex shrink-0 items-center justify-end gap-2 border-t border-border px-5 py-4",children:c})]})})}function Dn({size:e=14}){return s.jsx(ML,{style:{width:e,height:e}})}function pt({children:e}){return s.jsx("div",{className:"rounded-lg border border-dashed border-border bg-muted/20 px-4 py-6 text-center text-sm text-muted-foreground",children:e})}function at({label:e="Cargando…"}){return s.jsxs("div",{className:"flex items-center gap-2 text-sm text-muted-foreground",children:[s.jsx(Dn,{})," ",e]})}const SN=x.createContext(null);let QL=1;function WL({children:e}){const[t,a]=x.useState([]),o=x.useCallback((c,d)=>{const p=QL++;a(m=>[...m,{id:p,kind:c,message:d}]),setTimeout(()=>{a(m=>m.filter(g=>g.id!==p))},4500)},[]),l=x.useMemo(()=>({show:o,success:c=>o("success",c),error:c=>o("error",c),info:c=>o("info",c)}),[o]);return x.useEffect(()=>(window.__apxToast=l,()=>{delete window.__apxToast}),[l]),s.jsxs(SN.Provider,{value:l,children:[e,s.jsx("div",{className:"pointer-events-none fixed bottom-4 right-4 z-[100] flex w-80 max-w-[calc(100vw-2rem)] flex-col gap-2",children:t.map(c=>s.jsx("div",{className:he("pointer-events-auto overflow-hidden rounded-lg border bg-card px-3 py-2 text-sm shadow-lg",c.kind==="success"&&"border-emerald-500/40",c.kind==="error"&&"border-destructive/60",c.kind==="info"&&"border-border"),children:s.jsxs("div",{className:"flex items-start gap-2",children:[s.jsx("span",{className:he("mt-1 size-2 shrink-0 rounded-full",c.kind==="success"&&"bg-emerald-500",c.kind==="error"&&"bg-destructive",c.kind==="info"&&"bg-sky-500")}),s.jsx("span",{className:"flex-1 break-words",children:c.message})]})},c.id))})]})}function Ze(){const e=x.useContext(SN);if(!e)throw new Error("useToast must be used inside <ToastProvider>");return e}function CN(){const{data:e,error:t,isLoading:a}=$e("/health",()=>QP.get(),{refreshInterval:Jf.health});return{health:e,error:t,isLoading:a,isUp:!t&&!!e}}function ZL(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/engines",()=>Qc.list());return{engines:e?.engines||[],error:t,isLoading:a,mutate:o}}function JL(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/telegram/status",()=>zn.status(),{refreshInterval:Jf.telegramStatus});return{status:e,error:t,isLoading:a,mutate:o}}function M_(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/telegram/channels",()=>zn.channels.list());return{channels:e?.channels||[],error:t,isLoading:a,mutate:o}}function O_(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/telegram/contacts",()=>zn.contacts.list());return{contacts:e?.contacts||[],roles:e?.roles||{},channelOwners:e?.channel_owners||[],error:t,isLoading:a,mutate:o}}function ds(e){return typeof e=="string"&&e.startsWith("*** set ***")}function Br(e,t="(no seteada)"){return ds(e)?e:t}function Do(e){if(typeof e!="string")return null;const t=e.match(/\(\.\.\.([^)]+)\)/);return t?t[1]:null}function NN({channel:e,onClose:t,onSaved:a}){const o=Ze(),[l,c]=x.useState(!1),[d,p]=x.useState({name:""});x.useEffect(()=>{p(e?{...e,bot_token:""}:{name:""})},[e?.name]);const m=async()=>{if(!d.name?.trim()){o.error(u("telegram_channel_dialog.name_required"));return}c(!0);try{e&&e.name!==""&&e?.name===d.name?await zn.channels.patch(e.name,d):await zn.channels.upsert(d),o.success(u("telegram_channel_dialog.saved")),a()}catch(g){o.error(g.message)}finally{c(!1)}};return s.jsx(sn,{open:!!e,onClose:t,title:e?.name?u("telegram_channel_dialog.edit_title",{name:e.name}):u("telegram_channel_dialog.new_title"),description:u("telegram_ui.channel_dialog_desc"),footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:l,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:m,loading:l,children:u("common.save")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("telegram_channel_dialog.name_label"),children:s.jsx(Ne,{value:d.name,onChange:g=>p({...d,name:g.target.value}),disabled:!!e?.name})}),s.jsx(ae,{label:u("telegram_channel_dialog.token_label"),hint:e?.bot_token?Br(e.bot_token):u("telegram_ui.bot_token_hint"),children:s.jsx(Ne,{type:"password",value:d.bot_token||"",onChange:g=>p({...d,bot_token:g.target.value}),placeholder:e?.bot_token?Br(e.bot_token):""})}),s.jsx(ae,{label:u("telegram_channel_dialog.chat_id"),children:s.jsx(Ne,{value:d.chat_id||"",onChange:g=>p({...d,chat_id:g.target.value})})}),s.jsx(ae,{label:u("telegram_channel_dialog.project_label"),hint:u("telegram_channel_dialog.project_hint"),children:s.jsx(Ne,{value:d.project||"",onChange:g=>p({...d,project:g.target.value})})}),s.jsx(ae,{label:u("telegram_channel_dialog.route_label"),hint:u("telegram_channel_dialog.route_hint"),children:s.jsx(Ne,{value:d.route_to_agent||"",onChange:g=>p({...d,route_to_agent:g.target.value})})}),s.jsx(ae,{label:u("telegram_channel_dialog.owner_label"),hint:u("telegram_channel_dialog.owner_hint"),children:s.jsx(Ne,{value:d.owner_user_id!=null?String(d.owner_user_id):"",onChange:g=>{const h=g.target.value.trim();p({...d,owner_user_id:h===""?void 0:/^\d+$/.test(h)?Number(h):h})},placeholder:"889721252"})}),s.jsx(Gt,{checked:!!d.respond_with_engine,onChange:g=>p({...d,respond_with_engine:g}),label:u("telegram_channel_dialog.respond_label")})]})})}function EN({channel:e,onClose:t}){const a=Ze(),[o,l]=x.useState(u("admin.telegram_default_message")),[c,d]=x.useState(!1),p=async()=>{if(!(!o.trim()||!e)){d(!0);try{await zn.send({text:o,channel:e.name}),a.success(u("telegram_ui.message_sent")),t()}catch(m){a.error(m.message)}finally{d(!1)}}};return s.jsx(sn,{open:!!e,onClose:t,title:e?u("telegram_send_dialog.title",{name:e.name}):"",description:e?u("telegram_ui.send_chat_id",{id:e.chat_id||"—"}):"",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:c,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:p,loading:c,children:u("chat_ui.send")})]}),children:s.jsx(ae,{label:u("telegram_ui.message_label"),children:s.jsx(un,{rows:4,value:o,onChange:m=>l(m.target.value)})})})}function RN({bare:e=!1}){const t=Ze(),{contacts:a,roles:o,channelOwners:l,isLoading:c,mutate:d}=O_(),p=new Set(l.filter(_=>_.owner_user_id!=null).map(_=>String(_.owner_user_id))),m=Array.from(new Set(["owner","guest",...Object.keys(o)])),g=async(_,j)=>{try{await zn.contacts.patch(_.user_id,{role:j}),t.success(u("telegram_ui.role_assigned",{name:_.name||_.user_id,role:j})),d()}catch(E){t.error(E.message)}},h=async _=>{if(confirm(u("telegram_contacts.delete_confirm",{name:_.name||String(_.user_id)})))try{await zn.contacts.remove(_.user_id),t.success(u("telegram_contacts.removed")),d()}catch(j){t.error(j.message)}},b=s.jsxs(s.Fragment,{children:[c&&s.jsx(at,{}),!c&&a.length===0&&s.jsx(pt,{children:u("telegram_contacts.empty")}),a.length>0&&s.jsx("ul",{className:"space-y-2 text-sm",children:a.map(_=>{const j=p.has(String(_.user_id)),E=j?"owner":_.role||"guest";return s.jsxs("li",{className:"rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsxs("div",{className:"flex items-center justify-between gap-2",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("span",{className:"font-medium",children:_.name||"—"}),_.username&&s.jsxs("span",{className:"ml-2 text-xs text-muted-fg",children:["@",_.username]}),j&&s.jsx(He,{tone:"success",children:u("telegram_contacts.owner_badge")})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Ye,{content:u(j?"telegram_contacts.owner_hint":"telegram_contacts.assign_role"),children:s.jsx(XL,{value:E,disabled:j,onChange:k=>g(_,k.target.value),children:m.map(k=>s.jsx("option",{value:k,children:k},k))})}),s.jsx(se,{size:"sm",variant:"destructive",onClick:()=>h(_),children:u("common.delete")})]})]}),s.jsxs("div",{className:"mt-1 grid grid-cols-3 gap-2 text-xs text-muted-fg",children:[s.jsxs("span",{children:["user_id: ",String(_.user_id)]}),s.jsxs("span",{children:[u("telegram_contacts.last_seen")," ",_.last_seen?_.last_seen.slice(0,10):"—"]}),s.jsx("span",{children:e6(o[E])})]})]},String(_.user_id))})})]});return e?b:s.jsx(Fe,{title:u("telegram_contacts.title"),description:u("telegram_contacts.desc"),children:b})}function e6(e){return!e||e.tools===void 0?"":e.tools==="*"?u("telegram_contacts.tools_all"):Array.isArray(e.tools)?e.tools.length?`${u("telegram_contacts.tools_label")} ${e.tools.join(", ")}`:u("telegram_contacts.tools_none"):""}function t6(){const e=Pn(),[t,a]=$o(),o=Ze(),{health:l,isUp:c}=CN(),{projects:d,isLoading:p,mutate:m}=fu(),{engines:g,isLoading:h}=ZL(),{status:b,mutate:_}=JL(),{channels:j,isLoading:E,mutate:k}=M_(),[y,w]=x.useState(null),[S,N]=x.useState(null),R=async()=>{try{await ni.reload(),o.success(u("admin.reload_success"))}catch(z){o.error(z.message)}},A=async()=>{try{b?.enabled?(await zn.stop(),o.info(u("admin.telegram_polling_stopped"))):(await zn.start(),o.success(u("admin.telegram_polling_started"))),_()}catch(z){o.error(z.message)}},T=async z=>{if(confirm(u("telegram_channels.delete_confirm",{name:z})))try{await zn.channels.remove(z),o.success(u("admin.telegram_channel_removed")),k()}catch(U){o.error(U.message)}},O=async(z,U)=>{if(confirm(u("admin.unregister_confirm",{label:U})))try{await Qn.remove(z),o.success(u("project.unregistered")),m()}catch(P){o.error(P.message)}};return s.jsxs("div",{className:"mx-auto max-w-5xl space-y-6 p-6","data-testid":"screen-admin",children:[s.jsxs("header",{className:"flex items-end justify-between",children:[s.jsxs("div",{children:[s.jsx("h1",{className:"text-2xl font-bold tracking-tight",children:u("admin.title")}),s.jsx("p",{className:"text-sm text-muted-fg",children:u("admin.subtitle")})]}),s.jsxs("div",{className:"flex gap-2",children:[s.jsx(Ye,{content:u("daemon.reload_hint"),children:s.jsxs(se,{size:"sm",onClick:R,children:[u("common.reload")," config"]})}),s.jsxs(se,{size:"sm",variant:"primary",onClick:()=>{const z=new URLSearchParams(t);z.set("action","add-project"),a(z)},children:[s.jsx(It,{size:14})," ",u("nav.project")]})]})]}),s.jsx(Fe,{title:u("daemon.version"),children:s.jsxs("div",{className:"grid grid-cols-3 gap-3 text-sm",children:[s.jsx(jh,{label:u("daemon.version"),value:l?.version||"—"}),s.jsx(jh,{label:u("daemon.uptime"),value:l?`${l.uptime_s}s`:"—"}),s.jsx(jh,{label:u("daemon.status"),value:u(c?"daemon.running":"daemon.down"),ok:c})]})}),s.jsxs(Fe,{title:u("admin.engines_title"),description:u("admin.engines_subtitle"),children:[h&&s.jsx(at,{}),s.jsx("div",{className:"flex flex-wrap gap-1.5",children:g.map(z=>s.jsx(He,{tone:"info",children:z},z))})]}),s.jsxs(Fe,{title:u("admin.telegram_title"),description:u("admin.telegram_subtitle"),action:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Gt,{checked:!!b?.enabled,onChange:A,label:b?.enabled?u("admin.telegram_polling_on"):u("admin.telegram_polling_off")}),s.jsxs(se,{size:"sm",onClick:()=>w({name:""}),children:[s.jsx(It,{size:14})," ",u("admin.telegram_add_channel")]})]}),children:[E&&s.jsx(at,{}),j.length===0&&s.jsx(pt,{children:u("common.none_yet")}),s.jsx("ul",{className:"space-y-2 text-sm",children:j.map(z=>s.jsxs("li",{className:"rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsxs("div",{className:"flex items-center justify-between gap-2",children:[s.jsx("span",{className:"font-medium",children:z.name}),s.jsxs("div",{className:"flex items-center gap-2",children:[z.project&&s.jsxs(He,{tone:"success",children:["project = ",z.project]}),s.jsxs(se,{size:"sm",variant:"ghost",onClick:()=>N(z),children:[s.jsx(Js,{size:13})," ",u("admin.telegram_send_test")]}),s.jsx(se,{size:"sm",variant:"secondary",onClick:()=>w(z),children:u("common.edit")}),s.jsx(se,{size:"sm",variant:"destructive",onClick:()=>T(z.name),children:u("common.delete")})]})]}),s.jsxs("div",{className:"mt-1 grid grid-cols-3 gap-2 text-xs text-muted-fg",children:[s.jsxs("span",{children:["chat_id: ",z.chat_id||"—"]}),s.jsxs("span",{children:["route_to_agent: ",z.route_to_agent||"default APX"]}),s.jsxs("span",{children:["engine: ",z.respond_with_engine?u("admin.engine_badge"):u("admin.engine_badge_no")]})]})]},z.name))})]}),s.jsx(RN,{}),s.jsxs(Fe,{title:u("admin.projects_title"),description:u("admin.projects_subtitle"),children:[p&&s.jsx(at,{}),s.jsx("ul",{className:"divide-y divide-border",children:d.map(z=>s.jsxs("li",{className:"flex items-center gap-3 py-2",children:[s.jsxs("span",{className:"w-10 font-mono text-xs text-muted-fg",children:["#",z.id]}),s.jsxs("button",{type:"button",className:"flex-1 text-left hover:underline",onClick:()=>e(`/p/${z.id}`),children:[s.jsx("span",{className:"font-medium",children:z.name||z.path.split("/").pop()}),s.jsx("span",{className:"ml-2 text-xs text-muted-fg",children:z.path})]}),s.jsxs(He,{children:[z.agents??0," ",u("admin.agents_badge")]}),Number(z.id)!==0&&s.jsx(se,{size:"sm",variant:"destructive",onClick:()=>O(String(z.id),z.name||z.path),children:u("admin.unregister")})]},z.id))})]}),s.jsx(NN,{channel:y,onClose:()=>w(null),onSaved:()=>{w(null),k()}}),s.jsx(EN,{channel:S,onClose:()=>N(null)})]})}function jh({label:e,value:t,ok:a}){return s.jsxs("div",{className:"rounded-md border border-border bg-muted/30 p-3",children:[s.jsx("div",{className:"text-xs uppercase tracking-wide text-muted-fg",children:e}),s.jsxs("div",{className:"mt-1 flex items-center gap-2 text-base font-medium",children:[a!==void 0&&s.jsx(pu,{ok:a}),s.jsx("span",{children:t})]})]})}const TN=x.createContext(null),AN=x.createContext(null),MN=x.createContext(""),ON=x.createContext(null),zN=x.createContext(null),DN=x.createContext(null);function n6({children:e}){const[t,a]=x.useState(null),[o,l]=x.useState(""),[c,d]=x.useState(null);return s.jsx(AN.Provider,{value:a,children:s.jsx(TN.Provider,{value:t,children:s.jsx(ON.Provider,{value:l,children:s.jsx(MN.Provider,{value:o,children:s.jsx(DN.Provider,{value:d,children:s.jsx(zN.Provider,{value:c,children:e})})})})})})}function s6(){return x.useContext(TN)}function a6(e,t){const a=x.useContext(AN);x.useEffect(()=>(a?.({collapsed:e,toggle:t}),()=>a?.(null)),[e,t,a])}function r6(){return x.useContext(MN)}function o6(e){const t=x.useContext(ON);x.useEffect(()=>(t?.(e),()=>t?.("")),[e,t])}function l6(){return x.useContext(zN)}function i6(e){const t=x.useContext(DN);x.useEffect(()=>(t?.(e),()=>t?.(null)),[e,t])}function PN({sections:e,active:t,onChange:a,collapsed:o,onToggleCollapse:l,actions:c,contentClassName:d,testId:p,children:m}){return a6(o,l),s.jsxs("div",{className:"flex h-full",children:[s.jsx(yP,{sections:e,active:t,onChange:a,collapsed:o}),s.jsxs("div",{className:"flex min-w-0 flex-1 flex-col overflow-hidden",children:[c?s.jsx("div",{className:"flex shrink-0 items-center justify-end gap-2 px-6 pt-3",children:c}):null,s.jsx("div",{className:he("flex-1 min-h-0 overflow-y-auto",d),"data-testid":p,children:m})]})]})}const Ck={happy:{eyes:["◕","◕"],mouth:"‿"},wave:{eyes:["◕","◕"],mouth:"▽",top:"·"},confused:{eyes:["◑","◐"],mouth:"o",top:"?"},sad:{eyes:["╥","╥"],mouth:"◠"},excited:{eyes:["★","★"],mouth:"▽",top:"✦"},sleeping:{eyes:["−","−"],mouth:"‿",top:"z z"}};function LN({mood:e="happy",className:t}){const a=Ck[e]??Ck.happy,[o,l]=a.eyes,c="text-emerald-700 dark:text-emerald-600/70";return s.jsxs("div",{"aria-hidden":!0,className:Ct("select-none whitespace-pre font-mono leading-none text-emerald-400",t),children:[a.top&&s.jsx("div",{children:s.jsx("span",{className:c,children:` ${a.top}`})}),s.jsx("div",{children:" ▄███████▄"}),s.jsxs("div",{children:[" █ ",s.jsx("span",{className:c,children:"██"})," ",s.jsx("span",{className:c,children:"██"})," █"]}),s.jsx("div",{children:` █ ${o} ${l} █`}),s.jsx("div",{children:` █ ${a.mouth} █`}),s.jsx("div",{children:" ▀███████▀"})]})}function IN({mood:e="confused",title:t,titleClassName:a,message:o,action:l,className:c,testId:d}){return s.jsx("div",{className:Ct("grid h-full place-items-center p-8",c),"data-testid":d,children:s.jsxs("div",{className:"flex flex-col items-center text-center",children:[s.jsx(LN,{mood:e,className:"mb-6 text-sm"}),t!=null&&s.jsx("div",{className:Ct("font-mono font-semibold leading-none tracking-tight text-foreground",a),children:t}),o!=null&&s.jsx("p",{className:"mt-4 max-w-sm text-sm text-muted-fg",children:o}),l&&s.jsx("div",{className:"mt-6",children:l})]})})}const z_={pending:{labelKey:"tasks.status_pending",color:"text-amber-500",dot:"bg-amber-400",Icon:y5},running:{labelKey:"tasks.status_running",color:"text-sky-500",dot:"bg-sky-400",Icon:Lr,spin:!0},in_review:{labelKey:"tasks.status_in_review",color:"text-violet-500",dot:"bg-violet-400",Icon:DS},blocked:{labelKey:"tasks.status_blocked",color:"text-slate-400",dot:"bg-slate-400",Icon:j5}},BN=["pending","running","in_review","blocked"];function Bf(e){return e.state==="done"?"done":e.state==="dropped"?"dropped":e.status??"pending"}function D_(e){return u(z_[e].labelKey)}function Uf({status:e,className:t}){if(e==="done")return s.jsx(pb,{className:he("size-4 text-emerald-500",t)});if(e==="dropped")return s.jsx(zS,{className:he("size-4 text-muted-foreground",t)});const a=z_[e];return s.jsx(a.Icon,{className:he("size-4",a.color,a.spin&&"animate-spin",t)})}function P_({status:e}){const t=e==="done"?u("tasks.done_label"):e==="dropped"?u("tasks.dropped_label"):D_(e),a=e==="done"?"text-emerald-500 border-emerald-500/30":e==="dropped"?"text-muted-foreground border-border":`${z_[e].color} border-current/30`;return s.jsxs("span",{className:he("inline-flex items-center gap-1 rounded-md border px-1.5 py-0.5 text-[10px] font-medium capitalize",a),children:[s.jsx(Uf,{status:e,className:"size-3"}),t]})}function Nk({pid:e}){const t=Pn(),a=$e(`/projects/${e}/tasks?state=open`,()=>Wn.list(e),{refreshInterval:2e4}),o=$e(`/projects/${e}/tasks-summary`,()=>Wn.summary(e),{refreshInterval:2e4}),l=$e(`/projects/${e}/routines`,()=>Mr.list(e)),c=$e(`/projects/${e}/agents`,()=>cn.list(e)),d=$e(`/projects/${e}/mcps`,()=>Or.list(e)),p=$e(`/projects/${e}/artifacts`,()=>Dr.list(e)),m=c.data??[],g=m.filter(j=>j.is_master||j.type==="orchestrator"),h=m.filter(j=>!(j.is_master||j.type==="orchestrator")),b=(l.data??[]).filter(j=>j.enabled).length,_=[...a.data??[]].sort((j,E)=>(E.created_at||"").localeCompare(j.created_at||"")).slice(0,6);return s.jsxs("div",{className:"space-y-6",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4 md:grid-cols-4",children:[s.jsx(vo,{title:u("project.overview.agents"),value:m.length,href:`/p/${e}/agents`,icon:on}),s.jsx(vo,{title:u("project.overview.tasks_open"),value:o.data?.open??a.data?.length??"…",href:`/p/${e}/tasks`,icon:Kl}),s.jsx(vo,{title:u("project.overview.routines_active"),value:b,href:`/p/${e}/routines`,icon:Eo}),s.jsx(vo,{title:u("project.overview.artifacts"),value:p.data?.length??"…",href:`/p/${e}/artifacts`,icon:hf})]}),o.data&&o.data.open>0&&s.jsx("div",{className:"flex flex-wrap gap-2",children:BN.map(j=>s.jsxs(mf,{to:`/p/${e}/tasks`,className:"flex items-center gap-1.5 rounded-lg border border-border bg-card px-3 py-1.5 text-xs hover:bg-accent/40",children:[s.jsx(Uf,{status:j,className:"size-3.5"}),s.jsx("span",{className:"capitalize text-muted-foreground",children:D_(j)}),s.jsx("span",{className:"font-semibold",children:o.data.status?.[j]??0})]},j))}),s.jsxs("div",{className:"grid gap-4 lg:grid-cols-2",children:[s.jsx(Fe,{title:u("project.overview.roster"),className:"!p-4",children:m.length===0?s.jsx("p",{className:"text-sm text-muted-fg",children:u("project.overview.no_agents")}):s.jsxs("div",{className:"space-y-3",children:[g.length>0&&s.jsx(Ek,{label:u("project.overview.orchestrators"),icon:xa,agents:g,pid:e,navigate:t}),h.length>0&&s.jsx(Ek,{label:u("project.overview.specialists"),icon:on,agents:h,pid:e,navigate:t})]})}),s.jsx(Fe,{title:u("project.overview.recent_tasks"),className:"!p-4",action:s.jsx(mf,{to:`/p/${e}/tasks`,className:"text-xs text-sky-500 hover:text-sky-400",children:u("common.view_all")}),children:_.length===0?s.jsxs("p",{className:"flex items-center gap-2 text-sm text-muted-fg",children:[s.jsx(db,{className:"size-4"}),u("project.overview.no_activity")]}):s.jsx("ul",{className:"space-y-1.5",children:_.map(j=>s.jsx("li",{children:s.jsxs("button",{type:"button",onClick:()=>t(`/p/${e}/tasks?task=${j.id}`),className:"flex w-full items-center gap-2 rounded-lg px-2 py-1.5 text-left hover:bg-accent/40",children:[s.jsx(Uf,{status:Bf(j),className:"size-3.5 shrink-0"}),s.jsx("span",{className:"min-w-0 flex-1 truncate text-sm",children:j.title}),s.jsx(P_,{status:Bf(j)})]})},j.id))})})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4 md:grid-cols-3",children:[s.jsx(vo,{title:u("project.overview.chat"),value:u("project.overview.chat_value"),href:`/p/${e}/chat`,icon:bf}),s.jsx(vo,{title:u("project.overview.mcps"),value:d.data?.length??"…",href:`/p/${e}/mcps`,icon:Hc}),s.jsx(vo,{title:u("project.overview.routines"),value:l.data?.length??"…",href:`/p/${e}/routines`,icon:Eo})]})]})}function Ek({label:e,icon:t,agents:a,pid:o,navigate:l}){return s.jsxs("div",{children:[s.jsxs("div",{className:"mb-1.5 flex items-center gap-1.5 text-[10px] font-semibold uppercase tracking-wide text-muted-foreground",children:[s.jsx(t,{className:"size-3.5"}),e," (",a.length,")"]}),s.jsx("div",{className:"flex flex-wrap gap-1.5",children:a.map(c=>s.jsxs("button",{type:"button",onClick:()=>l(`/p/${o}/agents/${c.slug}`),className:he("inline-flex items-center gap-1.5 rounded-lg border border-border bg-card px-2 py-1 text-xs hover:border-muted-fg/50"),children:[s.jsx("span",{className:"text-sm leading-none",children:c.emoji||"🤖"}),s.jsx("span",{className:"truncate",children:c.slug})]},c.slug))})]})}function vo({title:e,value:t,href:a,icon:o}){return s.jsxs(mf,{to:a,className:"flex items-center gap-3 rounded-xl border border-border bg-card p-4 hover:bg-accent/40",children:[s.jsx("span",{className:"grid size-10 place-items-center rounded-lg bg-muted text-muted-fg",children:s.jsx(o,{size:20})}),s.jsxs("div",{children:[s.jsx("div",{className:"text-xs uppercase tracking-wide text-muted-fg",children:e}),s.jsx("div",{className:"text-2xl font-semibold",children:t})]})]})}function c6(){const e=Pn(),{projects:t,isLoading:a}=fu();return s.jsxs(Fe,{title:u("base.workspaces_title"),description:u("base.workspaces_desc"),action:s.jsxs(se,{size:"sm",variant:"primary",onClick:()=>e("/p/0/workspaces?action=add-project"),children:[s.jsx(It,{size:14})," ",u("base.workspaces_new")]}),children:[a&&s.jsx(at,{}),!a&&t.length===0&&s.jsx(pt,{children:u("base.workspaces_empty")}),s.jsx("div",{className:"grid grid-cols-1 gap-3 sm:grid-cols-2 lg:grid-cols-3",children:t.map(o=>{const l=String(o.id)==="0",c=l?u("base.title"):o.name||o.path.split("/").pop()||String(o.id);return s.jsxs("button",{type:"button",onClick:()=>e(`/p/${o.id}`),className:"flex cursor-pointer flex-col gap-2 rounded-xl border border-border bg-card p-4 text-left transition-colors hover:border-muted-fg/50",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(gb,{className:"size-4 text-muted-fg"}),s.jsx("span",{className:"truncate text-sm font-semibold",children:c}),s.jsx(He,{tone:l?"success":"info",children:l?u("base.title"):pN(o.kind)})]}),s.jsx("p",{className:"truncate font-mono text-[10px] text-muted-fg",children:o.path})]},o.id)})})]})}const UN=x.createContext(null),$N=x.createContext(null);function wa(){const e=x.useContext(UN);if(e===null)throw new Error(ln(60));return e}function HN(){const e=x.useContext($N);if(e===null)throw new Error(ln(61));return e}const u6=(e,t)=>Object.is(e,t);function Po(e,t,a){return e==null||t==null?Object.is(e,t):a(e,t)}function d6(e,t,a){return!e||e.length===0?!1:e.some(o=>o===void 0?!1:Po(t,o,a))}function Lc(e,t,a){return!e||e.length===0?-1:e.findIndex(o=>o===void 0?!1:Po(o,t,a))}function f6(e,t,a){return e.filter(o=>!Po(t,o,a))}function Vx(e){if(e==null)return"";if(typeof e=="string")return e;try{return JSON.stringify(e)}catch{return String(e)}}function VN(e){return e!=null&&e.length>0&&typeof e[0]=="object"&&e[0]!=null&&"items"in e[0]}function p6(e){if(!Array.isArray(e))return e!=null&&"null"in e;const t=e;if(VN(t)){for(const a of t)for(const o of a.items)if(o&&o.value==null&&o.label!=null)return!0;return!1}for(const a of t)if(a&&a.value==null&&a.label!=null)return!0;return!1}function qN(e,t){if(t&&e!=null)return t(e)??"";if(e&&typeof e=="object"){if("label"in e&&e.label!=null)return String(e.label);if("value"in e)return String(e.value)}return Vx(e)}function ko(e,t){return t&&e!=null?t(e)??"":e&&typeof e=="object"&&"value"in e&&"label"in e?Vx(e.value):Vx(e)}function FN(e,t,a){function o(){return qN(e,a)}if(a&&e!=null)return a(e);if(e&&typeof e=="object"&&"label"in e&&e.label!=null)return e.label;if(t&&!Array.isArray(t))return t[e]??o();if(Array.isArray(t)){const l=t,c=VN(l)?l.flatMap(d=>d.items):l;if(e==null||typeof e!="object"){const d=c.find(p=>p.value===e);return d&&d.label!=null?d.label:o()}if("value"in e){const d=c.find(p=>p&&p.value===e.value);if(d&&d.label!=null)return d.label}}return o()}function m6(e,t,a){return e.reduce((o,l,c)=>(c>0&&o.push(", "),o.push(s.jsx(x.Fragment,{children:FN(l,t,a)},c)),o),[])}const et={id:Ae(e=>e.id),labelId:Ae(e=>e.labelId),modal:Ae(e=>e.modal),multiple:Ae(e=>e.multiple),items:Ae(e=>e.items),itemToStringLabel:Ae(e=>e.itemToStringLabel),itemToStringValue:Ae(e=>e.itemToStringValue),isItemEqualToValue:Ae(e=>e.isItemEqualToValue),value:Ae(e=>e.value),hasSelectedValue:Ae(e=>{const{value:t,multiple:a,itemToStringValue:o}=e;return t==null?!1:a&&Array.isArray(t)?t.length>0:ko(t,o)!==""}),hasNullItemLabel:Ae((e,t)=>t?p6(e.items):!1),open:Ae(e=>e.open),mounted:Ae(e=>e.mounted),forceMount:Ae(e=>e.forceMount),transitionStatus:Ae(e=>e.transitionStatus),openMethod:Ae(e=>e.openMethod),activeIndex:Ae(e=>e.activeIndex),selectedIndex:Ae(e=>e.selectedIndex),isActive:Ae((e,t)=>e.activeIndex===t),isSelected:Ae((e,t)=>{const a=e.isItemEqualToValue,o=e.value;return e.multiple?Array.isArray(o)&&o.some(l=>Po(t,l,a)):Po(t,o,a)}),isSelectedByFocus:Ae((e,t)=>e.selectedIndex===t),popupProps:Ae(e=>e.popupProps),triggerProps:Ae(e=>e.triggerProps),triggerElement:Ae(e=>e.triggerElement),positionerElement:Ae(e=>e.positionerElement),listElement:Ae(e=>e.listElement),popupSide:Ae(e=>e.popupSide),scrollUpArrowVisible:Ae(e=>e.scrollUpArrowVisible),scrollDownArrowVisible:Ae(e=>e.scrollDownArrowVisible),hasScrollArrows:Ae(e=>e.hasScrollArrows)};function g6(e,t,a=(o,l)=>o===l){return e.length===t.length&&e.every((o,l)=>a(o,t[l]))}function Nc(e,t=Number.MIN_SAFE_INTEGER,a=Number.MAX_SAFE_INTEGER){return Math.max(t,Math.min(e,a))}const Ks=1;function L_(e,t){return Math.max(0,e-t)}function $f(e,t){if(t<=0)return 0;const a=Nc(e,0,t),o=a,l=t-a,c=o<=Ks,d=l<=Ks;return c&&d?o<=l?0:t:c?0:d?t:a}function h6(e){const{id:t,value:a,defaultValue:o=null,onValueChange:l,open:c,defaultOpen:d=!1,onOpenChange:p,name:m,form:g,autoComplete:h,disabled:b=!1,readOnly:_=!1,required:j=!1,modal:E=!0,actionsRef:k,inputRef:y,onOpenChangeComplete:w,items:S,multiple:N=!1,itemToStringLabel:R,itemToStringValue:A,isItemEqualToValue:T=u6,highlightItemOnHover:O=!0,children:z}=e,{clearErrors:U}=R_(),{setDirty:P,setTouched:B,setFocused:D,validityData:L,setFilled:$,name:V,disabled:H,validation:F,validationMode:Y}=mu(),G=Rp({id:t}),K=H||b,I=V??m,[X,Z]=ei({controlled:a,default:N?o??er:o,name:"Select",state:"value"}),[te,fe]=ei({controlled:c,default:d,name:"Select",state:"open"}),ee=x.useRef([]),re=x.useRef([]),le=x.useRef(null),me=x.useRef(null),Me=x.useRef(0),de=x.useRef(null),ge=x.useRef([]),Ce=x.useRef(!1),we=x.useRef(null),Be=x.useRef(null),Ve=x.useRef({allowSelectedMouseUp:!1,allowUnselectedMouseUp:!1,dragY:0}),Se=x.useRef(!1),{mounted:Te,setMounted:je,transitionStatus:Ee}=mi(te),{openMethod:De,triggerProps:Le}=KC(te),Ie=es(()=>new nC({id:G,labelId:void 0,modal:E,multiple:N,itemToStringLabel:R,itemToStringValue:A,isItemEqualToValue:T,value:X,open:te,mounted:Te,transitionStatus:Ee,items:S,forceMount:!1,openMethod:null,activeIndex:null,selectedIndex:null,popupProps:{},triggerProps:{},triggerElement:null,positionerElement:null,listElement:null,popupSide:null,scrollUpArrowVisible:!1,scrollDownArrowVisible:!1,hasScrollArrows:!1})).current,ue=nt(Ie,et.activeIndex),ye=nt(Ie,et.selectedIndex),Ge=nt(Ie,et.triggerElement),Re=nt(Ie,et.positionerElement),Oe=cD(De),tt=De??Oe??null,ot=x.useMemo(()=>N?"":ko(X,A),[N,X,A]),vt=x.useMemo(()=>N&&Array.isArray(X)?X.map(dt=>ko(dt,A)):ko(X,A),[N,X,A]),Mt=pn(Ie.state.triggerElement),lt=Ue(()=>vt);T_(Mt,G,X,lt,!K,m);const Rt=x.useRef(X),_e=N?Array.isArray(X)&&X.length>0:X!=null&&ko(X,A)!=="";ze(()=>{X!==Rt.current&&Ie.set("forceMount",!0)},[Ie,X]),ze(()=>{$(_e)},[_e,$]),ze(function(){const Bt=ge.current;let hn;if(N){const En=Array.isArray(X)?X:[];if(En.length===0)hn=null;else{const wn=En[En.length-1],Yt=Lc(Bt,wn,T);hn=Yt===-1?null:Yt}}else{const En=Lc(Bt,X,T);hn=En===-1?null:En}hn===null&&(Be.current=null),!te&&Ie.set("selectedIndex",hn)},[_e,N,te,X,ge,T,Ie,Be]);function Pe(dt){const Bt=L.initialValue;return Array.isArray(dt)&&Array.isArray(Bt)?!g6(dt,Bt,(hn,En)=>Po(hn,En,T)):dt!==Bt}g_(X,()=>{U(I),P(Pe(X)),F.change(X)});const Xe=Ue((dt,Bt)=>{p?.(dt,Bt),!Bt.isCanceled&&(fe(dt),!dt&&(Bt.reason===To||Bt.reason===ip)&&(B(!0),D(!1),Y==="onBlur"&&F.commit(X)))}),it=Ue(()=>{je(!1),Ie.update({activeIndex:null,openMethod:null}),w?.(!1)});ka({enabled:!k,open:te,ref:le,onComplete(){te||it()}}),x.useImperativeHandle(k,()=>({unmount:it}),[it]);const Qe=Ue((dt,Bt)=>{l?.(dt,Bt),!Bt.isCanceled&&Z(dt)}),mt=Ue(()=>{const dt=Ie.state.listElement||le.current;if(!dt)return;const Bt=L_(dt.scrollHeight,dt.clientHeight),hn=$f(dt.scrollTop,Bt),En=hn>0,wn=hn<Bt;Ie.state.scrollUpArrowVisible!==En&&Ie.set("scrollUpArrowVisible",En),Ie.state.scrollDownArrowVisible!==wn&&Ie.set("scrollDownArrowVisible",wn)}),Ot=dC({open:te,onOpenChange:Xe,elements:{reference:Ge,floating:Re}}),Zt=F2(Ot,{enabled:!_&&!K,event:"mousedown"}),Qt=dp(Ot),Jt=hC(Ot,{enabled:!_&&!K,listRef:ee,activeIndex:ue,selectedIndex:ye,disabledIndices:er,onNavigate(dt){dt===null&&!te||Ie.set("activeIndex",dt)},focusItemOnHover:O}),mn=xC(Ot,{enabled:!_&&!K&&(te||!N),listRef:re,activeIndex:ue,selectedIndex:ye,disabledIndices:dt=>ZC(ee.current[dt]),onMatch(dt){te?Ie.set("activeIndex",dt):Qe(ge.current[dt],st("none"))},onTyping(dt){Ce.current=dt}}),as=x.useMemo(()=>{const dt=Kn(mn.reference,Jt.reference,Qt.reference,Zt.reference,Le);return G&&(dt.id=G),dt},[Zt.reference,mn.reference,Jt.reference,Qt.reference,Le,G]),ms=x.useMemo(()=>Kn(gp,mn.floating,Jt.floating,Qt.floating),[mn.floating,Jt.floating,Qt.floating]),Ss=Jt.item??Xt;Qb(()=>{Ie.update({popupProps:ms,triggerProps:as})}),ze(()=>{Ie.update({id:G,modal:E,multiple:N,value:X,open:te,mounted:Te,transitionStatus:Ee,popupProps:ms,triggerProps:as,items:S,itemToStringLabel:R,itemToStringValue:A,isItemEqualToValue:T,openMethod:tt})},[Ie,G,E,N,X,te,Te,Ee,ms,as,S,R,A,T,tt]);const gn=x.useMemo(()=>({store:Ie,name:I,required:j,disabled:K,readOnly:_,multiple:N,highlightItemOnHover:O,setValue:Qe,setOpen:Xe,listRef:ee,popupRef:le,scrollHandlerRef:me,handleScrollArrowVisibility:mt,scrollArrowsMountedCountRef:Me,itemProps:Ss,valueRef:de,valuesRef:ge,labelsRef:re,typingRef:Ce,selectionRef:Ve,firstItemTextRef:we,selectedItemTextRef:Be,validation:F,onOpenChangeComplete:w,alignItemWithTriggerActiveRef:Se,initialValueRef:Rt}),[Ie,I,j,K,_,N,O,Qe,Xe,Ss,F,w,mt]),Cs=tr(y,F.inputRef),Sa=N&&Array.isArray(X)&&X.length>0,qs=N?void 0:I,Ca=x.useMemo(()=>!N||!Array.isArray(X)||!I?null:X.map(dt=>{const Bt=ko(dt,A);return s.jsx("input",{type:"hidden",form:g,name:I,value:Bt,disabled:K},Bt)}),[N,X,g,I,A,K]);return s.jsx(UN.Provider,{value:gn,children:s.jsxs($N.Provider,{value:Ot,children:[z,s.jsx("input",{...F.getValidationProps(K,{onFocus(){Ie.state.triggerElement?.focus({focusVisible:!0})},onChange(dt){if(dt.nativeEvent.defaultPrevented||K||_)return;const Bt=dt.currentTarget.value,hn=st(va,dt.nativeEvent);function En(){if(N)return;const wn=Bt.toLowerCase();let Yt=ge.current.findIndex(na=>ko(na,A).toLowerCase()===wn||qN(na,R).toLowerCase()===wn);Yt===-1&&(Yt=ge.current.findIndex((na,gi)=>{const gu=re.current[gi];return gu!=null&&gu.toLowerCase()===wn}));const Ln=Yt===-1?void 0:ge.current[Yt];Ln!=null&&Qe(Ln,hn)}Ie.set("forceMount",!0),queueMicrotask(En)}}),id:G&&qs==null?`${G}-hidden-input`:void 0,form:g,name:qs,autoComplete:h,value:ot,disabled:K,required:j&&!Sa,readOnly:_,ref:Cs,style:I?b2:Pb,tabIndex:-1,"aria-hidden":!0,suppressHydrationWarning:!0}),Ca]})})}function x6(e,t){return e??t}const $d=2,b6=400,_6={...Tx,...E_,popupSide:e=>e?{"data-popup-side":e}:null,value:()=>null},v6=x.forwardRef(function(t,a){const{render:o,className:l,id:c,disabled:d=!1,nativeButton:p=!0,style:m,...g}=t,{setTouched:h,setFocused:b,validationMode:_,state:j,disabled:E}=mu(),{labelId:k}=Ep(),{store:y,setOpen:w,selectionRef:S,validation:N,readOnly:R,required:A,alignItemWithTriggerActiveRef:T,disabled:O}=wa(),z=E||O||d,U=nt(y,et.open),P=nt(y,et.mounted),B=nt(y,et.value),D=nt(y,et.triggerProps),L=nt(y,et.positionerElement),$=nt(y,et.listElement),V=nt(y,et.popupSide),H=nt(y,et.id),F=nt(y,et.labelId),Y=nt(y,et.hasSelectedValue),G=P&&L?V:null,K=c??H,I=x6(k,F);Rp({id:K});const X=pn(L),Z=x.useRef(null),{getButtonProps:te,buttonRef:fe}=Wr({disabled:z,native:p}),ee=Ue(Ce=>{y.set("triggerElement",Ce)}),re=Nn(),le=Nn(),me=Nn();x.useEffect(()=>{if(U)return me.start(b6,()=>{S.current.allowUnselectedMouseUp=!0,S.current.allowSelectedMouseUp=!0}),()=>{me.clear()};S.current={allowSelectedMouseUp:!1,allowUnselectedMouseUp:!1,dragY:0},le.clear()},[U,S,le,me]);const Me=Kn(D,{id:K,role:"combobox","aria-expanded":U?"true":"false","aria-haspopup":"listbox","aria-controls":U?$?.id??yf(L)?.id:void 0,"aria-labelledby":I,"aria-readonly":R||void 0,"aria-required":A||void 0,tabIndex:z?-1:0,onFocus(Ce){b(!0),U&&T.current&&w(!1,st(va,Ce.nativeEvent)),re.start(0,()=>{y.set("forceMount",!0)})},onBlur(Ce){We(L,Ce.relatedTarget)||(h(!0),b(!1),_==="onBlur"&&N.commit(B))},onMouseDown(Ce){if(U)return;const we=xt(Ce.currentTarget);function Be(Ve){if(!Z.current)return;const Se=Ve.target;if(We(Z.current,Se)||We(X.current,Se))return;const Te=XC(Z.current);Ve.clientX>=Te.left-$d&&Ve.clientX<=Te.right+$d&&Ve.clientY>=Te.top-$d&&Ve.clientY<=Te.bottom+$d||w(!1,st(f2,Ve))}le.start(0,()=>{we.addEventListener("mouseup",Be,{once:!0})})}},g,te),de=N.getValidationProps(z,Me);de.role="combobox";const ge={...j,open:U,disabled:z,value:B,readOnly:R,popupSide:G,placeholder:!Y};return Et("button",t,{ref:[a,Z,fe,ee],state:ge,stateAttributesMapping:_6,props:de})}),y6={value:()=>null},j6=x.forwardRef(function(t,a){const{className:o,render:l,children:c,placeholder:d,style:p,...m}=t,{store:g,valueRef:h}=wa(),b=nt(g,et.value),_=nt(g,et.items),j=nt(g,et.itemToStringLabel),E=nt(g,et.hasSelectedValue),k=!E&&d!=null&&c==null,y=nt(g,et.hasNullItemLabel,k),w={value:b,placeholder:!E};let S=null;return typeof c=="function"?S=c(b):c!=null?S=c:!E&&d!=null&&!y?S=d:Array.isArray(b)?S=m6(b,_,j):S=FN(b,_,j),Et("span",t,{state:w,ref:[a,h],props:[{children:S},m],stateAttributesMapping:y6})}),k6=x.forwardRef(function(t,a){const{render:o,className:l,style:c,...d}=t,{store:p}=wa(),g={open:nt(p,et.open)};return Et("span",t,{state:g,ref:a,props:[{"aria-hidden":!0,children:"▼"},d],stateAttributesMapping:_C})}),w6=x.createContext(void 0),S6=x.forwardRef(function(t,a){const{store:o}=wa(),l=nt(o,et.mounted),c=nt(o,et.forceMount);return l||c?s.jsx(w6.Provider,{value:!0,children:s.jsx(Fb,{ref:a,...t})}):null}),GN=x.createContext(void 0);function I_(){const e=x.useContext(GN);if(!e)throw new Error(ln(59));return e}function Hf(e,t){e&&Object.assign(e.style,t)}const YN={position:"relative",maxHeight:"100%",overflowX:"hidden",overflowY:"auto"},C6={position:"fixed"},N6=x.forwardRef(function(t,a){const{anchor:o,positionMethod:l="absolute",className:c,render:d,side:p="bottom",align:m="center",sideOffset:g=0,alignOffset:h=0,collisionBoundary:b="clipping-ancestors",collisionPadding:_,arrowPadding:j=5,sticky:E=!1,disableAnchorTracking:k,alignItemWithTrigger:y=!0,collisionAvoidance:w=P2,style:S,...N}=t,{store:R,listRef:A,labelsRef:T,alignItemWithTriggerActiveRef:O,selectedItemTextRef:z,valuesRef:U,initialValueRef:P,popupRef:B,setValue:D}=wa(),L=HN(),$=nt(R,et.open),V=nt(R,et.mounted),H=nt(R,et.modal),F=nt(R,et.value),Y=nt(R,et.openMethod),G=nt(R,et.positionerElement),K=nt(R,et.triggerElement),I=nt(R,et.isItemEqualToValue),X=nt(R,et.transitionStatus),Z=x.useRef(null),te=x.useRef(null),[fe,ee]=x.useState(y),re=V&&fe&&Y!=="touch";!V&&fe!==y&&ee(y),ze(()=>{V||(et.scrollUpArrowVisible(R.state)&&R.set("scrollUpArrowVisible",!1),et.scrollDownArrowVisible(R.state)&&R.set("scrollDownArrowVisible",!1))},[R,V]),x.useImperativeHandle(O,()=>re),qC((re||H)&&$,Y==="touch",G,K);const le=l_({anchor:o,floatingRootContext:L,positionMethod:l,mounted:V,side:p,sideOffset:g,align:m,alignOffset:h,arrowPadding:j,collisionBoundary:b,collisionPadding:_,sticky:E,disableAnchorTracking:k??re,collisionAvoidance:w,keepMounted:!0}),me=re?"none":le.side,Me=re?C6:le.positionerStyles,de={open:$,side:me,align:le.align,anchorHidden:le.anchorHidden};ze(()=>{R.set("popupSide",le.side)},[R,le.side]);const ge=Ue(Se=>{R.set("positionerElement",Se)}),Ce=i_(t,de,{styles:Me,transitionStatus:X,props:N,refs:[a,ge],hidden:!V,inert:!$}),we=x.useRef(0),Be=Ue(Se=>{if(Se.size===0&&we.current===0||U.current.length===0)return;const Te=we.current;if(we.current=Se.size,Se.size===Te)return;const je=st(va);if(Te!==0&&!R.state.multiple&&F!==null&&Lc(U.current,F,I)===-1){const De=P.current,Ie=De!=null&&Lc(U.current,De,I)!==-1?De:null;D(Ie,je),Ie===null&&(R.set("selectedIndex",null),z.current=null)}if(Te!==0&&R.state.multiple&&Array.isArray(F)){const Ee=Le=>Lc(U.current,Le,I)!==-1,De=F.filter(Le=>Ee(Le));(De.length!==F.length||De.some(Le=>!d6(F,Le,I)))&&(D(De,je),De.length===0&&(R.set("selectedIndex",null),z.current=null))}if($&&re){R.update({scrollUpArrowVisible:!1,scrollDownArrowVisible:!1});const Ee={height:""};Hf(G,Ee),Hf(B.current,Ee)}}),Ve=x.useMemo(()=>({...le,side:me,alignItemWithTriggerActive:re,setControlledAlignItemWithTrigger:ee,scrollUpArrowRef:Z,scrollDownArrowRef:te}),[le,me,re,ee]);return s.jsx(wp,{elementsRef:A,labelsRef:T,onMapChange:Be,children:s.jsxs(GN.Provider,{value:Ve,children:[V&&H&&s.jsx(m_,{inert:_p(!$),cutout:K}),Ce]})})}),Hd="base-ui-disable-scrollbar",qx={className:Hd,getElement(e){return s.jsx("style",{nonce:e,href:Hd,precedence:"base-ui:low",children:`.${Hd}{scrollbar-width:none}.${Hd}::-webkit-scrollbar{display:none}`})}},E6=x.createContext(void 0),R6={disableStyleElements:!1};function T6(){return x.useContext(E6)??R6}const A6={...Ho,...rr},M6=x.forwardRef(function(t,a){const{render:o,className:l,style:c,finalFocus:d,...p}=t,{store:m,popupRef:g,onOpenChangeComplete:h,setOpen:b,valueRef:_,firstItemTextRef:j,selectedItemTextRef:E,multiple:k,handleScrollArrowVisibility:y,scrollHandlerRef:w,listRef:S,highlightItemOnHover:N}=wa(),{side:R,align:A,alignItemWithTriggerActive:T,isPositioned:O,setControlledAlignItemWithTrigger:z}=I_(),U=IC()!=null,P=HN(),B=xp(),{nonce:D,disableStyleElements:L}=T6(),$=nt(m,et.id),V=nt(m,et.open),H=nt(m,et.openMethod),F=nt(m,et.mounted),Y=nt(m,et.popupProps),G=nt(m,et.transitionStatus),K=nt(m,et.triggerElement),I=nt(m,et.positionerElement),X=nt(m,et.listElement),Z=x.useRef(!1),te=x.useRef(!1),fe=x.useRef({}),ee=Wl(),re=Ue(de=>{if(!I||!g.current||!te.current)return;if(Z.current||!T){y();return}const ge=I.style.top==="0px",Ce=I.style.bottom==="0px";if(!ge&&!Ce){y();return}const we=Tk(I),Be=Ec(I.getBoundingClientRect().height,"y",we),Ve=xt(I),Se=Wt(I),Te=Se.getComputedStyle(I),je=parseFloat(Te.marginTop),Ee=parseFloat(Te.marginBottom),De=Rk(Se.getComputedStyle(g.current)),Le=Math.min(Ve.documentElement.clientHeight-je-Ee,De),Ie=de.scrollTop,ue=Vd(de);let ye=0,Ge=null,Re=!1,Oe=!1;const tt=lt=>{I.style.height=`${lt}px`},ot=(lt,Rt)=>{const _e=Nc(lt,0,Le-Be);_e>0&&tt(Be+_e),de.scrollTop=Rt,Le-(Be+_e)<=Ks&&(Z.current=!0),y()},vt=ge?ue-Ie:Ie,Mt=Math.min(Be+vt,Le);if(ye=Mt,vt<=Ks){ot(vt,ge?ue:0);return}if(Le-Mt>Ks)ge?Oe=!0:Ge=0;else if(Re=!0,Ce&&Ie<ue){const lt=Be+vt-Le;Ge=Ie-(vt-lt)}if(ye=Math.ceil(ye),ye!==0&&tt(ye),Oe||Ge!=null){const lt=Vd(de),Rt=Oe?lt:Nc(Ge,0,lt);Math.abs(de.scrollTop-Rt)>Ks&&(de.scrollTop=Rt)}(Re||ye>=Le-Ks)&&(Z.current=!0),y()});x.useImperativeHandle(w,()=>re,[re]),ka({open:V,ref:g,onComplete(){V&&h?.(!0)}});const le={open:V,transitionStatus:G,side:R,align:A};ze(()=>{!I||!g.current||Object.keys(fe.current).length||(fe.current={top:I.style.top||"0",left:I.style.left||"0",right:I.style.right,height:I.style.height,bottom:I.style.bottom,minHeight:I.style.minHeight,maxHeight:I.style.maxHeight,marginTop:I.style.marginTop,marginBottom:I.style.marginBottom})},[g,I]),ze(()=>{V||T||(te.current=!1,Z.current=!1,Hf(I,fe.current))},[V,T,I,g]),ze(()=>{const de=g.current;if(!V||!K||!I||!de||T&&!O||m.state.transitionStatus==="ending")return;if(!T){te.current=!0,ee.request(y),de.style.removeProperty("--transform-origin");return}const ge=O6(de);de.style.removeProperty("--transform-origin");try{let Ce=E.current;Ce?.isConnected||(Ce=!et.hasSelectedValue(m.state)&&j.current?.isConnected?j.current:null);const we=_.current,Be=Wt(I),Ve=Be.getComputedStyle(I),Se=Be.getComputedStyle(de),Te=xt(K),je=Tk(K),Ee=qd(K.getBoundingClientRect(),je),De=qd(I.getBoundingClientRect(),je),Le=Ee.height,Ie=X||de,ue=Ie.scrollHeight,ye=parseFloat(Se.borderBottomWidth),Ge=parseFloat(Ve.marginTop)||10,Re=parseFloat(Ve.marginBottom)||10,Oe=parseFloat(Ve.minHeight)||100,tt=Rk(Se),ot=5,vt=5,Mt=20,lt=Te.documentElement.clientHeight-Ge-Re,Rt=Te.documentElement.clientWidth,_e=lt-Ee.bottom+Le;let Pe,Xe=B==="rtl"?Ee.right-De.width:Ee.left,it=0;if(Ce&&we){const gn=qd(we.getBoundingClientRect(),je);Pe=qd(Ce.getBoundingClientRect(),je),Xe=De.left+(B==="rtl"?gn.right-Pe.right:gn.left-Pe.left);const Cs=gn.top-Ee.top+gn.height/2;it=Pe.top-De.top+Pe.height/2-Cs}const Qe=_e+it+Re+ye;let mt=Math.min(lt,Qe);const Ot=lt-Ge-Re,Zt=Qe-mt,Qt=Rt-vt;I.style.left=`${Nc(Xe,ot,Qt-De.width)}px`,I.style.height=`${mt}px`,I.style.maxHeight="none",I.style.marginTop=`${Ge}px`,I.style.marginBottom=`${Re}px`,de.style.height="100%";const Jt=Vd(Ie),mn=Zt>=Jt-Ks;mn&&(mt=Math.min(lt,De.height)-(Zt-Jt));const as=Ee.top<Mt||Ee.bottom>lt-Mt||Math.ceil(mt)+Ks<Math.min(ue,Oe),ms=(Be.visualViewport?.scale??1)!==1&&Fr;if(as||ms){te.current=!0,Hf(I,fe.current),z(!1);return}const Ss=Math.max(Oe,mt);if(mn){const gn=Math.max(0,lt-Qe);I.style.top=De.height>=Ot?"0":`${gn}px`,I.style.height=`${mt}px`,Ie.scrollTop=Vd(Ie)}else I.style.bottom="0",Ie.scrollTop=Zt;if(Pe){const gn=De.top,Cs=De.height,Sa=Pe.top+Pe.height/2,qs=Cs>0?(Sa-gn)/Cs*100:50,Ca=Nc(qs,0,100);de.style.setProperty("--transform-origin",`50% ${Ca}%`)}(Ss===lt||mt>=tt)&&(Z.current=!0),y(),N&&m.state.selectedIndex===null&&m.state.activeIndex===null&&S.current[0]!=null&&m.set("activeIndex",0),te.current=!0}finally{ge()}},[m,V,I,K,_,j,E,g,y,T,z,ee,X,S,N,B,O]),x.useEffect(()=>{if(!T||!I||!V)return;const de=Wt(I);function ge(Ce){b(!1,st(_4,Ce))}return _t(de,"resize",ge)},[b,T,I,V]);const me={...X?{role:"presentation","aria-orientation":void 0}:{role:"listbox","aria-multiselectable":k||void 0,id:`${$}-list`},onKeyDown(de){U&&kp.has(de.key)&&de.stopPropagation()},onScroll(de){X||re(de.currentTarget)},...T&&{style:X?{height:"100%"}:YN}},Me=Et("div",t,{ref:[a,g],state:le,stateAttributesMapping:A6,props:[Y,me,bp(G),{className:!X&&T?qx.className:void 0},p]});return s.jsxs(x.Fragment,{children:[!L&&qx.getElement(D),s.jsx(Kb,{context:P,modal:!1,disabled:!F,openInteractionType:H,returnFocus:d,restoreFocus:!0,children:Me})]})});function Rk(e){const t=e.maxHeight||"";return t.endsWith("px")&&parseFloat(t)||1/0}function Vd(e){return L_(e.scrollHeight,e.clientHeight)}function Tk(e){return Z2.getScale(e)}function Ec(e,t,a){return e/a[t]}function qd(e,t){return Yc({x:Ec(e.x,"x",t),y:Ec(e.y,"y",t),width:Ec(e.width,"x",t),height:Ec(e.height,"y",t)})}const Ak=[["transform","none"],["scale","1"],["translate","0 0"]];function O6(e){const{style:t}=e,a={};for(const[o,l]of Ak)a[o]=t.getPropertyValue(o),t.setProperty(o,l,"important");return()=>{for(const[o]of Ak){const l=a[o];l?t.setProperty(o,l):t.removeProperty(o)}}}const z6=x.forwardRef(function(t,a){const{render:o,className:l,style:c,...d}=t,{store:p,scrollHandlerRef:m}=wa(),{alignItemWithTriggerActive:g}=I_(),h=nt(p,et.hasScrollArrows),b=nt(p,et.openMethod),_=nt(p,et.multiple),E={id:`${nt(p,et.id)}-list`,role:"listbox","aria-multiselectable":_||void 0,onScroll(y){m.current?.(y.currentTarget)},...g&&{style:YN},className:h&&b!=="touch"?qx.className:void 0},k=Ue(y=>{p.set("listElement",y)});return Et("div",t,{ref:[a,k],props:[E,d]})}),KN=x.createContext(void 0);function B_(){const e=x.useContext(KN);if(!e)throw new Error(ln(57));return e}const D6=x.memo(x.forwardRef(function(t,a){const{render:o,className:l,style:c,value:d=null,label:p,disabled:m=!1,nativeButton:g=!1,...h}=t,b=x.useRef(null),_=cu({label:p,textRef:b,indexGuessBehavior:PC.GuessFromOrder}),{store:j,itemProps:E,setOpen:k,setValue:y,selectionRef:w,typingRef:S,valuesRef:N,multiple:R,selectedItemTextRef:A,disabled:T,readOnly:O}=wa(),z=nt(j,et.isActive,_.index),U=nt(j,et.open),P=nt(j,et.isSelected,d),B=nt(j,et.isSelectedByFocus,_.index),D=nt(j,et.isItemEqualToValue),L=_.index,$=L!==-1,V=x.useRef(null);ze(()=>{if(!$)return;const re=N.current;return re[L]=d,()=>{delete re[L]}},[$,L,d,N]),ze(()=>{if(!$)return;const re=j.state.value;let le=re;R&&Array.isArray(re)&&(le=re.length>0?re[re.length-1]:void 0),le!==void 0&&Po(d,le,D)&&(j.set("selectedIndex",L),b.current&&(A.current=b.current))},[$,L,R,D,j,d,A]);const H=x.useRef(null),F=x.useRef("mouse"),Y=x.useRef(!1),{getButtonProps:G,buttonRef:K}=Wr({disabled:m,focusableWhenDisabled:!0,native:g,composite:!0}),I={disabled:m,selected:P,highlighted:z};function X(re){if(T||O)return;const le=j.state.value;if(R){const me=Array.isArray(le)?le:[],Me=P?f6(me,d,D):[...me,d];y(Me,st($l,re))}else y(d,st($l,re)),k(!1,st($l,re))}function Z(){w.current.dragY=0}const te={role:"option","aria-selected":P,tabIndex:U&&z?0:-1,onKeyDown(re){H.current=re.key,j.set("activeIndex",L),re.key===" "&&S.current&&re.preventDefault()},onClick(re){const le=re.type==="click"&&F.current!=="touch",me=re.nativeEvent.pointerType,Me=le&&Rb(re.nativeEvent)&&(me!==void 0||z),de=le&&!Me&&!Y.current;Y.current=!1,!(re.type==="keydown"&&H.current===null)&&(m||re.type==="keydown"&&H.current===" "&&S.current||de||(H.current=null,X(re.nativeEvent)))},onPointerEnter(re){F.current=re.pointerType},onPointerMove(re){if(re.pointerType==="mouse"&&re.buttons===1){const le=w.current;le.dragY+=re.movementY,le.dragY**2>=64&&(le.allowUnselectedMouseUp=!0)}},onPointerDown(re){F.current=re.pointerType,Y.current=!0,Z()},onMouseUp(){if(Z(),m||F.current==="touch"||Y.current)return;const re=!w.current.allowSelectedMouseUp&&P,le=!w.current.allowUnselectedMouseUp&&!P;re||le||(Y.current=!0,V.current?.click(),Y.current=!1)}},fe=Et("div",t,{ref:[K,a,_.ref,V],state:I,props:[E,te,h,G]}),ee=x.useMemo(()=>({selected:P,index:L,textRef:b,selectedByFocus:B,hasRegistered:$}),[P,L,b,B,$]);return s.jsx(KN.Provider,{value:ee,children:fe})})),P6=x.forwardRef(function(t,a){const o=t.keepMounted??!1,{selected:l}=B_();return o||l?s.jsx(L6,{...t,ref:a}):null}),L6=x.memo(x.forwardRef((e,t)=>{const{render:a,className:o,style:l,keepMounted:c,...d}=e,{selected:p}=B_(),m=x.useRef(null),{transitionStatus:g,setMounted:h}=mi(p),_=Et("span",e,{ref:[t,m],state:{selected:p,transitionStatus:g},props:[{"aria-hidden":!0,children:"✔️"},d],stateAttributesMapping:rr});return ka({open:p,ref:m,onComplete(){p||h(!1)}}),_})),I6=x.memo(x.forwardRef(function(t,a){const{index:o,textRef:l,selectedByFocus:c,hasRegistered:d}=B_(),{firstItemTextRef:p,selectedItemTextRef:m}=wa(),{render:g,className:h,style:b,..._}=t,j=x.useCallback(k=>{k&&(d&&o===0&&(p.current=k),d&&c&&(m.current=k))},[p,m,o,c,d]);return Et("div",t,{ref:[j,a,l],props:_})})),XN=x.forwardRef(function(t,a){const{render:o,className:l,style:c,direction:d,keepMounted:p=!1,...m}=t,g=d==="up",{store:h,popupRef:b,listRef:_,handleScrollArrowVisibility:j,scrollArrowsMountedCountRef:E}=wa(),{side:k,scrollDownArrowRef:y,scrollUpArrowRef:w}=I_(),S=g?et.scrollUpArrowVisible:et.scrollDownArrowVisible,N=nt(h,S),R=nt(h,et.openMethod),A=N&&R!=="touch",T=Nn(),O=g?w:y,{mounted:z,transitionStatus:U,setMounted:P}=mi(A);ze(()=>(E.current+=1,h.state.hasScrollArrows||h.set("hasScrollArrows",!0),()=>{E.current=Math.max(0,E.current-1),E.current===0&&h.state.hasScrollArrows&&h.set("hasScrollArrows",!1)}),[h,E]),ka({open:A,ref:O,onComplete(){A||P(!1)}});const L=Et("div",t,{ref:[a,O],state:{direction:d,visible:A,side:k,transitionStatus:U},props:[{"aria-hidden":!0,children:g?"▲":"▼",style:{position:"absolute"},onMouseMove(V){if(V.movementX===0&&V.movementY===0||T.isStarted())return;h.set("activeIndex",null);function H(){const F=h.state.listElement??b.current;if(!F)return;h.set("activeIndex",null),j();const Y=L_(F.scrollHeight,F.clientHeight),G=$f(F.scrollTop,Y),K=G===(g?0:Y),I=_.current;if(G!==F.scrollTop&&(F.scrollTop=G),I.length===0&&h.set(g?"scrollUpArrowVisible":"scrollDownArrowVisible",!K),K){T.clear();return}if(I.length>0){const X=O.current?.offsetHeight||0;F.scrollTop=B6(I,g,G,F.clientHeight,X,Y)}T.start(40,H)}T.start(40,H)},onMouseLeave(){T.clear()}},m],stateAttributesMapping:rr});return z||p?L:null});function B6(e,t,a,o,l,c){if(t){let h=0;const b=a+l-Ks;for(let E=0;E<e.length;E+=1){const k=e[E];if(k&&k.offsetTop>=b){h=E;break}}const _=Math.max(0,h-1),j=e[_];return _<h&&j?$f(j.offsetTop-l,c):0}let d=e.length-1;const p=a+o-l+Ks;for(let h=0;h<e.length;h+=1){const b=e[h];if(b&&b.offsetTop+b.offsetHeight>p){d=Math.max(0,h-1);break}}const m=Math.min(e.length-1,d+1),g=e[m];return m>d&&g?$f(g.offsetTop+g.offsetHeight-o+l,c):c}const U6=x.forwardRef(function(t,a){return s.jsx(XN,{...t,ref:a,direction:"down"})}),$6=x.forwardRef(function(t,a){return s.jsx(XN,{...t,ref:a,direction:"up"})}),H6=h6;function V6({className:e,...t}){return s.jsx(j6,{"data-slot":"select-value",className:Ct("flex flex-1 text-left",e),...t})}function q6({className:e,size:t="default",children:a,...o}){return s.jsxs(v6,{"data-slot":"select-trigger","data-size":t,className:Ct("flex w-fit items-center justify-between gap-1.5 rounded-lg border border-input bg-transparent py-2 pr-2 pl-2.5 text-sm whitespace-nowrap transition-colors outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-placeholder:text-muted-foreground data-[size=default]:h-8 data-[size=sm]:h-7 data-[size=sm]:rounded-[min(var(--radius-md),10px)] *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-1.5 dark:bg-input/30 dark:hover:bg-input/50 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",e),...o,children:[a,s.jsx(k6,{render:s.jsx(ns,{className:"pointer-events-none size-4 text-muted-foreground"})})]})}function F6({className:e,children:t,side:a="bottom",sideOffset:o=4,align:l="center",alignOffset:c=0,alignItemWithTrigger:d=!0,...p}){return s.jsx(S6,{children:s.jsx(N6,{side:a,sideOffset:o,align:l,alignOffset:c,alignItemWithTrigger:d,className:"isolate z-50",children:s.jsxs(M6,{"data-slot":"select-content","data-align-trigger":d,className:Ct("relative isolate z-50 max-h-(--available-height) w-(--anchor-width) min-w-36 origin-(--transform-origin) overflow-x-hidden overflow-y-auto rounded-lg bg-popover text-popover-foreground shadow-md ring-1 ring-foreground/10 duration-100 data-[align-trigger=true]:animate-none data-[side=bottom]:slide-in-from-top-2 data-[side=inline-end]:slide-in-from-left-2 data-[side=inline-start]:slide-in-from-right-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...p,children:[s.jsx(Y6,{}),s.jsx(z6,{children:t}),s.jsx(K6,{})]})})})}function G6({className:e,children:t,...a}){return s.jsxs(D6,{"data-slot":"select-item",className:Ct("relative flex w-full cursor-default items-center gap-2 rounded-md py-2 pr-8 pl-2.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]: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 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2",e),...a,children:[s.jsx(I6,{className:"flex min-w-0 flex-1 gap-2 overflow-hidden whitespace-nowrap",children:t}),s.jsx(P6,{render:s.jsx("span",{className:"pointer-events-none absolute right-2 flex size-4 items-center justify-center"}),children:s.jsx($r,{className:"pointer-events-none"})})]})}function Y6({className:e,...t}){return s.jsx($6,{"data-slot":"select-scroll-up-button",className:Ct("top-0 z-10 flex w-full cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",e),...t,children:s.jsx(fb,{})})}function K6({className:e,...t}){return s.jsx(U6,{"data-slot":"select-scroll-down-button",className:Ct("bottom-0 z-10 flex w-full cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",e),...t,children:s.jsx(ns,{})})}function ut({value:e,onChange:t,options:a,placeholder:o="— elegir —",disabled:l,className:c,showIcon:d=!1}){return s.jsxs(H6,{value:e,onValueChange:p=>t(p??""),disabled:l,children:[s.jsx(q6,{className:he("h-9 w-full",c),children:s.jsx(V6,{placeholder:o,children:p=>{const m=a.find(h=>h.value===p),g=d?m?.icon:void 0;return s.jsxs("span",{className:"flex min-w-0 items-center gap-1.5",children:[g&&s.jsx(g,{className:"size-3.5 shrink-0"}),s.jsx("span",{className:"truncate",children:m?.label??p})]})}})}),s.jsx(F6,{side:"bottom",sideOffset:6,align:"start",alignItemWithTrigger:!1,className:"w-[var(--anchor-width)] p-1.5",children:a.map(p=>{const m=p.icon;return s.jsx(G6,{value:p.value,disabled:p.disabled,children:s.jsxs("span",{className:"flex min-w-0 items-center gap-2",children:[m?s.jsx(m,{className:"size-4 shrink-0 text-muted-fg"}):null,p.description?s.jsxs("span",{className:"flex min-w-0 flex-col leading-tight",children:[s.jsx("span",{className:"truncate font-medium",children:p.label}),s.jsx("span",{className:"truncate text-[11px] text-muted-fg",children:p.description})]}):s.jsx("span",{className:"truncate",children:p.label})]})},p.value)})})]})}const Mk=320;function X6(e){const t=new Date(e);return Number.isNaN(t.getTime())?e:t.toLocaleString(void 0,{month:"short",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"})}function Q6(e){return e.agent_slug||e.actor_id||e.author||e.actor_kind||"—"}function W6({m:e}){const[t,a]=x.useState(!1),o=(e.body?.length||0)>Mk,l=!o||t?e.body:`${e.body.slice(0,Mk)}…`;return s.jsxs("li",{className:"flex items-start gap-3 rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsx("span",{className:"mt-0.5 shrink-0",children:e.direction==="in"?s.jsx(TS,{size:14,className:"text-blue-400"}):s.jsx(MS,{size:14,className:"text-emerald-400"})}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2 text-xs text-muted-fg",children:[s.jsx("span",{className:"font-mono",children:X6(e.ts)}),s.jsx(He,{tone:"info",children:e.channel}),e.type&&s.jsx(He,{children:e.type}),s.jsx("span",{className:"font-medium text-foreground",children:Q6(e)})]}),e.body&&s.jsx("p",{className:"mt-1 whitespace-pre-wrap break-words text-xs",children:l}),o&&s.jsx("button",{type:"button",onClick:()=>a(c=>!c),className:"mt-1 text-[11px] font-medium text-sky-400 hover:underline",children:u(t?"logs.show_less":"logs.show_more")})]})]})}function Z6(){const[e,t]=x.useState(!1),a=$e(e?"/admin/logs?errors":null,()=>ni.logs("errors",200)),o=a.data?.entries||[];return s.jsxs("details",{className:"mb-3 rounded-lg border border-border bg-muted/20",onToggle:l=>t(l.target.open),children:[s.jsxs("summary",{className:"cursor-pointer px-3 py-2 text-xs font-medium text-muted-fg",children:[u("logs.daemon_errors"),o.length?` · ${o.length}`:""]}),s.jsxs("div",{className:"border-t border-border p-3",children:[a.isLoading&&s.jsx(at,{}),e&&!a.isLoading&&o.length===0&&s.jsx("p",{className:"text-xs text-muted-fg",children:u("logs.no_errors")}),s.jsx("ul",{className:"space-y-1",children:o.map((l,c)=>s.jsxs("li",{className:"rounded-md bg-card px-2 py-1 text-[11px]",children:[s.jsxs("div",{className:"flex items-center gap-2 text-muted-fg",children:[typeof l.ts=="string"&&s.jsx("span",{className:"font-mono",children:new Date(l.ts).toLocaleString()}),typeof l.level=="string"&&s.jsx("span",{className:"text-destructive",children:l.level})]}),s.jsx("p",{className:"whitespace-pre-wrap break-words font-mono",children:String(l.msg??l.message??l.error??l.raw??JSON.stringify(l)).slice(0,500)})]},c))})]})]})}function J6({pid:e}){const t=!e||String(e)==="0",[a,o]=x.useState(""),[l,c]=x.useState(""),[d,p]=x.useState(""),[m,g]=x.useState(""),h=a.trim()||void 0,b=t?`/messages/global?channel=${h??""}`:`/projects/${e}/messages?channel=${h??""}`,_=$e(b,()=>t?Pf.global({channel:h,limit:300}):Pf.project(e,{channel:h,limit:300})),j=x.useMemo(()=>[..._.data||[]].sort((y,w)=>(w.ts||"").localeCompare(y.ts||"")),[_.data]),E=x.useMemo(()=>Array.from(new Set(j.map(y=>y.type).filter(Boolean))),[j]),k=x.useMemo(()=>j.filter(y=>!(l&&y.direction!==l||d&&y.type!==d||m&&!(y.body||"").toLowerCase().includes(m.toLowerCase()))),[j,l,d,m]);return s.jsxs(Fe,{title:u("logs.title"),description:u(t?"logs.desc_global":"logs.desc_project"),action:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Ne,{placeholder:u("logs.filter_channel"),value:a,onChange:y=>o(y.target.value),className:"w-44"}),s.jsx(se,{size:"sm",variant:"secondary",onClick:()=>_.mutate(),children:s.jsx(Qs,{size:13})})]}),children:[t&&s.jsx(Z6,{}),s.jsxs("div",{className:"mb-3 flex flex-wrap items-center gap-2",children:[s.jsx("div",{className:"w-36",children:s.jsx(ut,{value:l,onChange:c,placeholder:u("logs.filter_dir"),options:[{value:"",label:u("logs.all_directions")},{value:"in",label:u("logs.in")},{value:"out",label:u("logs.out")}]})}),s.jsx("div",{className:"w-40",children:s.jsx(ut,{value:d,onChange:p,placeholder:u("logs.filter_type"),options:[{value:"",label:u("logs.all_types")},...E.map(y=>({value:y,label:y}))]})}),s.jsx(Ne,{placeholder:u("logs.search_text"),value:m,onChange:y=>g(y.target.value),className:"w-56"}),s.jsxs("span",{className:"text-[11px] text-muted-fg",children:[k.length," ",u("logs.count_of")," ",j.length]})]}),_.isLoading&&s.jsx(at,{}),_.error&&s.jsx(pt,{children:u("logs.error",{msg:_.error.message})}),!_.isLoading&&!_.error&&k.length===0&&s.jsx(pt,{children:h?u("logs.no_activity_ch",{ch:h}):u("logs.no_activity")}),s.jsx("ul",{className:"space-y-1 text-sm",children:k.map((y,w)=>s.jsx(W6,{m:y},`${y.ts}-${w}`))})]})}function QN({value:e,onChange:t,options:a,placeholder:o=u("shared_ui.model_combobox_ph"),invalid:l,invalidHint:c,className:d}){const[p,m]=x.useState(!1),[g,h]=x.useState(e),b=x.useRef(null),_=x.useRef(null),[j,E]=x.useState(null);x.useEffect(()=>{h(e)},[e]),x.useLayoutEffect(()=>{if(!p)return;const N=()=>{const R=b.current;if(!R)return;const A=R.getBoundingClientRect();E({top:A.bottom+4,left:A.left,width:A.width})};return N(),window.addEventListener("scroll",N,!0),window.addEventListener("resize",N),()=>{window.removeEventListener("scroll",N,!0),window.removeEventListener("resize",N)}},[p]),x.useEffect(()=>{if(!p)return;const N=R=>{const A=R.target;b.current?.contains(A)||_.current?.contains(A)||m(!1)};return document.addEventListener("mousedown",N),()=>document.removeEventListener("mousedown",N)},[p]);const k=g.trim().toLowerCase(),w=k&&!(g===e)?a.filter(N=>N.toLowerCase().includes(k)):a,S=N=>{t(N),h(N),m(!1)};return s.jsxs("div",{ref:b,className:he("relative",d),children:[s.jsxs("div",{className:he("flex items-center gap-1 rounded-lg border bg-background px-2.5 transition-colors focus-within:border-ring focus-within:ring-1 focus-within:ring-ring",l?"border-amber-500/60":"border-border"),children:[l&&s.jsx(Ye,{content:c||u("models_ui.invalid_hint"),children:s.jsx("span",{children:s.jsx(XS,{className:"size-3.5 shrink-0 text-amber-400"})})}),s.jsx("input",{value:g,placeholder:o,onChange:N=>{h(N.target.value),t(N.target.value),m(!0)},onFocus:()=>m(!0),className:"w-full bg-transparent py-1.5 text-sm outline-none placeholder:text-muted-fg/60"}),s.jsx("button",{type:"button",tabIndex:-1,onClick:()=>m(N=>!N),className:"shrink-0 text-muted-fg hover:text-foreground",children:s.jsx(ns,{className:"size-4"})})]}),p&&w.length>0&&j&&Hs.createPortal(s.jsx("ul",{ref:_,style:{position:"fixed",top:j.top,left:j.left,width:j.width},className:"z-[1000] max-h-56 overflow-y-auto rounded-lg border border-border bg-popover p-1 shadow-md ring-1 ring-foreground/10",children:w.map(N=>s.jsx("li",{children:s.jsx("button",{type:"button",onMouseDown:R=>{R.preventDefault(),S(N)},className:he("flex w-full items-center rounded-md px-2 py-1 text-left text-sm hover:bg-accent hover:text-accent-fg",N===e&&"bg-accent/50"),children:s.jsx("span",{className:"truncate font-mono text-xs",children:N})})},N))}),document.body)]})}function Zr(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/admin/config",()=>ni.config.get()),l=async(c,d)=>{const p=await ni.config.patch({set:c,unset:d});return await o({config:p.config},{revalidate:!1}),p.config};return{config:e?.config||{},error:t,isLoading:a,mutate:o,patch:l}}function WN(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/admin/super-agent",()=>ni.superAgent());return{superAgent:e,error:t,isLoading:a,mutate:o}}const eI="modulepreload",tI=function(e){return"/"+e},Ok={},nI=function(t,a,o){let l=Promise.resolve();if(a&&a.length>0){let d=function(g){return Promise.all(g.map(h=>Promise.resolve(h).then(b=>({status:"fulfilled",value:b}),b=>({status:"rejected",reason:b}))))};document.getElementsByTagName("link");const p=document.querySelector("meta[property=csp-nonce]"),m=p?.nonce||p?.getAttribute("nonce");l=d(a.map(g=>{if(g=tI(g),g in Ok)return;Ok[g]=!0;const h=g.endsWith(".css"),b=h?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${g}"]${b}`))return;const _=document.createElement("link");if(_.rel=h?"stylesheet":eI,h||(_.as="script"),_.crossOrigin="",_.href=g,m&&_.setAttribute("nonce",m),document.head.appendChild(_),h)return new Promise((j,E)=>{_.addEventListener("load",j),_.addEventListener("error",()=>E(new Error(`Unable to preload CSS for ${g}`)))})}))}function c(d){const p=new Event("vite:preloadError",{cancelable:!0});if(p.payload=d,window.dispatchEvent(p),!p.defaultPrevented)throw d}return l.then(d=>{for(const p of d||[])p.status==="rejected"&&c(p.reason);return t().catch(c)})},sI={anthropic:"from-orange-600 to-amber-600",openai:"from-emerald-600 to-teal-600",gemini:"from-blue-600 to-indigo-600",groq:"from-cyan-600 to-teal-600",openrouter:"from-violet-600 to-indigo-600",ollama:"from-amber-600 to-orange-600",azure:"from-blue-600 to-cyan-600",mock:"from-slate-600 to-gray-600",custom:"from-slate-600 to-gray-600"},aI={anthropic:"bg-orange-500/20 text-orange-300 border border-orange-500/40",openai:"bg-emerald-500/20 text-emerald-300 border border-emerald-500/40",gemini:"bg-blue-500/20 text-blue-300 border border-blue-500/40",groq:"bg-cyan-500/20 text-cyan-300 border border-cyan-500/40",openrouter:"bg-violet-500/20 text-violet-300 border border-violet-500/40",ollama:"bg-amber-500/20 text-amber-300 border border-amber-500/40",azure:"bg-blue-500/20 text-blue-300 border border-blue-500/40",mock:"bg-slate-500/20 text-slate-300 border border-slate-500/40",custom:"bg-slate-500/20 text-slate-300 border border-slate-500/40"},Ic=[{value:"anthropic",label:"Anthropic"},{value:"openai",label:"OpenAI-compatible"},{value:"gemini",label:"Gemini"},{value:"groq",label:"Groq"},{value:"openrouter",label:"OpenRouter"},{value:"ollama",label:"Ollama"},{value:"azure",label:"Azure OpenAI"},{value:"mock",label:"Mock (test)"},{value:"custom",label:"Custom"}];function kh(e,t){return t&&t in e?e[t]:e.custom}const Vf={anthropic:Vs,openai:on,gemini:I5,groq:Kl,openrouter:ru,ollama:YS,azure:w5,mock:mx,custom:ea},Za={anthropic:{base_url:"",default_model:"claude-sonnet-5",api_key_env:"ANTHROPIC_API_KEY",known_models:["claude-opus-4-8","claude-sonnet-5","claude-haiku-4-5","claude-fable-5"]},openai:{base_url:"https://api.openai.com/v1",default_model:"gpt-5.4-mini",api_key_env:"OPENAI_API_KEY",known_models:["gpt-5.5","gpt-5.4-mini","gpt-5.4-nano","gpt-5.1","gpt-4.1-mini"]},gemini:{base_url:"https://generativelanguage.googleapis.com/v1beta/openai",default_model:"gemini-2.5-flash",api_key_env:"GEMINI_API_KEY",known_models:["gemini-3.5-flash","gemini-3.1-pro-preview","gemini-2.5-pro","gemini-2.5-flash","gemini-2.5-flash-lite"]},groq:{base_url:"https://api.groq.com/openai/v1",default_model:"openai/gpt-oss-20b",api_key_env:"GROQ_API_KEY",known_models:["openai/gpt-oss-120b","openai/gpt-oss-20b","qwen/qwen3.6-27b","groq/compound","groq/compound-mini","whisper-large-v3-turbo"]},openrouter:{base_url:"https://openrouter.ai/api/v1",default_model:"openrouter/auto",api_key_env:"OPENROUTER_API_KEY",known_models:["openrouter/auto","openrouter/free","anthropic/claude-sonnet-5","openai/gpt-5.4-mini","google/gemini-2.5-flash"]},ollama:{base_url:"http://127.0.0.1:11434",default_model:"gemma2:9b",api_key_env:"",known_models:[]},azure:{base_url:"",default_model:"",api_key_env:"AZURE_OPENAI_API_KEY",known_models:[]},mock:{base_url:"",default_model:"mock",api_key_env:"",known_models:["mock"]},custom:{base_url:"",default_model:"",api_key_env:"",known_models:[]}};let zk=!1;async function rI(){if(!zk)try{const{Engines:e}=await nI(async()=>{const{Engines:a}=await Promise.resolve().then(()=>JP);return{Engines:a}},[]),{presets:t}=await e.presets();for(const[a,o]of Object.entries(t||{}))a in Za&&o&&Object.assign(Za[a],o);zk=!0}catch{}}function ZN(e){const t=e.indexOf(":");return t<0?{provider:e,model:""}:{provider:e.slice(0,t),model:e.slice(t+1)}}function wh({value:e,onChange:t,providers:a}){const{provider:o,model:l}=ZN(e),c=a.find(h=>h.slug===o),d=!!o&&!c,p=x.useMemo(()=>{const h=c?Za[c.engine]?.known_models||[]:[];return Array.from(new Set([...c?.default_model?[c.default_model]:[],...h]))},[c]),m=h=>{const b=a.find(j=>j.slug===h),_=b?.default_model||Za[b?.engine]?.default_model||"";t(_?`${h}:${_}`:`${h}:`)},g=h=>t(`${o}:${h}`);return s.jsxs("div",{className:"grid grid-cols-2 gap-2",children:[s.jsx(ut,{value:o,onChange:m,placeholder:d?u("router_panel.provider_not_found",{name:o}):u("router_panel.provider_ph"),options:a.map(h=>({value:h.slug,label:h.slug,icon:Vf[h.engine]}))}),s.jsx(QN,{value:l,onChange:g,options:p,invalid:d,invalidHint:u("router_panel.provider_not_configured",{name:o})})]})}function oI(){const e=Ze(),{superAgent:t,isLoading:a,mutate:o}=WN(),{config:l,patch:c}=Zr(),[d,p]=x.useState(""),[m,g]=x.useState([]),[h,b]=x.useState(""),[_,j]=x.useState(null),[E,k]=x.useState(!1),[y,w]=x.useState({model:"",fallback:[]});x.useEffect(()=>{if(!t)return;const P=t.model_fallback?.models||[],B=Array.isArray(P)?P:[];p(t.model||""),g(B),w({model:t.model||"",fallback:B})},[t]);const S=x.useMemo(()=>{const P=l.engines||{};return Object.entries(P).map(([B,D])=>({slug:B,engine:D?.engine||B,default_model:D?.default_model||Za[D?.engine||B]?.default_model}))},[l.engines]),N=P=>{const{provider:B}=ZN(P);return S.some(D=>D.slug===B)};if(a||!t)return s.jsx(at,{});const R=d!==y.model||JSON.stringify(m)!==JSON.stringify(y.fallback),A=async()=>{k(!0);try{await c({"super_agent.model":d,"super_agent.model_fallback.enabled":m.length>0,"super_agent.model_fallback.models":m}),e.success(u("router_panel.saved_toast")),w({model:d,fallback:m}),o()}catch(P){e.error(P.message)}finally{k(!1)}},T=()=>{const P=h.trim().replace(/:$/,"");!P||!P.includes(":")||m.includes(P)||(g([...m,P]),b(""))},O=(P,B)=>{const D=[...m];D[P]=B,g(D)},z=P=>{g(m.filter((B,D)=>D!==P)),_===P&&j(null)},U=(P,B)=>{const D=P+B;if(D<0||D>=m.length)return;const L=[...m];[L[P],L[D]]=[L[D],L[P]],g(L)};return s.jsx(Fe,{title:u("router_panel.title"),description:u("router_panel.description"),children:s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2 rounded-lg border border-border bg-muted/20 p-3",children:[s.jsxs(He,{tone:"success",children:[s.jsx(ru,{size:11})," ",u("router_panel.badge_default")]}),s.jsx("span",{className:`font-mono text-xs ${!N(d)&&d?"text-amber-400":""}`,children:d||"—"}),m.map(P=>s.jsxs("span",{className:"flex items-center gap-2 text-muted-fg",children:[s.jsx(AS,{size:12}),s.jsx("span",{className:`font-mono text-xs ${N(P)?"":"text-amber-400"}`,children:P})]},P))]}),S.length===0?s.jsx("p",{className:"text-xs text-muted-fg",children:u("router_panel.no_providers")}):s.jsx(ae,{label:u("router_panel.active_model_label"),hint:u("router_panel.active_model_hint"),children:s.jsx(wh,{value:d,onChange:p,providers:S})}),s.jsxs("div",{className:"rounded-lg border border-border bg-muted/20 p-3",children:[s.jsxs("div",{className:"mb-2",children:[s.jsx("div",{className:"text-sm font-medium",children:u("router_panel.fallback_title")}),s.jsx("div",{className:"text-xs text-muted-fg",children:u("router_panel.fallback_desc")})]}),s.jsxs("ul",{className:"mb-3 space-y-1",children:[m.map((P,B)=>{const D=!N(P),L=_===B;return s.jsx("li",{className:"rounded-md bg-card px-2 py-1.5 text-xs",children:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsxs("span",{className:"w-6 text-muted-fg",children:["#",B+1]}),L?s.jsx("div",{className:"flex-1",children:s.jsx(wh,{value:P,onChange:$=>O(B,$),providers:S})}):s.jsxs("button",{type:"button",onClick:()=>j(B),className:"flex flex-1 items-center gap-1.5 text-left",children:[D&&s.jsx(XS,{size:12,className:"text-amber-400"}),s.jsx("span",{className:`font-mono ${D?"text-amber-400":""}`,children:P})]}),L?s.jsx(se,{size:"sm",variant:"secondary",onClick:()=>j(null),children:u("router_panel.done")}):s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>j(B),children:s.jsx(ya,{size:12})}),s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>U(B,-1),disabled:B===0,children:"↑"}),s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>U(B,1),disabled:B===m.length-1,children:"↓"}),s.jsx(se,{size:"sm",variant:"destructive",onClick:()=>z(B),children:s.jsx(_n,{size:12})})]})},`${B}-${P}`)}),m.length===0&&s.jsx("li",{className:"text-xs text-muted-fg",children:u("router_panel.fallback_empty")})]}),S.length>0&&s.jsxs("div",{className:"space-y-2",children:[s.jsx("div",{className:"text-xs text-muted-fg",children:u("router_panel.add_to_chain")}),s.jsx(wh,{value:h,onChange:b,providers:S}),s.jsxs(se,{size:"sm",variant:"secondary",onClick:T,disabled:!h.includes(":")||h.endsWith(":"),children:[s.jsx(It,{size:13})," ",u("router_panel.add_to_chain")]})]})]}),s.jsx(se,{variant:"primary",loading:E,disabled:!R,onClick:A,children:u(R?"router_panel.save":"router_panel.saved")})]})})}function lI({provider:e,onEdit:t,onDelete:a,onToggle:o}){const l=kh(sI,e.engine),c=kh(aI,e.engine),d=kh(Vf,e.engine),p=Ic.find(b=>b.value===e.engine)?.label||e.engine,m=typeof e.api_key=="string"&&e.api_key.length>0,g=Do(e.api_key),h=e.is_active!==!1;return s.jsxs("div",{className:"group flex h-full cursor-pointer flex-col gap-3 rounded-xl border border-border bg-card p-4 transition-colors hover:border-muted-fg/50",onClick:t,children:[s.jsxs("div",{className:"flex items-start gap-3",children:[s.jsx("div",{className:he("flex size-10 shrink-0 items-center justify-center rounded-xl bg-gradient-to-br",l),children:s.jsx(d,{className:"size-5 text-white"})}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsx("h3",{className:"truncate text-sm font-semibold",children:e.name||e.slug}),s.jsx("p",{className:"truncate font-mono text-[10px] text-muted-fg",children:e.slug}),s.jsxs("span",{className:he("mt-1 inline-flex items-center gap-1 rounded-full px-2 py-0.5 text-[10px] font-medium",c),children:[s.jsx(d,{className:"size-3"})," ",p]})]}),s.jsxs("div",{className:"flex shrink-0 items-center gap-1",children:[s.jsx(Ye,{content:u(h?"providers_modal.toggle_active":"providers_modal.toggle_inactive"),children:s.jsxs("button",{type:"button",onClick:b=>{b.stopPropagation(),o()},className:he("flex items-center gap-1 rounded-md border px-1.5 py-0.5 text-[10px] font-medium transition-colors",h?"border-emerald-500/40 text-emerald-400 hover:bg-emerald-500/10":"border-border text-muted-fg hover:text-foreground"),children:[s.jsx("span",{className:he("size-1.5 rounded-full",h?"bg-emerald-400":"bg-muted-fg/40")}),u(h?"providers_card.active":"providers_card.off")]})}),s.jsx(Ye,{content:u("providers_modal.delete"),children:s.jsx("button",{type:"button",onClick:b=>{b.stopPropagation(),a()},className:"rounded-md p-1 text-muted-fg hover:bg-destructive/10 hover:text-destructive",children:s.jsx(_n,{className:"size-3.5"})})})]})]}),s.jsxs("div",{className:"mt-auto space-y-1 text-xs",children:[s.jsx(pc,{label:u("providers_card.model"),value:e.default_model||"—",mono:!0}),e.base_url&&s.jsx(pc,{label:u("providers_card.base_url"),value:e.base_url,mono:!0,truncate:!0}),s.jsx(pc,{label:u("providers_card.api_key"),value:m?g?`…${g}`:u("providers_card.key_set"):"—",mono:!!g}),e.default_temperature!==void 0&&s.jsx(pc,{label:u("providers_card.temp"),value:e.default_temperature.toFixed(1)}),e.pricing?.input_per_million!==void 0&&s.jsx(pc,{label:u("providers_card.price_io"),value:`${e.pricing.input_per_million??0} / ${e.pricing.output_per_million??0}`})]})]})}function pc({label:e,value:t,mono:a,truncate:o}){return s.jsxs("div",{className:"flex items-center justify-between gap-2",children:[s.jsx("span",{className:"text-muted-fg",children:e}),s.jsx("span",{className:he("text-foreground",a&&"font-mono",o&&"max-w-[180px] truncate"),children:t})]})}const Dk={name:"",slug:"",engine:"anthropic",base_url:"",api_key_value:"",default_model:"",default_temperature:.7,default_max_tokens:4096,is_active:!0,context_limit_tokens:2e5,model_context_limits_json:"",p_input:"",p_output:"",p_cache_read:"",p_cache_write:""},iI=["anthropic","openai","gemini","groq","openrouter","ollama","custom"];function mc(e){return e.toLowerCase().trim().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"")}function Fd(e){if(e==null)return"";const t=Number(e);return Number.isFinite(t)?String(t):""}function cI(e){return{name:e.name||e.slug,slug:e.slug,engine:e.engine||"custom",base_url:e.base_url||"",api_key_value:"",default_model:e.default_model||"",default_temperature:e.default_temperature??.7,default_max_tokens:e.default_max_tokens??4096,is_active:e.is_active!==!1,context_limit_tokens:e.context_limit_tokens??2e5,model_context_limits_json:e.model_context_limits?JSON.stringify(e.model_context_limits,null,2):"",p_input:Fd(e.pricing?.input_per_million),p_output:Fd(e.pricing?.output_per_million),p_cache_read:Fd(e.pricing?.cache_read_per_million),p_cache_write:Fd(e.pricing?.cache_write_per_million)}}function uI({open:e,initial:t,existingSlugs:a,onClose:o,onSave:l}){const c=!!t,[d,p]=x.useState(Dk),[m,g]=x.useState(!1),[h,b]=x.useState(null),[_,j]=x.useState([]),[E,k]=x.useState(!1),[y,w]=x.useState(null),[S,N]=x.useState(!1),[R,A]=x.useState("");x.useEffect(()=>{if(!e)return;const G=t?cI(t):Dk;p(G),b(null),w(null),N(!1);const K=Za[G.engine];j(K?.known_models||[])},[e,t]);const T=G=>p(K=>({...K,...G})),O=G=>{const K=Za[G];T({engine:G,name:G==="custom"?d.name:Ic.find(I=>I.value===G)?.label||G,slug:G==="custom"?d.slug:G,base_url:K.base_url,default_model:K.default_model}),j(K.known_models),w(null)},z=G=>{const K=Za[G];T({engine:G,base_url:d.base_url||K.base_url,default_model:d.default_model||K.default_model}),j(K.known_models)},U=async()=>{k(!0),w(null);try{const G=await Qc.models({engine:d.engine,slug:d.slug||mc(d.name),base_url:d.base_url||void 0,api_key:d.api_key_value||void 0});if(G.error){w(G.error);return}j(G.models),G.models.length===0&&w(u("providers_modal.err_no_models"))}catch(G){w(G.message||u("providers_modal.err_list_models"))}finally{k(!1)}},P=x.useMemo(()=>d.default_model&&!_.includes(d.default_model)?[d.default_model,..._]:_,[_,d.default_model]),B=()=>{const G=(d.slug||mc(d.name)).trim();if(!G)return b(u("providers_modal.err_slug_required")),null;if(!c&&a.includes(G))return b(u("providers_modal.err_slug_exists",{slug:G})),null;let K;if(d.model_context_limits_json.trim())try{const Z=JSON.parse(d.model_context_limits_json);if(!Z||typeof Z!="object"||Array.isArray(Z))throw new Error;K=Z}catch{return b(u("providers_modal.err_model_limits_json")),null}const X=[d.p_input,d.p_output,d.p_cache_read,d.p_cache_write].map(Z=>Z.trim()).some(Boolean)?{input_per_million:Number(d.p_input||0),output_per_million:Number(d.p_output||0),cache_read_per_million:Number(d.p_cache_read||0),cache_write_per_million:Number(d.p_cache_write||0)}:void 0;return{provider:{slug:G,name:d.name.trim()||G,engine:d.engine,base_url:d.base_url.trim()||void 0,default_model:d.default_model.trim()||void 0,default_temperature:d.default_temperature,default_max_tokens:d.default_max_tokens,is_active:d.is_active,context_limit_tokens:d.context_limit_tokens||void 0,model_context_limits:K,pricing:X},modelLimits:K}},D=()=>{const G=B();if(!G)return;const{provider:K}=G,I={name:K.name,engine:K.engine,is_active:K.is_active!==!1,default_temperature:K.default_temperature,default_max_tokens:K.default_max_tokens};K.base_url&&(I.base_url=K.base_url),K.default_model&&(I.default_model=K.default_model),K.context_limit_tokens&&(I.context_limit_tokens=K.context_limit_tokens),K.model_context_limits&&(I.model_context_limits=K.model_context_limits),K.pricing&&(I.pricing=K.pricing),d.api_key_value.trim()&&(I.api_key=d.api_key_value.trim()),A(JSON.stringify(I,null,2)),b(null),N(!0)},L=async()=>{g(!0),b(null);try{if(S){const K=(d.slug||mc(d.name)).trim();if(!K){b(u("providers_modal.err_slug_required_form"));return}let I;try{I=JSON.parse(R)}catch{b(u("providers_modal.err_json_invalid"));return}if(!I||typeof I!="object"||Array.isArray(I)){b(u("providers_modal.err_json_object"));return}const X=I;if(!X.engine||typeof X.engine!="string"){b(u("providers_modal.err_engine_missing"));return}const Z={slug:K,name:typeof X.name=="string"?X.name:K,engine:String(X.engine),base_url:typeof X.base_url=="string"?X.base_url:void 0,default_model:typeof X.default_model=="string"?X.default_model:void 0,is_active:X.is_active!==!1};await l({provider:Z,raw:X,originalSlug:t?.slug}),o();return}const G=B();if(!G)return;await l({provider:G.provider,apiKeyValue:d.api_key_value.trim()||void 0,originalSlug:t?.slug}),o()}catch(G){b(G.message||u("providers_modal.err_save"))}finally{g(!1)}},$=c&&ds(t?.api_key),V=Do(t?.api_key),H=$?u("providers_modal.api_key_set",{suffix:V??""}):"sk-…",F=d.engine==="ollama",Y=Za[d.engine]?.api_key_env;return s.jsx(sn,{open:e,onClose:o,title:c?u("providers_modal.edit_title",{name:t?.name||t?.slug||""}):u("providers_modal.new_title"),description:u("providers_modal.description"),size:"lg",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:o,disabled:m,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:L,loading:m,children:u(c?"common.save":"common.create")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"flex items-center justify-between",children:[c?s.jsx("span",{}):s.jsx("div",{className:"flex flex-wrap gap-1.5",children:iI.map(G=>{const K=Vf[G],I=G==="custom"?u("providers_modal.custom"):Ic.find(Z=>Z.value===G)?.label||G,X=d.engine===G;return s.jsxs("button",{type:"button",onClick:()=>O(G),className:`flex items-center gap-1.5 rounded-lg border px-2.5 py-1 text-xs transition-colors ${X?"border-emerald-500/50 bg-emerald-500/10 text-emerald-400":"border-border text-muted-fg hover:border-muted-fg/60 hover:text-foreground"}`,children:[s.jsx(K,{className:"size-3.5"})," ",I]},G)})}),s.jsxs("button",{type:"button",onClick:()=>S?N(!1):D(),className:`flex shrink-0 items-center gap-1.5 rounded-lg border px-2.5 py-1 text-xs transition-colors ${S?"border-sky-500/50 bg-sky-500/10 text-sky-400":"border-border text-muted-fg hover:text-foreground"}`,children:[s.jsx(h5,{className:"size-3.5"})," ",u(S?"providers_modal.form_mode":"providers_modal.json_mode")]})]}),S?s.jsxs("div",{className:"space-y-2",children:[s.jsx(ae,{label:u("providers_modal.json_label"),hint:u("providers_modal.json_hint",{slug:d.slug||mc(d.name)||"<slug>"}),children:s.jsx(un,{rows:14,className:"font-mono text-xs",value:R,onChange:G=>A(G.target.value),spellCheck:!1})}),s.jsx("p",{className:"text-[11px] text-muted-fg",children:u("providers_modal.json_help")})]}):s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("providers_modal.name_label"),children:s.jsx(Ne,{value:d.name,onChange:G=>T({name:G.target.value,slug:c?d.slug:mc(G.target.value)}),placeholder:u("providers_modal.name_ph")})}),s.jsx(ae,{label:u("providers_modal.engine_label"),children:s.jsx(ut,{value:d.engine,onChange:G=>z(G),options:Ic.map(G=>({value:G.value,label:G.label,icon:Vf[G.value]}))})})]}),s.jsx(ae,{label:u("providers_modal.base_url_label"),hint:u("providers_modal.base_url_hint"),children:s.jsx(Ne,{value:d.base_url,onChange:G=>T({base_url:G.target.value}),placeholder:u("providers_modal.base_url_ph")})}),!F&&s.jsx(ae,{label:u("providers_modal.api_key_label"),hint:$?u("providers_modal.api_key_hint_existing"):Y?u("providers_modal.api_key_hint_env",{env:Y}):u("providers_modal.api_key_hint"),children:s.jsx(Ne,{type:"password",autoComplete:"new-password",value:d.api_key_value,onChange:G=>T({api_key_value:G.target.value}),placeholder:H})}),s.jsx(ae,{label:u("providers_modal.model_label"),children:s.jsxs("div",{className:"space-y-2",children:[s.jsxs("div",{className:"flex items-start gap-2",children:[s.jsx(QN,{value:d.default_model,onChange:G=>T({default_model:G}),options:P,className:"flex-1"}),s.jsx(Ye,{content:u("providers_modal.list_models_hint"),children:s.jsxs(se,{size:"sm",variant:"secondary",onClick:U,disabled:E,"aria-label":u("providers_modal.list_models_hint"),children:[E?s.jsx(Lr,{className:"size-3.5 animate-spin"}):s.jsx(Qs,{className:"size-3.5"}),u("providers_modal.load_models")]})})]}),y&&s.jsx("p",{className:"text-[11px] text-amber-400",children:y})]})}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("providers_modal.max_tokens_label"),children:s.jsx(Ne,{type:"number",min:256,step:256,value:d.default_max_tokens,onChange:G=>T({default_max_tokens:parseInt(G.target.value)||4096})})}),s.jsx(ae,{label:u("providers_modal.temperature_label",{value:d.default_temperature.toFixed(1)}),children:s.jsx("input",{type:"range",min:0,max:2,step:.1,value:d.default_temperature,onChange:G=>T({default_temperature:parseFloat(G.target.value)}),className:"mt-2 w-full accent-foreground"})})]}),s.jsxs("details",{className:"rounded-md border border-border bg-muted/20 p-3",children:[s.jsx("summary",{className:"cursor-pointer text-xs font-medium text-muted-fg",children:u("providers_modal.pricing_summary")}),s.jsxs("div",{className:"mt-3 space-y-3",children:[s.jsx(ae,{label:u("providers_modal.context_limit_label"),children:s.jsx(Ne,{type:"number",min:0,step:1024,value:d.context_limit_tokens,onChange:G=>T({context_limit_tokens:parseInt(G.target.value)||0})})}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("providers_modal.price_input"),children:s.jsx(Ne,{type:"number",min:0,step:1e-4,value:d.p_input,onChange:G=>T({p_input:G.target.value}),placeholder:"0.15"})}),s.jsx(ae,{label:u("providers_modal.price_output"),children:s.jsx(Ne,{type:"number",min:0,step:1e-4,value:d.p_output,onChange:G=>T({p_output:G.target.value}),placeholder:"0.60"})}),s.jsx(ae,{label:u("providers_modal.price_cache_read"),children:s.jsx(Ne,{type:"number",min:0,step:1e-4,value:d.p_cache_read,onChange:G=>T({p_cache_read:G.target.value}),placeholder:"0.03"})}),s.jsx(ae,{label:u("providers_modal.price_cache_write"),children:s.jsx(Ne,{type:"number",min:0,step:1e-4,value:d.p_cache_write,onChange:G=>T({p_cache_write:G.target.value}),placeholder:"0.00"})})]}),s.jsx(ae,{label:u("providers_modal.model_limits_label"),hint:'{"gpt-4o-mini":128000}',children:s.jsx(un,{rows:3,className:"font-mono text-xs",value:d.model_context_limits_json,onChange:G=>T({model_context_limits_json:G.target.value})})})]})]}),s.jsx(Gt,{checked:d.is_active,onChange:G=>T({is_active:G}),label:u("providers_modal.active_label")})]}),h&&s.jsx("div",{className:"rounded-md border border-destructive/40 bg-destructive/10 px-3 py-2 text-xs text-destructive",children:h})]})})}const dI=new Set(Ic.map(e=>e.value));function fI(e,t){const a=typeof t.engine=="string"&&t.engine||(dI.has(e)?e:"custom");return{slug:e,name:typeof t.name=="string"?t.name:void 0,engine:a,base_url:typeof t.base_url=="string"?t.base_url:void 0,api_key:typeof t.api_key=="string"?t.api_key:void 0,default_model:typeof t.default_model=="string"?t.default_model:void 0,default_temperature:typeof t.default_temperature=="number"?t.default_temperature:void 0,default_max_tokens:typeof t.default_max_tokens=="number"?t.default_max_tokens:void 0,is_active:typeof t.is_active=="boolean"?t.is_active:void 0,context_limit_tokens:typeof t.context_limit_tokens=="number"?t.context_limit_tokens:void 0,model_context_limits:t.model_context_limits||void 0,pricing:t.pricing||void 0}}function pI(){const e=Ze(),{config:t,isLoading:a,patch:o,mutate:l}=Zr(),[c,d]=x.useState(!1),[p,m]=x.useState(null);if(a)return s.jsx(at,{});const g=t.engines||{},h=Object.entries(g).map(([w,S])=>fI(w,S||{})),b=h.map(w=>w.slug),_=()=>{m(null),d(!0)},j=w=>{m(w),d(!0)},E=async({provider:w,apiKeyValue:S,raw:N})=>{if(N){await o({[`engines.${w.slug}`]:N}),e.success(u("engines_panel.saved_json")),l();return}const R=`engines.${w.slug}`,A={[`${R}.name`]:w.name,[`${R}.engine`]:w.engine,[`${R}.is_active`]:w.is_active!==!1,[`${R}.default_temperature`]:w.default_temperature,[`${R}.default_max_tokens`]:w.default_max_tokens},T=[],O=(z,U)=>{U===void 0||U===""?T.push(`${R}.${z}`):A[`${R}.${z}`]=U};O("base_url",w.base_url),O("default_model",w.default_model),O("context_limit_tokens",w.context_limit_tokens),O("pricing",w.pricing),O("model_context_limits",w.model_context_limits),S&&(A[`${R}.api_key`]=S),await o(A,T),e.success(u("engines_panel.saved")),l()},k=async w=>{try{await o({[`engines.${w.slug}.is_active`]:w.is_active===!1}),l()}catch(S){e.error(S.message)}},y=async w=>{if(confirm(u("engines_panel.delete_confirm",{name:w.name||w.slug})))try{await o(void 0,[`engines.${w.slug}`]),e.success(u("engines_panel.deleted")),l()}catch(S){e.error(S.message)}};return s.jsxs(Fe,{title:u("engines_panel.title"),description:u("engines_panel.description"),action:s.jsxs(se,{size:"sm",variant:"primary",onClick:_,children:[s.jsx(It,{size:14})," ",u("engines_panel.new_btn")]}),children:[h.length===0?s.jsx(pt,{children:u("engines_panel.empty")}):s.jsxs("div",{className:"grid grid-cols-1 items-stretch gap-3 sm:grid-cols-2 lg:grid-cols-3",children:[h.map(w=>s.jsx(lI,{provider:w,onEdit:()=>j(w),onDelete:()=>y(w),onToggle:()=>k(w)},w.slug)),s.jsxs("button",{type:"button",onClick:_,className:"flex min-h-[120px] flex-col items-center justify-center gap-2 rounded-xl border border-dashed border-border text-muted-fg transition-colors hover:border-muted-fg/60 hover:text-foreground",children:[s.jsx(It,{size:20}),s.jsx("span",{className:"text-sm font-medium",children:u("engines_panel.add_card")})]})]}),s.jsx(uI,{open:c,initial:p,existingSlugs:b,onClose:()=>{d(!1),m(null)},onSave:E})]})}function JN(){return s.jsxs("div",{className:"space-y-6",children:[s.jsx(oI,{}),s.jsx(pI,{})]})}function mI(){const e=Ze(),[t,a]=x.useState(!1),l=$e(t?"/agents/vault?include_removed=1":"/agents/vault",()=>cn.vault({includeRemoved:t})),c=l.data||[],[d,p]=x.useState(null),m=async h=>{const b=h.source!=="user",_=b?u("base.defaults_tombstone_msg",{slug:h.slug}):u("base.defaults_delete_msg",{slug:h.slug});if(confirm(_))try{await cn.vaultRemove(h.slug),e.success(u(b?"base.defaults_hidden":"base.defaults_deleted")),l.mutate()}catch(j){e.error(j.message)}},g=async h=>{try{await cn.vaultRestore(h),e.success(u("base.defaults_restored")),l.mutate()}catch(b){e.error(b.message)}};return s.jsxs(Fe,{title:u("base.defaults_title"),description:u("base.defaults_desc"),action:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Gt,{checked:t,onChange:a,label:u("base.defaults_show_removed")}),s.jsxs(se,{size:"sm",onClick:()=>p("new"),children:[s.jsx(It,{size:14})," ",u("base.defaults_new")]})]}),children:[l.isLoading&&s.jsx(at,{}),!l.isLoading&&c.length===0&&s.jsx(pt,{children:u("base.defaults_empty")}),s.jsx("div",{className:"grid gap-3 sm:grid-cols-2 lg:grid-cols-3",children:c.map(h=>{const b=t&&h.tombstoned;return s.jsxs("div",{className:`flex flex-col gap-2 rounded-xl border bg-card p-4 ${b?"border-dashed border-border opacity-60":"border-border"}`,children:[s.jsxs("div",{className:"flex items-center justify-between gap-2",children:[s.jsxs("div",{className:"flex min-w-0 items-center gap-2",children:[s.jsx("div",{className:"flex size-9 shrink-0 items-center justify-center rounded-xl bg-gradient-to-br from-slate-600 to-gray-600",children:h.is_master?s.jsx(xa,{className:"size-4 text-white"}):s.jsx(on,{className:"size-4 text-white"})}),s.jsx("span",{className:"truncate text-sm font-semibold",children:h.slug}),s.jsx(gI,{source:h.source})]}),s.jsx("div",{className:"flex shrink-0 items-center gap-0.5",children:b?s.jsx(Sh,{label:u("base.defaults_restore"),onClick:()=>g(h.slug),variant:"secondary",children:s.jsx(ui,{size:13})}):s.jsxs(s.Fragment,{children:[s.jsx(Sh,{label:u("base.defaults_edit"),onClick:()=>p(h),variant:"ghost",children:s.jsx(ya,{size:13})}),s.jsx(Sh,{label:h.source==="user"?u("base.defaults_delete"):u("base.defaults_hide"),onClick:()=>m(h),variant:"ghost-destructive",children:s.jsx(_n,{size:13})})]})})]}),h.model?s.jsx(He,{tone:"info",children:h.model}):s.jsx("span",{className:"text-[10px] text-muted-fg",children:u("agents_ui.model_router_default")}),h.description&&s.jsx("p",{className:"line-clamp-3 text-xs text-muted-fg",children:h.description}),s.jsxs("div",{className:"flex flex-wrap gap-1",children:[h.role&&s.jsx(He,{children:h.role}),h.skills?.map(_=>s.jsxs("span",{className:"inline-flex items-center gap-0.5 rounded bg-muted px-1 py-0.5 text-[9px] text-muted-fg",children:[s.jsx(Vs,{size:9})," ",_]},_)),h.tools?.map(_=>s.jsxs("span",{className:"inline-flex items-center gap-0.5 rounded bg-muted px-1 py-0.5 text-[9px] text-muted-fg",children:[s.jsx(ea,{size:9})," ",_]},_))]})]},h.slug)})}),d!==null&&s.jsx(hI,{agent:d==="new"?null:d,onClose:()=>p(null),onSaved:()=>{p(null),l.mutate()}})]})}function gI({source:e}){return e==="user"?s.jsx(He,{tone:"success",children:u("agents_ui.source_user")}):e==="user-override"?s.jsx(He,{tone:"warning",children:u("agents_ui.source_override")}):s.jsx(He,{tone:"muted",children:u("agents_ui.source_bundled")})}function Sh({label:e,onClick:t,variant:a="ghost",children:o}){const l="inline-flex size-7 items-center justify-center rounded-md transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40",c={ghost:"text-muted-fg hover:bg-accent hover:text-accent-fg","ghost-destructive":"text-muted-fg hover:bg-destructive/15 hover:text-destructive",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80"};return s.jsxs(c_,{children:[s.jsx(u_,{render:s.jsx("button",{type:"button",onClick:t,"aria-label":e,className:`${l} ${c[a]}`,children:o})}),s.jsx(d_,{children:e})]})}function hI({agent:e,onClose:t,onSaved:a}){const o=Ze(),[l,c]=x.useState(!1),d=!e,[p,m]=x.useState(e?.slug??""),[g,h]=x.useState(e?.role??""),[b,_]=x.useState(e?.model??""),[j,E]=x.useState(e?.description??""),[k,y]=x.useState(e?.language??"es"),[w,S]=x.useState((e?.skills??[]).join(", ")),[N,R]=x.useState((e?.tools??[]).join(", ")),[A,T]=x.useState(!!e?.is_master),[O,z]=x.useState(e?.body??""),U=async()=>{const P={role:g||void 0,model:b||void 0,description:j||void 0,language:k||void 0,skills:w,tools:N,is_master:A};c(!0);try{if(d){if(!/^[a-z][a-z0-9_-]*$/.test(p))throw new Error(u("base.defaults_slug_invalid"));await cn.vaultCreate(p,P,O),o.success(u("base.defaults_created",{slug:p}))}else await cn.vaultPatch(e.slug,{fields:P,body:O}),o.success(u("base.defaults_saved",{slug:e.slug}));a()}catch(B){o.error(B.message)}finally{c(!1)}};return s.jsx(sn,{open:!0,onClose:t,title:d?u("base.defaults_new_title"):u("base.defaults_edit_title",{slug:e.slug}),description:d?u("base.defaults_new_desc"):e.source==="bundled"?u("base.defaults_bundled_desc"):u("base.defaults_user_desc"),size:"lg",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:l,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:U,loading:l,children:u("common.save")})]}),children:s.jsxs("div",{className:"space-y-3",children:[d&&s.jsx(ae,{label:"slug",hint:u("agents_ui.slug_kebab_hint"),children:s.jsx(Ne,{autoFocus:!0,value:p,onChange:P=>m(P.target.value),placeholder:"reviewer"})}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:"role",children:s.jsx(Ne,{value:g,onChange:P=>h(P.target.value),placeholder:"Code reviewer"})}),s.jsx(ae,{label:"model",children:s.jsx(Ne,{value:b,onChange:P=>_(P.target.value),placeholder:"openrouter:..."})}),s.jsx(ae,{label:"language",children:s.jsx(Ne,{value:k,onChange:P=>y(P.target.value),placeholder:"es"})}),s.jsx(ae,{label:"is_master",children:s.jsx("div",{className:"flex h-9 items-center",children:s.jsx(Gt,{checked:A,onChange:T,label:u("base.defaults_master_label")})})})]}),s.jsx(ae,{label:"description",children:s.jsx(Ne,{value:j,onChange:P=>E(P.target.value)})}),s.jsx(ae,{label:"skills",hint:u("agents_ui.comma_separated"),children:s.jsx(Ne,{value:w,onChange:P=>S(P.target.value),placeholder:"code-review, git"})}),s.jsx(ae,{label:"tools",hint:u("agents_ui.comma_separated"),children:s.jsx(Ne,{value:N,onChange:P=>R(P.target.value),placeholder:"read, write, run"})}),s.jsx(ae,{label:"body",hint:u("agents_ui.body_hint"),children:s.jsx(un,{value:O,onChange:P=>z(P.target.value),rows:10,placeholder:"# Mission\\n..."})})]})})}const xI=20,Pk=[10,20,50,100];function U_({key:e,fetchPage:t,resetKey:a,initialPageSize:o=xI,swr:l}){const[c,d]=x.useState(1),[p,m]=x.useState(o);x.useEffect(()=>{d(1)},[a]);const g=(c-1)*p,h=$e(e==null?null:[e,p,g],()=>t(p,g),{keepPreviousData:!0,...l}),b=h.data?.total??0,_=Math.max(1,Math.ceil(b/p)),j=Math.min(c,_);x.useEffect(()=>{c!==j&&d(j)},[c,j]);const E=b===0?0:g,k=Math.min(g+p,b);return{items:h.data?.items??[],isLoading:h.isLoading,error:h.error,mutate:h.mutate,page:j,pageCount:_,total:b,start:E,end:k,pageSize:p,setPage:d,setPageSize:y=>{m(y),d(1)}}}function bI({page:e,pageCount:t,total:a,start:o,end:l,pageSize:c,onPage:d,onPageSize:p}){return a<=Pk[0]?null:s.jsxs("div",{className:"mt-3 flex flex-wrap items-center justify-between gap-3 text-xs text-muted-fg",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx("span",{className:"tabular-nums",children:u("common.pager_range",{from:o+1,to:l,total:a})}),s.jsxs("span",{className:"flex items-center gap-1.5",children:[s.jsx("span",{children:u("common.pager_per_page")}),s.jsx("div",{className:"w-[4.5rem]",children:s.jsx(ut,{value:String(c),onChange:m=>p(Number(m)),options:Pk.map(m=>({value:String(m),label:String(m)}))})})]})]}),s.jsxs("div",{className:"flex items-center gap-1",children:[s.jsx(se,{size:"sm",variant:"ghost",disabled:e<=1,onClick:()=>d(e-1),"aria-label":u("common.pager_prev"),children:s.jsx(b5,{size:14})}),s.jsx("span",{className:"px-1 tabular-nums",children:u("common.pager_page",{page:e,total:t})}),s.jsx(se,{size:"sm",variant:"ghost",disabled:e>=t,onClick:()=>d(e+1),"aria-label":u("common.pager_next"),children:s.jsx(qr,{size:14})})]})]})}function $_({paged:e,fullHeight:t,className:a,children:o}){const l=s.jsx(bI,{page:e.page,pageCount:e.pageCount,total:e.total,start:e.start,end:e.end,pageSize:e.pageSize,onPage:e.setPage,onPageSize:e.setPageSize});return t?s.jsxs("div",{className:"flex min-h-0 flex-1 flex-col",children:[s.jsx("div",{className:he("min-h-0 flex-1 overflow-y-auto",a),children:o}),s.jsx("div",{className:"shrink-0",children:l})]}):s.jsxs("div",{className:a,children:[o,l]})}const _I={apx:"success",claude:"info",codex:"warning"};function vI(){const e=Ze(),t=Np(),[a,o]=x.useState(""),[l,c]=x.useState(""),[d,p]=x.useState(""),[m,g]=x.useState(!1);x.useEffect(()=>{const y=setTimeout(()=>p(l.trim()),350);return()=>clearTimeout(y)},[l]);const h=U_({key:`/sessions?engine=${a}&q=${d}&deep=${m?1:0}`,fetchPage:(y,w)=>WP.page({engine:a||void 0,q:d||void 0,deep:m,limit:y,offset:w}),resetKey:`${a}|${d}|${m?1:0}`}),b=()=>{c(""),p(""),o(""),g(!1)},_=async y=>{try{await navigator.clipboard.writeText(`apx session resume ${y.id} --continue`),e.success(u("base.sessions_cmd_copied"))}catch{e.error(u("base.sessions_copy_failed"))}},j=y=>{const w=`Continue this session: ${y.id} (engine: ${y.engine}${y.title?`, title: "${y.title}"`:""}${y.cwd?`, folder: ${y.cwd}`:""}). With these instructions: `;window.dispatchEvent(new CustomEvent("apx:roby-prompt",{detail:{prompt:w}}))},E=async y=>{if(!y.cwd){e.error(u("base.sessions_no_folder"));return}try{await fN.exec({kind:"open_path",target:y.cwd})}catch(w){e.error(u("base.sessions_folder_failed",{msg:w.message}))}},k=async y=>{const w=y.path||y.cwd;if(!w){e.error(u("base.sessions_no_path"));return}try{await navigator.clipboard.writeText(w),e.success(u("base.sessions_path_copied"))}catch{e.error(u("base.sessions_copy_failed"))}};return s.jsxs(Fe,{fullHeight:!0,title:u("base.sessions_title"),description:u("base.sessions_desc"),action:s.jsx(Ye,{content:u("base.sessions_refresh"),children:s.jsx(se,{size:"sm",variant:"secondary",onClick:()=>h.mutate(),children:s.jsx(Qs,{size:13})})}),children:[s.jsxs("div",{className:"mb-3 flex items-center gap-2",children:[s.jsxs("div",{className:"relative flex-1",children:[s.jsx(Mc,{size:14,className:"pointer-events-none absolute left-2.5 top-1/2 -translate-y-1/2 text-muted-fg"}),s.jsx(Ne,{className:"pl-8",placeholder:u("base.sessions_search_ph"),value:l,onChange:y=>c(y.target.value)})]}),s.jsx(Ye,{content:u("base.sessions_deep_tip"),children:s.jsx(se,{size:"sm",variant:m?"primary":"secondary",onClick:()=>g(y=>!y),children:u("base.sessions_deep")})}),s.jsx("div",{className:"w-36",children:s.jsx(ut,{value:a,onChange:o,options:[{value:"",label:u("base.sessions_all")},{value:"apx",label:"apx"},{value:"claude",label:"claude"},{value:"codex",label:"codex"}]})}),s.jsx(Ye,{content:u("base.sessions_clear"),children:s.jsx(se,{size:"sm",variant:"ghost",onClick:b,children:s.jsx(ws,{size:14})})})]}),h.isLoading&&s.jsx(at,{}),h.error&&s.jsx(pt,{children:u("base.sessions_error",{msg:h.error.message})}),!h.isLoading&&!h.error&&h.total===0&&s.jsx(pt,{children:d?u("base.sessions_no_match",{q:d}):u("base.sessions_empty")}),s.jsx($_,{paged:h,fullHeight:!0,children:s.jsx("ul",{className:"space-y-1 text-sm",children:h.items.map((y,w)=>s.jsxs("li",{className:"group flex items-center gap-3 rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsx(He,{tone:_I[y.engine]||"muted",children:y.engine}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsx("div",{className:"truncate",children:y.title||y.id}),s.jsxs("div",{className:"flex items-center gap-2 font-mono text-[10px] text-muted-fg",children:[s.jsx("span",{className:"shrink-0",children:y.id}),y.cwd&&s.jsxs("span",{className:"truncate",children:["· ",y.cwd]})]})]}),y.mtime>0&&s.jsx("span",{className:"shrink-0 text-[11px] text-muted-fg",children:new Date(y.mtime).toLocaleString()}),s.jsxs("div",{className:"flex shrink-0 items-center gap-0.5 opacity-60 transition-opacity group-hover:opacity-100",children:[s.jsx(Ye,{content:u("base.sessions_act_cmd"),children:s.jsx(se,{size:"sm",variant:"ghost","aria-label":u("base.sessions_act_cmd"),onClick:()=>_(y),children:s.jsx(ba,{size:13})})}),s.jsx(Ye,{content:u("base.sessions_act_ask",{name:t}),children:s.jsx(se,{size:"sm",variant:"ghost","aria-label":u("base.sessions_act_ask",{name:t}),onClick:()=>j(y),children:s.jsx(on,{size:13})})}),s.jsx(Ye,{content:u("base.sessions_act_folder"),children:s.jsx(se,{size:"sm",variant:"ghost","aria-label":u("base.sessions_act_folder"),onClick:()=>E(y),children:s.jsx(ci,{size:13})})}),s.jsx(Ye,{content:u("base.sessions_act_path"),children:s.jsx(se,{size:"sm",variant:"ghost","aria-label":u("base.sessions_act_path"),onClick:()=>k(y),children:s.jsx($c,{size:13})})})]})]},`${y.engine}-${y.id}-${w}`))})})]})}function yI(){const e=Pn(),[t,a]=x.useState("open"),o=U_({key:`/tasks?state=${t}`,fetchPage:(l,c)=>Wn.globalPage({state:t,limit:l,offset:c}),resetKey:t});return s.jsxs(Fe,{fullHeight:!0,title:u("project.global_tasks.title"),description:u("project.global_tasks.subtitle"),action:s.jsx("div",{className:"flex gap-1",children:["open","done","dropped","all"].map(l=>s.jsx(se,{size:"sm",variant:t===l?"primary":"ghost",onClick:()=>a(l),children:l},l))}),children:[o.isLoading&&s.jsx(at,{}),!o.isLoading&&o.total===0&&s.jsx(pt,{children:u("project.global_tasks.empty")}),s.jsx($_,{paged:o,fullHeight:!0,children:s.jsx("ul",{className:"space-y-2 text-sm",children:o.items.map(l=>s.jsxs("li",{className:"flex items-start gap-3 rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsx("button",{type:"button",onClick:()=>e(`/p/${l.project_id}/tasks`),title:u("project.global_tasks.go_project"),children:s.jsx(He,{tone:"info",children:(l.project_name||"").split("/").pop()||l.project_id})}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsx("div",{className:"font-medium",children:l.title}),s.jsxs("div",{className:"mt-0.5 flex flex-wrap items-center gap-2 text-xs text-muted-fg",children:[s.jsx("span",{children:l.state}),l.agent&&s.jsxs(He,{tone:"muted",children:["@",l.agent]}),l.tags?.map(c=>s.jsxs("span",{children:["#",c]},c)),l.due&&s.jsxs("span",{children:[u("project.global_tasks.due")," ",l.due]})]})]})]},`${l.project_id}-${l.id}`))})})]})}const eE=x.createContext(void 0);function H_(){const e=x.useContext(eE);if(e===void 0)throw new Error(ln(64));return e}let jI=(function(e){return e.activationDirection="data-activation-direction",e.orientation="data-orientation",e})({});const Ap={tabActivationDirection:e=>({[jI.activationDirection]:e})},kI=x.forwardRef(function(t,a){const{className:o,defaultValue:l=0,onValueChange:c,orientation:d="horizontal",render:p,value:m,style:g,...h}=t,b=t.defaultValue!==void 0,_=x.useRef([]),[j,E]=x.useState(()=>new Map),[k,y]=ei({controlled:m,default:l,name:"Tabs",state:"value"}),w=m!==void 0,[S,N]=x.useState(()=>new Map),R=x.useRef(void 0),A=x.useCallback(me=>{if(me===void 0)return null;for(const[Me,de]of S.entries())if(de!=null&&me===(de.value??de.index))return Me;return null},[S]),[T,O]=x.useState(()=>({previousValue:k,tabActivationDirection:"none"})),{previousValue:z,tabActivationDirection:U}=T;let P=U,B=!1;z!==k&&(P=Lk(z,k,d,S),B=z!=null&&k!=null&&A(k)==null);const D=B?z:k,L=z!==D||U!==P;ze(()=>{L&&O({previousValue:D,tabActivationDirection:P})},[D,L,P]);const $=Ue((me,Me)=>{const de=Lk(k,me,d,S);Me.activationDirection=de,c?.(me,Me),!Me.isCanceled&&y(me)}),V=Ue((me,Me)=>{c?.(me,st(Me,void 0,void 0,{activationDirection:"none"}))}),H=Ue((me,Me)=>{E(de=>{if(de.get(me)===Me)return de;const ge=new Map(de);return ge.set(me,Me),ge})}),F=Ue((me,Me)=>{E(de=>{if(!de.has(me)||de.get(me)!==Me)return de;const ge=new Map(de);return ge.delete(me),ge})}),Y=x.useCallback(me=>j.get(me),[j]),G=x.useCallback(me=>{for(const Me of S.values())if(me===Me?.value)return Me?.id},[S]),K=x.useMemo(()=>({getTabElementBySelectedValue:A,getTabIdByPanelValue:G,getTabPanelIdByValue:Y,onValueChange:$,orientation:d,registerMountedTabPanel:H,setTabMap:N,unregisterMountedTabPanel:F,tabActivationDirection:P,value:k}),[A,G,Y,$,d,H,N,F,P,k]),I=x.useMemo(()=>{for(const me of S.values())if(me!=null&&me.value===k)return me},[S,k]),X=x.useMemo(()=>{for(const me of S.values())if(me!=null&&!me.disabled)return me.value},[S]),Z=x.useRef(!b),te=x.useRef(l),fe=x.useRef(b),ee=x.useRef(!1);ze(()=>{if(w)return;function me(Ce,we){y(Ce),O(Be=>Be.previousValue===Ce&&Be.tabActivationDirection==="none"?Be:{previousValue:Ce,tabActivationDirection:"none"}),V(Ce,we),Z.current=!1}if(S.size===0){ee.current&&k!==null&&!R.current?.isConnected&&me(null,kj);return}ee.current=!0,R.current=S.keys().next().value;const Me=I?.disabled,de=I==null&&k!==null;if(!Me&&k===te.current&&(fe.current=!1),fe.current&&Me&&k===te.current)return;const ge=Z.current;if(Me||de){const Ce=X??null;if(k===Ce){Z.current=!1;return}let we=kj;ge?we=wj:Me&&(we=p2),me(Ce,we);return}ge&&I!=null&&(V(k,wj),Z.current=!1)},[X,w,V,I,y,S,k]);const le=Et("div",t,{state:{orientation:d,tabActivationDirection:P},ref:a,props:h,stateAttributesMapping:Ap});return s.jsx(eE.Provider,{value:K,children:s.jsx(wp,{elementsRef:_,children:le})})});function Lk(e,t,a,o){if(e==null||t==null)return"none";let l=null,c=null;for(const[m,g]of o.entries()){if(g==null)continue;const h=g.value??g.index;if(e===h&&(l=m),t===h&&(c=m),l!=null&&c!=null)break}if(l==null||c==null)return l!==c&&(typeof e=="number"||typeof e=="string")&&typeof e==typeof t?a==="horizontal"?t>e?"right":"left":t>e?"down":"up":"none";const d=l.getBoundingClientRect(),p=c.getBoundingClientRect();if(a==="horizontal"){if(p.left<d.left)return"left";if(p.left>d.left)return"right"}else{if(p.top<d.top)return"up";if(p.top>d.top)return"down"}return"none"}const tE="data-composite-item-active",nE=x.createContext(void 0);function wI(){const e=x.useContext(nE);if(e===void 0)throw new Error(ln(65));return e}const SI=x.forwardRef(function(t,a){const{className:o,disabled:l=!1,render:c,value:d,id:p,nativeButton:m=!0,style:g,...h}=t,{value:b,getTabPanelIdByValue:_,orientation:j,tabActivationDirection:E}=H_(),{activateOnFocus:k,highlightedTabIndex:y,onTabActivation:w,registerTabResizeObserverElement:S,setHighlightedTabIndex:N,tabsListElement:R}=wI(),A=ta(p),T=x.useMemo(()=>({disabled:l,id:A,value:d}),[l,A,d]),{compositeProps:O,compositeRef:z,index:U}=QC({metadata:T}),P=d===b,B=x.useRef(!1),D=x.useRef(null);ze(()=>{const Z=D.current;if(Z)return S(Z)},[S]),ze(()=>{if(B.current){B.current=!1;return}if(!(P&&U>-1&&y!==U))return;const Z=R;if(Z!=null){const te=Gn(xt(Z));if(te&&We(Z,te))return}l||N(U)},[P,U,y,N,l,R]);const{getButtonProps:L,buttonRef:$}=Wr({disabled:l,native:m,focusableWhenDisabled:!0}),V=_(d),H=x.useRef(!1),F=x.useRef(!1);function Y(Z){P||l||w(d,st(va,Z.nativeEvent,void 0,{activationDirection:"none"}))}function G(Z){P||(U>-1&&!l&&N(U),!l&&k&&(!H.current||H.current&&F.current)&&w(d,st(va,Z.nativeEvent,void 0,{activationDirection:"none"})))}function K(Z){if(P||l)return;H.current=!0;function te(){H.current=!1,F.current=!1}(!Z.button||Z.button===0)&&(F.current=!0,xt(Z.currentTarget).addEventListener("pointerup",te,{once:!0}))}return Et("button",t,{state:{disabled:l,active:P,orientation:j,tabActivationDirection:E},ref:[a,$,z,D],props:[O,{role:"tab","aria-controls":V,"aria-selected":P,id:A,onClick:Y,onFocus:G,onPointerDown:K,[tE]:P?"":void 0,onKeyDownCapture(){B.current=!0}},h,L],stateAttributesMapping:Ap})});let CI=(function(e){return e.index="data-index",e.activationDirection="data-activation-direction",e.orientation="data-orientation",e.hidden="data-hidden",e[e.startingStyle=Oo.startingStyle]="startingStyle",e[e.endingStyle=Oo.endingStyle]="endingStyle",e})({});const NI={...Ap,...rr},EI=x.forwardRef(function(t,a){const{className:o,value:l,render:c,keepMounted:d=!1,style:p,...m}=t,{value:g,getTabIdByPanelValue:h,orientation:b,tabActivationDirection:_,registerMountedTabPanel:j,unregisterMountedTabPanel:E}=H_(),k=ta(),y=x.useMemo(()=>({id:k,value:l}),[k,l]),{ref:w,index:S}=cu({metadata:y}),N=l===g,{mounted:R,transitionStatus:A,setMounted:T}=mi(N),O=!R,z=h(l),U={hidden:O,orientation:b,tabActivationDirection:_,transitionStatus:A},P=x.useRef(null),B=Et("div",t,{state:U,ref:[a,w,P],props:[{"aria-labelledby":z,hidden:O,id:k,role:"tabpanel",tabIndex:N?0:-1,inert:_p(!N),[CI.index]:S},m],stateAttributesMapping:NI});return ka({open:N,ref:P,onComplete(){N||T(!1)}}),ze(()=>{if(!(O&&!d)&&k!=null)return j(l,k),()=>{E(l,k)}},[O,d,l,k,j,E]),d||R?B:null}),RI=[];function TI(e){const{loopFocus:t=!0,orientation:a="both",grid:o,onLoop:l,direction:c,highlightedIndex:d,onHighlightedIndexChange:p,rootRef:m,enableHomeAndEndKeys:g=!1,stopEventPropagation:h=!1,disabledIndices:b,modifierKeys:_=RI}=e,[j,E]=x.useState(0),k=o!=null,y=x.useRef(null),w=tr(y,m),S=x.useRef([]),N=x.useRef(!1),R=d??j,A=Ue((P,B=!1)=>{if((p??E)(P),B){const D=S.current[P];lk(y.current,D,c,a)}}),T=Ue(P=>{if(P.size===0||N.current)return;N.current=!0;const B=Array.from(P.keys()),D=B.find($=>$?.hasAttribute(tE))??null,L=D?B.indexOf(D):-1;if(L!==-1)A(L);else if(wf(B,R,b)){const $=Qa(B,{disabledIndices:b});Oc(B,$)||A($)}lk(y.current,D,c,a)});ze(()=>{if(b==null||d!=null||!N.current)return;const P=S.current;if(wf(P,R,b)){const B=Qa(P,{disabledIndices:b});Oc(P,B)||A(B)}},[b,d,R,S,A]);const O=Ue((P,B,D)=>l?l(P,B,D,S):D),z=Ue(P=>{const B=g?kp:$C;if(!B.has(P.key)||AI(P,_)||!y.current)return;const L=c==="rtl",$=L?Mf:Of,V={horizontal:$,vertical:Pc,both:$}[a],H=L?Of:Mf,F={horizontal:H,vertical:Dc,both:H}[a],Y=Vn(P.nativeEvent);if(Y!=null&&ok(Y)&&!ZC(Y)){const fe=Y.selectionStart,ee=Y.selectionEnd,re=Y.value??"";if(fe==null||P.shiftKey||fe!==ee||P.key!==F&&fe<re.length||P.key!==V&&fe>0)return}let G=R;const K=af(S,b),I=Cx(S,b);o!=null&&(G=o({disabledIndices:b,elementsRef:S,event:P,highlightedIndex:R,loopFocus:t,maxIndex:I,minIndex:K,onLoop:O,orientation:a,rtl:L}));const X={horizontal:[$],vertical:[Pc],both:[$,Pc]}[a],Z={horizontal:[H],vertical:[Dc],both:[H,Dc]}[a],te=k?B:{horizontal:g?wD:BC,vertical:g?SD:UC,both:B}[a];g&&(P.key===yp?G=K:P.key===jp&&(G=I)),G===R&&(X.includes(P.key)||Z.includes(P.key))&&(t&&G===I&&X.includes(P.key)?(G=K,l&&(G=l(P,R,G,S))):t&&G===K&&Z.includes(P.key)?(G=I,l&&(G=l(P,R,G,S))):G=Qa(S.current,{startingIndex:G,decrement:Z.includes(P.key),disabledIndices:b})),G!==R&&!Oc(S.current,G)&&(h&&P.stopPropagation(),te.has(P.key)&&P.preventDefault(),A(G,!0),queueMicrotask(()=>{S.current[G]?.focus()}))});return{props:{ref:w,onFocus(P){const B=y.current,D=Vn(P.nativeEvent);!B||D==null||!ok(D)||D.setSelectionRange(0,D.value.length??0)},onKeyDown:z},highlightedIndex:R,onHighlightedIndexChange:A,elementsRef:S,disabledIndices:b,onMapChange:T,relayKeyboardEvent:z}}function AI(e,t){for(const a of TD.values())if(!t.includes(a)&&e.getModifierState(a))return!0;return!1}function MI(e){const{render:t,className:a,style:o,refs:l=er,props:c=er,state:d=Xt,stateAttributesMapping:p,highlightedIndex:m,onHighlightedIndexChange:g,orientation:h,grid:b,loopFocus:_,onLoop:j,enableHomeAndEndKeys:E,onMapChange:k,stopEventPropagation:y=!0,rootRef:w,disabledIndices:S,modifierKeys:N,highlightItemOnHover:R=!1,tag:A="div",...T}=e,O=xp(),{props:z,highlightedIndex:U,onHighlightedIndexChange:P,elementsRef:B,onMapChange:D,relayKeyboardEvent:L}=TI({grid:b,loopFocus:_,onLoop:j,orientation:h,highlightedIndex:m,onHighlightedIndexChange:g,rootRef:w,stopEventPropagation:y,enableHomeAndEndKeys:E,direction:O,disabledIndices:S,modifierKeys:N}),$=Et(A,e,{state:d,ref:l,props:[z,...c,T],stateAttributesMapping:p}),V=x.useMemo(()=>({highlightedIndex:U,onHighlightedIndexChange:P,highlightItemOnHover:R,relayKeyboardEvent:L}),[U,P,R,L]);return s.jsx(MC.Provider,{value:V,children:s.jsx(wp,{elementsRef:B,onMapChange:H=>{k?.(H),D(H)},children:$})})}const OI=x.forwardRef(function(t,a){const{activateOnFocus:o=!1,className:l,loopFocus:c=!0,render:d,style:p,...m}=t,{onValueChange:g,orientation:h,value:b,setTabMap:_,tabActivationDirection:j}=H_(),[E,k]=x.useState(0),[y,w]=x.useState(null),S=x.useRef(new Set),N=x.useRef(new Set),R=x.useRef(null);ze(()=>{if(typeof ResizeObserver>"u")return;const B=new ResizeObserver(()=>{S.current.forEach(D=>{D()})});return R.current=B,y&&B.observe(y),N.current.forEach(D=>{B.observe(D)}),()=>{B.disconnect(),R.current=null}},[y]);const A=Ue(B=>(S.current.add(B),()=>{S.current.delete(B)})),T=Ue(B=>(N.current.add(B),R.current?.observe(B),()=>{N.current.delete(B),R.current?.unobserve(B)})),O=Ue((B,D)=>{B!==b&&g(B,D)}),z={orientation:h,tabActivationDirection:j},U={"aria-orientation":h==="vertical"?"vertical":void 0,role:"tablist"},P=x.useMemo(()=>({activateOnFocus:o,highlightedTabIndex:E,registerIndicatorUpdateListener:A,registerTabResizeObserverElement:T,onTabActivation:O,setHighlightedTabIndex:k,tabsListElement:y}),[o,E,A,T,O,k,y]);return s.jsx(nE.Provider,{value:P,children:s.jsx(MI,{render:d,className:l,style:p,state:z,refs:[a,w],props:[U,m],stateAttributesMapping:Ap,highlightedIndex:E,enableHomeAndEndKeys:!0,loopFocus:c,orientation:h,onHighlightedIndexChange:k,onMapChange:_,disabledIndices:er})})});function Mp({className:e,...t}){return s.jsx(kI,{"data-slot":"tabs",className:Ct("flex flex-col gap-4",e),...t})}const zI=N_("inline-flex h-9 w-fit items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground data-[variant=line]:h-8 data-[variant=line]:gap-1 data-[variant=line]:rounded-none data-[variant=line]:bg-transparent data-[variant=line]:p-0",{variants:{variant:{default:"bg-muted",line:"gap-1 bg-transparent"}},defaultVariants:{variant:"default"}});function Op({className:e,variant:t="default",...a}){return s.jsx(OI,{"data-slot":"tabs-list","data-variant":t,className:Ct(zI({variant:t}),e),...a})}function fa({className:e,...t}){return s.jsx(SI,{"data-slot":"tabs-trigger",className:Ct("inline-flex h-7 items-center justify-center gap-1.5 rounded-md border border-transparent px-3 py-1 text-sm font-medium whitespace-nowrap text-muted-fg transition-colors hover:text-foreground focus-visible:ring-2 focus-visible:ring-ring/50 focus-visible:outline-none disabled:pointer-events-none disabled:opacity-50 data-active:bg-background data-active:text-foreground data-active:shadow-sm dark:data-active:border-input dark:data-active:bg-input/30 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",e),...t})}function Us({className:e,...t}){return s.jsx(EI,{"data-slot":"tabs-content",className:Ct("text-sm outline-none",e),...t})}function Ik(e,t){let a=e;for(const o of t.split(".")){if(!a||typeof a!="object"||Array.isArray(a))return;a=a[o]}return a}function V_(e,t=""){const a={};for(const[o,l]of Object.entries(e)){const c=t?`${t}.${o}`:o;l&&typeof l=="object"&&!Array.isArray(l)?Object.assign(a,V_(l,c)):a[c]=l}return a}function DI(e){const t=JSON.parse(e);if(!t||typeof t!="object"||Array.isArray(t))throw new Error("JSON debe ser objeto.");return t}function Fx({sections:e,source:t,placeholderSource:a,jsonTitle:o,jsonDescription:l,saveLabel:c=u("common.save"),onSaveFields:d,onSaveJson:p,busy:m}){const g=e[0]?.key||"json",[h,b]=x.useState({}),[_,j]=x.useState(""),[E,k]=x.useState("");x.useEffect(()=>{const N={};for(const R of e.flatMap(A=>A.fields))N[R.path]=Ik(t,R.path)??"";b(N),j(JSON.stringify(t||{},null,2)),k("")},[t,e]);const y=x.useMemo(()=>new Set(e.flatMap(N=>N.fields.map(R=>R.path))),[e]),w=async()=>{const N={},R=[];for(const A of e.flatMap(T=>T.fields)){const T=h[A.path];if(!ds(T)){if(T===""||T===void 0||T===null){R.push(A.path);continue}if(A.kind==="number"){const O=Number(T);Number.isFinite(O)&&(N[A.path]=O)}else N[A.path]=T}}await d(N,R.filter(A=>y.has(A)))},S=async()=>{k("");try{await p(DI(_))}catch(N){k(N.message)}};return s.jsxs(Mp,{defaultValue:g,className:"space-y-4",children:[s.jsxs(Op,{className:"flex flex-wrap",children:[e.map(N=>s.jsx(fa,{value:N.key,children:N.label},N.key)),s.jsx(fa,{value:"json",children:"JSON"})]}),e.map(N=>s.jsx(Us,{value:N.key,children:s.jsxs("div",{className:"space-y-4",children:[N.description&&s.jsx("p",{className:"text-sm text-muted-fg",children:N.description}),s.jsx("div",{className:"grid gap-3 md:grid-cols-2",children:N.fields.map(R=>s.jsx(PI,{field:R,value:h[R.path],inherited:Ik(a,R.path),onChange:A=>b(T=>({...T,[R.path]:A}))},R.path))}),s.jsx(se,{variant:"primary",loading:m,onClick:w,children:c})]})},N.key)),s.jsx(Us,{value:"json",children:s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{children:[s.jsx("h3",{className:"text-sm font-medium",children:o}),l&&s.jsx("p",{className:"text-xs text-muted-fg",children:l})]}),s.jsx(un,{rows:18,className:"font-mono text-xs",value:_,onChange:N=>j(N.target.value)}),E&&s.jsx("p",{className:"text-xs text-destructive",children:E}),s.jsx(se,{variant:"primary",loading:m,onClick:S,children:u("settings_ui.save_json")})]})})]})}function PI({field:e,value:t,inherited:a,onChange:o}){const l=e.placeholder||Bk(a)||(ds(t)?Br(t):""),c=e.hint||(a!==void 0?`Heredado: ${Bk(a)}`:void 0);return e.kind==="boolean"?s.jsx("div",{className:"flex items-end pb-1",children:s.jsx(Gt,{checked:t===!0,onChange:o,label:e.label})}):s.jsx(ae,{label:e.label,hint:c,children:e.kind==="select"?s.jsx(ut,{value:String(t||""),onChange:o,placeholder:l||"(sin override)",options:[{value:"",label:l||"(sin override)"},...(e.options||[]).map(d=>({value:String(d.value),label:d.label}))]}):e.kind==="textarea"?s.jsx(un,{rows:4,value:String(t||""),placeholder:l,onChange:d=>o(d.target.value)}):s.jsx(Ne,{type:e.kind==="password"?"password":e.kind==="number"?"number":"text",value:String(ds(t)?"":t||""),placeholder:e.kind==="password"&&ds(t)?Br(t):e.kind==="password"&&ds(a)?Br(a):l,onChange:d=>o(d.target.value)})})}function Bk(e){return e==null||e===""?"":ds(e)?Br(e):Array.isArray(e)?e.join(", "):typeof e=="object"?JSON.stringify(e):String(e)}function LI(){return[{key:"routing",label:u("settings_ui.cfg_overrides_label"),description:u("settings_ui.cfg_overrides_desc"),fields:[{path:"route_to_agent",label:u("settings_ui.cfg_route_to_agent"),placeholder:"master"},{path:"super_agent.model",label:u("settings_ui.cfg_super_agent_model")},{path:"super_agent.permission_mode",label:u("settings_ui.cfg_permission_mode"),kind:"select",options:jb.map(e=>({value:e,label:e}))},{path:"super_agent.system",label:u("settings_ui.cfg_extra_prompt"),kind:"textarea"}]},{key:"telegram",label:u("settings_ui.cfg_telegram_label"),fields:[{path:"telegram.route_to_agent",label:u("settings_ui.cfg_route_to_agent")},{path:"telegram.chat_id",label:u("settings_ui.cfg_chat_id")},{path:"telegram.bot_token",label:u("settings_ui.cfg_bot_token"),kind:"password"},{path:"telegram.respond_with_engine",label:u("settings_ui.cfg_respond_with_engine"),kind:"boolean"}]},{key:"engines",label:u("settings_ui.cfg_engines_label"),fields:[{path:"engines.ollama.base_url",label:u("settings_ui.cfg_ollama_url")},{path:"engines.anthropic.api_key",label:u("settings_ui.cfg_anthropic_key"),kind:"password"},{path:"engines.openai.api_key",label:u("settings_ui.cfg_openai_key"),kind:"password"},{path:"engines.groq.api_key",label:u("settings_ui.cfg_groq_key"),kind:"password"},{path:"engines.openrouter.api_key",label:u("settings_ui.cfg_openrouter_key"),kind:"password"},{path:"engines.gemini.api_key",label:u("settings_ui.cfg_gemini_key"),kind:"password"}]}]}function II(){return[{key:"identity",label:u("settings_ui.cfg_project_label"),description:u("settings_ui.cfg_project_desc"),fields:[{path:"name",label:u("settings_ui.cfg_name")},{path:"version",label:u("settings_ui.cfg_version")},{path:"apf",label:u("settings_ui.cfg_apc_spec")},{path:"apx",label:u("settings_ui.cfg_apx_install")},{path:"apx_id",label:u("settings_ui.cfg_apx_storage_id")}]}]}function BI({pid:e}){const t=Ze(),a=Pn(),{project:o,mutate:l}=Cp(e),c=$e(`/projects/${e}/config`,()=>Qn.config.show(e)),d=String(e)==="0";if(c.isLoading)return s.jsx(at,{});if(!c.data)return s.jsx(pt,{children:u("project.config.no_data")});const p=async g=>{await Qn.apcProject.put(e,g),t.success(u("project.config.save_project")),c.mutate()},m=async g=>{await Qn.config.put(e,g),t.success(u("project.config.save_override")),c.mutate()};return s.jsxs("div",{className:"space-y-6",children:[s.jsx(Fe,{title:u("project.config.section_title"),description:u("project.config.section_desc"),children:s.jsxs(Mp,{defaultValue:"override",className:"space-y-4",children:[s.jsxs(Op,{children:[s.jsx(fa,{value:"override",children:"Override"}),s.jsx(fa,{value:"project",children:"APC project"}),s.jsx(fa,{value:"effective",children:"Effective"})]}),s.jsx(Us,{value:"override",children:s.jsx(Fx,{sections:LI(),source:c.data.project_only,placeholderSource:c.data.effective,jsonTitle:c.data.project_config_path,jsonDescription:".apc/config.json. Overrides del proyecto.",onSaveFields:async(g,h)=>{await Qn.config.set(e,g),h.length&&await Qn.config.unset(e,h),t.success(u("project.config.save_fields_success")),c.mutate()},onSaveJson:m})}),s.jsx(Us,{value:"project",children:s.jsx(Fx,{sections:II(),source:c.data.apc_project||{},jsonTitle:c.data.project_json_path,jsonDescription:".apc/project.json. Metadata APC portable.",onSaveFields:async(g,h)=>{await Qn.apcProject.set(e,$I(g),h),t.success(u("project.config.save_meta_success")),c.mutate()},onSaveJson:p})}),s.jsx(Us,{value:"effective",children:s.jsxs("div",{className:"space-y-2",children:[s.jsx("p",{className:"text-xs text-muted-fg",children:u("project.config.effective_read")}),s.jsx("pre",{className:"max-h-96 overflow-auto rounded-lg border border-border bg-muted/40 p-3 text-xs",children:JSON.stringify(c.data.effective,null,2)})]})})]})}),!d&&o?s.jsx(UI,{pid:e,label:o.name||o.path,onRebuilt:()=>c.mutate(),onUnregistered:()=>{l(),a("/")}}):null]})}function UI({pid:e,label:t,onRebuilt:a,onUnregistered:o}){const l=Ze(),[c,d]=x.useState(null),[p,m]=x.useState(null),g=async()=>{d("rebuild");try{await Qn.rebuild(e),l.success(u("project.rebuild_done")),a()}catch(b){l.error(b.message)}finally{d(null),m(null)}},h=async()=>{d("unregister");try{await Qn.remove(e),l.success(u("project.unregistered")),o()}catch(b){l.error(b.message)}finally{d(null),m(null)}};return s.jsxs(s.Fragment,{children:[s.jsx(Fe,{title:u("project.danger.title"),description:u("project.danger.subtitle"),children:s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"flex items-start justify-between gap-3 rounded-md border border-border bg-muted/30 px-3 py-3",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("div",{className:"text-sm font-medium",children:u("project.rebuild")}),s.jsx("div",{className:"text-xs text-muted-fg",children:u("project.danger.rebuild_desc")})]}),s.jsxs(se,{size:"sm",variant:"secondary",onClick:()=>m("rebuild"),children:[s.jsx(Qs,{size:13})," ",u("project.rebuild")]})]}),s.jsxs("div",{className:"flex items-start justify-between gap-3 rounded-md border border-red-500/40 bg-red-500/5 px-3 py-3",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("div",{className:"text-sm font-medium",children:u("admin.unregister")}),s.jsx("div",{className:"text-xs text-muted-fg",children:u("project.danger.unregister_desc")})]}),s.jsxs(se,{size:"sm",variant:"destructive",onClick:()=>m("unregister"),children:[s.jsx(_n,{size:13})," ",u("admin.unregister")]})]})]})}),s.jsx(sn,{open:p==="rebuild",onClose:()=>c?null:m(null),title:u("project.danger.rebuild_confirm_title"),description:u("project.danger.rebuild_confirm_desc",{label:t}),size:"sm",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:()=>m(null),disabled:c!==null,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:g,loading:c==="rebuild",children:u("project.rebuild")})]}),children:s.jsx("p",{className:"text-sm text-muted-fg",children:u("project.danger.rebuild_long")})}),s.jsx(sn,{open:p==="unregister",onClose:()=>c?null:m(null),title:u("project.danger.unregister_confirm_title"),description:u("project.unregister_confirm",{label:t}),size:"sm",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:()=>m(null),disabled:c!==null,children:u("common.cancel")}),s.jsx(se,{variant:"destructive",onClick:h,loading:c==="unregister",children:u("admin.unregister")})]}),children:s.jsx("p",{className:"text-sm text-muted-fg",children:u("project.danger.unregister_long")})})]})}function $I(e){const t={};for(const[a,o]of Object.entries(V_(e)))ds(o)||(t[a]=o);return t}function Fl(e){return String(e||"").trim().toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"").replace(/-{2,}/g,"-")}function sE({open:e,onClose:t,pid:a,editing:o,onSaved:l}){const c=Ze(),[d,p]=x.useState(""),[m,g]=x.useState(""),[h,b]=x.useState(""),[_,j]=x.useState(!1);x.useEffect(()=>{e&&(p(o?.name??""),g(o?.slug??""),b(o?.goal??""))},[e,o]);const E=async()=>{if(d.trim()){j(!0);try{o?await Ir.updateArea(a,o.slug,{name:d,goal:h}):await Ir.createArea(a,{name:d,slug:m||Fl(d),goal:h}),c.success(u("common.saved")),l(),t()}catch(k){c.error(k instanceof Error?k.message:String(k))}finally{j(!1)}}};return s.jsx(sn,{open:e,onClose:t,title:u(o?"structure.edit_area":"structure.new_area"),footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,children:u("common.cancel")}),s.jsx(se,{variant:"primary","data-testid":"area-create",onClick:()=>void E(),loading:_,disabled:!d.trim(),children:u(o?"common.save":"structure.create_area")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("structure.name"),children:s.jsx(Ne,{autoFocus:!0,"data-testid":"area-name",value:d,onChange:k=>{p(k.target.value),o||g(Fl(k.target.value))},placeholder:"Engineering"})}),!o&&s.jsx(ae,{label:u("structure.slug"),children:s.jsx(Ne,{value:m,onChange:k=>g(Fl(k.target.value)),className:"font-mono",placeholder:"engineering"})}),s.jsx(ae,{label:u("structure.goal"),hint:u("structure.goal_hint"),children:s.jsx(un,{value:h,onChange:k=>b(k.target.value),rows:2})})]})})}function aE({open:e,onClose:t,pid:a,areas:o,editing:l,presetArea:c,onSaved:d}){const p=Ze(),[m,g]=x.useState(""),[h,b]=x.useState(""),[_,j]=x.useState(""),[E,k]=x.useState(""),[y,w]=x.useState(!1);x.useEffect(()=>{e&&(g(l?.name??""),b(l?.slug??""),j(l?.area??c??""),k(l?.description??""))},[e,l,c]);const S=async()=>{if(m.trim()){w(!0);try{l?await Ir.updateRole(a,l.slug,{name:m,area:_||null,description:E}):await Ir.createRole(a,{name:m,slug:h||Fl(m),area:_||null,description:E}),p.success(u("common.saved")),d(),t()}catch(R){p.error(R instanceof Error?R.message:String(R))}finally{w(!1)}}},N=[{value:"",label:u("structure.no_area")},...o.map(R=>({value:R.slug,label:R.name}))];return s.jsx(sn,{open:e,onClose:t,title:u(l?"structure.edit_role":"structure.new_role"),footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:()=>void S(),loading:y,disabled:!m.trim(),children:u(l?"common.save":"structure.create_role")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("structure.name"),children:s.jsx(Ne,{autoFocus:!0,value:m,onChange:R=>{g(R.target.value),l||b(Fl(R.target.value))},placeholder:"Tech Lead"})}),!l&&s.jsx(ae,{label:u("structure.slug"),children:s.jsx(Ne,{value:h,onChange:R=>b(Fl(R.target.value)),className:"font-mono",placeholder:"tech-lead"})}),s.jsx(ae,{label:u("structure.area"),children:s.jsx(ut,{value:_,onChange:j,options:N,placeholder:u("structure.no_area")})}),s.jsx(ae,{label:u("structure.description"),children:s.jsx(un,{value:E,onChange:R=>k(R.target.value),rows:2})})]})})}function rE({value:e,onChange:t}){return s.jsx(Ne,{value:e,onChange:a=>t([...a.target.value].slice(-2).join("")),className:"text-center text-lg",placeholder:"🤖","aria-label":u("agents_form.emoji")})}const HI=[{value:"total",labelKey:"auto_total"},{value:"automatico",labelKey:"auto_automatico"},{value:"permiso",labelKey:"auto_permiso"}];function oE({value:e,onChange:t}){return s.jsx("div",{className:"inline-flex w-full rounded-lg border border-border p-0.5",children:HI.map(a=>s.jsx("button",{type:"button",onClick:()=>t(a.value),className:he("flex-1 rounded-md px-2 py-1 text-[12px] font-medium capitalize transition-colors",e===a.value?"bg-primary/15 text-foreground":"text-muted-foreground hover:text-foreground"),children:u(`agents_form.${a.labelKey}`)},a.value))})}function lE({pid:e,area:t,role:a,onArea:o,onRole:l}){const c=$e(`/projects/${e}/organization`,()=>Ir.get(e)),[d,p]=x.useState(!1),[m,g]=x.useState(!1),h=c.data?.areas??[],_=(c.data?.roles??[]).filter(k=>t?k.area===t||k.area===null:!0),j=[{value:"",label:u("structure.no_area")},...h.map(k=>({value:k.slug,label:k.name}))],E=[{value:"",label:u("agents_form.no_role")},..._.map(k=>({value:k.slug,label:k.name}))];return s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("agents_form.area"),children:s.jsxs("div",{className:"flex items-center gap-1",children:[s.jsx(ut,{value:t,onChange:k=>{o(k)},options:j,placeholder:u("structure.no_area"),className:"flex-1"}),s.jsx(Uk,{label:u("structure.new_area"),onClick:()=>p(!0)})]})}),s.jsx(ae,{label:u("agents_form.role"),children:s.jsxs("div",{className:"flex items-center gap-1",children:[s.jsx(ut,{value:a,onChange:l,options:E,placeholder:u("agents_form.no_role"),className:"flex-1"}),s.jsx(Uk,{label:u("structure.new_role"),onClick:()=>g(!0)})]})})]}),s.jsx(sE,{open:d,onClose:()=>p(!1),pid:e,onSaved:()=>void c.mutate()}),s.jsx(aE,{open:m,onClose:()=>g(!1),pid:e,areas:h,presetArea:t||null,onSaved:()=>void c.mutate()})]})}function Uk({label:e,onClick:t}){return s.jsx("button",{type:"button",onClick:t,title:e,"aria-label":e,className:"flex size-9 shrink-0 items-center justify-center rounded-lg border border-border text-muted-foreground hover:bg-accent hover:text-foreground",children:s.jsx(It,{className:"size-4"})})}function iE({open:e,onClose:t,onConfirm:a,title:o,description:l,confirmLabel:c,destructive:d=!0}){const[p,m]=x.useState(!1),g=async()=>{m(!0);try{await a(),t()}finally{m(!1)}};return s.jsx(sn,{open:e,onClose:t,title:o,footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:p,children:u("common.cancel")}),s.jsx(se,{variant:d?"destructive":"primary",onClick:()=>void g(),loading:p,children:c??u("common.confirm")})]}),children:s.jsx("p",{className:"text-sm text-muted-foreground",children:l})})}function VI(e,t){var a,o=1;e==null&&(e=0),t==null&&(t=0);function l(){var c,d=a.length,p,m=0,g=0;for(c=0;c<d;++c)p=a[c],m+=p.x,g+=p.y;for(m=(m/d-e)*o,g=(g/d-t)*o,c=0;c<d;++c)p=a[c],p.x-=m,p.y-=g}return l.initialize=function(c){a=c},l.x=function(c){return arguments.length?(e=+c,l):e},l.y=function(c){return arguments.length?(t=+c,l):t},l.strength=function(c){return arguments.length?(o=+c,l):o},l}function qI(e){const t=+this._x.call(null,e),a=+this._y.call(null,e);return cE(this.cover(t,a),t,a,e)}function cE(e,t,a,o){if(isNaN(t)||isNaN(a))return e;var l,c=e._root,d={data:o},p=e._x0,m=e._y0,g=e._x1,h=e._y1,b,_,j,E,k,y,w,S;if(!c)return e._root=d,e;for(;c.length;)if((k=t>=(b=(p+g)/2))?p=b:g=b,(y=a>=(_=(m+h)/2))?m=_:h=_,l=c,!(c=c[w=y<<1|k]))return l[w]=d,e;if(j=+e._x.call(null,c.data),E=+e._y.call(null,c.data),t===j&&a===E)return d.next=c,l?l[w]=d:e._root=d,e;do l=l?l[w]=new Array(4):e._root=new Array(4),(k=t>=(b=(p+g)/2))?p=b:g=b,(y=a>=(_=(m+h)/2))?m=_:h=_;while((w=y<<1|k)===(S=(E>=_)<<1|j>=b));return l[S]=c,l[w]=d,e}function FI(e){var t,a,o=e.length,l,c,d=new Array(o),p=new Array(o),m=1/0,g=1/0,h=-1/0,b=-1/0;for(a=0;a<o;++a)isNaN(l=+this._x.call(null,t=e[a]))||isNaN(c=+this._y.call(null,t))||(d[a]=l,p[a]=c,l<m&&(m=l),l>h&&(h=l),c<g&&(g=c),c>b&&(b=c));if(m>h||g>b)return this;for(this.cover(m,g).cover(h,b),a=0;a<o;++a)cE(this,d[a],p[a],e[a]);return this}function GI(e,t){if(isNaN(e=+e)||isNaN(t=+t))return this;var a=this._x0,o=this._y0,l=this._x1,c=this._y1;if(isNaN(a))l=(a=Math.floor(e))+1,c=(o=Math.floor(t))+1;else{for(var d=l-a||1,p=this._root,m,g;a>e||e>=l||o>t||t>=c;)switch(g=(t<o)<<1|e<a,m=new Array(4),m[g]=p,p=m,d*=2,g){case 0:l=a+d,c=o+d;break;case 1:a=l-d,c=o+d;break;case 2:l=a+d,o=c-d;break;case 3:a=l-d,o=c-d;break}this._root&&this._root.length&&(this._root=p)}return this._x0=a,this._y0=o,this._x1=l,this._y1=c,this}function YI(){var e=[];return this.visit(function(t){if(!t.length)do e.push(t.data);while(t=t.next)}),e}function KI(e){return arguments.length?this.cover(+e[0][0],+e[0][1]).cover(+e[1][0],+e[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]}function Zn(e,t,a,o,l){this.node=e,this.x0=t,this.y0=a,this.x1=o,this.y1=l}function XI(e,t,a){var o,l=this._x0,c=this._y0,d,p,m,g,h=this._x1,b=this._y1,_=[],j=this._root,E,k;for(j&&_.push(new Zn(j,l,c,h,b)),a==null?a=1/0:(l=e-a,c=t-a,h=e+a,b=t+a,a*=a);E=_.pop();)if(!(!(j=E.node)||(d=E.x0)>h||(p=E.y0)>b||(m=E.x1)<l||(g=E.y1)<c))if(j.length){var y=(d+m)/2,w=(p+g)/2;_.push(new Zn(j[3],y,w,m,g),new Zn(j[2],d,w,y,g),new Zn(j[1],y,p,m,w),new Zn(j[0],d,p,y,w)),(k=(t>=w)<<1|e>=y)&&(E=_[_.length-1],_[_.length-1]=_[_.length-1-k],_[_.length-1-k]=E)}else{var S=e-+this._x.call(null,j.data),N=t-+this._y.call(null,j.data),R=S*S+N*N;if(R<a){var A=Math.sqrt(a=R);l=e-A,c=t-A,h=e+A,b=t+A,o=j.data}}return o}function QI(e){if(isNaN(h=+this._x.call(null,e))||isNaN(b=+this._y.call(null,e)))return this;var t,a=this._root,o,l,c,d=this._x0,p=this._y0,m=this._x1,g=this._y1,h,b,_,j,E,k,y,w;if(!a)return this;if(a.length)for(;;){if((E=h>=(_=(d+m)/2))?d=_:m=_,(k=b>=(j=(p+g)/2))?p=j:g=j,t=a,!(a=a[y=k<<1|E]))return this;if(!a.length)break;(t[y+1&3]||t[y+2&3]||t[y+3&3])&&(o=t,w=y)}for(;a.data!==e;)if(l=a,!(a=a.next))return this;return(c=a.next)&&delete a.next,l?(c?l.next=c:delete l.next,this):t?(c?t[y]=c:delete t[y],(a=t[0]||t[1]||t[2]||t[3])&&a===(t[3]||t[2]||t[1]||t[0])&&!a.length&&(o?o[w]=a:this._root=a),this):(this._root=c,this)}function WI(e){for(var t=0,a=e.length;t<a;++t)this.remove(e[t]);return this}function ZI(){return this._root}function JI(){var e=0;return this.visit(function(t){if(!t.length)do++e;while(t=t.next)}),e}function e8(e){var t=[],a,o=this._root,l,c,d,p,m;for(o&&t.push(new Zn(o,this._x0,this._y0,this._x1,this._y1));a=t.pop();)if(!e(o=a.node,c=a.x0,d=a.y0,p=a.x1,m=a.y1)&&o.length){var g=(c+p)/2,h=(d+m)/2;(l=o[3])&&t.push(new Zn(l,g,h,p,m)),(l=o[2])&&t.push(new Zn(l,c,h,g,m)),(l=o[1])&&t.push(new Zn(l,g,d,p,h)),(l=o[0])&&t.push(new Zn(l,c,d,g,h))}return this}function t8(e){var t=[],a=[],o;for(this._root&&t.push(new Zn(this._root,this._x0,this._y0,this._x1,this._y1));o=t.pop();){var l=o.node;if(l.length){var c,d=o.x0,p=o.y0,m=o.x1,g=o.y1,h=(d+m)/2,b=(p+g)/2;(c=l[0])&&t.push(new Zn(c,d,p,h,b)),(c=l[1])&&t.push(new Zn(c,h,p,m,b)),(c=l[2])&&t.push(new Zn(c,d,b,h,g)),(c=l[3])&&t.push(new Zn(c,h,b,m,g))}a.push(o)}for(;o=a.pop();)e(o.node,o.x0,o.y0,o.x1,o.y1);return this}function n8(e){return e[0]}function s8(e){return arguments.length?(this._x=e,this):this._x}function a8(e){return e[1]}function r8(e){return arguments.length?(this._y=e,this):this._y}function q_(e,t,a){var o=new F_(t??n8,a??a8,NaN,NaN,NaN,NaN);return e==null?o:o.addAll(e)}function F_(e,t,a,o,l,c){this._x=e,this._y=t,this._x0=a,this._y0=o,this._x1=l,this._y1=c,this._root=void 0}function $k(e){for(var t={data:e.data},a=t;e=e.next;)a=a.next={data:e.data};return t}var ss=q_.prototype=F_.prototype;ss.copy=function(){var e=new F_(this._x,this._y,this._x0,this._y0,this._x1,this._y1),t=this._root,a,o;if(!t)return e;if(!t.length)return e._root=$k(t),e;for(a=[{source:t,target:e._root=new Array(4)}];t=a.pop();)for(var l=0;l<4;++l)(o=t.source[l])&&(o.length?a.push({source:o,target:t.target[l]=new Array(4)}):t.target[l]=$k(o));return e};ss.add=qI;ss.addAll=FI;ss.cover=GI;ss.data=YI;ss.extent=KI;ss.find=XI;ss.remove=QI;ss.removeAll=WI;ss.root=ZI;ss.size=JI;ss.visit=e8;ss.visitAfter=t8;ss.x=s8;ss.y=r8;function No(e){return function(){return e}}function Pr(e){return(e()-.5)*1e-6}function o8(e){return e.x+e.vx}function l8(e){return e.y+e.vy}function i8(e){var t,a,o,l=1,c=1;typeof e!="function"&&(e=No(e==null?1:+e));function d(){for(var g,h=t.length,b,_,j,E,k,y,w=0;w<c;++w)for(b=q_(t,o8,l8).visitAfter(p),g=0;g<h;++g)_=t[g],k=a[_.index],y=k*k,j=_.x+_.vx,E=_.y+_.vy,b.visit(S);function S(N,R,A,T,O){var z=N.data,U=N.r,P=k+U;if(z){if(z.index>_.index){var B=j-z.x-z.vx,D=E-z.y-z.vy,L=B*B+D*D;L<P*P&&(B===0&&(B=Pr(o),L+=B*B),D===0&&(D=Pr(o),L+=D*D),L=(P-(L=Math.sqrt(L)))/L*l,_.vx+=(B*=L)*(P=(U*=U)/(y+U)),_.vy+=(D*=L)*P,z.vx-=B*(P=1-P),z.vy-=D*P)}return}return R>j+P||T<j-P||A>E+P||O<E-P}}function p(g){if(g.data)return g.r=a[g.data.index];for(var h=g.r=0;h<4;++h)g[h]&&g[h].r>g.r&&(g.r=g[h].r)}function m(){if(t){var g,h=t.length,b;for(a=new Array(h),g=0;g<h;++g)b=t[g],a[b.index]=+e(b,g,t)}}return d.initialize=function(g,h){t=g,o=h,m()},d.iterations=function(g){return arguments.length?(c=+g,d):c},d.strength=function(g){return arguments.length?(l=+g,d):l},d.radius=function(g){return arguments.length?(e=typeof g=="function"?g:No(+g),m(),d):e},d}function c8(e){return e.index}function Hk(e,t){var a=e.get(t);if(!a)throw new Error("node not found: "+t);return a}function u8(e){var t=c8,a=b,o,l=No(30),c,d,p,m,g,h=1;e==null&&(e=[]);function b(y){return 1/Math.min(p[y.source.index],p[y.target.index])}function _(y){for(var w=0,S=e.length;w<h;++w)for(var N=0,R,A,T,O,z,U,P;N<S;++N)R=e[N],A=R.source,T=R.target,O=T.x+T.vx-A.x-A.vx||Pr(g),z=T.y+T.vy-A.y-A.vy||Pr(g),U=Math.sqrt(O*O+z*z),U=(U-c[N])/U*y*o[N],O*=U,z*=U,T.vx-=O*(P=m[N]),T.vy-=z*P,A.vx+=O*(P=1-P),A.vy+=z*P}function j(){if(d){var y,w=d.length,S=e.length,N=new Map(d.map((A,T)=>[t(A,T,d),A])),R;for(y=0,p=new Array(w);y<S;++y)R=e[y],R.index=y,typeof R.source!="object"&&(R.source=Hk(N,R.source)),typeof R.target!="object"&&(R.target=Hk(N,R.target)),p[R.source.index]=(p[R.source.index]||0)+1,p[R.target.index]=(p[R.target.index]||0)+1;for(y=0,m=new Array(S);y<S;++y)R=e[y],m[y]=p[R.source.index]/(p[R.source.index]+p[R.target.index]);o=new Array(S),E(),c=new Array(S),k()}}function E(){if(d)for(var y=0,w=e.length;y<w;++y)o[y]=+a(e[y],y,e)}function k(){if(d)for(var y=0,w=e.length;y<w;++y)c[y]=+l(e[y],y,e)}return _.initialize=function(y,w){d=y,g=w,j()},_.links=function(y){return arguments.length?(e=y,j(),_):e},_.id=function(y){return arguments.length?(t=y,_):t},_.iterations=function(y){return arguments.length?(h=+y,_):h},_.strength=function(y){return arguments.length?(a=typeof y=="function"?y:No(+y),E(),_):a},_.distance=function(y){return arguments.length?(l=typeof y=="function"?y:No(+y),k(),_):l},_}var d8={value:()=>{}};function uE(){for(var e=0,t=arguments.length,a={},o;e<t;++e){if(!(o=arguments[e]+"")||o in a||/[\s.]/.test(o))throw new Error("illegal type: "+o);a[o]=[]}return new uf(a)}function uf(e){this._=e}function f8(e,t){return e.trim().split(/^|\s+/).map(function(a){var o="",l=a.indexOf(".");if(l>=0&&(o=a.slice(l+1),a=a.slice(0,l)),a&&!t.hasOwnProperty(a))throw new Error("unknown type: "+a);return{type:a,name:o}})}uf.prototype=uE.prototype={constructor:uf,on:function(e,t){var a=this._,o=f8(e+"",a),l,c=-1,d=o.length;if(arguments.length<2){for(;++c<d;)if((l=(e=o[c]).type)&&(l=p8(a[l],e.name)))return l;return}if(t!=null&&typeof t!="function")throw new Error("invalid callback: "+t);for(;++c<d;)if(l=(e=o[c]).type)a[l]=Vk(a[l],e.name,t);else if(t==null)for(l in a)a[l]=Vk(a[l],e.name,null);return this},copy:function(){var e={},t=this._;for(var a in t)e[a]=t[a].slice();return new uf(e)},call:function(e,t){if((l=arguments.length-2)>0)for(var a=new Array(l),o=0,l,c;o<l;++o)a[o]=arguments[o+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(c=this._[e],o=0,l=c.length;o<l;++o)c[o].value.apply(t,a)},apply:function(e,t,a){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var o=this._[e],l=0,c=o.length;l<c;++l)o[l].value.apply(t,a)}};function p8(e,t){for(var a=0,o=e.length,l;a<o;++a)if((l=e[a]).name===t)return l.value}function Vk(e,t,a){for(var o=0,l=e.length;o<l;++o)if(e[o].name===t){e[o]=d8,e=e.slice(0,o).concat(e.slice(o+1));break}return a!=null&&e.push({name:t,value:a}),e}var ai=0,Rc=0,gc=0,dE=1e3,qf,Tc,Ff=0,Lo=0,zp=0,Wc=typeof performance=="object"&&performance.now?performance:Date,fE=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function pE(){return Lo||(fE(m8),Lo=Wc.now()+zp)}function m8(){Lo=0}function Gx(){this._call=this._time=this._next=null}Gx.prototype=mE.prototype={constructor:Gx,restart:function(e,t,a){if(typeof e!="function")throw new TypeError("callback is not a function");a=(a==null?pE():+a)+(t==null?0:+t),!this._next&&Tc!==this&&(Tc?Tc._next=this:qf=this,Tc=this),this._call=e,this._time=a,Yx()},stop:function(){this._call&&(this._call=null,this._time=1/0,Yx())}};function mE(e,t,a){var o=new Gx;return o.restart(e,t,a),o}function g8(){pE(),++ai;for(var e=qf,t;e;)(t=Lo-e._time)>=0&&e._call.call(void 0,t),e=e._next;--ai}function qk(){Lo=(Ff=Wc.now())+zp,ai=Rc=0;try{g8()}finally{ai=0,x8(),Lo=0}}function h8(){var e=Wc.now(),t=e-Ff;t>dE&&(zp-=t,Ff=e)}function x8(){for(var e,t=qf,a,o=1/0;t;)t._call?(o>t._time&&(o=t._time),e=t,t=t._next):(a=t._next,t._next=null,t=e?e._next=a:qf=a);Tc=e,Yx(o)}function Yx(e){if(!ai){Rc&&(Rc=clearTimeout(Rc));var t=e-Lo;t>24?(e<1/0&&(Rc=setTimeout(qk,e-Wc.now()-zp)),gc&&(gc=clearInterval(gc))):(gc||(Ff=Wc.now(),gc=setInterval(h8,dE)),ai=1,fE(qk))}}const b8=1664525,_8=1013904223,Fk=4294967296;function v8(){let e=1;return()=>(e=(b8*e+_8)%Fk)/Fk}function y8(e){return e.x}function j8(e){return e.y}var k8=10,w8=Math.PI*(3-Math.sqrt(5));function S8(e){var t,a=1,o=.001,l=1-Math.pow(o,1/300),c=0,d=.6,p=new Map,m=mE(b),g=uE("tick","end"),h=v8();e==null&&(e=[]);function b(){_(),g.call("tick",t),a<o&&(m.stop(),g.call("end",t))}function _(k){var y,w=e.length,S;k===void 0&&(k=1);for(var N=0;N<k;++N)for(a+=(c-a)*l,p.forEach(function(R){R(a)}),y=0;y<w;++y)S=e[y],S.fx==null?S.x+=S.vx*=d:(S.x=S.fx,S.vx=0),S.fy==null?S.y+=S.vy*=d:(S.y=S.fy,S.vy=0);return t}function j(){for(var k=0,y=e.length,w;k<y;++k){if(w=e[k],w.index=k,w.fx!=null&&(w.x=w.fx),w.fy!=null&&(w.y=w.fy),isNaN(w.x)||isNaN(w.y)){var S=k8*Math.sqrt(.5+k),N=k*w8;w.x=S*Math.cos(N),w.y=S*Math.sin(N)}(isNaN(w.vx)||isNaN(w.vy))&&(w.vx=w.vy=0)}}function E(k){return k.initialize&&k.initialize(e,h),k}return j(),t={tick:_,restart:function(){return m.restart(b),t},stop:function(){return m.stop(),t},nodes:function(k){return arguments.length?(e=k,j(),p.forEach(E),t):e},alpha:function(k){return arguments.length?(a=+k,t):a},alphaMin:function(k){return arguments.length?(o=+k,t):o},alphaDecay:function(k){return arguments.length?(l=+k,t):+l},alphaTarget:function(k){return arguments.length?(c=+k,t):c},velocityDecay:function(k){return arguments.length?(d=1-k,t):1-d},randomSource:function(k){return arguments.length?(h=k,p.forEach(E),t):h},force:function(k,y){return arguments.length>1?(y==null?p.delete(k):p.set(k,E(y)),t):p.get(k)},find:function(k,y,w){var S=0,N=e.length,R,A,T,O,z;for(w==null?w=1/0:w*=w,S=0;S<N;++S)O=e[S],R=k-O.x,A=y-O.y,T=R*R+A*A,T<w&&(z=O,w=T);return z},on:function(k,y){return arguments.length>1?(g.on(k,y),t):g.on(k)}}}function C8(){var e,t,a,o,l=No(-30),c,d=1,p=1/0,m=.81;function g(j){var E,k=e.length,y=q_(e,y8,j8).visitAfter(b);for(o=j,E=0;E<k;++E)t=e[E],y.visit(_)}function h(){if(e){var j,E=e.length,k;for(c=new Array(E),j=0;j<E;++j)k=e[j],c[k.index]=+l(k,j,e)}}function b(j){var E=0,k,y,w=0,S,N,R;if(j.length){for(S=N=R=0;R<4;++R)(k=j[R])&&(y=Math.abs(k.value))&&(E+=k.value,w+=y,S+=y*k.x,N+=y*k.y);j.x=S/w,j.y=N/w}else{k=j,k.x=k.data.x,k.y=k.data.y;do E+=c[k.data.index];while(k=k.next)}j.value=E}function _(j,E,k,y){if(!j.value)return!0;var w=j.x-t.x,S=j.y-t.y,N=y-E,R=w*w+S*S;if(N*N/m<R)return R<p&&(w===0&&(w=Pr(a),R+=w*w),S===0&&(S=Pr(a),R+=S*S),R<d&&(R=Math.sqrt(d*R)),t.vx+=w*j.value*o/R,t.vy+=S*j.value*o/R),!0;if(j.length||R>=p)return;(j.data!==t||j.next)&&(w===0&&(w=Pr(a),R+=w*w),S===0&&(S=Pr(a),R+=S*S),R<d&&(R=Math.sqrt(d*R)));do j.data!==t&&(N=c[j.data.index]*o/R,t.vx+=w*N,t.vy+=S*N);while(j=j.next)}return g.initialize=function(j,E){e=j,a=E,h()},g.strength=function(j){return arguments.length?(l=typeof j=="function"?j:No(+j),h(),g):l},g.distanceMin=function(j){return arguments.length?(d=j*j,g):Math.sqrt(d)},g.distanceMax=function(j){return arguments.length?(p=j*j,g):Math.sqrt(p)},g.theta=function(j){return arguments.length?(m=j*j,g):Math.sqrt(m)},g}const hc={agent:"#a78bfa",memory:"#38bdf8",thread:"#34d399",task:"#fbbf24",routine:"#f472b6",agentlink:"#c084fc"};function N8(){return{agent:u("agents_ui.kind_agent"),memory:u("agents_ui.kind_memory"),thread:u("agents_ui.kind_thread"),task:u("agents_ui.kind_task"),routine:u("agents_ui.kind_routine"),agentlink:u("agents_ui.kind_hierarchy")}}const xc=760,bc=460;function E8({center:e,nodes:t}){const a=x.useRef(null),o=x.useRef(null),l=x.useRef([]),c=x.useRef([]),d=x.useRef(null),[,p]=x.useState(0),[m,g]=x.useState(null);x.useEffect(()=>{const y={id:"__center",label:e,kind:"agent",relation:"self",x:xc/2,y:bc/2,fx:xc/2,fy:bc/2},w=[y,...t.map(R=>({...R}))],S=w.slice(1).map(R=>({source:y,target:R}));l.current=w,c.current=S;const N=S8(w).force("link",u8(S).distance(120).strength(.5)).force("charge",C8().strength(-220)).force("center",VI(xc/2,bc/2).strength(.05)).force("collide",i8(26)).on("tick",()=>p(R=>R+1));return o.current=N,()=>{N.stop()}},[e,t]);const h=y=>{const w=a.current.getBoundingClientRect();return{x:(y.clientX-w.left)/w.width*xc,y:(y.clientY-w.top)/w.height*bc}},b=y=>w=>{y.id!=="__center"&&(d.current=y,w.target.setPointerCapture?.(w.pointerId),o.current?.alphaTarget(.3).restart())},_=y=>{const w=d.current;if(!w)return;const{x:S,y:N}=h(y);w.fx=S,w.fy=N},j=()=>{const y=d.current;y&&(y.fx=null,y.fy=null),d.current=null,o.current?.alphaTarget(0)},E=l.current,k=c.current;return s.jsxs("div",{className:"space-y-3",children:[s.jsx("div",{className:"overflow-hidden rounded-xl border border-border bg-muted/10",children:s.jsxs("svg",{ref:a,viewBox:`0 0 ${xc} ${bc}`,className:"h-[460px] w-full touch-none select-none",onPointerMove:_,onPointerUp:j,onPointerLeave:j,children:[k.map((y,w)=>s.jsx("line",{x1:y.source.x,y1:y.source.y,x2:y.target.x,y2:y.target.y,stroke:hc[y.target.kind],strokeOpacity:.22,strokeWidth:1.5},w)),E.map(y=>{if(y.id==="__center")return s.jsxs("g",{transform:`translate(${y.x},${y.y})`,children:[s.jsx("circle",{r:22,fill:hc.agent}),s.jsx("text",{textAnchor:"middle",y:4,fontSize:11,fontWeight:700,fill:"#1a1a1a",children:e.length>8?e.slice(0,8):e})]},y.id);const w=m?.id===y.id;return s.jsxs("g",{transform:`translate(${y.x},${y.y})`,className:"cursor-grab active:cursor-grabbing",onPointerDown:b(y),onClick:()=>g(y),children:[s.jsx("circle",{r:w?9:6,fill:hc[y.kind],fillOpacity:w?1:.9,stroke:w?"#fff":"none",strokeWidth:w?2:0}),s.jsx("text",{x:10,y:4,fontSize:10,className:"fill-foreground/80",children:y.label.length>22?`${y.label.slice(0,22)}…`:y.label})]},y.id)})]})}),s.jsxs("div",{className:"flex flex-wrap items-center gap-3 text-[11px] text-muted-fg",children:[(()=>{const y=N8();return Object.keys(y).filter(w=>w!=="agent").map(w=>s.jsxs("span",{className:"inline-flex items-center gap-1",children:[s.jsx("span",{className:"size-2 rounded-full",style:{background:hc[w]}})," ",y[w]]},w))})(),s.jsx("span",{className:"ml-auto",children:u("agents_ui.nodes_drag_hint",{n:String(t.length)})})]}),m&&s.jsxs("div",{className:"rounded-lg border border-border bg-card p-3 text-xs",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:"size-2 rounded-full",style:{background:hc[m.kind]}}),s.jsx("span",{className:"font-medium",children:m.label}),s.jsxs("span",{className:"text-muted-fg",children:["· ",m.relation]})]}),m.detail&&s.jsx("p",{className:"mt-1 whitespace-pre-wrap text-muted-fg",children:m.detail})]})]})}function R8(){return[{key:"overview",label:u("agents_ui.tab_explorer"),icon:Zf},{key:"memories",label:u("project.nav.memories"),icon:gf},{key:"records",label:u("project.agent_detail.records_title"),icon:db},{key:"sleep",label:u("project.agent_detail.sleep_title"),icon:Eo},{key:"brain",label:u("project.agent_detail.brain_title"),icon:Vs},{key:"config",label:u("settings.tabs.advanced"),icon:Vc}]}function gE(){return[{value:"",label:u("agents_ui.type_none")},{value:"orchestrator",label:u("agents_ui.type_orchestrator"),description:u("agents_ui.type_orchestrator_desc")},{value:"specialist",label:u("agents_ui.type_specialist"),description:u("agents_ui.type_specialist_desc")},{value:"assistant",label:u("agents_ui.type_assistant"),description:u("agents_ui.type_assistant_desc")},{value:"worker",label:u("agents_ui.type_worker"),description:u("agents_ui.type_worker_desc")},{value:"monitor",label:u("agents_ui.type_monitor"),description:u("agents_ui.type_monitor_desc")}]}const Kx=e=>e.split(",").map(t=>t.trim()).filter(Boolean),T8=(e,t)=>e.filter(a=>a.spec?.agent===t||t==="super-agent"&&a.kind==="super_agent");function A8(e){return e.split(`
743
- `).map(t=>t.replace(/^[-*#>\s]+/,"").trim()).filter(t=>t.length>2&&!t.startsWith("```")).slice(0,12)}function M8({pid:e}){const{slug:t=""}=jS(),a=Pn(),[o,l]=x.useState("overview"),c=R8(),d=$e(`/projects/${e}/agents/${t}`,()=>cn.get(e,t)),p=$e(`/projects/${e}/agents`,()=>cn.list(e)),m=$e(`/projects/${e}/routines`,()=>Mr.list(e)),g=$e(`/projects/${e}/messages?agent=${t}`,()=>Pf.project(e,{agent:t,limit:200})),h=$e(`/projects/${e}/agents/${t}/conversations`,()=>zo.list(e,t)),b=$e(`/projects/${e}/tasks?all`,()=>Wn.list(e,"all")),_=d.data,j=T8(m.data||[],t),E=(b.data||[]).filter(w=>w.agent===t),k=(p.data||[]).filter(w=>w.parent===t);if(d.isLoading)return s.jsx(at,{});if(!_)return s.jsx("div",{className:"text-sm text-muted-fg",children:u("project.agent_detail.not_found")});const y=_.is_master?xa:on;return s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex items-start justify-between gap-3",children:[s.jsxs("div",{className:"flex items-start gap-3",children:[s.jsx("button",{onClick:()=>a(`/p/${e}/agents`),className:"mt-1 text-muted-fg hover:text-foreground",children:s.jsx(d5,{size:16})}),s.jsx("div",{className:he("flex size-11 items-center justify-center rounded-xl bg-gradient-to-br",_.is_master?"from-violet-600 to-indigo-600":"from-slate-600 to-gray-600"),children:s.jsx(y,{className:"size-5 text-white"})}),s.jsxs("div",{children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2",children:[s.jsx("h1",{className:"text-lg font-semibold",children:_.slug}),_.is_master&&s.jsxs(He,{tone:"success",children:[s.jsx(xa,{size:10})," ",u("project.agents.orchestrator")]}),_.role&&s.jsx(He,{children:_.role}),_.model&&s.jsx(He,{tone:"info",children:_.model}),_.parent&&s.jsxs("button",{onClick:()=>a(`/p/${e}/agents/${_.parent}`),className:"text-[11px] text-violet-400 hover:underline",children:[u("project.agent_detail.reports_to")," ",_.parent]})]}),_.description&&s.jsx("p",{className:"mt-0.5 max-w-2xl text-xs text-muted-fg",children:_.description})]})]}),s.jsxs(se,{size:"sm",variant:"primary",onClick:()=>a(`/p/${e}/chat?agent=${t}`),children:[s.jsx(Js,{size:13})," ",u("project.agent_detail.chat_btn",{slug:_.slug})]})]}),s.jsx("div",{className:"flex flex-wrap gap-1 border-b border-border",children:c.map(({key:w,label:S,icon:N})=>s.jsxs("button",{onClick:()=>l(w),className:he("flex items-center gap-1.5 border-b-2 px-3 py-2 text-sm transition-colors -mb-px",o===w?"border-foreground text-foreground":"border-transparent text-muted-fg hover:text-foreground"),children:[s.jsx(N,{size:14})," ",S]},w))}),o==="overview"&&s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-3 sm:grid-cols-4",children:[s.jsx(Gd,{label:u("agents_ui.stat_threads"),value:h.data?.length??0,icon:bf}),s.jsx(Gd,{label:u("agents_ui.stat_records"),value:g.data?.length??0,icon:db}),s.jsx(Gd,{label:u("agents_ui.stat_tasks"),value:E.length,icon:Zf}),s.jsx(Gd,{label:u("agents_ui.stat_heartbeats"),value:j.length,icon:Eo})]}),s.jsxs("div",{className:"grid gap-3 sm:grid-cols-2",children:[s.jsx(Fe,{title:u("agent_detail_extra.skills_title"),description:"",children:s.jsxs("div",{className:"flex flex-wrap gap-1",children:[_.skills?.map(w=>s.jsxs(He,{tone:"info",children:[s.jsx(Vs,{size:10})," ",w]},w)),_.tools?.map(w=>s.jsxs(He,{children:[s.jsx(ea,{size:10})," ",w]},w)),!_.skills?.length&&!_.tools?.length&&s.jsx("span",{className:"text-xs text-muted-fg",children:"—"})]})}),s.jsx(Fe,{title:u("project.agent_detail.threads_recent"),description:"",children:s.jsxs("ul",{className:"space-y-1 text-xs",children:[(h.data||[]).slice(0,6).map(w=>s.jsxs("li",{className:"flex items-center justify-between rounded-md bg-muted/30 px-2 py-1",children:[s.jsx("span",{className:"truncate",children:w.title||w.filename}),s.jsxs("span",{className:"shrink-0 text-muted-fg",children:[w.messages??0," ",u("project.agent_detail.msgs_count")]})]},w.id)),!h.data?.length&&s.jsx("li",{className:"text-muted-fg",children:u("project.agent_detail.no_threads")})]})})]}),k.length>0&&s.jsx(Fe,{title:u("project.agent_detail.subagents"),description:u("project.agent_detail.subagents_desc"),children:s.jsx("div",{className:"flex flex-wrap gap-2",children:k.map(w=>s.jsxs("button",{onClick:()=>a(`/p/${e}/agents/${w.slug}`),className:"flex items-center gap-2 rounded-lg border border-border bg-muted/30 px-3 py-1.5 text-sm hover:border-muted-fg/50",children:[s.jsx(on,{size:14,className:"text-muted-fg"})," ",w.slug]},w.slug))})})]}),o==="memories"&&s.jsx(z8,{pid:e,slug:t,initial:_.memory||"",onSaved:()=>d.mutate()}),o==="records"&&s.jsx(D8,{records:g.data||[],loading:g.isLoading}),o==="sleep"&&s.jsx(P8,{routines:j}),o==="brain"&&s.jsx(I8,{slug:t,memory:_.memory||"",threads:(h.data||[]).map(w=>({id:w.id,label:w.title||w.filename})),tasks:E.map(w=>({id:w.id,label:w.title,detail:w.body||void 0})),routines:j,parent:_.parent||null,children:k.map(w=>w.slug)}),o==="config"&&s.jsx(O8,{pid:e,agent:_,agents:p.data||[],onSaved:()=>{d.mutate(),p.mutate()},onDeleted:()=>{p.mutate(),a(`/p/${e}/agents`)}})]})}function O8({pid:e,agent:t,agents:a,onSaved:o,onDeleted:l}){const c=Ze(),[d,p]=x.useState(t.emoji||""),[m,g]=x.useState(t.type||""),[h,b]=x.useState(t.area||""),[_,j]=x.useState(t.role||""),[E,k]=x.useState(t.autonomy||""),[y,w]=x.useState(t.model||""),[S,N]=x.useState(t.parent||""),[R,A]=x.useState(!!t.is_master),[T,O]=x.useState((t.skills||[]).join(", ")),[z,U]=x.useState((t.tools||[]).join(", ")),[P,B]=x.useState(t.description||""),[D,L]=x.useState(t.system||""),[$,V]=x.useState(!1),[H,F]=x.useState(!1),Y=async()=>{V(!0);try{await cn.update(e,t.slug,{emoji:d||null,type:m||null,area:h||null,role:_||null,autonomy:E||null,model:y||null,parent:S||null,is_master:R||m==="orchestrator",skills:Kx(T),tools:Kx(z),description:P||null,system:D}),c.success(u("project.agent_detail.update_success")),o()}catch(K){c.error(K.message)}finally{V(!1)}},G=async()=>{await cn.remove(e,t.slug),c.success(u("project.agent_detail.delete_success")),l()};return s.jsxs(Fe,{title:u("project.agent_detail.config_title"),description:`.apc/agents/${t.slug}.md — ${u("agents_ui.config_def_desc")}`,children:[s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"grid grid-cols-[80px_1fr] gap-3",children:[s.jsx(ae,{label:u("agents_form.emoji"),children:s.jsx(rE,{value:d,onChange:p})}),s.jsx(ae,{label:u("project.agent_detail.type_label"),children:s.jsx(ut,{value:m,onChange:g,options:gE()})})]}),s.jsx(lE,{pid:e,area:h,role:_,onArea:b,onRole:j}),s.jsx(ae,{label:u("agents_form.autonomy"),hint:u("agents_form.autonomy_hint"),children:s.jsx(oE,{value:E,onChange:k})}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("project.agent_detail.parent_label"),children:s.jsx(ut,{value:S,onChange:N,placeholder:u("project.agent_detail.none_parent"),options:[{value:"",label:u("project.agent_detail.none_parent")},...a.filter(K=>K.slug!==t.slug).map(K=>({value:K.slug,label:K.slug}))]})}),s.jsx(ae,{label:u("project.agent_detail.model_label"),hint:u("project.agent_detail.model_hint"),children:s.jsx(Ne,{value:y,onChange:K=>w(K.target.value),placeholder:u("project.agent_detail.model_ph")})})]}),s.jsx(ae,{label:u("project.agent_detail.skills_label"),children:s.jsx(Ne,{value:T,onChange:K=>O(K.target.value),placeholder:"skill-a, skill-b"})}),s.jsx(L8,{value:z,onChange:U}),s.jsx(ae,{label:u("project.agent_detail.bio_label"),children:s.jsx(un,{rows:2,value:P,onChange:K=>B(K.target.value)})}),s.jsx(ae,{label:u("project.agent_detail.system_label"),hint:u("project.agent_detail.system_hint"),children:s.jsx(un,{rows:10,className:"font-mono text-xs",value:D,onChange:K=>L(K.target.value),placeholder:"You are…"})}),s.jsx(Gt,{checked:R,onChange:A,label:u("project.agent_detail.master_label")}),s.jsxs("div",{className:"flex items-center justify-between border-t border-border pt-3",children:[s.jsxs(se,{variant:"destructive",onClick:()=>F(!0),children:[s.jsx(_n,{size:13})," ",u("project.agent_detail.delete_btn")]}),s.jsxs(se,{variant:"primary",loading:$,onClick:Y,children:[s.jsx(di,{size:13})," ",u("project.agent_detail.save_btn")]})]})]}),s.jsx(iE,{open:H,onClose:()=>F(!1),onConfirm:G,title:u("project.agent_detail.delete_btn"),description:u("project.agent_detail.delete_confirm",{slug:t.slug}),confirmLabel:u("project.agent_detail.delete_btn")})]})}function Gd({label:e,value:t,icon:a}){return s.jsxs("div",{className:"rounded-xl border border-border bg-muted/30 p-3",children:[s.jsxs("div",{className:"flex items-center gap-2 text-xs text-muted-fg",children:[s.jsx(a,{size:13})," ",e]}),s.jsx("div",{className:"mt-1 text-2xl font-semibold",children:t})]})}function z8({pid:e,slug:t,initial:a,onSaved:o}){const l=Ze(),[c,d]=x.useState(a),[p,m]=x.useState(!1);x.useEffect(()=>{d(a)},[a]);const g=c!==a,h=async()=>{m(!0);try{await cn.memory.put(e,t,c),l.success(u("project.agent_detail.memory_saved")),o()}catch(b){l.error(b.message)}finally{m(!1)}};return s.jsxs(Fe,{title:u("project.agent_detail.memory_title"),description:`~/.apx/projects/<id>/agents/${t}/memory.md — ${u("agents_ui.memory_durable_desc")}`,children:[s.jsx(un,{rows:16,className:"font-mono text-xs",value:c,onChange:b=>d(b.target.value),placeholder:u("project.agent_detail.memory_empty")}),s.jsxs("div",{className:"mt-2 flex items-center justify-between",children:[s.jsxs("span",{className:"text-[11px] text-muted-fg",children:[c.length," ",u("project.memories.chars")]}),s.jsxs(se,{size:"sm",variant:"primary",loading:p,disabled:!g,onClick:h,children:[s.jsx(di,{size:12})," ",u("project.memories.save_btn")]})]})]})}function D8({records:e,loading:t}){const a=x.useMemo(()=>[...e].sort((o,l)=>(l.ts||"").localeCompare(o.ts||"")),[e]);return s.jsxs(Fe,{title:u("project.agent_detail.records_title"),description:u("project.agent_detail.records_desc"),children:[t&&s.jsx(at,{}),!t&&a.length===0&&s.jsx("p",{className:"text-xs text-muted-fg",children:u("project.agent_detail.no_activity")}),s.jsx("ul",{className:"space-y-1 text-sm",children:a.map((o,l)=>s.jsxs("li",{className:"flex items-start gap-2 rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsx("span",{className:"mt-0.5 shrink-0",children:o.direction==="in"?s.jsx(TS,{size:13,className:"text-blue-400"}):s.jsx(MS,{size:13,className:"text-emerald-400"})}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2 text-[11px] text-muted-fg",children:[s.jsx("span",{className:"font-mono",children:new Date(o.ts).toLocaleString()}),s.jsx(He,{tone:"info",children:o.channel}),o.type&&s.jsx(He,{children:o.type})]}),o.body&&s.jsx("p",{className:"mt-1 whitespace-pre-wrap break-words text-xs",children:o.body.length>400?`${o.body.slice(0,400)}…`:o.body})]})]},`${o.ts}-${l}`))})]})}function P8({routines:e}){return e.length===0?s.jsx(Fe,{title:u("project.agent_detail.sleep_title"),description:u("project.agent_detail.sleep_desc"),children:s.jsxs("div",{className:"rounded-lg border border-amber-500/30 bg-amber-500/5 p-4 text-sm",children:[s.jsx("div",{className:"font-medium text-amber-400",children:u("project.agent_detail.sleep_deep")}),s.jsx("p",{className:"mt-1 text-xs text-muted-fg",children:u("project.agent_detail.sleep_deep_desc")})]})}):s.jsx(Fe,{title:u("project.agent_detail.sleep_title"),description:u("project.agent_detail.sleep_desc"),children:s.jsx("div",{className:"space-y-3",children:e.map(t=>{const a=t.enabled,o=t.last_status==="error";return s.jsxs("div",{className:"rounded-xl border border-border bg-muted/30 p-3",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:he("size-2 rounded-full",o?"bg-destructive":a?"bg-emerald-400":"bg-muted-fg/40")}),s.jsx("span",{className:"text-sm font-medium",children:t.name}),s.jsx(He,{tone:a?"success":"muted",children:u(a?"agents_ui.running":"agents_ui.paused")}),o&&s.jsx(He,{tone:"danger",children:u("agents_ui.last_error")})]}),s.jsxs("div",{className:"mt-2 grid grid-cols-2 gap-2 text-xs sm:grid-cols-4",children:[s.jsx(Yd,{label:u("agents_ui.field_tick"),value:t.schedule}),s.jsx(Yd,{label:u("agents_ui.field_next_tick"),value:t.next_run_at?new Date(t.next_run_at).toLocaleString():"—"}),s.jsx(Yd,{label:u("agents_ui.field_last_tick"),value:t.last_run_at?new Date(t.last_run_at).toLocaleString():"—"}),s.jsx(Yd,{label:u("agents_ui.field_last_run"),value:t.last_status||"—"})]}),t.last_error&&s.jsx("p",{className:"mt-2 rounded-md bg-destructive/10 px-2 py-1 text-[11px] text-destructive",children:t.last_error})]},t.name)})})})}function Yd({label:e,value:t}){return s.jsxs("div",{className:"rounded-md border border-border bg-card p-2",children:[s.jsx("div",{className:"text-[10px] uppercase tracking-wide text-muted-fg",children:e}),s.jsx("div",{className:"mt-0.5 truncate font-mono text-[11px]",children:t})]})}function L8({value:e,onChange:t}){const a=$e("/tools",()=>ZP.list()),o=Kx(e),l=a.data||[],c=p=>{const m=new Set(o);m.has(p)?m.delete(p):m.add(p),t([...m].join(", "))},d=o.filter(p=>!l.some(m=>m.name===p));return s.jsxs(ae,{label:u("agents_ui.tools_label"),hint:u("project.agent_detail.tools_hint"),children:[s.jsxs("div",{className:"flex flex-wrap gap-1.5",children:[l.map(p=>{const m=o.includes(p.name);return s.jsx(Ye,{content:p.description||p.name,children:s.jsx("button",{type:"button",onClick:()=>c(p.name),className:he("rounded-md border px-2 py-0.5 font-mono text-[11px] transition-colors",m?"border-emerald-500/50 bg-emerald-500/10 text-emerald-400":"border-border text-muted-fg hover:text-foreground"),children:p.name})},p.name)}),d.map(p=>s.jsxs("button",{type:"button",onClick:()=>c(p),className:"rounded-md border border-sky-500/50 bg-sky-500/10 px-2 py-0.5 font-mono text-[11px] text-sky-400",children:[p," ✕"]},p))]}),s.jsx(Ne,{className:"mt-2",value:e,onChange:p=>t(p.target.value),placeholder:u("project.agent_detail.tools_custom_ph")})]})}function I8({slug:e,memory:t,threads:a,tasks:o,routines:l,parent:c,children:d}){const p=x.useMemo(()=>{const m=[];return A8(t).forEach((g,h)=>m.push({id:`m${h}`,label:g,kind:"memory",relation:"knows",detail:g})),a.slice(0,8).forEach(g=>m.push({id:`th-${g.id}`,label:g.label,kind:"thread",relation:"in_thread"})),o.slice(0,8).forEach(g=>m.push({id:`ts-${g.id}`,label:g.label,kind:"task",relation:"handles_task",detail:g.detail})),l.forEach(g=>m.push({id:`rt-${g.name}`,label:g.name,kind:"routine",relation:"ticks",detail:`schedule: ${g.schedule}`})),c&&m.push({id:`p-${c}`,label:c,kind:"agentlink",relation:"reports_to"}),d.forEach(g=>m.push({id:`c-${g}`,label:g,kind:"agentlink",relation:"orchestrates"})),m},[t,a,o,l,c,d]);return s.jsx(Fe,{title:u("project.agent_detail.brain_title"),description:u("project.agent_detail.brain_desc"),children:p.length===0?s.jsx("p",{className:"text-xs text-muted-fg",children:u("project.agent_detail.brain_empty")}):s.jsx(E8,{center:e,nodes:p})})}const B8=["","es","en","pt","fr","it","de"],Gk=e=>e.split(",").map(t=>t.trim()).filter(Boolean);function hE(e){return e.is_master?{gradient:"from-violet-600 to-indigo-600",Icon:xa}:{gradient:"from-slate-600 to-gray-600",Icon:on}}function U8(e){const t=e.filter(d=>d.is_master),a=t.length===1?t[0]:null,o=d=>d.parent?d.parent:a&&!d.is_master&&d.slug!==a.slug?a.slug:null,l=new Map,c=[];for(const d of e){const p=o(d);p&&e.some(m=>m.slug===p)?(l.has(p)||l.set(p,[]),l.get(p).push(d)):c.push(d)}return{roots:c,childrenByParent:l}}function $8({pid:e}){const t=Pn();Ze();const a=$e(`/projects/${e}/agents`,()=>cn.list(e)),[o,l]=x.useState("hierarchy"),[c,d]=x.useState(!1),[p,m]=x.useState(!1),g=a.data||[],h=E=>t(`/p/${e}/agents/${E}`),b=E=>t(E?`/p/${e}/chat?agent=${E}`:`/p/${e}/chat`),{roots:_,childrenByParent:j}=x.useMemo(()=>U8(g),[g]);return s.jsxs(Fe,{title:u("project.agents.title"),description:u("project.agents.subtitle_full"),action:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsxs("div",{className:"flex rounded-lg border border-border p-0.5",children:[s.jsxs("button",{onClick:()=>l("hierarchy"),className:he("flex items-center gap-1 rounded-md px-2 py-1 text-xs",o==="hierarchy"?"bg-accent text-accent-fg":"text-muted-fg"),children:[s.jsx(ru,{size:13})," ",u("project.agents.hierarchy")]}),s.jsxs("button",{onClick:()=>l("list"),className:he("flex items-center gap-1 rounded-md px-2 py-1 text-xs",o==="list"?"bg-accent text-accent-fg":"text-muted-fg"),children:[s.jsx(K5,{size:13})," ",u("project.agents.list_view")]})]}),s.jsxs(se,{size:"sm",variant:"ghost",onClick:()=>m(!0),children:[s.jsx(QS,{size:13})," ",u("project.agents.import")]}),s.jsxs(se,{size:"sm",variant:"secondary",onClick:()=>b(),children:[s.jsx(Js,{size:13})," ",u("project.agents.chat")]}),s.jsxs(se,{size:"sm",variant:"primary","data-testid":"agent-new",onClick:()=>d(!0),children:[s.jsx(It,{size:14})," ",u("project.agents.new")]})]}),children:[a.isLoading&&s.jsx(at,{}),!a.isLoading&&g.length===0&&s.jsx(pt,{children:u("project.agents.empty_text")}),!a.isLoading&&g.length>0&&(o==="hierarchy"?s.jsx(V8,{roots:_,childrenByParent:j,onOpen:h,onChat:b}):s.jsx(q8,{agents:g,onOpen:h,onChat:b})),s.jsx(F8,{open:c,pid:e,agents:g,onClose:()=>d(!1),onCreated:()=>{d(!1),a.mutate()}}),s.jsx(H8,{open:p,pid:e,existing:g.map(E=>E.slug),onClose:()=>m(!1),onImported:()=>a.mutate()})]})}function H8({open:e,onClose:t,onImported:a,pid:o,existing:l}){const c=Ze(),d=$e(e?"/agents/vault":null,()=>cn.vault()),[p,m]=x.useState(""),g=d.data||[],h=async b=>{m(b);try{await cn.import(o,b),c.success(u("project.agents.import_success",{slug:b})),a()}catch(_){c.error(_.message)}finally{m("")}};return s.jsxs(sn,{open:e,onClose:t,title:u("project.agents.import_title"),description:u("project.agents.import_desc"),size:"lg",footer:s.jsx(se,{variant:"ghost",onClick:t,children:u("common.close")}),children:[d.isLoading&&s.jsx(at,{}),!d.isLoading&&g.length===0&&s.jsx(pt,{children:u("project.agents.import_empty")}),s.jsx("ul",{className:"space-y-2",children:g.map(b=>{const _=l.includes(b.slug);return s.jsxs("li",{className:"flex items-center gap-3 rounded-lg border border-border bg-muted/30 p-3",children:[s.jsx(on,{size:16,className:"shrink-0 text-muted-fg"}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2",children:[s.jsx("span",{className:"text-sm font-medium",children:b.slug}),b.is_master&&s.jsxs(He,{tone:"success",children:[s.jsx(xa,{size:9})," ",u("project.agents.orchestrator")]}),b.model&&s.jsx(He,{tone:"info",children:b.model})]}),b.description&&s.jsx("p",{className:"truncate text-xs text-muted-fg",children:b.description})]}),s.jsx(se,{size:"sm",variant:"primary",disabled:_||p===b.slug,loading:p===b.slug,onClick:()=>h(b.slug),children:u(_?"project.agents.import_already":"project.agents.import_btn")})]},b.slug)})})]})}function V8({roots:e,childrenByParent:t,onOpen:a,onChat:o}){return s.jsx("div",{className:"space-y-8",children:e.map(l=>{const c=t.get(l.slug)||[];return s.jsxs("div",{className:"flex flex-col items-center",children:[s.jsx(Ch,{agent:l,onOpen:a,onChat:o,wide:!0}),c.length>0&&s.jsxs(s.Fragment,{children:[s.jsx("div",{className:"h-5 w-px bg-border"}),s.jsx("div",{className:"flex flex-wrap items-start justify-center gap-4 border-t border-border pt-5",children:c.map(d=>s.jsxs("div",{className:"flex flex-col items-center",children:[s.jsx(Ch,{agent:d,onOpen:a,onChat:o}),(t.get(d.slug)||[]).length>0&&s.jsxs(s.Fragment,{children:[s.jsx("div",{className:"h-4 w-px bg-border"}),s.jsx("div",{className:"flex flex-wrap justify-center gap-3 border-t border-border pt-4",children:(t.get(d.slug)||[]).map(p=>s.jsx(Ch,{agent:p,onOpen:a,onChat:o,compact:!0},p.slug))})]})]},d.slug))})]})]},l.slug)})})}function Ch({agent:e,onOpen:t,onChat:a,wide:o,compact:l}){const{gradient:c,Icon:d}=hE(e);return s.jsxs("div",{"data-testid":`agent-card-${e.slug}`,className:he("cursor-pointer rounded-xl border border-border bg-card p-3 transition-colors hover:border-muted-fg/50",o?"w-64":l?"w-44":"w-52"),onClick:()=>t(e.slug),children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("div",{className:he("flex size-8 shrink-0 items-center justify-center rounded-lg bg-gradient-to-br",c),children:e.emoji?s.jsx("span",{className:"text-base leading-none",children:e.emoji}):s.jsx(d,{className:"size-4 text-white"})}),s.jsx("span",{className:"truncate text-sm font-semibold",children:e.slug})]}),s.jsxs("div",{className:"mt-2 flex flex-wrap items-center gap-1",children:[e.is_master&&s.jsxs(He,{tone:"success",children:[s.jsx(xa,{size:9})," ",u("project.agents.orchestrator")]}),e.role&&s.jsx(He,{children:e.role}),e.model&&!l&&s.jsx(He,{tone:"info",children:e.model})]}),s.jsxs("div",{className:"mt-2 flex items-center gap-3 border-t border-border pt-2 text-xs text-muted-fg",onClick:p=>p.stopPropagation(),children:[s.jsxs("button",{onClick:()=>t(e.slug),className:"flex items-center gap-1 hover:text-foreground",children:[s.jsx(au,{size:12})," ",u("project.agents.view")]}),s.jsxs("button",{onClick:()=>a(e.slug),className:"flex items-center gap-1 text-emerald-500 hover:text-emerald-400",children:[s.jsx(Js,{size:12})," ",u("project.agents.chat")]})]})]})}function q8({agents:e,onOpen:t,onChat:a}){const o=[...e].sort((l,c)=>+!!c.is_master-+!!l.is_master||l.slug.localeCompare(c.slug));return s.jsx("div",{className:"space-y-2",children:o.map(l=>{const{gradient:c,Icon:d}=hE(l);return s.jsxs("div",{"data-testid":`agent-card-${l.slug}`,className:"flex cursor-pointer items-center gap-4 rounded-xl border border-border bg-muted/30 p-3 hover:border-muted-fg/50",onClick:()=>t(l.slug),children:[s.jsx("div",{className:he("flex size-9 shrink-0 items-center justify-center rounded-xl bg-gradient-to-br",c),children:l.emoji?s.jsx("span",{className:"text-lg leading-none",children:l.emoji}):s.jsx(d,{className:"size-4 text-white"})}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2",children:[s.jsx("span",{className:"text-sm font-semibold",children:l.slug}),l.is_master&&s.jsxs(He,{tone:"success",children:[s.jsx(xa,{size:10})," ",u("project.agents.orchestrator")]}),l.role&&s.jsx(He,{children:l.role}),l.model&&s.jsx(He,{tone:"info",children:l.model}),l.parent&&s.jsxs("span",{className:"text-[10px] text-violet-400",children:["↳ ",l.parent]})]}),l.description&&s.jsx("p",{className:"mt-1 truncate text-xs text-muted-fg",children:l.description}),s.jsxs("div",{className:"mt-1 flex flex-wrap gap-1",children:[l.skills?.map(p=>s.jsxs("span",{className:"inline-flex items-center gap-0.5 rounded bg-muted px-1 py-0.5 text-[9px] text-muted-fg",children:[s.jsx(Vs,{size:9})," ",p]},p)),l.tools?.map(p=>s.jsxs("span",{className:"inline-flex items-center gap-0.5 rounded bg-muted px-1 py-0.5 text-[9px] text-muted-fg",children:[s.jsx(ea,{size:9})," ",p]},p))]})]}),s.jsxs("div",{className:"flex shrink-0 items-center gap-3 text-xs text-muted-fg",onClick:p=>p.stopPropagation(),children:[s.jsxs("button",{onClick:()=>t(l.slug),className:"flex items-center gap-1 hover:text-foreground",children:[s.jsx(au,{size:12})," ",u("project.agents.view")]}),s.jsxs("button",{onClick:()=>a(l.slug),className:"flex items-center gap-1 text-emerald-500 hover:text-emerald-400",children:[s.jsx(Js,{size:12})," ",u("project.agents.chat")]})]})]},l.slug)})})}function F8({open:e,onClose:t,onCreated:a,pid:o,agents:l}){const c=Ze(),[d,p]=x.useState(""),[m,g]=x.useState(""),[h,b]=x.useState(""),[_,j]=x.useState(""),[E,k]=x.useState(""),[y,w]=x.useState(""),[S,N]=x.useState(""),[R,A]=x.useState(""),[T,O]=x.useState(""),[z,U]=x.useState(""),[P,B]=x.useState(""),[D,L]=x.useState(!1),[$,V]=x.useState(""),[H,F]=x.useState(!1),Y=()=>{p(""),g(""),b(""),j(""),k(""),w(""),N(""),A(""),O(""),U(""),B(""),L(!1),V("")},G=async()=>{if(!/^[a-z][a-z0-9_-]*$/.test(d)){c.error(u("project.agents.slug_invalid"));return}F(!0);try{await cn.create(o,{slug:d,emoji:m||void 0,type:h||void 0,role:_||void 0,area:E||void 0,autonomy:y||void 0,model:S||void 0,language:R||void 0,description:T||void 0,skills:Gk(z),tools:Gk(P),is_master:D||h==="orchestrator",parent:$||void 0}),c.success(u("project.agents.create_success",{slug:d})),a(),Y()}catch(K){c.error(K?.message||u("project.agents.create_error"))}finally{F(!1)}};return s.jsx(sn,{open:e,onClose:t,title:u("project.agents.new_title"),description:u("project.agents.new_desc"),size:"lg",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:H,children:u("common.cancel")}),s.jsx(se,{variant:"primary","data-testid":"agent-create-submit",onClick:G,loading:H,children:u("common.create")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"grid grid-cols-[80px_1fr_1fr] gap-3",children:[s.jsx(ae,{label:u("agents_form.emoji"),children:s.jsx(rE,{value:m,onChange:g})}),s.jsx(ae,{label:u("project.agents.slug_label"),children:s.jsx(Ne,{autoFocus:!0,"data-testid":"agent-slug",value:d,onChange:K=>p(K.target.value),placeholder:u("project.agents.slug_ph")})}),s.jsx(ae,{label:u("project.agent_detail.type_label"),children:s.jsx(ut,{value:h,onChange:b,options:gE()})})]}),s.jsx(lE,{pid:o,area:E,role:_,onArea:k,onRole:j}),s.jsx(ae,{label:u("agents_form.autonomy"),hint:u("agents_form.autonomy_hint"),children:s.jsx(oE,{value:y,onChange:w})}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("project.agents.model_label"),hint:u("project.agents.model_hint"),children:s.jsx(Ne,{value:S,onChange:K=>N(K.target.value)})}),s.jsx(ae,{label:u("project.agents.lang_label"),children:s.jsx(ut,{value:R,onChange:A,options:B8.map(K=>({value:K,label:K||"—"}))})})]}),s.jsx(ae,{label:u("project.agents.desc_label"),children:s.jsx(un,{rows:2,value:T,onChange:K=>O(K.target.value),placeholder:u("project.agents.desc_ph")})}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("project.agents.skills_label"),children:s.jsx(Ne,{value:z,onChange:K=>U(K.target.value),placeholder:u("project.agents.skills_ph")})}),s.jsx(ae,{label:u("project.agents.tools_label"),children:s.jsx(Ne,{value:P,onChange:K=>B(K.target.value),placeholder:u("project.agents.tools_ph")})})]}),s.jsxs("div",{className:"grid grid-cols-2 items-end gap-3",children:[s.jsx(ae,{label:u("project.agents.parent_label"),hint:u("project.agents.parent_hint"),children:s.jsx(ut,{value:$,onChange:V,placeholder:u("project.agents.none_parent"),options:[{value:"",label:u("project.agents.none_parent")},...l.filter(K=>K.slug!==d).map(K=>({value:K.slug,label:K.slug}))]})}),s.jsx(Gt,{checked:D,onChange:L,label:u("project.agents.master_label")})]})]})})}function Kd(e){return e.split(`
744
- `).map(t=>t.trim()).filter(Boolean)}function Zc(){return{exec_agent:{label:u("agents_ui.kind_exec_agent"),desc:u("agents_ui.kind_exec_agent_desc"),icon:on},super_agent:{label:u("agents_ui.kind_super_agent"),desc:u("agents_ui.kind_super_agent_desc"),icon:xa},telegram:{label:u("agents_ui.kind_telegram"),desc:u("agents_ui.kind_telegram_desc"),icon:Js},shell:{label:u("agents_ui.kind_shell"),desc:u("agents_ui.kind_shell_desc"),icon:ba},heartbeat:{label:u("agents_ui.kind_heartbeat"),desc:u("agents_ui.kind_heartbeat_desc"),icon:Eo}}}function G8(e){const t=Zc();return Object.keys(t).filter(a=>a!=="heartbeat"||e==="heartbeat").map(a=>({value:a,label:t[a].label,description:t[a].desc,icon:t[a].icon}))}function G_(e){if(!e)return"—";if(e.startsWith("every:")){const t=e.slice(6),a=t.match(/^(\d+)(s|m|h|d)$/);if(a){const o=a[1],l={s:u("agents_ui.unit_seconds"),m:u("agents_ui.unit_minutes"),h:u("agents_ui.unit_hours"),d:u("agents_ui.unit_days")}[a[2]]||a[2];return u("agents_ui.every_n_unit",{n:o,unit:l})}return u("agents_ui.every_v",{v:t})}return e.startsWith("once:")?`once · ${new Date(e.slice(5)).toLocaleString()}`:e.startsWith("cron ")?`cron · ${e.slice(5)}`:e}function Y8(){return[{label:u("agents_ui.preset_every_10m"),value:"every:10m"},{label:u("agents_ui.preset_hourly"),value:"every:1h"},{label:u("agents_ui.preset_daily_9am"),value:"cron 0 9 * * *"},{label:u("agents_ui.preset_weekdays_9am"),value:"cron 0 9 * * 1-5"}]}function xE(){return[{v:"{{pre_output}}",where:"prompt",desc:u("agents_ui.var_pre_output_prompt")},{v:"$APX_LLM_OUTPUT",where:"post",desc:u("agents_ui.var_llm_output")},{v:"$APX_STATUS",where:"post",desc:u("agents_ui.var_status")},{v:"$APX_SKIPPED",where:"post",desc:u("agents_ui.var_skipped")},{v:"$APX_PRE_OUTPUT",where:"post",desc:u("agents_ui.var_pre_output")},{v:"$APX_PRE_OUTPUT_FILE",where:"post",desc:u("agents_ui.var_pre_output_file")},{v:"$APX_PRE_EXIT",where:"post",desc:u("agents_ui.var_pre_exit")},{v:"$APX_ROUTINE",where:"pre/post",desc:u("agents_ui.var_routine")}]}function _c(e){return xE().filter(t=>e==="pre"?t.where.includes("pre"):e==="prompt"?t.where==="prompt":t.where==="post"||t.where==="pre/post")}function K8({routines:e,selectedName:t,onSelect:a}){return s.jsxs("aside",{className:"flex h-full min-h-0 flex-col border-r border-border",children:[s.jsx("div",{className:"shrink-0 px-3 py-2.5 text-[11px] font-semibold uppercase tracking-wide text-muted-fg",children:u("project.routines.list_title")}),s.jsx("ul",{className:"min-h-0 flex-1 space-y-1 overflow-y-auto p-2 pt-0",children:e.map(o=>{const l=Zc()[o.kind],c=l?.icon||Kl,d=o.name===t;return s.jsx("li",{children:s.jsxs("button",{type:"button",onClick:()=>a(o.name),"aria-current":d,className:he("w-full rounded-lg border px-2.5 py-2 text-left transition-colors",d?"border-primary/50 bg-primary/10":"border-transparent hover:border-border hover:bg-accent/40"),children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:he("flex size-6 shrink-0 items-center justify-center rounded-md",o.enabled?"bg-emerald-500/15 text-emerald-400":"bg-muted text-muted-fg"),children:s.jsx(c,{size:13})}),s.jsx("span",{className:"min-w-0 flex-1 truncate text-sm font-medium",children:o.name}),!o.enabled&&s.jsx("span",{className:"shrink-0 text-[10px] text-muted-fg",children:u("project.routines.paused")}),s.jsx(pu,{ok:o.last_status==="ok"?!0:o.last_status==="error"?!1:null})]}),s.jsxs("div",{className:"mt-1 flex items-center justify-between gap-2 pl-8 text-[10px] text-muted-fg",children:[s.jsx("span",{className:"truncate",children:l?.label||o.kind}),s.jsxs("span",{className:"shrink-0",children:["⏱ ",G_(o.schedule)]})]})]})},o.name)})})]})}function X8({title:e,body:t,mono:a}){return s.jsxs("div",{className:"space-y-1",children:[s.jsx("div",{className:"text-[11px] font-semibold uppercase tracking-wide text-muted-fg",children:e}),s.jsx("div",{className:he("max-h-44 overflow-auto whitespace-pre-wrap break-words rounded-lg border border-border bg-muted/20 px-3 py-2 text-xs",a&&"font-mono"),children:t.trim()?t:s.jsx("span",{className:"text-muted-fg",children:u("project.routines.block_empty")})})]})}function bE(e){const t=e.meta||{};return t.skipped?"skipped":t.status==="error"?"error":"ok"}function _E(e){const t=new Date(e);return Number.isNaN(t.getTime())?e:t.toLocaleString(void 0,{month:"short",day:"2-digit",hour:"2-digit",minute:"2-digit"})}function vE({st:e}){return e==="ok"?s.jsx($r,{size:13,className:"shrink-0 text-emerald-500"}):e==="error"?s.jsx(ws,{size:13,className:"shrink-0 text-destructive"}):s.jsx(p5,{size:13,className:"shrink-0 text-amber-500"})}function yE(e){return u(e==="ok"?"project.routines.status_ok":e==="error"?"project.routines.status_error":"project.routines.status_skipped")}function Nh({title:e,children:t}){return s.jsxs("div",{className:"space-y-1",children:[s.jsx("div",{className:"text-[10px] font-semibold uppercase tracking-wide text-muted-fg",children:e}),t]})}const Eh="whitespace-pre-wrap break-words rounded-lg border border-border bg-muted/20 px-3 py-2 font-mono text-[11px]";function Q8({m:e,onClose:t}){const a=bE(e),o=e.meta||{},l=o.result||{},c=o.flow||null,d=String(l.reply??l.text??l.stdout??""),p=String(l.error??l.stderr??""),m=String(l.note??""),g=s.jsx("span",{className:"text-muted-fg",children:u("project.routines.block_empty")});return s.jsxs("div",{className:"flex min-h-0 flex-col border-l border-border",children:[s.jsxs("div",{className:"flex shrink-0 items-center justify-between gap-2 px-4 py-2",children:[s.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[s.jsx(vE,{st:a}),s.jsx("span",{className:he("font-medium",a==="ok"&&"text-emerald-500",a==="error"&&"text-destructive",a==="skipped"&&"text-amber-500"),children:yE(a)}),s.jsx("span",{className:"font-mono text-muted-fg",children:_E(e.ts)})]}),s.jsx("button",{type:"button",onClick:t,"aria-label":u("project.routines.runs_close"),className:"rounded-md p-1 text-muted-fg hover:bg-muted hover:text-foreground",children:s.jsx(ws,{size:14})})]}),s.jsxs("div",{className:"min-h-0 flex-1 space-y-3 overflow-y-auto px-4 pb-4 text-xs",children:[e.body&&s.jsx("div",{className:"text-muted-fg",children:e.body}),c?.pre&&s.jsx(Nh,{title:u("project.routines.block_pre"),children:c.pre.output?.trim()?s.jsx("pre",{className:Eh,children:c.pre.output}):g}),s.jsx(Nh,{title:u("project.routines.runs_output"),children:d?s.jsx("pre",{className:Eh,children:d}):p?s.jsx("pre",{className:"whitespace-pre-wrap break-words rounded-lg bg-destructive/10 px-3 py-2 font-mono text-[11px] text-destructive",children:p}):m?s.jsx("div",{className:"text-muted-fg",children:m}):g}),c?.post&&c.post.length>0&&s.jsx(Nh,{title:u("project.routines.block_post"),children:s.jsx("div",{className:"space-y-1.5",children:c.post.map((h,b)=>s.jsxs("div",{className:"space-y-1",children:[s.jsxs("div",{className:"font-mono text-[10px] text-muted-fg",children:["$ ",h.cmd," ",s.jsxs("span",{className:"opacity-70",children:["· exit ",h.exit]})]}),(h.stdout||h.stderr)&&s.jsx("pre",{className:Eh,children:h.stdout||h.stderr})]},b))})})]})]})}function W8({pid:e,name:t,running:a}){const o=$e(`/projects/${e}/routines/${t}/runs`,async()=>(await Pf.project(e,{channel:"routine",limit:200})).filter(g=>g.meta?.routine===t&&(g.actor_id==="apx:routine"||g.type==="system"))),l=(o.data||[]).slice(0,50),[c,d]=x.useState(null),p=c&&l.find(m=>m.ts===c)||null;return s.jsxs("div",{className:"flex min-h-0 flex-1 flex-col border-t border-border",children:[s.jsx("div",{className:"shrink-0 px-4 pb-1.5 pt-3 text-[11px] font-semibold uppercase tracking-wide text-muted-fg",children:u("project.routines.runs_title")}),s.jsxs("div",{className:he("grid min-h-0 flex-1 overflow-hidden",p?"grid-cols-[minmax(0,1fr)_minmax(0,1.1fr)]":"grid-cols-1"),children:[s.jsxs("div",{className:"min-h-0 overflow-y-auto px-4 pb-4",children:[o.isLoading&&s.jsx(at,{}),!o.isLoading&&l.length===0&&s.jsx("div",{className:"text-xs text-muted-fg",children:u("project.routines.runs_empty")}),s.jsxs("ul",{className:"space-y-1",children:[a&&s.jsx("li",{children:s.jsxs("div",{className:"flex w-full items-center gap-2 rounded-md border border-primary/40 bg-primary/5 px-3 py-1.5 text-xs",children:[s.jsx(Dn,{size:12}),s.jsx("span",{className:"text-muted-fg",children:u("project.routines.running")})]})}),l.map((m,g)=>{const h=bE(m),b=c===m.ts;return s.jsx("li",{children:s.jsxs("button",{type:"button",onClick:()=>d(b?null:m.ts),"aria-current":b,className:he("flex w-full items-center gap-2 rounded-md border px-3 py-1.5 text-left text-xs transition-colors",b?"border-primary/50 bg-primary/10":"border-border bg-muted/30 hover:border-muted-fg/40"),children:[s.jsx(vE,{st:h}),s.jsx("span",{className:"font-mono text-muted-fg",children:_E(m.ts)}),s.jsx("span",{className:he("font-medium",h==="ok"&&"text-emerald-500",h==="error"&&"text-destructive",h==="skipped"&&"text-amber-500"),children:yE(h)})]})},`${m.ts}-${g}`)})]})]}),p&&s.jsx(Q8,{m:p,onClose:()=>d(null)})]})]})}function Z8({pid:e,routine:t,onEdit:a,onRun:o,onToggle:l,onDelete:c,running:d}){const p=Zc()[t.kind],m=p?.icon||Kl,g=t.spec||{},h=t.pre_commands||[],b=t.post_commands||[],_=[];return h.length&&_.push({title:u("project.routines.block_pre"),body:h.join(`
745
- `),mono:!0}),t.kind==="exec_agent"||t.kind==="super_agent"?_.push({title:u("project.routines.block_prompt"),body:String(g.prompt||"")}):t.kind==="telegram"?_.push({title:u("project.routines.block_text"),body:String(g.text||"")}):t.kind==="shell"?_.push({title:u("project.routines.block_command"),body:String(g.command||""),mono:!0}):t.kind==="heartbeat"&&_.push({title:u("project.routines.block_text"),body:String(g.message||"")}),b.length&&_.push({title:u("project.routines.block_post"),body:b.join(`
746
- `),mono:!0}),s.jsxs("div",{className:"flex h-full min-h-0 flex-col",children:[s.jsxs("div",{className:"min-h-0 shrink space-y-4 overflow-y-auto p-4",children:[s.jsxs("div",{className:"flex items-start justify-between gap-3",children:[s.jsxs("div",{className:"flex min-w-0 items-center gap-2",children:[s.jsx("span",{className:he("flex size-7 shrink-0 items-center justify-center rounded-lg",t.enabled?"bg-emerald-500/15 text-emerald-400":"bg-muted text-muted-fg"),children:s.jsx(m,{size:14})}),s.jsx("h3",{className:"truncate text-base font-semibold",children:t.name}),s.jsx(He,{tone:t.kind==="shell"?"warning":"info",children:p?.label||t.kind})]}),s.jsxs("div",{className:"flex shrink-0 items-center gap-2",children:[s.jsx(Gt,{checked:t.enabled,onChange:l}),s.jsx(Ye,{content:u("common.run"),children:s.jsx(se,{size:"sm",variant:"secondary",onClick:o,loading:d,children:s.jsx(vb,{size:13})})}),s.jsx(Ye,{content:u("project.routines.edit_hint"),children:s.jsxs(se,{size:"sm",variant:"secondary",onClick:a,children:[s.jsx(ya,{size:13})," ",u("project.routines.edit_btn")]})}),s.jsx(Ye,{content:u("common.delete"),children:s.jsx(se,{size:"sm",variant:"destructive",onClick:c,children:s.jsx(_n,{size:13})})})]})]}),s.jsxs("div",{className:"flex flex-wrap items-center gap-x-4 gap-y-1 text-xs text-muted-fg",children:[s.jsxs("span",{children:["⏱ ",G_(t.schedule)]}),t.next_run_at&&s.jsxs("span",{children:[u("project.routines.next_run")," ",new Date(t.next_run_at).toLocaleString()]}),t.last_run_at&&s.jsxs("span",{children:[u("project.routines.last_run")," ",new Date(t.last_run_at).toLocaleString()]}),s.jsxs("span",{className:he(t.last_status==="ok"&&"text-emerald-500",t.last_status==="error"&&"text-destructive"),children:[u("agents_ui.last_label")," ",t.last_status||"—"]})]}),t.last_error&&s.jsx("div",{className:"rounded-md bg-destructive/10 px-2 py-1 text-xs text-destructive",children:t.last_error}),s.jsx("div",{className:"space-y-3",children:_.map(j=>s.jsx(X8,{title:j.title,body:j.body,mono:j.mono},j.title))})]}),s.jsx(W8,{pid:e,name:t.name,running:d})]})}function Ml({label:e,hint:t,value:a,onChange:o,vars:l,rows:c=3,mono:d,placeholder:p}){const m=x.useRef(null),g=h=>{const b=m.current?.querySelector("textarea");if(!b){o(a?`${a}${h}`:h);return}const _=b.selectionStart??a.length,j=b.selectionEnd??a.length,E=a.slice(0,_)+h+a.slice(j);o(E),requestAnimationFrame(()=>{b.focus();const k=_+h.length;b.setSelectionRange(k,k)})};return s.jsxs("div",{className:"space-y-1",children:[s.jsx("div",{className:"text-xs font-medium text-muted-foreground",children:e}),t&&s.jsx("div",{className:"text-[11px] text-muted-foreground/70",children:t}),s.jsxs("div",{ref:m,className:"space-y-1.5",children:[s.jsx(un,{rows:c,className:he(d&&"font-mono text-xs"),value:a,onChange:h=>o(h.target.value),placeholder:p}),l.length>0&&s.jsx("div",{className:"flex flex-wrap gap-1",children:l.map(h=>s.jsx("button",{type:"button",onClick:()=>g(h.v),className:"inline-flex items-center rounded-md border border-border bg-card px-1.5 py-0.5 font-mono text-[10px] text-muted-fg transition-colors hover:border-muted-fg/50 hover:text-foreground",children:h.v},h.v))})]})]})}function J8(){return s.jsxs("div",{className:"rounded-lg border border-border bg-muted/10 p-3",children:[s.jsx("div",{className:"mb-1.5 text-[11px] font-semibold uppercase tracking-wide text-muted-fg",children:u("project.routines.vars_title")}),s.jsx("div",{className:"flex flex-wrap gap-1.5",children:xE().map(e=>s.jsx(Ye,{content:s.jsx("span",{className:"block max-w-[240px] whitespace-normal leading-snug",children:e.desc}),children:s.jsxs("span",{className:"inline-flex cursor-help items-center gap-1 rounded-md border border-border bg-card px-1.5 py-0.5 font-mono text-[10px]",children:[e.v,s.jsxs("span",{className:"not-italic text-muted-fg",children:["· ",e.where]})]})},e.v))})]})}function e7({draft:e,onClose:t,onSaved:a,pid:o}){const l=Ze(),c=$e(e?`/projects/${o}/agents`:null,()=>cn.list(o)),[d,p]=x.useState(!1),[m,g]=x.useState(""),[h,b]=x.useState("super_agent"),[_,j]=x.useState("every:10m"),[E,k]=x.useState(!0),[y,w]=x.useState(""),[S,N]=x.useState(""),[R,A]=x.useState("default"),[T,O]=x.useState(""),[z,U]=x.useState(""),[P,B]=x.useState(""),[D,L]=x.useState("heartbeat"),[$,V]=x.useState(""),[H,F]=x.useState(""),[Y,G]=x.useState(""),K=$e(e&&h==="telegram"?"/telegram/channels":null,()=>zn.channels.list());x.useEffect(()=>{if(!e)return;const de=e.spec&&typeof e.spec=="object"?e.spec:{};g(e.name||""),b(e.kind||"super_agent"),j(e.schedule||"every:10m"),k(e.enabled??!0),w(de.agent||""),N(de.prompt||""),A(de.channel||"default"),O(de.chat_id?String(de.chat_id):""),U(de.text||""),B(de.command||""),L(de.channel||"heartbeat"),V(de.message||""),F((e.pre_commands||[]).join(`
747
- `)),G((e.post_commands||[]).join(`
748
- `))},[e]);const I=h==="exec_agent"||h==="super_agent"||h==="telegram",X=()=>{switch(h){case"exec_agent":return{agent:y,prompt:S};case"super_agent":return{prompt:S};case"telegram":return{channel:R,...T?{chat_id:T}:{},text:z};case"shell":return{command:P};case"heartbeat":return{channel:D,message:$}}},Z=async()=>{if(!m){l.error(u("project.routines.name_required"));return}p(!0);try{await Mr.upsert(o,{name:m,kind:h,schedule:_,enabled:E,spec:X(),pre_commands:I?Kd(H):[],post_commands:I?Kd(Y):[]}),l.success(u("project.routines.saved")),a()}catch(de){l.error(de?.message||u("project.routines.save_error"))}finally{p(!1)}},te=(()=>{const de=K.data?.channels||[],ge=["default",...de.map(we=>we.name)];R&&!ge.includes(R)&&ge.push(R);const Ce=new Set;return ge.filter(we=>Ce.has(we)?!1:(Ce.add(we),!0)).map(we=>{const Be=de.find(Se=>Se.name===we),Ve=Be?.project?`proyecto ${Be.project}`:Be?.chat_id?`chat ${Be.chat_id}`:void 0;return{value:we,label:we,description:Ve}})})(),fe=I?Kd(H):[],ee=I?Kd(Y):[],re=(()=>{switch(h){case"exec_agent":return y?u("agents_ui.action_agent_answers",{agent:y}):u("agents_ui.action_agent_pick_answers");case"super_agent":return u("agents_ui.action_super_answers");case"telegram":return u("agents_ui.action_telegram_channel",{channel:R});case"shell":return P?u("agents_ui.summary_runs_cmd",{cmd:P.slice(0,48)}):u("agents_ui.action_runs_shell");case"heartbeat":return u("agents_ui.summary_heartbeat")}})(),le=h==="telegram"?z:h==="shell"?P:h==="heartbeat"?$:S,me=Zc()[h].icon,Me=[...fe.map((de,ge)=>({id:`pre-${ge}`,icon:ba,label:u("agents_ui.step_pre"),detail:de,action:!1})),{id:"action",icon:me,label:re,detail:le?le.slice(0,90):u("project.routines.block_empty"),action:!0},...ee.map((de,ge)=>({id:`post-${ge}`,icon:ba,label:u("agents_ui.step_post"),detail:de,action:!1}))];return s.jsx(sn,{open:!!e,onClose:t,title:e?.name?u("project.routines.edit_title",{name:e.name}):u("project.routines.new_title"),description:u("project.routines.dialog_desc"),size:"xl",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:d,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:Z,loading:d,children:u("common.save")})]}),children:s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"grid gap-6 md:grid-cols-2",children:[s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"flex items-center justify-between rounded-lg border border-border bg-muted/20 px-3 py-2",children:[s.jsx(Gt,{checked:E,onChange:k,label:u("project.routines.enabled_label")}),s.jsx("span",{className:"text-[11px] text-muted-fg",children:u(E?"project.routines.enabled_hint":"project.routines.disabled_hint")})]}),s.jsx(ae,{label:u("project.routines.name_field"),hint:e?.name?u("project.routines.name_no_edit"):void 0,children:s.jsx(Ne,{value:m,disabled:!!e?.name,onChange:de=>g(de.target.value),placeholder:"resumen-diario"})}),s.jsx(ae,{label:u("project.routines.kind_field"),children:s.jsx(ut,{value:h,onChange:de=>b(de),options:G8(h)})}),s.jsx("p",{className:"-mt-1 text-[11px] text-muted-fg",children:Zc()[h].desc}),h==="exec_agent"&&s.jsx(ae,{label:u("project.routines.agent_field"),hint:u("project.routines.agent_hint"),children:s.jsx(ut,{value:y,onChange:w,placeholder:c.isLoading?u("project.routines.agent_loading"):u("project.routines.agent_pick"),options:(c.data||[]).map(de=>({value:de.slug,label:de.slug,description:[de.role,de.model].filter(Boolean).join(" · ")||void 0}))})}),s.jsx(ae,{label:u("project.routines.schedule_field"),hint:u("project.routines.schedule_hint"),children:s.jsxs("div",{className:"space-y-2",children:[s.jsxs("div",{className:"flex flex-wrap gap-1",children:[Y8().map(de=>s.jsx("button",{type:"button",onClick:()=>j(de.value),className:he("rounded-md border px-2 py-0.5 text-[11px]",_===de.value?"border-emerald-500/50 text-emerald-400":"border-border text-muted-fg hover:text-foreground"),children:de.label},de.value)),s.jsx("button",{type:"button",onClick:()=>j("manual"),className:he("rounded-md border px-2 py-0.5 text-[11px]",_==="manual"?"border-emerald-500/50 text-emerald-400":"border-border text-muted-fg hover:text-foreground"),children:u("agents_ui.preset_manual")})]}),s.jsx(Ne,{value:_,onChange:de=>j(de.target.value),placeholder:"every:10m · cron 0 9 * * 1-5 · once:ISO · manual"})]})}),s.jsx(J8,{})]}),s.jsxs("div",{className:"space-y-3",children:[I&&s.jsx(Ml,{label:u("project.routines.pre_field"),hint:u("project.routines.pre_hint"),rows:2,mono:!0,value:H,onChange:F,vars:_c("pre"),placeholder:"curl -s https://wttr.in/Bariloche"}),h==="exec_agent"&&s.jsx(Ml,{label:u("project.routines.prompt_exec"),rows:4,value:S,onChange:N,vars:_c("prompt"),placeholder:u("project.routines.prompt_exec_ph")}),h==="super_agent"&&s.jsx(Ml,{label:u("project.routines.prompt_super"),rows:4,value:S,onChange:N,vars:_c("prompt"),placeholder:u("project.routines.prompt_super_ph")}),h==="telegram"&&s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("project.routines.tg_channel"),children:s.jsx(ut,{value:R,onChange:A,options:te})}),s.jsx(ae,{label:u("project.routines.tg_chat_id"),children:s.jsx(Ne,{value:T,onChange:de=>O(de.target.value),placeholder:u("agents_ui.tg_chat_id_ph")})})]}),s.jsx(Ml,{label:u("project.routines.tg_text"),hint:u("project.routines.tg_text_hint"),rows:6,value:z,onChange:U,vars:_c("prompt"),placeholder:u("agents_ui.tg_text_ph")})]}),h==="shell"&&s.jsx(Ml,{label:u("project.routines.shell_field"),hint:u("project.routines.shell_hint"),rows:11,mono:!0,value:P,onChange:B,vars:[],placeholder:"cd /repo && git pull && npm test"}),h==="heartbeat"&&s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("project.routines.hb_channel"),children:s.jsx(Ne,{value:D,onChange:de=>L(de.target.value),placeholder:"heartbeat"})}),s.jsx(ae,{label:u("project.routines.hb_message"),children:s.jsx(Ne,{value:$,onChange:de=>V(de.target.value),placeholder:u("agents_ui.hb_message_ph")})})]}),I&&s.jsx(Ml,{label:u("project.routines.post_field"),hint:u("project.routines.post_hint"),rows:2,mono:!0,value:Y,onChange:G,vars:_c("post"),placeholder:'apx telegram send "$APX_LLM_OUTPUT"'})]})]}),s.jsxs("div",{className:"rounded-lg border border-border bg-muted/20 p-3",children:[s.jsxs("div",{className:"mb-2 text-xs font-semibold text-muted-fg",children:[u("project.routines.what_happens")," ",s.jsxs("span",{className:"font-normal text-muted-fg",children:["· ⏱ ",G_(_)]})]}),s.jsx("div",{className:"flex flex-wrap items-stretch gap-2",children:Me.map((de,ge)=>s.jsxs("div",{className:"flex items-stretch gap-2",children:[s.jsxs("div",{className:he("flex max-w-[240px] flex-col gap-1 rounded-lg border px-2.5 py-2",de.action?"border-emerald-500/40 bg-emerald-500/5":"border-border bg-card"),children:[s.jsxs("div",{className:he("flex items-center gap-1.5 text-[11px] font-medium",de.action?"text-emerald-400":"text-muted-fg"),children:[s.jsx(de.icon,{size:12})," ",de.label]}),de.detail&&s.jsx("div",{className:"line-clamp-2 font-mono text-[10px] text-muted-fg",children:de.detail})]}),ge<Me.length-1&&s.jsx(AS,{size:14,className:"shrink-0 self-center text-muted-fg"})]},de.id))})]})]})})}function t7({pid:e}){const t=Ze(),a=$e(`/projects/${e}/routines`,()=>Mr.list(e)),[o,l]=$o(),[c,d]=x.useState(null),[p,m]=x.useState(null),[g,h]=x.useState(!1),[b,_]=x.useState(null),[j,E]=x.useState(null),k=a.data||[],y=o.get("r_id"),w=k.find(T=>T.name===y)||null,S=T=>l(O=>{const z=new URLSearchParams(O);return T?z.set("r_id",T):z.delete("r_id"),z},{replace:!0});x.useEffect(()=>{k.length!==0&&(y&&k.some(T=>T.name===y)||S(k[0].name))},[k,y]);const N=async T=>{try{await(T.enabled?Mr.disable:Mr.enable)(e,T.name),a.mutate()}catch(O){t.error(O?.message||u("project.routines.toggle_error"))}},R=async()=>{if(!b)return;const T=b;_(null),E(T.name);try{await Mr.run(e,T.name),t.success(u("project.routines.run_success",{name:T.name})),await Promise.all([a.mutate(),zf(`/projects/${e}/routines/${T.name}/runs`)])}catch(O){t.error(O?.message||u("project.routines.run_error"))}finally{E(null)}},A=async()=>{if(p){h(!0);try{await Mr.remove(e,p.name),t.success(u("project.routines.delete_success")),y===p.name&&S(null),m(null),a.mutate()}catch(T){t.error(T?.message||u("project.routines.delete_error"))}finally{h(!1)}}};return s.jsxs("div",{className:"flex h-full min-h-0 flex-col gap-3",children:[s.jsxs("div",{className:"flex shrink-0 items-start justify-between gap-4",children:[s.jsxs("div",{children:[s.jsx("h2",{className:"text-lg font-semibold tracking-tight",children:u("project.routines.title")}),s.jsx("p",{className:"mt-0.5 text-sm text-muted-fg",children:u("project.routines.subtitle")})]}),s.jsxs(se,{size:"sm",variant:"primary",onClick:()=>d({kind:"super_agent",schedule:"every:10m",enabled:!0}),children:[s.jsx(It,{size:14})," ",u("project.routines.new_btn")]})]}),a.isLoading&&s.jsx(at,{}),!a.isLoading&&k.length===0&&s.jsx(pt,{children:u("project.routines.empty")}),k.length>0&&s.jsxs("div",{className:"grid min-h-0 flex-1 grid-rows-[minmax(0,1fr)] grid-cols-[minmax(200px,260px)_1fr] overflow-hidden rounded-xl border border-border bg-card/40",children:[s.jsx(K8,{routines:k,selectedName:w?.name??null,onSelect:S}),s.jsx("div",{className:"min-h-0 min-w-0 overflow-hidden",children:w?s.jsx(Z8,{pid:e,routine:w,onEdit:()=>d({...w}),onRun:()=>_(w),onToggle:()=>N(w),onDelete:()=>m(w),running:j===w.name},w.name):s.jsx("div",{className:"flex h-full items-center justify-center p-8",children:s.jsx("p",{className:"text-sm text-muted-fg",children:u("project.routines.detail_empty")})})})]}),s.jsx(e7,{draft:c,onClose:()=>d(null),onSaved:()=>{d(null),a.mutate()},pid:e}),s.jsx(sn,{open:!!p,onClose:()=>g?null:m(null),title:u("project.routines.delete_confirm",{name:p?.name||""}),size:"sm",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:()=>m(null),disabled:g,children:u("common.cancel")}),s.jsx(se,{variant:"destructive",onClick:A,loading:g,children:u("common.delete")})]}),children:s.jsx("p",{className:"text-sm text-muted-fg",children:u("project.routines.delete_confirm_body")})}),s.jsx(sn,{open:!!b,onClose:()=>_(null),title:u("project.routines.run_confirm",{name:b?.name||""}),size:"sm",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:()=>_(null),children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:R,children:u("common.run")})]}),children:s.jsx("p",{className:"text-sm text-muted-fg",children:u("project.routines.run_confirm_body")})})]})}function yo({label:e,children:t}){return s.jsxs("div",{className:"flex items-baseline justify-between gap-3 text-xs",children:[s.jsx("span",{className:"text-muted-foreground",children:e}),s.jsx("span",{className:"text-right font-mono text-foreground/90",children:t})]})}function n7({pid:e,taskId:t,onClose:a,onChanged:o}){const l=Ze(),c=Pn(),{data:d,isLoading:p,mutate:m}=$e(`/projects/${e}/tasks/${t}`,()=>Wn.get(e,t)),[g,h]=x.useState(""),[b,_]=x.useState(!1);x.useEffect(()=>{h(d?.body??"")},[d?.id,d?.body]);const j=()=>{m(),o()},E=async S=>{_(!0);try{await S(),j()}catch(N){l.error(N instanceof Error?N.message:String(N))}finally{_(!1)}};if(p)return s.jsx("div",{className:"flex w-80 items-center justify-center border-l border-border",children:s.jsx(Dn,{})});if(!d)return null;const k=Bf(d),y=d.state==="open",w=g!==(d.body??"");return s.jsxs("div",{className:"flex w-80 shrink-0 flex-col border-l border-border bg-card/40","data-testid":"task-detail",children:[s.jsxs("div",{className:"flex shrink-0 items-center justify-between border-b border-border px-4 py-2.5",children:[s.jsx("span",{className:"text-[10px] font-semibold uppercase tracking-wide text-muted-foreground",children:u("tasks.detail_title")}),s.jsx("button",{type:"button",onClick:a,"aria-label":u("common.close"),className:"text-muted-foreground hover:text-foreground",children:s.jsx(ws,{className:"size-4"})})]}),s.jsxs("div",{className:"min-h-0 flex-1 space-y-4 overflow-y-auto px-4 py-4",children:[s.jsxs("div",{children:[s.jsx("div",{className:"mb-1 text-[10px] uppercase tracking-wide text-muted-foreground",children:u("tasks.field_title")}),s.jsx("div",{className:"text-sm font-semibold",children:d.title})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(P_,{status:k}),s.jsx("span",{className:"font-mono text-[10px] text-muted-foreground",children:d.id})]}),s.jsxs("div",{children:[s.jsxs("div",{className:"mb-1 flex items-center justify-between",children:[s.jsx("span",{className:"text-[10px] uppercase tracking-wide text-muted-foreground",children:u("tasks.field_prompt")}),w&&s.jsxs("button",{type:"button",onClick:()=>E(async()=>{await Wn.patch(e,d.id,{body:g}),l.success(u("common.saved"))}),className:"flex items-center gap-1 text-[10px] text-emerald-500 hover:text-emerald-400",children:[s.jsx(di,{className:"size-3"}),u("files.save")]})]}),s.jsx(un,{rows:4,value:g,onChange:S=>h(S.target.value),placeholder:u("tasks.prompt_ph"),className:"text-xs"})]}),y&&s.jsxs("div",{children:[s.jsx("div",{className:"mb-1 text-[10px] uppercase tracking-wide text-muted-foreground",children:u("tasks.field_status")}),s.jsx(ut,{value:d.status??"pending",onChange:S=>E(()=>Wn.status(e,d.id,S)),options:BN.map(S=>({value:S,label:D_(S)}))})]}),s.jsxs("div",{className:"space-y-1.5 rounded-lg border border-border bg-background/40 p-2.5",children:[d.agent&&s.jsxs(yo,{label:u("tasks.field_agent"),children:["@",d.agent]}),d.created_by&&s.jsx(yo,{label:u("tasks.field_creator"),children:d.created_by}),d.source&&s.jsx(yo,{label:u("tasks.field_source"),children:d.source}),d.due&&s.jsx(yo,{label:u("project.tasks.due"),children:d.due}),s.jsx(yo,{label:u("tasks.field_created"),children:new Date(d.created_at).toLocaleString()}),s.jsx(yo,{label:u("tasks.field_updated"),children:new Date(d.updated_at).toLocaleString()}),d.done_at&&s.jsx(yo,{label:u("tasks.field_done"),children:new Date(d.done_at).toLocaleString()})]}),d.thread&&s.jsxs("button",{type:"button",onClick:()=>c(`/p/${e}/chat?thread=${d.thread}`),className:"flex w-full items-center justify-center gap-1.5 rounded-lg border border-sky-500/30 bg-sky-500/5 px-3 py-2 text-xs text-sky-500 hover:bg-sky-500/10",children:[s.jsx(LS,{className:"size-3.5"}),u("tasks.view_thread")]})]}),s.jsx("div",{className:"flex shrink-0 gap-2 border-t border-border px-4 py-3",children:y?s.jsxs(s.Fragment,{children:[s.jsxs(se,{size:"sm",variant:"primary",className:"flex-1",loading:b,onClick:()=>E(()=>Wn.done(e,d.id)),children:[s.jsx($r,{size:13}),u("tasks.mark_done")]}),s.jsx(se,{size:"sm",variant:"destructive",loading:b,onClick:()=>E(()=>Wn.drop(e,d.id)),"aria-label":u("project.tasks.aria_drop"),children:s.jsx(_n,{size:13})})]}):s.jsxs(se,{size:"sm",variant:"secondary",className:"flex-1",loading:b,onClick:()=>E(()=>Wn.reopen(e,d.id)),children:[s.jsx(ui,{size:13}),u("project.tasks.reopen")]})})]})}function s7({pid:e}){const[t,a]=x.useState("open"),[o,l]=$o(),c=o.get("task"),d=Ze(),p=U_({key:`/projects/${e}/tasks?state=${t}`,fetchPage:(N,R)=>Wn.listPage(e,{state:t,limit:N,offset:R}),resetKey:t,swr:{dedupingInterval:0,revalidateOnFocus:!0}}),[m,g]=x.useState(""),[h,b]=x.useState(""),[_,j]=x.useState(!1),[E,k]=x.useState(!1),y=N=>{const R=new URLSearchParams(o);N?R.set("task",N):R.delete("task"),l(R,{replace:!0})},w=async()=>{if(m.trim()){k(!0);try{await Wn.add(e,{title:m.trim(),body:h.trim()||null,source:"web"}),g(""),b(""),j(!1),d.success(u("project.tasks.created")),p.mutate()}catch(N){d.error(N?.message||u("project.tasks.create_error"))}finally{k(!1)}}},S=async(N,R)=>{try{await N(),d.success(R),p.mutate()}catch(A){d.error(A?.message||u("common.error_generic"))}};return s.jsxs(Fe,{fullHeight:!0,title:u("project.tasks.title"),description:u("project.tasks.subtitle"),action:s.jsx("div",{className:"flex gap-1",children:["open","done","dropped"].map(N=>s.jsx(se,{size:"sm","data-testid":`task-filter-${N}`,variant:t===N?"primary":"ghost",onClick:()=>a(N),children:u(`tasks.state_${N}`)},N))}),children:[s.jsxs("div",{className:"mb-4 shrink-0 space-y-2",children:[s.jsxs("div",{className:"flex items-end gap-2",children:[s.jsx(ae,{label:u("project.tasks.add_label"),children:s.jsx(Ne,{"data-testid":"task-input",placeholder:u("project.tasks.add_placeholder"),value:m,onChange:N=>g(N.target.value),onKeyDown:N=>{N.key==="Enter"&&!_&&w()}})}),s.jsxs(se,{variant:"ghost",size:"sm",onClick:()=>j(N=>!N),"aria-label":u("tasks.toggle_prompt"),children:[_?s.jsx(fb,{size:14}):s.jsx(ns,{size:14})," ",u("tasks.field_prompt")]}),s.jsxs(se,{variant:"primary","data-testid":"task-add",onClick:w,loading:E,children:[s.jsx(It,{size:14})," ",u("project.tasks.add")]})]}),_&&s.jsx(un,{rows:3,value:h,onChange:N=>b(N.target.value),placeholder:u("tasks.prompt_ph"),className:"text-xs"})]}),s.jsxs("div",{className:"flex min-h-0 flex-1 gap-4",children:[s.jsxs("div",{className:"flex min-w-0 flex-1 flex-col",children:[p.isLoading&&s.jsx(at,{}),!p.isLoading&&p.total===0&&s.jsxs(pt,{children:[t==="open"?u("project.tasks.empty_open"):u("project.tasks.empty",{state:t})," ",s.jsx("code",{children:'apx task add "…"'})]}),s.jsx($_,{paged:p,fullHeight:!0,children:s.jsx("ul",{className:"space-y-2 text-sm","data-testid":"task-list",children:p.items.map(N=>{const R=Bf(N);return s.jsxs("li",{"data-testid":`task-${N.id}`,onClick:()=>y(N.id),className:`flex cursor-pointer items-start gap-3 rounded-md border px-3 py-2 hover:border-muted-fg/50 ${c===N.id?"border-primary/50 bg-primary/5":"border-border bg-muted/30"}`,children:[s.jsx(Uf,{status:R,className:"mt-0.5 shrink-0"}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsx("div",{className:"truncate font-medium",children:N.title}),s.jsxs("div",{className:"mt-0.5 flex flex-wrap items-center gap-2 text-xs text-muted-fg",children:[N.state==="open"&&s.jsx(P_,{status:R}),N.tags?.map(A=>s.jsxs(He,{children:["#",A]},A)),N.agent&&s.jsxs(He,{tone:"info",children:["@",N.agent]}),N.due&&s.jsxs("span",{children:[u("project.tasks.due")," ",N.due]})]})]}),s.jsx("div",{className:"flex shrink-0 gap-1",onClick:A=>A.stopPropagation(),children:N.state==="open"?s.jsxs(s.Fragment,{children:[s.jsx(se,{size:"sm",variant:"secondary","aria-label":u("project.tasks.aria_done"),"data-testid":`task-done-${N.id}`,onClick:()=>S(()=>Wn.done(e,N.id),u("project.tasks.done")),children:s.jsx($r,{size:13})}),s.jsx(se,{size:"sm",variant:"destructive","aria-label":u("project.tasks.aria_drop"),"data-testid":`task-drop-${N.id}`,onClick:()=>S(()=>Wn.drop(e,N.id),u("project.tasks.drop")),children:s.jsx(_n,{size:13})})]}):s.jsx(se,{size:"sm",variant:"ghost","aria-label":u("project.tasks.aria_reopen"),"data-testid":`task-reopen-${N.id}`,onClick:()=>S(()=>Wn.reopen(e,N.id),u("project.tasks.reopen")),children:s.jsx(ui,{size:13})})})]},N.id)})})})]}),c&&s.jsx(n7,{pid:e,taskId:c,onClose:()=>y(null),onChanged:()=>p.mutate()})]})]})}const a7="\\$\\{var\\.([^}\\s]+)\\}";function jE(e="g"){return new RegExp(a7,e)}function kE(e){return jE("").test(e)}function r7(e){const t=[];let a=0;for(const o of e.matchAll(jE("g"))){const l=o.index??0;l>a&&t.push({type:"text",value:e.slice(a,l)}),t.push({type:"var",value:o[1]}),a=l+o[0].length}return a<e.length&&t.push({type:"text",value:e.slice(a)}),t}function Rh(e){let t="";for(const a of Array.from(e.childNodes))if(a.nodeType===Node.TEXT_NODE)t+=a.textContent??"";else if(a instanceof HTMLElement){const o=a.dataset.varName;o?t+=`\${var.${o}}`:a.tagName==="BR"?t+="":t+=a.textContent??""}return t.replace(/[\u200B-\u200F\u202A-\u202E\u2060\uFEFF]/g,"").replace(/\u00A0/g," ")}function Yk(e,t){e.replaceChildren();const a=r7(t);for(const o of a)o.type==="text"?e.appendChild(document.createTextNode(o.value)):e.appendChild(wE(o.value));(a.length===0||a[a.length-1].type==="var")&&e.appendChild(document.createTextNode(""))}function wE(e){const t=document.createElement("span");return t.contentEditable="false",t.dataset.varName=e,t.className="inline-flex items-baseline px-1 rounded bg-primary/10 text-primary font-mono text-[12px] select-none cursor-default whitespace-nowrap",t.textContent=`$${e}`,t.title=`\${var.${e}}`,t}function o7(e,t){e.deleteContents(),e.insertNode(t),e.setStartAfter(t),e.collapse(!0);const a=window.getSelection();a?.removeAllRanges(),a?.addRange(e)}function l7(e){const t=document.createRange();t.selectNodeContents(e),t.collapse(!1);const a=window.getSelection();a?.removeAllRanges(),a?.addRange(t)}const Y_=x.forwardRef(function({value:t,onChange:a,placeholder:o,className:l,varNames:c=[],onCreateVar:d},p){const m=x.useRef(null),g=x.useRef(null),h=x.useRef(null),[b,_]=x.useState(!1),[j,E]=x.useState(""),k=x.useRef(t);x.useEffect(()=>{const T=m.current;T&&(t===k.current&&T.childNodes.length>0||(Yk(T,t),k.current=t))},[t]);const y=x.useCallback(()=>{const T=m.current;if(!T)return;const O=Rh(T);k.current=O,O!==t&&a(O)},[a,t]),w=x.useCallback(()=>{const T=m.current;if(!T)return;const O=Rh(T);if(kE(O)&&c7(T)){const z=u7(T);Yk(T,O),z!=null&&d7(T,z)}k.current=Rh(T),k.current!==t&&a(k.current)},[a,t]),S=x.useCallback(()=>{const T=window.getSelection();if(!T||T.rangeCount===0)return;const O=T.getRangeAt(0),z=m.current;z&&z.contains(O.startContainer)&&(h.current=O.cloneRange())},[]),N=x.useCallback(T=>{if(T.key==="Enter"){T.preventDefault(),T.currentTarget.blur();return}if(T.key==="Backspace"){const O=window.getSelection();if(!O||O.rangeCount===0)return;const z=O.getRangeAt(0);if(!z.collapsed)return;const{startContainer:U,startOffset:P}=z;if(U.nodeType===Node.TEXT_NODE&&P===0){const B=U.previousSibling;if(B instanceof HTMLElement&&B.dataset.varName){T.preventDefault(),B.remove(),y();return}}else if(U===m.current){const B=U.childNodes[P-1];if(B instanceof HTMLElement&&B.dataset.varName){T.preventDefault(),B.remove(),y();return}}}},[y]),R=x.useCallback(T=>{const O=m.current;if(!O)return;const z=h.current;O.focus();let U;z&&O.contains(z.startContainer)?U=z:(U=document.createRange(),U.selectNodeContents(O),U.collapse(!1)),o7(U,wE(T)),h.current=null,y()},[y]);x.useImperativeHandle(p,()=>({insertVar:R,focus:()=>m.current?.focus()}),[R]);const A=c.filter(T=>T.toLowerCase().includes(j.toLowerCase()));return s.jsxs("div",{className:he("group flex items-stretch w-full min-w-0 rounded-lg border border-input bg-transparent dark:bg-input/30 transition-colors","focus-within:border-ring focus-within:ring-3 focus-within:ring-ring/50",l),children:[s.jsxs("div",{className:"relative flex-1 min-w-0",children:[s.jsx("div",{ref:m,role:"textbox",contentEditable:!0,suppressContentEditableWarning:!0,onInput:w,onKeyDown:N,onBlur:y,onFocus:S,onMouseUp:S,onKeyUp:S,className:he("h-8 w-full whitespace-nowrap overflow-x-auto px-2.5 py-1 text-sm rounded-l-lg","focus:outline-none font-mono leading-7","[&_*]:align-baseline"),"data-placeholder":o||"",style:{caretColor:"currentColor"}}),t===""&&o&&s.jsx("span",{className:"pointer-events-none absolute left-2.5 top-1/2 -translate-y-1/2 select-none text-sm text-muted-foreground font-mono",children:o})]}),s.jsxs("div",{ref:g,className:"relative flex",children:[s.jsx(Ye,{content:u("chat_ui.insert_variable"),children:s.jsx("button",{type:"button",onMouseDown:T=>{T.preventDefault(),S()},onClick:()=>_(T=>!T),"aria-label":u("chat_ui.insert_variable"),className:he("flex items-center justify-center px-2 min-w-8 border-l border-input text-muted-foreground rounded-r-lg","hover:bg-muted/60 hover:text-foreground transition-colors",b&&"bg-muted/60 text-foreground"),children:s.jsx(It,{size:14})})}),b&&s.jsx(i7,{anchorRef:g,query:j,onQuery:E,varNames:A,onPick:T=>{R(T),_(!1),E("")},onClose:()=>{_(!1),E("")},onCreateVar:d})]})]})});function i7({anchorRef:e,query:t,onQuery:a,varNames:o,onPick:l,onClose:c,onCreateVar:d}){const p=x.useRef(null),m=x.useRef(null),[g,h]=x.useState(null),b=x.useCallback(()=>{const _=e.current;if(!_)return;const j=_.getBoundingClientRect(),E=256,k=4,y=8,w=window.innerWidth-E-y,S=Math.max(y,Math.min(j.right-E,w)),N=j.bottom+k,R=p.current?.offsetHeight??260,A=N+R<=window.innerHeight-y?N:Math.max(y,j.top-R-k);h({left:S,top:A,width:E})},[e]);return x.useLayoutEffect(()=>{b()},[b,t,o.length]),x.useEffect(()=>(b(),window.addEventListener("resize",b),window.addEventListener("scroll",b,!0),()=>{window.removeEventListener("resize",b),window.removeEventListener("scroll",b,!0)}),[b]),x.useEffect(()=>{m.current?.focus({preventScroll:!0})},[]),x.useEffect(()=>{function _(j){const E=j.target;p.current?.contains(E)||e.current?.contains(E)||c()}return document.addEventListener("mousedown",_),()=>document.removeEventListener("mousedown",_)},[e,c]),g?Hs.createPortal(s.jsxs("div",{ref:p,style:g,className:"fixed z-[1000] rounded-md border border-border bg-popover shadow-lg",children:[s.jsx("div",{className:"border-b border-border p-2",children:s.jsx("input",{ref:m,value:t,onChange:_=>a(_.target.value),placeholder:u("shared_ui.search_variable_ph"),className:"w-full rounded bg-muted/40 px-2 py-1 text-xs font-mono outline-none"})}),s.jsxs("ul",{className:"max-h-44 overflow-auto p-1 text-xs",children:[o.length===0&&s.jsx("li",{className:"px-2 py-1.5 text-muted-foreground",children:u("shared_ui.no_matches")}),o.map(_=>s.jsx("li",{children:s.jsx("button",{type:"button",onMouseDown:j=>j.preventDefault(),onClick:()=>l(_),className:"block w-full rounded px-2 py-1.5 text-left font-mono hover:bg-muted/60",children:_})},_))]}),d&&s.jsx("div",{className:"border-t border-border p-1",children:s.jsxs("button",{type:"button",onMouseDown:_=>_.preventDefault(),onClick:()=>{d(),c()},className:"flex w-full items-center gap-1 rounded px-2 py-1.5 text-left text-xs hover:bg-muted/60",children:[s.jsx(It,{size:12})," ",u("shared_ui.create_variable")]})})]}),document.body):null}function c7(e){for(const t of Array.from(e.childNodes))if(t.nodeType===Node.TEXT_NODE&&kE(t.textContent??""))return!0;return!1}function u7(e){const t=window.getSelection();if(!t||t.rangeCount===0)return null;const a=t.getRangeAt(0);if(!e.contains(a.startContainer))return null;const o=a.cloneRange();return o.selectNodeContents(e),o.setEnd(a.startContainer,a.startOffset),o.toString().length}function d7(e,t){const a=document.createTreeWalker(e,NodeFilter.SHOW_TEXT);let o=t,l=a.nextNode();for(;l;){const c=(l.textContent??"").length;if(o<=c){const d=document.createRange();d.setStart(l,o),d.collapse(!0);const p=window.getSelection();p?.removeAllRanges(),p?.addRange(d);return}o-=c,l=a.nextNode()}l7(e)}function Kk(e){return e?Object.entries(e).map(([t,a])=>({key:t,value:String(a)})):[]}function Xk(e){const t={};for(const a of e)a.key.trim()&&(t[a.key.trim()]=a.value);return t}function Qk({rows:e,onChange:t,keyPlaceholder:a=u("shared_ui.kv_key_ph"),valuePlaceholder:o=u("shared_ui.kv_value_ph"),varNames:l,onCreateVar:c,emptyLabel:d}){const p=(h,b)=>{const _=e.slice();_[h]={..._[h],...b},t(_)},m=h=>t(e.filter((b,_)=>_!==h)),g=()=>t([...e,{key:"",value:""}]);return s.jsxs("div",{className:"space-y-2",children:[e.length===0&&d&&s.jsx("p",{className:"text-[11px] text-muted-foreground",children:d}),e.map((h,b)=>s.jsxs("div",{className:"flex items-start gap-2",children:[s.jsx(Ne,{value:h.key,onChange:_=>p(b,{key:_.target.value}),placeholder:a,className:"w-40 font-mono text-xs"}),s.jsx("div",{className:"flex-1",children:s.jsx(Y_,{value:h.value,onChange:_=>p(b,{value:_}),placeholder:o,varNames:l,onCreateVar:c})}),s.jsx(se,{type:"button",size:"sm",variant:"ghost",onClick:()=>m(b),"aria-label":u("shared_ui.remove_row"),children:s.jsx(_n,{size:13})})]},b)),s.jsxs(se,{type:"button",size:"sm",variant:"ghost",onClick:g,children:[s.jsx(It,{size:12})," ",u("shared_ui.add_row")]})]})}function f7(e){const t=e.raw||{};if(typeof t.description=="string"&&t.description.trim())return t.description.trim();if(e.transport==="http"&&e.url)return e.url.length>64?e.url.slice(0,61)+"…":e.url;const a=[e.command,...e.args||[]].filter(Boolean).join(" ");return a?"$ "+(a.length>64?a.slice(0,61)+"…":a):""}function p7(e,t){return t?.busy?"bg-amber-400 animate-pulse":t?.ok===!1?"bg-red-400":t?.ok?"bg-emerald-400":e?"bg-emerald-500/70":"bg-slate-500"}const m7={apc:"info",runtime:"success",global:"muted"};function Xx(e){return e==="runtime"?"runtime":e==="global"?"global":"shared"}function Th(e){return e==="runtime"?u("project.mcps.source_runtime"):e==="apc"?u("project.mcps.source_apc"):e==="claude"?u("project.mcps.source_claude"):e==="codex"?u("project.mcps.source_codex"):e==="cursor"?u("project.mcps.source_cursor"):e==="vscode"?u("project.mcps.source_vscode"):e==="roo"?u("project.mcps.source_roo"):e==="gemini"?u("project.mcps.source_gemini"):e==="global"?u("project.mcps.scope_global"):e}function g7({pid:e}){const t=Ze(),a=$e(`/projects/${e}/mcps`,()=>Or.list(e)),o=$e(`/projects/${e}/mcps/check`,()=>Or.check(e)),l=$e(`/projects/${e}/vars`,()=>Xc.list(e)),[c,d]=x.useState(null),[p,m]=x.useState(null),[g,h]=x.useState({}),[b,_]=x.useState({}),j=x.useMemo(()=>l.data?Object.keys(l.data.effective).sort():[],[l.data]),E=async(w,S)=>{if(confirm(u("project.mcps.delete_confirm",{name:w,scope:S})))try{await Or.remove(e,w,S),t.success(u("project.mcps.removed")),a.mutate(),p===w&&m(null)}catch(N){t.error(N?.message||u("common.error_generic"))}},k=async w=>{try{await Or.add(e,Xx(w.source),{name:w.name,enabled:!w.enabled}),a.mutate()}catch(S){t.error(S?.message||u("common.error_generic"))}},y=async w=>{m(w),h(S=>({...S,[w]:{busy:!0}})),_(S=>({...S,[w]:!0}));try{const S=await Or.test(e,w);h(N=>({...N,[w]:{ok:S.ok,error:S.error,tools:S.tools}}))}catch(S){h(N=>({...N,[w]:{ok:!1,error:S?.message||"error"}}))}};return s.jsxs("div",{className:"grid grid-cols-1 gap-4 lg:grid-cols-4",children:[s.jsx("div",{className:"lg:col-span-3",children:s.jsxs(Fe,{title:u("project.mcps.title"),description:u("project.mcps.subtitle"),action:s.jsxs(se,{size:"sm",variant:"primary",onClick:()=>d({kind:"new"}),children:[s.jsx(It,{size:14})," ",u("project.mcps.new")]}),children:[o.data?.conflicts?.length?s.jsxs("div",{className:"mb-3 rounded-md border border-amber-500/40 bg-amber-500/10 p-2 text-xs",children:[s.jsx("div",{className:"font-medium",children:u("project.mcps.conflicts",{names:o.data.conflicts.map(w=>w.name).join(", ")})}),s.jsx("ul",{className:"mt-1 space-y-1 text-muted-fg",children:o.data.conflicts.map(w=>s.jsxs("li",{className:"flex gap-2",children:[s.jsx("span",{"aria-hidden":"true",children:"•"}),s.jsx("span",{children:u("project.mcps.conflict_detail",{name:w.name,winner:Th(w.winner),loser:Th(w.loser)})})]},`${w.name}-${w.winner}-${w.loser}`))})]}):null,a.isLoading&&s.jsx(at,{}),!a.isLoading&&(a.data?.length??0)===0&&s.jsx(pt,{children:u("project.mcps.empty")}),s.jsx("ul",{className:"space-y-2 text-sm",children:(a.data||[]).map(w=>{const S=w.source==="apc"||w.source==="runtime"||w.source==="global",N=Xx(w.source),R=p===w.name,A=w.enabled!==!1,T=g[w.name],O=T?.tools||[],z=!!b[w.name],U=f7(w),P=w.transport==="http"?HS:W5;return s.jsx("li",{className:"rounded-md border px-3 py-2 transition-colors "+(R?"border-primary/50 bg-primary/5":"border-border bg-muted/30 hover:bg-muted/50"),onClick:()=>m(w.name),role:"button",children:s.jsxs("div",{className:"flex items-start gap-3",children:[s.jsxs("div",{className:"relative mt-0.5 flex h-9 w-9 flex-shrink-0 items-center justify-center rounded-lg border border-border bg-background",children:[s.jsx(P,{size:16,className:"text-muted-fg"}),s.jsx("span",{className:he("absolute -bottom-0.5 -right-0.5 h-2.5 w-2.5 rounded-full border-2 border-card",p7(A,T))})]}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2",children:[s.jsx("span",{className:"font-medium",children:w.name}),s.jsx(He,{tone:m7[w.source]??"muted",children:Th(w.source)}),s.jsx("span",{className:"ml-auto text-xs text-muted-fg",children:(w.transport||"stdio").toUpperCase()}),s.jsx("div",{onClick:B=>B.stopPropagation(),children:s.jsx(Gt,{checked:A,onChange:()=>k(w),label:""})}),s.jsx(Ye,{content:u("project.mcps.test_btn"),children:s.jsx(se,{size:"sm",variant:"ghost",onClick:B=>{B.stopPropagation(),y(w.name)},"aria-label":u("project.mcps.test_btn"),children:T?.busy?s.jsx(mx,{size:13,className:"animate-pulse"}):s.jsx(mx,{size:13})})}),s.jsx(Ye,{content:u("project.mcps.logs_btn"),children:s.jsx(se,{size:"sm",variant:"ghost",onClick:B=>{B.stopPropagation(),m(w.name)},"aria-label":u("project.mcps.logs_btn"),children:s.jsx(_f,{size:13})})}),S&&s.jsx(Ye,{content:u("project.mcps.edit_btn"),children:s.jsx(se,{size:"sm",variant:"ghost",onClick:B=>{B.stopPropagation(),d({kind:"edit",entry:w})},"aria-label":u("project.mcps.edit_btn"),children:s.jsx(ya,{size:13})})}),S&&s.jsx(se,{size:"sm",variant:"destructive",onClick:B=>{B.stopPropagation(),E(w.name,N)},children:s.jsx(_n,{size:13})})]}),U&&s.jsx("p",{className:"mt-0.5 truncate font-mono text-xs text-muted-fg",children:U}),T?.ok===!1&&T.error&&s.jsxs("p",{className:"mt-1 flex items-start gap-1 text-xs text-red-400",children:[s.jsx(zS,{size:12,className:"mt-0.5 flex-shrink-0"})," ",s.jsx("span",{className:"break-words",children:T.error})]}),O.length>0&&s.jsxs("div",{className:"mt-1.5",onClick:B=>B.stopPropagation(),children:[s.jsxs("button",{type:"button",onClick:()=>_(B=>({...B,[w.name]:!B[w.name]})),className:"flex items-center gap-1 text-xs text-muted-fg transition-colors hover:text-fg",children:[s.jsx(ea,{size:12})," ",u("project.mcps.tools_count",{n:O.length}),s.jsx(ns,{size:12,className:he("transition-transform",z&&"rotate-180")})]}),z&&s.jsxs("div",{className:"mt-1.5 flex flex-wrap gap-1.5",children:[O.slice(0,40).map(B=>s.jsx(Ye,{content:B.description||"—",children:s.jsxs("span",{className:"inline-flex items-center gap-1 rounded border border-border bg-background px-1.5 py-0.5 font-mono text-[10px] text-muted-fg",children:[s.jsx(ba,{size:10})," ",B.name]})},B.name)),O.length>40&&s.jsxs("span",{className:"text-[10px] text-muted-fg",children:["… +",O.length-40]})]})]})]})]})},`${w.source}-${w.name}`)})}),c&&s.jsx(x7,{mode:c,pid:e,varNames:j,onClose:()=>d(null),onSaved:()=>{d(null),a.mutate()},onVarsChanged:()=>l.mutate()})]})}),s.jsx("div",{className:"lg:col-span-1",children:s.jsx(h7,{pid:e,mcpName:p,runningTest:!!(p&&g[p]?.busy)})})]})}function h7({pid:e,mcpName:t,runningTest:a}){const[o,l]=x.useState(null),[c,d]=x.useState(null),p=x.useRef(null);x.useEffect(()=>{if(!t){l(null),d(null);return}p.current!==t&&(l(null),d(null),p.current=t);let g=!1;const h=async()=>{try{const j=await Or.logs(e,t);g||(l(j),d(null))}catch(j){g||d(j?.message||"error")}};h();const _=setInterval(h,a?1200:4e3);return()=>{g=!0,clearInterval(_)}},[e,t,a]);const m=x.useRef(null);return x.useEffect(()=>{m.current&&(m.current.scrollTop=m.current.scrollHeight)},[o?.events?.length,o?.stderr_tail]),s.jsxs("div",{className:"sticky top-3 flex h-[calc(100vh-7rem)] min-h-[24rem] flex-col rounded-xl border border-border bg-card",children:[s.jsxs("div",{className:"flex items-center gap-2 border-b border-border px-3 py-2 text-xs",children:[s.jsx(ba,{size:13,className:"text-muted-fg"}),s.jsx("span",{className:"font-medium",children:u("project.mcps.logs_panel_title")}),t?s.jsx(He,{tone:"info",children:t}):s.jsxs("span",{className:"text-muted-fg",children:["— ",u("project.mcps.logs_panel_pick")]})]}),s.jsxs("div",{ref:m,className:"flex-1 overflow-auto bg-background/60 px-3 py-2 font-mono text-[11px]",children:[!t&&s.jsx("p",{className:"text-muted-fg",children:u("project.mcps.logs_panel_hint")}),t&&c&&s.jsx("p",{className:"text-red-400",children:c}),t&&!c&&o&&s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"mb-2 text-muted-fg",children:[o.transport.toUpperCase(),o.url?` · ${o.url}`:o.command?` · ${o.command}`:"",o.last_error?` · last_error: ${o.last_error}`:""]}),o.note&&s.jsx("p",{className:"text-muted-fg",children:o.note}),(!o.events||o.events.length===0)&&!o.stderr_tail&&!o.note&&s.jsx("p",{className:"text-muted-fg",children:u("project.mcps.logs_panel_idle")}),o.events?.map((g,h)=>s.jsxs("div",{className:"flex gap-2",children:[s.jsx("span",{className:"text-muted-fg",children:g.ts.slice(11,19)}),s.jsx("span",{className:g.level==="error"?"text-red-400":g.level==="stderr"?"text-amber-400":"text-emerald-400",children:g.level}),s.jsx("span",{className:"flex-1 break-all",children:g.msg})]},h)),o.stderr_tail&&s.jsxs("div",{className:"mt-2 border-t border-border/60 pt-2",children:[s.jsx("div",{className:"mb-1 text-muted-fg",children:"stderr"}),s.jsx("pre",{className:"whitespace-pre-wrap break-all text-amber-300/80",children:o.stderr_tail})]})]})]})]})}function x7({mode:e,pid:t,varNames:a,onClose:o,onSaved:l,onVarsChanged:c}){const d=Ze(),p=e.kind==="edit",m=p?e.entry:null,[g,h]=x.useState(!1),[b,_]=x.useState(m?Xx(m.source):"runtime"),[j,E]=x.useState(m?.name||""),[k,y]=x.useState(m?.transport==="http"||m?.url?"http":"stdio"),[w,S]=x.useState(m?.command||""),[N,R]=x.useState(m?.args&&m.args.length?m.args:[""]),[A,T]=x.useState(Kk(m?.env)),[O,z]=x.useState(m?.url||""),[U,P]=x.useState(Kk(m?.headers)),[B,D]=x.useState(m?.enabled!==!1),[L,$]=x.useState(!1),V=async()=>{if(!j.trim()){d.error(u("project.mcps.name_required"));return}h(!0);try{const H=N.map(Y=>Y.trim()).filter(Boolean),F=k==="stdio"?{name:j.trim(),command:w.trim(),args:H.length?H:void 0,env:A.length?Xk(A):void 0,enabled:B}:{name:j.trim(),url:O.trim(),headers:U.length?Xk(U):void 0,enabled:B};await Or.add(t,b,F),d.success(u(p?"project.mcps.updated":"project.mcps.added")),l()}catch(H){d.error(H?.message||u("common.error_generic"))}finally{h(!1)}};return s.jsxs(s.Fragment,{children:[s.jsx(sn,{open:!0,onClose:()=>g?null:o(),title:u(p?"project.mcps.edit_title":"project.mcps.new_title"),description:p?m?.name:u("project.mcps.new_desc"),size:"lg",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:o,disabled:g,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:V,loading:g,children:u(p?"project.mcps.save_btn":"project.mcps.add_btn")})]}),children:s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("project.mcps.scope_label"),children:s.jsx(ut,{value:b,onChange:H=>_(H),options:[{value:"runtime",label:u("project.mcps.scope_runtime"),description:u("project.mcps.scope_runtime_desc")},{value:"shared",label:u("project.mcps.scope_shared"),description:u("project.mcps.scope_shared_desc")},{value:"global",label:u("project.mcps.scope_global"),description:u("project.mcps.scope_global_desc")}]})}),s.jsx(ae,{label:u("project.mcps.transport_label"),children:s.jsx(ut,{value:k,onChange:H=>y(H),options:[{value:"stdio",label:u("project.mcps.transport_stdio"),description:u("project.mcps.transport_stdio_desc")},{value:"http",label:u("project.mcps.transport_http"),description:u("project.mcps.transport_http_desc")}]})})]}),s.jsx(ae,{label:u("project.mcps.name_label"),children:s.jsx(Ne,{value:j,onChange:H=>E(H.target.value),placeholder:u("project.mcps.name_ph"),disabled:p})}),k==="stdio"?s.jsxs(s.Fragment,{children:[s.jsx(ae,{label:u("project.mcps.cmd_label"),children:s.jsx(Ne,{value:w,onChange:H=>S(H.target.value),placeholder:u("project.mcps.cmd_ph")})}),s.jsx(ae,{label:u("project.mcps.args_label"),hint:u("project.mcps.args_hint_tokens"),children:s.jsx(b7,{args:N,onChange:R,varNames:a,onCreateVar:()=>$(!0)})}),s.jsx(ae,{label:u("project.mcps.env_label"),hint:u("project.mcps.env_hint_tokens"),children:s.jsx(Qk,{rows:A,onChange:T,keyPlaceholder:"API_KEY",valuePlaceholder:"${var.MY_TOKEN}",varNames:a,onCreateVar:()=>$(!0),emptyLabel:u("project.mcps.env_empty")})})]}):s.jsxs(s.Fragment,{children:[s.jsx(ae,{label:u("project.mcps.url_label"),children:s.jsx(Y_,{value:O,onChange:z,placeholder:u("project.mcps.url_ph"),varNames:a,onCreateVar:()=>$(!0)})}),s.jsx(ae,{label:u("project.mcps.headers_label"),hint:u("project.mcps.headers_hint"),children:s.jsx(Qk,{rows:U,onChange:P,keyPlaceholder:"Authorization",valuePlaceholder:"Bearer ${var.TOKEN}",varNames:a,onCreateVar:()=>$(!0),emptyLabel:u("project.mcps.headers_empty")})})]}),s.jsx(Gt,{checked:B,onChange:D,label:u("project.mcps.enabled_label")})]})}),L&&s.jsx(_7,{pid:t,onClose:()=>$(!1),onCreated:()=>{$(!1),c()}})]})}function b7({args:e,onChange:t,varNames:a,onCreateVar:o}){const l=(p,m)=>{const g=e.slice();g[p]=m,t(g)},c=p=>t(e.filter((m,g)=>g!==p)),d=()=>t([...e,""]);return s.jsxs("div",{className:"space-y-2",children:[e.map((p,m)=>s.jsxs("div",{className:"flex items-start gap-2",children:[s.jsx("div",{className:"flex-1",children:s.jsx(Y_,{value:p,onChange:g=>l(m,g),placeholder:u("agents_ui.arg_placeholder"),varNames:a,onCreateVar:o})}),s.jsx(se,{type:"button",size:"sm",variant:"ghost",onClick:()=>c(m),"aria-label":u("agents_ui.remove_arg"),children:s.jsx(_n,{size:13})})]},m)),s.jsxs(se,{type:"button",size:"sm",variant:"ghost",onClick:d,children:[s.jsx(It,{size:12})," ",u("project.mcps.add_arg")]})]})}function _7({pid:e,onClose:t,onCreated:a}){const o=Ze(),l=String(e)==="0",[c,d]=x.useState(""),[p,m]=x.useState(""),[g,h]=x.useState(!1),[b,_]=x.useState(l?"global":"project"),j=async()=>{if(!c.trim()){o.error(u("project.vars.name_required"));return}if(!p){o.error(u("project.vars.value_required"));return}h(!0);try{await Xc.upsert(e,{name:c.trim(),value:p,scope:b}),o.success(u("project.vars.added")),a()}catch(E){o.error(E?.message||u("common.error_generic"))}finally{h(!1)}};return s.jsx(sn,{open:!0,onClose:()=>g?null:t(),title:u("project.vars.new_title"),description:u("project.vars.new_desc"),size:"sm",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:g,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:j,loading:g,children:u("project.vars.add_btn")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("project.vars.scope_label"),children:s.jsx(ut,{value:b,onChange:E=>_(E),options:[...l?[]:[{value:"project",label:u("project.vars.scope_project"),description:u("project.vars.scope_project_desc")}],{value:"global",label:u("project.vars.scope_global"),description:u("project.vars.scope_global_desc")}]})}),s.jsx(ae,{label:u("project.vars.name_label"),hint:u("project.vars.name_hint"),children:s.jsx(Ne,{value:c,onChange:E=>d(E.target.value.toUpperCase().replace(/[^A-Z0-9_]/g,"_")),placeholder:"MY_API_KEY",autoFocus:!0})}),s.jsx(ae,{label:u("project.vars.value_label"),hint:u("project.vars.value_hint"),children:s.jsx(Ne,{type:"password",value:p,onChange:E=>m(E.target.value),className:"font-mono text-xs"})})]})})}function SE({icon:e,title:t,description:a,badges:o,rightContent:l,hasTools:c,expanded:d,onToggle:p,children:m}){return s.jsxs("div",{className:"overflow-hidden rounded-xl border border-border bg-card",children:[s.jsxs("button",{type:"button",className:"flex w-full items-center gap-4 p-4 text-left transition-colors hover:bg-muted/40",onClick:p,children:[e,s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2",children:[s.jsx("p",{className:"text-sm font-semibold text-foreground",children:t}),o,c&&s.jsx(Ye,{content:"Esta integración expone tools para los agentes",children:s.jsx("span",{children:s.jsx(ea,{className:"h-3 w-3 text-muted-foreground"})})})]}),s.jsx("p",{className:"mt-0.5 truncate text-xs text-muted-foreground",children:a})]}),s.jsxs("div",{className:"flex flex-shrink-0 items-center gap-2",children:[l,s.jsx(qr,{className:he("h-4 w-4 text-muted-foreground transition-transform",d&&"rotate-90")})]})]}),d&&m&&s.jsx("div",{className:"border-t border-border",children:m})]})}function v7({tools:e,isActive:t}){return t?s.jsxs("div",{className:"space-y-2.5 rounded-xl border border-border bg-muted/30 p-3",children:[s.jsx("div",{className:"flex items-center justify-between",children:s.jsx("p",{className:"text-[10px] font-semibold uppercase tracking-wide text-muted-foreground",children:u("integrations.tools_for_agents")})}),s.jsx("div",{className:"flex flex-wrap gap-1.5",children:e.map(a=>s.jsxs("div",{className:"flex items-center gap-1.5 rounded-lg border border-border bg-background px-2 py-1",children:[s.jsx(ea,{className:"h-2.5 w-2.5 flex-shrink-0 text-muted-foreground"}),s.jsx("span",{className:"font-mono text-[10px] text-foreground",children:a.slug}),s.jsx("span",{className:"text-[10px] text-muted-foreground/60",children:"·"}),s.jsx("span",{className:"text-[10px] text-muted-foreground",children:a.desc})]},a.slug))}),s.jsx("p",{className:"text-[10px] text-muted-foreground/70",children:u("integrations.tools_available_note")})]}):null}const vc=(e,t)=>u(e,t);function y7({className:e}){return s.jsx("svg",{className:e,viewBox:"0 0 24 24",fill:"currentColor",children:s.jsx("path",{d:"M18.833 9.637a4.167 4.167 0 1 1 0 8.333 4.167 4.167 0 0 1 0-8.333zm-13.666 0a4.167 4.167 0 1 1 0 8.333 4.167 4.167 0 0 1 0-8.333zM12 2a4.167 4.167 0 1 1 0 8.333A4.167 4.167 0 0 1 12 2z"})})}const Wk={rose:{text:"text-rose-400",border:"border-rose-700/50",hover:"hover:bg-rose-900/20",ring:"focus:border-rose-500/50",wrap:"border-rose-500/30 from-rose-500/20 to-pink-500/20"},slate:{text:"text-slate-200",border:"border-slate-600/60",hover:"hover:bg-slate-700/30",ring:"focus:border-slate-400/60",wrap:"border-slate-500/30 from-slate-500/20 to-slate-700/20"}};function j7(e,t){return e==="github"?s.jsx($S,{className:he("h-6 w-6",t.text)}):e==="asana"?s.jsx(y7,{className:he("h-6 w-6",t.text)}):s.jsx("span",{className:he("text-lg",t.text),children:"◆"})}function k7({pid:e,scope:t,entry:a}){const o=a.ui,l=Wk[o.accent||"rose"]||Wk.rose,[c,d]=x.useState(!1),[p,m]=x.useState({}),[g,h]=x.useState({}),[b,_]=x.useState(null),[j,E]=x.useState("idle"),[k,y]=x.useState(null),[w,S]=x.useState([]),[N,R]=x.useState(""),{data:A,mutate:T,isLoading:O}=$e(`integration-status-${a.slug}-${e}-${t}`,()=>Ls.status(e,a.slug,t),{shouldRetryOnError:!1}),z=A?.status==="active"&&A.is_enabled===!0,U=j==="saving"||j==="validating",P=!z&&w.length===0;async function B(){if(!o.configFields.some(V=>!p[V.key]?.trim())){E("saving"),y(null);try{await Ls.configure(e,a.slug,t,{...p}),E("validating");const V=await Ls.validate(e,a.slug,t);if(await T(),o.select&&!V[o.select.key]){const F=(await Ls.action(e,a.slug,o.select.action,t))[o.select.listKey]||[];F.length>1&&S(F.map(Y=>({value:String(Y[o.select.valueKey]),label:String(Y[o.select.labelKey])})))}E("done"),m({})}catch(V){y(V instanceof Error?V.message:u("integrations.err_connect")),E("idle")}}}async function D(){if(!(!N||!o.select)){E("saving"),y(null);try{await Ls.configure(e,a.slug,t,{[o.select.key]:N}),await Ls.validate(e,a.slug,t),await T(),S([]),E("done")}catch(V){y(V instanceof Error?V.message:u("integrations.err_generic")),E("idle")}}}async function L(){y(null);try{await Ls.deactivate(e,a.slug,t),await T()}catch(V){y(V instanceof Error?V.message:u("integrations.err_generic"))}}const $=O?"…":z?u("integrations.status_active"):A?.status==="error"?u("integrations.status_error"):u("integrations.status_unconfigured");return s.jsx(SE,{icon:s.jsx("div",{className:he("flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-2xl border bg-gradient-to-br",l.wrap),children:j7(a.slug,l)}),title:a.name,description:a.description,hasTools:(a.tools?.length??0)>0,badges:s.jsxs("span",{className:he("flex items-center gap-1 rounded-full border px-1.5 py-0.5 text-[10px]",z?"border-emerald-700 bg-emerald-900/20 text-emerald-400":"border-border bg-muted text-muted-foreground"),children:[s.jsx("span",{className:he("h-1.5 w-1.5 rounded-full",z?"bg-emerald-400":"bg-muted-foreground")}),$]}),expanded:c,onToggle:()=>d(V=>!V),children:s.jsxs("div",{className:"space-y-4 p-4",children:[k&&s.jsxs("div",{className:"flex items-center gap-2 rounded-lg border border-red-700/30 bg-red-900/20 px-3 py-2.5 text-xs text-red-300",children:[s.jsx(v5,{className:"h-3.5 w-3.5 flex-shrink-0"}),s.jsx("span",{className:"flex-1",children:k}),s.jsx("button",{onClick:()=>y(null),children:s.jsx(ws,{className:"h-3.5 w-3.5"})})]}),z&&w.length===0&&s.jsxs("div",{className:"space-y-1 rounded-xl border border-emerald-700/30 bg-emerald-900/10 p-3",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(pb,{className:"h-3.5 w-3.5 text-emerald-400"}),s.jsx("span",{className:"text-xs font-medium text-emerald-300",children:u("integrations.connected")})]}),(o.connectedFields||[]).map(V=>{const H=A?.[V];return H?s.jsxs("p",{className:"pl-5 text-[10px] text-muted-foreground",children:[vc(`integrations.${a.slug}.connected.${V}`),": ",String(H)]},V):null})]}),w.length>1&&o.select&&s.jsxs("div",{className:"space-y-2",children:[s.jsxs("p",{className:"text-[11px] text-muted-foreground",children:[vc(`integrations.${a.slug}.select_label`),":"]}),s.jsxs("div",{className:"flex gap-2",children:[s.jsxs("select",{value:N,onChange:V=>R(V.target.value),className:he("flex-1 rounded-lg border border-border bg-background px-2 py-1.5 text-xs outline-none",l.ring),children:[s.jsx("option",{value:"",children:u("integrations.select_placeholder")}),w.map(V=>s.jsx("option",{value:V.value,children:V.label},V.value))]}),s.jsx("button",{onClick:D,disabled:!N||U,className:he("rounded-lg border px-3 py-1.5 text-xs transition-all disabled:cursor-not-allowed disabled:opacity-50",l.border,l.text,l.hover),children:U?s.jsx(Lr,{className:"h-3.5 w-3.5 animate-spin"}):u("integrations.confirm")})]})]}),P&&s.jsxs("div",{className:"space-y-3",children:[s.jsx("p",{className:"text-xs font-semibold text-foreground",children:u("integrations.credentials",{name:a.name})}),o.configFields.map(V=>s.jsxs("div",{className:"space-y-2",children:[V.help_url&&s.jsxs("div",{className:"overflow-hidden rounded-lg border border-border",children:[s.jsxs("button",{type:"button",onClick:()=>_(H=>H===V.key?null:V.key),className:"flex w-full items-center justify-between px-3 py-2 text-left transition-colors hover:bg-muted/40",children:[s.jsxs("span",{className:"text-[11px] text-muted-foreground",children:[vc(`integrations.${a.slug}.fields.${V.key}.help_label`)," ·"," ",s.jsxs("a",{href:V.help_url,target:"_blank",rel:"noreferrer",onClick:H=>H.stopPropagation(),className:he("inline-flex items-center gap-0.5 hover:underline",l.text),children:[V.help_url_label," ",s.jsx(LS,{className:"h-2.5 w-2.5"})]})]}),s.jsx(ns,{className:he("h-3.5 w-3.5 flex-shrink-0 text-muted-foreground transition-transform",b===V.key&&"rotate-180")})]}),b===V.key&&s.jsx("div",{className:"space-y-1.5 border-t border-border px-3 pb-3 pt-2.5",children:vc(`integrations.${a.slug}.fields.${V.key}.help_steps`).split(`
749
- `).map((H,F)=>s.jsxs("div",{className:"flex items-start gap-2",children:[s.jsxs("span",{className:he("mt-0.5 flex-shrink-0 font-mono text-[10px]",l.text),children:[F+1,"."]}),s.jsx("p",{className:"text-[11px] text-muted-foreground",children:H})]},F))})]}),s.jsxs("div",{children:[s.jsx("label",{className:"mb-1 block text-[10px] text-muted-foreground",children:vc(`integrations.${a.slug}.fields.${V.key}.label`)}),s.jsxs("div",{className:"relative",children:[s.jsx("input",{type:V.type==="password"&&!g[V.key]?"password":"text",placeholder:V.placeholder,value:p[V.key]||"",onChange:H=>m(F=>({...F,[V.key]:H.target.value})),onKeyDown:H=>H.key==="Enter"&&B(),className:he("w-full rounded-lg border border-border bg-background px-3 py-2 font-mono text-xs outline-none placeholder:text-muted-foreground/60",V.type==="password"&&"pr-14",l.ring)}),V.type==="password"&&s.jsxs("button",{type:"button",onClick:()=>h(H=>({...H,[V.key]:!H[V.key]})),className:"absolute right-2.5 top-1/2 flex -translate-y-1/2 items-center gap-0.5 text-[10px] text-muted-foreground transition-colors hover:text-foreground",children:[g[V.key]?s.jsx(IS,{className:"h-3 w-3"}):s.jsx(au,{className:"h-3 w-3"}),g[V.key]?u("integrations.hide"):u("integrations.reveal")]})]})]})]},V.key)),j==="validating"&&s.jsxs("div",{className:"flex items-center gap-2 text-xs text-muted-foreground",children:[s.jsx(Lr,{className:"h-3.5 w-3.5 animate-spin"})," ",u("integrations.verifying")]}),s.jsx("button",{onClick:B,disabled:o.configFields.some(V=>!p[V.key]?.trim())||U,className:he("flex w-full items-center justify-center gap-1.5 rounded-lg border px-3 py-2 text-xs transition-all disabled:cursor-not-allowed disabled:opacity-50",l.border,l.text,l.hover),children:U?s.jsxs(s.Fragment,{children:[s.jsx(Lr,{className:"h-3.5 w-3.5 animate-spin"}),u(j==="saving"?"integrations.saving":"integrations.validating")]}):u("integrations.connect")})]}),a.tools&&a.tools.length>0&&s.jsx(v7,{pid:e,tools:a.tools,isActive:z}),z&&s.jsx("div",{className:"flex justify-end border-t border-border pt-2",children:s.jsxs("button",{onClick:L,className:"flex items-center gap-1.5 rounded-lg border border-red-700/50 px-3 py-1.5 text-xs text-red-400 transition-all hover:bg-red-900/20",children:[s.jsx(d3,{className:"h-3.5 w-3.5"})," ",u("integrations.deactivate")]})})]})})}const w7={github:{icon:$S,className:"text-slate-200",wrap:"border-slate-500/30 from-slate-500/20 to-slate-700/20"},whatsapp:{icon:X5,className:"text-[#25D366]",wrap:"border-[#25D366]/30 from-[#25D366]/20 to-[#128C7E]/20"},"local-transcription":{icon:bb,className:"text-orange-400",wrap:"border-orange-500/30 from-orange-500/20 to-amber-500/20"}};function S7({entry:e}){const[t,a]=x.useState(!1),o=w7[e.slug]||{icon:Hc,className:"text-muted-foreground",wrap:"border-border from-muted to-muted"},l=o.icon;return s.jsx(SE,{icon:s.jsx("div",{className:`flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-2xl border bg-gradient-to-br ${o.wrap}`,children:s.jsx(l,{className:`h-6 w-6 ${o.className}`})}),title:e.name,description:e.description,badges:s.jsx("span",{className:"rounded-full border border-border bg-muted px-1.5 py-0.5 text-[10px] text-muted-foreground",children:u("integrations.coming_soon")}),expanded:t,onToggle:()=>a(c=>!c),children:s.jsx("div",{className:"p-4 text-xs text-muted-foreground",children:u("integrations.coming_soon_body")})})}const C7=[{value:"plugins",labelKey:"integrations.tab_plugins",icon:Hc},{value:"tools",labelKey:"integrations.tab_tools",icon:ea}];function N7({pid:e,scope:t,entry:a}){return a.coming_soon||!a.ui?s.jsx(S7,{entry:a}):s.jsx(k7,{pid:e,scope:t,entry:a})}function E7({pid:e,scope:t}){const{data:a,isLoading:o}=$e(`integrations-catalog-${e}`,()=>Ls.catalog(e));return s.jsxs("div",{className:"space-y-3",children:[s.jsx("p",{className:"text-xs text-muted-foreground",children:u("integrations.plugins_hint")}),o&&s.jsx(at,{}),(a||[]).map(l=>s.jsx(N7,{pid:e,scope:t,entry:l},l.slug)),s.jsx("div",{className:"rounded-xl border border-dashed border-border p-6 text-center",children:s.jsx("p",{className:"text-sm text-muted-foreground",children:u("integrations.more_soon")})})]})}function R7({pid:e}){const{data:t}=$e(`integrations-catalog-${e}`,()=>Ls.catalog(e)),a=(t||[]).filter(o=>!o.coming_soon&&(o.tools?.length??0)>0).flatMap(o=>(o.tools||[]).map(l=>({...l,plugin:o.name,active:o.status.is_enabled})));return s.jsxs("div",{className:"space-y-3",children:[s.jsx("p",{className:"text-xs text-muted-foreground",children:u("integrations.tools_hint")}),a.length===0?s.jsx(pt,{children:u("integrations.tools_empty")}):s.jsx("ul",{className:"space-y-2",children:a.map(o=>s.jsxs("li",{className:he("rounded-md border border-border bg-muted/30 px-3 py-2",!o.active&&"opacity-55"),children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(ea,{className:"h-3.5 w-3.5 text-muted-foreground"}),s.jsx("span",{className:"font-mono text-xs text-foreground",children:o.slug}),s.jsx("span",{className:"ml-auto text-[10px] text-muted-foreground",children:o.plugin}),s.jsx("span",{className:he("rounded border px-1.5 py-0.5 text-[10px]",o.active?"border-emerald-700/40 bg-emerald-900/20 text-emerald-400":"border-border bg-muted text-muted-foreground"),children:o.active?u("integrations.tool_active"):u("integrations.tool_inactive")})]}),s.jsx("p",{className:"mt-0.5 pl-5 text-[10px] text-muted-foreground",children:o.desc})]},o.slug))})]})}function T7({pid:e}){const t=String(e)==="0",[a,o]=x.useState("plugins"),[l,c]=x.useState(t?"global":"project");return s.jsxs(Fe,{title:u("integrations.title"),description:u("integrations.description"),children:[!t&&s.jsxs("div",{className:"mb-4 flex items-center gap-2",children:[s.jsx("span",{className:"text-xs text-muted-foreground",children:u("integrations.scope_label")}),["project","global"].map(d=>s.jsx("button",{onClick:()=>c(d),className:he("rounded-md border px-2.5 py-1 text-xs transition-colors",l===d?"border-primary/50 bg-primary/10 text-foreground":"border-border bg-muted/30 text-muted-foreground hover:bg-muted/50"),children:u(d==="project"?"integrations.scope_project":"integrations.scope_global")},d))]}),s.jsx("div",{className:"mb-4 inline-flex rounded-lg border border-border bg-muted/30 p-0.5",children:C7.map(d=>{const p=d.icon;return s.jsxs("button",{onClick:()=>o(d.value),className:he("flex items-center gap-1.5 rounded-md px-3 py-1.5 text-xs transition-colors",a===d.value?"bg-card text-foreground shadow-sm":"text-muted-foreground hover:text-foreground"),children:[s.jsx(p,{className:"h-3.5 w-3.5"})," ",u(d.labelKey)]},d.value)})}),a==="plugins"&&s.jsx(E7,{pid:e,scope:l}),a==="tools"&&s.jsx(R7,{pid:e})]})}function A7({pid:e}){const t=Ze(),a=String(e)==="0",[o,l]=x.useState(a?"global":"all"),[c,d]=x.useState(!1),p=$e(`/projects/${e}/vars?reveal=${c?1:0}`,()=>Xc.list(e,{reveal:c})),[m,g]=x.useState(null),h=x.useMemo(()=>{if(!p.data)return[];const _=[],j=p.data.project||{},E=p.data.global||{};for(const[k,y]of Object.entries(j))_.push({name:k,scope:"project",masked:y});for(const[k,y]of Object.entries(E))j[k]===void 0&&_.push({name:k,scope:"global",masked:y});return _.filter(k=>o==="all"?!0:k.scope===o).sort((k,y)=>k.name.localeCompare(y.name))},[p.data,o]),b=async(_,j)=>{if(confirm(u("project.vars.delete_confirm",{name:_,scope:j})))try{await Xc.remove(e,_,j),t.success(u("project.vars.removed")),p.mutate()}catch(E){t.error(E?.message||u("common.error_generic"))}};return s.jsxs(Fe,{title:u("project.vars.title"),description:u(a?"project.vars.subtitle_base":"project.vars.subtitle_project"),action:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Gt,{checked:c,onChange:d,label:u("project.vars.reveal_all")}),s.jsxs(se,{size:"sm",variant:"primary",onClick:()=>g({}),children:[s.jsx(It,{size:14})," ",u("project.vars.new")]})]}),children:[!a&&s.jsxs("div",{className:"mb-3 flex items-center gap-2 text-xs",children:[s.jsx("span",{className:"text-muted-fg",children:u("project.vars.filter_label")}),s.jsx(Ah,{active:o==="all",onClick:()=>l("all"),children:u("project.vars.filter_all")}),s.jsx(Ah,{active:o==="project",onClick:()=>l("project"),children:u("project.vars.filter_project")}),s.jsx(Ah,{active:o==="global",onClick:()=>l("global"),children:u("project.vars.filter_global")})]}),p.isLoading&&s.jsx(at,{}),!p.isLoading&&h.length===0&&s.jsx(pt,{children:u("project.vars.empty")}),h.length>0&&s.jsx("ul",{className:"space-y-2 text-sm",children:h.map(_=>s.jsxs("li",{className:"flex items-center gap-3 rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsx("span",{className:"font-mono text-xs font-medium",children:_.name}),s.jsx(He,{tone:_.scope==="project"?"info":"muted",children:_.scope==="project"?u("project.vars.scope_project"):u("project.vars.scope_global")}),s.jsx("span",{className:"ml-2 font-mono text-xs text-muted-fg",children:_.masked}),s.jsxs("div",{className:"ml-auto flex items-center gap-1",children:[s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>g({name:_.name,scope:_.scope}),"aria-label":u("project.vars.edit_btn"),children:s.jsx(ya,{size:13})}),!(a&&_.scope==="project")&&s.jsx(se,{size:"sm",variant:"destructive",onClick:()=>b(_.name,_.scope),"aria-label":u("project.vars.delete_btn"),children:s.jsx(_n,{size:13})})]})]},`${_.scope}-${_.name}`))}),s.jsx(M7,{open:m!==null,initial:m||void 0,onClose:()=>g(null),pid:e,isBase:a,onSaved:()=>{g(null),p.mutate()}})]})}function Ah({active:e,onClick:t,children:a}){return s.jsx("button",{type:"button",onClick:t,className:e?"rounded-full border border-primary/50 bg-primary/10 px-2 py-0.5 text-xs":"rounded-full border border-border bg-muted/30 px-2 py-0.5 text-xs hover:bg-muted/60",children:a})}function M7({open:e,onClose:t,pid:a,isBase:o,initial:l,onSaved:c}){const d=Ze(),[p,m]=x.useState(!1),[g,h]=x.useState(!1),[b,_]=x.useState(l?.name||""),[j,E]=x.useState(l?.value||""),[k,y]=x.useState(l?.scope||(o?"global":"project")),w=!!l?.name;x.useEffect(()=>{e&&(_(l?.name||""),E(l?.value||""),y(l?.scope||(o?"global":"project")),h(!1))},[e,l?.name,l?.scope,l?.value,o]);const S=async()=>{if(!b.trim()){d.error(u("project.vars.name_required"));return}if(!j){d.error(u("project.vars.value_required"));return}m(!0);try{await Xc.upsert(a,{name:b.trim(),value:j,scope:k}),d.success(u(w?"project.vars.updated":"project.vars.added")),c()}catch(N){d.error(N?.message||u("common.error_generic"))}finally{m(!1)}};return s.jsx(sn,{open:e,onClose:()=>p?null:t(),title:u(w?"project.vars.edit_title":"project.vars.new_title"),description:u("project.vars.new_desc"),size:"sm",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:p,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:S,loading:p,children:u(w?"project.vars.save_btn":"project.vars.add_btn")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("project.vars.scope_label"),children:s.jsx(ut,{value:k,onChange:N=>y(N),options:[...o?[]:[{value:"project",label:u("project.vars.scope_project"),description:u("project.vars.scope_project_desc")}],{value:"global",label:u("project.vars.scope_global"),description:u("project.vars.scope_global_desc")}]})}),s.jsx(ae,{label:u("project.vars.name_label"),hint:u("project.vars.name_hint"),children:s.jsx(Ne,{value:b,onChange:N=>_(N.target.value.toUpperCase().replace(/[^A-Z0-9_]/g,"_")),placeholder:"MY_API_KEY",disabled:w,autoFocus:!w})}),s.jsx(ae,{label:u("project.vars.value_label"),hint:u("project.vars.value_hint"),children:s.jsxs("div",{className:"relative",children:[s.jsx(Ne,{type:g?"text":"password",value:j,onChange:N=>E(N.target.value),placeholder:w?u("project.vars.value_edit_ph"):"",className:"pr-9 font-mono text-xs",autoFocus:w}),s.jsx("button",{type:"button",onClick:()=>h(N=>!N),className:"absolute right-2 top-1/2 -translate-y-1/2 text-muted-fg hover:text-fg","aria-label":u(g?"project.vars.hide":"project.vars.reveal"),children:g?s.jsx(IS,{size:14}):s.jsx(au,{size:14})})]})})]})})}function K_({value:e,onValueChange:t,onSubmit:a,onStop:o,busy:l=!1,disabled:c=!1,placeholder:d,autoFocus:p,minRows:m=2,maxRows:g=8,footer:h,className:b}){const _=x.useRef(null);x.useLayoutEffect(()=>{const E=_.current;if(!E)return;const k=()=>{E.style.height="auto",E.offsetHeight;const w=parseFloat(getComputedStyle(E).lineHeight)||20,S=w*m,N=w*g;E.style.height=`${Math.min(Math.max(E.scrollHeight,S),N)}px`,E.style.overflowY=E.scrollHeight>N?"auto":"hidden"};k();const y=requestAnimationFrame(k);return()=>cancelAnimationFrame(y)},[e,m,g]);const j=e.trim().length>0&&!c;return s.jsxs("div",{className:Ct("flex flex-col gap-1.5 rounded-2xl border border-border bg-muted/60 p-2 shadow-sm transition-colors","focus-within:border-foreground/25 focus-within:bg-muted",c&&"opacity-60",b),children:[s.jsx("textarea",{ref:_,rows:m,value:e,autoFocus:p,disabled:c,placeholder:d,onChange:E=>t(E.target.value),onKeyDown:E=>{if(E.key==="Enter"&&!E.shiftKey){if(E.preventDefault(),l||!j)return;a()}},className:"w-full resize-none bg-transparent px-2 pt-1 text-sm leading-relaxed outline-none placeholder:text-muted-foreground"}),s.jsxs("div",{className:"flex items-center justify-between gap-2 pl-1",children:[s.jsx("div",{className:"flex min-w-0 items-center gap-2 text-[11px] text-muted-foreground",children:h}),l&&o?s.jsx(Ye,{content:u("chat_ui.stop"),children:s.jsx(sr,{type:"button",size:"icon-sm",variant:"destructive",onClick:o,"aria-label":u("chat_ui.stop"),children:s.jsx(KS,{className:"size-3.5",fill:"currentColor"})})}):s.jsx(Ye,{content:u("chat_ui.send"),children:s.jsx(sr,{type:"button",size:"icon-sm",variant:"default",onClick:a,disabled:!j,"aria-label":u("chat_ui.send"),children:s.jsx(f5,{className:"size-4"})})})]})]})}function X_({value:e,onChange:t,disabled:a}){const[o,l]=x.useState(!1),[c,d]=x.useState(""),[p,m]=x.useState([]),[g,h]=x.useState(!1),b=x.useRef(null);x.useEffect(()=>{if(!o)return;const y=w=>{b.current&&!b.current.contains(w.target)&&l(!1)};return document.addEventListener("mousedown",y),()=>document.removeEventListener("mousedown",y)},[o]),x.useEffect(()=>{if(!o||g)return;let y=!1;return(async()=>{try{const{engines:w}=await Qc.list(),S=await Promise.all(w.map(N=>Qc.models({engine:N}).then(R=>(R.models||[]).map(A=>A.includes(":")?A:`${N}:${A}`)).catch(()=>[])));if(!y){const N=Array.from(new Set(S.flat())).sort();m(N),h(!0)}}catch{y||h(!0)}})(),()=>{y=!0}},[o,g]);const _=c.trim().toLowerCase(),j=_?p.filter(y=>y.toLowerCase().includes(_)):p,E=e||u("shared_ui.auto"),k=y=>{t(y),l(!1),d("")};return s.jsxs("div",{ref:b,className:"relative",children:[s.jsx(Ye,{content:u("chat_ui.pick_model"),children:s.jsxs("button",{type:"button",disabled:a,onClick:()=>l(y=>!y),"data-testid":"chat-model-picker",className:he("flex max-w-[200px] items-center gap-1 rounded-md border border-transparent px-1.5 py-0.5 text-[11px] text-muted-foreground transition-colors","hover:bg-accent/60 hover:text-foreground",e&&"text-foreground"),"aria-label":u("chat_ui.pick_model"),children:[s.jsx(YS,{className:"size-3 shrink-0"}),s.jsx("span",{className:"truncate font-mono",children:E}),s.jsx(ns,{className:"size-3 shrink-0 opacity-60"})]})}),o&&s.jsxs("div",{className:"absolute bottom-full left-0 z-50 mb-1.5 w-64 rounded-lg border border-border bg-popover p-1.5 shadow-md ring-1 ring-foreground/10",children:[s.jsx("input",{autoFocus:!0,value:c,placeholder:u("shared_ui.model_filter_ph"),onChange:y=>d(y.target.value),onKeyDown:y=>{y.key==="Enter"&&c.trim()&&k(c.trim())},className:"mb-1 w-full rounded-md border border-border bg-background px-2 py-1 text-xs outline-none focus:border-foreground/30"}),s.jsxs("ul",{className:"max-h-56 overflow-y-auto",children:[s.jsx("li",{children:s.jsxs("button",{type:"button",onMouseDown:y=>{y.preventDefault(),k("")},className:he("flex w-full items-center justify-between rounded-md px-2 py-1 text-left text-xs hover:bg-accent hover:text-accent-fg",!e&&"bg-accent/50"),children:[s.jsxs("span",{className:"flex items-center gap-1.5",children:[s.jsx(ws,{className:"size-3"})," ",u("shared_ui.auto_router")]}),!e&&s.jsx($r,{className:"size-3"})]})}),!g&&s.jsx("li",{className:"px-2 py-1 text-[11px] text-muted-fg",children:u("shared_ui.loading_models")}),g&&j.length===0&&c.trim()&&s.jsx("li",{children:s.jsx("button",{type:"button",onMouseDown:y=>{y.preventDefault(),k(c.trim())},className:"w-full rounded-md px-2 py-1 text-left font-mono text-xs hover:bg-accent hover:text-accent-fg",children:u("shared_ui.use_value",{value:c.trim()})})}),j.map(y=>s.jsx("li",{children:s.jsxs("button",{type:"button",onMouseDown:w=>{w.preventDefault(),k(y)},className:he("flex w-full items-center justify-between rounded-md px-2 py-1 text-left font-mono text-xs hover:bg-accent hover:text-accent-fg",y===e&&"bg-accent/50"),children:[s.jsx("span",{className:"truncate",children:y}),y===e&&s.jsx($r,{className:"size-3 shrink-0"})]})},y))]})]})]})}function O7({onSend:e,onStop:t,streaming:a,model:o,onModelChange:l}){const[c,d]=x.useState(""),p=()=>{const m=c.trim();m&&(d(""),e(m))};return s.jsx("div",{className:"border-t border-border bg-card/60 p-3",children:s.jsx(K_,{value:c,onValueChange:d,onSubmit:p,onStop:t,busy:a,placeholder:u("project.chat.placeholder"),maxRows:12,footer:l?s.jsx(X_,{value:o||"",onChange:l,disabled:a}):void 0})})}function z7(){return{read_file:{icon:Wf,label:u("shared_ui.tool_read_file")},write_file:{icon:O5,label:u("shared_ui.tool_write_file")},edit_file:{icon:xf,label:u("shared_ui.tool_edit_file")},list_files:{icon:hb,label:u("shared_ui.tool_list_files")},search_files:{icon:Mc,label:u("shared_ui.tool_search_files")},search_messages:{icon:Mc,label:u("shared_ui.tool_search_messages")},tail_messages:{icon:Mc,label:u("shared_ui.tool_tail_messages")},run_shell:{icon:ba,label:u("shared_ui.tool_run_shell")},send_telegram:{icon:Js,label:u("shared_ui.tool_send_telegram")},call_agent:{icon:on,label:u("shared_ui.tool_call_agent")},call_mcp:{icon:t3,label:u("shared_ui.tool_call_mcp")},call_runtime:{icon:on,label:u("shared_ui.tool_call_runtime")},create_task:{icon:Y5,label:u("shared_ui.tool_create_task")}}}const CE=new Set(["write_file","edit_file"]);function D7(e){return z7()[e]||{icon:ea,label:e}}function P7(e,t){if(!t)return"";const a=l=>typeof t[l]=="string"?t[l]:void 0,o=a("path")||a("file")||a("pattern")||a("query")||a("command")||a("slug")||a("name")||a("agent");return o?String(o):""}function Zk(e){if(e==null)return"";if(typeof e=="string")return e;try{return JSON.stringify(e,null,2)}catch{return String(e)}}function L7({status:e}){return e==="running"?s.jsx(Lr,{className:"size-3 shrink-0 animate-spin text-sky-400"}):e==="error"?s.jsx(ws,{className:"size-3 shrink-0 text-rose-400"}):e==="deduped"?s.jsx(R5,{className:"size-3 shrink-0 text-amber-400"}):s.jsx($r,{className:"size-3 shrink-0 text-emerald-400"})}function I7({part:e}){const[t,a]=x.useState(!1),{icon:o,label:l}=D7(e.tool),c=P7(e.tool,e.args),d=CE.has(e.tool),p=!!e.args||e.result!==void 0;return s.jsxs("div",{className:he("rounded-lg border bg-muted/30 text-[12px]",e.status==="error"?"border-rose-500/30":"border-border"),children:[s.jsxs("button",{type:"button",onClick:()=>p&&a(m=>!m),className:"flex w-full items-center gap-2 px-2.5 py-1.5 text-left",children:[p?s.jsx(qr,{className:he("size-3 shrink-0 text-muted-foreground transition-transform",t&&"rotate-90")}):s.jsx("span",{className:"size-3 shrink-0"}),s.jsx(o,{className:he("size-3.5 shrink-0",d?"text-violet-400":"text-muted-foreground")}),s.jsx("span",{className:"shrink-0 font-medium",children:l}),c&&s.jsx("span",{className:"truncate font-mono text-muted-foreground",children:c}),s.jsxs("span",{className:"ml-auto flex items-center gap-1",children:[e.status==="deduped"&&s.jsx("span",{className:"text-[10px] text-amber-400",children:u("shared_ui.dedup")}),s.jsx(L7,{status:e.status})]})]}),t&&p&&s.jsxs("div",{className:"space-y-2 border-t border-border/60 px-2.5 py-2",children:[e.args&&Object.keys(e.args).length>0&&s.jsxs("div",{children:[s.jsx("div",{className:"mb-1 text-[10px] font-semibold uppercase tracking-wide text-muted-foreground/70",children:u("shared_ui.args")}),s.jsx("pre",{className:"max-h-48 overflow-auto rounded-md bg-background/60 p-2 font-mono text-[11px] leading-relaxed text-foreground",children:Zk(e.args)})]}),e.result!==void 0&&s.jsxs("div",{children:[s.jsx("div",{className:"mb-1 text-[10px] font-semibold uppercase tracking-wide text-muted-foreground/70",children:u("shared_ui.result")}),s.jsx("pre",{className:he("max-h-64 overflow-auto rounded-md bg-background/60 p-2 font-mono text-[11px] leading-relaxed",e.status==="error"?"text-rose-300":"text-foreground"),children:Zk(e.result)})]})]})]})}function B7(e){const t=e.args;return(t&&Array.isArray(t.questions)?t.questions:[]).map(o=>typeof o=="string"?o:o&&typeof o=="object"&&typeof o.question=="string"?o.question:null).filter(o=>!!o)}function U7({part:e,pending:t}){const a=B7(e),o=u(t?"ask_panel.status_waiting":"ask_panel.status_received");return s.jsxs("div",{className:he("rounded-2xl border px-3 py-2 text-sm shadow-sm",t?"rounded-bl-sm border-amber-500/30 bg-amber-500/5 text-foreground":"rounded-bl-sm border-emerald-500/30 bg-emerald-500/5 text-foreground"),"data-testid":"ask-questions-card","data-state":t?"pending":"answered",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[t?s.jsx(Lr,{className:"size-3.5 shrink-0 animate-spin text-amber-600 dark:text-amber-400"}):s.jsx(pb,{className:"size-3.5 shrink-0 text-emerald-600 dark:text-emerald-400"}),s.jsx(FS,{className:"size-3.5 shrink-0 text-muted-foreground"}),s.jsx("span",{className:"text-[12px] font-medium",children:o}),a.length>1&&s.jsxs("span",{className:"ml-auto text-[10px] text-muted-foreground",children:[a.length," preguntas"]})]}),a.length>0&&s.jsx("ul",{className:"mt-1.5 space-y-0.5 pl-5 text-[12px] text-muted-foreground",children:a.map((l,c)=>s.jsx("li",{className:"list-disc",children:l},c))})]})}function NE(e){const t=e.split(`
750
- `),a=[];let o=null;for(const l of t)if(l.startsWith("- "))o&&a.push(o),o={question:l.slice(2),answer:"",skipped:!1};else if(l.startsWith(" → ")&&o){const c=l.slice(4);o.answer=c,o.skipped=c==="(omitido)"}else return null;return o&&a.push(o),a.length>0?a:null}function $7({text:e}){const t=NE(e);return t?s.jsx("div",{className:"flex w-full justify-center",children:s.jsxs("div",{className:"w-full max-w-[85%] rounded-2xl border border-border/70 bg-card/40 px-4 py-3 shadow-sm","data-testid":"ask-answers-card",children:[s.jsxs("div",{className:"mb-2 flex items-center gap-1.5 text-[11px] font-medium text-muted-foreground",children:[s.jsx(FS,{className:"size-3.5"}),s.jsx("span",{children:u("ask_panel.answers_header")})]}),s.jsx("ul",{className:"space-y-2.5",children:t.map((a,o)=>s.jsxs("li",{className:"space-y-0.5",children:[s.jsx("div",{className:"text-sm font-medium leading-snug text-foreground",children:a.question}),s.jsx("div",{className:he("whitespace-pre-wrap text-[13px] leading-snug",a.skipped?"italic text-muted-foreground/70":"text-muted-foreground"),children:a.answer})]},o))})]})}):null}function Qx(e){return e.parts.filter(t=>t.kind==="text").map(t=>t.text).join(`
751
-
752
- `).trim()}function H7(e){const t=e.args?.questions;if(!Array.isArray(t)||t.length===0)return null;const a=t.map(o=>{if(typeof o=="string")return`- ${o}`;if(!o||typeof o!="object")return null;const l=o;if(typeof l.question!="string")return null;const d=(Array.isArray(l.options)?l.options:[]).map(p=>typeof p=="string"?p:p&&typeof p=="object"&&typeof p.label=="string"?p.label:"").filter(p=>p).join(", ");return d?`- ${l.question} (opciones: ${d})`:`- ${l.question}`}).filter(o=>!!o);return a.length===0?null:`[ask_questions]
753
- ${a.join(`
754
- `)}`}function V7(e){const t=[];for(const a of e.parts)if(a.kind==="text"&&a.text)t.push(a.text);else if(a.kind==="tool"&&a.tool==="ask_questions"){const o=H7(a);o&&t.push(o)}return t.join(`
755
-
756
- `).trim()}const EE=e=>[{kind:"text",text:e}];function RE(e){if(!e||typeof e!="object")return!1;const t=e;return"error"in t&&!!t.error}function q7(e){const t=[];let a=null,o=0;for(const l of e){const c=l.ts||new Date().toISOString();l.role==="user"?(a=null,t.push({role:"user",parts:EE(l.content),ts:c})):(l.role==="assistant"||l.role==="tool")&&(a||(a={role:"assistant",parts:[],ts:c},t.push(a)),l.role==="tool"?a.parts.push({kind:"tool",id:`hist-${o++}`,tool:l.tool||"tool",args:l.args,result:l.result,status:RE(l.result)?"error":"done"}):l.content&&a.parts.push({kind:"text",text:l.content}))}return t}function Q_(e,t){const a=o=>({...e,notes:[...e.notes||[],o]});switch(t.type){case"model_start":return t.model?{...e,model:t.model}:e;case"model_routed":{const o=t.model?{...e,model:t.model}:e;return t.from_fallback?{...o,notes:[...o.notes||[],`routing fell back → ${t.model}`]}:o}case"engine_failed":return a(`engine ${t.model||"?"} failed → ${t.retry_with||"retry"}`);case"model_retry":return a(`retry (${t.reason||"?"})`);case"tools_suppressed":return a(`tools suppressed: ${(t.tools||[]).join(", ")}`);case"skill_inspector":{const o=t.inspector;return!o||!o.loaded?.length&&!o.hinted?.length?e:{...e,inspector:{embedder:o.embedder,loaded:o.loaded||[],hinted:o.hinted||[]}}}case"assistant_text":return t.text?{...e,parts:[...e.parts,{kind:"text",text:t.text}]}:e;case"tool_start":return t.trace?{...e,parts:[...e.parts,{kind:"tool",id:t.trace.id,tool:t.trace.tool,args:t.trace.args,status:"running"}]}:e;case"tool_deduped":return t.trace?{...e,parts:e.parts.map(o=>o.kind==="tool"&&o.id===t.trace.id?{...o,status:"deduped"}:o)}:e;case"tool_result":if(!t.trace)return e;{const o=RE(t.trace.result);return{...e,parts:e.parts.map(l=>l.kind==="tool"&&l.id===t.trace.id?{...l,result:t.trace.result,status:o?"error":l.status==="deduped"?"deduped":"done"}:l)}}case"final":return{...e,pending:!1,usage:t.result?.usage??e.usage,model:e.model??t.result?.name,parts:t.result?.text&&!e.parts.some(o=>o.kind==="text")?[...e.parts,{kind:"text",text:t.result.text}]:e.parts};default:{const o=t.delta||t.content||"";if(!o)return e;const l=[...e.parts],c=l[l.length-1];return c&&c.kind==="text"?l[l.length-1]={...c,text:c.text+o}:l.push({kind:"text",text:o}),{...e,parts:l}}}}function F7(e,t){const[a,o]=x.useState([]),[l,c]=x.useState(!1),[d,p]=x.useState(void 0),m=x.useRef(null),g=x.useRef(void 0),h=x.useRef(0),b=x.useCallback(S=>{o(N=>{const R=[...N],A=R[R.length-1];return A&&A.role==="assistant"&&(R[R.length-1]=S(A)),R})},[]),_=x.useCallback(S=>{if(S.type==="error"){t?.(S.error||u("shared_ui.err_stream"));return}b(N=>Q_(N,S))},[b,t]),j=x.useCallback(async(S,N={})=>{const R=S.trim();if(!R||l)return;const A=()=>new Date().toISOString(),T=a.map(z=>({role:z.role,content:V7(z)}));if(o(z=>[...z,{role:"user",parts:EE(R),ts:A()},{role:"assistant",parts:[],ts:A(),pending:!0}]),c(!0),N.agentSlug){try{const z=await cn.chat(e,N.agentSlug,{prompt:R,conversation_id:g.current,model:N.model||void 0,channel:"web"});g.current=z.conversation_id,p(z.conversation_id),b(U=>({...U,pending:!1,model:z.engine,parts:[{kind:"text",text:z.text}]}))}catch(z){t?.(z?.message||u("shared_ui.err_chat_failed")),o(U=>U.filter((P,B)=>B!==U.length-1))}finally{c(!1)}return}const O=new AbortController;m.current=O;try{await dN.stream(e,{prompt:R,previousMessages:T,model:N.model||void 0,channel:"web"},_,O.signal),b(z=>({...z,pending:!1}))}catch(z){O.signal.aborted?b(U=>({...U,pending:!1,parts:[...U.parts,{kind:"text",text:u("code_module.stopped")}]})):(t?.(z?.message||u("shared_ui.err_stream_failed")),o(U=>U.filter((P,B)=>B!==U.length-1)))}finally{c(!1),m.current=null}},[e,a,l,_,b,t]),E=x.useCallback(()=>m.current?.abort(),[]),k=x.useCallback(()=>{l||(h.current++,g.current=void 0,p(void 0),o([]))},[l]),y=x.useCallback(async(S,N)=>{if(l)return;const R=++h.current;o([]);try{const A=await zo.get(e,S,N);if(R!==h.current)return;const T=(A.messages??[]).filter(O=>O.role==="user"||O.role==="assistant").map(O=>({role:O.role,parts:[{kind:"text",text:O.content}],ts:O.ts||new Date().toISOString()}));g.current=N,p(N),o(T)}catch(A){if(R!==h.current)return;g.current=void 0,p(void 0),o([]),t?.(A?.message||u("shared_ui.err_load_conversation"))}},[e,l,t]),w=x.useCallback(async(S,N)=>{if(l)return;const R=++h.current;o([]);try{const A=await zo.thread(e,S,N);if(R!==h.current)return;const T=q7(A.messages??[]);g.current=void 0,p(void 0),o(T)}catch(A){if(R!==h.current)return;g.current=void 0,p(void 0),o([]),t?.(A?.message||u("shared_ui.err_load_conversation"))}},[e,l,t]);return{msgs:a,send:j,stop:E,clear:k,load:y,loadThread:w,streaming:l,conversationId:d}}function G7({msg:e,isLast:t,isAskAnswer:a,onCopy:o}){const l=e.role==="user",c=Qx(e),d=e.parts.some(p=>p.kind==="tool");if(l&&a){const p=Qx(e);if(NE(p))return s.jsx($7,{text:p})}return s.jsxs("div",{className:he("group flex items-start gap-2",l?"justify-end":"justify-start"),children:[!l&&s.jsx("span",{className:"mt-0.5 grid size-7 shrink-0 place-items-center rounded-full bg-muted text-muted-foreground",children:s.jsx(on,{size:14})}),s.jsxs("div",{className:he("flex min-w-0 flex-col gap-1.5",l?"items-end":"w-full max-w-[85%]"),children:[!l&&e.notes&&e.notes.length>0&&s.jsx("div",{className:"flex flex-col gap-0.5",children:e.notes.map((p,m)=>s.jsxs("span",{className:"flex items-center gap-1 text-[10px] text-amber-400/80",children:[s.jsx(VS,{size:10})," ",p]},m))}),!l&&e.inspector&&(e.inspector.loaded?.length||e.inspector.hinted?.length)?s.jsx(Ye,{content:u("shared_ui.skill_inspector_title",{embedder:e.inspector.embedder||"RAG"}),children:s.jsxs("div",{className:"flex flex-wrap items-center gap-1 text-[10px] text-sky-400/90",children:[s.jsx(Vs,{size:10}),e.inspector.loaded?.map(p=>s.jsx("span",{className:"rounded bg-sky-500/15 px-1 py-0.5 font-mono",children:p},`l-${p}`)),e.inspector.hinted?.map(p=>s.jsxs("span",{className:"rounded border border-sky-500/30 px-1 py-0.5 font-mono opacity-70",children:[p,"?"]},`h-${p}`))]})}):null,e.parts.map((p,m)=>p.kind==="tool"?p.tool==="ask_questions"&&!l?s.jsx(U7,{part:p,pending:!!t},`${p.id}-${m}`):s.jsx(I7,{part:p},`${p.id}-${m}`):p.text?s.jsx("div",{className:he("whitespace-pre-wrap rounded-2xl px-3 py-2 text-sm leading-relaxed shadow-sm",l?"rounded-br-sm border border-emerald-500/30 bg-emerald-500/10 text-foreground dark:bg-emerald-500/15":"w-full rounded-bl-sm border border-border bg-card text-foreground"),children:p.text},m):null),!l&&e.pending&&e.parts.length===0&&s.jsx("div",{className:"rounded-2xl rounded-bl-sm border border-border bg-card px-3 py-2 text-sm text-muted-foreground",children:"…"}),s.jsxs("div",{className:"flex items-center gap-2 text-[10px] text-muted-foreground opacity-0 transition-opacity group-hover:opacity-100",children:[s.jsx("span",{children:Y7(e.ts)}),!l&&e.model&&s.jsxs("span",{className:"font-mono",children:["· ",e.model]}),!l&&d&&s.jsxs("span",{children:["· ",u("shared_ui.tools_count",{n:e.parts.filter(p=>p.kind==="tool").length})]}),o&&c&&s.jsx(Ye,{content:u("chat_ui.copy"),children:s.jsxs("button",{type:"button",onClick:()=>o(c),className:"inline-flex items-center gap-1 hover:text-foreground","aria-label":u("chat_ui.copy"),children:[s.jsx($c,{size:10})," ",u("chat_ui.copy")]})})]})]}),l&&s.jsx("span",{className:"mt-0.5 grid size-7 shrink-0 place-items-center rounded-full bg-muted text-muted-foreground",children:s.jsx(yb,{size:14})})]})}function Y7(e){try{return new Date(e).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit",second:"2-digit"})}catch{return e}}function W_({msgs:e,onCopy:t}){const a=x.useRef(null);if(x.useEffect(()=>{a.current?.scrollIntoView({behavior:"smooth",block:"end"})},[e]),e.length===0)return s.jsx("div",{className:"grid h-full place-items-center p-6",children:s.jsx(pt,{children:u("project.chat.empty")})});const o=e.length-1;return s.jsxs("div",{className:"space-y-4 px-3 py-4",children:[e.map((l,c)=>s.jsx(G7,{msg:l,isLast:c===o,isAskAnswer:K7(e,c),onCopy:t},c)),s.jsx("div",{ref:a})]})}function K7(e,t){const a=e[t];if(!a||a.role!=="user")return!1;const o=e[t-1];if(!o||o.role!=="assistant")return!1;for(let l=o.parts.length-1;l>=0;l--){const c=o.parts[l];if(c.kind==="tool")return c.tool==="ask_questions"}return!1}function X7(e){if(!e)return;const t=e.path??e.file??e.filename;return typeof t=="string"?t:void 0}function TE({msgs:e}){const[t,a]=x.useState(!1),{inTok:o,outTok:l,toolCount:c,changed:d,model:p}=x.useMemo(()=>{let g=0,h=0,b=0,_;const j=new Set,E=[];for(const k of e)if(k.role==="assistant"){k.usage&&(g+=k.usage.input_tokens||0,h+=k.usage.output_tokens||0),k.model&&(_=k.model);for(const y of k.parts)if(y.kind==="tool"&&(b+=1,CE.has(y.tool)&&y.status!=="error")){const w=X7(y.args);w&&!j.has(w)&&(j.add(w),E.push({path:w,tool:y.tool}))}}return{inTok:g,outTok:h,toolCount:b,changed:E,model:_}},[e]),m=o+l;return m===0&&c===0?null:s.jsxs("div",{className:"shrink-0 border-t border-border bg-card/40 text-[11px]",children:[s.jsxs("button",{type:"button",onClick:()=>d.length>0&&a(g=>!g),className:he("flex w-full items-center gap-3 px-4 py-1.5 text-muted-foreground",d.length>0&&"hover:text-foreground"),children:[s.jsxs("span",{className:"flex items-center gap-1",children:[s.jsx(Zf,{size:12})," ",Mh(m)," tok",s.jsxs("span",{className:"text-muted-foreground/60",children:["(",Mh(o),"↑ / ",Mh(l),"↓)"]})]}),c>0&&s.jsxs("span",{className:"flex items-center gap-1",children:[s.jsx(ea,{size:12})," ",c," tools"]}),d.length>0&&s.jsxs("span",{className:"flex items-center gap-1 text-violet-400",children:[s.jsx(xf,{size:12})," ",d.length," archivos"]}),p&&s.jsx("span",{className:"ml-auto font-mono text-muted-foreground/70",children:p}),d.length>0&&s.jsx(ns,{className:he("size-3 shrink-0 transition-transform",t&&"rotate-180")})]}),t&&d.length>0&&s.jsx("ul",{className:"max-h-40 space-y-0.5 overflow-y-auto border-t border-border/60 px-4 py-2",children:d.map(g=>s.jsxs("li",{className:"flex items-center gap-2 font-mono text-[11px]",children:[s.jsx(xf,{size:11,className:"shrink-0 text-violet-400"}),s.jsx("span",{className:"truncate",children:g.path}),s.jsx("span",{className:"ml-auto shrink-0 text-[10px] text-muted-foreground/60",children:g.tool==="write_file"?"write":"edit"})]},g.path))})]})}function Mh(e){return e>=1e3?`${(e/1e3).toFixed(1)}k`:String(e)}function Dl(){return{picked:new Set,text:"",skipped:!1}}function Jk(e,t){const a=[];return e.forEach((o,l)=>{const c=t[l]||Dl();if(c.skipped){a.push(`- ${o.question}
757
- → (omitido)`);return}const d=[];if(o.options&&o.options.length>0){const g=[...c.picked].sort((h,b)=>h-b).map(h=>o.options[h]?.label).filter(Boolean);g.length>0&&d.push(g.join(", "))}const p=c.text.trim();p&&d.push(o.options&&o.options.length>0?`(Otro: ${p})`:p);const m=d.length>0?d.join(" "):"(sin respuesta)";a.push(`- ${o.question}
758
- → ${m}`)}),a.join(`
759
- `)}function AE({turnKey:e,questions:t,onSubmit:a,onDismiss:o,disabled:l}){const c=t.length,[d,p]=x.useState(0),[m,g]=x.useState(()=>t.map(()=>Dl()));x.useEffect(()=>{p(0),g(t.map(()=>Dl()))},[e,t]);const h=t[d],b=m[d]||Dl(),_=!!h?.options&&h.options.length>0,j=!!h?.multiSelect,E=h?.allowText!==!1,k=T=>{g(O=>{const z=[...O],U=z[d]||Dl();return z[d]={...U,...T,skipped:!1},z})},y=T=>{g(O=>{const z=[...O],U=z[d]||Dl(),P=new Set(U.picked);return j?P.has(T)?P.delete(T):P.add(T):(P.clear(),P.add(T)),z[d]={...U,picked:P,skipped:!1},z})},w=x.useMemo(()=>!0,[]),S=d===c-1,N=()=>p(T=>Math.max(0,T-1)),R=()=>{if(S){a(Jk(t,m));return}p(T=>Math.min(c-1,T+1))},A=()=>{if(g(T=>{const O=[...T];return O[d]={picked:new Set,text:"",skipped:!0},O}),S){const T=m.map((O,z)=>z===d?{picked:new Set,text:"",skipped:!0}:O);a(Jk(t,T))}else p(T=>Math.min(c-1,T+1))};return x.useEffect(()=>{const T=O=>{if(l)return;const z=O.target?.tagName?.toLowerCase(),U=z==="input"||z==="textarea";if(O.key==="Enter"&&(O.metaKey||O.ctrlKey)){O.preventDefault(),R();return}if(!U&&_&&/^[1-9]$/.test(O.key)){const P=parseInt(O.key,10)-1;P<(h?.options?.length||0)&&(O.preventDefault(),y(P))}};return window.addEventListener("keydown",T),()=>window.removeEventListener("keydown",T)}),!h||c===0?null:s.jsxs("div",{className:he("mx-3 mb-2 rounded-xl border border-border bg-card/95 shadow-xl backdrop-blur supports-[backdrop-filter]:bg-card/80",l&&"pointer-events-none opacity-60"),"data-testid":"inline-ask-panel",children:[s.jsxs("header",{className:"flex items-start gap-2 border-b border-border px-3 py-2",children:[s.jsxs("span",{className:"mt-0.5 shrink-0 rounded-md bg-amber-500/15 px-1.5 py-0.5 text-[10px] font-mono font-medium text-amber-700 dark:text-amber-300",children:[d+1,"/",c]}),h.header&&s.jsx("span",{className:"mt-0.5 shrink-0 rounded-md bg-muted px-1.5 py-0.5 text-[10px] font-medium text-muted-foreground",children:h.header}),s.jsx("p",{className:"min-w-0 flex-1 text-sm font-semibold leading-snug",children:h.question}),o&&s.jsx("button",{type:"button",onClick:o,className:"rounded p-1 text-muted-foreground hover:bg-accent hover:text-foreground","aria-label":u("common.close"),children:s.jsx(ws,{className:"size-3.5"})})]}),s.jsxs("div",{className:"space-y-1 px-2 py-2",children:[_&&h.options.map((T,O)=>{const z=b.picked.has(O);return s.jsxs("button",{type:"button",onClick:()=>y(O),className:he("flex w-full items-start gap-2 rounded-md border border-transparent px-2 py-1.5 text-left transition",z?"border-emerald-500/40 bg-emerald-500/10":"hover:border-border hover:bg-accent/40"),children:[s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsx("div",{className:"text-xs font-medium",children:T.label}),T.description&&s.jsx("div",{className:"text-[11px] text-muted-foreground",children:T.description})]}),j?s.jsx("span",{className:he("mt-0.5 grid size-4 shrink-0 place-items-center rounded border",z?"border-emerald-500 bg-emerald-500 text-white":"border-border bg-background"),children:z&&s.jsx("span",{className:"text-[10px] leading-none",children:"✓"})}):s.jsx("span",{className:he("mt-0.5 grid size-4 shrink-0 place-items-center rounded border font-mono text-[10px]",z?"border-emerald-500 bg-emerald-500 text-white":"border-border bg-muted text-muted-foreground"),children:O+1})]},`${O}:${T.label}`)}),(E||!_)&&s.jsxs("div",{className:"rounded-md border border-transparent px-2 py-1.5 hover:border-border",children:[_&&s.jsx("div",{className:"mb-1 text-xs font-medium",children:u("ask_panel.other")}),s.jsx("input",{type:"text",value:b.text,onChange:T=>k({text:T.target.value}),placeholder:u(_?"ask_panel.other_placeholder":"ask_panel.text_placeholder"),className:"w-full rounded border border-border bg-background px-2 py-1 text-xs outline-none focus:border-emerald-500"})]})]}),s.jsxs("footer",{className:"flex items-center justify-between gap-2 border-t border-border px-3 py-2",children:[s.jsx("button",{type:"button",onClick:N,disabled:d===0,className:"rounded px-2 py-1 text-[11px] text-muted-foreground hover:bg-accent disabled:opacity-30",children:u("ask_panel.back")}),s.jsxs("div",{className:"flex items-center gap-1",children:[s.jsx("button",{type:"button",onClick:A,className:"rounded px-2 py-1 text-[11px] text-muted-foreground hover:bg-accent",children:u("ask_panel.skip")}),s.jsxs("button",{type:"button",onClick:R,disabled:!w,className:"inline-flex items-center gap-1 rounded bg-emerald-500/15 px-2 py-1 text-[11px] font-medium text-emerald-700 hover:bg-emerald-500/25 dark:text-emerald-300",children:[u(S?"ask_panel.submit":"ask_panel.next"),s.jsx(E5,{className:"size-3 opacity-60"})]})]})]})]})}function Q7(e){if(typeof e=="string")return{question:e,options:[],multiSelect:!1,allowText:!0};if(!e||typeof e!="object")return null;const t=e,a=typeof t.question=="string"?t.question:"";if(!a)return null;const l=(Array.isArray(t.options)?t.options:[]).map(c=>{if(typeof c=="string")return{label:c};if(c&&typeof c=="object"&&typeof c.label=="string"){const d=c;return{label:d.label,description:typeof d.description=="string"?d.description:void 0}}return null}).filter(c=>c!==null);return{question:a,header:typeof t.header=="string"?t.header:void 0,options:l,multiSelect:t.multiSelect===!0,allowText:t.allowText!==!1}}function ME(e){if(!e.length)return null;const t=e[e.length-1];if(t.role!=="assistant")return null;let a=null,o=-1;for(let g=t.parts.length-1;g>=0;g--){const h=t.parts[g];if(h.kind==="tool"&&h.tool==="ask_questions"){a=h,o=g;break}}if(!a||o<0)return null;let l=null;if(typeof a.result=="string")try{l=JSON.parse(a.result)}catch{l=null}else a.result&&typeof a.result=="object"&&(l=a.result);const c=[];Array.isArray(a.args?.questions)&&c.push(a.args.questions),l&&Array.isArray(l.questions)&&c.push(l.questions);let d=[];for(const g of c)if(d=g.map(Q7).filter(h=>!!h),d.length>0)break;return d.length?{turnKey:`${t.ts||""}#${o}`,questions:d}:null}const Wx={web:{label:"Web",icon:xb,order:0},telegram:{label:"Telegram",icon:Js,order:1},desktop:{label:"Desktop",icon:_b,order:2},voice:{label:"Voice",icon:bb,order:3},a2a:{label:"Agent ↔ Agent",icon:on,order:4},schedule:{label:"Schedule",icon:i3,order:5},other:{label:"Other",icon:ci,order:6}};function ew(e){if(!e)return"web";const t=e.toLowerCase();return t==="telegram"?"telegram":t==="voice"||t==="overlay"?"voice":t==="desktop"?"desktop":t==="web"||t==="sidebar"||t==="web-sidebar"?"web":t==="a2a"||t.startsWith("agent")?"a2a":t==="schedule"||t==="cron"||t==="routine"?"schedule":"other"}function W7({pid:e,slug:t,onLoaded:a}){const{data:o}=$e(`/projects/${e}/agents/${t}/conversations`,()=>zo.list(e,t),{revalidateOnFocus:!1});return x.useEffect(()=>{a(t,o)},[t,o]),null}function Z7({pid:e,agents:t,superAgentSlug:a,superAgentLabel:o,selected:l,onSelect:c,onNewChat:d}){const[p,m]=x.useState(""),[g,h]=x.useState(""),[b,_]=x.useState({}),[j,E]=x.useState({}),[k,y]=x.useState(!1),w=String(e)==="0",S=$e(w?`/projects/${e}/super-agent/threads`:null,()=>zo.threads(e),{revalidateOnFocus:!1}),N=(D,L)=>{L&&E($=>{const V=$[D];return V&&V.length===L.length&&V===L?$:{...$,[D]:L}})},R=x.useMemo(()=>{const D=[];for(const L of t)for(const $ of j[L.slug]||[])D.push({...$,agent_slug:$.agent_slug||L.slug});return D},[t,j]),A=x.useMemo(()=>{const D=p.trim().toLowerCase();return R.filter(L=>!(g&&L.agent_slug!==g||D&&!`${L.title||""} ${L.id} ${L.agent_slug}`.toLowerCase().includes(D)))},[R,p,g]),T=x.useMemo(()=>{if(g&&g!==a)return[];const D=p.trim().toLowerCase();return(S.data||[]).filter(L=>D?`${L.title} ${L.id} ${L.channel}`.toLowerCase().includes(D):!0)},[S.data,p,g,a]),O=x.useMemo(()=>{const D=new Map,L=($,V)=>{const H=D.get($);H?H.push(V):D.set($,[V])};for(const $ of A)L(ew($.channel),{type:"conv",conv:$,sortTs:$.started_at||""});for(const $ of T)L(ew($.channel),{type:"thread",thread:$,sortTs:$.last_ts||$.started_at||""});return Array.from(D.entries()).map(([$,V])=>({key:$,items:V.sort((H,F)=>new Date(F.sortTs||0).getTime()-new Date(H.sortTs||0).getTime())})).sort(($,V)=>Wx[$.key].order-Wx[V.key].order)},[A,T]),z=x.useMemo(()=>[{slug:a,label:o},...t.map(D=>({slug:D.slug,label:D.slug}))],[t,a,o]),U=x.useMemo(()=>[{value:"",label:u("project.chat.list.all_agents")},{value:a,label:o},...t.map(D=>({value:D.slug,label:D.slug}))],[t,a,o]),P=R.length+(S.data?.length||0),B=Object.keys(j).length>0||t.length===0||!!S.data;return s.jsxs("aside",{className:"flex h-full w-72 shrink-0 flex-col border-r border-border bg-card/30",children:[t.map(D=>s.jsx(W7,{pid:e,slug:D.slug,onLoaded:N},D.slug)),s.jsxs("header",{className:"flex h-[57px] shrink-0 items-center justify-between gap-2 border-b border-border px-3",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("p",{className:"truncate text-sm font-semibold",children:u("project.chat.list.title")}),s.jsx("p",{className:"text-[10px] text-muted-fg",children:u("project.chat.list.count",{n:P})})]}),s.jsxs("div",{className:"relative",children:[s.jsxs("button",{type:"button",onClick:()=>y(D=>!D),className:"inline-flex items-center gap-1 rounded-md border border-border bg-accent/60 px-2 py-1 text-[11px] font-medium hover:bg-accent",children:[s.jsx(It,{className:"size-3"})," ",u("project.chat.list.new")]}),k&&s.jsxs(s.Fragment,{children:[s.jsx("button",{type:"button","aria-hidden":!0,tabIndex:-1,className:"fixed inset-0 z-10 cursor-default",onClick:()=>y(!1)}),s.jsxs("div",{className:"absolute right-0 top-full z-20 mt-1 w-56 rounded-md border border-border bg-card p-1 shadow-lg",children:[s.jsx("p",{className:"px-2 py-1 text-[10px] font-semibold uppercase tracking-wider text-muted-fg",children:u("project.chat.list.pick_agent")}),s.jsx("div",{className:"max-h-64 overflow-y-auto",children:z.map(D=>s.jsxs("button",{type:"button",onClick:()=>{y(!1),d(D.slug)},className:"flex w-full items-center gap-2 rounded px-2 py-1.5 text-left text-xs hover:bg-accent/50",children:[s.jsx(on,{className:"size-3 shrink-0 text-muted-fg"}),s.jsx("span",{className:"truncate",children:D.label})]},`new-${D.slug}`))})]})]})]})]}),s.jsxs("div",{className:"space-y-2 border-b border-border p-2",children:[s.jsx(Ne,{value:p,onChange:D=>m(D.target.value),placeholder:u("project.chat.list.search")}),s.jsx(ut,{value:g,onChange:h,options:U})]}),s.jsxs("div",{className:"flex-1 space-y-3 overflow-y-auto p-2",children:[!B&&s.jsx("div",{className:"px-2 py-1",children:s.jsx(at,{})}),O.map(D=>s.jsx(J7,{keyName:D.key,count:D.items.length,collapsed:!!b[D.key],onToggle:()=>_(L=>({...L,[D.key]:!L[D.key]})),children:D.items.map(L=>{if(L.type==="thread"){const H=L.thread,F=l.kind==="thread"&&l.channel===H.channel&&l.threadId===H.id;return s.jsx(tw,{title:H.title,subtitle:[H.channel,`${H.messages} msg`].join(" · "),badge:"super",timeAgo:H.last_ts,selected:F,onClick:()=>c({kind:"thread",channel:H.channel,threadId:H.id},{channel:H.channel,createdAt:H.started_at,title:H.title})},`thread-${H.channel}-${H.id}`)}const $=L.conv,V=l.kind==="conv"&&l.agentSlug===$.agent_slug&&l.convId===$.id;return s.jsx(tw,{title:$.title||$.id,subtitle:[$.agent_slug,`${$.messages??0} msg`].filter(Boolean).join(" · "),badge:$.agent_slug,timeAgo:$.started_at,selected:V,onClick:()=>c({kind:"conv",agentSlug:$.agent_slug,convId:$.id},{channel:$.channel,createdAt:$.started_at,title:$.title})},`${$.agent_slug}-${$.id}`)})},D.key)),B&&R.length===0&&T.length===0&&s.jsx("p",{className:"px-3 py-6 text-center text-xs text-muted-fg",children:u("project.chat.list.empty")})]})]})}function J7({keyName:e,count:t,collapsed:a,onToggle:o,children:l}){const c=Wx[e],d=c.icon;return s.jsxs("section",{className:"space-y-1",children:[s.jsxs("button",{type:"button",onClick:o,className:"flex w-full items-center justify-between rounded-md px-2 py-1 text-muted-fg hover:bg-accent/30",children:[s.jsxs("span",{className:"inline-flex items-center gap-1.5",children:[a?s.jsx(qr,{className:"size-3"}):s.jsx(ns,{className:"size-3"}),s.jsx(d,{className:"size-3"}),s.jsx("span",{className:"text-[10px] font-semibold uppercase tracking-wider",children:c.label})]}),s.jsx("span",{className:"text-[10px]",children:t})]}),!a&&s.jsx("div",{className:"space-y-0.5",children:l})]})}function tw({title:e,subtitle:t,badge:a,timeAgo:o,selected:l,onClick:c}){return s.jsxs("button",{type:"button",onClick:c,className:qc("w-full rounded-md border px-2.5 py-2 text-left transition-colors",l?"border-primary/50 bg-primary/10":"border-transparent hover:border-border hover:bg-accent/40"),children:[s.jsxs("div",{className:"flex items-start justify-between gap-2",children:[s.jsx("p",{className:qc("truncate text-sm",l?"font-semibold":"font-medium"),children:e}),o&&s.jsxs("span",{className:"inline-flex shrink-0 items-center gap-0.5 text-[10px] text-muted-fg",children:[s.jsx(DS,{className:"size-2.5"}),eB(o)]})]}),s.jsxs("div",{className:"mt-0.5 flex items-center justify-between gap-2 text-[10px] text-muted-fg",children:[s.jsx("span",{className:"truncate",children:t}),a&&s.jsxs("span",{className:"inline-flex shrink-0 items-center gap-1 rounded bg-accent/50 px-1.5 py-0.5",children:[s.jsx(yb,{className:"size-2.5"}),a]})]})]})}function eB(e){if(!e)return"";const t=new Date(e).getTime();if(!Number.isFinite(t))return"";const a=Date.now()-t,o=Math.floor(a/6e4);if(o<1)return"now";if(o<60)return`${o}m`;const l=Math.floor(o/60);return l<24?`${l}h`:`${Math.floor(l/24)}d`}const Xd="__super_agent__";function tB({pid:e}){const t=Ze(),[a,o]=$o(),l=$e(`/projects/${e}/agents`,()=>cn.list(e)),[c,d]=x.useState(!1),[p,m]=x.useState(""),[g,h]=x.useState(null),{msgs:b,send:_,stop:j,clear:E,load:k,loadThread:y,streaming:w}=F7(e,ee=>t.error(ee)),S=Np(),[N,R]=x.useState(()=>{const ee=a.get("agent"),re=a.get("conv"),le=a.get("channel"),me=a.get("thread");return le&&me?{kind:"thread",channel:le,threadId:me}:ee&&re?{kind:"conv",agentSlug:ee,convId:re}:ee?{kind:"live",agentSlug:ee}:{kind:"live",agentSlug:Xd}}),[A,T]=x.useState(void 0),[O,z]=x.useState(!1),[U,P]=x.useState(!1),B=(ee,re)=>{R(ee),T(re);const le=new URLSearchParams;ee.kind==="conv"?(le.set("agent",ee.agentSlug),le.set("conv",ee.convId)):ee.kind==="thread"?(le.set("channel",ee.channel),le.set("thread",ee.threadId)):le.set("agent",ee.agentSlug),o(le,{replace:!0})},D=l.data||[],L=ee=>ee===Xd,$=x.useMemo(()=>N.kind==="thread"?void 0:D.find(ee=>ee.slug===N.agentSlug),[D,N]),V=N.kind==="thread"||L(N.agentSlug);x.useEffect(()=>{N.kind==="conv"?k(N.agentSlug,N.convId):N.kind==="thread"?y(N.channel,N.threadId):E()},[N.kind,N.kind==="conv"?N.convId:N.kind==="thread"?`${N.channel}:${N.threadId}`:N.agentSlug]);const H=async ee=>{if(V){await _(ee,{model:p||void 0});return}$&&await _(ee,{model:p||void 0,agentSlug:$.slug})},F=async ee=>{try{await navigator.clipboard.writeText(ee),t.info(u("project.chat.copied"))}catch{}},Y=ee=>{B({kind:"live",agentSlug:ee}),E()},G=()=>{const ee=V?Xd:$?.slug??N.agentSlug;B({kind:"live",agentSlug:ee}),E()},K=async()=>{P(!0);try{N.kind==="conv"?(await zo.remove(e,N.agentSlug,N.convId),zf(`/projects/${e}/agents/${N.agentSlug}/conversations`)):N.kind==="thread"&&(await zo.removeThread(e,N.channel,N.threadId),zf(`/projects/${e}/super-agent/threads`)),t.success(u("project.chat.deleted")),z(!1),G()}catch(ee){t.error(ee?.message||u("shared_ui.err_chat_failed"))}finally{P(!1)}},I=V?S:$?.slug??N.agentSlug,X=N.kind==="thread"?N.channel:A?.channel||"web",Z=N.kind==="thread"?N.threadId:A?.createdAt,te=N.kind==="live"?u("project.chat.live_title",{agent:I}):A?.title||(N.kind==="thread"?N.threadId:N.convId),fe=Z?u("project.chat.meta_created",{date:nB(Z),channel:X}):u("project.chat.meta_new",{channel:X});return l.isLoading?s.jsx(at,{}):s.jsxs("div",{className:"flex h-full overflow-hidden rounded-xl border border-border bg-card/40",children:[s.jsx(Z7,{pid:e,agents:D,superAgentSlug:Xd,superAgentLabel:u("agents_ui.super_agent_label",{persona:S}),selected:N,onSelect:B,onNewChat:Y}),s.jsxs("section",{className:"flex min-w-0 flex-1 flex-col",children:[s.jsxs("header",{className:"flex shrink-0 items-center justify-between gap-3 border-b border-border px-4 py-3",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("h2",{className:"truncate text-sm font-semibold",children:te}),s.jsx("p",{className:"truncate text-[11px] text-muted-fg",children:fe})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[V?s.jsx(He,{tone:"success",children:u("agents_ui.super_agent_badge")}):s.jsx(He,{tone:"info",children:I}),!D.length&&!V&&s.jsxs(se,{variant:"primary",size:"sm",onClick:()=>d(!0),children:[s.jsx(It,{size:14})," ",u("project.chat.create_agent")]}),s.jsxs(se,{variant:"ghost",size:"sm",disabled:w||b.length===0,onClick:G,children:[s.jsx(ui,{size:13})," ",u("project.chat.new_session")]}),(N.kind==="conv"||N.kind==="thread")&&s.jsxs(se,{variant:"destructive",size:"sm",disabled:w,onClick:()=>z(!0),children:[s.jsx(_n,{size:13})," ",u("project.chat.delete")]})]})]}),s.jsx("div",{className:"flex-1 overflow-y-auto",children:b.length?s.jsx(W_,{msgs:b,onCopy:F}):s.jsx("div",{className:"flex h-full items-center justify-center p-8",children:s.jsx("p",{className:"text-sm text-muted-fg",children:u("project.chat.empty")})})}),s.jsx(TE,{msgs:b}),(()=>{const ee=w?null:ME(b);return!ee||ee.turnKey===g?null:s.jsx(AE,{turnKey:ee.turnKey,questions:ee.questions,onSubmit:re=>void H(re),onDismiss:()=>h(ee.turnKey),disabled:w})})(),s.jsx(O7,{onSend:H,onStop:j,streaming:w,model:p,onModelChange:m})]}),s.jsx(sB,{open:c,pid:e,onClose:()=>d(!1),onCreated:()=>{d(!1),l.mutate()}}),s.jsx(sn,{open:O,onClose:()=>z(!1),title:u("project.chat.delete_confirm_title"),description:u("project.chat.delete_confirm_desc"),size:"sm",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:()=>z(!1),disabled:U,children:u("common.cancel")}),s.jsxs(se,{variant:"destructive",onClick:K,loading:U,children:[s.jsx(_n,{size:14})," ",u("project.chat.delete")]})]}),children:s.jsx("p",{className:"text-sm text-muted-fg",children:te})})]})}function nB(e){if(!e)return"";const t=new Date(e);return Number.isNaN(t.getTime())?e:t.toLocaleDateString()}function sB({open:e,onClose:t,onCreated:a,pid:o}){const l=Ze(),[c,d]=x.useState(""),[p,m]=x.useState("master"),[g,h]=x.useState(""),[b,_]=x.useState(!0),[j,E]=x.useState(!1),k=async()=>{if(!/^[a-z][a-z0-9_-]*$/.test(c)){l.error(u("project.agents.slug_invalid"));return}E(!0);try{await cn.create(o,{slug:c,role:p,model:g||void 0,is_master:b}),l.success(u("project.agents.created",{slug:c})),d(""),m("master"),h(""),_(!0),a()}catch(y){l.error(y.message)}finally{E(!1)}};return s.jsx(sn,{open:e,onClose:t,title:u("project.chat.create_agent_title"),description:u("project.chat.create_agent_desc"),footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:j,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:k,loading:j,children:u("common.create")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:"slug",children:s.jsx(Ne,{autoFocus:!0,value:c,onChange:y=>d(y.target.value),placeholder:"master"})}),s.jsx(ae,{label:u("project.chat.role_label"),children:s.jsx(Ne,{value:p,onChange:y=>m(y.target.value),placeholder:"master"})}),s.jsx(ae,{label:u("project.chat.model_label"),hint:u("project.chat.model_hint"),children:s.jsx(Ne,{value:g,onChange:y=>h(y.target.value)})}),s.jsx(Gt,{checked:b,onChange:_,label:u("project.chat.master_label")})]})})}function aB({pid:e}){const t=Ze(),{project:a}=Cp(e),{channels:o,isLoading:l,mutate:c}=M_(),d=String(e),p=a?.name||a?.path?.split("/").pop()||d,m=`proj-${d}`,g=o.find(O=>O.project===d||O.project===p||O.name===m),[h,b]=x.useState(!!g),[_,j]=x.useState(""),[E,k]=x.useState(""),[y,w]=x.useState(""),[S,N]=x.useState(!0),[R,A]=x.useState(!1);if(x.useEffect(()=>{g?(b(!0),j(""),k(g.chat_id||""),w(g.route_to_agent||""),N(g.respond_with_engine??!0)):(b(!1),j(""),k(""),w(""),N(!0))},[g?.name,g?.chat_id,g?.route_to_agent]),l)return s.jsx(at,{});const T=async()=>{A(!0);try{if(!h){g&&(await zn.channels.remove(g.name),t.success(u("project.telegram.cleared"))),await c();return}const O={name:g?.name||m,project:d,chat_id:E,route_to_agent:y,respond_with_engine:S,..._?{bot_token:_}:{}};g?await zn.channels.patch(g.name,O):await zn.channels.upsert(O),t.success(u("project.telegram.saved")),await c(),j("")}catch(O){t.error(O.message)}finally{A(!1)}};return s.jsx(Fe,{title:u("project.telegram.title"),description:u("project.telegram.subtitle"),children:s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Gt,{checked:h,onChange:b,label:u(h?"project.telegram.override_active":"project.telegram.use_default")}),g&&s.jsx(He,{tone:"success",children:u("project.telegram.channel_badge",{name:g.name})})]}),h&&s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("project.telegram.bot_token"),hint:g?.bot_token?`${Br(g.bot_token)} ${u("telegram_ui.empty_keep")}`:u("project.telegram.bot_hint_none"),children:s.jsx(Ne,{type:"password",value:_,onChange:O=>j(O.target.value),placeholder:g?.bot_token?Br(g.bot_token):""})}),s.jsx(ae,{label:u("project.telegram.chat_id"),children:s.jsx(Ne,{value:E,onChange:O=>k(O.target.value)})}),s.jsx(ae,{label:u("project.telegram.route_agent"),hint:u("project.telegram.route_hint"),children:s.jsx(Ne,{value:y,onChange:O=>w(O.target.value)})})]}),s.jsx(Gt,{checked:S,onChange:N,label:u("project.telegram.respond_engine")})]}),s.jsx("div",{className:"pt-2",children:s.jsx(se,{variant:"primary",loading:R,onClick:T,children:u("common.save")})}),!h&&!g&&s.jsx(pt,{children:u("project.telegram.no_override")})]})})}function OE({load:e,save:t,rows:a=10,placeholder:o}){const l=Ze(),[c,d]=x.useState(null),[p,m]=x.useState(""),[g,h]=x.useState(!1);if(x.useEffect(()=>{let j=!0;return e().then(E=>{j&&(d(E),m(E))}).catch(()=>{j&&(d(""),m(""))}),()=>{j=!1}},[e]),c===null)return s.jsx(at,{});const b=p!==c,_=async()=>{h(!0);try{await t(p),d(p),l.success(u("project.memories.saved"))}catch(j){l.error(j.message)}finally{h(!1)}};return s.jsxs("div",{className:"space-y-2",children:[s.jsx(un,{rows:a,className:"font-mono text-xs",value:p,onChange:j=>m(j.target.value),placeholder:o}),s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsxs("span",{className:"text-[11px] text-muted-fg",children:[p.length," ",u("project.memories.chars")]}),s.jsxs(se,{size:"sm",variant:"primary",loading:g,disabled:!b,onClick:_,children:[s.jsx(di,{size:12})," ",u("project.memories.save_btn")]})]})]})}function rB({pid:e,agent:t}){const[a,o]=x.useState(!1),l=t.is_master?xa:on;return s.jsxs("li",{className:"rounded-xl border border-border bg-muted/30",children:[s.jsxs("button",{type:"button",onClick:()=>o(c=>!c),className:"flex w-full items-center gap-3 px-3 py-2 text-left",children:[a?s.jsx(ns,{size:14,className:"text-muted-fg"}):s.jsx(qr,{size:14,className:"text-muted-fg"}),s.jsx(l,{size:14,className:t.is_master?"text-violet-400":"text-muted-fg"}),s.jsx("span",{className:"text-sm font-medium",children:t.slug}),t.role&&s.jsxs("span",{className:"text-xs text-muted-fg",children:["· ",t.role]})]}),a&&s.jsx("div",{className:"border-t border-border p-3",children:s.jsx(OE,{rows:8,load:()=>cn.memory.get(e,t.slug).then(c=>c.body),save:c=>cn.memory.put(e,t.slug,c).then(()=>{})})})]})}function oB({pid:e}){const t=$e(`/projects/${e}/agents`,()=>cn.list(e));return s.jsxs("div",{className:"space-y-6",children:[s.jsx(Fe,{title:u("project.memories.project_title"),description:u("project.memories.project_desc"),children:s.jsxs("div",{className:"flex items-start gap-3",children:[s.jsx("div",{className:"mt-1 flex size-9 shrink-0 items-center justify-center rounded-xl bg-gradient-to-br from-sky-600 to-indigo-600",children:s.jsx(gf,{className:"size-4 text-white"})}),s.jsx("div",{className:"min-w-0 flex-1",children:s.jsx(OE,{rows:12,load:()=>Qn.memory.get(e).then(a=>a.body),save:a=>Qn.memory.put(e,a).then(()=>{}),placeholder:u("project.memories.project_ph")})})]})}),s.jsxs(Fe,{title:u("project.memories.agents_title"),description:u("project.memories.agents_desc"),children:[t.isLoading&&s.jsx(at,{}),!t.isLoading&&(t.data?.length??0)===0&&s.jsx(pt,{children:u("project.memories.no_agents")}),s.jsx("ul",{className:"space-y-2",children:(t.data||[]).map(a=>s.jsx(rB,{pid:e,agent:a},a.slug))})]})]})}function lB({pid:e,entry:t,onDeleted:a,onRenamed:o,onRunInTerminal:l,onEditArtifact:c}){const[d,p]=x.useState(!1),[m,g]=x.useState(null),h=Ze(),[b,_]=x.useState(!1),[j,E]=x.useState(t.name),k=x.useRef(null),[y,w]=x.useState(!1),[S,N]=x.useState(!1),[R,A]=x.useState(!1),T=y?["artifact",e,t.name]:null,O=$e(T,()=>Dr.read(e,t.name),{revalidateOnFocus:!1}),z=!O.data?.content||O.data.content.startsWith("#!"),U=async $=>{try{await navigator.clipboard.writeText($),h.info(u("modules_ui.code_copied"))}catch{}},P=async()=>{p(!0),g(null);try{const $=await Dr.run(e,t.name);g($),$.ok?h.info(u("modules_ui.code_artifact_exit_ok",{ms:$.durationMs??0})):h.error(u("modules_ui.code_artifact_exit_fail",{code:$.exitCode??$.signal??"?",timeout:$.timedOut?u("modules_ui.code_artifact_timeout_suffix"):""}))}catch($){h.error($.message)}finally{p(!1)}},B=async()=>{A(!0);try{await Dr.remove(e,t.name),N(!1),a()}catch($){h.error($.message)}finally{A(!1)}},D=()=>{E(t.name),_(!0),requestAnimationFrame(()=>k.current?.select())},L=async()=>{const $=j.trim();if(_(!1),!(!$||$===t.name))try{await Dr.rename(e,t.name,$),o()}catch(V){h.error(V.message)}};return s.jsxs("li",{className:"rounded-md border border-border",children:[s.jsxs("div",{className:"flex w-full items-center gap-2 px-2 py-1.5 text-xs",children:[s.jsx(hf,{className:"size-3.5 shrink-0 text-emerald-600 dark:text-emerald-400"}),b?s.jsx("input",{ref:k,value:j,onChange:$=>E($.target.value),onBlur:()=>void L(),onKeyDown:$=>{$.key==="Enter"&&L(),$.key==="Escape"&&_(!1)},autoFocus:!0,className:"min-w-0 flex-1 rounded border border-border bg-background px-1 py-0.5 font-mono text-xs outline-none focus:ring-1 focus:ring-ring"}):s.jsx("span",{className:"min-w-0 flex-1 truncate font-mono",children:t.name}),s.jsx(Ye,{content:u("code_module.artifacts_rename"),children:s.jsx("button",{type:"button",onClick:D,className:"shrink-0 rounded p-0.5 text-muted-foreground hover:bg-accent hover:text-foreground",children:s.jsx(ya,{className:"size-3"})})}),s.jsxs("span",{className:"shrink-0 font-mono text-[10px] text-muted-foreground",children:[t.size,"b"]})]}),s.jsxs("div",{className:"space-y-2 border-t border-border p-2",children:[s.jsxs("div",{className:"flex w-full min-w-0 items-center gap-1 rounded bg-muted px-1.5 py-0.5",children:[s.jsx("code",{className:"min-w-0 flex-1 truncate font-mono text-[10px] text-muted-foreground",children:t.path}),s.jsx(Ye,{content:u("code_module.artifacts_copy_path"),children:s.jsx("button",{type:"button",onClick:()=>void U(t.path),className:"shrink-0 rounded p-0.5 text-muted-foreground hover:bg-accent hover:text-foreground",children:s.jsx($c,{className:"size-3"})})})]}),s.jsxs("div",{className:"flex flex-wrap items-center gap-1 mt-1",children:[s.jsxs(Bx,{open:y,onOpenChange:w,children:[s.jsx(Ye,{content:u("code_module.artifacts_view"),children:s.jsxs("button",{type:"button",onClick:()=>w(!0),className:"inline-flex items-center gap-1 rounded px-1.5 py-1 text-[10px] font-medium bg-blue-500/15 text-blue-700 hover:bg-blue-500/25 dark:text-blue-300",children:[s.jsx(au,{className:"size-3"}),u("modules_ui.code_artifact_view_short")]})}),s.jsxs(Ux,{className:"sm:max-w-lg",children:[s.jsx($x,{children:s.jsx(Hx,{className:"font-mono text-sm",children:t.name})}),O.isLoading?s.jsx("div",{className:"flex justify-center py-6",children:s.jsx(Dn,{size:16})}):s.jsx("pre",{className:"max-h-96 overflow-auto rounded bg-muted/50 p-3 font-mono text-[11px] leading-tight whitespace-pre-wrap break-all",children:O.data?.content??""}),s.jsx(Sk,{showCloseButton:!0})]})]}),c&&s.jsx(Ye,{content:u("code_module.artifacts_edit"),children:s.jsxs("button",{type:"button",onClick:()=>c(t.name),className:"inline-flex items-center gap-1 rounded px-1.5 py-1 text-[10px] font-medium bg-violet-500/15 text-violet-700 hover:bg-violet-500/25 dark:text-violet-300",children:[s.jsx(o3,{className:"size-3"}),u("modules_ui.code_artifact_edit_short")]})}),z&&s.jsx(Ye,{content:u("code_module.artifacts_run"),children:s.jsxs("button",{type:"button",disabled:d,onClick:()=>l?l(`apx artifact run ${t.name}`):void P(),className:"inline-flex items-center gap-1 rounded px-1.5 py-1 text-[10px] font-medium bg-emerald-500/15 text-emerald-700 hover:bg-emerald-500/25 disabled:opacity-60 dark:text-emerald-300",children:[d?s.jsx(Dn,{size:10}):s.jsx(vb,{className:"size-3"}),u("code_module.artifacts_run")]})}),s.jsxs(Bx,{open:S,onOpenChange:N,children:[s.jsx(Ye,{content:u("code_module.artifacts_delete"),children:s.jsx("button",{type:"button",onClick:()=>N(!0),className:"ml-auto rounded p-1 text-rose-600 hover:bg-rose-50 dark:text-rose-400 dark:hover:bg-rose-950",children:s.jsx(_n,{className:"size-3"})})}),s.jsxs(Ux,{className:"sm:max-w-sm",children:[s.jsx($x,{children:s.jsxs(Hx,{className:"font-mono text-sm",children:[u("code_module.artifacts_delete")," — ",t.name]})}),s.jsx("p",{className:"px-1 text-sm text-muted-foreground",children:u("code_module.artifacts_delete_confirm")}),s.jsxs(Sk,{children:[s.jsx(qL,{render:s.jsx("button",{type:"button",className:"rounded px-3 py-1.5 text-xs font-medium hover:bg-accent"}),children:u("common.cancel")}),s.jsxs("button",{type:"button",onClick:()=>void B(),disabled:R,className:he("inline-flex items-center gap-1.5 rounded px-3 py-1.5 text-xs font-medium",R?"bg-muted text-muted-foreground":"bg-rose-500/15 text-rose-700 hover:bg-rose-500/25 dark:text-rose-300"),children:[R&&s.jsx(Dn,{size:10}),u("code_module.delete")]})]})]})]})]}),s.jsxs("div",{className:"mt-1 text-[10px] text-muted-foreground",children:[u("code_module.artifacts_run_hint")," ",s.jsxs("code",{className:"rounded bg-muted px-1 font-mono",children:["apx artifact run ",t.name]})]}),m&&s.jsxs("div",{className:"space-y-1",children:[s.jsxs("div",{className:"flex items-center gap-2 text-[10px]",children:[s.jsx("span",{className:he("rounded px-1.5 py-0.5 font-mono",m.ok?"bg-emerald-500/15 text-emerald-700 dark:text-emerald-300":"bg-rose-500/15 text-rose-700 dark:text-rose-300"),children:u("modules_ui.code_artifact_exit_badge",{code:m.exitCode??m.signal??"?"})}),m.timedOut&&s.jsx("span",{className:"rounded bg-amber-500/15 px-1.5 py-0.5 font-mono text-amber-700 dark:text-amber-300",children:u("modules_ui.code_artifact_timeout")}),m.truncated&&s.jsx("span",{className:"rounded bg-amber-500/15 px-1.5 py-0.5 font-mono text-amber-700 dark:text-amber-300",children:u("modules_ui.code_artifact_truncated")}),s.jsxs("span",{className:"font-mono text-muted-foreground",children:[m.durationMs,"ms"]})]}),m.stdout&&s.jsx("pre",{className:"max-h-32 overflow-auto rounded bg-background/60 p-2 text-[10px] leading-tight",children:m.stdout}),m.stderr&&s.jsx("pre",{className:"max-h-32 overflow-auto rounded bg-rose-500/5 p-2 text-[10px] leading-tight text-rose-700 dark:text-rose-300",children:m.stderr})]})]})]})}function zE({pid:e,onRunInTerminal:t,onEditArtifact:a}){const o=$e(e?["artifacts",e]:null,()=>Dr.list(e)),l=o.data||[];return s.jsxs("div",{className:"flex h-full flex-col","data-testid":"code-artifacts-tab",children:[s.jsxs("div",{className:"flex shrink-0 items-center justify-between px-3 py-2",children:[s.jsx("span",{className:"text-[11px] text-muted-foreground",children:l.length>0?u("code_module.artifacts_count",{n:l.length}):""}),s.jsx(Ye,{content:u("code_module.reload"),children:s.jsx("button",{type:"button",onClick:()=>void o.mutate(),className:"rounded p-1 text-muted-foreground hover:bg-accent hover:text-foreground",children:o.isLoading?s.jsx(Dn,{size:12}):s.jsx(Qs,{className:"size-3"})})})]}),s.jsx("div",{className:"min-h-0 flex-1 overflow-y-auto px-3 pb-3",children:l.length===0?s.jsx(pt,{children:u("code_module.artifacts_none")}):s.jsx("ul",{className:"space-y-1.5",children:l.map(c=>s.jsx(lB,{pid:e,entry:c,onDeleted:()=>void o.mutate(),onRenamed:()=>void o.mutate(),onRunInTerminal:t,onEditArtifact:a},c.name))})})]})}function iB({pid:e}){const t=Pn(),a=o=>{const l=new URLSearchParams({pid:e,...o}).toString();t(`/m/code?${l}`)};return s.jsx(Fe,{title:u("project.artifacts.title"),description:u("project.artifacts.subtitle"),fullHeight:!0,className:"min-h-[24rem]",children:s.jsx(zE,{pid:e,onRunInTerminal:o=>a({cmd:o}),onEditArtifact:o=>a({edit:o})})})}function cB({pid:e}){const t=Ze(),a=$e(`/projects/${e}/organization`,()=>Ir.get(e)),[o,l]=x.useState(null),[c,d]=x.useState(null),[p,m]=x.useState(null),g=()=>void a.mutate(),h=a.data?.areas??[],b=a.data?.roles??[],_=E=>b.filter(k=>k.area===E),j=async()=>{p&&(p.kind==="area"?await Ir.removeArea(e,p.slug):await Ir.removeRole(e,p.slug),t.success(u("common.deleted")),g())};return s.jsxs("div",{className:"space-y-6",children:[s.jsxs(Fe,{title:u("structure.title"),description:u("structure.subtitle"),action:s.jsxs("div",{className:"flex gap-2",children:[s.jsxs(se,{size:"sm",variant:"secondary","data-testid":"structure-new-area",onClick:()=>l({}),children:[s.jsx(It,{className:"size-3.5"}),u("structure.new_area")]}),s.jsxs(se,{size:"sm",variant:"primary",onClick:()=>d({}),children:[s.jsx(It,{className:"size-3.5"}),u("structure.new_role")]})]}),children:[s.jsxs("div",{className:"mb-4 flex items-start gap-2 rounded-lg border border-sky-500/20 bg-sky-500/5 px-3 py-2 text-[13px] text-muted-foreground",children:[s.jsx(VS,{className:"mt-0.5 size-4 shrink-0 text-sky-500"}),s.jsx("span",{children:u("structure.info")})]}),a.isLoading?s.jsx(at,{}):h.length===0&&b.length===0?s.jsx(pt,{children:u("structure.empty")}):s.jsxs("div",{className:"grid gap-3 md:grid-cols-2 xl:grid-cols-3",children:[h.map(E=>s.jsxs("div",{className:"group rounded-lg border border-border bg-card/50 p-3",children:[s.jsxs("div",{className:"flex items-start gap-2",children:[s.jsx(gb,{className:"mt-0.5 size-4 shrink-0 text-emerald-500"}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:"truncate text-sm font-semibold",children:E.name}),s.jsx("span",{className:"font-mono text-[10px] text-muted-foreground",children:E.slug})]}),E.goal&&s.jsx("p",{className:"mt-0.5 text-xs text-muted-foreground",children:E.goal})]}),s.jsxs("div",{className:"flex shrink-0 gap-1 opacity-0 transition-opacity group-hover:opacity-100",children:[s.jsx("button",{type:"button",onClick:()=>l({editing:E}),className:"text-muted-foreground hover:text-foreground","aria-label":u("common.edit"),children:s.jsx(ya,{className:"size-3.5"})}),s.jsx("button",{type:"button",onClick:()=>m({kind:"area",slug:E.slug,name:E.name}),className:"text-muted-foreground hover:text-red-500","aria-label":u("common.delete"),children:s.jsx(_n,{className:"size-3.5"})})]})]}),s.jsxs("div",{className:"mt-3 border-t border-border/60 pt-2",children:[s.jsxs("div",{className:"mb-1.5 flex items-center justify-between",children:[s.jsxs("span",{className:"text-[10px] font-semibold uppercase tracking-wide text-muted-foreground",children:[u("structure.roles")," (",_(E.slug).length,")"]}),s.jsxs("button",{type:"button",onClick:()=>d({presetArea:E.slug}),className:"text-[11px] text-sky-500 hover:text-sky-400",children:["+ ",u("structure.add_role")]})]}),s.jsxs("div",{className:"flex flex-wrap gap-1.5",children:[_(E.slug).map(k=>s.jsx(nw,{role:k,onEdit:()=>d({editing:k}),onDelete:()=>m({kind:"role",slug:k.slug,name:k.name})},k.slug)),_(E.slug).length===0&&s.jsx("span",{className:"text-[11px] text-muted-foreground/60",children:u("structure.no_roles")})]})]})]},E.slug)),_(null).length>0&&s.jsxs("div",{className:"rounded-lg border border-dashed border-border bg-card/30 p-3",children:[s.jsxs("div",{className:"mb-2 flex items-center gap-2 text-[10px] font-semibold uppercase tracking-wide text-muted-foreground",children:[s.jsx(OS,{className:"size-3.5"}),u("structure.general_roles")]}),s.jsx("div",{className:"flex flex-wrap gap-1.5",children:_(null).map(E=>s.jsx(nw,{role:E,onEdit:()=>d({editing:E}),onDelete:()=>m({kind:"role",slug:E.slug,name:E.name})},E.slug))})]})]})]}),s.jsx(sE,{open:!!o,onClose:()=>l(null),pid:e,editing:o?.editing,onSaved:g}),s.jsx(aE,{open:!!c,onClose:()=>d(null),pid:e,areas:h,editing:c?.editing,presetArea:c?.presetArea,onSaved:g}),s.jsx(iE,{open:!!p,onClose:()=>m(null),onConfirm:j,title:p?.kind==="area"?u("structure.delete_area"):u("structure.delete_role"),description:p?.kind==="area"?u("structure.delete_area_desc",{name:p?.name??""}):u("structure.delete_role_desc",{name:p?.name??""}),confirmLabel:u("common.delete")})]})}function nw({role:e,onEdit:t,onDelete:a}){return s.jsxs("span",{className:"group/chip inline-flex items-center gap-1 rounded-md border border-border bg-background px-1.5 py-0.5 text-[11px]",children:[s.jsx(OS,{className:"size-3 text-muted-foreground"}),s.jsx("span",{children:e.name}),s.jsx("button",{type:"button",onClick:t,className:"opacity-0 transition-opacity group-hover/chip:opacity-100 text-muted-foreground hover:text-foreground","aria-label":u("common.edit"),children:s.jsx(ya,{className:"size-2.5"})}),s.jsx("button",{type:"button",onClick:a,className:"opacity-0 transition-opacity group-hover/chip:opacity-100 text-muted-foreground hover:text-red-500","aria-label":u("common.delete"),children:s.jsx(_n,{className:"size-2.5"})})]})}function uB(e){switch(e){case"markdown":return{Icon:Wf,color:"text-sky-500"};case"text":return{Icon:M5,color:"text-amber-500"};case"image":return{Icon:V5,color:"text-pink-500"};default:return{Icon:BS,color:"text-muted-foreground"}}}function dB(e){const t=e.split("/"),a=[];for(let o=1;o<t.length;o++)a.push(t.slice(0,o).join("/"));return a}function DE({node:e,depth:t,selectedPath:a,expanded:o,toggle:l,onSelect:c,onDelete:d}){const p=e.type==="dir",m=o.has(e.path),g=a===e.path,{Icon:h,color:b}=p?{Icon:m?ci:US,color:"text-muted-foreground"}:uB(e.kind);return s.jsxs("div",{children:[s.jsxs("div",{className:he("group flex items-center gap-1 rounded px-1.5 py-1 text-[13px] cursor-pointer",g?"bg-primary/15 text-foreground":"hover:bg-accent/40 text-foreground/80"),style:{paddingLeft:t*12+6},onClick:()=>p?l(e.path):c(e),children:[p?m?s.jsx(ns,{className:"size-3.5 shrink-0 text-muted-foreground"}):s.jsx(qr,{className:"size-3.5 shrink-0 text-muted-foreground"}):s.jsx("span",{className:"w-3.5 shrink-0"}),s.jsx(h,{className:he("size-3.5 shrink-0",b)}),s.jsx("span",{className:"min-w-0 flex-1 truncate",children:e.name}),d&&!p&&s.jsx("button",{type:"button",onClick:_=>{_.stopPropagation(),d(e)},className:"opacity-0 group-hover:opacity-100 text-muted-foreground hover:text-red-500","aria-label":`delete ${e.name}`,children:s.jsx(_n,{className:"size-3.5"})})]}),p&&m&&e.children?.map(_=>s.jsx(DE,{node:_,depth:t+1,selectedPath:a,expanded:o,toggle:l,onSelect:c,onDelete:d},_.path))]})}function fB({nodes:e,selectedPath:t,onSelect:a,onDelete:o,className:l}){const[c,d]=x.useState(()=>new Set);x.useEffect(()=>{t&&d(m=>{const g=new Set(m);for(const h of dB(t))g.add(h);return g})},[t]);const p=m=>d(g=>{const h=new Set(g);return h.has(m)?h.delete(m):h.add(m),h});return s.jsx("div",{className:he("select-none",l),children:e.map(m=>s.jsx(DE,{node:m,depth:0,selectedPath:t,expanded:c,toggle:p,onSelect:a,onDelete:o},m.path))})}function Qd(e,t){const a=[],o=/(\*\*([^*]+)\*\*)|(\*([^*]+)\*)|(`([^`]+)`)|(\[([^\]]+)\]\(([^)]+)\))/g;let l=0,c,d=0;for(;c=o.exec(e);)c.index>l&&a.push(s.jsx(x.Fragment,{children:e.slice(l,c.index)},`${t}-t${d}`)),c[2]!==void 0?a.push(s.jsx("strong",{children:c[2]},`${t}-b${d}`)):c[4]!==void 0?a.push(s.jsx("em",{children:c[4]},`${t}-i${d}`)):c[6]!==void 0?a.push(s.jsx("code",{className:"rounded bg-muted px-1 py-0.5 font-mono text-[0.85em]",children:c[6]},`${t}-c${d}`)):c[8]!==void 0&&a.push(s.jsx("a",{href:c[9],target:"_blank",rel:"noreferrer",className:"text-sky-500 underline underline-offset-2 hover:text-sky-400",children:c[8]},`${t}-l${d}`)),l=o.lastIndex,d+=1;return l<e.length&&a.push(s.jsx(x.Fragment,{children:e.slice(l)},`${t}-tend`)),a}function PE({content:e,className:t}){const a=e.replace(/\r\n/g,`
760
- `).split(`
761
- `),o=[];let l=0,c=0;const d=(p,m)=>{const g=m?"ol":"ul";o.push(s.jsx(g,{className:he("my-2 space-y-1 pl-5",m?"list-decimal":"list-disc"),children:p.map((h,b)=>s.jsx("li",{children:Qd(h,`li${c}-${b}`)},b))},`k${c++}`))};for(;l<a.length;){const p=a[l];if(/^```/.test(p.trim())){const h=[];for(l+=1;l<a.length&&!/^```/.test(a[l].trim());)h.push(a[l++]);l+=1,o.push(s.jsx("pre",{className:"my-2 overflow-x-auto rounded-lg bg-muted/60 p-3 font-mono text-[12px] leading-[1.6]",children:s.jsx("code",{children:h.join(`
762
- `)})},`k${c++}`));continue}if(p.trim()===""){l+=1;continue}const m=p.match(/^(#{1,6})\s+(.*)$/);if(m){const h=m[1].length,b=["text-2xl","text-xl","text-lg","text-base","text-sm","text-sm"];o.push(s.jsx("div",{className:he("mt-3 mb-1 font-semibold text-foreground",b[h-1]),children:Qd(m[2],`h${c}`)},`k${c++}`)),l+=1;continue}if(/^(-{3,}|\*{3,}|_{3,})$/.test(p.trim())){o.push(s.jsx("hr",{className:"my-3 border-border"},`k${c++}`)),l+=1;continue}if(/^>\s?/.test(p)){const h=[];for(;l<a.length&&/^>\s?/.test(a[l]);)h.push(a[l++].replace(/^>\s?/,""));o.push(s.jsx("blockquote",{className:"my-2 border-l-2 border-border pl-3 text-muted-foreground",children:Qd(h.join(" "),`q${c}`)},`k${c++}`));continue}if(/^\s*[-*+]\s+/.test(p)){const h=[];for(;l<a.length&&/^\s*[-*+]\s+/.test(a[l]);)h.push(a[l++].replace(/^\s*[-*+]\s+/,""));d(h,!1);continue}if(/^\s*\d+\.\s+/.test(p)){const h=[];for(;l<a.length&&/^\s*\d+\.\s+/.test(a[l]);)h.push(a[l++].replace(/^\s*\d+\.\s+/,""));d(h,!0);continue}const g=[];for(;l<a.length&&a[l].trim()!==""&&!/^(#{1,6})\s/.test(a[l])&&!/^```/.test(a[l].trim())&&!/^>\s?/.test(a[l])&&!/^\s*[-*+]\s+/.test(a[l])&&!/^\s*\d+\.\s+/.test(a[l]);)g.push(a[l++]);o.push(s.jsx("p",{className:"my-2 leading-relaxed",children:Qd(g.join(" "),`p${c}`)},`k${c++}`))}return s.jsx("div",{className:he("text-sm text-foreground/90",t),children:o})}function pB({value:e,onChange:t,showPreview:a=!1,placeholder:o,onSave:l,className:c}){return s.jsxs("div",{className:he("flex min-h-0 flex-1",c),children:[s.jsx("textarea",{value:e,onChange:d=>t(d.target.value),onKeyDown:d=>{l&&(d.metaKey||d.ctrlKey)&&d.key==="s"&&(d.preventDefault(),l())},placeholder:o,spellCheck:!1,className:he("min-h-0 resize-none bg-transparent p-4 font-mono text-[13px] leading-[1.7] text-foreground/90 outline-none",a?"w-1/2 border-r border-border":"w-full")}),a&&s.jsx("div",{className:"min-h-0 w-1/2 overflow-y-auto p-4",children:s.jsx(PE,{content:e})})]})}function Wd({onClick:e,active:t,disabled:a,children:o}){return s.jsx("button",{type:"button",onClick:e,disabled:a,className:he("inline-flex items-center gap-1 rounded px-2 py-0.5 text-[11px] font-medium transition-colors disabled:opacity-40",t?"bg-primary/15 text-foreground":"text-muted-foreground hover:bg-accent hover:text-foreground"),children:o})}function mB({content:e}){return s.jsx("div",{className:"min-h-0 flex-1 overflow-auto",children:s.jsx("table",{className:"w-full border-collapse font-mono text-[12px] leading-[1.6]",children:s.jsx("tbody",{children:e.split(`
763
- `).map((t,a)=>s.jsxs("tr",{className:"hover:bg-accent/20",children:[s.jsx("td",{className:"w-12 select-none border-r border-border/30 px-3 text-right align-top text-[10px] text-muted-foreground/40","aria-hidden":"true",children:a+1}),s.jsx("td",{className:"whitespace-pre px-4 align-top text-foreground/90",children:t||" "})]},a))})})})}function gB({file:e,loading:t,onSave:a}){const o=typeof a=="function",[l,c]=x.useState(""),[d,p]=x.useState(!1),[m,g]=x.useState(!0),[h,b]=x.useState(!1);if(x.useEffect(()=>{c(e?.content??""),p(!1),g(!0)},[e?.path,e?.content]),t)return s.jsx("div",{className:"flex flex-1 items-center justify-center",children:s.jsx(Dn,{size:16})});if(!e)return s.jsx("div",{className:"flex flex-1 items-center justify-center text-sm text-muted-foreground",children:u("files.select_prompt")});const _=e.kind==="markdown",j=e.kind==="text"||e.kind==="markdown",E=d&&l!==(e.content??""),k=async()=>{if(!(!a||!E)){b(!0);try{await a(l),p(!1)}finally{b(!1)}}};return s.jsxs("div",{className:"flex h-full min-h-0 flex-col bg-card/40","data-testid":"file-viewer",children:[s.jsxs("div",{className:"flex shrink-0 items-center gap-2 border-b border-border px-3 py-1.5",children:[s.jsxs("span",{className:"min-w-0 flex-1 truncate font-mono text-[11px] text-muted-foreground",children:[e.path,E&&s.jsx("span",{className:"ml-1 text-amber-400",children:"•"})]}),_&&d&&s.jsxs(Wd,{onClick:()=>g(y=>!y),active:m,children:[s.jsx(C5,{className:"size-3"}),u("files.preview")]}),o&&j&&(d?s.jsxs(s.Fragment,{children:[s.jsxs(Wd,{onClick:()=>{c(e.content??""),p(!1)},disabled:h,children:[s.jsx(ui,{className:"size-3"}),u("files.discard")]}),s.jsxs(Wd,{onClick:()=>void k(),disabled:!E||h,active:E,children:[h?s.jsx(Dn,{size:10}):s.jsx(di,{className:"size-3"}),u("files.save")]})]}):s.jsxs(Wd,{onClick:()=>p(!0),children:[s.jsx(ya,{className:"size-3"}),u("files.edit")]}))]}),_?d?s.jsx(pB,{value:l,onChange:c,showPreview:m,onSave:()=>void k()}):s.jsx("div",{className:"min-h-0 flex-1 overflow-y-auto p-4",children:s.jsx(PE,{content:e.content??""})}):e.kind==="text"?d?s.jsx("textarea",{value:l,onChange:y=>c(y.target.value),onKeyDown:y=>{(y.metaKey||y.ctrlKey)&&y.key==="s"&&(y.preventDefault(),k())},spellCheck:!1,className:"min-h-0 flex-1 resize-none bg-transparent p-4 font-mono text-[12px] leading-[1.6] text-foreground/90 outline-none"}):s.jsx(mB,{content:e.content??""}):e.kind==="image"&&e.encoding==="base64"?s.jsx("div",{className:"flex min-h-0 flex-1 items-center justify-center overflow-auto p-4",children:s.jsx("img",{src:`data:${e.mime};base64,${e.content}`,alt:e.name,className:"max-h-full max-w-full rounded object-contain"})}):s.jsxs("div",{className:"flex flex-1 flex-col items-center justify-center gap-2 text-sm text-muted-foreground",children:[s.jsx(z5,{className:"size-8 opacity-50"}),s.jsx("span",{children:e.too_large?u("files.too_large"):u("files.no_preview")}),s.jsxs("span",{className:"flex items-center gap-1 text-xs opacity-70",children:[s.jsx(T5,{className:"size-3"}),(e.size/1024).toFixed(1)," KB"]})]})]})}function hB({open:e,onClose:t,pid:a,scope:o,onCreated:l}){const c=Ze(),[d,p]=x.useState(""),[m,g]=x.useState(!1),h=async()=>{let b=d.trim().replace(/^\/+/,"");if(b){/\.[a-z0-9]+$/i.test(b)||(b+=".md"),g(!0);try{await Sc.write(a,b,"",o),c.success(u("files.created")),p(""),l(b)}catch(_){c.error(_ instanceof Error?_.message:String(_))}finally{g(!1)}}};return s.jsx(sn,{open:e,onClose:t,title:u("files.new_doc"),description:u("files.new_doc_hint"),footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,children:u("common.cancel")}),s.jsx(se,{variant:"primary","data-testid":"new-file-create",onClick:()=>void h(),loading:m,disabled:!d.trim(),children:u("files.create")})]}),children:s.jsx(ae,{label:u("files.path_label"),hint:u("files.path_example"),children:s.jsx(Ne,{autoFocus:!0,"data-testid":"new-file-path",value:d,onChange:b=>p(b.target.value),onKeyDown:b=>{b.key==="Enter"&&h()},placeholder:"cases/onboarding/spec.md"})})})}function LE({pid:e,scope:t,editable:a=!1,emptyHint:o}){const l=Ze(),[c,d]=x.useState(null),[p,m]=x.useState(!1),g=`/projects/${e}/fs/tree?scope=${t}`,h=$e(g,()=>Sc.tree(e,t)),b=c?`/projects/${e}/fs/file?scope=${t}&path=${c}`:null,_=$e(b,()=>c?Sc.read(e,c,t):null),j=N=>d(N.path),E=a?async N=>{c&&(await Sc.write(e,c,N,t),l.success(u("files.saved")),_.mutate())}:void 0,k=a?async N=>{await Sc.remove(e,N.path,t),c===N.path&&d(null),l.success(u("files.deleted")),h.mutate()}:void 0,y=N=>{m(!1),d(N),h.mutate()},w=h.data?.tree??[],S=!h.isLoading&&w.length===0;return s.jsxs("div",{className:"flex h-full min-h-0 overflow-hidden rounded-xl border border-border bg-card",children:[s.jsxs("div",{className:"flex w-64 shrink-0 flex-col border-r border-border",children:[s.jsxs("div",{className:"flex shrink-0 items-center gap-2 border-b border-border px-3 py-2",children:[s.jsx(ci,{className:"size-4 text-muted-foreground"}),s.jsx("span",{className:"flex-1 text-xs font-semibold uppercase tracking-wide text-muted-foreground",children:u(t==="docs"?"files.docs_label":"files.files_label")}),a&&s.jsx("button",{type:"button","data-testid":"docs-new",onClick:()=>m(!0),className:"text-muted-foreground hover:text-foreground","aria-label":u("files.new_doc"),title:u("files.new_doc"),children:s.jsx(px,{className:"size-4"})}),s.jsx("button",{type:"button",onClick:()=>void h.mutate(),className:"text-muted-foreground hover:text-foreground","aria-label":u("common.refresh"),children:s.jsx(Qs,{className:h.isValidating?"size-3.5 animate-spin":"size-3.5"})})]}),s.jsxs("div",{className:"min-h-0 flex-1 overflow-y-auto p-1.5",children:[h.isLoading?s.jsx("div",{className:"flex justify-center py-6",children:s.jsx(Dn,{size:14})}):S?s.jsx("div",{className:"p-3",children:s.jsx(pt,{children:s.jsxs("div",{className:"space-y-2",children:[s.jsx("p",{children:o??u("files.empty")}),a&&s.jsxs(se,{size:"sm",variant:"secondary",onClick:()=>m(!0),children:[s.jsx(px,{className:"size-3.5"}),u("files.new_doc")]})]})})}):s.jsx(fB,{nodes:w,selectedPath:c,onSelect:j,onDelete:k}),h.data?.truncated&&s.jsx("p",{className:"px-2 py-1 text-[10px] text-muted-foreground/60",children:u("files.truncated")})]})]}),s.jsx("div",{className:"flex min-w-0 flex-1 flex-col",children:s.jsx(gB,{file:_.data??null,loading:!!b&&_.isLoading,onSave:E})}),a&&s.jsx(hB,{open:p,onClose:()=>m(!1),pid:e,scope:t,onCreated:y})]})}function xB({pid:e}){return s.jsx("div",{className:"h-full",children:s.jsx(LE,{pid:e,scope:"docs",editable:!0,emptyHint:u("files.docs_empty")})})}function bB({pid:e}){return s.jsx("div",{className:"h-full",children:s.jsx(LE,{pid:e,scope:"project"})})}const Oh="default";function _B(e){const t=e.replace(/\/+$/,"").split("/");return t[t.length-1]||e}function IE(e){return e==="builtin"?{label:u("skills_page.source_builtin"),tone:"info"}:e==="project"?{label:u("skills_page.source_project"),tone:"success"}:{label:u("skills_page.source_global"),tone:"muted"}}function zh(e){const t=[],a=/(\*\*[^*]+\*\*|`[^`]+`)/g;let o=0,l,c=0;for(;l=a.exec(e);){l.index>o&&t.push(e.slice(o,l.index));const d=l[0];d.startsWith("**")?t.push(s.jsx("strong",{children:d.slice(2,-2)},c++)):t.push(s.jsx("code",{className:"rounded bg-muted px-1 py-0.5 text-[0.85em]",children:d.slice(1,-1)},c++)),o=l.index+d.length}return o<e.length&&t.push(e.slice(o)),t}function vB(e){const t=e.split(`
764
- `),a=[];let o=0,l=0;for(;o<t.length;){const c=t[o];if(c.trim().startsWith("```")){const m=[];for(o++;o<t.length&&!t[o].trim().startsWith("```");)m.push(t[o]),o++;o++,a.push(s.jsx("pre",{className:"my-2 overflow-x-auto rounded-md border border-border bg-muted/50 p-3 text-xs",children:s.jsx("code",{children:m.join(`
765
- `)})},l++));continue}const d=c.match(/^(#{1,4})\s+(.*)$/);if(d){const m=d[1].length,g=m===1?"mt-4 mb-1 text-lg font-semibold":m===2?"mt-3 mb-1 text-base font-semibold":"mt-2 mb-0.5 text-sm font-semibold";a.push(s.jsx("div",{className:g,children:zh(d[2])},l++)),o++;continue}if(/^\s*[-*]\s+/.test(c)){const m=[];for(;o<t.length&&/^\s*[-*]\s+/.test(t[o]);)m.push(s.jsx("li",{children:zh(t[o].replace(/^\s*[-*]\s+/,""))},m.length)),o++;a.push(s.jsx("ul",{className:"my-1 list-disc space-y-0.5 pl-5 text-sm",children:m},l++));continue}if(c.trim()===""){o++;continue}const p=[];for(;o<t.length&&t[o].trim()!==""&&!/^(#{1,4})\s/.test(t[o])&&!/^\s*[-*]\s+/.test(t[o])&&!t[o].trim().startsWith("```");)p.push(t[o]),o++;a.push(s.jsx("p",{className:"my-1.5 text-sm leading-relaxed",children:zh(p.join(" "))},l++))}return a}function yB(e){return new Promise((t,a)=>{const o=new FileReader;o.onload=()=>t(String(o.result).replace(/^data:.*;base64,/,"")),o.onerror=()=>a(new Error("read failed")),o.readAsDataURL(e)})}function BE({scope:e,selectable:t=!1}){const a=Ze(),[o,l]=x.useState(e??Oh),c=e??o,d=c===Oh?void 0:c,[p,m]=x.useState(!1),[g,h]=x.useState(null),[b,_]=x.useState("preview"),[j,E]=x.useState(!1),[k,y]=x.useState(!1),w=x.useRef(null),{data:S}=$e(t?"/projects":null,()=>Qn.list()),N=x.useMemo(()=>[{value:Oh,label:u("skills_page.scope_super_agent")},...(S??[]).map(F=>({value:F.path,label:F.name||_B(F.path)}))],[S]),{data:R,mutate:A,isLoading:T}=$e(["/skills",c],()=>Is.list(d)),O=x.useMemo(()=>R?.skills??[],[R]),z=O.filter(F=>F.enabled!==!1).length,U=g&&O.some(F=>F.slug===g)?g:O[0]?.slug??null,{data:P}=$e(U?["/skill-detail",c,U]:null,()=>Is.detail(U,d)),B=async(F,Y)=>{m(!0);try{await Is.setEnabled({slug:F,enabled:Y,scope:c}),await A()}catch(G){a.error(u("skills_page.toggle_failed",{msg:G.message}))}finally{m(!1)}},D=async F=>{if(window.confirm(u("skills_page.delete_confirm",{slug:F}))){m(!0);try{await Is.remove(F,d),a.success(u("skills_page.deleted_ok",{slug:F})),g===F&&h(null),await A()}catch(Y){a.error(u("skills_page.delete_failed",{msg:Y.message}))}finally{m(!1)}}},L=async(F,Y)=>{a.success(Y),h(F),await A()},$=async(F,Y,G)=>{await Is.create({slug:F,description:Y,body:G,project_path:d}),await L(F,u("skills_page.created_ok",{slug:F}))},V=async F=>{const Y=await Is.importRepo({url:F,project_path:d});await L(Y.slug,u("skills_page.imported_ok",{slug:Y.slug}))},H=async F=>{if(F){m(!0);try{const Y=await yB(F),G=await Is.importZip({data:Y,project_path:d});await L(G.slug,u("skills_page.imported_ok",{slug:G.slug}))}catch(Y){a.error(u("skills_page.import_failed",{msg:Y.message}))}finally{m(!1),w.current&&(w.current.value="")}}};return s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex flex-wrap items-center justify-between gap-3",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-3",children:[t?s.jsx("div",{className:"w-64",children:s.jsx(ut,{value:c,onChange:F=>{l(F),h(null)},options:N,placeholder:u("skills_page.scope_ph")})}):null,s.jsx(He,{tone:"muted",children:u("skills_page.count_label",{n:O.length,on:z})})]}),s.jsxs(x_,{children:[s.jsxs(b_,{disabled:p,className:"inline-flex h-9 items-center gap-1.5 rounded-md bg-primary px-3 text-sm font-medium text-primary-foreground hover:opacity-90 disabled:opacity-50",children:[s.jsx(It,{size:15})," ",u("skills_page.add_menu")," ",s.jsx(ns,{size:14})]}),s.jsxs(__,{align:"end",sideOffset:6,className:"w-72",children:[s.jsxs(cf,{onClick:()=>E(!0),children:[s.jsx(e3,{size:15,className:"text-muted-fg"}),s.jsx(Dh,{title:u("skills_page.add_online"),hint:u("skills_page.add_online_hint")})]}),s.jsxs(cf,{onClick:()=>w.current?.click(),children:[s.jsx(QS,{size:15,className:"text-muted-fg"}),s.jsx(Dh,{title:u("skills_page.add_zip"),hint:u("skills_page.add_zip_hint")})]}),s.jsxs(cf,{onClick:()=>y(!0),children:[s.jsx(ru,{size:15,className:"text-muted-fg"}),s.jsx(Dh,{title:u("skills_page.add_repo"),hint:u("skills_page.add_repo_hint")})]})]})]}),s.jsx("input",{ref:w,type:"file",accept:".zip",className:"hidden",onChange:F=>H(F.target.files?.[0])})]}),T||!R?s.jsx(at,{}):s.jsxs("div",{className:"grid min-h-[62vh] gap-4 lg:grid-cols-[20rem_1fr]",children:[s.jsx("div",{className:"overflow-hidden rounded-xl border border-border bg-card",children:s.jsx("ul",{className:"max-h-[62vh] divide-y divide-border overflow-y-auto",children:O.length===0?s.jsx("li",{className:"px-3 py-4 text-sm text-muted-fg",children:u("skills_page.empty")}):O.map(F=>s.jsx(jB,{skill:F,active:F.slug===U,busy:p,onSelect:()=>h(F.slug),onToggle:Y=>B(F.slug,Y)},F.slug))})}),s.jsx("div",{className:"min-w-0 overflow-hidden rounded-xl border border-border bg-card",children:U?P?s.jsxs("div",{className:"flex h-full max-h-[62vh] flex-col",children:[s.jsxs("div",{className:"flex items-start justify-between gap-3 border-b border-border px-5 py-4",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2",children:[s.jsx("code",{className:"text-sm font-semibold",children:P.slug}),(()=>{const F=IE(P.source);return s.jsx(He,{tone:F.tone,children:F.label})})(),P.private&&s.jsxs("span",{className:"inline-flex items-center gap-1 text-xs text-muted-fg",children:[s.jsx(qS,{size:11})," ",u("skills_page.private_badge")]})]}),P.description&&s.jsx("p",{className:"mt-1 text-sm text-muted-fg",children:P.description}),s.jsxs("div",{className:"mt-2 flex flex-wrap gap-x-6 gap-y-1 text-xs text-muted-fg",children:[s.jsxs("span",{children:[u("skills_page.added_by"),": ",s.jsx("span",{className:"text-foreground",children:P.private?u("skills_page.by_apx"):u("skills_page.by_you")})]}),s.jsxs("span",{children:[u("skills_page.activator"),": ",s.jsx("span",{className:"text-foreground",children:u("skills_page.activator_value")})]})]})]}),s.jsxs("div",{className:"flex shrink-0 items-center gap-2",children:[(P.source==="global"||P.source==="project")&&s.jsx(Ye,{content:u("skills_page.delete_btn"),children:s.jsx(se,{variant:"ghost",size:"sm",disabled:p,onClick:()=>D(P.slug),"aria-label":u("skills_page.delete_btn"),children:s.jsx(_n,{size:14})})}),s.jsx(Gt,{checked:P.private?!0:P.enabled,disabled:p||P.private,onChange:F=>B(P.slug,F),label:P.private||P.enabled?u("skills_page.on"):u("skills_page.off")})]})]}),s.jsxs("div",{className:"flex items-center gap-1 border-b border-border px-4 py-2",children:[s.jsx(sw,{active:b==="preview",onClick:()=>_("preview"),icon:Wf,label:u("skills_page.tab_preview")}),s.jsx(sw,{active:b==="source",onClick:()=>_("source"),icon:S5,label:u("skills_page.tab_source")})]}),s.jsx("div",{className:"min-h-0 flex-1 overflow-y-auto px-5 py-4",children:b==="preview"?s.jsx("div",{className:"prose-none",children:vB(P.body||"")}):s.jsx("pre",{className:"overflow-x-auto whitespace-pre-wrap break-words text-xs leading-relaxed text-muted-fg",children:P.body})})]}):s.jsx("div",{className:"p-6",children:s.jsx(at,{})}):s.jsx("div",{className:"grid h-full place-items-center p-8 text-sm text-muted-fg",children:u("skills_page.select_a_skill")})})]}),s.jsx(kB,{open:j,onClose:()=>E(!1),onCreate:$}),s.jsx(wB,{open:k,onClose:()=>y(!1),onImport:V})]})}function Dh({title:e,hint:t}){return s.jsxs("span",{className:"flex min-w-0 flex-col leading-tight",children:[s.jsx("span",{className:"font-medium",children:e}),s.jsx("span",{className:"text-[11px] text-muted-fg",children:t})]})}function sw({active:e,onClick:t,icon:a,label:o}){return s.jsxs("button",{type:"button",onClick:t,className:`inline-flex items-center gap-1.5 rounded-md px-2.5 py-1 text-xs font-medium transition ${e?"bg-accent text-foreground":"text-muted-fg hover:text-foreground"}`,children:[s.jsx(a,{size:13})," ",o]})}function jB({skill:e,active:t,busy:a,onSelect:o,onToggle:l}){const c=IE(e.source),d=e.private?!0:e.enabled!==!1;return s.jsx("li",{children:s.jsxs("div",{className:`flex items-center gap-2 px-3 py-2.5 ${t?"bg-accent/50":"hover:bg-accent/25"}`,children:[s.jsxs("button",{type:"button",onClick:o,className:"min-w-0 flex-1 text-left",children:[s.jsxs("div",{className:"flex items-center gap-1.5",children:[s.jsx("code",{className:"truncate text-[13px] font-medium",children:e.slug}),e.private&&s.jsx(qS,{size:10,className:"shrink-0 text-muted-fg"})]}),s.jsxs("div",{className:"mt-0.5 flex items-center gap-1.5",children:[s.jsx(He,{tone:c.tone,children:c.label}),e.overridden&&s.jsx(He,{tone:"warning",children:u("skills_page.overridden_badge")})]})]}),s.jsx(Gt,{checked:d,disabled:a||e.private,onChange:l})]})})}function kB({open:e,onClose:t,onCreate:a}){const o=Ze(),[l,c]=x.useState(""),[d,p]=x.useState(""),[m,g]=x.useState(""),[h,b]=x.useState(!1),_=/^[a-z0-9][a-z0-9-]*$/.test(l),j=()=>{c(""),p(""),g("")},E=async()=>{if(_){b(!0);try{await a(l,d,m),j(),t()}catch(k){o.error(u("skills_page.create_failed",{msg:k.message}))}finally{b(!1)}}};return s.jsx(sn,{open:e,onClose:t,title:u("skills_page.create_dialog_title"),description:u("skills_page.add_desc"),size:"lg",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:h,children:u("skills_page.cancel")}),s.jsxs(se,{variant:"primary",onClick:E,disabled:h||!_,loading:h,children:[s.jsx(It,{size:14})," ",u("skills_page.add_btn")]})]}),children:s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"grid gap-4 sm:grid-cols-2",children:[s.jsx(ae,{label:u("skills_page.add_slug_label"),children:s.jsx(Ne,{value:l,placeholder:u("skills_page.add_slug_ph"),disabled:h,onChange:k=>c(k.target.value.toLowerCase())})}),s.jsx(ae,{label:u("skills_page.add_desc_label"),children:s.jsx(Ne,{value:d,placeholder:u("skills_page.add_desc_ph"),disabled:h,onChange:k=>p(k.target.value)})})]}),s.jsx(ae,{label:u("skills_page.add_body_label"),children:s.jsx(un,{value:m,placeholder:u("skills_page.add_body_ph"),disabled:h,rows:10,onChange:k=>g(k.target.value)})})]})})}function wB({open:e,onClose:t,onImport:a}){const o=Ze(),[l,c]=x.useState(""),[d,p]=x.useState(!1),m=/^(https?:\/\/|git@|ssh:\/\/|git:\/\/)\S+$/.test(l.trim()),g=async()=>{if(m){p(!0);try{await a(l.trim()),c(""),t()}catch(h){o.error(u("skills_page.import_failed",{msg:h.message}))}finally{p(!1)}}};return s.jsx(sn,{open:e,onClose:t,title:u("skills_page.repo_dialog_title"),size:"md",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:d,children:u("skills_page.cancel")}),s.jsxs(se,{variant:"primary",onClick:g,disabled:d||!m,loading:d,children:[s.jsx(ru,{size:14})," ",u("skills_page.import_btn")]})]}),children:s.jsx(ae,{label:u("skills_page.repo_url_label"),hint:u("skills_page.repo_url_hint"),children:s.jsx(Ne,{value:l,placeholder:u("skills_page.repo_url_ph"),disabled:d,onChange:h=>c(h.target.value),onKeyDown:h=>{h.key==="Enter"&&g()}})})})}function SB({pid:e}){const{project:t}=Cp(e),a=e==="0"?"default":t?.path;return a?s.jsx(BE,{scope:a}):s.jsx(at,{})}function CB(){const e=Pn(),t=ts(),{pid:a=""}=jS(),{project:o}=Cp(a),{collapsed:l,toggle:c}=j_(On.sidebarCollapsed+".project"),d=String(a)==="0",p=x.useMemo(()=>{if(d)return[{title:u("base.nav_general"),items:[{key:"",label:"Dashboard",icon:F5},{key:"workspaces",label:u("base.workspaces_title"),icon:g5},{key:"models",label:u("settings.tabs.engines"),icon:mb},{key:"agent-defaults",label:u("base.defaults_title"),icon:on}]},{title:u("base.nav_activity"),items:[{key:"chat",label:u("project.nav.chat"),icon:bf},{key:"sessions",label:u("base.sessions_title"),icon:$5},{key:"tasks",label:u("project.nav.tasks"),icon:Kl},{key:"logs",label:u("project.nav.logs"),icon:_f}]},{title:u("base.nav_system"),items:[{key:"agents",label:u("project.nav.agents"),icon:on},{key:"memories",label:u("project.nav.memories"),icon:gf},{key:"skills",label:u("skills_page.title"),icon:Vs},{key:"routines",label:u("project.nav.routines"),icon:Eo},{key:"mcps",label:u("project.nav.mcps"),icon:Hc},{key:"integrations",label:"Integrations",icon:gj},{key:"vars",label:u("project.nav.vars"),icon:gx},{key:"artifacts",label:u("project.nav.artifacts"),icon:hf},{key:"config",label:u("project.nav.config"),icon:Vc}]}];const h=o?.kind==="company";return[{title:u("project.sections.workspace"),items:[{key:"",label:u("project.nav.overview"),icon:gb},{key:"telegram",label:u("project.nav.telegram"),icon:Js},{key:"chat",label:u("project.nav.chat"),icon:bf},{key:"agents",label:u("project.nav.agents"),icon:on},...h?[{key:"structure",label:u("project.nav.structure"),icon:x5}]:[],{key:"memories",label:u("project.nav.memories"),icon:gf},{key:"skills",label:u("skills_page.title"),icon:Vs}]},{title:u("project.sections.content"),items:[{key:"docs",label:u("project.nav.docs"),icon:Wf},{key:"files",label:u("project.nav.files"),icon:hb}]},{title:u("project.sections.automation"),items:[{key:"routines",label:u("project.nav.routines"),icon:Eo},{key:"tasks",label:u("project.nav.tasks"),icon:Kl},{key:"mcps",label:u("project.nav.mcps"),icon:Hc},{key:"integrations",label:"Integrations",icon:gj},{key:"vars",label:u("project.nav.vars"),icon:gx},{key:"artifacts",label:u("project.nav.artifacts"),icon:hf},{key:"logs",label:u("project.nav.logs"),icon:_f}]},{title:u("project.sections.config"),items:[{key:"config",label:u("project.nav.config"),icon:Vc}]}]},[d,o?.kind]),m=t.pathname.replace(`/p/${a}`,"").replace(/^\//,"").split("/")[0];if(!o)return s.jsx(IN,{testId:"screen-project-not-found",mood:"confused",message:u("project.not_found",{pid:a}),action:s.jsx(sr,{variant:"outline",onClick:()=>e("/"),children:u("not_found.home")})});const g=h=>{const b=h?`/p/${a}/${h}`:`/p/${a}`;e(b)};return s.jsx(PN,{sections:p,active:m,onChange:g,collapsed:l,onToggleCollapse:c,contentClassName:"w-full space-y-6 py-6 pt-3 pr-6 pl-1",testId:`project-tab-${m||"overview"}`,children:s.jsxs(CS,{children:[s.jsx(Dt,{index:!0,element:s.jsx(Nk,{pid:a})}),s.jsx(Dt,{path:"workspaces",element:s.jsx(c6,{})}),s.jsx(Dt,{path:"models",element:s.jsx(JN,{})}),s.jsx(Dt,{path:"agent-defaults",element:s.jsx(mI,{})}),s.jsx(Dt,{path:"sessions",element:s.jsx(vI,{})}),s.jsx(Dt,{path:"logs",element:s.jsx(J6,{pid:a})}),s.jsx(Dt,{path:"config",element:s.jsx(BI,{pid:a})}),s.jsx(Dt,{path:"telegram",element:s.jsx(aB,{pid:a})}),s.jsx(Dt,{path:"agents",element:s.jsx($8,{pid:a})}),s.jsx(Dt,{path:"agents/:slug",element:s.jsx(M8,{pid:a})}),s.jsx(Dt,{path:"structure",element:s.jsx(cB,{pid:a})}),s.jsx(Dt,{path:"docs",element:s.jsx(xB,{pid:a})}),s.jsx(Dt,{path:"files",element:s.jsx(bB,{pid:a})}),s.jsx(Dt,{path:"memories",element:s.jsx(oB,{pid:a})}),s.jsx(Dt,{path:"skills",element:s.jsx(SB,{pid:a})}),s.jsx(Dt,{path:"routines",element:s.jsx(t7,{pid:a})}),s.jsx(Dt,{path:"tasks",element:d?s.jsx(yI,{}):s.jsx(s7,{pid:a})}),s.jsx(Dt,{path:"mcps",element:s.jsx(g7,{pid:a})}),s.jsx(Dt,{path:"integrations",element:s.jsx(T7,{pid:a})}),s.jsx(Dt,{path:"artifacts",element:s.jsx(iB,{pid:a})}),s.jsx(Dt,{path:"vars",element:s.jsx(A7,{pid:a})}),s.jsx(Dt,{path:"threads",element:s.jsx(NM,{to:`/p/${a}/chat`,replace:!0})}),s.jsx(Dt,{path:"chat",element:s.jsx(tB,{pid:a})}),s.jsx(Dt,{path:"*",element:s.jsx(Nk,{pid:a})})]})})}function NB({value:e,onChange:t,options:a,placeholder:o,className:l}){const c=S=>a.find(N=>N.value===S)?.label??S,[d,p]=x.useState(!1),[m,g]=x.useState(c(e)),h=x.useRef(null),b=x.useRef(null),[_,j]=x.useState(null);x.useEffect(()=>{g(c(e))},[e,a]),x.useLayoutEffect(()=>{if(!d)return;const S=()=>{const N=h.current;if(!N)return;const R=N.getBoundingClientRect();j({top:R.bottom+4,left:R.left,width:R.width})};return S(),window.addEventListener("scroll",S,!0),window.addEventListener("resize",S),()=>{window.removeEventListener("scroll",S,!0),window.removeEventListener("resize",S)}},[d]),x.useEffect(()=>{if(!d)return;const S=N=>{const R=N.target;h.current?.contains(R)||b.current?.contains(R)||(g(c(e)),p(!1))};return document.addEventListener("mousedown",S),()=>document.removeEventListener("mousedown",S)},[d,e,a]);const E=m.trim().toLowerCase(),k=m===c(e),y=E&&!k?a.filter(S=>S.label.toLowerCase().includes(E)||S.value.toLowerCase().includes(E)):a,w=S=>{t(S.value),g(S.label),p(!1)};return s.jsxs("div",{ref:h,className:he("relative",l),children:[s.jsxs("div",{className:"flex items-center gap-1 rounded-lg border border-input bg-transparent px-2.5 transition-colors focus-within:border-ring focus-within:ring-1 focus-within:ring-ring dark:bg-input/30 dark:hover:bg-input/50",children:[s.jsx("input",{value:m,placeholder:o,onChange:S=>{g(S.target.value),p(!0)},onFocus:()=>p(!0),className:"w-full bg-transparent py-1.5 text-sm outline-none placeholder:text-muted-fg/60"}),s.jsx("button",{type:"button",tabIndex:-1,onClick:()=>p(S=>!S),className:"shrink-0 text-muted-fg hover:text-foreground",children:s.jsx(ns,{className:"size-4"})})]}),d&&y.length>0&&_&&Hs.createPortal(s.jsx("ul",{ref:b,style:{position:"fixed",top:_.top,left:_.left,width:_.width},className:"z-[1000] max-h-60 overflow-y-auto rounded-lg bg-popover p-1 shadow-md ring-1 ring-foreground/10",children:y.map(S=>s.jsx("li",{children:s.jsx("button",{type:"button",onMouseDown:N=>{N.preventDefault(),w(S)},className:he("flex w-full items-center rounded-md px-2 py-1 text-left text-sm hover:bg-accent hover:text-accent-fg",S.value===e&&"bg-accent/50"),children:s.jsx("span",{className:"truncate font-mono text-xs",children:S.label})})},S.value))}),document.body)]})}const EB=["es","en","pt","fr","it","de","ca","gl","eu","nl","sv","no","da","fi","is","pl","cs","sk","sl","hr","sr","uk","ru","bg","ro","hu","el","tr","ar","he","fa","hi","bn","ta","ur","id","ms","vi","th","ko","ja","zh"];function RB(e){return e&&e.charAt(0).toLocaleUpperCase()+e.slice(1)}function TB(){const e=y_();let t=null;try{t=new Intl.DisplayNames([e],{type:"language"})}catch{t=null}return EB.map(a=>{const o=t?.of(a);return{value:a,label:o?RB(o):a}}).sort((a,o)=>a.label.localeCompare(o.label,e))}const AB=["UTC","America/Argentina/Buenos_Aires","America/Sao_Paulo","America/New_York","America/Los_Angeles","America/Mexico_City","Europe/London","Europe/Madrid","Europe/Berlin","Asia/Tokyo","Asia/Shanghai","Australia/Sydney"];function MB(){try{const e=Intl.supportedValuesOf;if(typeof e=="function")return e("timeZone")}catch{}return AB}function aw(){try{return Intl.DateTimeFormat().resolvedOptions().timeZone||"UTC"}catch{return"UTC"}}function OB(e,t){try{const a=new Intl.DateTimeFormat("en-US",{timeZone:e,timeZoneName:"longOffset"}).formatToParts(t).find(c=>c.type==="timeZoneName")?.value??"GMT",o=/GMT([+-])(\d{1,2})(?::(\d{2}))?/.exec(a);return o?(o[1]==="-"?-1:1)*(parseInt(o[2],10)*60+(o[3]?parseInt(o[3],10):0)):0}catch{return 0}}function zB(e){const t=e<0?"-":"+",a=Math.abs(e),o=String(Math.floor(a/60)).padStart(2,"0"),l=String(a%60).padStart(2,"0");return`GMT${t}${o}:${l}`}let Zd=null;function DB(){if(Zd)return Zd;const e=new Date;return Zd=MB().map(t=>({value:t,label:t,off:OB(t,e)})).sort((t,a)=>t.off-a.off||t.value.localeCompare(a.value)).map(({value:t,off:a})=>({value:t,label:`(${zB(a)}) ${t}`})),Zd}function PB(){const e=Ze(),{identity:t,isLoading:a,save:o}=C_(),[l,c]=x.useState({}),[d,p]=x.useState(!1),m=x.useMemo(()=>DB(),[]);if(x.useEffect(()=>{c({...t,timezone:t?.timezone||aw()})},[t]),a)return s.jsx(at,{});const g=async()=>{p(!0);try{await o({owner_name:l.owner_name,owner_context:l.owner_context,language:l.language,timezone:l.timezone}),e.success(u("settings.identity.saved"))}catch(h){e.error(h.message)}finally{p(!1)}};return s.jsxs(Fe,{title:u("settings.identity.title"),description:u("settings.identity.subtitle"),children:[t?null:s.jsx(pt,{children:u("common.none_yet")}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("settings.identity.owner_name"),children:s.jsx(Ne,{value:l.owner_name||"",onChange:h=>c({...l,owner_name:h.target.value})})}),s.jsx(ae,{label:u("settings.identity.language"),children:s.jsx(ut,{value:l.language||"es",onChange:h=>c({...l,language:h}),options:TB()})}),s.jsx(ae,{label:u("settings.identity.timezone"),hint:u("settings.identity.timezone_hint"),children:s.jsx(NB,{value:l.timezone||aw(),onChange:h=>c({...l,timezone:h}),options:m})})]}),s.jsx("div",{className:"mt-3",children:s.jsx(ae,{label:u("settings.identity.owner_context"),hint:u("settings.identity.owner_context_hint"),children:s.jsx(un,{rows:3,value:l.owner_context||"",onChange:h=>c({...l,owner_context:h.target.value})})})}),s.jsx("div",{className:"mt-4",children:s.jsx(se,{variant:"primary",loading:d,onClick:g,children:u("common.save")})})]})}function LB(){const e=Ze(),t=Pn(),{superAgent:a,isLoading:o,mutate:l}=WN(),{patch:c}=Zr(),{identity:d,save:p}=C_(),[m,g]=x.useState(!0),[h,b]=x.useState(""),[_,j]=x.useState(""),[E,k]=x.useState("permiso"),[y,w]=x.useState(!1);if(x.useEffect(()=>{a&&(g(!!a.enabled),b(a.system||""),k(a.permission_mode||"permiso"))},[a]),x.useEffect(()=>{j(d.personality||"")},[d.personality]),o||!a)return s.jsx(at,{});const S=async()=>{w(!0);try{await c({"super_agent.enabled":m,"super_agent.system":h,"super_agent.permission_mode":E},["super_agent.name"]),await p({personality:_}),e.success(u("settings.super_agent.saved")),l()}catch(N){e.error(N.message)}finally{w(!1)}};return s.jsx(Fe,{title:u("settings.super_agent.title"),description:u("settings.super_agent.behavior_subtitle"),children:s.jsxs("div",{className:"space-y-4",children:[s.jsx("div",{className:"flex items-center gap-3",children:s.jsx(Gt,{checked:m,onChange:g,label:u("settings.super_agent.enabled_label")})}),s.jsxs("div",{className:"flex items-center justify-between rounded-lg border border-border bg-muted/20 p-3",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("div",{className:"text-sm font-medium",children:u("settings.super_agent.model_active")}),s.jsx("div",{className:"truncate font-mono text-xs text-muted-fg",children:a.model||"—"})]}),s.jsxs(se,{size:"sm",variant:"secondary",onClick:()=>t("/p/0/models"),children:[s.jsx(mb,{size:13})," ",u("settings.super_agent.model_configure")]})]}),s.jsx(ae,{label:u("settings.super_agent.permission_mode"),children:s.jsx(ut,{value:E,onChange:k,options:jb.map(N=>({value:N,label:N}))})}),s.jsx(ae,{label:u("settings.super_agent.personality"),children:s.jsx(un,{rows:2,value:_,onChange:N=>j(N.target.value)})}),s.jsx(ae,{label:u("settings.super_agent.system"),hint:u("settings.super_agent.system_hint"),children:s.jsx(un,{rows:6,className:"font-mono text-xs",value:h,onChange:N=>b(N.target.value),placeholder:u("settings.super_agent.system_ph")})}),s.jsx(se,{variant:"primary",loading:y,onClick:S,children:u("common.save")})]})})}const Ph={providers:()=>ne.get("/embeddings/providers"),test:(e={})=>ne.post("/embeddings/test",e),reindex:()=>ne.post("/embeddings/reindex",{})},IB=()=>[{value:"auto",label:u("memory_panel.provider_auto")},{value:"ollama",label:u("memory_panel.provider_ollama")},{value:"gemini",label:u("memory_panel.provider_gemini")},{value:"openai",label:u("memory_panel.provider_openai")},{value:"tf",label:u("memory_panel.provider_tf")}],BB=()=>[{value:"chain",label:u("memory_panel.mode_chain")},{value:"single",label:u("memory_panel.mode_single")}],rw=e=>e.startsWith("***");function UB(){const e=Ze(),{config:t,isLoading:a,patch:o}=Zr(),{data:l,mutate:c}=$e("/embeddings/providers",()=>Ph.providers()),[d,p]=x.useState(!1),[m,g]=x.useState(null);if(a)return s.jsx(at,{});const h=t.memory||{},b=h.embeddings||{},_=l?.configured_provider||b.provider||"auto",j=l?.mode||b.mode||"chain",E=l?.engines||[],k=async S=>{p(!0);try{await o(S),await c()}catch(N){e.error(u("memory_panel.save_failed",{msg:N.message}))}finally{p(!1)}},y=async()=>{p(!0),g(null);try{const S=await Ph.test({});g(`${S.embedder} · dim ${S.dim} · ${S.ms}ms`),e.success(u("memory_panel.test_ok",{embedder:S.embedder}))}catch(S){e.error(u("memory_panel.test_failed",{msg:S.message}))}finally{p(!1)}},w=async()=>{p(!0);try{const S=await Ph.reindex();e.success(u("memory_panel.reindexed",{indexed:S.indexed,cleared:S.cleared}))}catch(S){e.error(u("memory_panel.reindex_failed",{msg:S.message}))}finally{p(!1)}};return s.jsxs("div",{className:"grid gap-6 xl:grid-cols-2 xl:items-start",children:[s.jsx(Fe,{title:u("memory_panel.embeddings_title"),description:u("memory_panel.embeddings_desc"),children:s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("memory_panel.provider_label"),hint:u("memory_panel.provider_hint"),children:s.jsx(ut,{value:_,onChange:S=>k({"memory.embeddings.provider":S}),options:IB(),disabled:d,className:"max-w-xl"})}),s.jsx(ae,{label:u("memory_panel.mode_label"),hint:u("memory_panel.mode_hint"),children:s.jsx(ut,{value:j,onChange:S=>k({"memory.embeddings.mode":S}),options:BB(),disabled:d,className:"max-w-md"})}),s.jsx("div",{className:"flex flex-wrap items-center gap-2 pt-1",children:E.map(S=>s.jsxs(He,{tone:S.available?"success":"muted",children:[S.id,": ",S.available?u("memory_panel.available"):u("memory_panel.unavailable")]},S.id))}),s.jsxs("div",{className:"flex flex-wrap items-center gap-3 pt-1",children:[s.jsxs(se,{variant:"secondary",onClick:y,loading:d,children:[s.jsx(Vs,{size:14})," ",u("memory_panel.test_btn")]}),s.jsxs(se,{variant:"secondary",onClick:w,loading:d,children:[s.jsx(PS,{size:14})," ",u("memory_panel.reindex_btn")]}),m&&s.jsx("span",{className:"text-sm text-muted-foreground",children:m})]})]})}),s.jsxs(Fe,{title:u("memory_panel.ollama_title"),description:u("memory_panel.ollama_desc"),children:[s.jsx(ae,{label:u("memory_panel.model_label"),children:s.jsx(Ne,{defaultValue:b.ollama?.model||"nomic-embed-text",placeholder:"nomic-embed-text",disabled:d,onBlur:S=>{const N=S.target.value.trim();N&&N!==b.ollama?.model&&k({"memory.embeddings.ollama.model":N})},className:"max-w-md"})}),s.jsx(ae,{label:u("memory_panel.base_url_label"),hint:u("memory_panel.ollama_base_url_hint"),children:s.jsx(Ne,{defaultValue:b.ollama?.base_url||"",placeholder:"http://localhost:11434",disabled:d,onBlur:S=>k({"memory.embeddings.ollama.base_url":S.target.value.trim()}),className:"max-w-md"})})]}),s.jsxs(Fe,{title:u("memory_panel.openai_title"),description:u("memory_panel.openai_desc"),children:[s.jsx(ae,{label:u("memory_panel.model_label"),children:s.jsx(Ne,{defaultValue:b.openai?.model||"text-embedding-3-small",placeholder:"text-embedding-3-small",disabled:d,onBlur:S=>{const N=S.target.value.trim();N&&N!==b.openai?.model&&k({"memory.embeddings.openai.model":N})},className:"max-w-md"})}),s.jsx(ae,{label:u("memory_panel.api_key_label"),hint:u("memory_panel.openai_key_hint"),children:s.jsx(Ne,{type:"password",defaultValue:b.openai?.api_key||"",placeholder:"sk-…",disabled:d,onBlur:S=>{const N=S.target.value;N&&!rw(N)&&k({"memory.embeddings.openai.api_key":N})},className:"max-w-md"})})]}),s.jsxs(Fe,{title:u("memory_panel.gemini_title"),description:u("memory_panel.gemini_desc"),children:[s.jsx(ae,{label:u("memory_panel.model_label"),children:s.jsx(Ne,{defaultValue:b.gemini?.model||"text-embedding-004",placeholder:"text-embedding-004",disabled:d,onBlur:S=>{const N=S.target.value.trim();N&&N!==b.gemini?.model&&k({"memory.embeddings.gemini.model":N})},className:"max-w-md"})}),s.jsx(ae,{label:u("memory_panel.api_key_label"),hint:u("memory_panel.gemini_key_hint"),children:s.jsx(Ne,{type:"password",defaultValue:b.gemini?.api_key||"",placeholder:"AIza…",disabled:d,onBlur:S=>{const N=S.target.value;N&&!rw(N)&&k({"memory.embeddings.gemini.api_key":N})},className:"max-w-md"})})]}),s.jsxs(Fe,{title:u("memory_panel.compaction_title"),description:u("memory_panel.compaction_desc"),children:[s.jsxs("div",{className:"grid gap-3 sm:grid-cols-2",children:[s.jsx(ae,{label:u("memory_panel.threshold_label"),hint:u("memory_panel.threshold_hint"),children:s.jsx(Ne,{type:"number",min:1,defaultValue:h.compact_threshold??60,placeholder:"60",disabled:d,onBlur:S=>{const N=parseInt(S.target.value,10);Number.isFinite(N)&&N>0&&N!==h.compact_threshold&&k({"memory.compact_threshold":N})},className:"max-w-[10rem]"})}),s.jsx(ae,{label:u("memory_panel.keep_recent_label"),hint:u("memory_panel.keep_recent_hint"),children:s.jsx(Ne,{type:"number",min:1,defaultValue:h.keep_recent??40,placeholder:"40",disabled:d,onBlur:S=>{const N=parseInt(S.target.value,10);Number.isFinite(N)&&N>0&&N!==h.keep_recent&&k({"memory.keep_recent":N})},className:"max-w-[10rem]"})})]}),s.jsx(ae,{label:u("memory_panel.compact_model_label"),hint:u("memory_panel.compact_model_hint"),children:s.jsx(Ne,{defaultValue:h.compact_model||"ollama:gemma4:31b-cloud",placeholder:"ollama:gemma4:31b-cloud",disabled:d,onBlur:S=>{const N=S.target.value.trim();N&&N!==h.compact_model&&k({"memory.compact_model":N})},className:"max-w-md"})}),s.jsx(ae,{label:u("memory_panel.compact_fallback_label"),hint:u("memory_panel.compact_fallback_hint"),children:s.jsx(Ne,{defaultValue:h.compact_fallback_model||"",placeholder:u("memory_panel.compact_fallback_ph"),disabled:d,onBlur:S=>{const N=S.target.value.trim();N!==(h.compact_fallback_model||"")&&k({"memory.compact_fallback_model":N})},className:"max-w-md"})})]})]})}function $B(){return[{key:"load_threshold",label:u("settings_ui.knob_load_threshold"),hint:u("settings_ui.knob_load_threshold_hint"),step:.01,min:0,max:1},{key:"hint_threshold",label:u("settings_ui.knob_hint_threshold"),hint:u("settings_ui.knob_hint_threshold_hint"),step:.01,min:0,max:1},{key:"margin",label:u("settings_ui.knob_margin"),hint:u("settings_ui.knob_margin_hint"),step:.01,min:0,max:1},{key:"max_loaded",label:u("settings_ui.knob_max_loaded"),hint:u("settings_ui.knob_max_loaded_hint"),step:1,min:0,max:5},{key:"max_hints",label:u("settings_ui.knob_max_hints"),hint:u("settings_ui.knob_max_hints_hint"),step:1,min:0,max:8},{key:"prompt_floor",label:u("settings_ui.knob_prompt_floor"),hint:u("settings_ui.knob_prompt_floor_hint"),step:1,min:0,max:40},{key:"body_char_cap",label:u("settings_ui.knob_body_char_cap"),hint:u("settings_ui.knob_body_char_cap_hint"),step:500,min:500,max:2e4}]}function HB(){const e=Ze(),{data:t,mutate:a,isLoading:o}=$e("/skills/inspector",()=>Is.inspector()),[l,c]=x.useState(!1),[d,p]=x.useState(""),[m,g]=x.useState(null);if(o||!t)return s.jsx(at,{});const h=t.config,b=t.index,_=async k=>{c(!0);try{await Is.updateInspector(k),await a()}catch(y){e.error(u("settings_ui.could_not_save",{msg:y.message}))}finally{c(!1)}},j=async(k=!1)=>{c(!0);try{const y=await Is.index({force:k});e.success(u("settings_ui.indexed_with",{embedder:y.embedder,dim:y.dim,added:y.changed.added,refreshed:y.changed.refreshed,removed:y.changed.removed})),await a()}catch(y){e.error(u("settings_ui.index_failed",{msg:y.message}))}finally{c(!1)}},E=async()=>{if(d.trim()){c(!0),g(null);try{const k=await Is.inspect(d.trim());g(k.trace)}catch(k){e.error(u("settings_ui.dry_run_failed",{msg:k.message}))}finally{c(!1)}}};return s.jsxs("div",{className:"space-y-6",children:[s.jsxs("div",{className:"grid gap-6 lg:grid-cols-2 lg:items-start",children:[s.jsx(Fe,{title:u("settings_ui.inspector_title"),description:u("settings_ui.inspector_desc"),children:s.jsxs("div",{className:"space-y-4",children:[s.jsx(ae,{label:u("settings_ui.enable_inspector"),hint:u("settings_ui.enable_inspector_hint"),children:s.jsx(Gt,{checked:h.enabled,disabled:l,onChange:k=>_({enabled:k}),label:h.enabled?u("settings_ui.on"):u("settings_ui.off")})}),s.jsxs("div",{className:"flex flex-wrap items-center gap-2 pt-1",children:[s.jsx(He,{tone:b.count>0?"success":"warning",children:u("settings_ui.index_count",{n:b.count})}),s.jsx(He,{tone:"muted",children:b.embedder||u("settings_ui.not_indexed")}),b.dim?s.jsx(He,{tone:"muted",children:u("settings_ui.dim",{dim:b.dim})}):null,b.updated_at?s.jsx("span",{className:"text-xs text-muted-foreground",children:u("settings_ui.updated_at",{date:new Date(b.updated_at).toLocaleString()})}):null]}),s.jsxs("div",{className:"flex flex-wrap items-center gap-3 pt-1",children:[s.jsxs(se,{variant:"secondary",onClick:()=>j(!1),loading:l,children:[s.jsx(Qs,{size:14})," ",u("settings_ui.reindex")]}),s.jsxs(se,{variant:"secondary",onClick:()=>j(!0),loading:l,children:[s.jsx(Qs,{size:14})," ",u("settings_ui.reindex_forced")]}),s.jsx("span",{className:"text-xs text-muted-foreground",children:u("settings_ui.embedder_source")})]})]})}),s.jsx(Fe,{title:u("settings_ui.test_title"),description:u("settings_ui.test_desc"),children:s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2",children:[s.jsx(Ne,{value:d,placeholder:u("settings_ui.test_placeholder"),disabled:l,onChange:k=>p(k.target.value),onKeyDown:k=>{k.key==="Enter"&&E()},className:"max-w-xl flex-1"}),s.jsxs(se,{variant:"primary",onClick:E,loading:l,children:[s.jsx(u3,{size:14})," ",u("settings_ui.test_btn")]})]}),m&&s.jsxs("div",{className:"rounded-md border border-border/60 bg-muted/30 p-3 text-sm",children:[s.jsxs("div",{className:"mb-2 flex flex-wrap items-center gap-2",children:[s.jsx(Vs,{size:14,className:"text-muted-foreground"}),s.jsx("span",{className:"text-muted-foreground",children:m.embedder||"—"}),m.jit?s.jsx(He,{tone:"warning",children:u("settings_ui.jit_empty_index")}):null,m.reason&&!m.loaded?.length&&!m.hinted?.length?s.jsx(He,{tone:"muted",children:m.reason}):null]}),m.loaded?.length?s.jsxs("div",{className:"mb-1",children:[s.jsxs("span",{className:"text-muted-foreground",children:[u("settings_ui.loaded_label")," "]}),m.loaded.map(k=>s.jsx(He,{tone:"success",className:"mr-1",children:k},k))]}):null,m.hinted?.length?s.jsxs("div",{className:"mb-1",children:[s.jsxs("span",{className:"text-muted-foreground",children:[u("settings_ui.suggested_label")," "]}),m.hinted.map(k=>s.jsx(He,{tone:"info",className:"mr-1",children:k},k))]}):null,m.scored?.length?s.jsx("div",{className:"mt-2 space-y-0.5 font-mono text-xs text-muted-foreground",children:m.scored.map(k=>s.jsxs("div",{children:[k.sim.toFixed(3)," ",k.slug]},k.slug))}):null]})]})})]}),s.jsx(Fe,{title:u("settings_ui.thresholds_title"),description:u("settings_ui.thresholds_desc"),children:s.jsx("div",{className:"grid grid-cols-2 gap-4 sm:grid-cols-3 xl:grid-cols-4",children:$B().map(k=>s.jsx(ae,{label:k.label,hint:k.hint,children:s.jsx(Ne,{type:"number",step:k.step,min:k.min,max:k.max,defaultValue:String(h[k.key]),disabled:l,onBlur:y=>{const w=Number(y.target.value);Number.isFinite(w)&&w!==h[k.key]&&_({[k.key]:w})},className:"max-w-[12rem]"})},k.key))})})]})}function VB(){const[e,t]=$o(),a=e.get("tab")==="rag"?"rag":"manager",o=l=>{const c=new URLSearchParams(e);c.set("tab",l),t(c,{replace:!0})};return s.jsxs("div",{className:"space-y-5",children:[s.jsxs("div",{className:"flex items-center gap-1 border-b border-border",children:[s.jsx(ow,{active:a==="manager",onClick:()=>o("manager"),icon:Vs,label:u("skills_page.manager_tab")}),s.jsx(ow,{active:a==="rag",onClick:()=>o("rag"),icon:a3,label:u("skills_page.rag_tab")})]}),a==="manager"?s.jsx(BE,{selectable:!0}):s.jsx(HB,{})]})}function ow({active:e,onClick:t,icon:a,label:o}){return s.jsxs("button",{type:"button",onClick:t,className:`-mb-px inline-flex items-center gap-1.5 border-b-2 px-3 py-2 text-sm font-medium transition ${e?"border-foreground text-foreground":"border-transparent text-muted-fg hover:text-foreground"}`,children:[s.jsx(a,{size:15})," ",o]})}function qB(){const e=Ze(),{config:t,isLoading:a,patch:o,mutate:l}=Zr(),c=t.telegram?.channels||[],d=Math.max(0,c.findIndex(A=>A.name==="default")),p=c[d],[m,g]=x.useState(!0),[h,b]=x.useState(1500),[_,j]=x.useState(!0),[E,k]=x.useState(""),[y,w]=x.useState(""),[S,N]=x.useState(!1);if(x.useEffect(()=>{g(!!t.telegram?.enabled),b(Number(t.telegram?.poll_interval_ms||1500)),j(!!t.telegram?.respond_with_engine),k(""),w(p?.chat_id||"")},[t,p?.chat_id]),a)return s.jsx(at,{});const R=async()=>{N(!0);try{const A=c.slice(),T={name:"default",chat_id:y,respond_with_engine:_,...E?{bot_token:E}:{}};c.length===0?A.push(T):A[d]={...p,...T},await o({"telegram.enabled":m,"telegram.poll_interval_ms":h,"telegram.respond_with_engine":_,"telegram.channels":A}),e.success(u("settings.telegram_global.saved")),l(),k("")}catch(A){e.error(A.message)}finally{N(!1)}};return s.jsx(Fe,{title:u("settings.telegram_global.title"),description:u("settings.telegram_global.subtitle"),children:s.jsxs("div",{className:"space-y-3",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Gt,{checked:m,onChange:g,label:u("settings.telegram_global.enabled")}),s.jsx(Gt,{checked:_,onChange:j,label:u("settings.telegram_global.respond_with_engine")})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("settings.telegram_global.bot_token"),hint:p?.bot_token?`…${Do(p.bot_token)??""} ${u("telegram_ui.secret_set_replace")}`:u("telegram_ui.bot_token_hint_short"),children:s.jsx(Ne,{type:"password",value:E,onChange:A=>k(A.target.value),placeholder:p?.bot_token?`…${Do(p.bot_token)??""} ${u("telegram_ui.secret_already_set")}`:""})}),s.jsx(ae,{label:u("settings.telegram_global.chat_id"),children:s.jsx(Ne,{value:y,onChange:A=>w(A.target.value),placeholder:"889721252"})}),s.jsx(ae,{label:u("settings.telegram_global.poll_interval"),children:s.jsx(Ne,{type:"number",value:String(h),onChange:A=>b(Number(A.target.value)||1500)})})]}),s.jsx(se,{variant:"primary",loading:S,onClick:R,children:u("common.save")})]})})}function FB(){const e=Ze(),{channels:t,isLoading:a,mutate:o}=M_(),{contacts:l}=O_(),[c,d]=x.useState(null),[p,m]=x.useState(null),g=new Map;for(const b of l)g.set(String(b.user_id),b.name||`@${b.username||b.user_id}`);const h=async b=>{if(confirm(u("telegram_channels.delete_confirm",{name:b})))try{await zn.channels.remove(b),e.success(u("telegram_channels.removed")),o()}catch(_){e.error(_.message)}};return s.jsxs(Fe,{title:u("telegram_channels.title"),description:u("telegram_channels.desc"),action:s.jsxs(se,{size:"sm",onClick:()=>d({name:""}),children:[s.jsx(It,{size:14})," ",u("telegram_channels.new_btn")]}),children:[a&&s.jsx(at,{}),!a&&t.length===0&&s.jsx(pt,{children:u("telegram_channels.empty")}),s.jsx("ul",{className:"space-y-2 text-sm",children:t.map(b=>{const _=b.owner_user_id!=null?g.get(String(b.owner_user_id))||u("telegram_ui.user_id_fallback",{id:b.owner_user_id}):u("telegram_channels.no_owner");return s.jsxs("li",{className:"rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsxs("div",{className:"flex items-center justify-between gap-2",children:[s.jsx("span",{className:"font-medium",children:b.name}),s.jsxs("div",{className:"flex items-center gap-2",children:[b.project&&s.jsxs(He,{tone:"success",children:["project = ",b.project]}),s.jsxs(se,{size:"sm",variant:"ghost",onClick:()=>m(b),children:[s.jsx(Js,{size:13})," ",u("admin.telegram_send_test")]}),s.jsx(se,{size:"sm",variant:"secondary",onClick:()=>d(b),children:u("common.edit")}),s.jsx(se,{size:"sm",variant:"destructive",onClick:()=>h(b.name),children:u("common.delete")})]})]}),s.jsxs("div",{className:"mt-1 grid grid-cols-2 gap-2 text-xs text-muted-fg",children:[s.jsxs("span",{children:["chat_id: ",b.chat_id||"—"]}),s.jsxs("span",{children:["bot_token: ",b.bot_token?`…${Do(b.bot_token)??""}`:"—"]}),s.jsxs("span",{children:["route_to_agent: ",b.route_to_agent||u("telegram_ui.default_apx")]}),s.jsxs("span",{children:["engine: ",b.respond_with_engine?u("telegram_ui.yes"):u("telegram_ui.no")]}),s.jsxs("span",{className:"col-span-2",children:[u("telegram_channels.owner_label")," ",_]})]})]},b.name)})}),s.jsx(NN,{channel:c,onClose:()=>d(null),onSaved:()=>{d(null),o()}}),s.jsx(EN,{channel:p,onClose:()=>m(null)})]})}const lw=new Set(["owner","guest"]);function GB(){const e=Ze(),{roles:t,mutate:a,isLoading:o}=O_(),[l,c]=x.useState(""),[d,p]=x.useState(""),[m,g]=x.useState(!1),[h,b]=x.useState(!1),_=async()=>{const k=l.trim();if(!k){e.error(u("telegram_roles.name_required"));return}if(lw.has(k)){e.error(u("telegram_roles.builtin_error",{name:k}));return}b(!0);try{const y=m?"*":d.split(",").map(w=>w.trim()).filter(Boolean);await zn.roles.set(k,y),e.success(u("telegram_roles.saved",{name:k})),c(""),p(""),g(!1),a()}catch(y){e.error(y.message)}finally{b(!1)}},j=async k=>{if(confirm(u("telegram_roles.delete_confirm",{name:k})))try{await zn.roles.remove(k),e.success(u("telegram_roles.removed")),a()}catch(y){e.error(y.message)}},E=Object.entries(t);return s.jsxs(Fe,{title:u("telegram_roles.title"),description:u("telegram_roles.desc"),children:[o&&s.jsx(at,{}),E.length===0&&!o&&s.jsx(pt,{children:u("telegram_roles.empty")}),E.length>0&&s.jsx("ul",{className:"space-y-2 text-sm",children:E.map(([k,y])=>{const w=lw.has(k),S=y?.tools==="*"?u("telegram_roles.tools_all"):Array.isArray(y?.tools)&&y.tools.length>0?y.tools.join(", "):u("telegram_roles.tools_none");return s.jsxs("li",{className:"rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsxs("div",{className:"flex items-center justify-between gap-2",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("span",{className:"font-medium",children:k}),w&&s.jsx(He,{tone:"info",children:u("telegram_roles.builtin")})]}),!w&&s.jsx(se,{size:"sm",variant:"destructive",onClick:()=>j(k),children:u("telegram_roles.delete_btn")})]}),s.jsxs("div",{className:"mt-1 text-xs text-muted-fg",children:[u("telegram_contacts.tools_label")," ",S]})]},k)})}),s.jsxs("div",{className:"mt-4 space-y-3 rounded-md border border-dashed border-border p-3",children:[s.jsxs("div",{className:"flex items-center gap-2 text-sm font-medium",children:[s.jsx(It,{size:14})," ",u("telegram_roles.new_title")]}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsx(ae,{label:u("telegram_roles.name_label"),children:s.jsx(Ne,{value:l,onChange:k=>c(k.target.value),placeholder:u("telegram_roles.name_ph")})}),s.jsx(ae,{label:u("telegram_roles.tools_label"),hint:u("telegram_roles.tools_hint"),children:s.jsx(Ne,{value:d,onChange:k=>p(k.target.value),disabled:m,placeholder:u("telegram_roles.tools_ph")})})]}),s.jsxs("div",{className:"flex items-center justify-between gap-3",children:[s.jsx(Gt,{checked:m,onChange:g,label:u("telegram_roles.full_access")}),s.jsx(se,{variant:"primary",loading:h,onClick:_,children:u("telegram_roles.save_btn")})]})]})]})}const UE="apx.settings.telegramTab";function YB(){if(typeof window>"u")return"default";const e=window.localStorage.getItem(UE);return e==="channels"||e==="contacts"||e==="roles"||e==="default"?e:"default"}function KB(){const[e,t]=x.useState("default");x.useEffect(()=>{t(YB())},[]);const a=o=>{const l=o==="channels"||o==="contacts"||o==="roles"||o==="default"?o:"default";t(l);try{window.localStorage.setItem(UE,l)}catch{}};return s.jsxs(Mp,{value:e,onValueChange:a,className:"w-full",children:[s.jsxs(Op,{children:[s.jsx(fa,{value:"default",children:u("settings.telegram_global.title")}),s.jsx(fa,{value:"channels",children:u("telegram_channels.title")}),s.jsx(fa,{value:"contacts",children:u("telegram_contacts.title")}),s.jsx(fa,{value:"roles",children:u("telegram_roles.title")})]}),s.jsx(Us,{value:"default",className:"mt-4",children:s.jsx(qB,{})}),s.jsx(Us,{value:"channels",className:"mt-4",children:s.jsx(FB,{})}),s.jsx(Us,{value:"contacts",className:"mt-4",children:s.jsx(RN,{})}),s.jsx(Us,{value:"roles",className:"mt-4",children:s.jsx(GB,{})})]})}function XB(){const{data:e,error:t,isLoading:a,mutate:o}=$e("/pair/list",()=>si.list(),{refreshInterval:Jf.pairList});return{clients:e?.clients||[],error:t,isLoading:a,mutate:o}}var Ol={},Lh,iw;function QB(){return iw||(iw=1,Lh=function(){return typeof Promise=="function"&&Promise.prototype&&Promise.prototype.then}),Lh}var Ih={},Ar={},cw;function qo(){if(cw)return Ar;cw=1;let e;const t=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];return Ar.getSymbolSize=function(o){if(!o)throw new Error('"version" cannot be null or undefined');if(o<1||o>40)throw new Error('"version" should be in range from 1 to 40');return o*4+17},Ar.getSymbolTotalCodewords=function(o){return t[o]},Ar.getBCHDigit=function(a){let o=0;for(;a!==0;)o++,a>>>=1;return o},Ar.setToSJISFunction=function(o){if(typeof o!="function")throw new Error('"toSJISFunc" is not a valid function.');e=o},Ar.isKanjiModeEnabled=function(){return typeof e<"u"},Ar.toSJIS=function(o){return e(o)},Ar}var Bh={},uw;function Z_(){return uw||(uw=1,(function(e){e.L={bit:1},e.M={bit:0},e.Q={bit:3},e.H={bit:2};function t(a){if(typeof a!="string")throw new Error("Param is not a string");switch(a.toLowerCase()){case"l":case"low":return e.L;case"m":case"medium":return e.M;case"q":case"quartile":return e.Q;case"h":case"high":return e.H;default:throw new Error("Unknown EC Level: "+a)}}e.isValid=function(o){return o&&typeof o.bit<"u"&&o.bit>=0&&o.bit<4},e.from=function(o,l){if(e.isValid(o))return o;try{return t(o)}catch{return l}}})(Bh)),Bh}var Uh,dw;function WB(){if(dw)return Uh;dw=1;function e(){this.buffer=[],this.length=0}return e.prototype={get:function(t){const a=Math.floor(t/8);return(this.buffer[a]>>>7-t%8&1)===1},put:function(t,a){for(let o=0;o<a;o++)this.putBit((t>>>a-o-1&1)===1)},getLengthInBits:function(){return this.length},putBit:function(t){const a=Math.floor(this.length/8);this.buffer.length<=a&&this.buffer.push(0),t&&(this.buffer[a]|=128>>>this.length%8),this.length++}},Uh=e,Uh}var $h,fw;function ZB(){if(fw)return $h;fw=1;function e(t){if(!t||t<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=t,this.data=new Uint8Array(t*t),this.reservedBit=new Uint8Array(t*t)}return e.prototype.set=function(t,a,o,l){const c=t*this.size+a;this.data[c]=o,l&&(this.reservedBit[c]=!0)},e.prototype.get=function(t,a){return this.data[t*this.size+a]},e.prototype.xor=function(t,a,o){this.data[t*this.size+a]^=o},e.prototype.isReserved=function(t,a){return this.reservedBit[t*this.size+a]},$h=e,$h}var Hh={},pw;function JB(){return pw||(pw=1,(function(e){const t=qo().getSymbolSize;e.getRowColCoords=function(o){if(o===1)return[];const l=Math.floor(o/7)+2,c=t(o),d=c===145?26:Math.ceil((c-13)/(2*l-2))*2,p=[c-7];for(let m=1;m<l-1;m++)p[m]=p[m-1]-d;return p.push(6),p.reverse()},e.getPositions=function(o){const l=[],c=e.getRowColCoords(o),d=c.length;for(let p=0;p<d;p++)for(let m=0;m<d;m++)p===0&&m===0||p===0&&m===d-1||p===d-1&&m===0||l.push([c[p],c[m]]);return l}})(Hh)),Hh}var Vh={},mw;function e9(){if(mw)return Vh;mw=1;const e=qo().getSymbolSize,t=7;return Vh.getPositions=function(o){const l=e(o);return[[0,0],[l-t,0],[0,l-t]]},Vh}var qh={},gw;function t9(){return gw||(gw=1,(function(e){e.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};const t={N1:3,N2:3,N3:40,N4:10};e.isValid=function(l){return l!=null&&l!==""&&!isNaN(l)&&l>=0&&l<=7},e.from=function(l){return e.isValid(l)?parseInt(l,10):void 0},e.getPenaltyN1=function(l){const c=l.size;let d=0,p=0,m=0,g=null,h=null;for(let b=0;b<c;b++){p=m=0,g=h=null;for(let _=0;_<c;_++){let j=l.get(b,_);j===g?p++:(p>=5&&(d+=t.N1+(p-5)),g=j,p=1),j=l.get(_,b),j===h?m++:(m>=5&&(d+=t.N1+(m-5)),h=j,m=1)}p>=5&&(d+=t.N1+(p-5)),m>=5&&(d+=t.N1+(m-5))}return d},e.getPenaltyN2=function(l){const c=l.size;let d=0;for(let p=0;p<c-1;p++)for(let m=0;m<c-1;m++){const g=l.get(p,m)+l.get(p,m+1)+l.get(p+1,m)+l.get(p+1,m+1);(g===4||g===0)&&d++}return d*t.N2},e.getPenaltyN3=function(l){const c=l.size;let d=0,p=0,m=0;for(let g=0;g<c;g++){p=m=0;for(let h=0;h<c;h++)p=p<<1&2047|l.get(g,h),h>=10&&(p===1488||p===93)&&d++,m=m<<1&2047|l.get(h,g),h>=10&&(m===1488||m===93)&&d++}return d*t.N3},e.getPenaltyN4=function(l){let c=0;const d=l.data.length;for(let m=0;m<d;m++)c+=l.data[m];return Math.abs(Math.ceil(c*100/d/5)-10)*t.N4};function a(o,l,c){switch(o){case e.Patterns.PATTERN000:return(l+c)%2===0;case e.Patterns.PATTERN001:return l%2===0;case e.Patterns.PATTERN010:return c%3===0;case e.Patterns.PATTERN011:return(l+c)%3===0;case e.Patterns.PATTERN100:return(Math.floor(l/2)+Math.floor(c/3))%2===0;case e.Patterns.PATTERN101:return l*c%2+l*c%3===0;case e.Patterns.PATTERN110:return(l*c%2+l*c%3)%2===0;case e.Patterns.PATTERN111:return(l*c%3+(l+c)%2)%2===0;default:throw new Error("bad maskPattern:"+o)}}e.applyMask=function(l,c){const d=c.size;for(let p=0;p<d;p++)for(let m=0;m<d;m++)c.isReserved(m,p)||c.xor(m,p,a(l,m,p))},e.getBestMask=function(l,c){const d=Object.keys(e.Patterns).length;let p=0,m=1/0;for(let g=0;g<d;g++){c(g),e.applyMask(g,l);const h=e.getPenaltyN1(l)+e.getPenaltyN2(l)+e.getPenaltyN3(l)+e.getPenaltyN4(l);e.applyMask(g,l),h<m&&(m=h,p=g)}return p}})(qh)),qh}var Jd={},hw;function $E(){if(hw)return Jd;hw=1;const e=Z_(),t=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],a=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];return Jd.getBlocksCount=function(l,c){switch(c){case e.L:return t[(l-1)*4+0];case e.M:return t[(l-1)*4+1];case e.Q:return t[(l-1)*4+2];case e.H:return t[(l-1)*4+3];default:return}},Jd.getTotalCodewordsCount=function(l,c){switch(c){case e.L:return a[(l-1)*4+0];case e.M:return a[(l-1)*4+1];case e.Q:return a[(l-1)*4+2];case e.H:return a[(l-1)*4+3];default:return}},Jd}var Fh={},yc={},xw;function n9(){if(xw)return yc;xw=1;const e=new Uint8Array(512),t=new Uint8Array(256);return(function(){let o=1;for(let l=0;l<255;l++)e[l]=o,t[o]=l,o<<=1,o&256&&(o^=285);for(let l=255;l<512;l++)e[l]=e[l-255]})(),yc.log=function(o){if(o<1)throw new Error("log("+o+")");return t[o]},yc.exp=function(o){return e[o]},yc.mul=function(o,l){return o===0||l===0?0:e[t[o]+t[l]]},yc}var bw;function s9(){return bw||(bw=1,(function(e){const t=n9();e.mul=function(o,l){const c=new Uint8Array(o.length+l.length-1);for(let d=0;d<o.length;d++)for(let p=0;p<l.length;p++)c[d+p]^=t.mul(o[d],l[p]);return c},e.mod=function(o,l){let c=new Uint8Array(o);for(;c.length-l.length>=0;){const d=c[0];for(let m=0;m<l.length;m++)c[m]^=t.mul(l[m],d);let p=0;for(;p<c.length&&c[p]===0;)p++;c=c.slice(p)}return c},e.generateECPolynomial=function(o){let l=new Uint8Array([1]);for(let c=0;c<o;c++)l=e.mul(l,new Uint8Array([1,t.exp(c)]));return l}})(Fh)),Fh}var Gh,_w;function a9(){if(_w)return Gh;_w=1;const e=s9();function t(a){this.genPoly=void 0,this.degree=a,this.degree&&this.initialize(this.degree)}return t.prototype.initialize=function(o){this.degree=o,this.genPoly=e.generateECPolynomial(this.degree)},t.prototype.encode=function(o){if(!this.genPoly)throw new Error("Encoder not initialized");const l=new Uint8Array(o.length+this.degree);l.set(o);const c=e.mod(l,this.genPoly),d=this.degree-c.length;if(d>0){const p=new Uint8Array(this.degree);return p.set(c,d),p}return c},Gh=t,Gh}var Yh={},Kh={},Xh={},vw;function HE(){return vw||(vw=1,Xh.isValid=function(t){return!isNaN(t)&&t>=1&&t<=40}),Xh}var la={},yw;function VE(){if(yw)return la;yw=1;const e="[0-9]+",t="[A-Z $%*+\\-./:]+";let a="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";a=a.replace(/u/g,"\\u");const o="(?:(?![A-Z0-9 $%*+\\-./:]|"+a+`)(?:.|[\r
766
- ]))+`;la.KANJI=new RegExp(a,"g"),la.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),la.BYTE=new RegExp(o,"g"),la.NUMERIC=new RegExp(e,"g"),la.ALPHANUMERIC=new RegExp(t,"g");const l=new RegExp("^"+a+"$"),c=new RegExp("^"+e+"$"),d=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");return la.testKanji=function(m){return l.test(m)},la.testNumeric=function(m){return c.test(m)},la.testAlphanumeric=function(m){return d.test(m)},la}var jw;function Fo(){return jw||(jw=1,(function(e){const t=HE(),a=VE();e.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},e.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},e.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},e.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},e.MIXED={bit:-1},e.getCharCountIndicator=function(c,d){if(!c.ccBits)throw new Error("Invalid mode: "+c);if(!t.isValid(d))throw new Error("Invalid version: "+d);return d>=1&&d<10?c.ccBits[0]:d<27?c.ccBits[1]:c.ccBits[2]},e.getBestModeForData=function(c){return a.testNumeric(c)?e.NUMERIC:a.testAlphanumeric(c)?e.ALPHANUMERIC:a.testKanji(c)?e.KANJI:e.BYTE},e.toString=function(c){if(c&&c.id)return c.id;throw new Error("Invalid mode")},e.isValid=function(c){return c&&c.bit&&c.ccBits};function o(l){if(typeof l!="string")throw new Error("Param is not a string");switch(l.toLowerCase()){case"numeric":return e.NUMERIC;case"alphanumeric":return e.ALPHANUMERIC;case"kanji":return e.KANJI;case"byte":return e.BYTE;default:throw new Error("Unknown mode: "+l)}}e.from=function(c,d){if(e.isValid(c))return c;try{return o(c)}catch{return d}}})(Kh)),Kh}var kw;function r9(){return kw||(kw=1,(function(e){const t=qo(),a=$E(),o=Z_(),l=Fo(),c=HE(),d=7973,p=t.getBCHDigit(d);function m(_,j,E){for(let k=1;k<=40;k++)if(j<=e.getCapacity(k,E,_))return k}function g(_,j){return l.getCharCountIndicator(_,j)+4}function h(_,j){let E=0;return _.forEach(function(k){const y=g(k.mode,j);E+=y+k.getBitsLength()}),E}function b(_,j){for(let E=1;E<=40;E++)if(h(_,E)<=e.getCapacity(E,j,l.MIXED))return E}e.from=function(j,E){return c.isValid(j)?parseInt(j,10):E},e.getCapacity=function(j,E,k){if(!c.isValid(j))throw new Error("Invalid QR Code version");typeof k>"u"&&(k=l.BYTE);const y=t.getSymbolTotalCodewords(j),w=a.getTotalCodewordsCount(j,E),S=(y-w)*8;if(k===l.MIXED)return S;const N=S-g(k,j);switch(k){case l.NUMERIC:return Math.floor(N/10*3);case l.ALPHANUMERIC:return Math.floor(N/11*2);case l.KANJI:return Math.floor(N/13);case l.BYTE:default:return Math.floor(N/8)}},e.getBestVersionForData=function(j,E){let k;const y=o.from(E,o.M);if(Array.isArray(j)){if(j.length>1)return b(j,y);if(j.length===0)return 1;k=j[0]}else k=j;return m(k.mode,k.getLength(),y)},e.getEncodedBits=function(j){if(!c.isValid(j)||j<7)throw new Error("Invalid QR Code version");let E=j<<12;for(;t.getBCHDigit(E)-p>=0;)E^=d<<t.getBCHDigit(E)-p;return j<<12|E}})(Yh)),Yh}var Qh={},ww;function o9(){if(ww)return Qh;ww=1;const e=qo(),t=1335,a=21522,o=e.getBCHDigit(t);return Qh.getEncodedBits=function(c,d){const p=c.bit<<3|d;let m=p<<10;for(;e.getBCHDigit(m)-o>=0;)m^=t<<e.getBCHDigit(m)-o;return(p<<10|m)^a},Qh}var Wh={},Zh,Sw;function l9(){if(Sw)return Zh;Sw=1;const e=Fo();function t(a){this.mode=e.NUMERIC,this.data=a.toString()}return t.getBitsLength=function(o){return 10*Math.floor(o/3)+(o%3?o%3*3+1:0)},t.prototype.getLength=function(){return this.data.length},t.prototype.getBitsLength=function(){return t.getBitsLength(this.data.length)},t.prototype.write=function(o){let l,c,d;for(l=0;l+3<=this.data.length;l+=3)c=this.data.substr(l,3),d=parseInt(c,10),o.put(d,10);const p=this.data.length-l;p>0&&(c=this.data.substr(l),d=parseInt(c,10),o.put(d,p*3+1))},Zh=t,Zh}var Jh,Cw;function i9(){if(Cw)return Jh;Cw=1;const e=Fo(),t=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"," ","$","%","*","+","-",".","/",":"];function a(o){this.mode=e.ALPHANUMERIC,this.data=o}return a.getBitsLength=function(l){return 11*Math.floor(l/2)+6*(l%2)},a.prototype.getLength=function(){return this.data.length},a.prototype.getBitsLength=function(){return a.getBitsLength(this.data.length)},a.prototype.write=function(l){let c;for(c=0;c+2<=this.data.length;c+=2){let d=t.indexOf(this.data[c])*45;d+=t.indexOf(this.data[c+1]),l.put(d,11)}this.data.length%2&&l.put(t.indexOf(this.data[c]),6)},Jh=a,Jh}var ex,Nw;function c9(){if(Nw)return ex;Nw=1;const e=Fo();function t(a){this.mode=e.BYTE,typeof a=="string"?this.data=new TextEncoder().encode(a):this.data=new Uint8Array(a)}return t.getBitsLength=function(o){return o*8},t.prototype.getLength=function(){return this.data.length},t.prototype.getBitsLength=function(){return t.getBitsLength(this.data.length)},t.prototype.write=function(a){for(let o=0,l=this.data.length;o<l;o++)a.put(this.data[o],8)},ex=t,ex}var tx,Ew;function u9(){if(Ew)return tx;Ew=1;const e=Fo(),t=qo();function a(o){this.mode=e.KANJI,this.data=o}return a.getBitsLength=function(l){return l*13},a.prototype.getLength=function(){return this.data.length},a.prototype.getBitsLength=function(){return a.getBitsLength(this.data.length)},a.prototype.write=function(o){let l;for(l=0;l<this.data.length;l++){let c=t.toSJIS(this.data[l]);if(c>=33088&&c<=40956)c-=33088;else if(c>=57408&&c<=60351)c-=49472;else throw new Error("Invalid SJIS character: "+this.data[l]+`
767
- Make sure your charset is UTF-8`);c=(c>>>8&255)*192+(c&255),o.put(c,13)}},tx=a,tx}var nx={exports:{}},Rw;function d9(){return Rw||(Rw=1,(function(e){var t={single_source_shortest_paths:function(a,o,l){var c={},d={};d[o]=0;var p=t.PriorityQueue.make();p.push(o,0);for(var m,g,h,b,_,j,E,k,y;!p.empty();){m=p.pop(),g=m.value,b=m.cost,_=a[g]||{};for(h in _)_.hasOwnProperty(h)&&(j=_[h],E=b+j,k=d[h],y=typeof d[h]>"u",(y||k>E)&&(d[h]=E,p.push(h,E),c[h]=g))}if(typeof l<"u"&&typeof d[l]>"u"){var w=["Could not find a path from ",o," to ",l,"."].join("");throw new Error(w)}return c},extract_shortest_path_from_predecessor_list:function(a,o){for(var l=[],c=o;c;)l.push(c),a[c],c=a[c];return l.reverse(),l},find_path:function(a,o,l){var c=t.single_source_shortest_paths(a,o,l);return t.extract_shortest_path_from_predecessor_list(c,l)},PriorityQueue:{make:function(a){var o=t.PriorityQueue,l={},c;a=a||{};for(c in o)o.hasOwnProperty(c)&&(l[c]=o[c]);return l.queue=[],l.sorter=a.sorter||o.default_sorter,l},default_sorter:function(a,o){return a.cost-o.cost},push:function(a,o){var l={value:a,cost:o};this.queue.push(l),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return this.queue.length===0}}};e.exports=t})(nx)),nx.exports}var Tw;function f9(){return Tw||(Tw=1,(function(e){const t=Fo(),a=l9(),o=i9(),l=c9(),c=u9(),d=VE(),p=qo(),m=d9();function g(w){return unescape(encodeURIComponent(w)).length}function h(w,S,N){const R=[];let A;for(;(A=w.exec(N))!==null;)R.push({data:A[0],index:A.index,mode:S,length:A[0].length});return R}function b(w){const S=h(d.NUMERIC,t.NUMERIC,w),N=h(d.ALPHANUMERIC,t.ALPHANUMERIC,w);let R,A;return p.isKanjiModeEnabled()?(R=h(d.BYTE,t.BYTE,w),A=h(d.KANJI,t.KANJI,w)):(R=h(d.BYTE_KANJI,t.BYTE,w),A=[]),S.concat(N,R,A).sort(function(O,z){return O.index-z.index}).map(function(O){return{data:O.data,mode:O.mode,length:O.length}})}function _(w,S){switch(S){case t.NUMERIC:return a.getBitsLength(w);case t.ALPHANUMERIC:return o.getBitsLength(w);case t.KANJI:return c.getBitsLength(w);case t.BYTE:return l.getBitsLength(w)}}function j(w){return w.reduce(function(S,N){const R=S.length-1>=0?S[S.length-1]:null;return R&&R.mode===N.mode?(S[S.length-1].data+=N.data,S):(S.push(N),S)},[])}function E(w){const S=[];for(let N=0;N<w.length;N++){const R=w[N];switch(R.mode){case t.NUMERIC:S.push([R,{data:R.data,mode:t.ALPHANUMERIC,length:R.length},{data:R.data,mode:t.BYTE,length:R.length}]);break;case t.ALPHANUMERIC:S.push([R,{data:R.data,mode:t.BYTE,length:R.length}]);break;case t.KANJI:S.push([R,{data:R.data,mode:t.BYTE,length:g(R.data)}]);break;case t.BYTE:S.push([{data:R.data,mode:t.BYTE,length:g(R.data)}])}}return S}function k(w,S){const N={},R={start:{}};let A=["start"];for(let T=0;T<w.length;T++){const O=w[T],z=[];for(let U=0;U<O.length;U++){const P=O[U],B=""+T+U;z.push(B),N[B]={node:P,lastCount:0},R[B]={};for(let D=0;D<A.length;D++){const L=A[D];N[L]&&N[L].node.mode===P.mode?(R[L][B]=_(N[L].lastCount+P.length,P.mode)-_(N[L].lastCount,P.mode),N[L].lastCount+=P.length):(N[L]&&(N[L].lastCount=P.length),R[L][B]=_(P.length,P.mode)+4+t.getCharCountIndicator(P.mode,S))}}A=z}for(let T=0;T<A.length;T++)R[A[T]].end=0;return{map:R,table:N}}function y(w,S){let N;const R=t.getBestModeForData(w);if(N=t.from(S,R),N!==t.BYTE&&N.bit<R.bit)throw new Error('"'+w+'" cannot be encoded with mode '+t.toString(N)+`.
768
- Suggested mode is: `+t.toString(R));switch(N===t.KANJI&&!p.isKanjiModeEnabled()&&(N=t.BYTE),N){case t.NUMERIC:return new a(w);case t.ALPHANUMERIC:return new o(w);case t.KANJI:return new c(w);case t.BYTE:return new l(w)}}e.fromArray=function(S){return S.reduce(function(N,R){return typeof R=="string"?N.push(y(R,null)):R.data&&N.push(y(R.data,R.mode)),N},[])},e.fromString=function(S,N){const R=b(S,p.isKanjiModeEnabled()),A=E(R),T=k(A,N),O=m.find_path(T.map,"start","end"),z=[];for(let U=1;U<O.length-1;U++)z.push(T.table[O[U]].node);return e.fromArray(j(z))},e.rawSplit=function(S){return e.fromArray(b(S,p.isKanjiModeEnabled()))}})(Wh)),Wh}var Aw;function p9(){if(Aw)return Ih;Aw=1;const e=qo(),t=Z_(),a=WB(),o=ZB(),l=JB(),c=e9(),d=t9(),p=$E(),m=a9(),g=r9(),h=o9(),b=Fo(),_=f9();function j(T,O){const z=T.size,U=c.getPositions(O);for(let P=0;P<U.length;P++){const B=U[P][0],D=U[P][1];for(let L=-1;L<=7;L++)if(!(B+L<=-1||z<=B+L))for(let $=-1;$<=7;$++)D+$<=-1||z<=D+$||(L>=0&&L<=6&&($===0||$===6)||$>=0&&$<=6&&(L===0||L===6)||L>=2&&L<=4&&$>=2&&$<=4?T.set(B+L,D+$,!0,!0):T.set(B+L,D+$,!1,!0))}}function E(T){const O=T.size;for(let z=8;z<O-8;z++){const U=z%2===0;T.set(z,6,U,!0),T.set(6,z,U,!0)}}function k(T,O){const z=l.getPositions(O);for(let U=0;U<z.length;U++){const P=z[U][0],B=z[U][1];for(let D=-2;D<=2;D++)for(let L=-2;L<=2;L++)D===-2||D===2||L===-2||L===2||D===0&&L===0?T.set(P+D,B+L,!0,!0):T.set(P+D,B+L,!1,!0)}}function y(T,O){const z=T.size,U=g.getEncodedBits(O);let P,B,D;for(let L=0;L<18;L++)P=Math.floor(L/3),B=L%3+z-8-3,D=(U>>L&1)===1,T.set(P,B,D,!0),T.set(B,P,D,!0)}function w(T,O,z){const U=T.size,P=h.getEncodedBits(O,z);let B,D;for(B=0;B<15;B++)D=(P>>B&1)===1,B<6?T.set(B,8,D,!0):B<8?T.set(B+1,8,D,!0):T.set(U-15+B,8,D,!0),B<8?T.set(8,U-B-1,D,!0):B<9?T.set(8,15-B-1+1,D,!0):T.set(8,15-B-1,D,!0);T.set(U-8,8,1,!0)}function S(T,O){const z=T.size;let U=-1,P=z-1,B=7,D=0;for(let L=z-1;L>0;L-=2)for(L===6&&L--;;){for(let $=0;$<2;$++)if(!T.isReserved(P,L-$)){let V=!1;D<O.length&&(V=(O[D]>>>B&1)===1),T.set(P,L-$,V),B--,B===-1&&(D++,B=7)}if(P+=U,P<0||z<=P){P-=U,U=-U;break}}}function N(T,O,z){const U=new a;z.forEach(function($){U.put($.mode.bit,4),U.put($.getLength(),b.getCharCountIndicator($.mode,T)),$.write(U)});const P=e.getSymbolTotalCodewords(T),B=p.getTotalCodewordsCount(T,O),D=(P-B)*8;for(U.getLengthInBits()+4<=D&&U.put(0,4);U.getLengthInBits()%8!==0;)U.putBit(0);const L=(D-U.getLengthInBits())/8;for(let $=0;$<L;$++)U.put($%2?17:236,8);return R(U,T,O)}function R(T,O,z){const U=e.getSymbolTotalCodewords(O),P=p.getTotalCodewordsCount(O,z),B=U-P,D=p.getBlocksCount(O,z),L=U%D,$=D-L,V=Math.floor(U/D),H=Math.floor(B/D),F=H+1,Y=V-H,G=new m(Y);let K=0;const I=new Array(D),X=new Array(D);let Z=0;const te=new Uint8Array(T.buffer);for(let me=0;me<D;me++){const Me=me<$?H:F;I[me]=te.slice(K,K+Me),X[me]=G.encode(I[me]),K+=Me,Z=Math.max(Z,Me)}const fe=new Uint8Array(U);let ee=0,re,le;for(re=0;re<Z;re++)for(le=0;le<D;le++)re<I[le].length&&(fe[ee++]=I[le][re]);for(re=0;re<Y;re++)for(le=0;le<D;le++)fe[ee++]=X[le][re];return fe}function A(T,O,z,U){let P;if(Array.isArray(T))P=_.fromArray(T);else if(typeof T=="string"){let V=O;if(!V){const H=_.rawSplit(T);V=g.getBestVersionForData(H,z)}P=_.fromString(T,V||40)}else throw new Error("Invalid data");const B=g.getBestVersionForData(P,z);if(!B)throw new Error("The amount of data is too big to be stored in a QR Code");if(!O)O=B;else if(O<B)throw new Error(`
769
- The chosen QR Code version cannot contain this amount of data.
770
- Minimum version required to store current data is: `+B+`.
771
- `);const D=N(O,z,P),L=e.getSymbolSize(O),$=new o(L);return j($,O),E($),k($,O),w($,z,0),O>=7&&y($,O),S($,D),isNaN(U)&&(U=d.getBestMask($,w.bind(null,$,z))),d.applyMask(U,$),w($,z,U),{modules:$,version:O,errorCorrectionLevel:z,maskPattern:U,segments:P}}return Ih.create=function(O,z){if(typeof O>"u"||O==="")throw new Error("No input text");let U=t.M,P,B;return typeof z<"u"&&(U=t.from(z.errorCorrectionLevel,t.M),P=g.from(z.version),B=d.from(z.maskPattern),z.toSJISFunc&&e.setToSJISFunction(z.toSJISFunc)),A(O,P,U,B)},Ih}var sx={},ax={},Mw;function qE(){return Mw||(Mw=1,(function(e){function t(a){if(typeof a=="number"&&(a=a.toString()),typeof a!="string")throw new Error("Color should be defined as hex string");let o=a.slice().replace("#","").split("");if(o.length<3||o.length===5||o.length>8)throw new Error("Invalid hex color: "+a);(o.length===3||o.length===4)&&(o=Array.prototype.concat.apply([],o.map(function(c){return[c,c]}))),o.length===6&&o.push("F","F");const l=parseInt(o.join(""),16);return{r:l>>24&255,g:l>>16&255,b:l>>8&255,a:l&255,hex:"#"+o.slice(0,6).join("")}}e.getOptions=function(o){o||(o={}),o.color||(o.color={});const l=typeof o.margin>"u"||o.margin===null||o.margin<0?4:o.margin,c=o.width&&o.width>=21?o.width:void 0,d=o.scale||4;return{width:c,scale:c?4:d,margin:l,color:{dark:t(o.color.dark||"#000000ff"),light:t(o.color.light||"#ffffffff")},type:o.type,rendererOpts:o.rendererOpts||{}}},e.getScale=function(o,l){return l.width&&l.width>=o+l.margin*2?l.width/(o+l.margin*2):l.scale},e.getImageWidth=function(o,l){const c=e.getScale(o,l);return Math.floor((o+l.margin*2)*c)},e.qrToImageData=function(o,l,c){const d=l.modules.size,p=l.modules.data,m=e.getScale(d,c),g=Math.floor((d+c.margin*2)*m),h=c.margin*m,b=[c.color.light,c.color.dark];for(let _=0;_<g;_++)for(let j=0;j<g;j++){let E=(_*g+j)*4,k=c.color.light;if(_>=h&&j>=h&&_<g-h&&j<g-h){const y=Math.floor((_-h)/m),w=Math.floor((j-h)/m);k=b[p[y*d+w]?1:0]}o[E++]=k.r,o[E++]=k.g,o[E++]=k.b,o[E]=k.a}}})(ax)),ax}var Ow;function m9(){return Ow||(Ow=1,(function(e){const t=qE();function a(l,c,d){l.clearRect(0,0,c.width,c.height),c.style||(c.style={}),c.height=d,c.width=d,c.style.height=d+"px",c.style.width=d+"px"}function o(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}e.render=function(c,d,p){let m=p,g=d;typeof m>"u"&&(!d||!d.getContext)&&(m=d,d=void 0),d||(g=o()),m=t.getOptions(m);const h=t.getImageWidth(c.modules.size,m),b=g.getContext("2d"),_=b.createImageData(h,h);return t.qrToImageData(_.data,c,m),a(b,g,h),b.putImageData(_,0,0),g},e.renderToDataURL=function(c,d,p){let m=p;typeof m>"u"&&(!d||!d.getContext)&&(m=d,d=void 0),m||(m={});const g=e.render(c,d,m),h=m.type||"image/png",b=m.rendererOpts||{};return g.toDataURL(h,b.quality)}})(sx)),sx}var rx={},zw;function g9(){if(zw)return rx;zw=1;const e=qE();function t(l,c){const d=l.a/255,p=c+'="'+l.hex+'"';return d<1?p+" "+c+'-opacity="'+d.toFixed(2).slice(1)+'"':p}function a(l,c,d){let p=l+c;return typeof d<"u"&&(p+=" "+d),p}function o(l,c,d){let p="",m=0,g=!1,h=0;for(let b=0;b<l.length;b++){const _=Math.floor(b%c),j=Math.floor(b/c);!_&&!g&&(g=!0),l[b]?(h++,b>0&&_>0&&l[b-1]||(p+=g?a("M",_+d,.5+j+d):a("m",m,0),m=0,g=!1),_+1<c&&l[b+1]||(p+=a("h",h),h=0)):m++}return p}return rx.render=function(c,d,p){const m=e.getOptions(d),g=c.modules.size,h=c.modules.data,b=g+m.margin*2,_=m.color.light.a?"<path "+t(m.color.light,"fill")+' d="M0 0h'+b+"v"+b+'H0z"/>':"",j="<path "+t(m.color.dark,"stroke")+' d="'+o(h,g,m.margin)+'"/>',E='viewBox="0 0 '+b+" "+b+'"',y='<svg xmlns="http://www.w3.org/2000/svg" '+(m.width?'width="'+m.width+'" height="'+m.width+'" ':"")+E+' shape-rendering="crispEdges">'+_+j+`</svg>
772
- `;return typeof p=="function"&&p(null,y),y},rx}var Dw;function h9(){if(Dw)return Ol;Dw=1;const e=QB(),t=p9(),a=m9(),o=g9();function l(c,d,p,m,g){const h=[].slice.call(arguments,1),b=h.length,_=typeof h[b-1]=="function";if(!_&&!e())throw new Error("Callback required as last argument");if(_){if(b<2)throw new Error("Too few arguments provided");b===2?(g=p,p=d,d=m=void 0):b===3&&(d.getContext&&typeof g>"u"?(g=m,m=void 0):(g=m,m=p,p=d,d=void 0))}else{if(b<1)throw new Error("Too few arguments provided");return b===1?(p=d,d=m=void 0):b===2&&!d.getContext&&(m=p,p=d,d=void 0),new Promise(function(j,E){try{const k=t.create(p,m);j(c(k,d,m))}catch(k){E(k)}})}try{const j=t.create(p,m);g(null,c(j,d,m))}catch(j){g(j)}}return Ol.create=t.create,Ol.toCanvas=l.bind(null,a.render),Ol.toDataURL=l.bind(null,a.renderToDataURL),Ol.toString=l.bind(null,function(c,d,p){return o.render(c,p)}),Ol}var x9=h9();const b9=nb(x9);function _9({value:e,size:t=200}){const[a,o]=x.useState(null);return x.useEffect(()=>{let l=!0;return b9.toDataURL(e,{margin:2,width:t*2,errorCorrectionLevel:"M"}).then(c=>{l&&o(c)}).catch(()=>{l&&o(null)}),()=>{l=!1}},[e,t]),s.jsx("div",{className:"grid place-items-center rounded-lg bg-white p-3",style:{width:t+24,height:t+24},children:a?s.jsx("img",{src:a,width:t,height:t,alt:"QR"}):s.jsx("div",{className:"size-full animate-pulse rounded bg-muted"})})}function v9(e){return e.find(t=>!t.includes("127.0.0.1")&&!t.includes("localhost"))||e[0]||window.location.origin}function y9({open:e,onClose:t,onPaired:a}){const o=Ze(),[l,c]=x.useState(null),[d,p]=x.useState(null),[m,g]=x.useState(0),[h,b]=x.useState(!1),_=x.useRef(null),j=x.useCallback(async()=>{c(null),p(null),b(!1);try{const S=await si.init();c(S),g(Math.round((S.ttl_ms||9e4)/1e3))}catch(S){S instanceof du&&S.status===403?p(u("settings.devices_pair_localhost_only")):p(S.message)}},[]);x.useEffect(()=>{e?j():(c(null),p(null),b(!1))},[e,j]),x.useEffect(()=>{if(!l||h||m<=0)return;const S=window.setTimeout(()=>g(N=>N-1),1e3);return()=>window.clearTimeout(S)},[l,m,h]),x.useEffect(()=>{if(!e||!l||h)return;let S=!0;const N=async()=>{try{const R=await si.status(l.pairing_id);if(!S)return;if(R.status==="confirmed"){b(!0),o.success(u("settings.devices_pair_done")),a(),window.setTimeout(()=>{S&&t()},900);return}if(R.status==="expired"||R.status==="unknown"){g(0);return}}catch{}_.current=window.setTimeout(N,1500)};return _.current=window.setTimeout(N,1500),()=>{S=!1,_.current&&window.clearTimeout(_.current)}},[e,l,h,t,a,o]);const E=!!l&&!h&&m<=0,k=l?v9(l.lan_urls):"",y=l?`${k}/#pair=${l.pairing_id}`:"",w=async(S,N)=>{try{await navigator.clipboard.writeText(S),o.success(N)}catch{o.error(S)}};return s.jsxs(sn,{open:e,onClose:t,title:u("settings.devices_pair_title"),description:u("settings.devices_pair_desc"),footer:s.jsx(se,{variant:"secondary",onClick:t,children:u("common.close")}),children:[d&&s.jsx("p",{className:"rounded-md bg-destructive/10 px-3 py-2 text-sm text-destructive",children:d}),!d&&!l&&s.jsxs("div",{className:"flex items-center gap-2 py-8 text-sm text-muted-fg",children:[s.jsx(Dn,{})," ",u("common.loading")]}),!d&&l&&s.jsxs("div",{className:"flex flex-col items-center gap-4",children:[s.jsx("div",{className:E?"opacity-40":"",children:s.jsx(_9,{value:y,size:196})}),h?s.jsx("p",{className:"text-sm font-medium text-emerald-500",children:u("settings.devices_pair_done")}):E?s.jsxs("div",{className:"flex flex-col items-center gap-2",children:[s.jsx("p",{className:"text-sm text-muted-fg",children:u("settings.devices_pair_expired")}),s.jsx(se,{variant:"primary",onClick:()=>void j(),children:u("settings.devices_pair_regen")})]}):s.jsxs(s.Fragment,{children:[s.jsx("p",{className:"text-center text-xs text-muted-fg",children:u("settings.devices_pair_scan")}),s.jsxs("div",{className:"flex items-center gap-2 text-xs text-muted-fg",children:[s.jsx(Dn,{size:12}),s.jsx("span",{children:u("settings.devices_pair_waiting")}),s.jsxs("span",{className:"tabular-nums",children:["· ",u("settings.devices_pair_expires",{s:m})]})]}),s.jsxs("div",{className:"w-full space-y-3 border-t border-border pt-3",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx("p",{className:"text-xs text-muted-fg",children:u("settings.devices_pair_link")}),s.jsxs("div",{className:"flex items-stretch gap-2",children:[s.jsx("code",{className:"min-w-0 flex-1 break-all rounded-md bg-muted px-3 py-2 text-xs",children:y}),s.jsx(Ye,{content:u("settings.devices_pair_copy"),children:s.jsx(se,{size:"sm",variant:"secondary",onClick:()=>w(y,u("settings.devices_pair_copied")),children:s.jsx($c,{size:14})})})]})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx("p",{className:"text-xs text-muted-fg",children:u("settings.devices_pair_code")}),s.jsxs("div",{className:"flex items-stretch gap-2",children:[s.jsx("code",{className:"min-w-0 flex-1 break-all rounded-md bg-muted px-3 py-2 text-center text-sm",children:l.pairing_id}),s.jsx(Ye,{content:u("settings.devices_pair_copy"),children:s.jsx(se,{size:"sm",variant:"secondary",onClick:()=>w(l.pairing_id,u("settings.devices_pair_copied_code")),children:s.jsx($c,{size:14})})})]})]})]})]})]})]})}function j9(){const e=Ze(),{clients:t,isLoading:a,mutate:o}=XB(),[l,c]=x.useState(!1),[d,p]=x.useState(""),m=async h=>{if(confirm(u("settings.devices_revoke_confirm",{id:h})))try{await si.revoke(h),e.success(u("settings.devices_revoke_success")),o()}catch(b){e.error(b.message)}},g=()=>{const h=d.trim();if(h){So(h);try{localStorage.setItem(On.token,h)}catch{}p(""),e.success(u("settings.token_saved"))}};return s.jsxs("div",{className:"space-y-6",children:[s.jsxs(Fe,{title:u("settings.devices"),description:u("settings.devices_sub"),action:s.jsxs(se,{size:"sm",variant:"primary",onClick:()=>c(!0),children:[s.jsx(n3,{size:14})," ",u("settings.devices_pair_btn")]}),children:[a&&s.jsx(at,{}),!a&&t.length===0&&s.jsx(pt,{children:u("settings.devices_empty")}),t.length>0&&s.jsx("ul",{className:"space-y-2 text-sm",children:t.map(h=>s.jsxs("li",{className:"flex items-center gap-3 rounded-md border border-border bg-muted/30 px-3 py-2",children:[s.jsx("span",{className:"font-medium",children:h.label||h.id}),s.jsx(He,{tone:h.kind==="web"?"info":h.kind==="deck"?"success":"muted",children:h.kind}),s.jsxs("span",{className:"font-mono text-xs text-muted-fg",children:["…",h.token_suffix]}),s.jsxs("span",{className:"ml-auto text-xs text-muted-fg",children:[u("settings.devices_last_seen")," ",h.last_seen?new Date(h.last_seen).toLocaleString():u("settings.devices_never")]}),s.jsx(se,{size:"sm",variant:"destructive",onClick:()=>m(h.id),children:u("settings.devices_revoke")})]},h.id))}),s.jsx(y9,{open:l,onClose:()=>c(!1),onPaired:()=>o()})]}),s.jsxs(Fe,{title:u("settings.token"),description:u("settings.token_sub"),children:[s.jsx(ae,{label:u("settings_ui.bearer_label"),children:s.jsx(Ne,{type:"password",placeholder:S_()?u("settings.token_active"):u("settings.token_paste"),value:d,onChange:h=>p(h.target.value),className:"font-mono",onKeyDown:h=>{h.key==="Enter"&&g()}})}),s.jsx("div",{className:"mt-2",children:s.jsx(se,{variant:"primary",onClick:g,children:u("common.save")})})]})]})}const k9=[{key:"daemon",label:"Daemon",description:"~/.apx/config.json. General APX config.",fields:[{path:"port",label:"Port",kind:"number",placeholder:"7430"},{path:"host",label:"Host",placeholder:"127.0.0.1"},{path:"log_level",label:"Log level",placeholder:"info"},{path:"user.language",label:"Language",placeholder:"en"},{path:"user.locale",label:"Locale",placeholder:"en-US"},{path:"user.timezone",label:"Timezone",placeholder:"America/Argentina/Salta"}]},{key:"super-agent",label:"Super-agent",fields:[{path:"super_agent.enabled",label:"Super-agent enabled",kind:"boolean"},{path:"super_agent.model",label:"Model",placeholder:"gemini:gemini-2.5-flash"},{path:"super_agent.permission_mode",label:"Permission mode",kind:"select",options:jb.map(e=>({value:e,label:e}))},{path:"super_agent.system",label:"Extra prompt",kind:"textarea"}]},{key:"telegram",label:"Telegram",fields:[{path:"telegram.enabled",label:"Polling enabled",kind:"boolean"},{path:"telegram.poll_interval_ms",label:"Poll interval ms",kind:"number",placeholder:"1500"},{path:"telegram.respond_with_engine",label:"Respond with engine",kind:"boolean"},{path:"telegram.route_to_agent",label:"Route to agent",placeholder:"master"},{path:"telegram.channels.0.chat_id",label:"Default chat ID"},{path:"telegram.channels.0.bot_token",label:"Default bot token",kind:"password"}]},{key:"engines",label:"Engines",fields:[{path:"engines.anthropic.api_key",label:"Anthropic API key",kind:"password"},{path:"engines.openai.api_key",label:"OpenAI API key",kind:"password"},{path:"engines.openai.base_url",label:"OpenAI base URL",placeholder:"https://api.openai.com/v1"},{path:"engines.groq.api_key",label:"Groq API key",kind:"password"},{path:"engines.groq.base_url",label:"Groq base URL",placeholder:"https://api.groq.com/openai/v1"},{path:"engines.openrouter.api_key",label:"OpenRouter API key",kind:"password"},{path:"engines.openrouter.base_url",label:"OpenRouter base URL",placeholder:"https://openrouter.ai/api/v1"},{path:"engines.gemini.api_key",label:"Gemini API key",kind:"password"},{path:"engines.ollama.base_url",label:"Ollama URL",placeholder:"http://localhost:11434"}]}];function w9(){const{config:e,isLoading:t,patch:a,mutate:o}=Zr();if(t)return s.jsx(at,{});const l=async c=>{const d={};for(const[p,m]of Object.entries(V_(c)))ds(m)||(d[p]=m);await a(d),o()};return s.jsx(Fe,{title:u("global_config.title"),description:u("settings_ui.global_config_desc"),children:s.jsx(Fx,{sections:k9,source:e,jsonTitle:"~/.apx/config.json",jsonDescription:u("settings_ui.global_json_desc"),onSaveFields:async(c,d)=>{await a(c,d),o()},onSaveJson:l})})}function S9(){const e=Ze(),{health:t,isUp:a}=CN(),o=async()=>{try{await ni.reload(),e.success(u("settings.advanced.reload_success"))}catch(l){e.error(l.message)}};return s.jsxs("div",{className:"space-y-6",children:[s.jsx(Fe,{title:u("daemon.version"),action:s.jsx(se,{size:"sm",onClick:o,children:u("common.reload")}),children:s.jsxs("div",{className:"grid grid-cols-3 gap-3 text-sm",children:[s.jsx(ox,{label:u("daemon.version"),value:t?.version||"—"}),s.jsx(ox,{label:u("daemon.uptime"),value:t?`${t.uptime_s}s`:"—"}),s.jsx(ox,{label:u("daemon.status"),value:u(a?"daemon.running":"daemon.down"),ok:a})]})}),s.jsx(w9,{})]})}function ox({label:e,value:t,ok:a}){return s.jsxs("div",{className:"rounded-md border border-border bg-muted/30 p-3",children:[s.jsx("div",{className:"text-xs uppercase tracking-wide text-muted-fg",children:e}),s.jsxs("div",{className:"mt-1 flex items-center gap-2 text-base font-medium",children:[a!==void 0&&s.jsx(pu,{ok:a}),s.jsx("span",{children:t})]})]})}function C9(){const{preference:e,set:t}=kb(),[a,o]=x.useState(y_()),l=c=>{JC(c),o(c),window.location.reload()};return s.jsxs("div",{className:"grid gap-6 xl:grid-cols-2 xl:items-start",children:[s.jsx(Fe,{title:u("settings.appearance"),children:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(se,{variant:e==="light"?"primary":"secondary",onClick:()=>t("light"),children:u("settings.light_mode")}),s.jsx(se,{variant:e==="dark"?"primary":"secondary",onClick:()=>t("dark"),children:u("settings.dark_mode")}),s.jsx(se,{variant:e==="system"?"primary":"secondary",onClick:()=>t("system"),children:u("settings.system_mode")})]})}),s.jsx(Fe,{title:u("settings.language"),children:s.jsx("div",{className:"flex items-center gap-2",children:eN.map(c=>s.jsx(se,{variant:a===c.value?"primary":"secondary",onClick:()=>l(c.value),children:c.label},c.value))})})]})}function N9({className:e,...t}){return s.jsx("kbd",{"data-slot":"kbd",className:Ct("pointer-events-none inline-flex h-5 w-fit min-w-5 items-center justify-center gap-1 rounded-sm bg-muted px-1 font-sans text-xs font-medium text-muted-foreground select-none in-data-[slot=tooltip-content]:bg-background/20 in-data-[slot=tooltip-content]:text-background dark:in-data-[slot=tooltip-content]:bg-background/10 [&_svg:not([class*='size-'])]:size-3",e),...t})}const Zx=typeof navigator<"u"&&/mac/i.test(navigator.platform||"");function E9(e){return(Zx?{CommandOrControl:"⌘ Cmd",CmdOrCtrl:"⌘ Cmd",Command:"⌘ Cmd",Cmd:"⌘ Cmd",Super:"⌘ Cmd",Meta:"⌘ Cmd",Control:"⌃ Ctrl",Ctrl:"⌃ Ctrl",Option:"⌥ Opt",Alt:"⌥ Opt",Shift:"⇧ Shift"}:{CommandOrControl:"Ctrl",CmdOrCtrl:"Ctrl",Control:"Ctrl",Ctrl:"Ctrl",Command:"Win",Cmd:"Win",Super:"Win",Meta:"Win",Option:"Alt",Alt:"Alt",Shift:"Shift"})[e]??e}function R9(e){return(e||"").split("+").map(t=>t.trim()).filter(Boolean)}function T9(e){const t=e.code;if(/^(Shift|Control|Alt|Meta|OS)(Left|Right)?$/.test(t))return null;let a;if((a=t.match(/^Key([A-Z])$/))||(a=t.match(/^Digit(\d)$/))||(a=t.match(/^Numpad(\d)$/))||(a=t.match(/^(F\d{1,2})$/))||(a=t.match(/^Arrow(Up|Down|Left|Right)$/)))return a[1];const o={Space:"Space",Enter:"Enter",Tab:"Tab",Backspace:"Backspace",Delete:"Delete",Home:"Home",End:"End",PageUp:"PageUp",PageDown:"PageDown",Insert:"Insert",Minus:"-",Equal:"=",BracketLeft:"[",BracketRight:"]",Backslash:"\\",Semicolon:";",Quote:"'",Comma:",",Period:".",Slash:"/",Backquote:"`"};return o[t]?o[t]:e.key&&e.key.length===1?e.key.toUpperCase():null}function A9(e){const t=T9(e);if(!t)return null;const a=[];(Zx?e.metaKey:e.ctrlKey)&&a.push("CommandOrControl"),Zx&&e.ctrlKey&&a.push("Control"),e.altKey&&a.push("Alt"),e.shiftKey&&a.push("Shift");const o=a.length>0,l=/^F\d{1,2}$/.test(t);return!o&&!l?null:(a.push(t),a.join("+"))}function M9({value:e,onChange:t,disabled:a,className:o,trailing:l}){const[c,d]=x.useState(!1),p=x.useRef(null);x.useEffect(()=>{if(!c)return;const g=h=>{if(h.preventDefault(),h.stopPropagation(),h.key==="Escape"){d(!1);return}const b=A9(h);b&&(t(b),d(!1))};return window.addEventListener("keydown",g,!0),()=>window.removeEventListener("keydown",g,!0)},[c,t]);const m=R9(e);return s.jsxs("div",{className:he("flex h-9 w-full max-w-md items-center rounded-md border border-border bg-transparent transition",c&&"ring-2 ring-ring",a&&"opacity-50",o),children:[s.jsxs("button",{ref:p,type:"button",disabled:a,onClick:()=>d(g=>!g),onBlur:()=>d(!1),"aria-label":u("modules_ui.desktop_shortcut_record"),className:"flex h-full min-w-0 flex-1 items-center gap-1.5 rounded-l-md px-3 text-sm outline-none hover:bg-muted/40 focus-visible:bg-muted/40",children:[c?s.jsx("span",{className:"text-muted-fg",children:u("modules_ui.desktop_shortcut_recording")}):m.length?s.jsx("span",{className:"flex min-w-0 flex-wrap items-center gap-1",children:m.map((g,h)=>s.jsxs("span",{className:"flex items-center gap-1",children:[h>0&&s.jsx("span",{className:"text-xs text-muted-fg",children:"+"}),s.jsx(N9,{className:"h-6 min-w-6 border border-border bg-muted px-1.5 text-[13px] font-semibold text-fg shadow-sm",children:E9(g)})]},h))}):s.jsx("span",{className:"text-muted-fg",children:u("modules_ui.desktop_shortcut_record")}),s.jsx("span",{className:"ml-auto whitespace-nowrap pl-2 text-xs text-muted-fg",children:u(c?"modules_ui.desktop_shortcut_esc":"modules_ui.desktop_shortcut_change")})]}),l?s.jsx("div",{className:"flex h-full items-center border-l border-border px-1",children:l}):null]})}const Ll={status:()=>ne.get("/desktop/status"),start:()=>ne.post("/desktop/start",{}),stop:()=>ne.post("/desktop/stop",{}),restart:()=>ne.post("/desktop/restart",{}),autostartGet:()=>ne.get("/desktop/autostart"),autostartSet:e=>ne.post("/desktop/autostart",{enable:e})};function O9(e=30){return ne.get(`/messages/global?channel=desktop&limit=${e}`)}function FE({showConfigLink:e=!1}){const t=Ze(),{data:a,isLoading:o,mutate:l}=$e("/desktop/status",()=>Ll.status(),{refreshInterval:5e3}),c=!!a?.running,[d,p]=x.useState(null),m=async(_,j)=>{p(_);try{await j()}catch(E){t.error(E.message)}finally{p(null),setTimeout(()=>l(),1200)}},g=()=>m("start",async()=>{const _=await Ll.start();t.success(_.already?u("modules_ui.desktop_start_already"):u("modules_ui.desktop_start_done"))}),h=()=>m("stop",async()=>{const _=await Ll.stop();t.success(_.stopped?u("modules_ui.desktop_stop_done"):u("modules_ui.desktop_stop_none"))}),b=()=>m("restart",async()=>{(await Ll.restart()).reloaded>0?t.success(u("modules_ui.desktop_restart_done")):t.info(u("modules_ui.desktop_restart_none"))});return s.jsx(Fe,{title:u("desktop_screen.status_title"),description:u("modules_ui.desktop_status_desc"),action:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(se,{variant:"primary",size:"sm",onClick:g,loading:d==="start",disabled:c||d!==null&&d!=="start",children:u("modules_ui.desktop_start")}),s.jsx(se,{variant:"secondary",size:"sm",onClick:h,loading:d==="stop",disabled:!c||d!==null&&d!=="stop",children:u("modules_ui.desktop_stop")}),s.jsx(se,{variant:"secondary",size:"sm",onClick:b,loading:d==="restart",disabled:!c||d!==null&&d!=="restart",title:u("modules_ui.desktop_restart_hint"),children:u("modules_ui.desktop_restart")}),e&&s.jsx(Qf,{to:"/settings/desktop",children:s.jsxs(se,{size:"sm",variant:"ghost",children:[s.jsx(Vc,{size:14})," ",u("desktop_screen.open_config")]})})]}),children:o?s.jsx(at,{}):s.jsxs("div",{className:"flex flex-wrap items-center gap-x-2 gap-y-1 text-sm",children:[s.jsx(pu,{ok:c}),s.jsx("span",{className:"font-medium",children:u(c?"modules_ui.desktop_running":"modules_ui.desktop_stopped")}),s.jsx("button",{type:"button",onClick:()=>l(),className:"text-xs text-muted-fg underline-offset-2 hover:underline",children:u("modules_ui.desktop_refresh")}),s.jsxs("span",{className:"text-xs text-muted-fg",children:["(",u("modules_ui.desktop_from_terminal")," ",s.jsx(vk,{children:"apx desktop start"})," · ",s.jsx(vk,{children:"apx desktop --debug"}),")"]})]})})}const z9="CommandOrControl+G",D9=()=>[{value:"left",label:u("modules_ui.desktop_pos_left")},{value:"center",label:u("modules_ui.desktop_pos_center")},{value:"right",label:u("modules_ui.desktop_pos_right")}],P9=()=>[{value:"system",label:u("modules_ui.desktop_theme_system")},{value:"light",label:u("modules_ui.desktop_theme_light")},{value:"dark",label:u("modules_ui.desktop_theme_dark")}];function L9(){const e=Ze(),{config:t,isLoading:a,patch:o}=Zr(),l=t,c=l.desktop?.shortcut||l.overlay?.shortcut||z9,d=l.desktop?.enabled!==!1,p=l.desktop?.theme||"system",m=l.desktop?.position||"right",{data:g,mutate:h}=$e("/desktop/autostart",()=>Ll.autostartGet()),[b,_]=x.useState(c),[j,E]=x.useState(!1),[k,y]=x.useState(!1);x.useEffect(()=>_(c),[c]);const w=async()=>{const R=b.trim();if(!(!R||R===c)){E(!0);try{await o({"desktop.shortcut":R}),e.success(u("modules_ui.desktop_shortcut_saved"))}catch(A){e.error(A.message)}finally{E(!1)}}},S=async(R,A,T)=>{E(!0);try{await o({[R]:A}),e.success(T)}catch(O){e.error(O.message)}finally{E(!1)}},N=async R=>{y(!0);try{await Ll.autostartSet(R),await h(),e.success(u(R?"modules_ui.desktop_autostart_on":"modules_ui.desktop_autostart_off"))}catch(A){e.error(A.message)}finally{y(!1)}};return s.jsxs("div",{className:"space-y-6","data-testid":"settings-desktop",children:[s.jsx(FE,{}),s.jsx(Fe,{title:u("desktop_screen.autostart_title"),description:u("modules_ui.desktop_autostart_desc"),children:g?s.jsxs("div",{className:"flex items-center justify-between gap-3",children:[s.jsx(Gt,{checked:g.enabled,onChange:N,disabled:k,label:g.enabled?u("common.enabled"):u("common.disabled")}),s.jsx("span",{className:"text-xs text-muted-fg",children:u("modules_ui.desktop_platform",{platform:g.platform})})]}):s.jsx(at,{})}),s.jsx(Fe,{title:u("desktop_screen.shortcut_title"),description:u("modules_ui.desktop_shortcut_desc"),children:a?s.jsx(at,{}):s.jsx(ae,{label:u("modules_ui.desktop_accelerator"),hint:u("modules_ui.desktop_accelerator_hint"),children:s.jsx(M9,{value:b,onChange:_,disabled:j,trailing:s.jsx(se,{variant:"primary",size:"sm",onClick:w,loading:j,disabled:!b.trim()||b.trim()===c,children:u("common.save")})})})}),s.jsx(Fe,{title:u("desktop_screen.appearance_title"),description:u("modules_ui.desktop_appearance_desc"),children:a?s.jsx(at,{}):s.jsxs("div",{className:"grid grid-cols-1 gap-3 sm:grid-cols-2",children:[s.jsx(ae,{label:u("modules_ui.desktop_theme"),hint:u("modules_ui.desktop_restart_apply"),children:s.jsx(ut,{value:p,onChange:R=>S("desktop.theme",R,u("modules_ui.desktop_theme_set",{value:R})),options:P9(),disabled:j})}),s.jsx(ae,{label:u("modules_ui.desktop_position"),hint:u("modules_ui.desktop_position_hint"),children:s.jsx(ut,{value:m,onChange:R=>S("desktop.position",R,u("modules_ui.desktop_position_set",{value:R})),options:D9(),disabled:j})})]})}),s.jsx(Fe,{title:u("desktop_screen.activation_title"),description:u("modules_ui.desktop_activation_desc"),children:a?s.jsx(at,{}):s.jsxs("div",{className:"space-y-3",children:[s.jsx(Gt,{checked:d,onChange:R=>S("desktop.enabled",R,u(R?"modules_ui.desktop_enabled_toast":"modules_ui.desktop_disabled_toast")),disabled:j,label:u(d?"modules_ui.desktop_plugin_on":"modules_ui.desktop_plugin_off")}),s.jsxs("p",{className:"text-xs text-muted-fg",children:[u("modules_ui.desktop_stt_engine")," ",s.jsx(Qf,{to:"/settings/voice",className:"font-medium text-fg underline underline-offset-2",children:u("nav.modules.voice")})," ",u("modules_ui.desktop_stt_engine_suffix")]})]})})]})}function I9({engines:e,order:t,onToggleEnabled:a,onToggleEmotions:o,onReorder:l,onConfigure:c,onRemove:d,onAddNew:p,busy:m}){const g=e.filter(j=>j.id!=="mock"),h=new Map(g.map(j=>[j.id,j])),b=[...t.filter(j=>h.has(j)),...g.map(j=>j.id).filter(j=>!t.includes(j))],_=(j,E)=>{const k=b.indexOf(j),y=k+E;if(k<0||y<0||y>=b.length)return;const w=[...b];[w[k],w[y]]=[w[y],w[k]],l(w)};return s.jsxs("div",{className:"space-y-2",children:[b.map((j,E)=>{const k=h.get(j),y=Lf[j],w=k.custom?k.label||j:y?.name||j,S=k.custom?k.note||u("voice_ui.custom_note"):y?.note||"";return s.jsxs("div",{"data-testid":`voice-provider-${j}`,className:he("flex items-center gap-3 rounded-lg border px-3 py-2.5 border-border",!k.enabled&&"opacity-60"),children:[s.jsxs("div",{className:"flex flex-col",children:[s.jsx("button",{type:"button",onClick:()=>_(j,-1),disabled:m||E===0,"aria-label":u("voice_ui.move_up"),"data-testid":`voice-provider-${j}-up`,className:"text-muted-fg hover:text-fg disabled:opacity-30",children:s.jsx(fb,{className:"size-3.5"})}),s.jsx("button",{type:"button",onClick:()=>_(j,1),disabled:m||E===b.length-1,"aria-label":u("voice_ui.move_down"),"data-testid":`voice-provider-${j}-down`,className:"text-muted-fg hover:text-fg disabled:opacity-30",children:s.jsx(ns,{className:"size-3.5"})})]}),s.jsx(pu,{ok:k.available?!0:k.configured?!1:null}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:"text-sm font-medium",children:w}),k.custom&&s.jsx(He,{tone:"info",children:u("voice_ui.badge_custom")}),y?.local&&s.jsx(He,{tone:"info",children:u("voice_ui.badge_local")}),k.available?s.jsx(He,{tone:"success",children:u("voice_ui.badge_available")}):k.configured?s.jsx(He,{tone:"warning",children:u("voice_ui.badge_unavailable")}):s.jsx(He,{tone:"muted",children:u("voice_ui.badge_not_configured")})]}),s.jsx("div",{className:"truncate text-xs text-muted-fg",children:S})]}),s.jsxs("div",{className:"flex shrink-0 items-center gap-2",children:[k.emotionsApplicable&&s.jsx("button",{type:"button",onClick:()=>o(j,!k.emotionsOn),disabled:m,title:u("voice_ui.emotions_hint"),"data-testid":`voice-provider-${j}-emotions`,className:he("rounded-md border px-2 py-1 text-xs font-medium transition-colors disabled:opacity-50",k.emotionsOn?"border-emerald-500/50 bg-emerald-500/10 text-emerald-300":"border-border text-muted-fg hover:text-fg"),children:u("voice_ui.emotions_short")}),s.jsx(Gt,{checked:k.enabled,onChange:N=>a(j,N),disabled:m}),s.jsxs(se,{size:"sm",variant:"secondary",onClick:()=>c(j),"data-testid":`voice-provider-${j}-config`,children:[s.jsx(s3,{className:"size-3.5"})," ",u("voice_ui.configure")]}),k.custom&&s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>d(j),disabled:m,"aria-label":u("voice_ui.remove"),"data-testid":`voice-provider-${j}-remove`,children:s.jsx(_n,{className:"size-3.5"})})]})]},j)}),s.jsxs("button",{type:"button",onClick:p,disabled:m,"data-testid":"voice-provider-add",className:"flex w-full items-center justify-center gap-2 rounded-lg border border-dashed border-border px-3 py-2.5 text-sm text-muted-fg transition-colors hover:border-emerald-500/50 hover:text-fg disabled:opacity-50",children:[s.jsx(It,{className:"size-4"})," ",u("voice_ui.add_provider")]})]})}function Cn(e){return typeof e=="string"?e:e==null?"":String(e)}function B9(e){return e.toLowerCase().normalize("NFD").replace(/[\u0300-\u036f]/g,"").replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"").slice(0,40)}function Pw({on:e,setOn:t,tags:a,setTags:o}){return s.jsxs("div",{className:"rounded-md border border-border/60 p-3 space-y-2",children:[s.jsx(Gt,{checked:e,onChange:t,label:u("voice_ui.emotions_label")}),s.jsx("p",{className:"text-xs text-muted-fg",children:u("voice_ui.emotions_hint")}),e&&s.jsx(ae,{label:u("voice_ui.emotions_tags_label"),hint:u("voice_ui.emotions_tags_hint"),children:s.jsx(Ne,{value:a,onChange:l=>o(l.target.value),placeholder:aL.join(", ")})})]})}function U9({open:e,providerId:t,config:a,onClose:o,onSave:l}){const[c,d]=x.useState(!1),[p,m]=x.useState(null),[g,h]=x.useState(""),[b,_]=x.useState({}),[j,E]=x.useState(!1),[k,y]=x.useState(""),[w,S]=x.useState(!1);if(x.useEffect(()=>{if(!e||!t)return;m(null),h("");const D=a||{},L=D.emotions;if(E(!!L?.enabled),y(Array.isArray(L?.tags)?L.tags.join(", "):""),S(!1),t==="__new__"||t.startsWith("custom:")){const V=D;_({label:Cn(V.label),base_url:Cn(V.base_url),model:Cn(V.model),voice:Cn(V.voice),format:Cn(V.format),style:Cn(V.style),temperature:Cn(V.temperature)})}else if(t==="piper"){const V=D;_({bin:Cn(V.bin),model:Cn(V.model),speaker:Cn(V.speaker)})}else if(t==="elevenlabs"){const V=D;_({model:Cn(V.model),voice_id:Cn(V.voice_id),output_format:Cn(V.output_format)})}else if(t==="openai"){const V=D;_({model:Cn(V.model)||"tts-1",voice:Cn(V.voice)||"alloy",format:Cn(V.format)||"mp3"})}else if(t==="gemini"){const V=D;_({model:Cn(V.model),voice:Cn(V.voice)||"Kore",style:Cn(V.style)})}else _({})},[e,t,a]),!t)return null;const N=t==="__new__",R=N||t.startsWith("custom:"),A=Lf[t],T=D=>_(L=>({...L,...D})),O=t!=="piper"&&t!=="mock",z=O&&ds(a?.api_key),U=z?u("voice_ui.api_key_set",{suffix:Do(a?.api_key)??""}):u("voice_ui.api_key_label"),P=N?u("voice_ui.new_provider"):R?b.label||t.slice(7):A?.name||t,B=async()=>{d(!0),m(null);try{const D=N?B9(b.label):R?t.slice(7):"";if(R){if(!b.label.trim())throw new Error(u("voice_ui.err_label_required"));if(!b.base_url.trim())throw new Error(u("voice_ui.err_base_url_required"));if(!D)throw new Error(u("voice_ui.err_label_required"))}const L=R?`voice.tts.custom.${D}`:`voice.tts.${t}`,$={},V=[],H=(F,Y)=>{Y.trim()?$[`${L}.${F}`]=Y.trim():V.push(`${L}.${F}`)};if(R?($[`${L}.label`]=b.label.trim(),$[`${L}.base_url`]=b.base_url.trim(),H("style",b.style),b.temperature.trim()&&!Number.isNaN(Number(b.temperature))?$[`${L}.temperature`]=Number(b.temperature):V.push(`${L}.temperature`),H("model",b.model),H("voice",b.voice)):t==="piper"?(H("bin",b.bin),H("model",b.model),b.speaker.trim()?$[`${L}.speaker`]=b.speaker.trim():V.push(`${L}.speaker`)):t==="elevenlabs"?(H("model",b.model),H("voice_id",b.voice_id),H("output_format",b.output_format)):t==="openai"?(H("model",b.model),H("voice",b.voice),H("format",b.format)):t==="gemini"&&(H("model",b.model),H("voice",b.voice),H("style",b.style)),R||t==="gemini"){$[`${L}.emotions.enabled`]=j;const F=k.split(",").map(Y=>Y.trim().toLowerCase()).filter(Boolean);F.length?$[`${L}.emotions.tags`]=F:V.push(`${L}.emotions.tags`)}O&&g.trim()&&($[`${L}.api_key`]=g.trim()),await l({set:$,unset:V}),o()}catch(D){m(D.message||u("voice_ui.err_save"))}finally{d(!1)}};return s.jsx(sn,{open:e,onClose:o,title:u("voice_screen.configure_provider",{name:P}),description:R?u("voice_ui.custom_desc"):A?.note,size:"md",footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:o,disabled:c,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:B,loading:c,"data-testid":"voice-provider-save",children:u("common.save")})]}),children:s.jsxs("div",{className:"space-y-3",children:[t==="piper"&&s.jsxs(s.Fragment,{children:[s.jsx(ae,{label:u("voice_ui.piper_bin_label"),hint:u("voice_ui.piper_bin_hint"),children:s.jsx(Ne,{value:b.bin,onChange:D=>T({bin:D.target.value}),placeholder:"piper"})}),s.jsx(ae,{label:u("voice_ui.piper_model_label"),hint:u("voice_ui.piper_model_hint"),children:s.jsx(Ne,{value:b.model,onChange:D=>T({model:D.target.value}),placeholder:"/abs/path/voice.onnx"})}),s.jsx(ae,{label:u("voice_ui.piper_speaker_label"),hint:u("voice_ui.piper_speaker_hint"),children:s.jsx(Ne,{value:b.speaker,onChange:D=>T({speaker:D.target.value}),placeholder:"0"})})]}),t==="elevenlabs"&&s.jsxs(s.Fragment,{children:[s.jsx(ae,{label:u("voice_ui.api_key_label"),hint:z?u("voice_ui.api_key_keep_hint"):u("voice_ui.api_key_secret_hint",{env:"ELEVENLABS_API_KEY"}),children:s.jsx(Ne,{type:"password",autoComplete:"new-password",value:g,onChange:D=>h(D.target.value),placeholder:U})}),s.jsx(ae,{label:u("voice_ui.model_label"),children:s.jsx(ut,{value:b.model||"",onChange:D=>T({model:D}),options:nL.map(D=>({value:D,label:D})),placeholder:"eleven_multilingual_v2"})}),s.jsx(ae,{label:u("voice_ui.voice_id_label"),hint:u("voice_ui.voice_id_hint"),children:s.jsx(Ne,{value:b.voice_id,onChange:D=>T({voice_id:D.target.value}),placeholder:"EXAVITQu4vr4xnSDxMaL"})}),s.jsx(ae,{label:u("voice_ui.output_format_label"),children:s.jsx(Ne,{value:b.output_format,onChange:D=>T({output_format:D.target.value}),placeholder:"mp3_44100_128"})})]}),t==="openai"&&s.jsxs(s.Fragment,{children:[s.jsx(ae,{label:u("voice_ui.api_key_label"),hint:z?u("voice_ui.api_key_keep_hint"):u("voice_ui.api_key_reuse_hint",{engine:"engines.openai.api_key",env:"OPENAI_API_KEY"}),children:s.jsx(Ne,{type:"password",autoComplete:"new-password",value:g,onChange:D=>h(D.target.value),placeholder:U})}),s.jsx(ae,{label:u("voice_ui.model_label"),children:s.jsx(ut,{value:b.model||"tts-1",onChange:D=>T({model:D}),options:sL.map(D=>({value:D,label:D}))})}),s.jsx(ae,{label:u("voice_ui.voice_label"),children:s.jsx(ut,{value:b.voice||"alloy",onChange:D=>T({voice:D}),options:eL.map(D=>({value:D,label:D}))})}),s.jsx(ae,{label:u("voice_ui.format_label"),children:s.jsx(ut,{value:b.format||"mp3",onChange:D=>T({format:D}),options:["mp3","opus","aac","flac","wav"].map(D=>({value:D,label:D}))})})]}),R&&s.jsxs(s.Fragment,{children:[s.jsx(ae,{label:u("voice_ui.label_label"),hint:u("voice_ui.label_hint"),children:s.jsx(Ne,{value:b.label,onChange:D=>T({label:D.target.value}),placeholder:"QVox"})}),s.jsx(ae,{label:u("voice_ui.base_url_req_label"),hint:u("voice_ui.base_url_req_hint"),children:s.jsx(Ne,{value:b.base_url,onChange:D=>T({base_url:D.target.value}),placeholder:"http://127.0.0.1:5111/v1"})}),s.jsx(ae,{label:u("voice_ui.api_key_label"),hint:u(z?"voice_ui.api_key_keep_hint":"voice_ui.api_key_optional_hint"),children:s.jsx(Ne,{type:"password",autoComplete:"new-password",value:g,onChange:D=>h(D.target.value),placeholder:U})}),s.jsx(ae,{label:u("voice_ui.style_label"),hint:u("voice_ui.openai_style_hint"),children:s.jsx(un,{rows:2,value:b.style||"",onChange:D=>T({style:D.target.value}),placeholder:u("voice_ui.style_ph")})}),s.jsx(ae,{label:u("voice_ui.temperature_label"),hint:u("voice_ui.temperature_hint"),children:s.jsx(Ne,{value:b.temperature,onChange:D=>T({temperature:D.target.value}),inputMode:"decimal",placeholder:"0.7"})}),s.jsx(Pw,{on:j,setOn:E,tags:k,setTags:y}),s.jsxs("div",{children:[s.jsxs("button",{type:"button",onClick:()=>S(D=>!D),className:"text-xs text-muted-fg hover:text-fg",children:[w?"▾ ":"▸ ",u("voice_ui.advanced")]}),w&&s.jsxs("div",{className:"mt-2 space-y-3",children:[s.jsx(ae,{label:u("voice_ui.model_label"),hint:u("voice_ui.custom_model_hint"),children:s.jsx(Ne,{value:b.model,onChange:D=>T({model:D.target.value}),placeholder:u("voice_ui.custom_optional_ph")})}),s.jsx(ae,{label:u("voice_ui.voice_label"),hint:u("voice_ui.custom_voice_hint"),children:s.jsx(Ne,{value:b.voice,onChange:D=>T({voice:D.target.value}),placeholder:u("voice_ui.custom_optional_ph")})})]})]})]}),t==="gemini"&&s.jsxs(s.Fragment,{children:[s.jsx(ae,{label:u("voice_ui.api_key_label"),hint:z?u("voice_ui.api_key_keep_hint"):u("voice_ui.api_key_reuse_hint",{engine:"engines.gemini.api_key",env:"GEMINI_API_KEY"}),children:s.jsx(Ne,{type:"password",autoComplete:"new-password",value:g,onChange:D=>h(D.target.value),placeholder:U})}),s.jsx(ae,{label:u("voice_ui.model_label"),hint:u("voice_ui.gemini_model_hint"),children:s.jsx(Ne,{value:b.model,onChange:D=>T({model:D.target.value}),placeholder:"gemini-2.5-flash-preview-tts"})}),s.jsx(ae,{label:u("voice_ui.voice_label"),children:s.jsx(ut,{value:b.voice||"Kore",onChange:D=>T({voice:D}),options:tL.map(D=>({value:D,label:D}))})}),s.jsx(ae,{label:u("voice_ui.style_label"),hint:u("voice_ui.style_hint"),children:s.jsx(un,{rows:2,value:b.style||"",onChange:D=>T({style:D.target.value}),placeholder:u("voice_ui.style_ph")})}),s.jsx(Pw,{on:j,setOn:E,tags:k,setTags:y})]}),t==="mock"&&s.jsx("p",{className:"text-sm text-muted-fg",children:u("voice_ui.mock_desc")}),p&&s.jsx("div",{className:"rounded-md border border-destructive/40 bg-destructive/10 px-3 py-2 text-xs text-destructive",children:p})]})})}function $9(){const e=x.useRef(null),t=x.useRef(null),[a,o]=x.useState(!1),[l,c]=x.useState(!1),d=x.useCallback(()=>{t.current&&(URL.revokeObjectURL(t.current),t.current=null)},[]);x.useEffect(()=>()=>{e.current&&(e.current.pause(),e.current=null),d()},[d]);const p=x.useCallback(async g=>{c(!0);try{d();const h=await oL(g);t.current=h,e.current||(e.current=new Audio);const b=e.current;b.src=h,b.onended=()=>o(!1),b.onerror=()=>o(!1),await b.play(),o(!0)}finally{c(!1)}},[d]),m=x.useCallback(()=>{e.current&&(e.current.pause(),e.current.currentTime=0),o(!1)},[]);return{play:p,stop:m,playing:a,loading:l}}function H9({engines:e,defaultProvider:t,mode:a}){const o=Ze(),{play:l,stop:c,playing:d,loading:p}=$9(),[m,g]=x.useState(u("voice_ui.test_default_text")),[h,b]=x.useState(""),[_,j]=x.useState(!1),[E,k]=x.useState(null),w=[{value:"",label:a==="single"&&t&&t!=="auto"?u("voice_ui.test_default_engine",{name:Lf[t]?.name||t}):u("voice_ui.test_default_chain")},...e.filter(N=>N.id!=="mock").map(N=>({value:N.id,label:N.custom?N.label||N.id:Lf[N.id]?.name||N.id,disabled:!N.available}))],S=async()=>{const N=m.trim();if(!N){o.error(u("voice_ui.test_empty_error"));return}j(!0);try{const R=await If.say({text:N,provider:h||void 0});k(R),await l(R.audio_path)}catch(R){o.error(R.message||u("voice_ui.test_synth_error"))}finally{j(!1)}};return s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("voice_ui.test_engine_label"),hint:u("voice_ui.test_engine_hint"),children:s.jsx(ut,{value:h,onChange:b,options:w})}),s.jsx(ae,{label:u("voice_ui.test_text_label"),children:s.jsx(un,{rows:2,value:m,onChange:N=>g(N.target.value),placeholder:u("voice_ui.test_text_ph"),"data-testid":"voice-test-input"})}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsxs(se,{variant:"primary",onClick:S,loading:_,disabled:p,"data-testid":"voice-test-say",children:[s.jsx(c3,{className:"size-4"})," ",u("voice_ui.say_this")]}),d?s.jsxs(se,{variant:"secondary",onClick:c,"data-testid":"voice-test-stop",children:[s.jsx(KS,{className:"size-4"})," ",u("voice_ui.stop")]}):E?s.jsxs(se,{variant:"secondary",onClick:()=>l(E.audio_path),loading:p,"data-testid":"voice-test-replay",children:[s.jsx(vb,{className:"size-4"})," ",u("voice_ui.replay")]}):null,E&&s.jsxs("span",{className:"text-xs text-muted-fg",children:[u("voice_ui.engine_result"),": ",s.jsx("strong",{children:E.provider}),E.duration_s?` · ${E.duration_s.toFixed(1)}s`:""]})]})]})}const Lw={metal:{label:"Metal",cls:"text-emerald-400 border-emerald-500/40 bg-emerald-500/10"},cuda:{label:"CUDA",cls:"text-lime-400 border-lime-500/40 bg-lime-500/10"},rocm:{label:"Vulkan / ROCm",cls:"text-orange-400 border-orange-500/40 bg-orange-500/10"},none:{label:"CPU",cls:"text-muted-fg border-border bg-muted"}};function Iw({gpu:e}){const t=Lw[e]??Lw.none;return s.jsx("span",{className:`inline-flex items-center rounded-md border px-1.5 py-0.5 text-[11px] font-medium ${t.cls}`,children:t.label})}function V9(e){return e.backend==="mlx"?"Metal · mlx-whisper":e.backend==="faster"?(e.device==="cuda"?"CUDA":"CPU")+" · faster-whisper":e.backend}const q9=()=>[{value:"auto",label:u("voice_ui.stt_provider_auto")},{value:"local",label:u("voice_ui.stt_provider_local")},{value:"openai",label:u("voice_ui.stt_provider_openai")},{value:"custom",label:u("voice_ui.stt_provider_custom")}],Bw=()=>[{value:"auto",label:u("voice_ui.lang_auto")},{value:"es",label:u("voice_ui.lang_es")},{value:"en",label:u("voice_ui.lang_en")},{value:"pt",label:u("voice_ui.lang_pt")},{value:"fr",label:u("voice_ui.lang_fr")},{value:"it",label:u("voice_ui.lang_it")},{value:"de",label:u("voice_ui.lang_de")}];function F9({config:e,onPatch:t,busy:a}){const[o,l]=x.useState(null);x.useEffect(()=>{let L=!0;return If.sttHardware().then($=>{L&&l($)}).catch(()=>{}),()=>{L=!1}},[]);const c=e.provider||"auto",d=e.local||{},p=e.openai||{},m=e.custom||{},g=d.model||"small",h=d.language||"auto",b=c==="auto"||c==="local",_=(L,$,V)=>{const H=V.trim();H!==($||"").trim()&&t({[L]:H})},j=(L,$)=>{const V=$.trim();!V||ds(V)||t({[L]:V})},E=L=>ds(L)?u("voice_ui.api_key_set",{suffix:Do(L)??""}):u("voice_ui.api_key_label"),k=d.backend||"auto",y=o?.hardware.gpu||"none",w=k==="auto"?o?.recommended.backend||"faster":k,S=w==="mlx",N=S?"metal":w==="faster"&&y==="cuda"?"cuda":"none",R=()=>{const L=[{value:"auto",label:u("voice_ui.stt_backend_auto")}];return y==="metal"&&L.push({value:"mlx",label:"Metal — mlx-whisper"}),L.push({value:"faster",label:y==="cuda"?"CUDA — faster-whisper":"CPU — faster-whisper"}),L},[A,T]=x.useState([]);x.useEffect(()=>{let L=!0;return If.sttModels(w).then($=>{L&&T($.models)}).catch(()=>{L&&T([])}),()=>{L=!1}},[w]);const O=L=>`${L.id} · ${L.downloaded?"✓ "+L.size:L.size}`,z=()=>A.length?A.map(L=>({value:S?L.repo:L.id,label:O(L)})):rL.map(L=>({value:L,label:L})),U=S?d.mlx_model||o?.recommended.model||"":g,P=S?"transcription.local.mlx_model":"transcription.local.model",B=A.find(L=>(S?L.repo:L.id)===U),D=!!B&&!B.downloaded;return s.jsxs("div",{className:"space-y-3",children:[o&&s.jsxs("div",{className:"rounded-lg border border-border bg-muted px-3 py-2 text-sm",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2",children:[s.jsxs("span",{className:"text-muted-fg",children:[u("voice_ui.stt_hw_label"),":"]}),s.jsx(Iw,{gpu:o.hardware.gpu}),s.jsx("span",{className:"font-medium text-fg",children:o.hardware.gpuName||o.hardware.platform}),o.hardware.mem_gb?s.jsxs("span",{className:"text-muted-fg",children:["· ",o.hardware.mem_gb," GB",o.hardware.unified_memory?" unified":""]}):null]}),s.jsxs("div",{className:"mt-1 text-xs text-muted-fg",children:[u("voice_ui.stt_hw_recommended"),":"," ",s.jsx("span",{className:"text-fg",children:o.recommended.model})," ","(",V9(o.recommended),")",o.recommended.limited?` — ${u("voice_ui.stt_hw_limited")}`:""]})]}),s.jsx(ae,{label:u("voice_ui.stt_engine_label"),hint:u("voice_ui.stt_engine_hint"),children:s.jsx(ut,{value:c,onChange:L=>t({"transcription.provider":L}),options:q9(),disabled:a,className:"max-w-md"})}),b&&s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("voice_ui.stt_backend_label"),hint:u("voice_ui.stt_backend_hint"),children:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(ut,{value:k,onChange:L=>t({"transcription.local.backend":L}),options:R(),disabled:a,className:"max-w-xs"}),s.jsx(Iw,{gpu:N})]})}),s.jsxs("div",{className:"grid grid-cols-1 gap-3 sm:grid-cols-2",children:[s.jsx(ae,{label:u("voice_ui.stt_model_label"),hint:D?u("voice_ui.stt_model_needs_download",{size:B.size}):u("voice_ui.stt_model_hint"),children:s.jsx(ut,{value:U,onChange:L=>t({[P]:L}),options:z(),disabled:a})}),s.jsx(ae,{label:u("voice_ui.stt_language_label"),hint:u("voice_ui.stt_language_hint"),children:s.jsx(ut,{value:h,onChange:L=>t({"transcription.local.language":L}),options:Bw(),disabled:a})})]})]}),c==="openai"&&s.jsxs("div",{className:"grid grid-cols-1 gap-3 sm:grid-cols-2",children:[s.jsx(ae,{label:u("voice_ui.api_key_label"),hint:ds(p.api_key)?u("voice_ui.api_key_keep_hint"):u("voice_ui.api_key_reuse_hint",{engine:"engines.openai.api_key",env:"OPENAI_API_KEY"}),children:s.jsx(Ne,{type:"password",autoComplete:"new-password",defaultValue:"",placeholder:E(p.api_key),onBlur:L=>j("transcription.openai.api_key",L.target.value),disabled:a})}),s.jsx(ae,{label:u("voice_ui.stt_openai_model_label"),hint:u("voice_ui.stt_openai_model_hint"),children:s.jsx(Ne,{defaultValue:p.model||"",placeholder:"whisper-1",onBlur:L=>_("transcription.openai.model",p.model,L.target.value),disabled:a})})]}),c==="custom"&&s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("voice_ui.stt_custom_baseurl_label"),hint:u("voice_ui.stt_custom_baseurl_hint"),children:s.jsx(Ne,{defaultValue:m.base_url||"",placeholder:"http://localhost:8000/v1",onBlur:L=>_("transcription.custom.base_url",m.base_url,L.target.value),disabled:a})}),s.jsxs("div",{className:"grid grid-cols-1 gap-3 sm:grid-cols-2",children:[s.jsx(ae,{label:u("voice_ui.stt_custom_model_label"),hint:u("voice_ui.stt_custom_model_hint"),children:s.jsx(Ne,{defaultValue:m.model||"",placeholder:"mlx-community/whisper-large-v3-turbo",onBlur:L=>_("transcription.custom.model",m.model,L.target.value),disabled:a})}),s.jsx(ae,{label:u("voice_ui.stt_language_label"),hint:u("voice_ui.stt_language_hint"),children:s.jsx(ut,{value:m.language||"auto",onChange:L=>t({"transcription.custom.language":L}),options:Bw(),disabled:a})})]}),s.jsx(ae,{label:u("voice_ui.api_key_label"),hint:u("voice_ui.stt_custom_key_hint"),children:s.jsx(Ne,{type:"password",autoComplete:"new-password",defaultValue:"",placeholder:E(m.api_key),onBlur:L=>j("transcription.custom.api_key",L.target.value),disabled:a})})]})]})}function G9(){const e=Ze(),{config:t,isLoading:a,patch:o,mutate:l}=Zr(),{data:c,isLoading:d,error:p,mutate:m}=$e("/tts/providers",()=>If.providers()),[g,h]=x.useState(null),[b,_]=x.useState(!1),j=t,E=j.voice?.tts||{},k=j.transcription||{},y=c?.configured_provider||E.provider||"auto",w=c?.mode||E.mode||"chain",S=c?.order||[],N=(c?.engines||[]).map(B=>{if(!(!!B.custom||B.id==="gemini"))return B;const L=B.custom?E.custom?.[B.id.slice(7)]:E.gemini;return{...B,emotionsApplicable:!0,emotionsOn:!!L?.emotions?.enabled}}),R=x.useMemo(()=>!g||g==="__new__"?{}:g.startsWith("custom:")?E.custom?.[g.slice(7)]||{}:E[g]||{},[g,E]),A=async(B,D)=>{_(!0);try{const L=B.startsWith("custom:")?`voice.tts.custom.${B.slice(7)}.enabled`:`voice.tts.${B}.enabled`;await o({[L]:D}),await m()}catch(L){e.error(L.message)}finally{_(!1)}},T=async(B,D)=>{_(!0);try{const L=B.startsWith("custom:")?`voice.tts.custom.${B.slice(7)}.emotions.enabled`:`voice.tts.${B}.emotions.enabled`;await o({[L]:D}),await m(),await l()}catch(L){e.error(L.message)}finally{_(!1)}},O=async B=>{_(!0);try{await o({"voice.tts.order":B}),await m()}catch(D){e.error(D.message)}finally{_(!1)}},z=async({set:B,unset:D})=>{await o(B,D.length?D:void 0),await m(),await l(),e.success(u("voice_ui.toast_config_saved"))},U=async B=>{if(B.startsWith("custom:")&&window.confirm(u("voice_ui.remove_confirm"))){_(!0);try{const D=B.slice(7);await o({"voice.tts.order":S.filter(L=>L!==B)},[`voice.tts.custom.${D}`]),await m(),await l(),e.success(u("voice_ui.toast_provider_removed"))}catch(D){e.error(D.message)}finally{_(!1)}}},P=async(B,D)=>{try{await o(B,D),e.success(u("voice_ui.toast_transcription_updated"))}catch(L){e.error(L.message)}};return s.jsxs("div",{"data-testid":"screen-voice",children:[s.jsxs("div",{className:"grid gap-6 xl:grid-cols-2",children:[s.jsx(Fe,{title:u("voice_screen.providers_title"),description:u("voice_ui.providers_desc"),children:d||a?s.jsx(at,{}):p?s.jsx(pt,{children:u("voice_ui.providers_load_error",{msg:p.message})}):s.jsx(I9,{engines:N,order:S,onToggleEnabled:A,onToggleEmotions:T,onReorder:O,onConfigure:B=>h(B),onRemove:U,onAddNew:()=>h("__new__"),busy:b})}),s.jsxs("div",{className:"space-y-6",children:[s.jsx(Fe,{title:u("voice_screen.test_title"),description:u("voice_ui.test_desc"),children:s.jsx(H9,{engines:N,defaultProvider:y,mode:w})}),s.jsx(Fe,{title:u("voice_screen.stt_title"),description:u("voice_ui.stt_desc"),children:a?s.jsx(at,{}):s.jsx(F9,{config:k,onPatch:P})})]})]}),s.jsx(U9,{open:!!g,providerId:g,config:R,onClose:()=>h(null),onSave:z})]})}function Y9(e){return e<60?`${e}s`:e<3600?`${Math.floor(e/60)}m`:`${Math.floor(e/3600)}h ${Math.floor(e%3600/60)}m`}function K9({manifest:e}){const t=e.daemon,a=e.safety;return s.jsxs("div",{"data-testid":"deck-daemon-card",className:"rounded-xl border border-border bg-muted/10 px-4 py-3 text-xs",children:[s.jsxs("div",{className:"mb-2 flex flex-wrap items-center justify-between gap-2",children:[s.jsxs("span",{className:"font-semibold text-foreground",children:[t.name," ",s.jsxs("span",{className:"font-normal text-muted-fg",children:["v",t.version]})]}),s.jsxs("div",{className:"flex items-center gap-1.5",children:[s.jsx("span",{className:"size-2 rounded-full bg-emerald-500"}),s.jsx("span",{className:"text-muted-fg",children:u("modules_ui.deck_daemon_active",{uptime:Y9(t.uptime_s)})})]})]}),s.jsxs("div",{className:"flex flex-wrap gap-2",children:[s.jsxs("span",{className:"text-muted-fg",children:[t.host,":",t.port]}),s.jsx("span",{className:"text-muted-fg",children:"·"}),s.jsxs("span",{className:"text-muted-fg",children:[u("modules_ui.deck_daemon_started")," ",new Date(t.started_at).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"})]})]}),s.jsxs("div",{className:"mt-2.5 flex flex-wrap gap-1.5",children:[a.direct_shell===!1&&s.jsx(He,{tone:"success",children:u("modules_ui.deck_safety_no_shell")}),a.arbitrary_commands===!1&&s.jsx(He,{tone:"success",children:u("modules_ui.deck_safety_no_arbitrary")}),a.dangerous_actions_require_confirmation&&s.jsx(He,{tone:"info",children:u("modules_ui.deck_safety_confirm")})]})]})}function X9(e){return e==="available"?"success":e==="configured"?"info":"muted"}function Q9(e){return e==="available"?"activo":e==="configured"?"configurado":e==="disabled"?"deshabilitado":"sin configurar"}function W9(e){return e==="voice"?"warning":e==="plugin"?"info":"muted"}function Z9({widget:e,onToggle:t}){const a=e.source==="external",[o,l]=x.useState(!1),c=e.user_enabled===!0,d=async p=>{if(!(!t||o)){l(!0);try{await t(p)}finally{l(!1)}}};return s.jsxs("li",{"data-testid":`deck-widget-${e.id}`,className:he("flex items-center gap-3 rounded-lg border px-3 py-2.5 text-sm transition-colors",a?"border-border bg-muted/20 hover:border-muted-fg/30":"border-border/50 bg-muted/10"),children:[s.jsx(Ye,{content:e.source==="apx"?u("deck_screen.widget_native"):u("deck_screen.widget_external"),children:s.jsx("span",{className:he("size-2 shrink-0 rounded-full",e.source==="apx"?"bg-emerald-500":"bg-sky-400")})}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsx("span",{className:"font-medium",children:e.title}),s.jsx("span",{className:"ml-2 text-xs text-muted-fg",children:e.desktop})]}),s.jsx(He,{tone:W9(e.kind),children:e.kind}),s.jsx(He,{tone:X9(e.status),children:Q9(e.status)}),a?s.jsx("span",{"data-testid":`deck-widget-toggle-${e.id}`,children:s.jsx(Gt,{checked:c,onChange:d,disabled:o||!t})}):s.jsx("span",{className:"w-9 shrink-0","aria-hidden":!0})]})}function J9({desktop:e,widgets:t,onToggle:a}){return t.length===0?null:s.jsxs("div",{"data-testid":`deck-desktop-${e.id}`,className:"space-y-1.5",children:[s.jsx("h3",{className:"text-xs font-semibold uppercase tracking-wide text-muted-fg",children:e.title}),s.jsx("ul",{className:"space-y-1.5",children:t.map(o=>s.jsx(Z9,{widget:o,onToggle:o.source==="external"?l=>a(o.id,l):void 0},o.id))})]})}function eU(){Ze();const{data:e,error:t,isLoading:a,mutate:o}=$e("/deck/manifest",()=>fN.manifest(),{refreshInterval:3e4}),l=async(h,b)=>{},c=e?.deck.desktops??[],d=e?.deck.widgets??[],p=c.map(h=>({desktop:h,widgets:d.filter(b=>b.desktop===h.id)})),g=d.filter(h=>h.source==="external").filter(h=>h.user_enabled===!0).length;return s.jsxs("div",{className:"relative min-h-full","data-testid":"screen-deck",children:[s.jsxs("div",{className:"mx-auto max-w-4xl space-y-6 p-6 pointer-events-none select-none blur-[2px] opacity-60","aria-hidden":!0,inert:!0,children:[e&&s.jsx(K9,{manifest:e}),s.jsxs(Fe,{title:u("deck_screen.widgets_title"),description:a?u("modules_ui.deck_loading_manifest"):t?u("modules_ui.deck_manifest_error"):u("modules_ui.deck_widgets_summary",{count:d.length,enabled:g}),action:s.jsx(Ye,{content:u("deck_screen.reload_manifest"),children:s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>o(),disabled:a,"aria-label":u("deck_screen.reload_manifest"),children:s.jsx(Qs,{size:14,className:a?"animate-spin":""})})}),children:[a&&s.jsx(at,{label:u("modules_ui.deck_loading_manifest_full")}),!a&&t&&s.jsxs(pt,{children:[u("modules_ui.deck_manifest_load_failed")," ",s.jsx("button",{type:"button",className:"ml-1 underline",onClick:()=>o(),children:u("modules_ui.deck_retry")})]}),!a&&!t&&d.length===0&&s.jsx(pt,{children:u("modules_ui.deck_no_widgets")}),!a&&!t&&d.length>0&&s.jsx("div",{className:"space-y-5","data-testid":"deck-desktop-list",children:p.filter(h=>h.widgets.length>0).map(h=>s.jsx(J9,{desktop:h.desktop,widgets:h.widgets,onToggle:l},h.desktop.id))})]}),e?.apx&&s.jsx(Fe,{title:u("deck_screen.context_title"),description:u("modules_ui.deck_context_desc"),children:s.jsxs("div",{className:"space-y-2 text-sm","data-testid":"deck-apx-context",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:"text-muted-fg",children:u("modules_ui.deck_active_project")}),s.jsx("span",{className:"font-medium",children:e.apx.active_project?e.apx.active_project.name:u("modules_ui.deck_none")})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:"text-muted-fg",children:u("modules_ui.deck_registered_projects")}),s.jsx("span",{className:"font-medium",children:e.apx.projects.length})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:"text-muted-fg",children:u("modules_ui.deck_active_plugins")}),s.jsx("span",{className:"font-medium",children:Object.keys(e.apx.plugins).join(", ")||"—"})]})]})})]}),s.jsx("div",{className:"absolute inset-0 z-10 flex items-center justify-center p-6 backdrop-blur-[1px]",role:"dialog","aria-modal":"true","aria-labelledby":"deck-coming-soon-title","data-testid":"deck-coming-soon",children:s.jsxs("div",{className:"w-full max-w-md rounded-2xl border border-border bg-card/95 p-8 text-center shadow-2xl",children:[s.jsx("div",{className:"mx-auto mb-4 flex size-12 items-center justify-center rounded-full bg-muted",children:s.jsx(N5,{className:"size-6 text-muted-fg"})}),s.jsx("span",{className:"inline-block rounded-full bg-muted px-2.5 py-0.5 text-[10px] font-semibold uppercase tracking-wide text-muted-fg",children:u("deck_screen.preview_badge")}),s.jsx("h2",{id:"deck-coming-soon-title",className:"mt-3 text-lg font-semibold",children:u("deck_screen.preview_title")}),s.jsx("p",{className:"mt-2 text-sm text-muted-fg",children:u("deck_screen.preview_body")})]})})]})}const tU=[{title:u("settings.account_section"),items:[{key:"identity",label:u("settings.tabs.identity"),icon:yb}]},{title:u("settings.agents_section"),items:[{key:"super_agent",label:u("settings.tabs.super_agent"),icon:on},{key:"engines",label:u("settings.tabs.engines"),icon:mb},{key:"memory",label:"Memory (RAG)",icon:PS},{key:"skills",label:u("skills_page.title"),icon:Vs}]},{title:u("settings.channels_section"),items:[{key:"telegram",label:u("settings.tabs.telegram"),icon:Js},{key:"devices",label:u("settings.tabs.devices"),icon:r3}]},{title:u("settings.modules_section"),items:[{key:"voice",label:u("nav.modules.voice"),icon:bb},{key:"desktop",label:u("nav.modules.desktop"),icon:_b},{key:"deck",label:u("nav.modules.deck"),icon:G5},{key:"web",label:u("nav.modules.web"),icon:HS}]},{title:u("settings.advanced_section"),items:[{key:"advanced",label:u("settings.tabs.advanced"),icon:_f}]}],nU=new Set(["engines","telegram","memory","skills","web","voice"]),sU={identity:()=>s.jsx(PB,{}),super_agent:()=>s.jsx(LB,{}),engines:()=>s.jsx(JN,{}),memory:()=>s.jsx(UB,{}),skills:()=>s.jsx(VB,{}),telegram:()=>s.jsx(KB,{}),devices:()=>s.jsx(j9,{}),voice:()=>s.jsx(G9,{}),deck:()=>s.jsx(eU,{}),desktop:()=>s.jsx(L9,{}),web:()=>s.jsx(C9,{}),advanced:()=>s.jsx(S9,{})};function aU(){const e=Pn(),t=ts(),a=rU(t.pathname),o=sU[a],{collapsed:l,toggle:c}=j_(On.sidebarCollapsed+".settings");return s.jsx(PN,{sections:tU,active:a,onChange:d=>e(d==="identity"?"/settings":`/settings/${oU(d)}`),collapsed:l,onToggleCollapse:c,contentClassName:`w-full ${nU.has(a)?"":"mx-auto max-w-3xl"} space-y-6 py-6 pt-3 pr-6 pl-4`,testId:`settings-tab-${a}`,children:s.jsx(o,{})})}function rU(e){switch(e.split("/").filter(Boolean)[1]||"identity"){case"super-agent":return"super_agent";case"engines":return"engines";case"memory":return"memory";case"skills":return"skills";case"telegram":return"telegram";case"devices":return"devices";case"voice":return"voice";case"deck":return"deck";case"desktop":return"desktop";case"web":return"web";case"appearance":return"web";case"config":case"advanced":return"advanced";default:return"identity"}}function oU(e){return e==="super_agent"?"super-agent":e==="advanced"?"config":e}function lU(){const{data:e,isLoading:t,mutate:a}=$e("/messages/global?channel=desktop",()=>O9(40),{refreshInterval:8e3});return s.jsx("div",{className:"mx-auto max-w-3xl space-y-6 p-6","data-testid":"screen-desktop",children:s.jsxs("div",{className:"space-y-6",children:[s.jsx("div",{children:s.jsx(FE,{showConfigLink:!0})}),s.jsx("div",{children:s.jsx(Fe,{title:u("desktop_screen.last_conv_title"),description:u("modules_ui.desktop_last_conv_desc"),action:s.jsx("button",{type:"button",onClick:()=>a(),className:"text-xs text-muted-fg underline-offset-2 hover:underline",children:u("modules_ui.desktop_refresh")}),children:s.jsx(iU,{messages:e||[],loading:t})})})]})})}function iU({messages:e,loading:t}){const a=x.useMemo(()=>uU(e),[e]);return t?s.jsx(at,{}):e.length?s.jsx("div",{className:"space-y-3 max-h-[560px] overflow-y-auto pr-1",children:a.slice().reverse().map((o,l)=>s.jsx("div",{className:"rounded-lg border border-border bg-card/40 p-3",children:o.map((c,d)=>s.jsx(cU,{m:c},d))},l))}):s.jsx(pt,{children:u("modules_ui.desktop_no_messages")})}function cU({m:e}){const t=e.direction==="in",a=dU(e.ts);return s.jsxs("div",{className:"py-1",children:[s.jsxs("div",{className:"flex items-baseline gap-2 text-[11px] text-muted-fg",children:[s.jsx("span",{className:"font-semibold",children:u(t?"modules_ui.desktop_you":"modules_ui.desktop_roby")}),s.jsx("span",{children:a})]}),s.jsx("div",{className:"mt-0.5 text-sm leading-snug whitespace-pre-wrap "+(t?"text-muted-fg":"text-fg"),children:(e.body||"").trim()||s.jsx("span",{className:"italic opacity-50",children:u("modules_ui.desktop_empty_msg")})})]})}function uU(e){const t=[];for(const a of e)a.direction==="in"||!t.length?t.push([a]):t[t.length-1].push(a);return t}function dU(e){try{const t=new Date(e);return t.toDateString()===new Date().toDateString()?t.toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"}):t.toLocaleString([],{month:"short",day:"numeric",hour:"2-digit",minute:"2-digit"})}catch{return""}}function fU(e,t){const a=getComputedStyle(e),o=parseFloat(a.fontSize);return t*o}function pU(e,t){const a=getComputedStyle(e.ownerDocument.documentElement),o=parseFloat(a.fontSize);return t*o}function mU(e){return e/100*window.innerHeight}function gU(e){return e/100*window.innerWidth}function hU(e){switch(typeof e){case"number":return[e,"px"];case"string":{const 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 Ac({groupSize:e,panelElement:t,styleProp:a}){let o;const[l,c]=hU(a);switch(c){case"%":{o=l/100*e;break}case"px":{o=l;break}case"rem":{o=pU(t,l);break}case"em":{o=fU(t,l);break}case"vh":{o=mU(l);break}case"vw":{o=gU(l);break}}return o}function Jn(e){return parseFloat(e.toFixed(3))}function ri({group:e}){const{orientation:t,panels:a}=e;return a.reduce((o,l)=>(o+=t==="horizontal"?l.element.offsetWidth:l.element.offsetHeight,o),0)}function Jx(e){const{panels:t}=e,a=ri({group:e});return a===0?t.map(o=>({groupResizeBehavior:o.panelConstraints.groupResizeBehavior,collapsedSize:0,collapsible:o.panelConstraints.collapsible===!0,defaultSize:void 0,disabled:o.panelConstraints.disabled,minSize:0,maxSize:100,panelId:o.id})):t.map(o=>{const{element:l,panelConstraints:c}=o;let d=0;if(c.collapsedSize!==void 0){const h=Ac({groupSize:a,panelElement:l,styleProp:c.collapsedSize});d=Jn(h/a*100)}let p;if(c.defaultSize!==void 0){const h=Ac({groupSize:a,panelElement:l,styleProp:c.defaultSize});p=Jn(h/a*100)}let m=0;if(c.minSize!==void 0){const h=Ac({groupSize:a,panelElement:l,styleProp:c.minSize});m=Jn(h/a*100)}let g=100;if(c.maxSize!==void 0){const h=Ac({groupSize:a,panelElement:l,styleProp:c.maxSize});g=Jn(h/a*100)}return{groupResizeBehavior:c.groupResizeBehavior,collapsedSize:d,collapsible:c.collapsible===!0,defaultSize:p,disabled:c.disabled,minSize:m,maxSize:g,panelId:o.id}})}function qt(e,t="Assertion error"){if(!e)throw Error(t)}function eb(e,t){return Array.from(t).sort(e==="horizontal"?xU:bU)}function xU(e,t){const a=e.element.offsetLeft-t.element.offsetLeft;return a!==0?a:e.element.offsetWidth-t.element.offsetWidth}function bU(e,t){const a=e.element.offsetTop-t.element.offsetTop;return a!==0?a:e.element.offsetHeight-t.element.offsetHeight}function GE(e){return e!==null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function YE(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 _U({orientation:e,rects:t,targetRect:a}){const o={x:a.x+a.width/2,y:a.y+a.height/2};let l,c=Number.MAX_VALUE;for(const d of t){const{x:p,y:m}=YE(o,d),g=e==="horizontal"?p:m;g<c&&(c=g,l=d)}return qt(l,"No rect found"),l}let ef;function vU(){return ef===void 0&&(typeof matchMedia=="function"?ef=!!matchMedia("(pointer:coarse)").matches:ef=!1),ef}function KE(e){const{element:t,orientation:a,panels:o,separators:l}=e,c=eb(a,Array.from(t.children).filter(GE).map(E=>({element:E}))).map(({element:E})=>E),d=[];let p=!1,m=!1,g=-1,h=-1,b=0,_,j=[];{let E=-1;for(const k of c)k.hasAttribute("data-panel")&&(E++,k.hasAttribute("data-disabled")||(b++,g===-1&&(g=E),h=E))}if(b>1){let E=-1;for(const k of c)if(k.hasAttribute("data-panel")){E++;const y=o.find(w=>w.element===k);if(y){if(_){const w=_.element.getBoundingClientRect(),S=k.getBoundingClientRect();let N;if(m){const R=a==="horizontal"?new DOMRect(w.right,w.top,0,w.height):new DOMRect(w.left,w.bottom,w.width,0),A=a==="horizontal"?new DOMRect(S.left,S.top,0,S.height):new DOMRect(S.left,S.top,S.width,0);switch(j.length){case 0:{N=[R,A];break}case 1:{const T=j[0],O=_U({orientation:a,rects:[w,S],targetRect:T.element.getBoundingClientRect()});N=[T,O===w?A:R];break}default:{N=j;break}}}else j.length?N=j:N=[a==="horizontal"?new DOMRect(w.right,S.top,S.left-w.right,S.height):new DOMRect(S.left,w.bottom,S.width,S.top-w.bottom)];for(const R of N){let A="width"in R?R:R.element.getBoundingClientRect();const T=vU()?e.resizeTargetMinimumSize.coarse:e.resizeTargetMinimumSize.fine;if(A.width<T){const z=T-A.width;A=new DOMRect(A.x-z/2,A.y,A.width+z,A.height)}if(A.height<T){const z=T-A.height;A=new DOMRect(A.x,A.y-z/2,A.width,A.height+z)}const O=E<=g||E>h;!p&&!O&&d.push({group:e,groupSize:ri({group:e}),panels:[_,y],separator:"width"in R?void 0:R,rect:A}),p=!1}}m=!1,_=y,j=[]}}else if(k.hasAttribute("data-separator")){k.ariaDisabled!==null&&(p=!0);const y=l.find(w=>w.element===k);y?j.push(y):(_=void 0,j=[])}else m=!0}return d}class XE{#e={};addListener(t,a){const o=this.#e[t];return o===void 0?this.#e[t]=[a]:o.includes(a)||o.push(a),()=>{this.removeListener(t,a)}}emit(t,a){const o=this.#e[t];if(o!==void 0)if(o.length===1)o[0].call(null,a);else{let l=!1,c=null;const d=Array.from(o);for(let p=0;p<d.length;p++){const m=d[p];try{m.call(null,a)}catch(g){c===null&&(l=!0,c=g)}}if(l)throw c}}removeAllListeners(){this.#e={}}removeListener(t,a){const o=this.#e[t];if(o!==void 0){const l=o.indexOf(a);l>=0&&o.splice(l,1)}}}let Gl={cursorFlags:0,state:"inactive"};const J_=new XE;function Io(){return Gl}function yU(e){return J_.addListener("change",e)}function jU(e){const t=Gl,a={...Gl};a.cursorFlags=e,Gl=a,J_.emit("change",{prev:t,next:a})}function Yl(e){const t=Gl;Gl=e,J_.emit("change",{prev:t,next:e})}const kU=e=>e,lx=()=>{},QE=1,WE=2,ZE=4,JE=8,Uw=3,$w=12;let tf;function Hw(){return tf===void 0&&(tf=!1,typeof window<"u"&&(window.navigator.userAgent.includes("Chrome")||window.navigator.userAgent.includes("Firefox"))&&(tf=!0)),tf}function wU({cursorFlags:e,groups:t,state:a}){let o=0,l=0;switch(a){case"active":case"hover":t.forEach(c=>{if(!c.mutableState.disableCursor)switch(c.orientation){case"horizontal":{o++;break}case"vertical":{l++;break}}})}if(!(o===0&&l===0)){switch(a){case"active":{if(e&&Hw()){const c=(e&QE)!==0,d=(e&WE)!==0,p=(e&ZE)!==0,m=(e&JE)!==0;if(c)return p?"se-resize":m?"ne-resize":"e-resize";if(d)return p?"sw-resize":m?"nw-resize":"w-resize";if(p)return"s-resize";if(m)return"n-resize"}break}}return Hw()?o>0&&l>0?"move":o>0?"ew-resize":"ns-resize":o>0&&l>0?"grab":o>0?"col-resize":"row-resize"}}const Vw=new WeakMap;function ev(e){if(e.defaultView===null||e.defaultView===void 0)return;let{prevStyle:t,styleSheet:a}=Vw.get(e)??{};a===void 0&&(a=new e.defaultView.CSSStyleSheet,e.adoptedStyleSheets&&(Object.isExtensible(e.adoptedStyleSheets)?e.adoptedStyleSheets.push(a):e.adoptedStyleSheets=[...e.adoptedStyleSheets,a]));const o=Io();switch(o.state){case"active":case"hover":{const l=wU({cursorFlags:o.cursorFlags,groups:o.hitRegions.map(d=>d.group),state:o.state}),c=`*, *:hover {cursor: ${l} !important; }`;if(t===c)return;t=c,l?a.cssRules.length===0?a.insertRule(c):a.replaceSync(c):a.cssRules.length===1&&a.deleteRule(0);break}case"inactive":{t=void 0,a.cssRules.length===1&&a.deleteRule(0);break}}Vw.set(e,{prevStyle:t,styleSheet:a})}let pa=new Map;const eR=new XE;function SU(e){pa=new Map(pa),pa.delete(e)}function qw(e,t){for(const[a]of pa)if(a.id===e)return a}function Ur(e,t){for(const[a,o]of pa)if(a.id===e)return o;if(t)throw Error(`Could not find data for Group with id ${e}`)}function Go(){return pa}function tv(e,t){return eR.addListener("groupChange",a=>{a.group.id===e&&t(a)})}function ar(e,t,a){const o=pa.get(e);pa=new Map(pa),pa.set(e,t),eR.emit("groupChange",{group:e,isUserInteraction:a?.isUserInteraction===!0,prev:o,next:t})}function tR(e){const t=Io();let a=!1;switch(t.state){case"active":Yl({cursorFlags:0,state:"inactive"}),t.hitRegions.length>0&&(ev(e),a=!0,t.hitRegions.forEach(o=>{const l=Ur(o.group.id,!0);ar(o.group,l,{isUserInteraction:!0})}))}return a}function Fw(e){e.defaultPrevented||tR(e.currentTarget)}function CU(e,t,a){let o,l={x:1/0,y:1/0};for(const c of t){const d=YE(a,c.rect);switch(e){case"horizontal":{d.x<=l.x&&(o=c,l=d);break}case"vertical":{d.y<=l.y&&(o=c,l=d);break}}}return o?{distance:l,hitRegion:o}:void 0}function NU(e){return e!==null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.DOCUMENT_FRAGMENT_NODE}function EU(e,t){if(e===t)throw new Error("Cannot compare node with itself");const a={a:Kw(e),b:Kw(t)};let o;for(;a.a.at(-1)===a.b.at(-1);)o=a.a.pop(),a.b.pop();qt(o,"Stacking order can only be calculated for elements with a common ancestor");const l={a:Yw(Gw(a.a)),b:Yw(Gw(a.b))};if(l.a===l.b){const c=o.childNodes,d={a:a.a.at(-1),b:a.b.at(-1)};let p=c.length;for(;p--;){const m=c[p];if(m===d.a)return 1;if(m===d.b)return-1}}return Math.sign(l.a-l.b)}const RU=/\b(?:position|zIndex|opacity|transform|webkitTransform|mixBlendMode|filter|webkitFilter|isolation)\b/;function TU(e){const t=getComputedStyle(nR(e)??e).display;return t==="flex"||t==="inline-flex"}function AU(e){const t=getComputedStyle(e);return!!(t.position==="fixed"||t.zIndex!=="auto"&&(t.position!=="static"||TU(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"||RU.test(t.willChange)||t.webkitOverflowScrolling==="touch")}function Gw(e){let t=e.length;for(;t--;){const a=e[t];if(qt(a,"Missing node"),AU(a))return a}return null}function Yw(e){return e&&Number(getComputedStyle(e).zIndex)||0}function Kw(e){const t=[];for(;e;)t.push(e),e=nR(e);return t}function nR(e){const{parentNode:t}=e;return NU(t)?t.host:t}function MU(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 OU({groupElement:e,hitRegion:t,pointerEventTarget:a}){if(!GE(a)||a.contains(e)||e.contains(a))return!0;if(EU(a,e)>0){let o=a;for(;o;){if(o.contains(e))return!0;if(MU(o.getBoundingClientRect(),t))return!1;o=o.parentElement}}return!0}function nv(e,t){const a=[];return t.forEach((o,l)=>{if(l.disabled)return;const c=KE(l),d=CU(l.orientation,c,{x:e.clientX,y:e.clientY});d&&d.distance.x<=0&&d.distance.y<=0&&OU({groupElement:l.element,hitRegion:d.hitRegion.rect,pointerEventTarget:e.target})&&a.push(d.hitRegion)}),a}function zU(e,t){if(e.length!==t.length)return!1;for(let a=0;a<e.length;a++)if(e[a]!=t[a])return!1;return!0}function Yn(e,t,a=0){return Math.abs(Jn(e)-Jn(t))<=a}function ca(e,t){return Yn(e,t)?0:e>t?1:-1}function Il({overrideDisabledPanels:e,panelConstraints:t,prevSize:a,size:o}){const{collapsedSize:l=0,collapsible:c,disabled:d,maxSize:p=100,minSize:m=0}=t;if(d&&!e)return a;if(ca(o,m)<0)if(c){const g=(l+m)/2;ca(o,g)<0?o=l:o=m}else o=m;return o=Math.min(p,o),o=Jn(o),o}function Jc({delta:e,initialLayout:t,panelConstraints:a,pivotIndices:o,prevLayout:l,trigger:c}){if(Yn(e,0))return t;const d=c==="imperative-api",p=Object.values(t),m=Object.values(l),g=[...p],[h,b]=o;qt(h!=null,"Invalid first pivot index"),qt(b!=null,"Invalid second pivot index");let _=0;switch(c){case"keyboard":{{const k=e<0?b:h,y=a[k];qt(y,`Panel constraints not found for index ${k}`);const{collapsedSize:w=0,collapsible:S,minSize:N=0}=y;if(S){const R=p[k];if(qt(R!=null,`Previous layout not found for panel index ${k}`),Yn(R,w)){const A=N-R;ca(A,Math.abs(e))>0&&(e=e<0?0-A:A)}}}{const k=e<0?h:b,y=a[k];qt(y,`No panel constraints found for index ${k}`);const{collapsedSize:w=0,collapsible:S,minSize:N=0}=y;if(S){const R=p[k];if(qt(R!=null,`Previous layout not found for panel index ${k}`),Yn(R,N)){const A=R-w;ca(A,Math.abs(e))>0&&(e=e<0?0-A:A)}}}break}default:{const k=e<0?b:h,y=a[k];qt(y,`Panel constraints not found for index ${k}`);const w=p[k],{collapsible:S,collapsedSize:N,minSize:R}=y;if(S&&ca(w,R)<0)if(e>0){const A=R-N,T=A/2,O=w+e;ca(O,R)<0&&(e=ca(e,T)<=0?0:A)}else{const A=R-N,T=100-A/2,O=w-e;ca(O,R)<0&&(e=ca(100+e,T)>0?0:-A)}break}}{const k=e<0?1:-1;let y=e<0?b:h,w=0;for(;;){const N=p[y];qt(N!=null,`Previous layout not found for panel index ${y}`);const R=Il({overrideDisabledPanels:d,panelConstraints:a[y],prevSize:N,size:100})-N;if(w+=R,y+=k,y<0||y>=a.length)break}const S=Math.min(Math.abs(e),Math.abs(w));e=e<0?0-S:S}{let k=e<0?h:b;for(;k>=0&&k<a.length;){const y=Math.abs(e)-Math.abs(_),w=p[k];qt(w!=null,`Previous layout not found for panel index ${k}`);const S=w-y,N=Il({overrideDisabledPanels:d,panelConstraints:a[k],prevSize:w,size:S});if(!Yn(w,N)&&(_+=w-N,g[k]=N,_.toFixed(3).localeCompare(Math.abs(e).toFixed(3),void 0,{numeric:!0})>=0))break;e<0?k--:k++}}if(zU(m,g))return l;{const k=e<0?b:h,y=p[k];qt(y!=null,`Previous layout not found for panel index ${k}`);const w=y+_,S=Il({overrideDisabledPanels:d,panelConstraints:a[k],prevSize:y,size:w});if(g[k]=S,!Yn(S,w)){let N=w-S,R=e<0?b:h;for(;R>=0&&R<a.length;){const A=g[R];qt(A!=null,`Previous layout not found for panel index ${R}`);const T=A+N,O=Il({overrideDisabledPanels:d,panelConstraints:a[R],prevSize:A,size:T});if(Yn(A,O)||(N-=O-A,g[R]=O),Yn(N,0))break;e>0?R--:R++}}}const j=Object.values(g).reduce((k,y)=>y+k,0);if(!Yn(j,100,.1))return l;const E=Object.keys(l);return g.reduce((k,y,w)=>(k[E[w]]=y,k),{})}function Bo(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const a in e)if(t[a]===void 0||ca(e[a],t[a])!==0)return!1;return!0}function Uo({layout:e,panelConstraints:t}){const a=Object.values(e),o=[...a],l=o.reduce((p,m)=>p+m,0);if(o.length!==t.length)throw Error(`Invalid ${t.length} panel layout: ${o.map(p=>`${p}%`).join(", ")}`);if(!Yn(l,100)&&o.length>0)for(let p=0;p<t.length;p++){const m=o[p];qt(m!=null,`No layout data found for index ${p}`);const g=100/l*m;o[p]=g}let c=0;for(let p=0;p<t.length;p++){const m=a[p];qt(m!=null,`No layout data found for index ${p}`);const g=o[p];qt(g!=null,`No layout data found for index ${p}`);const h=Il({overrideDisabledPanels:!0,panelConstraints:t[p],prevSize:m,size:g});g!=h&&(c+=g-h,o[p]=h)}if(!Yn(c,0))for(let p=0;p<t.length;p++){const m=o[p];qt(m!=null,`No layout data found for index ${p}`);const g=m+c,h=Il({overrideDisabledPanels:!0,panelConstraints:t[p],prevSize:m,size:g});if(m!==h&&(c-=h-m,o[p]=h,Yn(c,0)))break}const d=Object.keys(e);return o.reduce((p,m,g)=>(p[d[g]]=m,p),{})}function sR({groupId:e,panelId:t}){const a=()=>{const m=Go();for(const[g,{defaultLayoutDeferred:h,derivedPanelConstraints:b,layout:_,groupSize:j,separatorToPanels:E}]of m)if(g.id===e)return{defaultLayoutDeferred:h,derivedPanelConstraints:b,group:g,groupSize:j,layout:_,separatorToPanels:E};throw Error(`Group ${e} not found`)},o=()=>{const m=a().derivedPanelConstraints.find(g=>g.panelId===t);if(m!==void 0)return m;throw Error(`Panel constraints not found for Panel ${t}`)},l=()=>{const m=a().group.panels.find(g=>g.id===t);if(m!==void 0)return m;throw Error(`Layout not found for Panel ${t}`)},c=()=>{const m=a().layout[t];if(m!==void 0)return m;throw Error(`Layout not found for Panel ${t}`)},d=({nextSize:m,panels:g,prevLayout:h,derivedPanelConstraints:b})=>{const _=c(),j=g.findIndex(y=>y.id===t),E=j===0,k=j===g.length-1;if(k&&m<_&&(E||g.slice(0,j).every((y,w)=>{const S=b[w];return S?.collapsible&&Yn(S.collapsedSize,h[S.panelId])}))){const y=g.slice(0,j).reduce((w,S)=>w+h[S.id],0);return{...h,[t]:Jn(100-y)}}return Jc({delta:k?_-m:m-_,initialLayout:h,panelConstraints:b,pivotIndices:k?[j-1,j]:[j,j+1],prevLayout:h,trigger:"imperative-api"})},p=m=>{const g=c();if(m===g)return;const{defaultLayoutDeferred:h,derivedPanelConstraints:b,group:_,groupSize:j,layout:E,separatorToPanels:k}=a(),y=d({nextSize:m,panels:_.panels,prevLayout:E,derivedPanelConstraints:b}),w=Uo({layout:y,panelConstraints:b});Bo(E,w)||ar(_,{defaultLayoutDeferred:h,derivedPanelConstraints:b,groupSize:j,layout:w,separatorToPanels:k})};return{collapse:()=>{const{collapsible:m,collapsedSize:g}=o(),{mutableValues:h}=l(),b=c();m&&b!==g&&(h.expandToSize=b,p(g))},expand:()=>{const{collapsible:m,collapsedSize:g,minSize:h}=o(),{mutableValues:b}=l(),_=c();if(m&&_===g){let j=b.expandToSize??h;j===0&&(j=1),p(j)}},getSize:()=>{const{group:m}=a(),g=c(),{element:h}=l(),b=m.orientation==="horizontal"?h.offsetWidth:h.offsetHeight;return{asPercentage:g,inPixels:b}},isCollapsed:()=>{const{collapsible:m,collapsedSize:g}=o(),h=c();return m&&Yn(g,h)},resize:m=>{const{group:g}=a(),{element:h}=l(),b=ri({group:g}),_=Ac({groupSize:b,panelElement:h,styleProp:m}),j=Jn(_/b*100);p(j)}}}function Xw(e){if(e.defaultPrevented)return;const t=Go();nv(e,t).forEach(a=>{if(a.separator&&!a.separator.disableDoubleClick){const o=a.panels.find(l=>l.panelConstraints.defaultSize!==void 0);if(o){const l=o.panelConstraints.defaultSize,c=sR({groupId:a.group.id,panelId:o.id});c&&l!==void 0&&(c.resize(l),e.preventDefault())}}})}function df(e){const t=Go();for(const[a]of t)if(a.separators.some(o=>o.element===e))return a;throw Error("Could not find parent Group for separator element")}function aR({groupId:e}){const t=()=>{const a=Go();for(const[o,l]of a)if(o.id===e)return{group:o,...l};throw Error(`Could not find Group with id "${e}"`)};return{getLayout(){const{defaultLayoutDeferred:a,layout:o}=t();return a?{}:o},setLayout(a){const{defaultLayoutDeferred:o,derivedPanelConstraints:l,group:c,groupSize:d,layout:p,separatorToPanels:m}=t(),g=Uo({layout:a,panelConstraints:l});return o?p:(Bo(p,g)||ar(c,{defaultLayoutDeferred:o,derivedPanelConstraints:l,groupSize:d,layout:g,separatorToPanels:m}),g)}}}function jo(e,t){const a=df(e),o=Ur(a.id,!0),l=a.separators.find(h=>h.element===e);qt(l,"Matching separator not found");const c=o.separatorToPanels.get(l);qt(c,"Matching panels not found");const d=c.map(h=>a.panels.indexOf(h)),p=aR({groupId:a.id}).getLayout(),m=Jc({delta:t,initialLayout:p,panelConstraints:o.derivedPanelConstraints,pivotIndices:d,prevLayout:p,trigger:"keyboard"}),g=Uo({layout:m,panelConstraints:o.derivedPanelConstraints});Bo(p,g)||ar(a,{defaultLayoutDeferred:o.defaultLayoutDeferred,derivedPanelConstraints:o.derivedPanelConstraints,groupSize:o.groupSize,layout:g,separatorToPanels:o.separatorToPanels},{isUserInteraction:!0})}function Qw(e){if(e.defaultPrevented)return;const t=e.currentTarget,a=df(t);if(!a.disabled)switch(e.key){case"ArrowDown":{e.preventDefault(),a.orientation==="vertical"&&jo(t,5);break}case"ArrowLeft":{e.preventDefault(),a.orientation==="horizontal"&&jo(t,-5);break}case"ArrowRight":{e.preventDefault(),a.orientation==="horizontal"&&jo(t,5);break}case"ArrowUp":{e.preventDefault(),a.orientation==="vertical"&&jo(t,-5);break}case"End":{e.preventDefault(),jo(t,100);break}case"Enter":{e.preventDefault();const o=df(t),l=Ur(o.id,!0),{derivedPanelConstraints:c,layout:d,separatorToPanels:p}=l,m=o.separators.find(_=>_.element===t);qt(m,"Matching separator not found");const g=p.get(m);qt(g,"Matching panels not found");const h=g[0],b=c.find(_=>_.panelId===h.id);if(qt(b,"Panel metadata not found"),b.collapsible){const _=d[h.id],j=b.collapsedSize===_?o.mutableState.expandedPanelSizes[h.id]??b.minSize:b.collapsedSize;jo(t,j-_)}break}case"F6":{e.preventDefault();const o=df(t).separators.map(d=>d.element),l=Array.from(o).findIndex(d=>d===e.currentTarget);qt(l!==null,"Index not found");const c=e.shiftKey?l>0?l-1:o.length-1:l+1<o.length?l+1:0;o[c].focus({preventScroll:!0});break}case"Home":{e.preventDefault(),jo(t,-100);break}}}function Ww(e){if(e.defaultPrevented||e.pointerType==="mouse"&&e.button>0)return;const t=Go(),a=nv(e,t),o=new Map;let l=!1;a.forEach(c=>{c.separator&&(l||(l=!0,c.separator.element.focus({focusVisible:!1,preventScroll:!0})));const d=t.get(c.group);d&&o.set(c.group,d.layout)}),Yl({cursorFlags:0,hitRegions:a,initialLayoutMap:o,pointerDownAtPoint:{x:e.clientX,y:e.clientY},state:"active"}),a.length&&e.preventDefault()}function rR({document:e,event:t,hitRegions:a,initialLayoutMap:o,mountedGroups:l,pointerDownAtPoint:c,prevCursorFlags:d}){let p=0;a.forEach(g=>{const{group:h,groupSize:b}=g,{orientation:_,panels:j}=h,{disableCursor:E}=h.mutableState;let k=0;c?_==="horizontal"?k=(t.clientX-c.x)/b*100:k=(t.clientY-c.y)/b*100:_==="horizontal"?k=t.clientX<0?-100:100:k=t.clientY<0?-100:100;const y=o.get(h),w=l.get(h);if(!y||!w)return;const{defaultLayoutDeferred:S,derivedPanelConstraints:N,groupSize:R,layout:A,separatorToPanels:T}=w;if(N&&A&&T){const O=Jc({delta:k,initialLayout:y,panelConstraints:N,pivotIndices:g.panels.map(z=>j.indexOf(z)),prevLayout:A,trigger:"mouse-or-touch"});if(Bo(O,A)){if(k!==0&&!E)switch(_){case"horizontal":{p|=k<0?QE:WE;break}case"vertical":{p|=k<0?ZE:JE;break}}}else ar(g.group,{defaultLayoutDeferred:S,derivedPanelConstraints:N,groupSize:R,layout:O,separatorToPanels:T})}});let m=0;t.movementX===0?m|=d&Uw:m|=p&Uw,t.movementY===0?m|=d&$w:m|=p&$w,jU(m),ev(e)}function Zw(e){const t=Go(),a=Io();switch(a.state){case"active":rR({document:e.currentTarget,event:e,hitRegions:a.hitRegions,initialLayoutMap:a.initialLayoutMap,mountedGroups:t,prevCursorFlags:a.cursorFlags})}}function Jw(e){if(e.defaultPrevented)return;const t=Io(),a=Go();switch(t.state){case"active":{if(e.buttons===0){Yl({cursorFlags:0,state:"inactive"}),t.hitRegions.forEach(o=>{const l=Ur(o.group.id,!0);ar(o.group,l,{isUserInteraction:!0})});return}for(const o of t.hitRegions)if(o.separator){const{element:l}=o.separator;l.hasPointerCapture?.(e.pointerId)||l.setPointerCapture?.(e.pointerId)}rR({document:e.currentTarget,event:e,hitRegions:t.hitRegions,initialLayoutMap:t.initialLayoutMap,mountedGroups:a,pointerDownAtPoint:t.pointerDownAtPoint,prevCursorFlags:t.cursorFlags});break}default:{const o=nv(e,a);o.length===0?t.state!=="inactive"&&Yl({cursorFlags:0,state:"inactive"}):Yl({cursorFlags:0,hitRegions:o,state:"hover"}),ev(e.currentTarget);break}}}function eS(e){if(e.relatedTarget instanceof HTMLIFrameElement)switch(Io().state){case"hover":Yl({cursorFlags:0,state:"inactive"})}}function tS(e){e.defaultPrevented||e.pointerType==="mouse"&&e.button>0||tR(e.currentTarget)&&e.preventDefault()}function nS(e){let t=0,a=0;const o={};for(const c of e)if(c.defaultSize!==void 0){t++;const d=Jn(c.defaultSize);a+=d,o[c.panelId]=d}else o[c.panelId]=void 0;const l=e.length-t;if(l!==0){const c=Jn((100-a)/l);for(const d of e)d.defaultSize===void 0&&(o[d.panelId]=c)}return o}function DU(e,t,a){if(!a[0])return;const o=e.panels.find(m=>m.element===t);if(!o||!o.onResize)return;const l=ri({group:e}),c=e.orientation==="horizontal"?o.element.offsetWidth:o.element.offsetHeight,d=o.mutableValues.prevSize,p={asPercentage:Jn(c/l*100),inPixels:c};o.mutableValues.prevSize=p,o.onResize(p,o.id,d)}function PU(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const a in e)if(e[a]!==t[a])return!1;return!0}function LU({group:e,nextGroupSize:t,prevGroupSize:a,prevLayout:o}){if(a<=0||t<=0||a===t)return o;let l=0,c=0,d=!1;const p=new Map,m=[];for(const b of e.panels){const _=o[b.id]??0;switch(b.panelConstraints.groupResizeBehavior){case"preserve-pixel-size":{d=!0;const j=_/100*a,E=Jn(j/t*100);p.set(b.id,E),l+=E;break}case"preserve-relative-size":default:{m.push(b.id),c+=_;break}}}if(!d||m.length===0)return o;const g=100-l,h={...o};if(p.forEach((b,_)=>{h[_]=b}),c>0)for(const b of m){const _=o[b]??0;h[b]=Jn(_/c*g)}else{const b=Jn(g/m.length);for(const _ of m)h[_]=b}return h}function IU(e,t){const a=e.map(l=>l.id),o=Object.keys(t);if(a.length!==o.length)return!1;for(const l of a)if(!o.includes(l))return!1;return!0}const zl=new Map;function BU(e){let t=!0;qt(e.element.ownerDocument.defaultView,"Cannot register an unmounted Group");const a=e.element.ownerDocument.defaultView.ResizeObserver,o=new Set,l=new Set,c=new a(E=>{for(const k of E){const{borderBoxSize:y,target:w}=k;if(w===e.element){if(t){const S=ri({group:e});if(S===0)return;const N=Ur(e.id);if(!N)return;const R=Jx(e),A=N.defaultLayoutDeferred?nS(R):N.layout,T=LU({group:e,nextGroupSize:S,prevGroupSize:N.groupSize,prevLayout:A}),O=Uo({layout:T,panelConstraints:R});if(!N.defaultLayoutDeferred&&Bo(N.layout,O)&&PU(N.derivedPanelConstraints,R)&&N.groupSize===S)return;ar(e,{defaultLayoutDeferred:!1,derivedPanelConstraints:R,groupSize:S,layout:O,separatorToPanels:N.separatorToPanels})}}else DU(e,w,y)}});c.observe(e.element),e.panels.forEach(E=>{qt(!o.has(E.id),`Panel ids must be unique; id "${E.id}" was used more than once`),o.add(E.id),E.onResize&&c.observe(E.element)});const d=ri({group:e}),p=Jx(e),m=e.panels.map(({id:E})=>E).join(",");let g=e.mutableState.defaultLayout;g&&(IU(e.panels,g)||(g=void 0));const h=e.mutableState.layouts[m]??g??nS(p),b=Uo({layout:h,panelConstraints:p}),_=e.element.ownerDocument;zl.set(_,(zl.get(_)??0)+1);const j=new Map;return KE(e).forEach(E=>{E.separator&&j.set(E.separator,E.panels)}),ar(e,{defaultLayoutDeferred:d===0,derivedPanelConstraints:p,groupSize:d,layout:b,separatorToPanels:j}),e.separators.forEach(E=>{qt(!l.has(E.id),`Separator ids must be unique; id "${E.id}" was used more than once`),l.add(E.id),E.element.addEventListener("keydown",Qw)}),zl.get(_)===1&&(_.addEventListener("contextmenu",Fw,!0),_.addEventListener("dblclick",Xw,!0),_.addEventListener("pointerdown",Ww,!0),_.addEventListener("pointerleave",Zw),_.addEventListener("pointermove",Jw),_.addEventListener("pointerout",eS),_.addEventListener("pointerup",tS,!0)),function(){t=!1,zl.set(_,Math.max(0,(zl.get(_)??0)-1)),SU(e),e.separators.forEach(E=>{E.element.removeEventListener("keydown",Qw)}),zl.get(_)||(_.removeEventListener("contextmenu",Fw,!0),_.removeEventListener("dblclick",Xw,!0),_.removeEventListener("pointerdown",Ww,!0),_.removeEventListener("pointerleave",Zw),_.removeEventListener("pointermove",Jw),_.removeEventListener("pointerout",eS),_.removeEventListener("pointerup",tS,!0)),c.disconnect()}}function UU(){const[e,t]=x.useState({}),a=x.useCallback(()=>t({}),[]);return[e,a]}function sv(e){const t=x.useId();return`${e??t}`}const Yo=typeof window<"u"?x.useLayoutEffect:x.useEffect;function Bc(e){const t=x.useRef(e);return Yo(()=>{t.current=e},[e]),x.useCallback((...a)=>t.current?.(...a),[t])}function av(...e){return Bc(t=>{e.forEach(a=>{if(a)switch(typeof a){case"function":{a(t);break}case"object":{a.current=t;break}}})})}function rv(e){const t=x.useRef({...e});return Yo(()=>{for(const a in e)t.current[a]=e[a]},[e]),t.current}const oR=x.createContext(null);function $U(e,t){const a=x.useRef({getLayout:()=>({}),setLayout:kU});x.useImperativeHandle(t,()=>a.current,[]),Yo(()=>{Object.assign(a.current,aR({groupId:e}))})}function tb({children:e,className:t,defaultLayout:a,disableCursor:o,disabled:l,elementRef:c,groupRef:d,id:p,onLayoutChange:m,onLayoutChanged:g,orientation:h="horizontal",resizeTargetMinimumSize:b={coarse:20,fine:10},style:_,...j}){const E=x.useRef({onLayoutChange:{},onLayoutChanged:{}}),k=Bc(B=>{Bo(E.current.onLayoutChange,B)||(E.current.onLayoutChange=B,m?.(B))}),y=Bc((B,D)=>{Bo(E.current.onLayoutChanged,B)||(E.current.onLayoutChanged=B,g?.(B,{isUserInteraction:D}))}),w=sv(p),S=x.useRef(null),[N,R]=UU(),A=x.useRef({lastExpandedPanelSizes:{},layouts:{},panels:[],resizeTargetMinimumSize:b,separators:[]}),T=av(S,c);$U(w,d);const O=Bc((B,D)=>{const L=Io(),$=qw(B),V=Ur(B);if(V){let H=!1;switch(L.state){case"active":{H=L.hitRegions.some(F=>F.group===$);break}}return{flexGrow:V.layout[D]??1,pointerEvents:H?"none":void 0}}if(a?.[D])return{flexGrow:a?.[D]}}),z=rv({defaultLayout:a,disableCursor:o}),U=x.useMemo(()=>({get disableCursor(){return!!z.disableCursor},getPanelStyles:O,id:w,orientation:h,registerPanel:B=>{const D=A.current;return D.panels=eb(h,[...D.panels,B]),R(),()=>{D.panels=D.panels.filter(L=>L!==B),R()}},registerSeparator:B=>{const D=A.current;return D.separators=eb(h,[...D.separators,B]),R(),()=>{D.separators=D.separators.filter(L=>L!==B),R()}},updatePanelProps:(B,{disabled:D})=>{const L=A.current.panels.find(H=>H.id===B);L&&(L.panelConstraints.disabled=D);const $=qw(w),V=Ur(w);$&&V&&ar($,{...V,derivedPanelConstraints:Jx($)})},updateSeparatorProps:(B,{disabled:D,disableDoubleClick:L})=>{const $=A.current.separators.find(V=>V.id===B);$&&($.disabled=D,$.disableDoubleClick=L)}}),[O,w,R,h,z]),P=x.useRef(null);return Yo(()=>{const B=S.current;if(B===null)return;const D=A.current;let L;if(z.defaultLayout!==void 0&&Object.keys(z.defaultLayout).length===D.panels.length){L={};for(const K of D.panels){const I=z.defaultLayout[K.id];I!==void 0&&(L[K.id]=I)}}const $={disabled:!!l,element:B,id:w,mutableState:{defaultLayout:L,disableCursor:!!z.disableCursor,expandedPanelSizes:A.current.lastExpandedPanelSizes,layouts:A.current.layouts},orientation:h,panels:D.panels,resizeTargetMinimumSize:D.resizeTargetMinimumSize,separators:D.separators};P.current=$;const V=BU($),{defaultLayoutDeferred:H,derivedPanelConstraints:F,layout:Y}=Ur($.id,!0);!H&&F.length>0&&(k(Y),y(Y,!1));const G=tv(w,K=>{const{defaultLayoutDeferred:I,derivedPanelConstraints:X,layout:Z}=K.next;if(I||X.length===0)return;const te=$.panels.map(({id:ee})=>ee).join(",");$.mutableState.layouts[te]=Z,X.forEach(ee=>{if(ee.collapsible){const{layout:re}=K.prev??{};if(re){const le=Yn(ee.collapsedSize,Z[ee.panelId]),me=Yn(ee.collapsedSize,re[ee.panelId]);le&&!me&&($.mutableState.expandedPanelSizes[ee.panelId]=re[ee.panelId])}}});const fe=Io().state!=="active";k(Z),fe&&y(Z,K.isUserInteraction)});return()=>{P.current=null,V(),G()}},[l,w,y,k,h,N,z]),x.useEffect(()=>{const B=P.current;B&&(B.mutableState.defaultLayout=a,B.mutableState.disableCursor=!!o)}),s.jsx(oR.Provider,{value:U,children:s.jsx("div",{...j,className:t,"data-group":!0,"data-testid":w,id:w,ref:T,style:{height:"100%",width:"100%",overflow:"hidden",..._,display:"flex",flexDirection:h==="horizontal"?"row":"column",flexWrap:"nowrap",touchAction:h==="horizontal"?"pan-y":"pan-x"},children:e})})}tb.displayName="Group";function ov(){const e=x.useContext(oR);return qt(e,"Group Context not found; did you render a Panel or Separator outside of a Group?"),e}function HU(e,t){const{id:a}=ov(),o=x.useRef({collapse:lx,expand:lx,getSize:()=>({asPercentage:0,inPixels:0}),isCollapsed:()=>!1,resize:lx});x.useImperativeHandle(t,()=>o.current,[]),Yo(()=>{Object.assign(o.current,sR({groupId:a,panelId:e}))})}function wo({children:e,className:t,collapsedSize:a="0%",collapsible:o=!1,defaultSize:l,disabled:c,elementRef:d,groupResizeBehavior:p="preserve-relative-size",id:m,maxSize:g="100%",minSize:h="0%",onResize:b,panelRef:_,style:j,...E}){const k=!!m,y=sv(m),w=rv({disabled:c}),S=x.useRef(null),N=av(S,d),{getPanelStyles:R,id:A,orientation:T,registerPanel:O,updatePanelProps:z}=ov(),U=b!==null,P=Bc(($,V,H)=>{b?.($,m,H)});Yo(()=>{const $=S.current;if($!==null){const V={element:$,id:y,idIsStable:k,mutableValues:{expandToSize:void 0,prevSize:void 0},onResize:U?P:void 0,panelConstraints:{groupResizeBehavior:p,collapsedSize:a,collapsible:o,defaultSize:l,disabled:w.disabled,maxSize:g,minSize:h}};return O(V)}},[p,a,o,l,U,y,k,g,h,P,O,w]),x.useEffect(()=>{z(y,{disabled:c})},[c,y,z]),HU(y,_);const B=()=>{const $=R(A,y);if($)return JSON.stringify($)},D=x.useSyncExternalStore($=>tv(A,$),B,B);let L;return D?L=JSON.parse(D):l!==void 0?L={flexGrow:void 0,flexShrink:void 0,flexBasis:l}:L={flexGrow:1},s.jsx("div",{...E,"data-disabled":c||void 0,"data-panel":!0,"data-testid":y,id:y,ref:N,style:{...VU,display:"flex",flexBasis:0,flexShrink:1,overflow:"visible",...L},children:s.jsx("div",{className:t,style:{maxHeight:"100%",maxWidth:"100%",flexGrow:1,overflow:"auto",...j,touchAction:T==="horizontal"?"pan-y":"pan-x"},children:e})})}wo.displayName="Panel";const VU={minHeight:0,maxHeight:"100%",height:"auto",minWidth:0,maxWidth:"100%",width:"auto",border:"none",borderWidth:0,padding:0,margin:0};function qU({layout:e,panelConstraints:t,panelId:a,panelIndex:o}){let l,c;const d=e[a],p=t.find(m=>m.panelId===a);if(p){const m=p.maxSize,g=p.collapsible?p.collapsedSize:p.minSize,h=[o,o+1];c=Uo({layout:Jc({delta:g-d,initialLayout:e,panelConstraints:t,pivotIndices:h,prevLayout:e}),panelConstraints:t})[a],l=Uo({layout:Jc({delta:m-d,initialLayout:e,panelConstraints:t,pivotIndices:h,prevLayout:e}),panelConstraints:t})[a]}return{valueControls:a,valueMax:l,valueMin:c,valueNow:d}}function lv({children:e,className:t,disabled:a,disableDoubleClick:o,elementRef:l,id:c,style:d,...p}){const m=sv(c),g=rv({disabled:a,disableDoubleClick:o}),[h,b]=x.useState({}),[_,j]=x.useState("inactive"),[E,k]=x.useState(!1),y=x.useRef(null),w=av(y,l),{disableCursor:S,id:N,orientation:R,registerSeparator:A,updateSeparatorProps:T}=ov(),O=R==="horizontal"?"vertical":"horizontal";Yo(()=>{const P=y.current;if(P!==null){const B={disabled:g.disabled,disableDoubleClick:g.disableDoubleClick,element:P,id:m},D=A(B),L=yU(V=>{j(V.next.state!=="inactive"&&V.next.hitRegions.some(H=>H.separator===B)?V.next.state:"inactive")}),$=tv(N,V=>{const{derivedPanelConstraints:H,layout:F,separatorToPanels:Y}=V.next,G=Y.get(B);if(G){const K=G[0],I=G.indexOf(K);b(qU({layout:F,panelConstraints:H,panelId:K.id,panelIndex:I}))}});return()=>{L(),$(),D()}}},[N,m,A,g]),x.useEffect(()=>{T(m,{disabled:a,disableDoubleClick:o})},[a,o,m,T]);let z;a&&!S&&(z="not-allowed");let U;if(a)U="disabled";else switch(_){case"active":{U="active";break}default:E?U="focus":U=_}return s.jsx("div",{...p,"aria-controls":h.valueControls,"aria-disabled":a||void 0,"aria-orientation":O,"aria-valuemax":h.valueMax,"aria-valuemin":h.valueMin,"aria-valuenow":h.valueNow,children:e,className:t,"data-separator":U,"data-testid":m,id:m,onBlur:()=>k(!1),onFocus:()=>k(!0),ref:w,role:"separator",style:{flexBasis:"auto",cursor:z,...d,flexGrow:0,flexShrink:0,touchAction:"none"},tabIndex:a?void 0:0})}lv.displayName="Separator";function FU({projects:e,value:t,onChange:a,disabled:o}){const l=e.map(c=>{const d=c.path?.split("/").filter(Boolean).pop()||u("modules_ui.code_project_fallback",{id:c.id});return{value:String(c.id),label:c.name||d,icon:P5,description:c.path}});return s.jsx("div",{className:"w-full","data-testid":"code-project-select",children:s.jsx(ut,{value:t,onChange:a,options:l,placeholder:u("modules_ui.code_pick_project_ph"),disabled:o})})}function GU({sessions:e,activeId:t,busy:a,onSelect:o,onCreate:l,onRename:c,onDelete:d}){return s.jsxs("div",{className:"flex h-full flex-col","data-testid":"code-session-list",children:[s.jsxs("div",{className:"flex shrink-0 items-center justify-between px-3 py-2",children:[s.jsx("span",{className:"text-[11px] font-semibold uppercase tracking-wide text-muted-foreground",children:u("code_module.sessions")}),s.jsx(Ye,{content:u("code_module.new_session"),children:s.jsxs("button",{type:"button",onClick:l,disabled:a,"data-testid":"code-new-session",className:"flex items-center gap-1 rounded-md border border-border px-1.5 py-0.5 text-[11px] text-muted-foreground transition-colors hover:bg-accent hover:text-foreground disabled:opacity-50",children:[s.jsx(It,{className:"size-3"})," ",u("code_module.new_session")]})})]}),s.jsx("div",{className:"min-h-0 flex-1 overflow-y-auto px-2 pb-2",children:e.length===0?s.jsx("div",{className:"p-2",children:s.jsx(pt,{children:u("code_module.no_sessions")})}):s.jsx("ul",{className:"space-y-0.5",children:e.map(p=>s.jsxs("li",{className:"group/item relative",children:[s.jsxs("button",{type:"button",onClick:()=>o(p.id),className:he("flex w-full items-start gap-2 rounded-md px-2 py-1.5 text-left text-xs transition-colors",p.id===t?"bg-accent text-accent-fg":"text-foreground/80 hover:bg-accent/50"),children:[s.jsx(xb,{className:"mt-0.5 size-3.5 shrink-0 opacity-60"}),s.jsxs("span",{className:"min-w-0 flex-1",children:[s.jsx("span",{className:"block truncate font-medium",children:p.title}),s.jsxs("span",{className:"block truncate text-[10px] text-muted-foreground",children:[p.mode," · ",p.messageCount," msg",p.model?` · ${p.model}`:""]})]})]}),s.jsxs("div",{className:"absolute right-1 top-1 hidden items-center gap-0.5 group-hover/item:flex",children:[s.jsx(Ye,{content:u("code_module.rename"),children:s.jsx("button",{type:"button",onClick:()=>c(p.id,p.title),className:"rounded p-1 text-muted-foreground hover:bg-background hover:text-foreground",children:s.jsx(ya,{className:"size-3"})})}),s.jsx(Ye,{content:u("code_module.delete"),children:s.jsx("button",{type:"button",onClick:()=>d(p.id),className:"rounded p-1 text-muted-foreground hover:bg-background hover:text-rose-500",children:s.jsx(_n,{className:"size-3"})})})]})]},p.id))})})]})}function YU({mode:e,onChange:t,disabled:a}){const o=(l,c,d,p)=>s.jsx(Ye,{content:d,children:s.jsxs("button",{type:"button",disabled:a,"data-testid":`code-mode-${l}`,"aria-pressed":e===l,onClick:()=>t(l),className:he("flex items-center gap-1.5 rounded-md px-2.5 py-1 text-xs font-medium transition-colors disabled:opacity-50",e===l?"bg-background text-foreground shadow-sm":"text-muted-foreground hover:text-foreground"),children:[s.jsx(p,{className:"size-3.5"})," ",c]})});return s.jsxs("div",{className:"flex items-center gap-0.5 rounded-lg border border-border bg-muted/60 p-0.5",children:[o("build",u("code_module.mode_build"),u("code_module.mode_build_hint"),U5),o("plan",u("code_module.mode_plan"),u("code_module.mode_plan_hint"),k5)]})}function KU({value:e,onValueChange:t,onSubmit:a,onStop:o,busy:l,disabled:c,mode:d,onModeChange:p,model:m,onModelChange:g}){return s.jsx(K_,{value:e,onValueChange:t,onSubmit:a,onStop:o,busy:l,disabled:c,placeholder:u("code_module.placeholder"),minRows:1,maxRows:6,footer:s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(YU,{mode:d,onChange:p,disabled:l}),s.jsx(X_,{value:m,onChange:g,disabled:l})]})})}function ix(e,t){let a=0;for(const o of e.parts||[])o.kind==="text"&&t.text&&(a+=o.text.length),o.kind==="tool"&&t.tool&&(o.args&&(a+=JSON.stringify(o.args).length),o.result!==void 0&&(a+=JSON.stringify(o.result).length));return Math.ceil(a/4)}function XU(e){let t=null,a=0,o=0;for(const d of e)d.role==="user"?a++:o++,d.role==="assistant"&&d.usage&&(t={input:d.usage.input_tokens,output:d.usage.output_tokens,model:d.model});const l=t?.input??0,c=t?.output??0;return{model:t?.model??null,input:l,output:c,total:l+c,hasUsage:!!t,messages:e.length,userMsgs:a,assistantMsgs:o}}function QU(e){let t=0,a=0,o=0;for(const d of e)d.role==="user"?t+=ix(d,{text:!0}):a+=ix(d,{text:!0}),o+=ix(d,{tool:!0});const l=t+a+o||1,c=(d,p)=>({key:d,tokens:p,percent:Math.round(p/l*100)});return[c("user",t),c("assistant",a),c("tool",o)].filter(d=>d.tokens>0)}const sS={user:"bg-emerald-500",assistant:"bg-sky-500",tool:"bg-amber-500"};function Ya({label:e,value:t}){return s.jsxs("div",{className:"flex items-baseline justify-between gap-2 py-0.5",children:[s.jsx("span",{className:"shrink-0 text-[10px] uppercase tracking-wide text-muted-foreground",children:e}),s.jsx("span",{className:"min-w-0 truncate text-right font-mono text-xs text-foreground",children:t})]})}function aS(e){if(!e)return"";const t=new Date(e),a=o=>String(o).padStart(2,"0");return`${a(t.getDate())} ${t.toLocaleString("es",{month:"short"})} ${t.getFullYear()}, ${a(t.getHours())}:${a(t.getMinutes())}`}function WU({turns:e,session:t}){const a=x.useMemo(()=>XU(e),[e]),o=x.useMemo(()=>QU(e),[e]);return e.length===0?s.jsx("div",{className:"p-3",children:s.jsx(pt,{children:u("code_module.ctx_none")})}):s.jsxs("div",{className:"space-y-1 p-3","data-testid":"code-context-tab",children:[s.jsx(Ya,{label:u("code_module.ctx_model"),value:a.model||u("modules_ui.code_ctx_auto")}),t?.mode&&s.jsx(Ya,{label:u("modules_ui.code_ctx_mode"),value:t.mode}),t?.agentSlug&&s.jsx(Ya,{label:u("modules_ui.code_ctx_agent"),value:t.agentSlug}),s.jsx(Ya,{label:u("code_module.ctx_messages"),value:u("modules_ui.code_ctx_msgs_value",{user:a.userMsgs,assistant:a.assistantMsgs})}),s.jsx(Ya,{label:u("code_module.ctx_input"),value:a.input.toLocaleString()}),s.jsx(Ya,{label:u("code_module.ctx_output"),value:a.output.toLocaleString()}),s.jsx(Ya,{label:u("modules_ui.code_ctx_tokens_total"),value:(a.input+a.output).toLocaleString()}),t?.createdAt&&s.jsx(Ya,{label:u("modules_ui.code_ctx_created"),value:aS(t.createdAt)}),t?.updatedAt&&s.jsx(Ya,{label:u("modules_ui.code_ctx_activity"),value:aS(t.updatedAt)}),s.jsx("hr",{className:"border-border my-2"}),s.jsxs("div",{children:[s.jsx("div",{className:"mb-1 text-[11px] font-semibold text-muted-foreground",children:u("code_module.ctx_breakdown")}),o.length>0?s.jsxs(s.Fragment,{children:[s.jsx("div",{className:"flex h-2.5 w-full overflow-hidden rounded-full bg-muted",children:o.map(l=>s.jsx(Ye,{content:`${l.key}: ${l.tokens} (${l.percent}%)`,children:s.jsx("div",{className:sS[l.key],style:{width:`${l.percent}%`}})},l.key))}),s.jsx("ul",{className:"mt-2 space-y-1",children:o.map(l=>s.jsxs("li",{className:"flex items-center gap-2 text-[11px]",children:[s.jsx("span",{className:`size-2 rounded-full ${sS[l.key]}`}),s.jsx("span",{className:"flex-1 text-foreground/80",children:u(`code_module.seg_${l.key}`)}),s.jsxs("span",{className:"font-mono text-muted-foreground",children:[l.tokens," · ",l.percent,"%"]})]},l.key))})]}):s.jsx("p",{className:"text-[11px] text-muted-foreground",children:u("code_module.ctx_none")})]})]})}function ZU(e){const t=[];for(const a of(e||"").split(`
773
- `))a.startsWith("diff --git")||a.startsWith("index ")||a.startsWith("--- ")||a.startsWith("+++ ")||a.startsWith("new file")||a.startsWith("deleted file")||a.startsWith("similarity index")||a.startsWith("rename ")||(a.startsWith("@@")?t.push({kind:"hunk",text:a}):a.startsWith("+")?t.push({kind:"add",text:a.slice(1)}):a.startsWith("-")?t.push({kind:"del",text:a.slice(1)}):t.push({kind:"ctx",text:a.replace(/^ /,"")}));for(;t.length&&t[t.length-1].kind==="ctx"&&t[t.length-1].text==="";)t.pop();return t}function JU({patch:e}){const t=x.useMemo(()=>ZU(e),[e]);return t.length?s.jsx("pre",{className:"overflow-x-auto rounded-md border border-border bg-background/60 font-mono text-[11px] leading-relaxed",children:s.jsx("code",{className:"block",children:t.map((a,o)=>s.jsxs("div",{className:he("px-2 whitespace-pre",a.kind==="add"&&"bg-emerald-500/10 text-emerald-600 dark:text-emerald-400",a.kind==="del"&&"bg-rose-500/10 text-rose-600 dark:text-rose-400",a.kind==="hunk"&&"bg-muted/60 text-muted-foreground",a.kind==="ctx"&&"text-foreground/70"),children:[s.jsx("span",{className:"select-none opacity-50",children:a.kind==="add"?"+":a.kind==="del"?"-":" "}),a.text]},o))})}):null}const e$={added:px,modified:xf,deleted:D5},t$={added:"text-emerald-600 dark:text-emerald-400",modified:"text-amber-600 dark:text-amber-400",deleted:"text-rose-600 dark:text-rose-400"};function n$({file:e}){const[t,a]=x.useState(!1),o=e$[e.status];return s.jsxs("li",{className:"rounded-md border border-border",children:[s.jsxs("button",{type:"button",onClick:()=>a(l=>!l),className:"flex w-full items-center gap-2 px-2 py-1.5 text-left text-xs hover:bg-accent/40",children:[s.jsx(qr,{className:he("size-3 shrink-0 transition-transform",t&&"rotate-90")}),s.jsx(o,{className:he("size-3.5 shrink-0",t$[e.status])}),s.jsx("span",{className:"min-w-0 flex-1 truncate font-mono",children:e.path}),s.jsxs("span",{className:"shrink-0 font-mono text-[10px] text-muted-foreground",children:[e.additions!=null&&s.jsxs("span",{className:"text-emerald-600 dark:text-emerald-400",children:["+",e.additions]}),e.deletions!=null&&s.jsxs("span",{className:"ml-1 text-rose-600 dark:text-rose-400",children:["-",e.deletions]})]})]}),t&&s.jsx("div",{className:"border-t border-border p-1.5",children:s.jsx(JU,{patch:e.patch})})]})}function s$({changes:e,loading:t,onRefresh:a}){const o=e?.files||[];return s.jsxs("div",{className:"flex h-full flex-col","data-testid":"code-changes-tab",children:[s.jsxs("div",{className:"flex shrink-0 items-center justify-between px-3 py-2",children:[s.jsx("span",{className:"text-[11px] text-muted-foreground",children:o.length>0?u("code_module.changes_files",{n:o.length}):""}),s.jsx(Ye,{content:u("code_module.reload"),children:s.jsx("button",{type:"button",onClick:a,className:"rounded p-1 text-muted-foreground hover:bg-accent hover:text-foreground",children:t?s.jsx(Dn,{size:12}):s.jsx(Qs,{className:"size-3"})})})]}),s.jsx("div",{className:"min-h-0 flex-1 overflow-y-auto px-3 pb-3",children:e&&!e.git?s.jsx(pt,{children:u("code_module.changes_no_git")}):o.length===0?s.jsx(pt,{children:u("code_module.changes_none")}):s.jsx("ul",{className:"space-y-1.5",children:o.map(l=>s.jsx(n$,{file:l},l.path))})})]})}const a$=[{value:"context",icon:Zf,label:"tab_context"},{value:"changes",icon:B5,label:"tab_changes"},{value:"artifacts",icon:Z5,label:"tab_artifacts"}];function r$({pid:e,turns:t,changes:a,changesLoading:o,onRefreshChanges:l,session:c,onRunInTerminal:d,onEditArtifact:p}){const[m,g]=x.useState("context"),h=a?.files.length||0;return s.jsxs(Mp,{value:m,onValueChange:g,className:"flex h-full flex-col gap-0","data-testid":"code-side-panel",children:[s.jsx("div",{className:"shrink-0 border-b border-border px-2 py-2",children:s.jsx(Op,{variant:"line",className:"w-full",children:a$.map(({value:b,icon:_,label:j})=>{const E=m===b,k=u(`code_module.${j}`);return s.jsx(Ye,{content:k,children:s.jsxs(fa,{value:b,className:E?"flex-1 min-w-0":"w-8 shrink-0",children:[s.jsx(_,{className:"size-3.5 shrink-0"}),E&&s.jsx("span",{className:"truncate text-xs",children:k}),b==="changes"&&h>0&&s.jsx("span",{className:"ml-0.5 rounded-full bg-muted px-1 text-[10px] text-muted-foreground leading-none py-0.5",children:h})]})},b)})})}),s.jsx(Us,{value:"context",className:"min-h-0 flex-1 overflow-y-auto",children:s.jsx(WU,{turns:t,session:c})}),s.jsx(Us,{value:"changes",className:"min-h-0 flex-1 overflow-hidden",children:s.jsx(s$,{changes:a,loading:o,onRefresh:l})}),s.jsx(Us,{value:"artifacts",className:"min-h-0 flex-1 overflow-hidden",children:s.jsx(zE,{pid:e,onRunInTerminal:d,onEditArtifact:p})})]})}function o$(e){const t=[];for(const o of e){const l=o.split("/").filter(Boolean);let c=t,d="";for(let p=0;p<l.length;p++){d=d?`${d}/${l[p]}`:l[p];const m=p===l.length-1;let g=c.find(h=>h.name===l[p]);g||(g={name:l[p],path:d,type:m?"file":"dir",children:m?void 0:[]},c.push(g)),m||(c=g.children)}}const a=o=>(o.forEach(l=>{l.children&&(l.children=a(l.children))}),o.sort((l,c)=>l.type!==c.type?l.type==="dir"?-1:1:l.name.localeCompare(c.name)));return a(t)}function lR({node:e,depth:t,onOpenFile:a,openDirs:o,toggleDir:l}){const c=e.type==="dir",d=c&&o.has(e.path);return s.jsxs("li",{children:[s.jsxs("button",{type:"button",onClick:()=>c?l(e.path):a(e.path),style:{paddingLeft:`${t*12+6}px`},className:he("flex w-full items-center gap-1.5 py-0.5 pr-2 text-left text-[11px] rounded transition-colors","hover:bg-accent/40",c?"text-foreground/80":"text-foreground/70"),children:[c?s.jsxs(s.Fragment,{children:[s.jsx(qr,{className:he("size-3 shrink-0 transition-transform",d&&"rotate-90")}),d?s.jsx(ci,{className:"size-3.5 shrink-0 text-amber-400"}):s.jsx(US,{className:"size-3.5 shrink-0 text-amber-400"})]}):s.jsxs(s.Fragment,{children:[s.jsx("span",{className:"size-3 shrink-0"}),s.jsx(BS,{className:"size-3.5 shrink-0 text-sky-400"})]}),s.jsx("span",{className:"truncate",children:e.name})]}),c&&d&&e.children&&e.children.length>0&&s.jsx("ul",{children:e.children.map(p=>s.jsx(lR,{node:p,depth:t+1,onOpenFile:a,openDirs:o,toggleDir:l},p.path))})]})}function l$({pid:e,projectPath:t,className:a,onOpenFile:o}){const[l,c]=x.useState([]),[d,p]=x.useState(!1),[m,g]=x.useState(!1),[h,b]=x.useState(()=>new Set),_=x.useCallback(async()=>{p(!0);try{const S=(await ne.post("/run",{cmd:"find . -type f -not -path '*/node_modules/*' -not -path '*/.git/*' -not -path '*/dist/*' -not -path '*/.claude/*' | sed 's|^\\./||' | sort | head -500",project:e})).stdout.split(`
774
- `).map(N=>N.trim()).filter(Boolean);c(S),g(!0)}catch{g(!0)}finally{p(!1)}},[e]);x.useEffect(()=>{b(new Set),_()},[_]);const j=x.useCallback(w=>{b(S=>{const N=new Set(S);return N.has(w)?N.delete(w):N.add(w),N})},[]),E=x.useCallback(()=>{b(new Set)},[]),k=o$(l),y=h.size>0;return s.jsxs("div",{className:he("flex h-full flex-col",a),"data-testid":"code-file-tree",children:[s.jsxs("div",{className:"flex shrink-0 items-center justify-between border-b border-border px-3 py-2",children:[s.jsx("span",{className:"text-[11px] font-semibold uppercase tracking-wide text-muted-foreground",children:"Archivos"}),s.jsxs("div",{className:"flex items-center gap-0.5",children:[s.jsx(Ye,{content:u("code_module.tree_collapse_all"),children:s.jsx("button",{type:"button",onClick:E,disabled:!y,className:"rounded p-1 text-muted-foreground hover:bg-accent hover:text-foreground disabled:opacity-40 disabled:hover:bg-transparent",children:s.jsx(_5,{className:"size-3"})})}),s.jsx(Ye,{content:u("code_module.reload"),children:s.jsx("button",{type:"button",onClick:()=>void _(),className:"rounded p-1 text-muted-foreground hover:bg-accent hover:text-foreground",children:d?s.jsx(Dn,{size:12}):s.jsx(Qs,{className:"size-3"})})})]})]}),s.jsx("div",{className:"min-h-0 flex-1 overflow-y-auto py-1",children:m?k.length===0?s.jsx("div",{className:"p-3",children:s.jsx(pt,{children:"Sin archivos"})}):s.jsx("ul",{children:k.map(w=>s.jsx(lR,{node:w,depth:0,onOpenFile:o??(()=>{}),openDirs:h,toggleDir:j},w.path))}):s.jsx("div",{className:"flex justify-center pt-6",children:s.jsx(Dn,{size:14})})})]})}function i$({path:e,content:t,loading:a,onSave:o}){const l=typeof o=="function",[c,d]=x.useState(t),[p,m]=x.useState(!1);x.useEffect(()=>{d(t)},[t]);const g=l&&c!==t,h=async()=>{if(!(!o||!g)){m(!0);try{await o(c)}finally{m(!1)}}};return s.jsxs("div",{className:"flex h-full min-h-0 flex-col bg-card/40","data-testid":"code-file-viewer",children:[s.jsxs("div",{className:"flex shrink-0 items-center gap-2 border-b border-border px-3 py-1.5",children:[s.jsxs("span",{className:"min-w-0 flex-1 truncate font-mono text-[11px] text-muted-foreground",children:[e,g&&s.jsx("span",{className:"ml-1 text-amber-400",children:"•"})]}),l&&s.jsxs(s.Fragment,{children:[s.jsx(Ye,{content:u("code_module.discard_changes"),children:s.jsxs("button",{type:"button",onClick:()=>d(t),disabled:!g||p,className:"inline-flex items-center gap-1 rounded px-1.5 py-0.5 text-[10px] font-medium text-muted-foreground hover:bg-accent hover:text-foreground disabled:opacity-40",children:[s.jsx(ui,{className:"size-3"}),"Descartar"]})}),s.jsx(Ye,{content:u("code_module.save_shortcut_hint"),children:s.jsxs("button",{type:"button",onClick:()=>void h(),disabled:!g||p,className:he("inline-flex items-center gap-1 rounded px-2 py-0.5 text-[10px] font-medium transition-colors",g&&!p?"bg-emerald-500/15 text-emerald-700 hover:bg-emerald-500/25 dark:text-emerald-300":"bg-muted text-muted-foreground"),children:[p?s.jsx(Dn,{size:10}):s.jsx(di,{className:"size-3"}),"Guardar"]})})]})]}),a?s.jsx("div",{className:"flex flex-1 items-center justify-center",children:s.jsx(Dn,{size:16})}):l?s.jsx("textarea",{value:c,onChange:b=>d(b.target.value),onKeyDown:b=>{(b.metaKey||b.ctrlKey)&&b.key==="s"&&(b.preventDefault(),h())},className:"min-h-0 flex-1 resize-none bg-transparent p-3 font-mono text-[12px] leading-[1.6] text-foreground/90 outline-none",spellCheck:!1}):s.jsx("div",{className:"min-h-0 flex-1 overflow-auto",children:s.jsx("table",{className:"w-full border-collapse font-mono text-[12px] leading-[1.6]",children:s.jsx("tbody",{children:t.split(`
775
- `).map((b,_)=>s.jsxs("tr",{className:"hover:bg-accent/20",children:[s.jsx("td",{className:"w-12 select-none border-r border-border/30 px-3 py-0 text-right align-top text-[10px] text-muted-foreground/40","aria-hidden":"true",children:_+1}),s.jsx("td",{className:"px-4 py-0 align-top text-foreground/90 whitespace-pre",children:b||" "})]},_))})})})]})}function c$({pid:e,className:t,initCmd:a,onClose:o}){const[l,c]=x.useState([]),[d,p]=x.useState(""),[m,g]=x.useState(!1),[h,b]=x.useState([]),[_,j]=x.useState(-1),E=x.useRef(null),k=x.useRef(null);x.useEffect(()=>{E.current?.scrollIntoView({behavior:"smooth"})},[l]),x.useEffect(()=>{a&&(p(a),setTimeout(()=>k.current?.focus(),50))},[a]);const y=async S=>{const N=S.trim();if(N){b(R=>[N,...R.slice(0,49)]),j(-1),c(R=>[...R,{type:"cmd",text:`$ ${N}`}]),g(!0);try{const R=await ne.post("/run",{cmd:N,project:e});R.stdout&&c(A=>[...A,{type:"out",text:R.stdout}]),R.stderr&&c(A=>[...A,{type:"err",text:R.stderr}])}catch(R){c(A=>[...A,{type:"err",text:String(R.message)}])}finally{g(!1)}}},w=S=>{if(S.key==="Enter")y(d),p("");else if(S.key==="ArrowUp"){S.preventDefault();const N=Math.min(_+1,h.length-1);j(N),p(h[N]??"")}else if(S.key==="ArrowDown"){S.preventDefault();const N=Math.max(_-1,-1);j(N),p(N===-1?"":h[N]??"")}};return s.jsxs("div",{className:he("flex h-full min-h-0 flex-col bg-card/60",t),"data-testid":"code-terminal",children:[s.jsxs("div",{className:"flex shrink-0 items-center gap-2 border-b border-border px-3 py-1",children:[s.jsx(ba,{className:"size-3 text-muted-foreground"}),s.jsx("span",{className:"flex-1 text-[11px] text-muted-foreground",children:"Terminal"}),s.jsx(Ye,{content:u("code_module.terminal_clear"),children:s.jsx("button",{type:"button",onClick:()=>c([]),className:"rounded p-0.5 text-muted-foreground hover:bg-accent hover:text-foreground",children:s.jsx(A5,{className:"size-3"})})}),s.jsx(Ye,{content:u("code_module.terminal_close"),children:s.jsx("button",{type:"button",onClick:()=>o?.(),className:"rounded p-0.5 text-muted-foreground hover:bg-accent hover:text-foreground",children:s.jsx(ws,{className:"size-3"})})})]}),s.jsxs("div",{className:"min-h-0 flex-1 overflow-y-auto px-3 py-1 font-mono text-[11px] leading-snug cursor-text",onClick:()=>k.current?.focus(),children:[l.map((S,N)=>s.jsx("div",{className:he("whitespace-pre-wrap break-all",S.type==="cmd"&&"text-emerald-400",S.type==="err"&&"text-rose-400",S.type==="out"&&"text-foreground/90"),children:S.text},N)),s.jsx("div",{ref:E})]}),s.jsxs("div",{className:"flex shrink-0 items-center border-t border-border px-3 py-1",children:[s.jsx("span",{className:"mr-2 text-[11px] text-emerald-400 font-mono",children:"$"}),s.jsx("input",{ref:k,value:d,onChange:S=>p(S.target.value),onKeyDown:w,disabled:m,placeholder:m?"ejecutando…":"comando…",className:"flex-1 bg-transparent font-mono text-[11px] text-foreground outline-none placeholder:text-muted-foreground/50 disabled:opacity-50",spellCheck:!1,autoComplete:"off"})]})]})}const jc="super-agent";function cx(){return s.jsx(lv,{className:"relative z-10 w-px shrink-0 cursor-col-resize bg-border transition-colors hover:bg-primary/50 active:bg-primary/70"})}function u$(){return s.jsx(lv,{className:"relative z-10 h-px shrink-0 cursor-row-resize bg-border transition-colors hover:bg-primary/50 active:bg-primary/70"})}function d$(){const e=Ze(),t=$e("/projects",()=>Qn.list()),a=x.useMemo(()=>t.data||[],[t.data]),[o,l]=x.useState(""),[c,d]=x.useState(null),[p,m]=x.useState(jc),[g,h]=x.useState([]),[b,_]=x.useState(""),[j,E]=x.useState(!1),[k,y]=x.useState(!0),[w,S]=x.useState(!0),[N,R]=x.useState(!1),[A,T]=x.useState(""),[O,z]=x.useState(!1),U=x.useRef(null),[P,B]=$o(),D=x.useRef(!1),[L,$]=x.useState([]),[V,H]=x.useState("chat"),F=x.useCallback(_e=>{R(!0),T(_e)},[]);x.useEffect(()=>{!o&&a.length&&l(String(a[0].id))},[o,a]);const Y=$e(o?["code-sessions",o]:null,()=>Ga.sessions.list(o)),G=$e(o?["agents",o]:null,()=>cn.list(o)),K=$e(o&&c?["code-session",o,c]:null,()=>Ga.sessions.get(o,c)),I=$e(o&&c?["code-changes",o,c]:null,()=>Ga.changes(o,c));x.useEffect(()=>{const _e=Y.data||[];!c&&_e.length&&d(_e[0].id),c&&_e.length&&!_e.some(Pe=>Pe.id===c)&&d(_e[0]?.id??null)},[Y.data,c]),x.useEffect(()=>{K.data&&m(K.data.agentSlug||jc)},[K.data]),x.useEffect(()=>{j||(K.data?h(K.data.messages||[]):c||h([]))},[K.data,c,j]),x.useEffect(()=>()=>U.current?.abort(),[]);const X=K.data,Z=X?.mode==="plan"?"plan":"build",te=X?.model||"",fe=_e=>{_e===o||j||(l(_e),d(null),h([]))},ee=_e=>{j||_e===c||(d(_e),h([]))},re=async()=>{if(!(!o||j))try{const _e=await Ga.sessions.create(o,{title:u("code_module.untitled"),agentSlug:p!==jc?p:null});await Y.mutate(),d(_e.id),h([])}catch(_e){e.error(_e.message)}},le=async(_e,Pe)=>{const Xe=window.prompt(u("code_module.rename"),Pe);if(!(!Xe||Xe===Pe))try{await Ga.sessions.update(o,_e,{title:Xe}),await Y.mutate(),_e===c&&await K.mutate()}catch(it){e.error(it.message)}},me=async _e=>{if(!j&&window.confirm(u("code_module.delete_confirm")))try{await Ga.sessions.remove(o,_e),_e===c&&(d(null),h([])),await Y.mutate()}catch(Pe){e.error(Pe.message)}},Me=async _e=>{if(m(_e),!!c)try{await Ga.sessions.update(o,c,{agentSlug:_e!==jc?_e:null}),await Promise.all([K.mutate(),Y.mutate()])}catch(Pe){e.error(Pe.message)}},de=x.useCallback(async _e=>{if(c)try{await Ga.sessions.update(o,c,_e),await Promise.all([K.mutate(),Y.mutate()])}catch(Pe){e.error(Pe.message)}},[o,c,K,Y,e]),ge=()=>{U.current?.abort(),E(!1)},Ce=_e=>h(Pe=>{const Xe=[...Pe],it=Xe[Xe.length-1];return it&&it.role==="assistant"&&(Xe[Xe.length-1]=_e(it)),Xe}),we=async _e=>{const Pe=(_e??b).trim();if(!Pe||j||!o||!c)return;const Xe=new Date().toISOString();h(mt=>[...mt,{role:"user",parts:[{kind:"text",text:Pe}],ts:Xe},{role:"assistant",parts:[],ts:Xe,pending:!0}]),_(""),E(!0);const it=new AbortController;U.current=it;const Qe=mt=>{if(mt.type==="error"){e.error(mt.error||u("modules_ui.code_stream_error"));return}Ce(Ot=>Q_(Ot,mt))};try{await Ga.stream(o,c,{prompt:Pe},Qe,it.signal),Ce(mt=>({...mt,pending:!1}))}catch(mt){it.signal.aborted?Ce(Ot=>({...Ot,pending:!1,parts:[...Ot.parts,{kind:"text",text:u("code_module.stopped")}]})):(e.error(mt.message),h(Ot=>Ot.filter((Zt,Qt)=>Qt!==Ot.length-1)))}finally{U.current===it&&(U.current=null),E(!1),K.mutate(),Y.mutate(),I.mutate()}},Be=async _e=>{try{await navigator.clipboard.writeText(_e),e.info(u("modules_ui.code_copied"))}catch{}},Ve=x.useCallback(_e=>{H(_e),$(Pe=>Pe.some(Xe=>Xe.path===_e)?Pe:[...Pe,{path:_e,content:"",loading:!0}]),ne.post("/run",{cmd:`cat "${_e}"`,project:o}).then(Pe=>{const Xe=Pe.stdout||Pe.stderr||u("modules_ui.code_file_empty");$(it=>it.map(Qe=>Qe.path===_e?{...Qe,content:Xe,loading:!1}:Qe))}).catch(Pe=>{$(Xe=>Xe.map(it=>it.path===_e?{...it,content:u("modules_ui.code_file_error",{msg:Pe.message}),loading:!1}:it))})},[o]),Se=x.useCallback(_e=>{$(Pe=>Pe.filter(Xe=>Xe.path!==_e)),H(Pe=>Pe===_e?"chat":Pe)},[]),Te=x.useCallback(_e=>{const Pe=`artifacts/${_e}`;H(Pe),$(Xe=>Xe.some(it=>it.path===Pe)?Xe:[...Xe,{path:Pe,content:"",loading:!0,artifactName:_e}]),Dr.read(o,_e).then(Xe=>{$(it=>it.map(Qe=>Qe.path===Pe?{...Qe,content:Xe.content,loading:!1}:Qe))}).catch(Xe=>{$(it=>it.map(Qe=>Qe.path===Pe?{...Qe,content:u("modules_ui.code_file_error",{msg:Xe.message}),loading:!1}:Qe))})},[o]);x.useEffect(()=>{if(D.current)return;const _e=P.get("pid"),Pe=P.get("cmd"),Xe=P.get("edit");if(!(!_e||!Pe&&!Xe)){if(String(o)!==String(_e)){l(String(_e));return}D.current=!0,Xe&&Te(Xe),Pe&&F(Pe.endsWith(" ")?Pe:Pe+" "),B({},{replace:!0})}},[P,o,Te,F,B]);const je=x.useCallback(async(_e,Pe)=>{const Xe=L.find(it=>it.path===_e);if(Xe?.artifactName)try{await Dr.write(o,Xe.artifactName,Pe),$(it=>it.map(Qe=>Qe.path===_e?{...Qe,content:Pe}:Qe)),e.info(u("modules_ui.code_saved"))}catch(it){e.error(it.message)}},[L,o,e]),Ee=!t.isLoading&&a.length>0,De=x.useMemo(()=>{const _e=[{value:jc,label:u("modules_ui.code_super_agent"),icon:on,description:u("modules_ui.code_super_agent_desc")}],Pe=(G.data||[]).map(Xe=>({value:Xe.slug,label:Xe.slug,icon:on,description:Xe.description||Xe.role||void 0}));return[..._e,...Pe]},[G.data]),Le=x.useMemo(()=>g,[g]),Ie=x.useMemo(()=>Y.data?.find(_e=>_e.id===c)?.title||"",[Y.data,c]),ue=x.useMemo(()=>a.find(_e=>String(_e.id)===o),[a,o]);o6(Ie);const[ye,Ge]=x.useState(null),Re=j?null:ME(g),Oe=Re&&Re.turnKey!==ye,tt=_e=>{we(_e)},ot=x.useCallback(()=>y(_e=>!_e),[]),vt=x.useCallback(()=>z(_e=>!_e),[]),Mt=x.useCallback(()=>R(_e=>!_e),[]),lt=x.useCallback(()=>S(_e=>!_e),[]),Rt=x.useMemo(()=>c?s.jsx("div",{className:"flex items-center gap-0.5",children:[{Icon:GS,open:k,toggle:ot,title:u("modules_ui.code_panel_sessions")},{Icon:hb,open:O,toggle:vt,title:u("modules_ui.code_panel_tree")},{Icon:ba,open:N,toggle:Mt,title:u("modules_ui.code_panel_terminal")},{Icon:J5,open:w,toggle:lt,title:u("modules_ui.code_panel_context")}].map(({Icon:_e,open:Pe,toggle:Xe,title:it})=>s.jsx(Ye,{content:it,children:s.jsx("button",{type:"button",onClick:Xe,"data-active":Pe,className:"rounded p-1 text-muted-fg transition-colors hover:bg-accent hover:text-accent-fg data-[active=true]:bg-accent data-[active=true]:text-accent-fg",children:s.jsx(_e,{className:"size-3.5"})})},it))}):null,[c,k,O,N,w,ot,vt,Mt,lt]);return i6(Rt),s.jsx("div",{className:"flex h-full min-h-0 flex-col","data-testid":"screen-code",children:t.isLoading?s.jsx(at,{}):Ee?s.jsxs(tb,{orientation:"vertical",id:"code-layout-v",className:"min-h-0 flex-1",children:[s.jsx(wo,{id:"top",defaultSize:N?"55%":"100%",minSize:"20%",children:s.jsxs(tb,{orientation:"horizontal",id:"code-layout",className:"h-full",children:[k&&s.jsxs(s.Fragment,{children:[s.jsx(wo,{id:"left",defaultSize:"14%",minSize:"8%",children:s.jsxs("aside",{className:"flex h-full flex-col",children:[s.jsx("div",{className:"shrink-0 border-b border-border p-2",children:s.jsx(FU,{projects:a,value:o,onChange:fe,disabled:j})}),s.jsx("div",{className:"min-h-0 flex-1 overflow-hidden",children:s.jsx(GU,{sessions:Y.data||[],activeId:c,busy:j,onSelect:ee,onCreate:re,onRename:le,onDelete:me})}),s.jsx("div",{className:"shrink-0 border-t border-border p-2",children:s.jsx(ut,{value:p,onChange:Me,options:De,disabled:j,showIcon:!0})})]})}),s.jsx(cx,{})]}),O&&s.jsxs(s.Fragment,{children:[s.jsx(wo,{id:"tree",defaultSize:"13%",minSize:"8%",children:s.jsx("div",{className:"h-full",children:s.jsx(l$,{pid:o,projectPath:ue?.path,onOpenFile:Ve})})}),s.jsx(cx,{})]}),s.jsx(wo,{id:"main",defaultSize:"50%",minSize:"20%",children:s.jsxs("div",{className:"flex h-full flex-col",children:[L.length>0&&s.jsxs("div",{className:"flex shrink-0 items-center gap-0 overflow-x-auto border-b border-border",children:[s.jsxs("button",{type:"button",onClick:()=>H("chat"),"data-active":V==="chat",className:"flex shrink-0 items-center gap-1.5 border-r border-border px-3 py-2 text-[11px] font-medium text-muted-foreground transition-colors hover:bg-accent/40 data-[active=true]:text-foreground",children:[s.jsx(xb,{className:"size-3 shrink-0"}),u("modules_ui.code_chat_tab")]}),L.map(_e=>{const Pe=_e.path.split("/").pop()??_e.path,Xe=V===_e.path;return s.jsxs("div",{"data-active":Xe,className:"group flex shrink-0 items-center gap-1 border-r border-border px-2 py-2 text-[11px] text-muted-foreground transition-colors hover:bg-accent/40 data-[active=true]:text-foreground",children:[s.jsx(Ye,{content:_e.path,children:s.jsx("button",{type:"button",onClick:()=>H(_e.path),className:"min-w-0 max-w-[140px] truncate font-mono",children:Pe})}),s.jsx(Ye,{content:u("code_module.close"),children:s.jsx("button",{type:"button",onClick:()=>Se(_e.path),className:"shrink-0 rounded p-0.5 opacity-60 hover:bg-accent hover:opacity-100",children:s.jsx(ws,{className:"size-2.5"})})})]},_e.path)})]}),V==="chat"?s.jsxs(s.Fragment,{children:[s.jsx("div",{className:"min-h-0 flex-1 overflow-y-auto","data-testid":"code-transcript",children:c?g.length?s.jsx(W_,{msgs:g,onCopy:Be}):s.jsx("div",{className:"grid h-full place-items-center p-6",children:s.jsx(pt,{children:u("code_module.empty_chat")})}):s.jsx("div",{className:"grid h-full place-items-center p-6",children:s.jsx(pt,{children:u("code_module.pick_project")})})}),Oe&&Re&&s.jsx(AE,{turnKey:Re.turnKey,questions:Re.questions,onSubmit:tt,onDismiss:()=>Ge(Re.turnKey),disabled:j})]}):s.jsx("div",{className:"min-h-0 flex-1 overflow-hidden",children:(()=>{const _e=L.find(Pe=>Pe.path===V);return _e?s.jsx(i$,{path:_e.path,content:_e.content,loading:_e.loading,onSave:_e.artifactName?Pe=>je(_e.path,Pe):void 0}):null})()}),s.jsx("div",{className:"shrink-0 border-t border-border p-2","data-testid":"code-input",children:s.jsx(KU,{value:b,onValueChange:_,onSubmit:()=>void we(),onStop:ge,busy:j,disabled:!c,mode:Z,onModeChange:_e=>void de({mode:_e}),model:te,onModelChange:_e=>void de({model:_e||null})})})]})}),w&&s.jsxs(s.Fragment,{children:[s.jsx(cx,{}),s.jsx(wo,{id:"right",defaultSize:"22%",minSize:"15%",children:s.jsx("aside",{className:"flex h-full flex-col",children:s.jsx(r$,{pid:o,turns:Le,changes:I.data,changesLoading:I.isLoading,onRefreshChanges:()=>void I.mutate(),session:K.data?{title:K.data.title,mode:K.data.mode,createdAt:K.data.createdAt,updatedAt:K.data.updatedAt,agentSlug:K.data.agentSlug??null}:null,onRunInTerminal:F,onEditArtifact:Te})})})]})]})}),N&&o&&s.jsxs(s.Fragment,{children:[s.jsx(u$,{}),s.jsx(wo,{id:"terminal",defaultSize:"45%",minSize:"10%",maxSize:"80%",children:s.jsx(c$,{pid:o,initCmd:A,onClose:Mt,className:"h-full"})})]})]}):s.jsx("div",{className:"grid flex-1 place-items-center",children:s.jsx(pt,{children:u("code_module.no_projects")})})})}function f$({open:e,onClose:t}){const{mutate:a}=cN(),o=Pn(),l=Ze(),[c,d]=x.useState(""),[p,m]=x.useState(!1),[g,h]=x.useState(""),[b,_]=x.useState([]),[j,E]=x.useState(null),[k,y]=x.useState(""),[w,S]=x.useState(!1),[N,R]=x.useState(!1),A=async(z,U=!1)=>{S(!0),y("");try{const P=await bk.dirs(z||"~");h(P.path),d(P.path),E(P.parent),_(P.entries)}catch(P){const B=P.message;y(B),U||l.error(B)}finally{S(!1)}};x.useEffect(()=>{e||(d(""),m(!1),h(""),_([]),E(null),y(""))},[e]);const T=async()=>{S(!0);try{const z=await bk.pickDir(u("add_project.picker_prompt"));if("cancelled"in z)return;d(z.path);return}catch{m(!0),await A(c||"~")}finally{S(!1)}},O=async()=>{const z=c.trim();if(!z){l.error(u("add_project.path_required"));return}R(!0);try{const U=await Qn.register(z);l.success(u("add_project.registered",{id:U.id})),await a("/projects"),t(),o(`/p/${U.id}`)}catch(U){l.error(U.message)}finally{R(!1)}};return s.jsx(sn,{open:e,onClose:t,title:u("add_project.title"),description:u("add_project.subtitle"),footer:s.jsxs(s.Fragment,{children:[s.jsx(se,{variant:"ghost",onClick:t,disabled:N,children:u("common.cancel")}),s.jsx(se,{variant:"primary",onClick:O,loading:N,children:u("add_project.register")})]}),children:s.jsxs("div",{className:"space-y-3",children:[s.jsx(ae,{label:u("add_project.path_label"),hint:u("add_project.path_hint"),children:s.jsxs("div",{className:"flex gap-2",children:[s.jsx(Ne,{autoFocus:!0,placeholder:u("add_project.path_placeholder"),value:c,onChange:z=>d(z.target.value),onKeyDown:z=>{z.key==="Enter"&&O()}}),s.jsxs(se,{onClick:T,disabled:w,children:[s.jsx(Mc,{size:14})," ",u("add_project.search_btn")]})]})}),p&&s.jsxs("div",{className:"rounded-md border border-border bg-muted/20",children:[s.jsxs("div",{className:"flex items-center justify-between border-b border-border px-3 py-2",children:[s.jsx("span",{className:"truncate font-mono text-xs text-muted-fg",children:g||c||"~"}),s.jsxs("div",{className:"flex gap-1",children:[s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>A("~"),disabled:w,children:s.jsx(H5,{size:13})}),s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>j&&A(j),disabled:!j||w,children:".."}),s.jsx(se,{size:"sm",variant:"ghost",onClick:()=>m(!1),disabled:w,children:s.jsx(ws,{size:13})})]})]}),s.jsxs("div",{className:"max-h-64 overflow-y-auto p-2",children:[w&&s.jsx(at,{}),!w&&k&&s.jsx(pt,{children:u("add_project.browser_unavailable")}),!w&&!k&&b.length===0&&s.jsx(pt,{children:u("add_project.no_folders")}),!w&&!k&&b.map(z=>s.jsxs("button",{type:"button",onClick:()=>A(z),className:"flex w-full items-center gap-2 rounded-md px-2 py-1.5 text-left text-sm hover:bg-accent",children:[s.jsx(ci,{size:14,className:"text-muted-fg"}),s.jsx("span",{className:"truncate",children:z.split("/").pop()}),s.jsx("span",{className:"ml-auto truncate font-mono text-[10px] text-muted-fg",children:z})]},z))]})]})]})})}function p$({onPaired:e}){const[t,a]=x.useState(""),[o,l]=x.useState(m$()),[c,d]=x.useState(!1),[p,m]=x.useState(null);async function g(){const h=t.trim();if(!h){m(u("pairing.err_required"));return}d(!0),m(null);try{const b=await si.confirm({pairing_id:h,label:o.trim()||void 0});So(b.token);try{localStorage.setItem(On.token,b.token)}catch{}e()}catch(b){m(g$(b)),d(!1)}}return s.jsx("div",{className:"flex min-h-[100dvh] w-full items-center justify-center overflow-y-auto bg-background p-4 text-foreground",children:s.jsxs("div",{className:"my-auto w-full max-w-md rounded-xl border border-border bg-card p-6 shadow-sm",children:[s.jsxs("div",{className:"mb-4 flex items-center gap-3",children:[s.jsx("div",{className:"grid size-10 place-items-center rounded-lg bg-primary/10 text-primary",children:s.jsx(gx,{size:20})}),s.jsxs("div",{children:[s.jsx("h1",{className:"text-base font-semibold",children:u("pairing.title")}),s.jsx("p",{className:"text-xs text-muted-fg",children:u("pairing.subtitle")})]})]}),s.jsxs("ol",{className:"mb-5 space-y-1.5 rounded-lg bg-muted/50 p-3 text-xs text-muted-fg",children:[s.jsx("li",{className:"font-medium text-foreground",children:u("pairing.steps_title")}),s.jsxs("li",{children:["1. ",u("pairing.step_1")]}),s.jsxs("li",{children:["2. ",u("pairing.step_2")]}),s.jsxs("li",{children:["3. ",u("pairing.step_3")]})]}),s.jsxs("form",{className:"space-y-3",onSubmit:h=>{h.preventDefault(),g()},children:[s.jsx(ae,{label:u("pairing.code_label"),children:s.jsx(Ne,{value:t,onChange:h=>a(h.target.value),placeholder:u("pairing.code_ph"),spellCheck:!1,autoComplete:"off"})}),s.jsx(ae,{label:u("pairing.label_label"),hint:u("pairing.revoke_hint"),children:s.jsx(Ne,{value:o,onChange:h=>l(h.target.value),placeholder:u("pairing.label_ph")})}),p&&s.jsx("p",{className:"rounded-md bg-destructive/10 px-3 py-2 text-xs text-destructive",children:p}),s.jsx(se,{type:"submit",variant:"primary",size:"md",loading:c,className:"w-full justify-center",children:u(c?"pairing.linking":"pairing.submit")})]})]})})}function m$(){const e=navigator.userAgent;return/iPhone|iPad/.test(e)?"iPhone":/Android/.test(e)?"Android":/Mac/.test(e)?"Mac":/Windows/.test(e)?"Windows PC":/Linux/.test(e)?"Linux":"browser"}function g$(e){if(e instanceof du){if(e.status===410)return u("pairing.err_expired");if(e.status===404||e.status===409)return u("pairing.err_unknown")}return u("pairing.err_generic")}function h$({...e}){return s.jsx(kN,{"data-slot":"sheet",...e})}function x$({...e}){return s.jsx(jN,{"data-slot":"sheet-portal",...e})}function b$({className:e,...t}){return s.jsx(bN,{"data-slot":"sheet-overlay",className:Ct("fixed inset-0 z-50 bg-black/10 transition-opacity duration-150 data-ending-style:opacity-0 data-starting-style:opacity-0 supports-backdrop-filter:backdrop-blur-xs",e),...t})}function _$({className:e,children:t,side:a="right",showCloseButton:o=!0,...l}){return s.jsxs(x$,{children:[s.jsx(b$,{}),s.jsxs(yN,{"data-slot":"sheet-content","data-side":a,className:Ct("fixed z-50 flex flex-col gap-4 bg-popover bg-clip-padding text-sm text-popover-foreground shadow-lg transition duration-200 ease-in-out data-ending-style:opacity-0 data-starting-style:opacity-0 data-[side=bottom]:inset-x-0 data-[side=bottom]:bottom-0 data-[side=bottom]:h-auto data-[side=bottom]:border-t data-[side=bottom]:data-ending-style:translate-y-[2.5rem] data-[side=bottom]:data-starting-style:translate-y-[2.5rem] data-[side=left]:inset-y-0 data-[side=left]:left-0 data-[side=left]:h-full data-[side=left]:w-3/4 data-[side=left]:border-r data-[side=left]:data-ending-style:translate-x-[-2.5rem] data-[side=left]:data-starting-style:translate-x-[-2.5rem] data-[side=right]:inset-y-0 data-[side=right]:right-0 data-[side=right]:h-full data-[side=right]:w-3/4 data-[side=right]:border-l data-[side=right]:data-ending-style:translate-x-[2.5rem] data-[side=right]:data-starting-style:translate-x-[2.5rem] data-[side=top]:inset-x-0 data-[side=top]:top-0 data-[side=top]:h-auto data-[side=top]:border-b data-[side=top]:data-ending-style:translate-y-[-2.5rem] data-[side=top]:data-starting-style:translate-y-[-2.5rem] data-[side=left]:sm:max-w-sm data-[side=right]:sm:max-w-sm",e),...l,children:[t,o&&s.jsxs(Tp,{"data-slot":"sheet-close",render:s.jsx(sr,{variant:"ghost",className:"absolute top-3 right-3",size:"icon-sm"}),children:[s.jsx(ws,{}),s.jsx("span",{className:"sr-only",children:"Close"})]})]})]})}function v$({className:e,...t}){return s.jsx("div",{"data-slot":"sheet-header",className:Ct("flex flex-col gap-0.5 p-4",e),...t})}function y$({className:e,...t}){return s.jsx(wN,{"data-slot":"sheet-title",className:Ct("font-heading text-base font-medium text-foreground",e),...t})}function j$({className:e,...t}){return s.jsx(_N,{"data-slot":"sheet-description",className:Ct("text-sm text-muted-foreground",e),...t})}function k$({value:e,projectPath:t,onPick:a}){const o=w$(e),l=o?S$(e):"",{data:c}=$e(o?["/skills",t||""]:null,()=>Is.list(t)),d=c?.skills||[],p=x.useMemo(()=>{const m=l.toLowerCase();return m?d.filter(g=>g.slug.toLowerCase().includes(m)).slice(0,8):d.slice(0,8)},[d,l]);return!o||p.length===0?null:s.jsxs("div",{className:"rounded-xl border border-border bg-popover/95 text-sm shadow-md backdrop-blur",children:[s.jsx("ul",{role:"listbox",className:"max-h-64 overflow-y-auto py-1",children:p.map(m=>s.jsx("li",{children:s.jsxs("button",{type:"button",onClick:()=>a(m.slug),className:"flex w-full items-start gap-2 px-3 py-1.5 text-left hover:bg-accent hover:text-accent-foreground",children:[s.jsxs("code",{className:"rounded bg-muted px-1.5 py-0.5 text-[11px]",children:["/",m.slug]}),s.jsx("span",{className:"truncate text-xs text-muted-foreground",children:m.description})]})},m.slug))}),s.jsx("div",{className:"border-t border-border px-3 py-1.5 text-[10px] text-muted-foreground",children:"Type a name to filter · click to insert · the skill body will be loaded for this turn."})]})}function w$(e){return!!e.match(/^\s*\/([A-Za-z0-9_-]*)$/)}function S$(e){const t=e.match(/^\s*\/([A-Za-z0-9_-]*)$/);return t?t[1]:""}function C$(){try{const e=localStorage.getItem(On.robyChat);if(!e)return[];const t=JSON.parse(e);return Array.isArray(t)?t.filter(a=>a&&Array.isArray(a.parts)&&!a.pending):[]}catch{return[]}}function N$({open:e,onOpenChange:t}){const a=Np(),o=Ze(),[l,c]=x.useState(C$),[d,p]=x.useState(""),[m,g]=x.useState(!1),[h,b]=x.useState(""),_=x.useRef(null);x.useEffect(()=>{const S=l.filter(N=>!N.pending);try{S.length?localStorage.setItem(On.robyChat,JSON.stringify(S)):localStorage.removeItem(On.robyChat)}catch{}},[l]);const j=()=>{if(!m){c([]),p("");try{localStorage.removeItem(On.robyChat)}catch{}}};x.useEffect(()=>()=>_.current?.abort(),[]),x.useEffect(()=>{const S=N=>{const R=N.detail?.prompt;typeof R=="string"&&(t(!0),p(R))};return window.addEventListener("apx:roby-prompt",S),()=>window.removeEventListener("apx:roby-prompt",S)},[t]);const E=()=>{_.current?.abort(),g(!1)},k=S=>c(N=>{const R=[...N],A=R[R.length-1];return A?.role==="assistant"&&(R[R.length-1]=S(A)),R}),y=async()=>{const S=d.trim();if(!S||m)return;const N=new Date().toISOString(),R=l.filter(z=>!z.pending).map(z=>({role:z.role,content:Qx(z)}));c(z=>[...z,{role:"user",parts:[{kind:"text",text:S}],ts:N},{role:"assistant",parts:[],ts:N,pending:!0}]),p(""),g(!0);const A=new AbortController;_.current=A;let T=!1;const O=z=>{if(z?.type==="error"){T=!0,o.error(z.error||"error"),c(U=>{const P=[...U],B=P[P.length-1];return B?.role==="assistant"&&B.pending&&P.pop(),P});return}k(U=>Q_(U,z))};try{await dN.stream(0,{prompt:S,previousMessages:R,model:h||void 0,channel:"web_sidebar"},O,A.signal),k(z=>({...z,pending:!1}))}catch(z){A.signal.aborted?k(U=>({...U,pending:!1,parts:[...U.parts,{kind:"text",text:u("project.chat.stopped_marker")}]})):T||(o.error(z.message),c(U=>{const P=[...U],B=P[P.length-1];return B?.role==="assistant"&&B.pending&&P.pop(),P}))}finally{_.current===A&&(_.current=null),g(!1)}},w=async S=>{try{await navigator.clipboard.writeText(S),o.info(u("project.chat.copied"))}catch{}};return s.jsx(h$,{open:e,onOpenChange:t,children:s.jsxs(_$,{side:"right",className:"flex w-full flex-col gap-0 p-0 sm:max-w-xl data-[side=right]:sm:max-w-xl",children:[s.jsxs(v$,{className:"pr-12",children:[s.jsxs(y$,{className:"flex items-center gap-2",children:[s.jsx(on,{size:18})," ",u("superagent.title",{persona:a}),s.jsx("span",{className:"text-xs font-normal text-muted-fg",children:u("superagent.badge")})]}),s.jsx(j$,{children:u("superagent.desc")})]}),s.jsx("div",{className:"flex-1 overflow-y-auto",children:l.length===0?s.jsx("p",{className:"mt-6 text-center text-sm text-muted-fg",children:u("superagent.empty",{persona:a})}):s.jsx(W_,{msgs:l,onCopy:w})}),s.jsx(TE,{msgs:l}),s.jsxs("div",{className:"border-t border-border p-3",children:[s.jsx("div",{className:"mb-1.5",children:s.jsx(k$,{value:d,onPick:S=>p(`/${S} `)})}),s.jsx(K_,{value:d,onValueChange:p,onSubmit:()=>void y(),onStop:E,busy:m,placeholder:u("superagent.placeholder"),footer:s.jsx(X_,{value:h,onChange:b,disabled:m})}),s.jsx("div",{className:"mt-1.5 flex justify-end",children:s.jsxs(sr,{size:"xs",variant:"ghost",onClick:j,disabled:m||l.length===0,children:[s.jsx(It,{className:"size-3"})," ",u("superagent.new_chat")]})})]})]})})}function E$(){const e=navigator.userAgent;return/iPhone|iPad/.test(e)?"iPhone":/Android/.test(e)?"Android":/Mac/.test(e)?"Mac":/Windows/.test(e)?"Windows PC":/Linux/.test(e)?"Linux":"browser"}function R$(){const[e,t]=x.useState({status:"loading"}),[a,o]=x.useState(0),l=x.useCallback(()=>{t({status:"loading"}),o(c=>c+1)},[]);return x.useEffect(()=>{let c=!1;return(async()=>{try{const h=await fetch("/health");if(!h.ok)throw new Error(`HTTP ${h.status}`)}catch(h){c||t({status:"error",reason:String(h)});return}const d=window.location.hash.replace(/^#/,""),p=new URLSearchParams(d),m=p.get("pair");if(m){history.replaceState(null,"",window.location.pathname+window.location.search);try{const h=await si.confirm({pairing_id:m,label:E$(),kind:"web"});So(h.token);try{localStorage.setItem(On.token,h.token)}catch{}c||t({status:"ok"});return}catch{}}const g=p.get("token");if(g){So(g);try{localStorage.setItem(On.token,g)}catch{}history.replaceState(null,"",window.location.pathname+window.location.search)}else try{const h=localStorage.getItem(On.token);h&&So(h)}catch{}try{const h=await fetch("/admin/web-token");if(h.ok){const b=await h.json();if(b?.token){So(b.token);try{localStorage.setItem(On.token,b.token)}catch{}}}}catch{}if(!S_()){c||t({status:"unpaired"});return}try{await ne.get("/projects"),c||t({status:"ok"})}catch(h){if(h instanceof du&&(h.status===401||h.status===403)){So(null);try{localStorage.removeItem(On.token)}catch{}c||t({status:"unpaired"})}else c||t({status:"error",reason:String(h)})}})(),()=>{c=!0}},[a]),{...e,reload:l}}function T$(){const e=R$();return e.status==="loading"?s.jsx(rS,{text:u("daemon.connecting")}):e.status==="error"?s.jsx(rS,{mood:"sad",text:u("daemon.unreachable"),sub:`${u("daemon.unreachable_hint")}
776
-
777
- ${e.reason}`}):e.status==="unpaired"?s.jsx(p$,{onPaired:e.reload}):s.jsx(WL,{children:s.jsx(uD,{delay:0,children:s.jsx(A$,{})})})}function A$(){const e=Pn(),t=ts(),[a,o]=$o(),{theme:l,toggle:c}=kb(),d=a.get("action")==="add-project",[p,m]=x.useState(!1),g=()=>{const b=new URLSearchParams(a);b.delete("action"),o(b,{replace:!0})},h=()=>{const b=new URLSearchParams(a);b.set("action","add-project"),o(b)};return s.jsx(n6,{children:s.jsxs("div",{className:"flex h-screen w-screen overflow-hidden bg-background text-foreground","data-testid":"app-shell",children:[s.jsx(cL,{onSelect:b=>e(b),onOpenRoby:()=>m(!0),onOpenAddProject:h}),s.jsxs("main",{className:"m-2 flex min-w-0 flex-1 flex-col overflow-hidden rounded-xl border border-border bg-card shadow-sm",children:[s.jsx(M$,{onToggleTheme:c,isDark:l==="dark",pathname:t.pathname}),s.jsx("div",{className:"flex-1 overflow-y-auto",children:s.jsxs(CS,{children:[s.jsx(Dt,{path:"/",element:s.jsx(t6,{})}),s.jsx(Dt,{path:"/settings/*",element:s.jsx(aU,{})}),s.jsx(Dt,{path:"/m/desktop/*",element:s.jsx(lU,{})}),s.jsx(Dt,{path:"/m/code/*",element:s.jsx(d$,{})}),s.jsx(Dt,{path:"/p/:pid/*",element:s.jsx(CB,{})}),s.jsx(Dt,{path:"*",element:s.jsx(L$,{})})]})})]}),s.jsx(f$,{open:d,onClose:g}),s.jsx(N$,{open:p,onOpenChange:m})]})})}function M$({onToggleTheme:e,isDark:t,pathname:a}){const{projects:o}=fu(),l=r6(),c=a.split("/").filter(Boolean),d=c[0]==="p"?o.find(E=>String(E.id)===c[1]):void 0,p=c[0]==="settings"?D$(c[1]):c[0]==="p"?P$(c[2]):"",m=c[0]==="p"&&c[1]==="0",g=d?.name||d?.path?.split("/").pop()||u("nav.project"),h=a==="/"?u("topbar.breadcrumb_root"):c[0]==="settings"?[u("topbar.breadcrumb_root"),u("nav.settings"),p].filter(Boolean).join(" › "):c[0]==="m"?[u("topbar.breadcrumb_root"),z$(c[1]),l].filter(Boolean).join(" › "):c[0]==="p"?m?[u("topbar.breadcrumb_root"),u("topbar.breadcrumb_base"),p].filter(Boolean).join(" › "):[u("topbar.breadcrumb_root"),u("topbar.breadcrumb_projects"),g,p].filter(Boolean).join(" › "):u("topbar.breadcrumb_root"),b=a==="/"?"":c[0]==="settings"?u("settings.subtitle"):c[0]==="p"?m?u("base.subtitle"):d?`${pN(d.kind)} · ${d.path}`:"":"",_=s6(),j=l6();return s.jsxs("header",{className:"flex h-10 shrink-0 items-center gap-2 border-b border-border/50 px-3",children:[_&&s.jsx(vP,{collapsed:_.collapsed,onToggle:_.toggle}),s.jsxs("span",{className:"min-w-0 flex-1 truncate text-[11px] tracking-wide text-muted-fg",children:[h,b&&s.jsxs("span",{className:"text-muted-fg/50",children:[" · ",b]})]}),j,s.jsx(O$,{}),s.jsx(Ye,{content:u(t?"topbar.light":"topbar.dark"),children:s.jsx("button",{type:"button","data-testid":"theme-toggle",onClick:e,className:"shrink-0 rounded-md p-1.5 text-muted-fg hover:bg-accent hover:text-accent-fg",children:t?s.jsx(l3,{size:14}):s.jsx(Q5,{size:14})})})]})}function O$(){const e=y_(),t=a=>{a!==e&&(JC(a),window.location.reload())};return s.jsxs(x_,{children:[s.jsxs(b_,{"data-testid":"lang-menu",title:u("topbar.lang_toggle"),className:"flex shrink-0 items-center gap-1 rounded-md p-1.5 text-muted-fg hover:bg-accent hover:text-accent-fg",children:[s.jsx(q5,{size:14}),s.jsx("span",{className:"text-[11px] font-medium uppercase",children:e})]}),s.jsx(__,{align:"end",children:s.jsx(fP,{value:e,onValueChange:a=>t(a),children:eN.map(a=>s.jsx(pP,{value:a.value,children:a.label},a.value))})})]})}function z$(e){switch(e){case"desktop":return u("nav.modules.desktop");case"code":return u("nav.modules.code");default:return e||""}}function D$(e){switch(e){case"super-agent":return u("settings.tabs.super_agent");case"engines":return u("settings.tabs.engines");case"telegram":return u("settings.tabs.telegram");case"devices":return u("settings.tabs.devices");case"voice":return u("nav.modules.voice");case"deck":return u("nav.modules.deck");case"desktop":return u("nav.modules.desktop");case"appearance":return u("settings.appearance");case"config":case"advanced":return u("settings.tabs.advanced");case"identity":default:return e||""}}function P$(e){switch(e){case"chat":return u("project.nav.chat");case"telegram":return u("project.nav.telegram");case"agents":return u("project.nav.agents");case"routines":return u("project.nav.routines");case"tasks":return u("project.nav.tasks");case"mcps":return u("project.nav.mcps");case"artifacts":return u("project.nav.artifacts");case"config":return u("project.nav.config");case"workspaces":return u("base.workspaces_title");case"models":return u("settings.tabs.engines");case"agent-defaults":return u("base.defaults_title");case"sessions":return u("base.sessions_title");case"logs":return u("project.nav.logs");case"memories":return u("project.nav.memories");default:return""}}function rS({text:e,sub:t,mood:a="happy"}){return s.jsx("div",{className:"grid h-screen w-screen place-items-center bg-background text-foreground",children:s.jsxs("div",{className:"flex flex-col items-center text-center",children:[s.jsx(LN,{mood:a,className:"mb-4 text-xs"}),s.jsx("div",{className:"text-foreground",children:e}),t&&s.jsx("pre",{className:"mt-2 max-w-xl whitespace-pre-wrap text-sm text-muted-fg",children:t})]})})}function L$(){const e=Pn();return s.jsx(IN,{testId:"screen-not-found",mood:"confused",title:u("not_found.title"),titleClassName:"text-7xl",message:u("not_found.message"),action:s.jsx(sr,{variant:"outline",onClick:()=>e("/"),children:u("not_found.home")})})}rI();RA.createRoot(document.getElementById("root")).render(s.jsx(tu.StrictMode,{children:s.jsx(JM,{children:s.jsx(m3,{children:s.jsx(T$,{})})})}));
778
- //# sourceMappingURL=index-YmMRG--4.js.map