solace-agent-mesh 1.0.8__py3-none-any.whl → 1.1.0__py3-none-any.whl

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.

Potentially problematic release.


This version of solace-agent-mesh might be problematic. Click here for more details.

Files changed (162) hide show
  1. solace_agent_mesh/agent/adk/adk_llm.txt +182 -42
  2. solace_agent_mesh/agent/adk/artifacts/artifacts_llm.txt +171 -0
  3. solace_agent_mesh/agent/adk/callbacks.py +165 -104
  4. solace_agent_mesh/agent/adk/embed_resolving_mcp_toolset.py +0 -18
  5. solace_agent_mesh/agent/adk/models/models_llm.txt +104 -55
  6. solace_agent_mesh/agent/adk/runner.py +7 -5
  7. solace_agent_mesh/agent/adk/setup.py +11 -0
  8. solace_agent_mesh/agent/adk/stream_parser.py +8 -1
  9. solace_agent_mesh/agent/adk/tool_wrapper.py +10 -3
  10. solace_agent_mesh/agent/agent_llm.txt +355 -18
  11. solace_agent_mesh/agent/protocol/event_handlers.py +433 -296
  12. solace_agent_mesh/agent/protocol/protocol_llm.txt +54 -7
  13. solace_agent_mesh/agent/sac/app.py +1 -1
  14. solace_agent_mesh/agent/sac/component.py +212 -517
  15. solace_agent_mesh/agent/sac/sac_llm.txt +133 -63
  16. solace_agent_mesh/agent/testing/testing_llm.txt +25 -58
  17. solace_agent_mesh/agent/tools/peer_agent_tool.py +15 -11
  18. solace_agent_mesh/agent/tools/tools_llm.txt +234 -69
  19. solace_agent_mesh/agent/utils/artifact_helpers.py +35 -1
  20. solace_agent_mesh/agent/utils/utils_llm.txt +90 -105
  21. solace_agent_mesh/assets/docs/404.html +3 -3
  22. solace_agent_mesh/assets/docs/assets/js/{3d406171.7d02a73b.js → 3d406171.0b9eeed1.js} +1 -1
  23. solace_agent_mesh/assets/docs/assets/js/6e0db977.39a79ca9.js +1 -0
  24. solace_agent_mesh/assets/docs/assets/js/{75384d09.ccd480c4.js → 75384d09.bf78fbdb.js} +1 -1
  25. solace_agent_mesh/assets/docs/assets/js/90dd9cf6.88f385ea.js +1 -0
  26. solace_agent_mesh/assets/docs/assets/js/f284c35a.fb68323a.js +1 -0
  27. solace_agent_mesh/assets/docs/assets/js/main.a75ecc0d.js +2 -0
  28. solace_agent_mesh/assets/docs/assets/js/runtime~main.458efb1d.js +1 -0
  29. solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html +4 -4
  30. solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html +4 -4
  31. solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html +4 -4
  32. solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html +4 -4
  33. solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html +4 -4
  34. solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html +4 -4
  35. solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html +4 -4
  36. solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html +4 -4
  37. solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html +4 -4
  38. solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html +4 -4
  39. solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html +4 -4
  40. solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html +4 -4
  41. solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html +4 -4
  42. solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html +4 -4
  43. solace_agent_mesh/assets/docs/docs/documentation/migration-guides/a2a-upgrade-to-0.3.0/a2a-gateway-upgrade-to-0.3.0/index.html +105 -0
  44. solace_agent_mesh/assets/docs/docs/documentation/migration-guides/a2a-upgrade-to-0.3.0/a2a-technical-migration-map/index.html +53 -0
  45. solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html +4 -4
  46. solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html +8 -8
  47. solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html +4 -4
  48. solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html +4 -4
  49. solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html +4 -4
  50. solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html +4 -4
  51. solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html +4 -4
  52. solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html +4 -4
  53. solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html +4 -4
  54. solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html +4 -4
  55. solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html +4 -4
  56. solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html +4 -4
  57. solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html +4 -4
  58. solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html +4 -4
  59. solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html +4 -4
  60. solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html +4 -4
  61. solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html +4 -4
  62. solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html +4 -4
  63. solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html +4 -4
  64. solace_agent_mesh/assets/docs/lunr-index-1756992446316.json +1 -0
  65. solace_agent_mesh/assets/docs/lunr-index.json +1 -1
  66. solace_agent_mesh/assets/docs/search-doc-1756992446316.json +1 -0
  67. solace_agent_mesh/assets/docs/search-doc.json +1 -1
  68. solace_agent_mesh/assets/docs/sitemap.xml +1 -1
  69. solace_agent_mesh/cli/__init__.py +1 -1
  70. solace_agent_mesh/cli/commands/add_cmd/web_add_agent_step.py +12 -3
  71. solace_agent_mesh/cli/commands/add_cmd/web_add_gateway_step.py +10 -14
  72. solace_agent_mesh/cli/commands/init_cmd/web_init_step.py +2 -15
  73. solace_agent_mesh/cli/commands/plugin_cmd/catalog_cmd.py +6 -2
  74. solace_agent_mesh/cli/utils.py +15 -0
  75. solace_agent_mesh/client/webui/frontend/static/assets/{authCallback-DvlO62me.js → authCallback-BmF2l6vg.js} +1 -1
  76. solace_agent_mesh/client/webui/frontend/static/assets/{client-bp6u3qVZ.js → client-D881Dttc.js} +4 -4
  77. solace_agent_mesh/client/webui/frontend/static/assets/main-C0jZjYa8.js +699 -0
  78. solace_agent_mesh/client/webui/frontend/static/assets/main-CCeG324-.css +1 -0
  79. solace_agent_mesh/client/webui/frontend/static/auth-callback.html +2 -2
  80. solace_agent_mesh/client/webui/frontend/static/index.html +3 -3
  81. solace_agent_mesh/common/a2a/__init__.py +213 -0
  82. solace_agent_mesh/common/a2a/a2a_llm.txt +182 -0
  83. solace_agent_mesh/common/a2a/artifact.py +328 -0
  84. solace_agent_mesh/common/a2a/events.py +183 -0
  85. solace_agent_mesh/common/a2a/message.py +307 -0
  86. solace_agent_mesh/common/a2a/protocol.py +513 -0
  87. solace_agent_mesh/common/a2a/task.py +127 -0
  88. solace_agent_mesh/common/a2a/translation.py +653 -0
  89. solace_agent_mesh/common/a2a/types.py +54 -0
  90. solace_agent_mesh/common/a2a_spec/a2a.json +2576 -0
  91. solace_agent_mesh/common/a2a_spec/a2a_spec_llm.txt +407 -0
  92. solace_agent_mesh/common/a2a_spec/schemas/agent_progress_update.json +18 -0
  93. solace_agent_mesh/common/a2a_spec/schemas/artifact_creation_progress.json +31 -0
  94. solace_agent_mesh/common/a2a_spec/schemas/llm_invocation.json +18 -0
  95. solace_agent_mesh/common/a2a_spec/schemas/schemas_llm.txt +235 -0
  96. solace_agent_mesh/common/a2a_spec/schemas/tool_invocation_start.json +26 -0
  97. solace_agent_mesh/common/a2a_spec/schemas/tool_result.json +25 -0
  98. solace_agent_mesh/common/agent_registry.py +1 -1
  99. solace_agent_mesh/common/common_llm.txt +192 -70
  100. solace_agent_mesh/common/data_parts.py +99 -0
  101. solace_agent_mesh/common/middleware/middleware_llm.txt +17 -17
  102. solace_agent_mesh/common/sac/__init__.py +0 -0
  103. solace_agent_mesh/common/sac/sac_llm.txt +71 -0
  104. solace_agent_mesh/common/sac/sam_component_base.py +252 -0
  105. solace_agent_mesh/common/services/providers/providers_llm.txt +51 -84
  106. solace_agent_mesh/common/services/services_llm.txt +206 -26
  107. solace_agent_mesh/common/utils/artifact_utils.py +29 -0
  108. solace_agent_mesh/common/utils/embeds/embeds_llm.txt +176 -80
  109. solace_agent_mesh/common/utils/utils_llm.txt +323 -42
  110. solace_agent_mesh/config_portal/backend/common.py +1 -1
  111. solace_agent_mesh/config_portal/frontend/static/client/assets/{_index-MqsrTd6g.js → _index-Bym6YkMd.js} +74 -24
  112. solace_agent_mesh/config_portal/frontend/static/client/assets/{components-B7lKcHVY.js → components-Rk0n-9cK.js} +1 -1
  113. solace_agent_mesh/config_portal/frontend/static/client/assets/{entry.client-CEumGClk.js → entry.client-mvZjNKiz.js} +1 -1
  114. solace_agent_mesh/config_portal/frontend/static/client/assets/{index-DSo1AH_7.js → index-DzNKzXrc.js} +1 -1
  115. solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-d845808d.js +1 -0
  116. solace_agent_mesh/config_portal/frontend/static/client/assets/{root-C4XmHinv.js → root-BWvk5-gF.js} +1 -1
  117. solace_agent_mesh/config_portal/frontend/static/client/index.html +3 -3
  118. solace_agent_mesh/core_a2a/core_a2a_llm.txt +10 -8
  119. solace_agent_mesh/core_a2a/service.py +20 -44
  120. solace_agent_mesh/gateway/base/app.py +27 -1
  121. solace_agent_mesh/gateway/base/base_llm.txt +177 -72
  122. solace_agent_mesh/gateway/base/component.py +294 -523
  123. solace_agent_mesh/gateway/gateway_llm.txt +299 -58
  124. solace_agent_mesh/gateway/http_sse/component.py +156 -183
  125. solace_agent_mesh/gateway/http_sse/components/components_llm.txt +29 -29
  126. solace_agent_mesh/gateway/http_sse/http_sse_llm.txt +272 -36
  127. solace_agent_mesh/gateway/http_sse/main.py +8 -10
  128. solace_agent_mesh/gateway/http_sse/routers/agents.py +1 -1
  129. solace_agent_mesh/gateway/http_sse/routers/artifacts.py +18 -4
  130. solace_agent_mesh/gateway/http_sse/routers/routers_llm.txt +231 -5
  131. solace_agent_mesh/gateway/http_sse/routers/sessions.py +12 -7
  132. solace_agent_mesh/gateway/http_sse/routers/tasks.py +116 -169
  133. solace_agent_mesh/gateway/http_sse/services/agent_service.py +1 -1
  134. solace_agent_mesh/gateway/http_sse/services/services_llm.txt +89 -135
  135. solace_agent_mesh/gateway/http_sse/services/task_service.py +2 -5
  136. solace_agent_mesh/solace_agent_mesh_llm.txt +362 -0
  137. solace_agent_mesh/templates/gateway_component_template.py +149 -98
  138. {solace_agent_mesh-1.0.8.dist-info → solace_agent_mesh-1.1.0.dist-info}/METADATA +5 -4
  139. {solace_agent_mesh-1.0.8.dist-info → solace_agent_mesh-1.1.0.dist-info}/RECORD +143 -126
  140. solace_agent_mesh/assets/docs/assets/js/f284c35a.731836ad.js +0 -1
  141. solace_agent_mesh/assets/docs/assets/js/main.6dba4a66.js +0 -2
  142. solace_agent_mesh/assets/docs/assets/js/runtime~main.6415ad00.js +0 -1
  143. solace_agent_mesh/assets/docs/lunr-index-1756153049706.json +0 -1
  144. solace_agent_mesh/assets/docs/search-doc-1756153049706.json +0 -1
  145. solace_agent_mesh/client/webui/frontend/static/assets/main-BCpII1-0.css +0 -1
  146. solace_agent_mesh/client/webui/frontend/static/assets/main-BucUdn9m.js +0 -673
  147. solace_agent_mesh/common/a2a_protocol.py +0 -564
  148. solace_agent_mesh/common/client/__init__.py +0 -4
  149. solace_agent_mesh/common/client/card_resolver.py +0 -21
  150. solace_agent_mesh/common/client/client.py +0 -85
  151. solace_agent_mesh/common/client/client_llm.txt +0 -133
  152. solace_agent_mesh/common/server/__init__.py +0 -4
  153. solace_agent_mesh/common/server/server.py +0 -122
  154. solace_agent_mesh/common/server/server_llm.txt +0 -169
  155. solace_agent_mesh/common/server/task_manager.py +0 -291
  156. solace_agent_mesh/common/server/utils.py +0 -28
  157. solace_agent_mesh/common/types.py +0 -411
  158. solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-28271392.js +0 -1
  159. /solace_agent_mesh/assets/docs/assets/js/{main.6dba4a66.js.LICENSE.txt → main.a75ecc0d.js.LICENSE.txt} +0 -0
  160. {solace_agent_mesh-1.0.8.dist-info → solace_agent_mesh-1.1.0.dist-info}/WHEEL +0 -0
  161. {solace_agent_mesh-1.0.8.dist-info → solace_agent_mesh-1.1.0.dist-info}/entry_points.txt +0 -0
  162. {solace_agent_mesh-1.0.8.dist-info → solace_agent_mesh-1.1.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,699 @@
1
+ var Ww=Object.defineProperty;var Gw=(e,t,n)=>t in e?Ww(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var ct=(e,t,n)=>Gw(e,typeof t!="symbol"?t+"":t,n);import{r as m,j as d,a as Yw,g as Qc,R as Jc,b as ka,c as cn,d as qw}from"./client-D881Dttc.js";function _d(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function $h(...e){return t=>{let n=!1;const r=e.map(o=>{const i=_d(o,t);return!n&&typeof i=="function"&&(n=!0),i});if(n)return()=>{for(let o=0;o<r.length;o++){const i=r[o];typeof i=="function"?i():_d(e[o],null)}}}}function ht(...e){return m.useCallback($h(...e),e)}function Ir(e){const t=Kw(e),n=m.forwardRef((r,o)=>{const{children:i,...s}=r,a=m.Children.toArray(i),l=a.find(Zw);if(l){const c=l.props.children,u=a.map(f=>f===l?m.Children.count(c)>1?m.Children.only(null):m.isValidElement(c)?c.props.children:null:f);return d.jsx(t,{...s,ref:o,children:m.isValidElement(c)?m.cloneElement(c,void 0,u):null})}return d.jsx(t,{...s,ref:o,children:i})});return n.displayName=`${e}.Slot`,n}var zh=Ir("Slot");function Kw(e){const t=m.forwardRef((n,r)=>{const{children:o,...i}=n;if(m.isValidElement(o)){const s=Jw(o),a=Qw(i,o.props);return o.type!==m.Fragment&&(a.ref=r?$h(r,s):s),m.cloneElement(o,a)}return m.Children.count(o)>1?m.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var Fh=Symbol("radix.slottable");function Xw(e){const t=({children:n})=>d.jsx(d.Fragment,{children:n});return t.displayName=`${e}.Slottable`,t.__radixId=Fh,t}function Zw(e){return m.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===Fh}function Qw(e,t){const n={...t};for(const r in t){const o=e[r],i=t[r];/^on[A-Z]/.test(r)?o&&i?n[r]=(...a)=>{const l=i(...a);return o(...a),l}:o&&(n[r]=o):r==="style"?n[r]={...o,...i}:r==="className"&&(n[r]=[o,i].filter(Boolean).join(" "))}return{...e,...n}}function Jw(e){var r,o;let t=(r=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:r.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=(o=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:o.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}function Bh(e){var t,n,r="";if(typeof e=="string"||typeof e=="number")r+=e;else if(typeof e=="object")if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(n=Bh(e[t]))&&(r&&(r+=" "),r+=n)}else for(n in e)e[n]&&(r&&(r+=" "),r+=n);return r}function Hh(){for(var e,t,n=0,r="",o=arguments.length;n<o;n++)(e=arguments[n])&&(t=Bh(e))&&(r&&(r+=" "),r+=t);return r}const Td=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,Ad=Hh,dr=(e,t)=>n=>{var r;if((t==null?void 0:t.variants)==null)return Ad(e,n==null?void 0:n.class,n==null?void 0:n.className);const{variants:o,defaultVariants:i}=t,s=Object.keys(o).map(c=>{const u=n==null?void 0:n[c],f=i==null?void 0:i[c];if(u===null)return null;const p=Td(u)||Td(f);return o[c][p]}),a=n&&Object.entries(n).reduce((c,u)=>{let[f,p]=u;return p===void 0||(c[f]=p),c},{}),l=t==null||(r=t.compoundVariants)===null||r===void 0?void 0:r.reduce((c,u)=>{let{class:f,className:p,...h}=u;return Object.entries(h).every(x=>{let[g,v]=x;return Array.isArray(v)?v.includes({...i,...a}[g]):{...i,...a}[g]===v})?[...c,f,p]:c},[]);return Ad(e,s,l,n==null?void 0:n.class,n==null?void 0:n.className)},eu=()=>localStorage.getItem("access_token"),eb=()=>localStorage.getItem("refresh_token"),tb=(e,t)=>{localStorage.setItem("access_token",e),localStorage.setItem("refresh_token",t)},nb=()=>{localStorage.removeItem("access_token"),localStorage.removeItem("refresh_token")},rb=async()=>{const e=eb();if(!e)return null;const t=await fetch("/api/v1/auth/refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({refresh_token:e})});if(t.ok){const n=await t.json();return tb(n.access_token,n.refresh_token),n.access_token}return nb(),window.location.href="/api/v1/auth/login",null},Ct=async(e,t={})=>{const n=eu();if(!n)return fetch(e,t);const r=await fetch(e,{...t,headers:{...t.headers,Authorization:`Bearer ${n}`}});if(r.status===401){const o=await rb();if(o)return fetch(e,{...t,headers:{...t.headers,Authorization:`Bearer ${o}`}})}return r},tu="-",ob=e=>{const t=sb(e),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=e;return{getClassGroupId:s=>{const a=s.split(tu);return a[0]===""&&a.length!==1&&a.shift(),Uh(a,t)||ib(s)},getConflictingClassGroupIds:(s,a)=>{const l=n[s]||[];return a&&r[s]?[...l,...r[s]]:l}}},Uh=(e,t)=>{var s;if(e.length===0)return t.classGroupId;const n=e[0],r=t.nextPart.get(n),o=r?Uh(e.slice(1),r):void 0;if(o)return o;if(t.validators.length===0)return;const i=e.join(tu);return(s=t.validators.find(({validator:a})=>a(i)))==null?void 0:s.classGroupId},Nd=/^\[(.+)\]$/,ib=e=>{if(Nd.test(e)){const t=Nd.exec(e)[1],n=t==null?void 0:t.substring(0,t.indexOf(":"));if(n)return"arbitrary.."+n}},sb=e=>{const{theme:t,classGroups:n}=e,r={nextPart:new Map,validators:[]};for(const o in n)tc(n[o],r,o,t);return r},tc=(e,t,n,r)=>{e.forEach(o=>{if(typeof o=="string"){const i=o===""?t:Id(t,o);i.classGroupId=n;return}if(typeof o=="function"){if(ab(o)){tc(o(r),t,n,r);return}t.validators.push({validator:o,classGroupId:n});return}Object.entries(o).forEach(([i,s])=>{tc(s,Id(t,i),n,r)})})},Id=(e,t)=>{let n=e;return t.split(tu).forEach(r=>{n.nextPart.has(r)||n.nextPart.set(r,{nextPart:new Map,validators:[]}),n=n.nextPart.get(r)}),n},ab=e=>e.isThemeGetter,lb=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,n=new Map,r=new Map;const o=(i,s)=>{n.set(i,s),t++,t>e&&(t=0,r=n,n=new Map)};return{get(i){let s=n.get(i);if(s!==void 0)return s;if((s=r.get(i))!==void 0)return o(i,s),s},set(i,s){n.has(i)?n.set(i,s):o(i,s)}}},nc="!",rc=":",cb=rc.length,ub=e=>{const{prefix:t,experimentalParseClassName:n}=e;let r=o=>{const i=[];let s=0,a=0,l=0,c;for(let x=0;x<o.length;x++){let g=o[x];if(s===0&&a===0){if(g===rc){i.push(o.slice(l,x)),l=x+cb;continue}if(g==="/"){c=x;continue}}g==="["?s++:g==="]"?s--:g==="("?a++:g===")"&&a--}const u=i.length===0?o:o.substring(l),f=db(u),p=f!==u,h=c&&c>l?c-l:void 0;return{modifiers:i,hasImportantModifier:p,baseClassName:f,maybePostfixModifierPosition:h}};if(t){const o=t+rc,i=r;r=s=>s.startsWith(o)?i(s.substring(o.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:s,maybePostfixModifierPosition:void 0}}if(n){const o=r;r=i=>n({className:i,parseClassName:o})}return r},db=e=>e.endsWith(nc)?e.substring(0,e.length-1):e.startsWith(nc)?e.substring(1):e,fb=e=>{const t=Object.fromEntries(e.orderSensitiveModifiers.map(r=>[r,!0]));return r=>{if(r.length<=1)return r;const o=[];let i=[];return r.forEach(s=>{s[0]==="["||t[s]?(o.push(...i.sort(),s),i=[]):i.push(s)}),o.push(...i.sort()),o}},pb=e=>({cache:lb(e.cacheSize),parseClassName:ub(e),sortModifiers:fb(e),...ob(e)}),hb=/\s+/,mb=(e,t)=>{const{parseClassName:n,getClassGroupId:r,getConflictingClassGroupIds:o,sortModifiers:i}=t,s=[],a=e.trim().split(hb);let l="";for(let c=a.length-1;c>=0;c-=1){const u=a[c],{isExternal:f,modifiers:p,hasImportantModifier:h,baseClassName:x,maybePostfixModifierPosition:g}=n(u);if(f){l=u+(l.length>0?" "+l:l);continue}let v=!!g,y=r(v?x.substring(0,g):x);if(!y){if(!v){l=u+(l.length>0?" "+l:l);continue}if(y=r(x),!y){l=u+(l.length>0?" "+l:l);continue}v=!1}const b=i(p).join(":"),w=h?b+nc:b,S=w+y;if(s.includes(S))continue;s.push(S);const E=o(y,v);for(let k=0;k<E.length;++k){const C=E[k];s.push(w+C)}l=u+(l.length>0?" "+l:l)}return l};function gb(){let e=0,t,n,r="";for(;e<arguments.length;)(t=arguments[e++])&&(n=Vh(t))&&(r&&(r+=" "),r+=n);return r}const Vh=e=>{if(typeof e=="string")return e;let t,n="";for(let r=0;r<e.length;r++)e[r]&&(t=Vh(e[r]))&&(n&&(n+=" "),n+=t);return n};function xb(e,...t){let n,r,o,i=s;function s(l){const c=t.reduce((u,f)=>f(u),e());return n=pb(c),r=n.cache.get,o=n.cache.set,i=a,a(l)}function a(l){const c=r(l);if(c)return c;const u=mb(l,n);return o(l,u),u}return function(){return i(gb.apply(null,arguments))}}const Rt=e=>{const t=n=>n[e]||[];return t.isThemeGetter=!0,t},Wh=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,Gh=/^\((?:(\w[\w-]*):)?(.+)\)$/i,vb=/^\d+\/\d+$/,yb=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,wb=/\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$/,bb=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,Eb=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,Sb=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,Xr=e=>vb.test(e),We=e=>!!e&&!Number.isNaN(Number(e)),Qn=e=>!!e&&Number.isInteger(Number(e)),cl=e=>e.endsWith("%")&&We(e.slice(0,-1)),On=e=>yb.test(e),kb=()=>!0,Cb=e=>wb.test(e)&&!bb.test(e),Yh=()=>!1,_b=e=>Eb.test(e),Tb=e=>Sb.test(e),Ab=e=>!ge(e)&&!xe(e),Nb=e=>zo(e,Xh,Yh),ge=e=>Wh.test(e),gr=e=>zo(e,Zh,Cb),ul=e=>zo(e,Db,We),jd=e=>zo(e,qh,Yh),Ib=e=>zo(e,Kh,Tb),us=e=>zo(e,Qh,_b),xe=e=>Gh.test(e),Xo=e=>Fo(e,Zh),jb=e=>Fo(e,Pb),Md=e=>Fo(e,qh),Mb=e=>Fo(e,Xh),Rb=e=>Fo(e,Kh),ds=e=>Fo(e,Qh,!0),zo=(e,t,n)=>{const r=Wh.exec(e);return r?r[1]?t(r[1]):n(r[2]):!1},Fo=(e,t,n=!1)=>{const r=Gh.exec(e);return r?r[1]?t(r[1]):n:!1},qh=e=>e==="position"||e==="percentage",Kh=e=>e==="image"||e==="url",Xh=e=>e==="length"||e==="size"||e==="bg-size",Zh=e=>e==="length",Db=e=>e==="number",Pb=e=>e==="family-name",Qh=e=>e==="shadow",Ob=()=>{const e=Rt("color"),t=Rt("font"),n=Rt("text"),r=Rt("font-weight"),o=Rt("tracking"),i=Rt("leading"),s=Rt("breakpoint"),a=Rt("container"),l=Rt("spacing"),c=Rt("radius"),u=Rt("shadow"),f=Rt("inset-shadow"),p=Rt("text-shadow"),h=Rt("drop-shadow"),x=Rt("blur"),g=Rt("perspective"),v=Rt("aspect"),y=Rt("ease"),b=Rt("animate"),w=()=>["auto","avoid","all","avoid-page","page","left","right","column"],S=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],E=()=>[...S(),xe,ge],k=()=>["auto","hidden","clip","visible","scroll"],C=()=>["auto","contain","none"],A=()=>[xe,ge,l],D=()=>[Xr,"full","auto",...A()],z=()=>[Qn,"none","subgrid",xe,ge],$=()=>["auto",{span:["full",Qn,xe,ge]},Qn,xe,ge],O=()=>[Qn,"auto",xe,ge],L=()=>["auto","min","max","fr",xe,ge],_=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],M=()=>["start","end","center","stretch","center-safe","end-safe"],N=()=>["auto",...A()],I=()=>[Xr,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...A()],T=()=>[e,xe,ge],j=()=>[...S(),Md,jd,{position:[xe,ge]}],R=()=>["no-repeat",{repeat:["","x","y","space","round"]}],P=()=>["auto","cover","contain",Mb,Nb,{size:[xe,ge]}],U=()=>[cl,Xo,gr],B=()=>["","none","full",c,xe,ge],V=()=>["",We,Xo,gr],G=()=>["solid","dashed","dotted","double"],q=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],H=()=>[We,cl,Md,jd],W=()=>["","none",x,xe,ge],K=()=>["none",We,xe,ge],J=()=>["none",We,xe,ge],re=()=>[We,xe,ge],Z=()=>[Xr,"full",...A()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[On],breakpoint:[On],color:[kb],container:[On],"drop-shadow":[On],ease:["in","out","in-out"],font:[Ab],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[On],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[On],shadow:[On],spacing:["px",We],text:[On],"text-shadow":[On],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",Xr,ge,xe,v]}],container:["container"],columns:[{columns:[We,ge,xe,a]}],"break-after":[{"break-after":w()}],"break-before":[{"break-before":w()}],"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"],sr:["sr-only","not-sr-only"],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:E()}],overflow:[{overflow:k()}],"overflow-x":[{"overflow-x":k()}],"overflow-y":[{"overflow-y":k()}],overscroll:[{overscroll:C()}],"overscroll-x":[{"overscroll-x":C()}],"overscroll-y":[{"overscroll-y":C()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:D()}],"inset-x":[{"inset-x":D()}],"inset-y":[{"inset-y":D()}],start:[{start:D()}],end:[{end:D()}],top:[{top:D()}],right:[{right:D()}],bottom:[{bottom:D()}],left:[{left:D()}],visibility:["visible","invisible","collapse"],z:[{z:[Qn,"auto",xe,ge]}],basis:[{basis:[Xr,"full","auto",a,...A()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[We,Xr,"auto","initial","none",ge]}],grow:[{grow:["",We,xe,ge]}],shrink:[{shrink:["",We,xe,ge]}],order:[{order:[Qn,"first","last","none",xe,ge]}],"grid-cols":[{"grid-cols":z()}],"col-start-end":[{col:$()}],"col-start":[{"col-start":O()}],"col-end":[{"col-end":O()}],"grid-rows":[{"grid-rows":z()}],"row-start-end":[{row:$()}],"row-start":[{"row-start":O()}],"row-end":[{"row-end":O()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":L()}],"auto-rows":[{"auto-rows":L()}],gap:[{gap:A()}],"gap-x":[{"gap-x":A()}],"gap-y":[{"gap-y":A()}],"justify-content":[{justify:[..._(),"normal"]}],"justify-items":[{"justify-items":[...M(),"normal"]}],"justify-self":[{"justify-self":["auto",...M()]}],"align-content":[{content:["normal",..._()]}],"align-items":[{items:[...M(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...M(),{baseline:["","last"]}]}],"place-content":[{"place-content":_()}],"place-items":[{"place-items":[...M(),"baseline"]}],"place-self":[{"place-self":["auto",...M()]}],p:[{p:A()}],px:[{px:A()}],py:[{py:A()}],ps:[{ps:A()}],pe:[{pe:A()}],pt:[{pt:A()}],pr:[{pr:A()}],pb:[{pb:A()}],pl:[{pl:A()}],m:[{m:N()}],mx:[{mx:N()}],my:[{my:N()}],ms:[{ms:N()}],me:[{me:N()}],mt:[{mt:N()}],mr:[{mr:N()}],mb:[{mb:N()}],ml:[{ml:N()}],"space-x":[{"space-x":A()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":A()}],"space-y-reverse":["space-y-reverse"],size:[{size:I()}],w:[{w:[a,"screen",...I()]}],"min-w":[{"min-w":[a,"screen","none",...I()]}],"max-w":[{"max-w":[a,"screen","none","prose",{screen:[s]},...I()]}],h:[{h:["screen","lh",...I()]}],"min-h":[{"min-h":["screen","lh","none",...I()]}],"max-h":[{"max-h":["screen","lh",...I()]}],"font-size":[{text:["base",n,Xo,gr]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[r,xe,ul]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",cl,ge]}],"font-family":[{font:[jb,ge,t]}],"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:[o,xe,ge]}],"line-clamp":[{"line-clamp":[We,"none",xe,ul]}],leading:[{leading:[i,...A()]}],"list-image":[{"list-image":["none",xe,ge]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",xe,ge]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:T()}],"text-color":[{text:T()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...G(),"wavy"]}],"text-decoration-thickness":[{decoration:[We,"from-font","auto",xe,gr]}],"text-decoration-color":[{decoration:T()}],"underline-offset":[{"underline-offset":[We,"auto",xe,ge]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:A()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",xe,ge]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",xe,ge]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:j()}],"bg-repeat":[{bg:R()}],"bg-size":[{bg:P()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},Qn,xe,ge],radial:["",xe,ge],conic:[Qn,xe,ge]},Rb,Ib]}],"bg-color":[{bg:T()}],"gradient-from-pos":[{from:U()}],"gradient-via-pos":[{via:U()}],"gradient-to-pos":[{to:U()}],"gradient-from":[{from:T()}],"gradient-via":[{via:T()}],"gradient-to":[{to:T()}],rounded:[{rounded:B()}],"rounded-s":[{"rounded-s":B()}],"rounded-e":[{"rounded-e":B()}],"rounded-t":[{"rounded-t":B()}],"rounded-r":[{"rounded-r":B()}],"rounded-b":[{"rounded-b":B()}],"rounded-l":[{"rounded-l":B()}],"rounded-ss":[{"rounded-ss":B()}],"rounded-se":[{"rounded-se":B()}],"rounded-ee":[{"rounded-ee":B()}],"rounded-es":[{"rounded-es":B()}],"rounded-tl":[{"rounded-tl":B()}],"rounded-tr":[{"rounded-tr":B()}],"rounded-br":[{"rounded-br":B()}],"rounded-bl":[{"rounded-bl":B()}],"border-w":[{border:V()}],"border-w-x":[{"border-x":V()}],"border-w-y":[{"border-y":V()}],"border-w-s":[{"border-s":V()}],"border-w-e":[{"border-e":V()}],"border-w-t":[{"border-t":V()}],"border-w-r":[{"border-r":V()}],"border-w-b":[{"border-b":V()}],"border-w-l":[{"border-l":V()}],"divide-x":[{"divide-x":V()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":V()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...G(),"hidden","none"]}],"divide-style":[{divide:[...G(),"hidden","none"]}],"border-color":[{border:T()}],"border-color-x":[{"border-x":T()}],"border-color-y":[{"border-y":T()}],"border-color-s":[{"border-s":T()}],"border-color-e":[{"border-e":T()}],"border-color-t":[{"border-t":T()}],"border-color-r":[{"border-r":T()}],"border-color-b":[{"border-b":T()}],"border-color-l":[{"border-l":T()}],"divide-color":[{divide:T()}],"outline-style":[{outline:[...G(),"none","hidden"]}],"outline-offset":[{"outline-offset":[We,xe,ge]}],"outline-w":[{outline:["",We,Xo,gr]}],"outline-color":[{outline:T()}],shadow:[{shadow:["","none",u,ds,us]}],"shadow-color":[{shadow:T()}],"inset-shadow":[{"inset-shadow":["none",f,ds,us]}],"inset-shadow-color":[{"inset-shadow":T()}],"ring-w":[{ring:V()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:T()}],"ring-offset-w":[{"ring-offset":[We,gr]}],"ring-offset-color":[{"ring-offset":T()}],"inset-ring-w":[{"inset-ring":V()}],"inset-ring-color":[{"inset-ring":T()}],"text-shadow":[{"text-shadow":["none",p,ds,us]}],"text-shadow-color":[{"text-shadow":T()}],opacity:[{opacity:[We,xe,ge]}],"mix-blend":[{"mix-blend":[...q(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":q()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[We]}],"mask-image-linear-from-pos":[{"mask-linear-from":H()}],"mask-image-linear-to-pos":[{"mask-linear-to":H()}],"mask-image-linear-from-color":[{"mask-linear-from":T()}],"mask-image-linear-to-color":[{"mask-linear-to":T()}],"mask-image-t-from-pos":[{"mask-t-from":H()}],"mask-image-t-to-pos":[{"mask-t-to":H()}],"mask-image-t-from-color":[{"mask-t-from":T()}],"mask-image-t-to-color":[{"mask-t-to":T()}],"mask-image-r-from-pos":[{"mask-r-from":H()}],"mask-image-r-to-pos":[{"mask-r-to":H()}],"mask-image-r-from-color":[{"mask-r-from":T()}],"mask-image-r-to-color":[{"mask-r-to":T()}],"mask-image-b-from-pos":[{"mask-b-from":H()}],"mask-image-b-to-pos":[{"mask-b-to":H()}],"mask-image-b-from-color":[{"mask-b-from":T()}],"mask-image-b-to-color":[{"mask-b-to":T()}],"mask-image-l-from-pos":[{"mask-l-from":H()}],"mask-image-l-to-pos":[{"mask-l-to":H()}],"mask-image-l-from-color":[{"mask-l-from":T()}],"mask-image-l-to-color":[{"mask-l-to":T()}],"mask-image-x-from-pos":[{"mask-x-from":H()}],"mask-image-x-to-pos":[{"mask-x-to":H()}],"mask-image-x-from-color":[{"mask-x-from":T()}],"mask-image-x-to-color":[{"mask-x-to":T()}],"mask-image-y-from-pos":[{"mask-y-from":H()}],"mask-image-y-to-pos":[{"mask-y-to":H()}],"mask-image-y-from-color":[{"mask-y-from":T()}],"mask-image-y-to-color":[{"mask-y-to":T()}],"mask-image-radial":[{"mask-radial":[xe,ge]}],"mask-image-radial-from-pos":[{"mask-radial-from":H()}],"mask-image-radial-to-pos":[{"mask-radial-to":H()}],"mask-image-radial-from-color":[{"mask-radial-from":T()}],"mask-image-radial-to-color":[{"mask-radial-to":T()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":S()}],"mask-image-conic-pos":[{"mask-conic":[We]}],"mask-image-conic-from-pos":[{"mask-conic-from":H()}],"mask-image-conic-to-pos":[{"mask-conic-to":H()}],"mask-image-conic-from-color":[{"mask-conic-from":T()}],"mask-image-conic-to-color":[{"mask-conic-to":T()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:j()}],"mask-repeat":[{mask:R()}],"mask-size":[{mask:P()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",xe,ge]}],filter:[{filter:["","none",xe,ge]}],blur:[{blur:W()}],brightness:[{brightness:[We,xe,ge]}],contrast:[{contrast:[We,xe,ge]}],"drop-shadow":[{"drop-shadow":["","none",h,ds,us]}],"drop-shadow-color":[{"drop-shadow":T()}],grayscale:[{grayscale:["",We,xe,ge]}],"hue-rotate":[{"hue-rotate":[We,xe,ge]}],invert:[{invert:["",We,xe,ge]}],saturate:[{saturate:[We,xe,ge]}],sepia:[{sepia:["",We,xe,ge]}],"backdrop-filter":[{"backdrop-filter":["","none",xe,ge]}],"backdrop-blur":[{"backdrop-blur":W()}],"backdrop-brightness":[{"backdrop-brightness":[We,xe,ge]}],"backdrop-contrast":[{"backdrop-contrast":[We,xe,ge]}],"backdrop-grayscale":[{"backdrop-grayscale":["",We,xe,ge]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[We,xe,ge]}],"backdrop-invert":[{"backdrop-invert":["",We,xe,ge]}],"backdrop-opacity":[{"backdrop-opacity":[We,xe,ge]}],"backdrop-saturate":[{"backdrop-saturate":[We,xe,ge]}],"backdrop-sepia":[{"backdrop-sepia":["",We,xe,ge]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":A()}],"border-spacing-x":[{"border-spacing-x":A()}],"border-spacing-y":[{"border-spacing-y":A()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",xe,ge]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[We,"initial",xe,ge]}],ease:[{ease:["linear","initial",y,xe,ge]}],delay:[{delay:[We,xe,ge]}],animate:[{animate:["none",b,xe,ge]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[g,xe,ge]}],"perspective-origin":[{"perspective-origin":E()}],rotate:[{rotate:K()}],"rotate-x":[{"rotate-x":K()}],"rotate-y":[{"rotate-y":K()}],"rotate-z":[{"rotate-z":K()}],scale:[{scale:J()}],"scale-x":[{"scale-x":J()}],"scale-y":[{"scale-y":J()}],"scale-z":[{"scale-z":J()}],"scale-3d":["scale-3d"],skew:[{skew:re()}],"skew-x":[{"skew-x":re()}],"skew-y":[{"skew-y":re()}],transform:[{transform:[xe,ge,"","none","gpu","cpu"]}],"transform-origin":[{origin:E()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:Z()}],"translate-x":[{"translate-x":Z()}],"translate-y":[{"translate-y":Z()}],"translate-z":[{"translate-z":Z()}],"translate-none":["translate-none"],accent:[{accent:T()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:T()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],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",xe,ge]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":A()}],"scroll-mx":[{"scroll-mx":A()}],"scroll-my":[{"scroll-my":A()}],"scroll-ms":[{"scroll-ms":A()}],"scroll-me":[{"scroll-me":A()}],"scroll-mt":[{"scroll-mt":A()}],"scroll-mr":[{"scroll-mr":A()}],"scroll-mb":[{"scroll-mb":A()}],"scroll-ml":[{"scroll-ml":A()}],"scroll-p":[{"scroll-p":A()}],"scroll-px":[{"scroll-px":A()}],"scroll-py":[{"scroll-py":A()}],"scroll-ps":[{"scroll-ps":A()}],"scroll-pe":[{"scroll-pe":A()}],"scroll-pt":[{"scroll-pt":A()}],"scroll-pr":[{"scroll-pr":A()}],"scroll-pb":[{"scroll-pb":A()}],"scroll-pl":[{"scroll-pl":A()}],"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",xe,ge]}],fill:[{fill:["none",...T()]}],"stroke-w":[{stroke:[We,Xo,gr,ul]}],stroke:[{stroke:["none",...T()]}],"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-x","border-w-y","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-x","border-color-y","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"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"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"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},Lb=xb(Ob);function Ge(...e){return Lb(Hh(e))}const $b=e=>{try{const t=new URL(e);if(t.protocol!=="artifact:")return null;const n=t.pathname.split("/").filter(i=>i),r=n[n.length-1],o=t.searchParams.get("version");return{filename:r,version:o}}catch(t){return console.error("Invalid artifact URI:",t),null}},Jh=(e,t)=>{try{const n=URL.createObjectURL(e),r=document.createElement("a");r.href=n,r.download=t||"download",document.body.appendChild(r),r.click(),document.body.removeChild(r),URL.revokeObjectURL(n)}catch(n){console.error("Error downloading blob:",n)}},zb=async e=>{try{let t,n=e.name;if(e.content){const r=atob(e.content),o=new Array(r.length);for(let s=0;s<r.length;s++)o[s]=r.charCodeAt(s);const i=new Uint8Array(o);t=new Blob([i],{type:e.mime_type||"application/octet-stream"})}else if(e.uri){const r=$b(e.uri);if(!r)throw new Error(`Invalid or unhandled URI format: ${e.uri}`);n=r.filename;const o=r.version||"latest",i=`/api/v1/artifacts/${encodeURIComponent(n)}/versions/${o}`,s=await Ct(i,{credentials:"include"});if(!s.ok)throw new Error(`Failed to download file: ${s.statusText}`);t=await s.blob()}else throw new Error("File has no content or URI to download.");Jh(t,n)}catch(t){console.error("Error creating download link:",t)}},em=(e,t=2)=>{if(e===0)return"0 Bytes";const n=1024,r=t<0?0:t,o=["Bytes","KB","MB","GB","TB","PB","EB","ZB","YB"],i=Math.floor(Math.log(e)/Math.log(n));return parseFloat((e/Math.pow(n,i)).toFixed(r))+" "+o[i]},Rd=e=>{try{const t=new Date(e),r=Math.floor((new Date().getTime()-t.getTime())/1e3),o=Math.floor(r/60),i=Math.floor(o/60),s=Math.floor(i/24);return r<60?`${r}s ago`:o<60?`${o}m ago`:i<24?`${i}h ago`:s===1?"Yesterday":s<7?`${s}d ago`:t.toLocaleDateString()}catch(t){return console.error("Error formatting date:",t),e}},Fb=e=>{if(!e)return"N/A";try{return new Date(e).toLocaleString()}catch{return"N/A"}},Dd=(e="")=>`
2
+ whitespace-normal
3
+ break-words
4
+ leading-[24px]
5
+
6
+ /* Typography */
7
+ [&_h1]:text-2xl [&_h1]:font-bold [&_h1]:mb-4 [&_h1]:mt-6 [&_h1]:text-foreground
8
+ [&_h2]:text-xl [&_h2]:font-bold [&_h2]:mb-3 [&_h2]:mt-5 [&_h2]:text-foreground
9
+ [&_h3]:text-lg [&_h3]:font-semibold [&_h3]:mb-2 [&_h3]:mt-4 [&_h3]:text-foreground
10
+ [&_h4]:text-base [&_h4]:font-semibold [&_h4]:mb-2 [&_h4]:mt-3 [&_h4]:text-foreground
11
+ [&_h5]:text-sm [&_h5]:font-semibold [&_h5]:mb-1 [&_h5]:mt-2 [&_h5]:text-foreground
12
+ [&_h6]:text-xs [&_h6]:font-semibold [&_h6]:mb-1 [&_h6]:mt-2 [&_h6]:text-foreground
13
+
14
+ /* Paragraphs */
15
+ [&_p]:mb-2 [&_p]:leading-[24px] [&_p]:text-foreground
16
+
17
+ /* Text formatting */
18
+ [&_strong]:font-semibold [&_strong]:text-foreground
19
+ [&_em]:italic
20
+ [&_del]:line-through [&_del]:text-foreground
21
+
22
+ /* Links */
23
+ [&_a]:text-[var(--color-primary-wMain)] [&_a]:underline [&_a]:decoration-[var(--color-primary-wMain)] dark:[&_a]:text-[var(--color-primary-w20)] dark:[&_a]:decoration-[var(--color-primary-w20)]
24
+ [&_a:hover]:text-[var(--color-primary-w100)] [&_a:hover]:decoration-[var(--color-primary-w100)] dark:[&_a:hover]:text-[var(--color-primary-w10)] dark:[&_a:hover]:decoration-[var(--color-primary-w10)]
25
+
26
+ /* Lists */
27
+ [&_ul]:mb-4 [&_ul]:pl-6 [&_ul]:list-disc [&_ul]:space-y-1
28
+ [&_ol]:mb-4 [&_ol]:pl-6 [&_ol]:list-decimal [&_ol]:space-y-1
29
+ [&_li]:text-foreground [&_li]:leading-[24px]
30
+ [&_ul_ul]:mt-1 [&_ul_ul]:mb-1
31
+ [&_ol_ol]:mt-1 [&_ol_ol]:mb-1
32
+
33
+ /* Code */
34
+ [&_code]:bg-transparent [&_code]:py-0.5 [&_code]:rounded
35
+ [&_code]:text-sm [&_code]:font-mono [&_code]:font-semibold [&_code]:text-foreground [&_code]:break-words
36
+ [&_pre]:bg-transparent [&_pre]:p-4 [&_pre]:rounded-lg [&_pre]:overflow-x-auto [&_pre]:max-w-full
37
+ [&_pre]:mb-4 [&_pre]:border [&_pre]:border-border [&_pre]:whitespace-pre-wrap
38
+ [&_pre_code]:bg-transparent [&_pre_code]:p-0 [&_pre_code]:text-sm [&_pre_code]:break-words
39
+
40
+ /* Blockquotes */
41
+ [&_blockquote]:border-l-4 [&_blockquote]:border-border [&_blockquote]:pl-4
42
+ [&_blockquote]:py-2 [&_blockquote]:mb-4 [&_blockquote]:italic
43
+ [&_blockquote]:text-foreground [&_blockquote]:bg-transparent
44
+
45
+ /* Tables */
46
+ [&_table]:w-full [&_table]:mb-4 [&_table]:border-collapse [&_table]:table-fixed [&_table]:max-w-full
47
+ [&_th]:border [&_th]:border-border [&_th]:px-3 [&_th]:py-2 [&_th]:break-words
48
+ [&_th]:bg-transparent [&_th]:font-semibold [&_th]:text-left
49
+ [&_td]:border [&_td]:border-border [&_td]:px-3 [&_td]:py-2 [&_td]:break-words
50
+ [&_tr:nth-child(even)]:bg-transparent
51
+
52
+ /* Horizontal rules */
53
+ [&_hr]:border-0 [&_hr]:border-t [&_hr]:border-border [&_hr]:my-6
54
+
55
+ /* Images */
56
+ [&_img]:max-w-full [&_img]:h-auto [&_img]:rounded [&_img]:my-2 [&_img]:object-contain
57
+
58
+ ${e}
59
+ `.trim().replace(/\s+/g," "),Bb=(e="")=>`
60
+ /* Buttons - "important" overrides for flow controls */
61
+ [&>button]:bg-[var(--color-background-w10)]
62
+ [&>button]:dark:!bg-[var(--color-background-w100)]
63
+ [&>button]:hover:bg-[var(--color-background-w20)]
64
+ [&>button]:dark:hover:!bg-[var(--color-primary-w60)]
65
+ [&>button]:text-[var(--color-primary-text-wMain)]
66
+ [&>button]:dark:text-[var(--color-primary-text-w10)]
67
+ [&>button]:!border
68
+ [&>button]:!border-[var(--color-secondary-w40)]
69
+ [&>button]:dark:!border-[var(--color-secondary-w70)]
70
+
71
+ ${e}
72
+ `.trim().replace(/\s+/g," ");function De(e,t,{checkForDefaultPrevented:n=!0}={}){return function(o){if(e==null||e(o),n===!1||!o.defaultPrevented)return t==null?void 0:t(o)}}function Hb(e,t){const n=m.createContext(t),r=i=>{const{children:s,...a}=i,l=m.useMemo(()=>a,Object.values(a));return d.jsx(n.Provider,{value:l,children:s})};r.displayName=e+"Provider";function o(i){const s=m.useContext(n);if(s)return s;if(t!==void 0)return t;throw new Error(`\`${i}\` must be used within \`${e}\``)}return[r,o]}function fr(e,t=[]){let n=[];function r(i,s){const a=m.createContext(s),l=n.length;n=[...n,s];const c=f=>{var y;const{scope:p,children:h,...x}=f,g=((y=p==null?void 0:p[e])==null?void 0:y[l])||a,v=m.useMemo(()=>x,Object.values(x));return d.jsx(g.Provider,{value:v,children:h})};c.displayName=i+"Provider";function u(f,p){var g;const h=((g=p==null?void 0:p[e])==null?void 0:g[l])||a,x=m.useContext(h);if(x)return x;if(s!==void 0)return s;throw new Error(`\`${f}\` must be used within \`${i}\``)}return[c,u]}const o=()=>{const i=n.map(s=>m.createContext(s));return function(a){const l=(a==null?void 0:a[e])||i;return m.useMemo(()=>({[`__scope${e}`]:{...a,[e]:l}}),[a,l])}};return o.scopeName=e,[r,Ub(o,...t)]}function Ub(...e){const t=e[0];if(e.length===1)return t;const n=()=>{const r=e.map(o=>({useScope:o(),scopeName:o.scopeName}));return function(i){const s=r.reduce((a,{useScope:l,scopeName:c})=>{const f=l(i)[`__scope${c}`];return{...a,...f}},{});return m.useMemo(()=>({[`__scope${t.scopeName}`]:s}),[s])}};return n.scopeName=t.scopeName,n}var Bo=Yw();const Vb=Qc(Bo);var Wb=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],Ze=Wb.reduce((e,t)=>{const n=Ir(`Primitive.${t}`),r=m.forwardRef((o,i)=>{const{asChild:s,...a}=o,l=s?n:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(l,{...a,ref:i})});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{});function Gb(e,t){e&&Bo.flushSync(()=>e.dispatchEvent(t))}function ar(e){const t=m.useRef(e);return m.useEffect(()=>{t.current=e}),m.useMemo(()=>(...n)=>{var r;return(r=t.current)==null?void 0:r.call(t,...n)},[])}function Yb(e,t=globalThis==null?void 0:globalThis.document){const n=ar(e);m.useEffect(()=>{const r=o=>{o.key==="Escape"&&n(o)};return t.addEventListener("keydown",r,{capture:!0}),()=>t.removeEventListener("keydown",r,{capture:!0})},[n,t])}var qb="DismissableLayer",oc="dismissableLayer.update",Kb="dismissableLayer.pointerDownOutside",Xb="dismissableLayer.focusOutside",Pd,tm=m.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),Gi=m.forwardRef((e,t)=>{const{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:o,onFocusOutside:i,onInteractOutside:s,onDismiss:a,...l}=e,c=m.useContext(tm),[u,f]=m.useState(null),p=(u==null?void 0:u.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,h]=m.useState({}),x=ht(t,C=>f(C)),g=Array.from(c.layers),[v]=[...c.layersWithOutsidePointerEventsDisabled].slice(-1),y=g.indexOf(v),b=u?g.indexOf(u):-1,w=c.layersWithOutsidePointerEventsDisabled.size>0,S=b>=y,E=Jb(C=>{const A=C.target,D=[...c.branches].some(z=>z.contains(A));!S||D||(o==null||o(C),s==null||s(C),C.defaultPrevented||a==null||a())},p),k=e1(C=>{const A=C.target;[...c.branches].some(z=>z.contains(A))||(i==null||i(C),s==null||s(C),C.defaultPrevented||a==null||a())},p);return Yb(C=>{b===c.layers.size-1&&(r==null||r(C),!C.defaultPrevented&&a&&(C.preventDefault(),a()))},p),m.useEffect(()=>{if(u)return n&&(c.layersWithOutsidePointerEventsDisabled.size===0&&(Pd=p.body.style.pointerEvents,p.body.style.pointerEvents="none"),c.layersWithOutsidePointerEventsDisabled.add(u)),c.layers.add(u),Od(),()=>{n&&c.layersWithOutsidePointerEventsDisabled.size===1&&(p.body.style.pointerEvents=Pd)}},[u,p,n,c]),m.useEffect(()=>()=>{u&&(c.layers.delete(u),c.layersWithOutsidePointerEventsDisabled.delete(u),Od())},[u,c]),m.useEffect(()=>{const C=()=>h({});return document.addEventListener(oc,C),()=>document.removeEventListener(oc,C)},[]),d.jsx(Ze.div,{...l,ref:x,style:{pointerEvents:w?S?"auto":"none":void 0,...e.style},onFocusCapture:De(e.onFocusCapture,k.onFocusCapture),onBlurCapture:De(e.onBlurCapture,k.onBlurCapture),onPointerDownCapture:De(e.onPointerDownCapture,E.onPointerDownCapture)})});Gi.displayName=qb;var Zb="DismissableLayerBranch",Qb=m.forwardRef((e,t)=>{const n=m.useContext(tm),r=m.useRef(null),o=ht(t,r);return m.useEffect(()=>{const i=r.current;if(i)return n.branches.add(i),()=>{n.branches.delete(i)}},[n.branches]),d.jsx(Ze.div,{...e,ref:o})});Qb.displayName=Zb;function Jb(e,t=globalThis==null?void 0:globalThis.document){const n=ar(e),r=m.useRef(!1),o=m.useRef(()=>{});return m.useEffect(()=>{const i=a=>{if(a.target&&!r.current){let l=function(){nm(Kb,n,c,{discrete:!0})};const c={originalEvent:a};a.pointerType==="touch"?(t.removeEventListener("click",o.current),o.current=l,t.addEventListener("click",o.current,{once:!0})):l()}else t.removeEventListener("click",o.current);r.current=!1},s=window.setTimeout(()=>{t.addEventListener("pointerdown",i)},0);return()=>{window.clearTimeout(s),t.removeEventListener("pointerdown",i),t.removeEventListener("click",o.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function e1(e,t=globalThis==null?void 0:globalThis.document){const n=ar(e),r=m.useRef(!1);return m.useEffect(()=>{const o=i=>{i.target&&!r.current&&nm(Xb,n,{originalEvent:i},{discrete:!1})};return t.addEventListener("focusin",o),()=>t.removeEventListener("focusin",o)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function Od(){const e=new CustomEvent(oc);document.dispatchEvent(e)}function nm(e,t,n,{discrete:r}){const o=n.originalEvent.target,i=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&o.addEventListener(e,t,{once:!0}),r?Gb(o,i):o.dispatchEvent(i)}var zt=globalThis!=null&&globalThis.document?m.useLayoutEffect:()=>{},t1=Jc[" useId ".trim().toString()]||(()=>{}),n1=0;function _n(e){const[t,n]=m.useState(t1());return zt(()=>{n(r=>r??String(n1++))},[e]),t?`radix-${t}`:""}const r1=["top","right","bottom","left"],lr=Math.min,Xt=Math.max,Xs=Math.round,fs=Math.floor,Tn=e=>({x:e,y:e}),o1={left:"right",right:"left",bottom:"top",top:"bottom"},i1={start:"end",end:"start"};function ic(e,t,n){return Xt(e,lr(t,n))}function Vn(e,t){return typeof e=="function"?e(t):e}function Wn(e){return e.split("-")[0]}function Ho(e){return e.split("-")[1]}function nu(e){return e==="x"?"y":"x"}function ru(e){return e==="y"?"height":"width"}const s1=new Set(["top","bottom"]);function Sn(e){return s1.has(Wn(e))?"y":"x"}function ou(e){return nu(Sn(e))}function a1(e,t,n){n===void 0&&(n=!1);const r=Ho(e),o=ou(e),i=ru(o);let s=o==="x"?r===(n?"end":"start")?"right":"left":r==="start"?"bottom":"top";return t.reference[i]>t.floating[i]&&(s=Zs(s)),[s,Zs(s)]}function l1(e){const t=Zs(e);return[sc(e),t,sc(t)]}function sc(e){return e.replace(/start|end/g,t=>i1[t])}const Ld=["left","right"],$d=["right","left"],c1=["top","bottom"],u1=["bottom","top"];function d1(e,t,n){switch(e){case"top":case"bottom":return n?t?$d:Ld:t?Ld:$d;case"left":case"right":return t?c1:u1;default:return[]}}function f1(e,t,n,r){const o=Ho(e);let i=d1(Wn(e),n==="start",r);return o&&(i=i.map(s=>s+"-"+o),t&&(i=i.concat(i.map(sc)))),i}function Zs(e){return e.replace(/left|right|bottom|top/g,t=>o1[t])}function p1(e){return{top:0,right:0,bottom:0,left:0,...e}}function rm(e){return typeof e!="number"?p1(e):{top:e,right:e,bottom:e,left:e}}function Qs(e){const{x:t,y:n,width:r,height:o}=e;return{width:r,height:o,top:n,left:t,right:t+r,bottom:n+o,x:t,y:n}}function zd(e,t,n){let{reference:r,floating:o}=e;const i=Sn(t),s=ou(t),a=ru(s),l=Wn(t),c=i==="y",u=r.x+r.width/2-o.width/2,f=r.y+r.height/2-o.height/2,p=r[a]/2-o[a]/2;let h;switch(l){case"top":h={x:u,y:r.y-o.height};break;case"bottom":h={x:u,y:r.y+r.height};break;case"right":h={x:r.x+r.width,y:f};break;case"left":h={x:r.x-o.width,y:f};break;default:h={x:r.x,y:r.y}}switch(Ho(t)){case"start":h[s]-=p*(n&&c?-1:1);break;case"end":h[s]+=p*(n&&c?-1:1);break}return h}const h1=async(e,t,n)=>{const{placement:r="bottom",strategy:o="absolute",middleware:i=[],platform:s}=n,a=i.filter(Boolean),l=await(s.isRTL==null?void 0:s.isRTL(t));let c=await s.getElementRects({reference:e,floating:t,strategy:o}),{x:u,y:f}=zd(c,r,l),p=r,h={},x=0;for(let g=0;g<a.length;g++){const{name:v,fn:y}=a[g],{x:b,y:w,data:S,reset:E}=await y({x:u,y:f,initialPlacement:r,placement:p,strategy:o,middlewareData:h,rects:c,platform:s,elements:{reference:e,floating:t}});u=b??u,f=w??f,h={...h,[v]:{...h[v],...S}},E&&x<=50&&(x++,typeof E=="object"&&(E.placement&&(p=E.placement),E.rects&&(c=E.rects===!0?await s.getElementRects({reference:e,floating:t,strategy:o}):E.rects),{x:u,y:f}=zd(c,p,l)),g=-1)}return{x:u,y:f,placement:p,strategy:o,middlewareData:h}};async function _i(e,t){var n;t===void 0&&(t={});const{x:r,y:o,platform:i,rects:s,elements:a,strategy:l}=e,{boundary:c="clippingAncestors",rootBoundary:u="viewport",elementContext:f="floating",altBoundary:p=!1,padding:h=0}=Vn(t,e),x=rm(h),v=a[p?f==="floating"?"reference":"floating":f],y=Qs(await i.getClippingRect({element:(n=await(i.isElement==null?void 0:i.isElement(v)))==null||n?v:v.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(a.floating)),boundary:c,rootBoundary:u,strategy:l})),b=f==="floating"?{x:r,y:o,width:s.floating.width,height:s.floating.height}:s.reference,w=await(i.getOffsetParent==null?void 0:i.getOffsetParent(a.floating)),S=await(i.isElement==null?void 0:i.isElement(w))?await(i.getScale==null?void 0:i.getScale(w))||{x:1,y:1}:{x:1,y:1},E=Qs(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:a,rect:b,offsetParent:w,strategy:l}):b);return{top:(y.top-E.top+x.top)/S.y,bottom:(E.bottom-y.bottom+x.bottom)/S.y,left:(y.left-E.left+x.left)/S.x,right:(E.right-y.right+x.right)/S.x}}const m1=e=>({name:"arrow",options:e,async fn(t){const{x:n,y:r,placement:o,rects:i,platform:s,elements:a,middlewareData:l}=t,{element:c,padding:u=0}=Vn(e,t)||{};if(c==null)return{};const f=rm(u),p={x:n,y:r},h=ou(o),x=ru(h),g=await s.getDimensions(c),v=h==="y",y=v?"top":"left",b=v?"bottom":"right",w=v?"clientHeight":"clientWidth",S=i.reference[x]+i.reference[h]-p[h]-i.floating[x],E=p[h]-i.reference[h],k=await(s.getOffsetParent==null?void 0:s.getOffsetParent(c));let C=k?k[w]:0;(!C||!await(s.isElement==null?void 0:s.isElement(k)))&&(C=a.floating[w]||i.floating[x]);const A=S/2-E/2,D=C/2-g[x]/2-1,z=lr(f[y],D),$=lr(f[b],D),O=z,L=C-g[x]-$,_=C/2-g[x]/2+A,M=ic(O,_,L),N=!l.arrow&&Ho(o)!=null&&_!==M&&i.reference[x]/2-(_<O?z:$)-g[x]/2<0,I=N?_<O?_-O:_-L:0;return{[h]:p[h]+I,data:{[h]:M,centerOffset:_-M-I,...N&&{alignmentOffset:I}},reset:N}}}),g1=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n,r;const{placement:o,middlewareData:i,rects:s,initialPlacement:a,platform:l,elements:c}=t,{mainAxis:u=!0,crossAxis:f=!0,fallbackPlacements:p,fallbackStrategy:h="bestFit",fallbackAxisSideDirection:x="none",flipAlignment:g=!0,...v}=Vn(e,t);if((n=i.arrow)!=null&&n.alignmentOffset)return{};const y=Wn(o),b=Sn(a),w=Wn(a)===a,S=await(l.isRTL==null?void 0:l.isRTL(c.floating)),E=p||(w||!g?[Zs(a)]:l1(a)),k=x!=="none";!p&&k&&E.push(...f1(a,g,x,S));const C=[a,...E],A=await _i(t,v),D=[];let z=((r=i.flip)==null?void 0:r.overflows)||[];if(u&&D.push(A[y]),f){const _=a1(o,s,S);D.push(A[_[0]],A[_[1]])}if(z=[...z,{placement:o,overflows:D}],!D.every(_=>_<=0)){var $,O;const _=((($=i.flip)==null?void 0:$.index)||0)+1,M=C[_];if(M&&(!(f==="alignment"?b!==Sn(M):!1)||z.every(T=>Sn(T.placement)===b?T.overflows[0]>0:!0)))return{data:{index:_,overflows:z},reset:{placement:M}};let N=(O=z.filter(I=>I.overflows[0]<=0).sort((I,T)=>I.overflows[1]-T.overflows[1])[0])==null?void 0:O.placement;if(!N)switch(h){case"bestFit":{var L;const I=(L=z.filter(T=>{if(k){const j=Sn(T.placement);return j===b||j==="y"}return!0}).map(T=>[T.placement,T.overflows.filter(j=>j>0).reduce((j,R)=>j+R,0)]).sort((T,j)=>T[1]-j[1])[0])==null?void 0:L[0];I&&(N=I);break}case"initialPlacement":N=a;break}if(o!==N)return{reset:{placement:N}}}return{}}}};function Fd(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function Bd(e){return r1.some(t=>e[t]>=0)}const x1=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){const{rects:n}=t,{strategy:r="referenceHidden",...o}=Vn(e,t);switch(r){case"referenceHidden":{const i=await _i(t,{...o,elementContext:"reference"}),s=Fd(i,n.reference);return{data:{referenceHiddenOffsets:s,referenceHidden:Bd(s)}}}case"escaped":{const i=await _i(t,{...o,altBoundary:!0}),s=Fd(i,n.floating);return{data:{escapedOffsets:s,escaped:Bd(s)}}}default:return{}}}}},om=new Set(["left","top"]);async function v1(e,t){const{placement:n,platform:r,elements:o}=e,i=await(r.isRTL==null?void 0:r.isRTL(o.floating)),s=Wn(n),a=Ho(n),l=Sn(n)==="y",c=om.has(s)?-1:1,u=i&&l?-1:1,f=Vn(t,e);let{mainAxis:p,crossAxis:h,alignmentAxis:x}=typeof f=="number"?{mainAxis:f,crossAxis:0,alignmentAxis:null}:{mainAxis:f.mainAxis||0,crossAxis:f.crossAxis||0,alignmentAxis:f.alignmentAxis};return a&&typeof x=="number"&&(h=a==="end"?x*-1:x),l?{x:h*u,y:p*c}:{x:p*c,y:h*u}}const y1=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var n,r;const{x:o,y:i,placement:s,middlewareData:a}=t,l=await v1(t,e);return s===((n=a.offset)==null?void 0:n.placement)&&(r=a.arrow)!=null&&r.alignmentOffset?{}:{x:o+l.x,y:i+l.y,data:{...l,placement:s}}}}},w1=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:o}=t,{mainAxis:i=!0,crossAxis:s=!1,limiter:a={fn:v=>{let{x:y,y:b}=v;return{x:y,y:b}}},...l}=Vn(e,t),c={x:n,y:r},u=await _i(t,l),f=Sn(Wn(o)),p=nu(f);let h=c[p],x=c[f];if(i){const v=p==="y"?"top":"left",y=p==="y"?"bottom":"right",b=h+u[v],w=h-u[y];h=ic(b,h,w)}if(s){const v=f==="y"?"top":"left",y=f==="y"?"bottom":"right",b=x+u[v],w=x-u[y];x=ic(b,x,w)}const g=a.fn({...t,[p]:h,[f]:x});return{...g,data:{x:g.x-n,y:g.y-r,enabled:{[p]:i,[f]:s}}}}}},b1=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:n,y:r,placement:o,rects:i,middlewareData:s}=t,{offset:a=0,mainAxis:l=!0,crossAxis:c=!0}=Vn(e,t),u={x:n,y:r},f=Sn(o),p=nu(f);let h=u[p],x=u[f];const g=Vn(a,t),v=typeof g=="number"?{mainAxis:g,crossAxis:0}:{mainAxis:0,crossAxis:0,...g};if(l){const w=p==="y"?"height":"width",S=i.reference[p]-i.floating[w]+v.mainAxis,E=i.reference[p]+i.reference[w]-v.mainAxis;h<S?h=S:h>E&&(h=E)}if(c){var y,b;const w=p==="y"?"width":"height",S=om.has(Wn(o)),E=i.reference[f]-i.floating[w]+(S&&((y=s.offset)==null?void 0:y[f])||0)+(S?0:v.crossAxis),k=i.reference[f]+i.reference[w]+(S?0:((b=s.offset)==null?void 0:b[f])||0)-(S?v.crossAxis:0);x<E?x=E:x>k&&(x=k)}return{[p]:h,[f]:x}}}},E1=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){var n,r;const{placement:o,rects:i,platform:s,elements:a}=t,{apply:l=()=>{},...c}=Vn(e,t),u=await _i(t,c),f=Wn(o),p=Ho(o),h=Sn(o)==="y",{width:x,height:g}=i.floating;let v,y;f==="top"||f==="bottom"?(v=f,y=p===(await(s.isRTL==null?void 0:s.isRTL(a.floating))?"start":"end")?"left":"right"):(y=f,v=p==="end"?"top":"bottom");const b=g-u.top-u.bottom,w=x-u.left-u.right,S=lr(g-u[v],b),E=lr(x-u[y],w),k=!t.middlewareData.shift;let C=S,A=E;if((n=t.middlewareData.shift)!=null&&n.enabled.x&&(A=w),(r=t.middlewareData.shift)!=null&&r.enabled.y&&(C=b),k&&!p){const z=Xt(u.left,0),$=Xt(u.right,0),O=Xt(u.top,0),L=Xt(u.bottom,0);h?A=x-2*(z!==0||$!==0?z+$:Xt(u.left,u.right)):C=g-2*(O!==0||L!==0?O+L:Xt(u.top,u.bottom))}await l({...t,availableWidth:A,availableHeight:C});const D=await s.getDimensions(a.floating);return x!==D.width||g!==D.height?{reset:{rects:!0}}:{}}}};function Ca(){return typeof window<"u"}function Uo(e){return im(e)?(e.nodeName||"").toLowerCase():"#document"}function Jt(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function Mn(e){var t;return(t=(im(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function im(e){return Ca()?e instanceof Node||e instanceof Jt(e).Node:!1}function hn(e){return Ca()?e instanceof Element||e instanceof Jt(e).Element:!1}function In(e){return Ca()?e instanceof HTMLElement||e instanceof Jt(e).HTMLElement:!1}function Hd(e){return!Ca()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof Jt(e).ShadowRoot}const S1=new Set(["inline","contents"]);function Yi(e){const{overflow:t,overflowX:n,overflowY:r,display:o}=mn(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!S1.has(o)}const k1=new Set(["table","td","th"]);function C1(e){return k1.has(Uo(e))}const _1=[":popover-open",":modal"];function _a(e){return _1.some(t=>{try{return e.matches(t)}catch{return!1}})}const T1=["transform","translate","scale","rotate","perspective"],A1=["transform","translate","scale","rotate","perspective","filter"],N1=["paint","layout","strict","content"];function iu(e){const t=su(),n=hn(e)?mn(e):e;return T1.some(r=>n[r]?n[r]!=="none":!1)||(n.containerType?n.containerType!=="normal":!1)||!t&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!t&&(n.filter?n.filter!=="none":!1)||A1.some(r=>(n.willChange||"").includes(r))||N1.some(r=>(n.contain||"").includes(r))}function I1(e){let t=cr(e);for(;In(t)&&!bo(t);){if(iu(t))return t;if(_a(t))return null;t=cr(t)}return null}function su(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const j1=new Set(["html","body","#document"]);function bo(e){return j1.has(Uo(e))}function mn(e){return Jt(e).getComputedStyle(e)}function Ta(e){return hn(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function cr(e){if(Uo(e)==="html")return e;const t=e.assignedSlot||e.parentNode||Hd(e)&&e.host||Mn(e);return Hd(t)?t.host:t}function sm(e){const t=cr(e);return bo(t)?e.ownerDocument?e.ownerDocument.body:e.body:In(t)&&Yi(t)?t:sm(t)}function Ti(e,t,n){var r;t===void 0&&(t=[]),n===void 0&&(n=!0);const o=sm(e),i=o===((r=e.ownerDocument)==null?void 0:r.body),s=Jt(o);if(i){const a=ac(s);return t.concat(s,s.visualViewport||[],Yi(o)?o:[],a&&n?Ti(a):[])}return t.concat(o,Ti(o,[],n))}function ac(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function am(e){const t=mn(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const o=In(e),i=o?e.offsetWidth:n,s=o?e.offsetHeight:r,a=Xs(n)!==i||Xs(r)!==s;return a&&(n=i,r=s),{width:n,height:r,$:a}}function au(e){return hn(e)?e:e.contextElement}function mo(e){const t=au(e);if(!In(t))return Tn(1);const n=t.getBoundingClientRect(),{width:r,height:o,$:i}=am(t);let s=(i?Xs(n.width):n.width)/r,a=(i?Xs(n.height):n.height)/o;return(!s||!Number.isFinite(s))&&(s=1),(!a||!Number.isFinite(a))&&(a=1),{x:s,y:a}}const M1=Tn(0);function lm(e){const t=Jt(e);return!su()||!t.visualViewport?M1:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function R1(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==Jt(e)?!1:t}function jr(e,t,n,r){t===void 0&&(t=!1),n===void 0&&(n=!1);const o=e.getBoundingClientRect(),i=au(e);let s=Tn(1);t&&(r?hn(r)&&(s=mo(r)):s=mo(e));const a=R1(i,n,r)?lm(i):Tn(0);let l=(o.left+a.x)/s.x,c=(o.top+a.y)/s.y,u=o.width/s.x,f=o.height/s.y;if(i){const p=Jt(i),h=r&&hn(r)?Jt(r):r;let x=p,g=ac(x);for(;g&&r&&h!==x;){const v=mo(g),y=g.getBoundingClientRect(),b=mn(g),w=y.left+(g.clientLeft+parseFloat(b.paddingLeft))*v.x,S=y.top+(g.clientTop+parseFloat(b.paddingTop))*v.y;l*=v.x,c*=v.y,u*=v.x,f*=v.y,l+=w,c+=S,x=Jt(g),g=ac(x)}}return Qs({width:u,height:f,x:l,y:c})}function Aa(e,t){const n=Ta(e).scrollLeft;return t?t.left+n:jr(Mn(e)).left+n}function cm(e,t){const n=e.getBoundingClientRect(),r=n.left+t.scrollLeft-Aa(e,n),o=n.top+t.scrollTop;return{x:r,y:o}}function D1(e){let{elements:t,rect:n,offsetParent:r,strategy:o}=e;const i=o==="fixed",s=Mn(r),a=t?_a(t.floating):!1;if(r===s||a&&i)return n;let l={scrollLeft:0,scrollTop:0},c=Tn(1);const u=Tn(0),f=In(r);if((f||!f&&!i)&&((Uo(r)!=="body"||Yi(s))&&(l=Ta(r)),In(r))){const h=jr(r);c=mo(r),u.x=h.x+r.clientLeft,u.y=h.y+r.clientTop}const p=s&&!f&&!i?cm(s,l):Tn(0);return{width:n.width*c.x,height:n.height*c.y,x:n.x*c.x-l.scrollLeft*c.x+u.x+p.x,y:n.y*c.y-l.scrollTop*c.y+u.y+p.y}}function P1(e){return Array.from(e.getClientRects())}function O1(e){const t=Mn(e),n=Ta(e),r=e.ownerDocument.body,o=Xt(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),i=Xt(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let s=-n.scrollLeft+Aa(e);const a=-n.scrollTop;return mn(r).direction==="rtl"&&(s+=Xt(t.clientWidth,r.clientWidth)-o),{width:o,height:i,x:s,y:a}}const Ud=25;function L1(e,t){const n=Jt(e),r=Mn(e),o=n.visualViewport;let i=r.clientWidth,s=r.clientHeight,a=0,l=0;if(o){i=o.width,s=o.height;const u=su();(!u||u&&t==="fixed")&&(a=o.offsetLeft,l=o.offsetTop)}const c=Aa(r);if(c<=0){const u=r.ownerDocument,f=u.body,p=getComputedStyle(f),h=u.compatMode==="CSS1Compat"&&parseFloat(p.marginLeft)+parseFloat(p.marginRight)||0,x=Math.abs(r.clientWidth-f.clientWidth-h);x<=Ud&&(i-=x)}else c<=Ud&&(i+=c);return{width:i,height:s,x:a,y:l}}const $1=new Set(["absolute","fixed"]);function z1(e,t){const n=jr(e,!0,t==="fixed"),r=n.top+e.clientTop,o=n.left+e.clientLeft,i=In(e)?mo(e):Tn(1),s=e.clientWidth*i.x,a=e.clientHeight*i.y,l=o*i.x,c=r*i.y;return{width:s,height:a,x:l,y:c}}function Vd(e,t,n){let r;if(t==="viewport")r=L1(e,n);else if(t==="document")r=O1(Mn(e));else if(hn(t))r=z1(t,n);else{const o=lm(e);r={x:t.x-o.x,y:t.y-o.y,width:t.width,height:t.height}}return Qs(r)}function um(e,t){const n=cr(e);return n===t||!hn(n)||bo(n)?!1:mn(n).position==="fixed"||um(n,t)}function F1(e,t){const n=t.get(e);if(n)return n;let r=Ti(e,[],!1).filter(a=>hn(a)&&Uo(a)!=="body"),o=null;const i=mn(e).position==="fixed";let s=i?cr(e):e;for(;hn(s)&&!bo(s);){const a=mn(s),l=iu(s);!l&&a.position==="fixed"&&(o=null),(i?!l&&!o:!l&&a.position==="static"&&!!o&&$1.has(o.position)||Yi(s)&&!l&&um(e,s))?r=r.filter(u=>u!==s):o=a,s=cr(s)}return t.set(e,r),r}function B1(e){let{element:t,boundary:n,rootBoundary:r,strategy:o}=e;const s=[...n==="clippingAncestors"?_a(t)?[]:F1(t,this._c):[].concat(n),r],a=s[0],l=s.reduce((c,u)=>{const f=Vd(t,u,o);return c.top=Xt(f.top,c.top),c.right=lr(f.right,c.right),c.bottom=lr(f.bottom,c.bottom),c.left=Xt(f.left,c.left),c},Vd(t,a,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function H1(e){const{width:t,height:n}=am(e);return{width:t,height:n}}function U1(e,t,n){const r=In(t),o=Mn(t),i=n==="fixed",s=jr(e,!0,i,t);let a={scrollLeft:0,scrollTop:0};const l=Tn(0);function c(){l.x=Aa(o)}if(r||!r&&!i)if((Uo(t)!=="body"||Yi(o))&&(a=Ta(t)),r){const h=jr(t,!0,i,t);l.x=h.x+t.clientLeft,l.y=h.y+t.clientTop}else o&&c();i&&!r&&o&&c();const u=o&&!r&&!i?cm(o,a):Tn(0),f=s.left+a.scrollLeft-l.x-u.x,p=s.top+a.scrollTop-l.y-u.y;return{x:f,y:p,width:s.width,height:s.height}}function dl(e){return mn(e).position==="static"}function Wd(e,t){if(!In(e)||mn(e).position==="fixed")return null;if(t)return t(e);let n=e.offsetParent;return Mn(e)===n&&(n=n.ownerDocument.body),n}function dm(e,t){const n=Jt(e);if(_a(e))return n;if(!In(e)){let o=cr(e);for(;o&&!bo(o);){if(hn(o)&&!dl(o))return o;o=cr(o)}return n}let r=Wd(e,t);for(;r&&C1(r)&&dl(r);)r=Wd(r,t);return r&&bo(r)&&dl(r)&&!iu(r)?n:r||I1(e)||n}const V1=async function(e){const t=this.getOffsetParent||dm,n=this.getDimensions,r=await n(e.floating);return{reference:U1(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}};function W1(e){return mn(e).direction==="rtl"}const G1={convertOffsetParentRelativeRectToViewportRelativeRect:D1,getDocumentElement:Mn,getClippingRect:B1,getOffsetParent:dm,getElementRects:V1,getClientRects:P1,getDimensions:H1,getScale:mo,isElement:hn,isRTL:W1};function fm(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function Y1(e,t){let n=null,r;const o=Mn(e);function i(){var a;clearTimeout(r),(a=n)==null||a.disconnect(),n=null}function s(a,l){a===void 0&&(a=!1),l===void 0&&(l=1),i();const c=e.getBoundingClientRect(),{left:u,top:f,width:p,height:h}=c;if(a||t(),!p||!h)return;const x=fs(f),g=fs(o.clientWidth-(u+p)),v=fs(o.clientHeight-(f+h)),y=fs(u),w={rootMargin:-x+"px "+-g+"px "+-v+"px "+-y+"px",threshold:Xt(0,lr(1,l))||1};let S=!0;function E(k){const C=k[0].intersectionRatio;if(C!==l){if(!S)return s();C?s(!1,C):r=setTimeout(()=>{s(!1,1e-7)},1e3)}C===1&&!fm(c,e.getBoundingClientRect())&&s(),S=!1}try{n=new IntersectionObserver(E,{...w,root:o.ownerDocument})}catch{n=new IntersectionObserver(E,w)}n.observe(e)}return s(!0),i}function q1(e,t,n,r){r===void 0&&(r={});const{ancestorScroll:o=!0,ancestorResize:i=!0,elementResize:s=typeof ResizeObserver=="function",layoutShift:a=typeof IntersectionObserver=="function",animationFrame:l=!1}=r,c=au(e),u=o||i?[...c?Ti(c):[],...Ti(t)]:[];u.forEach(y=>{o&&y.addEventListener("scroll",n,{passive:!0}),i&&y.addEventListener("resize",n)});const f=c&&a?Y1(c,n):null;let p=-1,h=null;s&&(h=new ResizeObserver(y=>{let[b]=y;b&&b.target===c&&h&&(h.unobserve(t),cancelAnimationFrame(p),p=requestAnimationFrame(()=>{var w;(w=h)==null||w.observe(t)})),n()}),c&&!l&&h.observe(c),h.observe(t));let x,g=l?jr(e):null;l&&v();function v(){const y=jr(e);g&&!fm(g,y)&&n(),g=y,x=requestAnimationFrame(v)}return n(),()=>{var y;u.forEach(b=>{o&&b.removeEventListener("scroll",n),i&&b.removeEventListener("resize",n)}),f==null||f(),(y=h)==null||y.disconnect(),h=null,l&&cancelAnimationFrame(x)}}const K1=y1,X1=w1,Z1=g1,Q1=E1,J1=x1,Gd=m1,eE=b1,tE=(e,t,n)=>{const r=new Map,o={platform:G1,...n},i={...o.platform,_c:r};return h1(e,t,{...o,platform:i})};var nE=typeof document<"u",rE=function(){},Ls=nE?m.useLayoutEffect:rE;function Js(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 n,r,o;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(r=n;r--!==0;)if(!Js(e[r],t[r]))return!1;return!0}if(o=Object.keys(e),n=o.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!{}.hasOwnProperty.call(t,o[r]))return!1;for(r=n;r--!==0;){const i=o[r];if(!(i==="_owner"&&e.$$typeof)&&!Js(e[i],t[i]))return!1}return!0}return e!==e&&t!==t}function pm(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function Yd(e,t){const n=pm(e);return Math.round(t*n)/n}function fl(e){const t=m.useRef(e);return Ls(()=>{t.current=e}),t}function oE(e){e===void 0&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:r=[],platform:o,elements:{reference:i,floating:s}={},transform:a=!0,whileElementsMounted:l,open:c}=e,[u,f]=m.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[p,h]=m.useState(r);Js(p,r)||h(r);const[x,g]=m.useState(null),[v,y]=m.useState(null),b=m.useCallback(T=>{T!==k.current&&(k.current=T,g(T))},[]),w=m.useCallback(T=>{T!==C.current&&(C.current=T,y(T))},[]),S=i||x,E=s||v,k=m.useRef(null),C=m.useRef(null),A=m.useRef(u),D=l!=null,z=fl(l),$=fl(o),O=fl(c),L=m.useCallback(()=>{if(!k.current||!C.current)return;const T={placement:t,strategy:n,middleware:p};$.current&&(T.platform=$.current),tE(k.current,C.current,T).then(j=>{const R={...j,isPositioned:O.current!==!1};_.current&&!Js(A.current,R)&&(A.current=R,Bo.flushSync(()=>{f(R)}))})},[p,t,n,$,O]);Ls(()=>{c===!1&&A.current.isPositioned&&(A.current.isPositioned=!1,f(T=>({...T,isPositioned:!1})))},[c]);const _=m.useRef(!1);Ls(()=>(_.current=!0,()=>{_.current=!1}),[]),Ls(()=>{if(S&&(k.current=S),E&&(C.current=E),S&&E){if(z.current)return z.current(S,E,L);L()}},[S,E,L,z,D]);const M=m.useMemo(()=>({reference:k,floating:C,setReference:b,setFloating:w}),[b,w]),N=m.useMemo(()=>({reference:S,floating:E}),[S,E]),I=m.useMemo(()=>{const T={position:n,left:0,top:0};if(!N.floating)return T;const j=Yd(N.floating,u.x),R=Yd(N.floating,u.y);return a?{...T,transform:"translate("+j+"px, "+R+"px)",...pm(N.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:j,top:R}},[n,a,N.floating,u.x,u.y]);return m.useMemo(()=>({...u,update:L,refs:M,elements:N,floatingStyles:I}),[u,L,M,N,I])}const iE=e=>{function t(n){return{}.hasOwnProperty.call(n,"current")}return{name:"arrow",options:e,fn(n){const{element:r,padding:o}=typeof e=="function"?e(n):e;return r&&t(r)?r.current!=null?Gd({element:r.current,padding:o}).fn(n):{}:r?Gd({element:r,padding:o}).fn(n):{}}}},sE=(e,t)=>({...K1(e),options:[e,t]}),aE=(e,t)=>({...X1(e),options:[e,t]}),lE=(e,t)=>({...eE(e),options:[e,t]}),cE=(e,t)=>({...Z1(e),options:[e,t]}),uE=(e,t)=>({...Q1(e),options:[e,t]}),dE=(e,t)=>({...J1(e),options:[e,t]}),fE=(e,t)=>({...iE(e),options:[e,t]});var pE="Arrow",hm=m.forwardRef((e,t)=>{const{children:n,width:r=10,height:o=5,...i}=e;return d.jsx(Ze.svg,{...i,ref:t,width:r,height:o,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:e.asChild?n:d.jsx("polygon",{points:"0,0 30,0 15,10"})})});hm.displayName=pE;var hE=hm;function mE(e){const[t,n]=m.useState(void 0);return zt(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const r=new ResizeObserver(o=>{if(!Array.isArray(o)||!o.length)return;const i=o[0];let s,a;if("borderBoxSize"in i){const l=i.borderBoxSize,c=Array.isArray(l)?l[0]:l;s=c.inlineSize,a=c.blockSize}else s=e.offsetWidth,a=e.offsetHeight;n({width:s,height:a})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}else n(void 0)},[e]),t}var lu="Popper",[mm,Vo]=fr(lu),[gE,gm]=mm(lu),xm=e=>{const{__scopePopper:t,children:n}=e,[r,o]=m.useState(null);return d.jsx(gE,{scope:t,anchor:r,onAnchorChange:o,children:n})};xm.displayName=lu;var vm="PopperAnchor",ym=m.forwardRef((e,t)=>{const{__scopePopper:n,virtualRef:r,...o}=e,i=gm(vm,n),s=m.useRef(null),a=ht(t,s),l=m.useRef(null);return m.useEffect(()=>{const c=l.current;l.current=(r==null?void 0:r.current)||s.current,c!==l.current&&i.onAnchorChange(l.current)}),r?null:d.jsx(Ze.div,{...o,ref:a})});ym.displayName=vm;var cu="PopperContent",[xE,vE]=mm(cu),wm=m.forwardRef((e,t)=>{var H,W,K,J,re,Z;const{__scopePopper:n,side:r="bottom",sideOffset:o=0,align:i="center",alignOffset:s=0,arrowPadding:a=0,avoidCollisions:l=!0,collisionBoundary:c=[],collisionPadding:u=0,sticky:f="partial",hideWhenDetached:p=!1,updatePositionStrategy:h="optimized",onPlaced:x,...g}=e,v=gm(cu,n),[y,b]=m.useState(null),w=ht(t,ne=>b(ne)),[S,E]=m.useState(null),k=mE(S),C=(k==null?void 0:k.width)??0,A=(k==null?void 0:k.height)??0,D=r+(i!=="center"?"-"+i:""),z=typeof u=="number"?u:{top:0,right:0,bottom:0,left:0,...u},$=Array.isArray(c)?c:[c],O=$.length>0,L={padding:z,boundary:$.filter(wE),altBoundary:O},{refs:_,floatingStyles:M,placement:N,isPositioned:I,middlewareData:T}=oE({strategy:"fixed",placement:D,whileElementsMounted:(...ne)=>q1(...ne,{animationFrame:h==="always"}),elements:{reference:v.anchor},middleware:[sE({mainAxis:o+A,alignmentAxis:s}),l&&aE({mainAxis:!0,crossAxis:!1,limiter:f==="partial"?lE():void 0,...L}),l&&cE({...L}),uE({...L,apply:({elements:ne,rects:ee,availableWidth:ce,availableHeight:we})=>{const{width:Me,height:ae}=ee.reference,_e=ne.floating.style;_e.setProperty("--radix-popper-available-width",`${ce}px`),_e.setProperty("--radix-popper-available-height",`${we}px`),_e.setProperty("--radix-popper-anchor-width",`${Me}px`),_e.setProperty("--radix-popper-anchor-height",`${ae}px`)}}),S&&fE({element:S,padding:a}),bE({arrowWidth:C,arrowHeight:A}),p&&dE({strategy:"referenceHidden",...L})]}),[j,R]=Sm(N),P=ar(x);zt(()=>{I&&(P==null||P())},[I,P]);const U=(H=T.arrow)==null?void 0:H.x,B=(W=T.arrow)==null?void 0:W.y,V=((K=T.arrow)==null?void 0:K.centerOffset)!==0,[G,q]=m.useState();return zt(()=>{y&&q(window.getComputedStyle(y).zIndex)},[y]),d.jsx("div",{ref:_.setFloating,"data-radix-popper-content-wrapper":"",style:{...M,transform:I?M.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:G,"--radix-popper-transform-origin":[(J=T.transformOrigin)==null?void 0:J.x,(re=T.transformOrigin)==null?void 0:re.y].join(" "),...((Z=T.hide)==null?void 0:Z.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:d.jsx(xE,{scope:n,placedSide:j,onArrowChange:E,arrowX:U,arrowY:B,shouldHideArrow:V,children:d.jsx(Ze.div,{"data-side":j,"data-align":R,...g,ref:w,style:{...g.style,animation:I?void 0:"none"}})})})});wm.displayName=cu;var bm="PopperArrow",yE={top:"bottom",right:"left",bottom:"top",left:"right"},Em=m.forwardRef(function(t,n){const{__scopePopper:r,...o}=t,i=vE(bm,r),s=yE[i.placedSide];return d.jsx("span",{ref:i.onArrowChange,style:{position:"absolute",left:i.arrowX,top:i.arrowY,[s]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[i.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[i.placedSide],visibility:i.shouldHideArrow?"hidden":void 0},children:d.jsx(hE,{...o,ref:n,style:{...o.style,display:"block"}})})});Em.displayName=bm;function wE(e){return e!==null}var bE=e=>({name:"transformOrigin",options:e,fn(t){var v,y,b;const{placement:n,rects:r,middlewareData:o}=t,s=((v=o.arrow)==null?void 0:v.centerOffset)!==0,a=s?0:e.arrowWidth,l=s?0:e.arrowHeight,[c,u]=Sm(n),f={start:"0%",center:"50%",end:"100%"}[u],p=(((y=o.arrow)==null?void 0:y.x)??0)+a/2,h=(((b=o.arrow)==null?void 0:b.y)??0)+l/2;let x="",g="";return c==="bottom"?(x=s?f:`${p}px`,g=`${-l}px`):c==="top"?(x=s?f:`${p}px`,g=`${r.floating.height+l}px`):c==="right"?(x=`${-l}px`,g=s?f:`${h}px`):c==="left"&&(x=`${r.floating.width+l}px`,g=s?f:`${h}px`),{data:{x,y:g}}}});function Sm(e){const[t,n="center"]=e.split("-");return[t,n]}var uu=xm,Na=ym,du=wm,fu=Em,EE="Portal",qi=m.forwardRef((e,t)=>{var a;const{container:n,...r}=e,[o,i]=m.useState(!1);zt(()=>i(!0),[]);const s=n||o&&((a=globalThis==null?void 0:globalThis.document)==null?void 0:a.body);return s?Vb.createPortal(d.jsx(Ze.div,{...r,ref:t}),s):null});qi.displayName=EE;function SE(e,t){return m.useReducer((n,r)=>t[n][r]??n,e)}var qn=e=>{const{present:t,children:n}=e,r=kE(t),o=typeof n=="function"?n({present:r.isPresent}):m.Children.only(n),i=ht(r.ref,CE(o));return typeof n=="function"||r.isPresent?m.cloneElement(o,{ref:i}):null};qn.displayName="Presence";function kE(e){const[t,n]=m.useState(),r=m.useRef(null),o=m.useRef(e),i=m.useRef("none"),s=e?"mounted":"unmounted",[a,l]=SE(s,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return m.useEffect(()=>{const c=ps(r.current);i.current=a==="mounted"?c:"none"},[a]),zt(()=>{const c=r.current,u=o.current;if(u!==e){const p=i.current,h=ps(c);e?l("MOUNT"):h==="none"||(c==null?void 0:c.display)==="none"?l("UNMOUNT"):l(u&&p!==h?"ANIMATION_OUT":"UNMOUNT"),o.current=e}},[e,l]),zt(()=>{if(t){let c;const u=t.ownerDocument.defaultView??window,f=h=>{const g=ps(r.current).includes(CSS.escape(h.animationName));if(h.target===t&&g&&(l("ANIMATION_END"),!o.current)){const v=t.style.animationFillMode;t.style.animationFillMode="forwards",c=u.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=v)})}},p=h=>{h.target===t&&(i.current=ps(r.current))};return t.addEventListener("animationstart",p),t.addEventListener("animationcancel",f),t.addEventListener("animationend",f),()=>{u.clearTimeout(c),t.removeEventListener("animationstart",p),t.removeEventListener("animationcancel",f),t.removeEventListener("animationend",f)}}else l("ANIMATION_END")},[t,l]),{isPresent:["mounted","unmountSuspended"].includes(a),ref:m.useCallback(c=>{r.current=c?getComputedStyle(c):null,n(c)},[])}}function ps(e){return(e==null?void 0:e.animationName)||"none"}function CE(e){var r,o;let t=(r=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:r.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=(o=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:o.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var _E=Jc[" useInsertionEffect ".trim().toString()]||zt;function Mr({prop:e,defaultProp:t,onChange:n=()=>{},caller:r}){const[o,i,s]=TE({defaultProp:t,onChange:n}),a=e!==void 0,l=a?e:o;{const u=m.useRef(e!==void 0);m.useEffect(()=>{const f=u.current;f!==a&&console.warn(`${r} is changing from ${f?"controlled":"uncontrolled"} to ${a?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),u.current=a},[a,r])}const c=m.useCallback(u=>{var f;if(a){const p=AE(u)?u(e):u;p!==e&&((f=s.current)==null||f.call(s,p))}else i(u)},[a,e,i,s]);return[l,c]}function TE({defaultProp:e,onChange:t}){const[n,r]=m.useState(e),o=m.useRef(n),i=m.useRef(t);return _E(()=>{i.current=t},[t]),m.useEffect(()=>{var s;o.current!==n&&((s=i.current)==null||s.call(i,n),o.current=n)},[n,o]),[n,r,i]}function AE(e){return typeof e=="function"}var km=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),NE="VisuallyHidden",Cm=m.forwardRef((e,t)=>d.jsx(Ze.span,{...e,ref:t,style:{...km,...e.style}}));Cm.displayName=NE;var IE=Cm,[Ia,F$]=fr("Tooltip",[Vo]),ja=Vo(),_m="TooltipProvider",jE=700,lc="tooltip.open",[ME,pu]=Ia(_m),Tm=e=>{const{__scopeTooltip:t,delayDuration:n=jE,skipDelayDuration:r=300,disableHoverableContent:o=!1,children:i}=e,s=m.useRef(!0),a=m.useRef(!1),l=m.useRef(0);return m.useEffect(()=>{const c=l.current;return()=>window.clearTimeout(c)},[]),d.jsx(ME,{scope:t,isOpenDelayedRef:s,delayDuration:n,onOpen:m.useCallback(()=>{window.clearTimeout(l.current),s.current=!1},[]),onClose:m.useCallback(()=>{window.clearTimeout(l.current),l.current=window.setTimeout(()=>s.current=!0,r)},[r]),isPointerInTransitRef:a,onPointerInTransitChange:m.useCallback(c=>{a.current=c},[]),disableHoverableContent:o,children:i})};Tm.displayName=_m;var Ai="Tooltip",[RE,Ki]=Ia(Ai),Am=e=>{const{__scopeTooltip:t,children:n,open:r,defaultOpen:o,onOpenChange:i,disableHoverableContent:s,delayDuration:a}=e,l=pu(Ai,e.__scopeTooltip),c=ja(t),[u,f]=m.useState(null),p=_n(),h=m.useRef(0),x=s??l.disableHoverableContent,g=a??l.delayDuration,v=m.useRef(!1),[y,b]=Mr({prop:r,defaultProp:o??!1,onChange:C=>{C?(l.onOpen(),document.dispatchEvent(new CustomEvent(lc))):l.onClose(),i==null||i(C)},caller:Ai}),w=m.useMemo(()=>y?v.current?"delayed-open":"instant-open":"closed",[y]),S=m.useCallback(()=>{window.clearTimeout(h.current),h.current=0,v.current=!1,b(!0)},[b]),E=m.useCallback(()=>{window.clearTimeout(h.current),h.current=0,b(!1)},[b]),k=m.useCallback(()=>{window.clearTimeout(h.current),h.current=window.setTimeout(()=>{v.current=!0,b(!0),h.current=0},g)},[g,b]);return m.useEffect(()=>()=>{h.current&&(window.clearTimeout(h.current),h.current=0)},[]),d.jsx(uu,{...c,children:d.jsx(RE,{scope:t,contentId:p,open:y,stateAttribute:w,trigger:u,onTriggerChange:f,onTriggerEnter:m.useCallback(()=>{l.isOpenDelayedRef.current?k():S()},[l.isOpenDelayedRef,k,S]),onTriggerLeave:m.useCallback(()=>{x?E():(window.clearTimeout(h.current),h.current=0)},[E,x]),onOpen:S,onClose:E,disableHoverableContent:x,children:n})})};Am.displayName=Ai;var cc="TooltipTrigger",Nm=m.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=Ki(cc,n),i=pu(cc,n),s=ja(n),a=m.useRef(null),l=ht(t,a,o.onTriggerChange),c=m.useRef(!1),u=m.useRef(!1),f=m.useCallback(()=>c.current=!1,[]);return m.useEffect(()=>()=>document.removeEventListener("pointerup",f),[f]),d.jsx(Na,{asChild:!0,...s,children:d.jsx(Ze.button,{"aria-describedby":o.open?o.contentId:void 0,"data-state":o.stateAttribute,...r,ref:l,onPointerMove:De(e.onPointerMove,p=>{p.pointerType!=="touch"&&!u.current&&!i.isPointerInTransitRef.current&&(o.onTriggerEnter(),u.current=!0)}),onPointerLeave:De(e.onPointerLeave,()=>{o.onTriggerLeave(),u.current=!1}),onPointerDown:De(e.onPointerDown,()=>{o.open&&o.onClose(),c.current=!0,document.addEventListener("pointerup",f,{once:!0})}),onFocus:De(e.onFocus,()=>{c.current||o.onOpen()}),onBlur:De(e.onBlur,o.onClose),onClick:De(e.onClick,o.onClose)})})});Nm.displayName=cc;var hu="TooltipPortal",[DE,PE]=Ia(hu,{forceMount:void 0}),Im=e=>{const{__scopeTooltip:t,forceMount:n,children:r,container:o}=e,i=Ki(hu,t);return d.jsx(DE,{scope:t,forceMount:n,children:d.jsx(qn,{present:n||i.open,children:d.jsx(qi,{asChild:!0,container:o,children:r})})})};Im.displayName=hu;var Eo="TooltipContent",jm=m.forwardRef((e,t)=>{const n=PE(Eo,e.__scopeTooltip),{forceMount:r=n.forceMount,side:o="top",...i}=e,s=Ki(Eo,e.__scopeTooltip);return d.jsx(qn,{present:r||s.open,children:s.disableHoverableContent?d.jsx(Mm,{side:o,...i,ref:t}):d.jsx(OE,{side:o,...i,ref:t})})}),OE=m.forwardRef((e,t)=>{const n=Ki(Eo,e.__scopeTooltip),r=pu(Eo,e.__scopeTooltip),o=m.useRef(null),i=ht(t,o),[s,a]=m.useState(null),{trigger:l,onClose:c}=n,u=o.current,{onPointerInTransitChange:f}=r,p=m.useCallback(()=>{a(null),f(!1)},[f]),h=m.useCallback((x,g)=>{const v=x.currentTarget,y={x:x.clientX,y:x.clientY},b=FE(y,v.getBoundingClientRect()),w=BE(y,b),S=HE(g.getBoundingClientRect()),E=VE([...w,...S]);a(E),f(!0)},[f]);return m.useEffect(()=>()=>p(),[p]),m.useEffect(()=>{if(l&&u){const x=v=>h(v,u),g=v=>h(v,l);return l.addEventListener("pointerleave",x),u.addEventListener("pointerleave",g),()=>{l.removeEventListener("pointerleave",x),u.removeEventListener("pointerleave",g)}}},[l,u,h,p]),m.useEffect(()=>{if(s){const x=g=>{const v=g.target,y={x:g.clientX,y:g.clientY},b=(l==null?void 0:l.contains(v))||(u==null?void 0:u.contains(v)),w=!UE(y,s);b?p():w&&(p(),c())};return document.addEventListener("pointermove",x),()=>document.removeEventListener("pointermove",x)}},[l,u,s,c,p]),d.jsx(Mm,{...e,ref:i})}),[LE,$E]=Ia(Ai,{isInside:!1}),zE=Xw("TooltipContent"),Mm=m.forwardRef((e,t)=>{const{__scopeTooltip:n,children:r,"aria-label":o,onEscapeKeyDown:i,onPointerDownOutside:s,...a}=e,l=Ki(Eo,n),c=ja(n),{onClose:u}=l;return m.useEffect(()=>(document.addEventListener(lc,u),()=>document.removeEventListener(lc,u)),[u]),m.useEffect(()=>{if(l.trigger){const f=p=>{const h=p.target;h!=null&&h.contains(l.trigger)&&u()};return window.addEventListener("scroll",f,{capture:!0}),()=>window.removeEventListener("scroll",f,{capture:!0})}},[l.trigger,u]),d.jsx(Gi,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:i,onPointerDownOutside:s,onFocusOutside:f=>f.preventDefault(),onDismiss:u,children:d.jsxs(du,{"data-state":l.stateAttribute,...c,...a,ref:t,style:{...a.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"},children:[d.jsx(zE,{children:r}),d.jsx(LE,{scope:n,isInside:!0,children:d.jsx(IE,{id:l.contentId,role:"tooltip",children:o||r})})]})})});jm.displayName=Eo;var Rm="TooltipArrow",Dm=m.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=ja(n);return $E(Rm,n).isInside?null:d.jsx(fu,{...o,...r,ref:t})});Dm.displayName=Rm;function FE(e,t){const n=Math.abs(t.top-e.y),r=Math.abs(t.bottom-e.y),o=Math.abs(t.right-e.x),i=Math.abs(t.left-e.x);switch(Math.min(n,r,o,i)){case i:return"left";case o:return"right";case n:return"top";case r:return"bottom";default:throw new Error("unreachable")}}function BE(e,t,n=5){const r=[];switch(t){case"top":r.push({x:e.x-n,y:e.y+n},{x:e.x+n,y:e.y+n});break;case"bottom":r.push({x:e.x-n,y:e.y-n},{x:e.x+n,y:e.y-n});break;case"left":r.push({x:e.x+n,y:e.y-n},{x:e.x+n,y:e.y+n});break;case"right":r.push({x:e.x-n,y:e.y-n},{x:e.x-n,y:e.y+n});break}return r}function HE(e){const{top:t,right:n,bottom:r,left:o}=e;return[{x:o,y:t},{x:n,y:t},{x:n,y:r},{x:o,y:r}]}function UE(e,t){const{x:n,y:r}=e;let o=!1;for(let i=0,s=t.length-1;i<t.length;s=i++){const a=t[i],l=t[s],c=a.x,u=a.y,f=l.x,p=l.y;u>r!=p>r&&n<(f-c)*(r-u)/(p-u)+c&&(o=!o)}return o}function VE(e){const t=e.slice();return t.sort((n,r)=>n.x<r.x?-1:n.x>r.x?1:n.y<r.y?-1:n.y>r.y?1:0),WE(t)}function WE(e){if(e.length<=1)return e.slice();const t=[];for(let r=0;r<e.length;r++){const o=e[r];for(;t.length>=2;){const i=t[t.length-1],s=t[t.length-2];if((i.x-s.x)*(o.y-s.y)>=(i.y-s.y)*(o.x-s.x))t.pop();else break}t.push(o)}t.pop();const n=[];for(let r=e.length-1;r>=0;r--){const o=e[r];for(;n.length>=2;){const i=n[n.length-1],s=n[n.length-2];if((i.x-s.x)*(o.y-s.y)>=(i.y-s.y)*(o.x-s.x))n.pop();else break}n.push(o)}return n.pop(),t.length===1&&n.length===1&&t[0].x===n[0].x&&t[0].y===n[0].y?t:t.concat(n)}var GE=Tm,YE=Am,qE=Nm,KE=Im,XE=jm,ZE=Dm;function QE({delayDuration:e=0,...t}){return d.jsx(GE,{"data-slot":"tooltip-provider",delayDuration:e,...t})}function mu({...e}){return d.jsx(QE,{delayDuration:500,children:d.jsx(YE,{"data-slot":"tooltip",...e})})}function gu({...e}){return d.jsx(qE,{"data-slot":"tooltip-trigger",...e})}function xu({className:e,sideOffset:t=0,children:n,...r}){return d.jsx(KE,{children:d.jsxs(XE,{"data-slot":"tooltip-content",sideOffset:t,className:Ge("bg-primary text-primary-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-fit origin-(--radix-tooltip-content-transform-origin) rounded-md px-3 py-1.5 text-xs text-balance",e),...r,children:[n,d.jsx(ZE,{className:"bg-primary fill-primary z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px]"})]})})}const pl="text-[var(--color-primary-wMain)] hover:text-[var(--color-primary-text-w60)] hover:bg-[var(--color-primary-w10)] dark:text-[var(--color-primary-w20)] dark:hover:text-[var(--color-primary-text-w10)] dark:hover:bg-[var(--color-primary-w60)]",JE=dr("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-sm font-semibold transition-all disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 cursor-pointer disabled:cursor-not-allowed disabled:hover:bg-transparent dark:disabled:hover:bg-transparent",{variants:{variant:{default:"text-[var(--color-primary-text-w10)] bg-[var(--color-primary-wMain)] hover:bg-[var(--color-primary-w100)] dark:hover:bg-[var(--color-primary-w60)]",destructive:"text-[var(--color-primary-text-w10)] bg-[var(--color-error-wMain)] hover:bg-[var(--color-error-w70)]",outline:pl+" border border-1 border-[var(--color-primary-wMain)]",secondary:pl,ghost:pl,link:"underline-offset-4 hover:underline"},size:{default:"h-9 px-5 py-2 has-[>svg]:px-3",sm:"h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",lg:"h-10 rounded-md px-6 has-[>svg]:px-4",icon:"size-9"}},defaultVariants:{variant:"default",size:"default"}});function Ke({className:e,variant:t,size:n,asChild:r=!1,tooltip:o="",testid:i="",...s}){const a=r?zh:"button",l=o?{...s,"aria-label":o}:s,c=d.jsx(a,{"data-slot":"button","data-testid":i||o||s.title,className:Ge(JE({variant:t,size:n,className:e})),...l});return o?d.jsxs(mu,{children:[d.jsx(gu,{asChild:!0,children:c}),d.jsx(xu,{children:o})]}):c}/**
73
+ * @license lucide-react v0.511.0 - ISC
74
+ *
75
+ * This source code is licensed under the ISC license.
76
+ * See the LICENSE file in the root directory of this source tree.
77
+ */const eS=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),tS=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,n,r)=>r?r.toUpperCase():n.toLowerCase()),qd=e=>{const t=tS(e);return t.charAt(0).toUpperCase()+t.slice(1)},Pm=(...e)=>e.filter((t,n,r)=>!!t&&t.trim()!==""&&r.indexOf(t)===n).join(" ").trim(),nS=e=>{for(const t in e)if(t.startsWith("aria-")||t==="role"||t==="title")return!0};/**
78
+ * @license lucide-react v0.511.0 - ISC
79
+ *
80
+ * This source code is licensed under the ISC license.
81
+ * See the LICENSE file in the root directory of this source tree.
82
+ */var rS={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"};/**
83
+ * @license lucide-react v0.511.0 - ISC
84
+ *
85
+ * This source code is licensed under the ISC license.
86
+ * See the LICENSE file in the root directory of this source tree.
87
+ */const oS=m.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:o="",children:i,iconNode:s,...a},l)=>m.createElement("svg",{ref:l,...rS,width:t,height:t,stroke:e,strokeWidth:r?Number(n)*24/Number(t):n,className:Pm("lucide",o),...!i&&!nS(a)&&{"aria-hidden":"true"},...a},[...s.map(([c,u])=>m.createElement(c,u)),...Array.isArray(i)?i:[i]]));/**
88
+ * @license lucide-react v0.511.0 - ISC
89
+ *
90
+ * This source code is licensed under the ISC license.
91
+ * See the LICENSE file in the root directory of this source tree.
92
+ */const Ne=(e,t)=>{const n=m.forwardRef(({className:r,...o},i)=>m.createElement(oS,{ref:i,iconNode:t,className:Pm(`lucide-${eS(qd(e))}`,`lucide-${e}`,r),...o}));return n.displayName=qd(e),n};/**
93
+ * @license lucide-react v0.511.0 - ISC
94
+ *
95
+ * This source code is licensed under the ISC license.
96
+ * See the LICENSE file in the root directory of this source tree.
97
+ */const iS=[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]],Om=Ne("arrow-down",iS);/**
98
+ * @license lucide-react v0.511.0 - ISC
99
+ *
100
+ * This source code is licensed under the ISC license.
101
+ * See the LICENSE file in the root directory of this source tree.
102
+ */const sS=[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]],aS=Ne("arrow-left",sS);/**
103
+ * @license lucide-react v0.511.0 - ISC
104
+ *
105
+ * This source code is licensed under the ISC license.
106
+ * See the LICENSE file in the root directory of this source tree.
107
+ */const lS=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.9 4.9 14.2 14.2",key:"1m5liu"}]],cS=Ne("ban",lS);/**
108
+ * @license lucide-react v0.511.0 - ISC
109
+ *
110
+ * This source code is licensed under the ISC license.
111
+ * See the LICENSE file in the root directory of this source tree.
112
+ */const uS=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]],dS=Ne("book",uS);/**
113
+ * @license lucide-react v0.511.0 - ISC
114
+ *
115
+ * This source code is licensed under the ISC license.
116
+ * See the LICENSE file in the root directory of this source tree.
117
+ */const fS=[["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"}]],Lm=Ne("bot",fS);/**
118
+ * @license lucide-react v0.511.0 - ISC
119
+ *
120
+ * This source code is licensed under the ISC license.
121
+ * See the LICENSE file in the root directory of this source tree.
122
+ */const pS=[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",key:"hh9hay"}],["path",{d:"m3.3 7 8.7 5 8.7-5",key:"g66t2b"}],["path",{d:"M12 22V12",key:"d0xqtd"}]],Kd=Ne("box",pS);/**
123
+ * @license lucide-react v0.511.0 - ISC
124
+ *
125
+ * This source code is licensed under the ISC license.
126
+ * See the LICENSE file in the root directory of this source tree.
127
+ */const hS=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],$m=Ne("check",hS);/**
128
+ * @license lucide-react v0.511.0 - ISC
129
+ *
130
+ * This source code is licensed under the ISC license.
131
+ * See the LICENSE file in the root directory of this source tree.
132
+ */const mS=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],zm=Ne("chevron-down",mS);/**
133
+ * @license lucide-react v0.511.0 - ISC
134
+ *
135
+ * This source code is licensed under the ISC license.
136
+ * See the LICENSE file in the root directory of this source tree.
137
+ */const gS=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],xS=Ne("chevron-up",gS);/**
138
+ * @license lucide-react v0.511.0 - ISC
139
+ *
140
+ * This source code is licensed under the ISC license.
141
+ * See the LICENSE file in the root directory of this source tree.
142
+ */const vS=[["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"}]],vu=Ne("circle-alert",vS);/**
143
+ * @license lucide-react v0.511.0 - ISC
144
+ *
145
+ * This source code is licensed under the ISC license.
146
+ * See the LICENSE file in the root directory of this source tree.
147
+ */const yS=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],Fm=Ne("circle-check-big",yS);/**
148
+ * @license lucide-react v0.511.0 - ISC
149
+ *
150
+ * This source code is licensed under the ISC license.
151
+ * See the LICENSE file in the root directory of this source tree.
152
+ */const wS=[["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"}]],bS=Ne("circle-x",wS);/**
153
+ * @license lucide-react v0.511.0 - ISC
154
+ *
155
+ * This source code is licensed under the ISC license.
156
+ * See the LICENSE file in the root directory of this source tree.
157
+ */const ES=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]],SS=Ne("clock",ES);/**
158
+ * @license lucide-react v0.511.0 - ISC
159
+ *
160
+ * This source code is licensed under the ISC license.
161
+ * See the LICENSE file in the root directory of this source tree.
162
+ */const kS=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],Bm=Ne("code",kS);/**
163
+ * @license lucide-react v0.511.0 - ISC
164
+ *
165
+ * This source code is licensed under the ISC license.
166
+ * See the LICENSE file in the root directory of this source tree.
167
+ */const CS=[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]],yu=Ne("download",CS);/**
168
+ * @license lucide-react v0.511.0 - ISC
169
+ *
170
+ * This source code is licensed under the ISC license.
171
+ * See the LICENSE file in the root directory of this source tree.
172
+ */const _S=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}]],TS=Ne("ellipsis-vertical",_S);/**
173
+ * @license lucide-react v0.511.0 - ISC
174
+ *
175
+ * This source code is licensed under the ISC license.
176
+ * See the LICENSE file in the root directory of this source tree.
177
+ */const AS=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],NS=Ne("ellipsis",AS);/**
178
+ * @license lucide-react v0.511.0 - ISC
179
+ *
180
+ * This source code is licensed under the ISC license.
181
+ * See the LICENSE file in the root directory of this source tree.
182
+ */const IS=[["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"}]],Hm=Ne("eye",IS);/**
183
+ * @license lucide-react v0.511.0 - ISC
184
+ *
185
+ * This source code is licensed under the ISC license.
186
+ * See the LICENSE file in the root directory of this source tree.
187
+ */const jS=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"rslqgf"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0",key:"9f7x3i"}]],MS=Ne("file-audio",jS);/**
188
+ * @license lucide-react v0.511.0 - ISC
189
+ *
190
+ * This source code is licensed under the ISC license.
191
+ * See the LICENSE file in the root directory of this source tree.
192
+ */const RS=[["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"}]],DS=Ne("file-code",RS);/**
193
+ * @license lucide-react v0.511.0 - ISC
194
+ *
195
+ * This source code is licensed under the ISC license.
196
+ * See the LICENSE file in the root directory of this source tree.
197
+ */const PS=[["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"}],["circle",{cx:"10",cy:"12",r:"2",key:"737tya"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22",key:"wt3hpn"}]],OS=Ne("file-image",PS);/**
198
+ * @license lucide-react v0.511.0 - ISC
199
+ *
200
+ * This source code is licensed under the ISC license.
201
+ * See the LICENSE file in the root directory of this source tree.
202
+ */const LS=[["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 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",key:"1oajmo"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",key:"mpwhp6"}]],$S=Ne("file-json",LS);/**
203
+ * @license lucide-react v0.511.0 - ISC
204
+ *
205
+ * This source code is licensed under the ISC license.
206
+ * See the LICENSE file in the root directory of this source tree.
207
+ */const zS=[["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:"M8 13h2",key:"yr2amv"}],["path",{d:"M14 13h2",key:"un5t4a"}],["path",{d:"M8 17h2",key:"2yhykz"}],["path",{d:"M14 17h2",key:"10kma7"}]],FS=Ne("file-spreadsheet",zS);/**
208
+ * @license lucide-react v0.511.0 - ISC
209
+ *
210
+ * This source code is licensed under the ISC license.
211
+ * See the LICENSE file in the root directory of this source tree.
212
+ */const BS=[["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"}]],So=Ne("file-text",BS);/**
213
+ * @license lucide-react v0.511.0 - ISC
214
+ *
215
+ * This source code is licensed under the ISC license.
216
+ * See the LICENSE file in the root directory of this source tree.
217
+ */const HS=[["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"}]],Xd=Ne("file",HS);/**
218
+ * @license lucide-react v0.511.0 - ISC
219
+ *
220
+ * This source code is licensed under the ISC license.
221
+ * See the LICENSE file in the root directory of this source tree.
222
+ */const US=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]],Zd=Ne("git-merge",US);/**
223
+ * @license lucide-react v0.511.0 - ISC
224
+ *
225
+ * This source code is licensed under the ISC license.
226
+ * See the LICENSE file in the root directory of this source tree.
227
+ */const VS=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]],WS=Ne("grid-3x3",VS);/**
228
+ * @license lucide-react v0.511.0 - ISC
229
+ *
230
+ * This source code is licensed under the ISC license.
231
+ * See the LICENSE file in the root directory of this source tree.
232
+ */const GS=[["line",{x1:"22",x2:"2",y1:"12",y2:"12",key:"1y58io"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16",key:"sgf278"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16",key:"1l4acy"}]],YS=Ne("hard-drive",GS);/**
233
+ * @license lucide-react v0.511.0 - ISC
234
+ *
235
+ * This source code is licensed under the ISC license.
236
+ * See the LICENSE file in the root directory of this source tree.
237
+ */const qS=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],wu=Ne("info",qS);/**
238
+ * @license lucide-react v0.511.0 - ISC
239
+ *
240
+ * This source code is licensed under the ISC license.
241
+ * See the LICENSE file in the root directory of this source tree.
242
+ */const KS=[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4",key:"g0fldk"}],["path",{d:"m21 2-9.6 9.6",key:"1j0ho8"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5",key:"yqb3hr"}]],Qd=Ne("key",KS);/**
243
+ * @license lucide-react v0.511.0 - ISC
244
+ *
245
+ * This source code is licensed under the ISC license.
246
+ * See the LICENSE file in the root directory of this source tree.
247
+ */const XS=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]],Um=Ne("link",XS);/**
248
+ * @license lucide-react v0.511.0 - ISC
249
+ *
250
+ * This source code is licensed under the ISC license.
251
+ * See the LICENSE file in the root directory of this source tree.
252
+ */const ZS=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],bu=Ne("loader-circle",ZS);/**
253
+ * @license lucide-react v0.511.0 - ISC
254
+ *
255
+ * This source code is licensed under the ISC license.
256
+ * See the LICENSE file in the root directory of this source tree.
257
+ */const QS=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}]],JS=Ne("message-circle",QS);/**
258
+ * @license lucide-react v0.511.0 - ISC
259
+ *
260
+ * This source code is licensed under the ISC license.
261
+ * See the LICENSE file in the root directory of this source tree.
262
+ */const ek=[["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"}]],tk=Ne("message-square",ek);/**
263
+ * @license lucide-react v0.511.0 - ISC
264
+ *
265
+ * This source code is licensed under the ISC license.
266
+ * See the LICENSE file in the root directory of this source tree.
267
+ */const nk=[["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"}]],$s=Ne("network",nk);/**
268
+ * @license lucide-react v0.511.0 - ISC
269
+ *
270
+ * This source code is licensed under the ISC license.
271
+ * See the LICENSE file in the root directory of this source tree.
272
+ */const rk=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}]],Vm=Ne("panel-left",rk);/**
273
+ * @license lucide-react v0.511.0 - ISC
274
+ *
275
+ * This source code is licensed under the ISC license.
276
+ * See the LICENSE file in the root directory of this source tree.
277
+ */const ok=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]],Jd=Ne("panel-right",ok);/**
278
+ * @license lucide-react v0.511.0 - ISC
279
+ *
280
+ * This source code is licensed under the ISC license.
281
+ * See the LICENSE file in the root directory of this source tree.
282
+ */const ik=[["path",{d:"M13.234 20.252 21 12.3",key:"1cbrk9"}],["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 0 2.828 2 2 0 0 0 2.828 0l8.414-8.586a4 4 0 0 0 0-5.656 4 4 0 0 0-5.656 0l-8.415 8.585a6 6 0 1 0 8.486 8.486",key:"1pkts6"}]],Wm=Ne("paperclip",ik);/**
283
+ * @license lucide-react v0.511.0 - ISC
284
+ *
285
+ * This source code is licensed under the ISC license.
286
+ * See the LICENSE file in the root directory of this source tree.
287
+ */const sk=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"14sxne"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",key:"1hlbsb"}],["path",{d:"M16 16h5v5",key:"ccwih5"}]],Gm=Ne("refresh-ccw",sk);/**
288
+ * @license lucide-react v0.511.0 - ISC
289
+ *
290
+ * This source code is licensed under the ISC license.
291
+ * See the LICENSE file in the root directory of this source tree.
292
+ */const ak=[["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"}]],lk=Ne("refresh-cw",ak);/**
293
+ * @license lucide-react v0.511.0 - ISC
294
+ *
295
+ * This source code is licensed under the ISC license.
296
+ * See the LICENSE file in the root directory of this source tree.
297
+ */const ck=[["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"}]],uk=Ne("send",ck);/**
298
+ * @license lucide-react v0.511.0 - ISC
299
+ *
300
+ * This source code is licensed under the ISC license.
301
+ * See the LICENSE file in the root directory of this source tree.
302
+ */const dk=[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]],ef=Ne("share-2",dk);/**
303
+ * @license lucide-react v0.511.0 - ISC
304
+ *
305
+ * This source code is licensed under the ISC license.
306
+ * See the LICENSE file in the root directory of this source tree.
307
+ */const fk=[["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"}]],Ym=Ne("square-pen",fk);/**
308
+ * @license lucide-react v0.511.0 - ISC
309
+ *
310
+ * This source code is licensed under the ISC license.
311
+ * See the LICENSE file in the root directory of this source tree.
312
+ */const pk=[["path",{d:"M12 8a2.83 2.83 0 0 0 4 4 4 4 0 1 1-4-4",key:"1fu5g2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.9 4.9 1.4 1.4",key:"b9915j"}],["path",{d:"m17.7 17.7 1.4 1.4",key:"qc3ed3"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.3 17.7-1.4 1.4",key:"5gca6"}],["path",{d:"m19.1 4.9-1.4 1.4",key:"wpu9u6"}]],qm=Ne("sun-moon",pk);/**
313
+ * @license lucide-react v0.511.0 - ISC
314
+ *
315
+ * This source code is licensed under the ISC license.
316
+ * See the LICENSE file in the root directory of this source tree.
317
+ */const hk=[["path",{d:"M12 19h8",key:"baeox8"}],["path",{d:"m4 17 6-6-6-6",key:"1yngyt"}]],tf=Ne("terminal",hk);/**
318
+ * @license lucide-react v0.511.0 - ISC
319
+ *
320
+ * This source code is licensed under the ISC license.
321
+ * See the LICENSE file in the root directory of this source tree.
322
+ */const mk=[["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"}]],Km=Ne("trash",mk);/**
323
+ * @license lucide-react v0.511.0 - ISC
324
+ *
325
+ * This source code is licensed under the ISC license.
326
+ * See the LICENSE file in the root directory of this source tree.
327
+ */const gk=[["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"}]],xk=Ne("triangle-alert",gk);/**
328
+ * @license lucide-react v0.511.0 - ISC
329
+ *
330
+ * This source code is licensed under the ISC license.
331
+ * See the LICENSE file in the root directory of this source tree.
332
+ */const vk=[["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"}]],yk=Ne("user",vk);/**
333
+ * @license lucide-react v0.511.0 - ISC
334
+ *
335
+ * This source code is licensed under the ISC license.
336
+ * See the LICENSE file in the root directory of this source tree.
337
+ */const wk=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],Eu=Ne("x",wk);/**
338
+ * @license lucide-react v0.511.0 - ISC
339
+ *
340
+ * This source code is licensed under the ISC license.
341
+ * See the LICENSE file in the root directory of this source tree.
342
+ */const bk=[["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"}]],Ek=Ne("wrench",bk);/**
343
+ * @license lucide-react v0.511.0 - ISC
344
+ *
345
+ * This source code is licensed under the ISC license.
346
+ * See the LICENSE file in the root directory of this source tree.
347
+ */const Sk=[["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"}]],hl=Ne("zap",Sk),Xm=({onClick:e,text:t="View Agent Workflow"})=>d.jsx(Ke,{variant:"ghost",size:"sm",onClick:e,tooltip:t,children:d.jsx($s,{className:"h-4 w-4"})}),Zm=m.forwardRef(({className:e,...t},n)=>d.jsx("textarea",{className:Ge("flex min-h-[80px] w-full rounded-md border px-3 py-2 placeholder:opacity-75 disabled:cursor-not-allowed disabled:opacity-50",e),ref:n,...t}));Zm.displayName="Textarea";var ml={exports:{}},gl={};/**
348
+ * @license React
349
+ * use-sync-external-store-shim.production.js
350
+ *
351
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
352
+ *
353
+ * This source code is licensed under the MIT license found in the
354
+ * LICENSE file in the root directory of this source tree.
355
+ */var nf;function kk(){if(nf)return gl;nf=1;var e=ka();function t(f,p){return f===p&&(f!==0||1/f===1/p)||f!==f&&p!==p}var n=typeof Object.is=="function"?Object.is:t,r=e.useState,o=e.useEffect,i=e.useLayoutEffect,s=e.useDebugValue;function a(f,p){var h=p(),x=r({inst:{value:h,getSnapshot:p}}),g=x[0].inst,v=x[1];return i(function(){g.value=h,g.getSnapshot=p,l(g)&&v({inst:g})},[f,h,p]),o(function(){return l(g)&&v({inst:g}),f(function(){l(g)&&v({inst:g})})},[f]),s(h),h}function l(f){var p=f.getSnapshot;f=f.value;try{var h=p();return!n(f,h)}catch{return!0}}function c(f,p){return p()}var u=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?c:a;return gl.useSyncExternalStore=e.useSyncExternalStore!==void 0?e.useSyncExternalStore:u,gl}var rf;function Ck(){return rf||(rf=1,ml.exports=kk()),ml.exports}var xl="focusScope.autoFocusOnMount",vl="focusScope.autoFocusOnUnmount",of={bubbles:!1,cancelable:!0},_k="FocusScope",Ma=m.forwardRef((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:o,onUnmountAutoFocus:i,...s}=e,[a,l]=m.useState(null),c=ar(o),u=ar(i),f=m.useRef(null),p=ht(t,g=>l(g)),h=m.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;m.useEffect(()=>{if(r){let g=function(w){if(h.paused||!a)return;const S=w.target;a.contains(S)?f.current=S:tr(f.current,{select:!0})},v=function(w){if(h.paused||!a)return;const S=w.relatedTarget;S!==null&&(a.contains(S)||tr(f.current,{select:!0}))},y=function(w){if(document.activeElement===document.body)for(const E of w)E.removedNodes.length>0&&tr(a)};document.addEventListener("focusin",g),document.addEventListener("focusout",v);const b=new MutationObserver(y);return a&&b.observe(a,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",g),document.removeEventListener("focusout",v),b.disconnect()}}},[r,a,h.paused]),m.useEffect(()=>{if(a){af.add(h);const g=document.activeElement;if(!a.contains(g)){const y=new CustomEvent(xl,of);a.addEventListener(xl,c),a.dispatchEvent(y),y.defaultPrevented||(Tk(Mk(Qm(a)),{select:!0}),document.activeElement===g&&tr(a))}return()=>{a.removeEventListener(xl,c),setTimeout(()=>{const y=new CustomEvent(vl,of);a.addEventListener(vl,u),a.dispatchEvent(y),y.defaultPrevented||tr(g??document.body,{select:!0}),a.removeEventListener(vl,u),af.remove(h)},0)}}},[a,c,u,h]);const x=m.useCallback(g=>{if(!n&&!r||h.paused)return;const v=g.key==="Tab"&&!g.altKey&&!g.ctrlKey&&!g.metaKey,y=document.activeElement;if(v&&y){const b=g.currentTarget,[w,S]=Ak(b);w&&S?!g.shiftKey&&y===S?(g.preventDefault(),n&&tr(w,{select:!0})):g.shiftKey&&y===w&&(g.preventDefault(),n&&tr(S,{select:!0})):y===b&&g.preventDefault()}},[n,r,h.paused]);return d.jsx(Ze.div,{tabIndex:-1,...s,ref:p,onKeyDown:x})});Ma.displayName=_k;function Tk(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(tr(r,{select:t}),document.activeElement!==n)return}function Ak(e){const t=Qm(e),n=sf(t,e),r=sf(t.reverse(),e);return[n,r]}function Qm(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const o=r.tagName==="INPUT"&&r.type==="hidden";return r.disabled||r.hidden||o?NodeFilter.FILTER_SKIP:r.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function sf(e,t){for(const n of e)if(!Nk(n,{upTo:t}))return n}function Nk(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function Ik(e){return e instanceof HTMLInputElement&&"select"in e}function tr(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&Ik(e)&&t&&e.select()}}var af=jk();function jk(){let e=[];return{add(t){const n=e[0];t!==n&&(n==null||n.pause()),e=lf(e,t),e.unshift(t)},remove(t){var n;e=lf(e,t),(n=e[0])==null||n.resume()}}}function lf(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function Mk(e){return e.filter(t=>t.tagName!=="A")}var yl=0;function Su(){m.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??cf()),document.body.insertAdjacentElement("beforeend",e[1]??cf()),yl++,()=>{yl===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),yl--}},[])}function cf(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}var En=function(){return En=Object.assign||function(t){for(var n,r=1,o=arguments.length;r<o;r++){n=arguments[r];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t},En.apply(this,arguments)};function Jm(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var o=0,r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n}function Rk(e,t,n){if(n||arguments.length===2)for(var r=0,o=t.length,i;r<o;r++)(i||!(r in t))&&(i||(i=Array.prototype.slice.call(t,0,r)),i[r]=t[r]);return e.concat(i||Array.prototype.slice.call(t))}var zs="right-scroll-bar-position",Fs="width-before-scroll-bar",Dk="with-scroll-bars-hidden",Pk="--removed-body-scroll-bar-size";function wl(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function Ok(e,t){var n=m.useState(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var o=n.value;o!==r&&(n.value=r,n.callback(r,o))}}}})[0];return n.callback=t,n.facade}var Lk=typeof window<"u"?m.useLayoutEffect:m.useEffect,uf=new WeakMap;function $k(e,t){var n=Ok(null,function(r){return e.forEach(function(o){return wl(o,r)})});return Lk(function(){var r=uf.get(n);if(r){var o=new Set(r),i=new Set(e),s=n.current;o.forEach(function(a){i.has(a)||wl(a,null)}),i.forEach(function(a){o.has(a)||wl(a,s)})}uf.set(n,e)},[e]),n}function zk(e){return e}function Fk(e,t){t===void 0&&(t=zk);var n=[],r=!1,o={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(i){var s=t(i,r);return n.push(s),function(){n=n.filter(function(a){return a!==s})}},assignSyncMedium:function(i){for(r=!0;n.length;){var s=n;n=[],s.forEach(i)}n={push:function(a){return i(a)},filter:function(){return n}}},assignMedium:function(i){r=!0;var s=[];if(n.length){var a=n;n=[],a.forEach(i),s=n}var l=function(){var u=s;s=[],u.forEach(i)},c=function(){return Promise.resolve().then(l)};c(),n={push:function(u){s.push(u),c()},filter:function(u){return s=s.filter(u),n}}}};return o}function Bk(e){e===void 0&&(e={});var t=Fk(null);return t.options=En({async:!0,ssr:!1},e),t}var eg=function(e){var t=e.sideCar,n=Jm(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return m.createElement(r,En({},n))};eg.isSideCarExport=!0;function Hk(e,t){return e.useMedium(t),eg}var tg=Bk(),bl=function(){},Ra=m.forwardRef(function(e,t){var n=m.useRef(null),r=m.useState({onScrollCapture:bl,onWheelCapture:bl,onTouchMoveCapture:bl}),o=r[0],i=r[1],s=e.forwardProps,a=e.children,l=e.className,c=e.removeScrollBar,u=e.enabled,f=e.shards,p=e.sideCar,h=e.noRelative,x=e.noIsolation,g=e.inert,v=e.allowPinchZoom,y=e.as,b=y===void 0?"div":y,w=e.gapMode,S=Jm(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noRelative","noIsolation","inert","allowPinchZoom","as","gapMode"]),E=p,k=$k([n,t]),C=En(En({},S),o);return m.createElement(m.Fragment,null,u&&m.createElement(E,{sideCar:tg,removeScrollBar:c,shards:f,noRelative:h,noIsolation:x,inert:g,setCallbacks:i,allowPinchZoom:!!v,lockRef:n,gapMode:w}),s?m.cloneElement(m.Children.only(a),En(En({},C),{ref:k})):m.createElement(b,En({},C,{className:l,ref:k}),a))});Ra.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};Ra.classNames={fullWidth:Fs,zeroRight:zs};var Uk=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function Vk(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=Uk();return t&&e.setAttribute("nonce",t),e}function Wk(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function Gk(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var Yk=function(){var e=0,t=null;return{add:function(n){e==0&&(t=Vk())&&(Wk(t,n),Gk(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},qk=function(){var e=Yk();return function(t,n){m.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},ng=function(){var e=qk(),t=function(n){var r=n.styles,o=n.dynamic;return e(r,o),null};return t},Kk={left:0,top:0,right:0,gap:0},El=function(e){return parseInt(e||"",10)||0},Xk=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],o=t[e==="padding"?"paddingRight":"marginRight"];return[El(n),El(r),El(o)]},Zk=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return Kk;var t=Xk(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},Qk=ng(),go="data-scroll-locked",Jk=function(e,t,n,r){var o=e.left,i=e.top,s=e.right,a=e.gap;return n===void 0&&(n="margin"),`
356
+ .`.concat(Dk,` {
357
+ overflow: hidden `).concat(r,`;
358
+ padding-right: `).concat(a,"px ").concat(r,`;
359
+ }
360
+ body[`).concat(go,`] {
361
+ overflow: hidden `).concat(r,`;
362
+ overscroll-behavior: contain;
363
+ `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&`
364
+ padding-left: `.concat(o,`px;
365
+ padding-top: `).concat(i,`px;
366
+ padding-right: `).concat(s,`px;
367
+ margin-left:0;
368
+ margin-top:0;
369
+ margin-right: `).concat(a,"px ").concat(r,`;
370
+ `),n==="padding"&&"padding-right: ".concat(a,"px ").concat(r,";")].filter(Boolean).join(""),`
371
+ }
372
+
373
+ .`).concat(zs,` {
374
+ right: `).concat(a,"px ").concat(r,`;
375
+ }
376
+
377
+ .`).concat(Fs,` {
378
+ margin-right: `).concat(a,"px ").concat(r,`;
379
+ }
380
+
381
+ .`).concat(zs," .").concat(zs,` {
382
+ right: 0 `).concat(r,`;
383
+ }
384
+
385
+ .`).concat(Fs," .").concat(Fs,` {
386
+ margin-right: 0 `).concat(r,`;
387
+ }
388
+
389
+ body[`).concat(go,`] {
390
+ `).concat(Pk,": ").concat(a,`px;
391
+ }
392
+ `)},df=function(){var e=parseInt(document.body.getAttribute(go)||"0",10);return isFinite(e)?e:0},eC=function(){m.useEffect(function(){return document.body.setAttribute(go,(df()+1).toString()),function(){var e=df()-1;e<=0?document.body.removeAttribute(go):document.body.setAttribute(go,e.toString())}},[])},tC=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=r===void 0?"margin":r;eC();var i=m.useMemo(function(){return Zk(o)},[o]);return m.createElement(Qk,{styles:Jk(i,!t,o,n?"":"!important")})},uc=!1;if(typeof window<"u")try{var hs=Object.defineProperty({},"passive",{get:function(){return uc=!0,!0}});window.addEventListener("test",hs,hs),window.removeEventListener("test",hs,hs)}catch{uc=!1}var Zr=uc?{passive:!1}:!1,nC=function(e){return e.tagName==="TEXTAREA"},rg=function(e,t){if(!(e instanceof Element))return!1;var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!nC(e)&&n[t]==="visible")},rC=function(e){return rg(e,"overflowY")},oC=function(e){return rg(e,"overflowX")},ff=function(e,t){var n=t.ownerDocument,r=t;do{typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&(r=r.host);var o=og(e,r);if(o){var i=ig(e,r),s=i[1],a=i[2];if(s>a)return!0}r=r.parentNode}while(r&&r!==n.body);return!1},iC=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},sC=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},og=function(e,t){return e==="v"?rC(t):oC(t)},ig=function(e,t){return e==="v"?iC(t):sC(t)},aC=function(e,t){return e==="h"&&t==="rtl"?-1:1},lC=function(e,t,n,r,o){var i=aC(e,window.getComputedStyle(t).direction),s=i*r,a=n.target,l=t.contains(a),c=!1,u=s>0,f=0,p=0;do{if(!a)break;var h=ig(e,a),x=h[0],g=h[1],v=h[2],y=g-v-i*x;(x||y)&&og(e,a)&&(f+=y,p+=x);var b=a.parentNode;a=b&&b.nodeType===Node.DOCUMENT_FRAGMENT_NODE?b.host:b}while(!l&&a!==document.body||l&&(t.contains(a)||t===a));return(u&&Math.abs(f)<1||!u&&Math.abs(p)<1)&&(c=!0),c},ms=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},pf=function(e){return[e.deltaX,e.deltaY]},hf=function(e){return e&&"current"in e?e.current:e},cC=function(e,t){return e[0]===t[0]&&e[1]===t[1]},uC=function(e){return`
393
+ .block-interactivity-`.concat(e,` {pointer-events: none;}
394
+ .allow-interactivity-`).concat(e,` {pointer-events: all;}
395
+ `)},dC=0,Qr=[];function fC(e){var t=m.useRef([]),n=m.useRef([0,0]),r=m.useRef(),o=m.useState(dC++)[0],i=m.useState(ng)[0],s=m.useRef(e);m.useEffect(function(){s.current=e},[e]),m.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(o));var g=Rk([e.lockRef.current],(e.shards||[]).map(hf),!0).filter(Boolean);return g.forEach(function(v){return v.classList.add("allow-interactivity-".concat(o))}),function(){document.body.classList.remove("block-interactivity-".concat(o)),g.forEach(function(v){return v.classList.remove("allow-interactivity-".concat(o))})}}},[e.inert,e.lockRef.current,e.shards]);var a=m.useCallback(function(g,v){if("touches"in g&&g.touches.length===2||g.type==="wheel"&&g.ctrlKey)return!s.current.allowPinchZoom;var y=ms(g),b=n.current,w="deltaX"in g?g.deltaX:b[0]-y[0],S="deltaY"in g?g.deltaY:b[1]-y[1],E,k=g.target,C=Math.abs(w)>Math.abs(S)?"h":"v";if("touches"in g&&C==="h"&&k.type==="range")return!1;var A=ff(C,k);if(!A)return!0;if(A?E=C:(E=C==="v"?"h":"v",A=ff(C,k)),!A)return!1;if(!r.current&&"changedTouches"in g&&(w||S)&&(r.current=E),!E)return!0;var D=r.current||E;return lC(D,v,g,D==="h"?w:S)},[]),l=m.useCallback(function(g){var v=g;if(!(!Qr.length||Qr[Qr.length-1]!==i)){var y="deltaY"in v?pf(v):ms(v),b=t.current.filter(function(E){return E.name===v.type&&(E.target===v.target||v.target===E.shadowParent)&&cC(E.delta,y)})[0];if(b&&b.should){v.cancelable&&v.preventDefault();return}if(!b){var w=(s.current.shards||[]).map(hf).filter(Boolean).filter(function(E){return E.contains(v.target)}),S=w.length>0?a(v,w[0]):!s.current.noIsolation;S&&v.cancelable&&v.preventDefault()}}},[]),c=m.useCallback(function(g,v,y,b){var w={name:g,delta:v,target:y,should:b,shadowParent:pC(y)};t.current.push(w),setTimeout(function(){t.current=t.current.filter(function(S){return S!==w})},1)},[]),u=m.useCallback(function(g){n.current=ms(g),r.current=void 0},[]),f=m.useCallback(function(g){c(g.type,pf(g),g.target,a(g,e.lockRef.current))},[]),p=m.useCallback(function(g){c(g.type,ms(g),g.target,a(g,e.lockRef.current))},[]);m.useEffect(function(){return Qr.push(i),e.setCallbacks({onScrollCapture:f,onWheelCapture:f,onTouchMoveCapture:p}),document.addEventListener("wheel",l,Zr),document.addEventListener("touchmove",l,Zr),document.addEventListener("touchstart",u,Zr),function(){Qr=Qr.filter(function(g){return g!==i}),document.removeEventListener("wheel",l,Zr),document.removeEventListener("touchmove",l,Zr),document.removeEventListener("touchstart",u,Zr)}},[]);var h=e.removeScrollBar,x=e.inert;return m.createElement(m.Fragment,null,x?m.createElement(i,{styles:uC(o)}):null,h?m.createElement(tC,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function pC(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}const hC=Hk(tg,fC);var Da=m.forwardRef(function(e,t){return m.createElement(Ra,En({},e,{ref:t,sideCar:hC}))});Da.classNames=Ra.classNames;var mC=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},Jr=new WeakMap,gs=new WeakMap,xs={},Sl=0,sg=function(e){return e&&(e.host||sg(e.parentNode))},gC=function(e,t){return t.map(function(n){if(e.contains(n))return n;var r=sg(n);return r&&e.contains(r)?r:(console.error("aria-hidden",n,"in not contained inside",e,". Doing nothing"),null)}).filter(function(n){return!!n})},xC=function(e,t,n,r){var o=gC(t,Array.isArray(e)?e:[e]);xs[n]||(xs[n]=new WeakMap);var i=xs[n],s=[],a=new Set,l=new Set(o),c=function(f){!f||a.has(f)||(a.add(f),c(f.parentNode))};o.forEach(c);var u=function(f){!f||l.has(f)||Array.prototype.forEach.call(f.children,function(p){if(a.has(p))u(p);else try{var h=p.getAttribute(r),x=h!==null&&h!=="false",g=(Jr.get(p)||0)+1,v=(i.get(p)||0)+1;Jr.set(p,g),i.set(p,v),s.push(p),g===1&&x&&gs.set(p,!0),v===1&&p.setAttribute(n,"true"),x||p.setAttribute(r,"true")}catch(y){console.error("aria-hidden: cannot operate on ",p,y)}})};return u(t),a.clear(),Sl++,function(){s.forEach(function(f){var p=Jr.get(f)-1,h=i.get(f)-1;Jr.set(f,p),i.set(f,h),p||(gs.has(f)||f.removeAttribute(r),gs.delete(f)),h||f.removeAttribute(n)}),Sl--,Sl||(Jr=new WeakMap,Jr=new WeakMap,gs=new WeakMap,xs={})}},ku=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=mC(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live], script"))),xC(r,o,n,"aria-hidden")):function(){return null}},Pa="Dialog",[ag,B$]=fr(Pa),[vC,gn]=ag(Pa),lg=e=>{const{__scopeDialog:t,children:n,open:r,defaultOpen:o,onOpenChange:i,modal:s=!0}=e,a=m.useRef(null),l=m.useRef(null),[c,u]=Mr({prop:r,defaultProp:o??!1,onChange:i,caller:Pa});return d.jsx(vC,{scope:t,triggerRef:a,contentRef:l,contentId:_n(),titleId:_n(),descriptionId:_n(),open:c,onOpenChange:u,onOpenToggle:m.useCallback(()=>u(f=>!f),[u]),modal:s,children:n})};lg.displayName=Pa;var cg="DialogTrigger",yC=m.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=gn(cg,n),i=ht(t,o.triggerRef);return d.jsx(Ze.button,{type:"button","aria-haspopup":"dialog","aria-expanded":o.open,"aria-controls":o.contentId,"data-state":Tu(o.open),...r,ref:i,onClick:De(e.onClick,o.onOpenToggle)})});yC.displayName=cg;var Cu="DialogPortal",[wC,ug]=ag(Cu,{forceMount:void 0}),dg=e=>{const{__scopeDialog:t,forceMount:n,children:r,container:o}=e,i=gn(Cu,t);return d.jsx(wC,{scope:t,forceMount:n,children:m.Children.map(r,s=>d.jsx(qn,{present:n||i.open,children:d.jsx(qi,{asChild:!0,container:o,children:s})}))})};dg.displayName=Cu;var ea="DialogOverlay",fg=m.forwardRef((e,t)=>{const n=ug(ea,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,i=gn(ea,e.__scopeDialog);return i.modal?d.jsx(qn,{present:r||i.open,children:d.jsx(EC,{...o,ref:t})}):null});fg.displayName=ea;var bC=Ir("DialogOverlay.RemoveScroll"),EC=m.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=gn(ea,n);return d.jsx(Da,{as:bC,allowPinchZoom:!0,shards:[o.contentRef],children:d.jsx(Ze.div,{"data-state":Tu(o.open),...r,ref:t,style:{pointerEvents:"auto",...r.style}})})}),Rr="DialogContent",pg=m.forwardRef((e,t)=>{const n=ug(Rr,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,i=gn(Rr,e.__scopeDialog);return d.jsx(qn,{present:r||i.open,children:i.modal?d.jsx(SC,{...o,ref:t}):d.jsx(kC,{...o,ref:t})})});pg.displayName=Rr;var SC=m.forwardRef((e,t)=>{const n=gn(Rr,e.__scopeDialog),r=m.useRef(null),o=ht(t,n.contentRef,r);return m.useEffect(()=>{const i=r.current;if(i)return ku(i)},[]),d.jsx(hg,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:De(e.onCloseAutoFocus,i=>{var s;i.preventDefault(),(s=n.triggerRef.current)==null||s.focus()}),onPointerDownOutside:De(e.onPointerDownOutside,i=>{const s=i.detail.originalEvent,a=s.button===0&&s.ctrlKey===!0;(s.button===2||a)&&i.preventDefault()}),onFocusOutside:De(e.onFocusOutside,i=>i.preventDefault())})}),kC=m.forwardRef((e,t)=>{const n=gn(Rr,e.__scopeDialog),r=m.useRef(!1),o=m.useRef(!1);return d.jsx(hg,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:i=>{var s,a;(s=e.onCloseAutoFocus)==null||s.call(e,i),i.defaultPrevented||(r.current||(a=n.triggerRef.current)==null||a.focus(),i.preventDefault()),r.current=!1,o.current=!1},onInteractOutside:i=>{var l,c;(l=e.onInteractOutside)==null||l.call(e,i),i.defaultPrevented||(r.current=!0,i.detail.originalEvent.type==="pointerdown"&&(o.current=!0));const s=i.target;((c=n.triggerRef.current)==null?void 0:c.contains(s))&&i.preventDefault(),i.detail.originalEvent.type==="focusin"&&o.current&&i.preventDefault()}})}),hg=m.forwardRef((e,t)=>{const{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:o,onCloseAutoFocus:i,...s}=e,a=gn(Rr,n),l=m.useRef(null),c=ht(t,l);return Su(),d.jsxs(d.Fragment,{children:[d.jsx(Ma,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:o,onUnmountAutoFocus:i,children:d.jsx(Gi,{role:"dialog",id:a.contentId,"aria-describedby":a.descriptionId,"aria-labelledby":a.titleId,"data-state":Tu(a.open),...s,ref:c,onDismiss:()=>a.onOpenChange(!1)})}),d.jsxs(d.Fragment,{children:[d.jsx(CC,{titleId:a.titleId}),d.jsx(TC,{contentRef:l,descriptionId:a.descriptionId})]})]})}),_u="DialogTitle",mg=m.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=gn(_u,n);return d.jsx(Ze.h2,{id:o.titleId,...r,ref:t})});mg.displayName=_u;var gg="DialogDescription",xg=m.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=gn(gg,n);return d.jsx(Ze.p,{id:o.descriptionId,...r,ref:t})});xg.displayName=gg;var vg="DialogClose",yg=m.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=gn(vg,n);return d.jsx(Ze.button,{type:"button",...r,ref:t,onClick:De(e.onClick,()=>o.onOpenChange(!1))})});yg.displayName=vg;function Tu(e){return e?"open":"closed"}var wg="DialogTitleWarning",[H$,bg]=Hb(wg,{contentName:Rr,titleName:_u,docsSlug:"dialog"}),CC=({titleId:e})=>{const t=bg(wg),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
396
+
397
+ If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
398
+
399
+ For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return m.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},_C="DialogDescriptionWarning",TC=({contentRef:e,descriptionId:t})=>{const r=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${bg(_C).contentName}}.`;return m.useEffect(()=>{var i;const o=(i=e.current)==null?void 0:i.getAttribute("aria-describedby");t&&o&&(document.getElementById(t)||console.warn(r))},[r,e,t]),null},AC=lg,NC=dg,IC=fg,jC=pg,MC=mg,RC=xg,DC=yg;function Au({...e}){return d.jsx(AC,{"data-slot":"dialog",...e})}function PC({...e}){return d.jsx(NC,{"data-slot":"dialog-portal",...e})}function OC({className:e,...t}){return d.jsx(IC,{"data-slot":"dialog-overlay",className:Ge("data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50",e),...t})}function Nu({className:e,children:t,showCloseButton:n=!0,...r}){return d.jsxs(PC,{"data-slot":"dialog-portal",children:[d.jsx(OC,{}),d.jsxs(jC,{"data-slot":"dialog-content",className:Ge("bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-md border p-6 shadow-lg duration-200 sm:max-w-lg",e),...r,children:[t,n&&d.jsxs(DC,{"data-slot":"dialog-close",className:"ring-offset-background focus:ring-ring data-[state=open]:bg-accent data-[state=open]:text-muted-foreground absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",children:[d.jsx(Eu,{}),d.jsx("span",{className:"sr-only",children:"Close"})]})]})]})}function Iu({className:e,...t}){return d.jsx("div",{"data-slot":"dialog-header",className:Ge("flex flex-col gap-2 text-center sm:text-left",e),...t})}function ju({className:e,...t}){return d.jsx(MC,{"data-slot":"dialog-title",className:Ge("text-lg leading-none font-semibold",e),...t})}function Mu({className:e,...t}){return d.jsx(RC,{"data-slot":"dialog-description",className:Ge("py-4 text-sm",e),...t})}const Oa=m.createContext(null);Oa.displayName="PanelGroupContext";const St={group:"data-panel-group",groupDirection:"data-panel-group-direction",groupId:"data-panel-group-id",panel:"data-panel",panelCollapsible:"data-panel-collapsible",panelId:"data-panel-id",panelSize:"data-panel-size",resizeHandle:"data-resize-handle",resizeHandleActive:"data-resize-handle-active",resizeHandleEnabled:"data-panel-resize-handle-enabled",resizeHandleId:"data-panel-resize-handle-id",resizeHandleState:"data-resize-handle-state"},Ru=10,_r=m.useLayoutEffect,mf=Jc.useId,LC=typeof mf=="function"?mf:()=>null;let $C=0;function Du(e=null){const t=LC(),n=m.useRef(e||t||null);return n.current===null&&(n.current=""+$C++),e??n.current}function Eg({children:e,className:t="",collapsedSize:n,collapsible:r,defaultSize:o,forwardedRef:i,id:s,maxSize:a,minSize:l,onCollapse:c,onExpand:u,onResize:f,order:p,style:h,tagName:x="div",...g}){const v=m.useContext(Oa);if(v===null)throw Error("Panel components must be rendered within a PanelGroup container");const{collapsePanel:y,expandPanel:b,getPanelSize:w,getPanelStyle:S,groupId:E,isPanelCollapsed:k,reevaluatePanelConstraints:C,registerPanel:A,resizePanel:D,unregisterPanel:z}=v,$=Du(s),O=m.useRef({callbacks:{onCollapse:c,onExpand:u,onResize:f},constraints:{collapsedSize:n,collapsible:r,defaultSize:o,maxSize:a,minSize:l},id:$,idIsFromProps:s!==void 0,order:p});m.useRef({didLogMissingDefaultSizeWarning:!1}),_r(()=>{const{callbacks:_,constraints:M}=O.current,N={...M};O.current.id=$,O.current.idIsFromProps=s!==void 0,O.current.order=p,_.onCollapse=c,_.onExpand=u,_.onResize=f,M.collapsedSize=n,M.collapsible=r,M.defaultSize=o,M.maxSize=a,M.minSize=l,(N.collapsedSize!==M.collapsedSize||N.collapsible!==M.collapsible||N.maxSize!==M.maxSize||N.minSize!==M.minSize)&&C(O.current,N)}),_r(()=>{const _=O.current;return A(_),()=>{z(_)}},[p,$,A,z]),m.useImperativeHandle(i,()=>({collapse:()=>{y(O.current)},expand:_=>{b(O.current,_)},getId(){return $},getSize(){return w(O.current)},isCollapsed(){return k(O.current)},isExpanded(){return!k(O.current)},resize:_=>{D(O.current,_)}}),[y,b,w,k,$,D]);const L=S(O.current,o);return m.createElement(x,{...g,children:e,className:t,id:$,style:{...L,...h},[St.groupId]:E,[St.panel]:"",[St.panelCollapsible]:r||void 0,[St.panelId]:$,[St.panelSize]:parseFloat(""+L.flexGrow).toFixed(1)})}const Sg=m.forwardRef((e,t)=>m.createElement(Eg,{...e,forwardedRef:t}));Eg.displayName="Panel";Sg.displayName="forwardRef(Panel)";let dc=null,Bs=-1,nr=null;function zC(e,t,n){const r=(t&Ag)!==0,o=(t&Ng)!==0,i=(t&Ig)!==0,s=(t&jg)!==0;if(t){if(r)return i?"se-resize":s?"ne-resize":"e-resize";if(o)return i?"sw-resize":s?"nw-resize":"w-resize";if(i)return"s-resize";if(s)return"n-resize"}switch(e){case"horizontal":return"ew-resize";case"intersection":return"move";case"vertical":return"ns-resize"}}function FC(){nr!==null&&(document.head.removeChild(nr),dc=null,nr=null,Bs=-1)}function kl(e,t,n){var r,o;const i=zC(e,t);if(dc!==i){if(dc=i,nr===null&&(nr=document.createElement("style"),document.head.appendChild(nr)),Bs>=0){var s;(s=nr.sheet)===null||s===void 0||s.removeRule(Bs)}Bs=(r=(o=nr.sheet)===null||o===void 0?void 0:o.insertRule(`*{cursor: ${i} !important;}`))!==null&&r!==void 0?r:-1}}function kg(e){return e.type==="keydown"}function Cg(e){return e.type.startsWith("pointer")}function _g(e){return e.type.startsWith("mouse")}function La(e){if(Cg(e)){if(e.isPrimary)return{x:e.clientX,y:e.clientY}}else if(_g(e))return{x:e.clientX,y:e.clientY};return{x:1/0,y:1/0}}function BC(){if(typeof matchMedia=="function")return matchMedia("(pointer:coarse)").matches?"coarse":"fine"}function HC(e,t,n){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 UC(e,t){if(e===t)throw new Error("Cannot compare node with itself");const n={a:vf(e),b:vf(t)};let r;for(;n.a.at(-1)===n.b.at(-1);)e=n.a.pop(),t=n.b.pop(),r=e;Ue(r,"Stacking order can only be calculated for elements with a common ancestor");const o={a:xf(gf(n.a)),b:xf(gf(n.b))};if(o.a===o.b){const i=r.childNodes,s={a:n.a.at(-1),b:n.b.at(-1)};let a=i.length;for(;a--;){const l=i[a];if(l===s.a)return 1;if(l===s.b)return-1}}return Math.sign(o.a-o.b)}const VC=/\b(?:position|zIndex|opacity|transform|webkitTransform|mixBlendMode|filter|webkitFilter|isolation)\b/;function WC(e){var t;const n=getComputedStyle((t=Tg(e))!==null&&t!==void 0?t:e).display;return n==="flex"||n==="inline-flex"}function GC(e){const t=getComputedStyle(e);return!!(t.position==="fixed"||t.zIndex!=="auto"&&(t.position!=="static"||WC(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"||VC.test(t.willChange)||t.webkitOverflowScrolling==="touch")}function gf(e){let t=e.length;for(;t--;){const n=e[t];if(Ue(n,"Missing node"),GC(n))return n}return null}function xf(e){return e&&Number(getComputedStyle(e).zIndex)||0}function vf(e){const t=[];for(;e;)t.push(e),e=Tg(e);return t}function Tg(e){const{parentNode:t}=e;return t&&t instanceof ShadowRoot?t.host:t}const Ag=1,Ng=2,Ig=4,jg=8,YC=BC()==="coarse";let pn=[],xo=!1,rr=new Map,$a=new Map;const Ni=new Set;function qC(e,t,n,r,o){var i;const{ownerDocument:s}=t,a={direction:n,element:t,hitAreaMargins:r,setResizeHandlerState:o},l=(i=rr.get(s))!==null&&i!==void 0?i:0;return rr.set(s,l+1),Ni.add(a),ta(),function(){var u;$a.delete(e),Ni.delete(a);const f=(u=rr.get(s))!==null&&u!==void 0?u:1;if(rr.set(s,f-1),ta(),f===1&&rr.delete(s),pn.includes(a)){const p=pn.indexOf(a);p>=0&&pn.splice(p,1),za(),o("up",!0,null)}}}function KC(e){const{target:t}=e,{x:n,y:r}=La(e);xo=!0,Pu({target:t,x:n,y:r}),ta(),pn.length>0&&(na("down",e),za(),e.preventDefault(),Mg(t)||e.stopImmediatePropagation())}function Cl(e){const{x:t,y:n}=La(e);if(xo&&e.buttons===0&&(xo=!1,na("up",e)),!xo){const{target:r}=e;Pu({target:r,x:t,y:n})}na("move",e),za(),pn.length>0&&e.preventDefault()}function _l(e){const{target:t}=e,{x:n,y:r}=La(e);$a.clear(),xo=!1,pn.length>0&&(e.preventDefault(),Mg(t)||e.stopImmediatePropagation()),na("up",e),Pu({target:t,x:n,y:r}),za(),ta()}function Mg(e){let t=e;for(;t;){if(t.hasAttribute(St.resizeHandle))return!0;t=t.parentElement}return!1}function Pu({target:e,x:t,y:n}){pn.splice(0);let r=null;(e instanceof HTMLElement||e instanceof SVGElement)&&(r=e),Ni.forEach(o=>{const{element:i,hitAreaMargins:s}=o,a=i.getBoundingClientRect(),{bottom:l,left:c,right:u,top:f}=a,p=YC?s.coarse:s.fine;if(t>=c-p&&t<=u+p&&n>=f-p&&n<=l+p){if(r!==null&&document.contains(r)&&i!==r&&!i.contains(r)&&!r.contains(i)&&UC(r,i)>0){let x=r,g=!1;for(;x&&!x.contains(i);){if(HC(x.getBoundingClientRect(),a)){g=!0;break}x=x.parentElement}if(g)return}pn.push(o)}})}function Tl(e,t){$a.set(e,t)}function za(){let e=!1,t=!1;pn.forEach(r=>{const{direction:o}=r;o==="horizontal"?e=!0:t=!0});let n=0;$a.forEach(r=>{n|=r}),e&&t?kl("intersection",n):e?kl("horizontal",n):t?kl("vertical",n):FC()}let Al;function ta(){var e;(e=Al)===null||e===void 0||e.abort(),Al=new AbortController;const t={capture:!0,signal:Al.signal};Ni.size&&(xo?(pn.length>0&&rr.forEach((n,r)=>{const{body:o}=r;n>0&&(o.addEventListener("contextmenu",_l,t),o.addEventListener("pointerleave",Cl,t),o.addEventListener("pointermove",Cl,t))}),rr.forEach((n,r)=>{const{body:o}=r;o.addEventListener("pointerup",_l,t),o.addEventListener("pointercancel",_l,t)})):rr.forEach((n,r)=>{const{body:o}=r;n>0&&(o.addEventListener("pointerdown",KC,t),o.addEventListener("pointermove",Cl,t))}))}function na(e,t){Ni.forEach(n=>{const{setResizeHandlerState:r}=n,o=pn.includes(n);r(e,o,t)})}function XC(){const[e,t]=m.useState(0);return m.useCallback(()=>t(n=>n+1),[])}function Ue(e,t){if(!e)throw console.error(t),Error(t)}function Dr(e,t,n=Ru){return e.toFixed(n)===t.toFixed(n)?0:e>t?1:-1}function zn(e,t,n=Ru){return Dr(e,t,n)===0}function Kt(e,t,n){return Dr(e,t,n)===0}function ZC(e,t,n){if(e.length!==t.length)return!1;for(let r=0;r<e.length;r++){const o=e[r],i=t[r];if(!Kt(o,i,n))return!1}return!0}function co({panelConstraints:e,panelIndex:t,size:n}){const r=e[t];Ue(r!=null,`Panel constraints not found for index ${t}`);let{collapsedSize:o=0,collapsible:i,maxSize:s=100,minSize:a=0}=r;if(Dr(n,a)<0)if(i){const l=(o+a)/2;Dr(n,l)<0?n=o:n=a}else n=a;return n=Math.min(s,n),n=parseFloat(n.toFixed(Ru)),n}function gi({delta:e,initialLayout:t,panelConstraints:n,pivotIndices:r,prevLayout:o,trigger:i}){if(Kt(e,0))return t;const s=[...t],[a,l]=r;Ue(a!=null,"Invalid first pivot index"),Ue(l!=null,"Invalid second pivot index");let c=0;if(i==="keyboard"){{const f=e<0?l:a,p=n[f];Ue(p,`Panel constraints not found for index ${f}`);const{collapsedSize:h=0,collapsible:x,minSize:g=0}=p;if(x){const v=t[f];if(Ue(v!=null,`Previous layout not found for panel index ${f}`),Kt(v,h)){const y=g-v;Dr(y,Math.abs(e))>0&&(e=e<0?0-y:y)}}}{const f=e<0?a:l,p=n[f];Ue(p,`No panel constraints found for index ${f}`);const{collapsedSize:h=0,collapsible:x,minSize:g=0}=p;if(x){const v=t[f];if(Ue(v!=null,`Previous layout not found for panel index ${f}`),Kt(v,g)){const y=v-h;Dr(y,Math.abs(e))>0&&(e=e<0?0-y:y)}}}}{const f=e<0?1:-1;let p=e<0?l:a,h=0;for(;;){const g=t[p];Ue(g!=null,`Previous layout not found for panel index ${p}`);const y=co({panelConstraints:n,panelIndex:p,size:100})-g;if(h+=y,p+=f,p<0||p>=n.length)break}const x=Math.min(Math.abs(e),Math.abs(h));e=e<0?0-x:x}{let p=e<0?a:l;for(;p>=0&&p<n.length;){const h=Math.abs(e)-Math.abs(c),x=t[p];Ue(x!=null,`Previous layout not found for panel index ${p}`);const g=x-h,v=co({panelConstraints:n,panelIndex:p,size:g});if(!Kt(x,v)&&(c+=x-v,s[p]=v,c.toFixed(3).localeCompare(Math.abs(e).toFixed(3),void 0,{numeric:!0})>=0))break;e<0?p--:p++}}if(ZC(o,s))return o;{const f=e<0?l:a,p=t[f];Ue(p!=null,`Previous layout not found for panel index ${f}`);const h=p+c,x=co({panelConstraints:n,panelIndex:f,size:h});if(s[f]=x,!Kt(x,h)){let g=h-x,y=e<0?l:a;for(;y>=0&&y<n.length;){const b=s[y];Ue(b!=null,`Previous layout not found for panel index ${y}`);const w=b+g,S=co({panelConstraints:n,panelIndex:y,size:w});if(Kt(b,S)||(g-=S-b,s[y]=S),Kt(g,0))break;e>0?y--:y++}}}const u=s.reduce((f,p)=>p+f,0);return Kt(u,100)?s:o}function QC({layout:e,panelsArray:t,pivotIndices:n}){let r=0,o=100,i=0,s=0;const a=n[0];Ue(a!=null,"No pivot index found"),t.forEach((f,p)=>{const{constraints:h}=f,{maxSize:x=100,minSize:g=0}=h;p===a?(r=g,o=x):(i+=g,s+=x)});const l=Math.min(o,100-i),c=Math.max(r,100-s),u=e[a];return{valueMax:l,valueMin:c,valueNow:u}}function Ii(e,t=document){return Array.from(t.querySelectorAll(`[${St.resizeHandleId}][data-panel-group-id="${e}"]`))}function Rg(e,t,n=document){const o=Ii(e,n).findIndex(i=>i.getAttribute(St.resizeHandleId)===t);return o??null}function Dg(e,t,n){const r=Rg(e,t,n);return r!=null?[r,r+1]:[-1,-1]}function JC(e){return e instanceof HTMLElement?!0:typeof e=="object"&&e!==null&&"tagName"in e&&"getAttribute"in e}function Pg(e,t=document){if(JC(t)&&t.dataset.panelGroupId==e)return t;const n=t.querySelector(`[data-panel-group][data-panel-group-id="${e}"]`);return n||null}function Fa(e,t=document){const n=t.querySelector(`[${St.resizeHandleId}="${e}"]`);return n||null}function e_(e,t,n,r=document){var o,i,s,a;const l=Fa(t,r),c=Ii(e,r),u=l?c.indexOf(l):-1,f=(o=(i=n[u])===null||i===void 0?void 0:i.id)!==null&&o!==void 0?o:null,p=(s=(a=n[u+1])===null||a===void 0?void 0:a.id)!==null&&s!==void 0?s:null;return[f,p]}function t_({committedValuesRef:e,eagerValuesRef:t,groupId:n,layout:r,panelDataArray:o,panelGroupElement:i,setLayout:s}){m.useRef({didWarnAboutMissingResizeHandle:!1}),_r(()=>{if(!i)return;const a=Ii(n,i);for(let l=0;l<o.length-1;l++){const{valueMax:c,valueMin:u,valueNow:f}=QC({layout:r,panelsArray:o,pivotIndices:[l,l+1]}),p=a[l];if(p!=null){const h=o[l];Ue(h,`No panel data found for index "${l}"`),p.setAttribute("aria-controls",h.id),p.setAttribute("aria-valuemax",""+Math.round(c)),p.setAttribute("aria-valuemin",""+Math.round(u)),p.setAttribute("aria-valuenow",f!=null?""+Math.round(f):"")}}return()=>{a.forEach((l,c)=>{l.removeAttribute("aria-controls"),l.removeAttribute("aria-valuemax"),l.removeAttribute("aria-valuemin"),l.removeAttribute("aria-valuenow")})}},[n,r,o,i]),m.useEffect(()=>{if(!i)return;const a=t.current;Ue(a,"Eager values not found");const{panelDataArray:l}=a,c=Pg(n,i);Ue(c!=null,`No group found for id "${n}"`);const u=Ii(n,i);Ue(u,`No resize handles found for group id "${n}"`);const f=u.map(p=>{const h=p.getAttribute(St.resizeHandleId);Ue(h,"Resize handle element has no handle id attribute");const[x,g]=e_(n,h,l,i);if(x==null||g==null)return()=>{};const v=y=>{if(!y.defaultPrevented)switch(y.key){case"Enter":{y.preventDefault();const b=l.findIndex(w=>w.id===x);if(b>=0){const w=l[b];Ue(w,`No panel data found for index ${b}`);const S=r[b],{collapsedSize:E=0,collapsible:k,minSize:C=0}=w.constraints;if(S!=null&&k){const A=gi({delta:Kt(S,E)?C-E:E-S,initialLayout:r,panelConstraints:l.map(D=>D.constraints),pivotIndices:Dg(n,h,i),prevLayout:r,trigger:"keyboard"});r!==A&&s(A)}}break}}};return p.addEventListener("keydown",v),()=>{p.removeEventListener("keydown",v)}});return()=>{f.forEach(p=>p())}},[i,e,t,n,r,o,s])}function yf(e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}function Og(e,t){const n=e==="horizontal",{x:r,y:o}=La(t);return n?r:o}function n_(e,t,n,r,o){const i=n==="horizontal",s=Fa(t,o);Ue(s,`No resize handle element found for id "${t}"`);const a=s.getAttribute(St.groupId);Ue(a,"Resize handle element has no group id attribute");let{initialCursorPosition:l}=r;const c=Og(n,e),u=Pg(a,o);Ue(u,`No group element found for id "${a}"`);const f=u.getBoundingClientRect(),p=i?f.width:f.height;return(c-l)/p*100}function r_(e,t,n,r,o,i){if(kg(e)){const s=n==="horizontal";let a=0;e.shiftKey?a=100:o!=null?a=o:a=10;let l=0;switch(e.key){case"ArrowDown":l=s?0:a;break;case"ArrowLeft":l=s?-a:0;break;case"ArrowRight":l=s?a:0;break;case"ArrowUp":l=s?0:-a;break;case"End":l=100;break;case"Home":l=-100;break}return l}else return r==null?0:n_(e,t,n,r,i)}function o_({panelDataArray:e}){const t=Array(e.length),n=e.map(i=>i.constraints);let r=0,o=100;for(let i=0;i<e.length;i++){const s=n[i];Ue(s,`Panel constraints not found for index ${i}`);const{defaultSize:a}=s;a!=null&&(r++,t[i]=a,o-=a)}for(let i=0;i<e.length;i++){const s=n[i];Ue(s,`Panel constraints not found for index ${i}`);const{defaultSize:a}=s;if(a!=null)continue;const l=e.length-r,c=o/l;r++,t[i]=c,o-=c}return t}function eo(e,t,n){t.forEach((r,o)=>{const i=e[o];Ue(i,`Panel data not found for index ${o}`);const{callbacks:s,constraints:a,id:l}=i,{collapsedSize:c=0,collapsible:u}=a,f=n[l];if(f==null||r!==f){n[l]=r;const{onCollapse:p,onExpand:h,onResize:x}=s;x&&x(r,f),u&&(p||h)&&(h&&(f==null||zn(f,c))&&!zn(r,c)&&h(),p&&(f==null||!zn(f,c))&&zn(r,c)&&p())}})}function vs(e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!=t[n])return!1;return!0}function i_({defaultSize:e,dragState:t,layout:n,panelData:r,panelIndex:o,precision:i=3}){const s=n[o];let a;return s==null?a=e!=null?e.toFixed(i):"1":r.length===1?a="1":a=s.toFixed(i),{flexBasis:0,flexGrow:a,flexShrink:1,overflow:"hidden",pointerEvents:t!==null?"none":void 0}}function s_(e,t=10){let n=null;return(...o)=>{n!==null&&clearTimeout(n),n=setTimeout(()=>{e(...o)},t)}}function wf(e){try{if(typeof localStorage<"u")e.getItem=t=>localStorage.getItem(t),e.setItem=(t,n)=>{localStorage.setItem(t,n)};else throw new Error("localStorage not supported in this environment")}catch(t){console.error(t),e.getItem=()=>null,e.setItem=()=>{}}}function Lg(e){return`react-resizable-panels:${e}`}function $g(e){return e.map(t=>{const{constraints:n,id:r,idIsFromProps:o,order:i}=t;return o?r:i?`${i}:${JSON.stringify(n)}`:JSON.stringify(n)}).sort((t,n)=>t.localeCompare(n)).join(",")}function zg(e,t){try{const n=Lg(e),r=t.getItem(n);if(r){const o=JSON.parse(r);if(typeof o=="object"&&o!=null)return o}}catch{}return null}function a_(e,t,n){var r,o;const i=(r=zg(e,n))!==null&&r!==void 0?r:{},s=$g(t);return(o=i[s])!==null&&o!==void 0?o:null}function l_(e,t,n,r,o){var i;const s=Lg(e),a=$g(t),l=(i=zg(e,o))!==null&&i!==void 0?i:{};l[a]={expandToSizes:Object.fromEntries(n.entries()),layout:r};try{o.setItem(s,JSON.stringify(l))}catch(c){console.error(c)}}function bf({layout:e,panelConstraints:t}){const n=[...e],r=n.reduce((i,s)=>i+s,0);if(n.length!==t.length)throw Error(`Invalid ${t.length} panel layout: ${n.map(i=>`${i}%`).join(", ")}`);if(!Kt(r,100)&&n.length>0)for(let i=0;i<t.length;i++){const s=n[i];Ue(s!=null,`No layout data found for index ${i}`);const a=100/r*s;n[i]=a}let o=0;for(let i=0;i<t.length;i++){const s=n[i];Ue(s!=null,`No layout data found for index ${i}`);const a=co({panelConstraints:t,panelIndex:i,size:s});s!=a&&(o+=s-a,n[i]=a)}if(!Kt(o,0))for(let i=0;i<t.length;i++){const s=n[i];Ue(s!=null,`No layout data found for index ${i}`);const a=s+o,l=co({panelConstraints:t,panelIndex:i,size:a});if(s!==l&&(o-=l-s,n[i]=l,Kt(o,0)))break}return n}const c_=100,xi={getItem:e=>(wf(xi),xi.getItem(e)),setItem:(e,t)=>{wf(xi),xi.setItem(e,t)}},Ef={};function Fg({autoSaveId:e=null,children:t,className:n="",direction:r,forwardedRef:o,id:i=null,onLayout:s=null,keyboardResizeBy:a=null,storage:l=xi,style:c,tagName:u="div",...f}){const p=Du(i),h=m.useRef(null),[x,g]=m.useState(null),[v,y]=m.useState([]),b=XC(),w=m.useRef({}),S=m.useRef(new Map),E=m.useRef(0),k=m.useRef({autoSaveId:e,direction:r,dragState:x,id:p,keyboardResizeBy:a,onLayout:s,storage:l}),C=m.useRef({layout:v,panelDataArray:[],panelDataArrayChanged:!1});m.useRef({didLogIdAndOrderWarning:!1,didLogPanelConstraintsWarning:!1,prevPanelIds:[]}),m.useImperativeHandle(o,()=>({getId:()=>k.current.id,getLayout:()=>{const{layout:B}=C.current;return B},setLayout:B=>{const{onLayout:V}=k.current,{layout:G,panelDataArray:q}=C.current,H=bf({layout:B,panelConstraints:q.map(W=>W.constraints)});yf(G,H)||(y(H),C.current.layout=H,V&&V(H),eo(q,H,w.current))}}),[]),_r(()=>{k.current.autoSaveId=e,k.current.direction=r,k.current.dragState=x,k.current.id=p,k.current.onLayout=s,k.current.storage=l}),t_({committedValuesRef:k,eagerValuesRef:C,groupId:p,layout:v,panelDataArray:C.current.panelDataArray,setLayout:y,panelGroupElement:h.current}),m.useEffect(()=>{const{panelDataArray:B}=C.current;if(e){if(v.length===0||v.length!==B.length)return;let V=Ef[e];V==null&&(V=s_(l_,c_),Ef[e]=V);const G=[...B],q=new Map(S.current);V(e,G,q,v,l)}},[e,v,l]),m.useEffect(()=>{});const A=m.useCallback(B=>{const{onLayout:V}=k.current,{layout:G,panelDataArray:q}=C.current;if(B.constraints.collapsible){const H=q.map(re=>re.constraints),{collapsedSize:W=0,panelSize:K,pivotIndices:J}=xr(q,B,G);if(Ue(K!=null,`Panel size not found for panel "${B.id}"`),!zn(K,W)){S.current.set(B.id,K);const Z=so(q,B)===q.length-1?K-W:W-K,ne=gi({delta:Z,initialLayout:G,panelConstraints:H,pivotIndices:J,prevLayout:G,trigger:"imperative-api"});vs(G,ne)||(y(ne),C.current.layout=ne,V&&V(ne),eo(q,ne,w.current))}}},[]),D=m.useCallback((B,V)=>{const{onLayout:G}=k.current,{layout:q,panelDataArray:H}=C.current;if(B.constraints.collapsible){const W=H.map(ee=>ee.constraints),{collapsedSize:K=0,panelSize:J=0,minSize:re=0,pivotIndices:Z}=xr(H,B,q),ne=V??re;if(zn(J,K)){const ee=S.current.get(B.id),ce=ee!=null&&ee>=ne?ee:ne,Me=so(H,B)===H.length-1?J-ce:ce-J,ae=gi({delta:Me,initialLayout:q,panelConstraints:W,pivotIndices:Z,prevLayout:q,trigger:"imperative-api"});vs(q,ae)||(y(ae),C.current.layout=ae,G&&G(ae),eo(H,ae,w.current))}}},[]),z=m.useCallback(B=>{const{layout:V,panelDataArray:G}=C.current,{panelSize:q}=xr(G,B,V);return Ue(q!=null,`Panel size not found for panel "${B.id}"`),q},[]),$=m.useCallback((B,V)=>{const{panelDataArray:G}=C.current,q=so(G,B);return i_({defaultSize:V,dragState:x,layout:v,panelData:G,panelIndex:q})},[x,v]),O=m.useCallback(B=>{const{layout:V,panelDataArray:G}=C.current,{collapsedSize:q=0,collapsible:H,panelSize:W}=xr(G,B,V);return Ue(W!=null,`Panel size not found for panel "${B.id}"`),H===!0&&zn(W,q)},[]),L=m.useCallback(B=>{const{layout:V,panelDataArray:G}=C.current,{collapsedSize:q=0,collapsible:H,panelSize:W}=xr(G,B,V);return Ue(W!=null,`Panel size not found for panel "${B.id}"`),!H||Dr(W,q)>0},[]),_=m.useCallback(B=>{const{panelDataArray:V}=C.current;V.push(B),V.sort((G,q)=>{const H=G.order,W=q.order;return H==null&&W==null?0:H==null?-1:W==null?1:H-W}),C.current.panelDataArrayChanged=!0,b()},[b]);_r(()=>{if(C.current.panelDataArrayChanged){C.current.panelDataArrayChanged=!1;const{autoSaveId:B,onLayout:V,storage:G}=k.current,{layout:q,panelDataArray:H}=C.current;let W=null;if(B){const J=a_(B,H,G);J&&(S.current=new Map(Object.entries(J.expandToSizes)),W=J.layout)}W==null&&(W=o_({panelDataArray:H}));const K=bf({layout:W,panelConstraints:H.map(J=>J.constraints)});yf(q,K)||(y(K),C.current.layout=K,V&&V(K),eo(H,K,w.current))}}),_r(()=>{const B=C.current;return()=>{B.layout=[]}},[]);const M=m.useCallback(B=>{let V=!1;const G=h.current;return G&&window.getComputedStyle(G,null).getPropertyValue("direction")==="rtl"&&(V=!0),function(H){H.preventDefault();const W=h.current;if(!W)return()=>null;const{direction:K,dragState:J,id:re,keyboardResizeBy:Z,onLayout:ne}=k.current,{layout:ee,panelDataArray:ce}=C.current,{initialLayout:we}=J??{},Me=Dg(re,B,W);let ae=r_(H,B,K,J,Z,W);const _e=K==="horizontal";_e&&V&&(ae=-ae);const Xe=ce.map(et=>et.constraints),Je=gi({delta:ae,initialLayout:we??ee,panelConstraints:Xe,pivotIndices:Me,prevLayout:ee,trigger:kg(H)?"keyboard":"mouse-or-touch"}),st=!vs(ee,Je);(Cg(H)||_g(H))&&E.current!=ae&&(E.current=ae,!st&&ae!==0?_e?Tl(B,ae<0?Ag:Ng):Tl(B,ae<0?Ig:jg):Tl(B,0)),st&&(y(Je),C.current.layout=Je,ne&&ne(Je),eo(ce,Je,w.current))}},[]),N=m.useCallback((B,V)=>{const{onLayout:G}=k.current,{layout:q,panelDataArray:H}=C.current,W=H.map(ee=>ee.constraints),{panelSize:K,pivotIndices:J}=xr(H,B,q);Ue(K!=null,`Panel size not found for panel "${B.id}"`);const Z=so(H,B)===H.length-1?K-V:V-K,ne=gi({delta:Z,initialLayout:q,panelConstraints:W,pivotIndices:J,prevLayout:q,trigger:"imperative-api"});vs(q,ne)||(y(ne),C.current.layout=ne,G&&G(ne),eo(H,ne,w.current))},[]),I=m.useCallback((B,V)=>{const{layout:G,panelDataArray:q}=C.current,{collapsedSize:H=0,collapsible:W}=V,{collapsedSize:K=0,collapsible:J,maxSize:re=100,minSize:Z=0}=B.constraints,{panelSize:ne}=xr(q,B,G);ne!=null&&(W&&J&&zn(ne,H)?zn(H,K)||N(B,K):ne<Z?N(B,Z):ne>re&&N(B,re))},[N]),T=m.useCallback((B,V)=>{const{direction:G}=k.current,{layout:q}=C.current;if(!h.current)return;const H=Fa(B,h.current);Ue(H,`Drag handle element not found for id "${B}"`);const W=Og(G,V);g({dragHandleId:B,dragHandleRect:H.getBoundingClientRect(),initialCursorPosition:W,initialLayout:q})},[]),j=m.useCallback(()=>{g(null)},[]),R=m.useCallback(B=>{const{panelDataArray:V}=C.current,G=so(V,B);G>=0&&(V.splice(G,1),delete w.current[B.id],C.current.panelDataArrayChanged=!0,b())},[b]),P=m.useMemo(()=>({collapsePanel:A,direction:r,dragState:x,expandPanel:D,getPanelSize:z,getPanelStyle:$,groupId:p,isPanelCollapsed:O,isPanelExpanded:L,reevaluatePanelConstraints:I,registerPanel:_,registerResizeHandle:M,resizePanel:N,startDragging:T,stopDragging:j,unregisterPanel:R,panelGroupElement:h.current}),[A,x,r,D,z,$,p,O,L,I,_,M,N,T,j,R]),U={display:"flex",flexDirection:r==="horizontal"?"row":"column",height:"100%",overflow:"hidden",width:"100%"};return m.createElement(Oa.Provider,{value:P},m.createElement(u,{...f,children:t,className:n,id:i,ref:h,style:{...U,...c},[St.group]:"",[St.groupDirection]:r,[St.groupId]:p}))}const Bg=m.forwardRef((e,t)=>m.createElement(Fg,{...e,forwardedRef:t}));Fg.displayName="PanelGroup";Bg.displayName="forwardRef(PanelGroup)";function so(e,t){return e.findIndex(n=>n===t||n.id===t.id)}function xr(e,t,n){const r=so(e,t),i=r===e.length-1?[r-1,r]:[r,r+1],s=n[r];return{...t.constraints,panelSize:s,pivotIndices:i}}function u_({disabled:e,handleId:t,resizeHandler:n,panelGroupElement:r}){m.useEffect(()=>{if(e||n==null||r==null)return;const o=Fa(t,r);if(o==null)return;const i=s=>{if(!s.defaultPrevented)switch(s.key){case"ArrowDown":case"ArrowLeft":case"ArrowRight":case"ArrowUp":case"End":case"Home":{s.preventDefault(),n(s);break}case"F6":{s.preventDefault();const a=o.getAttribute(St.groupId);Ue(a,`No group element found for id "${a}"`);const l=Ii(a,r),c=Rg(a,t,r);Ue(c!==null,`No resize element found for id "${t}"`);const u=s.shiftKey?c>0?c-1:l.length-1:c+1<l.length?c+1:0;l[u].focus();break}}};return o.addEventListener("keydown",i),()=>{o.removeEventListener("keydown",i)}},[r,e,t,n])}function Hg({children:e=null,className:t="",disabled:n=!1,hitAreaMargins:r,id:o,onBlur:i,onClick:s,onDragging:a,onFocus:l,onPointerDown:c,onPointerUp:u,style:f={},tabIndex:p=0,tagName:h="div",...x}){var g,v;const y=m.useRef(null),b=m.useRef({onClick:s,onDragging:a,onPointerDown:c,onPointerUp:u});m.useEffect(()=>{b.current.onClick=s,b.current.onDragging=a,b.current.onPointerDown=c,b.current.onPointerUp=u});const w=m.useContext(Oa);if(w===null)throw Error("PanelResizeHandle components must be rendered within a PanelGroup container");const{direction:S,groupId:E,registerResizeHandle:k,startDragging:C,stopDragging:A,panelGroupElement:D}=w,z=Du(o),[$,O]=m.useState("inactive"),[L,_]=m.useState(!1),[M,N]=m.useState(null),I=m.useRef({state:$});_r(()=>{I.current.state=$}),m.useEffect(()=>{if(n)N(null);else{const P=k(z);N(()=>P)}},[n,z,k]);const T=(g=r==null?void 0:r.coarse)!==null&&g!==void 0?g:15,j=(v=r==null?void 0:r.fine)!==null&&v!==void 0?v:5;m.useEffect(()=>{if(n||M==null)return;const P=y.current;Ue(P,"Element ref not attached");let U=!1;return qC(z,P,S,{coarse:T,fine:j},(V,G,q)=>{if(!G){O("inactive");return}switch(V){case"down":{O("drag"),U=!1,Ue(q,'Expected event to be defined for "down" action'),C(z,q);const{onDragging:H,onPointerDown:W}=b.current;H==null||H(!0),W==null||W();break}case"move":{const{state:H}=I.current;U=!0,H!=="drag"&&O("hover"),Ue(q,'Expected event to be defined for "move" action'),M(q);break}case"up":{O("hover"),A();const{onClick:H,onDragging:W,onPointerUp:K}=b.current;W==null||W(!1),K==null||K(),U||H==null||H();break}}})},[T,S,n,j,k,z,M,C,A]),u_({disabled:n,handleId:z,resizeHandler:M,panelGroupElement:D});const R={touchAction:"none",userSelect:"none"};return m.createElement(h,{...x,children:e,className:t,id:o,onBlur:()=>{_(!1),i==null||i()},onFocus:()=>{_(!0),l==null||l()},ref:y,role:"separator",style:{...R,...f},tabIndex:p,[St.groupDirection]:S,[St.groupId]:E,[St.resizeHandle]:"",[St.resizeHandleActive]:$==="drag"?"pointer":L?"keyboard":void 0,[St.resizeHandleEnabled]:!n,[St.resizeHandleId]:z,[St.resizeHandleState]:$})}Hg.displayName="PanelResizeHandle";function d_({className:e,...t}){return d.jsx(Bg,{"data-slot":"resizable-panel-group",className:Ge("flex h-full w-full data-[panel-group-direction=vertical]:flex-col",e),...t})}function Sf({...e}){return d.jsx(Sg,{"data-slot":"resizable-panel",...e})}function f_({withHandle:e,className:t,...n}){return d.jsx(Hg,{"data-slot":"resizable-handle",className:Ge("bg-border focus-visible:ring-ring relative flex w-px items-center justify-center after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:ring-offset-1 focus-visible:outline-hidden data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:translate-x-0 data-[panel-group-direction=vertical]:after:-translate-y-1/2 [&[data-panel-group-direction=vertical]>div]:rotate-90",t),...n,children:e&&d.jsx("div",{className:"bg-border z-10 flex h-4 w-3 items-center justify-center rounded-xs border",children:d.jsx(TS,{className:"size-2.5"})})})}function p_({ref:e,anchorRef:t,onClickOutside:n,enabled:r=!0}){m.useEffect(()=>{if(!r)return;const o=i=>{const s=i.target,a=e.current&&!e.current.contains(s),l=t!=null&&t.current?!t.current.contains(s):!0;a&&l&&n()};return document.addEventListener("mousedown",o),()=>{document.removeEventListener("mousedown",o)}},[e,t,n,r])}function h_({onEscape:e,enabled:t=!0}){m.useEffect(()=>{if(!t)return;const n=r=>{r.key==="Escape"&&e()};return document.addEventListener("keydown",n),()=>{document.removeEventListener("keydown",n)}},[e,t])}const m_={x:0,y:0},nn=16,g_=["top-start","bottom-end","top-end"];function x_({anchorRef:e,placement:t="top-start",offset:n=m_,fallbackPlacements:r=g_}){const o=m.useCallback((l,c,u)=>{let f=0,p=0;switch(u){case"top":f=l.top-c.height-n.y,p=l.left+(l.width-c.width)/2+n.x;break;case"top-start":f=l.top-c.height-n.y,p=l.left+n.x;break;case"top-end":f=l.top-c.height-n.y,p=l.right-c.width-n.x;break;case"bottom":f=l.bottom+n.y,p=l.left+(l.width-c.width)/2+n.x;break;case"bottom-start":f=l.bottom+n.y,p=l.left+n.x;break;case"bottom-end":f=l.bottom+n.y,p=l.right-c.width-n.x;break;case"left":f=l.top+(l.height-c.height)/2+n.y,p=l.left-c.width-n.x;break;case"left-start":f=l.top+n.y,p=l.left-c.width-n.x;break;case"left-end":f=l.bottom-c.height-n.y,p=l.left-c.width-n.x;break;case"right":f=l.top+(l.height-c.height)/2+n.y,p=l.right+n.x;break;case"right-start":f=l.top+n.y,p=l.right+n.x;break;case"right-end":f=l.bottom-c.height-n.y,p=l.right+n.x;break}return console.log(`Calculated position for ${u}:`,{top:f,left:p}),{top:f,left:p,placement:u}},[n.x,n.y]),i=m.useCallback((l,c)=>{const u={width:window.innerWidth,height:window.innerHeight};return l.left<nn||l.top<nn||l.left+c.width>u.width-nn||l.top+c.height>u.height-nn},[]),s=m.useCallback(l=>{if(!e.current){const x={width:window.innerWidth,height:window.innerHeight};return{top:x.height/2-100,left:x.width/2-100,placement:t}}const c=e.current.getBoundingClientRect(),u=l.getBoundingClientRect(),f=o(c,u,t);if(!i(f,u))return f;for(const x of r){const g=o(c,u,x);if(!i(g,u))return g}const p={width:window.innerWidth,height:window.innerHeight},h={...f};return h.left<nn?h.left=nn:h.left+u.width>p.width-nn&&(h.left=p.width-u.width-nn),h.top<nn?h.top=nn:h.top+u.height>p.height-nn&&(h.top=p.height-u.height-nn),h},[e,t,r,o,i]);return{getPositionStyle:m.useCallback(l=>{const c=s(l);return{position:"fixed",top:c.top,left:c.left,zIndex:1e3}},[s]),getOptimalPosition:s}}function v_({defaultWidth:e,minWidth:t,maxWidth:n,position:r="left",onWidthChange:o}){const[i,s]=m.useState(e),[a,l]=m.useState(!1),c=m.useRef(0),u=m.useRef(e),f=m.useCallback(y=>{y.preventDefault(),l(!0),c.current=y.clientX,u.current=i},[i]),p=m.useCallback(y=>{if(!a)return;const b=y.clientX-c.current,w=r==="right"?-b:b,S=Math.min(Math.max(u.current+w,t),n);s(S),o==null||o(S)},[a,t,n,r,o]),h=m.useCallback(()=>{l(!1)},[]),x=m.useCallback(y=>{y.preventDefault(),l(!0),c.current=y.touches[0].clientX,u.current=i},[i]),g=m.useCallback(y=>{if(!a)return;const b=y.touches[0].clientX-c.current,w=r==="right"?-b:b,S=Math.min(Math.max(u.current+w,t),n);s(S),o==null||o(S)},[a,t,n,r,o]),v=m.useCallback(()=>{l(!1)},[]);return m.useEffect(()=>{if(a)return document.addEventListener("mousemove",p),document.addEventListener("mouseup",h),document.addEventListener("touchmove",g),document.addEventListener("touchend",v),document.body.style.userSelect="none",document.body.style.cursor="col-resize",()=>{document.removeEventListener("mousemove",p),document.removeEventListener("mouseup",h),document.removeEventListener("touchmove",g),document.removeEventListener("touchend",v),document.body.style.userSelect="",document.body.style.cursor=""}},[a,p,h,g,v]),{width:i,isResizing:a,handleMouseDown:f,handleTouchStart:x,setWidth:s}}const y_=m.forwardRef(({children:e,defaultWidth:t=300,minWidth:n=200,maxWidth:r=800,position:o="left",resizable:i=!0,className:s,onWidthChange:a,...l},c)=>{const{width:u,isResizing:f,handleMouseDown:p,handleTouchStart:h}=v_({defaultWidth:t,minWidth:n,maxWidth:r,position:o,onWidthChange:a}),x={width:`${u}px`},g=o==="left"?"right-0":"left-0";return d.jsxs("div",{ref:c,className:Ge("relative h-full flex-shrink-0 cursor-pointer",o==="left"?"border-r":"border-l",s),style:x,...l,children:[d.jsx("div",{className:Ge("h-full overflow-x-hidden overflow-y-auto"),children:e}),i&&d.jsx("div",{className:Ge("group absolute top-0 bottom-0 w-2",g,"cursor-col-resize","hover:bg-[var(--color-primary-wMain)]","transition-all duration-200",f&&"bg-[var(--color-primary-wMain)]"),onMouseDown:p,onTouchStart:h,role:"separator","aria-orientation":"vertical","aria-label":`Resize ${o} panel`,tabIndex:0,onKeyDown:y=>{if(y.key==="ArrowLeft"||y.key==="ArrowRight"){y.preventDefault();const b=y.key==="ArrowRight"?10:-10,w=o==="right"?-b:b,S=Math.min(Math.max(u+w,n),r);a==null||a(S)}},children:d.jsx("div",{className:Ge("absolute inset-y-0 left-1/2 w-0.5 -translate-x-1/2 transform","bg-[var(--color-secondary-w40)] dark:bg-[var(--color-secondary-w70)]","group-hover:bg-[var(--color-primary-wMain)]","transition-colors duration-200",f&&"bg-[var(--color-primary-wMain)]")})})]})});y_.displayName="SidePanel";const Ug=m.createContext(null),Vg=m.createContext(void 0),Wg=m.createContext(null),Gg=m.createContext(null),Yg=m.createContext(void 0),qg=m.createContext(null);function Wo(){const e=m.useContext(Wg);if(e===null)throw new Error("useConfig must be used within a ConfigProvider");return e}const w_="https://solace.com/a2a/extensions/display-name",b_="https://solace.com/a2a/extensions/peer-agent-topology",E_="https://solace.com/a2a/extensions/sam/tools",S_=e=>{var o,i,s,a;let t,n,r;if((o=e.capabilities)!=null&&o.extensions){const l=e.capabilities.extensions.find(f=>f.uri===w_);(i=l==null?void 0:l.params)!=null&&i.display_name&&(t=l.params.display_name);const c=e.capabilities.extensions.find(f=>f.uri===b_);(s=c==null?void 0:c.params)!=null&&s.peer_agent_names&&(n=c.params.peer_agent_names);const u=e.capabilities.extensions.find(f=>f.uri===E_);(a=u==null?void 0:u.params)!=null&&a.tools&&(r=u.params.tools)}return{...e,display_name:t,peer_agents:n||[],tools:r||[]}},k_=()=>{const{configServerUrl:e}=Wo(),[t,n]=m.useState([]),[r,o]=m.useState(!0),[i,s]=m.useState(null),a=`${e}/api/v1`,l=m.useCallback(async()=>{o(!0),s(null);try{const c=await Ct(`${a}/agents`,{credentials:"include"});if(!c.ok){const p=await c.json().catch(()=>({message:`Failed to fetch agents: ${c.statusText}`}));throw new Error(p.message||`Failed to fetch agents: ${c.statusText}`)}const f=(await c.json()).map(S_);n(f)}catch(c){console.error("Error fetching agents:",c),s(c instanceof Error?c.message:"Could not load agent information."),n([])}finally{o(!1)}},[a]);return m.useEffect(()=>{l()},[l]),{agents:t,isLoading:r,error:i,refetch:l}},C_=()=>{const{configServerUrl:e}=Wo(),[t,n]=m.useState([]),[r,o]=m.useState(!0),[i,s]=m.useState(null),a=`${e}/api/v1`,l=m.useCallback(async()=>{o(!0),s(null);try{const c=await Ct(`${a}/artifacts/`,{credentials:"include"});if(!c.ok){const f=await c.json().catch(()=>({message:`Failed to fetch artifacts. ${c.statusText}`}));throw new Error(f.message||`Failed to fetch artifacts. ${c.statusText}`)}const u=await c.json();n(u)}catch(c){const u=c instanceof Error?c.message:"Failed to fetch artifacts.";s(u),n([])}finally{o(!1)}},[a]);return m.useEffect(()=>{l()},[l]),{artifacts:t,isLoading:r,error:i,refetch:l}},__=()=>{const e=m.useContext(Ug);if(!e)throw new Error("useAuth must be used within an AuthProvider");return e},Nt=()=>{const e=m.useContext(Vg);if(e===void 0)throw new Error("useChatContext must be used within a ChatProvider");return e};function T_(){const{messages:e}=Nt(),t=m.useCallback(n=>{if(!(e.length<=1))return n.preventDefault(),"Are you sure you want to leave? Your chat history will be lost."},[e.length]);m.useEffect(()=>(window.addEventListener("beforeunload",t),()=>{window.removeEventListener("beforeunload",t)}),[t])}function Kg(){const e=m.useContext(Gg);if(!e)throw new Error("useCsrf must be used within a CsrfProvider");return e}function A_(e,t){const[n,r]=m.useState(e);return m.useEffect(()=>{const o=setTimeout(()=>{r(e)},t);return()=>{clearTimeout(o)}},[e,t]),n}const N_=async(e,t)=>{const n=await Ct(`${e}/api/v1/artifacts/${encodeURIComponent(t.filename)}`,{credentials:"include"});if(!n.ok)throw new Error(`Failed to download artifact: ${t.filename}. Status: ${n.status}`);const r=await n.blob();Jh(r,t.filename)},Xg=()=>{const{configServerUrl:e}=Wo(),{addNotification:t}=Nt();return{onDownload:async r=>{try{await N_(e,r),t(`Downloaded artifact: ${r.filename}.`)}catch{t(`Failed to download artifact: ${r.filename}.`,"error")}}}},I_=({onFilesDropped:e,fileFilter:t,disabled:n=!1})=>{const[r,o]=m.useState(!1),i=m.useRef(0),s=m.useCallback(u=>{n||(u.preventDefault(),u.stopPropagation(),i.current=(i.current||0)+1,u.dataTransfer.types.includes("Files")&&o(!0))},[n,i]),a=m.useCallback(u=>{n||(u.preventDefault(),u.stopPropagation(),u.dataTransfer.types.includes("Files")&&(u.dataTransfer.dropEffect="copy"))},[n]),l=m.useCallback(u=>{n||(u.preventDefault(),u.stopPropagation(),i.current=(i.current||0)-1,i.current===0&&o(!1))},[n,i]),c=m.useCallback(u=>{if(n||(u.preventDefault(),u.stopPropagation(),o(!1),i.current=0,!u.dataTransfer.files||u.dataTransfer.files.length===0))return;const f=Array.from(u.dataTransfer.files),p=t?f.filter(t):f;p.length!==0&&e(p)},[n,i,t,e]);return{isDragging:r,handleDragEnter:s,handleDragOver:a,handleDragLeave:l,handleDrop:c}},Zg=()=>{const{messages:e}=Nt();return m.useMemo(()=>{const t=e.find(n=>n.isUser?n.parts.some(r=>r.kind==="text"&&r.text.trim()):!1);if(t){const r=t.parts.filter(o=>o.kind==="text").map(o=>o.text).join(" ").trim();if(r)return r.length>100?`${r.substring(0,100)}...`:r}return"New Chat"},[e])},Ou=()=>{const e=m.useContext(Yg);if(e===void 0)throw new Error("useTaskContext must be used within a TaskProvider");return e};function Qg(){const e=m.useContext(qg);if(e===null)throw new Error("useThemeContext must be used within a ThemeProvider");return e}m.createContext(null);function Jg(e){const t=e+"CollectionProvider",[n,r]=fr(t),[o,i]=n(t,{collectionRef:{current:null},itemMap:new Map}),s=g=>{const{scope:v,children:y}=g,b=cn.useRef(null),w=cn.useRef(new Map).current;return d.jsx(o,{scope:v,itemMap:w,collectionRef:b,children:y})};s.displayName=t;const a=e+"CollectionSlot",l=Ir(a),c=cn.forwardRef((g,v)=>{const{scope:y,children:b}=g,w=i(a,y),S=ht(v,w.collectionRef);return d.jsx(l,{ref:S,children:b})});c.displayName=a;const u=e+"CollectionItemSlot",f="data-radix-collection-item",p=Ir(u),h=cn.forwardRef((g,v)=>{const{scope:y,children:b,...w}=g,S=cn.useRef(null),E=ht(v,S),k=i(u,y);return cn.useEffect(()=>(k.itemMap.set(S,{ref:S,...w}),()=>void k.itemMap.delete(S))),d.jsx(p,{[f]:"",ref:E,children:b})});h.displayName=u;function x(g){const v=i(e+"CollectionConsumer",g);return cn.useCallback(()=>{const b=v.collectionRef.current;if(!b)return[];const w=Array.from(b.querySelectorAll(`[${f}]`));return Array.from(v.itemMap.values()).sort((k,C)=>w.indexOf(k.ref.current)-w.indexOf(C.ref.current))},[v.collectionRef,v.itemMap])}return[{Provider:s,Slot:c,ItemSlot:h},x,r]}var j_=m.createContext(void 0);function Lu(e){const t=m.useContext(j_);return e||t||"ltr"}const $u=m.forwardRef(({actions:e,className:t,...n},r)=>{const o=(s,a)=>{(s.key==="Enter"||s.key===" ")&&(s.preventDefault(),a.onClick())},i=(s,a)=>{var c,u,f,p,h;const l=(c=s.currentTarget.parentElement)==null?void 0:c.querySelectorAll('[role="menuitem"]');if(l)switch(s.key){case"ArrowDown":{s.preventDefault();const x=(a+1)%l.length;(u=l[x])==null||u.focus();break}case"ArrowUp":{s.preventDefault();const x=(a-1+l.length)%l.length;(f=l[x])==null||f.focus();break}case"Home":s.preventDefault(),(p=l[0])==null||p.focus();break;case"End":s.preventDefault(),(h=l[l.length-1])==null||h.focus();break;case"Escape":s.preventDefault(),s.currentTarget.blur();break}};return d.jsx("div",{ref:r,role:"menu",className:Ge("min-w-[8rem] overflow-hidden",t),...n,children:e.map((s,a)=>d.jsxs(m.Fragment,{children:[s.divider&&a>0&&d.jsx("div",{className:"my-1 h-px bg-[var(--color-secondary-w40)] dark:bg-[var(--color-secondary-w70)]"}),d.jsxs("div",{role:"menuitem",tabIndex:0,className:Ge("relative flex cursor-pointer items-center gap-2 px-3 py-1.5 my-1.5 text-sm transition-colors select-none","data-[disabled]:pointer-events-none data-[disabled]:opacity-50","hover:bg-[var(--color-primary-w10)] hover:text-[var(--color-primary-text-w60)] dark:hover:bg-[var(--color-primary-w60)] dark:hover:text-[var(--color-primary-text-w10)]"),onClick:s.onClick,onKeyDown:l=>{o(l,s),i(l,a)},children:[s.icon&&s.iconPosition!=="right"&&d.jsx("span",{className:"flex h-4 w-4 items-center justify-center",children:s.icon}),d.jsx("span",{className:"flex-1",children:s.label}),s.icon&&s.iconPosition==="right"&&d.jsx("span",{className:"flex h-4 w-4 items-center justify-center",children:s.icon})]})]},s.id))})});$u.displayName="Menu";var Ba="Popover",[e0,U$]=fr(Ba,[Vo]),Xi=Vo(),[M_,pr]=e0(Ba),t0=e=>{const{__scopePopover:t,children:n,open:r,defaultOpen:o,onOpenChange:i,modal:s=!1}=e,a=Xi(t),l=m.useRef(null),[c,u]=m.useState(!1),[f,p]=Mr({prop:r,defaultProp:o??!1,onChange:i,caller:Ba});return d.jsx(uu,{...a,children:d.jsx(M_,{scope:t,contentId:_n(),triggerRef:l,open:f,onOpenChange:p,onOpenToggle:m.useCallback(()=>p(h=>!h),[p]),hasCustomAnchor:c,onCustomAnchorAdd:m.useCallback(()=>u(!0),[]),onCustomAnchorRemove:m.useCallback(()=>u(!1),[]),modal:s,children:n})})};t0.displayName=Ba;var n0="PopoverAnchor",R_=m.forwardRef((e,t)=>{const{__scopePopover:n,...r}=e,o=pr(n0,n),i=Xi(n),{onCustomAnchorAdd:s,onCustomAnchorRemove:a}=o;return m.useEffect(()=>(s(),()=>a()),[s,a]),d.jsx(Na,{...i,...r,ref:t})});R_.displayName=n0;var r0="PopoverTrigger",o0=m.forwardRef((e,t)=>{const{__scopePopover:n,...r}=e,o=pr(r0,n),i=Xi(n),s=ht(t,o.triggerRef),a=d.jsx(Ze.button,{type:"button","aria-haspopup":"dialog","aria-expanded":o.open,"aria-controls":o.contentId,"data-state":c0(o.open),...r,ref:s,onClick:De(e.onClick,o.onOpenToggle)});return o.hasCustomAnchor?a:d.jsx(Na,{asChild:!0,...i,children:a})});o0.displayName=r0;var zu="PopoverPortal",[D_,P_]=e0(zu,{forceMount:void 0}),i0=e=>{const{__scopePopover:t,forceMount:n,children:r,container:o}=e,i=pr(zu,t);return d.jsx(D_,{scope:t,forceMount:n,children:d.jsx(qn,{present:n||i.open,children:d.jsx(qi,{asChild:!0,container:o,children:r})})})};i0.displayName=zu;var ko="PopoverContent",s0=m.forwardRef((e,t)=>{const n=P_(ko,e.__scopePopover),{forceMount:r=n.forceMount,...o}=e,i=pr(ko,e.__scopePopover);return d.jsx(qn,{present:r||i.open,children:i.modal?d.jsx(L_,{...o,ref:t}):d.jsx($_,{...o,ref:t})})});s0.displayName=ko;var O_=Ir("PopoverContent.RemoveScroll"),L_=m.forwardRef((e,t)=>{const n=pr(ko,e.__scopePopover),r=m.useRef(null),o=ht(t,r),i=m.useRef(!1);return m.useEffect(()=>{const s=r.current;if(s)return ku(s)},[]),d.jsx(Da,{as:O_,allowPinchZoom:!0,children:d.jsx(a0,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:De(e.onCloseAutoFocus,s=>{var a;s.preventDefault(),i.current||(a=n.triggerRef.current)==null||a.focus()}),onPointerDownOutside:De(e.onPointerDownOutside,s=>{const a=s.detail.originalEvent,l=a.button===0&&a.ctrlKey===!0,c=a.button===2||l;i.current=c},{checkForDefaultPrevented:!1}),onFocusOutside:De(e.onFocusOutside,s=>s.preventDefault(),{checkForDefaultPrevented:!1})})})}),$_=m.forwardRef((e,t)=>{const n=pr(ko,e.__scopePopover),r=m.useRef(!1),o=m.useRef(!1);return d.jsx(a0,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:i=>{var s,a;(s=e.onCloseAutoFocus)==null||s.call(e,i),i.defaultPrevented||(r.current||(a=n.triggerRef.current)==null||a.focus(),i.preventDefault()),r.current=!1,o.current=!1},onInteractOutside:i=>{var l,c;(l=e.onInteractOutside)==null||l.call(e,i),i.defaultPrevented||(r.current=!0,i.detail.originalEvent.type==="pointerdown"&&(o.current=!0));const s=i.target;((c=n.triggerRef.current)==null?void 0:c.contains(s))&&i.preventDefault(),i.detail.originalEvent.type==="focusin"&&o.current&&i.preventDefault()}})}),a0=m.forwardRef((e,t)=>{const{__scopePopover:n,trapFocus:r,onOpenAutoFocus:o,onCloseAutoFocus:i,disableOutsidePointerEvents:s,onEscapeKeyDown:a,onPointerDownOutside:l,onFocusOutside:c,onInteractOutside:u,...f}=e,p=pr(ko,n),h=Xi(n);return Su(),d.jsx(Ma,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:o,onUnmountAutoFocus:i,children:d.jsx(Gi,{asChild:!0,disableOutsidePointerEvents:s,onInteractOutside:u,onEscapeKeyDown:a,onPointerDownOutside:l,onFocusOutside:c,onDismiss:()=>p.onOpenChange(!1),children:d.jsx(du,{"data-state":c0(p.open),role:"dialog",id:p.contentId,...h,...f,ref:t,style:{...f.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}})})})}),l0="PopoverClose",z_=m.forwardRef((e,t)=>{const{__scopePopover:n,...r}=e,o=pr(l0,n);return d.jsx(Ze.button,{type:"button",...r,ref:t,onClick:De(e.onClick,()=>o.onOpenChange(!1))})});z_.displayName=l0;var F_="PopoverArrow",B_=m.forwardRef((e,t)=>{const{__scopePopover:n,...r}=e,o=Xi(n);return d.jsx(fu,{...o,...r,ref:t})});B_.displayName=F_;function c0(e){return e?"open":"closed"}var H_=t0,U_=o0,V_=i0,W_=s0;function u0({...e}){return d.jsx(H_,{"data-slot":"popover",...e})}function d0({...e}){return d.jsx(U_,{"data-slot":"popover-trigger",...e})}function f0({className:e,align:t="center",sideOffset:n=4,...r}){return d.jsx(V_,{children:d.jsx(W_,{"data-slot":"popover-content",align:t,sideOffset:n,className:Ge("data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-auto origin-(--radix-popover-content-transform-origin) bg-background rounded-sm border px-0 py-1 shadow-sm outline-hidden",e),...r})})}function G_({isOpen:e,onClose:t,anchorRef:n,children:r,placement:o="bottom-start",offset:i,className:s,closeOnClickOutside:a=!0,closeOnEscape:l=!0,portal:c=!0,animationDuration:u=150,fallbackPlacements:f}){const p=m.useRef(null),[h,x]=m.useState({}),[g,v]=m.useState(!1);p_({ref:p,anchorRef:n,onClickOutside:t,enabled:e&&a}),h_({onEscape:t,enabled:e&&l});const{getPositionStyle:y}=x_({anchorRef:n,placement:o,offset:i,fallbackPlacements:f});if(m.useEffect(()=>{e&&p.current?(v(!1),requestAnimationFrame(()=>{if(p.current){const w=y(p.current);x(w),v(!0)}})):v(!1)},[e,y]),!e)return null;const b=d.jsx("div",{ref:p,role:"dialog","aria-modal":"false",className:Ge("bg-background min-w-[8rem] overflow-hidden border shadow-md",s),style:{...h,opacity:e&&g?1:0,transform:`scale(${e&&g?1:.95})`,transition:`opacity ${u}ms ease-in-out, transform ${u}ms ease-in-out`,pointerEvents:e&&g?"auto":"none",visibility:g?"visible":"hidden"},children:r});return c?Bo.createPortal(b,document.body):b}function kf(e,[t,n]){return Math.min(n,Math.max(t,e))}function Y_(e){const t=m.useRef({value:e,previous:e});return m.useMemo(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}var q_=[" ","Enter","ArrowUp","ArrowDown"],K_=[" ","Enter"],Pr="Select",[Ha,Ua,X_]=Jg(Pr),[Go,V$]=fr(Pr,[X_,Vo]),Va=Vo(),[Z_,hr]=Go(Pr),[Q_,J_]=Go(Pr),p0=e=>{const{__scopeSelect:t,children:n,open:r,defaultOpen:o,onOpenChange:i,value:s,defaultValue:a,onValueChange:l,dir:c,name:u,autoComplete:f,disabled:p,required:h,form:x}=e,g=Va(t),[v,y]=m.useState(null),[b,w]=m.useState(null),[S,E]=m.useState(!1),k=Lu(c),[C,A]=Mr({prop:r,defaultProp:o??!1,onChange:i,caller:Pr}),[D,z]=Mr({prop:s,defaultProp:a,onChange:l,caller:Pr}),$=m.useRef(null),O=v?x||!!v.closest("form"):!0,[L,_]=m.useState(new Set),M=Array.from(L).map(N=>N.props.value).join(";");return d.jsx(uu,{...g,children:d.jsxs(Z_,{required:h,scope:t,trigger:v,onTriggerChange:y,valueNode:b,onValueNodeChange:w,valueNodeHasChildren:S,onValueNodeHasChildrenChange:E,contentId:_n(),value:D,onValueChange:z,open:C,onOpenChange:A,dir:k,triggerPointerDownPosRef:$,disabled:p,children:[d.jsx(Ha.Provider,{scope:t,children:d.jsx(Q_,{scope:e.__scopeSelect,onNativeOptionAdd:m.useCallback(N=>{_(I=>new Set(I).add(N))},[]),onNativeOptionRemove:m.useCallback(N=>{_(I=>{const T=new Set(I);return T.delete(N),T})},[]),children:n})}),O?d.jsxs(P0,{"aria-hidden":!0,required:h,tabIndex:-1,name:u,autoComplete:f,value:D,onChange:N=>z(N.target.value),disabled:p,form:x,children:[D===void 0?d.jsx("option",{value:""}):null,Array.from(L)]},M):null]})})};p0.displayName=Pr;var h0="SelectTrigger",m0=m.forwardRef((e,t)=>{const{__scopeSelect:n,disabled:r=!1,...o}=e,i=Va(n),s=hr(h0,n),a=s.disabled||r,l=ht(t,s.onTriggerChange),c=Ua(n),u=m.useRef("touch"),[f,p,h]=L0(g=>{const v=c().filter(w=>!w.disabled),y=v.find(w=>w.value===s.value),b=$0(v,g,y);b!==void 0&&s.onValueChange(b.value)}),x=g=>{a||(s.onOpenChange(!0),h()),g&&(s.triggerPointerDownPosRef.current={x:Math.round(g.pageX),y:Math.round(g.pageY)})};return d.jsx(Na,{asChild:!0,...i,children:d.jsx(Ze.button,{type:"button",role:"combobox","aria-controls":s.contentId,"aria-expanded":s.open,"aria-required":s.required,"aria-autocomplete":"none",dir:s.dir,"data-state":s.open?"open":"closed",disabled:a,"data-disabled":a?"":void 0,"data-placeholder":O0(s.value)?"":void 0,...o,ref:l,onClick:De(o.onClick,g=>{g.currentTarget.focus(),u.current!=="mouse"&&x(g)}),onPointerDown:De(o.onPointerDown,g=>{u.current=g.pointerType;const v=g.target;v.hasPointerCapture(g.pointerId)&&v.releasePointerCapture(g.pointerId),g.button===0&&g.ctrlKey===!1&&g.pointerType==="mouse"&&(x(g),g.preventDefault())}),onKeyDown:De(o.onKeyDown,g=>{const v=f.current!=="";!(g.ctrlKey||g.altKey||g.metaKey)&&g.key.length===1&&p(g.key),!(v&&g.key===" ")&&q_.includes(g.key)&&(x(),g.preventDefault())})})})});m0.displayName=h0;var g0="SelectValue",x0=m.forwardRef((e,t)=>{const{__scopeSelect:n,className:r,style:o,children:i,placeholder:s="",...a}=e,l=hr(g0,n),{onValueNodeHasChildrenChange:c}=l,u=i!==void 0,f=ht(t,l.onValueNodeChange);return zt(()=>{c(u)},[c,u]),d.jsx(Ze.span,{...a,ref:f,style:{pointerEvents:"none"},children:O0(l.value)?d.jsx(d.Fragment,{children:s}):i})});x0.displayName=g0;var eT="SelectIcon",v0=m.forwardRef((e,t)=>{const{__scopeSelect:n,children:r,...o}=e;return d.jsx(Ze.span,{"aria-hidden":!0,...o,ref:t,children:r||"▼"})});v0.displayName=eT;var tT="SelectPortal",y0=e=>d.jsx(qi,{asChild:!0,...e});y0.displayName=tT;var Or="SelectContent",w0=m.forwardRef((e,t)=>{const n=hr(Or,e.__scopeSelect),[r,o]=m.useState();if(zt(()=>{o(new DocumentFragment)},[]),!n.open){const i=r;return i?Bo.createPortal(d.jsx(b0,{scope:e.__scopeSelect,children:d.jsx(Ha.Slot,{scope:e.__scopeSelect,children:d.jsx("div",{children:e.children})})}),i):null}return d.jsx(E0,{...e,ref:t})});w0.displayName=Or;var an=10,[b0,mr]=Go(Or),nT="SelectContentImpl",rT=Ir("SelectContent.RemoveScroll"),E0=m.forwardRef((e,t)=>{const{__scopeSelect:n,position:r="item-aligned",onCloseAutoFocus:o,onEscapeKeyDown:i,onPointerDownOutside:s,side:a,sideOffset:l,align:c,alignOffset:u,arrowPadding:f,collisionBoundary:p,collisionPadding:h,sticky:x,hideWhenDetached:g,avoidCollisions:v,...y}=e,b=hr(Or,n),[w,S]=m.useState(null),[E,k]=m.useState(null),C=ht(t,H=>S(H)),[A,D]=m.useState(null),[z,$]=m.useState(null),O=Ua(n),[L,_]=m.useState(!1),M=m.useRef(!1);m.useEffect(()=>{if(w)return ku(w)},[w]),Su();const N=m.useCallback(H=>{const[W,...K]=O().map(Z=>Z.ref.current),[J]=K.slice(-1),re=document.activeElement;for(const Z of H)if(Z===re||(Z==null||Z.scrollIntoView({block:"nearest"}),Z===W&&E&&(E.scrollTop=0),Z===J&&E&&(E.scrollTop=E.scrollHeight),Z==null||Z.focus(),document.activeElement!==re))return},[O,E]),I=m.useCallback(()=>N([A,w]),[N,A,w]);m.useEffect(()=>{L&&I()},[L,I]);const{onOpenChange:T,triggerPointerDownPosRef:j}=b;m.useEffect(()=>{if(w){let H={x:0,y:0};const W=J=>{var re,Z;H={x:Math.abs(Math.round(J.pageX)-(((re=j.current)==null?void 0:re.x)??0)),y:Math.abs(Math.round(J.pageY)-(((Z=j.current)==null?void 0:Z.y)??0))}},K=J=>{H.x<=10&&H.y<=10?J.preventDefault():w.contains(J.target)||T(!1),document.removeEventListener("pointermove",W),j.current=null};return j.current!==null&&(document.addEventListener("pointermove",W),document.addEventListener("pointerup",K,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",W),document.removeEventListener("pointerup",K,{capture:!0})}}},[w,T,j]),m.useEffect(()=>{const H=()=>T(!1);return window.addEventListener("blur",H),window.addEventListener("resize",H),()=>{window.removeEventListener("blur",H),window.removeEventListener("resize",H)}},[T]);const[R,P]=L0(H=>{const W=O().filter(re=>!re.disabled),K=W.find(re=>re.ref.current===document.activeElement),J=$0(W,H,K);J&&setTimeout(()=>J.ref.current.focus())}),U=m.useCallback((H,W,K)=>{const J=!M.current&&!K;(b.value!==void 0&&b.value===W||J)&&(D(H),J&&(M.current=!0))},[b.value]),B=m.useCallback(()=>w==null?void 0:w.focus(),[w]),V=m.useCallback((H,W,K)=>{const J=!M.current&&!K;(b.value!==void 0&&b.value===W||J)&&$(H)},[b.value]),G=r==="popper"?fc:S0,q=G===fc?{side:a,sideOffset:l,align:c,alignOffset:u,arrowPadding:f,collisionBoundary:p,collisionPadding:h,sticky:x,hideWhenDetached:g,avoidCollisions:v}:{};return d.jsx(b0,{scope:n,content:w,viewport:E,onViewportChange:k,itemRefCallback:U,selectedItem:A,onItemLeave:B,itemTextRefCallback:V,focusSelectedItem:I,selectedItemText:z,position:r,isPositioned:L,searchRef:R,children:d.jsx(Da,{as:rT,allowPinchZoom:!0,children:d.jsx(Ma,{asChild:!0,trapped:b.open,onMountAutoFocus:H=>{H.preventDefault()},onUnmountAutoFocus:De(o,H=>{var W;(W=b.trigger)==null||W.focus({preventScroll:!0}),H.preventDefault()}),children:d.jsx(Gi,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:i,onPointerDownOutside:s,onFocusOutside:H=>H.preventDefault(),onDismiss:()=>b.onOpenChange(!1),children:d.jsx(G,{role:"listbox",id:b.contentId,"data-state":b.open?"open":"closed",dir:b.dir,onContextMenu:H=>H.preventDefault(),...y,...q,onPlaced:()=>_(!0),ref:C,style:{display:"flex",flexDirection:"column",outline:"none",...y.style},onKeyDown:De(y.onKeyDown,H=>{const W=H.ctrlKey||H.altKey||H.metaKey;if(H.key==="Tab"&&H.preventDefault(),!W&&H.key.length===1&&P(H.key),["ArrowUp","ArrowDown","Home","End"].includes(H.key)){let J=O().filter(re=>!re.disabled).map(re=>re.ref.current);if(["ArrowUp","End"].includes(H.key)&&(J=J.slice().reverse()),["ArrowUp","ArrowDown"].includes(H.key)){const re=H.target,Z=J.indexOf(re);J=J.slice(Z+1)}setTimeout(()=>N(J)),H.preventDefault()}})})})})})})});E0.displayName=nT;var oT="SelectItemAlignedPosition",S0=m.forwardRef((e,t)=>{const{__scopeSelect:n,onPlaced:r,...o}=e,i=hr(Or,n),s=mr(Or,n),[a,l]=m.useState(null),[c,u]=m.useState(null),f=ht(t,C=>u(C)),p=Ua(n),h=m.useRef(!1),x=m.useRef(!0),{viewport:g,selectedItem:v,selectedItemText:y,focusSelectedItem:b}=s,w=m.useCallback(()=>{if(i.trigger&&i.valueNode&&a&&c&&g&&v&&y){const C=i.trigger.getBoundingClientRect(),A=c.getBoundingClientRect(),D=i.valueNode.getBoundingClientRect(),z=y.getBoundingClientRect();if(i.dir!=="rtl"){const re=z.left-A.left,Z=D.left-re,ne=C.left-Z,ee=C.width+ne,ce=Math.max(ee,A.width),we=window.innerWidth-an,Me=kf(Z,[an,Math.max(an,we-ce)]);a.style.minWidth=ee+"px",a.style.left=Me+"px"}else{const re=A.right-z.right,Z=window.innerWidth-D.right-re,ne=window.innerWidth-C.right-Z,ee=C.width+ne,ce=Math.max(ee,A.width),we=window.innerWidth-an,Me=kf(Z,[an,Math.max(an,we-ce)]);a.style.minWidth=ee+"px",a.style.right=Me+"px"}const $=p(),O=window.innerHeight-an*2,L=g.scrollHeight,_=window.getComputedStyle(c),M=parseInt(_.borderTopWidth,10),N=parseInt(_.paddingTop,10),I=parseInt(_.borderBottomWidth,10),T=parseInt(_.paddingBottom,10),j=M+N+L+T+I,R=Math.min(v.offsetHeight*5,j),P=window.getComputedStyle(g),U=parseInt(P.paddingTop,10),B=parseInt(P.paddingBottom,10),V=C.top+C.height/2-an,G=O-V,q=v.offsetHeight/2,H=v.offsetTop+q,W=M+N+H,K=j-W;if(W<=V){const re=$.length>0&&v===$[$.length-1].ref.current;a.style.bottom="0px";const Z=c.clientHeight-g.offsetTop-g.offsetHeight,ne=Math.max(G,q+(re?B:0)+Z+I),ee=W+ne;a.style.height=ee+"px"}else{const re=$.length>0&&v===$[0].ref.current;a.style.top="0px";const ne=Math.max(V,M+g.offsetTop+(re?U:0)+q)+K;a.style.height=ne+"px",g.scrollTop=W-V+g.offsetTop}a.style.margin=`${an}px 0`,a.style.minHeight=R+"px",a.style.maxHeight=O+"px",r==null||r(),requestAnimationFrame(()=>h.current=!0)}},[p,i.trigger,i.valueNode,a,c,g,v,y,i.dir,r]);zt(()=>w(),[w]);const[S,E]=m.useState();zt(()=>{c&&E(window.getComputedStyle(c).zIndex)},[c]);const k=m.useCallback(C=>{C&&x.current===!0&&(w(),b==null||b(),x.current=!1)},[w,b]);return d.jsx(sT,{scope:n,contentWrapper:a,shouldExpandOnScrollRef:h,onScrollButtonChange:k,children:d.jsx("div",{ref:l,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:S},children:d.jsx(Ze.div,{...o,ref:f,style:{boxSizing:"border-box",maxHeight:"100%",...o.style}})})})});S0.displayName=oT;var iT="SelectPopperPosition",fc=m.forwardRef((e,t)=>{const{__scopeSelect:n,align:r="start",collisionPadding:o=an,...i}=e,s=Va(n);return d.jsx(du,{...s,...i,ref:t,align:r,collisionPadding:o,style:{boxSizing:"border-box",...i.style,"--radix-select-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-select-content-available-width":"var(--radix-popper-available-width)","--radix-select-content-available-height":"var(--radix-popper-available-height)","--radix-select-trigger-width":"var(--radix-popper-anchor-width)","--radix-select-trigger-height":"var(--radix-popper-anchor-height)"}})});fc.displayName=iT;var[sT,Fu]=Go(Or,{}),pc="SelectViewport",k0=m.forwardRef((e,t)=>{const{__scopeSelect:n,nonce:r,...o}=e,i=mr(pc,n),s=Fu(pc,n),a=ht(t,i.onViewportChange),l=m.useRef(0);return d.jsxs(d.Fragment,{children:[d.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-select-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-select-viewport]::-webkit-scrollbar{display:none}"},nonce:r}),d.jsx(Ha.Slot,{scope:n,children:d.jsx(Ze.div,{"data-radix-select-viewport":"",role:"presentation",...o,ref:a,style:{position:"relative",flex:1,overflow:"hidden auto",...o.style},onScroll:De(o.onScroll,c=>{const u=c.currentTarget,{contentWrapper:f,shouldExpandOnScrollRef:p}=s;if(p!=null&&p.current&&f){const h=Math.abs(l.current-u.scrollTop);if(h>0){const x=window.innerHeight-an*2,g=parseFloat(f.style.minHeight),v=parseFloat(f.style.height),y=Math.max(g,v);if(y<x){const b=y+h,w=Math.min(x,b),S=b-w;f.style.height=w+"px",f.style.bottom==="0px"&&(u.scrollTop=S>0?S:0,f.style.justifyContent="flex-end")}}}l.current=u.scrollTop})})})]})});k0.displayName=pc;var C0="SelectGroup",[aT,lT]=Go(C0),cT=m.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=_n();return d.jsx(aT,{scope:n,id:o,children:d.jsx(Ze.div,{role:"group","aria-labelledby":o,...r,ref:t})})});cT.displayName=C0;var _0="SelectLabel",uT=m.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=lT(_0,n);return d.jsx(Ze.div,{id:o.id,...r,ref:t})});uT.displayName=_0;var ra="SelectItem",[dT,T0]=Go(ra),A0=m.forwardRef((e,t)=>{const{__scopeSelect:n,value:r,disabled:o=!1,textValue:i,...s}=e,a=hr(ra,n),l=mr(ra,n),c=a.value===r,[u,f]=m.useState(i??""),[p,h]=m.useState(!1),x=ht(t,b=>{var w;return(w=l.itemRefCallback)==null?void 0:w.call(l,b,r,o)}),g=_n(),v=m.useRef("touch"),y=()=>{o||(a.onValueChange(r),a.onOpenChange(!1))};if(r==="")throw new Error("A <Select.Item /> must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder.");return d.jsx(dT,{scope:n,value:r,disabled:o,textId:g,isSelected:c,onItemTextChange:m.useCallback(b=>{f(w=>w||((b==null?void 0:b.textContent)??"").trim())},[]),children:d.jsx(Ha.ItemSlot,{scope:n,value:r,disabled:o,textValue:u,children:d.jsx(Ze.div,{role:"option","aria-labelledby":g,"data-highlighted":p?"":void 0,"aria-selected":c&&p,"data-state":c?"checked":"unchecked","aria-disabled":o||void 0,"data-disabled":o?"":void 0,tabIndex:o?void 0:-1,...s,ref:x,onFocus:De(s.onFocus,()=>h(!0)),onBlur:De(s.onBlur,()=>h(!1)),onClick:De(s.onClick,()=>{v.current!=="mouse"&&y()}),onPointerUp:De(s.onPointerUp,()=>{v.current==="mouse"&&y()}),onPointerDown:De(s.onPointerDown,b=>{v.current=b.pointerType}),onPointerMove:De(s.onPointerMove,b=>{var w;v.current=b.pointerType,o?(w=l.onItemLeave)==null||w.call(l):v.current==="mouse"&&b.currentTarget.focus({preventScroll:!0})}),onPointerLeave:De(s.onPointerLeave,b=>{var w;b.currentTarget===document.activeElement&&((w=l.onItemLeave)==null||w.call(l))}),onKeyDown:De(s.onKeyDown,b=>{var S;((S=l.searchRef)==null?void 0:S.current)!==""&&b.key===" "||(K_.includes(b.key)&&y(),b.key===" "&&b.preventDefault())})})})})});A0.displayName=ra;var vi="SelectItemText",N0=m.forwardRef((e,t)=>{const{__scopeSelect:n,className:r,style:o,...i}=e,s=hr(vi,n),a=mr(vi,n),l=T0(vi,n),c=J_(vi,n),[u,f]=m.useState(null),p=ht(t,y=>f(y),l.onItemTextChange,y=>{var b;return(b=a.itemTextRefCallback)==null?void 0:b.call(a,y,l.value,l.disabled)}),h=u==null?void 0:u.textContent,x=m.useMemo(()=>d.jsx("option",{value:l.value,disabled:l.disabled,children:h},l.value),[l.disabled,l.value,h]),{onNativeOptionAdd:g,onNativeOptionRemove:v}=c;return zt(()=>(g(x),()=>v(x)),[g,v,x]),d.jsxs(d.Fragment,{children:[d.jsx(Ze.span,{id:l.textId,...i,ref:p}),l.isSelected&&s.valueNode&&!s.valueNodeHasChildren?Bo.createPortal(i.children,s.valueNode):null]})});N0.displayName=vi;var I0="SelectItemIndicator",j0=m.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e;return T0(I0,n).isSelected?d.jsx(Ze.span,{"aria-hidden":!0,...r,ref:t}):null});j0.displayName=I0;var hc="SelectScrollUpButton",M0=m.forwardRef((e,t)=>{const n=mr(hc,e.__scopeSelect),r=Fu(hc,e.__scopeSelect),[o,i]=m.useState(!1),s=ht(t,r.onScrollButtonChange);return zt(()=>{if(n.viewport&&n.isPositioned){let a=function(){const c=l.scrollTop>0;i(c)};const l=n.viewport;return a(),l.addEventListener("scroll",a),()=>l.removeEventListener("scroll",a)}},[n.viewport,n.isPositioned]),o?d.jsx(D0,{...e,ref:s,onAutoScroll:()=>{const{viewport:a,selectedItem:l}=n;a&&l&&(a.scrollTop=a.scrollTop-l.offsetHeight)}}):null});M0.displayName=hc;var mc="SelectScrollDownButton",R0=m.forwardRef((e,t)=>{const n=mr(mc,e.__scopeSelect),r=Fu(mc,e.__scopeSelect),[o,i]=m.useState(!1),s=ht(t,r.onScrollButtonChange);return zt(()=>{if(n.viewport&&n.isPositioned){let a=function(){const c=l.scrollHeight-l.clientHeight,u=Math.ceil(l.scrollTop)<c;i(u)};const l=n.viewport;return a(),l.addEventListener("scroll",a),()=>l.removeEventListener("scroll",a)}},[n.viewport,n.isPositioned]),o?d.jsx(D0,{...e,ref:s,onAutoScroll:()=>{const{viewport:a,selectedItem:l}=n;a&&l&&(a.scrollTop=a.scrollTop+l.offsetHeight)}}):null});R0.displayName=mc;var D0=m.forwardRef((e,t)=>{const{__scopeSelect:n,onAutoScroll:r,...o}=e,i=mr("SelectScrollButton",n),s=m.useRef(null),a=Ua(n),l=m.useCallback(()=>{s.current!==null&&(window.clearInterval(s.current),s.current=null)},[]);return m.useEffect(()=>()=>l(),[l]),zt(()=>{var u;const c=a().find(f=>f.ref.current===document.activeElement);(u=c==null?void 0:c.ref.current)==null||u.scrollIntoView({block:"nearest"})},[a]),d.jsx(Ze.div,{"aria-hidden":!0,...o,ref:t,style:{flexShrink:0,...o.style},onPointerDown:De(o.onPointerDown,()=>{s.current===null&&(s.current=window.setInterval(r,50))}),onPointerMove:De(o.onPointerMove,()=>{var c;(c=i.onItemLeave)==null||c.call(i),s.current===null&&(s.current=window.setInterval(r,50))}),onPointerLeave:De(o.onPointerLeave,()=>{l()})})}),fT="SelectSeparator",pT=m.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e;return d.jsx(Ze.div,{"aria-hidden":!0,...r,ref:t})});pT.displayName=fT;var gc="SelectArrow",hT=m.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=Va(n),i=hr(gc,n),s=mr(gc,n);return i.open&&s.position==="popper"?d.jsx(fu,{...o,...r,ref:t}):null});hT.displayName=gc;var mT="SelectBubbleInput",P0=m.forwardRef(({__scopeSelect:e,value:t,...n},r)=>{const o=m.useRef(null),i=ht(r,o),s=Y_(t);return m.useEffect(()=>{const a=o.current;if(!a)return;const l=window.HTMLSelectElement.prototype,u=Object.getOwnPropertyDescriptor(l,"value").set;if(s!==t&&u){const f=new Event("change",{bubbles:!0});u.call(a,t),a.dispatchEvent(f)}},[s,t]),d.jsx(Ze.select,{...n,style:{...km,...n.style},ref:i,defaultValue:t})});P0.displayName=mT;function O0(e){return e===""||e===void 0}function L0(e){const t=ar(e),n=m.useRef(""),r=m.useRef(0),o=m.useCallback(s=>{const a=n.current+s;t(a),(function l(c){n.current=c,window.clearTimeout(r.current),c!==""&&(r.current=window.setTimeout(()=>l(""),1e3))})(a)},[t]),i=m.useCallback(()=>{n.current="",window.clearTimeout(r.current)},[]);return m.useEffect(()=>()=>window.clearTimeout(r.current),[]),[n,o,i]}function $0(e,t,n){const o=t.length>1&&Array.from(t).every(c=>c===t[0])?t[0]:t,i=n?e.indexOf(n):-1;let s=gT(e,Math.max(i,0));o.length===1&&(s=s.filter(c=>c!==n));const l=s.find(c=>c.textValue.toLowerCase().startsWith(o.toLowerCase()));return l!==n?l:void 0}function gT(e,t){return e.map((n,r)=>e[(t+r)%e.length])}var xT=p0,vT=m0,yT=x0,wT=v0,bT=y0,ET=w0,ST=k0,kT=A0,CT=N0,_T=j0,TT=M0,AT=R0;function z0({...e}){return d.jsx(xT,{"data-slot":"select",...e})}function F0({...e}){return d.jsx(yT,{"data-slot":"select-value",...e})}function B0({className:e,size:t="default",children:n,...r}){return d.jsxs(vT,{"data-slot":"select-trigger","data-size":t,className:Ge("flex w-fit items-center justify-between gap-2 border px-3 py-2 text-sm whitespace-nowrap shadow-xs disabled:cursor-not-allowed disabled:opacity-50 data-[size=default]:h-9 data-[size=sm]:h-8 *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-2 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",e),...r,children:[n,d.jsx(wT,{asChild:!0,children:d.jsx(zm,{className:"size-4 opacity-50"})})]})}function H0({className:e,children:t,position:n="popper",...r}){return d.jsx(bT,{children:d.jsxs(ET,{"data-slot":"select-content",className:Ge("data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 bg-background relative z-50 max-h-(--radix-select-content-available-height) min-w-[8rem] origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border",n==="popper"&&"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",e),position:n,...r,children:[d.jsx(NT,{}),d.jsx(ST,{className:Ge("p-1",n==="popper"&&"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)] scroll-my-1"),children:t}),d.jsx(IT,{})]})})}function U0({className:e,children:t,...n}){return d.jsxs(kT,{"data-slot":"select-item",className:Ge("[&_svg:not([class*='text-'])]:text-muted-foreground relative flex w-full cursor-default items-center gap-2 py-1.5 pr-8 pl-2 text-sm select-none 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 hover:bg-[var(--color-primary-w10)] hover:text-[var(--color-primary-text-w60)] dark:hover:bg-[var(--color-primary-w60)] dark:hover:text-[var(--color-primary-text-w10)]",e),...n,children:[d.jsx("span",{className:"absolute right-2 flex size-3.5 items-center justify-center",children:d.jsx(_T,{children:d.jsx($m,{className:"size-4"})})}),d.jsx(CT,{children:t})]})}function NT({className:e,...t}){return d.jsx(TT,{"data-slot":"select-scroll-up-button",className:Ge("flex cursor-default items-center justify-center py-1",e),...t,children:d.jsx(xS,{className:"size-4"})})}function IT({className:e,...t}){return d.jsx(AT,{"data-slot":"select-scroll-down-button",className:Ge("flex cursor-default items-center justify-center py-1",e),...t,children:d.jsx(zm,{className:"size-4"})})}var Nl="rovingFocusGroup.onEntryFocus",jT={bubbles:!1,cancelable:!0},Zi="RovingFocusGroup",[xc,V0,MT]=Jg(Zi),[RT,W0]=fr(Zi,[MT]),[DT,PT]=RT(Zi),G0=m.forwardRef((e,t)=>d.jsx(xc.Provider,{scope:e.__scopeRovingFocusGroup,children:d.jsx(xc.Slot,{scope:e.__scopeRovingFocusGroup,children:d.jsx(OT,{...e,ref:t})})}));G0.displayName=Zi;var OT=m.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:o=!1,dir:i,currentTabStopId:s,defaultCurrentTabStopId:a,onCurrentTabStopIdChange:l,onEntryFocus:c,preventScrollOnEntryFocus:u=!1,...f}=e,p=m.useRef(null),h=ht(t,p),x=Lu(i),[g,v]=Mr({prop:s,defaultProp:a??null,onChange:l,caller:Zi}),[y,b]=m.useState(!1),w=ar(c),S=V0(n),E=m.useRef(!1),[k,C]=m.useState(0);return m.useEffect(()=>{const A=p.current;if(A)return A.addEventListener(Nl,w),()=>A.removeEventListener(Nl,w)},[w]),d.jsx(DT,{scope:n,orientation:r,dir:x,loop:o,currentTabStopId:g,onItemFocus:m.useCallback(A=>v(A),[v]),onItemShiftTab:m.useCallback(()=>b(!0),[]),onFocusableItemAdd:m.useCallback(()=>C(A=>A+1),[]),onFocusableItemRemove:m.useCallback(()=>C(A=>A-1),[]),children:d.jsx(Ze.div,{tabIndex:y||k===0?-1:0,"data-orientation":r,...f,ref:h,style:{outline:"none",...e.style},onMouseDown:De(e.onMouseDown,()=>{E.current=!0}),onFocus:De(e.onFocus,A=>{const D=!E.current;if(A.target===A.currentTarget&&D&&!y){const z=new CustomEvent(Nl,jT);if(A.currentTarget.dispatchEvent(z),!z.defaultPrevented){const $=S().filter(N=>N.focusable),O=$.find(N=>N.active),L=$.find(N=>N.id===g),M=[O,L,...$].filter(Boolean).map(N=>N.ref.current);K0(M,u)}}E.current=!1}),onBlur:De(e.onBlur,()=>b(!1))})})}),Y0="RovingFocusGroupItem",q0=m.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:o=!1,tabStopId:i,children:s,...a}=e,l=_n(),c=i||l,u=PT(Y0,n),f=u.currentTabStopId===c,p=V0(n),{onFocusableItemAdd:h,onFocusableItemRemove:x,currentTabStopId:g}=u;return m.useEffect(()=>{if(r)return h(),()=>x()},[r,h,x]),d.jsx(xc.ItemSlot,{scope:n,id:c,focusable:r,active:o,children:d.jsx(Ze.span,{tabIndex:f?0:-1,"data-orientation":u.orientation,...a,ref:t,onMouseDown:De(e.onMouseDown,v=>{r?u.onItemFocus(c):v.preventDefault()}),onFocus:De(e.onFocus,()=>u.onItemFocus(c)),onKeyDown:De(e.onKeyDown,v=>{if(v.key==="Tab"&&v.shiftKey){u.onItemShiftTab();return}if(v.target!==v.currentTarget)return;const y=zT(v,u.orientation,u.dir);if(y!==void 0){if(v.metaKey||v.ctrlKey||v.altKey||v.shiftKey)return;v.preventDefault();let w=p().filter(S=>S.focusable).map(S=>S.ref.current);if(y==="last")w.reverse();else if(y==="prev"||y==="next"){y==="prev"&&w.reverse();const S=w.indexOf(v.currentTarget);w=u.loop?FT(w,S+1):w.slice(S+1)}setTimeout(()=>K0(w))}}),children:typeof s=="function"?s({isCurrentTabStop:f,hasTabStop:g!=null}):s})})});q0.displayName=Y0;var LT={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function $T(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function zT(e,t,n){const r=$T(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(r))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(r)))return LT[r]}function K0(e,t=!1){const n=document.activeElement;for(const r of e)if(r===n||(r.focus({preventScroll:t}),document.activeElement!==n))return}function FT(e,t){return e.map((n,r)=>e[(t+r)%e.length])}var BT=G0,HT=q0,Wa="Tabs",[UT,W$]=fr(Wa,[W0]),X0=W0(),[VT,Bu]=UT(Wa),Z0=m.forwardRef((e,t)=>{const{__scopeTabs:n,value:r,onValueChange:o,defaultValue:i,orientation:s="horizontal",dir:a,activationMode:l="automatic",...c}=e,u=Lu(a),[f,p]=Mr({prop:r,onChange:o,defaultProp:i??"",caller:Wa});return d.jsx(VT,{scope:n,baseId:_n(),value:f,onValueChange:p,orientation:s,dir:u,activationMode:l,children:d.jsx(Ze.div,{dir:u,"data-orientation":s,...c,ref:t})})});Z0.displayName=Wa;var Q0="TabsList",J0=m.forwardRef((e,t)=>{const{__scopeTabs:n,loop:r=!0,...o}=e,i=Bu(Q0,n),s=X0(n);return d.jsx(BT,{asChild:!0,...s,orientation:i.orientation,dir:i.dir,loop:r,children:d.jsx(Ze.div,{role:"tablist","aria-orientation":i.orientation,...o,ref:t})})});J0.displayName=Q0;var ex="TabsTrigger",tx=m.forwardRef((e,t)=>{const{__scopeTabs:n,value:r,disabled:o=!1,...i}=e,s=Bu(ex,n),a=X0(n),l=ox(s.baseId,r),c=ix(s.baseId,r),u=r===s.value;return d.jsx(HT,{asChild:!0,...a,focusable:!o,active:u,children:d.jsx(Ze.button,{type:"button",role:"tab","aria-selected":u,"aria-controls":c,"data-state":u?"active":"inactive","data-disabled":o?"":void 0,disabled:o,id:l,...i,ref:t,onMouseDown:De(e.onMouseDown,f=>{!o&&f.button===0&&f.ctrlKey===!1?s.onValueChange(r):f.preventDefault()}),onKeyDown:De(e.onKeyDown,f=>{[" ","Enter"].includes(f.key)&&s.onValueChange(r)}),onFocus:De(e.onFocus,()=>{const f=s.activationMode!=="manual";!u&&!o&&f&&s.onValueChange(r)})})})});tx.displayName=ex;var nx="TabsContent",rx=m.forwardRef((e,t)=>{const{__scopeTabs:n,value:r,forceMount:o,children:i,...s}=e,a=Bu(nx,n),l=ox(a.baseId,r),c=ix(a.baseId,r),u=r===a.value,f=m.useRef(u);return m.useEffect(()=>{const p=requestAnimationFrame(()=>f.current=!1);return()=>cancelAnimationFrame(p)},[]),d.jsx(qn,{present:o||u,children:({present:p})=>d.jsx(Ze.div,{"data-state":u?"active":"inactive","data-orientation":a.orientation,role:"tabpanel","aria-labelledby":l,hidden:!p,id:c,tabIndex:0,...s,ref:t,style:{...e.style,animationDuration:f.current?"0s":void 0},children:p&&i})})});rx.displayName=nx;function ox(e,t){return`${e}-trigger-${t}`}function ix(e,t){return`${e}-content-${t}`}var WT=Z0,GT=J0,YT=tx,qT=rx;function KT({className:e,...t}){return d.jsx(WT,{"data-slot":"tabs",className:Ge("flex flex-col gap-2",e),...t})}function XT({className:e,...t}){return d.jsx(GT,{"data-slot":"tabs-list",className:Ge("bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-lg p-[3px]",e),...t})}function Cf({className:e,...t}){return d.jsx(YT,{"data-slot":"tabs-trigger","data-testid":t.value,"aria-label":t.value,title:t.title,className:Ge("data-[state=active]:bg-background dark:data-[state=active]:border-input dark:data-[state=active]:bg-input/30 focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:outline-ring text-foreground dark:text-muted-foreground inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border border-transparent px-2 py-1 text-sm font-medium whitespace-nowrap transition-[color,box-shadow,background-color] hover:bg-[var(--color-brand-w10)] focus-visible:ring-[3px] focus-visible:outline-1 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:text-[var(--color-brand-wMain)] data-[state=active]:shadow-sm dark:hover:bg-[var(--color-brand-wMain30)] dark:data-[state=active]:text-[var(--color-brand-wMain)] [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",e),...t})}function _f({className:e,...t}){return d.jsx(qT,{"data-slot":"tabs-content",className:Ge("flex-1 outline-none",e),...t})}const sx=m.forwardRef(({className:e,...t},n)=>d.jsx(Zm,{autoComplete:"off",ref:n,name:"message","data-testid":"chat-input",className:Ge("flex w-full items-center rounded-md px-4 py-3 placeholder:text-[var(--color-secondary-wMain)] disabled:cursor-not-allowed disabled:opacity-50",e),...t}));sx.displayName="ChatInput";const ZT=dr("flex gap-2 max-w-[90%] items-end relative group",{variants:{variant:{received:"self-start",sent:"self-end flex-row-reverse"},layout:{default:"",ai:"max-w-full w-full items-center"}},defaultVariants:{variant:"received",layout:"default"}}),ax=m.forwardRef(({className:e,variant:t,layout:n,children:r,...o},i)=>d.jsx("div",{className:Ge(ZT({variant:t,layout:n,className:e}),"group relative"),ref:i,...o,children:m.Children.map(r,s=>m.isValidElement(s)&&typeof s.type!="string"?m.cloneElement(s,{variant:t,layout:n}):s)}));ax.displayName="ChatBubble";const QT=dr("p-4",{variants:{variant:{received:"rounded-r-lg rounded-tl-lg",sent:"rounded-l-lg rounded-tr-lg justify-end bg-[var(--message-background)]"},layout:{default:"",ai:"border-t w-full rounded-none bg-transparent"}},defaultVariants:{variant:"received",layout:"default"}}),lx=m.forwardRef(({className:e,variant:t,layout:n,children:r,...o},i)=>d.jsx("div",{className:Ge(QT({variant:t,layout:n,className:e}),"relative max-w-full break-words whitespace-pre-wrap"),ref:i,...o,children:d.jsx(d.Fragment,{children:r})}));lx.displayName="ChatBubbleMessage";const JT=m.forwardRef(({variant:e,className:t,children:n,...r},o)=>d.jsx("div",{ref:o,className:Ge("absolute top-1/2 flex -translate-y-1/2 opacity-0 transition-opacity duration-200 group-hover:opacity-100",e==="sent"?"-left-1 -translate-x-full flex-row-reverse":"-right-1 translate-x-full",t),...r,children:n}));JT.displayName="ChatBubbleActionWrapper";const cx={padding:"0 16px",maxWidth:"1280px",minWidth:"400px",margin:"0 auto",width:"100%"},ux=cn.forwardRef(({className:e="",children:t,...n},r)=>{const{scrollRef:o,isAtBottom:i,disableAutoScroll:s,scrollToBottom:a,userHasScrolled:l}=uA({smooth:!0,content:t});return m.useImperativeHandle(r,()=>({scrollToBottom:a})),d.jsxs("div",{className:`fade-both-mask min-h-0 flex-1 py-3 relative h-full w-full ${e}`,children:[d.jsx("div",{className:"flex h-full w-full flex-col overflow-y-auto p-4",ref:o,onWheel:s,onTouchMove:s,...n,style:{scrollBehavior:"smooth"},children:d.jsx("div",{className:"flex flex-col gap-6",style:cx,children:t})}),!i&&l&&d.jsx(Ke,{onClick:()=>{a()},size:"icon",variant:"outline",className:"absolute bottom-2 left-1/2 z-20 inline-flex -translate-x-1/2 transform rounded-full shadow-md bg-background","aria-label":"Scroll to bottom",children:d.jsx(Om,{className:"h-4 w-4"})})]})});ux.displayName="ChatMessageList";const eA=dr("flex-col items-center justify-center",{variants:{show:{true:"flex",false:"hidden"}},defaultVariants:{show:!0}}),tA=dr("animate-spin",{variants:{size:{small:"size-4",medium:"size-8",large:"size-12"},variant:{primary:"text-[var(--color-brand-wMain)]",secondary:"text-[var(--color-primary-wMain)]",muted:"text-[var(--color-secondary-text-wMain)] dark:text-[var(--color-secondary-text-w50)]",foreground:"text-foreground"}},defaultVariants:{size:"medium",variant:"primary"}});function nA({size:e,show:t,children:n,className:r,variant:o}){return d.jsxs("span",{className:eA({show:t}),children:[d.jsx(bu,{className:Ge(tA({size:e,variant:o}),r)}),n]})}function rA({className:e=""}){return d.jsx(nA,{size:"small",variant:"primary",className:e})}const ys={error:"bg-[var(--color-error-w10)] text-[var(--color-error-wMain)] border-[var(--color-error-wMain)] dark:bg-[var(--color-error-wMain)] dark:text-[var(--color-primary-text-w10)] dark:border-[var(--color-error-w10)]",warning:"bg-[var(--color-warning-w10)] text-[var(--color-warning-wMain)] border-[var(--color-warning-wMain)] dark:bg-[var(--color-warning-wMain)] dark:text-[var(--color-primary-text-w10)] dark:border-[var(--color-warning-w10)]",info:"bg-[var(--color-info-w10)] text-[var(--color-info-wMain)] border-[var(--color-info-w10)] dark:bg-[var(--color-info-wMain)] dark:text-[var(--color-primary-text-w10)] dark:border-[var(--color-info-w10)]",success:"bg-[var(--color-success-w10)] text-[var(--color-success-wMain)] border-[var(--color-success-w10)] dark:bg-[var(--color-success-wMain)] dark:text-[var(--color-primary-text-w10)] dark:border-[var(--color-success-wMain)]"},oA=dr("inline-flex items-center justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none transition-[color,box-shadow] overflow-hidden",{variants:{variant:{default:"border-transparent [a&]:hover:bg-primary/90",secondary:"border-transparent [a&]:hover:bg-secondary/90",destructive:"border-transparent [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",outline:"text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground"},type:{error:ys.error,warning:ys.warning,info:ys.info,success:ys.success}},defaultVariants:{variant:"default"}});function dx({className:e,variant:t,type:n,asChild:r=!1,...o}){const i=r?zh:"span";return d.jsx(i,{"data-slot":"badge",className:Ge(oA({variant:t,type:n}),e),...o})}const iA=dr("relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current",{variants:{variant:{default:"bg-card text-card-foreground",destructive:"text-destructive bg-card [&>svg]:text-current *:data-[slot=alert-description]:text-destructive/90"}},defaultVariants:{variant:"default"}});function sA({className:e,variant:t,...n}){return d.jsx("div",{"data-slot":"alert",role:"alert",className:Ge(iA({variant:t}),e),...n})}function aA({className:e,...t}){return d.jsx("div",{"data-slot":"alert-title",className:Ge("col-start-2 line-clamp-1 min-h-4 font-medium tracking-tight",e),...t})}function lA({message:e,type:t}){return d.jsx("div",{className:"transform transition-all duration-200 ease-in-out",children:d.jsx(sA,{className:"border-border bg-accent max-w-80 rounded-sm shadow-md",children:d.jsxs(aA,{className:"flex items-center text-sm",children:[t==="error"&&d.jsx(vu,{className:"mr-2 text-[var(--color-error-wMain)]"}),d.jsx("div",{className:"truncate",children:e})]})})})}function cA(){const{notifications:e}=Nt();return e.length===0?null:d.jsx("div",{className:"pointer-events-none fixed bottom-4 left-1/2 z-50 flex -translate-x-1/2 transform flex-col-reverse gap-2",children:e.map(t=>d.jsx("div",{className:"pointer-events-auto",children:d.jsx(lA,{id:t.id,message:t.message,type:t.type,duration:t.type==="error"?5e3:3e3})},t.id))})}function uA(e={}){const{offset:t=20,smooth:n=!1,content:r,autoScrollOnNewContent:o=!1}=e,i=m.useRef(null),s=m.useRef(0),a=m.useRef(!1),[l,c]=m.useState({isAtBottom:!0,autoScrollEnabled:!0}),u=m.useCallback(x=>{const{scrollTop:g,scrollHeight:v,clientHeight:y}=x;return Math.abs(v-g-y)<=t},[t]),f=m.useCallback(x=>{if(!i.current)return;const g=i.current.scrollHeight-i.current.clientHeight;x?i.current.scrollTop=g:i.current.scrollTo({top:g,behavior:n?"smooth":"auto"}),c({isAtBottom:!0,autoScrollEnabled:!0}),a.current=!1},[n]),p=m.useCallback(()=>{if(!i.current)return;const x=u(i.current);c(g=>({isAtBottom:x,autoScrollEnabled:x?!0:g.autoScrollEnabled}))},[u]);m.useEffect(()=>{const x=i.current;if(x)return x.addEventListener("scroll",p,{passive:!0}),()=>x.removeEventListener("scroll",p)},[p]),m.useEffect(()=>{const x=i.current;if(!x)return;const g=x.scrollHeight;g!==s.current&&((l.autoScrollEnabled||o)&&requestAnimationFrame(()=>{f(s.current===0)}),s.current=g)},[r,l.autoScrollEnabled,f,o]),m.useEffect(()=>{const x=i.current;if(!x)return;const g=new ResizeObserver(()=>{l.autoScrollEnabled&&f(!0)});return g.observe(x),()=>g.disconnect()},[l.autoScrollEnabled,f]);const h=m.useCallback(()=>{(i.current?u(i.current):!1)||(a.current=!0,c(g=>({...g,autoScrollEnabled:!1})))},[u]);return{scrollRef:i,isAtBottom:l.isAtBottom,autoScrollEnabled:l.autoScrollEnabled,scrollToBottom:()=>f(),disableAutoScroll:h,userHasScrolled:a.current}}const dA=({fileName:e,onRemove:t})=>d.jsxs(dx,{className:"max-w-50 gap-1.5 rounded-full bg-muted pr-1",children:[d.jsx("span",{className:"min-w-0 flex-1 truncate text-xs md:text-sm",title:e,children:e}),t&&d.jsx(Ke,{variant:"ghost",size:"icon",onClick:t,className:"h-2 min-h-0 w-2 min-w-0 p-2",title:"Remove file",children:d.jsx(Eu,{})})]}),fA=({agents:e=[],scrollToBottom:t})=>{const{isResponding:n,isCancelling:r,userInput:o,selectedAgentName:i,setSelectedAgentName:s,setUserInput:a,handleSubmit:l,handleCancel:c}=Nt(),u=m.useRef(null),[f,p]=m.useState([]),h=m.useRef(null),x=m.useRef(n),[g,v]=m.useState(o),y=A_(g,300);m.useEffect(()=>{a(y)},[y,a]),m.useEffect(()=>{v(o)},[o]),m.useEffect(()=>{x.current&&!n&&setTimeout(()=>{var _;(_=h.current)==null||_.focus()},100),x.current=n},[n]);const b=()=>{var _;n||(_=u.current)==null||_.click()},w=_=>{const M=_.target.files;if(M){const N=Array.from(M).filter(I=>!f.some(T=>T.name===I.name&&T.size===I.size&&T.lastModified===I.lastModified));N.length>0&&p(I=>[...I,...N])}_.target&&(_.target.value=""),setTimeout(()=>{var N;(N=h.current)==null||N.focus()},100)},S=_=>{if(n)return;const M=_.clipboardData;if(!M||!M.files||M.files.length===0)return;M.files.length>0&&_.preventDefault();const N=Array.from(M.files).filter(I=>!f.some(T=>T.name===I.name&&T.size===I.size&&T.lastModified===I.lastModified));N.length>0&&p(I=>[...I,...N])},E=_=>{p(M=>M.filter((N,I)=>I!==_))},k=m.useMemo(()=>!n&&((g==null?void 0:g.trim())||f.length!==0),[n,g,f]),C=async _=>{_.preventDefault(),k&&(await l(_,f,g.trim()),p([]),v(""),t==null||t())},A=_=>{if(n)return;const M=_.filter(N=>!f.some(I=>I.name===N.name&&I.size===N.size&&I.lastModified===N.lastModified));M.length>0&&p(N=>[...N,...M])},{isDragging:D,handleDragEnter:z,handleDragOver:$,handleDragLeave:O,handleDrop:L}=I_({onFilesDropped:A,disabled:n});return d.jsxs("div",{className:`rounded-lg border p-4 shadow-sm ${D?"border-dotted border-[var(--primary-wMain)] bg-[var(--accent-background)]":""}`,onDragEnter:z,onDragOver:$,onDragLeave:O,onDrop:L,children:[d.jsx("input",{type:"file",ref:u,className:"hidden",multiple:!0,onChange:w,accept:"*/*",disabled:n}),f.length>0&&d.jsx("div",{className:"mb-2 flex flex-wrap gap-2",children:f.map((_,M)=>d.jsx(dA,{fileName:_.name,onRemove:()=>E(M)},`${_.name}-${_.lastModified}-${M}`))}),d.jsx(sx,{ref:h,value:g,onChange:_=>v(_.target.value),placeholder:"How can I help you today?",className:"text-base/normal min-h-0 max-h-50 resize-none border-none p-3 shadow-none rounded-2xl focus-visible:outline-none field-sizing-content transition-[height] duration-500 ease-in-out",rows:1,onPaste:S,onKeyDown:_=>{_.key==="Enter"&&!_.shiftKey&&k&&C(_)}}),d.jsxs("div",{className:"flex items-center gap-2 m-2",children:[d.jsx(Ke,{variant:"ghost",onClick:b,disabled:n,tooltip:"Attach file",children:d.jsx(Wm,{className:"size-4"})}),d.jsx("div",{children:"Agent: "}),d.jsxs(z0,{value:i,onValueChange:s,disabled:n||e.length===0,children:[d.jsx(B0,{className:"w-[250px]",children:d.jsx(F0,{defaultValue:i})}),d.jsx(H0,{children:e.map(_=>d.jsx(U0,{value:_.name,children:_.display_name||_.name},_.name))})]}),n&&!r?d.jsxs(Ke,{className:"ml-auto gap-1.5",onClick:c,variant:"outline",disabled:r,tooltip:"Cancel",children:[d.jsx(cS,{className:"size-4"}),"Stop"]}):d.jsx(Ke,{variant:"ghost",className:"ml-auto gap-1.5",onClick:C,disabled:!k,tooltip:"Send message",children:d.jsx(uk,{className:"size-4"})})]})]})};function pA(e,t){return t&&t.toLowerCase().startsWith("text/")?!0:e?e.toLowerCase().endsWith(".txt")||e.toLowerCase().endsWith(".text"):!1}function hA(e,t){if(t){const n=t.toLowerCase();if(n==="text/html"||n==="application/xhtml+xml")return!0}return e?e.toLowerCase().endsWith(".html")||e.toLowerCase().endsWith(".htm"):!1}function mA(e,t){if(t){const n=t.toLowerCase();if(n==="text/x-mermaid"||n==="application/x-mermaid")return!0}return e?e.toLowerCase().endsWith(".mermaid")||e.toLowerCase().endsWith(".mmd"):!1}function gA(e,t){if(t){const n=t.toLowerCase();if(n==="text/csv"||n==="application/csv")return!0}return e?e.toLowerCase().endsWith(".csv"):!1}function xA(e,t){if(t&&t.toLowerCase().startsWith("image/"))return!0;if(!e)return!1;const n=e.toLowerCase();return n.endsWith(".png")||n.endsWith(".jpg")||n.endsWith(".jpeg")||n.endsWith(".gif")||n.endsWith(".bmp")||n.endsWith(".webp")||n.endsWith(".svg")}function vA(e,t){if(t){const n=t.toLowerCase();if(n==="application/json"||n==="text/json")return!0}return e?e.toLowerCase().endsWith(".json"):!1}function yA(e,t){if(t){const r=t.toLowerCase();if(r==="application/yaml"||r==="text/yaml"||r==="application/x-yaml"||r==="text/x-yaml")return!0}if(!e)return!1;const n=e.toLowerCase();return n.endsWith(".yaml")||n.endsWith(".yml")}function wA(e,t){if(t){const r=t.toLowerCase();if(r==="text/markdown"||r==="application/markdown"||r==="text/x-markdown")return!0}if(!e)return!1;const n=e.toLowerCase();return n.endsWith(".md")||n.endsWith(".markdown")}function bA(e,t){if(t&&t.toLowerCase().startsWith("audio/"))return!0;if(!e)return!1;const n=e.toLowerCase();return n.endsWith(".mp3")||n.endsWith(".wav")||n.endsWith(".ogg")||n.endsWith(".aac")||n.endsWith(".flac")||n.endsWith(".m4a")}function Qi(e,t){return hA(e,t)?"html":mA(e,t)?"mermaid":xA(e,t)?"image":wA(e,t)?"markdown":bA(e,t)?"audio":vA(e,t)?"json":yA(e,t)?"yaml":gA(e,t)?"csv":pA(e,t)?"text":null}function fx(e){try{const t=Uint8Array.from(atob(e),n=>n.charCodeAt(0));return new TextDecoder("utf-8",{fatal:!1}).decode(t)}catch(t){console.warn("TextDecoder failed (potentially non-UTF8 data), falling back to simple atob:",t);try{return atob(e)}catch(n){return console.error("Failed to decode base64 content with atob fallback:",n),e}}}const px=["csv","html","json","mermaid","image","markdown","audio","text","yaml"],EA=["image","audio"],SA=e=>{if(!e||!e.content)return"";const t=Qi(e.name,e.mime_type);if(!t||!px.includes(t))return"";if(EA.includes(t))return e.content;try{return fx(e.content)}catch(n){return console.error("Failed to decode base64 content:",n),""}},hx=5*1024*1024,kA=em(hx);function CA(e){if(!e||!e.size)return{canPreview:!1,reason:"No artifact or content available."};const t=Qi(e.filename,e.mime_type);return!t||!px.includes(t)?{canPreview:!1,reason:"Preview not yet supported for this file type."}:e.size>hx?{canPreview:!1,reason:`Preview not supported for files this large. Maximum size is: ${kA}.`}:{canPreview:!0}}const mx=(e,t="h-4 w-4")=>{if(!e)return d.jsx(Xd,{className:t});switch(Qi(e.filename,e.mime_type)){case"image":case"mermaid":return d.jsx(OS,{className:t});case"audio":return d.jsx(MS,{className:t});case"html":return d.jsx(DS,{className:t});case"text":return d.jsx(So,{className:t});case"csv":return d.jsx(FS,{className:t});case"json":return d.jsx($S,{className:t});default:return d.jsx(Xd,{className:t})}},gx=({fileAttachment:e,isEmbedded:t=!1})=>d.jsx(xx,{filename:e.name,mimeType:e.mime_type,onDownload:()=>zb(e),className:"ml-4",isEmbedded:t}),xx=({filename:e,mimeType:t,className:n,onDownload:r,isEmbedded:o=!1})=>{const{artifacts:i,setPreviewArtifact:s,openSidePanelTab:a}=Nt(),l=m.useMemo(()=>i.find(u=>u.filename===e),[i,e]),c=m.useMemo(()=>mx(l||{filename:e,mime_type:t||""}),[l,e,t]);return d.jsxs("div",{className:`flex flex-shrink items-center gap-2 rounded-lg bg-[var(--accent-background)] px-2 py-1 h-11 max-w-xs ${n||""}`,children:[c,d.jsx("span",{className:"min-w-0 flex-1 truncate text-sm leading-9",title:e,children:d.jsx("strong",{children:d.jsx("code",{children:e})})}),l&&!o&&d.jsx(Ke,{variant:"ghost",onClick:u=>{u.stopPropagation(),a("files"),s(l)},tooltip:"Preview",children:d.jsx(Hm,{className:"h-4 w-4"})}),r&&d.jsx(Ke,{variant:"ghost",onClick:()=>r(),tooltip:"Download file",children:d.jsx(yu,{className:"h-4 w-4"})})]})},_A=({content:e,mime_type:t,setRenderError:n})=>{const r=`data:${t||"audio/mpeg"};base64,${e}`;return d.jsx("div",{className:"flex h-auto max-w-[100vw] items-center justify-center p-4",children:d.jsxs("audio",{controls:!0,className:"w-full",onLoad:()=>n(null),onError:()=>n("Failed to load audio content."),children:[d.jsx("source",{src:r,type:t||"audio/mpeg"}),"Your browser does not support the audio element."]})})},TA=e=>{if(!e)return[];const t=[];let n=[],r="",o=!1;for(let i=0;i<e.length;i++){const s=e[i],a=i<e.length-1?e[i+1]:"";s==='"'?a==='"'?(r+='"',i++):o=!o:s===","&&!o?(n.push(r.trim()),r=""):(s===`
400
+ `||s==="\r"&&a===`
401
+ `)&&!o?(s==="\r"&&a===`
402
+ `&&i++,n.push(r.trim()),r="",n.some(l=>l.trim())?(t.push(n),n=[]):n=[]):r+=s}return(r||n.length>0)&&(n.push(r.trim()),n.some(i=>i.trim())&&t.push(n)),t},AA=({content:e,setRenderError:t})=>{m.useEffect(()=>{t(null)},[e,t]);const n=m.useMemo(()=>{try{return TA(e)}catch(r){return console.error("Error parsing CSV:",r),t("Failed to parse CSV content."),[]}},[e,t]);return n.length?d.jsx("div",{className:"block w-full overflow-x-scroll p-4",children:d.jsx("div",{style:{minWidth:"min(100%, max-content)"},children:d.jsxs("table",{className:"border text-sm w-full",children:[d.jsx("thead",{className:"sticky top-0 z-10 shadow-sm",children:n.length>0&&d.jsx("tr",{children:n[0].map((r,o)=>d.jsx("th",{className:"border-b p-2 text-left font-medium whitespace-nowrap",title:r,children:(r==null?void 0:r.trim())||""},`header-${o}`))})}),d.jsx("tbody",{children:n.slice(1).map((r,o)=>d.jsx("tr",{className:o%2===0?"bg-muted dark:bg-gray-700":"",children:r.map((i,s)=>d.jsx("td",{className:"min-w-0 border-b p-2 break-words align-top",title:i,children:(i==null?void 0:i.trim())||""},`cell-${o}-${s}`))},`row-${o}`))})]})})}):d.jsx("div",{children:"No valid CSV content found or failed to parse."})},NA=({content:e,setRenderError:t})=>{const n=m.useMemo(()=>e.replace(/<script(?:\s[^>]*)?>([\s\S]*?)<\/script>/gi,(i,s)=>{const a=i.match(/<script(\s[^>]*)?>/i);return`<script${a&&a[1]?a[1]:""}>(function() {
403
+ try {
404
+ ${s}
405
+ } catch (e) { console.error('Error in sandboxed script:', e); }
406
+ })();<\/script>`}),[e]);return d.jsx("div",{className:"h-full w-full overflow-hidden dark:bg-gray-400 border",children:d.jsx("iframe",{srcDoc:n,title:"HTML Preview",sandbox:"allow-scripts allow-same-origin allow-downloads allow-forms allow-popups",allow:"autoplay",className:"h-full w-full border-none",onError:()=>t("Failed to load HTML content."),onLoad:()=>t(null)})})},IA=({content:e,mime_type:t,setRenderError:n})=>{const r=`data:${t||"image/png"};base64,${e}`;return d.jsx("div",{className:"flex h-auto w-auto max-w-[100vw] items-center justify-center p-4",children:d.jsx("img",{src:r,onError:()=>n("Failed to load image"),onLoad:()=>n(null),alt:"Preview",className:"h-full w-full object-contain"})})};function vx(){const e=m.useRef(null),t=()=>{if(e.current){const r=document.createRange();r.selectNodeContents(e.current);const o=window.getSelection();o&&(o.removeAllRanges(),o.addRange(r))}};return{ref:e,handleKeyDown:r=>{(r.metaKey||r.ctrlKey)&&r.key==="a"&&(r.preventDefault(),t())},selectAllContent:t}}const jA=({content:e})=>{const{ref:t,handleKeyDown:n}=vx();return d.jsx("div",{className:"w-full p-4",children:d.jsx("div",{ref:t,className:"max-w-full overflow-hidden focus-visible:outline-none select-text",tabIndex:0,onKeyDown:n,children:d.jsx(vo,{className:"max-w-full break-words",children:e})})})};/*! @license DOMPurify 3.2.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.6/LICENSE */const{entries:yx,setPrototypeOf:Tf,isFrozen:MA,getPrototypeOf:RA,getOwnPropertyDescriptor:DA}=Object;let{freeze:Vt,seal:sn,create:wx}=Object,{apply:vc,construct:yc}=typeof Reflect<"u"&&Reflect;Vt||(Vt=function(t){return t});sn||(sn=function(t){return t});vc||(vc=function(t,n,r){return t.apply(n,r)});yc||(yc=function(t,n){return new t(...n)});const ws=Wt(Array.prototype.forEach),PA=Wt(Array.prototype.lastIndexOf),Af=Wt(Array.prototype.pop),Zo=Wt(Array.prototype.push),OA=Wt(Array.prototype.splice),Hs=Wt(String.prototype.toLowerCase),Il=Wt(String.prototype.toString),Nf=Wt(String.prototype.match),Qo=Wt(String.prototype.replace),LA=Wt(String.prototype.indexOf),$A=Wt(String.prototype.trim),ln=Wt(Object.prototype.hasOwnProperty),Bt=Wt(RegExp.prototype.test),Jo=zA(TypeError);function Wt(e){return function(t){t instanceof RegExp&&(t.lastIndex=0);for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return vc(e,t,r)}}function zA(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return yc(e,n)}}function qe(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Hs;Tf&&Tf(e,null);let r=t.length;for(;r--;){let o=t[r];if(typeof o=="string"){const i=n(o);i!==o&&(MA(t)||(t[r]=i),o=i)}e[o]=!0}return e}function FA(e){for(let t=0;t<e.length;t++)ln(e,t)||(e[t]=null);return e}function $n(e){const t=wx(null);for(const[n,r]of yx(e))ln(e,n)&&(Array.isArray(r)?t[n]=FA(r):r&&typeof r=="object"&&r.constructor===Object?t[n]=$n(r):t[n]=r);return t}function ei(e,t){for(;e!==null;){const r=DA(e,t);if(r){if(r.get)return Wt(r.get);if(typeof r.value=="function")return Wt(r.value)}e=RA(e)}function n(){return null}return n}const If=Vt(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),jl=Vt(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Ml=Vt(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),BA=Vt(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),Rl=Vt(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),HA=Vt(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),jf=Vt(["#text"]),Mf=Vt(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns","slot"]),Dl=Vt(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Rf=Vt(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),bs=Vt(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),UA=sn(/\{\{[\w\W]*|[\w\W]*\}\}/gm),VA=sn(/<%[\w\W]*|[\w\W]*%>/gm),WA=sn(/\$\{[\w\W]*/gm),GA=sn(/^data-[\-\w.\u00B7-\uFFFF]+$/),YA=sn(/^aria-[\-\w]+$/),bx=sn(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),qA=sn(/^(?:\w+script|data):/i),KA=sn(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Ex=sn(/^html$/i),XA=sn(/^[a-z][.\w]*(-[.\w]+)+$/i);var Df=Object.freeze({__proto__:null,ARIA_ATTR:YA,ATTR_WHITESPACE:KA,CUSTOM_ELEMENT:XA,DATA_ATTR:GA,DOCTYPE_NAME:Ex,ERB_EXPR:VA,IS_ALLOWED_URI:bx,IS_SCRIPT_OR_DATA:qA,MUSTACHE_EXPR:UA,TMPLIT_EXPR:WA});const ti={element:1,text:3,progressingInstruction:7,comment:8,document:9},ZA=function(){return typeof window>"u"?null:window},QA=function(t,n){if(typeof t!="object"||typeof t.createPolicy!="function")return null;let r=null;const o="data-tt-policy-suffix";n&&n.hasAttribute(o)&&(r=n.getAttribute(o));const i="dompurify"+(r?"#"+r:"");try{return t.createPolicy(i,{createHTML(s){return s},createScriptURL(s){return s}})}catch{return console.warn("TrustedTypes policy "+i+" could not be created."),null}},Pf=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}};function Sx(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ZA();const t=se=>Sx(se);if(t.version="3.2.6",t.removed=[],!e||!e.document||e.document.nodeType!==ti.document||!e.Element)return t.isSupported=!1,t;let{document:n}=e;const r=n,o=r.currentScript,{DocumentFragment:i,HTMLTemplateElement:s,Node:a,Element:l,NodeFilter:c,NamedNodeMap:u=e.NamedNodeMap||e.MozNamedAttrMap,HTMLFormElement:f,DOMParser:p,trustedTypes:h}=e,x=l.prototype,g=ei(x,"cloneNode"),v=ei(x,"remove"),y=ei(x,"nextSibling"),b=ei(x,"childNodes"),w=ei(x,"parentNode");if(typeof s=="function"){const se=n.createElement("template");se.content&&se.content.ownerDocument&&(n=se.content.ownerDocument)}let S,E="";const{implementation:k,createNodeIterator:C,createDocumentFragment:A,getElementsByTagName:D}=n,{importNode:z}=r;let $=Pf();t.isSupported=typeof yx=="function"&&typeof w=="function"&&k&&k.createHTMLDocument!==void 0;const{MUSTACHE_EXPR:O,ERB_EXPR:L,TMPLIT_EXPR:_,DATA_ATTR:M,ARIA_ATTR:N,IS_SCRIPT_OR_DATA:I,ATTR_WHITESPACE:T,CUSTOM_ELEMENT:j}=Df;let{IS_ALLOWED_URI:R}=Df,P=null;const U=qe({},[...If,...jl,...Ml,...Rl,...jf]);let B=null;const V=qe({},[...Mf,...Dl,...Rf,...bs]);let G=Object.seal(wx(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),q=null,H=null,W=!0,K=!0,J=!1,re=!0,Z=!1,ne=!0,ee=!1,ce=!1,we=!1,Me=!1,ae=!1,_e=!1,Xe=!0,Je=!1;const st="user-content-";let et=!0,de=!1,at={},nt=null;const ut=qe({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let rt=null;const Tt=qe({},["audio","video","img","source","image","track"]);let ot=null;const jt=qe({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),mt="http://www.w3.org/1998/Math/MathML",dt="http://www.w3.org/2000/svg",ft="http://www.w3.org/1999/xhtml";let vt=ft,Ve=!1,Ye=null;const Mt=qe({},[mt,dt,ft],Il);let be=qe({},["mi","mo","mn","ms","mtext"]),me=qe({},["annotation-xml"]);const Ae=qe({},["title","style","font","a","script"]);let Re=null;const Pe=["application/xhtml+xml","text/html"],Y="text/html";let X=null,Q=null;const le=n.createElement("form"),pe=function(F){return F instanceof RegExp||F instanceof Function},je=function(){let F=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!(Q&&Q===F)){if((!F||typeof F!="object")&&(F={}),F=$n(F),Re=Pe.indexOf(F.PARSER_MEDIA_TYPE)===-1?Y:F.PARSER_MEDIA_TYPE,X=Re==="application/xhtml+xml"?Il:Hs,P=ln(F,"ALLOWED_TAGS")?qe({},F.ALLOWED_TAGS,X):U,B=ln(F,"ALLOWED_ATTR")?qe({},F.ALLOWED_ATTR,X):V,Ye=ln(F,"ALLOWED_NAMESPACES")?qe({},F.ALLOWED_NAMESPACES,Il):Mt,ot=ln(F,"ADD_URI_SAFE_ATTR")?qe($n(jt),F.ADD_URI_SAFE_ATTR,X):jt,rt=ln(F,"ADD_DATA_URI_TAGS")?qe($n(Tt),F.ADD_DATA_URI_TAGS,X):Tt,nt=ln(F,"FORBID_CONTENTS")?qe({},F.FORBID_CONTENTS,X):ut,q=ln(F,"FORBID_TAGS")?qe({},F.FORBID_TAGS,X):$n({}),H=ln(F,"FORBID_ATTR")?qe({},F.FORBID_ATTR,X):$n({}),at=ln(F,"USE_PROFILES")?F.USE_PROFILES:!1,W=F.ALLOW_ARIA_ATTR!==!1,K=F.ALLOW_DATA_ATTR!==!1,J=F.ALLOW_UNKNOWN_PROTOCOLS||!1,re=F.ALLOW_SELF_CLOSE_IN_ATTR!==!1,Z=F.SAFE_FOR_TEMPLATES||!1,ne=F.SAFE_FOR_XML!==!1,ee=F.WHOLE_DOCUMENT||!1,Me=F.RETURN_DOM||!1,ae=F.RETURN_DOM_FRAGMENT||!1,_e=F.RETURN_TRUSTED_TYPE||!1,we=F.FORCE_BODY||!1,Xe=F.SANITIZE_DOM!==!1,Je=F.SANITIZE_NAMED_PROPS||!1,et=F.KEEP_CONTENT!==!1,de=F.IN_PLACE||!1,R=F.ALLOWED_URI_REGEXP||bx,vt=F.NAMESPACE||ft,be=F.MATHML_TEXT_INTEGRATION_POINTS||be,me=F.HTML_INTEGRATION_POINTS||me,G=F.CUSTOM_ELEMENT_HANDLING||{},F.CUSTOM_ELEMENT_HANDLING&&pe(F.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(G.tagNameCheck=F.CUSTOM_ELEMENT_HANDLING.tagNameCheck),F.CUSTOM_ELEMENT_HANDLING&&pe(F.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(G.attributeNameCheck=F.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),F.CUSTOM_ELEMENT_HANDLING&&typeof F.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(G.allowCustomizedBuiltInElements=F.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Z&&(K=!1),ae&&(Me=!0),at&&(P=qe({},jf),B=[],at.html===!0&&(qe(P,If),qe(B,Mf)),at.svg===!0&&(qe(P,jl),qe(B,Dl),qe(B,bs)),at.svgFilters===!0&&(qe(P,Ml),qe(B,Dl),qe(B,bs)),at.mathMl===!0&&(qe(P,Rl),qe(B,Rf),qe(B,bs))),F.ADD_TAGS&&(P===U&&(P=$n(P)),qe(P,F.ADD_TAGS,X)),F.ADD_ATTR&&(B===V&&(B=$n(B)),qe(B,F.ADD_ATTR,X)),F.ADD_URI_SAFE_ATTR&&qe(ot,F.ADD_URI_SAFE_ATTR,X),F.FORBID_CONTENTS&&(nt===ut&&(nt=$n(nt)),qe(nt,F.FORBID_CONTENTS,X)),et&&(P["#text"]=!0),ee&&qe(P,["html","head","body"]),P.table&&(qe(P,["tbody"]),delete q.tbody),F.TRUSTED_TYPES_POLICY){if(typeof F.TRUSTED_TYPES_POLICY.createHTML!="function")throw Jo('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof F.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw Jo('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');S=F.TRUSTED_TYPES_POLICY,E=S.createHTML("")}else S===void 0&&(S=QA(h,o)),S!==null&&typeof E=="string"&&(E=S.createHTML(""));Vt&&Vt(F),Q=F}},Oe=qe({},[...jl,...Ml,...BA]),Be=qe({},[...Rl,...HA]),ve=function(F){let te=w(F);(!te||!te.tagName)&&(te={namespaceURI:vt,tagName:"template"});const ie=Hs(F.tagName),tt=Hs(te.tagName);return Ye[F.namespaceURI]?F.namespaceURI===dt?te.namespaceURI===ft?ie==="svg":te.namespaceURI===mt?ie==="svg"&&(tt==="annotation-xml"||be[tt]):!!Oe[ie]:F.namespaceURI===mt?te.namespaceURI===ft?ie==="math":te.namespaceURI===dt?ie==="math"&&me[tt]:!!Be[ie]:F.namespaceURI===ft?te.namespaceURI===dt&&!me[tt]||te.namespaceURI===mt&&!be[tt]?!1:!Be[ie]&&(Ae[ie]||!Oe[ie]):!!(Re==="application/xhtml+xml"&&Ye[F.namespaceURI]):!1},fe=function(F){Zo(t.removed,{element:F});try{w(F).removeChild(F)}catch{v(F)}},Ce=function(F,te){try{Zo(t.removed,{attribute:te.getAttributeNode(F),from:te})}catch{Zo(t.removed,{attribute:null,from:te})}if(te.removeAttribute(F),F==="is")if(Me||ae)try{fe(te)}catch{}else try{te.setAttribute(F,"")}catch{}},Ee=function(F){let te=null,ie=null;if(we)F="<remove></remove>"+F;else{const pt=Nf(F,/^[\r\n\t ]+/);ie=pt&&pt[0]}Re==="application/xhtml+xml"&&vt===ft&&(F='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+F+"</body></html>");const tt=S?S.createHTML(F):F;if(vt===ft)try{te=new p().parseFromString(tt,Re)}catch{}if(!te||!te.documentElement){te=k.createDocument(vt,"template",null);try{te.documentElement.innerHTML=Ve?E:tt}catch{}}const gt=te.body||te.documentElement;return F&&ie&&gt.insertBefore(n.createTextNode(ie),gt.childNodes[0]||null),vt===ft?D.call(te,ee?"html":"body")[0]:ee?te.documentElement:gt},$e=function(F){return C.call(F.ownerDocument||F,F,c.SHOW_ELEMENT|c.SHOW_COMMENT|c.SHOW_TEXT|c.SHOW_PROCESSING_INSTRUCTION|c.SHOW_CDATA_SECTION,null)},ye=function(F){return F instanceof f&&(typeof F.nodeName!="string"||typeof F.textContent!="string"||typeof F.removeChild!="function"||!(F.attributes instanceof u)||typeof F.removeAttribute!="function"||typeof F.setAttribute!="function"||typeof F.namespaceURI!="string"||typeof F.insertBefore!="function"||typeof F.hasChildNodes!="function")},Se=function(F){return typeof a=="function"&&F instanceof a};function Te(se,F,te){ws(se,ie=>{ie.call(t,F,te,Q)})}const He=function(F){let te=null;if(Te($.beforeSanitizeElements,F,null),ye(F))return fe(F),!0;const ie=X(F.nodeName);if(Te($.uponSanitizeElement,F,{tagName:ie,allowedTags:P}),ne&&F.hasChildNodes()&&!Se(F.firstElementChild)&&Bt(/<[/\w!]/g,F.innerHTML)&&Bt(/<[/\w!]/g,F.textContent)||F.nodeType===ti.progressingInstruction||ne&&F.nodeType===ti.comment&&Bt(/<[/\w]/g,F.data))return fe(F),!0;if(!P[ie]||q[ie]){if(!q[ie]&&he(ie)&&(G.tagNameCheck instanceof RegExp&&Bt(G.tagNameCheck,ie)||G.tagNameCheck instanceof Function&&G.tagNameCheck(ie)))return!1;if(et&&!nt[ie]){const tt=w(F)||F.parentNode,gt=b(F)||F.childNodes;if(gt&&tt){const pt=gt.length;for(let bt=pt-1;bt>=0;--bt){const oe=g(gt[bt],!0);oe.__removalCount=(F.__removalCount||0)+1,tt.insertBefore(oe,y(F))}}}return fe(F),!0}return F instanceof l&&!ve(F)||(ie==="noscript"||ie==="noembed"||ie==="noframes")&&Bt(/<\/no(script|embed|frames)/i,F.innerHTML)?(fe(F),!0):(Z&&F.nodeType===ti.text&&(te=F.textContent,ws([O,L,_],tt=>{te=Qo(te,tt," ")}),F.textContent!==te&&(Zo(t.removed,{element:F.cloneNode()}),F.textContent=te)),Te($.afterSanitizeElements,F,null),!1)},kt=function(F,te,ie){if(Xe&&(te==="id"||te==="name")&&(ie in n||ie in le))return!1;if(!(K&&!H[te]&&Bt(M,te))){if(!(W&&Bt(N,te))){if(!B[te]||H[te]){if(!(he(F)&&(G.tagNameCheck instanceof RegExp&&Bt(G.tagNameCheck,F)||G.tagNameCheck instanceof Function&&G.tagNameCheck(F))&&(G.attributeNameCheck instanceof RegExp&&Bt(G.attributeNameCheck,te)||G.attributeNameCheck instanceof Function&&G.attributeNameCheck(te))||te==="is"&&G.allowCustomizedBuiltInElements&&(G.tagNameCheck instanceof RegExp&&Bt(G.tagNameCheck,ie)||G.tagNameCheck instanceof Function&&G.tagNameCheck(ie))))return!1}else if(!ot[te]){if(!Bt(R,Qo(ie,T,""))){if(!((te==="src"||te==="xlink:href"||te==="href")&&F!=="script"&&LA(ie,"data:")===0&&rt[F])){if(!(J&&!Bt(I,Qo(ie,T,"")))){if(ie)return!1}}}}}}return!0},he=function(F){return F!=="annotation-xml"&&Nf(F,j)},Ie=function(F){Te($.beforeSanitizeAttributes,F,null);const{attributes:te}=F;if(!te||ye(F))return;const ie={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:B,forceKeepAttr:void 0};let tt=te.length;for(;tt--;){const gt=te[tt],{name:pt,namespaceURI:bt,value:oe}=gt,Le=X(pt),Et=oe;let ze=pt==="value"?Et:$A(Et);if(ie.attrName=Le,ie.attrValue=ze,ie.keepAttr=!0,ie.forceKeepAttr=void 0,Te($.uponSanitizeAttribute,F,ie),ze=ie.attrValue,Je&&(Le==="id"||Le==="name")&&(Ce(pt,F),ze=st+ze),ne&&Bt(/((--!?|])>)|<\/(style|title)/i,ze)){Ce(pt,F);continue}if(ie.forceKeepAttr)continue;if(!ie.keepAttr){Ce(pt,F);continue}if(!re&&Bt(/\/>/i,ze)){Ce(pt,F);continue}Z&&ws([O,L,_],vn=>{ze=Qo(ze,vn," ")});const Lt=X(F.nodeName);if(!kt(Lt,Le,ze)){Ce(pt,F);continue}if(S&&typeof h=="object"&&typeof h.getAttributeType=="function"&&!bt)switch(h.getAttributeType(Lt,Le)){case"TrustedHTML":{ze=S.createHTML(ze);break}case"TrustedScriptURL":{ze=S.createScriptURL(ze);break}}if(ze!==Et)try{bt?F.setAttributeNS(bt,pt,ze):F.setAttribute(pt,ze),ye(F)?fe(F):Af(t.removed)}catch{Ce(pt,F)}}Te($.afterSanitizeAttributes,F,null)},wt=function se(F){let te=null;const ie=$e(F);for(Te($.beforeSanitizeShadowDOM,F,null);te=ie.nextNode();)Te($.uponSanitizeShadowNode,te,null),He(te),Ie(te),te.content instanceof i&&se(te.content);Te($.afterSanitizeShadowDOM,F,null)};return t.sanitize=function(se){let F=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},te=null,ie=null,tt=null,gt=null;if(Ve=!se,Ve&&(se="<!-->"),typeof se!="string"&&!Se(se))if(typeof se.toString=="function"){if(se=se.toString(),typeof se!="string")throw Jo("dirty is not a string, aborting")}else throw Jo("toString is not a function");if(!t.isSupported)return se;if(ce||je(F),t.removed=[],typeof se=="string"&&(de=!1),de){if(se.nodeName){const oe=X(se.nodeName);if(!P[oe]||q[oe])throw Jo("root node is forbidden and cannot be sanitized in-place")}}else if(se instanceof a)te=Ee("<!---->"),ie=te.ownerDocument.importNode(se,!0),ie.nodeType===ti.element&&ie.nodeName==="BODY"||ie.nodeName==="HTML"?te=ie:te.appendChild(ie);else{if(!Me&&!Z&&!ee&&se.indexOf("<")===-1)return S&&_e?S.createHTML(se):se;if(te=Ee(se),!te)return Me?null:_e?E:""}te&&we&&fe(te.firstChild);const pt=$e(de?se:te);for(;tt=pt.nextNode();)He(tt),Ie(tt),tt.content instanceof i&&wt(tt.content);if(de)return se;if(Me){if(ae)for(gt=A.call(te.ownerDocument);te.firstChild;)gt.appendChild(te.firstChild);else gt=te;return(B.shadowroot||B.shadowrootmode)&&(gt=z.call(r,gt,!0)),gt}let bt=ee?te.outerHTML:te.innerHTML;return ee&&P["!doctype"]&&te.ownerDocument&&te.ownerDocument.doctype&&te.ownerDocument.doctype.name&&Bt(Ex,te.ownerDocument.doctype.name)&&(bt="<!DOCTYPE "+te.ownerDocument.doctype.name+`>
407
+ `+bt),Z&&ws([O,L,_],oe=>{bt=Qo(bt,oe," ")}),S&&_e?S.createHTML(bt):bt},t.setConfig=function(){let se=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};je(se),ce=!0},t.clearConfig=function(){Q=null,ce=!1},t.isValidAttribute=function(se,F,te){Q||je({});const ie=X(se),tt=X(F);return kt(ie,tt,te)},t.addHook=function(se,F){typeof F=="function"&&Zo($[se],F)},t.removeHook=function(se,F){if(F!==void 0){const te=PA($[se],F);return te===-1?void 0:OA($[se],te,1)[0]}return Af($[se])},t.removeHooks=function(se){$[se]=[]},t.removeAllHooks=function(){$=Pf()},t}var kx=Sx();const JA=({content:e,setRenderError:t})=>{const[n,r]=m.useState(""),o=m.useMemo(()=>kx.sanitize(e,{USE_PROFILES:{html:!1},ALLOWED_TAGS:["br","em","strong","b","i"],ALLOWED_ATTR:[]}),[e]);return m.useEffect(()=>{r(`<!DOCTYPE html>
408
+ <html>
409
+ <head>
410
+ <meta charset="utf-8">
411
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
412
+ <title>Mermaid Preview</title>
413
+ <script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"><\/script>
414
+ <script src="https://cdn.jsdelivr.net/npm/panzoom@9.4.0/dist/panzoom.min.js"><\/script>
415
+ <script>
416
+ document.addEventListener('DOMContentLoaded', function() {
417
+ try {
418
+ mermaid.initialize({
419
+ startOnLoad: true,
420
+ theme: 'default',
421
+ fontFamily: 'arial, sans-serif',
422
+ logLevel: 'error',
423
+ securityLevel: 'strict'
424
+ });
425
+
426
+ // Initialize panzoom after Mermaid rendering
427
+ mermaid.run().then(() => {
428
+ const diagramContainer = document.getElementById('diagram-container');
429
+ if (diagramContainer) {
430
+ const pz = panzoom(diagramContainer, {
431
+ maxZoom: 10,
432
+ minZoom: 0.1,
433
+ smoothScroll: true,
434
+ bounds: true,
435
+ boundsPadding: 0.1
436
+ });
437
+ // Add zoom controls (old version had only reset)
438
+ const resetButton = document.getElementById('reset');
439
+ if (resetButton) {
440
+ resetButton.addEventListener('click', () => {
441
+ pz.moveTo(0, 0);
442
+ pz.zoomAbs(0, 0, 1);
443
+ });
444
+ }
445
+ }
446
+ }).catch(err => {
447
+ console.error("Mermaid rendering failed inside iframe:", err);
448
+ const mermaidDiv = document.querySelector('.mermaid');
449
+ if (mermaidDiv) mermaidDiv.innerText = "Error rendering diagram: " + err.message;
450
+ });
451
+
452
+ window.addEventListener('message', function(event) {
453
+ if (event.data && event.data.action === 'getMermaidSvg') {
454
+ const svgElement = document.querySelector('.mermaid svg');
455
+ if (svgElement) {
456
+ if (!svgElement.getAttribute('xmlns')) { // Ensure xmlns for standalone SVG
457
+ svgElement.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
458
+ }
459
+ const svgData = new XMLSerializer().serializeToString(svgElement);
460
+ window.parent.postMessage({
461
+ action: 'downloadSvg',
462
+ svgData: svgData,
463
+ filename: event.data.filename || 'mermaid-diagram.svg'
464
+ }, '*');
465
+ } else {
466
+ console.error('SVG element not found for download inside iframe.');
467
+ }
468
+ }
469
+ });
470
+ } catch (e) {
471
+ console.error("Error initializing Mermaid or Panzoom inside iframe:", e);
472
+ const mermaidDiv = document.querySelector('.mermaid');
473
+ if (mermaidDiv) mermaidDiv.innerText = "Failed to initialize diagram viewer: " + e.message;
474
+ }
475
+ });
476
+ <\/script>
477
+ <style>
478
+ /* Styles from old code */
479
+ html, body {
480
+ height: 100%;
481
+ margin: 0;
482
+ padding: 0;
483
+ overflow: hidden;
484
+ font-family: Arial, sans-serif; /* Old font */
485
+ }
486
+ .container {
487
+ display: flex;
488
+ flex-direction: column;
489
+ height: 100vh;
490
+ overflow: hidden;
491
+ }
492
+ .diagram-wrapper {
493
+ flex: 1;
494
+ overflow: hidden;
495
+ position: relative;
496
+ display: flex;
497
+ justify-content: center;
498
+ align-items: center;
499
+ background-color: #f9f9f9;
500
+ }
501
+ #diagram-container {
502
+ transform-origin: 0 0;
503
+ cursor: grab;
504
+ box-shadow: 0 0 10px rgba(0,0,0,0.1);
505
+ background-color: white;
506
+ padding: 20px;
507
+ border-radius: 5px;
508
+ /* Ensure diagram container can hold the content */
509
+ width: auto; /* Adjust as needed, or let content define it */
510
+ height: auto;
511
+ max-width: 100%;
512
+ max-height: 100%;
513
+ }
514
+ #diagram-container:active {
515
+ cursor: grabbing;
516
+ }
517
+ .mermaid {
518
+ display: flex; /* Helps in centering if SVG is smaller */
519
+ justify-content: center;
520
+ align-items: center;
521
+ /* width: 100%; Ensures mermaid div takes space, SVG might scale within it */
522
+ /* height: 100%; */
523
+ }
524
+ .mermaid svg {
525
+ max-width: 100%; /* Ensure SVG scales down if too large */
526
+ max-height: 100%;
527
+ }
528
+ .controls{
529
+ position: fixed;
530
+ bottom: 20px;
531
+ right: 20px;
532
+ z-index: 1000;
533
+ display: flex;
534
+ gap: 5px;
535
+ }
536
+ .control-btn {
537
+ width: 40px;
538
+ height: 40px;
539
+ border-radius: 50%;
540
+ border: none;
541
+ background-color: white;
542
+ box-shadow: 0 2px 5px rgba(0,0,0,0.2);
543
+ cursor: pointer;
544
+ font-size: 18px;
545
+ display: flex;
546
+ align-items: center;
547
+ justify-content: center;
548
+ }
549
+ .control-btn:hover {
550
+ background-color: #f0f0f0;
551
+ }
552
+ .instructions {
553
+ position: fixed;
554
+ top: 10px;
555
+ left: 10px;
556
+ background-color: rgba(255,255,255,0.8);
557
+ padding: 5px 10px;
558
+ border-radius: 4px;
559
+ font-size: 12px;
560
+ color: #666;
561
+ }
562
+ </style>
563
+ </head>
564
+ <body>
565
+ <div class="container">
566
+ <div class="diagram-wrapper">
567
+ <div id="diagram-container">
568
+ <div class="mermaid">
569
+ ${o}
570
+ </div>
571
+ </div>
572
+ </div>
573
+ <div class="instructions">
574
+ Drag to pan and scroll to zoom
575
+ </div>
576
+ <div class="controls">
577
+ <button id="reset" class="control-btn" title="Reset View">↺</button>
578
+ </div>
579
+ </div>
580
+ </body>
581
+ </html>`)},[o]),d.jsx("div",{className:"bg-background h-full max-w-[100vw] overflow-hidden p-4",children:d.jsx("iframe",{srcDoc:n,title:"Mermaid Diagram Preview",sandbox:"allow-scripts allow-same-origin allow-downloads",className:"h-full w-full border-none",onError:()=>t("Failed to load Mermaid content."),onLoad:()=>t(null)})})};/*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */function Cx(e){return typeof e>"u"||e===null}function eN(e){return typeof e=="object"&&e!==null}function tN(e){return Array.isArray(e)?e:Cx(e)?[]:[e]}function nN(e,t){var n,r,o,i;if(t)for(i=Object.keys(t),n=0,r=i.length;n<r;n+=1)o=i[n],e[o]=t[o];return e}function rN(e,t){var n="",r;for(r=0;r<t;r+=1)n+=e;return n}function oN(e){return e===0&&Number.NEGATIVE_INFINITY===1/e}var iN=Cx,sN=eN,aN=tN,lN=rN,cN=oN,uN=nN,Dt={isNothing:iN,isObject:sN,toArray:aN,repeat:lN,isNegativeZero:cN,extend:uN};function _x(e,t){var n="",r=e.reason||"(unknown reason)";return e.mark?(e.mark.name&&(n+='in "'+e.mark.name+'" '),n+="("+(e.mark.line+1)+":"+(e.mark.column+1)+")",!t&&e.mark.snippet&&(n+=`
582
+
583
+ `+e.mark.snippet),r+" "+n):r}function ji(e,t){Error.call(this),this.name="YAMLException",this.reason=e,this.mark=t,this.message=_x(this,!1),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack||""}ji.prototype=Object.create(Error.prototype);ji.prototype.constructor=ji;ji.prototype.toString=function(t){return this.name+": "+_x(this,t)};var Ht=ji;function Pl(e,t,n,r,o){var i="",s="",a=Math.floor(o/2)-1;return r-t>a&&(i=" ... ",t=r-a+i.length),n-r>a&&(s=" ...",n=r+a-s.length),{str:i+e.slice(t,n).replace(/\t/g,"→")+s,pos:r-t+i.length}}function Ol(e,t){return Dt.repeat(" ",t-e.length)+e}function dN(e,t){if(t=Object.create(t||null),!e.buffer)return null;t.maxLength||(t.maxLength=79),typeof t.indent!="number"&&(t.indent=1),typeof t.linesBefore!="number"&&(t.linesBefore=3),typeof t.linesAfter!="number"&&(t.linesAfter=2);for(var n=/\r?\n|\r|\0/g,r=[0],o=[],i,s=-1;i=n.exec(e.buffer);)o.push(i.index),r.push(i.index+i[0].length),e.position<=i.index&&s<0&&(s=r.length-2);s<0&&(s=r.length-1);var a="",l,c,u=Math.min(e.line+t.linesAfter,o.length).toString().length,f=t.maxLength-(t.indent+u+3);for(l=1;l<=t.linesBefore&&!(s-l<0);l++)c=Pl(e.buffer,r[s-l],o[s-l],e.position-(r[s]-r[s-l]),f),a=Dt.repeat(" ",t.indent)+Ol((e.line-l+1).toString(),u)+" | "+c.str+`
584
+ `+a;for(c=Pl(e.buffer,r[s],o[s],e.position,f),a+=Dt.repeat(" ",t.indent)+Ol((e.line+1).toString(),u)+" | "+c.str+`
585
+ `,a+=Dt.repeat("-",t.indent+u+3+c.pos)+`^
586
+ `,l=1;l<=t.linesAfter&&!(s+l>=o.length);l++)c=Pl(e.buffer,r[s+l],o[s+l],e.position-(r[s]-r[s+l]),f),a+=Dt.repeat(" ",t.indent)+Ol((e.line+l+1).toString(),u)+" | "+c.str+`
587
+ `;return a.replace(/\n$/,"")}var fN=dN,pN=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"],hN=["scalar","sequence","mapping"];function mN(e){var t={};return e!==null&&Object.keys(e).forEach(function(n){e[n].forEach(function(r){t[String(r)]=n})}),t}function gN(e,t){if(t=t||{},Object.keys(t).forEach(function(n){if(pN.indexOf(n)===-1)throw new Ht('Unknown option "'+n+'" is met in definition of "'+e+'" YAML type.')}),this.options=t,this.tag=e,this.kind=t.kind||null,this.resolve=t.resolve||function(){return!0},this.construct=t.construct||function(n){return n},this.instanceOf=t.instanceOf||null,this.predicate=t.predicate||null,this.represent=t.represent||null,this.representName=t.representName||null,this.defaultStyle=t.defaultStyle||null,this.multi=t.multi||!1,this.styleAliases=mN(t.styleAliases||null),hN.indexOf(this.kind)===-1)throw new Ht('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}var Ot=gN;function Of(e,t){var n=[];return e[t].forEach(function(r){var o=n.length;n.forEach(function(i,s){i.tag===r.tag&&i.kind===r.kind&&i.multi===r.multi&&(o=s)}),n[o]=r}),n}function xN(){var e={scalar:{},sequence:{},mapping:{},fallback:{},multi:{scalar:[],sequence:[],mapping:[],fallback:[]}},t,n;function r(o){o.multi?(e.multi[o.kind].push(o),e.multi.fallback.push(o)):e[o.kind][o.tag]=e.fallback[o.tag]=o}for(t=0,n=arguments.length;t<n;t+=1)arguments[t].forEach(r);return e}function wc(e){return this.extend(e)}wc.prototype.extend=function(t){var n=[],r=[];if(t instanceof Ot)r.push(t);else if(Array.isArray(t))r=r.concat(t);else if(t&&(Array.isArray(t.implicit)||Array.isArray(t.explicit)))t.implicit&&(n=n.concat(t.implicit)),t.explicit&&(r=r.concat(t.explicit));else throw new Ht("Schema.extend argument should be a Type, [ Type ], or a schema definition ({ implicit: [...], explicit: [...] })");n.forEach(function(i){if(!(i instanceof Ot))throw new Ht("Specified list of YAML types (or a single Type object) contains a non-Type object.");if(i.loadKind&&i.loadKind!=="scalar")throw new Ht("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.");if(i.multi)throw new Ht("There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.")}),r.forEach(function(i){if(!(i instanceof Ot))throw new Ht("Specified list of YAML types (or a single Type object) contains a non-Type object.")});var o=Object.create(wc.prototype);return o.implicit=(this.implicit||[]).concat(n),o.explicit=(this.explicit||[]).concat(r),o.compiledImplicit=Of(o,"implicit"),o.compiledExplicit=Of(o,"explicit"),o.compiledTypeMap=xN(o.compiledImplicit,o.compiledExplicit),o};var Tx=wc,Ax=new Ot("tag:yaml.org,2002:str",{kind:"scalar",construct:function(e){return e!==null?e:""}}),Nx=new Ot("tag:yaml.org,2002:seq",{kind:"sequence",construct:function(e){return e!==null?e:[]}}),Ix=new Ot("tag:yaml.org,2002:map",{kind:"mapping",construct:function(e){return e!==null?e:{}}}),jx=new Tx({explicit:[Ax,Nx,Ix]});function vN(e){if(e===null)return!0;var t=e.length;return t===1&&e==="~"||t===4&&(e==="null"||e==="Null"||e==="NULL")}function yN(){return null}function wN(e){return e===null}var Mx=new Ot("tag:yaml.org,2002:null",{kind:"scalar",resolve:vN,construct:yN,predicate:wN,represent:{canonical:function(){return"~"},lowercase:function(){return"null"},uppercase:function(){return"NULL"},camelcase:function(){return"Null"},empty:function(){return""}},defaultStyle:"lowercase"});function bN(e){if(e===null)return!1;var t=e.length;return t===4&&(e==="true"||e==="True"||e==="TRUE")||t===5&&(e==="false"||e==="False"||e==="FALSE")}function EN(e){return e==="true"||e==="True"||e==="TRUE"}function SN(e){return Object.prototype.toString.call(e)==="[object Boolean]"}var Rx=new Ot("tag:yaml.org,2002:bool",{kind:"scalar",resolve:bN,construct:EN,predicate:SN,represent:{lowercase:function(e){return e?"true":"false"},uppercase:function(e){return e?"TRUE":"FALSE"},camelcase:function(e){return e?"True":"False"}},defaultStyle:"lowercase"});function kN(e){return 48<=e&&e<=57||65<=e&&e<=70||97<=e&&e<=102}function CN(e){return 48<=e&&e<=55}function _N(e){return 48<=e&&e<=57}function TN(e){if(e===null)return!1;var t=e.length,n=0,r=!1,o;if(!t)return!1;if(o=e[n],(o==="-"||o==="+")&&(o=e[++n]),o==="0"){if(n+1===t)return!0;if(o=e[++n],o==="b"){for(n++;n<t;n++)if(o=e[n],o!=="_"){if(o!=="0"&&o!=="1")return!1;r=!0}return r&&o!=="_"}if(o==="x"){for(n++;n<t;n++)if(o=e[n],o!=="_"){if(!kN(e.charCodeAt(n)))return!1;r=!0}return r&&o!=="_"}if(o==="o"){for(n++;n<t;n++)if(o=e[n],o!=="_"){if(!CN(e.charCodeAt(n)))return!1;r=!0}return r&&o!=="_"}}if(o==="_")return!1;for(;n<t;n++)if(o=e[n],o!=="_"){if(!_N(e.charCodeAt(n)))return!1;r=!0}return!(!r||o==="_")}function AN(e){var t=e,n=1,r;if(t.indexOf("_")!==-1&&(t=t.replace(/_/g,"")),r=t[0],(r==="-"||r==="+")&&(r==="-"&&(n=-1),t=t.slice(1),r=t[0]),t==="0")return 0;if(r==="0"){if(t[1]==="b")return n*parseInt(t.slice(2),2);if(t[1]==="x")return n*parseInt(t.slice(2),16);if(t[1]==="o")return n*parseInt(t.slice(2),8)}return n*parseInt(t,10)}function NN(e){return Object.prototype.toString.call(e)==="[object Number]"&&e%1===0&&!Dt.isNegativeZero(e)}var Dx=new Ot("tag:yaml.org,2002:int",{kind:"scalar",resolve:TN,construct:AN,predicate:NN,represent:{binary:function(e){return e>=0?"0b"+e.toString(2):"-0b"+e.toString(2).slice(1)},octal:function(e){return e>=0?"0o"+e.toString(8):"-0o"+e.toString(8).slice(1)},decimal:function(e){return e.toString(10)},hexadecimal:function(e){return e>=0?"0x"+e.toString(16).toUpperCase():"-0x"+e.toString(16).toUpperCase().slice(1)}},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}}),IN=new RegExp("^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");function jN(e){return!(e===null||!IN.test(e)||e[e.length-1]==="_")}function MN(e){var t,n;return t=e.replace(/_/g,"").toLowerCase(),n=t[0]==="-"?-1:1,"+-".indexOf(t[0])>=0&&(t=t.slice(1)),t===".inf"?n===1?Number.POSITIVE_INFINITY:Number.NEGATIVE_INFINITY:t===".nan"?NaN:n*parseFloat(t,10)}var RN=/^[-+]?[0-9]+e/;function DN(e,t){var n;if(isNaN(e))switch(t){case"lowercase":return".nan";case"uppercase":return".NAN";case"camelcase":return".NaN"}else if(Number.POSITIVE_INFINITY===e)switch(t){case"lowercase":return".inf";case"uppercase":return".INF";case"camelcase":return".Inf"}else if(Number.NEGATIVE_INFINITY===e)switch(t){case"lowercase":return"-.inf";case"uppercase":return"-.INF";case"camelcase":return"-.Inf"}else if(Dt.isNegativeZero(e))return"-0.0";return n=e.toString(10),RN.test(n)?n.replace("e",".e"):n}function PN(e){return Object.prototype.toString.call(e)==="[object Number]"&&(e%1!==0||Dt.isNegativeZero(e))}var Px=new Ot("tag:yaml.org,2002:float",{kind:"scalar",resolve:jN,construct:MN,predicate:PN,represent:DN,defaultStyle:"lowercase"}),Ox=jx.extend({implicit:[Mx,Rx,Dx,Px]}),Lx=Ox,$x=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),zx=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$");function ON(e){return e===null?!1:$x.exec(e)!==null||zx.exec(e)!==null}function LN(e){var t,n,r,o,i,s,a,l=0,c=null,u,f,p;if(t=$x.exec(e),t===null&&(t=zx.exec(e)),t===null)throw new Error("Date resolve error");if(n=+t[1],r=+t[2]-1,o=+t[3],!t[4])return new Date(Date.UTC(n,r,o));if(i=+t[4],s=+t[5],a=+t[6],t[7]){for(l=t[7].slice(0,3);l.length<3;)l+="0";l=+l}return t[9]&&(u=+t[10],f=+(t[11]||0),c=(u*60+f)*6e4,t[9]==="-"&&(c=-c)),p=new Date(Date.UTC(n,r,o,i,s,a,l)),c&&p.setTime(p.getTime()-c),p}function $N(e){return e.toISOString()}var Fx=new Ot("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:ON,construct:LN,instanceOf:Date,represent:$N});function zN(e){return e==="<<"||e===null}var Bx=new Ot("tag:yaml.org,2002:merge",{kind:"scalar",resolve:zN}),Hu=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=
588
+ \r`;function FN(e){if(e===null)return!1;var t,n,r=0,o=e.length,i=Hu;for(n=0;n<o;n++)if(t=i.indexOf(e.charAt(n)),!(t>64)){if(t<0)return!1;r+=6}return r%8===0}function BN(e){var t,n,r=e.replace(/[\r\n=]/g,""),o=r.length,i=Hu,s=0,a=[];for(t=0;t<o;t++)t%4===0&&t&&(a.push(s>>16&255),a.push(s>>8&255),a.push(s&255)),s=s<<6|i.indexOf(r.charAt(t));return n=o%4*6,n===0?(a.push(s>>16&255),a.push(s>>8&255),a.push(s&255)):n===18?(a.push(s>>10&255),a.push(s>>2&255)):n===12&&a.push(s>>4&255),new Uint8Array(a)}function HN(e){var t="",n=0,r,o,i=e.length,s=Hu;for(r=0;r<i;r++)r%3===0&&r&&(t+=s[n>>18&63],t+=s[n>>12&63],t+=s[n>>6&63],t+=s[n&63]),n=(n<<8)+e[r];return o=i%3,o===0?(t+=s[n>>18&63],t+=s[n>>12&63],t+=s[n>>6&63],t+=s[n&63]):o===2?(t+=s[n>>10&63],t+=s[n>>4&63],t+=s[n<<2&63],t+=s[64]):o===1&&(t+=s[n>>2&63],t+=s[n<<4&63],t+=s[64],t+=s[64]),t}function UN(e){return Object.prototype.toString.call(e)==="[object Uint8Array]"}var Hx=new Ot("tag:yaml.org,2002:binary",{kind:"scalar",resolve:FN,construct:BN,predicate:UN,represent:HN}),VN=Object.prototype.hasOwnProperty,WN=Object.prototype.toString;function GN(e){if(e===null)return!0;var t=[],n,r,o,i,s,a=e;for(n=0,r=a.length;n<r;n+=1){if(o=a[n],s=!1,WN.call(o)!=="[object Object]")return!1;for(i in o)if(VN.call(o,i))if(!s)s=!0;else return!1;if(!s)return!1;if(t.indexOf(i)===-1)t.push(i);else return!1}return!0}function YN(e){return e!==null?e:[]}var Ux=new Ot("tag:yaml.org,2002:omap",{kind:"sequence",resolve:GN,construct:YN}),qN=Object.prototype.toString;function KN(e){if(e===null)return!0;var t,n,r,o,i,s=e;for(i=new Array(s.length),t=0,n=s.length;t<n;t+=1){if(r=s[t],qN.call(r)!=="[object Object]"||(o=Object.keys(r),o.length!==1))return!1;i[t]=[o[0],r[o[0]]]}return!0}function XN(e){if(e===null)return[];var t,n,r,o,i,s=e;for(i=new Array(s.length),t=0,n=s.length;t<n;t+=1)r=s[t],o=Object.keys(r),i[t]=[o[0],r[o[0]]];return i}var Vx=new Ot("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:KN,construct:XN}),ZN=Object.prototype.hasOwnProperty;function QN(e){if(e===null)return!0;var t,n=e;for(t in n)if(ZN.call(n,t)&&n[t]!==null)return!1;return!0}function JN(e){return e!==null?e:{}}var Wx=new Ot("tag:yaml.org,2002:set",{kind:"mapping",resolve:QN,construct:JN}),Uu=Lx.extend({implicit:[Fx,Bx],explicit:[Hx,Ux,Vx,Wx]}),ur=Object.prototype.hasOwnProperty,oa=1,Gx=2,Yx=3,ia=4,Ll=1,e2=2,Lf=3,t2=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n2=/[\x85\u2028\u2029]/,r2=/[,\[\]\{\}]/,qx=/^(?:!|!!|![a-z\-]+!)$/i,Kx=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;function $f(e){return Object.prototype.toString.call(e)}function An(e){return e===10||e===13}function Tr(e){return e===9||e===32}function Yt(e){return e===9||e===32||e===10||e===13}function uo(e){return e===44||e===91||e===93||e===123||e===125}function o2(e){var t;return 48<=e&&e<=57?e-48:(t=e|32,97<=t&&t<=102?t-97+10:-1)}function i2(e){return e===120?2:e===117?4:e===85?8:0}function s2(e){return 48<=e&&e<=57?e-48:-1}function zf(e){return e===48?"\0":e===97?"\x07":e===98?"\b":e===116||e===9?" ":e===110?`
589
+ `:e===118?"\v":e===102?"\f":e===114?"\r":e===101?"\x1B":e===32?" ":e===34?'"':e===47?"/":e===92?"\\":e===78?"…":e===95?" ":e===76?"\u2028":e===80?"\u2029":""}function a2(e){return e<=65535?String.fromCharCode(e):String.fromCharCode((e-65536>>10)+55296,(e-65536&1023)+56320)}var Xx=new Array(256),Zx=new Array(256);for(var to=0;to<256;to++)Xx[to]=zf(to)?1:0,Zx[to]=zf(to);function l2(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||Uu,this.onWarning=t.onWarning||null,this.legacy=t.legacy||!1,this.json=t.json||!1,this.listener=t.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typeMap=this.schema.compiledTypeMap,this.length=e.length,this.position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.firstTabInLine=-1,this.documents=[]}function Qx(e,t){var n={name:e.filename,buffer:e.input.slice(0,-1),position:e.position,line:e.line,column:e.position-e.lineStart};return n.snippet=fN(n),new Ht(t,n)}function ke(e,t){throw Qx(e,t)}function sa(e,t){e.onWarning&&e.onWarning.call(null,Qx(e,t))}var Ff={YAML:function(t,n,r){var o,i,s;t.version!==null&&ke(t,"duplication of %YAML directive"),r.length!==1&&ke(t,"YAML directive accepts exactly one argument"),o=/^([0-9]+)\.([0-9]+)$/.exec(r[0]),o===null&&ke(t,"ill-formed argument of the YAML directive"),i=parseInt(o[1],10),s=parseInt(o[2],10),i!==1&&ke(t,"unacceptable YAML version of the document"),t.version=r[0],t.checkLineBreaks=s<2,s!==1&&s!==2&&sa(t,"unsupported YAML version of the document")},TAG:function(t,n,r){var o,i;r.length!==2&&ke(t,"TAG directive accepts exactly two arguments"),o=r[0],i=r[1],qx.test(o)||ke(t,"ill-formed tag handle (first argument) of the TAG directive"),ur.call(t.tagMap,o)&&ke(t,'there is a previously declared suffix for "'+o+'" tag handle'),Kx.test(i)||ke(t,"ill-formed tag prefix (second argument) of the TAG directive");try{i=decodeURIComponent(i)}catch{ke(t,"tag prefix is malformed: "+i)}t.tagMap[o]=i}};function ir(e,t,n,r){var o,i,s,a;if(t<n){if(a=e.input.slice(t,n),r)for(o=0,i=a.length;o<i;o+=1)s=a.charCodeAt(o),s===9||32<=s&&s<=1114111||ke(e,"expected valid JSON character");else t2.test(a)&&ke(e,"the stream contains non-printable characters");e.result+=a}}function Bf(e,t,n,r){var o,i,s,a;for(Dt.isObject(n)||ke(e,"cannot merge mappings; the provided source object is unacceptable"),o=Object.keys(n),s=0,a=o.length;s<a;s+=1)i=o[s],ur.call(t,i)||(t[i]=n[i],r[i]=!0)}function fo(e,t,n,r,o,i,s,a,l){var c,u;if(Array.isArray(o))for(o=Array.prototype.slice.call(o),c=0,u=o.length;c<u;c+=1)Array.isArray(o[c])&&ke(e,"nested arrays are not supported inside keys"),typeof o=="object"&&$f(o[c])==="[object Object]"&&(o[c]="[object Object]");if(typeof o=="object"&&$f(o)==="[object Object]"&&(o="[object Object]"),o=String(o),t===null&&(t={}),r==="tag:yaml.org,2002:merge")if(Array.isArray(i))for(c=0,u=i.length;c<u;c+=1)Bf(e,t,i[c],n);else Bf(e,t,i,n);else!e.json&&!ur.call(n,o)&&ur.call(t,o)&&(e.line=s||e.line,e.lineStart=a||e.lineStart,e.position=l||e.position,ke(e,"duplicated mapping key")),o==="__proto__"?Object.defineProperty(t,o,{configurable:!0,enumerable:!0,writable:!0,value:i}):t[o]=i,delete n[o];return t}function Vu(e){var t;t=e.input.charCodeAt(e.position),t===10?e.position++:t===13?(e.position++,e.input.charCodeAt(e.position)===10&&e.position++):ke(e,"a line break is expected"),e.line+=1,e.lineStart=e.position,e.firstTabInLine=-1}function At(e,t,n){for(var r=0,o=e.input.charCodeAt(e.position);o!==0;){for(;Tr(o);)o===9&&e.firstTabInLine===-1&&(e.firstTabInLine=e.position),o=e.input.charCodeAt(++e.position);if(t&&o===35)do o=e.input.charCodeAt(++e.position);while(o!==10&&o!==13&&o!==0);if(An(o))for(Vu(e),o=e.input.charCodeAt(e.position),r++,e.lineIndent=0;o===32;)e.lineIndent++,o=e.input.charCodeAt(++e.position);else break}return n!==-1&&r!==0&&e.lineIndent<n&&sa(e,"deficient indentation"),r}function Ga(e){var t=e.position,n;return n=e.input.charCodeAt(t),!!((n===45||n===46)&&n===e.input.charCodeAt(t+1)&&n===e.input.charCodeAt(t+2)&&(t+=3,n=e.input.charCodeAt(t),n===0||Yt(n)))}function Wu(e,t){t===1?e.result+=" ":t>1&&(e.result+=Dt.repeat(`
590
+ `,t-1))}function c2(e,t,n){var r,o,i,s,a,l,c,u,f=e.kind,p=e.result,h;if(h=e.input.charCodeAt(e.position),Yt(h)||uo(h)||h===35||h===38||h===42||h===33||h===124||h===62||h===39||h===34||h===37||h===64||h===96||(h===63||h===45)&&(o=e.input.charCodeAt(e.position+1),Yt(o)||n&&uo(o)))return!1;for(e.kind="scalar",e.result="",i=s=e.position,a=!1;h!==0;){if(h===58){if(o=e.input.charCodeAt(e.position+1),Yt(o)||n&&uo(o))break}else if(h===35){if(r=e.input.charCodeAt(e.position-1),Yt(r))break}else{if(e.position===e.lineStart&&Ga(e)||n&&uo(h))break;if(An(h))if(l=e.line,c=e.lineStart,u=e.lineIndent,At(e,!1,-1),e.lineIndent>=t){a=!0,h=e.input.charCodeAt(e.position);continue}else{e.position=s,e.line=l,e.lineStart=c,e.lineIndent=u;break}}a&&(ir(e,i,s,!1),Wu(e,e.line-l),i=s=e.position,a=!1),Tr(h)||(s=e.position+1),h=e.input.charCodeAt(++e.position)}return ir(e,i,s,!1),e.result?!0:(e.kind=f,e.result=p,!1)}function u2(e,t){var n,r,o;if(n=e.input.charCodeAt(e.position),n!==39)return!1;for(e.kind="scalar",e.result="",e.position++,r=o=e.position;(n=e.input.charCodeAt(e.position))!==0;)if(n===39)if(ir(e,r,e.position,!0),n=e.input.charCodeAt(++e.position),n===39)r=e.position,e.position++,o=e.position;else return!0;else An(n)?(ir(e,r,o,!0),Wu(e,At(e,!1,t)),r=o=e.position):e.position===e.lineStart&&Ga(e)?ke(e,"unexpected end of the document within a single quoted scalar"):(e.position++,o=e.position);ke(e,"unexpected end of the stream within a single quoted scalar")}function d2(e,t){var n,r,o,i,s,a;if(a=e.input.charCodeAt(e.position),a!==34)return!1;for(e.kind="scalar",e.result="",e.position++,n=r=e.position;(a=e.input.charCodeAt(e.position))!==0;){if(a===34)return ir(e,n,e.position,!0),e.position++,!0;if(a===92){if(ir(e,n,e.position,!0),a=e.input.charCodeAt(++e.position),An(a))At(e,!1,t);else if(a<256&&Xx[a])e.result+=Zx[a],e.position++;else if((s=i2(a))>0){for(o=s,i=0;o>0;o--)a=e.input.charCodeAt(++e.position),(s=o2(a))>=0?i=(i<<4)+s:ke(e,"expected hexadecimal character");e.result+=a2(i),e.position++}else ke(e,"unknown escape sequence");n=r=e.position}else An(a)?(ir(e,n,r,!0),Wu(e,At(e,!1,t)),n=r=e.position):e.position===e.lineStart&&Ga(e)?ke(e,"unexpected end of the document within a double quoted scalar"):(e.position++,r=e.position)}ke(e,"unexpected end of the stream within a double quoted scalar")}function f2(e,t){var n=!0,r,o,i,s=e.tag,a,l=e.anchor,c,u,f,p,h,x=Object.create(null),g,v,y,b;if(b=e.input.charCodeAt(e.position),b===91)u=93,h=!1,a=[];else if(b===123)u=125,h=!0,a={};else return!1;for(e.anchor!==null&&(e.anchorMap[e.anchor]=a),b=e.input.charCodeAt(++e.position);b!==0;){if(At(e,!0,t),b=e.input.charCodeAt(e.position),b===u)return e.position++,e.tag=s,e.anchor=l,e.kind=h?"mapping":"sequence",e.result=a,!0;n?b===44&&ke(e,"expected the node content, but found ','"):ke(e,"missed comma between flow collection entries"),v=g=y=null,f=p=!1,b===63&&(c=e.input.charCodeAt(e.position+1),Yt(c)&&(f=p=!0,e.position++,At(e,!0,t))),r=e.line,o=e.lineStart,i=e.position,Co(e,t,oa,!1,!0),v=e.tag,g=e.result,At(e,!0,t),b=e.input.charCodeAt(e.position),(p||e.line===r)&&b===58&&(f=!0,b=e.input.charCodeAt(++e.position),At(e,!0,t),Co(e,t,oa,!1,!0),y=e.result),h?fo(e,a,x,v,g,y,r,o,i):f?a.push(fo(e,null,x,v,g,y,r,o,i)):a.push(g),At(e,!0,t),b=e.input.charCodeAt(e.position),b===44?(n=!0,b=e.input.charCodeAt(++e.position)):n=!1}ke(e,"unexpected end of the stream within a flow collection")}function p2(e,t){var n,r,o=Ll,i=!1,s=!1,a=t,l=0,c=!1,u,f;if(f=e.input.charCodeAt(e.position),f===124)r=!1;else if(f===62)r=!0;else return!1;for(e.kind="scalar",e.result="";f!==0;)if(f=e.input.charCodeAt(++e.position),f===43||f===45)Ll===o?o=f===43?Lf:e2:ke(e,"repeat of a chomping mode identifier");else if((u=s2(f))>=0)u===0?ke(e,"bad explicit indentation width of a block scalar; it cannot be less than one"):s?ke(e,"repeat of an indentation width identifier"):(a=t+u-1,s=!0);else break;if(Tr(f)){do f=e.input.charCodeAt(++e.position);while(Tr(f));if(f===35)do f=e.input.charCodeAt(++e.position);while(!An(f)&&f!==0)}for(;f!==0;){for(Vu(e),e.lineIndent=0,f=e.input.charCodeAt(e.position);(!s||e.lineIndent<a)&&f===32;)e.lineIndent++,f=e.input.charCodeAt(++e.position);if(!s&&e.lineIndent>a&&(a=e.lineIndent),An(f)){l++;continue}if(e.lineIndent<a){o===Lf?e.result+=Dt.repeat(`
591
+ `,i?1+l:l):o===Ll&&i&&(e.result+=`
592
+ `);break}for(r?Tr(f)?(c=!0,e.result+=Dt.repeat(`
593
+ `,i?1+l:l)):c?(c=!1,e.result+=Dt.repeat(`
594
+ `,l+1)):l===0?i&&(e.result+=" "):e.result+=Dt.repeat(`
595
+ `,l):e.result+=Dt.repeat(`
596
+ `,i?1+l:l),i=!0,s=!0,l=0,n=e.position;!An(f)&&f!==0;)f=e.input.charCodeAt(++e.position);ir(e,n,e.position,!1)}return!0}function Hf(e,t){var n,r=e.tag,o=e.anchor,i=[],s,a=!1,l;if(e.firstTabInLine!==-1)return!1;for(e.anchor!==null&&(e.anchorMap[e.anchor]=i),l=e.input.charCodeAt(e.position);l!==0&&(e.firstTabInLine!==-1&&(e.position=e.firstTabInLine,ke(e,"tab characters must not be used in indentation")),!(l!==45||(s=e.input.charCodeAt(e.position+1),!Yt(s))));){if(a=!0,e.position++,At(e,!0,-1)&&e.lineIndent<=t){i.push(null),l=e.input.charCodeAt(e.position);continue}if(n=e.line,Co(e,t,Yx,!1,!0),i.push(e.result),At(e,!0,-1),l=e.input.charCodeAt(e.position),(e.line===n||e.lineIndent>t)&&l!==0)ke(e,"bad indentation of a sequence entry");else if(e.lineIndent<t)break}return a?(e.tag=r,e.anchor=o,e.kind="sequence",e.result=i,!0):!1}function h2(e,t,n){var r,o,i,s,a,l,c=e.tag,u=e.anchor,f={},p=Object.create(null),h=null,x=null,g=null,v=!1,y=!1,b;if(e.firstTabInLine!==-1)return!1;for(e.anchor!==null&&(e.anchorMap[e.anchor]=f),b=e.input.charCodeAt(e.position);b!==0;){if(!v&&e.firstTabInLine!==-1&&(e.position=e.firstTabInLine,ke(e,"tab characters must not be used in indentation")),r=e.input.charCodeAt(e.position+1),i=e.line,(b===63||b===58)&&Yt(r))b===63?(v&&(fo(e,f,p,h,x,null,s,a,l),h=x=g=null),y=!0,v=!0,o=!0):v?(v=!1,o=!0):ke(e,"incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line"),e.position+=1,b=r;else{if(s=e.line,a=e.lineStart,l=e.position,!Co(e,n,Gx,!1,!0))break;if(e.line===i){for(b=e.input.charCodeAt(e.position);Tr(b);)b=e.input.charCodeAt(++e.position);if(b===58)b=e.input.charCodeAt(++e.position),Yt(b)||ke(e,"a whitespace character is expected after the key-value separator within a block mapping"),v&&(fo(e,f,p,h,x,null,s,a,l),h=x=g=null),y=!0,v=!1,o=!1,h=e.tag,x=e.result;else if(y)ke(e,"can not read an implicit mapping pair; a colon is missed");else return e.tag=c,e.anchor=u,!0}else if(y)ke(e,"can not read a block mapping entry; a multiline key may not be an implicit key");else return e.tag=c,e.anchor=u,!0}if((e.line===i||e.lineIndent>t)&&(v&&(s=e.line,a=e.lineStart,l=e.position),Co(e,t,ia,!0,o)&&(v?x=e.result:g=e.result),v||(fo(e,f,p,h,x,g,s,a,l),h=x=g=null),At(e,!0,-1),b=e.input.charCodeAt(e.position)),(e.line===i||e.lineIndent>t)&&b!==0)ke(e,"bad indentation of a mapping entry");else if(e.lineIndent<t)break}return v&&fo(e,f,p,h,x,null,s,a,l),y&&(e.tag=c,e.anchor=u,e.kind="mapping",e.result=f),y}function m2(e){var t,n=!1,r=!1,o,i,s;if(s=e.input.charCodeAt(e.position),s!==33)return!1;if(e.tag!==null&&ke(e,"duplication of a tag property"),s=e.input.charCodeAt(++e.position),s===60?(n=!0,s=e.input.charCodeAt(++e.position)):s===33?(r=!0,o="!!",s=e.input.charCodeAt(++e.position)):o="!",t=e.position,n){do s=e.input.charCodeAt(++e.position);while(s!==0&&s!==62);e.position<e.length?(i=e.input.slice(t,e.position),s=e.input.charCodeAt(++e.position)):ke(e,"unexpected end of the stream within a verbatim tag")}else{for(;s!==0&&!Yt(s);)s===33&&(r?ke(e,"tag suffix cannot contain exclamation marks"):(o=e.input.slice(t-1,e.position+1),qx.test(o)||ke(e,"named tag handle cannot contain such characters"),r=!0,t=e.position+1)),s=e.input.charCodeAt(++e.position);i=e.input.slice(t,e.position),r2.test(i)&&ke(e,"tag suffix cannot contain flow indicator characters")}i&&!Kx.test(i)&&ke(e,"tag name cannot contain such characters: "+i);try{i=decodeURIComponent(i)}catch{ke(e,"tag name is malformed: "+i)}return n?e.tag=i:ur.call(e.tagMap,o)?e.tag=e.tagMap[o]+i:o==="!"?e.tag="!"+i:o==="!!"?e.tag="tag:yaml.org,2002:"+i:ke(e,'undeclared tag handle "'+o+'"'),!0}function g2(e){var t,n;if(n=e.input.charCodeAt(e.position),n!==38)return!1;for(e.anchor!==null&&ke(e,"duplication of an anchor property"),n=e.input.charCodeAt(++e.position),t=e.position;n!==0&&!Yt(n)&&!uo(n);)n=e.input.charCodeAt(++e.position);return e.position===t&&ke(e,"name of an anchor node must contain at least one character"),e.anchor=e.input.slice(t,e.position),!0}function x2(e){var t,n,r;if(r=e.input.charCodeAt(e.position),r!==42)return!1;for(r=e.input.charCodeAt(++e.position),t=e.position;r!==0&&!Yt(r)&&!uo(r);)r=e.input.charCodeAt(++e.position);return e.position===t&&ke(e,"name of an alias node must contain at least one character"),n=e.input.slice(t,e.position),ur.call(e.anchorMap,n)||ke(e,'unidentified alias "'+n+'"'),e.result=e.anchorMap[n],At(e,!0,-1),!0}function Co(e,t,n,r,o){var i,s,a,l=1,c=!1,u=!1,f,p,h,x,g,v;if(e.listener!==null&&e.listener("open",e),e.tag=null,e.anchor=null,e.kind=null,e.result=null,i=s=a=ia===n||Yx===n,r&&At(e,!0,-1)&&(c=!0,e.lineIndent>t?l=1:e.lineIndent===t?l=0:e.lineIndent<t&&(l=-1)),l===1)for(;m2(e)||g2(e);)At(e,!0,-1)?(c=!0,a=i,e.lineIndent>t?l=1:e.lineIndent===t?l=0:e.lineIndent<t&&(l=-1)):a=!1;if(a&&(a=c||o),(l===1||ia===n)&&(oa===n||Gx===n?g=t:g=t+1,v=e.position-e.lineStart,l===1?a&&(Hf(e,v)||h2(e,v,g))||f2(e,g)?u=!0:(s&&p2(e,g)||u2(e,g)||d2(e,g)?u=!0:x2(e)?(u=!0,(e.tag!==null||e.anchor!==null)&&ke(e,"alias node should not have any properties")):c2(e,g,oa===n)&&(u=!0,e.tag===null&&(e.tag="?")),e.anchor!==null&&(e.anchorMap[e.anchor]=e.result)):l===0&&(u=a&&Hf(e,v))),e.tag===null)e.anchor!==null&&(e.anchorMap[e.anchor]=e.result);else if(e.tag==="?"){for(e.result!==null&&e.kind!=="scalar"&&ke(e,'unacceptable node kind for !<?> tag; it should be "scalar", not "'+e.kind+'"'),f=0,p=e.implicitTypes.length;f<p;f+=1)if(x=e.implicitTypes[f],x.resolve(e.result)){e.result=x.construct(e.result),e.tag=x.tag,e.anchor!==null&&(e.anchorMap[e.anchor]=e.result);break}}else if(e.tag!=="!"){if(ur.call(e.typeMap[e.kind||"fallback"],e.tag))x=e.typeMap[e.kind||"fallback"][e.tag];else for(x=null,h=e.typeMap.multi[e.kind||"fallback"],f=0,p=h.length;f<p;f+=1)if(e.tag.slice(0,h[f].tag.length)===h[f].tag){x=h[f];break}x||ke(e,"unknown tag !<"+e.tag+">"),e.result!==null&&x.kind!==e.kind&&ke(e,"unacceptable node kind for !<"+e.tag+'> tag; it should be "'+x.kind+'", not "'+e.kind+'"'),x.resolve(e.result,e.tag)?(e.result=x.construct(e.result,e.tag),e.anchor!==null&&(e.anchorMap[e.anchor]=e.result)):ke(e,"cannot resolve a node with !<"+e.tag+"> explicit tag")}return e.listener!==null&&e.listener("close",e),e.tag!==null||e.anchor!==null||u}function v2(e){var t=e.position,n,r,o,i=!1,s;for(e.version=null,e.checkLineBreaks=e.legacy,e.tagMap=Object.create(null),e.anchorMap=Object.create(null);(s=e.input.charCodeAt(e.position))!==0&&(At(e,!0,-1),s=e.input.charCodeAt(e.position),!(e.lineIndent>0||s!==37));){for(i=!0,s=e.input.charCodeAt(++e.position),n=e.position;s!==0&&!Yt(s);)s=e.input.charCodeAt(++e.position);for(r=e.input.slice(n,e.position),o=[],r.length<1&&ke(e,"directive name must not be less than one character in length");s!==0;){for(;Tr(s);)s=e.input.charCodeAt(++e.position);if(s===35){do s=e.input.charCodeAt(++e.position);while(s!==0&&!An(s));break}if(An(s))break;for(n=e.position;s!==0&&!Yt(s);)s=e.input.charCodeAt(++e.position);o.push(e.input.slice(n,e.position))}s!==0&&Vu(e),ur.call(Ff,r)?Ff[r](e,r,o):sa(e,'unknown document directive "'+r+'"')}if(At(e,!0,-1),e.lineIndent===0&&e.input.charCodeAt(e.position)===45&&e.input.charCodeAt(e.position+1)===45&&e.input.charCodeAt(e.position+2)===45?(e.position+=3,At(e,!0,-1)):i&&ke(e,"directives end mark is expected"),Co(e,e.lineIndent-1,ia,!1,!0),At(e,!0,-1),e.checkLineBreaks&&n2.test(e.input.slice(t,e.position))&&sa(e,"non-ASCII line breaks are interpreted as content"),e.documents.push(e.result),e.position===e.lineStart&&Ga(e)){e.input.charCodeAt(e.position)===46&&(e.position+=3,At(e,!0,-1));return}if(e.position<e.length-1)ke(e,"end of the stream or a document separator is expected");else return}function Jx(e,t){e=String(e),t=t||{},e.length!==0&&(e.charCodeAt(e.length-1)!==10&&e.charCodeAt(e.length-1)!==13&&(e+=`
597
+ `),e.charCodeAt(0)===65279&&(e=e.slice(1)));var n=new l2(e,t),r=e.indexOf("\0");for(r!==-1&&(n.position=r,ke(n,"null byte is not allowed in input")),n.input+="\0";n.input.charCodeAt(n.position)===32;)n.lineIndent+=1,n.position+=1;for(;n.position<n.length-1;)v2(n);return n.documents}function y2(e,t,n){t!==null&&typeof t=="object"&&typeof n>"u"&&(n=t,t=null);var r=Jx(e,n);if(typeof t!="function")return r;for(var o=0,i=r.length;o<i;o+=1)t(r[o])}function w2(e,t){var n=Jx(e,t);if(n.length!==0){if(n.length===1)return n[0];throw new Ht("expected a single document in the stream, but found more")}}var b2=y2,E2=w2,ev={loadAll:b2,load:E2},tv=Object.prototype.toString,nv=Object.prototype.hasOwnProperty,Gu=65279,S2=9,Mi=10,k2=13,C2=32,_2=33,T2=34,bc=35,A2=37,N2=38,I2=39,j2=42,rv=44,M2=45,aa=58,R2=61,D2=62,P2=63,O2=64,ov=91,iv=93,L2=96,sv=123,$2=124,av=125,Ft={};Ft[0]="\\0";Ft[7]="\\a";Ft[8]="\\b";Ft[9]="\\t";Ft[10]="\\n";Ft[11]="\\v";Ft[12]="\\f";Ft[13]="\\r";Ft[27]="\\e";Ft[34]='\\"';Ft[92]="\\\\";Ft[133]="\\N";Ft[160]="\\_";Ft[8232]="\\L";Ft[8233]="\\P";var z2=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"],F2=/^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;function B2(e,t){var n,r,o,i,s,a,l;if(t===null)return{};for(n={},r=Object.keys(t),o=0,i=r.length;o<i;o+=1)s=r[o],a=String(t[s]),s.slice(0,2)==="!!"&&(s="tag:yaml.org,2002:"+s.slice(2)),l=e.compiledTypeMap.fallback[s],l&&nv.call(l.styleAliases,a)&&(a=l.styleAliases[a]),n[s]=a;return n}function H2(e){var t,n,r;if(t=e.toString(16).toUpperCase(),e<=255)n="x",r=2;else if(e<=65535)n="u",r=4;else if(e<=4294967295)n="U",r=8;else throw new Ht("code point within a string may not be greater than 0xFFFFFFFF");return"\\"+n+Dt.repeat("0",r-t.length)+t}var U2=1,Ri=2;function V2(e){this.schema=e.schema||Uu,this.indent=Math.max(1,e.indent||2),this.noArrayIndent=e.noArrayIndent||!1,this.skipInvalid=e.skipInvalid||!1,this.flowLevel=Dt.isNothing(e.flowLevel)?-1:e.flowLevel,this.styleMap=B2(this.schema,e.styles||null),this.sortKeys=e.sortKeys||!1,this.lineWidth=e.lineWidth||80,this.noRefs=e.noRefs||!1,this.noCompatMode=e.noCompatMode||!1,this.condenseFlow=e.condenseFlow||!1,this.quotingType=e.quotingType==='"'?Ri:U2,this.forceQuotes=e.forceQuotes||!1,this.replacer=typeof e.replacer=="function"?e.replacer:null,this.implicitTypes=this.schema.compiledImplicit,this.explicitTypes=this.schema.compiledExplicit,this.tag=null,this.result="",this.duplicates=[],this.usedDuplicates=null}function Uf(e,t){for(var n=Dt.repeat(" ",t),r=0,o=-1,i="",s,a=e.length;r<a;)o=e.indexOf(`
598
+ `,r),o===-1?(s=e.slice(r),r=a):(s=e.slice(r,o+1),r=o+1),s.length&&s!==`
599
+ `&&(i+=n),i+=s;return i}function Ec(e,t){return`
600
+ `+Dt.repeat(" ",e.indent*t)}function W2(e,t){var n,r,o;for(n=0,r=e.implicitTypes.length;n<r;n+=1)if(o=e.implicitTypes[n],o.resolve(t))return!0;return!1}function la(e){return e===C2||e===S2}function Di(e){return 32<=e&&e<=126||161<=e&&e<=55295&&e!==8232&&e!==8233||57344<=e&&e<=65533&&e!==Gu||65536<=e&&e<=1114111}function Vf(e){return Di(e)&&e!==Gu&&e!==k2&&e!==Mi}function Wf(e,t,n){var r=Vf(e),o=r&&!la(e);return(n?r:r&&e!==rv&&e!==ov&&e!==iv&&e!==sv&&e!==av)&&e!==bc&&!(t===aa&&!o)||Vf(t)&&!la(t)&&e===bc||t===aa&&o}function G2(e){return Di(e)&&e!==Gu&&!la(e)&&e!==M2&&e!==P2&&e!==aa&&e!==rv&&e!==ov&&e!==iv&&e!==sv&&e!==av&&e!==bc&&e!==N2&&e!==j2&&e!==_2&&e!==$2&&e!==R2&&e!==D2&&e!==I2&&e!==T2&&e!==A2&&e!==O2&&e!==L2}function Y2(e){return!la(e)&&e!==aa}function yi(e,t){var n=e.charCodeAt(t),r;return n>=55296&&n<=56319&&t+1<e.length&&(r=e.charCodeAt(t+1),r>=56320&&r<=57343)?(n-55296)*1024+r-56320+65536:n}function lv(e){var t=/^\n* /;return t.test(e)}var cv=1,Sc=2,uv=3,dv=4,ao=5;function q2(e,t,n,r,o,i,s,a){var l,c=0,u=null,f=!1,p=!1,h=r!==-1,x=-1,g=G2(yi(e,0))&&Y2(yi(e,e.length-1));if(t||s)for(l=0;l<e.length;c>=65536?l+=2:l++){if(c=yi(e,l),!Di(c))return ao;g=g&&Wf(c,u,a),u=c}else{for(l=0;l<e.length;c>=65536?l+=2:l++){if(c=yi(e,l),c===Mi)f=!0,h&&(p=p||l-x-1>r&&e[x+1]!==" ",x=l);else if(!Di(c))return ao;g=g&&Wf(c,u,a),u=c}p=p||h&&l-x-1>r&&e[x+1]!==" "}return!f&&!p?g&&!s&&!o(e)?cv:i===Ri?ao:Sc:n>9&&lv(e)?ao:s?i===Ri?ao:Sc:p?dv:uv}function K2(e,t,n,r,o){e.dump=(function(){if(t.length===0)return e.quotingType===Ri?'""':"''";if(!e.noCompatMode&&(z2.indexOf(t)!==-1||F2.test(t)))return e.quotingType===Ri?'"'+t+'"':"'"+t+"'";var i=e.indent*Math.max(1,n),s=e.lineWidth===-1?-1:Math.max(Math.min(e.lineWidth,40),e.lineWidth-i),a=r||e.flowLevel>-1&&n>=e.flowLevel;function l(c){return W2(e,c)}switch(q2(t,a,e.indent,s,l,e.quotingType,e.forceQuotes&&!r,o)){case cv:return t;case Sc:return"'"+t.replace(/'/g,"''")+"'";case uv:return"|"+Gf(t,e.indent)+Yf(Uf(t,i));case dv:return">"+Gf(t,e.indent)+Yf(Uf(X2(t,s),i));case ao:return'"'+Z2(t)+'"';default:throw new Ht("impossible error: invalid scalar style")}})()}function Gf(e,t){var n=lv(e)?String(t):"",r=e[e.length-1]===`
601
+ `,o=r&&(e[e.length-2]===`
602
+ `||e===`
603
+ `),i=o?"+":r?"":"-";return n+i+`
604
+ `}function Yf(e){return e[e.length-1]===`
605
+ `?e.slice(0,-1):e}function X2(e,t){for(var n=/(\n+)([^\n]*)/g,r=(function(){var c=e.indexOf(`
606
+ `);return c=c!==-1?c:e.length,n.lastIndex=c,qf(e.slice(0,c),t)})(),o=e[0]===`
607
+ `||e[0]===" ",i,s;s=n.exec(e);){var a=s[1],l=s[2];i=l[0]===" ",r+=a+(!o&&!i&&l!==""?`
608
+ `:"")+qf(l,t),o=i}return r}function qf(e,t){if(e===""||e[0]===" ")return e;for(var n=/ [^ ]/g,r,o=0,i,s=0,a=0,l="";r=n.exec(e);)a=r.index,a-o>t&&(i=s>o?s:a,l+=`
609
+ `+e.slice(o,i),o=i+1),s=a;return l+=`
610
+ `,e.length-o>t&&s>o?l+=e.slice(o,s)+`
611
+ `+e.slice(s+1):l+=e.slice(o),l.slice(1)}function Z2(e){for(var t="",n=0,r,o=0;o<e.length;n>=65536?o+=2:o++)n=yi(e,o),r=Ft[n],!r&&Di(n)?(t+=e[o],n>=65536&&(t+=e[o+1])):t+=r||H2(n);return t}function Q2(e,t,n){var r="",o=e.tag,i,s,a;for(i=0,s=n.length;i<s;i+=1)a=n[i],e.replacer&&(a=e.replacer.call(n,String(i),a)),(Gn(e,t,a,!1,!1)||typeof a>"u"&&Gn(e,t,null,!1,!1))&&(r!==""&&(r+=","+(e.condenseFlow?"":" ")),r+=e.dump);e.tag=o,e.dump="["+r+"]"}function Kf(e,t,n,r){var o="",i=e.tag,s,a,l;for(s=0,a=n.length;s<a;s+=1)l=n[s],e.replacer&&(l=e.replacer.call(n,String(s),l)),(Gn(e,t+1,l,!0,!0,!1,!0)||typeof l>"u"&&Gn(e,t+1,null,!0,!0,!1,!0))&&((!r||o!=="")&&(o+=Ec(e,t)),e.dump&&Mi===e.dump.charCodeAt(0)?o+="-":o+="- ",o+=e.dump);e.tag=i,e.dump=o||"[]"}function J2(e,t,n){var r="",o=e.tag,i=Object.keys(n),s,a,l,c,u;for(s=0,a=i.length;s<a;s+=1)u="",r!==""&&(u+=", "),e.condenseFlow&&(u+='"'),l=i[s],c=n[l],e.replacer&&(c=e.replacer.call(n,l,c)),Gn(e,t,l,!1,!1)&&(e.dump.length>1024&&(u+="? "),u+=e.dump+(e.condenseFlow?'"':"")+":"+(e.condenseFlow?"":" "),Gn(e,t,c,!1,!1)&&(u+=e.dump,r+=u));e.tag=o,e.dump="{"+r+"}"}function eI(e,t,n,r){var o="",i=e.tag,s=Object.keys(n),a,l,c,u,f,p;if(e.sortKeys===!0)s.sort();else if(typeof e.sortKeys=="function")s.sort(e.sortKeys);else if(e.sortKeys)throw new Ht("sortKeys must be a boolean or a function");for(a=0,l=s.length;a<l;a+=1)p="",(!r||o!=="")&&(p+=Ec(e,t)),c=s[a],u=n[c],e.replacer&&(u=e.replacer.call(n,c,u)),Gn(e,t+1,c,!0,!0,!0)&&(f=e.tag!==null&&e.tag!=="?"||e.dump&&e.dump.length>1024,f&&(e.dump&&Mi===e.dump.charCodeAt(0)?p+="?":p+="? "),p+=e.dump,f&&(p+=Ec(e,t)),Gn(e,t+1,u,!0,f)&&(e.dump&&Mi===e.dump.charCodeAt(0)?p+=":":p+=": ",p+=e.dump,o+=p));e.tag=i,e.dump=o||"{}"}function Xf(e,t,n){var r,o,i,s,a,l;for(o=n?e.explicitTypes:e.implicitTypes,i=0,s=o.length;i<s;i+=1)if(a=o[i],(a.instanceOf||a.predicate)&&(!a.instanceOf||typeof t=="object"&&t instanceof a.instanceOf)&&(!a.predicate||a.predicate(t))){if(n?a.multi&&a.representName?e.tag=a.representName(t):e.tag=a.tag:e.tag="?",a.represent){if(l=e.styleMap[a.tag]||a.defaultStyle,tv.call(a.represent)==="[object Function]")r=a.represent(t,l);else if(nv.call(a.represent,l))r=a.represent[l](t,l);else throw new Ht("!<"+a.tag+'> tag resolver accepts not "'+l+'" style');e.dump=r}return!0}return!1}function Gn(e,t,n,r,o,i,s){e.tag=null,e.dump=n,Xf(e,n,!1)||Xf(e,n,!0);var a=tv.call(e.dump),l=r,c;r&&(r=e.flowLevel<0||e.flowLevel>t);var u=a==="[object Object]"||a==="[object Array]",f,p;if(u&&(f=e.duplicates.indexOf(n),p=f!==-1),(e.tag!==null&&e.tag!=="?"||p||e.indent!==2&&t>0)&&(o=!1),p&&e.usedDuplicates[f])e.dump="*ref_"+f;else{if(u&&p&&!e.usedDuplicates[f]&&(e.usedDuplicates[f]=!0),a==="[object Object]")r&&Object.keys(e.dump).length!==0?(eI(e,t,e.dump,o),p&&(e.dump="&ref_"+f+e.dump)):(J2(e,t,e.dump),p&&(e.dump="&ref_"+f+" "+e.dump));else if(a==="[object Array]")r&&e.dump.length!==0?(e.noArrayIndent&&!s&&t>0?Kf(e,t-1,e.dump,o):Kf(e,t,e.dump,o),p&&(e.dump="&ref_"+f+e.dump)):(Q2(e,t,e.dump),p&&(e.dump="&ref_"+f+" "+e.dump));else if(a==="[object String]")e.tag!=="?"&&K2(e,e.dump,t,i,l);else{if(a==="[object Undefined]")return!1;if(e.skipInvalid)return!1;throw new Ht("unacceptable kind of an object to dump "+a)}e.tag!==null&&e.tag!=="?"&&(c=encodeURI(e.tag[0]==="!"?e.tag.slice(1):e.tag).replace(/!/g,"%21"),e.tag[0]==="!"?c="!"+c:c.slice(0,18)==="tag:yaml.org,2002:"?c="!!"+c.slice(18):c="!<"+c+">",e.dump=c+" "+e.dump)}return!0}function tI(e,t){var n=[],r=[],o,i;for(kc(e,n,r),o=0,i=r.length;o<i;o+=1)t.duplicates.push(n[r[o]]);t.usedDuplicates=new Array(i)}function kc(e,t,n){var r,o,i;if(e!==null&&typeof e=="object")if(o=t.indexOf(e),o!==-1)n.indexOf(o)===-1&&n.push(o);else if(t.push(e),Array.isArray(e))for(o=0,i=e.length;o<i;o+=1)kc(e[o],t,n);else for(r=Object.keys(e),o=0,i=r.length;o<i;o+=1)kc(e[r[o]],t,n)}function nI(e,t){t=t||{};var n=new V2(t);n.noRefs||tI(e,n);var r=e;return n.replacer&&(r=n.replacer.call({"":r},"",r)),Gn(n,0,r,!0,!0)?n.dump+`
612
+ `:""}var rI=nI,oI={dump:rI};function Yu(e,t){return function(){throw new Error("Function yaml."+e+" is removed in js-yaml 4. Use yaml."+t+" instead, which is now safe by default.")}}var iI=Ot,sI=Tx,aI=jx,lI=Ox,cI=Lx,uI=Uu,dI=ev.load,fI=ev.loadAll,pI=oI.dump,hI=Ht,mI={binary:Hx,float:Px,map:Ix,null:Mx,pairs:Vx,set:Wx,timestamp:Fx,bool:Rx,int:Dx,merge:Bx,omap:Ux,seq:Nx,str:Ax},gI=Yu("safeLoad","load"),xI=Yu("safeLoadAll","loadAll"),vI=Yu("safeDump","dump"),yI={Type:iI,Schema:sI,FAILSAFE_SCHEMA:aI,JSON_SCHEMA:lI,CORE_SCHEMA:cI,DEFAULT_SCHEMA:uI,load:dI,loadAll:fI,dump:pI,YAMLException:hI,types:mI,safeLoad:gI,safeLoadAll:xI,safeDump:vI};const wI=({content:e,rendererType:t,setRenderError:n})=>{const[r,o]=m.useState(!1);m.useEffect(()=>{n(null)},[e,n]);const[i,s]=m.useMemo(()=>{try{if(t==="yaml"){const a=yI.load(e);return[e,a]}else if(t==="json"){const a=JSON.parse(e);return[JSON.stringify(a,null,2),a]}throw new Error(`Unsupported renderer type: ${t}`)}catch(a){const l=t==="yaml"?"YAML":"JSON";console.error(`Error parsing ${l} for panel:`,a);const c={[`${l}_Parsing_Error`]:`The provided content is not valid ${l}.`,Details:a.message,Content_Snippet:e.substring(0,500)+(e.length>500?"...":"")};return n(`${l} parsing failed: ${a.message}`),[e,c]}},[e,t,n]);return d.jsxs("div",{className:"flex flex-col h-full overflow-hidden bg-background relative",children:[d.jsx("div",{className:"absolute top-4 right-4 z-10",children:d.jsx(Ke,{onClick:()=>o(!r),title:r?"Show Structured View":"Show Raw Text",children:r?d.jsxs(d.Fragment,{children:[d.jsx(Hm,{})," Structured"]}):d.jsxs(d.Fragment,{children:[d.jsx(Bm,{})," Raw Text"]})})}),d.jsx("div",{className:"flex min-h-0 flex-col",children:d.jsx("div",{className:"flex-1 overflow-auto",children:r?d.jsx(fv,{content:i,setRenderError:n}):d.jsx(Zc,{data:s,maxDepth:4,className:"min-h-16 border-none p-2"})})})]})},fv=({content:e,className:t=""})=>{const{ref:n,handleKeyDown:r}=vx();return d.jsx("div",{className:`p-4 overflow-auto ${t}`,children:d.jsx("pre",{ref:n,className:"whitespace-pre-wrap focus-visible:outline-none select-text",style:{overflowWrap:"anywhere"},tabIndex:0,onKeyDown:r,children:e})})},pv=({content:e,rendererType:t,mime_type:n,setRenderError:r})=>{switch(t){case"csv":return d.jsx(AA,{content:e,setRenderError:r});case"mermaid":return d.jsx(JA,{content:e,setRenderError:r});case"html":return d.jsx(NA,{content:e,setRenderError:r});case"json":case"yaml":return d.jsx(wI,{content:e,rendererType:t,setRenderError:r});case"image":return d.jsx(IA,{content:e,mime_type:n,setRenderError:r});case"markdown":return d.jsx(jA,{content:e,setRenderError:r});case"audio":return d.jsx(_A,{content:e,mime_type:n,setRenderError:r});default:return d.jsx(fv,{content:e,setRenderError:r})}},bI={"application/pdf":"pdf","application/zip":"zip","application/msword":"doc","application/vnd.openxmlformats-officedocument.wordprocessingml.document":"docx","application/vnd.ms-excel":"xls","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":"xlsx","application/vnd.ms-powerpoint":"ppt","application/vnd.openxmlformats-officedocument.presentationml.presentation":"pptx","text/plain":"txt","text/csv":"csv","text/html":"html","text/markdown":"md","text/x-markdown":"md","application/json":"json","application/yaml":"yaml","text/yaml":"yaml","application/xml":"xml","text/xml":"xml","image/jpeg":"jpg","image/png":"png","image/gif":"gif","image/svg+xml":"svg","image/webp":"webp","image/bmp":"bmp","image/tiff":"tiff","audio/mpeg":"mp3","audio/wav":"wav","audio/ogg":"ogg","audio/aac":"aac","audio/flac":"flac","audio/x-m4a":"m4a","video/mp4":"mp4","video/webm":"webm","video/ogg":"ogv","application/javascript":"js","application/gzip":"gz","application/x-tar":"tar","application/rtf":"rtf"};function EI(e,t){const n=bI[e]||"bin";return`embedded_file_${t+1}.${n}`}function SI(e){if(!e||typeof e!="string")return[];const t=[],n=/data:([a-zA-Z0-9/.-]+);base64,([A-Za-z0-9+/=]+)/g;let r,o=0;for(;(r=n.exec(e))!==null;){const[i,s,a]=r,l=e[r.index-1],c=e[r.index+i.length];if(!(l==='"'&&c==='"'||l==="'"&&c==="'")&&a&&a.length>10){const u=Qi(void 0,s);u?t.push({type:u,content:a,mimeType:s,originalMatch:i}):t.push({type:"file",content:a,mimeType:s,originalMatch:i,filename:EI(s,o++)})}}return t}function kI(e){if(!e||typeof e!="string")return[];const t=[],n=/<html[\s\S]*?<\/html>/gi;let r;for(;(r=n.exec(e))!==null;)t.push({type:"html",content:r[0].trim(),originalMatch:r[0]});return t}function CI(e){if(!e||typeof e!="string")return[];const t=[],n=/```mermaid\s*\n([\s\S]*?)```/gi;let r;for(;(r=n.exec(e))!==null;){const[o,i]=r;t.push({type:"mermaid",content:i.trim(),originalMatch:o})}return t}function _I(e){return!e||typeof e!="string"?[]:[...SI(e),...kI(e),...CI(e)]}const TI=["image","audio"],AI=({message:e})=>{var c;const[t,n]=m.useState(null);if(e.isStatusBubble)return null;const r=(c=e.parts)==null?void 0:c.filter(u=>u.kind==="text"),o=(r==null?void 0:r.map(u=>u.text).join(""))||"";if(e.isUser)return d.jsx("span",{children:o});const i=o.trim();if(!i)return null;if(e.isError)return d.jsxs("div",{className:"flex items-center",children:[d.jsx(vu,{className:"mr-2 self-start text-[var(--color-error-wMain)]"}),d.jsx(vo,{children:i})]});const s=_I(i);if(s.length===0)return d.jsx(vo,{children:i});let a=i;const l=[];return s.forEach((u,f)=>{if(a=a.replace(u.originalMatch,""),u.type==="file"){const p={name:u.filename||"downloaded_file",content:u.content,mime_type:u.mimeType};l.push(d.jsx("div",{className:"my-2",children:d.jsx(gx,{fileAttachment:p,isEmbedded:!0})},`embedded-file-${f}`))}else if(!TI.includes(u.type)){const p=fx(u.content);p&&l.push(d.jsx("div",{className:"my-2 h-auto w-md max-w-md overflow-hidden",children:d.jsx(pv,{content:p,rendererType:u.type,mime_type:u.mimeType,setRenderError:n})},`embedded-${f}`))}}),d.jsxs("div",{children:[t&&d.jsx(rd,{variant:"error",message:"Error rendering preview"}),d.jsx(vo,{children:a}),l]})},hv=({message:e,children:t,className:n})=>d.jsx("div",{className:`mt-1 space-y-1 ${e.isUser?"ml-auto":"mr-auto"} ${n}`,children:t}),NI=e=>e.uploadedFiles&&e.uploadedFiles.length>0?d.jsx(hv,{message:e,className:"flex flex-wrap justify-end gap-2",children:e.uploadedFiles.map((t,n)=>{var r;return d.jsx(xx,{filename:t.name,mimeType:t.type},`uploaded-${(r=e.metadata)==null?void 0:r.messageId}-${n}`)})}):null,II=e=>e.files&&e.files.length>0?d.jsx(hv,{message:e,children:e.files.map((t,n)=>{var r;return d.jsx(gx,{fileAttachment:t},`file-${(r=e.metadata)==null?void 0:r.messageId}-${n}`)})}):null,jI=(e,t,n)=>{var c,u;const{openSidePanelTab:r,setTaskIdInSidePanel:o}=t;if(e.isStatusBubble)return null;const i=(c=e.parts)==null?void 0:c.some(f=>f.kind==="text"&&f.text.trim());if(!i&&!e.artifactNotification)return null;const s=e.isUser?"sent":"received",a=!e.isUser&&e.isComplete&&!!e.taskId&&n,l=()=>{e.taskId&&(o(e.taskId),r("workflow"))};return d.jsx(ax,{variant:s,children:d.jsxs(lx,{variant:s,children:[i&&d.jsx(AI,{message:e}),e.artifactNotification&&d.jsxs("div",{className:"flex items-center p-2 my-1 bg-blue-100 dark:bg-blue-900/50 rounded-md",children:[d.jsx(So,{className:"mr-2 text-blue-500 dark:text-blue-400"}),d.jsxs("span",{className:"text-sm",children:["Artifact created: ",d.jsx("strong",{children:e.artifactNotification.name}),e.artifactNotification.version&&` (v${e.artifactNotification.version})`]})]}),a&&d.jsx("div",{className:"mt-3",children:d.jsx(Xm,{onClick:l})})]})},(u=e.metadata)==null?void 0:u.messageId)},MI=({message:e,isLastWithTaskId:t})=>{const n=Nt();return e?d.jsxs(d.Fragment,{children:[jI(e,n,t),NI(e),II(e)]}):null},RI=()=>{const e=Zg();return d.jsx("div",{className:"flex h-full flex-col",children:d.jsxs("div",{className:"flex-1 overflow-y-auto px-4",children:[d.jsxs("div",{className:"bg-accent/50 hover:bg-accent mb-3 cursor-pointer rounded-md p-3",children:[d.jsx("div",{className:"text-foreground truncate text-sm font-medium text-nowrap",children:e}),d.jsx("div",{className:"text-muted-foreground mt-1 text-xs",children:"Current session"})]}),d.jsx("div",{className:"text-muted-foreground mt-4 text-center text-xs",children:"Multi-session support coming soon"})]})})},DI=({artifactInfo:e,isPreview:t=!1,isExpanded:n=!1,onDelete:r,onDownload:o,setIsExpanded:i})=>{const{previewedArtifactAvailableVersions:s,currentPreviewedVersionNumber:a,navigateArtifactVersion:l}=Nt(),c=m.useMemo(()=>s??[],[s]);return d.jsxs("div",{className:"flex flex-row justify-between gap-1",children:[d.jsxs("div",{className:"flex items-center gap-4 min-w-0",children:[d.jsxs("div",{className:"min-w-0",children:[d.jsx("div",{className:"truncate text-sm",title:e.filename,children:e.filename}),d.jsx("div",{className:"truncate text-xs",title:Rd(e.last_modified),children:Rd(e.last_modified)})]}),t&&c.length>1&&d.jsx("div",{className:"align-right",children:d.jsxs(z0,{value:a==null?void 0:a.toString(),onValueChange:u=>{l(e.filename,parseInt(u))},children:[d.jsx(B0,{className:"h-[16px] py-0 text-xs shadow-none",children:d.jsx(F0,{placeholder:"Version"})}),d.jsx(H0,{children:c.map(u=>d.jsxs(U0,{value:u.toString(),children:["Version ",u]},u))})]})})]}),d.jsxs("div",{className:`whitespace-nowrap ${t?"opacity-100":"opacity-0 transition-opacity duration-150 group-focus-within:opacity-100 group-hover:opacity-100"}`,children:[i&&d.jsx(Ke,{variant:"ghost",size:"sm",onClick:u=>{u.stopPropagation(),u.preventDefault(),i(!n)},tooltip:n?"Collapse Details":"Expand Details",children:d.jsx(wu,{})}),o&&d.jsx(Ke,{variant:"ghost",size:"sm",onClick:async u=>{u.stopPropagation(),u.preventDefault(),await o(e)},tooltip:"Download",children:d.jsx(yu,{})}),r&&d.jsx(Ke,{variant:"ghost",size:"sm",onClick:u=>{u.preventDefault(),u.stopPropagation(),r(e)},tooltip:"Delete",children:d.jsx(Km,{})})]})]})},Zf=({artifact:e,isPreview:t})=>{const{openDeleteModal:n,setPreviewArtifact:r}=Nt(),{onDownload:o}=Xg(),[i,s]=m.useState(!1),a=()=>{t&&r(null),n(e)},l=c=>{if(!c||typeof c=="object"&&Object.keys(c).length===0)return d.jsx("span",{children:"Not available"});const u=(f,p=0)=>typeof f=="string"?d.jsx("span",{children:f}):Array.isArray(f)?d.jsxs(d.Fragment,{children:["[",f.length>0&&u(f[0],p+1),f.length>1&&d.jsx("span",{children:", ..."}),"]"]}):typeof f=="object"&&f!==null?d.jsx("div",{className:`ml-${p*2} border-l pl-2`,children:Object.entries(f).map(([h,x],g)=>d.jsxs("div",{className:"text-xs",children:[d.jsxs("span",{className:"font-semibold",children:[h,":"]})," ",u(x,p+1)]},g))}):String(f);return d.jsxs("div",{className:"mt-1 space-y-0.5",children:[typeof c=="object"&&c.type&&d.jsxs("p",{children:[d.jsx("strong",{children:"Type:"})," ",c.type," ",c.inferred&&d.jsx("span",{className:"text-xs",children:"(inferred)"})]}),typeof c=="object"&&c.columns&&d.jsxs("p",{children:[d.jsx("strong",{children:"Columns:"})," ",c.columns.join(", ")]}),typeof c=="object"&&c.structure&&d.jsxs("div",{children:[d.jsx("strong",{children:"Structure:"}),u(c.structure)]}),typeof c=="object"&&c.error&&d.jsxs("p",{className:"text-[var(--color-error-wMain)]",children:[d.jsx("strong",{children:"Schema Error:"})," ",c.error]}),typeof c=="string"&&d.jsx("p",{children:c})]})};return d.jsx("div",{className:`group relative w-full border-b px-4 py-3 transition-all duration-150 ${t?"":"cursor-pointer hover:bg-[var(--accent-background)]"}`,onClick:c=>{c.stopPropagation(),r(e)},onKeyDown:c=>{(c.key==="Enter"||c.key===" ")&&(c.preventDefault(),c.stopPropagation(),r(e))},tabIndex:0,role:"button","aria-expanded":i,children:d.jsxs("div",{className:"flex items-start space-x-2",children:[d.jsx("div",{className:"flex-shrink-0 pt-0.5",children:mx(e,"h-4 w-4 flex-shrink-0")}),d.jsxs("div",{className:"min-w-0 flex-grow",children:[d.jsx(DI,{artifactInfo:e,isExpanded:i,onDelete:a,onDownload:o,setIsExpanded:s,isPreview:t}),i&&d.jsxs("div",{className:"text-xs",children:[d.jsx("div",{className:"mt-1 text-xs break-words whitespace-pre-wrap italic",children:e.description||"No description."}),d.jsxs("div",{className:"mt-2 space-y-1 pt-2",children:[d.jsxs("div",{children:[d.jsx("strong",{children:"Size: "}),em(e.size)]}),e.uri&&d.jsxs("div",{children:[d.jsx("strong",{children:"URI: "}),d.jsx("span",{className:"break-all",children:e.uri||"None"})]}),e.schema&&d.jsx("div",{children:l(e.schema)})]})]})]})]})})},PI=()=>{const{isDeleteModalOpen:e,artifactToDelete:t,closeDeleteModal:n,confirmDelete:r}=Nt();return!e||!t?null:d.jsx(Au,{open:e,onOpenChange:n,children:d.jsxs(Nu,{children:[d.jsxs(Iu,{children:[d.jsxs(ju,{className:"flex flex-row gap-1 max-w-[400px]",children:["Delete",d.jsx("span",{className:"inline-block truncate",title:t.filename,children:d.jsx("code",{children:t.filename})}),"?"]}),d.jsx(Mu,{className:"flex flex-col gap-2",children:d.jsx("div",{children:"This file will be permanently deleted. "})})]}),d.jsxs("div",{className:"flex justify-end gap-2",children:[d.jsx(Ke,{variant:"outline",onClick:n,children:"Cancel"}),d.jsx(Ke,{variant:"default",onClick:()=>r(),children:"Delete"})]})]})})};function qu(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var Wr=qu();function mv(e){Wr=e}var Si={exec:()=>null};function it(e,t=""){let n=typeof e=="string"?e:e.source;const r={replace:(o,i)=>{let s=typeof i=="string"?i:i.source;return s=s.replace(Ut.caret,"$1"),n=n.replace(o,s),r},getRegex:()=>new RegExp(n,t)};return r}var Ut={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] /,listReplaceTask:/^\[[ xX]\] +/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^<a /i,endATag:/^<\/a>/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^</,endAngleBracket:/>$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,unescapeTest:/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:e=>new RegExp(`^( {0,3}${e})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}#`),htmlBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}<(?:[a-z].*>|!--)`,"i")},OI=/^(?:[ \t]*(?:\n|$))+/,LI=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,$I=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,Ji=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,zI=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,Ku=/(?:[*+-]|\d{1,9}[.)])/,gv=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,xv=it(gv).replace(/bull/g,Ku).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),FI=it(gv).replace(/bull/g,Ku).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),Xu=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,BI=/^[^\n]+/,Zu=/(?!\s*\])(?:\\.|[^\[\]\\])+/,HI=it(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",Zu).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),UI=it(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,Ku).getRegex(),Ya="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",Qu=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,VI=it("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",Qu).replace("tag",Ya).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),vv=it(Xu).replace("hr",Ji).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ya).getRegex(),WI=it(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",vv).getRegex(),Ju={blockquote:WI,code:LI,def:HI,fences:$I,heading:zI,hr:Ji,html:VI,lheading:xv,list:UI,newline:OI,paragraph:vv,table:Si,text:BI},Qf=it("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",Ji).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ya).getRegex(),GI={...Ju,lheading:FI,table:Qf,paragraph:it(Xu).replace("hr",Ji).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",Qf).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ya).getRegex()},YI={...Ju,html:it(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",Qu).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:Si,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:it(Xu).replace("hr",Ji).replace("heading",` *#{1,6} *[^
613
+ ]`).replace("lheading",xv).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},qI=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,KI=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,yv=/^( {2,}|\\)\n(?!\s*$)/,XI=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,qa=/[\p{P}\p{S}]/u,ed=/[\s\p{P}\p{S}]/u,wv=/[^\s\p{P}\p{S}]/u,ZI=it(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,ed).getRegex(),bv=/(?!~)[\p{P}\p{S}]/u,QI=/(?!~)[\s\p{P}\p{S}]/u,JI=/(?:[^\s\p{P}\p{S}]|~)/u,ej=/\[[^[\]]*?\]\((?:\\.|[^\\\(\)]|\((?:\\.|[^\\\(\)])*\))*\)|`[^`]*?`|<[^<>]*?>/g,Ev=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,tj=it(Ev,"u").replace(/punct/g,qa).getRegex(),nj=it(Ev,"u").replace(/punct/g,bv).getRegex(),Sv="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",rj=it(Sv,"gu").replace(/notPunctSpace/g,wv).replace(/punctSpace/g,ed).replace(/punct/g,qa).getRegex(),oj=it(Sv,"gu").replace(/notPunctSpace/g,JI).replace(/punctSpace/g,QI).replace(/punct/g,bv).getRegex(),ij=it("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,wv).replace(/punctSpace/g,ed).replace(/punct/g,qa).getRegex(),sj=it(/\\(punct)/,"gu").replace(/punct/g,qa).getRegex(),aj=it(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),lj=it(Qu).replace("(?:-->|$)","-->").getRegex(),cj=it("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",lj).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),ca=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,uj=it(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",ca).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),kv=it(/^!?\[(label)\]\[(ref)\]/).replace("label",ca).replace("ref",Zu).getRegex(),Cv=it(/^!?\[(ref)\](?:\[\])?/).replace("ref",Zu).getRegex(),dj=it("reflink|nolink(?!\\()","g").replace("reflink",kv).replace("nolink",Cv).getRegex(),td={_backpedal:Si,anyPunctuation:sj,autolink:aj,blockSkip:ej,br:yv,code:KI,del:Si,emStrongLDelim:tj,emStrongRDelimAst:rj,emStrongRDelimUnd:ij,escape:qI,link:uj,nolink:Cv,punctuation:ZI,reflink:kv,reflinkSearch:dj,tag:cj,text:XI,url:Si},fj={...td,link:it(/^!?\[(label)\]\((.*?)\)/).replace("label",ca).getRegex(),reflink:it(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",ca).getRegex()},Cc={...td,emStrongRDelimAst:oj,emStrongLDelim:nj,url:it(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,"i").replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\.|[^\\])*?(?:\\.|[^\s~\\]))\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/},pj={...Cc,br:it(yv).replace("{2,}","*").getRegex(),text:it(Cc.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},Es={normal:Ju,gfm:GI,pedantic:YI},ni={normal:td,gfm:Cc,breaks:pj,pedantic:fj},hj={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},Jf=e=>hj[e];function yn(e,t){if(t){if(Ut.escapeTest.test(e))return e.replace(Ut.escapeReplace,Jf)}else if(Ut.escapeTestNoEncode.test(e))return e.replace(Ut.escapeReplaceNoEncode,Jf);return e}function ep(e){try{e=encodeURI(e).replace(Ut.percentDecode,"%")}catch{return null}return e}function tp(e,t){var i;const n=e.replace(Ut.findPipe,(s,a,l)=>{let c=!1,u=a;for(;--u>=0&&l[u]==="\\";)c=!c;return c?"|":" |"}),r=n.split(Ut.splitPipe);let o=0;if(r[0].trim()||r.shift(),r.length>0&&!((i=r.at(-1))!=null&&i.trim())&&r.pop(),t)if(r.length>t)r.splice(t);else for(;r.length<t;)r.push("");for(;o<r.length;o++)r[o]=r[o].trim().replace(Ut.slashPipe,"|");return r}function ri(e,t,n){const r=e.length;if(r===0)return"";let o=0;for(;o<r&&e.charAt(r-o-1)===t;)o++;return e.slice(0,r-o)}function mj(e,t){if(e.indexOf(t[1])===-1)return-1;let n=0;for(let r=0;r<e.length;r++)if(e[r]==="\\")r++;else if(e[r]===t[0])n++;else if(e[r]===t[1]&&(n--,n<0))return r;return n>0?-2:-1}function np(e,t,n,r,o){const i=t.href,s=t.title||null,a=e[1].replace(o.other.outputLinkReplace,"$1");r.state.inLink=!0;const l={type:e[0].charAt(0)==="!"?"image":"link",raw:n,href:i,title:s,text:a,tokens:r.inlineTokens(a)};return r.state.inLink=!1,l}function gj(e,t,n){const r=e.match(n.other.indentCodeCompensation);if(r===null)return t;const o=r[1];return t.split(`
614
+ `).map(i=>{const s=i.match(n.other.beginningSpace);if(s===null)return i;const[a]=s;return a.length>=o.length?i.slice(o.length):i}).join(`
615
+ `)}var ua=class{constructor(e){ct(this,"options");ct(this,"rules");ct(this,"lexer");this.options=e||Wr}space(e){const t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}code(e){const t=this.rules.block.code.exec(e);if(t){const n=t[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?n:ri(n,`
616
+ `)}}}fences(e){const t=this.rules.block.fences.exec(e);if(t){const n=t[0],r=gj(n,t[3]||"",this.rules);return{type:"code",raw:n,lang:t[2]?t[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):t[2],text:r}}}heading(e){const t=this.rules.block.heading.exec(e);if(t){let n=t[2].trim();if(this.rules.other.endingHash.test(n)){const r=ri(n,"#");(this.options.pedantic||!r||this.rules.other.endingSpaceChar.test(r))&&(n=r.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:n,tokens:this.lexer.inline(n)}}}hr(e){const t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:ri(t[0],`
617
+ `)}}blockquote(e){const t=this.rules.block.blockquote.exec(e);if(t){let n=ri(t[0],`
618
+ `).split(`
619
+ `),r="",o="";const i=[];for(;n.length>0;){let s=!1;const a=[];let l;for(l=0;l<n.length;l++)if(this.rules.other.blockquoteStart.test(n[l]))a.push(n[l]),s=!0;else if(!s)a.push(n[l]);else break;n=n.slice(l);const c=a.join(`
620
+ `),u=c.replace(this.rules.other.blockquoteSetextReplace,`
621
+ $1`).replace(this.rules.other.blockquoteSetextReplace2,"");r=r?`${r}
622
+ ${c}`:c,o=o?`${o}
623
+ ${u}`:u;const f=this.lexer.state.top;if(this.lexer.state.top=!0,this.lexer.blockTokens(u,i,!0),this.lexer.state.top=f,n.length===0)break;const p=i.at(-1);if((p==null?void 0:p.type)==="code")break;if((p==null?void 0:p.type)==="blockquote"){const h=p,x=h.raw+`
624
+ `+n.join(`
625
+ `),g=this.blockquote(x);i[i.length-1]=g,r=r.substring(0,r.length-h.raw.length)+g.raw,o=o.substring(0,o.length-h.text.length)+g.text;break}else if((p==null?void 0:p.type)==="list"){const h=p,x=h.raw+`
626
+ `+n.join(`
627
+ `),g=this.list(x);i[i.length-1]=g,r=r.substring(0,r.length-p.raw.length)+g.raw,o=o.substring(0,o.length-h.raw.length)+g.raw,n=x.substring(i.at(-1).raw.length).split(`
628
+ `);continue}}return{type:"blockquote",raw:r,tokens:i,text:o}}}list(e){let t=this.rules.block.list.exec(e);if(t){let n=t[1].trim();const r=n.length>1,o={type:"list",raw:"",ordered:r,start:r?+n.slice(0,-1):"",loose:!1,items:[]};n=r?`\\d{1,9}\\${n.slice(-1)}`:`\\${n}`,this.options.pedantic&&(n=r?n:"[*+-]");const i=this.rules.other.listItemRegex(n);let s=!1;for(;e;){let l=!1,c="",u="";if(!(t=i.exec(e))||this.rules.block.hr.test(e))break;c=t[0],e=e.substring(c.length);let f=t[2].split(`
629
+ `,1)[0].replace(this.rules.other.listReplaceTabs,y=>" ".repeat(3*y.length)),p=e.split(`
630
+ `,1)[0],h=!f.trim(),x=0;if(this.options.pedantic?(x=2,u=f.trimStart()):h?x=t[1].length+1:(x=t[2].search(this.rules.other.nonSpaceChar),x=x>4?1:x,u=f.slice(x),x+=t[1].length),h&&this.rules.other.blankLine.test(p)&&(c+=p+`
631
+ `,e=e.substring(p.length+1),l=!0),!l){const y=this.rules.other.nextBulletRegex(x),b=this.rules.other.hrRegex(x),w=this.rules.other.fencesBeginRegex(x),S=this.rules.other.headingBeginRegex(x),E=this.rules.other.htmlBeginRegex(x);for(;e;){const k=e.split(`
632
+ `,1)[0];let C;if(p=k,this.options.pedantic?(p=p.replace(this.rules.other.listReplaceNesting," "),C=p):C=p.replace(this.rules.other.tabCharGlobal," "),w.test(p)||S.test(p)||E.test(p)||y.test(p)||b.test(p))break;if(C.search(this.rules.other.nonSpaceChar)>=x||!p.trim())u+=`
633
+ `+C.slice(x);else{if(h||f.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||w.test(f)||S.test(f)||b.test(f))break;u+=`
634
+ `+p}!h&&!p.trim()&&(h=!0),c+=k+`
635
+ `,e=e.substring(k.length+1),f=C.slice(x)}}o.loose||(s?o.loose=!0:this.rules.other.doubleBlankLine.test(c)&&(s=!0));let g=null,v;this.options.gfm&&(g=this.rules.other.listIsTask.exec(u),g&&(v=g[0]!=="[ ] ",u=u.replace(this.rules.other.listReplaceTask,""))),o.items.push({type:"list_item",raw:c,task:!!g,checked:v,loose:!1,text:u,tokens:[]}),o.raw+=c}const a=o.items.at(-1);if(a)a.raw=a.raw.trimEnd(),a.text=a.text.trimEnd();else return;o.raw=o.raw.trimEnd();for(let l=0;l<o.items.length;l++)if(this.lexer.state.top=!1,o.items[l].tokens=this.lexer.blockTokens(o.items[l].text,[]),!o.loose){const c=o.items[l].tokens.filter(f=>f.type==="space"),u=c.length>0&&c.some(f=>this.rules.other.anyLine.test(f.raw));o.loose=u}if(o.loose)for(let l=0;l<o.items.length;l++)o.items[l].loose=!0;return o}}html(e){const t=this.rules.block.html.exec(e);if(t)return{type:"html",block:!0,raw:t[0],pre:t[1]==="pre"||t[1]==="script"||t[1]==="style",text:t[0]}}def(e){const t=this.rules.block.def.exec(e);if(t){const n=t[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),r=t[2]?t[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",o=t[3]?t[3].substring(1,t[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):t[3];return{type:"def",tag:n,raw:t[0],href:r,title:o}}}table(e){var s;const t=this.rules.block.table.exec(e);if(!t||!this.rules.other.tableDelimiter.test(t[2]))return;const n=tp(t[1]),r=t[2].replace(this.rules.other.tableAlignChars,"").split("|"),o=(s=t[3])!=null&&s.trim()?t[3].replace(this.rules.other.tableRowBlankLine,"").split(`
636
+ `):[],i={type:"table",raw:t[0],header:[],align:[],rows:[]};if(n.length===r.length){for(const a of r)this.rules.other.tableAlignRight.test(a)?i.align.push("right"):this.rules.other.tableAlignCenter.test(a)?i.align.push("center"):this.rules.other.tableAlignLeft.test(a)?i.align.push("left"):i.align.push(null);for(let a=0;a<n.length;a++)i.header.push({text:n[a],tokens:this.lexer.inline(n[a]),header:!0,align:i.align[a]});for(const a of o)i.rows.push(tp(a,i.header.length).map((l,c)=>({text:l,tokens:this.lexer.inline(l),header:!1,align:i.align[c]})));return i}}lheading(e){const t=this.rules.block.lheading.exec(e);if(t)return{type:"heading",raw:t[0],depth:t[2].charAt(0)==="="?1:2,text:t[1],tokens:this.lexer.inline(t[1])}}paragraph(e){const t=this.rules.block.paragraph.exec(e);if(t){const n=t[1].charAt(t[1].length-1)===`
637
+ `?t[1].slice(0,-1):t[1];return{type:"paragraph",raw:t[0],text:n,tokens:this.lexer.inline(n)}}}text(e){const t=this.rules.block.text.exec(e);if(t)return{type:"text",raw:t[0],text:t[0],tokens:this.lexer.inline(t[0])}}escape(e){const t=this.rules.inline.escape.exec(e);if(t)return{type:"escape",raw:t[0],text:t[1]}}tag(e){const t=this.rules.inline.tag.exec(e);if(t)return!this.lexer.state.inLink&&this.rules.other.startATag.test(t[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:t[0]}}link(e){const t=this.rules.inline.link.exec(e);if(t){const n=t[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(n)){if(!this.rules.other.endAngleBracket.test(n))return;const i=ri(n.slice(0,-1),"\\");if((n.length-i.length)%2===0)return}else{const i=mj(t[2],"()");if(i===-2)return;if(i>-1){const a=(t[0].indexOf("!")===0?5:4)+t[1].length+i;t[2]=t[2].substring(0,i),t[0]=t[0].substring(0,a).trim(),t[3]=""}}let r=t[2],o="";if(this.options.pedantic){const i=this.rules.other.pedanticHrefTitle.exec(r);i&&(r=i[1],o=i[3])}else o=t[3]?t[3].slice(1,-1):"";return r=r.trim(),this.rules.other.startAngleBracket.test(r)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(n)?r=r.slice(1):r=r.slice(1,-1)),np(t,{href:r&&r.replace(this.rules.inline.anyPunctuation,"$1"),title:o&&o.replace(this.rules.inline.anyPunctuation,"$1")},t[0],this.lexer,this.rules)}}reflink(e,t){let n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){const r=(n[2]||n[1]).replace(this.rules.other.multipleSpaceGlobal," "),o=t[r.toLowerCase()];if(!o){const i=n[0].charAt(0);return{type:"text",raw:i,text:i}}return np(n,o,n[0],this.lexer,this.rules)}}emStrong(e,t,n=""){let r=this.rules.inline.emStrongLDelim.exec(e);if(!r||r[3]&&n.match(this.rules.other.unicodeAlphaNumeric))return;if(!(r[1]||r[2]||"")||!n||this.rules.inline.punctuation.exec(n)){const i=[...r[0]].length-1;let s,a,l=i,c=0;const u=r[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(u.lastIndex=0,t=t.slice(-1*e.length+i);(r=u.exec(t))!=null;){if(s=r[1]||r[2]||r[3]||r[4]||r[5]||r[6],!s)continue;if(a=[...s].length,r[3]||r[4]){l+=a;continue}else if((r[5]||r[6])&&i%3&&!((i+a)%3)){c+=a;continue}if(l-=a,l>0)continue;a=Math.min(a,a+l+c);const f=[...r[0]][0].length,p=e.slice(0,i+r.index+f+a);if(Math.min(i,a)%2){const x=p.slice(1,-1);return{type:"em",raw:p,text:x,tokens:this.lexer.inlineTokens(x)}}const h=p.slice(2,-2);return{type:"strong",raw:p,text:h,tokens:this.lexer.inlineTokens(h)}}}}codespan(e){const t=this.rules.inline.code.exec(e);if(t){let n=t[2].replace(this.rules.other.newLineCharGlobal," ");const r=this.rules.other.nonSpaceChar.test(n),o=this.rules.other.startingSpaceChar.test(n)&&this.rules.other.endingSpaceChar.test(n);return r&&o&&(n=n.substring(1,n.length-1)),{type:"codespan",raw:t[0],text:n}}}br(e){const t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}del(e){const t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2])}}autolink(e){const t=this.rules.inline.autolink.exec(e);if(t){let n,r;return t[2]==="@"?(n=t[1],r="mailto:"+n):(n=t[1],r=n),{type:"link",raw:t[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}}url(e){var n;let t;if(t=this.rules.inline.url.exec(e)){let r,o;if(t[2]==="@")r=t[0],o="mailto:"+r;else{let i;do i=t[0],t[0]=((n=this.rules.inline._backpedal.exec(t[0]))==null?void 0:n[0])??"";while(i!==t[0]);r=t[0],t[1]==="www."?o="http://"+t[0]:o=t[0]}return{type:"link",raw:t[0],text:r,href:o,tokens:[{type:"text",raw:r,text:r}]}}}inlineText(e){const t=this.rules.inline.text.exec(e);if(t){const n=this.lexer.state.inRawBlock;return{type:"text",raw:t[0],text:t[0],escaped:n}}}},Fn=class _c{constructor(t){ct(this,"tokens");ct(this,"options");ct(this,"state");ct(this,"tokenizer");ct(this,"inlineQueue");this.tokens=[],this.tokens.links=Object.create(null),this.options=t||Wr,this.options.tokenizer=this.options.tokenizer||new ua,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};const n={other:Ut,block:Es.normal,inline:ni.normal};this.options.pedantic?(n.block=Es.pedantic,n.inline=ni.pedantic):this.options.gfm&&(n.block=Es.gfm,this.options.breaks?n.inline=ni.breaks:n.inline=ni.gfm),this.tokenizer.rules=n}static get rules(){return{block:Es,inline:ni}}static lex(t,n){return new _c(n).lex(t)}static lexInline(t,n){return new _c(n).inlineTokens(t)}lex(t){t=t.replace(Ut.carriageReturn,`
638
+ `),this.blockTokens(t,this.tokens);for(let n=0;n<this.inlineQueue.length;n++){const r=this.inlineQueue[n];this.inlineTokens(r.src,r.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(t,n=[],r=!1){var o,i,s;for(this.options.pedantic&&(t=t.replace(Ut.tabCharGlobal," ").replace(Ut.spaceLine,""));t;){let a;if((i=(o=this.options.extensions)==null?void 0:o.block)!=null&&i.some(c=>(a=c.call({lexer:this},t,n))?(t=t.substring(a.raw.length),n.push(a),!0):!1))continue;if(a=this.tokenizer.space(t)){t=t.substring(a.raw.length);const c=n.at(-1);a.raw.length===1&&c!==void 0?c.raw+=`
639
+ `:n.push(a);continue}if(a=this.tokenizer.code(t)){t=t.substring(a.raw.length);const c=n.at(-1);(c==null?void 0:c.type)==="paragraph"||(c==null?void 0:c.type)==="text"?(c.raw+=`
640
+ `+a.raw,c.text+=`
641
+ `+a.text,this.inlineQueue.at(-1).src=c.text):n.push(a);continue}if(a=this.tokenizer.fences(t)){t=t.substring(a.raw.length),n.push(a);continue}if(a=this.tokenizer.heading(t)){t=t.substring(a.raw.length),n.push(a);continue}if(a=this.tokenizer.hr(t)){t=t.substring(a.raw.length),n.push(a);continue}if(a=this.tokenizer.blockquote(t)){t=t.substring(a.raw.length),n.push(a);continue}if(a=this.tokenizer.list(t)){t=t.substring(a.raw.length),n.push(a);continue}if(a=this.tokenizer.html(t)){t=t.substring(a.raw.length),n.push(a);continue}if(a=this.tokenizer.def(t)){t=t.substring(a.raw.length);const c=n.at(-1);(c==null?void 0:c.type)==="paragraph"||(c==null?void 0:c.type)==="text"?(c.raw+=`
642
+ `+a.raw,c.text+=`
643
+ `+a.raw,this.inlineQueue.at(-1).src=c.text):this.tokens.links[a.tag]||(this.tokens.links[a.tag]={href:a.href,title:a.title});continue}if(a=this.tokenizer.table(t)){t=t.substring(a.raw.length),n.push(a);continue}if(a=this.tokenizer.lheading(t)){t=t.substring(a.raw.length),n.push(a);continue}let l=t;if((s=this.options.extensions)!=null&&s.startBlock){let c=1/0;const u=t.slice(1);let f;this.options.extensions.startBlock.forEach(p=>{f=p.call({lexer:this},u),typeof f=="number"&&f>=0&&(c=Math.min(c,f))}),c<1/0&&c>=0&&(l=t.substring(0,c+1))}if(this.state.top&&(a=this.tokenizer.paragraph(l))){const c=n.at(-1);r&&(c==null?void 0:c.type)==="paragraph"?(c.raw+=`
644
+ `+a.raw,c.text+=`
645
+ `+a.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=c.text):n.push(a),r=l.length!==t.length,t=t.substring(a.raw.length);continue}if(a=this.tokenizer.text(t)){t=t.substring(a.raw.length);const c=n.at(-1);(c==null?void 0:c.type)==="text"?(c.raw+=`
646
+ `+a.raw,c.text+=`
647
+ `+a.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=c.text):n.push(a);continue}if(t){const c="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(c);break}else throw new Error(c)}}return this.state.top=!0,n}inline(t,n=[]){return this.inlineQueue.push({src:t,tokens:n}),n}inlineTokens(t,n=[]){var a,l,c;let r=t,o=null;if(this.tokens.links){const u=Object.keys(this.tokens.links);if(u.length>0)for(;(o=this.tokenizer.rules.inline.reflinkSearch.exec(r))!=null;)u.includes(o[0].slice(o[0].lastIndexOf("[")+1,-1))&&(r=r.slice(0,o.index)+"["+"a".repeat(o[0].length-2)+"]"+r.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(o=this.tokenizer.rules.inline.anyPunctuation.exec(r))!=null;)r=r.slice(0,o.index)+"++"+r.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);for(;(o=this.tokenizer.rules.inline.blockSkip.exec(r))!=null;)r=r.slice(0,o.index)+"["+"a".repeat(o[0].length-2)+"]"+r.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);let i=!1,s="";for(;t;){i||(s=""),i=!1;let u;if((l=(a=this.options.extensions)==null?void 0:a.inline)!=null&&l.some(p=>(u=p.call({lexer:this},t,n))?(t=t.substring(u.raw.length),n.push(u),!0):!1))continue;if(u=this.tokenizer.escape(t)){t=t.substring(u.raw.length),n.push(u);continue}if(u=this.tokenizer.tag(t)){t=t.substring(u.raw.length),n.push(u);continue}if(u=this.tokenizer.link(t)){t=t.substring(u.raw.length),n.push(u);continue}if(u=this.tokenizer.reflink(t,this.tokens.links)){t=t.substring(u.raw.length);const p=n.at(-1);u.type==="text"&&(p==null?void 0:p.type)==="text"?(p.raw+=u.raw,p.text+=u.text):n.push(u);continue}if(u=this.tokenizer.emStrong(t,r,s)){t=t.substring(u.raw.length),n.push(u);continue}if(u=this.tokenizer.codespan(t)){t=t.substring(u.raw.length),n.push(u);continue}if(u=this.tokenizer.br(t)){t=t.substring(u.raw.length),n.push(u);continue}if(u=this.tokenizer.del(t)){t=t.substring(u.raw.length),n.push(u);continue}if(u=this.tokenizer.autolink(t)){t=t.substring(u.raw.length),n.push(u);continue}if(!this.state.inLink&&(u=this.tokenizer.url(t))){t=t.substring(u.raw.length),n.push(u);continue}let f=t;if((c=this.options.extensions)!=null&&c.startInline){let p=1/0;const h=t.slice(1);let x;this.options.extensions.startInline.forEach(g=>{x=g.call({lexer:this},h),typeof x=="number"&&x>=0&&(p=Math.min(p,x))}),p<1/0&&p>=0&&(f=t.substring(0,p+1))}if(u=this.tokenizer.inlineText(f)){t=t.substring(u.raw.length),u.raw.slice(-1)!=="_"&&(s=u.raw.slice(-1)),i=!0;const p=n.at(-1);(p==null?void 0:p.type)==="text"?(p.raw+=u.raw,p.text+=u.text):n.push(u);continue}if(t){const p="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(p);break}else throw new Error(p)}}return n}},da=class{constructor(e){ct(this,"options");ct(this,"parser");this.options=e||Wr}space(e){return""}code({text:e,lang:t,escaped:n}){var i;const r=(i=(t||"").match(Ut.notSpaceStart))==null?void 0:i[0],o=e.replace(Ut.endingNewline,"")+`
648
+ `;return r?'<pre><code class="language-'+yn(r)+'">'+(n?o:yn(o,!0))+`</code></pre>
649
+ `:"<pre><code>"+(n?o:yn(o,!0))+`</code></pre>
650
+ `}blockquote({tokens:e}){return`<blockquote>
651
+ ${this.parser.parse(e)}</blockquote>
652
+ `}html({text:e}){return e}heading({tokens:e,depth:t}){return`<h${t}>${this.parser.parseInline(e)}</h${t}>
653
+ `}hr(e){return`<hr>
654
+ `}list(e){const t=e.ordered,n=e.start;let r="";for(let s=0;s<e.items.length;s++){const a=e.items[s];r+=this.listitem(a)}const o=t?"ol":"ul",i=t&&n!==1?' start="'+n+'"':"";return"<"+o+i+`>
655
+ `+r+"</"+o+`>
656
+ `}listitem(e){var n;let t="";if(e.task){const r=this.checkbox({checked:!!e.checked});e.loose?((n=e.tokens[0])==null?void 0:n.type)==="paragraph"?(e.tokens[0].text=r+" "+e.tokens[0].text,e.tokens[0].tokens&&e.tokens[0].tokens.length>0&&e.tokens[0].tokens[0].type==="text"&&(e.tokens[0].tokens[0].text=r+" "+yn(e.tokens[0].tokens[0].text),e.tokens[0].tokens[0].escaped=!0)):e.tokens.unshift({type:"text",raw:r+" ",text:r+" ",escaped:!0}):t+=r+" "}return t+=this.parser.parse(e.tokens,!!e.loose),`<li>${t}</li>
657
+ `}checkbox({checked:e}){return"<input "+(e?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph({tokens:e}){return`<p>${this.parser.parseInline(e)}</p>
658
+ `}table(e){let t="",n="";for(let o=0;o<e.header.length;o++)n+=this.tablecell(e.header[o]);t+=this.tablerow({text:n});let r="";for(let o=0;o<e.rows.length;o++){const i=e.rows[o];n="";for(let s=0;s<i.length;s++)n+=this.tablecell(i[s]);r+=this.tablerow({text:n})}return r&&(r=`<tbody>${r}</tbody>`),`<table>
659
+ <thead>
660
+ `+t+`</thead>
661
+ `+r+`</table>
662
+ `}tablerow({text:e}){return`<tr>
663
+ ${e}</tr>
664
+ `}tablecell(e){const t=this.parser.parseInline(e.tokens),n=e.header?"th":"td";return(e.align?`<${n} align="${e.align}">`:`<${n}>`)+t+`</${n}>
665
+ `}strong({tokens:e}){return`<strong>${this.parser.parseInline(e)}</strong>`}em({tokens:e}){return`<em>${this.parser.parseInline(e)}</em>`}codespan({text:e}){return`<code>${yn(e,!0)}</code>`}br(e){return"<br>"}del({tokens:e}){return`<del>${this.parser.parseInline(e)}</del>`}link({href:e,title:t,tokens:n}){const r=this.parser.parseInline(n),o=ep(e);if(o===null)return r;e=o;let i='<a href="'+e+'"';return t&&(i+=' title="'+yn(t)+'"'),i+=">"+r+"</a>",i}image({href:e,title:t,text:n,tokens:r}){r&&(n=this.parser.parseInline(r,this.parser.textRenderer));const o=ep(e);if(o===null)return yn(n);e=o;let i=`<img src="${e}" alt="${n}"`;return t&&(i+=` title="${yn(t)}"`),i+=">",i}text(e){return"tokens"in e&&e.tokens?this.parser.parseInline(e.tokens):"escaped"in e&&e.escaped?e.text:yn(e.text)}},nd=class{strong({text:e}){return e}em({text:e}){return e}codespan({text:e}){return e}del({text:e}){return e}html({text:e}){return e}text({text:e}){return e}link({text:e}){return""+e}image({text:e}){return""+e}br(){return""}},Bn=class Tc{constructor(t){ct(this,"options");ct(this,"renderer");ct(this,"textRenderer");this.options=t||Wr,this.options.renderer=this.options.renderer||new da,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new nd}static parse(t,n){return new Tc(n).parse(t)}static parseInline(t,n){return new Tc(n).parseInline(t)}parse(t,n=!0){var o,i;let r="";for(let s=0;s<t.length;s++){const a=t[s];if((i=(o=this.options.extensions)==null?void 0:o.renderers)!=null&&i[a.type]){const c=a,u=this.options.extensions.renderers[c.type].call({parser:this},c);if(u!==!1||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(c.type)){r+=u||"";continue}}const l=a;switch(l.type){case"space":{r+=this.renderer.space(l);continue}case"hr":{r+=this.renderer.hr(l);continue}case"heading":{r+=this.renderer.heading(l);continue}case"code":{r+=this.renderer.code(l);continue}case"table":{r+=this.renderer.table(l);continue}case"blockquote":{r+=this.renderer.blockquote(l);continue}case"list":{r+=this.renderer.list(l);continue}case"html":{r+=this.renderer.html(l);continue}case"paragraph":{r+=this.renderer.paragraph(l);continue}case"text":{let c=l,u=this.renderer.text(c);for(;s+1<t.length&&t[s+1].type==="text";)c=t[++s],u+=`
666
+ `+this.renderer.text(c);n?r+=this.renderer.paragraph({type:"paragraph",raw:u,text:u,tokens:[{type:"text",raw:u,text:u,escaped:!0}]}):r+=u;continue}default:{const c='Token with "'+l.type+'" type was not found.';if(this.options.silent)return console.error(c),"";throw new Error(c)}}}return r}parseInline(t,n=this.renderer){var o,i;let r="";for(let s=0;s<t.length;s++){const a=t[s];if((i=(o=this.options.extensions)==null?void 0:o.renderers)!=null&&i[a.type]){const c=this.options.extensions.renderers[a.type].call({parser:this},a);if(c!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(a.type)){r+=c||"";continue}}const l=a;switch(l.type){case"escape":{r+=n.text(l);break}case"html":{r+=n.html(l);break}case"link":{r+=n.link(l);break}case"image":{r+=n.image(l);break}case"strong":{r+=n.strong(l);break}case"em":{r+=n.em(l);break}case"codespan":{r+=n.codespan(l);break}case"br":{r+=n.br(l);break}case"del":{r+=n.del(l);break}case"text":{r+=n.text(l);break}default:{const c='Token with "'+l.type+'" type was not found.';if(this.options.silent)return console.error(c),"";throw new Error(c)}}}return r}},ec,Us=(ec=class{constructor(e){ct(this,"options");ct(this,"block");this.options=e||Wr}preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}provideLexer(){return this.block?Fn.lex:Fn.lexInline}provideParser(){return this.block?Bn.parse:Bn.parseInline}},ct(ec,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens"])),ec),xj=class{constructor(...e){ct(this,"defaults",qu());ct(this,"options",this.setOptions);ct(this,"parse",this.parseMarkdown(!0));ct(this,"parseInline",this.parseMarkdown(!1));ct(this,"Parser",Bn);ct(this,"Renderer",da);ct(this,"TextRenderer",nd);ct(this,"Lexer",Fn);ct(this,"Tokenizer",ua);ct(this,"Hooks",Us);this.use(...e)}walkTokens(e,t){var r,o;let n=[];for(const i of e)switch(n=n.concat(t.call(this,i)),i.type){case"table":{const s=i;for(const a of s.header)n=n.concat(this.walkTokens(a.tokens,t));for(const a of s.rows)for(const l of a)n=n.concat(this.walkTokens(l.tokens,t));break}case"list":{const s=i;n=n.concat(this.walkTokens(s.items,t));break}default:{const s=i;(o=(r=this.defaults.extensions)==null?void 0:r.childTokens)!=null&&o[s.type]?this.defaults.extensions.childTokens[s.type].forEach(a=>{const l=s[a].flat(1/0);n=n.concat(this.walkTokens(l,t))}):s.tokens&&(n=n.concat(this.walkTokens(s.tokens,t)))}}return n}use(...e){const t=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(n=>{const r={...n};if(r.async=this.defaults.async||r.async||!1,n.extensions&&(n.extensions.forEach(o=>{if(!o.name)throw new Error("extension name required");if("renderer"in o){const i=t.renderers[o.name];i?t.renderers[o.name]=function(...s){let a=o.renderer.apply(this,s);return a===!1&&(a=i.apply(this,s)),a}:t.renderers[o.name]=o.renderer}if("tokenizer"in o){if(!o.level||o.level!=="block"&&o.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");const i=t[o.level];i?i.unshift(o.tokenizer):t[o.level]=[o.tokenizer],o.start&&(o.level==="block"?t.startBlock?t.startBlock.push(o.start):t.startBlock=[o.start]:o.level==="inline"&&(t.startInline?t.startInline.push(o.start):t.startInline=[o.start]))}"childTokens"in o&&o.childTokens&&(t.childTokens[o.name]=o.childTokens)}),r.extensions=t),n.renderer){const o=this.defaults.renderer||new da(this.defaults);for(const i in n.renderer){if(!(i in o))throw new Error(`renderer '${i}' does not exist`);if(["options","parser"].includes(i))continue;const s=i,a=n.renderer[s],l=o[s];o[s]=(...c)=>{let u=a.apply(o,c);return u===!1&&(u=l.apply(o,c)),u||""}}r.renderer=o}if(n.tokenizer){const o=this.defaults.tokenizer||new ua(this.defaults);for(const i in n.tokenizer){if(!(i in o))throw new Error(`tokenizer '${i}' does not exist`);if(["options","rules","lexer"].includes(i))continue;const s=i,a=n.tokenizer[s],l=o[s];o[s]=(...c)=>{let u=a.apply(o,c);return u===!1&&(u=l.apply(o,c)),u}}r.tokenizer=o}if(n.hooks){const o=this.defaults.hooks||new Us;for(const i in n.hooks){if(!(i in o))throw new Error(`hook '${i}' does not exist`);if(["options","block"].includes(i))continue;const s=i,a=n.hooks[s],l=o[s];Us.passThroughHooks.has(i)?o[s]=c=>{if(this.defaults.async)return Promise.resolve(a.call(o,c)).then(f=>l.call(o,f));const u=a.call(o,c);return l.call(o,u)}:o[s]=(...c)=>{let u=a.apply(o,c);return u===!1&&(u=l.apply(o,c)),u}}r.hooks=o}if(n.walkTokens){const o=this.defaults.walkTokens,i=n.walkTokens;r.walkTokens=function(s){let a=[];return a.push(i.call(this,s)),o&&(a=a.concat(o.call(this,s))),a}}this.defaults={...this.defaults,...r}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,t){return Fn.lex(e,t??this.defaults)}parser(e,t){return Bn.parse(e,t??this.defaults)}parseMarkdown(e){return(n,r)=>{const o={...r},i={...this.defaults,...o},s=this.onError(!!i.silent,!!i.async);if(this.defaults.async===!0&&o.async===!1)return s(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof n>"u"||n===null)return s(new Error("marked(): input parameter is undefined or null"));if(typeof n!="string")return s(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(n)+", string expected"));i.hooks&&(i.hooks.options=i,i.hooks.block=e);const a=i.hooks?i.hooks.provideLexer():e?Fn.lex:Fn.lexInline,l=i.hooks?i.hooks.provideParser():e?Bn.parse:Bn.parseInline;if(i.async)return Promise.resolve(i.hooks?i.hooks.preprocess(n):n).then(c=>a(c,i)).then(c=>i.hooks?i.hooks.processAllTokens(c):c).then(c=>i.walkTokens?Promise.all(this.walkTokens(c,i.walkTokens)).then(()=>c):c).then(c=>l(c,i)).then(c=>i.hooks?i.hooks.postprocess(c):c).catch(s);try{i.hooks&&(n=i.hooks.preprocess(n));let c=a(n,i);i.hooks&&(c=i.hooks.processAllTokens(c)),i.walkTokens&&this.walkTokens(c,i.walkTokens);let u=l(c,i);return i.hooks&&(u=i.hooks.postprocess(u)),u}catch(c){return s(c)}}}onError(e,t){return n=>{if(n.message+=`
667
+ Please report this to https://github.com/markedjs/marked.`,e){const r="<p>An error occurred:</p><pre>"+yn(n.message+"",!0)+"</pre>";return t?Promise.resolve(r):r}if(t)return Promise.reject(n);throw n}}},Lr=new xj;function lt(e,t){return Lr.parse(e,t)}lt.options=lt.setOptions=function(e){return Lr.setOptions(e),lt.defaults=Lr.defaults,mv(lt.defaults),lt};lt.getDefaults=qu;lt.defaults=Wr;lt.use=function(...e){return Lr.use(...e),lt.defaults=Lr.defaults,mv(lt.defaults),lt};lt.walkTokens=function(e,t){return Lr.walkTokens(e,t)};lt.parseInline=Lr.parseInline;lt.Parser=Bn;lt.parser=Bn.parse;lt.Renderer=da;lt.TextRenderer=nd;lt.Lexer=Fn;lt.lexer=Fn.lex;lt.Tokenizer=ua;lt.Hooks=Us;lt.parse=lt;lt.options;lt.setOptions;lt.use;lt.walkTokens;lt.parseInline;Bn.parse;Fn.lex;var oi={},no={},Ss={},vr={},yr={},$l={},rp;function _v(){return rp||(rp=1,(function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.Doctype=e.CDATA=e.Tag=e.Style=e.Script=e.Comment=e.Directive=e.Text=e.Root=e.isTag=e.ElementType=void 0;var t;(function(r){r.Root="root",r.Text="text",r.Directive="directive",r.Comment="comment",r.Script="script",r.Style="style",r.Tag="tag",r.CDATA="cdata",r.Doctype="doctype"})(t=e.ElementType||(e.ElementType={}));function n(r){return r.type===t.Tag||r.type===t.Script||r.type===t.Style}e.isTag=n,e.Root=t.Root,e.Text=t.Text,e.Directive=t.Directive,e.Comment=t.Comment,e.Script=t.Script,e.Style=t.Style,e.Tag=t.Tag,e.CDATA=t.CDATA,e.Doctype=t.Doctype})($l)),$l}var Fe={},op;function ip(){if(op)return Fe;op=1;var e=Fe&&Fe.__extends||(function(){var E=function(k,C){return E=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(A,D){A.__proto__=D}||function(A,D){for(var z in D)Object.prototype.hasOwnProperty.call(D,z)&&(A[z]=D[z])},E(k,C)};return function(k,C){if(typeof C!="function"&&C!==null)throw new TypeError("Class extends value "+String(C)+" is not a constructor or null");E(k,C);function A(){this.constructor=k}k.prototype=C===null?Object.create(C):(A.prototype=C.prototype,new A)}})(),t=Fe&&Fe.__assign||function(){return t=Object.assign||function(E){for(var k,C=1,A=arguments.length;C<A;C++){k=arguments[C];for(var D in k)Object.prototype.hasOwnProperty.call(k,D)&&(E[D]=k[D])}return E},t.apply(this,arguments)};Object.defineProperty(Fe,"__esModule",{value:!0}),Fe.cloneNode=Fe.hasChildren=Fe.isDocument=Fe.isDirective=Fe.isComment=Fe.isText=Fe.isCDATA=Fe.isTag=Fe.Element=Fe.Document=Fe.CDATA=Fe.NodeWithChildren=Fe.ProcessingInstruction=Fe.Comment=Fe.Text=Fe.DataNode=Fe.Node=void 0;var n=_v(),r=(function(){function E(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty(E.prototype,"parentNode",{get:function(){return this.parent},set:function(k){this.parent=k},enumerable:!1,configurable:!0}),Object.defineProperty(E.prototype,"previousSibling",{get:function(){return this.prev},set:function(k){this.prev=k},enumerable:!1,configurable:!0}),Object.defineProperty(E.prototype,"nextSibling",{get:function(){return this.next},set:function(k){this.next=k},enumerable:!1,configurable:!0}),E.prototype.cloneNode=function(k){return k===void 0&&(k=!1),w(this,k)},E})();Fe.Node=r;var o=(function(E){e(k,E);function k(C){var A=E.call(this)||this;return A.data=C,A}return Object.defineProperty(k.prototype,"nodeValue",{get:function(){return this.data},set:function(C){this.data=C},enumerable:!1,configurable:!0}),k})(r);Fe.DataNode=o;var i=(function(E){e(k,E);function k(){var C=E!==null&&E.apply(this,arguments)||this;return C.type=n.ElementType.Text,C}return Object.defineProperty(k.prototype,"nodeType",{get:function(){return 3},enumerable:!1,configurable:!0}),k})(o);Fe.Text=i;var s=(function(E){e(k,E);function k(){var C=E!==null&&E.apply(this,arguments)||this;return C.type=n.ElementType.Comment,C}return Object.defineProperty(k.prototype,"nodeType",{get:function(){return 8},enumerable:!1,configurable:!0}),k})(o);Fe.Comment=s;var a=(function(E){e(k,E);function k(C,A){var D=E.call(this,A)||this;return D.name=C,D.type=n.ElementType.Directive,D}return Object.defineProperty(k.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),k})(o);Fe.ProcessingInstruction=a;var l=(function(E){e(k,E);function k(C){var A=E.call(this)||this;return A.children=C,A}return Object.defineProperty(k.prototype,"firstChild",{get:function(){var C;return(C=this.children[0])!==null&&C!==void 0?C:null},enumerable:!1,configurable:!0}),Object.defineProperty(k.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(k.prototype,"childNodes",{get:function(){return this.children},set:function(C){this.children=C},enumerable:!1,configurable:!0}),k})(r);Fe.NodeWithChildren=l;var c=(function(E){e(k,E);function k(){var C=E!==null&&E.apply(this,arguments)||this;return C.type=n.ElementType.CDATA,C}return Object.defineProperty(k.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),k})(l);Fe.CDATA=c;var u=(function(E){e(k,E);function k(){var C=E!==null&&E.apply(this,arguments)||this;return C.type=n.ElementType.Root,C}return Object.defineProperty(k.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),k})(l);Fe.Document=u;var f=(function(E){e(k,E);function k(C,A,D,z){D===void 0&&(D=[]),z===void 0&&(z=C==="script"?n.ElementType.Script:C==="style"?n.ElementType.Style:n.ElementType.Tag);var $=E.call(this,D)||this;return $.name=C,$.attribs=A,$.type=z,$}return Object.defineProperty(k.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(k.prototype,"tagName",{get:function(){return this.name},set:function(C){this.name=C},enumerable:!1,configurable:!0}),Object.defineProperty(k.prototype,"attributes",{get:function(){var C=this;return Object.keys(this.attribs).map(function(A){var D,z;return{name:A,value:C.attribs[A],namespace:(D=C["x-attribsNamespace"])===null||D===void 0?void 0:D[A],prefix:(z=C["x-attribsPrefix"])===null||z===void 0?void 0:z[A]}})},enumerable:!1,configurable:!0}),k})(l);Fe.Element=f;function p(E){return(0,n.isTag)(E)}Fe.isTag=p;function h(E){return E.type===n.ElementType.CDATA}Fe.isCDATA=h;function x(E){return E.type===n.ElementType.Text}Fe.isText=x;function g(E){return E.type===n.ElementType.Comment}Fe.isComment=g;function v(E){return E.type===n.ElementType.Directive}Fe.isDirective=v;function y(E){return E.type===n.ElementType.Root}Fe.isDocument=y;function b(E){return Object.prototype.hasOwnProperty.call(E,"children")}Fe.hasChildren=b;function w(E,k){k===void 0&&(k=!1);var C;if(x(E))C=new i(E.data);else if(g(E))C=new s(E.data);else if(p(E)){var A=k?S(E.children):[],D=new f(E.name,t({},E.attribs),A);A.forEach(function(L){return L.parent=D}),E.namespace!=null&&(D.namespace=E.namespace),E["x-attribsNamespace"]&&(D["x-attribsNamespace"]=t({},E["x-attribsNamespace"])),E["x-attribsPrefix"]&&(D["x-attribsPrefix"]=t({},E["x-attribsPrefix"])),C=D}else if(h(E)){var A=k?S(E.children):[],z=new c(A);A.forEach(function(_){return _.parent=z}),C=z}else if(y(E)){var A=k?S(E.children):[],$=new u(A);A.forEach(function(_){return _.parent=$}),E["x-mode"]&&($["x-mode"]=E["x-mode"]),C=$}else if(v(E)){var O=new a(E.name,E.data);E["x-name"]!=null&&(O["x-name"]=E["x-name"],O["x-publicId"]=E["x-publicId"],O["x-systemId"]=E["x-systemId"]),C=O}else throw new Error("Not implemented yet: ".concat(E.type));return C.startIndex=E.startIndex,C.endIndex=E.endIndex,E.sourceCodeLocation!=null&&(C.sourceCodeLocation=E.sourceCodeLocation),C}Fe.cloneNode=w;function S(E){for(var k=E.map(function(A){return w(A,!0)}),C=1;C<k.length;C++)k[C].prev=k[C-1],k[C-1].next=k[C];return k}return Fe}var sp;function Tv(){return sp||(sp=1,(function(e){var t=yr&&yr.__createBinding||(Object.create?(function(a,l,c,u){u===void 0&&(u=c);var f=Object.getOwnPropertyDescriptor(l,c);(!f||("get"in f?!l.__esModule:f.writable||f.configurable))&&(f={enumerable:!0,get:function(){return l[c]}}),Object.defineProperty(a,u,f)}):(function(a,l,c,u){u===void 0&&(u=c),a[u]=l[c]})),n=yr&&yr.__exportStar||function(a,l){for(var c in a)c!=="default"&&!Object.prototype.hasOwnProperty.call(l,c)&&t(l,a,c)};Object.defineProperty(e,"__esModule",{value:!0}),e.DomHandler=void 0;var r=_v(),o=ip();n(ip(),e);var i={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},s=(function(){function a(l,c,u){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,typeof c=="function"&&(u=c,c=i),typeof l=="object"&&(c=l,l=void 0),this.callback=l??null,this.options=c??i,this.elementCB=u??null}return a.prototype.onparserinit=function(l){this.parser=l},a.prototype.onreset=function(){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},a.prototype.onend=function(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))},a.prototype.onerror=function(l){this.handleCallback(l)},a.prototype.onclosetag=function(){this.lastNode=null;var l=this.tagStack.pop();this.options.withEndIndices&&(l.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(l)},a.prototype.onopentag=function(l,c){var u=this.options.xmlMode?r.ElementType.Tag:void 0,f=new o.Element(l,c,void 0,u);this.addNode(f),this.tagStack.push(f)},a.prototype.ontext=function(l){var c=this.lastNode;if(c&&c.type===r.ElementType.Text)c.data+=l,this.options.withEndIndices&&(c.endIndex=this.parser.endIndex);else{var u=new o.Text(l);this.addNode(u),this.lastNode=u}},a.prototype.oncomment=function(l){if(this.lastNode&&this.lastNode.type===r.ElementType.Comment){this.lastNode.data+=l;return}var c=new o.Comment(l);this.addNode(c),this.lastNode=c},a.prototype.oncommentend=function(){this.lastNode=null},a.prototype.oncdatastart=function(){var l=new o.Text(""),c=new o.CDATA([l]);this.addNode(c),l.parent=c,this.lastNode=l},a.prototype.oncdataend=function(){this.lastNode=null},a.prototype.onprocessinginstruction=function(l,c){var u=new o.ProcessingInstruction(l,c);this.addNode(u)},a.prototype.handleCallback=function(l){if(typeof this.callback=="function")this.callback(l,this.dom);else if(l)throw l},a.prototype.addNode=function(l){var c=this.tagStack[this.tagStack.length-1],u=c.children[c.children.length-1];this.options.withStartIndices&&(l.startIndex=this.parser.startIndex),this.options.withEndIndices&&(l.endIndex=this.parser.endIndex),c.children.push(l),u&&(l.prev=u,u.next=l),l.parent=c,this.lastNode=null},a})();e.DomHandler=s,e.default=s})(yr)),yr}var zl={},ap;function vj(){return ap||(ap=1,(function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.CARRIAGE_RETURN_PLACEHOLDER_REGEX=e.CARRIAGE_RETURN_PLACEHOLDER=e.CARRIAGE_RETURN_REGEX=e.CARRIAGE_RETURN=e.CASE_SENSITIVE_TAG_NAMES_MAP=e.CASE_SENSITIVE_TAG_NAMES=void 0,e.CASE_SENSITIVE_TAG_NAMES=["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"],e.CASE_SENSITIVE_TAG_NAMES_MAP=e.CASE_SENSITIVE_TAG_NAMES.reduce(function(t,n){return t[n.toLowerCase()]=n,t},{}),e.CARRIAGE_RETURN="\r",e.CARRIAGE_RETURN_REGEX=new RegExp(e.CARRIAGE_RETURN,"g"),e.CARRIAGE_RETURN_PLACEHOLDER="__HTML_DOM_PARSER_CARRIAGE_RETURN_PLACEHOLDER_".concat(Date.now(),"__"),e.CARRIAGE_RETURN_PLACEHOLDER_REGEX=new RegExp(e.CARRIAGE_RETURN_PLACEHOLDER,"g")})(zl)),zl}var lp;function Av(){if(lp)return vr;lp=1,Object.defineProperty(vr,"__esModule",{value:!0}),vr.formatAttributes=r,vr.escapeSpecialCharacters=i,vr.revertEscapedCharacters=s,vr.formatDOM=a;var e=Tv(),t=vj();function n(l){return t.CASE_SENSITIVE_TAG_NAMES_MAP[l]}function r(l){for(var c={},u=0,f=l.length;u<f;u++){var p=l[u];c[p.name]=p.value}return c}function o(l){l=l.toLowerCase();var c=n(l);return c||l}function i(l){return l.replace(t.CARRIAGE_RETURN_REGEX,t.CARRIAGE_RETURN_PLACEHOLDER)}function s(l){return l.replace(t.CARRIAGE_RETURN_PLACEHOLDER_REGEX,t.CARRIAGE_RETURN)}function a(l,c,u){c===void 0&&(c=null);for(var f=[],p,h=0,x=l.length;h<x;h++){var g=l[h];switch(g.nodeType){case 1:{var v=o(g.nodeName);p=new e.Element(v,r(g.attributes)),p.children=a(v==="template"?g.content.childNodes:g.childNodes,p);break}case 3:p=new e.Text(s(g.nodeValue));break;case 8:p=new e.Comment(g.nodeValue);break;default:continue}var y=f[h-1]||null;y&&(y.next=p),p.parent=c,p.prev=y,p.next=null,f.push(p)}return u&&(p=new e.ProcessingInstruction(u.substring(0,u.indexOf(" ")).toLowerCase(),u),p.next=f[0]||null,p.parent=c,f.unshift(p),f[1]&&(f[1].prev=f[0])),f}return vr}var cp;function yj(){if(cp)return Ss;cp=1,Object.defineProperty(Ss,"__esModule",{value:!0}),Ss.default=g;var e=Av(),t="html",n="head",r="body",o=/<([a-zA-Z]+[0-9]?)/,i=/<head[^]*>/i,s=/<body[^]*>/i,a=function(v,y){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},l=function(v,y){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")},c=typeof window=="object"&&window.DOMParser;if(typeof c=="function"){var u=new c,f="text/html";l=function(v,y){return y&&(v="<".concat(y,">").concat(v,"</").concat(y,">")),u.parseFromString(v,f)},a=l}if(typeof document=="object"&&document.implementation){var p=document.implementation.createHTMLDocument();a=function(v,y){if(y){var b=p.documentElement.querySelector(y);return b&&(b.innerHTML=v),p}return p.documentElement.innerHTML=v,p}}var h=typeof document=="object"&&document.createElement("template"),x;h&&h.content&&(x=function(v){return h.innerHTML=v,h.content.childNodes});function g(v){var y,b;v=(0,e.escapeSpecialCharacters)(v);var w=v.match(o),S=w&&w[1]?w[1].toLowerCase():"";switch(S){case t:{var E=l(v);if(!i.test(v)){var k=E.querySelector(n);(y=k==null?void 0:k.parentNode)===null||y===void 0||y.removeChild(k)}if(!s.test(v)){var k=E.querySelector(r);(b=k==null?void 0:k.parentNode)===null||b===void 0||b.removeChild(k)}return E.querySelectorAll(t)}case n:case r:{var C=a(v).querySelectorAll(S);return s.test(v)&&i.test(v)?C[0].parentNode.childNodes:C}default:{if(x)return x(v);var k=a(v,r).querySelector(r);return k.childNodes}}}return Ss}var up;function wj(){if(up)return no;up=1;var e=no&&no.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(no,"__esModule",{value:!0}),no.default=o;var t=e(yj()),n=Av(),r=/<(![a-zA-Z\s]+)>/;function o(i){if(typeof i!="string")throw new TypeError("First argument must be a string");if(!i)return[];var s=i.match(r),a=s?s[1]:void 0;return(0,n.formatDOM)((0,t.default)(i),null,a)}return no}var ks={},rn={},ii={},dp;function bj(){if(dp)return ii;dp=1;var e=0;ii.SAME=e;var t=1;return ii.CAMELCASE=t,ii.possibleStandardNames={accept:0,acceptCharset:1,"accept-charset":"acceptCharset",accessKey:1,action:0,allowFullScreen:1,alt:0,as:0,async:0,autoCapitalize:1,autoComplete:1,autoCorrect:1,autoFocus:1,autoPlay:1,autoSave:1,capture:0,cellPadding:1,cellSpacing:1,challenge:0,charSet:1,checked:0,children:0,cite:0,class:"className",classID:1,className:1,cols:0,colSpan:1,content:0,contentEditable:1,contextMenu:1,controls:0,controlsList:1,coords:0,crossOrigin:1,dangerouslySetInnerHTML:1,data:0,dateTime:1,default:0,defaultChecked:1,defaultValue:1,defer:0,dir:0,disabled:0,disablePictureInPicture:1,disableRemotePlayback:1,download:0,draggable:0,encType:1,enterKeyHint:1,for:"htmlFor",form:0,formMethod:1,formAction:1,formEncType:1,formNoValidate:1,formTarget:1,frameBorder:1,headers:0,height:0,hidden:0,high:0,href:0,hrefLang:1,htmlFor:1,httpEquiv:1,"http-equiv":"httpEquiv",icon:0,id:0,innerHTML:1,inputMode:1,integrity:0,is:0,itemID:1,itemProp:1,itemRef:1,itemScope:1,itemType:1,keyParams:1,keyType:1,kind:0,label:0,lang:0,list:0,loop:0,low:0,manifest:0,marginWidth:1,marginHeight:1,max:0,maxLength:1,media:0,mediaGroup:1,method:0,min:0,minLength:1,multiple:0,muted:0,name:0,noModule:1,nonce:0,noValidate:1,open:0,optimum:0,pattern:0,placeholder:0,playsInline:1,poster:0,preload:0,profile:0,radioGroup:1,readOnly:1,referrerPolicy:1,rel:0,required:0,reversed:0,role:0,rows:0,rowSpan:1,sandbox:0,scope:0,scoped:0,scrolling:0,seamless:0,selected:0,shape:0,size:0,sizes:0,span:0,spellCheck:1,src:0,srcDoc:1,srcLang:1,srcSet:1,start:0,step:0,style:0,summary:0,tabIndex:1,target:0,title:0,type:0,useMap:1,value:0,width:0,wmode:0,wrap:0,about:0,accentHeight:1,"accent-height":"accentHeight",accumulate:0,additive:0,alignmentBaseline:1,"alignment-baseline":"alignmentBaseline",allowReorder:1,alphabetic:0,amplitude:0,arabicForm:1,"arabic-form":"arabicForm",ascent:0,attributeName:1,attributeType:1,autoReverse:1,azimuth:0,baseFrequency:1,baselineShift:1,"baseline-shift":"baselineShift",baseProfile:1,bbox:0,begin:0,bias:0,by:0,calcMode:1,capHeight:1,"cap-height":"capHeight",clip:0,clipPath:1,"clip-path":"clipPath",clipPathUnits:1,clipRule:1,"clip-rule":"clipRule",color:0,colorInterpolation:1,"color-interpolation":"colorInterpolation",colorInterpolationFilters:1,"color-interpolation-filters":"colorInterpolationFilters",colorProfile:1,"color-profile":"colorProfile",colorRendering:1,"color-rendering":"colorRendering",contentScriptType:1,contentStyleType:1,cursor:0,cx:0,cy:0,d:0,datatype:0,decelerate:0,descent:0,diffuseConstant:1,direction:0,display:0,divisor:0,dominantBaseline:1,"dominant-baseline":"dominantBaseline",dur:0,dx:0,dy:0,edgeMode:1,elevation:0,enableBackground:1,"enable-background":"enableBackground",end:0,exponent:0,externalResourcesRequired:1,fill:0,fillOpacity:1,"fill-opacity":"fillOpacity",fillRule:1,"fill-rule":"fillRule",filter:0,filterRes:1,filterUnits:1,floodOpacity:1,"flood-opacity":"floodOpacity",floodColor:1,"flood-color":"floodColor",focusable:0,fontFamily:1,"font-family":"fontFamily",fontSize:1,"font-size":"fontSize",fontSizeAdjust:1,"font-size-adjust":"fontSizeAdjust",fontStretch:1,"font-stretch":"fontStretch",fontStyle:1,"font-style":"fontStyle",fontVariant:1,"font-variant":"fontVariant",fontWeight:1,"font-weight":"fontWeight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:1,"glyph-name":"glyphName",glyphOrientationHorizontal:1,"glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphOrientationVertical:1,"glyph-orientation-vertical":"glyphOrientationVertical",glyphRef:1,gradientTransform:1,gradientUnits:1,hanging:0,horizAdvX:1,"horiz-adv-x":"horizAdvX",horizOriginX:1,"horiz-origin-x":"horizOriginX",ideographic:0,imageRendering:1,"image-rendering":"imageRendering",in2:0,in:0,inlist:0,intercept:0,k1:0,k2:0,k3:0,k4:0,k:0,kernelMatrix:1,kernelUnitLength:1,kerning:0,keyPoints:1,keySplines:1,keyTimes:1,lengthAdjust:1,letterSpacing:1,"letter-spacing":"letterSpacing",lightingColor:1,"lighting-color":"lightingColor",limitingConeAngle:1,local:0,markerEnd:1,"marker-end":"markerEnd",markerHeight:1,markerMid:1,"marker-mid":"markerMid",markerStart:1,"marker-start":"markerStart",markerUnits:1,markerWidth:1,mask:0,maskContentUnits:1,maskUnits:1,mathematical:0,mode:0,numOctaves:1,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:1,"overline-position":"overlinePosition",overlineThickness:1,"overline-thickness":"overlineThickness",paintOrder:1,"paint-order":"paintOrder",panose1:0,"panose-1":"panose1",pathLength:1,patternContentUnits:1,patternTransform:1,patternUnits:1,pointerEvents:1,"pointer-events":"pointerEvents",points:0,pointsAtX:1,pointsAtY:1,pointsAtZ:1,prefix:0,preserveAlpha:1,preserveAspectRatio:1,primitiveUnits:1,property:0,r:0,radius:0,refX:1,refY:1,renderingIntent:1,"rendering-intent":"renderingIntent",repeatCount:1,repeatDur:1,requiredExtensions:1,requiredFeatures:1,resource:0,restart:0,result:0,results:0,rotate:0,rx:0,ry:0,scale:0,security:0,seed:0,shapeRendering:1,"shape-rendering":"shapeRendering",slope:0,spacing:0,specularConstant:1,specularExponent:1,speed:0,spreadMethod:1,startOffset:1,stdDeviation:1,stemh:0,stemv:0,stitchTiles:1,stopColor:1,"stop-color":"stopColor",stopOpacity:1,"stop-opacity":"stopOpacity",strikethroughPosition:1,"strikethrough-position":"strikethroughPosition",strikethroughThickness:1,"strikethrough-thickness":"strikethroughThickness",string:0,stroke:0,strokeDasharray:1,"stroke-dasharray":"strokeDasharray",strokeDashoffset:1,"stroke-dashoffset":"strokeDashoffset",strokeLinecap:1,"stroke-linecap":"strokeLinecap",strokeLinejoin:1,"stroke-linejoin":"strokeLinejoin",strokeMiterlimit:1,"stroke-miterlimit":"strokeMiterlimit",strokeWidth:1,"stroke-width":"strokeWidth",strokeOpacity:1,"stroke-opacity":"strokeOpacity",suppressContentEditableWarning:1,suppressHydrationWarning:1,surfaceScale:1,systemLanguage:1,tableValues:1,targetX:1,targetY:1,textAnchor:1,"text-anchor":"textAnchor",textDecoration:1,"text-decoration":"textDecoration",textLength:1,textRendering:1,"text-rendering":"textRendering",to:0,transform:0,typeof:0,u1:0,u2:0,underlinePosition:1,"underline-position":"underlinePosition",underlineThickness:1,"underline-thickness":"underlineThickness",unicode:0,unicodeBidi:1,"unicode-bidi":"unicodeBidi",unicodeRange:1,"unicode-range":"unicodeRange",unitsPerEm:1,"units-per-em":"unitsPerEm",unselectable:0,vAlphabetic:1,"v-alphabetic":"vAlphabetic",values:0,vectorEffect:1,"vector-effect":"vectorEffect",version:0,vertAdvY:1,"vert-adv-y":"vertAdvY",vertOriginX:1,"vert-origin-x":"vertOriginX",vertOriginY:1,"vert-origin-y":"vertOriginY",vHanging:1,"v-hanging":"vHanging",vIdeographic:1,"v-ideographic":"vIdeographic",viewBox:1,viewTarget:1,visibility:0,vMathematical:1,"v-mathematical":"vMathematical",vocab:0,widths:0,wordSpacing:1,"word-spacing":"wordSpacing",writingMode:1,"writing-mode":"writingMode",x1:0,x2:0,x:0,xChannelSelector:1,xHeight:1,"x-height":"xHeight",xlinkActuate:1,"xlink:actuate":"xlinkActuate",xlinkArcrole:1,"xlink:arcrole":"xlinkArcrole",xlinkHref:1,"xlink:href":"xlinkHref",xlinkRole:1,"xlink:role":"xlinkRole",xlinkShow:1,"xlink:show":"xlinkShow",xlinkTitle:1,"xlink:title":"xlinkTitle",xlinkType:1,"xlink:type":"xlinkType",xmlBase:1,"xml:base":"xmlBase",xmlLang:1,"xml:lang":"xmlLang",xmlns:0,"xml:space":"xmlSpace",xmlnsXlink:1,"xmlns:xlink":"xmlnsXlink",xmlSpace:1,y1:0,y2:0,y:0,yChannelSelector:1,z:0,zoomAndPan:1},ii}var fp;function Ej(){if(fp)return rn;fp=1;const e=0,t=1,n=2,r=3,o=4,i=5,s=6;function a(E){return c.hasOwnProperty(E)?c[E]:null}function l(E,k,C,A,D,z,$){this.acceptsBooleans=k===n||k===r||k===o,this.attributeName=A,this.attributeNamespace=D,this.mustUseProperty=C,this.propertyName=E,this.type=k,this.sanitizeURL=z,this.removeEmptyString=$}const c={};["children","dangerouslySetInnerHTML","defaultValue","defaultChecked","innerHTML","suppressContentEditableWarning","suppressHydrationWarning","style"].forEach(E=>{c[E]=new l(E,e,!1,E,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(([E,k])=>{c[E]=new l(E,t,!1,k,null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(E=>{c[E]=new l(E,n,!1,E.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(E=>{c[E]=new l(E,n,!1,E,null,!1,!1)}),["allowFullScreen","async","autoFocus","autoPlay","controls","default","defer","disabled","disablePictureInPicture","disableRemotePlayback","formNoValidate","hidden","loop","noModule","noValidate","open","playsInline","readOnly","required","reversed","scoped","seamless","itemScope"].forEach(E=>{c[E]=new l(E,r,!1,E.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(E=>{c[E]=new l(E,r,!0,E,null,!1,!1)}),["capture","download"].forEach(E=>{c[E]=new l(E,o,!1,E,null,!1,!1)}),["cols","rows","size","span"].forEach(E=>{c[E]=new l(E,s,!1,E,null,!1,!1)}),["rowSpan","start"].forEach(E=>{c[E]=new l(E,i,!1,E.toLowerCase(),null,!1,!1)});const f=/[\-\:]([a-z])/g,p=E=>E[1].toUpperCase();["accent-height","alignment-baseline","arabic-form","baseline-shift","cap-height","clip-path","clip-rule","color-interpolation","color-interpolation-filters","color-profile","color-rendering","dominant-baseline","enable-background","fill-opacity","fill-rule","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","glyph-name","glyph-orientation-horizontal","glyph-orientation-vertical","horiz-adv-x","horiz-origin-x","image-rendering","letter-spacing","lighting-color","marker-end","marker-mid","marker-start","overline-position","overline-thickness","paint-order","panose-1","pointer-events","rendering-intent","shape-rendering","stop-color","stop-opacity","strikethrough-position","strikethrough-thickness","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-anchor","text-decoration","text-rendering","underline-position","underline-thickness","unicode-bidi","unicode-range","units-per-em","v-alphabetic","v-hanging","v-ideographic","v-mathematical","vector-effect","vert-adv-y","vert-origin-x","vert-origin-y","word-spacing","writing-mode","xmlns:xlink","x-height"].forEach(E=>{const k=E.replace(f,p);c[k]=new l(k,t,!1,E,null,!1,!1)}),["xlink:actuate","xlink:arcrole","xlink:role","xlink:show","xlink:title","xlink:type"].forEach(E=>{const k=E.replace(f,p);c[k]=new l(k,t,!1,E,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(E=>{const k=E.replace(f,p);c[k]=new l(k,t,!1,E,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(E=>{c[E]=new l(E,t,!1,E.toLowerCase(),null,!1,!1)});const h="xlinkHref";c[h]=new l("xlinkHref",t,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(E=>{c[E]=new l(E,t,!1,E.toLowerCase(),null,!0,!0)});const{CAMELCASE:x,SAME:g,possibleStandardNames:v}=bj(),b=":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",w=RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+b+"]*$")),S=Object.keys(v).reduce((E,k)=>{const C=v[k];return C===g?E[k]=k:C===x?E[k.toLowerCase()]=k:E[k]=C,E},{});return rn.BOOLEAN=r,rn.BOOLEANISH_STRING=n,rn.NUMERIC=i,rn.OVERLOADED_BOOLEAN=o,rn.POSITIVE_NUMERIC=s,rn.RESERVED=e,rn.STRING=t,rn.getPropertyInfo=a,rn.isCustomAttribute=w,rn.possibleStandardNames=S,rn}var si={},ro={},Fl,pp;function Sj(){if(pp)return Fl;pp=1;var e=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,t=/\n/g,n=/^\s*/,r=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,o=/^:\s*/,i=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,s=/^[;\s]*/,a=/^\s+|\s+$/g,l=`
668
+ `,c="/",u="*",f="",p="comment",h="declaration";Fl=function(g,v){if(typeof g!="string")throw new TypeError("First argument must be a string");if(!g)return[];v=v||{};var y=1,b=1;function w(L){var _=L.match(t);_&&(y+=_.length);var M=L.lastIndexOf(l);b=~M?L.length-M:b+L.length}function S(){var L={line:y,column:b};return function(_){return _.position=new E(L),A(),_}}function E(L){this.start=L,this.end={line:y,column:b},this.source=v.source}E.prototype.content=g;function k(L){var _=new Error(v.source+":"+y+":"+b+": "+L);if(_.reason=L,_.filename=v.source,_.line=y,_.column=b,_.source=g,!v.silent)throw _}function C(L){var _=L.exec(g);if(_){var M=_[0];return w(M),g=g.slice(M.length),_}}function A(){C(n)}function D(L){var _;for(L=L||[];_=z();)_!==!1&&L.push(_);return L}function z(){var L=S();if(!(c!=g.charAt(0)||u!=g.charAt(1))){for(var _=2;f!=g.charAt(_)&&(u!=g.charAt(_)||c!=g.charAt(_+1));)++_;if(_+=2,f===g.charAt(_-1))return k("End of comment missing");var M=g.slice(2,_-2);return b+=2,w(M),g=g.slice(_),b+=2,L({type:p,comment:M})}}function $(){var L=S(),_=C(r);if(_){if(z(),!C(o))return k("property missing ':'");var M=C(i),N=L({type:h,property:x(_[0].replace(e,f)),value:M?x(M[0].replace(e,f)):f});return C(s),N}}function O(){var L=[];D(L);for(var _;_=$();)_!==!1&&(L.push(_),D(L));return L}return A(),O()};function x(g){return g?g.replace(a,f):f}return Fl}var hp;function kj(){if(hp)return ro;hp=1;var e=ro&&ro.__importDefault||function(r){return r&&r.__esModule?r:{default:r}};Object.defineProperty(ro,"__esModule",{value:!0}),ro.default=n;var t=e(Sj());function n(r,o){var i=null;if(!r||typeof r!="string")return i;var s=(0,t.default)(r),a=typeof o=="function";return s.forEach(function(l){if(l.type==="declaration"){var c=l.property,u=l.value;a?o(c,u,l):u&&(i=i||{},i[c]=u)}}),i}return ro}var ai={},mp;function Cj(){if(mp)return ai;mp=1,Object.defineProperty(ai,"__esModule",{value:!0}),ai.camelCase=void 0;var e=/^--[a-zA-Z0-9_-]+$/,t=/-([a-z])/g,n=/^[^-]+$/,r=/^-(webkit|moz|ms|o|khtml)-/,o=/^-(ms)-/,i=function(c){return!c||n.test(c)||e.test(c)},s=function(c,u){return u.toUpperCase()},a=function(c,u){return"".concat(u,"-")},l=function(c,u){return u===void 0&&(u={}),i(c)?c:(c=c.toLowerCase(),u.reactCompat?c=c.replace(o,a):c=c.replace(r,a),c.replace(t,s))};return ai.camelCase=l,ai}var li,gp;function _j(){if(gp)return li;gp=1;var e=li&&li.__importDefault||function(o){return o&&o.__esModule?o:{default:o}},t=e(kj()),n=Cj();function r(o,i){var s={};return!o||typeof o!="string"||(0,t.default)(o,function(a,l){a&&l&&(s[(0,n.camelCase)(a,i)]=l)}),s}return r.default=r,li=r,li}var xp;function Nv(){return xp||(xp=1,(function(e){var t=si&&si.__importDefault||function(u){return u&&u.__esModule?u:{default:u}};Object.defineProperty(e,"__esModule",{value:!0}),e.returnFirstArg=e.canTextBeChildOfNode=e.ELEMENTS_WITH_NO_TEXT_CHILDREN=e.PRESERVE_CUSTOM_ATTRIBUTES=void 0,e.isCustomComponent=i,e.setStyleProp=a;var n=ka(),r=t(_j()),o=new Set(["annotation-xml","color-profile","font-face","font-face-src","font-face-uri","font-face-format","font-face-name","missing-glyph"]);function i(u,f){return u.includes("-")?!o.has(u):!!(f&&typeof f.is=="string")}var s={reactCompat:!0};function a(u,f){if(typeof u=="string"){if(!u.trim()){f.style={};return}try{f.style=(0,r.default)(u,s)}catch{f.style={}}}}e.PRESERVE_CUSTOM_ATTRIBUTES=Number(n.version.split(".")[0])>=16,e.ELEMENTS_WITH_NO_TEXT_CHILDREN=new Set(["tr","tbody","thead","tfoot","colgroup","table","head","html","frameset"]);var l=function(u){return!e.ELEMENTS_WITH_NO_TEXT_CHILDREN.has(u.name)};e.canTextBeChildOfNode=l;var c=function(u){return u};e.returnFirstArg=c})(si)),si}var vp;function Iv(){if(vp)return ks;vp=1,Object.defineProperty(ks,"__esModule",{value:!0}),ks.default=i;var e=Ej(),t=Nv(),n=["checked","value"],r=["input","select","textarea"],o={reset:!0,submit:!0};function i(a,l){a===void 0&&(a={});var c={},u=!!(a.type&&o[a.type]);for(var f in a){var p=a[f];if((0,e.isCustomAttribute)(f)){c[f]=p;continue}var h=f.toLowerCase(),x=s(h);if(x){var g=(0,e.getPropertyInfo)(x);switch(n.includes(x)&&r.includes(l)&&!u&&(x=s("default"+h)),c[x]=p,g&&g.type){case e.BOOLEAN:c[x]=!0;break;case e.OVERLOADED_BOOLEAN:p===""&&(c[x]=!0);break}continue}t.PRESERVE_CUSTOM_ATTRIBUTES&&(c[f]=p)}return(0,t.setStyleProp)(a.style,c),c}function s(a){return e.possibleStandardNames[a]}return ks}var oo={},yp;function Tj(){if(yp)return oo;yp=1;var e=oo&&oo.__importDefault||function(a){return a&&a.__esModule?a:{default:a}};Object.defineProperty(oo,"__esModule",{value:!0}),oo.default=i;var t=ka(),n=e(Iv()),r=Nv(),o={cloneElement:t.cloneElement,createElement:t.createElement,isValidElement:t.isValidElement};function i(a,l){l===void 0&&(l={});for(var c=[],u=typeof l.replace=="function",f=l.transform||r.returnFirstArg,p=l.library||o,h=p.cloneElement,x=p.createElement,g=p.isValidElement,v=a.length,y=0;y<v;y++){var b=a[y];if(u){var w=l.replace(b,y);if(g(w)){v>1&&(w=h(w,{key:w.key||y})),c.push(f(w,b,y));continue}}if(b.type==="text"){var S=!b.data.trim().length;if(S&&b.parent&&!(0,r.canTextBeChildOfNode)(b.parent)||l.trim&&S)continue;c.push(f(b.data,b,y));continue}var E=b,k={};s(E)?((0,r.setStyleProp)(E.attribs.style,E.attribs),k=E.attribs):E.attribs&&(k=(0,n.default)(E.attribs,E.name));var C=void 0;switch(b.type){case"script":case"style":b.children[0]&&(k.dangerouslySetInnerHTML={__html:b.children[0].data});break;case"tag":b.name==="textarea"&&b.children[0]?k.defaultValue=b.children[0].data:b.children&&b.children.length&&(C=i(b.children,l));break;default:continue}v>1&&(k.key=y),c.push(f(x(b.name,k,C),b,y))}return c.length===1?c[0]:c}function s(a){return r.PRESERVE_CUSTOM_ATTRIBUTES&&a.type==="tag"&&(0,r.isCustomComponent)(a.name,a.attribs)}return oo}var wp;function Aj(){return wp||(wp=1,(function(e){var t=oi&&oi.__importDefault||function(l){return l&&l.__esModule?l:{default:l}};Object.defineProperty(e,"__esModule",{value:!0}),e.htmlToDOM=e.domToReact=e.attributesToProps=e.Text=e.ProcessingInstruction=e.Element=e.Comment=void 0,e.default=a;var n=t(wj());e.htmlToDOM=n.default;var r=t(Iv());e.attributesToProps=r.default;var o=t(Tj());e.domToReact=o.default;var i=Tv();Object.defineProperty(e,"Comment",{enumerable:!0,get:function(){return i.Comment}}),Object.defineProperty(e,"Element",{enumerable:!0,get:function(){return i.Element}}),Object.defineProperty(e,"ProcessingInstruction",{enumerable:!0,get:function(){return i.ProcessingInstruction}}),Object.defineProperty(e,"Text",{enumerable:!0,get:function(){return i.Text}});var s={lowerCaseAttributeNames:!1};function a(l,c){if(typeof l!="string")throw new TypeError("First argument must be a string");return l?(0,o.default)((0,n.default)(l,(c==null?void 0:c.htmlparser2)||s),c):[]}})(oi)),oi}var jv=Aj();const bp=Qc(jv),Nj=bp.default||bp,Ij={replace:e=>{e instanceof jv.Element&&e.attribs&&e.name==="a"&&(e.attribs.target="_blank",e.attribs.rel="noopener noreferrer")}};function vo({children:e,className:t}){if(!e)return null;try{const n=lt.parse(e,{gfm:!0}),r=kx.sanitize(n,{USE_PROFILES:{html:!0}}),o=Nj(r,Ij);return d.jsx("div",{className:Dd(t),children:o})}catch{return d.jsx("div",{className:Dd(t),children:e})}}const jj=dr("flex items-center gap-3 px-4 py-3 text-sm font-medium transition-all border-l-4 border-solid ",{variants:{variant:{error:"bg-[var(--color-error-w10)] text-[var(--color-error-wMain)] border-[var(--color-error-wMain)] dark:bg-[var(--color-error-wMain)] dark:text-[var(--color-primary-text-w10)] dark:border-[var(--color-error-w10)]",warning:"bg-[var(--color-warning-w10)] text-[var(--color-warning-wMain)] border-[var(--color-warning-wMain)] dark:bg-[var(--color-warning-wMain)] dark:text-[var(--color-primary-text-w10)] dark:border-[var(--color-warning-w10)]",info:"bg-[var(--color-info-w10)] text-[var(--color-info-wMain)] border-[var(--color-info-w10)] dark:bg-[var(--color-info-wMain)] dark:text-[var(--color-primary-text-w10)] dark:border-[var(--color-info-w10)]",success:"bg-[var(--color-success-w10)] text-[var(--color-success-wMain)] border-[var(--color-success-w10)] dark:bg-[var(--color-success-wMain)] dark:text-[var(--color-primary-text-w10)] dark:border-[var(--color-success-w10)]"}},defaultVariants:{variant:"error"}}),Mj={error:vu,warning:xk,info:wu,success:Fm};function rd({className:e,variant:t="error",message:n,dismissible:r=!1,onDismiss:o,...i}){const s=Mj[t||"error"];return d.jsxs("div",{className:Ge(jj({variant:t,className:e})),role:"alert","aria-live":"polite",...i,children:[d.jsx(s,{className:"size-5 shrink-0"}),d.jsx("span",{className:"flex-1",children:n}),r&&o&&d.jsx(Ke,{variant:"ghost",onClick:o,"aria-label":"Dismiss",children:d.jsx(Eu,{className:"size-3"})})]})}const Rj=({artifact:e,message:t})=>{const{onDownload:n}=Xg();return d.jsxs("div",{className:"flex h-full w-full flex-col items-center justify-center gap-2 p-4",children:[d.jsx("div",{className:"mb-1 font-semibold",children:"Preview Coming Soon"}),d.jsx("div",{children:t}),d.jsx("div",{className:"mb-4",children:"Download file to view."}),d.jsxs(Ke,{onClick:()=>n(e),children:[d.jsx(yu,{className:"h-4 w-4"}),"Download"]})]})},Bl=({children:e})=>d.jsx("div",{className:"text-muted-foreground flex h-[50vh] items-center justify-center",children:e||"No preview available"}),Dj=({artifact:e})=>{const{openArtifactForPreview:t,previewFileContent:n}=Nt(),r=m.useMemo(()=>CA(e),[e]),[o,i]=m.useState(!1),[s,a]=m.useState(null);if(m.useEffect(()=>{i(!1),a(null)},[e]),m.useEffect(()=>{async function u(){try{i(!0),a(null),await t(e.filename)}catch(f){console.error("Error fetching artifact content:",f),a(f instanceof Error?f.message:"Failed to load artifact content")}finally{i(!1)}}r!=null&&r.canPreview&&u()},[e,t,r]),s)return d.jsxs("div",{className:"flex h-full w-full flex-col",children:[d.jsx(rd,{variant:"error",message:"Error rendering preview"}),d.jsx(Bl,{children:"No preview available"})]});if(o)return d.jsx(Bl,{children:d.jsx(bu,{className:"text-muted-foreground h-6 w-6 animate-spin"})});if(!r.canPreview)return d.jsx(Rj,{artifact:e,message:r.reason??""});const l=Qi(e.filename,e.mime_type),c=SA(n);return!l||!c?d.jsx(Bl,{children:"No preview available"}):d.jsx(pv,{content:c,rendererType:l,mime_type:n==null?void 0:n.mime_type,setRenderError:a})},kn={NameAsc:"name_asc",NameDesc:"name_desc",DateAsc:"date_asc",DateDesc:"date_desc"},Pj=e=>{switch(e){case kn.NameAsc:return"Name (A-Z)";case kn.NameDesc:return"Name (Z-A)";case kn.DateAsc:return"Date (oldest first)";case kn.DateDesc:return"Date (newest first)"}},Oj=({currentSortOption:e,onSortChange:t,children:n})=>{const r=Object.values(kn).map(o=>({id:o,label:Pj(o),onClick:()=>t(o),icon:e===o?d.jsx($m,{}):void 0,iconPosition:"right"}));return d.jsxs(u0,{children:[d.jsx(d0,{asChild:!0,children:n}),d.jsx(f0,{align:"end",side:"bottom",className:"w-auto",sideOffset:0,children:d.jsx($u,{actions:r})})]})},Lj=({children:e})=>{const{artifactsRefetch:t,setIsBatchDeleteModalOpen:n}=Nt(),r=[{id:"refreshAll",label:"Refresh",onClick:()=>{t()},icon:d.jsx(Gm,{}),iconPosition:"left"},{id:"deleteAll",label:"Delete All",onClick:()=>{n(!0)},icon:d.jsx(Km,{}),iconPosition:"left",divider:!0}];return d.jsxs(u0,{children:[d.jsx(d0,{asChild:!0,children:e}),d.jsx(f0,{align:"end",side:"bottom",className:"w-auto",sideOffset:0,children:d.jsx($u,{actions:r})})]})},$j=()=>{const{artifacts:e,isBatchDeleteModalOpen:t,setIsBatchDeleteModalOpen:n,confirmBatchDeleteArtifacts:r,setSelectedArtifactFilenames:o}=Nt();return m.useEffect(()=>{t&&o(new Set(e.map(i=>i.filename)))},[e,t,o]),t?d.jsx(Au,{open:t,onOpenChange:n,children:d.jsxs(Nu,{children:[d.jsxs(Iu,{children:[d.jsx(ju,{children:"Delete All?"}),d.jsxs(Mu,{children:[e.length===1?"One file":`All ${e.length} files`," will be permanently deleted."]})]}),d.jsxs("div",{className:"flex justify-end space-x-2",children:[d.jsx(Ke,{variant:"outline",onClick:()=>n(!1),children:"Cancel"}),d.jsx(Ke,{variant:"default",onClick:()=>r(),children:"Delete"})]})]})}):null},zj={[kn.NameAsc]:(e,t)=>e.filename.localeCompare(t.filename),[kn.NameDesc]:(e,t)=>t.filename.localeCompare(e.filename),[kn.DateAsc]:(e,t)=>e.last_modified>t.last_modified?1:-1,[kn.DateDesc]:(e,t)=>e.last_modified<t.last_modified?1:-1},Fj=()=>{const{artifacts:e,artifactsLoading:t,previewArtifact:n,setPreviewArtifact:r}=Nt(),[o,i]=m.useState(kn.DateDesc),s=m.useMemo(()=>t?[]:e?[...e].sort(zj[o]):[],[e,t,o]),a=m.useMemo(()=>n?d.jsxs("div",{className:"flex items-center gap-2 border-b p-2",children:[d.jsx(Ke,{variant:"ghost",onClick:()=>r(null),children:d.jsx(aS,{})}),d.jsx("div",{className:"text-md font-semibold",children:"Preview"})]}):s.length>0&&d.jsxs("div",{className:"flex items-center justify-end border-b p-2",children:[d.jsx(Oj,{currentSortOption:o,onSortChange:i,children:d.jsxs(Ke,{variant:"ghost",title:"Sort By",children:[d.jsx(Om,{className:"h-5 w-5"}),d.jsx("div",{children:"Sort By"})]})},"sort-popover"),d.jsx(Lj,{children:d.jsx(Ke,{variant:"ghost",tooltip:"More",children:d.jsx(NS,{className:"h-5 w-5"})})},"more-popover")]}),[n,s.length,o,r]);return d.jsxs("div",{className:"flex h-full flex-col",children:[a,d.jsxs("div",{className:"flex min-h-0 flex-1",children:[!n&&d.jsxs("div",{className:"flex-1 overflow-y-auto",children:[s.map(l=>d.jsx(Zf,{artifact:l},l.filename)),s.length===0&&d.jsx("div",{className:"flex h-full items-center justify-center p-4",children:d.jsxs("div",{className:"text-muted-foreground text-center",children:[t&&d.jsx(bu,{className:"size-6 animate-spin"}),!t&&d.jsxs(d.Fragment,{children:[d.jsx(So,{className:"mx-auto mb-4 h-12 w-12"}),d.jsx("div",{className:"text-lg font-medium",children:"Files"}),d.jsx("div",{className:"mt-2 text-sm",children:"No files available"})]})]})})]}),n&&d.jsxs("div",{className:"flex flex-1 flex-col gap-2 min-h-0 min-w-0",children:[d.jsx(Zf,{artifact:n,isPreview:!0},n.filename),d.jsx("div",{className:"flex-1 min-h-0 min-w-0 overflow-y-auto",children:d.jsx(Dj,{artifact:n})})]})]}),d.jsx(PI,{}),d.jsx($j,{})]})},Bj=({onCollapsedToggle:e,isSidePanelCollapsed:t,setIsSidePanelCollapsed:n,isSidePanelTransitioning:r})=>{const{activeSidePanelTab:o,setActiveSidePanelTab:i,setPreviewArtifact:s,taskIdInSidePanel:a}=Nt(),{isReconnecting:l,isTaskMonitorConnecting:c,isTaskMonitorConnected:u,monitoredTasks:f,connectTaskMonitorStream:p}=Ou(),[h,x]=m.useState(null);m.useEffect(()=>{if(a&&f[a]){const w=f[a],S=S5(w.events||[],f,w);x(S)}else x(null)},[a,f]);const g=()=>l||c?{message:"Connecting to task monitor ...",showButton:!1}:u?a?h?null:{message:"No workflow data available for the selected task",showButton:!1}:{message:"No task selected to display",showButton:!1}:{message:"No connection to task monitor",showButton:!0,buttonText:"Reconnect",buttonIcon:lk,buttonAction:p},v=()=>{const w=!t;n(w),e(w)},y=w=>{w==="files"&&s(null),i(w)},b=w=>{t&&(n(!1),e==null||e(!1)),y(w)};return t?d.jsxs("div",{className:"bg-background flex h-full w-full flex-col items-center border-l py-4",children:[d.jsx(Ke,{variant:"ghost",size:"sm",onClick:v,className:"h-10 w-10 p-0",tooltip:"Expand Panel",children:d.jsx(Jd,{className:"size-5"})}),d.jsx("div",{className:"bg-border my-4 h-px w-8"}),d.jsx(Ke,{variant:"ghost",size:"sm",onClick:()=>b("files"),className:"mb-2 h-10 w-10 p-0",tooltip:"Files",children:d.jsx(So,{className:"size-5"})}),d.jsx(Ke,{variant:"ghost",size:"sm",onClick:()=>b("workflow"),className:"h-10 w-10 p-0",tooltip:"Workflow",children:d.jsx($s,{className:"size-5"})})]}):d.jsx("div",{className:"bg-background flex h-full flex-col border-l",children:d.jsx("div",{className:"m-1 min-h-0 flex-1",children:d.jsxs(KT,{value:o,onValueChange:w=>y(w),className:"flex h-full flex-col",children:[d.jsxs("div",{className:"flex gap-2 p-2",children:[d.jsx(Ke,{variant:"ghost",onClick:v,className:"p-1",tooltip:"Collapse Panel",children:d.jsx(Jd,{className:"size-5"})}),d.jsxs(XT,{className:"grid w-full grid-cols-2 bg-transparent p-0",children:[d.jsxs(Cf,{value:"files",title:"Files",className:"border-border bg-muted data-[state=active]:bg-background relative cursor-pointer rounded-none rounded-l-md border border-r-0 data-[state=active]:z-10 data-[state=active]:border-r-0",children:[d.jsx(So,{className:"mr-2 h-4 w-4"}),"Files"]}),d.jsxs(Cf,{value:"workflow",title:"Workflow",className:"border-border bg-muted data-[state=active]:bg-background relative cursor-pointer rounded-none rounded-r-md border border-l-0 data-[state=active]:z-10 data-[state=active]:border-l-0",children:[d.jsx($s,{className:"mr-2 h-4 w-4"}),"Workflow"]})]})]}),d.jsxs("div",{className:"min-h-0 flex-1",children:[d.jsx(_f,{value:"files",className:"m-0 h-full",children:d.jsx("div",{className:"h-full",children:d.jsx(Fj,{})})}),d.jsx(_f,{value:"workflow",className:"m-0 h-full",children:d.jsx("div",{className:"h-full",children:(()=>{const w=g();return!w&&h?d.jsxs("div",{className:"flex h-full flex-col",children:[d.jsx(Vj,{task:h}),d.jsx(E5,{processedSteps:h.steps||[],isRightPanelVisible:!1,isSidePanelTransitioning:r})]}):d.jsx("div",{className:"flex h-full items-center justify-center p-4",children:d.jsxs("div",{className:"text-muted-foreground text-center",children:[d.jsx($s,{className:"mx-auto mb-4 h-12 w-12"}),d.jsx("div",{className:"text-lg font-medium",children:"Workflow"}),d.jsx("div",{className:"mt-2 text-sm",children:w==null?void 0:w.message}),(w==null?void 0:w.showButton)&&d.jsx("div",{className:"mt-4",children:d.jsxs(Ke,{onClick:w.buttonAction,children:[w.buttonIcon&&(()=>{const S=w.buttonIcon;return d.jsx(S,{className:"h-4 w-4"})})(),w.buttonText]})})]})})})()})})]})]})})})},Ac=({statusText:e,onViewWorkflow:t})=>d.jsxs("div",{className:"flex h-8 items-center space-x-3 py-1",children:[t?d.jsx(Xm,{onClick:t}):d.jsx(rA,{className:"ml-2 mr-3"}),d.jsx("div",{className:"flex min-w-0 flex-1 items-center gap-1",children:e&&d.jsx("span",{className:"text-muted-foreground animate-pulse truncate text-sm",title:e,children:e})})]}),Mv=({isOpen:e,onClose:t})=>{const{handleNewSession:n}=Nt();return d.jsx(Au,{open:e,onOpenChange:t,children:d.jsxs(Nu,{children:[d.jsxs(Iu,{children:[d.jsx(ju,{className:"flex flex-row gap-1 max-w-[400px]",children:"New Chat Session?"}),d.jsx(Mu,{className:"flex flex-col gap-2",children:"Starting a new chat session will clear the current chat history and files. Are you sure you want to proceed?"})]}),d.jsxs("div",{className:"flex justify-end gap-2",children:[d.jsx(Ke,{variant:"outline",onClick:t,children:"Cancel"}),d.jsx(Ke,{variant:"default",onClick:()=>{n(),t()},children:"Start New Chat"})]})]})})},Hj=({onToggle:e})=>{const[t,n]=m.useState(!1);return d.jsxs("div",{className:"bg-background flex h-full w-100 flex-col border-r",children:[d.jsxs("div",{className:"flex items-center justify-between px-4 pt-[35px] pb-3",children:[d.jsx(Ke,{variant:"ghost",onClick:e,className:"p-2",tooltip:"Collapse Sessions Panel",children:d.jsx(Vm,{className:"size-5"})}),d.jsxs(Ke,{variant:"ghost",onClick:()=>n(!0),tooltip:"Start New Chat Session",children:[d.jsx(Ym,{className:"size-5"}),"New chat"]})]}),d.jsx("div",{className:"mt-1 min-h-0 flex-1",children:d.jsx(RI,{})}),d.jsx(Mv,{isOpen:t,onClose:()=>n(!1)})]})},ci=(e,t)=>d.jsx(dx,{type:t,className:"rounded-full border-none",children:d.jsx("span",{className:"text-xs font-semibold",title:e,children:e})}),Uj=(e,t)=>{var r;if(e.currentStatusText)return d.jsx("div",{title:e.currentStatusText,children:d.jsx(Ac,{statusText:e.currentStatusText})});const n=(r=t==null?void 0:t.parts)==null?void 0:r.filter(o=>o.kind==="text").map(o=>o.text).join("");switch(e.status){case"submitted":case"working":return d.jsx("div",{title:n||e.status,children:d.jsx(Ac,{statusText:n||e.status})});case"input-required":return ci("Input Required","info");case"completed":return ci("Completed","success");case"canceled":return ci("Canceled","info");case"failed":return ci("Failed","error");default:return ci("Unknown","info")}},Vj=({task:e})=>{const{messages:t}=Nt(),n=m.useMemo(()=>{const r=t.find(o=>o.isStatusBubble);return e?Uj(e,r):null},[t,e]);return e?d.jsxs("div",{className:"grid grid-cols-[auto_1fr] grid-rows-[32px_32px] gap-x-8 border-b p-4 leading-[32px]",children:[d.jsx("div",{className:"text-muted-foreground",children:"User"}),d.jsx("div",{className:"truncate",title:e.initialRequestText,children:e.initialRequestText}),d.jsx("div",{className:"text-muted-foreground",children:"Status"}),d.jsx("div",{className:"truncate",children:n})]}):null};function It(e){if(typeof e=="string"||typeof e=="number")return""+e;let t="";if(Array.isArray(e))for(let n=0,r;n<e.length;n++)(r=It(e[n]))!==""&&(t+=(t&&" ")+r);else for(let n in e)e[n]&&(t+=(t&&" ")+n);return t}var Wj={value:()=>{}};function Ka(){for(var e=0,t=arguments.length,n={},r;e<t;++e){if(!(r=arguments[e]+"")||r in n||/[\s.]/.test(r))throw new Error("illegal type: "+r);n[r]=[]}return new Vs(n)}function Vs(e){this._=e}function Gj(e,t){return e.trim().split(/^|\s+/).map(function(n){var r="",o=n.indexOf(".");if(o>=0&&(r=n.slice(o+1),n=n.slice(0,o)),n&&!t.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:r}})}Vs.prototype=Ka.prototype={constructor:Vs,on:function(e,t){var n=this._,r=Gj(e+"",n),o,i=-1,s=r.length;if(arguments.length<2){for(;++i<s;)if((o=(e=r[i]).type)&&(o=Yj(n[o],e.name)))return o;return}if(t!=null&&typeof t!="function")throw new Error("invalid callback: "+t);for(;++i<s;)if(o=(e=r[i]).type)n[o]=Ep(n[o],e.name,t);else if(t==null)for(o in n)n[o]=Ep(n[o],e.name,null);return this},copy:function(){var e={},t=this._;for(var n in t)e[n]=t[n].slice();return new Vs(e)},call:function(e,t){if((o=arguments.length-2)>0)for(var n=new Array(o),r=0,o,i;r<o;++r)n[r]=arguments[r+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(i=this._[e],r=0,o=i.length;r<o;++r)i[r].value.apply(t,n)},apply:function(e,t,n){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var r=this._[e],o=0,i=r.length;o<i;++o)r[o].value.apply(t,n)}};function Yj(e,t){for(var n=0,r=e.length,o;n<r;++n)if((o=e[n]).name===t)return o.value}function Ep(e,t,n){for(var r=0,o=e.length;r<o;++r)if(e[r].name===t){e[r]=Wj,e=e.slice(0,r).concat(e.slice(r+1));break}return n!=null&&e.push({name:t,value:n}),e}var Nc="http://www.w3.org/1999/xhtml";const Sp={svg:"http://www.w3.org/2000/svg",xhtml:Nc,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Xa(e){var t=e+="",n=t.indexOf(":");return n>=0&&(t=e.slice(0,n))!=="xmlns"&&(e=e.slice(n+1)),Sp.hasOwnProperty(t)?{space:Sp[t],local:e}:e}function qj(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===Nc&&t.documentElement.namespaceURI===Nc?t.createElement(e):t.createElementNS(n,e)}}function Kj(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function Rv(e){var t=Xa(e);return(t.local?Kj:qj)(t)}function Xj(){}function od(e){return e==null?Xj:function(){return this.querySelector(e)}}function Zj(e){typeof e!="function"&&(e=od(e));for(var t=this._groups,n=t.length,r=new Array(n),o=0;o<n;++o)for(var i=t[o],s=i.length,a=r[o]=new Array(s),l,c,u=0;u<s;++u)(l=i[u])&&(c=e.call(l,l.__data__,u,i))&&("__data__"in l&&(c.__data__=l.__data__),a[u]=c);return new en(r,this._parents)}function Qj(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function Jj(){return[]}function Dv(e){return e==null?Jj:function(){return this.querySelectorAll(e)}}function eM(e){return function(){return Qj(e.apply(this,arguments))}}function tM(e){typeof e=="function"?e=eM(e):e=Dv(e);for(var t=this._groups,n=t.length,r=[],o=[],i=0;i<n;++i)for(var s=t[i],a=s.length,l,c=0;c<a;++c)(l=s[c])&&(r.push(e.call(l,l.__data__,c,s)),o.push(l));return new en(r,o)}function Pv(e){return function(){return this.matches(e)}}function Ov(e){return function(t){return t.matches(e)}}var nM=Array.prototype.find;function rM(e){return function(){return nM.call(this.children,e)}}function oM(){return this.firstElementChild}function iM(e){return this.select(e==null?oM:rM(typeof e=="function"?e:Ov(e)))}var sM=Array.prototype.filter;function aM(){return Array.from(this.children)}function lM(e){return function(){return sM.call(this.children,e)}}function cM(e){return this.selectAll(e==null?aM:lM(typeof e=="function"?e:Ov(e)))}function uM(e){typeof e!="function"&&(e=Pv(e));for(var t=this._groups,n=t.length,r=new Array(n),o=0;o<n;++o)for(var i=t[o],s=i.length,a=r[o]=[],l,c=0;c<s;++c)(l=i[c])&&e.call(l,l.__data__,c,i)&&a.push(l);return new en(r,this._parents)}function Lv(e){return new Array(e.length)}function dM(){return new en(this._enter||this._groups.map(Lv),this._parents)}function fa(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}fa.prototype={constructor:fa,appendChild:function(e){return this._parent.insertBefore(e,this._next)},insertBefore:function(e,t){return this._parent.insertBefore(e,t)},querySelector:function(e){return this._parent.querySelector(e)},querySelectorAll:function(e){return this._parent.querySelectorAll(e)}};function fM(e){return function(){return e}}function pM(e,t,n,r,o,i){for(var s=0,a,l=t.length,c=i.length;s<c;++s)(a=t[s])?(a.__data__=i[s],r[s]=a):n[s]=new fa(e,i[s]);for(;s<l;++s)(a=t[s])&&(o[s]=a)}function hM(e,t,n,r,o,i,s){var a,l,c=new Map,u=t.length,f=i.length,p=new Array(u),h;for(a=0;a<u;++a)(l=t[a])&&(p[a]=h=s.call(l,l.__data__,a,t)+"",c.has(h)?o[a]=l:c.set(h,l));for(a=0;a<f;++a)h=s.call(e,i[a],a,i)+"",(l=c.get(h))?(r[a]=l,l.__data__=i[a],c.delete(h)):n[a]=new fa(e,i[a]);for(a=0;a<u;++a)(l=t[a])&&c.get(p[a])===l&&(o[a]=l)}function mM(e){return e.__data__}function gM(e,t){if(!arguments.length)return Array.from(this,mM);var n=t?hM:pM,r=this._parents,o=this._groups;typeof e!="function"&&(e=fM(e));for(var i=o.length,s=new Array(i),a=new Array(i),l=new Array(i),c=0;c<i;++c){var u=r[c],f=o[c],p=f.length,h=xM(e.call(u,u&&u.__data__,c,r)),x=h.length,g=a[c]=new Array(x),v=s[c]=new Array(x),y=l[c]=new Array(p);n(u,f,g,v,y,h,t);for(var b=0,w=0,S,E;b<x;++b)if(S=g[b]){for(b>=w&&(w=b+1);!(E=v[w])&&++w<x;);S._next=E||null}}return s=new en(s,r),s._enter=a,s._exit=l,s}function xM(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function vM(){return new en(this._exit||this._groups.map(Lv),this._parents)}function yM(e,t,n){var r=this.enter(),o=this,i=this.exit();return typeof e=="function"?(r=e(r),r&&(r=r.selection())):r=r.append(e+""),t!=null&&(o=t(o),o&&(o=o.selection())),n==null?i.remove():n(i),r&&o?r.merge(o).order():o}function wM(e){for(var t=e.selection?e.selection():e,n=this._groups,r=t._groups,o=n.length,i=r.length,s=Math.min(o,i),a=new Array(o),l=0;l<s;++l)for(var c=n[l],u=r[l],f=c.length,p=a[l]=new Array(f),h,x=0;x<f;++x)(h=c[x]||u[x])&&(p[x]=h);for(;l<o;++l)a[l]=n[l];return new en(a,this._parents)}function bM(){for(var e=this._groups,t=-1,n=e.length;++t<n;)for(var r=e[t],o=r.length-1,i=r[o],s;--o>=0;)(s=r[o])&&(i&&s.compareDocumentPosition(i)^4&&i.parentNode.insertBefore(s,i),i=s);return this}function EM(e){e||(e=SM);function t(f,p){return f&&p?e(f.__data__,p.__data__):!f-!p}for(var n=this._groups,r=n.length,o=new Array(r),i=0;i<r;++i){for(var s=n[i],a=s.length,l=o[i]=new Array(a),c,u=0;u<a;++u)(c=s[u])&&(l[u]=c);l.sort(t)}return new en(o,this._parents).order()}function SM(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function kM(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function CM(){return Array.from(this)}function _M(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],o=0,i=r.length;o<i;++o){var s=r[o];if(s)return s}return null}function TM(){let e=0;for(const t of this)++e;return e}function AM(){return!this.node()}function NM(e){for(var t=this._groups,n=0,r=t.length;n<r;++n)for(var o=t[n],i=0,s=o.length,a;i<s;++i)(a=o[i])&&e.call(a,a.__data__,i,o);return this}function IM(e){return function(){this.removeAttribute(e)}}function jM(e){return function(){this.removeAttributeNS(e.space,e.local)}}function MM(e,t){return function(){this.setAttribute(e,t)}}function RM(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function DM(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttribute(e):this.setAttribute(e,n)}}function PM(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,n)}}function OM(e,t){var n=Xa(e);if(arguments.length<2){var r=this.node();return n.local?r.getAttributeNS(n.space,n.local):r.getAttribute(n)}return this.each((t==null?n.local?jM:IM:typeof t=="function"?n.local?PM:DM:n.local?RM:MM)(n,t))}function $v(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function LM(e){return function(){this.style.removeProperty(e)}}function $M(e,t,n){return function(){this.style.setProperty(e,t,n)}}function zM(e,t,n){return function(){var r=t.apply(this,arguments);r==null?this.style.removeProperty(e):this.style.setProperty(e,r,n)}}function FM(e,t,n){return arguments.length>1?this.each((t==null?LM:typeof t=="function"?zM:$M)(e,t,n??"")):_o(this.node(),e)}function _o(e,t){return e.style.getPropertyValue(t)||$v(e).getComputedStyle(e,null).getPropertyValue(t)}function BM(e){return function(){delete this[e]}}function HM(e,t){return function(){this[e]=t}}function UM(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function VM(e,t){return arguments.length>1?this.each((t==null?BM:typeof t=="function"?UM:HM)(e,t)):this.node()[e]}function zv(e){return e.trim().split(/^|\s+/)}function id(e){return e.classList||new Fv(e)}function Fv(e){this._node=e,this._names=zv(e.getAttribute("class")||"")}Fv.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function Bv(e,t){for(var n=id(e),r=-1,o=t.length;++r<o;)n.add(t[r])}function Hv(e,t){for(var n=id(e),r=-1,o=t.length;++r<o;)n.remove(t[r])}function WM(e){return function(){Bv(this,e)}}function GM(e){return function(){Hv(this,e)}}function YM(e,t){return function(){(t.apply(this,arguments)?Bv:Hv)(this,e)}}function qM(e,t){var n=zv(e+"");if(arguments.length<2){for(var r=id(this.node()),o=-1,i=n.length;++o<i;)if(!r.contains(n[o]))return!1;return!0}return this.each((typeof t=="function"?YM:t?WM:GM)(n,t))}function KM(){this.textContent=""}function XM(e){return function(){this.textContent=e}}function ZM(e){return function(){var t=e.apply(this,arguments);this.textContent=t??""}}function QM(e){return arguments.length?this.each(e==null?KM:(typeof e=="function"?ZM:XM)(e)):this.node().textContent}function JM(){this.innerHTML=""}function eR(e){return function(){this.innerHTML=e}}function tR(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??""}}function nR(e){return arguments.length?this.each(e==null?JM:(typeof e=="function"?tR:eR)(e)):this.node().innerHTML}function rR(){this.nextSibling&&this.parentNode.appendChild(this)}function oR(){return this.each(rR)}function iR(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function sR(){return this.each(iR)}function aR(e){var t=typeof e=="function"?e:Rv(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function lR(){return null}function cR(e,t){var n=typeof e=="function"?e:Rv(e),r=t==null?lR:typeof t=="function"?t:od(t);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function uR(){var e=this.parentNode;e&&e.removeChild(this)}function dR(){return this.each(uR)}function fR(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function pR(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function hR(e){return this.select(e?pR:fR)}function mR(e){return arguments.length?this.property("__data__",e):this.node().__data__}function gR(e){return function(t){e.call(this,t,this.__data__)}}function xR(e){return e.trim().split(/^|\s+/).map(function(t){var n="",r=t.indexOf(".");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{type:t,name:n}})}function vR(e){return function(){var t=this.__on;if(t){for(var n=0,r=-1,o=t.length,i;n<o;++n)i=t[n],(!e.type||i.type===e.type)&&i.name===e.name?this.removeEventListener(i.type,i.listener,i.options):t[++r]=i;++r?t.length=r:delete this.__on}}}function yR(e,t,n){return function(){var r=this.__on,o,i=gR(t);if(r){for(var s=0,a=r.length;s<a;++s)if((o=r[s]).type===e.type&&o.name===e.name){this.removeEventListener(o.type,o.listener,o.options),this.addEventListener(o.type,o.listener=i,o.options=n),o.value=t;return}}this.addEventListener(e.type,i,n),o={type:e.type,name:e.name,value:t,listener:i,options:n},r?r.push(o):this.__on=[o]}}function wR(e,t,n){var r=xR(e+""),o,i=r.length,s;if(arguments.length<2){var a=this.node().__on;if(a){for(var l=0,c=a.length,u;l<c;++l)for(o=0,u=a[l];o<i;++o)if((s=r[o]).type===u.type&&s.name===u.name)return u.value}return}for(a=t?yR:vR,o=0;o<i;++o)this.each(a(r[o],t,n));return this}function Uv(e,t,n){var r=$v(e),o=r.CustomEvent;typeof o=="function"?o=new o(t,n):(o=r.document.createEvent("Event"),n?(o.initEvent(t,n.bubbles,n.cancelable),o.detail=n.detail):o.initEvent(t,!1,!1)),e.dispatchEvent(o)}function bR(e,t){return function(){return Uv(this,e,t)}}function ER(e,t){return function(){return Uv(this,e,t.apply(this,arguments))}}function SR(e,t){return this.each((typeof t=="function"?ER:bR)(e,t))}function*kR(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],o=0,i=r.length,s;o<i;++o)(s=r[o])&&(yield s)}var Vv=[null];function en(e,t){this._groups=e,this._parents=t}function es(){return new en([[document.documentElement]],Vv)}function CR(){return this}en.prototype=es.prototype={constructor:en,select:Zj,selectAll:tM,selectChild:iM,selectChildren:cM,filter:uM,data:gM,enter:dM,exit:vM,join:yM,merge:wM,selection:CR,order:bM,sort:EM,call:kM,nodes:CM,node:_M,size:TM,empty:AM,each:NM,attr:OM,style:FM,property:VM,classed:qM,text:QM,html:nR,raise:oR,lower:sR,append:aR,insert:cR,remove:dR,clone:hR,datum:mR,on:wR,dispatch:SR,[Symbol.iterator]:kR};function Zt(e){return typeof e=="string"?new en([[document.querySelector(e)]],[document.documentElement]):new en([[e]],Vv)}function _R(e){let t;for(;t=e.sourceEvent;)e=t;return e}function un(e,t){if(e=_R(e),t===void 0&&(t=e.currentTarget),t){var n=t.ownerSVGElement||t;if(n.createSVGPoint){var r=n.createSVGPoint();return r.x=e.clientX,r.y=e.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}if(t.getBoundingClientRect){var o=t.getBoundingClientRect();return[e.clientX-o.left-t.clientLeft,e.clientY-o.top-t.clientTop]}}return[e.pageX,e.pageY]}const TR={passive:!1},Pi={capture:!0,passive:!1};function Hl(e){e.stopImmediatePropagation()}function yo(e){e.preventDefault(),e.stopImmediatePropagation()}function Wv(e){var t=e.document.documentElement,n=Zt(e).on("dragstart.drag",yo,Pi);"onselectstart"in t?n.on("selectstart.drag",yo,Pi):(t.__noselect=t.style.MozUserSelect,t.style.MozUserSelect="none")}function Gv(e,t){var n=e.document.documentElement,r=Zt(e).on("dragstart.drag",null);t&&(r.on("click.drag",yo,Pi),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in n?r.on("selectstart.drag",null):(n.style.MozUserSelect=n.__noselect,delete n.__noselect)}const Cs=e=>()=>e;function Ic(e,{sourceEvent:t,subject:n,target:r,identifier:o,active:i,x:s,y:a,dx:l,dy:c,dispatch:u}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},subject:{value:n,enumerable:!0,configurable:!0},target:{value:r,enumerable:!0,configurable:!0},identifier:{value:o,enumerable:!0,configurable:!0},active:{value:i,enumerable:!0,configurable:!0},x:{value:s,enumerable:!0,configurable:!0},y:{value:a,enumerable:!0,configurable:!0},dx:{value:l,enumerable:!0,configurable:!0},dy:{value:c,enumerable:!0,configurable:!0},_:{value:u}})}Ic.prototype.on=function(){var e=this._.on.apply(this._,arguments);return e===this._?this:e};function AR(e){return!e.ctrlKey&&!e.button}function NR(){return this.parentNode}function IR(e,t){return t??{x:e.x,y:e.y}}function jR(){return navigator.maxTouchPoints||"ontouchstart"in this}function Yv(){var e=AR,t=NR,n=IR,r=jR,o={},i=Ka("start","drag","end"),s=0,a,l,c,u,f=0;function p(S){S.on("mousedown.drag",h).filter(r).on("touchstart.drag",v).on("touchmove.drag",y,TR).on("touchend.drag touchcancel.drag",b).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function h(S,E){if(!(u||!e.call(this,S,E))){var k=w(this,t.call(this,S,E),S,E,"mouse");k&&(Zt(S.view).on("mousemove.drag",x,Pi).on("mouseup.drag",g,Pi),Wv(S.view),Hl(S),c=!1,a=S.clientX,l=S.clientY,k("start",S))}}function x(S){if(yo(S),!c){var E=S.clientX-a,k=S.clientY-l;c=E*E+k*k>f}o.mouse("drag",S)}function g(S){Zt(S.view).on("mousemove.drag mouseup.drag",null),Gv(S.view,c),yo(S),o.mouse("end",S)}function v(S,E){if(e.call(this,S,E)){var k=S.changedTouches,C=t.call(this,S,E),A=k.length,D,z;for(D=0;D<A;++D)(z=w(this,C,S,E,k[D].identifier,k[D]))&&(Hl(S),z("start",S,k[D]))}}function y(S){var E=S.changedTouches,k=E.length,C,A;for(C=0;C<k;++C)(A=o[E[C].identifier])&&(yo(S),A("drag",S,E[C]))}function b(S){var E=S.changedTouches,k=E.length,C,A;for(u&&clearTimeout(u),u=setTimeout(function(){u=null},500),C=0;C<k;++C)(A=o[E[C].identifier])&&(Hl(S),A("end",S,E[C]))}function w(S,E,k,C,A,D){var z=i.copy(),$=un(D||k,E),O,L,_;if((_=n.call(S,new Ic("beforestart",{sourceEvent:k,target:p,identifier:A,active:s,x:$[0],y:$[1],dx:0,dy:0,dispatch:z}),C))!=null)return O=_.x-$[0]||0,L=_.y-$[1]||0,function M(N,I,T){var j=$,R;switch(N){case"start":o[A]=M,R=s++;break;case"end":delete o[A],--s;case"drag":$=un(T||I,E),R=s;break}z.call(N,S,new Ic(N,{sourceEvent:I,subject:_,target:p,identifier:A,active:R,x:$[0]+O,y:$[1]+L,dx:$[0]-j[0],dy:$[1]-j[1],dispatch:z}),C)}}return p.filter=function(S){return arguments.length?(e=typeof S=="function"?S:Cs(!!S),p):e},p.container=function(S){return arguments.length?(t=typeof S=="function"?S:Cs(S),p):t},p.subject=function(S){return arguments.length?(n=typeof S=="function"?S:Cs(S),p):n},p.touchable=function(S){return arguments.length?(r=typeof S=="function"?S:Cs(!!S),p):r},p.on=function(){var S=i.on.apply(i,arguments);return S===i?p:S},p.clickDistance=function(S){return arguments.length?(f=(S=+S)*S,p):Math.sqrt(f)},p}function sd(e,t,n){e.prototype=t.prototype=n,n.constructor=e}function qv(e,t){var n=Object.create(e.prototype);for(var r in t)n[r]=t[r];return n}function ts(){}var Oi=.7,pa=1/Oi,wo="\\s*([+-]?\\d+)\\s*",Li="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Nn="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",MR=/^#([0-9a-f]{3,8})$/,RR=new RegExp(`^rgb\\(${wo},${wo},${wo}\\)$`),DR=new RegExp(`^rgb\\(${Nn},${Nn},${Nn}\\)$`),PR=new RegExp(`^rgba\\(${wo},${wo},${wo},${Li}\\)$`),OR=new RegExp(`^rgba\\(${Nn},${Nn},${Nn},${Li}\\)$`),LR=new RegExp(`^hsl\\(${Li},${Nn},${Nn}\\)$`),$R=new RegExp(`^hsla\\(${Li},${Nn},${Nn},${Li}\\)$`),kp={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};sd(ts,$r,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:Cp,formatHex:Cp,formatHex8:zR,formatHsl:FR,formatRgb:_p,toString:_p});function Cp(){return this.rgb().formatHex()}function zR(){return this.rgb().formatHex8()}function FR(){return Kv(this).formatHsl()}function _p(){return this.rgb().formatRgb()}function $r(e){var t,n;return e=(e+"").trim().toLowerCase(),(t=MR.exec(e))?(n=t[1].length,t=parseInt(t[1],16),n===6?Tp(t):n===3?new qt(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?_s(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?_s(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=RR.exec(e))?new qt(t[1],t[2],t[3],1):(t=DR.exec(e))?new qt(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=PR.exec(e))?_s(t[1],t[2],t[3],t[4]):(t=OR.exec(e))?_s(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=LR.exec(e))?Ip(t[1],t[2]/100,t[3]/100,1):(t=$R.exec(e))?Ip(t[1],t[2]/100,t[3]/100,t[4]):kp.hasOwnProperty(e)?Tp(kp[e]):e==="transparent"?new qt(NaN,NaN,NaN,0):null}function Tp(e){return new qt(e>>16&255,e>>8&255,e&255,1)}function _s(e,t,n,r){return r<=0&&(e=t=n=NaN),new qt(e,t,n,r)}function BR(e){return e instanceof ts||(e=$r(e)),e?(e=e.rgb(),new qt(e.r,e.g,e.b,e.opacity)):new qt}function jc(e,t,n,r){return arguments.length===1?BR(e):new qt(e,t,n,r??1)}function qt(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}sd(qt,jc,qv(ts,{brighter(e){return e=e==null?pa:Math.pow(pa,e),new qt(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?Oi:Math.pow(Oi,e),new qt(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new qt(Ar(this.r),Ar(this.g),Ar(this.b),ha(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Ap,formatHex:Ap,formatHex8:HR,formatRgb:Np,toString:Np}));function Ap(){return`#${Er(this.r)}${Er(this.g)}${Er(this.b)}`}function HR(){return`#${Er(this.r)}${Er(this.g)}${Er(this.b)}${Er((isNaN(this.opacity)?1:this.opacity)*255)}`}function Np(){const e=ha(this.opacity);return`${e===1?"rgb(":"rgba("}${Ar(this.r)}, ${Ar(this.g)}, ${Ar(this.b)}${e===1?")":`, ${e})`}`}function ha(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function Ar(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Er(e){return e=Ar(e),(e<16?"0":"")+e.toString(16)}function Ip(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new dn(e,t,n,r)}function Kv(e){if(e instanceof dn)return new dn(e.h,e.s,e.l,e.opacity);if(e instanceof ts||(e=$r(e)),!e)return new dn;if(e instanceof dn)return e;e=e.rgb();var t=e.r/255,n=e.g/255,r=e.b/255,o=Math.min(t,n,r),i=Math.max(t,n,r),s=NaN,a=i-o,l=(i+o)/2;return a?(t===i?s=(n-r)/a+(n<r)*6:n===i?s=(r-t)/a+2:s=(t-n)/a+4,a/=l<.5?i+o:2-i-o,s*=60):a=l>0&&l<1?0:s,new dn(s,a,l,e.opacity)}function UR(e,t,n,r){return arguments.length===1?Kv(e):new dn(e,t,n,r??1)}function dn(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}sd(dn,UR,qv(ts,{brighter(e){return e=e==null?pa:Math.pow(pa,e),new dn(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?Oi:Math.pow(Oi,e),new dn(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*t,o=2*n-r;return new qt(Ul(e>=240?e-240:e+120,o,r),Ul(e,o,r),Ul(e<120?e+240:e-120,o,r),this.opacity)},clamp(){return new dn(jp(this.h),Ts(this.s),Ts(this.l),ha(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=ha(this.opacity);return`${e===1?"hsl(":"hsla("}${jp(this.h)}, ${Ts(this.s)*100}%, ${Ts(this.l)*100}%${e===1?")":`, ${e})`}`}}));function jp(e){return e=(e||0)%360,e<0?e+360:e}function Ts(e){return Math.max(0,Math.min(1,e||0))}function Ul(e,t,n){return(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)*255}const ad=e=>()=>e;function VR(e,t){return function(n){return e+n*t}}function WR(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(r){return Math.pow(e+r*t,n)}}function GR(e){return(e=+e)==1?Xv:function(t,n){return n-t?WR(t,n,e):ad(isNaN(t)?n:t)}}function Xv(e,t){var n=t-e;return n?VR(e,n):ad(isNaN(e)?t:e)}const ma=(function e(t){var n=GR(t);function r(o,i){var s=n((o=jc(o)).r,(i=jc(i)).r),a=n(o.g,i.g),l=n(o.b,i.b),c=Xv(o.opacity,i.opacity);return function(u){return o.r=s(u),o.g=a(u),o.b=l(u),o.opacity=c(u),o+""}}return r.gamma=e,r})(1);function YR(e,t){t||(t=[]);var n=e?Math.min(t.length,e.length):0,r=t.slice(),o;return function(i){for(o=0;o<n;++o)r[o]=e[o]*(1-i)+t[o]*i;return r}}function qR(e){return ArrayBuffer.isView(e)&&!(e instanceof DataView)}function KR(e,t){var n=t?t.length:0,r=e?Math.min(n,e.length):0,o=new Array(r),i=new Array(n),s;for(s=0;s<r;++s)o[s]=ki(e[s],t[s]);for(;s<n;++s)i[s]=t[s];return function(a){for(s=0;s<r;++s)i[s]=o[s](a);return i}}function XR(e,t){var n=new Date;return e=+e,t=+t,function(r){return n.setTime(e*(1-r)+t*r),n}}function wn(e,t){return e=+e,t=+t,function(n){return e*(1-n)+t*n}}function ZR(e,t){var n={},r={},o;(e===null||typeof e!="object")&&(e={}),(t===null||typeof t!="object")&&(t={});for(o in t)o in e?n[o]=ki(e[o],t[o]):r[o]=t[o];return function(i){for(o in n)r[o]=n[o](i);return r}}var Mc=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,Vl=new RegExp(Mc.source,"g");function QR(e){return function(){return e}}function JR(e){return function(t){return e(t)+""}}function Zv(e,t){var n=Mc.lastIndex=Vl.lastIndex=0,r,o,i,s=-1,a=[],l=[];for(e=e+"",t=t+"";(r=Mc.exec(e))&&(o=Vl.exec(t));)(i=o.index)>n&&(i=t.slice(n,i),a[s]?a[s]+=i:a[++s]=i),(r=r[0])===(o=o[0])?a[s]?a[s]+=o:a[++s]=o:(a[++s]=null,l.push({i:s,x:wn(r,o)})),n=Vl.lastIndex;return n<t.length&&(i=t.slice(n),a[s]?a[s]+=i:a[++s]=i),a.length<2?l[0]?JR(l[0].x):QR(t):(t=l.length,function(c){for(var u=0,f;u<t;++u)a[(f=l[u]).i]=f.x(c);return a.join("")})}function ki(e,t){var n=typeof t,r;return t==null||n==="boolean"?ad(t):(n==="number"?wn:n==="string"?(r=$r(t))?(t=r,ma):Zv:t instanceof $r?ma:t instanceof Date?XR:qR(t)?YR:Array.isArray(t)?KR:typeof t.valueOf!="function"&&typeof t.toString!="function"||isNaN(t)?ZR:wn)(e,t)}var Mp=180/Math.PI,Rc={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function Qv(e,t,n,r,o,i){var s,a,l;return(s=Math.sqrt(e*e+t*t))&&(e/=s,t/=s),(l=e*n+t*r)&&(n-=e*l,r-=t*l),(a=Math.sqrt(n*n+r*r))&&(n/=a,r/=a,l/=a),e*r<t*n&&(e=-e,t=-t,l=-l,s=-s),{translateX:o,translateY:i,rotate:Math.atan2(t,e)*Mp,skewX:Math.atan(l)*Mp,scaleX:s,scaleY:a}}var As;function eD(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?Rc:Qv(t.a,t.b,t.c,t.d,t.e,t.f)}function tD(e){return e==null||(As||(As=document.createElementNS("http://www.w3.org/2000/svg","g")),As.setAttribute("transform",e),!(e=As.transform.baseVal.consolidate()))?Rc:(e=e.matrix,Qv(e.a,e.b,e.c,e.d,e.e,e.f))}function Jv(e,t,n,r){function o(c){return c.length?c.pop()+" ":""}function i(c,u,f,p,h,x){if(c!==f||u!==p){var g=h.push("translate(",null,t,null,n);x.push({i:g-4,x:wn(c,f)},{i:g-2,x:wn(u,p)})}else(f||p)&&h.push("translate("+f+t+p+n)}function s(c,u,f,p){c!==u?(c-u>180?u+=360:u-c>180&&(c+=360),p.push({i:f.push(o(f)+"rotate(",null,r)-2,x:wn(c,u)})):u&&f.push(o(f)+"rotate("+u+r)}function a(c,u,f,p){c!==u?p.push({i:f.push(o(f)+"skewX(",null,r)-2,x:wn(c,u)}):u&&f.push(o(f)+"skewX("+u+r)}function l(c,u,f,p,h,x){if(c!==f||u!==p){var g=h.push(o(h)+"scale(",null,",",null,")");x.push({i:g-4,x:wn(c,f)},{i:g-2,x:wn(u,p)})}else(f!==1||p!==1)&&h.push(o(h)+"scale("+f+","+p+")")}return function(c,u){var f=[],p=[];return c=e(c),u=e(u),i(c.translateX,c.translateY,u.translateX,u.translateY,f,p),s(c.rotate,u.rotate,f,p),a(c.skewX,u.skewX,f,p),l(c.scaleX,c.scaleY,u.scaleX,u.scaleY,f,p),c=u=null,function(h){for(var x=-1,g=p.length,v;++x<g;)f[(v=p[x]).i]=v.x(h);return f.join("")}}}var nD=Jv(eD,"px, ","px)","deg)"),rD=Jv(tD,", ",")",")"),oD=1e-12;function Rp(e){return((e=Math.exp(e))+1/e)/2}function iD(e){return((e=Math.exp(e))-1/e)/2}function sD(e){return((e=Math.exp(2*e))-1)/(e+1)}const Ws=(function e(t,n,r){function o(i,s){var a=i[0],l=i[1],c=i[2],u=s[0],f=s[1],p=s[2],h=u-a,x=f-l,g=h*h+x*x,v,y;if(g<oD)y=Math.log(p/c)/t,v=function(C){return[a+C*h,l+C*x,c*Math.exp(t*C*y)]};else{var b=Math.sqrt(g),w=(p*p-c*c+r*g)/(2*c*n*b),S=(p*p-c*c-r*g)/(2*p*n*b),E=Math.log(Math.sqrt(w*w+1)-w),k=Math.log(Math.sqrt(S*S+1)-S);y=(k-E)/t,v=function(C){var A=C*y,D=Rp(E),z=c/(n*b)*(D*sD(t*A+E)-iD(E));return[a+z*h,l+z*x,c*D/Rp(t*A+E)]}}return v.duration=y*1e3*t/Math.SQRT2,v}return o.rho=function(i){var s=Math.max(.001,+i),a=s*s,l=a*a;return e(s,a,l)},o})(Math.SQRT2,2,4);var To=0,wi=0,ui=0,ey=1e3,ga,bi,xa=0,zr=0,Za=0,$i=typeof performance=="object"&&performance.now?performance:Date,ty=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function ld(){return zr||(ty(aD),zr=$i.now()+Za)}function aD(){zr=0}function va(){this._call=this._time=this._next=null}va.prototype=ny.prototype={constructor:va,restart:function(e,t,n){if(typeof e!="function")throw new TypeError("callback is not a function");n=(n==null?ld():+n)+(t==null?0:+t),!this._next&&bi!==this&&(bi?bi._next=this:ga=this,bi=this),this._call=e,this._time=n,Dc()},stop:function(){this._call&&(this._call=null,this._time=1/0,Dc())}};function ny(e,t,n){var r=new va;return r.restart(e,t,n),r}function lD(){ld(),++To;for(var e=ga,t;e;)(t=zr-e._time)>=0&&e._call.call(void 0,t),e=e._next;--To}function Dp(){zr=(xa=$i.now())+Za,To=wi=0;try{lD()}finally{To=0,uD(),zr=0}}function cD(){var e=$i.now(),t=e-xa;t>ey&&(Za-=t,xa=e)}function uD(){for(var e,t=ga,n,r=1/0;t;)t._call?(r>t._time&&(r=t._time),e=t,t=t._next):(n=t._next,t._next=null,t=e?e._next=n:ga=n);bi=e,Dc(r)}function Dc(e){if(!To){wi&&(wi=clearTimeout(wi));var t=e-zr;t>24?(e<1/0&&(wi=setTimeout(Dp,e-$i.now()-Za)),ui&&(ui=clearInterval(ui))):(ui||(xa=$i.now(),ui=setInterval(cD,ey)),To=1,ty(Dp))}}function Pp(e,t,n){var r=new va;return t=t==null?0:+t,r.restart(o=>{r.stop(),e(o+t)},t,n),r}var dD=Ka("start","end","cancel","interrupt"),fD=[],ry=0,Op=1,Pc=2,Gs=3,Lp=4,Oc=5,Ys=6;function Qa(e,t,n,r,o,i){var s=e.__transition;if(!s)e.__transition={};else if(n in s)return;pD(e,n,{name:t,index:r,group:o,on:dD,tween:fD,time:i.time,delay:i.delay,duration:i.duration,ease:i.ease,timer:null,state:ry})}function cd(e,t){var n=xn(e,t);if(n.state>ry)throw new Error("too late; already scheduled");return n}function Rn(e,t){var n=xn(e,t);if(n.state>Gs)throw new Error("too late; already running");return n}function xn(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw new Error("transition not found");return n}function pD(e,t,n){var r=e.__transition,o;r[t]=n,n.timer=ny(i,0,n.time);function i(c){n.state=Op,n.timer.restart(s,n.delay,n.time),n.delay<=c&&s(c-n.delay)}function s(c){var u,f,p,h;if(n.state!==Op)return l();for(u in r)if(h=r[u],h.name===n.name){if(h.state===Gs)return Pp(s);h.state===Lp?(h.state=Ys,h.timer.stop(),h.on.call("interrupt",e,e.__data__,h.index,h.group),delete r[u]):+u<t&&(h.state=Ys,h.timer.stop(),h.on.call("cancel",e,e.__data__,h.index,h.group),delete r[u])}if(Pp(function(){n.state===Gs&&(n.state=Lp,n.timer.restart(a,n.delay,n.time),a(c))}),n.state=Pc,n.on.call("start",e,e.__data__,n.index,n.group),n.state===Pc){for(n.state=Gs,o=new Array(p=n.tween.length),u=0,f=-1;u<p;++u)(h=n.tween[u].value.call(e,e.__data__,n.index,n.group))&&(o[++f]=h);o.length=f+1}}function a(c){for(var u=c<n.duration?n.ease.call(null,c/n.duration):(n.timer.restart(l),n.state=Oc,1),f=-1,p=o.length;++f<p;)o[f].call(e,u);n.state===Oc&&(n.on.call("end",e,e.__data__,n.index,n.group),l())}function l(){n.state=Ys,n.timer.stop(),delete r[t];for(var c in r)return;delete e.__transition}}function qs(e,t){var n=e.__transition,r,o,i=!0,s;if(n){t=t==null?null:t+"";for(s in n){if((r=n[s]).name!==t){i=!1;continue}o=r.state>Pc&&r.state<Oc,r.state=Ys,r.timer.stop(),r.on.call(o?"interrupt":"cancel",e,e.__data__,r.index,r.group),delete n[s]}i&&delete e.__transition}}function hD(e){return this.each(function(){qs(this,e)})}function mD(e,t){var n,r;return function(){var o=Rn(this,e),i=o.tween;if(i!==n){r=n=i;for(var s=0,a=r.length;s<a;++s)if(r[s].name===t){r=r.slice(),r.splice(s,1);break}}o.tween=r}}function gD(e,t,n){var r,o;if(typeof n!="function")throw new Error;return function(){var i=Rn(this,e),s=i.tween;if(s!==r){o=(r=s).slice();for(var a={name:t,value:n},l=0,c=o.length;l<c;++l)if(o[l].name===t){o[l]=a;break}l===c&&o.push(a)}i.tween=o}}function xD(e,t){var n=this._id;if(e+="",arguments.length<2){for(var r=xn(this.node(),n).tween,o=0,i=r.length,s;o<i;++o)if((s=r[o]).name===e)return s.value;return null}return this.each((t==null?mD:gD)(n,e,t))}function ud(e,t,n){var r=e._id;return e.each(function(){var o=Rn(this,r);(o.value||(o.value={}))[t]=n.apply(this,arguments)}),function(o){return xn(o,r).value[t]}}function oy(e,t){var n;return(typeof t=="number"?wn:t instanceof $r?ma:(n=$r(t))?(t=n,ma):Zv)(e,t)}function vD(e){return function(){this.removeAttribute(e)}}function yD(e){return function(){this.removeAttributeNS(e.space,e.local)}}function wD(e,t,n){var r,o=n+"",i;return function(){var s=this.getAttribute(e);return s===o?null:s===r?i:i=t(r=s,n)}}function bD(e,t,n){var r,o=n+"",i;return function(){var s=this.getAttributeNS(e.space,e.local);return s===o?null:s===r?i:i=t(r=s,n)}}function ED(e,t,n){var r,o,i;return function(){var s,a=n(this),l;return a==null?void this.removeAttribute(e):(s=this.getAttribute(e),l=a+"",s===l?null:s===r&&l===o?i:(o=l,i=t(r=s,a)))}}function SD(e,t,n){var r,o,i;return function(){var s,a=n(this),l;return a==null?void this.removeAttributeNS(e.space,e.local):(s=this.getAttributeNS(e.space,e.local),l=a+"",s===l?null:s===r&&l===o?i:(o=l,i=t(r=s,a)))}}function kD(e,t){var n=Xa(e),r=n==="transform"?rD:oy;return this.attrTween(e,typeof t=="function"?(n.local?SD:ED)(n,r,ud(this,"attr."+e,t)):t==null?(n.local?yD:vD)(n):(n.local?bD:wD)(n,r,t))}function CD(e,t){return function(n){this.setAttribute(e,t.call(this,n))}}function _D(e,t){return function(n){this.setAttributeNS(e.space,e.local,t.call(this,n))}}function TD(e,t){var n,r;function o(){var i=t.apply(this,arguments);return i!==r&&(n=(r=i)&&_D(e,i)),n}return o._value=t,o}function AD(e,t){var n,r;function o(){var i=t.apply(this,arguments);return i!==r&&(n=(r=i)&&CD(e,i)),n}return o._value=t,o}function ND(e,t){var n="attr."+e;if(arguments.length<2)return(n=this.tween(n))&&n._value;if(t==null)return this.tween(n,null);if(typeof t!="function")throw new Error;var r=Xa(e);return this.tween(n,(r.local?TD:AD)(r,t))}function ID(e,t){return function(){cd(this,e).delay=+t.apply(this,arguments)}}function jD(e,t){return t=+t,function(){cd(this,e).delay=t}}function MD(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?ID:jD)(t,e)):xn(this.node(),t).delay}function RD(e,t){return function(){Rn(this,e).duration=+t.apply(this,arguments)}}function DD(e,t){return t=+t,function(){Rn(this,e).duration=t}}function PD(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?RD:DD)(t,e)):xn(this.node(),t).duration}function OD(e,t){if(typeof t!="function")throw new Error;return function(){Rn(this,e).ease=t}}function LD(e){var t=this._id;return arguments.length?this.each(OD(t,e)):xn(this.node(),t).ease}function $D(e,t){return function(){var n=t.apply(this,arguments);if(typeof n!="function")throw new Error;Rn(this,e).ease=n}}function zD(e){if(typeof e!="function")throw new Error;return this.each($D(this._id,e))}function FD(e){typeof e!="function"&&(e=Pv(e));for(var t=this._groups,n=t.length,r=new Array(n),o=0;o<n;++o)for(var i=t[o],s=i.length,a=r[o]=[],l,c=0;c<s;++c)(l=i[c])&&e.call(l,l.__data__,c,i)&&a.push(l);return new Yn(r,this._parents,this._name,this._id)}function BD(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,n=e._groups,r=t.length,o=n.length,i=Math.min(r,o),s=new Array(r),a=0;a<i;++a)for(var l=t[a],c=n[a],u=l.length,f=s[a]=new Array(u),p,h=0;h<u;++h)(p=l[h]||c[h])&&(f[h]=p);for(;a<r;++a)s[a]=t[a];return new Yn(s,this._parents,this._name,this._id)}function HD(e){return(e+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||t==="start"})}function UD(e,t,n){var r,o,i=HD(t)?cd:Rn;return function(){var s=i(this,e),a=s.on;a!==r&&(o=(r=a).copy()).on(t,n),s.on=o}}function VD(e,t){var n=this._id;return arguments.length<2?xn(this.node(),n).on.on(e):this.each(UD(n,e,t))}function WD(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function GD(){return this.on("end.remove",WD(this._id))}function YD(e){var t=this._name,n=this._id;typeof e!="function"&&(e=od(e));for(var r=this._groups,o=r.length,i=new Array(o),s=0;s<o;++s)for(var a=r[s],l=a.length,c=i[s]=new Array(l),u,f,p=0;p<l;++p)(u=a[p])&&(f=e.call(u,u.__data__,p,a))&&("__data__"in u&&(f.__data__=u.__data__),c[p]=f,Qa(c[p],t,n,p,c,xn(u,n)));return new Yn(i,this._parents,t,n)}function qD(e){var t=this._name,n=this._id;typeof e!="function"&&(e=Dv(e));for(var r=this._groups,o=r.length,i=[],s=[],a=0;a<o;++a)for(var l=r[a],c=l.length,u,f=0;f<c;++f)if(u=l[f]){for(var p=e.call(u,u.__data__,f,l),h,x=xn(u,n),g=0,v=p.length;g<v;++g)(h=p[g])&&Qa(h,t,n,g,p,x);i.push(p),s.push(u)}return new Yn(i,s,t,n)}var KD=es.prototype.constructor;function XD(){return new KD(this._groups,this._parents)}function ZD(e,t){var n,r,o;return function(){var i=_o(this,e),s=(this.style.removeProperty(e),_o(this,e));return i===s?null:i===n&&s===r?o:o=t(n=i,r=s)}}function iy(e){return function(){this.style.removeProperty(e)}}function QD(e,t,n){var r,o=n+"",i;return function(){var s=_o(this,e);return s===o?null:s===r?i:i=t(r=s,n)}}function JD(e,t,n){var r,o,i;return function(){var s=_o(this,e),a=n(this),l=a+"";return a==null&&(l=a=(this.style.removeProperty(e),_o(this,e))),s===l?null:s===r&&l===o?i:(o=l,i=t(r=s,a))}}function eP(e,t){var n,r,o,i="style."+t,s="end."+i,a;return function(){var l=Rn(this,e),c=l.on,u=l.value[i]==null?a||(a=iy(t)):void 0;(c!==n||o!==u)&&(r=(n=c).copy()).on(s,o=u),l.on=r}}function tP(e,t,n){var r=(e+="")=="transform"?nD:oy;return t==null?this.styleTween(e,ZD(e,r)).on("end.style."+e,iy(e)):typeof t=="function"?this.styleTween(e,JD(e,r,ud(this,"style."+e,t))).each(eP(this._id,e)):this.styleTween(e,QD(e,r,t),n).on("end.style."+e,null)}function nP(e,t,n){return function(r){this.style.setProperty(e,t.call(this,r),n)}}function rP(e,t,n){var r,o;function i(){var s=t.apply(this,arguments);return s!==o&&(r=(o=s)&&nP(e,s,n)),r}return i._value=t,i}function oP(e,t,n){var r="style."+(e+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;return this.tween(r,rP(e,t,n??""))}function iP(e){return function(){this.textContent=e}}function sP(e){return function(){var t=e(this);this.textContent=t??""}}function aP(e){return this.tween("text",typeof e=="function"?sP(ud(this,"text",e)):iP(e==null?"":e+""))}function lP(e){return function(t){this.textContent=e.call(this,t)}}function cP(e){var t,n;function r(){var o=e.apply(this,arguments);return o!==n&&(t=(n=o)&&lP(o)),t}return r._value=e,r}function uP(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,cP(e))}function dP(){for(var e=this._name,t=this._id,n=sy(),r=this._groups,o=r.length,i=0;i<o;++i)for(var s=r[i],a=s.length,l,c=0;c<a;++c)if(l=s[c]){var u=xn(l,t);Qa(l,e,n,c,s,{time:u.time+u.delay+u.duration,delay:0,duration:u.duration,ease:u.ease})}return new Yn(r,this._parents,e,n)}function fP(){var e,t,n=this,r=n._id,o=n.size();return new Promise(function(i,s){var a={value:s},l={value:function(){--o===0&&i()}};n.each(function(){var c=Rn(this,r),u=c.on;u!==e&&(t=(e=u).copy(),t._.cancel.push(a),t._.interrupt.push(a),t._.end.push(l)),c.on=t}),o===0&&i()})}var pP=0;function Yn(e,t,n,r){this._groups=e,this._parents=t,this._name=n,this._id=r}function sy(){return++pP}var Ln=es.prototype;Yn.prototype={constructor:Yn,select:YD,selectAll:qD,selectChild:Ln.selectChild,selectChildren:Ln.selectChildren,filter:FD,merge:BD,selection:XD,transition:dP,call:Ln.call,nodes:Ln.nodes,node:Ln.node,size:Ln.size,empty:Ln.empty,each:Ln.each,on:VD,attr:kD,attrTween:ND,style:tP,styleTween:oP,text:aP,textTween:uP,remove:GD,tween:xD,delay:MD,duration:PD,ease:LD,easeVarying:zD,end:fP,[Symbol.iterator]:Ln[Symbol.iterator]};function hP(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var mP={time:null,delay:0,duration:250,ease:hP};function gP(e,t){for(var n;!(n=e.__transition)||!(n=n[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return n}function xP(e){var t,n;e instanceof Yn?(t=e._id,e=e._name):(t=sy(),(n=mP).time=ld(),e=e==null?null:e+"");for(var r=this._groups,o=r.length,i=0;i<o;++i)for(var s=r[i],a=s.length,l,c=0;c<a;++c)(l=s[c])&&Qa(l,e,t,c,s,n||gP(l,t));return new Yn(r,this._parents,e,t)}es.prototype.interrupt=hD;es.prototype.transition=xP;const Ns=e=>()=>e;function vP(e,{sourceEvent:t,target:n,transform:r,dispatch:o}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},transform:{value:r,enumerable:!0,configurable:!0},_:{value:o}})}function Hn(e,t,n){this.k=e,this.x=t,this.y=n}Hn.prototype={constructor:Hn,scale:function(e){return e===1?this:new Hn(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Hn(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var Ja=new Hn(1,0,0);ay.prototype=Hn.prototype;function ay(e){for(;!e.__zoom;)if(!(e=e.parentNode))return Ja;return e.__zoom}function Wl(e){e.stopImmediatePropagation()}function di(e){e.preventDefault(),e.stopImmediatePropagation()}function yP(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function wP(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]):[[0,0],[e.clientWidth,e.clientHeight]]}function $p(){return this.__zoom||Ja}function bP(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function EP(){return navigator.maxTouchPoints||"ontouchstart"in this}function SP(e,t,n){var r=e.invertX(t[0][0])-n[0][0],o=e.invertX(t[1][0])-n[1][0],i=e.invertY(t[0][1])-n[0][1],s=e.invertY(t[1][1])-n[1][1];return e.translate(o>r?(r+o)/2:Math.min(0,r)||Math.max(0,o),s>i?(i+s)/2:Math.min(0,i)||Math.max(0,s))}function ly(){var e=yP,t=wP,n=SP,r=bP,o=EP,i=[0,1/0],s=[[-1/0,-1/0],[1/0,1/0]],a=250,l=Ws,c=Ka("start","zoom","end"),u,f,p,h=500,x=150,g=0,v=10;function y(_){_.property("__zoom",$p).on("wheel.zoom",A,{passive:!1}).on("mousedown.zoom",D).on("dblclick.zoom",z).filter(o).on("touchstart.zoom",$).on("touchmove.zoom",O).on("touchend.zoom touchcancel.zoom",L).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}y.transform=function(_,M,N,I){var T=_.selection?_.selection():_;T.property("__zoom",$p),_!==T?E(_,M,N,I):T.interrupt().each(function(){k(this,arguments).event(I).start().zoom(null,typeof M=="function"?M.apply(this,arguments):M).end()})},y.scaleBy=function(_,M,N,I){y.scaleTo(_,function(){var T=this.__zoom.k,j=typeof M=="function"?M.apply(this,arguments):M;return T*j},N,I)},y.scaleTo=function(_,M,N,I){y.transform(_,function(){var T=t.apply(this,arguments),j=this.__zoom,R=N==null?S(T):typeof N=="function"?N.apply(this,arguments):N,P=j.invert(R),U=typeof M=="function"?M.apply(this,arguments):M;return n(w(b(j,U),R,P),T,s)},N,I)},y.translateBy=function(_,M,N,I){y.transform(_,function(){return n(this.__zoom.translate(typeof M=="function"?M.apply(this,arguments):M,typeof N=="function"?N.apply(this,arguments):N),t.apply(this,arguments),s)},null,I)},y.translateTo=function(_,M,N,I,T){y.transform(_,function(){var j=t.apply(this,arguments),R=this.__zoom,P=I==null?S(j):typeof I=="function"?I.apply(this,arguments):I;return n(Ja.translate(P[0],P[1]).scale(R.k).translate(typeof M=="function"?-M.apply(this,arguments):-M,typeof N=="function"?-N.apply(this,arguments):-N),j,s)},I,T)};function b(_,M){return M=Math.max(i[0],Math.min(i[1],M)),M===_.k?_:new Hn(M,_.x,_.y)}function w(_,M,N){var I=M[0]-N[0]*_.k,T=M[1]-N[1]*_.k;return I===_.x&&T===_.y?_:new Hn(_.k,I,T)}function S(_){return[(+_[0][0]+ +_[1][0])/2,(+_[0][1]+ +_[1][1])/2]}function E(_,M,N,I){_.on("start.zoom",function(){k(this,arguments).event(I).start()}).on("interrupt.zoom end.zoom",function(){k(this,arguments).event(I).end()}).tween("zoom",function(){var T=this,j=arguments,R=k(T,j).event(I),P=t.apply(T,j),U=N==null?S(P):typeof N=="function"?N.apply(T,j):N,B=Math.max(P[1][0]-P[0][0],P[1][1]-P[0][1]),V=T.__zoom,G=typeof M=="function"?M.apply(T,j):M,q=l(V.invert(U).concat(B/V.k),G.invert(U).concat(B/G.k));return function(H){if(H===1)H=G;else{var W=q(H),K=B/W[2];H=new Hn(K,U[0]-W[0]*K,U[1]-W[1]*K)}R.zoom(null,H)}})}function k(_,M,N){return!N&&_.__zooming||new C(_,M)}function C(_,M){this.that=_,this.args=M,this.active=0,this.sourceEvent=null,this.extent=t.apply(_,M),this.taps=0}C.prototype={event:function(_){return _&&(this.sourceEvent=_),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(_,M){return this.mouse&&_!=="mouse"&&(this.mouse[1]=M.invert(this.mouse[0])),this.touch0&&_!=="touch"&&(this.touch0[1]=M.invert(this.touch0[0])),this.touch1&&_!=="touch"&&(this.touch1[1]=M.invert(this.touch1[0])),this.that.__zoom=M,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(_){var M=Zt(this.that).datum();c.call(_,this.that,new vP(_,{sourceEvent:this.sourceEvent,target:y,transform:this.that.__zoom,dispatch:c}),M)}};function A(_,...M){if(!e.apply(this,arguments))return;var N=k(this,M).event(_),I=this.__zoom,T=Math.max(i[0],Math.min(i[1],I.k*Math.pow(2,r.apply(this,arguments)))),j=un(_);if(N.wheel)(N.mouse[0][0]!==j[0]||N.mouse[0][1]!==j[1])&&(N.mouse[1]=I.invert(N.mouse[0]=j)),clearTimeout(N.wheel);else{if(I.k===T)return;N.mouse=[j,I.invert(j)],qs(this),N.start()}di(_),N.wheel=setTimeout(R,x),N.zoom("mouse",n(w(b(I,T),N.mouse[0],N.mouse[1]),N.extent,s));function R(){N.wheel=null,N.end()}}function D(_,...M){if(p||!e.apply(this,arguments))return;var N=_.currentTarget,I=k(this,M,!0).event(_),T=Zt(_.view).on("mousemove.zoom",U,!0).on("mouseup.zoom",B,!0),j=un(_,N),R=_.clientX,P=_.clientY;Wv(_.view),Wl(_),I.mouse=[j,this.__zoom.invert(j)],qs(this),I.start();function U(V){if(di(V),!I.moved){var G=V.clientX-R,q=V.clientY-P;I.moved=G*G+q*q>g}I.event(V).zoom("mouse",n(w(I.that.__zoom,I.mouse[0]=un(V,N),I.mouse[1]),I.extent,s))}function B(V){T.on("mousemove.zoom mouseup.zoom",null),Gv(V.view,I.moved),di(V),I.event(V).end()}}function z(_,...M){if(e.apply(this,arguments)){var N=this.__zoom,I=un(_.changedTouches?_.changedTouches[0]:_,this),T=N.invert(I),j=N.k*(_.shiftKey?.5:2),R=n(w(b(N,j),I,T),t.apply(this,M),s);di(_),a>0?Zt(this).transition().duration(a).call(E,R,I,_):Zt(this).call(y.transform,R,I,_)}}function $(_,...M){if(e.apply(this,arguments)){var N=_.touches,I=N.length,T=k(this,M,_.changedTouches.length===I).event(_),j,R,P,U;for(Wl(_),R=0;R<I;++R)P=N[R],U=un(P,this),U=[U,this.__zoom.invert(U),P.identifier],T.touch0?!T.touch1&&T.touch0[2]!==U[2]&&(T.touch1=U,T.taps=0):(T.touch0=U,j=!0,T.taps=1+!!u);u&&(u=clearTimeout(u)),j&&(T.taps<2&&(f=U[0],u=setTimeout(function(){u=null},h)),qs(this),T.start())}}function O(_,...M){if(this.__zooming){var N=k(this,M).event(_),I=_.changedTouches,T=I.length,j,R,P,U;for(di(_),j=0;j<T;++j)R=I[j],P=un(R,this),N.touch0&&N.touch0[2]===R.identifier?N.touch0[0]=P:N.touch1&&N.touch1[2]===R.identifier&&(N.touch1[0]=P);if(R=N.that.__zoom,N.touch1){var B=N.touch0[0],V=N.touch0[1],G=N.touch1[0],q=N.touch1[1],H=(H=G[0]-B[0])*H+(H=G[1]-B[1])*H,W=(W=q[0]-V[0])*W+(W=q[1]-V[1])*W;R=b(R,Math.sqrt(H/W)),P=[(B[0]+G[0])/2,(B[1]+G[1])/2],U=[(V[0]+q[0])/2,(V[1]+q[1])/2]}else if(N.touch0)P=N.touch0[0],U=N.touch0[1];else return;N.zoom("touch",n(w(R,P,U),N.extent,s))}}function L(_,...M){if(this.__zooming){var N=k(this,M).event(_),I=_.changedTouches,T=I.length,j,R;for(Wl(_),p&&clearTimeout(p),p=setTimeout(function(){p=null},h),j=0;j<T;++j)R=I[j],N.touch0&&N.touch0[2]===R.identifier?delete N.touch0:N.touch1&&N.touch1[2]===R.identifier&&delete N.touch1;if(N.touch1&&!N.touch0&&(N.touch0=N.touch1,delete N.touch1),N.touch0)N.touch0[1]=this.__zoom.invert(N.touch0[0]);else if(N.end(),N.taps===2&&(R=un(R,this),Math.hypot(f[0]-R[0],f[1]-R[1])<v)){var P=Zt(this).on("dblclick.zoom");P&&P.apply(this,arguments)}}}return y.wheelDelta=function(_){return arguments.length?(r=typeof _=="function"?_:Ns(+_),y):r},y.filter=function(_){return arguments.length?(e=typeof _=="function"?_:Ns(!!_),y):e},y.touchable=function(_){return arguments.length?(o=typeof _=="function"?_:Ns(!!_),y):o},y.extent=function(_){return arguments.length?(t=typeof _=="function"?_:Ns([[+_[0][0],+_[0][1]],[+_[1][0],+_[1][1]]]),y):t},y.scaleExtent=function(_){return arguments.length?(i[0]=+_[0],i[1]=+_[1],y):[i[0],i[1]]},y.translateExtent=function(_){return arguments.length?(s[0][0]=+_[0][0],s[1][0]=+_[1][0],s[0][1]=+_[0][1],s[1][1]=+_[1][1],y):[[s[0][0],s[0][1]],[s[1][0],s[1][1]]]},y.constrain=function(_){return arguments.length?(n=_,y):n},y.duration=function(_){return arguments.length?(a=+_,y):a},y.interpolate=function(_){return arguments.length?(l=_,y):l},y.on=function(){var _=c.on.apply(c,arguments);return _===c?y:_},y.clickDistance=function(_){return arguments.length?(g=(_=+_)*_,y):Math.sqrt(g)},y.tapDistance=function(_){return arguments.length?(v=+_,y):v},y}const jn={error001:()=>"[React Flow]: Seems like you have not used zustand provider as an ancestor. Help: https://reactflow.dev/error#001",error002:()=>"It looks like you've created a new nodeTypes or edgeTypes object. If this wasn't on purpose please define the nodeTypes/edgeTypes outside of the component or memoize them.",error003:e=>`Node type "${e}" not found. Using fallback type "default".`,error004:()=>"The React Flow parent container needs a width and a height to render the graph.",error005:()=>"Only child nodes can use a parent extent.",error006:()=>"Can't create edge. An edge needs a source and a target.",error007:e=>`The old edge with id=${e} does not exist.`,error009:e=>`Marker type "${e}" doesn't exist.`,error008:(e,{id:t,sourceHandle:n,targetHandle:r})=>`Couldn't create edge for ${e} handle id: "${e==="source"?n:r}", edge id: ${t}.`,error010:()=>"Handle: No node id found. Make sure to only use a Handle inside a custom Node.",error011:e=>`Edge type "${e}" not found. Using fallback type "default".`,error012:e=>`Node with id "${e}" does not exist, it may have been removed. This can happen when a node is deleted before the "onNodeClick" handler is called.`,error013:(e="react")=>`It seems that you haven't loaded the styles. Please import '@xyflow/${e}/dist/style.css' or base.css to make sure everything is working properly.`,error014:()=>"useNodeConnections: No node ID found. Call useNodeConnections inside a custom Node or provide a node ID.",error015:()=>"It seems that you are trying to drag a node that is not initialized. Please use onNodesChange as explained in the docs."},zi=[[Number.NEGATIVE_INFINITY,Number.NEGATIVE_INFINITY],[Number.POSITIVE_INFINITY,Number.POSITIVE_INFINITY]],cy=["Enter"," ","Escape"],uy={"node.a11yDescription.default":"Press enter or space to select a node. Press delete to remove it and escape to cancel.","node.a11yDescription.keyboardDisabled":"Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.","node.a11yDescription.ariaLiveMessage":({direction:e,x:t,y:n})=>`Moved selected node ${e}. New position, x: ${t}, y: ${n}`,"edge.a11yDescription.default":"Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.","controls.ariaLabel":"Control Panel","controls.zoomIn.ariaLabel":"Zoom In","controls.zoomOut.ariaLabel":"Zoom Out","controls.fitView.ariaLabel":"Fit View","controls.interactive.ariaLabel":"Toggle Interactivity","minimap.ariaLabel":"Mini Map","handle.ariaLabel":"Handle"};var Ao;(function(e){e.Strict="strict",e.Loose="loose"})(Ao||(Ao={}));var Nr;(function(e){e.Free="free",e.Vertical="vertical",e.Horizontal="horizontal"})(Nr||(Nr={}));var Fi;(function(e){e.Partial="partial",e.Full="full"})(Fi||(Fi={}));const dy={inProgress:!1,isValid:null,from:null,fromHandle:null,fromPosition:null,fromNode:null,to:null,toHandle:null,toPosition:null,toNode:null};var or;(function(e){e.Bezier="default",e.Straight="straight",e.Step="step",e.SmoothStep="smoothstep",e.SimpleBezier="simplebezier"})(or||(or={}));var Bi;(function(e){e.Arrow="arrow",e.ArrowClosed="arrowclosed"})(Bi||(Bi={}));var ue;(function(e){e.Left="left",e.Top="top",e.Right="right",e.Bottom="bottom"})(ue||(ue={}));const zp={[ue.Left]:ue.Right,[ue.Right]:ue.Left,[ue.Top]:ue.Bottom,[ue.Bottom]:ue.Top};function fy(e){return e===null?null:e?"valid":"invalid"}const py=e=>"id"in e&&"source"in e&&"target"in e,kP=e=>"id"in e&&"position"in e&&!("source"in e)&&!("target"in e),dd=e=>"id"in e&&"internals"in e&&!("source"in e)&&!("target"in e),ns=(e,t=[0,0])=>{const{width:n,height:r}=Kn(e),o=e.origin??t,i=n*o[0],s=r*o[1];return{x:e.position.x-i,y:e.position.y-s}},CP=(e,t={nodeOrigin:[0,0]})=>{if(e.length===0)return{x:0,y:0,width:0,height:0};const n=e.reduce((r,o)=>{const i=typeof o=="string";let s=!t.nodeLookup&&!i?o:void 0;t.nodeLookup&&(s=i?t.nodeLookup.get(o):dd(o)?o:t.nodeLookup.get(o.id));const a=s?ya(s,t.nodeOrigin):{x:0,y:0,x2:0,y2:0};return el(r,a)},{x:1/0,y:1/0,x2:-1/0,y2:-1/0});return tl(n)},rs=(e,t={})=>{if(e.size===0)return{x:0,y:0,width:0,height:0};let n={x:1/0,y:1/0,x2:-1/0,y2:-1/0};return e.forEach(r=>{if(t.filter===void 0||t.filter(r)){const o=ya(r);n=el(n,o)}}),tl(n)},fd=(e,t,[n,r,o]=[0,0,1],i=!1,s=!1)=>{const a={...is(t,[n,r,o]),width:t.width/o,height:t.height/o},l=[];for(const c of e.values()){const{measured:u,selectable:f=!0,hidden:p=!1}=c;if(s&&!f||p)continue;const h=u.width??c.width??c.initialWidth??null,x=u.height??c.height??c.initialHeight??null,g=Hi(a,Io(c)),v=(h??0)*(x??0),y=i&&g>0;(!c.internals.handleBounds||y||g>=v||c.dragging)&&l.push(c)}return l},_P=(e,t)=>{const n=new Set;return e.forEach(r=>{n.add(r.id)}),t.filter(r=>n.has(r.source)||n.has(r.target))};function TP(e,t){const n=new Map,r=t!=null&&t.nodes?new Set(t.nodes.map(o=>o.id)):null;return e.forEach(o=>{o.measured.width&&o.measured.height&&((t==null?void 0:t.includeHiddenNodes)||!o.hidden)&&(!r||r.has(o.id))&&n.set(o.id,o)}),n}async function AP({nodes:e,width:t,height:n,panZoom:r,minZoom:o,maxZoom:i},s){if(e.size===0)return Promise.resolve(!0);const a=TP(e,s),l=rs(a),c=pd(l,t,n,(s==null?void 0:s.minZoom)??o,(s==null?void 0:s.maxZoom)??i,(s==null?void 0:s.padding)??.1);return await r.setViewport(c,{duration:s==null?void 0:s.duration,ease:s==null?void 0:s.ease,interpolate:s==null?void 0:s.interpolate}),Promise.resolve(!0)}function hy({nodeId:e,nextPosition:t,nodeLookup:n,nodeOrigin:r=[0,0],nodeExtent:o,onError:i}){const s=n.get(e),a=s.parentId?n.get(s.parentId):void 0,{x:l,y:c}=a?a.internals.positionAbsolute:{x:0,y:0},u=s.origin??r;let f=s.extent||o;if(s.extent==="parent"&&!s.expandParent)if(!a)i==null||i("005",jn.error005());else{const h=a.measured.width,x=a.measured.height;h&&x&&(f=[[l,c],[l+h,c+x]])}else a&&jo(s.extent)&&(f=[[s.extent[0][0]+l,s.extent[0][1]+c],[s.extent[1][0]+l,s.extent[1][1]+c]]);const p=jo(f)?Fr(t,f,s.measured):t;return(s.measured.width===void 0||s.measured.height===void 0)&&(i==null||i("015",jn.error015())),{position:{x:p.x-l+(s.measured.width??0)*u[0],y:p.y-c+(s.measured.height??0)*u[1]},positionAbsolute:p}}async function NP({nodesToRemove:e=[],edgesToRemove:t=[],nodes:n,edges:r,onBeforeDelete:o}){const i=new Set(e.map(p=>p.id)),s=[];for(const p of n){if(p.deletable===!1)continue;const h=i.has(p.id),x=!h&&p.parentId&&s.find(g=>g.id===p.parentId);(h||x)&&s.push(p)}const a=new Set(t.map(p=>p.id)),l=r.filter(p=>p.deletable!==!1),u=_P(s,l);for(const p of l)a.has(p.id)&&!u.find(x=>x.id===p.id)&&u.push(p);if(!o)return{edges:u,nodes:s};const f=await o({nodes:s,edges:u});return typeof f=="boolean"?f?{edges:u,nodes:s}:{edges:[],nodes:[]}:f}const No=(e,t=0,n=1)=>Math.min(Math.max(e,t),n),Fr=(e={x:0,y:0},t,n)=>({x:No(e.x,t[0][0],t[1][0]-((n==null?void 0:n.width)??0)),y:No(e.y,t[0][1],t[1][1]-((n==null?void 0:n.height)??0))});function my(e,t,n){const{width:r,height:o}=Kn(n),{x:i,y:s}=n.internals.positionAbsolute;return Fr(e,[[i,s],[i+r,s+o]],t)}const Fp=(e,t,n)=>e<t?No(Math.abs(e-t),1,t)/t:e>n?-No(Math.abs(e-n),1,t)/t:0,gy=(e,t,n=15,r=40)=>{const o=Fp(e.x,r,t.width-r)*n,i=Fp(e.y,r,t.height-r)*n;return[o,i]},el=(e,t)=>({x:Math.min(e.x,t.x),y:Math.min(e.y,t.y),x2:Math.max(e.x2,t.x2),y2:Math.max(e.y2,t.y2)}),Lc=({x:e,y:t,width:n,height:r})=>({x:e,y:t,x2:e+n,y2:t+r}),tl=({x:e,y:t,x2:n,y2:r})=>({x:e,y:t,width:n-e,height:r-t}),Io=(e,t=[0,0])=>{var o,i;const{x:n,y:r}=dd(e)?e.internals.positionAbsolute:ns(e,t);return{x:n,y:r,width:((o=e.measured)==null?void 0:o.width)??e.width??e.initialWidth??0,height:((i=e.measured)==null?void 0:i.height)??e.height??e.initialHeight??0}},ya=(e,t=[0,0])=>{var o,i;const{x:n,y:r}=dd(e)?e.internals.positionAbsolute:ns(e,t);return{x:n,y:r,x2:n+(((o=e.measured)==null?void 0:o.width)??e.width??e.initialWidth??0),y2:r+(((i=e.measured)==null?void 0:i.height)??e.height??e.initialHeight??0)}},xy=(e,t)=>tl(el(Lc(e),Lc(t))),Hi=(e,t)=>{const n=Math.max(0,Math.min(e.x+e.width,t.x+t.width)-Math.max(e.x,t.x)),r=Math.max(0,Math.min(e.y+e.height,t.y+t.height)-Math.max(e.y,t.y));return Math.ceil(n*r)},Bp=e=>fn(e.width)&&fn(e.height)&&fn(e.x)&&fn(e.y),fn=e=>!isNaN(e)&&isFinite(e),IP=(e,t)=>{},os=(e,t=[1,1])=>({x:t[0]*Math.round(e.x/t[0]),y:t[1]*Math.round(e.y/t[1])}),is=({x:e,y:t},[n,r,o],i=!1,s=[1,1])=>{const a={x:(e-n)/o,y:(t-r)/o};return i?os(a,s):a},wa=({x:e,y:t},[n,r,o])=>({x:e*o+n,y:t*o+r});function io(e,t){if(typeof e=="number")return Math.floor((t-t/(1+e))*.5);if(typeof e=="string"&&e.endsWith("px")){const n=parseFloat(e);if(!Number.isNaN(n))return Math.floor(n)}if(typeof e=="string"&&e.endsWith("%")){const n=parseFloat(e);if(!Number.isNaN(n))return Math.floor(t*n*.01)}return console.error(`[React Flow] The padding value "${e}" is invalid. Please provide a number or a string with a valid unit (px or %).`),0}function jP(e,t,n){if(typeof e=="string"||typeof e=="number"){const r=io(e,n),o=io(e,t);return{top:r,right:o,bottom:r,left:o,x:o*2,y:r*2}}if(typeof e=="object"){const r=io(e.top??e.y??0,n),o=io(e.bottom??e.y??0,n),i=io(e.left??e.x??0,t),s=io(e.right??e.x??0,t);return{top:r,right:s,bottom:o,left:i,x:i+s,y:r+o}}return{top:0,right:0,bottom:0,left:0,x:0,y:0}}function MP(e,t,n,r,o,i){const{x:s,y:a}=wa(e,[t,n,r]),{x:l,y:c}=wa({x:e.x+e.width,y:e.y+e.height},[t,n,r]),u=o-l,f=i-c;return{left:Math.floor(s),top:Math.floor(a),right:Math.floor(u),bottom:Math.floor(f)}}const pd=(e,t,n,r,o,i)=>{const s=jP(i,t,n),a=(t-s.x)/e.width,l=(n-s.y)/e.height,c=Math.min(a,l),u=No(c,r,o),f=e.x+e.width/2,p=e.y+e.height/2,h=t/2-f*u,x=n/2-p*u,g=MP(e,h,x,u,t,n),v={left:Math.min(g.left-s.left,0),top:Math.min(g.top-s.top,0),right:Math.min(g.right-s.right,0),bottom:Math.min(g.bottom-s.bottom,0)};return{x:h-v.left+v.right,y:x-v.top+v.bottom,zoom:u}},Ui=()=>{var e;return typeof navigator<"u"&&((e=navigator==null?void 0:navigator.userAgent)==null?void 0:e.indexOf("Mac"))>=0};function jo(e){return e!=null&&e!=="parent"}function Kn(e){var t,n;return{width:((t=e.measured)==null?void 0:t.width)??e.width??e.initialWidth??0,height:((n=e.measured)==null?void 0:n.height)??e.height??e.initialHeight??0}}function vy(e){var t,n;return(((t=e.measured)==null?void 0:t.width)??e.width??e.initialWidth)!==void 0&&(((n=e.measured)==null?void 0:n.height)??e.height??e.initialHeight)!==void 0}function yy(e,t={width:0,height:0},n,r,o){const i={...e},s=r.get(n);if(s){const a=s.origin||o;i.x+=s.internals.positionAbsolute.x-(t.width??0)*a[0],i.y+=s.internals.positionAbsolute.y-(t.height??0)*a[1]}return i}function Hp(e,t){if(e.size!==t.size)return!1;for(const n of e)if(!t.has(n))return!1;return!0}function RP(){let e,t;return{promise:new Promise((r,o)=>{e=r,t=o}),resolve:e,reject:t}}function DP(e){return{...uy,...e||{}}}function Ci(e,{snapGrid:t=[0,0],snapToGrid:n=!1,transform:r,containerBounds:o}){const{x:i,y:s}=Cn(e),a=is({x:i-((o==null?void 0:o.left)??0),y:s-((o==null?void 0:o.top)??0)},r),{x:l,y:c}=n?os(a,t):a;return{xSnapped:l,ySnapped:c,...a}}const hd=e=>({width:e.offsetWidth,height:e.offsetHeight}),wy=e=>{var t;return((t=e==null?void 0:e.getRootNode)==null?void 0:t.call(e))||(window==null?void 0:window.document)},PP=["INPUT","SELECT","TEXTAREA"];function by(e){var r,o;const t=((o=(r=e.composedPath)==null?void 0:r.call(e))==null?void 0:o[0])||e.target;return(t==null?void 0:t.nodeType)!==1?!1:PP.includes(t.nodeName)||t.hasAttribute("contenteditable")||!!t.closest(".nokey")}const Ey=e=>"clientX"in e,Cn=(e,t)=>{var i,s;const n=Ey(e),r=n?e.clientX:(i=e.touches)==null?void 0:i[0].clientX,o=n?e.clientY:(s=e.touches)==null?void 0:s[0].clientY;return{x:r-((t==null?void 0:t.left)??0),y:o-((t==null?void 0:t.top)??0)}},Up=(e,t,n,r,o)=>{const i=t.querySelectorAll(`.${e}`);return!i||!i.length?null:Array.from(i).map(s=>{const a=s.getBoundingClientRect();return{id:s.getAttribute("data-handleid"),type:e,nodeId:o,position:s.getAttribute("data-handlepos"),x:(a.left-n.left)/r,y:(a.top-n.top)/r,...hd(s)}})};function Sy({sourceX:e,sourceY:t,targetX:n,targetY:r,sourceControlX:o,sourceControlY:i,targetControlX:s,targetControlY:a}){const l=e*.125+o*.375+s*.375+n*.125,c=t*.125+i*.375+a*.375+r*.125,u=Math.abs(l-e),f=Math.abs(c-t);return[l,c,u,f]}function Is(e,t){return e>=0?.5*e:t*25*Math.sqrt(-e)}function Vp({pos:e,x1:t,y1:n,x2:r,y2:o,c:i}){switch(e){case ue.Left:return[t-Is(t-r,i),n];case ue.Right:return[t+Is(r-t,i),n];case ue.Top:return[t,n-Is(n-o,i)];case ue.Bottom:return[t,n+Is(o-n,i)]}}function md({sourceX:e,sourceY:t,sourcePosition:n=ue.Bottom,targetX:r,targetY:o,targetPosition:i=ue.Top,curvature:s=.25}){const[a,l]=Vp({pos:n,x1:e,y1:t,x2:r,y2:o,c:s}),[c,u]=Vp({pos:i,x1:r,y1:o,x2:e,y2:t,c:s}),[f,p,h,x]=Sy({sourceX:e,sourceY:t,targetX:r,targetY:o,sourceControlX:a,sourceControlY:l,targetControlX:c,targetControlY:u});return[`M${e},${t} C${a},${l} ${c},${u} ${r},${o}`,f,p,h,x]}function ky({sourceX:e,sourceY:t,targetX:n,targetY:r}){const o=Math.abs(n-e)/2,i=n<e?n+o:n-o,s=Math.abs(r-t)/2,a=r<t?r+s:r-s;return[i,a,o,s]}function OP({sourceNode:e,targetNode:t,selected:n=!1,zIndex:r,elevateOnSelect:o=!1}){if(r!==void 0)return r;const i=o&&n?1e3:0,s=Math.max(e.parentId?e.internals.z:0,t.parentId?t.internals.z:0);return i+s}function LP({sourceNode:e,targetNode:t,width:n,height:r,transform:o}){const i=el(ya(e),ya(t));i.x===i.x2&&(i.x2+=1),i.y===i.y2&&(i.y2+=1);const s={x:-o[0]/o[2],y:-o[1]/o[2],width:n/o[2],height:r/o[2]};return Hi(s,tl(i))>0}const $P=({source:e,sourceHandle:t,target:n,targetHandle:r})=>`xy-edge__${e}${t||""}-${n}${r||""}`,zP=(e,t)=>t.some(n=>n.source===e.source&&n.target===e.target&&(n.sourceHandle===e.sourceHandle||!n.sourceHandle&&!e.sourceHandle)&&(n.targetHandle===e.targetHandle||!n.targetHandle&&!e.targetHandle)),FP=(e,t)=>{if(!e.source||!e.target)return t;let n;return py(e)?n={...e}:n={...e,id:$P(e)},zP(n,t)?t:(n.sourceHandle===null&&delete n.sourceHandle,n.targetHandle===null&&delete n.targetHandle,t.concat(n))};function Cy({sourceX:e,sourceY:t,targetX:n,targetY:r}){const[o,i,s,a]=ky({sourceX:e,sourceY:t,targetX:n,targetY:r});return[`M ${e},${t}L ${n},${r}`,o,i,s,a]}const Wp={[ue.Left]:{x:-1,y:0},[ue.Right]:{x:1,y:0},[ue.Top]:{x:0,y:-1},[ue.Bottom]:{x:0,y:1}},BP=({source:e,sourcePosition:t=ue.Bottom,target:n})=>t===ue.Left||t===ue.Right?e.x<n.x?{x:1,y:0}:{x:-1,y:0}:e.y<n.y?{x:0,y:1}:{x:0,y:-1},Gp=(e,t)=>Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2));function HP({source:e,sourcePosition:t=ue.Bottom,target:n,targetPosition:r=ue.Top,center:o,offset:i,stepPosition:s}){const a=Wp[t],l=Wp[r],c={x:e.x+a.x*i,y:e.y+a.y*i},u={x:n.x+l.x*i,y:n.y+l.y*i},f=BP({source:c,sourcePosition:t,target:u}),p=f.x!==0?"x":"y",h=f[p];let x=[],g,v;const y={x:0,y:0},b={x:0,y:0},[,,w,S]=ky({sourceX:e.x,sourceY:e.y,targetX:n.x,targetY:n.y});if(a[p]*l[p]===-1){p==="x"?(g=o.x??c.x+(u.x-c.x)*s,v=o.y??(c.y+u.y)/2):(g=o.x??(c.x+u.x)/2,v=o.y??c.y+(u.y-c.y)*s);const k=[{x:g,y:c.y},{x:g,y:u.y}],C=[{x:c.x,y:v},{x:u.x,y:v}];a[p]===h?x=p==="x"?k:C:x=p==="x"?C:k}else{const k=[{x:c.x,y:u.y}],C=[{x:u.x,y:c.y}];if(p==="x"?x=a.x===h?C:k:x=a.y===h?k:C,t===r){const O=Math.abs(e[p]-n[p]);if(O<=i){const L=Math.min(i-1,i-O);a[p]===h?y[p]=(c[p]>e[p]?-1:1)*L:b[p]=(u[p]>n[p]?-1:1)*L}}if(t!==r){const O=p==="x"?"y":"x",L=a[p]===l[O],_=c[O]>u[O],M=c[O]<u[O];(a[p]===1&&(!L&&_||L&&M)||a[p]!==1&&(!L&&M||L&&_))&&(x=p==="x"?k:C)}const A={x:c.x+y.x,y:c.y+y.y},D={x:u.x+b.x,y:u.y+b.y},z=Math.max(Math.abs(A.x-x[0].x),Math.abs(D.x-x[0].x)),$=Math.max(Math.abs(A.y-x[0].y),Math.abs(D.y-x[0].y));z>=$?(g=(A.x+D.x)/2,v=x[0].y):(g=x[0].x,v=(A.y+D.y)/2)}return[[e,{x:c.x+y.x,y:c.y+y.y},...x,{x:u.x+b.x,y:u.y+b.y},n],g,v,w,S]}function UP(e,t,n,r){const o=Math.min(Gp(e,t)/2,Gp(t,n)/2,r),{x:i,y:s}=t;if(e.x===i&&i===n.x||e.y===s&&s===n.y)return`L${i} ${s}`;if(e.y===s){const c=e.x<n.x?-1:1,u=e.y<n.y?1:-1;return`L ${i+o*c},${s}Q ${i},${s} ${i},${s+o*u}`}const a=e.x<n.x?1:-1,l=e.y<n.y?-1:1;return`L ${i},${s+o*l}Q ${i},${s} ${i+o*a},${s}`}function $c({sourceX:e,sourceY:t,sourcePosition:n=ue.Bottom,targetX:r,targetY:o,targetPosition:i=ue.Top,borderRadius:s=5,centerX:a,centerY:l,offset:c=20,stepPosition:u=.5}){const[f,p,h,x,g]=HP({source:{x:e,y:t},sourcePosition:n,target:{x:r,y:o},targetPosition:i,center:{x:a,y:l},offset:c,stepPosition:u});return[f.reduce((y,b,w)=>{let S="";return w>0&&w<f.length-1?S=UP(f[w-1],b,f[w+1],s):S=`${w===0?"M":"L"}${b.x} ${b.y}`,y+=S,y},""),p,h,x,g]}function Yp(e){var t;return e&&!!(e.internals.handleBounds||(t=e.handles)!=null&&t.length)&&!!(e.measured.width||e.width||e.initialWidth)}function VP(e){var f;const{sourceNode:t,targetNode:n}=e;if(!Yp(t)||!Yp(n))return null;const r=t.internals.handleBounds||qp(t.handles),o=n.internals.handleBounds||qp(n.handles),i=Kp((r==null?void 0:r.source)??[],e.sourceHandle),s=Kp(e.connectionMode===Ao.Strict?(o==null?void 0:o.target)??[]:((o==null?void 0:o.target)??[]).concat((o==null?void 0:o.source)??[]),e.targetHandle);if(!i||!s)return(f=e.onError)==null||f.call(e,"008",jn.error008(i?"target":"source",{id:e.id,sourceHandle:e.sourceHandle,targetHandle:e.targetHandle})),null;const a=(i==null?void 0:i.position)||ue.Bottom,l=(s==null?void 0:s.position)||ue.Top,c=Vi(t,i,a),u=Vi(n,s,l);return{sourceX:c.x,sourceY:c.y,targetX:u.x,targetY:u.y,sourcePosition:a,targetPosition:l}}function qp(e){if(!e)return null;const t=[],n=[];for(const r of e)r.width=r.width??1,r.height=r.height??1,r.type==="source"?t.push(r):r.type==="target"&&n.push(r);return{source:t,target:n}}function Vi(e,t,n=ue.Left,r=!1){const o=((t==null?void 0:t.x)??0)+e.internals.positionAbsolute.x,i=((t==null?void 0:t.y)??0)+e.internals.positionAbsolute.y,{width:s,height:a}=t??Kn(e);if(r)return{x:o+s/2,y:i+a/2};switch((t==null?void 0:t.position)??n){case ue.Top:return{x:o+s/2,y:i};case ue.Right:return{x:o+s,y:i+a/2};case ue.Bottom:return{x:o+s/2,y:i+a};case ue.Left:return{x:o,y:i+a/2}}}function Kp(e,t){return e&&(t?e.find(n=>n.id===t):e[0])||null}function zc(e,t){return e?typeof e=="string"?e:`${t?`${t}__`:""}${Object.keys(e).sort().map(r=>`${r}=${e[r]}`).join("&")}`:""}function WP(e,{id:t,defaultColor:n,defaultMarkerStart:r,defaultMarkerEnd:o}){const i=new Set;return e.reduce((s,a)=>([a.markerStart||r,a.markerEnd||o].forEach(l=>{if(l&&typeof l=="object"){const c=zc(l,t);i.has(c)||(s.push({id:c,color:l.color||n,...l}),i.add(c))}}),s),[]).sort((s,a)=>s.id.localeCompare(a.id))}const gd={nodeOrigin:[0,0],nodeExtent:zi,elevateNodesOnSelect:!0,defaults:{}},GP={...gd,checkEquality:!0};function xd(e,t){const n={...e};for(const r in t)t[r]!==void 0&&(n[r]=t[r]);return n}function YP(e,t,n){const r=xd(gd,n);for(const o of e.values())if(o.parentId)vd(o,e,t,r);else{const i=ns(o,r.nodeOrigin),s=jo(o.extent)?o.extent:r.nodeExtent,a=Fr(i,s,Kn(o));o.internals.positionAbsolute=a}}function Fc(e,t,n,r){var l,c;const o=xd(GP,r);let i=e.length>0;const s=new Map(t),a=o!=null&&o.elevateNodesOnSelect?1e3:0;t.clear(),n.clear();for(const u of e){let f=s.get(u.id);if(o.checkEquality&&u===(f==null?void 0:f.internals.userNode))t.set(u.id,f);else{const p=ns(u,o.nodeOrigin),h=jo(u.extent)?u.extent:o.nodeExtent,x=Fr(p,h,Kn(u));f={...o.defaults,...u,measured:{width:(l=u.measured)==null?void 0:l.width,height:(c=u.measured)==null?void 0:c.height},internals:{positionAbsolute:x,handleBounds:u.measured?f==null?void 0:f.internals.handleBounds:void 0,z:_y(u,a),userNode:u}},t.set(u.id,f)}(f.measured===void 0||f.measured.width===void 0||f.measured.height===void 0)&&!f.hidden&&(i=!1),u.parentId&&vd(f,t,n,r)}return i}function qP(e,t){if(!e.parentId)return;const n=t.get(e.parentId);n?n.set(e.id,e):t.set(e.parentId,new Map([[e.id,e]]))}function vd(e,t,n,r){const{elevateNodesOnSelect:o,nodeOrigin:i,nodeExtent:s}=xd(gd,r),a=e.parentId,l=t.get(a);if(!l){console.warn(`Parent node ${a} not found. Please make sure that parent nodes are in front of their child nodes in the nodes array.`);return}qP(e,n);const c=o?1e3:0,{x:u,y:f,z:p}=KP(e,l,i,s,c),{positionAbsolute:h}=e.internals,x=u!==h.x||f!==h.y;(x||p!==e.internals.z)&&t.set(e.id,{...e,internals:{...e.internals,positionAbsolute:x?{x:u,y:f}:h,z:p}})}function _y(e,t){return(fn(e.zIndex)?e.zIndex:0)+(e.selected?t:0)}function KP(e,t,n,r,o){const{x:i,y:s}=t.internals.positionAbsolute,a=Kn(e),l=ns(e,n),c=jo(e.extent)?Fr(l,e.extent,a):l;let u=Fr({x:i+c.x,y:s+c.y},r,a);e.extent==="parent"&&(u=my(u,a,t));const f=_y(e,o),p=t.internals.z??0;return{x:u.x,y:u.y,z:p>=f?p+1:f}}function yd(e,t,n,r=[0,0]){var s;const o=[],i=new Map;for(const a of e){const l=t.get(a.parentId);if(!l)continue;const c=((s=i.get(a.parentId))==null?void 0:s.expandedRect)??Io(l),u=xy(c,a.rect);i.set(a.parentId,{expandedRect:u,parent:l})}return i.size>0&&i.forEach(({expandedRect:a,parent:l},c)=>{var w;const u=l.internals.positionAbsolute,f=Kn(l),p=l.origin??r,h=a.x<u.x?Math.round(Math.abs(u.x-a.x)):0,x=a.y<u.y?Math.round(Math.abs(u.y-a.y)):0,g=Math.max(f.width,Math.round(a.width)),v=Math.max(f.height,Math.round(a.height)),y=(g-f.width)*p[0],b=(v-f.height)*p[1];(h>0||x>0||y||b)&&(o.push({id:c,type:"position",position:{x:l.position.x-h+y,y:l.position.y-x+b}}),(w=n.get(c))==null||w.forEach(S=>{e.some(E=>E.id===S.id)||o.push({id:S.id,type:"position",position:{x:S.position.x+h,y:S.position.y+x}})})),(f.width<a.width||f.height<a.height||h||x)&&o.push({id:c,type:"dimensions",setAttributes:!0,dimensions:{width:g+(h?p[0]*h-y:0),height:v+(x?p[1]*x-b:0)}})}),o}function XP(e,t,n,r,o,i){const s=r==null?void 0:r.querySelector(".xyflow__viewport");let a=!1;if(!s)return{changes:[],updatedInternals:a};const l=[],c=window.getComputedStyle(s),{m22:u}=new window.DOMMatrixReadOnly(c.transform),f=[];for(const p of e.values()){const h=t.get(p.id);if(!h)continue;if(h.hidden){t.set(h.id,{...h,internals:{...h.internals,handleBounds:void 0}}),a=!0;continue}const x=hd(p.nodeElement),g=h.measured.width!==x.width||h.measured.height!==x.height;if(!!(x.width&&x.height&&(g||!h.internals.handleBounds||p.force))){const y=p.nodeElement.getBoundingClientRect(),b=jo(h.extent)?h.extent:i;let{positionAbsolute:w}=h.internals;h.parentId&&h.extent==="parent"?w=my(w,x,t.get(h.parentId)):b&&(w=Fr(w,b,x));const S={...h,measured:x,internals:{...h.internals,positionAbsolute:w,handleBounds:{source:Up("source",p.nodeElement,y,u,h.id),target:Up("target",p.nodeElement,y,u,h.id)}}};t.set(h.id,S),h.parentId&&vd(S,t,n,{nodeOrigin:o}),a=!0,g&&(l.push({id:h.id,type:"dimensions",dimensions:x}),h.expandParent&&h.parentId&&f.push({id:h.id,parentId:h.parentId,rect:Io(S,o)}))}}if(f.length>0){const p=yd(f,t,n,o);l.push(...p)}return{changes:l,updatedInternals:a}}async function ZP({delta:e,panZoom:t,transform:n,translateExtent:r,width:o,height:i}){if(!t||!e.x&&!e.y)return Promise.resolve(!1);const s=await t.setViewportConstrained({x:n[0]+e.x,y:n[1]+e.y,zoom:n[2]},[[0,0],[o,i]],r),a=!!s&&(s.x!==n[0]||s.y!==n[1]||s.k!==n[2]);return Promise.resolve(a)}function Xp(e,t,n,r,o,i){let s=o;const a=r.get(s)||new Map;r.set(s,a.set(n,t)),s=`${o}-${e}`;const l=r.get(s)||new Map;if(r.set(s,l.set(n,t)),i){s=`${o}-${e}-${i}`;const c=r.get(s)||new Map;r.set(s,c.set(n,t))}}function Ty(e,t,n){e.clear(),t.clear();for(const r of n){const{source:o,target:i,sourceHandle:s=null,targetHandle:a=null}=r,l={edgeId:r.id,source:o,target:i,sourceHandle:s,targetHandle:a},c=`${o}-${s}--${i}-${a}`,u=`${i}-${a}--${o}-${s}`;Xp("source",l,u,e,o,s),Xp("target",l,c,e,i,a),t.set(r.id,r)}}function Ay(e,t){if(!e.parentId)return!1;const n=t.get(e.parentId);return n?n.selected?!0:Ay(n,t):!1}function Zp(e,t,n){var o;let r=e;do{if((o=r==null?void 0:r.matches)!=null&&o.call(r,t))return!0;if(r===n)return!1;r=r==null?void 0:r.parentElement}while(r);return!1}function QP(e,t,n,r){const o=new Map;for(const[i,s]of e)if((s.selected||s.id===r)&&(!s.parentId||!Ay(s,e))&&(s.draggable||t&&typeof s.draggable>"u")){const a=e.get(i);a&&o.set(i,{id:i,position:a.position||{x:0,y:0},distance:{x:n.x-a.internals.positionAbsolute.x,y:n.y-a.internals.positionAbsolute.y},extent:a.extent,parentId:a.parentId,origin:a.origin,expandParent:a.expandParent,internals:{positionAbsolute:a.internals.positionAbsolute||{x:0,y:0}},measured:{width:a.measured.width??0,height:a.measured.height??0}})}return o}function Gl({nodeId:e,dragItems:t,nodeLookup:n,dragging:r=!0}){var s,a,l;const o=[];for(const[c,u]of t){const f=(s=n.get(c))==null?void 0:s.internals.userNode;f&&o.push({...f,position:u.position,dragging:r})}if(!e)return[o[0],o];const i=(a=n.get(e))==null?void 0:a.internals.userNode;return[i?{...i,position:((l=t.get(e))==null?void 0:l.position)||i.position,dragging:r}:o[0],o]}function JP({dragItems:e,snapGrid:t,x:n,y:r}){const o=e.values().next().value;if(!o)return null;const i={x:n-o.distance.x,y:r-o.distance.y},s=os(i,t);return{x:s.x-i.x,y:s.y-i.y}}function eO({onNodeMouseDown:e,getStoreItems:t,onDragStart:n,onDrag:r,onDragStop:o}){let i={x:null,y:null},s=0,a=new Map,l=!1,c={x:0,y:0},u=null,f=!1,p=null,h=!1,x=!1,g=null;function v({noDragClassName:b,handleSelector:w,domNode:S,isSelectable:E,nodeId:k,nodeClickDistance:C=0}){p=Zt(S);function A({x:O,y:L}){const{nodeLookup:_,nodeExtent:M,snapGrid:N,snapToGrid:I,nodeOrigin:T,onNodeDrag:j,onSelectionDrag:R,onError:P,updateNodePositions:U}=t();i={x:O,y:L};let B=!1;const V=a.size>1,G=V&&M?Lc(rs(a)):null,q=V&&I?JP({dragItems:a,snapGrid:N,x:O,y:L}):null;for(const[H,W]of a){if(!_.has(H))continue;let K={x:O-W.distance.x,y:L-W.distance.y};I&&(K=q?{x:Math.round(K.x+q.x),y:Math.round(K.y+q.y)}:os(K,N));let J=null;if(V&&M&&!W.extent&&G){const{positionAbsolute:ne}=W.internals,ee=ne.x-G.x+M[0][0],ce=ne.x+W.measured.width-G.x2+M[1][0],we=ne.y-G.y+M[0][1],Me=ne.y+W.measured.height-G.y2+M[1][1];J=[[ee,we],[ce,Me]]}const{position:re,positionAbsolute:Z}=hy({nodeId:H,nextPosition:K,nodeLookup:_,nodeExtent:J||M,nodeOrigin:T,onError:P});B=B||W.position.x!==re.x||W.position.y!==re.y,W.position=re,W.internals.positionAbsolute=Z}if(x=x||B,!!B&&(U(a,!0),g&&(r||j||!k&&R))){const[H,W]=Gl({nodeId:k,dragItems:a,nodeLookup:_});r==null||r(g,a,H,W),j==null||j(g,H,W),k||R==null||R(g,W)}}async function D(){if(!u)return;const{transform:O,panBy:L,autoPanSpeed:_,autoPanOnNodeDrag:M}=t();if(!M){l=!1,cancelAnimationFrame(s);return}const[N,I]=gy(c,u,_);(N!==0||I!==0)&&(i.x=(i.x??0)-N/O[2],i.y=(i.y??0)-I/O[2],await L({x:N,y:I})&&A(i)),s=requestAnimationFrame(D)}function z(O){var V;const{nodeLookup:L,multiSelectionActive:_,nodesDraggable:M,transform:N,snapGrid:I,snapToGrid:T,selectNodesOnDrag:j,onNodeDragStart:R,onSelectionDragStart:P,unselectNodesAndEdges:U}=t();f=!0,(!j||!E)&&!_&&k&&((V=L.get(k))!=null&&V.selected||U()),E&&j&&k&&(e==null||e(k));const B=Ci(O.sourceEvent,{transform:N,snapGrid:I,snapToGrid:T,containerBounds:u});if(i=B,a=QP(L,M,B,k),a.size>0&&(n||R||!k&&P)){const[G,q]=Gl({nodeId:k,dragItems:a,nodeLookup:L});n==null||n(O.sourceEvent,a,G,q),R==null||R(O.sourceEvent,G,q),k||P==null||P(O.sourceEvent,q)}}const $=Yv().clickDistance(C).on("start",O=>{const{domNode:L,nodeDragThreshold:_,transform:M,snapGrid:N,snapToGrid:I}=t();u=(L==null?void 0:L.getBoundingClientRect())||null,h=!1,x=!1,g=O.sourceEvent,_===0&&z(O),i=Ci(O.sourceEvent,{transform:M,snapGrid:N,snapToGrid:I,containerBounds:u}),c=Cn(O.sourceEvent,u)}).on("drag",O=>{const{autoPanOnNodeDrag:L,transform:_,snapGrid:M,snapToGrid:N,nodeDragThreshold:I,nodeLookup:T}=t(),j=Ci(O.sourceEvent,{transform:_,snapGrid:M,snapToGrid:N,containerBounds:u});if(g=O.sourceEvent,(O.sourceEvent.type==="touchmove"&&O.sourceEvent.touches.length>1||k&&!T.has(k))&&(h=!0),!h){if(!l&&L&&f&&(l=!0,D()),!f){const R=j.xSnapped-(i.x??0),P=j.ySnapped-(i.y??0);Math.sqrt(R*R+P*P)>I&&z(O)}(i.x!==j.xSnapped||i.y!==j.ySnapped)&&a&&f&&(c=Cn(O.sourceEvent,u),A(j))}}).on("end",O=>{if(!(!f||h)&&(l=!1,f=!1,cancelAnimationFrame(s),a.size>0)){const{nodeLookup:L,updateNodePositions:_,onNodeDragStop:M,onSelectionDragStop:N}=t();if(x&&(_(a,!1),x=!1),o||M||!k&&N){const[I,T]=Gl({nodeId:k,dragItems:a,nodeLookup:L,dragging:!1});o==null||o(O.sourceEvent,a,I,T),M==null||M(O.sourceEvent,I,T),k||N==null||N(O.sourceEvent,T)}}}).filter(O=>{const L=O.target;return!O.button&&(!b||!Zp(L,`.${b}`,S))&&(!w||Zp(L,w,S))});p.call($)}function y(){p==null||p.on(".drag",null)}return{update:v,destroy:y}}function tO(e,t,n){const r=[],o={x:e.x-n,y:e.y-n,width:n*2,height:n*2};for(const i of t.values())Hi(o,Io(i))>0&&r.push(i);return r}const nO=250;function rO(e,t,n,r){var a,l;let o=[],i=1/0;const s=tO(e,n,t+nO);for(const c of s){const u=[...((a=c.internals.handleBounds)==null?void 0:a.source)??[],...((l=c.internals.handleBounds)==null?void 0:l.target)??[]];for(const f of u){if(r.nodeId===f.nodeId&&r.type===f.type&&r.id===f.id)continue;const{x:p,y:h}=Vi(c,f,f.position,!0),x=Math.sqrt(Math.pow(p-e.x,2)+Math.pow(h-e.y,2));x>t||(x<i?(o=[{...f,x:p,y:h}],i=x):x===i&&o.push({...f,x:p,y:h}))}}if(!o.length)return null;if(o.length>1){const c=r.type==="source"?"target":"source";return o.find(u=>u.type===c)??o[0]}return o[0]}function Ny(e,t,n,r,o,i=!1){var c,u,f;const s=r.get(e);if(!s)return null;const a=o==="strict"?(c=s.internals.handleBounds)==null?void 0:c[t]:[...((u=s.internals.handleBounds)==null?void 0:u.source)??[],...((f=s.internals.handleBounds)==null?void 0:f.target)??[]],l=(n?a==null?void 0:a.find(p=>p.id===n):a==null?void 0:a[0])??null;return l&&i?{...l,...Vi(s,l,l.position,!0)}:l}function Iy(e,t){return e||(t!=null&&t.classList.contains("target")?"target":t!=null&&t.classList.contains("source")?"source":null)}function oO(e,t){let n=null;return t?n=!0:e&&!t&&(n=!1),n}const jy=()=>!0;function iO(e,{connectionMode:t,connectionRadius:n,handleId:r,nodeId:o,edgeUpdaterType:i,isTarget:s,domNode:a,nodeLookup:l,lib:c,autoPanOnConnect:u,flowId:f,panBy:p,cancelConnection:h,onConnectStart:x,onConnect:g,onConnectEnd:v,isValidConnection:y=jy,onReconnectEnd:b,updateConnection:w,getTransform:S,getFromHandle:E,autoPanSpeed:k,dragThreshold:C=1,handleDomNode:A}){const D=wy(e.target);let z=0,$;const{x:O,y:L}=Cn(e),_=Iy(i,A),M=a==null?void 0:a.getBoundingClientRect();let N=!1;if(!M||!_)return;const I=Ny(o,_,r,l,t);if(!I)return;let T=Cn(e,M),j=!1,R=null,P=!1,U=null;function B(){if(!u||!M)return;const[re,Z]=gy(T,M,k);p({x:re,y:Z}),z=requestAnimationFrame(B)}const V={...I,nodeId:o,type:_,position:I.position},G=l.get(o);let H={inProgress:!0,isValid:null,from:Vi(G,V,ue.Left,!0),fromHandle:V,fromPosition:V.position,fromNode:G,to:T,toHandle:null,toPosition:zp[V.position],toNode:null};function W(){N=!0,w(H),x==null||x(e,{nodeId:o,handleId:r,handleType:_})}C===0&&W();function K(re){if(!N){const{x:ce,y:we}=Cn(re),Me=ce-O,ae=we-L;if(!(Me*Me+ae*ae>C*C))return;W()}if(!E()||!V){J(re);return}const Z=S();T=Cn(re,M),$=rO(is(T,Z,!1,[1,1]),n,l,V),j||(B(),j=!0);const ne=My(re,{handle:$,connectionMode:t,fromNodeId:o,fromHandleId:r,fromType:s?"target":"source",isValidConnection:y,doc:D,lib:c,flowId:f,nodeLookup:l});U=ne.handleDomNode,R=ne.connection,P=oO(!!$,ne.isValid);const ee={...H,isValid:P,to:ne.toHandle&&P?wa({x:ne.toHandle.x,y:ne.toHandle.y},Z):T,toHandle:ne.toHandle,toPosition:P&&ne.toHandle?ne.toHandle.position:zp[V.position],toNode:ne.toHandle?l.get(ne.toHandle.nodeId):null};P&&$&&H.toHandle&&ee.toHandle&&H.toHandle.type===ee.toHandle.type&&H.toHandle.nodeId===ee.toHandle.nodeId&&H.toHandle.id===ee.toHandle.id&&H.to.x===ee.to.x&&H.to.y===ee.to.y||(w(ee),H=ee)}function J(re){if(N){($||U)&&R&&P&&(g==null||g(R));const{inProgress:Z,...ne}=H,ee={...ne,toPosition:H.toHandle?H.toPosition:null};v==null||v(re,ee),i&&(b==null||b(re,ee))}h(),cancelAnimationFrame(z),j=!1,P=!1,R=null,U=null,D.removeEventListener("mousemove",K),D.removeEventListener("mouseup",J),D.removeEventListener("touchmove",K),D.removeEventListener("touchend",J)}D.addEventListener("mousemove",K),D.addEventListener("mouseup",J),D.addEventListener("touchmove",K),D.addEventListener("touchend",J)}function My(e,{handle:t,connectionMode:n,fromNodeId:r,fromHandleId:o,fromType:i,doc:s,lib:a,flowId:l,isValidConnection:c=jy,nodeLookup:u}){const f=i==="target",p=t?s.querySelector(`.${a}-flow__handle[data-id="${l}-${t==null?void 0:t.nodeId}-${t==null?void 0:t.id}-${t==null?void 0:t.type}"]`):null,{x:h,y:x}=Cn(e),g=s.elementFromPoint(h,x),v=g!=null&&g.classList.contains(`${a}-flow__handle`)?g:p,y={handleDomNode:v,isValid:!1,connection:null,toHandle:null};if(v){const b=Iy(void 0,v),w=v.getAttribute("data-nodeid"),S=v.getAttribute("data-handleid"),E=v.classList.contains("connectable"),k=v.classList.contains("connectableend");if(!w||!b)return y;const C={source:f?w:r,sourceHandle:f?S:o,target:f?r:w,targetHandle:f?o:S};y.connection=C;const D=E&&k&&(n===Ao.Strict?f&&b==="source"||!f&&b==="target":w!==r||S!==o);y.isValid=D&&c(C),y.toHandle=Ny(w,b,S,u,n,!0)}return y}const Bc={onPointerDown:iO,isValid:My};function sO({domNode:e,panZoom:t,getTransform:n,getViewScale:r}){const o=Zt(e);function i({translateExtent:a,width:l,height:c,zoomStep:u=1,pannable:f=!0,zoomable:p=!0,inversePan:h=!1}){const x=w=>{if(w.sourceEvent.type!=="wheel"||!t)return;const S=n(),E=w.sourceEvent.ctrlKey&&Ui()?10:1,k=-w.sourceEvent.deltaY*(w.sourceEvent.deltaMode===1?.05:w.sourceEvent.deltaMode?1:.002)*u,C=S[2]*Math.pow(2,k*E);t.scaleTo(C)};let g=[0,0];const v=w=>{(w.sourceEvent.type==="mousedown"||w.sourceEvent.type==="touchstart")&&(g=[w.sourceEvent.clientX??w.sourceEvent.touches[0].clientX,w.sourceEvent.clientY??w.sourceEvent.touches[0].clientY])},y=w=>{const S=n();if(w.sourceEvent.type!=="mousemove"&&w.sourceEvent.type!=="touchmove"||!t)return;const E=[w.sourceEvent.clientX??w.sourceEvent.touches[0].clientX,w.sourceEvent.clientY??w.sourceEvent.touches[0].clientY],k=[E[0]-g[0],E[1]-g[1]];g=E;const C=r()*Math.max(S[2],Math.log(S[2]))*(h?-1:1),A={x:S[0]-k[0]*C,y:S[1]-k[1]*C},D=[[0,0],[l,c]];t.setViewportConstrained({x:A.x,y:A.y,zoom:S[2]},D,a)},b=ly().on("start",v).on("zoom",f?y:null).on("zoom.wheel",p?x:null);o.call(b,{})}function s(){o.on("zoom",null)}return{update:i,destroy:s,pointer:un}}const aO=(e,t)=>e.x!==t.x||e.y!==t.y||e.zoom!==t.k,nl=e=>({x:e.x,y:e.y,zoom:e.k}),Yl=({x:e,y:t,zoom:n})=>Ja.translate(e,t).scale(n),po=(e,t)=>e.target.closest(`.${t}`),Ry=(e,t)=>t===2&&Array.isArray(e)&&e.includes(2),lO=e=>((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2,ql=(e,t=0,n=lO,r=()=>{})=>{const o=typeof t=="number"&&t>0;return o||r(),o?e.transition().duration(t).ease(n).on("end",r):e},Dy=e=>{const t=e.ctrlKey&&Ui()?10:1;return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*t};function cO({zoomPanValues:e,noWheelClassName:t,d3Selection:n,d3Zoom:r,panOnScrollMode:o,panOnScrollSpeed:i,zoomOnPinch:s,onPanZoomStart:a,onPanZoom:l,onPanZoomEnd:c}){return u=>{if(po(u,t))return!1;u.preventDefault(),u.stopImmediatePropagation();const f=n.property("__zoom").k||1;if(u.ctrlKey&&s){const v=un(u),y=Dy(u),b=f*Math.pow(2,y);r.scaleTo(n,b,v,u);return}const p=u.deltaMode===1?20:1;let h=o===Nr.Vertical?0:u.deltaX*p,x=o===Nr.Horizontal?0:u.deltaY*p;!Ui()&&u.shiftKey&&o!==Nr.Vertical&&(h=u.deltaY*p,x=0),r.translateBy(n,-(h/f)*i,-(x/f)*i,{internal:!0});const g=nl(n.property("__zoom"));clearTimeout(e.panScrollTimeout),e.isPanScrolling||(e.isPanScrolling=!0,a==null||a(u,g)),e.isPanScrolling&&(l==null||l(u,g),e.panScrollTimeout=setTimeout(()=>{c==null||c(u,g),e.isPanScrolling=!1},150))}}function uO({noWheelClassName:e,preventScrolling:t,d3ZoomHandler:n}){return function(r,o){const i=r.type==="wheel",s=!t&&i&&!r.ctrlKey,a=po(r,e);if(r.ctrlKey&&i&&a&&r.preventDefault(),s||a)return null;r.preventDefault(),n.call(this,r,o)}}function dO({zoomPanValues:e,onDraggingChange:t,onPanZoomStart:n}){return r=>{var i,s,a;if((i=r.sourceEvent)!=null&&i.internal)return;const o=nl(r.transform);e.mouseButton=((s=r.sourceEvent)==null?void 0:s.button)||0,e.isZoomingOrPanning=!0,e.prevViewport=o,((a=r.sourceEvent)==null?void 0:a.type)==="mousedown"&&t(!0),n&&(n==null||n(r.sourceEvent,o))}}function fO({zoomPanValues:e,panOnDrag:t,onPaneContextMenu:n,onTransformChange:r,onPanZoom:o}){return i=>{var s,a;e.usedRightMouseButton=!!(n&&Ry(t,e.mouseButton??0)),(s=i.sourceEvent)!=null&&s.sync||r([i.transform.x,i.transform.y,i.transform.k]),o&&!((a=i.sourceEvent)!=null&&a.internal)&&(o==null||o(i.sourceEvent,nl(i.transform)))}}function pO({zoomPanValues:e,panOnDrag:t,panOnScroll:n,onDraggingChange:r,onPanZoomEnd:o,onPaneContextMenu:i}){return s=>{var a;if(!((a=s.sourceEvent)!=null&&a.internal)&&(e.isZoomingOrPanning=!1,i&&Ry(t,e.mouseButton??0)&&!e.usedRightMouseButton&&s.sourceEvent&&i(s.sourceEvent),e.usedRightMouseButton=!1,r(!1),o&&aO(e.prevViewport,s.transform))){const l=nl(s.transform);e.prevViewport=l,clearTimeout(e.timerId),e.timerId=setTimeout(()=>{o==null||o(s.sourceEvent,l)},n?150:0)}}}function hO({zoomActivationKeyPressed:e,zoomOnScroll:t,zoomOnPinch:n,panOnDrag:r,panOnScroll:o,zoomOnDoubleClick:i,userSelectionActive:s,noWheelClassName:a,noPanClassName:l,lib:c}){return u=>{var x;const f=e||t,p=n&&u.ctrlKey;if(u.button===1&&u.type==="mousedown"&&(po(u,`${c}-flow__node`)||po(u,`${c}-flow__edge`)))return!0;if(!r&&!f&&!o&&!i&&!n||s||po(u,a)&&u.type==="wheel"||po(u,l)&&(u.type!=="wheel"||o&&u.type==="wheel"&&!e)||!n&&u.ctrlKey&&u.type==="wheel")return!1;if(!n&&u.type==="touchstart"&&((x=u.touches)==null?void 0:x.length)>1)return u.preventDefault(),!1;if(!f&&!o&&!p&&u.type==="wheel"||!r&&(u.type==="mousedown"||u.type==="touchstart")||Array.isArray(r)&&!r.includes(u.button)&&u.type==="mousedown")return!1;const h=Array.isArray(r)&&r.includes(u.button)||!u.button||u.button<=1;return(!u.ctrlKey||u.type==="wheel")&&h}}function mO({domNode:e,minZoom:t,maxZoom:n,paneClickDistance:r,translateExtent:o,viewport:i,onPanZoom:s,onPanZoomStart:a,onPanZoomEnd:l,onDraggingChange:c}){const u={isZoomingOrPanning:!1,usedRightMouseButton:!1,prevViewport:{x:0,y:0,zoom:0},mouseButton:0,timerId:void 0,panScrollTimeout:void 0,isPanScrolling:!1},f=e.getBoundingClientRect(),p=ly().clickDistance(!fn(r)||r<0?0:r).scaleExtent([t,n]).translateExtent(o),h=Zt(e).call(p);w({x:i.x,y:i.y,zoom:No(i.zoom,t,n)},[[0,0],[f.width,f.height]],o);const x=h.on("wheel.zoom"),g=h.on("dblclick.zoom");p.wheelDelta(Dy);function v(O,L){return h?new Promise(_=>{p==null||p.interpolate((L==null?void 0:L.interpolate)==="linear"?ki:Ws).transform(ql(h,L==null?void 0:L.duration,L==null?void 0:L.ease,()=>_(!0)),O)}):Promise.resolve(!1)}function y({noWheelClassName:O,noPanClassName:L,onPaneContextMenu:_,userSelectionActive:M,panOnScroll:N,panOnDrag:I,panOnScrollMode:T,panOnScrollSpeed:j,preventScrolling:R,zoomOnPinch:P,zoomOnScroll:U,zoomOnDoubleClick:B,zoomActivationKeyPressed:V,lib:G,onTransformChange:q}){M&&!u.isZoomingOrPanning&&b();const W=N&&!V&&!M?cO({zoomPanValues:u,noWheelClassName:O,d3Selection:h,d3Zoom:p,panOnScrollMode:T,panOnScrollSpeed:j,zoomOnPinch:P,onPanZoomStart:a,onPanZoom:s,onPanZoomEnd:l}):uO({noWheelClassName:O,preventScrolling:R,d3ZoomHandler:x});if(h.on("wheel.zoom",W,{passive:!1}),!M){const J=dO({zoomPanValues:u,onDraggingChange:c,onPanZoomStart:a});p.on("start",J);const re=fO({zoomPanValues:u,panOnDrag:I,onPaneContextMenu:!!_,onPanZoom:s,onTransformChange:q});p.on("zoom",re);const Z=pO({zoomPanValues:u,panOnDrag:I,panOnScroll:N,onPaneContextMenu:_,onPanZoomEnd:l,onDraggingChange:c});p.on("end",Z)}const K=hO({zoomActivationKeyPressed:V,panOnDrag:I,zoomOnScroll:U,panOnScroll:N,zoomOnDoubleClick:B,zoomOnPinch:P,userSelectionActive:M,noPanClassName:L,noWheelClassName:O,lib:G});p.filter(K),B?h.on("dblclick.zoom",g):h.on("dblclick.zoom",null)}function b(){p.on("zoom",null)}async function w(O,L,_){const M=Yl(O),N=p==null?void 0:p.constrain()(M,L,_);return N&&await v(N),new Promise(I=>I(N))}async function S(O,L){const _=Yl(O);return await v(_,L),new Promise(M=>M(_))}function E(O){if(h){const L=Yl(O),_=h.property("__zoom");(_.k!==O.zoom||_.x!==O.x||_.y!==O.y)&&(p==null||p.transform(h,L,null,{sync:!0}))}}function k(){const O=h?ay(h.node()):{x:0,y:0,k:1};return{x:O.x,y:O.y,zoom:O.k}}function C(O,L){return h?new Promise(_=>{p==null||p.interpolate((L==null?void 0:L.interpolate)==="linear"?ki:Ws).scaleTo(ql(h,L==null?void 0:L.duration,L==null?void 0:L.ease,()=>_(!0)),O)}):Promise.resolve(!1)}function A(O,L){return h?new Promise(_=>{p==null||p.interpolate((L==null?void 0:L.interpolate)==="linear"?ki:Ws).scaleBy(ql(h,L==null?void 0:L.duration,L==null?void 0:L.ease,()=>_(!0)),O)}):Promise.resolve(!1)}function D(O){p==null||p.scaleExtent(O)}function z(O){p==null||p.translateExtent(O)}function $(O){const L=!fn(O)||O<0?0:O;p==null||p.clickDistance(L)}return{update:y,destroy:b,setViewport:S,setViewportConstrained:w,getViewport:k,scaleTo:C,scaleBy:A,setScaleExtent:D,setTranslateExtent:z,syncViewport:E,setClickDistance:$}}var Mo;(function(e){e.Line="line",e.Handle="handle"})(Mo||(Mo={}));function gO({width:e,prevWidth:t,height:n,prevHeight:r,affectsX:o,affectsY:i}){const s=e-t,a=n-r,l=[s>0?1:s<0?-1:0,a>0?1:a<0?-1:0];return s&&o&&(l[0]=l[0]*-1),a&&i&&(l[1]=l[1]*-1),l}function xO(e){const t=e.includes("right")||e.includes("left"),n=e.includes("bottom")||e.includes("top"),r=e.includes("left"),o=e.includes("top");return{isHorizontal:t,isVertical:n,affectsX:r,affectsY:o}}function Jn(e,t){return Math.max(0,t-e)}function er(e,t){return Math.max(0,e-t)}function js(e,t,n){return Math.max(0,t-e,e-n)}function Qp(e,t){return e?!t:t}function vO(e,t,n,r,o,i,s,a){let{affectsX:l,affectsY:c}=t;const{isHorizontal:u,isVertical:f}=t,p=u&&f,{xSnapped:h,ySnapped:x}=n,{minWidth:g,maxWidth:v,minHeight:y,maxHeight:b}=r,{x:w,y:S,width:E,height:k,aspectRatio:C}=e;let A=Math.floor(u?h-e.pointerX:0),D=Math.floor(f?x-e.pointerY:0);const z=E+(l?-A:A),$=k+(c?-D:D),O=-i[0]*E,L=-i[1]*k;let _=js(z,g,v),M=js($,y,b);if(s){let T=0,j=0;l&&A<0?T=Jn(w+A+O,s[0][0]):!l&&A>0&&(T=er(w+z+O,s[1][0])),c&&D<0?j=Jn(S+D+L,s[0][1]):!c&&D>0&&(j=er(S+$+L,s[1][1])),_=Math.max(_,T),M=Math.max(M,j)}if(a){let T=0,j=0;l&&A>0?T=er(w+A,a[0][0]):!l&&A<0&&(T=Jn(w+z,a[1][0])),c&&D>0?j=er(S+D,a[0][1]):!c&&D<0&&(j=Jn(S+$,a[1][1])),_=Math.max(_,T),M=Math.max(M,j)}if(o){if(u){const T=js(z/C,y,b)*C;if(_=Math.max(_,T),s){let j=0;!l&&!c||l&&!c&&p?j=er(S+L+z/C,s[1][1])*C:j=Jn(S+L+(l?A:-A)/C,s[0][1])*C,_=Math.max(_,j)}if(a){let j=0;!l&&!c||l&&!c&&p?j=Jn(S+z/C,a[1][1])*C:j=er(S+(l?A:-A)/C,a[0][1])*C,_=Math.max(_,j)}}if(f){const T=js($*C,g,v)/C;if(M=Math.max(M,T),s){let j=0;!l&&!c||c&&!l&&p?j=er(w+$*C+O,s[1][0])/C:j=Jn(w+(c?D:-D)*C+O,s[0][0])/C,M=Math.max(M,j)}if(a){let j=0;!l&&!c||c&&!l&&p?j=Jn(w+$*C,a[1][0])/C:j=er(w+(c?D:-D)*C,a[0][0])/C,M=Math.max(M,j)}}}D=D+(D<0?M:-M),A=A+(A<0?_:-_),o&&(p?z>$*C?D=(Qp(l,c)?-A:A)/C:A=(Qp(l,c)?-D:D)*C:u?(D=A/C,c=l):(A=D*C,l=c));const N=l?w+A:w,I=c?S+D:S;return{width:E+(l?-A:A),height:k+(c?-D:D),x:i[0]*A*(l?-1:1)+N,y:i[1]*D*(c?-1:1)+I}}const Py={width:0,height:0,x:0,y:0},yO={...Py,pointerX:0,pointerY:0,aspectRatio:1};function wO(e){return[[0,0],[e.measured.width,e.measured.height]]}function bO(e,t,n){const r=t.position.x+e.position.x,o=t.position.y+e.position.y,i=e.measured.width??0,s=e.measured.height??0,a=n[0]*i,l=n[1]*s;return[[r-a,o-l],[r+i-a,o+s-l]]}function EO({domNode:e,nodeId:t,getStoreItems:n,onChange:r,onEnd:o}){const i=Zt(e);function s({controlPosition:l,boundaries:c,keepAspectRatio:u,resizeDirection:f,onResizeStart:p,onResize:h,onResizeEnd:x,shouldResize:g}){let v={...Py},y={...yO};const b=xO(l);let w,S=null,E=[],k,C,A;const D=Yv().on("start",z=>{const{nodeLookup:$,transform:O,snapGrid:L,snapToGrid:_,nodeOrigin:M,paneDomNode:N}=n();if(w=$.get(t),!w)return;S=(N==null?void 0:N.getBoundingClientRect())??null;const{xSnapped:I,ySnapped:T}=Ci(z.sourceEvent,{transform:O,snapGrid:L,snapToGrid:_,containerBounds:S});v={width:w.measured.width??0,height:w.measured.height??0,x:w.position.x??0,y:w.position.y??0},y={...v,pointerX:I,pointerY:T,aspectRatio:v.width/v.height},k=void 0,w.parentId&&(w.extent==="parent"||w.expandParent)&&(k=$.get(w.parentId),C=k&&w.extent==="parent"?wO(k):void 0),E=[],A=void 0;for(const[j,R]of $)if(R.parentId===t&&(E.push({id:j,position:{...R.position},extent:R.extent}),R.extent==="parent"||R.expandParent)){const P=bO(R,w,R.origin??M);A?A=[[Math.min(P[0][0],A[0][0]),Math.min(P[0][1],A[0][1])],[Math.max(P[1][0],A[1][0]),Math.max(P[1][1],A[1][1])]]:A=P}p==null||p(z,{...v})}).on("drag",z=>{const{transform:$,snapGrid:O,snapToGrid:L,nodeOrigin:_}=n(),M=Ci(z.sourceEvent,{transform:$,snapGrid:O,snapToGrid:L,containerBounds:S}),N=[];if(!w)return;const{x:I,y:T,width:j,height:R}=v,P={},U=w.origin??_,{width:B,height:V,x:G,y:q}=vO(y,b,M,c,u,U,C,A),H=B!==j,W=V!==R,K=G!==I&&H,J=q!==T&&W;if(!K&&!J&&!H&&!W)return;if((K||J||U[0]===1||U[1]===1)&&(P.x=K?G:v.x,P.y=J?q:v.y,v.x=P.x,v.y=P.y,E.length>0)){const ee=G-I,ce=q-T;for(const we of E)we.position={x:we.position.x-ee+U[0]*(B-j),y:we.position.y-ce+U[1]*(V-R)},N.push(we)}if((H||W)&&(P.width=H&&(!f||f==="horizontal")?B:v.width,P.height=W&&(!f||f==="vertical")?V:v.height,v.width=P.width,v.height=P.height),k&&w.expandParent){const ee=U[0]*(P.width??0);P.x&&P.x<ee&&(v.x=ee,y.x=y.x-(P.x-ee));const ce=U[1]*(P.height??0);P.y&&P.y<ce&&(v.y=ce,y.y=y.y-(P.y-ce))}const re=gO({width:v.width,prevWidth:j,height:v.height,prevHeight:R,affectsX:b.affectsX,affectsY:b.affectsY}),Z={...v,direction:re};(g==null?void 0:g(z,Z))!==!1&&(h==null||h(z,Z),r(P,N))}).on("end",z=>{x==null||x(z,{...v}),o==null||o({...v})});i.call(D)}function a(){i.on(".drag",null)}return{update:s,destroy:a}}var Kl={exports:{}},Xl={};/**
669
+ * @license React
670
+ * use-sync-external-store-shim/with-selector.production.js
671
+ *
672
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
673
+ *
674
+ * This source code is licensed under the MIT license found in the
675
+ * LICENSE file in the root directory of this source tree.
676
+ */var Jp;function SO(){if(Jp)return Xl;Jp=1;var e=ka(),t=Ck();function n(c,u){return c===u&&(c!==0||1/c===1/u)||c!==c&&u!==u}var r=typeof Object.is=="function"?Object.is:n,o=t.useSyncExternalStore,i=e.useRef,s=e.useEffect,a=e.useMemo,l=e.useDebugValue;return Xl.useSyncExternalStoreWithSelector=function(c,u,f,p,h){var x=i(null);if(x.current===null){var g={hasValue:!1,value:null};x.current=g}else g=x.current;x=a(function(){function y(k){if(!b){if(b=!0,w=k,k=p(k),h!==void 0&&g.hasValue){var C=g.value;if(h(C,k))return S=C}return S=k}if(C=S,r(w,k))return C;var A=p(k);return h!==void 0&&h(C,A)?(w=k,C):(w=k,S=A)}var b=!1,w,S,E=f===void 0?null:f;return[function(){return y(u())},E===null?void 0:function(){return y(E())}]},[u,f,p,h]);var v=o(c,x[0],x[1]);return s(function(){g.hasValue=!0,g.value=v},[v]),l(v),v},Xl}var eh;function kO(){return eh||(eh=1,Kl.exports=SO()),Kl.exports}var CO=kO();const _O=Qc(CO),TO={},th=e=>{let t;const n=new Set,r=(u,f)=>{const p=typeof u=="function"?u(t):u;if(!Object.is(p,t)){const h=t;t=f??(typeof p!="object"||p===null)?p:Object.assign({},t,p),n.forEach(x=>x(t,h))}},o=()=>t,l={setState:r,getState:o,getInitialState:()=>c,subscribe:u=>(n.add(u),()=>n.delete(u)),destroy:()=>{(TO?"production":void 0)!=="production"&&console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),n.clear()}},c=t=e(r,o,l);return l},AO=e=>e?th(e):th,{useDebugValue:NO}=cn,{useSyncExternalStoreWithSelector:IO}=_O,jO=e=>e;function Oy(e,t=jO,n){const r=IO(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,n);return NO(r),r}const nh=(e,t)=>{const n=AO(e),r=(o,i=t)=>Oy(n,o,i);return Object.assign(r,n),r},MO=(e,t)=>e?nh(e,t):nh;function yt(e,t){if(Object.is(e,t))return!0;if(typeof e!="object"||e===null||typeof t!="object"||t===null)return!1;if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(const[r,o]of e)if(!Object.is(o,t.get(r)))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(const r of e)if(!t.has(r))return!1;return!0}const n=Object.keys(e);if(n.length!==Object.keys(t).length)return!1;for(const r of n)if(!Object.prototype.hasOwnProperty.call(t,r)||!Object.is(e[r],t[r]))return!1;return!0}const rl=m.createContext(null),RO=rl.Provider,Ly=jn.error001();function Qe(e,t){const n=m.useContext(rl);if(n===null)throw new Error(Ly);return Oy(n,e,t)}function xt(){const e=m.useContext(rl);if(e===null)throw new Error(Ly);return m.useMemo(()=>({getState:e.getState,setState:e.setState,subscribe:e.subscribe}),[e])}const rh={display:"none"},DO={position:"absolute",width:1,height:1,margin:-1,border:0,padding:0,overflow:"hidden",clip:"rect(0px, 0px, 0px, 0px)",clipPath:"inset(100%)"},$y="react-flow__node-desc",zy="react-flow__edge-desc",PO="react-flow__aria-live",OO=e=>e.ariaLiveMessage,LO=e=>e.ariaLabelConfig;function $O({rfId:e}){const t=Qe(OO);return d.jsx("div",{id:`${PO}-${e}`,"aria-live":"assertive","aria-atomic":"true",style:DO,children:t})}function zO({rfId:e,disableKeyboardA11y:t}){const n=Qe(LO);return d.jsxs(d.Fragment,{children:[d.jsx("div",{id:`${$y}-${e}`,style:rh,children:t?n["node.a11yDescription.default"]:n["node.a11yDescription.keyboardDisabled"]}),d.jsx("div",{id:`${zy}-${e}`,style:rh,children:n["edge.a11yDescription.default"]}),!t&&d.jsx($O,{rfId:e})]})}const ss=m.forwardRef(({position:e="top-left",children:t,className:n,style:r,...o},i)=>{const s=`${e}`.split("-");return d.jsx("div",{className:It(["react-flow__panel",n,...s]),style:r,ref:i,...o,children:t})});ss.displayName="Panel";function FO({proOptions:e,position:t="bottom-right"}){return e!=null&&e.hideAttribution?null:d.jsx(ss,{position:t,className:"react-flow__attribution","data-message":"Please only hide this attribution when you are subscribed to React Flow Pro: https://pro.reactflow.dev",children:d.jsx("a",{href:"https://reactflow.dev",target:"_blank",rel:"noopener noreferrer","aria-label":"React Flow attribution",children:"React Flow"})})}const BO=e=>{const t=[],n=[];for(const[,r]of e.nodeLookup)r.selected&&t.push(r.internals.userNode);for(const[,r]of e.edgeLookup)r.selected&&n.push(r);return{selectedNodes:t,selectedEdges:n}},Ms=e=>e.id;function HO(e,t){return yt(e.selectedNodes.map(Ms),t.selectedNodes.map(Ms))&&yt(e.selectedEdges.map(Ms),t.selectedEdges.map(Ms))}function UO({onSelectionChange:e}){const t=xt(),{selectedNodes:n,selectedEdges:r}=Qe(BO,HO);return m.useEffect(()=>{const o={nodes:n,edges:r};e==null||e(o),t.getState().onSelectionChangeHandlers.forEach(i=>i(o))},[n,r,e]),null}const VO=e=>!!e.onSelectionChangeHandlers;function WO({onSelectionChange:e}){const t=Qe(VO);return e||t?d.jsx(UO,{onSelectionChange:e}):null}const Fy=[0,0],GO={x:0,y:0,zoom:1},YO=["nodes","edges","defaultNodes","defaultEdges","onConnect","onConnectStart","onConnectEnd","onClickConnectStart","onClickConnectEnd","nodesDraggable","autoPanOnNodeFocus","nodesConnectable","nodesFocusable","edgesFocusable","edgesReconnectable","elevateNodesOnSelect","elevateEdgesOnSelect","minZoom","maxZoom","nodeExtent","onNodesChange","onEdgesChange","elementsSelectable","connectionMode","snapGrid","snapToGrid","translateExtent","connectOnClick","defaultEdgeOptions","fitView","fitViewOptions","onNodesDelete","onEdgesDelete","onDelete","onNodeDrag","onNodeDragStart","onNodeDragStop","onSelectionDrag","onSelectionDragStart","onSelectionDragStop","onMoveStart","onMove","onMoveEnd","noPanClassName","nodeOrigin","autoPanOnConnect","autoPanOnNodeDrag","onError","connectionRadius","isValidConnection","selectNodesOnDrag","nodeDragThreshold","connectionDragThreshold","onBeforeDelete","debug","autoPanSpeed","paneClickDistance","ariaLabelConfig"],oh=[...YO,"rfId"],qO=e=>({setNodes:e.setNodes,setEdges:e.setEdges,setMinZoom:e.setMinZoom,setMaxZoom:e.setMaxZoom,setTranslateExtent:e.setTranslateExtent,setNodeExtent:e.setNodeExtent,reset:e.reset,setDefaultNodesAndEdges:e.setDefaultNodesAndEdges,setPaneClickDistance:e.setPaneClickDistance}),ih={translateExtent:zi,nodeOrigin:Fy,minZoom:.5,maxZoom:2,elementsSelectable:!0,noPanClassName:"nopan",rfId:"1",paneClickDistance:0};function KO(e){const{setNodes:t,setEdges:n,setMinZoom:r,setMaxZoom:o,setTranslateExtent:i,setNodeExtent:s,reset:a,setDefaultNodesAndEdges:l,setPaneClickDistance:c}=Qe(qO,yt),u=xt();m.useEffect(()=>(l(e.defaultNodes,e.defaultEdges),()=>{f.current=ih,a()}),[]);const f=m.useRef(ih);return m.useEffect(()=>{for(const p of oh){const h=e[p],x=f.current[p];h!==x&&(typeof e[p]>"u"||(p==="nodes"?t(h):p==="edges"?n(h):p==="minZoom"?r(h):p==="maxZoom"?o(h):p==="translateExtent"?i(h):p==="nodeExtent"?s(h):p==="paneClickDistance"?c(h):p==="ariaLabelConfig"?u.setState({ariaLabelConfig:DP(h)}):p==="fitView"?u.setState({fitViewQueued:h}):p==="fitViewOptions"?u.setState({fitViewOptions:h}):u.setState({[p]:h})))}f.current=e},oh.map(p=>e[p])),null}function sh(){return typeof window>"u"||!window.matchMedia?null:window.matchMedia("(prefers-color-scheme: dark)")}function XO(e){var r;const[t,n]=m.useState(e==="system"?null:e);return m.useEffect(()=>{if(e!=="system"){n(e);return}const o=sh(),i=()=>n(o!=null&&o.matches?"dark":"light");return i(),o==null||o.addEventListener("change",i),()=>{o==null||o.removeEventListener("change",i)}},[e]),t!==null?t:(r=sh())!=null&&r.matches?"dark":"light"}const ah=typeof document<"u"?document:null;function Wi(e=null,t={target:ah,actInsideInputWithModifier:!0}){const[n,r]=m.useState(!1),o=m.useRef(!1),i=m.useRef(new Set([])),[s,a]=m.useMemo(()=>{if(e!==null){const c=(Array.isArray(e)?e:[e]).filter(f=>typeof f=="string").map(f=>f.replace("+",`
677
+ `).replace(`
678
+
679
+ `,`
680
+ +`).split(`
681
+ `)),u=c.reduce((f,p)=>f.concat(...p),[]);return[c,u]}return[[],[]]},[e]);return m.useEffect(()=>{const l=(t==null?void 0:t.target)??ah,c=(t==null?void 0:t.actInsideInputWithModifier)??!0;if(e!==null){const u=h=>{var v,y;if(o.current=h.ctrlKey||h.metaKey||h.shiftKey||h.altKey,(!o.current||o.current&&!c)&&by(h))return!1;const g=ch(h.code,a);if(i.current.add(h[g]),lh(s,i.current,!1)){const b=((y=(v=h.composedPath)==null?void 0:v.call(h))==null?void 0:y[0])||h.target,w=(b==null?void 0:b.nodeName)==="BUTTON"||(b==null?void 0:b.nodeName)==="A";t.preventDefault!==!1&&(o.current||!w)&&h.preventDefault(),r(!0)}},f=h=>{const x=ch(h.code,a);lh(s,i.current,!0)?(r(!1),i.current.clear()):i.current.delete(h[x]),h.key==="Meta"&&i.current.clear(),o.current=!1},p=()=>{i.current.clear(),r(!1)};return l==null||l.addEventListener("keydown",u),l==null||l.addEventListener("keyup",f),window.addEventListener("blur",p),window.addEventListener("contextmenu",p),()=>{l==null||l.removeEventListener("keydown",u),l==null||l.removeEventListener("keyup",f),window.removeEventListener("blur",p),window.removeEventListener("contextmenu",p)}}},[e,r]),n}function lh(e,t,n){return e.filter(r=>n||r.length===t.size).some(r=>r.every(o=>t.has(o)))}function ch(e,t){return t.includes(e)?"code":"key"}const ZO=()=>{const e=xt();return m.useMemo(()=>({zoomIn:t=>{const{panZoom:n}=e.getState();return n?n.scaleBy(1.2,{duration:t==null?void 0:t.duration}):Promise.resolve(!1)},zoomOut:t=>{const{panZoom:n}=e.getState();return n?n.scaleBy(1/1.2,{duration:t==null?void 0:t.duration}):Promise.resolve(!1)},zoomTo:(t,n)=>{const{panZoom:r}=e.getState();return r?r.scaleTo(t,{duration:n==null?void 0:n.duration}):Promise.resolve(!1)},getZoom:()=>e.getState().transform[2],setViewport:async(t,n)=>{const{transform:[r,o,i],panZoom:s}=e.getState();return s?(await s.setViewport({x:t.x??r,y:t.y??o,zoom:t.zoom??i},n),Promise.resolve(!0)):Promise.resolve(!1)},getViewport:()=>{const[t,n,r]=e.getState().transform;return{x:t,y:n,zoom:r}},setCenter:async(t,n,r)=>e.getState().setCenter(t,n,r),fitBounds:async(t,n)=>{const{width:r,height:o,minZoom:i,maxZoom:s,panZoom:a}=e.getState(),l=pd(t,r,o,i,s,(n==null?void 0:n.padding)??.1);return a?(await a.setViewport(l,{duration:n==null?void 0:n.duration,ease:n==null?void 0:n.ease,interpolate:n==null?void 0:n.interpolate}),Promise.resolve(!0)):Promise.resolve(!1)},screenToFlowPosition:(t,n={})=>{const{transform:r,snapGrid:o,snapToGrid:i,domNode:s}=e.getState();if(!s)return t;const{x:a,y:l}=s.getBoundingClientRect(),c={x:t.x-a,y:t.y-l},u=n.snapGrid??o,f=n.snapToGrid??i;return is(c,r,f,u)},flowToScreenPosition:t=>{const{transform:n,domNode:r}=e.getState();if(!r)return t;const{x:o,y:i}=r.getBoundingClientRect(),s=wa(t,n);return{x:s.x+o,y:s.y+i}}}),[])};function By(e,t){const n=[],r=new Map,o=[];for(const i of e)if(i.type==="add"){o.push(i);continue}else if(i.type==="remove"||i.type==="replace")r.set(i.id,[i]);else{const s=r.get(i.id);s?s.push(i):r.set(i.id,[i])}for(const i of t){const s=r.get(i.id);if(!s){n.push(i);continue}if(s[0].type==="remove")continue;if(s[0].type==="replace"){n.push({...s[0].item});continue}const a={...i};for(const l of s)QO(l,a);n.push(a)}return o.length&&o.forEach(i=>{i.index!==void 0?n.splice(i.index,0,{...i.item}):n.push({...i.item})}),n}function QO(e,t){switch(e.type){case"select":{t.selected=e.selected;break}case"position":{typeof e.position<"u"&&(t.position=e.position),typeof e.dragging<"u"&&(t.dragging=e.dragging);break}case"dimensions":{typeof e.dimensions<"u"&&(t.measured??(t.measured={}),t.measured.width=e.dimensions.width,t.measured.height=e.dimensions.height,e.setAttributes&&((e.setAttributes===!0||e.setAttributes==="width")&&(t.width=e.dimensions.width),(e.setAttributes===!0||e.setAttributes==="height")&&(t.height=e.dimensions.height))),typeof e.resizing=="boolean"&&(t.resizing=e.resizing);break}}}function Hy(e,t){return By(e,t)}function Uy(e,t){return By(e,t)}function br(e,t){return{id:e,type:"select",selected:t}}function ho(e,t=new Set,n=!1){const r=[];for(const[o,i]of e){const s=t.has(o);!(i.selected===void 0&&!s)&&i.selected!==s&&(n&&(i.selected=s),r.push(br(i.id,s)))}return r}function uh({items:e=[],lookup:t}){var o;const n=[],r=new Map(e.map(i=>[i.id,i]));for(const[i,s]of e.entries()){const a=t.get(s.id),l=((o=a==null?void 0:a.internals)==null?void 0:o.userNode)??a;l!==void 0&&l!==s&&n.push({id:s.id,item:s,type:"replace"}),l===void 0&&n.push({item:s,type:"add",index:i})}for(const[i]of t)r.get(i)===void 0&&n.push({id:i,type:"remove"});return n}function dh(e){return{id:e.id,type:"remove"}}const fh=e=>kP(e),JO=e=>py(e);function Vy(e){return m.forwardRef(e)}const eL=typeof window<"u"?m.useLayoutEffect:m.useEffect;function ph(e){const[t,n]=m.useState(BigInt(0)),[r]=m.useState(()=>tL(()=>n(o=>o+BigInt(1))));return eL(()=>{const o=r.get();o.length&&(e(o),r.reset())},[t]),r}function tL(e){let t=[];return{get:()=>t,reset:()=>{t=[]},push:n=>{t.push(n),e()}}}const Wy=m.createContext(null);function nL({children:e}){const t=xt(),n=m.useCallback(a=>{const{nodes:l=[],setNodes:c,hasDefaultNodes:u,onNodesChange:f,nodeLookup:p,fitViewQueued:h}=t.getState();let x=l;for(const v of a)x=typeof v=="function"?v(x):v;const g=uh({items:x,lookup:p});u&&c(x),g.length>0?f==null||f(g):h&&window.requestAnimationFrame(()=>{const{fitViewQueued:v,nodes:y,setNodes:b}=t.getState();v&&b(y)})},[]),r=ph(n),o=m.useCallback(a=>{const{edges:l=[],setEdges:c,hasDefaultEdges:u,onEdgesChange:f,edgeLookup:p}=t.getState();let h=l;for(const x of a)h=typeof x=="function"?x(h):x;u?c(h):f&&f(uh({items:h,lookup:p}))},[]),i=ph(o),s=m.useMemo(()=>({nodeQueue:r,edgeQueue:i}),[]);return d.jsx(Wy.Provider,{value:s,children:e})}function rL(){const e=m.useContext(Wy);if(!e)throw new Error("useBatchContext must be used within a BatchProvider");return e}const oL=e=>!!e.panZoom;function ol(){const e=ZO(),t=xt(),n=rL(),r=Qe(oL),o=m.useMemo(()=>{const i=f=>t.getState().nodeLookup.get(f),s=f=>{n.nodeQueue.push(f)},a=f=>{n.edgeQueue.push(f)},l=f=>{var y,b;const{nodeLookup:p,nodeOrigin:h}=t.getState(),x=fh(f)?f:p.get(f.id),g=x.parentId?yy(x.position,x.measured,x.parentId,p,h):x.position,v={...x,position:g,width:((y=x.measured)==null?void 0:y.width)??x.width,height:((b=x.measured)==null?void 0:b.height)??x.height};return Io(v)},c=(f,p,h={replace:!1})=>{s(x=>x.map(g=>{if(g.id===f){const v=typeof p=="function"?p(g):p;return h.replace&&fh(v)?v:{...g,...v}}return g}))},u=(f,p,h={replace:!1})=>{a(x=>x.map(g=>{if(g.id===f){const v=typeof p=="function"?p(g):p;return h.replace&&JO(v)?v:{...g,...v}}return g}))};return{getNodes:()=>t.getState().nodes.map(f=>({...f})),getNode:f=>{var p;return(p=i(f))==null?void 0:p.internals.userNode},getInternalNode:i,getEdges:()=>{const{edges:f=[]}=t.getState();return f.map(p=>({...p}))},getEdge:f=>t.getState().edgeLookup.get(f),setNodes:s,setEdges:a,addNodes:f=>{const p=Array.isArray(f)?f:[f];n.nodeQueue.push(h=>[...h,...p])},addEdges:f=>{const p=Array.isArray(f)?f:[f];n.edgeQueue.push(h=>[...h,...p])},toObject:()=>{const{nodes:f=[],edges:p=[],transform:h}=t.getState(),[x,g,v]=h;return{nodes:f.map(y=>({...y})),edges:p.map(y=>({...y})),viewport:{x,y:g,zoom:v}}},deleteElements:async({nodes:f=[],edges:p=[]})=>{const{nodes:h,edges:x,onNodesDelete:g,onEdgesDelete:v,triggerNodeChanges:y,triggerEdgeChanges:b,onDelete:w,onBeforeDelete:S}=t.getState(),{nodes:E,edges:k}=await NP({nodesToRemove:f,edgesToRemove:p,nodes:h,edges:x,onBeforeDelete:S}),C=k.length>0,A=E.length>0;if(C){const D=k.map(dh);v==null||v(k),b(D)}if(A){const D=E.map(dh);g==null||g(E),y(D)}return(A||C)&&(w==null||w({nodes:E,edges:k})),{deletedNodes:E,deletedEdges:k}},getIntersectingNodes:(f,p=!0,h)=>{const x=Bp(f),g=x?f:l(f),v=h!==void 0;return g?(h||t.getState().nodes).filter(y=>{const b=t.getState().nodeLookup.get(y.id);if(b&&!x&&(y.id===f.id||!b.internals.positionAbsolute))return!1;const w=Io(v?y:b),S=Hi(w,g);return p&&S>0||S>=w.width*w.height||S>=g.width*g.height}):[]},isNodeIntersecting:(f,p,h=!0)=>{const g=Bp(f)?f:l(f);if(!g)return!1;const v=Hi(g,p);return h&&v>0||v>=g.width*g.height},updateNode:c,updateNodeData:(f,p,h={replace:!1})=>{c(f,x=>{const g=typeof p=="function"?p(x):p;return h.replace?{...x,data:g}:{...x,data:{...x.data,...g}}},h)},updateEdge:u,updateEdgeData:(f,p,h={replace:!1})=>{u(f,x=>{const g=typeof p=="function"?p(x):p;return h.replace?{...x,data:g}:{...x,data:{...x.data,...g}}},h)},getNodesBounds:f=>{const{nodeLookup:p,nodeOrigin:h}=t.getState();return CP(f,{nodeLookup:p,nodeOrigin:h})},getHandleConnections:({type:f,id:p,nodeId:h})=>{var x;return Array.from(((x=t.getState().connectionLookup.get(`${h}-${f}${p?`-${p}`:""}`))==null?void 0:x.values())??[])},getNodeConnections:({type:f,handleId:p,nodeId:h})=>{var x;return Array.from(((x=t.getState().connectionLookup.get(`${h}${f?p?`-${f}-${p}`:`-${f}`:""}`))==null?void 0:x.values())??[])},fitView:async f=>{const p=t.getState().fitViewResolver??RP();return t.setState({fitViewQueued:!0,fitViewOptions:f,fitViewResolver:p}),n.nodeQueue.push(h=>[...h]),p.promise}}},[]);return m.useMemo(()=>({...o,...e,viewportInitialized:r}),[r])}const hh=e=>e.selected,iL=typeof window<"u"?window:void 0;function sL({deleteKeyCode:e,multiSelectionKeyCode:t}){const n=xt(),{deleteElements:r}=ol(),o=Wi(e,{actInsideInputWithModifier:!1}),i=Wi(t,{target:iL});m.useEffect(()=>{if(o){const{edges:s,nodes:a}=n.getState();r({nodes:a.filter(hh),edges:s.filter(hh)}),n.setState({nodesSelectionActive:!1})}},[o]),m.useEffect(()=>{n.setState({multiSelectionActive:i})},[i])}function aL(e){const t=xt();m.useEffect(()=>{const n=()=>{var o,i;if(!e.current)return!1;const r=hd(e.current);(r.height===0||r.width===0)&&((i=(o=t.getState()).onError)==null||i.call(o,"004",jn.error004())),t.setState({width:r.width||500,height:r.height||500})};if(e.current){n(),window.addEventListener("resize",n);const r=new ResizeObserver(()=>n());return r.observe(e.current),()=>{window.removeEventListener("resize",n),r&&e.current&&r.unobserve(e.current)}}},[])}const il={position:"absolute",width:"100%",height:"100%",top:0,left:0},lL=e=>({userSelectionActive:e.userSelectionActive,lib:e.lib});function cL({onPaneContextMenu:e,zoomOnScroll:t=!0,zoomOnPinch:n=!0,panOnScroll:r=!1,panOnScrollSpeed:o=.5,panOnScrollMode:i=Nr.Free,zoomOnDoubleClick:s=!0,panOnDrag:a=!0,defaultViewport:l,translateExtent:c,minZoom:u,maxZoom:f,zoomActivationKeyCode:p,preventScrolling:h=!0,children:x,noWheelClassName:g,noPanClassName:v,onViewportChange:y,isControlledViewport:b,paneClickDistance:w}){const S=xt(),E=m.useRef(null),{userSelectionActive:k,lib:C}=Qe(lL,yt),A=Wi(p),D=m.useRef();aL(E);const z=m.useCallback($=>{y==null||y({x:$[0],y:$[1],zoom:$[2]}),b||S.setState({transform:$})},[y,b]);return m.useEffect(()=>{if(E.current){D.current=mO({domNode:E.current,minZoom:u,maxZoom:f,translateExtent:c,viewport:l,paneClickDistance:w,onDraggingChange:_=>S.setState({paneDragging:_}),onPanZoomStart:(_,M)=>{const{onViewportChangeStart:N,onMoveStart:I}=S.getState();I==null||I(_,M),N==null||N(M)},onPanZoom:(_,M)=>{const{onViewportChange:N,onMove:I}=S.getState();I==null||I(_,M),N==null||N(M)},onPanZoomEnd:(_,M)=>{const{onViewportChangeEnd:N,onMoveEnd:I}=S.getState();I==null||I(_,M),N==null||N(M)}});const{x:$,y:O,zoom:L}=D.current.getViewport();return S.setState({panZoom:D.current,transform:[$,O,L],domNode:E.current.closest(".react-flow")}),()=>{var _;(_=D.current)==null||_.destroy()}}},[]),m.useEffect(()=>{var $;($=D.current)==null||$.update({onPaneContextMenu:e,zoomOnScroll:t,zoomOnPinch:n,panOnScroll:r,panOnScrollSpeed:o,panOnScrollMode:i,zoomOnDoubleClick:s,panOnDrag:a,zoomActivationKeyPressed:A,preventScrolling:h,noPanClassName:v,userSelectionActive:k,noWheelClassName:g,lib:C,onTransformChange:z})},[e,t,n,r,o,i,s,a,A,h,v,k,g,C,z]),d.jsx("div",{className:"react-flow__renderer",ref:E,style:il,children:x})}const uL=e=>({userSelectionActive:e.userSelectionActive,userSelectionRect:e.userSelectionRect});function dL(){const{userSelectionActive:e,userSelectionRect:t}=Qe(uL,yt);return e&&t?d.jsx("div",{className:"react-flow__selection react-flow__container",style:{width:t.width,height:t.height,transform:`translate(${t.x}px, ${t.y}px)`}}):null}const Zl=(e,t)=>n=>{n.target===t.current&&(e==null||e(n))},fL=e=>({userSelectionActive:e.userSelectionActive,elementsSelectable:e.elementsSelectable,connectionInProgress:e.connection.inProgress,dragging:e.paneDragging});function pL({isSelecting:e,selectionKeyPressed:t,selectionMode:n=Fi.Full,panOnDrag:r,selectionOnDrag:o,onSelectionStart:i,onSelectionEnd:s,onPaneClick:a,onPaneContextMenu:l,onPaneScroll:c,onPaneMouseEnter:u,onPaneMouseMove:f,onPaneMouseLeave:p,children:h}){const x=xt(),{userSelectionActive:g,elementsSelectable:v,dragging:y,connectionInProgress:b}=Qe(fL,yt),w=v&&(e||g),S=m.useRef(null),E=m.useRef(),k=m.useRef(new Set),C=m.useRef(new Set),A=m.useRef(!1),D=m.useRef(!1),z=I=>{if(A.current||b){A.current=!1;return}a==null||a(I),x.getState().resetSelectedElements(),x.setState({nodesSelectionActive:!1})},$=I=>{if(Array.isArray(r)&&(r!=null&&r.includes(2))){I.preventDefault();return}l==null||l(I)},O=c?I=>c(I):void 0,L=I=>{var U,B;const{resetSelectedElements:T,domNode:j}=x.getState();if(E.current=j==null?void 0:j.getBoundingClientRect(),!v||!e||I.button!==0||I.target!==S.current||!E.current)return;(B=(U=I.target)==null?void 0:U.setPointerCapture)==null||B.call(U,I.pointerId),D.current=!0,A.current=!1;const{x:R,y:P}=Cn(I.nativeEvent,E.current);T(),x.setState({userSelectionRect:{width:0,height:0,startX:R,startY:P,x:R,y:P}}),i==null||i(I)},_=I=>{const{userSelectionRect:T,transform:j,nodeLookup:R,edgeLookup:P,connectionLookup:U,triggerNodeChanges:B,triggerEdgeChanges:V,defaultEdgeOptions:G}=x.getState();if(!E.current||!T)return;A.current=!0;const{x:q,y:H}=Cn(I.nativeEvent,E.current),{startX:W,startY:K}=T,J={startX:W,startY:K,x:q<W?q:W,y:H<K?H:K,width:Math.abs(q-W),height:Math.abs(H-K)},re=k.current,Z=C.current;k.current=new Set(fd(R,J,j,n===Fi.Partial,!0).map(ee=>ee.id)),C.current=new Set;const ne=(G==null?void 0:G.selectable)??!0;for(const ee of k.current){const ce=U.get(ee);if(ce)for(const{edgeId:we}of ce.values()){const Me=P.get(we);Me&&(Me.selectable??ne)&&C.current.add(we)}}if(!Hp(re,k.current)){const ee=ho(R,k.current,!0);B(ee)}if(!Hp(Z,C.current)){const ee=ho(P,C.current);V(ee)}x.setState({userSelectionRect:J,userSelectionActive:!0,nodesSelectionActive:!1})},M=I=>{var j,R;if(I.button!==0||!D.current)return;(R=(j=I.target)==null?void 0:j.releasePointerCapture)==null||R.call(j,I.pointerId);const{userSelectionRect:T}=x.getState();!g&&T&&I.target===S.current&&(z==null||z(I)),x.setState({userSelectionActive:!1,userSelectionRect:null,nodesSelectionActive:k.current.size>0}),s==null||s(I),(t||o)&&(A.current=!1),D.current=!1},N=r===!0||Array.isArray(r)&&r.includes(0);return d.jsxs("div",{className:It(["react-flow__pane",{draggable:N,dragging:y,selection:e}]),onClick:w?void 0:Zl(z,S),onContextMenu:Zl($,S),onWheel:Zl(O,S),onPointerEnter:w?void 0:u,onPointerDown:w?L:f,onPointerMove:w?_:f,onPointerUp:w?M:void 0,onPointerLeave:p,ref:S,style:il,children:[h,d.jsx(dL,{})]})}function Hc({id:e,store:t,unselect:n=!1,nodeRef:r}){const{addSelectedNodes:o,unselectNodesAndEdges:i,multiSelectionActive:s,nodeLookup:a,onError:l}=t.getState(),c=a.get(e);if(!c){l==null||l("012",jn.error012(e));return}t.setState({nodesSelectionActive:!1}),c.selected?(n||c.selected&&s)&&(i({nodes:[c],edges:[]}),requestAnimationFrame(()=>{var u;return(u=r==null?void 0:r.current)==null?void 0:u.blur()})):o([e])}function Gy({nodeRef:e,disabled:t=!1,noDragClassName:n,handleSelector:r,nodeId:o,isSelectable:i,nodeClickDistance:s}){const a=xt(),[l,c]=m.useState(!1),u=m.useRef();return m.useEffect(()=>{u.current=eO({getStoreItems:()=>a.getState(),onNodeMouseDown:f=>{Hc({id:f,store:a,nodeRef:e})},onDragStart:()=>{c(!0)},onDragStop:()=>{c(!1)}})},[]),m.useEffect(()=>{var f,p;if(t)(f=u.current)==null||f.destroy();else if(e.current)return(p=u.current)==null||p.update({noDragClassName:n,handleSelector:r,domNode:e.current,isSelectable:i,nodeId:o,nodeClickDistance:s}),()=>{var h;(h=u.current)==null||h.destroy()}},[n,r,t,i,e,o]),l}const hL=e=>t=>t.selected&&(t.draggable||e&&typeof t.draggable>"u");function Yy(){const e=xt();return m.useCallback(n=>{const{nodeExtent:r,snapToGrid:o,snapGrid:i,nodesDraggable:s,onError:a,updateNodePositions:l,nodeLookup:c,nodeOrigin:u}=e.getState(),f=new Map,p=hL(s),h=o?i[0]:5,x=o?i[1]:5,g=n.direction.x*h*n.factor,v=n.direction.y*x*n.factor;for(const[,y]of c){if(!p(y))continue;let b={x:y.internals.positionAbsolute.x+g,y:y.internals.positionAbsolute.y+v};o&&(b=os(b,i));const{position:w,positionAbsolute:S}=hy({nodeId:y.id,nextPosition:b,nodeLookup:c,nodeExtent:r,nodeOrigin:u,onError:a});y.position=w,y.internals.positionAbsolute=S,f.set(y.id,y)}l(f)},[])}const wd=m.createContext(null),mL=wd.Provider;wd.Consumer;const qy=()=>m.useContext(wd),gL=e=>({connectOnClick:e.connectOnClick,noPanClassName:e.noPanClassName,rfId:e.rfId}),xL=(e,t,n)=>r=>{const{connectionClickStartHandle:o,connectionMode:i,connection:s}=r,{fromHandle:a,toHandle:l,isValid:c}=s,u=(l==null?void 0:l.nodeId)===e&&(l==null?void 0:l.id)===t&&(l==null?void 0:l.type)===n;return{connectingFrom:(a==null?void 0:a.nodeId)===e&&(a==null?void 0:a.id)===t&&(a==null?void 0:a.type)===n,connectingTo:u,clickConnecting:(o==null?void 0:o.nodeId)===e&&(o==null?void 0:o.id)===t&&(o==null?void 0:o.type)===n,isPossibleEndHandle:i===Ao.Strict?(a==null?void 0:a.type)!==n:e!==(a==null?void 0:a.nodeId)||t!==(a==null?void 0:a.id),connectionInProcess:!!a,clickConnectionInProcess:!!o,valid:u&&c}};function vL({type:e="source",position:t=ue.Top,isValidConnection:n,isConnectable:r=!0,isConnectableStart:o=!0,isConnectableEnd:i=!0,id:s,onConnect:a,children:l,className:c,onMouseDown:u,onTouchStart:f,...p},h){var M,N;const x=s||null,g=e==="target",v=xt(),y=qy(),{connectOnClick:b,noPanClassName:w,rfId:S}=Qe(gL,yt),{connectingFrom:E,connectingTo:k,clickConnecting:C,isPossibleEndHandle:A,connectionInProcess:D,clickConnectionInProcess:z,valid:$}=Qe(xL(y,x,e),yt);y||(N=(M=v.getState()).onError)==null||N.call(M,"010",jn.error010());const O=I=>{const{defaultEdgeOptions:T,onConnect:j,hasDefaultEdges:R}=v.getState(),P={...T,...I};if(R){const{edges:U,setEdges:B}=v.getState();B(FP(P,U))}j==null||j(P),a==null||a(P)},L=I=>{if(!y)return;const T=Ey(I.nativeEvent);if(o&&(T&&I.button===0||!T)){const j=v.getState();Bc.onPointerDown(I.nativeEvent,{handleDomNode:I.currentTarget,autoPanOnConnect:j.autoPanOnConnect,connectionMode:j.connectionMode,connectionRadius:j.connectionRadius,domNode:j.domNode,nodeLookup:j.nodeLookup,lib:j.lib,isTarget:g,handleId:x,nodeId:y,flowId:j.rfId,panBy:j.panBy,cancelConnection:j.cancelConnection,onConnectStart:j.onConnectStart,onConnectEnd:j.onConnectEnd,updateConnection:j.updateConnection,onConnect:O,isValidConnection:n||j.isValidConnection,getTransform:()=>v.getState().transform,getFromHandle:()=>v.getState().connection.fromHandle,autoPanSpeed:j.autoPanSpeed,dragThreshold:j.connectionDragThreshold})}T?u==null||u(I):f==null||f(I)},_=I=>{const{onClickConnectStart:T,onClickConnectEnd:j,connectionClickStartHandle:R,connectionMode:P,isValidConnection:U,lib:B,rfId:V,nodeLookup:G,connection:q}=v.getState();if(!y||!R&&!o)return;if(!R){T==null||T(I.nativeEvent,{nodeId:y,handleId:x,handleType:e}),v.setState({connectionClickStartHandle:{nodeId:y,type:e,id:x}});return}const H=wy(I.target),W=n||U,{connection:K,isValid:J}=Bc.isValid(I.nativeEvent,{handle:{nodeId:y,id:x,type:e},connectionMode:P,fromNodeId:R.nodeId,fromHandleId:R.id||null,fromType:R.type,isValidConnection:W,flowId:V,doc:H,lib:B,nodeLookup:G});J&&K&&O(K);const re=structuredClone(q);delete re.inProgress,re.toPosition=re.toHandle?re.toHandle.position:null,j==null||j(I,re),v.setState({connectionClickStartHandle:null})};return d.jsx("div",{"data-handleid":x,"data-nodeid":y,"data-handlepos":t,"data-id":`${S}-${y}-${x}-${e}`,className:It(["react-flow__handle",`react-flow__handle-${t}`,"nodrag",w,c,{source:!g,target:g,connectable:r,connectablestart:o,connectableend:i,clickconnecting:C,connectingfrom:E,connectingto:k,valid:$,connectionindicator:r&&(!D||A)&&(D||z?i:o)}]),onMouseDown:L,onTouchStart:L,onClick:b?_:void 0,ref:h,...p,children:l})}const _t=m.memo(Vy(vL));function yL({data:e,isConnectable:t,sourcePosition:n=ue.Bottom}){return d.jsxs(d.Fragment,{children:[e==null?void 0:e.label,d.jsx(_t,{type:"source",position:n,isConnectable:t})]})}function wL({data:e,isConnectable:t,targetPosition:n=ue.Top,sourcePosition:r=ue.Bottom}){return d.jsxs(d.Fragment,{children:[d.jsx(_t,{type:"target",position:n,isConnectable:t}),e==null?void 0:e.label,d.jsx(_t,{type:"source",position:r,isConnectable:t})]})}function bL(){return null}function EL({data:e,isConnectable:t,targetPosition:n=ue.Top}){return d.jsxs(d.Fragment,{children:[d.jsx(_t,{type:"target",position:n,isConnectable:t}),e==null?void 0:e.label]})}const ba={ArrowUp:{x:0,y:-1},ArrowDown:{x:0,y:1},ArrowLeft:{x:-1,y:0},ArrowRight:{x:1,y:0}},mh={input:yL,default:wL,output:EL,group:bL};function SL(e){var t,n,r,o;return e.internals.handleBounds===void 0?{width:e.width??e.initialWidth??((t=e.style)==null?void 0:t.width),height:e.height??e.initialHeight??((n=e.style)==null?void 0:n.height)}:{width:e.width??((r=e.style)==null?void 0:r.width),height:e.height??((o=e.style)==null?void 0:o.height)}}const kL=e=>{const{width:t,height:n,x:r,y:o}=rs(e.nodeLookup,{filter:i=>!!i.selected});return{width:fn(t)?t:null,height:fn(n)?n:null,userSelectionActive:e.userSelectionActive,transformString:`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]}) translate(${r}px,${o}px)`}};function CL({onSelectionContextMenu:e,noPanClassName:t,disableKeyboardA11y:n}){const r=xt(),{width:o,height:i,transformString:s,userSelectionActive:a}=Qe(kL,yt),l=Yy(),c=m.useRef(null);if(m.useEffect(()=>{var p;n||(p=c.current)==null||p.focus({preventScroll:!0})},[n]),Gy({nodeRef:c}),a||!o||!i)return null;const u=e?p=>{const h=r.getState().nodes.filter(x=>x.selected);e(p,h)}:void 0,f=p=>{Object.prototype.hasOwnProperty.call(ba,p.key)&&(p.preventDefault(),l({direction:ba[p.key],factor:p.shiftKey?4:1}))};return d.jsx("div",{className:It(["react-flow__nodesselection","react-flow__container",t]),style:{transform:s},children:d.jsx("div",{ref:c,className:"react-flow__nodesselection-rect",onContextMenu:u,tabIndex:n?void 0:-1,onKeyDown:n?void 0:f,style:{width:o,height:i}})})}const gh=typeof window<"u"?window:void 0,_L=e=>({nodesSelectionActive:e.nodesSelectionActive,userSelectionActive:e.userSelectionActive});function Ky({children:e,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:r,onPaneMouseLeave:o,onPaneContextMenu:i,onPaneScroll:s,paneClickDistance:a,deleteKeyCode:l,selectionKeyCode:c,selectionOnDrag:u,selectionMode:f,onSelectionStart:p,onSelectionEnd:h,multiSelectionKeyCode:x,panActivationKeyCode:g,zoomActivationKeyCode:v,elementsSelectable:y,zoomOnScroll:b,zoomOnPinch:w,panOnScroll:S,panOnScrollSpeed:E,panOnScrollMode:k,zoomOnDoubleClick:C,panOnDrag:A,defaultViewport:D,translateExtent:z,minZoom:$,maxZoom:O,preventScrolling:L,onSelectionContextMenu:_,noWheelClassName:M,noPanClassName:N,disableKeyboardA11y:I,onViewportChange:T,isControlledViewport:j}){const{nodesSelectionActive:R,userSelectionActive:P}=Qe(_L),U=Wi(c,{target:gh}),B=Wi(g,{target:gh}),V=B||A,G=B||S,q=u&&V!==!0,H=U||P||q;return sL({deleteKeyCode:l,multiSelectionKeyCode:x}),d.jsx(cL,{onPaneContextMenu:i,elementsSelectable:y,zoomOnScroll:b,zoomOnPinch:w,panOnScroll:G,panOnScrollSpeed:E,panOnScrollMode:k,zoomOnDoubleClick:C,panOnDrag:!U&&V,defaultViewport:D,translateExtent:z,minZoom:$,maxZoom:O,zoomActivationKeyCode:v,preventScrolling:L,noWheelClassName:M,noPanClassName:N,onViewportChange:T,isControlledViewport:j,paneClickDistance:a,children:d.jsxs(pL,{onSelectionStart:p,onSelectionEnd:h,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:r,onPaneMouseLeave:o,onPaneContextMenu:i,onPaneScroll:s,panOnDrag:V,isSelecting:!!H,selectionMode:f,selectionKeyPressed:U,selectionOnDrag:q,children:[e,R&&d.jsx(CL,{onSelectionContextMenu:_,noPanClassName:N,disableKeyboardA11y:I})]})})}Ky.displayName="FlowRenderer";const TL=m.memo(Ky),AL=e=>t=>e?fd(t.nodeLookup,{x:0,y:0,width:t.width,height:t.height},t.transform,!0).map(n=>n.id):Array.from(t.nodeLookup.keys());function NL(e){return Qe(m.useCallback(AL(e),[e]),yt)}const IL=e=>e.updateNodeInternals;function jL(){const e=Qe(IL),[t]=m.useState(()=>typeof ResizeObserver>"u"?null:new ResizeObserver(n=>{const r=new Map;n.forEach(o=>{const i=o.target.getAttribute("data-id");r.set(i,{id:i,nodeElement:o.target,force:!0})}),e(r)}));return m.useEffect(()=>()=>{t==null||t.disconnect()},[t]),t}function ML({node:e,nodeType:t,hasDimensions:n,resizeObserver:r}){const o=xt(),i=m.useRef(null),s=m.useRef(null),a=m.useRef(e.sourcePosition),l=m.useRef(e.targetPosition),c=m.useRef(t),u=n&&!!e.internals.handleBounds;return m.useEffect(()=>{i.current&&!e.hidden&&(!u||s.current!==i.current)&&(s.current&&(r==null||r.unobserve(s.current)),r==null||r.observe(i.current),s.current=i.current)},[u,e.hidden]),m.useEffect(()=>()=>{s.current&&(r==null||r.unobserve(s.current),s.current=null)},[]),m.useEffect(()=>{if(i.current){const f=c.current!==t,p=a.current!==e.sourcePosition,h=l.current!==e.targetPosition;(f||p||h)&&(c.current=t,a.current=e.sourcePosition,l.current=e.targetPosition,o.getState().updateNodeInternals(new Map([[e.id,{id:e.id,nodeElement:i.current,force:!0}]])))}},[e.id,t,e.sourcePosition,e.targetPosition]),i}function RL({id:e,onClick:t,onMouseEnter:n,onMouseMove:r,onMouseLeave:o,onContextMenu:i,onDoubleClick:s,nodesDraggable:a,elementsSelectable:l,nodesConnectable:c,nodesFocusable:u,resizeObserver:f,noDragClassName:p,noPanClassName:h,disableKeyboardA11y:x,rfId:g,nodeTypes:v,nodeClickDistance:y,onError:b}){const{node:w,internals:S,isParent:E}=Qe(W=>{const K=W.nodeLookup.get(e),J=W.parentLookup.has(e);return{node:K,internals:K.internals,isParent:J}},yt);let k=w.type||"default",C=(v==null?void 0:v[k])||mh[k];C===void 0&&(b==null||b("003",jn.error003(k)),k="default",C=(v==null?void 0:v.default)||mh.default);const A=!!(w.draggable||a&&typeof w.draggable>"u"),D=!!(w.selectable||l&&typeof w.selectable>"u"),z=!!(w.connectable||c&&typeof w.connectable>"u"),$=!!(w.focusable||u&&typeof w.focusable>"u"),O=xt(),L=vy(w),_=ML({node:w,nodeType:k,hasDimensions:L,resizeObserver:f}),M=Gy({nodeRef:_,disabled:w.hidden||!A,noDragClassName:p,handleSelector:w.dragHandle,nodeId:e,isSelectable:D,nodeClickDistance:y}),N=Yy();if(w.hidden)return null;const I=Kn(w),T=SL(w),j=D||A||t||n||r||o,R=n?W=>n(W,{...S.userNode}):void 0,P=r?W=>r(W,{...S.userNode}):void 0,U=o?W=>o(W,{...S.userNode}):void 0,B=i?W=>i(W,{...S.userNode}):void 0,V=s?W=>s(W,{...S.userNode}):void 0,G=W=>{const{selectNodesOnDrag:K,nodeDragThreshold:J}=O.getState();D&&(!K||!A||J>0)&&Hc({id:e,store:O,nodeRef:_}),t&&t(W,{...S.userNode})},q=W=>{if(!(by(W.nativeEvent)||x)){if(cy.includes(W.key)&&D){const K=W.key==="Escape";Hc({id:e,store:O,unselect:K,nodeRef:_})}else if(A&&w.selected&&Object.prototype.hasOwnProperty.call(ba,W.key)){W.preventDefault();const{ariaLabelConfig:K}=O.getState();O.setState({ariaLiveMessage:K["node.a11yDescription.ariaLiveMessage"]({direction:W.key.replace("Arrow","").toLowerCase(),x:~~S.positionAbsolute.x,y:~~S.positionAbsolute.y})}),N({direction:ba[W.key],factor:W.shiftKey?4:1})}}},H=()=>{var ee;if(x||!((ee=_.current)!=null&&ee.matches(":focus-visible")))return;const{transform:W,width:K,height:J,autoPanOnNodeFocus:re,setCenter:Z}=O.getState();if(!re)return;fd(new Map([[e,w]]),{x:0,y:0,width:K,height:J},W,!0).length>0||Z(w.position.x+I.width/2,w.position.y+I.height/2,{zoom:W[2]})};return d.jsx("div",{className:It(["react-flow__node",`react-flow__node-${k}`,{[h]:A},w.className,{selected:w.selected,selectable:D,parent:E,draggable:A,dragging:M}]),ref:_,style:{zIndex:S.z,transform:`translate(${S.positionAbsolute.x}px,${S.positionAbsolute.y}px)`,pointerEvents:j?"all":"none",visibility:L?"visible":"hidden",...w.style,...T},"data-id":e,"data-testid":`rf__node-${e}`,onMouseEnter:R,onMouseMove:P,onMouseLeave:U,onContextMenu:B,onClick:G,onDoubleClick:V,onKeyDown:$?q:void 0,tabIndex:$?0:void 0,onFocus:$?H:void 0,role:w.ariaRole??($?"group":void 0),"aria-roledescription":"node","aria-describedby":x?void 0:`${$y}-${g}`,"aria-label":w.ariaLabel,...w.domAttributes,children:d.jsx(mL,{value:e,children:d.jsx(C,{id:e,data:w.data,type:k,positionAbsoluteX:S.positionAbsolute.x,positionAbsoluteY:S.positionAbsolute.y,selected:w.selected??!1,selectable:D,draggable:A,deletable:w.deletable??!0,isConnectable:z,sourcePosition:w.sourcePosition,targetPosition:w.targetPosition,dragging:M,dragHandle:w.dragHandle,zIndex:S.z,parentId:w.parentId,...I})})})}const DL=e=>({nodesDraggable:e.nodesDraggable,nodesConnectable:e.nodesConnectable,nodesFocusable:e.nodesFocusable,elementsSelectable:e.elementsSelectable,onError:e.onError});function Xy(e){const{nodesDraggable:t,nodesConnectable:n,nodesFocusable:r,elementsSelectable:o,onError:i}=Qe(DL,yt),s=NL(e.onlyRenderVisibleElements),a=jL();return d.jsx("div",{className:"react-flow__nodes",style:il,children:s.map(l=>d.jsx(RL,{id:l,nodeTypes:e.nodeTypes,nodeExtent:e.nodeExtent,onClick:e.onNodeClick,onMouseEnter:e.onNodeMouseEnter,onMouseMove:e.onNodeMouseMove,onMouseLeave:e.onNodeMouseLeave,onContextMenu:e.onNodeContextMenu,onDoubleClick:e.onNodeDoubleClick,noDragClassName:e.noDragClassName,noPanClassName:e.noPanClassName,rfId:e.rfId,disableKeyboardA11y:e.disableKeyboardA11y,resizeObserver:a,nodesDraggable:t,nodesConnectable:n,nodesFocusable:r,elementsSelectable:o,nodeClickDistance:e.nodeClickDistance,onError:i},l))})}Xy.displayName="NodeRenderer";const PL=m.memo(Xy);function OL(e){return Qe(m.useCallback(n=>{if(!e)return n.edges.map(o=>o.id);const r=[];if(n.width&&n.height)for(const o of n.edges){const i=n.nodeLookup.get(o.source),s=n.nodeLookup.get(o.target);i&&s&&LP({sourceNode:i,targetNode:s,width:n.width,height:n.height,transform:n.transform})&&r.push(o.id)}return r},[e]),yt)}const LL=({color:e="none",strokeWidth:t=1})=>{const n={strokeWidth:t,...e&&{stroke:e}};return d.jsx("polyline",{className:"arrow",style:n,strokeLinecap:"round",fill:"none",strokeLinejoin:"round",points:"-5,-4 0,0 -5,4"})},$L=({color:e="none",strokeWidth:t=1})=>{const n={strokeWidth:t,...e&&{stroke:e,fill:e}};return d.jsx("polyline",{className:"arrowclosed",style:n,strokeLinecap:"round",strokeLinejoin:"round",points:"-5,-4 0,0 -5,4 -5,-4"})},xh={[Bi.Arrow]:LL,[Bi.ArrowClosed]:$L};function zL(e){const t=xt();return m.useMemo(()=>{var o,i;return Object.prototype.hasOwnProperty.call(xh,e)?xh[e]:((i=(o=t.getState()).onError)==null||i.call(o,"009",jn.error009(e)),null)},[e])}const FL=({id:e,type:t,color:n,width:r=12.5,height:o=12.5,markerUnits:i="strokeWidth",strokeWidth:s,orient:a="auto-start-reverse"})=>{const l=zL(t);return l?d.jsx("marker",{className:"react-flow__arrowhead",id:e,markerWidth:`${r}`,markerHeight:`${o}`,viewBox:"-10 -10 20 20",markerUnits:i,orient:a,refX:"0",refY:"0",children:d.jsx(l,{color:n,strokeWidth:s})}):null},Zy=({defaultColor:e,rfId:t})=>{const n=Qe(i=>i.edges),r=Qe(i=>i.defaultEdgeOptions),o=m.useMemo(()=>WP(n,{id:t,defaultColor:e,defaultMarkerStart:r==null?void 0:r.markerStart,defaultMarkerEnd:r==null?void 0:r.markerEnd}),[n,r,t,e]);return o.length?d.jsx("svg",{className:"react-flow__marker","aria-hidden":"true",children:d.jsx("defs",{children:o.map(i=>d.jsx(FL,{id:i.id,type:i.type,color:i.color,width:i.width,height:i.height,markerUnits:i.markerUnits,strokeWidth:i.strokeWidth,orient:i.orient},i.id))})}):null};Zy.displayName="MarkerDefinitions";var BL=m.memo(Zy);function Qy({x:e,y:t,label:n,labelStyle:r,labelShowBg:o=!0,labelBgStyle:i,labelBgPadding:s=[2,4],labelBgBorderRadius:a=2,children:l,className:c,...u}){const[f,p]=m.useState({x:1,y:0,width:0,height:0}),h=It(["react-flow__edge-textwrapper",c]),x=m.useRef(null);return m.useEffect(()=>{if(x.current){const g=x.current.getBBox();p({x:g.x,y:g.y,width:g.width,height:g.height})}},[n]),n?d.jsxs("g",{transform:`translate(${e-f.width/2} ${t-f.height/2})`,className:h,visibility:f.width?"visible":"hidden",...u,children:[o&&d.jsx("rect",{width:f.width+2*s[0],x:-s[0],y:-s[1],height:f.height+2*s[1],className:"react-flow__edge-textbg",style:i,rx:a,ry:a}),d.jsx("text",{className:"react-flow__edge-text",y:f.height/2,dy:"0.3em",ref:x,style:r,children:n}),l]}):null}Qy.displayName="EdgeText";const HL=m.memo(Qy);function sl({path:e,labelX:t,labelY:n,label:r,labelStyle:o,labelShowBg:i,labelBgStyle:s,labelBgPadding:a,labelBgBorderRadius:l,interactionWidth:c=20,...u}){return d.jsxs(d.Fragment,{children:[d.jsx("path",{...u,d:e,fill:"none",className:It(["react-flow__edge-path",u.className])}),c?d.jsx("path",{d:e,fill:"none",strokeOpacity:0,strokeWidth:c,className:"react-flow__edge-interaction"}):null,r&&fn(t)&&fn(n)?d.jsx(HL,{x:t,y:n,label:r,labelStyle:o,labelShowBg:i,labelBgStyle:s,labelBgPadding:a,labelBgBorderRadius:l}):null]})}function vh({pos:e,x1:t,y1:n,x2:r,y2:o}){return e===ue.Left||e===ue.Right?[.5*(t+r),n]:[t,.5*(n+o)]}function Jy({sourceX:e,sourceY:t,sourcePosition:n=ue.Bottom,targetX:r,targetY:o,targetPosition:i=ue.Top}){const[s,a]=vh({pos:n,x1:e,y1:t,x2:r,y2:o}),[l,c]=vh({pos:i,x1:r,y1:o,x2:e,y2:t}),[u,f,p,h]=Sy({sourceX:e,sourceY:t,targetX:r,targetY:o,sourceControlX:s,sourceControlY:a,targetControlX:l,targetControlY:c});return[`M${e},${t} C${s},${a} ${l},${c} ${r},${o}`,u,f,p,h]}function ew(e){return m.memo(({id:t,sourceX:n,sourceY:r,targetX:o,targetY:i,sourcePosition:s,targetPosition:a,label:l,labelStyle:c,labelShowBg:u,labelBgStyle:f,labelBgPadding:p,labelBgBorderRadius:h,style:x,markerEnd:g,markerStart:v,interactionWidth:y})=>{const[b,w,S]=Jy({sourceX:n,sourceY:r,sourcePosition:s,targetX:o,targetY:i,targetPosition:a}),E=e.isInternal?void 0:t;return d.jsx(sl,{id:E,path:b,labelX:w,labelY:S,label:l,labelStyle:c,labelShowBg:u,labelBgStyle:f,labelBgPadding:p,labelBgBorderRadius:h,style:x,markerEnd:g,markerStart:v,interactionWidth:y})})}const UL=ew({isInternal:!1}),tw=ew({isInternal:!0});UL.displayName="SimpleBezierEdge";tw.displayName="SimpleBezierEdgeInternal";function nw(e){return m.memo(({id:t,sourceX:n,sourceY:r,targetX:o,targetY:i,label:s,labelStyle:a,labelShowBg:l,labelBgStyle:c,labelBgPadding:u,labelBgBorderRadius:f,style:p,sourcePosition:h=ue.Bottom,targetPosition:x=ue.Top,markerEnd:g,markerStart:v,pathOptions:y,interactionWidth:b})=>{const[w,S,E]=$c({sourceX:n,sourceY:r,sourcePosition:h,targetX:o,targetY:i,targetPosition:x,borderRadius:y==null?void 0:y.borderRadius,offset:y==null?void 0:y.offset,stepPosition:y==null?void 0:y.stepPosition}),k=e.isInternal?void 0:t;return d.jsx(sl,{id:k,path:w,labelX:S,labelY:E,label:s,labelStyle:a,labelShowBg:l,labelBgStyle:c,labelBgPadding:u,labelBgBorderRadius:f,style:p,markerEnd:g,markerStart:v,interactionWidth:b})})}const rw=nw({isInternal:!1}),ow=nw({isInternal:!0});rw.displayName="SmoothStepEdge";ow.displayName="SmoothStepEdgeInternal";function iw(e){return m.memo(({id:t,...n})=>{var o;const r=e.isInternal?void 0:t;return d.jsx(rw,{...n,id:r,pathOptions:m.useMemo(()=>{var i;return{borderRadius:0,offset:(i=n.pathOptions)==null?void 0:i.offset}},[(o=n.pathOptions)==null?void 0:o.offset])})})}const VL=iw({isInternal:!1}),sw=iw({isInternal:!0});VL.displayName="StepEdge";sw.displayName="StepEdgeInternal";function aw(e){return m.memo(({id:t,sourceX:n,sourceY:r,targetX:o,targetY:i,label:s,labelStyle:a,labelShowBg:l,labelBgStyle:c,labelBgPadding:u,labelBgBorderRadius:f,style:p,markerEnd:h,markerStart:x,interactionWidth:g})=>{const[v,y,b]=Cy({sourceX:n,sourceY:r,targetX:o,targetY:i}),w=e.isInternal?void 0:t;return d.jsx(sl,{id:w,path:v,labelX:y,labelY:b,label:s,labelStyle:a,labelShowBg:l,labelBgStyle:c,labelBgPadding:u,labelBgBorderRadius:f,style:p,markerEnd:h,markerStart:x,interactionWidth:g})})}const WL=aw({isInternal:!1}),lw=aw({isInternal:!0});WL.displayName="StraightEdge";lw.displayName="StraightEdgeInternal";function cw(e){return m.memo(({id:t,sourceX:n,sourceY:r,targetX:o,targetY:i,sourcePosition:s=ue.Bottom,targetPosition:a=ue.Top,label:l,labelStyle:c,labelShowBg:u,labelBgStyle:f,labelBgPadding:p,labelBgBorderRadius:h,style:x,markerEnd:g,markerStart:v,pathOptions:y,interactionWidth:b})=>{const[w,S,E]=md({sourceX:n,sourceY:r,sourcePosition:s,targetX:o,targetY:i,targetPosition:a,curvature:y==null?void 0:y.curvature}),k=e.isInternal?void 0:t;return d.jsx(sl,{id:k,path:w,labelX:S,labelY:E,label:l,labelStyle:c,labelShowBg:u,labelBgStyle:f,labelBgPadding:p,labelBgBorderRadius:h,style:x,markerEnd:g,markerStart:v,interactionWidth:b})})}const GL=cw({isInternal:!1}),uw=cw({isInternal:!0});GL.displayName="BezierEdge";uw.displayName="BezierEdgeInternal";const yh={default:uw,straight:lw,step:sw,smoothstep:ow,simplebezier:tw},wh={sourceX:null,sourceY:null,targetX:null,targetY:null,sourcePosition:null,targetPosition:null},YL=(e,t,n)=>n===ue.Left?e-t:n===ue.Right?e+t:e,qL=(e,t,n)=>n===ue.Top?e-t:n===ue.Bottom?e+t:e,bh="react-flow__edgeupdater";function Eh({position:e,centerX:t,centerY:n,radius:r=10,onMouseDown:o,onMouseEnter:i,onMouseOut:s,type:a}){return d.jsx("circle",{onMouseDown:o,onMouseEnter:i,onMouseOut:s,className:It([bh,`${bh}-${a}`]),cx:YL(t,r,e),cy:qL(n,r,e),r,stroke:"transparent",fill:"transparent"})}function KL({isReconnectable:e,reconnectRadius:t,edge:n,sourceX:r,sourceY:o,targetX:i,targetY:s,sourcePosition:a,targetPosition:l,onReconnect:c,onReconnectStart:u,onReconnectEnd:f,setReconnecting:p,setUpdateHover:h}){const x=xt(),g=(S,E)=>{if(S.button!==0)return;const{autoPanOnConnect:k,domNode:C,isValidConnection:A,connectionMode:D,connectionRadius:z,lib:$,onConnectStart:O,onConnectEnd:L,cancelConnection:_,nodeLookup:M,rfId:N,panBy:I,updateConnection:T}=x.getState(),j=E.type==="target",R=(B,V)=>{p(!1),f==null||f(B,n,E.type,V)},P=B=>c==null?void 0:c(n,B),U=(B,V)=>{p(!0),u==null||u(S,n,E.type),O==null||O(B,V)};Bc.onPointerDown(S.nativeEvent,{autoPanOnConnect:k,connectionMode:D,connectionRadius:z,domNode:C,handleId:E.id,nodeId:E.nodeId,nodeLookup:M,isTarget:j,edgeUpdaterType:E.type,lib:$,flowId:N,cancelConnection:_,panBy:I,isValidConnection:A,onConnect:P,onConnectStart:U,onConnectEnd:L,onReconnectEnd:R,updateConnection:T,getTransform:()=>x.getState().transform,getFromHandle:()=>x.getState().connection.fromHandle,dragThreshold:x.getState().connectionDragThreshold,handleDomNode:S.currentTarget})},v=S=>g(S,{nodeId:n.target,id:n.targetHandle??null,type:"target"}),y=S=>g(S,{nodeId:n.source,id:n.sourceHandle??null,type:"source"}),b=()=>h(!0),w=()=>h(!1);return d.jsxs(d.Fragment,{children:[(e===!0||e==="source")&&d.jsx(Eh,{position:a,centerX:r,centerY:o,radius:t,onMouseDown:v,onMouseEnter:b,onMouseOut:w,type:"source"}),(e===!0||e==="target")&&d.jsx(Eh,{position:l,centerX:i,centerY:s,radius:t,onMouseDown:y,onMouseEnter:b,onMouseOut:w,type:"target"})]})}function XL({id:e,edgesFocusable:t,edgesReconnectable:n,elementsSelectable:r,onClick:o,onDoubleClick:i,onContextMenu:s,onMouseEnter:a,onMouseMove:l,onMouseLeave:c,reconnectRadius:u,onReconnect:f,onReconnectStart:p,onReconnectEnd:h,rfId:x,edgeTypes:g,noPanClassName:v,onError:y,disableKeyboardA11y:b}){let w=Qe(Z=>Z.edgeLookup.get(e));const S=Qe(Z=>Z.defaultEdgeOptions);w=S?{...S,...w}:w;let E=w.type||"default",k=(g==null?void 0:g[E])||yh[E];k===void 0&&(y==null||y("011",jn.error011(E)),E="default",k=(g==null?void 0:g.default)||yh.default);const C=!!(w.focusable||t&&typeof w.focusable>"u"),A=typeof f<"u"&&(w.reconnectable||n&&typeof w.reconnectable>"u"),D=!!(w.selectable||r&&typeof w.selectable>"u"),z=m.useRef(null),[$,O]=m.useState(!1),[L,_]=m.useState(!1),M=xt(),{zIndex:N,sourceX:I,sourceY:T,targetX:j,targetY:R,sourcePosition:P,targetPosition:U}=Qe(m.useCallback(Z=>{const ne=Z.nodeLookup.get(w.source),ee=Z.nodeLookup.get(w.target);if(!ne||!ee)return{zIndex:w.zIndex,...wh};const ce=VP({id:e,sourceNode:ne,targetNode:ee,sourceHandle:w.sourceHandle||null,targetHandle:w.targetHandle||null,connectionMode:Z.connectionMode,onError:y});return{zIndex:OP({selected:w.selected,zIndex:w.zIndex,sourceNode:ne,targetNode:ee,elevateOnSelect:Z.elevateEdgesOnSelect}),...ce||wh}},[w.source,w.target,w.sourceHandle,w.targetHandle,w.selected,w.zIndex]),yt),B=m.useMemo(()=>w.markerStart?`url('#${zc(w.markerStart,x)}')`:void 0,[w.markerStart,x]),V=m.useMemo(()=>w.markerEnd?`url('#${zc(w.markerEnd,x)}')`:void 0,[w.markerEnd,x]);if(w.hidden||I===null||T===null||j===null||R===null)return null;const G=Z=>{var we;const{addSelectedEdges:ne,unselectNodesAndEdges:ee,multiSelectionActive:ce}=M.getState();D&&(M.setState({nodesSelectionActive:!1}),w.selected&&ce?(ee({nodes:[],edges:[w]}),(we=z.current)==null||we.blur()):ne([e])),o&&o(Z,w)},q=i?Z=>{i(Z,{...w})}:void 0,H=s?Z=>{s(Z,{...w})}:void 0,W=a?Z=>{a(Z,{...w})}:void 0,K=l?Z=>{l(Z,{...w})}:void 0,J=c?Z=>{c(Z,{...w})}:void 0,re=Z=>{var ne;if(!b&&cy.includes(Z.key)&&D){const{unselectNodesAndEdges:ee,addSelectedEdges:ce}=M.getState();Z.key==="Escape"?((ne=z.current)==null||ne.blur(),ee({edges:[w]})):ce([e])}};return d.jsx("svg",{style:{zIndex:N},children:d.jsxs("g",{className:It(["react-flow__edge",`react-flow__edge-${E}`,w.className,v,{selected:w.selected,animated:w.animated,inactive:!D&&!o,updating:$,selectable:D}]),onClick:G,onDoubleClick:q,onContextMenu:H,onMouseEnter:W,onMouseMove:K,onMouseLeave:J,onKeyDown:C?re:void 0,tabIndex:C?0:void 0,role:w.ariaRole??(C?"group":"img"),"aria-roledescription":"edge","data-id":e,"data-testid":`rf__edge-${e}`,"aria-label":w.ariaLabel===null?void 0:w.ariaLabel||`Edge from ${w.source} to ${w.target}`,"aria-describedby":C?`${zy}-${x}`:void 0,ref:z,...w.domAttributes,children:[!L&&d.jsx(k,{id:e,source:w.source,target:w.target,type:w.type,selected:w.selected,animated:w.animated,selectable:D,deletable:w.deletable??!0,label:w.label,labelStyle:w.labelStyle,labelShowBg:w.labelShowBg,labelBgStyle:w.labelBgStyle,labelBgPadding:w.labelBgPadding,labelBgBorderRadius:w.labelBgBorderRadius,sourceX:I,sourceY:T,targetX:j,targetY:R,sourcePosition:P,targetPosition:U,data:w.data,style:w.style,sourceHandleId:w.sourceHandle,targetHandleId:w.targetHandle,markerStart:B,markerEnd:V,pathOptions:"pathOptions"in w?w.pathOptions:void 0,interactionWidth:w.interactionWidth}),A&&d.jsx(KL,{edge:w,isReconnectable:A,reconnectRadius:u,onReconnect:f,onReconnectStart:p,onReconnectEnd:h,sourceX:I,sourceY:T,targetX:j,targetY:R,sourcePosition:P,targetPosition:U,setUpdateHover:O,setReconnecting:_})]})})}const ZL=e=>({edgesFocusable:e.edgesFocusable,edgesReconnectable:e.edgesReconnectable,elementsSelectable:e.elementsSelectable,connectionMode:e.connectionMode,onError:e.onError});function dw({defaultMarkerColor:e,onlyRenderVisibleElements:t,rfId:n,edgeTypes:r,noPanClassName:o,onReconnect:i,onEdgeContextMenu:s,onEdgeMouseEnter:a,onEdgeMouseMove:l,onEdgeMouseLeave:c,onEdgeClick:u,reconnectRadius:f,onEdgeDoubleClick:p,onReconnectStart:h,onReconnectEnd:x,disableKeyboardA11y:g}){const{edgesFocusable:v,edgesReconnectable:y,elementsSelectable:b,onError:w}=Qe(ZL,yt),S=OL(t);return d.jsxs("div",{className:"react-flow__edges",children:[d.jsx(BL,{defaultColor:e,rfId:n}),S.map(E=>d.jsx(XL,{id:E,edgesFocusable:v,edgesReconnectable:y,elementsSelectable:b,noPanClassName:o,onReconnect:i,onContextMenu:s,onMouseEnter:a,onMouseMove:l,onMouseLeave:c,onClick:u,reconnectRadius:f,onDoubleClick:p,onReconnectStart:h,onReconnectEnd:x,rfId:n,onError:w,edgeTypes:r,disableKeyboardA11y:g},E))]})}dw.displayName="EdgeRenderer";const QL=m.memo(dw),JL=e=>`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]})`;function e3({children:e}){const t=Qe(JL);return d.jsx("div",{className:"react-flow__viewport xyflow__viewport react-flow__container",style:{transform:t},children:e})}function t3(e){const t=ol(),n=m.useRef(!1);m.useEffect(()=>{!n.current&&t.viewportInitialized&&e&&(setTimeout(()=>e(t),1),n.current=!0)},[e,t.viewportInitialized])}const n3=e=>{var t;return(t=e.panZoom)==null?void 0:t.syncViewport};function r3(e){const t=Qe(n3),n=xt();return m.useEffect(()=>{e&&(t==null||t(e),n.setState({transform:[e.x,e.y,e.zoom]}))},[e,t]),null}function o3(e){return e.connection.inProgress?{...e.connection,to:is(e.connection.to,e.transform)}:{...e.connection}}function i3(e){return o3}function s3(e){const t=i3();return Qe(t,yt)}const a3=e=>({nodesConnectable:e.nodesConnectable,isValid:e.connection.isValid,inProgress:e.connection.inProgress,width:e.width,height:e.height});function l3({containerStyle:e,style:t,type:n,component:r}){const{nodesConnectable:o,width:i,height:s,isValid:a,inProgress:l}=Qe(a3,yt);return!(i&&o&&l)?null:d.jsx("svg",{style:e,width:i,height:s,className:"react-flow__connectionline react-flow__container",children:d.jsx("g",{className:It(["react-flow__connection",fy(a)]),children:d.jsx(fw,{style:t,type:n,CustomComponent:r,isValid:a})})})}const fw=({style:e,type:t=or.Bezier,CustomComponent:n,isValid:r})=>{const{inProgress:o,from:i,fromNode:s,fromHandle:a,fromPosition:l,to:c,toNode:u,toHandle:f,toPosition:p}=s3();if(!o)return;if(n)return d.jsx(n,{connectionLineType:t,connectionLineStyle:e,fromNode:s,fromHandle:a,fromX:i.x,fromY:i.y,toX:c.x,toY:c.y,fromPosition:l,toPosition:p,connectionStatus:fy(r),toNode:u,toHandle:f});let h="";const x={sourceX:i.x,sourceY:i.y,sourcePosition:l,targetX:c.x,targetY:c.y,targetPosition:p};switch(t){case or.Bezier:[h]=md(x);break;case or.SimpleBezier:[h]=Jy(x);break;case or.Step:[h]=$c({...x,borderRadius:0});break;case or.SmoothStep:[h]=$c(x);break;default:[h]=Cy(x)}return d.jsx("path",{d:h,fill:"none",className:"react-flow__connection-path",style:e})};fw.displayName="ConnectionLine";const c3={};function Sh(e=c3){m.useRef(e),xt(),m.useEffect(()=>{},[e])}function u3(){xt(),m.useRef(!1),m.useEffect(()=>{},[])}function pw({nodeTypes:e,edgeTypes:t,onInit:n,onNodeClick:r,onEdgeClick:o,onNodeDoubleClick:i,onEdgeDoubleClick:s,onNodeMouseEnter:a,onNodeMouseMove:l,onNodeMouseLeave:c,onNodeContextMenu:u,onSelectionContextMenu:f,onSelectionStart:p,onSelectionEnd:h,connectionLineType:x,connectionLineStyle:g,connectionLineComponent:v,connectionLineContainerStyle:y,selectionKeyCode:b,selectionOnDrag:w,selectionMode:S,multiSelectionKeyCode:E,panActivationKeyCode:k,zoomActivationKeyCode:C,deleteKeyCode:A,onlyRenderVisibleElements:D,elementsSelectable:z,defaultViewport:$,translateExtent:O,minZoom:L,maxZoom:_,preventScrolling:M,defaultMarkerColor:N,zoomOnScroll:I,zoomOnPinch:T,panOnScroll:j,panOnScrollSpeed:R,panOnScrollMode:P,zoomOnDoubleClick:U,panOnDrag:B,onPaneClick:V,onPaneMouseEnter:G,onPaneMouseMove:q,onPaneMouseLeave:H,onPaneScroll:W,onPaneContextMenu:K,paneClickDistance:J,nodeClickDistance:re,onEdgeContextMenu:Z,onEdgeMouseEnter:ne,onEdgeMouseMove:ee,onEdgeMouseLeave:ce,reconnectRadius:we,onReconnect:Me,onReconnectStart:ae,onReconnectEnd:_e,noDragClassName:Xe,noWheelClassName:Je,noPanClassName:st,disableKeyboardA11y:et,nodeExtent:de,rfId:at,viewport:nt,onViewportChange:ut}){return Sh(e),Sh(t),u3(),t3(n),r3(nt),d.jsx(TL,{onPaneClick:V,onPaneMouseEnter:G,onPaneMouseMove:q,onPaneMouseLeave:H,onPaneContextMenu:K,onPaneScroll:W,paneClickDistance:J,deleteKeyCode:A,selectionKeyCode:b,selectionOnDrag:w,selectionMode:S,onSelectionStart:p,onSelectionEnd:h,multiSelectionKeyCode:E,panActivationKeyCode:k,zoomActivationKeyCode:C,elementsSelectable:z,zoomOnScroll:I,zoomOnPinch:T,zoomOnDoubleClick:U,panOnScroll:j,panOnScrollSpeed:R,panOnScrollMode:P,panOnDrag:B,defaultViewport:$,translateExtent:O,minZoom:L,maxZoom:_,onSelectionContextMenu:f,preventScrolling:M,noDragClassName:Xe,noWheelClassName:Je,noPanClassName:st,disableKeyboardA11y:et,onViewportChange:ut,isControlledViewport:!!nt,children:d.jsxs(e3,{children:[d.jsx(QL,{edgeTypes:t,onEdgeClick:o,onEdgeDoubleClick:s,onReconnect:Me,onReconnectStart:ae,onReconnectEnd:_e,onlyRenderVisibleElements:D,onEdgeContextMenu:Z,onEdgeMouseEnter:ne,onEdgeMouseMove:ee,onEdgeMouseLeave:ce,reconnectRadius:we,defaultMarkerColor:N,noPanClassName:st,disableKeyboardA11y:et,rfId:at}),d.jsx(l3,{style:g,type:x,component:v,containerStyle:y}),d.jsx("div",{className:"react-flow__edgelabel-renderer"}),d.jsx(PL,{nodeTypes:e,onNodeClick:r,onNodeDoubleClick:i,onNodeMouseEnter:a,onNodeMouseMove:l,onNodeMouseLeave:c,onNodeContextMenu:u,nodeClickDistance:re,onlyRenderVisibleElements:D,noPanClassName:st,noDragClassName:Xe,disableKeyboardA11y:et,nodeExtent:de,rfId:at}),d.jsx("div",{className:"react-flow__viewport-portal"})]})})}pw.displayName="GraphView";const d3=m.memo(pw),kh=({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,width:o,height:i,fitView:s,fitViewOptions:a,minZoom:l=.5,maxZoom:c=2,nodeOrigin:u,nodeExtent:f}={})=>{const p=new Map,h=new Map,x=new Map,g=new Map,v=r??t??[],y=n??e??[],b=u??[0,0],w=f??zi;Ty(x,g,v);const S=Fc(y,p,h,{nodeOrigin:b,nodeExtent:w,elevateNodesOnSelect:!1});let E=[0,0,1];if(s&&o&&i){const k=rs(p,{filter:z=>!!((z.width||z.initialWidth)&&(z.height||z.initialHeight))}),{x:C,y:A,zoom:D}=pd(k,o,i,l,c,(a==null?void 0:a.padding)??.1);E=[C,A,D]}return{rfId:"1",width:0,height:0,transform:E,nodes:y,nodesInitialized:S,nodeLookup:p,parentLookup:h,edges:v,edgeLookup:g,connectionLookup:x,onNodesChange:null,onEdgesChange:null,hasDefaultNodes:n!==void 0,hasDefaultEdges:r!==void 0,panZoom:null,minZoom:l,maxZoom:c,translateExtent:zi,nodeExtent:w,nodesSelectionActive:!1,userSelectionActive:!1,userSelectionRect:null,connectionMode:Ao.Strict,domNode:null,paneDragging:!1,noPanClassName:"nopan",nodeOrigin:b,nodeDragThreshold:1,connectionDragThreshold:1,snapGrid:[15,15],snapToGrid:!1,nodesDraggable:!0,nodesConnectable:!0,nodesFocusable:!0,edgesFocusable:!0,edgesReconnectable:!0,elementsSelectable:!0,elevateNodesOnSelect:!0,elevateEdgesOnSelect:!1,selectNodesOnDrag:!0,multiSelectionActive:!1,fitViewQueued:s??!1,fitViewOptions:a,fitViewResolver:null,connection:{...dy},connectionClickStartHandle:null,connectOnClick:!0,ariaLiveMessage:"",autoPanOnConnect:!0,autoPanOnNodeDrag:!0,autoPanOnNodeFocus:!0,autoPanSpeed:15,connectionRadius:20,onError:IP,isValidConnection:void 0,onSelectionChangeHandlers:[],lib:"react",debug:!1,ariaLabelConfig:uy}},f3=({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,width:o,height:i,fitView:s,fitViewOptions:a,minZoom:l,maxZoom:c,nodeOrigin:u,nodeExtent:f})=>MO((p,h)=>{async function x(){const{nodeLookup:g,panZoom:v,fitViewOptions:y,fitViewResolver:b,width:w,height:S,minZoom:E,maxZoom:k}=h();v&&(await AP({nodes:g,width:w,height:S,panZoom:v,minZoom:E,maxZoom:k},y),b==null||b.resolve(!0),p({fitViewResolver:null}))}return{...kh({nodes:e,edges:t,width:o,height:i,fitView:s,fitViewOptions:a,minZoom:l,maxZoom:c,nodeOrigin:u,nodeExtent:f,defaultNodes:n,defaultEdges:r}),setNodes:g=>{const{nodeLookup:v,parentLookup:y,nodeOrigin:b,elevateNodesOnSelect:w,fitViewQueued:S}=h(),E=Fc(g,v,y,{nodeOrigin:b,nodeExtent:f,elevateNodesOnSelect:w,checkEquality:!0});S&&E?(x(),p({nodes:g,nodesInitialized:E,fitViewQueued:!1,fitViewOptions:void 0})):p({nodes:g,nodesInitialized:E})},setEdges:g=>{const{connectionLookup:v,edgeLookup:y}=h();Ty(v,y,g),p({edges:g})},setDefaultNodesAndEdges:(g,v)=>{if(g){const{setNodes:y}=h();y(g),p({hasDefaultNodes:!0})}if(v){const{setEdges:y}=h();y(v),p({hasDefaultEdges:!0})}},updateNodeInternals:g=>{const{triggerNodeChanges:v,nodeLookup:y,parentLookup:b,domNode:w,nodeOrigin:S,nodeExtent:E,debug:k,fitViewQueued:C}=h(),{changes:A,updatedInternals:D}=XP(g,y,b,w,S,E);D&&(YP(y,b,{nodeOrigin:S,nodeExtent:E}),C?(x(),p({fitViewQueued:!1,fitViewOptions:void 0})):p({}),(A==null?void 0:A.length)>0&&(k&&console.log("React Flow: trigger node changes",A),v==null||v(A)))},updateNodePositions:(g,v=!1)=>{const y=[],b=[],{nodeLookup:w,triggerNodeChanges:S}=h();for(const[E,k]of g){const C=w.get(E),A=!!(C!=null&&C.expandParent&&(C!=null&&C.parentId)&&(k!=null&&k.position)),D={id:E,type:"position",position:A?{x:Math.max(0,k.position.x),y:Math.max(0,k.position.y)}:k.position,dragging:v};A&&C.parentId&&y.push({id:E,parentId:C.parentId,rect:{...k.internals.positionAbsolute,width:k.measured.width??0,height:k.measured.height??0}}),b.push(D)}if(y.length>0){const{parentLookup:E,nodeOrigin:k}=h(),C=yd(y,w,E,k);b.push(...C)}S(b)},triggerNodeChanges:g=>{const{onNodesChange:v,setNodes:y,nodes:b,hasDefaultNodes:w,debug:S}=h();if(g!=null&&g.length){if(w){const E=Hy(g,b);y(E)}S&&console.log("React Flow: trigger node changes",g),v==null||v(g)}},triggerEdgeChanges:g=>{const{onEdgesChange:v,setEdges:y,edges:b,hasDefaultEdges:w,debug:S}=h();if(g!=null&&g.length){if(w){const E=Uy(g,b);y(E)}S&&console.log("React Flow: trigger edge changes",g),v==null||v(g)}},addSelectedNodes:g=>{const{multiSelectionActive:v,edgeLookup:y,nodeLookup:b,triggerNodeChanges:w,triggerEdgeChanges:S}=h();if(v){const E=g.map(k=>br(k,!0));w(E);return}w(ho(b,new Set([...g]),!0)),S(ho(y))},addSelectedEdges:g=>{const{multiSelectionActive:v,edgeLookup:y,nodeLookup:b,triggerNodeChanges:w,triggerEdgeChanges:S}=h();if(v){const E=g.map(k=>br(k,!0));S(E);return}S(ho(y,new Set([...g]))),w(ho(b,new Set,!0))},unselectNodesAndEdges:({nodes:g,edges:v}={})=>{const{edges:y,nodes:b,nodeLookup:w,triggerNodeChanges:S,triggerEdgeChanges:E}=h(),k=g||b,C=v||y,A=k.map(z=>{const $=w.get(z.id);return $&&($.selected=!1),br(z.id,!1)}),D=C.map(z=>br(z.id,!1));S(A),E(D)},setMinZoom:g=>{const{panZoom:v,maxZoom:y}=h();v==null||v.setScaleExtent([g,y]),p({minZoom:g})},setMaxZoom:g=>{const{panZoom:v,minZoom:y}=h();v==null||v.setScaleExtent([y,g]),p({maxZoom:g})},setTranslateExtent:g=>{var v;(v=h().panZoom)==null||v.setTranslateExtent(g),p({translateExtent:g})},setPaneClickDistance:g=>{var v;(v=h().panZoom)==null||v.setClickDistance(g)},resetSelectedElements:()=>{const{edges:g,nodes:v,triggerNodeChanges:y,triggerEdgeChanges:b,elementsSelectable:w}=h();if(!w)return;const S=v.reduce((k,C)=>C.selected?[...k,br(C.id,!1)]:k,[]),E=g.reduce((k,C)=>C.selected?[...k,br(C.id,!1)]:k,[]);y(S),b(E)},setNodeExtent:g=>{const{nodes:v,nodeLookup:y,parentLookup:b,nodeOrigin:w,elevateNodesOnSelect:S,nodeExtent:E}=h();g[0][0]===E[0][0]&&g[0][1]===E[0][1]&&g[1][0]===E[1][0]&&g[1][1]===E[1][1]||(Fc(v,y,b,{nodeOrigin:w,nodeExtent:g,elevateNodesOnSelect:S,checkEquality:!1}),p({nodeExtent:g}))},panBy:g=>{const{transform:v,width:y,height:b,panZoom:w,translateExtent:S}=h();return ZP({delta:g,panZoom:w,transform:v,translateExtent:S,width:y,height:b})},setCenter:async(g,v,y)=>{const{width:b,height:w,maxZoom:S,panZoom:E}=h();if(!E)return Promise.resolve(!1);const k=typeof(y==null?void 0:y.zoom)<"u"?y.zoom:S;return await E.setViewport({x:b/2-g*k,y:w/2-v*k,zoom:k},{duration:y==null?void 0:y.duration,ease:y==null?void 0:y.ease,interpolate:y==null?void 0:y.interpolate}),Promise.resolve(!0)},cancelConnection:()=>{p({connection:{...dy}})},updateConnection:g=>{p({connection:g})},reset:()=>p({...kh()})}},Object.is);function hw({initialNodes:e,initialEdges:t,defaultNodes:n,defaultEdges:r,initialWidth:o,initialHeight:i,initialMinZoom:s,initialMaxZoom:a,initialFitViewOptions:l,fitView:c,nodeOrigin:u,nodeExtent:f,children:p}){const[h]=m.useState(()=>f3({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,width:o,height:i,fitView:c,minZoom:s,maxZoom:a,fitViewOptions:l,nodeOrigin:u,nodeExtent:f}));return d.jsx(RO,{value:h,children:d.jsx(nL,{children:p})})}function p3({children:e,nodes:t,edges:n,defaultNodes:r,defaultEdges:o,width:i,height:s,fitView:a,fitViewOptions:l,minZoom:c,maxZoom:u,nodeOrigin:f,nodeExtent:p}){return m.useContext(rl)?d.jsx(d.Fragment,{children:e}):d.jsx(hw,{initialNodes:t,initialEdges:n,defaultNodes:r,defaultEdges:o,initialWidth:i,initialHeight:s,fitView:a,initialFitViewOptions:l,initialMinZoom:c,initialMaxZoom:u,nodeOrigin:f,nodeExtent:p,children:e})}const h3={width:"100%",height:"100%",overflow:"hidden",position:"relative",zIndex:0};function m3({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,className:o,nodeTypes:i,edgeTypes:s,onNodeClick:a,onEdgeClick:l,onInit:c,onMove:u,onMoveStart:f,onMoveEnd:p,onConnect:h,onConnectStart:x,onConnectEnd:g,onClickConnectStart:v,onClickConnectEnd:y,onNodeMouseEnter:b,onNodeMouseMove:w,onNodeMouseLeave:S,onNodeContextMenu:E,onNodeDoubleClick:k,onNodeDragStart:C,onNodeDrag:A,onNodeDragStop:D,onNodesDelete:z,onEdgesDelete:$,onDelete:O,onSelectionChange:L,onSelectionDragStart:_,onSelectionDrag:M,onSelectionDragStop:N,onSelectionContextMenu:I,onSelectionStart:T,onSelectionEnd:j,onBeforeDelete:R,connectionMode:P,connectionLineType:U=or.Bezier,connectionLineStyle:B,connectionLineComponent:V,connectionLineContainerStyle:G,deleteKeyCode:q="Backspace",selectionKeyCode:H="Shift",selectionOnDrag:W=!1,selectionMode:K=Fi.Full,panActivationKeyCode:J="Space",multiSelectionKeyCode:re=Ui()?"Meta":"Control",zoomActivationKeyCode:Z=Ui()?"Meta":"Control",snapToGrid:ne,snapGrid:ee,onlyRenderVisibleElements:ce=!1,selectNodesOnDrag:we,nodesDraggable:Me,autoPanOnNodeFocus:ae,nodesConnectable:_e,nodesFocusable:Xe,nodeOrigin:Je=Fy,edgesFocusable:st,edgesReconnectable:et,elementsSelectable:de=!0,defaultViewport:at=GO,minZoom:nt=.5,maxZoom:ut=2,translateExtent:rt=zi,preventScrolling:Tt=!0,nodeExtent:ot,defaultMarkerColor:jt="#b1b1b7",zoomOnScroll:mt=!0,zoomOnPinch:dt=!0,panOnScroll:ft=!1,panOnScrollSpeed:vt=.5,panOnScrollMode:Ve=Nr.Free,zoomOnDoubleClick:Ye=!0,panOnDrag:Mt=!0,onPaneClick:be,onPaneMouseEnter:me,onPaneMouseMove:Ae,onPaneMouseLeave:Re,onPaneScroll:Pe,onPaneContextMenu:Y,paneClickDistance:X=0,nodeClickDistance:Q=0,children:le,onReconnect:pe,onReconnectStart:je,onReconnectEnd:Oe,onEdgeContextMenu:Be,onEdgeDoubleClick:ve,onEdgeMouseEnter:fe,onEdgeMouseMove:Ce,onEdgeMouseLeave:Ee,reconnectRadius:$e=10,onNodesChange:ye,onEdgesChange:Se,noDragClassName:Te="nodrag",noWheelClassName:He="nowheel",noPanClassName:kt="nopan",fitView:he,fitViewOptions:Ie,connectOnClick:wt,attributionPosition:se,proOptions:F,defaultEdgeOptions:te,elevateNodesOnSelect:ie,elevateEdgesOnSelect:tt,disableKeyboardA11y:gt=!1,autoPanOnConnect:pt,autoPanOnNodeDrag:bt,autoPanSpeed:oe,connectionRadius:Le,isValidConnection:Et,onError:ze,style:Lt,id:vn,nodeDragThreshold:tn,connectionDragThreshold:Pn,viewport:Yr,onViewportChange:Xn,width:Zn,height:ls,colorMode:cs="light",debug:ll,onScroll:qr,ariaLabelConfig:Yo,...qo},Ko){const Kr=vn||"1",Uw=XO(cs),Vw=m.useCallback(Cd=>{Cd.currentTarget.scrollTo({top:0,left:0,behavior:"instant"}),qr==null||qr(Cd)},[qr]);return d.jsx("div",{"data-testid":"rf__wrapper",...qo,onScroll:Vw,style:{...Lt,...h3},ref:Ko,className:It(["react-flow",o,Uw]),id:vn,role:"application",children:d.jsxs(p3,{nodes:e,edges:t,width:Zn,height:ls,fitView:he,fitViewOptions:Ie,minZoom:nt,maxZoom:ut,nodeOrigin:Je,nodeExtent:ot,children:[d.jsx(d3,{onInit:c,onNodeClick:a,onEdgeClick:l,onNodeMouseEnter:b,onNodeMouseMove:w,onNodeMouseLeave:S,onNodeContextMenu:E,onNodeDoubleClick:k,nodeTypes:i,edgeTypes:s,connectionLineType:U,connectionLineStyle:B,connectionLineComponent:V,connectionLineContainerStyle:G,selectionKeyCode:H,selectionOnDrag:W,selectionMode:K,deleteKeyCode:q,multiSelectionKeyCode:re,panActivationKeyCode:J,zoomActivationKeyCode:Z,onlyRenderVisibleElements:ce,defaultViewport:at,translateExtent:rt,minZoom:nt,maxZoom:ut,preventScrolling:Tt,zoomOnScroll:mt,zoomOnPinch:dt,zoomOnDoubleClick:Ye,panOnScroll:ft,panOnScrollSpeed:vt,panOnScrollMode:Ve,panOnDrag:Mt,onPaneClick:be,onPaneMouseEnter:me,onPaneMouseMove:Ae,onPaneMouseLeave:Re,onPaneScroll:Pe,onPaneContextMenu:Y,paneClickDistance:X,nodeClickDistance:Q,onSelectionContextMenu:I,onSelectionStart:T,onSelectionEnd:j,onReconnect:pe,onReconnectStart:je,onReconnectEnd:Oe,onEdgeContextMenu:Be,onEdgeDoubleClick:ve,onEdgeMouseEnter:fe,onEdgeMouseMove:Ce,onEdgeMouseLeave:Ee,reconnectRadius:$e,defaultMarkerColor:jt,noDragClassName:Te,noWheelClassName:He,noPanClassName:kt,rfId:Kr,disableKeyboardA11y:gt,nodeExtent:ot,viewport:Yr,onViewportChange:Xn}),d.jsx(KO,{nodes:e,edges:t,defaultNodes:n,defaultEdges:r,onConnect:h,onConnectStart:x,onConnectEnd:g,onClickConnectStart:v,onClickConnectEnd:y,nodesDraggable:Me,autoPanOnNodeFocus:ae,nodesConnectable:_e,nodesFocusable:Xe,edgesFocusable:st,edgesReconnectable:et,elementsSelectable:de,elevateNodesOnSelect:ie,elevateEdgesOnSelect:tt,minZoom:nt,maxZoom:ut,nodeExtent:ot,onNodesChange:ye,onEdgesChange:Se,snapToGrid:ne,snapGrid:ee,connectionMode:P,translateExtent:rt,connectOnClick:wt,defaultEdgeOptions:te,fitView:he,fitViewOptions:Ie,onNodesDelete:z,onEdgesDelete:$,onDelete:O,onNodeDragStart:C,onNodeDrag:A,onNodeDragStop:D,onSelectionDrag:M,onSelectionDragStart:_,onSelectionDragStop:N,onMove:u,onMoveStart:f,onMoveEnd:p,noPanClassName:kt,nodeOrigin:Je,rfId:Kr,autoPanOnConnect:pt,autoPanOnNodeDrag:bt,autoPanSpeed:oe,onError:ze,connectionRadius:Le,isValidConnection:Et,selectNodesOnDrag:we,nodeDragThreshold:tn,connectionDragThreshold:Pn,onBeforeDelete:R,paneClickDistance:X,debug:ll,ariaLabelConfig:Yo}),d.jsx(WO,{onSelectionChange:L}),le,d.jsx(FO,{proOptions:F,position:se}),d.jsx(zO,{rfId:Kr,disableKeyboardA11y:gt})]})})}var g3=Vy(m3);function x3(e){const[t,n]=m.useState(e),r=m.useCallback(o=>n(i=>Hy(o,i)),[]);return[t,n,r]}function v3(e){const[t,n]=m.useState(e),r=m.useCallback(o=>n(i=>Uy(o,i)),[]);return[t,n,r]}function y3({dimensions:e,lineWidth:t,variant:n,className:r}){return d.jsx("path",{strokeWidth:t,d:`M${e[0]/2} 0 V${e[1]} M0 ${e[1]/2} H${e[0]}`,className:It(["react-flow__background-pattern",n,r])})}function w3({radius:e,className:t}){return d.jsx("circle",{cx:e,cy:e,r:e,className:It(["react-flow__background-pattern","dots",t])})}var sr;(function(e){e.Lines="lines",e.Dots="dots",e.Cross="cross"})(sr||(sr={}));const b3={[sr.Dots]:1,[sr.Lines]:1,[sr.Cross]:6},E3=e=>({transform:e.transform,patternId:`pattern-${e.rfId}`});function mw({id:e,variant:t=sr.Dots,gap:n=20,size:r,lineWidth:o=1,offset:i=0,color:s,bgColor:a,style:l,className:c,patternClassName:u}){const f=m.useRef(null),{transform:p,patternId:h}=Qe(E3,yt),x=r||b3[t],g=t===sr.Dots,v=t===sr.Cross,y=Array.isArray(n)?n:[n,n],b=[y[0]*p[2]||1,y[1]*p[2]||1],w=x*p[2],S=Array.isArray(i)?i:[i,i],E=v?[w,w]:b,k=[S[0]*p[2]||1+E[0]/2,S[1]*p[2]||1+E[1]/2],C=`${h}${e||""}`;return d.jsxs("svg",{className:It(["react-flow__background",c]),style:{...l,...il,"--xy-background-color-props":a,"--xy-background-pattern-color-props":s},ref:f,"data-testid":"rf__background",children:[d.jsx("pattern",{id:C,x:p[0]%b[0],y:p[1]%b[1],width:b[0],height:b[1],patternUnits:"userSpaceOnUse",patternTransform:`translate(-${k[0]},-${k[1]})`,children:g?d.jsx(w3,{radius:w/2,className:u}):d.jsx(y3,{dimensions:E,lineWidth:o,variant:t,className:u})}),d.jsx("rect",{x:"0",y:"0",width:"100%",height:"100%",fill:`url(#${C})`})]})}mw.displayName="Background";const S3=m.memo(mw);function k3(){return d.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",children:d.jsx("path",{d:"M32 18.133H18.133V32h-4.266V18.133H0v-4.266h13.867V0h4.266v13.867H32z"})})}function C3(){return d.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 5",children:d.jsx("path",{d:"M0 0h32v4.2H0z"})})}function _3(){return d.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 30",children:d.jsx("path",{d:"M3.692 4.63c0-.53.4-.938.939-.938h5.215V0H4.708C2.13 0 0 2.054 0 4.63v5.216h3.692V4.631zM27.354 0h-5.2v3.692h5.17c.53 0 .984.4.984.939v5.215H32V4.631A4.624 4.624 0 0027.354 0zm.954 24.83c0 .532-.4.94-.939.94h-5.215v3.768h5.215c2.577 0 4.631-2.13 4.631-4.707v-5.139h-3.692v5.139zm-23.677.94c-.531 0-.939-.4-.939-.94v-5.138H0v5.139c0 2.577 2.13 4.707 4.708 4.707h5.138V25.77H4.631z"})})}function T3(){return d.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 25 32",children:d.jsx("path",{d:"M21.333 10.667H19.81V7.619C19.81 3.429 16.38 0 12.19 0 8 0 4.571 3.429 4.571 7.619v3.048H3.048A3.056 3.056 0 000 13.714v15.238A3.056 3.056 0 003.048 32h18.285a3.056 3.056 0 003.048-3.048V13.714a3.056 3.056 0 00-3.048-3.047zM12.19 24.533a3.056 3.056 0 01-3.047-3.047 3.056 3.056 0 013.047-3.048 3.056 3.056 0 013.048 3.048 3.056 3.056 0 01-3.048 3.047zm4.724-13.866H7.467V7.619c0-2.59 2.133-4.724 4.723-4.724 2.591 0 4.724 2.133 4.724 4.724v3.048z"})})}function A3(){return d.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 25 32",children:d.jsx("path",{d:"M21.333 10.667H19.81V7.619C19.81 3.429 16.38 0 12.19 0c-4.114 1.828-1.37 2.133.305 2.438 1.676.305 4.42 2.59 4.42 5.181v3.048H3.047A3.056 3.056 0 000 13.714v15.238A3.056 3.056 0 003.048 32h18.285a3.056 3.056 0 003.048-3.048V13.714a3.056 3.056 0 00-3.048-3.047zM12.19 24.533a3.056 3.056 0 01-3.047-3.047 3.056 3.056 0 013.047-3.048 3.056 3.056 0 013.048 3.048 3.056 3.056 0 01-3.048 3.047z"})})}function Rs({children:e,className:t,...n}){return d.jsx("button",{type:"button",className:It(["react-flow__controls-button",t]),...n,children:e})}const N3=e=>({isInteractive:e.nodesDraggable||e.nodesConnectable||e.elementsSelectable,minZoomReached:e.transform[2]<=e.minZoom,maxZoomReached:e.transform[2]>=e.maxZoom,ariaLabelConfig:e.ariaLabelConfig});function gw({style:e,showZoom:t=!0,showFitView:n=!0,showInteractive:r=!0,fitViewOptions:o,onZoomIn:i,onZoomOut:s,onFitView:a,onInteractiveChange:l,className:c,children:u,position:f="bottom-left",orientation:p="vertical","aria-label":h}){const x=xt(),{isInteractive:g,minZoomReached:v,maxZoomReached:y,ariaLabelConfig:b}=Qe(N3,yt),{zoomIn:w,zoomOut:S,fitView:E}=ol(),k=()=>{w(),i==null||i()},C=()=>{S(),s==null||s()},A=()=>{E(o),a==null||a()},D=()=>{x.setState({nodesDraggable:!g,nodesConnectable:!g,elementsSelectable:!g}),l==null||l(!g)},z=p==="horizontal"?"horizontal":"vertical";return d.jsxs(ss,{className:It(["react-flow__controls",z,c]),position:f,style:e,"data-testid":"rf__controls","aria-label":h??b["controls.ariaLabel"],children:[t&&d.jsxs(d.Fragment,{children:[d.jsx(Rs,{onClick:k,className:"react-flow__controls-zoomin",title:b["controls.zoomIn.ariaLabel"],"aria-label":b["controls.zoomIn.ariaLabel"],disabled:y,children:d.jsx(k3,{})}),d.jsx(Rs,{onClick:C,className:"react-flow__controls-zoomout",title:b["controls.zoomOut.ariaLabel"],"aria-label":b["controls.zoomOut.ariaLabel"],disabled:v,children:d.jsx(C3,{})})]}),n&&d.jsx(Rs,{className:"react-flow__controls-fitview",onClick:A,title:b["controls.fitView.ariaLabel"],"aria-label":b["controls.fitView.ariaLabel"],children:d.jsx(_3,{})}),r&&d.jsx(Rs,{className:"react-flow__controls-interactive",onClick:D,title:b["controls.interactive.ariaLabel"],"aria-label":b["controls.interactive.ariaLabel"],children:g?d.jsx(A3,{}):d.jsx(T3,{})}),u]})}gw.displayName="Controls";const I3=m.memo(gw);function j3({id:e,x:t,y:n,width:r,height:o,style:i,color:s,strokeColor:a,strokeWidth:l,className:c,borderRadius:u,shapeRendering:f,selected:p,onClick:h}){const{background:x,backgroundColor:g}=i||{},v=s||x||g;return d.jsx("rect",{className:It(["react-flow__minimap-node",{selected:p},c]),x:t,y:n,rx:u,ry:u,width:r,height:o,style:{fill:v,stroke:a,strokeWidth:l},shapeRendering:f,onClick:h?y=>h(y,e):void 0})}const M3=m.memo(j3),R3=e=>e.nodes.map(t=>t.id),Ql=e=>e instanceof Function?e:()=>e;function D3({nodeStrokeColor:e,nodeColor:t,nodeClassName:n="",nodeBorderRadius:r=5,nodeStrokeWidth:o,nodeComponent:i=M3,onClick:s}){const a=Qe(R3,yt),l=Ql(t),c=Ql(e),u=Ql(n),f=typeof window>"u"||window.chrome?"crispEdges":"geometricPrecision";return d.jsx(d.Fragment,{children:a.map(p=>d.jsx(O3,{id:p,nodeColorFunc:l,nodeStrokeColorFunc:c,nodeClassNameFunc:u,nodeBorderRadius:r,nodeStrokeWidth:o,NodeComponent:i,onClick:s,shapeRendering:f},p))})}function P3({id:e,nodeColorFunc:t,nodeStrokeColorFunc:n,nodeClassNameFunc:r,nodeBorderRadius:o,nodeStrokeWidth:i,shapeRendering:s,NodeComponent:a,onClick:l}){const{node:c,x:u,y:f,width:p,height:h}=Qe(x=>{const{internals:g}=x.nodeLookup.get(e),v=g.userNode,{x:y,y:b}=g.positionAbsolute,{width:w,height:S}=Kn(v);return{node:v,x:y,y:b,width:w,height:S}},yt);return!c||c.hidden||!vy(c)?null:d.jsx(a,{x:u,y:f,width:p,height:h,style:c.style,selected:!!c.selected,className:r(c),color:t(c),borderRadius:o,strokeColor:n(c),strokeWidth:i,shapeRendering:s,onClick:l,id:c.id})}const O3=m.memo(P3);var L3=m.memo(D3);const $3=200,z3=150,F3=e=>!e.hidden,B3=e=>{const t={x:-e.transform[0]/e.transform[2],y:-e.transform[1]/e.transform[2],width:e.width/e.transform[2],height:e.height/e.transform[2]};return{viewBB:t,boundingRect:e.nodeLookup.size>0?xy(rs(e.nodeLookup,{filter:F3}),t):t,rfId:e.rfId,panZoom:e.panZoom,translateExtent:e.translateExtent,flowWidth:e.width,flowHeight:e.height,ariaLabelConfig:e.ariaLabelConfig}},H3="react-flow__minimap-desc";function xw({style:e,className:t,nodeStrokeColor:n,nodeColor:r,nodeClassName:o="",nodeBorderRadius:i=5,nodeStrokeWidth:s,nodeComponent:a,bgColor:l,maskColor:c,maskStrokeColor:u,maskStrokeWidth:f,position:p="bottom-right",onClick:h,onNodeClick:x,pannable:g=!1,zoomable:v=!1,ariaLabel:y,inversePan:b,zoomStep:w=1,offsetScale:S=5}){const E=xt(),k=m.useRef(null),{boundingRect:C,viewBB:A,rfId:D,panZoom:z,translateExtent:$,flowWidth:O,flowHeight:L,ariaLabelConfig:_}=Qe(B3,yt),M=(e==null?void 0:e.width)??$3,N=(e==null?void 0:e.height)??z3,I=C.width/M,T=C.height/N,j=Math.max(I,T),R=j*M,P=j*N,U=S*j,B=C.x-(R-C.width)/2-U,V=C.y-(P-C.height)/2-U,G=R+U*2,q=P+U*2,H=`${H3}-${D}`,W=m.useRef(0),K=m.useRef();W.current=j,m.useEffect(()=>{if(k.current&&z)return K.current=sO({domNode:k.current,panZoom:z,getTransform:()=>E.getState().transform,getViewScale:()=>W.current}),()=>{var ne;(ne=K.current)==null||ne.destroy()}},[z]),m.useEffect(()=>{var ne;(ne=K.current)==null||ne.update({translateExtent:$,width:O,height:L,inversePan:b,pannable:g,zoomStep:w,zoomable:v})},[g,v,b,w,$,O,L]);const J=h?ne=>{var we;const[ee,ce]=((we=K.current)==null?void 0:we.pointer(ne))||[0,0];h(ne,{x:ee,y:ce})}:void 0,re=x?m.useCallback((ne,ee)=>{const ce=E.getState().nodeLookup.get(ee).internals.userNode;x(ne,ce)},[]):void 0,Z=y??_["minimap.ariaLabel"];return d.jsx(ss,{position:p,style:{...e,"--xy-minimap-background-color-props":typeof l=="string"?l:void 0,"--xy-minimap-mask-background-color-props":typeof c=="string"?c:void 0,"--xy-minimap-mask-stroke-color-props":typeof u=="string"?u:void 0,"--xy-minimap-mask-stroke-width-props":typeof f=="number"?f*j:void 0,"--xy-minimap-node-background-color-props":typeof r=="string"?r:void 0,"--xy-minimap-node-stroke-color-props":typeof n=="string"?n:void 0,"--xy-minimap-node-stroke-width-props":typeof s=="number"?s:void 0},className:It(["react-flow__minimap",t]),"data-testid":"rf__minimap",children:d.jsxs("svg",{width:M,height:N,viewBox:`${B} ${V} ${G} ${q}`,className:"react-flow__minimap-svg",role:"img","aria-labelledby":H,ref:k,onClick:J,children:[Z&&d.jsx("title",{id:H,children:Z}),d.jsx(L3,{onClick:re,nodeColor:r,nodeStrokeColor:n,nodeBorderRadius:i,nodeClassName:o,nodeStrokeWidth:s,nodeComponent:a}),d.jsx("path",{className:"react-flow__minimap-mask",d:`M${B-U},${V-U}h${G+U*2}v${q+U*2}h${-G-U*2}z
682
+ M${A.x},${A.y}h${A.width}v${A.height}h${-A.width}z`,fillRule:"evenodd",pointerEvents:"none"})]})})}xw.displayName="MiniMap";m.memo(xw);const U3=e=>t=>e?`${Math.max(1/t.transform[2],1)}`:void 0,V3={[Mo.Line]:"right",[Mo.Handle]:"bottom-right"};function W3({nodeId:e,position:t,variant:n=Mo.Handle,className:r,style:o=void 0,children:i,color:s,minWidth:a=10,minHeight:l=10,maxWidth:c=Number.MAX_VALUE,maxHeight:u=Number.MAX_VALUE,keepAspectRatio:f=!1,resizeDirection:p,autoScale:h=!0,shouldResize:x,onResizeStart:g,onResize:v,onResizeEnd:y}){const b=qy(),w=typeof e=="string"?e:b,S=xt(),E=m.useRef(null),k=n===Mo.Handle,C=Qe(m.useCallback(U3(k&&h),[k,h]),yt),A=m.useRef(null),D=t??V3[n];m.useEffect(()=>{if(!(!E.current||!w))return A.current||(A.current=EO({domNode:E.current,nodeId:w,getStoreItems:()=>{const{nodeLookup:$,transform:O,snapGrid:L,snapToGrid:_,nodeOrigin:M,domNode:N}=S.getState();return{nodeLookup:$,transform:O,snapGrid:L,snapToGrid:_,nodeOrigin:M,paneDomNode:N}},onChange:($,O)=>{const{triggerNodeChanges:L,nodeLookup:_,parentLookup:M,nodeOrigin:N}=S.getState(),I=[],T={x:$.x,y:$.y},j=_.get(w);if(j&&j.expandParent&&j.parentId){const R=j.origin??N,P=$.width??j.measured.width??0,U=$.height??j.measured.height??0,B={id:j.id,parentId:j.parentId,rect:{width:P,height:U,...yy({x:$.x??j.position.x,y:$.y??j.position.y},{width:P,height:U},j.parentId,_,R)}},V=yd([B],_,M,N);I.push(...V),T.x=$.x?Math.max(R[0]*P,$.x):void 0,T.y=$.y?Math.max(R[1]*U,$.y):void 0}if(T.x!==void 0&&T.y!==void 0){const R={id:w,type:"position",position:{...T}};I.push(R)}if($.width!==void 0&&$.height!==void 0){const P={id:w,type:"dimensions",resizing:!0,setAttributes:p?p==="horizontal"?"width":"height":!0,dimensions:{width:$.width,height:$.height}};I.push(P)}for(const R of O){const P={...R,type:"position"};I.push(P)}L(I)},onEnd:({width:$,height:O})=>{const L={id:w,type:"dimensions",resizing:!1,dimensions:{width:$,height:O}};S.getState().triggerNodeChanges([L])}})),A.current.update({controlPosition:D,boundaries:{minWidth:a,minHeight:l,maxWidth:c,maxHeight:u},keepAspectRatio:f,resizeDirection:p,onResizeStart:g,onResize:v,onResizeEnd:y,shouldResize:x}),()=>{var $;($=A.current)==null||$.destroy()}},[D,a,l,c,u,f,g,v,y,x]);const z=D.split("-");return d.jsx("div",{className:It(["react-flow__resize-control","nodrag",...z,n,r]),ref:E,style:{...o,scale:C,...s&&{[k?"backgroundColor":"borderColor"]:s}},children:i})}m.memo(W3);class vw{getEdgeAnimationState(t,n,r){const o=r.find(a=>a.id===t);if(!o)return{isAnimated:!1,animationType:"static"};if(!this.isAgentToToolRequest(o))return{isAnimated:!1,animationType:"static"};const i=r.slice(0,n+1);return this.hasMatchingResponse(o,i)?{isAnimated:!1,animationType:"static"}:{isAnimated:!0,animationType:"request"}}isAgentToToolRequest(t){var n,r;switch(t.type){case"AGENT_LLM_CALL":return!0;case"AGENT_TOOL_INVOCATION_START":return!(((n=t.data.toolDecision)==null?void 0:n.isPeerDelegation)||((r=t.data.toolInvocationStart)==null?void 0:r.isPeerInvocation)||t.target&&t.target.startsWith("peer_"));default:return!1}}hasMatchingResponse(t,n){switch(t.type){case"AGENT_LLM_CALL":return this.hasLLMResponse(t,n);case"AGENT_TOOL_INVOCATION_START":return this.hasToolResponse(t,n);default:return!1}}hasLLMResponse(t,n){const r=new Date(t.timestamp).getTime(),o=t.source;return n.some(i=>{var u;if(new Date(i.timestamp).getTime()<r)return!1;const a=(i.type==="AGENT_LLM_RESPONSE_TOOL_DECISION"||i.type==="AGENT_LLM_RESPONSE_TO_AGENT")&&i.target===o,l=i.source===o&&(i.type==="AGENT_TOOL_INVOCATION_START"||i.type==="TASK_COMPLETED"),c=i.type==="AGENT_TOOL_EXECUTION_RESULT"&&((u=i.data.toolResult)==null?void 0:u.isPeerResponse);return a||l||c})}hasToolResponse(t,n){const r=new Date(t.timestamp).getTime(),o=t.target,i=t.source;return n.some(s=>new Date(s.timestamp).getTime()<r?!1:s.type==="AGENT_TOOL_EXECUTION_RESULT"&&s.source===o&&s.target===i)}isRequestStep(t){return this.isAgentToToolRequest(t)}isResponseStep(t){return["AGENT_TOOL_EXECUTION_RESULT","AGENT_LLM_RESPONSE_TOOL_DECISION","AGENT_LLM_RESPONSE_TO_AGENT"].includes(t.type)}}const Un={USER:50,MAIN_FLOW:300,TOOLS:600},G3=50,Pt=50,on=330,Br=50,bn=20,Ro=10,Ch=Pt+20,Y3=90;function Hr(e,t,n){return e.push(n),t.add(n.id),n}function q3(e,t){return e.push(t),t}function Ur(e,t){return e.nodeIdCounter++,`${t.replace(/[^a-zA-Z0-9_]/g,"_")}_${e.nodeIdCounter}`}function Gt(e){return e.currentPhaseIndex===-1||e.currentPhaseIndex>=e.phases.length?null:e.phases[e.currentPhaseIndex]}function as(e){const t=Gt(e);return!t||e.currentSubflowIndex===-1||e.currentSubflowIndex>=t.subflows.length?null:t.subflows[e.currentSubflowIndex]}function K3(e,t,n){var r;for(let o=e.length-1;o>=0;o--){const i=e[o],s=n.find(a=>a.id===i.id);if(((r=s==null?void 0:s.data)==null?void 0:r.toolName)===t)return i}return null}function X3(e,t){if(!t)return null;const n=Gt(e);return n&&n.subflows.findLast(r=>r.functionCallId===t)||null}function Z3(e,t){if(!t)return null;const n=Gt(e);return n&&n.subflows.findLast(r=>r.id===t)||null}function al(e,t){var o;const n=Gt(e);if(!n)return null;if(t.functionCallId){const i=X3(e,t.functionCallId);if(i)return i}if(t.owningTaskId&&t.isSubTaskStep){const i=Z3(e,t.owningTaskId);if(i){const s=n.subflows||[];if(!(new Set(s.map(l=>l.id)).size!==s.length))return i}}const r=as(e);if(r&&t.source){const i=t.source.replace(/[^a-zA-Z0-9_]/g,"_"),s=(o=t.target)==null?void 0:o.replace(/[^a-zA-Z0-9_]/g,"_"),a=r.peerAgent.id;if(a.includes(i)||s&&a.includes(s))return r}return r||null}function yw(e,t){var r,o,i;if(((r=e.data.toolDecision)==null?void 0:r.isParallel)===!0)return!0;const n=(i=(o=e.data)==null?void 0:o.toolInvocationStart)==null?void 0:i.functionCallId;return n?Array.from(t.parallelFlows.values()).some(s=>s.subflowFunctionCallIds.includes(n)):!1}function ww(e,t,n,r){var o;if(r)for(let i=e.length-1;i>=0;i--){const s=e[i];if(s.functionCallId===r){const a=n.find(l=>l.id===s.id);if(((o=a==null?void 0:a.data)==null?void 0:o.toolName)===t||t==="LLM")return s}}return K3(e,t,n)}function Q3(e,t,n){const r=Gt(e);if(!r)return null;const o=t.replace(/[^a-zA-Z0-9_]/g,"_"),i=n==null?void 0:n.replace(/[^a-zA-Z0-9_]/g,"_");let s=null;for(const a of r.subflows)if(a.peerAgent.id.includes(o)||i&&a.peerAgent.id.includes(i)){s=a;break}if(!s)return null;if(s.isParallel)return s;if(s.parentSubflowId){const a=r.subflows.find(l=>l.id===s.parentSubflowId);if(a&&a.isParallel)return a;if(a)return bw(r,a)}return null}function bw(e,t){if(t.isParallel)return t;if(t.parentSubflowId){const n=e.subflows.find(r=>r.id===t.parentSubflowId);if(n)return bw(e,n)}return null}function Do(e,t,n,r){const o=`phase_${e.phases.length}`,i=Ur(e,`${t}_${o}`),s=e.nextAvailableGlobalY,a={id:i,type:"orchestratorNode",position:{x:Un.MAIN_FLOW,y:s},data:{label:t,visualizerStepId:n.id}};Hr(r,e.allCreatedNodeIds,a),e.nodePositions.set(i,a.position);const l={id:i,yPosition:s,height:Pt,width:on},c={id:i,name:t,type:"orchestrator",phaseId:o,context:"main",nodeInstance:l};e.agentRegistry.registerAgent(c);const u={id:o,orchestratorAgent:l,userNodes:[],subflows:[],toolInstances:[],currentToolYOffset:0,maxY:s+Pt};return e.phases.push(u),e.currentPhaseIndex=e.phases.length-1,e.currentSubflowIndex=-1,e.nextAvailableGlobalY=u.maxY+Br,u}function Uc(e,t,n,r,o){var D,z,$,O,L;const i=Gt(e);if(!i)return null;const s=n.type==="AGENT_TOOL_EXECUTION_RESULT"&&((D=n.data.toolResult)==null?void 0:D.isPeerResponse)===!0,a=n.source||"",l=n.target||"",c=Po(a);!s&&!c&&!o&&e.indentationLevel++;const u=(($=(z=n.delegationInfo)==null?void 0:z[0])==null?void 0:$.subTaskId)||n.owningTaskId,f=Ur(e,`${t}_${u}`),p=Ur(e,`group_${t}_${u}`),h=((L=(O=n.data)==null?void 0:O.toolInvocationStart)==null?void 0:L.functionCallId)||n.functionCallId||"";let x,g,v;const y=Array.from(e.parallelFlows.values()).find(_=>_.subflowFunctionCallIds.includes(h)),b=as(e),w=Q3(e,a,l);o&&y?(x=y.startX+y.currentXOffset,g=y.startY,v=g+bn,y.currentXOffset+=(on+Ro)*2.2):w?(v=e.nextAvailableGlobalY,x=(w.groupNode.xPosition||Un.MAIN_FLOW-50)+e.indentationLevel*e.indentationStep,g=v-bn):(v=e.nextAvailableGlobalY,x=Un.MAIN_FLOW-50+e.indentationLevel*e.indentationStep,g=v-bn);const S={id:f,type:"genericAgentNode",position:{x:50,y:bn},data:{label:t,visualizerStepId:n.id},parentId:p},E={id:p,type:"group",position:{x,y:g},data:{label:`${t} Sub-flow`},style:{backgroundColor:"rgba(220, 220, 255, 0.1)",border:"1px solid #aac",borderRadius:"8px",minHeight:`${Pt+2*bn}px`}};Hr(r,e.allCreatedNodeIds,E),Hr(r,e.allCreatedNodeIds,S),e.nodePositions.set(f,S.position),e.nodePositions.set(p,E.position);const k={id:f,xPosition:Un.MAIN_FLOW,yPosition:v,height:Pt,width:on},C={id:f,name:t,type:"peer",phaseId:i.id,subflowId:u,context:"subflow",nodeInstance:k};e.agentRegistry.registerAgent(C);const A={id:u,functionCallId:h,isParallel:o,peerAgent:k,groupNode:{id:p,xPosition:x,yPosition:g,height:Pt+2*bn,width:0},toolInstances:[],currentToolYOffset:0,maxY:v+Pt,maxContentXRelative:S.position.x+on,callingPhaseId:i.id,parentSubflowId:b==null?void 0:b.id,inheritedXOffset:w==null?void 0:w.groupNode.xPosition};return i.subflows.push(A),w&&(w.lastSubflow=A),e.currentSubflowIndex=i.subflows.length-1,o&&y?(y.maxHeight=Math.max(y.maxHeight,A.groupNode.height),e.nextAvailableGlobalY=y.startY+y.maxHeight+Br):e.nextAvailableGlobalY=A.groupNode.yPosition+A.groupNode.height+Br,A}function Ew(e,t,n,r,o,i,s=!1){const a=Gt(e);if(!a)return null;const l=i?i.toolInstances:a.toolInstances,c=s?"LLM":`Tool: ${t}`,u=s?"LLM":t,f=i?i.groupNode.id:void 0;let p,h,x,g;if(i){if(p=i.peerAgent.yPosition+i.currentToolYOffset,i.currentToolYOffset+=Ch,x=50+300,i.groupNode.xPosition===void 0||i.groupNode.yPosition===void 0)return null;h=i.groupNode.xPosition+x,g=p-i.groupNode.yPosition}else h=Un.TOOLS,p=a.orchestratorAgent.yPosition+a.currentToolYOffset,a.currentToolYOffset+=Ch,x=h,g=p;const v=Ur(e,`${u}_${r.id}`),y={id:v,type:n,position:{x,y:g},data:{label:c,visualizerStepId:r.id,toolName:t},parentId:f};Hr(o,e.allCreatedNodeIds,y),e.nodePositions.set(v,{x,y:g});const b={id:v,xPosition:h,yPosition:p,height:Pt,width:on,functionCallId:r.functionCallId};l.push(b);const w=p+Pt;if(i){i.maxY=Math.max(i.maxY,w),i.maxContentXRelative=Math.max(i.maxContentXRelative,x+on);const S=i.maxY-i.groupNode.yPosition+bn;i.groupNode.height=Math.max(i.groupNode.height,S);const E=i.maxContentXRelative+Ro;i.groupNode.width=Math.max(i.groupNode.width||0,E);const k=o.find(C=>C.id===i.groupNode.id);k&&(k.style={...k.style,height:`${i.groupNode.height}px`,width:`${i.groupNode.width}px`}),e.nextAvailableGlobalY=Math.max(e.nextAvailableGlobalY,i.groupNode.yPosition+i.groupNode.height+Br)}else a.maxY=Math.max(a.maxY,w),e.nextAvailableGlobalY=Math.max(e.nextAvailableGlobalY,a.maxY+Br);return b}function bd(e,t,n,r){e.userNodeCounter++;const o=Ur(e,`User_response_${e.userNodeCounter}`),i=e.nextAvailableGlobalY+20,s={id:o,type:"userNode",position:{x:Un.USER,y:i},data:{label:"User",visualizerStepId:n.id,isBottomNode:!0}};Hr(r,e.allCreatedNodeIds,s),e.nodePositions.set(o,s.position);const a={id:o,yPosition:i,height:Pt,width:on};t.userNodes.push(a),e.allUserNodes.push(a);const l=i+Pt;return t.maxY=Math.max(t.maxY,l),a}function Qt(e,t,n,r,o,i,s,a,l){if(!e||!t||e===t)return;const c=o.allCreatedNodeIds.has(e),u=o.allCreatedNodeIds.has(t);if(!c||!u)return;const f=`edge-${e}${a||""}-to-${t}${l||""}-${n.id}`;if(!r.some(h=>h.id===f)){const h=n.title&&n.title.length>30?n.type.replace(/_/g," ").toLowerCase():n.title||"",x=i.isRequestStep(n),g={id:f,source:e,target:t,label:h,type:"defaultFlowEdge",data:{visualizerStepId:n.id,isAnimated:x,animationType:x?"request":"static",duration:1}};a&&(g.sourceHandle=a),l&&(g.targetHandle=l),q3(r,g)}}function J3(){const e=new Map;return{agents:e,findAgentByName(t){const n=t.startsWith("peer_")?t.substring(5):t,r=[];for(const[,o]of e)(o.name===n||o.name===t)&&r.push(o);return r.length===0?null:r.reduce((o,i)=>{const s=parseInt(o.id.split("_").pop()||"0");return parseInt(i.id.split("_").pop()||"0")>s?i:o})},findAgentById(t){for(const[,n]of e)if(n.id===t)return n;return null},registerAgent(t){e.set(t.id,t)}}}function Vc(e,t,n){return e==="orchestrator"?t==="output"?n==="bottom"?"orch-bottom-output":"orch-right-output-tools":n==="top"?"orch-top-input":"orch-right-input-tools":t==="output"?n==="bottom"?"peer-bottom-output":"peer-right-output-tools":n==="top"?"peer-top-input":"peer-right-input-tools"}function Po(e){return e==="OrchestratorAgent"||e.toLowerCase().includes("orchestrator")}const e5=["USER_REQUEST","AGENT_LLM_CALL","AGENT_LLM_RESPONSE_TO_AGENT","AGENT_LLM_RESPONSE_TOOL_DECISION","AGENT_TOOL_INVOCATION_START","AGENT_TOOL_EXECUTION_RESULT","AGENT_RESPONSE_TEXT","TASK_COMPLETED","TASK_FAILED"];function t5(e,t,n,r,o,i){const s=e.target,a=s.replace(/[^a-zA-Z0-9_]/g,"_"),l=Gt(t),c=as(t);let u,f=!1;if(c?(u=c.peerAgent,u.id.startsWith(a+"_")&&(f=!0)):l&&(u=l.orchestratorAgent,u.id.startsWith(a+"_")&&(f=!0)),f&&u&&l){t.userNodeCounter++;const p=Ur(t,`User_continue_${t.userNodeCounter}`),h=t.nextAvailableGlobalY,x={id:p,type:"userNode",position:{x:Un.USER,y:h},data:{label:"User",visualizerStepId:e.id}};Hr(n,t.allCreatedNodeIds,x),t.nodePositions.set(p,x.position);const g={id:p,yPosition:h,height:Pt,width:on};l.userNodes.push(g),t.allUserNodes.push(g);const v=h+Pt;u.yPosition=Math.max(u.yPosition,h),l.maxY=Math.max(l.maxY,v,u.yPosition+Pt),t.nextAvailableGlobalY=l.maxY+Br;const y=Po(s)?"orch-left-input":"peer-left-input";Qt(g.id,u.id,e,r,t,o,i,"user-right-output",y)}else{const p=Do(t,s,e,n),h=Ur(t,`User_${p.id}`),x={id:h,type:"userNode",position:{x:Un.USER,y:p.orchestratorAgent.yPosition-Y3},data:{label:"User",visualizerStepId:e.id,isTopNode:!0}};Hr(n,t.allCreatedNodeIds,x),t.nodePositions.set(h,x.position);const g={id:h,yPosition:x.position.y,height:Pt,width:on};p.userNodes.push(g),t.allUserNodes.push(g),t.userNodeCounter++,p.maxY=Math.max(p.maxY,x.position.y+Pt),t.nextAvailableGlobalY=p.maxY+Br,Qt(h,p.orchestratorAgent.id,e,r,t,o,i,"user-bottom-output","orch-top-input")}}function n5(e,t,n,r,o,i){const s=Gt(t);if(!s)return;const a=al(t,e),l=a?a.peerAgent.id:s.orchestratorAgent.id,c=Ew(t,"LLM","llmNode",e,n,a,!0);c&&Qt(l,c.id,e,r,t,o,i,a?"peer-right-output-tools":"orch-right-output-tools","llm-left-input")}function r5(e,t,n,r,o,i){var x;if(e.type==="AGENT_LLM_RESPONSE_TOOL_DECISION"&&((x=e.data.toolDecision)!=null&&x.isParallel)){const g=`parallel-${e.id}`;e.data.toolDecision.decisions.filter(v=>v.isPeerDelegation).length>1&&t.parallelFlows.set(g,{subflowFunctionCallIds:e.data.toolDecision.decisions.filter(v=>v.isPeerDelegation).map(v=>v.functionCallId),completedSubflows:new Set,startX:Un.MAIN_FLOW-50,startY:t.nextAvailableGlobalY,currentXOffset:0,maxHeight:0})}const s=Gt(t);if(!s)return;const a=al(t,e);let l;const u=ww((a||s).toolInstances,"LLM",n,e.functionCallId);if(u)l=u.id;else{console.error(`[Timeline] LLM node not found for step type ${e.type}: ${e.id}. Cannot create edge.`);return}const f=e.target||"UnknownAgent";let p,h;a?(p=a.peerAgent.id,h="peer-right-input-tools"):s.orchestratorAgent.id.startsWith(f.replace(/[^a-zA-Z0-9_]/g,"_")+"_")&&(p=s.orchestratorAgent.id,h="orch-right-input-tools"),l&&p&&h?Qt(l,p,e,r,t,o,i,"llm-bottom-output",h):console.error(`[Timeline] Could not determine target agent node ID or handle for step type ${e.type}: ${e.id}. Target agent name: ${f}. Edge will be missing.`)}function o5(e,t,n,r,o,i){var u;const s=Gt(t);if(!s)return;const a=e.source||"UnknownSource",l=e.target||"UnknownTool";if(((u=e.data.toolInvocationStart)==null?void 0:u.isPeerInvocation)||l.startsWith("peer_")){const f=l.startsWith("peer_")?l.substring(5):l,p=t.agentRegistry.findAgentByName(a);if(!p){console.error(`[Timeline] Could not find source agent in registry: ${a} for step ${e.id}`);return}const h=p.nodeInstance,x=Vc(p.type,"output","bottom"),g=yw(e,t),v=Uc(t,f,e,n,g);v&&Qt(h.id,v.peerAgent.id,e,r,t,o,i,x,"peer-top-input")}else{const f=al(t,e);let p,h;if(f)p=f.peerAgent.id,h="peer-right-output-tools";else{const g=t.agentRegistry.findAgentByName(a);g?(p=g.id,h=Vc(g.type,"output","right")):(p=s.orchestratorAgent.id,h="orch-right-output-tools")}const x=Ew(t,l,"genericToolNode",e,n,f);x&&Qt(p,x.id,e,r,t,o,i,h,`${x.id}-tool-left-input`)}}function i5(e,t,n,r,o,i){var c,u;const s=Gt(t);if(!s)return;const a=e.source||"UnknownSource",l=e.target||"OrchestratorAgent";if((c=e.data.toolResult)!=null&&c.isPeerResponse){const f=(u=e.data.toolResult)==null?void 0:u.functionCallId,p=Array.from(t.parallelFlows.entries()).find(([x,g])=>g.subflowFunctionCallIds.includes(f||""));if(p){const[x,g]=p;if(g.completedSubflows.add(f||""),g.completedSubflows.size<g.subflowFunctionCallIds.length)return;const v=s.subflows.filter(S=>g.subflowFunctionCallIds.includes(S.functionCallId)),y=e.target||"OrchestratorAgent";let b,w;if(Po(y))t.indentationLevel=0,b=Do(t,y,e,n).orchestratorAgent,w="orch-top-input",t.currentSubflowIndex=-1;else{t.indentationLevel=Math.max(0,t.indentationLevel-1);const S=Uc(t,y,e,n,!1);if(!S)return;b=S.peerAgent,w="peer-top-input"}v.forEach(S=>{var E;Qt(((E=S.lastSubflow)==null?void 0:E.peerAgent.id)??S.peerAgent.id,b.id,e,r,t,o,i,"peer-bottom-output",w)}),t.parallelFlows.delete(x);return}const h=t.agentRegistry.findAgentByName(a.startsWith("peer_")?a.substring(5):a);if(!h){console.error(`[Timeline] Source peer agent not found for peer response: ${a}.`);return}if(Po(l)){t.indentationLevel=0;const x=Do(t,l,e,n);Qt(h.id,x.orchestratorAgent.id,e,r,t,o,i,"peer-bottom-output","orch-top-input"),t.currentSubflowIndex=-1}else{t.indentationLevel=Math.max(0,t.indentationLevel-1);const x=yw(e,t)||Array.from(t.parallelFlows.values()).some(v=>v.subflowFunctionCallIds.some(y=>s.subflows.some(b=>b.functionCallId===y))),g=Uc(t,l,e,n,x);g&&Qt(h.id,g.peerAgent.id,e,r,t,o,i,"peer-bottom-output","peer-top-input")}}else{let f;const p=al(t,e),x=ww((p||s).toolInstances,a,n,e.functionCallId);if(x&&(f=x.id),f){let g,v;if(p)g=p.peerAgent.id,v="peer-right-input-tools";else{const y=t.agentRegistry.findAgentByName(l);y?(g=y.id,v=Vc(y.type,"input","right")):(g=s.orchestratorAgent.id,v="orch-right-input-tools")}Qt(f,g,e,r,t,o,i,a==="LLM"?"llm-bottom-output":`${f}-tool-bottom-output`,v)}else console.error(`[Timeline] Could not find source tool node for regular tool result: ${e.id}. Step source (tool name): ${a}.`)}}function s5(e,t,n,r,o,i){const s=Gt(t);if(!s||e.isSubTaskStep)return;const a=s.orchestratorAgent.id,l=bd(t,s,e,n);Qt(a,l.id,e,r,t,o,i,"orch-bottom-output","user-top-input")}function a5(e,t,n,r,o,i){const s=Gt(t);if(!s)return;const a=Array.from(t.parallelFlows.values()).find(h=>h.subflowFunctionCallIds.includes(e.functionCallId||""));if(a){if(a.completedSubflows.add(e.functionCallId||""),a.completedSubflows.size===a.subflowFunctionCallIds.length){t.indentationLevel=0;const h=Do(t,"OrchestratorAgent",e,n);s.subflows.forEach(x=>{a.subflowFunctionCallIds.includes(x.functionCallId)&&Qt(x.peerAgent.id,h.orchestratorAgent.id,e,r,t,o,i,"peer-bottom-output","orch-top-input")}),t.currentSubflowIndex=-1}return}if(!e.isSubTaskStep)return;const l=as(t);if(!l){console.warn(`[Timeline] TASK_COMPLETED with isSubTaskStep=true but no active subflow. Step ID: ${e.id}`);return}if(!s){console.error(`[Timeline] No current phase found for TASK_COMPLETED. Step ID: ${e.id}`);return}const c=l.peerAgent,u=n.some(h=>typeof h.data.label=="string"&&Po(h.data.label));let f,p;u?(t.indentationLevel=0,f=Do(t,"OrchestratorAgent",e,n).orchestratorAgent.id,p="orch-top-input"):(f=bd(t,s,e,n).id,p="user-top-input"),Qt(c.id,f,e,r,t,o,i,"peer-bottom-output",p),t.currentSubflowIndex=-1}function l5(e,t,n,r){const o=Gt(t);if(!o)return;const i=e.source||"UnknownSource",s=e.target||"User";let a,l="orch-bottom-output";const c=as(t);if(c&&c.peerAgent.id.includes(i.replace(/[^a-zA-Z0-9_]/g,"_")))a=c.peerAgent,l="peer-bottom-output";else if(o.orchestratorAgent.id.includes(i.replace(/[^a-zA-Z0-9_]/g,"_")))a=o.orchestratorAgent,l="orch-bottom-output";else for(const p of o.subflows)if(p.peerAgent.id.includes(i.replace(/[^a-zA-Z0-9_]/g,"_"))){a=p.peerAgent,l="peer-bottom-output";break}if(!a){console.error(`[Timeline] Could not find source agent node for TASK_FAILED: ${i}`);return}let u,f;Po(s)?(t.indentationLevel=0,u=Do(t,s,e,n).orchestratorAgent.id,f="orch-top-input",t.currentSubflowIndex=-1):(u=bd(t,o,e,n).id,f="user-top-input"),c5(a.id,u,e,r,t,l,f)}function c5(e,t,n,r,o,i,s){var f;if(!e||!t||e===t)return;const a=o.allCreatedNodeIds.has(e),l=o.allCreatedNodeIds.has(t);if(!a||!l)return;const c=`error-edge-${e}${i||""}-to-${t}${s||""}-${n.id}`;if(!r.some(p=>p.id===c)){const p=((f=n.data.errorDetails)==null?void 0:f.message)||"Task failed",h=p.length>30?"Error":p,x={id:c,source:e,target:t,label:h,type:"defaultFlowEdge",data:{visualizerStepId:n.id,isAnimated:!1,animationType:"static",isError:!0,errorMessage:p}};i&&(x.sourceHandle=i),s&&(x.targetHandle=s),r.push(x)}}const u5=e=>{const t=[],n=[];if(!e||e.length===0)return{nodes:t,edges:n};const r=new vw,o={phases:[],currentPhaseIndex:-1,currentSubflowIndex:-1,parallelFlows:new Map,nextAvailableGlobalY:G3,nodeIdCounter:0,allCreatedNodeIds:new Set,nodePositions:new Map,allUserNodes:[],userNodeCounter:0,agentRegistry:J3(),indentationLevel:0,indentationStep:50},i=e.filter(l=>e5.includes(l.type)),s=i.findIndex(l=>l.type==="USER_REQUEST");let a=i;s>0&&(a=[i[s],...i.slice(0,s),...i.slice(s+1)]);for(const l of a)switch(l.type){case"USER_REQUEST":t5(l,o,t,n,r,e);break;case"AGENT_LLM_CALL":n5(l,o,t,n,r,e);break;case"AGENT_LLM_RESPONSE_TO_AGENT":case"AGENT_LLM_RESPONSE_TOOL_DECISION":r5(l,o,t,n,r,e);break;case"AGENT_TOOL_INVOCATION_START":o5(l,o,t,n,r,e);break;case"AGENT_TOOL_EXECUTION_RESULT":i5(l,o,t,n,r,e);break;case"AGENT_RESPONSE_TEXT":s5(l,o,t,n,r,e);break;case"TASK_COMPLETED":a5(l,o,t,n,r,e);break;case"TASK_FAILED":l5(l,o,t,n);break}return o.phases.forEach(l=>{l.subflows.forEach(c=>{const u=t.find(f=>f.id===c.groupNode.id);if(u&&u.style){const p=c.maxY-c.groupNode.yPosition+bn;u.style.height=`${Math.max(Pt+2*bn,p)}px`;const h=c.maxContentXRelative+Ro,x=on+2*Ro+o.indentationLevel*o.indentationStep;u.style.width=`${Math.max(h,x)}px`}})}),{nodes:t,edges:n}},d5=({id:e,sourceX:t,sourceY:n,targetX:r,targetY:o,sourcePosition:i,targetPosition:s,style:a={},markerEnd:l,data:c})=>{const[u,f]=m.useState(!1),[p]=md({sourceX:t,sourceY:n,sourcePosition:i,targetX:r,targetY:o,targetPosition:s}),h=()=>{const v={strokeWidth:u?3:2,stroke:"var(--color-muted-foreground)",...a},y=c;return y!=null&&y.isError?{...v,stroke:u?"var(--color-error-wMain)":"var(--color-error-w70)",strokeWidth:u?3:2}:y!=null&&y.isSelected?{...v,stroke:"#3b82f6",strokeWidth:3}:y!=null&&y.isAnimated?{...v,stroke:u?"#1d4ed8":"#3b82f6",strokeWidth:u?4:3}:u?{...v,stroke:"var(--edge-hover-color)"}:v},x=()=>f(!0),g=()=>f(!1);return d.jsxs(d.Fragment,{children:[d.jsx("path",{id:`${e}-interaction`,style:{strokeWidth:16,stroke:"transparent",fill:"none",cursor:"pointer"},className:"react-flow__edge-interaction",d:p,onMouseEnter:x,onMouseLeave:g}),d.jsx("path",{id:e,style:{...h(),cursor:"pointer",transition:"all 0.2s ease-in-out"},className:"react-flow__edge-path",d:p,markerEnd:l,onMouseEnter:x,onMouseLeave:g})]})},f5=({data:e})=>d.jsxs("div",{className:"cursor-pointer rounded-md border-2 border-blue-700 bg-white px-5 py-3 text-gray-800 shadow-md transition-all duration-200 ease-in-out hover:scale-105 hover:shadow-xl dark:border-blue-600 dark:bg-gray-800 dark:text-gray-200",style:{minWidth:"180px",textAlign:"center"},children:[d.jsx(_t,{type:"target",position:ue.Top,id:"peer-top-input",className:"!bg-blue-700",isConnectable:!0}),d.jsx(_t,{type:"source",position:ue.Right,id:"peer-right-output-tools",className:"!bg-blue-700",style:{top:"25%"},isConnectable:!0}),d.jsx(_t,{type:"target",position:ue.Right,id:"peer-right-input-tools",className:"!bg-blue-700",style:{top:"75%"},isConnectable:!0}),d.jsx(_t,{type:"source",position:ue.Bottom,id:"peer-bottom-output",className:"!bg-blue-700",isConnectable:!0}),d.jsx(_t,{type:"target",position:ue.Left,id:"peer-left-input",className:"!bg-blue-700",isConnectable:!0}),d.jsx("div",{className:"flex items-center justify-center",children:d.jsx("div",{className:"text-md font-semibold",children:e.label})})]}),p5=({data:e,id:t})=>{const n=()=>{switch(e.status){case"completed":return"bg-green-500";case"in-progress":return"bg-blue-500";case"error":return"bg-red-500";case"started":return"bg-yellow-400";case"idle":default:return"bg-cyan-500"}};return d.jsxs("div",{className:"cursor-pointer rounded-lg border-2 border-cyan-600 bg-white px-3 py-3 text-gray-800 shadow-md transition-all duration-200 ease-in-out hover:scale-105 hover:shadow-xl dark:border-cyan-400 dark:bg-gray-800 dark:text-gray-200",style:{minWidth:"100px",textAlign:"center"},children:[d.jsx(_t,{type:"target",position:ue.Left,id:`${t}-tool-left-input`,className:"!bg-cyan-500",isConnectable:!0,style:{top:"25%"}}),d.jsxs("div",{className:"flex items-center justify-center",children:[d.jsx("div",{className:`mr-2 h-2 w-2 rounded-full ${n()}`}),d.jsx("div",{className:"text-md",children:e.label})]}),d.jsx(_t,{type:"source",position:ue.Left,id:`${t}-tool-bottom-output`,className:"!bg-cyan-500",isConnectable:!0,style:{top:"75%"}})]})},h5=({data:e})=>{const t=()=>{switch(e.status){case"completed":return"bg-green-500";case"in-progress":return"bg-blue-500";case"error":return"bg-red-500";case"started":return"bg-yellow-400";case"idle":default:return"bg-teal-500"}};return d.jsxs("div",{className:"cursor-pointer rounded-lg border-2 border-teal-600 bg-white px-3 py-3 text-gray-800 shadow-md transition-all duration-200 ease-in-out hover:scale-105 hover:shadow-xl dark:border-teal-400 dark:bg-gray-800 dark:text-gray-200",style:{minWidth:"100px",textAlign:"center"},children:[d.jsx(_t,{type:"target",position:ue.Left,id:"llm-left-input",className:"!bg-teal-500",isConnectable:!0,style:{top:"25%"}}),d.jsxs("div",{className:"flex items-center justify-center",children:[d.jsx("div",{className:`mr-2 h-2 w-2 rounded-full ${t()}`}),d.jsx("div",{className:"text-md",children:e.label})]}),d.jsx(_t,{type:"source",position:ue.Left,id:"llm-bottom-output",className:"!bg-teal-500",isConnectable:!0,style:{top:"75%"}})]})},m5=({data:e})=>d.jsxs("div",{className:"cursor-pointer rounded-lg border-indigo-600 bg-gradient-to-r from-indigo-50 to-purple-50 px-5 py-3 text-gray-900 shadow-xl transition-all duration-200 ease-in-out hover:scale-105 hover:shadow-2xl dark:border-indigo-400 dark:bg-gradient-to-r dark:from-indigo-900 dark:to-purple-900 dark:text-gray-100",style:{minWidth:"180px",textAlign:"center",borderWidth:"2px",borderStyle:"solid",boxShadow:"0 0 0 1px rgba(79, 70, 229, 0.3), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)"},children:[d.jsx(_t,{type:"source",position:ue.Right,id:"orch-right-output-tools",className:"!bg-indigo-500",style:{top:"25%"},isConnectable:!0}),d.jsx(_t,{type:"target",position:ue.Right,id:"orch-right-input-tools",className:"!bg-indigo-500",style:{top:"75%"},isConnectable:!0}),d.jsx(_t,{type:"target",position:ue.Top,id:"orch-top-input",className:"!bg-indigo-500",isConnectable:!0}),d.jsx(_t,{type:"source",position:ue.Bottom,id:"orch-bottom-output",className:"!bg-indigo-500",isConnectable:!0}),d.jsx(_t,{type:"target",position:ue.Left,id:"orch-left-input",className:"!bg-indigo-500",isConnectable:!0}),d.jsx("div",{className:"flex items-center justify-center",children:d.jsx("div",{className:"text-md flex items-center font-bold",children:e.label})})]}),g5=({data:e})=>{const t=()=>{switch(e.status){case"completed":return"bg-green-500";case"in-progress":return"bg-blue-500";case"error":return"bg-red-500";case"started":return"bg-yellow-400";case"idle":default:return"bg-purple-500"}};return d.jsxs("div",{className:"cursor-pointer rounded-md border-2 border-purple-600 bg-white px-4 py-3 text-gray-800 shadow-lg transition-all duration-200 ease-in-out hover:scale-105 hover:shadow-xl dark:border-purple-400 dark:bg-gray-700 dark:text-gray-200",style:{minWidth:"120px",textAlign:"center"},children:[e.isTopNode&&d.jsx(_t,{type:"source",position:ue.Bottom,id:"user-bottom-output",className:"!bg-gray-500",isConnectable:!0}),e.isBottomNode&&d.jsx(_t,{type:"target",position:ue.Top,id:"user-top-input",className:"!bg-gray-500",isConnectable:!0}),!e.isTopNode&&!e.isBottomNode&&d.jsx(_t,{type:"source",position:ue.Right,id:"user-right-output",className:"!bg-gray-500",isConnectable:!0}),d.jsxs("div",{className:"flex items-center justify-center",children:[d.jsx("div",{className:`mr-2 h-3 w-3 rounded-full ${t()}`}),d.jsx("div",{className:"text-sm font-bold",children:e.label})]})]})},x5=({step:e,isHighlighted:t,onClick:n,variant:r="list"})=>{const o=()=>{var b,w,S;switch(e.type){case"USER_REQUEST":return d.jsx(yk,{className:"mr-2 text-blue-500 dark:text-blue-400",size:18});case"AGENT_RESPONSE_TEXT":return d.jsx(hl,{className:"mr-2 text-teal-500 dark:text-teal-400",size:18});case"TASK_COMPLETED":return d.jsx(Fm,{className:"mr-2 text-green-500 dark:text-green-400",size:18});case"TASK_FAILED":return d.jsx(bS,{className:"mr-2 text-red-500 dark:text-red-400",size:18});case"AGENT_LLM_CALL":return d.jsx(hl,{className:"mr-2 text-purple-500 dark:text-purple-400",size:18});case"AGENT_LLM_RESPONSE_TO_AGENT":return d.jsx(hl,{className:"mr-2 text-teal-500 dark:text-teal-400",size:18});case"AGENT_LLM_RESPONSE_TOOL_DECISION":{const E=(w=(b=e.data.toolDecision)==null?void 0:b.decisions)==null?void 0:w[0];return(E==null?void 0:E.isPeerDelegation)?d.jsx(ef,{className:"mr-2 text-orange-500 dark:text-orange-400",size:18}):d.jsx(tf,{className:"mr-2 text-orange-500 dark:text-orange-400",size:18})}case"AGENT_TOOL_INVOCATION_START":return(S=e.data.toolInvocationStart)!=null&&S.isPeerInvocation?d.jsx(ef,{className:"mr-2 text-cyan-500 dark:text-cyan-400",size:18}):d.jsx(tf,{className:"mr-2 text-cyan-500 dark:text-cyan-400",size:18});case"AGENT_TOOL_EXECUTION_RESULT":return d.jsx(YS,{className:"mr-2 text-teal-500 dark:text-teal-400",size:18});case"AGENT_ARTIFACT_NOTIFICATION":return d.jsx(So,{className:"mr-2 text-indigo-500 dark:text-indigo-400",size:18});default:return d.jsx(tk,{className:"mr-2 text-gray-500 dark:text-gray-400",size:18})}},i=new Date(e.timestamp).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit",second:"2-digit"}),s=String(new Date(e.timestamp).getMilliseconds()).padStart(3,"0"),a=`${i}.${s}`,l=b=>d.jsxs("div",{className:"mt-1.5 rounded-md bg-gray-50 p-2 text-xs text-gray-700 dark:bg-gray-700 dark:text-gray-300",children:[d.jsxs("p",{children:[d.jsx("strong",{children:"Model:"})," ",b.modelName]}),d.jsx("p",{className:"mt-1",children:d.jsx("strong",{children:"Prompt Preview:"})}),d.jsx("pre",{className:"max-h-28 overflow-y-auto rounded bg-gray-100 p-1.5 font-mono text-xs break-all whitespace-pre-wrap dark:bg-gray-700",children:b.promptPreview})]}),c=({data:b})=>{const[w,S]=cn.useState(!1),E=k=>{k.stopPropagation(),S(!w)};return w?d.jsxs("div",{className:"mt-1.5 rounded-md bg-gray-50 p-2 text-xs text-gray-700 dark:bg-gray-700 dark:text-gray-300",children:[d.jsxs("div",{className:"mb-1 flex items-center justify-between",children:[d.jsx("strong",{children:"LLM Response Details:"}),d.jsx("button",{onClick:E,className:"text-xs text-blue-500 underline hover:text-blue-700 dark:text-blue-400 dark:hover:text-blue-300",children:"Hide details"})]}),b.modelName&&d.jsxs("p",{children:[d.jsx("strong",{children:"Model:"})," ",b.modelName]}),d.jsxs("div",{className:"mt-1",children:[d.jsx("p",{children:d.jsx("strong",{children:"Response Preview:"})}),d.jsx("pre",{className:"max-h-28 overflow-y-auto rounded bg-gray-100 p-1.5 font-mono text-xs break-all whitespace-pre-wrap dark:bg-gray-700",children:b.responsePreview})]}),b.isFinalResponse!==void 0&&d.jsxs("p",{className:"mt-1",children:[d.jsx("strong",{children:"Final Response:"})," ",b.isFinalResponse?"Yes":"No"]})]}):d.jsxs("div",{className:"mt-1.5 flex items-center justify-between text-xs text-gray-500 dark:text-gray-400",children:[d.jsx("span",{className:"italic",children:"Internal LLM response"}),d.jsx("button",{onClick:E,className:"text-xs text-blue-500 underline hover:text-blue-700 dark:text-blue-400 dark:hover:text-blue-300",children:"Show details"})]})},u=b=>d.jsxs("div",{className:"mt-1.5 rounded-md bg-blue-50 p-2 font-mono text-xs text-blue-700 dark:bg-blue-900 dark:text-blue-300",children:[d.jsx("p",{className:"mb-2",children:d.jsxs("strong",{children:["🔧 ",b.isParallel?"Parallel Tool Calls:":"Tool Call:"]})}),d.jsx("ul",{className:"space-y-1 pl-2",children:b.decisions.map(w=>d.jsxs("li",{className:"flex items-center",children:[d.jsx("span",{className:"mr-2",children:"•"}),d.jsx("code",{children:w.toolName})]},w.functionCallId))})]}),f=b=>d.jsxs("div",{className:"mt-1.5 rounded-md bg-gray-50 p-2 text-xs text-gray-700 dark:bg-gray-700 dark:text-gray-300",children:[d.jsxs("p",{children:[d.jsx("strong",{children:"Tool:"})," ",b.toolName]}),d.jsx("p",{className:"mt-1",children:d.jsx("strong",{children:"Arguments:"})}),d.jsx("div",{className:"max-h-40 overflow-y-auto rounded bg-gray-100 p-1.5 dark:bg-gray-700",children:d.jsx(Zc,{data:b.toolArguments})})]}),p=b=>d.jsxs("div",{className:"mt-1.5 rounded-md bg-gray-50 p-2 text-xs text-gray-700 dark:bg-gray-700 dark:text-gray-300",children:[d.jsxs("p",{children:[d.jsx("strong",{children:"Tool:"})," ",b.toolName]}),d.jsx("p",{className:"mt-1",children:d.jsx("strong",{children:"Result:"})}),d.jsx("div",{className:"max-h-40 overflow-y-auto rounded bg-gray-100 p-1.5 dark:bg-gray-700",children:typeof b.resultData=="object"?d.jsx(Zc,{data:b.resultData}):d.jsx("pre",{className:"font-mono text-xs break-all whitespace-pre-wrap",children:String(b.resultData)})})]}),h=b=>d.jsxs("div",{className:"mt-1.5 rounded-md bg-gray-50 p-2 text-xs text-gray-700 dark:bg-gray-700 dark:text-gray-300",children:[d.jsxs("p",{children:[d.jsx("strong",{children:"Artifact:"})," ",b.artifactName,b.version!==void 0&&d.jsxs("span",{className:"text-gray-500 dark:text-gray-400",children:[" (v",b.version,")"]})]}),b.mimeType&&d.jsxs("p",{children:[d.jsx("strong",{children:"Type:"})," ",b.mimeType]}),b.description&&d.jsxs("p",{className:"mt-1",children:[d.jsx("strong",{children:"Description:"})," ",b.description]})]}),x=r==="list"&&e.nestingLevel&&e.nestingLevel>0?{marginLeft:`${e.nestingLevel*24}px`}:{},g=r==="popover"?`
683
+ p-3 bg-transparent hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors duration-150
684
+ ${n?"cursor-pointer":""}
685
+ `:`
686
+ mb-3 p-3 border rounded-lg shadow-sm
687
+ bg-white dark:bg-gray-800 hover:shadow-md transition-shadow duration-150
688
+ ${t?"border-blue-500 dark:border-blue-400 ring-2 ring-blue-500 dark:ring-blue-400":"border-gray-200 dark:border-gray-700"}
689
+ ${n?"cursor-pointer":""}
690
+ `,v=()=>e.type==="AGENT_LLM_RESPONSE_TOOL_DECISION"||e.type==="AGENT_TOOL_INVOCATION_START"?"Delegated to: ":e.type==="AGENT_TOOL_EXECUTION_RESULT"?"Response from: ":"Peer Interaction with: ",y=e.title;return d.jsxs("div",{className:g,style:x,onClick:n,children:[d.jsxs("div",{className:"mb-1.5 flex items-center",children:[o(),d.jsx("h4",{className:"flex-grow text-sm font-semibold text-gray-700 dark:text-gray-200",title:e.title,children:y}),d.jsx("span",{className:"font-mono text-xs text-gray-500 dark:text-gray-400",children:a})]}),e.delegationInfo&&e.delegationInfo.length>0&&d.jsx("div",{className:"mt-2 mb-1.5 space-y-2 rounded-r-md border-l-4 border-blue-500 bg-blue-50 p-2 text-sm dark:border-blue-400 dark:bg-gray-700/60",children:e.delegationInfo.map(b=>d.jsxs("div",{children:[d.jsxs("div",{className:"flex items-center font-semibold text-blue-700 dark:text-blue-300",children:[d.jsx(Um,{className:"mr-2 h-4 w-4 flex-shrink-0"}),d.jsxs("span",{children:[v(),b.peerAgentName]})]}),b.subTaskId&&d.jsxs("div",{className:"mt-0.5 ml-[24px] text-xs text-blue-600 dark:text-blue-400",children:["Sub-Task:"," ",d.jsxs("span",{className:"font-mono",title:b.subTaskId,children:[b.subTaskId.substring(0,15),"..."]})]})]},b.functionCallId))}),e.data.text&&d.jsx("div",{className:"max-h-20 overflow-y-auto pl-1 text-sm text-gray-800 dark:text-gray-100",children:d.jsx(vo,{children:e.data.text})}),e.data.finalMessage&&d.jsx("div",{className:"pl-1 text-sm text-gray-800 dark:text-gray-100",children:d.jsx(vo,{children:e.data.finalMessage})}),e.type==="TASK_COMPLETED"&&!e.data.finalMessage&&d.jsx("div",{className:"pl-1 text-sm text-gray-600 italic dark:text-gray-300",children:"Task completed successfully."}),e.data.errorDetails&&d.jsxs("div",{className:"mt-1 rounded-md bg-red-50 p-2 pl-1 text-sm text-red-700 dark:bg-red-900/30 dark:text-red-400",children:[d.jsxs("p",{children:[d.jsx("strong",{children:"Error:"})," ",e.data.errorDetails.message]}),e.data.errorDetails.code&&d.jsxs("p",{className:"text-xs",children:["Code: ",e.data.errorDetails.code]})]}),e.data.llmCall&&l(e.data.llmCall),e.data.llmResponseToAgent&&d.jsx(c,{data:e.data.llmResponseToAgent}),e.data.toolDecision&&u(e.data.toolDecision),e.data.toolInvocationStart&&f(e.data.toolInvocationStart),e.data.toolResult&&p(e.data.toolResult),e.data.artifactNotification&&h(e.data.artifactNotification)]})},v5={genericAgentNode:f5,userNode:g5,llmNode:h5,orchestratorNode:m5,genericToolNode:p5},y5={defaultFlowEdge:d5},w5={x:16,y:0},b5=({processedSteps:e,isRightPanelVisible:t=!1,isSidePanelTransitioning:n=!1})=>{const[r,o,i]=x3([]),[s,a,l]=v3([]),{fitView:c}=ol(),{highlightedStepId:u,setHighlightedStepId:f}=Ou(),{taskIdInSidePanel:p}=Nt(),h=m.useRef([]),[x,g]=m.useState(!1),[v,y]=m.useState(null),[b,w]=m.useState(!1),S=m.useRef(null),[E,k]=m.useState(null),C=m.useRef(new vw),A=m.useMemo(()=>!e||e.length===0?{nodes:[],edges:[]}:u5(e),[e]),D=m.useMemo(()=>A.edges.length?A.edges.map(I=>{const T=I.data;let j={isAnimated:!1,animationType:"none"};if(T!=null&&T.visualizerStepId){const P=e.length-1;j=C.current.getEdgeAnimationState(T.visualizerStepId,P,e)}let R=I.id===E;return u&&(T==null?void 0:T.visualizerStepId)===u&&(R=!0),{...I,animated:j.isAnimated,data:{...T,isAnimated:j.isAnimated,animationType:j.animationType,isSelected:R}}}):[],[A.edges,e,E,u]),z=m.useCallback(()=>{o(I=>I.map(T=>{var J,re,Z,ne;if(T.type!=="group")return T;const j=I.filter(ee=>ee.parentId===T.id);if(j.length===0)return T;let R=0,P=0;j.forEach(ee=>{const ce=ee.position.x+on,we=ee.position.y+Pt;R=Math.max(R,ce),P=Math.max(P,we)});const U=R+Ro,B=P+bn;let V=0;const G=T.id.split("_");if(G.length>2){const ee=G.find(ce=>ce.startsWith("subflow"));if(ee){const ce=parseInt(ee.replace("subflow",""));isNaN(ce)||(V=ce)}}const q=on+2*Ro+V*50,H=Math.max(U,q),W=parseInt(((re=(J=T.style)==null?void 0:J.width)==null?void 0:re.toString().replace("px",""))||"0"),K=parseInt(((ne=(Z=T.style)==null?void 0:Z.height)==null?void 0:ne.toString().replace("px",""))||"0");return W!==H||K!==B?{...T,style:{...T.style,width:`${H}px`,height:`${B}px`}}:T}))},[o]);m.useEffect(()=>{o(A.nodes),a(D),z()},[A.nodes,D,o,a,z]);const $=m.useCallback((I,T)=>s.find(j=>j.source===I&&(T?j.sourceHandle===T:!0))||null,[s]),O=m.useCallback((I,T)=>{var R;g(!0);const j=(R=T.data)==null?void 0:R.visualizerStepId;if(j){const P=e.find(U=>U.id===j);P&&(k(T.id),t?f(j):(f(j),y(P),w(!0)))}},[e,t,f]),L=m.useCallback(I=>{switch(I.type){case"userNode":{const T=I.data;return T!=null&&T.isTopNode?["user-bottom-output"]:T!=null&&T.isBottomNode?["user-top-input"]:["user-right-output"]}case"orchestratorNode":return["orch-right-output-tools","orch-bottom-output"];case"genericAgentNode":return["peer-right-output-tools","peer-bottom-output"];case"llmNode":return["llm-bottom-output"];case"genericToolNode":return[`${I.id}-tool-bottom-output`];default:return[]}},[]),_=m.useCallback(()=>{w(!1),y(null)},[]),M=m.useCallback((I,T)=>{if(g(!0),T.type==="group"){f(null),k(null),_();return}const j=L(T);let R=null;for(const P of j)if(R=$(T.id,P),R)break;if(!R&&T.type==="userNode"){const P=T.data;P!=null&&P.isBottomNode&&(R=s.find(U=>U.target===T.id)||null)}R&&O(I,R)},[L,f,_,$,s,O]),N=m.useCallback(I=>{I!=null&&I.isTrusted&&g(!0)},[]);return m.useEffect(()=>{g(!1)},[p]),m.useEffect(()=>{!n&&c&&r.length>0&&h.current!==e&&x===!1&&(c({duration:200,padding:.1,maxZoom:1.2}),h.current=e)},[r.length,c,e,n,x]),m.useEffect(()=>{if(o(I=>I.map(T=>{var U;const j=((U=T.data)==null?void 0:U.visualizerStepId)&&T.data.visualizerStepId===u,R=A.nodes.find(B=>B.id===T.id),P=(R==null?void 0:R.style)||{};return{...T,style:{...P,boxShadow:j?"0px 4px 12px rgba(0, 0, 0, 0.2)":P.boxShadow||"none",transition:"box-shadow 0.2s ease-in-out"}}})),u){const I=D.find(T=>{const j=T.data;return(j==null?void 0:j.visualizerStepId)===u});I&&k(I.id)}else k(null)},[u,o,A.nodes,D]),!e||e.length===0?d.jsx("div",{className:"flex h-full items-center justify-center text-gray-500 dark:text-gray-400",children:Object.keys(e).length>0?"Processing flow data...":"No steps to display in flow chart."}):A.nodes.length===0&&e.length>0?d.jsx("div",{className:"flex h-full items-center justify-center text-gray-500 dark:text-gray-400",children:"Generating flow chart..."}):d.jsxs("div",{style:{height:"100%",width:"100%"},className:"relative",children:[d.jsxs(g3,{nodes:r,edges:s.map(I=>({...I,markerEnd:{type:Bi.ArrowClosed,color:"#888"}})),onNodesChange:i,onEdgesChange:l,onEdgeClick:O,onNodeClick:M,onPaneClick:()=>{f(null),k(null),_()},onMoveStart:N,nodeTypes:v5,edgeTypes:y5,fitViewOptions:{padding:.1},className:"bg-gray-50 dark:bg-gray-900 [&>button]:dark:bg-gray-700",proOptions:{hideAttribution:!0},nodesDraggable:!1,elementsSelectable:!1,nodesConnectable:!1,minZoom:.2,children:[d.jsx(S3,{}),d.jsx(I3,{className:Bb()}),d.jsx(ss,{position:"top-right",className:"flex items-center space-x-4",children:d.jsx("div",{ref:S})})]}),d.jsx(G_,{isOpen:b,onClose:_,anchorRef:S,offset:w5,placement:"right-start",className:"max-w-[500px] min-w-[400px] p-2",children:v&&d.jsx(x5,{step:v,variant:"popover"})})]})},E5=e=>d.jsx(hw,{children:d.jsx(b5,{...e})}),Sw=e=>{var t,n,r,o;if(e.events&&e.events.length>0){const i=e.events[0];if((o=(r=(n=(t=i.full_payload)==null?void 0:t.params)==null?void 0:n.message)==null?void 0:r.metadata)!=null&&o.parentTaskId)return i.full_payload.params.message.metadata.parentTaskId}},fi=e=>{var t,n,r;return((r=(n=(t=e.full_payload)==null?void 0:t.result)==null?void 0:n.status)==null?void 0:r.timestamp)||e.timestamp},kw=(e,t,n,r)=>{const o=t[e];if(!o)return console.warn(`[collectAllDescendantEvents] Task not found in allMonitoredTasks: ${e}`),[];n.set(e,r);let i=[...o.events||[]];for(const s in t){const a=t[s];if(a.taskId===e)continue;Sw(a)===e&&(i=i.concat(kw(a.taskId,t,n,r+1)))}return i},S5=(e,t,n)=>{if(!n)return null;const r={overall:{totalTaskDurationMs:0},agents:{}},o=new Map,i=new Map,s=(N,I)=>(r.agents[N]||(r.agents[N]={agentName:I,instanceId:N,displayName:I,llmCalls:[],toolCalls:[],totalLlmTimeMs:0,totalToolTimeMs:0}),r.agents[N]),a=new Map,l=kw(n.taskId,t,a,0);if(l.length===0)return{taskId:n.taskId,initialRequestText:n.initialRequestText,status:"working",startTime:n.firstSeen.toISOString(),steps:[]};const c=l.sort((N,I)=>new Date(fi(N)).getTime()-new Date(fi(I)).getTime()),u=[];let f,p="",h,x,g=[],v=null,y;const b=new Map,w=new Map,S=new Map,E=N=>{if(p.trim()&&h&&x){const I=p.trim();let T=n.taskId;if(g.length>0){const P=g[0].split("-");P.length>2&&P[1]!=="global"&&(T=P.slice(1,P.length-1).join("-"))}else N&&(T=N);const j=a.get(T)??0,R=b.get(T)||S.get(T);u.push({id:`vstep-agenttext-${u.length}-${g[0]||"unknown"}`,type:"AGENT_RESPONSE_TEXT",timestamp:x,title:`${h}: Response`,source:h,target:"User",data:{text:I},rawEventIds:[...g],isSubTaskStep:j>0,nestingLevel:j,owningTaskId:T,functionCallId:R}),v=I}p="",h=void 0,x=void 0,g=[],y=void 0};c.forEach((N,I)=>{var H,W,K,J,re,Z,ne,ee,ce,we,Me,ae,_e,Xe,Je,st,et,de,at,nt,ut,rt,Tt,ot,jt,mt,dt,ft,vt,Ve,Ye,Mt,be,me,Ae,Re,Pe,Y,X,Q,le,pe,je,Oe,Be;const T=fi(N),j=`raw-${N.task_id||"global"}-${I}`,R=N.full_payload,P=N.task_id||n.taskId,U=a.get(P)??0;let B=N.source_entity||"UnknownAgent";(K=(W=(H=R==null?void 0:R.params)==null?void 0:H.message)==null?void 0:W.metadata)!=null&&K.agent_name?B=R.params.message.metadata.agent_name:(re=(J=R==null?void 0:R.result)==null?void 0:J.metadata)!=null&&re.agent_name?B=R.result.metadata.agent_name:(ce=(ee=(ne=(Z=R==null?void 0:R.result)==null?void 0:Z.status)==null?void 0:ne.message)==null?void 0:ee.metadata)!=null&&ce.agent_name?B=R.result.status.message.metadata.agent_name:(ae=(Me=(we=R==null?void 0:R.result)==null?void 0:we.artifact)==null?void 0:Me.metadata)!=null&&ae.agent_name&&(B=R.result.artifact.metadata.agent_name);let V;if(U>0?V=b.get(P):V=S.get(P),N.direction==="request"&&U>0){const ve=(_e=R.params)==null?void 0:_e.metadata,fe=ve==null?void 0:ve.function_call_id,Ce=N.task_id;if(Ce&&fe){b.set(Ce,fe);return}}if(N.direction==="request"&&U===0&&N.task_id===n.taskId){E(P),v=null;const ve=R.params;let fe="User request";if((Xe=ve==null?void 0:ve.message)!=null&&Xe.parts){const Ce=ve.message.parts.filter(Ee=>Ee.kind==="text"&&Ee.text);Ce.length>0&&(fe=Ce[Ce.length-1].text)}u.push({id:`vstep-userreq-${u.length}-${j}`,type:"USER_REQUEST",timestamp:T,title:"User Input",source:"User",target:N.target_entity||B,data:{text:fe},rawEventIds:[j],isSubTaskStep:!1,nestingLevel:0,owningTaskId:P});return}if(N.direction==="status-update"&&(R!=null&&R.result)){const ve=R.result,fe=(Je=ve.status)==null?void 0:Je.message,Ce=fe==null?void 0:fe.metadata;let Ee;const $e=!!(Ce!=null&&Ce.forwarded_from_peer);$e?Ee=Ce.forwarded_from_peer:(st=ve.metadata)!=null&&st.agent_name?Ee=ve.metadata.agent_name:Ce!=null&&Ce.agent_name?Ee=Ce.agent_name:Ee=N.source_entity||"Agent";const ye=`${Ee}:${P}`;if(!$e&&(fe!=null&&fe.parts))for(const Se of fe.parts){if(Se.kind==="data"){const Te=Se.data;Te.type==="agent_progress_update"?f=Te.status_text:Te.type==="artifact_creation_progress"&&(f=`Saving artifact: ${Te.filename} (${Te.bytes_saved} bytes)`)}if(Se.kind==="data"){E(P);const He=Se.data;switch(He==null?void 0:He.type){case"agent_progress_update":{u.push({id:`vstep-progress-${u.length}-${j}`,type:"AGENT_RESPONSE_TEXT",timestamp:T,title:`${Ee}: Progress Update`,source:Ee,target:"User",data:{text:He.status_text},rawEventIds:[j],isSubTaskStep:U>0,nestingLevel:U,owningTaskId:P,functionCallId:V});break}case"llm_invocation":{const he=He.request;let Ie="System-initiated LLM call";if(he!=null&&he.contents&&Array.isArray(he.contents)&&he.contents.length>0){const se=[...he.contents].reverse().find(F=>F.role==="user");se&&se.parts&&(Ie=se.parts.map(F=>F.text||"").join(`
691
+ `).trim())}const wt={modelName:(he==null?void 0:he.model)||"Unknown Model",promptPreview:Ie||"No text in user prompt."};s(ye,Ee),o.set(ye,{timestamp:T,modelName:wt.modelName}),u.push({id:`vstep-llmcall-${u.length}-${j}`,type:"AGENT_LLM_CALL",timestamp:T,title:`${Ee}: LLM Call`,source:Ee,target:"LLM",data:{llmCall:wt},rawEventIds:[j],isSubTaskStep:U>0,nestingLevel:U,owningTaskId:P,functionCallId:V});break}case"llm_response":{const he=o.get(ye);if(he){const F=new Date(T).getTime()-new Date(he.timestamp).getTime();s(ye,Ee).llmCalls.push({modelName:he.modelName,durationMs:F,timestamp:he.timestamp}),o.delete(ye)}const Ie=He.data,wt=(et=Ie.content)==null?void 0:et.parts,se=wt==null?void 0:wt.filter(F=>F.function_call);if(se&&se.length>0){E(P),v=null,S.delete(P);const F=se.map(oe=>{var Le;return{functionCallId:oe.function_call.id,toolName:oe.function_call.name,toolArguments:oe.function_call.args||{},isPeerDelegation:(Le=oe.function_call.name)==null?void 0:Le.startsWith("peer_")}}),te={decisions:F,isParallel:F.length>1},ie=[],tt=new Set;F.forEach(oe=>{if(oe.isPeerDelegation){const Le=oe.toolName.substring(5);for(const Et in t){const ze=t[Et];if(tt.has(ze.taskId))continue;if(Sw(ze)===P&&ze.events&&ze.events.length>0){const vn=ze.events.find(tn=>{var Pn,Yr,Xn,Zn;return tn.direction==="request"&&((Zn=(Xn=(Yr=(Pn=tn.full_payload)==null?void 0:Pn.params)==null?void 0:Yr.message)==null?void 0:Xn.metadata)==null?void 0:Zn.function_call_id)===oe.functionCallId});if(vn&&new Date(fi(vn)).getTime()>=new Date(T).getTime()){const tn={functionCallId:oe.functionCallId,peerAgentName:Le,subTaskId:ze.taskId};ie.push(tn),w.set(oe.functionCallId,tn),ze.taskId&&(b.set(ze.taskId,oe.functionCallId),tt.add(ze.taskId));break}}}}});const gt={id:`vstep-tooldecision-${u.length}-${j}`,type:"AGENT_LLM_RESPONSE_TOOL_DECISION",timestamp:T,title:`LLM: Tool Decision${te.isParallel?" (Parallel)":""}`,source:"LLM",target:Ee,data:{toolDecision:te},rawEventIds:[j],delegationInfo:ie.length>0?ie:void 0,isSubTaskStep:U>0,nestingLevel:U,owningTaskId:P,functionCallId:V};u.push(gt);const pt=te.isParallel?gt.id:void 0,bt=ye;s(bt,Ee),F.forEach(oe=>{var Et;const Le=oe.isPeerDelegation?(Et=w.get(oe.functionCallId))==null?void 0:Et.subTaskId:void 0;i.has(oe.functionCallId)||i.set(oe.functionCallId,{timestamp:T,toolName:oe.toolName,isPeer:oe.isPeerDelegation,invokingAgentInstanceId:bt,subTaskId:Le,parallelBlockId:pt})})}else{const F=(wt==null?void 0:wt.filter(ie=>ie.text).map(ie=>ie.text).join(`
692
+ `))||"",te={responsePreview:F.substring(0,200)+(F.length>200?"...":""),isFinalResponse:(Ie==null?void 0:Ie.partial)===!1};u.push({id:`vstep-llmrespagent-${u.length}-${j}`,type:"AGENT_LLM_RESPONSE_TO_AGENT",timestamp:T,title:`${Ee}: LLM Response`,source:"LLM",target:Ee,data:{llmResponseToAgent:te},rawEventIds:[j],isSubTaskStep:U>0,nestingLevel:U,owningTaskId:P,functionCallId:V})}break}case"tool_invocation_start":{const he={functionCallId:He.function_call_id,toolName:He.tool_name,toolArguments:He.tool_args,isPeerInvocation:(de=He.tool_name)==null?void 0:de.startsWith("peer_")};u.push({id:`vstep-toolinvokestart-${u.length}-${j}`,type:"AGENT_TOOL_INVOCATION_START",timestamp:T,title:`${Ee}: Executing tool ${he.toolName}`,source:Ee,target:he.toolName,data:{toolInvocationStart:he},rawEventIds:[j],isSubTaskStep:U>0,nestingLevel:U,owningTaskId:P,functionCallId:V});break}case"tool_result":{const he=He.function_call_id,Ie=i.get(he);if(Ie){const se=new Date(T).getTime()-new Date(Ie.timestamp).getTime(),F=r.agents[Ie.invokingAgentInstanceId];if(F){const te={toolName:Ie.toolName,durationMs:se,isPeer:Ie.isPeer,timestamp:Ie.timestamp,peerAgentName:Ie.isPeer?Ie.toolName.substring(5):void 0,subTaskId:Ie.subTaskId,parallelBlockId:Ie.parallelBlockId};F.toolCalls.push(te)}i.delete(he)}const wt={toolName:He.tool_name,functionCallId:he,resultData:He.result_data,isPeerResponse:(at=He.tool_name)==null?void 0:at.startsWith("peer_")};u.push({id:`vstep-toolresult-${u.length}-${j}`,type:"AGENT_TOOL_EXECUTION_RESULT",timestamp:T,title:`${Ee}: Tool Result - ${wt.toolName}`,source:wt.toolName,target:Ee,data:{toolResult:wt},rawEventIds:[j],isSubTaskStep:U>0,nestingLevel:U,owningTaskId:P,functionCallId:V});break}}}else Se.kind==="text"&&Se.text&&(h&&h!==Ee&&(E(P),v=null),h||(h=Ee,x=T,y=$e),p+=Se.text,g.push(j))}return}if(N.direction==="artifact_update"&&((nt=R==null?void 0:R.result)!=null&&nt.artifact)){E(P);const ve=R.result.artifact,fe=((ut=ve.metadata)==null?void 0:ut.agent_name)||N.source_entity||"Agent";let Ce;if(ve.parts&&ve.parts.length>0){const $e=ve.parts[0];$e.kind==="file"?Ce=$e.file.mimeType||void 0:(rt=$e.metadata)!=null&&rt.mime_type&&(Ce=$e.metadata.mime_type)}const Ee={artifactName:ve.name||"Unnamed Artifact",version:typeof((Tt=ve.metadata)==null?void 0:Tt.version)=="number"?ve.metadata.version:void 0,description:ve.description||void 0,mimeType:Ce};u.push({id:`vstep-artifactnotify-${u.length}-${j}`,type:"AGENT_ARTIFACT_NOTIFICATION",timestamp:T,title:`${fe}: Artifact Update - ${Ee.artifactName}`,source:fe,target:"User/System",data:{artifactNotification:Ee},rawEventIds:[j],isSubTaskStep:U>0,nestingLevel:U,owningTaskId:P,functionCallId:V});return}if(["response","task"].includes(N.direction)&&((jt=(ot=R==null?void 0:R.result)==null?void 0:ot.status)!=null&&jt.state)){p.trim()&&E(P);const ve=R.result,fe=ve.status.state,Ce=((mt=ve.metadata)==null?void 0:mt.agent_name)||((vt=(ft=(dt=ve.status)==null?void 0:dt.message)==null?void 0:ft.metadata)==null?void 0:vt.agent_name)||N.source_entity||"Agent";if(["completed","failed","canceled"].includes(fe)&&U==0){const Ee=fe==="completed"?"TASK_COMPLETED":"TASK_FAILED",$e=`${Ce}: Task ${fe.charAt(0).toUpperCase()+fe.slice(1)}`;let ye={},Se="";if((Ve=ve.status.message)!=null&&Ve.parts){const kt=ve.status.message.parts.find(he=>he.kind==="text");kt!=null&&kt.text&&(Se=kt.text.trim())}const Te=P===n.taskId,He=Se&&(!Te||Se!==v);if(Ee==="TASK_COMPLETED")ye={finalMessage:He?Se:void 0};else{const he={message:He?Se:`Task ${fe}.`},Ie=R.error;Ie&&(he.message=Ie.message||he.message,he.code=Ie.code,Ie.data&&(he.details=Ie.data)),ve.error&&(he.message=ve.error.message||he.message,he.code=ve.error.code||he.code,he.details=ve.error.data||he.details),ye={errorDetails:he}}u.push({id:`vstep-${fe}-${u.length}-${j}`,type:Ee,timestamp:T,title:$e,source:Ce,target:"User",data:ye,rawEventIds:[j],isSubTaskStep:U>0,nestingLevel:U,owningTaskId:P,functionCallId:V}),Te&&(v=null);return}}const G=N.direction==="status-update"&&((me=(be=(Mt=(Ye=R==null?void 0:R.result)==null?void 0:Ye.status)==null?void 0:Mt.message)==null?void 0:be.parts)==null?void 0:me.some(ve=>ve.kind==="text"));let q=N.source_entity;(Y=(Pe=(Re=(Ae=R==null?void 0:R.result)==null?void 0:Ae.status)==null?void 0:Re.message)==null?void 0:Pe.metadata)!=null&&Y.forwarded_from_peer?q=R.result.status.message.metadata.forwarded_from_peer:(Q=(X=R==null?void 0:R.result)==null?void 0:X.metadata)!=null&&Q.agent_name?q=R.result.metadata.agent_name:(Oe=(je=(pe=(le=R==null?void 0:R.result)==null?void 0:le.status)==null?void 0:pe.message)==null?void 0:je.metadata)!=null&&Oe.agent_name&&(q=R.result.status.message.metadata.agent_name),p.trim()&&h&&(!G||G&&q!==h)&&(E(P),a.get(((Be=g[0])==null?void 0:Be.split("-")[1])||n.taskId)===0&&!y&&(v=null))});const k=c.length>0&&c[c.length-1].task_id||n.taskId;E(k);const C=c[0]?fi(c[0]):n.firstSeen.toISOString();let A,D="working";const z=u.filter(N=>N.owningTaskId===n.taskId),$=z.length>0?z[z.length-1]:null;if($&&($.type==="TASK_COMPLETED"?(D="completed",A=$.timestamp):$.type==="TASK_FAILED"&&(D="failed",A=$.timestamp)),D==="working"&&c.length>0){const N=c[c.length-1];t[N.task_id||n.taskId]}let O;C&&A&&(O=new Date(A).getTime()-new Date(C).getTime()),["completed","failed","canceled","rejected"].includes(D)&&(f=void 0);const L={taskId:n.taskId,initialRequestText:n.initialRequestText,status:D,currentStatusText:f,startTime:C,endTime:A,durationMs:O,steps:u};L.steps.forEach((N,I)=>{if(N.type==="TASK_COMPLETED"){let T="";for(let j=I-1;j>=0;j--){const R=L.steps[j];if(R.type!=="AGENT_RESPONSE_TEXT"||R.source!==N.source)break;T=R.data.text+T}N.data.finalMessage&&(T+=N.data.finalMessage),N.data.finalMessage=T.trim()||void 0}}),Object.values(r.agents).forEach(N=>{N.totalLlmTimeMs=N.llmCalls.reduce((P,U)=>P+U.durationMs,0);const I=N.toolCalls.filter(P=>!P.parallelBlockId),T=new Map;N.toolCalls.forEach(P=>{P.parallelBlockId&&(T.has(P.parallelBlockId)||T.set(P.parallelBlockId,[]),T.get(P.parallelBlockId).push(P))});const j=I.reduce((P,U)=>P+U.durationMs,0);let R=0;T.forEach(P=>{if(P.length>0){const U=Math.min(...P.map(V=>new Date(V.timestamp).getTime())),B=Math.max(...P.map(V=>new Date(V.timestamp).getTime()+V.durationMs));R+=B-U}}),N.totalToolTimeMs=j+R});const _=new Map;Object.values(r.agents).forEach(N=>{_.has(N.agentName)||_.set(N.agentName,[]),_.get(N.agentName).push(N)}),_.forEach(N=>{N.length>1&&(N.sort((I,T)=>{const j=R=>{const P=[...R.llmCalls.map(U=>new Date(U.timestamp).getTime()),...R.toolCalls.map(U=>new Date(U.timestamp).getTime())];return P.length>0?Math.min(...P):1/0};return j(I)-j(T)}),N.forEach((I,T)=>{I.displayName=`${I.agentName} (${T+1})`}))});const M=new Map;return Object.values(r.agents).forEach(N=>{const I=N.instanceId.split(":").slice(1).join(":");I&&M.set(I,N.displayName)}),Object.values(r.agents).forEach(N=>{N.toolCalls.forEach(I=>{if(I.isPeer&&I.subTaskId){const T=M.get(I.subTaskId);T&&(I.peerAgentName=T)}})}),O!==void 0&&(r.overall.totalTaskDurationMs=O),L.performanceReport=r,L},k5=({items:e,bottomItems:t,activeItem:n,onItemChange:r,onHeaderClick:o})=>{const i=s=>{r(s)};return d.jsxs("aside",{className:"flex h-screen w-[100px] flex-col border-r border-[var(--color-secondary-w70)] bg-[var(--color-primary-w100)]",children:[d.jsx(_5,{onClick:o}),d.jsx(A5,{items:e,bottomItems:t,activeItem:n,onItemClick:i})]})},C5=d.jsxs("svg",{id:"header-icon",xmlns:"http://www.w3.org/2000/svg",version:"1.1",viewBox:"0 0 500 150",width:"100%",height:"100%",children:[d.jsx("path",{className:"fill-[var(--color-brand-wMain)]",d:"M14.3,82.5c0-4.4,1-8.2,2.9-11.3,1.9-3.1,4.4-5.7,7.5-7.8,3.1-2,6.5-3.6,10.4-4.6,3.8-1,7.7-1.5,11.5-1.5s7.1.3,10.2.9c3.1.6,5.9,1.5,8.2,2.6,2.4,1.1,4.2,2.4,5.6,3.8,1.4,1.4,2,3,2,4.6,0,2.4,0,4.3-.2,5.7-.1,1.4-.3,2.4-.6,3.1-.3.7-.7,1.1-1.1,1.3-.4.2-.9.2-1.6.2-1.8,0-3.2-.7-4.3-2-1.1-1.3-2.3-2.8-3.7-4.4-1.4-1.6-3.1-3.1-5.3-4.4-2.1-1.3-5.3-2-9.3-2s-4.4.3-6,.9c-1.6.6-2.9,1.5-3.8,2.5-.9,1-1.6,2.2-2,3.4-.4,1.2-.6,2.4-.6,3.5,0,2.5,1,4.4,3.1,5.7,2.1,1.3,4.7,2.3,7.8,3.2,3.1.9,6.5,1.7,10.1,2.5,3.6.8,7,1.9,10.1,3.4,3.1,1.5,5.8,3.5,7.9,6.1,2.1,2.6,3.1,6.1,3.1,10.5s-.8,8-2.5,11.3c-1.7,3.4-4,6.2-7,8.5-3,2.3-6.6,4.1-10.8,5.3-4.2,1.3-8.9,1.9-13.9,1.9s-8.8-.6-12.5-1.9c-3.7-1.3-6.9-2.8-9.6-4.6-2.7-1.8-4.7-3.7-6.2-5.6-1.5-1.9-2.2-3.5-2.2-4.7,0-1.8.5-3.6,1.6-5.3,1-1.8,2.6-2.7,4.7-2.7s2.5.4,3.5,1.2c.9.8,1.8,1.7,2.7,2.8.8,1.1,1.7,2.3,2.6,3.7.9,1.4,2,2.6,3.3,3.7,1.3,1.1,2.9,2,4.7,2.8,1.8.8,4.1,1.2,6.8,1.2,4.1,0,7.5-1,10.3-3.1,2.8-2.1,4.2-4.8,4.2-8s-1-4.9-3.1-6.4c-2-1.4-4.6-2.6-7.7-3.5-3.1-.9-6.4-1.7-10-2.4-3.6-.7-7-1.8-10-3.2-3.1-1.4-5.7-3.4-7.7-6-2-2.6-3.1-6.3-3.1-11"}),d.jsx("path",{className:"fill-[var(--color-brand-wMain)]",d:"M124.6,66.8c-4,0-7.3.9-9.9,2.7-2.6,1.8-4.7,4.2-6.4,7.1-1.6,2.9-2.8,6.1-3.5,9.7-.7,3.5-1,6.9-1,10.1,0,4.9.5,9.2,1.6,13,1,3.7,2.5,6.8,4.4,9.3,1.9,2.5,4.1,4.3,6.7,5.6,2.6,1.3,5.3,1.9,8.2,1.9s5.7-.6,8.2-1.9c2.6-1.3,4.8-3.1,6.7-5.6,1.9-2.5,3.3-5.5,4.4-9.3,1-3.7,1.6-8,1.6-13,0-9.5-1.9-16.9-5.8-22-3.9-5.1-8.9-7.7-15.2-7.7M82.2,96.5c0-5.8,1.1-11,3.3-15.9,2.2-4.8,5.2-8.9,9.1-12.4,3.9-3.5,8.4-6.1,13.6-8,5.2-1.9,10.7-2.8,16.6-2.8s11.4.9,16.6,2.8c5.2,1.9,9.7,4.6,13.5,8,3.8,3.5,6.9,7.6,9.1,12.4,2.2,4.8,3.4,10.1,3.4,15.9s-1.1,11.2-3.4,15.9c-2.3,4.8-5.3,8.9-9.1,12.3-3.8,3.5-8.3,6.1-13.5,8-5.2,1.9-10.7,2.8-16.6,2.8s-11.4-.9-16.6-2.8c-5.2-1.9-9.7-4.6-13.6-8-3.9-3.5-6.9-7.6-9.1-12.3-2.2-4.8-3.3-10.1-3.3-15.9"}),d.jsx("path",{className:"fill-[var(--color-brand-wMain)]",d:"M172.3,23.3c0-.8.9-1.8,2.7-2.8,1.8-1,4-2,6.5-2.9,2.5-.9,5.1-1.6,7.7-2.3,2.6-.6,4.7-.9,6.3-.9s1.3,0,1.9.2c.6.2,1.2.5,1.8,1.2.6.6,1,1.6,1.4,2.9.4,1.3.5,3.1.5,5.4v94.7c0,2.4.4,4.1,1.2,4.9.8.9,1.6,1.5,2.5,2,.9.4,1.7.8,2.5,1.3.8.4,1.2,1.4,1.2,2.8s-.5,2.5-1.6,3.2c-1,.7-2.4,1-3.9,1h-24.2c-1.6,0-2.9-.3-3.9-1-1-.7-1.6-1.8-1.6-3.2s.4-2.3,1.2-2.7c.8-.5,1.6-.9,2.5-1.3.9-.4,1.7-1.1,2.5-2,.8-.9,1.2-2.5,1.2-4.9V34.5c0-2-.4-3.4-1.3-4.2-.9-.8-1.9-1.4-2.9-1.9-1-.5-2-1-2.9-1.6-.9-.6-1.3-1.8-1.3-3.5"}),d.jsx("path",{className:"fill-[var(--color-brand-wMain)]",d:"M254.4,93.3c-3.7,1.2-6.8,2.8-9.4,4.7-2.6,1.9-4.6,4.1-6,6.6-1.4,2.5-2.1,5-2.1,7.6s.3,3.6,1,5.3c.7,1.8,1.6,3.4,2.9,4.7,1.3,1.4,2.7,2.5,4.5,3.3,1.7.8,3.6,1.3,5.7,1.3s5.2-.7,7.2-2c2-1.3,3.6-2.9,4.9-4.7,1.3-1.8,2.2-3.7,2.7-5.7.6-1.9.9-3.6.9-4.9v-18.2c-4.5.1-8.6.8-12.2,2M220.5,69.7c0-1.9.9-3.6,2.6-5.1,1.7-1.5,4-2.8,6.8-3.8,2.8-1,6-1.9,9.5-2.4,3.5-.6,7-.9,10.4-.9,7,0,12.9.8,17.6,2.3,4.7,1.5,8.5,3.6,11.5,6.1,2.9,2.6,5,5.5,6.3,8.7,1.3,3.2,1.9,6.6,1.9,10v34.5c0,1.9.4,3.2,1.3,4.1.8.8,1.7,1.5,2.7,2,.9.5,1.8,1,2.7,1.5.8.5,1.3,1.4,1.3,2.7s-.4,2.5-1.2,3.4c-.8.9-2.7,1.3-5.7,1.3h-13.2c-2.4,0-4.1-.5-5.1-1.6-1-1-1.5-2.8-1.5-5.2v-1.7h-.6c-2.4,3.5-5.9,6-10.4,7.6-4.6,1.6-9.3,2.4-14.4,2.4s-8.5-.6-11.9-1.9c-3.4-1.3-6.3-3-8.6-5.1-2.4-2.1-4.1-4.6-5.3-7.5-1.2-2.8-1.8-5.8-1.8-8.8,0-5.2,1.6-9.7,4.8-13.5,3.2-3.8,7.3-6.8,12.2-9.2,5-2.4,10.5-4.1,16.6-5.2,6.1-1.1,12-1.6,17.9-1.6,0-4.7-1.3-8.6-4-11.5-2.7-3-6.6-4.5-11.7-4.5s-5.7.5-7.5,1.4c-1.9.9-3.6,2-5.1,3.1-1.5,1.2-3.1,2.2-4.7,3.1-1.6.9-3.7,1.4-6.2,1.4s-3.8-.5-5-1.6c-1.3-1.1-1.9-2.6-1.9-4.6"}),d.jsx("path",{className:"fill-[var(--color-brand-wMain)]",d:"M301.5,97.6c0-5.9,1-11.3,3.1-16.2,2.1-4.9,4.9-9.2,8.6-12.7,3.6-3.6,7.9-6.3,12.9-8.3,5-2,10.4-3,16.2-3s7.2.4,10.8,1.3c3.5.9,6.6,2.1,9.3,3.5,2.7,1.5,4.9,3.2,6.5,5.2,1.6,2,2.4,4.1,2.4,6.3s-.9,4.1-2.7,5.5c-1.8,1.4-4.2,2-7.2,2s-4.1-.8-5.3-2.4c-1.2-1.6-2.4-3.4-3.5-5.3-1.1-1.9-2.4-3.6-4-5.3-1.6-1.6-3.9-2.4-7.1-2.4s-5.2.8-7.5,2.3c-2.3,1.5-4.2,3.7-5.9,6.5-1.7,2.8-3,6.2-3.8,10-.9,3.9-1.3,8.2-1.3,12.9s.6,7.9,1.8,11.2c1.2,3.3,2.8,6.1,4.8,8.4,2,2.3,4.3,4.1,6.9,5.3,2.6,1.2,5.4,1.8,8.3,1.8s6.9-.6,9.4-1.9c2.5-1.3,4.7-2.6,6.4-4.2,1.8-1.5,3.3-2.9,4.6-4.2,1.3-1.3,2.6-1.9,4-1.9s2,.3,2.7,1c.8.7,1.2,1.6,1.2,2.7,0,1.7-.8,3.6-2.5,5.9-1.7,2.3-4,4.4-6.9,6.4-2.9,2-6.4,3.8-10.4,5.2-4,1.4-8.4,2.1-13.1,2.1s-10.7-.9-15.5-2.7c-4.8-1.8-8.9-4.4-12.3-7.8-3.5-3.3-6.2-7.4-8.2-12-2-4.7-3-9.8-3-15.5"}),d.jsx("path",{className:"fill-[var(--color-brand-wMain)]",d:"M423.2,65.9c-3.4,0-6.3.7-8.9,2.2-2.6,1.5-4.9,3.5-6.8,6.1-1.9,2.6-3.3,5.8-4.3,9.4-1,3.7-1.5,7.7-1.5,12.1v.9c3.5-.3,7.1-.9,11-1.7,3.9-.8,7.4-2,10.7-3.5,3.2-1.5,5.9-3.4,8.1-5.7,2.1-2.4,3.2-5.3,3.2-8.7s-.9-5.9-2.7-8c-1.8-2.1-4.7-3.1-8.7-3.1M380,98.4c0-5.7.9-11,2.7-15.9,1.8-5,4.5-9.3,8.2-13,3.7-3.7,8.3-6.6,13.9-8.8,5.6-2.1,12.2-3.2,19.9-3.2s6.8.4,10.4,1.2c3.6.8,6.8,2,9.8,3.8,3,1.7,5.4,4,7.4,6.8,1.9,2.8,2.9,6.1,2.9,10s-1.6,9-4.9,12.2c-3.3,3.2-7.5,5.8-12.6,7.7-5.1,1.9-10.8,3.4-16.9,4.3-6.1.9-12,1.6-17.7,1.9.5,3.1,1.5,5.9,2.9,8.3,1.4,2.4,3.1,4.4,5.2,6,2,1.6,4.2,2.8,6.6,3.6,2.4.8,4.7,1.2,7.1,1.2s5-.3,7.2-.9c2.2-.6,4.2-1.3,6-2.3,1.8-.9,3.5-2,4.9-3.1,1.5-1.1,2.8-2.2,3.9-3.2,1-1,2-1.9,2.8-2.4.8-.6,1.8-.9,3-.9,2.4,0,3.6,1.2,3.6,3.6s-1,4-3,6.4c-2,2.4-4.7,4.6-8,6.7-3.4,2-7.2,3.8-11.5,5.2-4.3,1.4-8.9,2.1-13.7,2.1s-10.9-.9-15.8-2.8c-4.9-1.9-9.1-4.5-12.7-7.8-3.6-3.3-6.4-7.2-8.5-11.8-2-4.6-3.1-9.5-3.1-14.8"}),d.jsx("path",{className:"fill-[var(--color-brand-wMain)]",d:"M464.7,123.7c0-6.5,5.3-11.8,11.8-11.8s11.8,5.3,11.8,11.8-5.3,11.8-11.8,11.8-11.8-5.3-11.8-11.8"})]}),_5=({onClick:e})=>d.jsx("div",{className:"flex h-[80px] cursor-pointer items-center justify-center border-b",onClick:e,children:d.jsx("div",{className:"flex h-12 w-12 items-center justify-center overflow-hidden rounded-full",children:C5})}),T5=()=>{const{currentTheme:e,toggleTheme:t}=Qg(),n=`Toggle theme (currently ${e})`;return d.jsxs(mu,{children:[d.jsx(gu,{asChild:!0,children:d.jsx("button",{type:"button",onClick:t,className:"relative mx-auto flex w-full cursor-pointer flex-col items-center bg-[var(--color-primary-w100)] px-3 py-5 text-xs text-[var(--color-primary-text-w10)] transition-colors hover:bg-[var(--color-primary-w90)] hover:text-[var(--color-primary-text-w10)] disabled:cursor-not-allowed disabled:opacity-50","aria-label":n,title:n,children:d.jsx(qm,{className:"mb-1 w-6 h-6"})})}),d.jsx(xu,{side:"right",children:n})]})},A5=({items:e,bottomItems:t,activeItem:n,onItemClick:r})=>d.jsxs("nav",{className:"flex flex-1 flex-col",role:"navigation","aria-label":"Main navigation",children:[d.jsx("ul",{className:"space-y-1",children:e.map(o=>d.jsxs("li",{children:[d.jsx(_h,{item:o,isActive:n===o.id,onItemClick:r}),o.showDividerAfter&&d.jsx("div",{className:"mx-4 my-3 border-t border-[var(--color-secondary-w70)]"})]},o.id))}),t&&t.length>0&&d.jsx("div",{className:"flex-1"}),t&&t.length>0&&d.jsx("ul",{className:"space-y-1",children:t.map(o=>d.jsx("li",{className:"my-4",children:o.id==="theme-toggle"?d.jsx(T5,{}):d.jsx(_h,{item:o,isActive:n===o.id,onItemClick:r},o.id)},o.id))})]}),_h=({item:e,isActive:t,onItemClick:n})=>{const{id:r,label:o,icon:i,disabled:s}=e,a=()=>{!s&&n&&n(r)},l=c=>{(c.key==="Enter"||c.key===" ")&&a()};return d.jsxs(mu,{children:[d.jsx(gu,{asChild:!0,children:d.jsxs("button",{type:"button",onClick:n?a:void 0,onKeyDown:n?l:void 0,disabled:s,className:Ge("relative mx-auto flex w-full cursor-pointer flex-col items-center border-l-4 border-[var(--color-primary-w100)] px-3 py-5 text-xs transition-colors","bg-[var(--color-primary-w100)] hover:bg-[var(--color-primary-w90)]","text-[var(--color-primary-text-w10)] hover:bg-[var(--color-primary-w90)] hover:text-[var(--color-primary-text-w10)]","disabled:cursor-not-allowed disabled:opacity-50",t?"border-l-4 border-[var(--color-brand-wMain)] bg-[var(--color-primary-w90)]":""),"aria-label":o,"aria-current":t?"page":void 0,children:[d.jsx(i,{className:Ge("mb-1 h-6 w-6",t&&"text-[var(--color-brand-wMain)]")}),d.jsx("span",{className:"text-center text-[13px] leading-tight",children:o})]})}),d.jsx(xu,{side:"right",children:o})]})},Th=[{id:"chat",label:"Chat",icon:JS},{id:"agentMesh",label:"Agents",icon:Lm}],Ah=[{id:"theme-toggle",label:"Theme",icon:qm,onClick:()=>{}}],Cw=({title:e,tabs:t,buttons:n,leadingAction:r})=>d.jsxs("div",{className:"flex max-h-[80px] min-h-[80px] w-full items-center border-b px-8",children:[r&&d.jsx("div",{className:"mr-4 flex items-center pt-[35px]",children:r}),d.jsx("div",{className:"truncate pt-[35px] text-xl text-nowrap",children:e}),t&&t.length>0&&d.jsx("div",{className:"ml-8 flex items-center pt-[35px]",role:"tablist",children:t.map((o,i)=>d.jsxs("button",{role:"tab","aria-selected":o.isActive,onClick:o.onClick,className:`relative cursor-pointer px-4 py-3 font-medium transition-colors duration-200 ${o.isActive?"border-b-2 border-[var(--color-brand-wMain)] font-semibold":""} ${i>0?"ml-6":""}`,children:[o.label,o.isActive&&d.jsx("div",{className:"absolute right-0 bottom-0 left-0 h-0.5"})]},o.id))}),d.jsx("div",{className:"flex-1"}),n&&n.length>0&&d.jsx("div",{className:"flex items-center gap-2",children:n.map((o,i)=>d.jsx(cn.Fragment,{children:o},i))})]}),$t=({label:e,value:t,icon:n,fullWidthValue:r=!1})=>t==null||typeof t=="string"&&!t.trim()?null:d.jsxs("div",{className:`flex mb-1.5 text-sm ${r?"flex-col items-start":"items-center"}`,children:[d.jsxs("div",{className:"flex w-36 flex-shrink-0 items-center text-sm font-semibold text-nowrap",children:[n&&d.jsx("span",{className:"mr-2",children:n}),e,":"]}),d.jsx("div",{className:`text-accent-foreground text-sm ${r?"mt-1 w-full":"truncate"}`,title:typeof t=="string"?t:void 0,children:t})]}),N5=({agent:e,isExpanded:t,onToggleExpand:n})=>{const r=a=>!a||Object.keys(a).length===0?d.jsx("span",{className:"text-sm",children:"N/A"}):d.jsx("ul",{className:"list-inside list-disc pl-1",children:Object.entries(a).map(([l,c])=>d.jsxs("li",{className:"text-sm",children:[d.jsxs("span",{className:"capitalize",children:[l.replace(/_/g," "),":"]})," ",c?"Yes":"No"]},l))}),o=(a,l="None")=>!a||a.length===0?d.jsx("span",{children:l}):a.map(c=>d.jsx("span",{className:"mr-1 mb-1 inline-block rounded-full px-2 py-0.5 text-xs font-medium",children:c},c)),i=a=>!a||a.length===0?d.jsx("span",{children:"No skills listed"}):d.jsx("div",{className:"space-y-1",children:a.map(l=>d.jsxs("div",{className:"rounded p-1.5 text-xs",children:[d.jsx("p",{className:"font-semibold",children:l.name}),d.jsx("p",{children:l.description})]},l.id||l.name))}),s=a=>!a||a.length===0?d.jsx("span",{children:"No tools listed"}):d.jsx("div",{className:"space-y-1",children:a.map(l=>d.jsxs("div",{className:"rounded p-1.5 text-xs",children:[d.jsx("p",{className:"font-semibold text-foreground",children:l.name}),d.jsx("p",{className:"mb-1",children:l.description})]},l.name))});return d.jsx("div",{className:"h-[400px] cursor-pointer w-full sm:w-[380px] flex-shrink-0 bg-card rounded-lg",onClick:n,role:"button",tabIndex:0,"aria-expanded":t,children:d.jsxs("div",{className:`transform-style-preserve-3d relative h-full w-full transition-transform duration-700 ${t?"rotate-y-180":""}`,style:{transformStyle:"preserve-3d"},children:[d.jsxs("div",{className:"absolute flex h-full w-full flex-col overflow-hidden rounded-lg border shadow-xl",style:{backfaceVisibility:"hidden",transform:"rotateY(0deg)"},children:[d.jsx("div",{className:"flex items-center p-4",children:d.jsxs("div",{className:"flex min-w-0 items-center",children:[d.jsx(Lm,{className:"mr-3 h-8 w-8 flex-shrink-0 text-[var(--color-brand-wMain)]"}),d.jsx("div",{className:"min-w-0",children:d.jsx("h2",{className:"truncate text-xl font-semibold",title:e.name,children:e.display_name||e.name})})]})}),d.jsxs("div",{className:"scrollbar-themed flex-grow space-y-3 overflow-y-auto p-4",children:[d.jsx("div",{className:"mb-2 line-clamp-4 text-base",children:e.description||"No description provided."}),d.jsx($t,{label:"Version",value:e.version,icon:d.jsx(Zd,{size:14})}),e.capabilities&&Object.keys(e.capabilities).length>0&&d.jsx($t,{label:"Key Capabilities",value:r(e.capabilities),icon:d.jsx(Qd,{size:14}),fullWidthValue:!0})]}),d.jsx("div",{className:"border-t p-2 text-center text-sm text-accent-foreground",children:"Click for details"})]}),d.jsxs("div",{className:"absolute flex h-full w-full flex-col overflow-hidden rounded-lg border shadow-xl",style:{backfaceVisibility:"hidden",transform:"rotateY(180deg)"},children:[d.jsx("div",{className:"flex items-center p-3",children:d.jsxs("h3",{className:"text-md truncate font-semibold",title:e.name,children:["Details: ",e.display_name||e.name]})}),d.jsxs("div",{className:"scrollbar-themed flex-grow space-y-1.5 overflow-y-auto p-3 text-xs",children:[d.jsx($t,{label:"Name",value:e.name,icon:d.jsx(wu,{size:14})}),d.jsx($t,{label:"Description",value:e.description,icon:d.jsx(dS,{size:14}),fullWidthValue:!0}),d.jsx($t,{label:"Version",value:e.version,icon:d.jsx(Zd,{size:14})}),d.jsx($t,{label:"Endpoint",value:e.url||"N/A",icon:d.jsx(Um,{size:14})}),d.jsx($t,{label:"Docs",value:e.documentationUrl?d.jsx("a",{href:e.documentationUrl,target:"_blank",rel:"noopener noreferrer",className:"break-all",children:"View Docs"}):"N/A",icon:d.jsx(Wm,{size:14})}),d.jsx($t,{label:"Last Seen",value:Fb(e.last_seen),icon:d.jsx(SS,{size:14})}),e.provider&&d.jsxs("div",{className:"mt-1.5 border-t pt-1.5",children:[d.jsx("h4",{className:"mb-0.5 text-xs font-semibold",children:"Provider"}),d.jsx($t,{label:"Name",value:e.provider.organization}),d.jsx($t,{label:"URL",value:e.provider.url||"N/A"})]}),d.jsx($t,{label:"Capabilities",value:r(e.capabilities),icon:d.jsx(Qd,{size:14}),fullWidthValue:!0}),d.jsx($t,{label:"Input Modes",value:o(e.defaultInputModes),icon:d.jsx(Kd,{size:14}),fullWidthValue:!0}),d.jsx($t,{label:"Output Modes",value:o(e.defaultOutputModes),icon:d.jsx(Kd,{size:14}),fullWidthValue:!0}),d.jsx($t,{label:"Skills",value:i(e.skills),icon:d.jsx(Ek,{size:14}),fullWidthValue:!0}),d.jsx($t,{label:"Tools Info",value:s(e.tools),icon:d.jsx(Bm,{size:14}),fullWidthValue:!0}),d.jsx("div",{className:"text-2xs mt-1.5 pt-1.5",children:d.jsx($t,{label:"A2A Protocol",value:e.protocolVersion})})]}),d.jsx("div",{className:"border-t p-2 text-center text-sm text-accent-foreground",children:"Click for summary"})]})]})})},Wc=({agents:e})=>{const[t,n]=m.useState(null),[r,o]=m.useState(""),i=a=>{n(l=>l===a?null:a)},s=e.filter(a=>{var l;return(l=a.display_name||a.name)==null?void 0:l.toLowerCase().includes(r.toLowerCase())});return d.jsx("div",{children:e.length===0?d.jsx("div",{className:"flex h-[calc(100vh-250px)] items-center justify-center",children:"No agents discovered in the current namespace."}):d.jsxs("div",{className:"mx-auto mt-[50px] ml-[50px]",children:[d.jsx("div",{className:"my-4",children:d.jsx("input",{type:"text","data-testid":"agent-search-input",placeholder:"Search...",value:r,onChange:a=>o(a.target.value),className:"bg-background rounded-md border px-3 py-2"})}),s.length===0&&r?d.jsxs("div",{className:"flex h-[calc(100vh-250px)] flex-col items-center justify-center gap-6",children:["No agents match your search.",d.jsx(Ke,{variant:"outline",title:"Clear Search",onClick:()=>o(""),children:"Clear Search"})]}):d.jsx("div",{className:"max-h-[calc(100vh-250px)] overflow-y-auto",children:d.jsx("div",{className:"flex flex-wrap gap-10",children:s.map(a=>d.jsx(N5,{agent:a,isExpanded:t===a.name,onToggleExpand:()=>i(a.name)},a.name))})})]})})},_w={LAYOUT:"layout"};class I5{constructor(){ct(this,"_plugins",{});this.registerDefaultPlugins()}get plugins(){return Object.values(this._plugins)}registerPlugin(t){this._plugins[t.id]&&console.warn(`Plugin with ID ${t.id} already exists. Overwriting.`),this._plugins[t.id]=t}getPluginById(t){return this._plugins[t]}getPluginsByType(t){return Object.values(this._plugins).filter(n=>n.type===t)}registerDefaultPlugins(){this.registerPlugin({type:_w.LAYOUT,id:"cards",label:"Cards",icon:WS,priority:100,render:t=>d.jsx(Wc,{agents:t.agents||[]})})}renderPlugin(t,n){const r=this.getPluginById(t);if(r)return r.render(n)}}const Tw=new I5,j5=({currentLayout:e,onLayoutChange:t,className:n=""})=>{const r=Tw.getPluginsByType(_w.LAYOUT);return r&&r.length>1?d.jsxs("div",{className:`flex items-center space-x-1 ${n}`,children:[d.jsx("span",{className:"text-sm font-semibold",children:"Layout:"}),d.jsx("div",{className:"flex gap-1 rounded-sm p-1",children:r.map(o=>{const i=o.icon,s=e===o.id;return d.jsxs(Ke,{variant:"ghost",size:"sm",onClick:()=>t(o.id),title:o.label,className:s?"bg-[var(--color-secondary-w20)] dark:bg-[var(--color-secondary-w80)]":"",children:[i&&d.jsx(i,{size:14}),d.jsx("span",{children:o.label})]},o.id)})})]}):null},Nh={CARDS:"cards"};function M5(){const{agents:e,agentsLoading:t,agentsError:n,agentsRefetch:r}=Nt(),[o,i]=m.useState("cards");if(t)return d.jsx("div",{className:"space-y-6",children:d.jsx("div",{className:"flex h-96 items-center justify-center",children:d.jsx("div",{children:"Loading agents..."})})});if(n)return d.jsx("div",{className:"space-y-6",children:d.jsx("div",{className:"flex h-96 items-center justify-center",children:d.jsx(rd,{variant:"error",message:`Error loading agents. ${n}`})})});const s=()=>{if(o===Nh.CARDS)return d.jsx(Wc,{agents:e});const a=Tw.getPluginById(o);return a?a.render({agents:e}):(console.warn(`Layout ${o} not found, falling back to cards layout`),d.jsx(Wc,{agents:e}))};return d.jsxs("div",{className:"flex h-full w-full flex-col",children:[d.jsx(Cw,{title:"Agents",buttons:[d.jsxs(Ke,{variant:"ghost",title:"Refresh Agents",onClick:()=>r(),children:[d.jsx(Gm,{className:"size-4"}),"Refresh Agents"]})]}),d.jsxs("div",{className:`relative flex-1 p-4 ${o===Nh.CARDS?"":"bg-[var(--muted)] dark:bg-[var(--color-bg-wMain)]"}`,children:[d.jsx("div",{className:"absolute right-8 z-20 flex items-center space-x-4",children:d.jsx(j5,{currentLayout:o,onLayoutChange:i})}),s()]})]})}const Ds=4,Gc={chatPanelSizes:{default:50,min:30,max:96},sidePanelSizes:{default:50,min:20,max:70}},R5={chatPanelSizes:{...Gc.chatPanelSizes,min:50},sidePanelSizes:{...Gc.sidePanelSizes,max:50}};function D5(){var P;const{agents:e,sessionId:t,messages:n,setMessages:r,selectedAgentName:o,setSelectedAgentName:i,isSidePanelCollapsed:s,setIsSidePanelCollapsed:a,openSidePanelTab:l,setTaskIdInSidePanel:c,isResponding:u,latestStatusText:f}=Nt(),{isTaskMonitorConnected:p,isTaskMonitorConnecting:h,taskMonitorSseError:x,connectTaskMonitorStream:g}=Ou(),[v,y]=m.useState(!0),[b,w]=m.useState(!1),S=Zg(),[E,k]=m.useState(!1),C=m.useRef(null),A=m.useRef(null),D=m.useRef(null),{chatPanelSizes:z,sidePanelSizes:$}=m.useMemo(()=>v?Gc:R5,[v]),O=m.useCallback(U=>{if(w(!0),A.current)if(U)A.current.resize(Ds);else{const B=D.current||$.default;A.current.resize(B)}setTimeout(()=>w(!1),300)},[$.default]),L=m.useCallback(()=>{a(!0)},[a]),_=m.useCallback(()=>{a(!1)},[a]),M=m.useCallback(U=>{U>Ds+1&&(D.current=U)},[]),N=m.useCallback(()=>{y(!v)},[v]);m.useEffect(()=>{A.current&&s&&A.current.resize(Ds);const U=()=>{if(A.current&&s){w(!0);const B=D.current||$.default;A.current.resize(B),a(!1),setTimeout(()=>w(!1),300)}};return window.addEventListener("expand-side-panel",U),()=>{window.removeEventListener("expand-side-panel",U)}},[s,a,$.default]),m.useEffect(()=>{if(!o&&e.length>0){const U=e.find(q=>q.name==="OrchestratorAgent"),B=U?U.name:e[0].name;i(B);const V=e.find(q=>q.name===B),G=V!=null&&V.display_name?`Hi! I'm the ${V==null?void 0:V.display_name} Agent. How can I help?`:`Hi! I'm ${B}. How can I help?`;r(q=>[...q.filter(W=>!W.isStatusBubble),{role:"agent",kind:"message",messageId:`welcome-${Date.now()}`,parts:[{kind:"text",text:G}],isUser:!1,isComplete:!0,metadata:{sessionId:t,lastProcessedEventSequence:0}}])}},[e,o,t,r,i]);const I=m.useMemo(()=>{const U=new Map;return n.forEach((B,V)=>{B.taskId&&U.set(B.taskId,V)}),U},[n]),T=m.useMemo(()=>n.find(U=>U.isStatusBubble),[n]),j=m.useMemo(()=>{if(!T||!T.parts)return null;const U=T.parts.find(B=>B.kind==="text");return(U==null?void 0:U.text)||null},[T]),R=m.useMemo(()=>{if(T!=null&&T.taskId)return()=>{c(T.taskId),l("workflow")}},[T==null?void 0:T.taskId,c,l]);return m.useEffect(()=>{const U=()=>{!p&&!h&&x&&(console.log("ChatPage: Window focused while disconnected, attempting reconnection..."),g())};return window.addEventListener("focus",U),()=>{window.removeEventListener("focus",U)}},[p,h,x,g]),d.jsxs("div",{className:"relative flex h-screen w-full flex-col overflow-hidden",children:[d.jsx("div",{className:`absolute top-0 left-0 z-20 h-screen transition-transform duration-300 ${v?"-translate-x-full":"translate-x-0"}`,children:d.jsx(Hj,{onToggle:N})}),d.jsx("div",{className:`transition-all duration-300 ${v?"ml-0":"ml-100"}`,children:d.jsx(Cw,{title:S,leadingAction:v?d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsx(Ke,{variant:"ghost",onClick:N,className:"h-10 w-10 p-0",tooltip:"Show Sessions Panel",children:d.jsx(Vm,{className:"size-5"})}),d.jsx("div",{className:"h-6 w-px bg-gray-300 dark:bg-gray-600"}),d.jsx(Ke,{variant:"ghost",onClick:()=>k(!0),className:"h-10 w-10 p-0",tooltip:"Start New Chat Session",children:d.jsx(Ym,{className:"size-5"})})]}):null})}),d.jsx("div",{className:"flex min-h-0 flex-1",children:d.jsx("div",{className:`min-h-0 flex-1 overflow-x-auto transition-all duration-300 ${v?"ml-0":"ml-100"}`,children:d.jsxs(d_,{direction:"horizontal",autoSaveId:"chat-side-panel",className:"h-full",children:[d.jsx(Sf,{defaultSize:z.default,minSize:z.min,maxSize:z.max,id:"chat-panel",children:d.jsxs("div",{className:"flex h-full w-full flex-col py-6",children:[d.jsx(ux,{className:"text-base",ref:C,children:n.map((U,B)=>{var G;const V=!!(U.taskId&&I.get(U.taskId)===B);return d.jsx(MI,{message:U,isLastWithTaskId:V},`${((G=U.metadata)==null?void 0:G.sessionId)||"session"}-${B}-${U.isUser?"received":"sent"}`)})}),d.jsxs("div",{style:cx,children:[u&&d.jsx(Ac,{statusText:(j||f.current)??void 0,onViewWorkflow:R}),d.jsx(fA,{agents:e,scrollToBottom:(P=C.current)==null?void 0:P.scrollToBottom})]})]})}),d.jsx(f_,{}),d.jsx(Sf,{ref:A,defaultSize:$.default,minSize:$.min,maxSize:$.max,collapsedSize:Ds,collapsible:!0,onCollapse:L,onExpand:_,onResize:M,id:"chat-side-panel",className:b?"transition-all duration-300 ease-in-out":"",children:d.jsx("div",{className:"h-full",children:d.jsx(Bj,{onCollapsedToggle:O,isSidePanelCollapsed:s,setIsSidePanelCollapsed:a,isSidePanelTransitioning:b})})})]})})}),d.jsx(Mv,{isOpen:E,onClose:()=>k(!1)})]})}const Sr=(e,t,n,r,o)=>{if(!r)throw new Error(o??`Invalid property path: ${t}
693
+ Couldn't access "${n}" in ${JSON.stringify(e)}`)},Ih=e=>typeof e=="object"&&e!==null&&!Array.isArray(e),Ks=e=>Array.isArray(e),Aw=(e,t)=>e.filter(((n,r)=>r!==t)),P5=(e,t,n,r={})=>{const{remove:o=!1,createNew:i=!0,noError:s=!1}=r,a=e,l=typeof(c=t)=="string"?c:typeof c=="number"?String(c):c.reduce(((p,h)=>typeof h=="number"?`${p}[${h}]`:p===""?h:`${p}.${h}`),"");var c;const u=Object.assign(Object.assign({},r),{remove:o,createNew:i,noError:s,fullData:a,fullPath:l}),f=Array.isArray(t)?t:(p=>Array.isArray(p)?p:p.split(/(\.|\[\d+\])/).filter((h=>h!=="."&&h!=="")).map((h=>{const x=/\[(\d+)\]/.exec(h);return x?Number(x[1]):h})).flat())(t).filter((p=>p!==""));return Ks(e)&&o&&f.length===1?Aw(e,f[0]):Ei(e,f,n,u)},Ei=(e,t,n,r)=>{const o=Ih(e)?Object.assign({},e):null,i=Ks(e)?[...e]:null;if(t.length===0)return e;if(!o&&!i)throw new Error("Can't assign property -- invalid input object");const{createNew:s,remove:a,noError:l,fullData:c,fullPath:u}=r,f=t[0];if(i&&typeof f=="string")return i.map((g=>Ei(g,t,n,r)));if(t.length===1){if(o&&typeof f=="string"){const g=O5(o,f,n,r);return g??o}return i&&typeof f=="number"?(L5(i,f,n,r),i):(Sr(c,u,f,l),e)}const p=o||i||[];if(a&&t.length===2&&typeof t[1]=="number"){const g=p[f],v=t[1];return Ks(g)?p[f]=Aw(g,v):Sr(c,u,f,l,"Trying to remove an indexed item from an object that is not an array"),p}const h=t.slice(1);if(f in e){if(x=p[f],!Ks(x)&&!Ih(x)){if(!s)return Sr(c,u,f,l),p;p[f]={}}return p[f]=Ei(p[f],h,n,r),p}var x;if(s){const g=typeof h[0]=="number"?[]:{};if(o)return p[f]=g,p[f]=Ei(p[f],h,n,r),p;if(i&&Array.isArray(p)){p.push(g);const v=p.length-1;return p[v]=Ei(p[v],h,n,r),p}}return Sr(c,u,f,l),p},O5=(e,t,n,r)=>{const{remove:o,createNew:i,noError:s,insertAfter:a,insertBefore:l,fullData:c,fullPath:u}=r;if(l!==void 0||a!==void 0){const p=Object.entries(e);let h=1/0;return h=typeof l=="number"?l:typeof a=="number"?a:p.findIndex((([x,g])=>x===(l??a))),a&&h++,p.splice(h,0,[t,n]),Object.fromEntries(p)}const f=t in e;o?f?delete e[t]:Sr(c,u,t,s):i||f?e[t]=n:Sr(c,u,t,s)},L5=(e,t,n,r)=>{const{noError:o,fullData:i,fullPath:s,createNew:a,insert:l}=r;l&&e.splice(t,0,n),t in e?e[t]=n:a?e.push(n):Sr(i,s,t,o)},Oo=(e,t,n)=>{const r=Array.isArray(t)?t:$5(t);if(r.length===0)return e;const o=r[0];if(Array.isArray(e)&&typeof o!="number")return e.map((s=>Oo(s,r)));if(typeof e!="object"||e===null||!(o in e))return z5(e,o);const i=e[o];return r.length===1?i:Oo(i,r.slice(1))},$5=e=>e.split(/(\.|\[\d+\])/).filter((t=>t!=="."&&t!=="")).map((t=>{const n=/\[(\d+)\]/.exec(t);return n?Number(n[1]):t})).flat(),z5=(e,t,n)=>{throw new Error(`Unable to extract object property
694
+ Looking for property: ${t}
695
+ In object: ${JSON.stringify(e)}`)};function Nw(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function"){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}function lo(e,t,n,r){return new(n||(n=Promise))((function(o,i){function s(c){try{l(r.next(c))}catch(u){i(u)}}function a(c){try{l(r.throw(c))}catch(u){i(u)}}function l(c){var u;c.done?o(c.value):(u=c.value,u instanceof n?u:new n((function(f){f(u)}))).then(s,a)}l((r=r.apply(e,[])).next())}))}const Iw=({className:e,name:t,value:n,setValue:r,handleKeyPress:o,styles:i,textAreaRef:s})=>{if(typeof n!="string")return null;const a=n.slice(-1)===`
696
+ `?n+".":n;return d.jsxs("div",{style:{display:"grid"},children:[d.jsx("textarea",{id:`${t}_textarea`,ref:s,style:Object.assign({height:"auto",gridArea:"1 / 1 / 2 / 2",overflowY:"auto",whiteSpace:"pre-wrap"},i),rows:1,className:e,name:`${t}_textarea`,value:n,onChange:l=>r(l.target.value),autoFocus:!0,onFocus:l=>{n.length<40&&l.target.select()},onKeyDown:o}),d.jsx("span",{className:e,style:Object.assign({visibility:"hidden",height:"auto",gridArea:"1 / 1 / 2 / 2",color:"red",opacity:.9,whiteSpace:"pre-wrap",overflowY:"auto",border:"1px solid transparent"},i),children:a})]})},Lo=e=>e!==null&&typeof e=="object",jw=(e,t,n,r="")=>{if(!n&&!r)return!0;switch(e){case"collection":if(n){if(n(t,r))return!0;if(!Yc(r,t,n))return!1}if(!n&&r&&!Yc(r,t))return!1;break;case"value":if(n&&!n(t,r)||!n&&r&&!$o(t,r))return!1}return!0},Yc=(e="",t,n=$o)=>{const r=t.value;return Object.entries(r).some((([o,i])=>{const s=[...t.path,o],a=Object.assign(Object.assign({},t),{key:o,path:s,level:t.level+1,value:i,size:s.length,parentData:r});return Lo(i)?Yc(e,a,n):n(a,e)}))},$o=(e,t="")=>{const{value:n}=e;if(n===null&&"null".includes(t.toLowerCase()))return!0;switch(typeof n){case"string":return n.toLowerCase().includes(t.toLowerCase());case"number":return!!String(n).includes(t);case"boolean":return n?"true".includes(t.toLowerCase())||t==="1":"false".includes(t.toLowerCase())||t==="0";default:return!1}},jh=({key:e,path:t},n="")=>!!$o({value:e},n)||!!t.some((r=>$o({value:r},n))),Gr=(e,t)=>(t??"")+e.map((n=>n===""?"\0":n)).join("."),Ed=e=>e.shiftKey?"Shift":e.metaKey?"Meta":e.ctrlKey?"Control":e.altKey?"Alt":void 0,F5=(e,t,n)=>{const r=e.key,o=Ed(e);if(Array.isArray(t))return!!o&&t.includes(o);const{key:i,modifier:s}=t;return(n!=="stringLineBreak"||r!=="Enter"||o!=="Shift"||i!=="Enter"||!(s!=null&&s.includes("Shift")))&&r===i&&(s===o||Array.isArray(s)&&s.includes(o))},wr={key:"Enter"},Mh={confirm:wr,cancel:{key:"Escape"},objectConfirm:Object.assign(Object.assign({},wr),{modifier:["Meta","Shift","Control"]}),objectLineBreak:wr,stringConfirm:wr,stringLineBreak:Object.assign(Object.assign({},wr),{modifier:["Shift"]}),numberConfirm:wr,numberUp:{key:"ArrowUp"},numberDown:{key:"ArrowDown"},tabForward:{key:"Tab"},tabBack:{key:"Tab",modifier:"Shift"},booleanConfirm:wr,booleanToggle:{key:" "},clipboardModifier:["Meta","Control"],collapseModifier:["Alt"]},kr=(e,t,n="next",r)=>{const o=t.slice(0,t.length-1),i=t.slice(-1)[0];if(i===void 0)return null;const s=Oo(e,o),a=B5(s);Array.isArray(s)||r(a,(({key:u,value:f})=>[u,f]));const l=a.findIndex((u=>u.key===i)),c=a[l+(n==="next"?1:-1)];return c?Lo(c.value)?Object.keys(c.value).length===0?kr(e,[...o,c.key],n,r):Mw(e,[...o,c.key],n,r):[...o,c.key]:o.length===0?null:kr(e,o,n,r)},Mw=(e,t,n="next",r)=>{const o=Oo(e,t);if(!Lo(o))return t;const i=Array.isArray(o)?o.map(((a,l)=>l)):Object.keys(o);r(i,(a=>[a,o]));const s=n==="next"?i[0]:i[i.length-1];return Mw(e,[...t,s],n,r)},B5=e=>Array.isArray(e)?e.map(((t,n)=>({index:n,value:t,key:n}))):Object.entries(e).map((([t,n],r)=>({key:t,value:n,index:r}))),Rw=(e,t)=>{var n,r,o,i;const s=e.current,a=(n=s==null?void 0:s.selectionStart)!==null&&n!==void 0?n:1/0,l=(r=s==null?void 0:s.selectionEnd)!==null&&r!==void 0?r:1/0,c=((o=s==null?void 0:s.textContent)===null||o===void 0?void 0:o.slice(0,a))+t+((i=s==null?void 0:s.textContent)===null||i===void 0?void 0:i.slice(l));return s.value=c,s==null||s.setSelectionRange(a+1,a+1),c},qc=e=>{if(e!==Dw){if(Array.isArray(e))return e.map((t=>qc(t)));if(e&&typeof e=="object")for(const t in e)e[t]=qc(e[t]);return e}},Dw="__​undefined__",Sd={displayName:"Default",fragments:{edit:"rgb(42, 161, 152)"},styles:{container:{backgroundColor:"#f6f6f6",fontFamily:"monospace"},collection:{},collectionInner:{},collectionElement:{},dropZone:{},property:"#292929",bracket:{color:"rgb(0, 43, 54)",fontWeight:"bold"},itemCount:{color:"rgba(0, 0, 0, 0.3)",fontStyle:"italic"},string:"rgb(203, 75, 22)",number:"rgb(38, 139, 210)",boolean:"green",null:{color:"rgb(220, 50, 47)",fontVariant:"small-caps",fontWeight:"bold"},input:["#292929"],inputHighlight:"#b3d8ff",error:{fontSize:"0.8em",color:"red",fontWeight:"bold"},iconCollection:"rgb(0, 43, 54)",iconEdit:"edit",iconDelete:"rgb(203, 75, 22)",iconAdd:"edit",iconCopy:"rgb(38, 139, 210)",iconOk:"green",iconCancel:"rgb(203, 75, 22)"}},Pw=m.createContext({getStyles:()=>({}),icons:{}}),H5=({theme:e=Sd,icons:t={},docRoot:n,children:r})=>{const o=U5(e,n);return d.jsx(Pw.Provider,{value:{getStyles:(i,s)=>typeof o[i]=="function"?o[i](s):o[i],icons:t},children:r})},Dn=()=>m.useContext(Pw),U5=(e,t)=>{var n,r,o,i;const s={},a=(Array.isArray(e)?e:[e]).map((u=>V5(u)?Jl({fragments:{},styles:u},s):Jl(u,s))),l=Jl(Sd,{});Object.keys(l).forEach((u=>{const f=u;a.forEach((p=>{p[f]&&(l[f]=Object.assign(Object.assign({},l[f]),p[f]))}))}));const c=Object.assign({},l);return Object.entries(s).forEach((([u,f])=>{const p=u;c[p]=h=>{const x=f(h)||{};return Object.assign(Object.assign({},l[p]),x)}})),typeof(c==null?void 0:c.inputHighlight)!="function"&&(!((n=c==null?void 0:c.inputHighlight)===null||n===void 0)&&n.backgroundColor)&&t.style.setProperty("--jer-highlight-color",(r=c==null?void 0:c.inputHighlight)===null||r===void 0?void 0:r.backgroundColor),typeof(c==null?void 0:c.iconCopy)!="function"&&(!((o=c==null?void 0:c.iconCopy)===null||o===void 0)&&o.color)&&t.style.setProperty("--jer-icon-copy-color",(i=c==null?void 0:c.iconCopy)===null||i===void 0?void 0:i.color),c},Jl=(e,t)=>{const{fragments:n,styles:r}=e,o={};return Object.entries(r).forEach((([i,s])=>{const a=(Array.isArray(s)?s:[s]).reduce(((l,c)=>{var u,f;if(typeof c=="function")return t[i]=c,Object.assign({},l);if(typeof c=="string"){const p=(u=n==null?void 0:n[c])!==null&&u!==void 0?u:c;return typeof p=="string"?Object.assign(Object.assign({},l),{[(f=W5[i])!==null&&f!==void 0?f:"color"]:p}):Object.assign(Object.assign({},l),p)}return Object.assign(Object.assign({},l),c)}),{});o[i]=a})),o},V5=e=>!("styles"in e),W5={container:"backgroundColor",collection:"backgroundColor",collectionInner:"backgroundColor",collectionElement:"backgroundColor",dropZone:"borderColor",inputHighlight:"backgroundColor"},Ow=m.createContext(null),G5=({children:e,onEditEvent:t,onCollapse:n})=>{const[r,o]=m.useState(null),[i,s]=m.useState(null),[a,l]=m.useState(null),[c,u]=m.useState({path:null,pathString:null}),f=m.useRef(null),p=m.useRef("next"),h=m.useRef(null);return d.jsx(Ow.Provider,{value:{collapseState:r,setCollapseState:x=>{o(x),n&&x!==null&&(Array.isArray(x)?x.forEach((g=>n(g))):n(x)),x!==null&&setTimeout((()=>o(null)),2e3)},getMatchingCollapseState:x=>{if(Array.isArray(r)){for(const g of r)if(Rh(x,g))return g;return null}return Rh(x,r)?r:null},currentlyEditingElement:i,setCurrentlyEditingElement:(x,g)=>{const v=typeof x=="string"||x===null?x:Gr(x,g==="key"?"key_":void 0);i!==null&&v!==null&&f.current!==null&&f.current(),s(v),t&&(Array.isArray(x)||x===null)&&t(x,g==="key"),f.current=typeof g=="function"?g:null},areChildrenBeingEdited:x=>i!==null&&i.includes(x),previouslyEditedElement:h.current,setPreviouslyEditedElement:x=>{h.current=x},tabDirection:p.current,setTabDirection:x=>{p.current=x},previousValue:a,setPreviousValue:l,dragSource:c,setDragSource:u},children:e})},Vr=()=>{const e=m.useContext(Ow);if(!e)throw new Error("Missing Context Provider");return e},Rh=(e,t)=>{if(t===null)return!1;if(!t.includeChildren)return t.path.every(((n,r)=>e[r]===n))&&t.path.length===e.length;for(const[n,r]of t.path.entries())if(r!==e[n])return!1;return!0},Kc="**INVALID_FUNCTION**",Y5=({nodeData:e,showStringQuotes:t=!0,stringTruncate:n=200,pathString:r,canEdit:o,setIsEditing:i,styles:s,translate:a,value:l,TextWrapper:c=({children:u})=>u})=>{const u=l??e.value,[f,p]=m.useState(!1),h=t?'"':"",x=u.length>n,g=()=>{o?i(!0):p(!f)};return d.jsxs("div",{id:`${r}_display`,onDoubleClick:g,onClick:v=>{(v.getModifierState("Control")||v.getModifierState("Meta"))&&g()},className:"jer-value-string",style:s,children:[h,x?d.jsxs(d.Fragment,f?{children:[d.jsx(c,{children:d.jsxs("span",{children:[u,h]})}),d.jsxs("span",{className:"jer-string-expansion jer-show-less",onClick:()=>p(!1),children:[" ",a("SHOW_LESS",e)]})]}:{children:[d.jsxs(c,{children:[d.jsx("span",{children:u.slice(0,n-2).trimEnd()})," "]}),d.jsx("span",{className:"jer-string-expansion jer-ellipsis",onClick:()=>p(!0),children:"..."}),h]}):d.jsx(c,{children:`${u}${h}`})]})},q5=({styles:e,pathString:t,value:n,setValue:r,handleEdit:o,handleKeyboard:i,keyboardCommon:s})=>{const a=m.useRef(null);return d.jsx(Iw,{className:"jer-input-text",textAreaRef:a,name:t,value:n,setValue:r,handleKeyPress:l=>{i(l,Object.assign({stringConfirm:o,stringLineBreak:()=>{const c=Rw(a,`
697
+ `);r(c)}},s))},styles:e})},K5=e=>{var{isEditing:t,path:n,enumType:r}=e,o=Nw(e,["isEditing","path","enumType"]);const{getStyles:i}=Dn(),s=Gr(n),{value:a,setValue:l,nodeData:c,handleEdit:u,handleKeyboard:f,keyboardCommon:p}=o;return t&&r?d.jsxs("div",{className:"jer-select jer-select-enums",children:[d.jsx("select",{name:`${s}-value-select`,className:"jer-select-inner",onChange:h=>l(h.target.value),value:a,autoFocus:!0,onKeyDown:h=>{f(h,Object.assign({stringConfirm:u},p))},children:r.values.map((h=>d.jsx("option",{value:h,children:h},h)))}),d.jsx("span",{className:"focus"})]}):t?d.jsx(q5,Object.assign({styles:i("input",c),pathString:s},o,{setValue:o.setValue})):d.jsx(Y5,Object.assign({pathString:s,styles:i("string",c)},o))},X5=({value:e,setValue:t,isEditing:n,path:r,setIsEditing:o,handleEdit:i,nodeData:s,handleKeyboard:a,keyboardCommon:l})=>{const{getStyles:c}=Dn();return n?d.jsx("input",{className:"jer-input-number",type:"text",name:Gr(r),value:e,onChange:u=>t(u.target.value.replace(/[^0-9.-]/g,"")),autoFocus:!0,onFocus:u=>setTimeout((()=>u.target.select()),10),onKeyDown:u=>a(u,Object.assign({numberConfirm:i,numberUp:()=>t(Number(e)+1),numberDown:()=>t(Number(e)-1)},l)),style:Object.assign({width:String(e).length/1.5+2+"em"},c("input",s))}):d.jsx("span",{onDoubleClick:()=>o(!0),className:"jer-value-number",style:c("number",s),children:e})},Z5=({value:e,setValue:t,isEditing:n,path:r,setIsEditing:o,handleEdit:i,nodeData:s,handleKeyboard:a,keyboardCommon:l})=>{const{getStyles:c}=Dn();return typeof e!="boolean"?null:n?d.jsx("input",{className:"jer-input-boolean",type:"checkbox",name:Gr(r),checked:e,onChange:()=>t(!e),onKeyDown:u=>{u.key===" "&&u.preventDefault(),a(u,Object.assign({booleanConfirm:i,booleanToggle:()=>t(!e)},l))},autoFocus:!0}):d.jsx("span",{onDoubleClick:()=>o(!0),className:"jer-value-boolean",style:c("boolean",s),children:String(e)})},Q5=(e,t)=>{const n=m.useRef(void 0),r=m.useRef(t);m.useEffect((()=>{r.current=t}),[t]);const o=i=>{r.current(i)};m.useEffect((()=>{if(window.clearTimeout(n.current),e)return n.current=window.setTimeout((()=>{window.addEventListener("keydown",o)}),100),()=>{window.clearTimeout(n.current),window.removeEventListener("keydown",o)}}),[e])},J5=({value:e,isEditing:t,setIsEditing:n,handleEdit:r,nodeData:o,handleKeyboard:i,keyboardCommon:s})=>{const{getStyles:a}=Dn();return Q5(t,(l=>i(l,Object.assign({confirm:r},s)))),d.jsx("div",{onDoubleClick:()=>n(!0),className:"jer-value-null",style:a("null",o),children:String(e)})},e$=({value:e})=>{let t="Error!";switch(typeof e){case"string":e===Kc&&(t="Function");break;case"undefined":t="Undefined";break;case"symbol":t="Symbol"}return d.jsx("span",{className:"jer-value-invalid",children:t})},t$=({size:e,style:t,className:n})=>d.jsxs("svg",{viewBox:"0 0 24 24",fill:"currentColor",width:e,height:e,className:n,style:t,children:[d.jsx("path",{d:"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4z"}),d.jsx("path",{d:"M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8z"})]}),n$=({size:e,style:t,className:n})=>d.jsxs("svg",{viewBox:"0 0 24 24",fill:"currentColor",width:e,height:e,className:n,style:t,transform:"translate(0, 0.5)",children:[d.jsx("path",{d:"M7 17.013l4.413-.015 9.632-9.54c.378-.378.586-.88.586-1.414s-.208-1.036-.586-1.414l-1.586-1.586c-.756-.756-2.075-.752-2.825-.003L7 12.583v4.43zM18.045 4.458l1.589 1.583-1.597 1.582-1.586-1.585 1.594-1.58zM9 13.417l6.03-5.973 1.586 1.586-6.029 5.971L9 15.006v-1.589z"}),d.jsx("path",{d:"M5 21h14c1.103 0 2-.897 2-2v-8.668l-2 2V19H8.158c-.026 0-.053.01-.079.01-.033 0-.066-.009-.1-.01H5V5h6.847l2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2z"})]}),r$=({size:e,style:t,className:n})=>d.jsx("svg",{viewBox:"0 0 24 24",fill:"currentColor",width:e,height:e,className:n,style:t,children:d.jsx("path",{d:"M6 19a2 2 0 002 2h8a2 2 0 002-2V7H6v12m2.46-7.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12M15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5z"})}),o$=({size:e,style:t,className:n})=>d.jsxs("svg",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,viewBox:"0 0 24 24",width:e,height:e,className:n,style:t,children:[d.jsx("path",{d:"M9 2 H15 A1 1 0 0 1 16 3 V5 A1 1 0 0 1 15 6 H9 A1 1 0 0 1 8 5 V3 A1 1 0 0 1 9 2 z"}),d.jsx("path",{d:"M8 4H6a2 2 0 00-2 2v14a2 2 0 002 2h12a2 2 0 002-2v-2M16 4h2a2 2 0 012 2v4M21 14H11"}),d.jsx("path",{d:"M15 10l-4 4 4 4"})]}),i$=({size:e,style:t,className:n})=>d.jsxs("svg",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,viewBox:"0 0 24 24",width:e,height:e,className:n,style:t,children:[d.jsx("path",{d:"M22 11.08V12a10 10 0 11-5.93-9.14"}),d.jsx("path",{d:"M22 4L12 14.01l-3-3"})]}),s$=({size:e,style:t,className:n})=>d.jsx("svg",{baseProfile:"tiny",viewBox:"0 0 24 24",fill:"currentColor",width:e,height:e,className:n,style:t,children:d.jsx("path",{d:"M12 4c-4.411 0-8 3.589-8 8s3.589 8 8 8 8-3.589 8-8-3.589-8-8-8zm-5 8c0-.832.224-1.604.584-2.295l6.711 6.711A4.943 4.943 0 0112 17c-2.757 0-5-2.243-5-5zm9.416 2.295L9.705 7.584A4.943 4.943 0 0112 7c2.757 0 5 2.243 5 5 0 .832-.224 1.604-.584 2.295z"})}),a$=({size:e,style:t,className:n})=>d.jsx("svg",{viewBox:"0 0 512 512",fill:"currentColor",width:e,height:e,className:n,style:t,children:d.jsx("path",{d:"M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"})}),Cr=({name:e,nodeData:t})=>{var n,r,o,i,s,a,l;const{getStyles:c,icons:u}=Dn(),f={size:"1.4em",className:"jer-icon"};switch(e){case"add":return(n=u==null?void 0:u.add)!==null&&n!==void 0?n:d.jsx(t$,Object.assign({},f,{style:c("iconAdd",t)}));case"edit":return(r=u==null?void 0:u.edit)!==null&&r!==void 0?r:d.jsx(n$,Object.assign({},f,{style:c("iconEdit",t)}));case"delete":return(o=u==null?void 0:u.delete)!==null&&o!==void 0?o:d.jsx(r$,Object.assign({},f,{style:c("iconDelete",t),size:"1.45em"}));case"copy":return(i=u==null?void 0:u.copy)!==null&&i!==void 0?i:d.jsx(o$,Object.assign({},f,{style:c("iconCopy",t),size:"1.2em"}));case"ok":return(s=u==null?void 0:u.ok)!==null&&s!==void 0?s:d.jsx(i$,Object.assign({},f,{style:Object.assign({fontSize:"90%"},c("iconOk",t))}));case"cancel":return(a=u==null?void 0:u.cancel)!==null&&a!==void 0?a:d.jsx(s$,Object.assign({},f,{style:Object.assign({fontSize:"130%"},c("iconCancel",t))}));case"chevron":return(l=u==null?void 0:u.chevron)!==null&&l!==void 0?l:d.jsx(a$,{size:"1em",style:c("iconCollection",t)});default:return d.jsx(d.Fragment,{})}},Lw=({startEdit:e,handleDelete:t,handleAdd:n,enableClipboard:r,type:o,customButtons:i,nodeData:s,translate:a,keyboardControls:l,handleKeyboard:c,editConfirmRef:u,getNewKeyOptions:f,jsonStringify:p,onEditEvent:h,showIconTooltips:x})=>{const{getStyles:g}=Dn(),v=a("KEY_NEW",s),[y,b]=m.useState(v),[w,S]=m.useState(!1),{key:E,path:k,value:C}=s,A=Array.isArray(w),D=z=>{var $;if(h&&h(z?[...k,null]:null,z),!z)return void S(!1);const O=Object.keys(Oo(s.fullData,k)),L=f?($=f(s))===null||$===void 0?void 0:$.filter((_=>!O.includes(_))):null;L&&b(""),S(L==null||L)};return d.jsxs("div",{className:"jer-edit-buttons",style:{opacity:w?1:void 0},onClick:z=>z.stopPropagation(),children:[r&&d.jsx("div",{onClick:z=>{var $;z.stopPropagation();let O,L,_="value",M="",N=null;if(r){const I=Ed(z);if(I&&l.clipboardModifier.includes(I)?(O=l$(k),M=O,_="path"):(O=C,M=typeof O=="object"?p(C):String(O)),!navigator.clipboard)return void(typeof r=="function"&&r({success:!1,value:O,stringValue:M,path:k,key:E,type:_,errorMessage:"Can't access clipboard API"}));($=navigator.clipboard)===null||$===void 0||$.writeText(M).then((()=>L=!0)).catch((T=>{L=!1,N=T.message})).finally((()=>{typeof r=="function"&&r({success:L,errorMessage:N,value:O,stringValue:M,path:k,key:E,type:_})}))}},className:"jer-copy-pulse",title:x?a("TOOLTIP_COPY",s):"",children:d.jsx(Cr,{name:"copy",nodeData:s})}),e&&d.jsx("div",{onClick:e,title:x?a("TOOLTIP_EDIT",s):"",children:d.jsx(Cr,{name:"edit",nodeData:s})}),t&&d.jsx("div",{onClick:t,title:x?a("TOOLTIP_DELETE",s):"",children:d.jsx(Cr,{name:"delete",nodeData:s})}),n&&d.jsx("div",{onClick:()=>{o==="object"?D(!0):n("")},title:x?a("TOOLTIP_ADD",s):"",children:d.jsx(Cr,{name:"add",nodeData:s})}),i==null?void 0:i.map((({Element:z,onClick:$},O)=>d.jsx("div",{onClick:L=>$&&$(s,L),children:d.jsx(z,{nodeData:s})},O))),w&&n&&o==="object"&&d.jsxs(d.Fragment,{children:[A?d.jsxs("div",{className:"jer-select jer-select-keys",children:[d.jsxs("select",{name:"new-key-select",className:"jer-select-inner",onChange:z=>{n(z.target.value),D(!1)},defaultValue:"",autoFocus:!0,onKeyDown:z=>{c(z,{cancel:()=>D(!1)})},children:[d.jsx("option",{value:"",disabled:!0,children:w.length>0?a("KEY_SELECT",s):a("NO_KEY_OPTIONS",s)}),w.map((z=>d.jsx("option",{value:z,children:z},z)))]}),d.jsx("span",{className:"focus"})]}):d.jsx("input",{className:"jer-input-new-key",type:"text",name:"new-object-key",value:y,onChange:z=>b(z.target.value),autoFocus:!0,onFocus:z=>z.target.select(),onKeyDown:z=>{c(z,{stringConfirm:()=>{n&&(D(!1),n(y),b(v))},cancel:()=>{D(!1),b(v)}})},style:g("input",s)}),d.jsx(kd,{onOk:()=>{A&&!y||(D(!1),n(y))},onCancel:()=>{D(!1)},nodeData:s,editConfirmRef:u,hideOk:A})]})]})},kd=({onOk:e,onCancel:t,nodeData:n,editConfirmRef:r,hideOk:o=!1})=>d.jsxs("div",{className:"jer-confirm-buttons",children:[!o&&d.jsx("div",{onClick:e,ref:r,children:d.jsx(Cr,{name:"ok",nodeData:n})}),d.jsx("div",{onClick:t,children:d.jsx(Cr,{name:"cancel",nodeData:n})})]}),l$=e=>e.reduce(((t,n)=>typeof n=="number"?`${t}[${n}]`:t===""?n:`${t}.${n}`),""),c$=["string","number","boolean","null","object","array"],$w=({props:e,collapsed:t})=>{const{data:n,nodeData:r,parentData:o,onEdit:i,onError:s,showErrorMessages:a,restrictEditFilter:l,restrictDeleteFilter:c,restrictAddFilter:u,restrictDragFilter:f,translate:p,errorMessageTimeout:h}=e,{currentlyEditingElement:x,setCurrentlyEditingElement:g}=Vr(),[v,y]=m.useState(null),b=Object.assign(Object.assign({},r),{collapsed:t}),{path:w,key:S,size:E}=b,k=Gr(w),C=!l(b),A=!c(b),D=!u(b),z=!f(b)&&A&&x===null,$=T=>{a&&(y(T),setTimeout((()=>y(null)),h)),console.warn("Error",T)},O=m.useCallback(((T,j)=>{$(T.message),s&&s({currentData:b.fullData,errorValue:j,currentValue:n,name:S,path:w,error:T})}),[s,a]),L=x===k,_=x===`key_${k}`,M=typeof w.slice(-1)[0]=="number",N={isEditing:L,isEditingKey:_,isArray:M,canEditKey:o!==null&&C&&D&&A&&!M},I=S===""&&w.length>0?p("EMPTY_STRING",b):null;return{pathString:k,nodeData:b,path:w,name:S,size:E,canEdit:C,canDelete:A,canAdd:D,canDrag:z,error:v,showError:$,onError:O,setError:y,handleEditKey:T=>{if(g(null),S===T||!o)return;const j=w.slice(0,-1);if(Object.keys(o).includes(T))return void O({code:"KEY_EXISTS",message:p("ERROR_KEY_EXISTS",b)},T);const R=Object.fromEntries(Object.entries(o).map((([P,U])=>P===S?[T,U]:[P,U])));i(R,j).then((P=>{P&&O({code:"UPDATE_ERROR",message:P},T)}))},derivedValues:N,emptyStringKey:I}},zw=({canDrag:e,canDragOnto:t,path:n,nodeData:r,onMove:o,onError:i,translate:s})=>{const{getStyles:a}=Dn(),{dragSource:l,setDragSource:c}=Vr(),[u,f]=m.useState(!1),p=Gr(n),h=m.useMemo((()=>e?{onDragStart:y=>{y.stopPropagation(),c({path:n,pathString:p})},onDragEnd:y=>{y.stopPropagation(),c({path:null,pathString:null})}}:{}),[e,p]),x=m.useMemo((()=>y=>t?{onDragOver:b=>{b.stopPropagation(),b.preventDefault()},onDrop:b=>{b.stopPropagation(),v(y),c({path:null,pathString:null}),f(!1)},onDragEnter:b=>{var w;b.stopPropagation(),p.startsWith((w=l.pathString)!==null&&w!==void 0?w:"")||f(y)},onDragExit:b=>{b.stopPropagation(),f(!1)}}:{}),[l,t,p]),g=m.useMemo((()=>t&&l.pathString!==null?d.jsx("div",Object.assign({className:"jer-drop-target-bottom",style:{height:"50%",position:"absolute",width:"100%",top:"50%",zIndex:n.length}},x("below"))):null),[l,t,n.length]),v=y=>{var b,w;const S=(b=l.path)===null||b===void 0?void 0:b.slice(-1)[0],E=(w=l.path)===null||w===void 0?void 0:w.slice(0,-1).join("."),k=n.slice(0,-1).join(""),{parentData:C}=r;typeof S=="string"&&C&&!Array.isArray(C)&&Object.keys(C).includes(S)&&S in C&&E!==k?i({code:"KEY_EXISTS",message:s("ERROR_KEY_EXISTS",r)},S):o(l.path,n,y).then((A=>{A&&i({code:"UPDATE_ERROR",message:A},r.value)}))};return{dragSourceProps:h,getDropTargetProps:x,BottomDropTarget:g,DropTargetPadding:({position:y,nodeData:b})=>u===y?d.jsx("div",{className:"jer-drag-n-drop-padding",style:a("dropZone",b)}):null,handleDrop:v}},u$=(e,t,n,r)=>{var o,i,s;if(!t.current)return 0;const a=parseInt((o=getComputedStyle(n.current).getPropertyValue("line-height"))!==null&&o!==void 0?o:"16px"),l=((s=(i=t.current)===null||i===void 0?void 0:i.offsetWidth)!==null&&s!==void 0?s:0)/(.5*a),c=r(e).replace(/\\n/g,`
698
+ `).split(`
699
+ `).map((u=>Math.ceil(u.length/l))).reduce(((u,f)=>u+f),0)*a;return Math.min(c+30,window.innerHeight-50)},Ea=({isEditingKey:e,canEditKey:t,pathString:n,path:r,name:o,handleKeyboard:i,handleEditKey:s,handleCancel:a,handleClick:l,keyValueArray:c,styles:u,getNextOrPrevious:f,emptyStringKey:p})=>{const{setCurrentlyEditingElement:h}=Vr();return e?d.jsx("input",{className:"jer-input-text jer-key-edit",type:"text",name:n,defaultValue:o,autoFocus:!0,onFocus:x=>x.target.select(),onKeyDown:x=>i(x,{stringConfirm:()=>s(x.target.value),cancel:a,tabForward:()=>{if(s(x.target.value),c){const g=c==null?void 0:c[0][0];h(g?[...r,g]:f("next"))}else h(r)},tabBack:()=>{s(x.target.value),h(f("prev"))}}),style:{width:String(o).length/1.5+.5+"em"}}):d.jsxs("span",{className:"jer-key-text",style:Object.assign(Object.assign({},u),{minWidth:`${Math.min(String(o).length+1,5)}ch`,flexShrink:o.length>10?1:0}),onDoubleClick:()=>t&&h(r,"key"),onClick:l,children:[p?d.jsx("span",{className:"jer-empty-string",children:p}):o,o!==""||p?d.jsx("span",{className:"jer-key-colon",children:":"}):null]})},Fw=e=>{const{data:t,parentData:n,onEdit:r,onDelete:o,onChange:i,onMove:s,enableClipboard:a,canDragOnto:l,restrictTypeSelection:c,searchFilter:u,searchText:f,showLabel:p,stringTruncate:h,showStringQuotes:x,indent:g,translate:v,customNodeDefinitions:y,customNodeData:b,handleKeyboard:w,keyboardControls:S,sort:E,editConfirmRef:k,jsonStringify:C,showIconTooltips:A}=e,{getStyles:D}=Dn(),{setCurrentlyEditingElement:z,setCollapseState:$,previouslyEditedElement:O,setPreviouslyEditedElement:L,tabDirection:_,setTabDirection:M,previousValue:N,setPreviousValue:I}=Vr(),[T,j]=m.useState(typeof t=="function"?Kc:t),{pathString:R,nodeData:P,path:U,name:B,canEdit:V,canDelete:G,canDrag:q,error:H,onError:W,handleEditKey:K,emptyStringKey:J,derivedValues:re}=$w({props:e}),{dragSourceProps:Z,getDropTargetProps:ne,BottomDropTarget:ee,DropTargetPadding:ce}=zw({canDrag:q,canDragOnto:l,path:U,nodeData:P,onMove:s,onError:W,translate:v}),[we,Me]=m.useState(Xc(t,b)),ae=m.useCallback((Y=>{if(!i)return void j(Y);const X=i({currentData:P.fullData,newValue:Y,currentValue:T,name:B,path:U});j(X)}),[i]);m.useEffect((()=>{j(typeof t=="function"?Kc:t),Me(Xc(t,b))}),[t,H]);const{CustomNode:_e,customNodeProps:Xe,hideKey:Je,showEditTools:st=!0,showOnEdit:et,showOnView:de,passOriginalNode:at}=b,nt=[...c$,...y.filter((({showInTypesSelector:Y=!1,name:X})=>Y&&!!X)).map((({name:Y})=>Y))],ut=m.useMemo((()=>{if(typeof c=="boolean")return c?[]:nt;if(Array.isArray(c))return c;const Y=c(P);return typeof Y=="boolean"?Y?[]:nt:Y}),[P,c]),[rt,Tt]=m.useState(((Y,X)=>{var Q;if(typeof Y!="string")return null;const le=X.filter((pe=>pe instanceof Object&&pe.enum&&pe.values.includes(Y)&&pe.matchPriority));return le.sort(((pe,je)=>{var Oe,Be;return((Oe=je.matchPriority)!==null&&Oe!==void 0?Oe:0)-((Be=pe.matchPriority)!==null&&Be!==void 0?Be:0)})),(Q=le[0])!==null&&Q!==void 0?Q:null})(T,ut)),{isEditing:ot}=re,jt=jw("value",P,u,f);if(ot&&(!jt||!V)){const Y=kr(P.fullData,U,_,E);z(Y||O)}if(!jt)return null;const mt=Y=>{let X;if(z(null),I(null),Y===void 0||(Q=>Q&&typeof Q=="object"&&"type"in Q&&"target"in Q&&"preventDefault"in Q&&typeof Q.preventDefault=="function")(Y))switch(we){case"object":X={[v("DEFAULT_NEW_KEY",P)]:T};break;case"array":X=T??[];break;case"number":{const Q=Number(T);X=isNaN(Q)?0:Q;break}default:X=T}else X=Y;r(X,U).then((Q=>{Q&&W({code:"UPDATE_ERROR",message:Q},X)}))},dt=()=>{z(null),N===null?(j(t),I(null)):r(N,U)},{isEditingKey:ft,canEditKey:vt}=re,Ve=!ot&&H,Ye=ot&&ut.length>1,Mt=(we!=="invalid"||_e)&&!H&&st,be=p&&!Je,me=_e&&(ot&&et||!ot&&de),Ae={value:T,parentData:n,setValue:ae,isEditing:ot,canEdit:V,setIsEditing:V?()=>z(U):()=>{},handleEdit:mt,handleCancel:dt,path:U,stringTruncate:h,showStringQuotes:x,nodeData:P,enumType:rt,translate:v,handleKeyboard:w,keyboardCommon:{cancel:dt,tabForward:()=>{M("next"),L(R);const Y=kr(P.fullData,U,"next",E);Y&&(mt(),z(Y))},tabBack:()=>{M("prev"),L(R);const Y=kr(P.fullData,U,"prev",E);Y&&(mt(),z(Y))}}},Re={canEditKey:vt,isEditingKey:ft,pathString:R,path:U,name:B,handleKeyboard:w,handleEditKey:K,handleCancel:dt,styles:D("property",P),getNextOrPrevious:Y=>kr(P.fullData,U,Y,E),emptyStringKey:J},Pe=me?d.jsx(_e,Object.assign({},e,{value:T,customNodeProps:Xe,setValue:ae,handleEdit:mt,handleCancel:dt,handleKeyPress:Y=>w(Y,{stringConfirm:mt,cancel:dt}),isEditing:ot,setIsEditing:()=>z(U),getStyles:D,originalNode:at?Dh(t,Ae):void 0,originalNodeKey:at?d.jsx(Ea,Object.assign({},Re)):void 0,canEdit:V,keyboardCommon:Ae.keyboardCommon,onError:W})):Dh(t,Ae);return d.jsxs("div",Object.assign({className:"jer-component jer-value-component",style:{marginLeft:n!==null?g/2+"em":0,position:"relative"},draggable:q},Z,ne("above"),{children:[ee,d.jsx(ce,{position:"above",nodeData:P}),d.jsxs("div",{className:"jer-value-main-row",style:{flexWrap:B.length>10?"wrap":"nowrap"},children:[be&&d.jsx(Ea,Object.assign({},Re)),d.jsxs("div",{className:"jer-value-and-buttons",children:[d.jsx("div",{className:"jer-input-component",children:Pe}),ot?d.jsx(kd,{onOk:mt,onCancel:dt,nodeData:P,editConfirmRef:k}):Mt&&d.jsx(Lw,{startEdit:V?()=>{I(N),z(U,dt)}:void 0,handleDelete:G?()=>{o(T,U).then((Y=>{Y&&W({code:"DELETE_ERROR",message:Y},T)}))}:void 0,enableClipboard:a,translate:v,customButtons:e.customButtons,nodeData:P,handleKeyboard:w,keyboardControls:S,editConfirmRef:k,jsonStringify:C,showIconTooltips:A}),Ye&&d.jsxs("div",{className:"jer-select jer-select-types",children:[d.jsx("select",{name:`${B}-type-select`,className:"jer-select-inner",onChange:Y=>(X=>{const Q=y.find((je=>je.name===X));if(Q)return r(Q.defaultValue,U),Me(X),Tt(null),z(null),void $({path:U,collapsed:!1,includeChildren:!1});const le=ut.find((je=>je instanceof Object&&je.enum===X));if(le)return typeof T=="string"&&le.values.includes(T)||r(le.values[0],U).then((je=>{je&&(W({code:"UPDATE_ERROR",message:je},pe),z(null))})),void Tt(le);const pe=d$(T,X,v("DEFAULT_NEW_KEY",P),b!=null&&b.CustomNode?v("DEFAULT_STRING",P):void 0);["string","number","boolean"].includes(X)||z(null),r(pe,U).then((je=>{je?(W({code:"UPDATE_ERROR",message:je},pe),z(null)):Tt(null)}))})(Y.target.value),value:rt?rt.enum:we,children:ut.map((Y=>Y instanceof Object&&"enum"in Y?d.jsx("option",{value:Y.enum,children:Y.enum},Y.enum):d.jsx("option",{value:Y,children:Y},Y)))}),d.jsx("span",{className:"focus"})]}),Ve&&d.jsx("span",{className:"jer-error-slug",style:D("error",P),children:H})]})]}),d.jsx(ce,{position:"below",nodeData:P})]}))},Xc=(e,t)=>t!=null&&t.CustomNode&&(t!=null&&t.name)&&t.showInTypesSelector?t.name:typeof e=="string"?"string":typeof e=="number"?"number":typeof e=="boolean"?"boolean":e===null?"null":"invalid",Dh=(e,t)=>{const n=Xc(e),{value:r}=t;switch(n){case"string":return d.jsx(K5,Object.assign({},t,{value:r}));case"number":return d.jsx(X5,Object.assign({},t,{value:r}));case"boolean":return d.jsx(Z5,Object.assign({},t,{value:r}));case"null":return d.jsx(J5,Object.assign({},t));default:return d.jsx(e$,Object.assign({},t))}},d$=(e,t,n,r)=>{switch(t){case"string":return r??String(e);case"number":{const o=Number(e);return isNaN(o)?0:o}case"boolean":return!!e;case"null":return null;case"object":return{[n]:e};case"array":return[e];default:return String(e)}},Bw=(e=[],t)=>{const n=e.filter((({condition:x})=>x(t)));if(n.length===0)return{};const r=n[0],{element:o,wrapperElement:i,customNodeProps:s,wrapperProps:a,hideKey:l=!1,showEditTools:c=!0,showOnEdit:u=!1,showOnView:f=!0,showCollectionWrapper:p=!0}=r,h=Nw(r,["element","wrapperElement","customNodeProps","wrapperProps","hideKey","showEditTools","showOnEdit","showOnView","showCollectionWrapper"]);return Object.assign({CustomNode:o,CustomWrapper:i,customNodeProps:s,wrapperProps:a,hideKey:l,showEditTools:c,showOnEdit:u,showOnView:f,showCollectionWrapper:p},h)},Hw=e=>{const{getStyles:t}=Dn(),{collapseState:n,setCollapseState:r,getMatchingCollapseState:o,currentlyEditingElement:i,setCurrentlyEditingElement:s,areChildrenBeingEdited:a,previousValue:l,setPreviousValue:c}=Vr(),{mainContainerRef:u,data:f,nodeData:p,parentData:h,showCollectionCount:x,onEdit:g,onAdd:v,onDelete:y,canDragOnto:b,collapseFilter:w,collapseAnimationTime:S,onMove:E,enableClipboard:k,onEditEvent:C,showIconTooltips:A,searchFilter:D,searchText:z,indent:$,sort:O,showArrayIndices:L,defaultValue:_,newKeyOptions:M,translate:N,customNodeDefinitions:I,customNodeData:T,jsonParse:j,jsonStringify:R,TextEditor:P,keyboardControls:U,handleKeyboard:B,insertAtTop:V,onCollapse:G,editConfirmRef:q,collapseClickZones:H}=e,[W,K]=m.useState(R(f)),J=w(p),{contentRef:re,isAnimating:Z,maxHeight:ne,collapsed:ee,animateCollapse:ce,cssTransitionValue:we}=((oe,Le,Et,ze,Lt)=>{const[vn,tn]=m.useState(Et?0:void 0),[Pn,Yr]=m.useState(Et),Xn=m.useRef(!1),Zn=m.useRef(null),ls=m.useRef(0),cs=m.useRef(0),ll=Le/1e3+"s",qr=m.useCallback((Yo=>{var qo,Ko;if(Pn!==Yo){switch(window.clearTimeout(cs.current),Xn.current=!0,Yo){case!0:{const Kr=(Ko=(qo=Zn.current)===null||qo===void 0?void 0:qo.offsetHeight)!==null&&Ko!==void 0?Ko:0;ls.current=Kr,tn(Kr),setTimeout((()=>{tn(0)}),5);break}case!1:tn(ls.current||u$(oe,Zn,ze,Lt))}Yr(!Pn),cs.current=window.setTimeout((()=>{Xn.current=!1,Yo||tn(void 0)}),Le)}}),[Le,Pn,oe,ze,Lt]);return{contentRef:Zn,isAnimating:Xn.current,animateCollapse:qr,maxHeight:vn,collapsed:Pn,cssTransitionValue:ll}})(f,S,J,u,R),{pathString:Me,nodeData:ae,path:_e,name:Xe,size:Je,canEdit:st,canDelete:et,canAdd:de,canDrag:at,error:nt,setError:ut,onError:rt,handleEditKey:Tt,emptyStringKey:ot,derivedValues:jt}=$w({props:e,collapsed:ee}),{dragSourceProps:mt,getDropTargetProps:dt,BottomDropTarget:ft,DropTargetPadding:vt}=zw({canDrag:at,canDragOnto:b,path:_e,nodeData:ae,onMove:E,onError:rt,translate:N}),Ve=m.useRef(!J),{isEditing:Ye,isEditingKey:Mt,isArray:be,canEditKey:me}=jt;m.useEffect((()=>{K(R(f))}),[f,R]),m.useEffect((()=>{const oe=w(ae)&&!Ye;Ve.current=!oe,ce(oe)}),[w]),m.useEffect((()=>{if(n!==null){const oe=o(_e);oe&&(Ve.current=!0,ce(oe.collapsed))}}),[n]);const Ae=m.useRef(null),Re=m.useCallback(((oe,Le)=>{if(typeof _!="function")return _;const Et=_(oe,Le);return Et!==void 0?Et:null}),[_]),Pe=m.useCallback((oe=>M?typeof M!="function"?M:M(oe):null),[M]),{CustomNode:Y,customNodeProps:X,CustomWrapper:Q,wrapperProps:le={},hideKey:pe,showEditTools:je=!0,showOnEdit:Oe,showOnView:Be,showCollectionWrapper:ve=!0}=T,fe=a(Me);if(fe&&ee&&ce(!1),!(jw("collection",ae,D,z)||ae.level===0)&&!fe)return null;const Ce=Array.isArray(f)?"array":"object",Ee=Ce==="array"?{open:"[",close:"]"}:{open:"{",close:"}"},$e=oe=>{if(oe.key!=="Tab"||oe.getModifierState("Shift"))B(oe,{objectConfirm:Se,cancel:He});else{oe.preventDefault();const Le=Rw(Ae," ");K(Le)}},ye=oe=>{oe.stopPropagation();const Le=Ed(oe);if(Le&&U.collapseModifier.includes(Le))return Ve.current=!0,void r({collapsed:!ee,path:_e,includeChildren:!0});i&&i.includes(Me)||(Ve.current=!0,r(null),G&&G({path:_e,collapsed:!ee,includeChildren:!1}),ce(!ee))},Se=()=>{try{const oe=j(W);if(s(null),c(null),ut(null),R(oe)===R(f))return;g(oe,_e).then((Le=>{Le&&rt({code:"UPDATE_ERROR",message:Le},oe)}))}catch{rt({code:"INVALID_JSON",message:N("ERROR_INVALID_JSON",ae)},W)}},Te=_e.length>0?()=>{y(f,_e).then((oe=>{oe&&rt({code:"DELETE_ERROR",message:oe},f)}))}:void 0,He=()=>{s(null),l===null?(ut(null),K(R(f)),c(null)):g(l,_e)},kt=x==="when-closed"?ee:x,he=!Ye&&je,Ie=(L||!be)&&!pe&&Xe!==void 0,wt=Y&&(Ye&&Oe||!Ye&&Be),se=Object.entries(f).map((([oe,Le])=>[Ce==="array"?Number(oe):oe,Le]));Ce==="object"&&O(se,(oe=>oe));const F=Ve.current?Ye?d.jsxs("div",{className:"jer-collection-text-edit",children:[P?d.jsx(P,{value:W,onChange:K,onKeyDown:oe=>B(oe,{objectConfirm:Se,cancel:He})}):d.jsx(Iw,{textAreaRef:Ae,className:"jer-collection-text-area",name:Me,value:W,setValue:K,handleKeyPress:$e,styles:t("input",ae)}),d.jsx("div",{className:"jer-collection-input-button-row",children:d.jsx(kd,{onOk:Se,onCancel:He,nodeData:ae,editConfirmRef:q})})]}):se.map((([oe,Le],Et)=>{const ze={key:oe,value:Le,path:[..._e,oe],level:_e.length+1,index:Et,size:Lo(Le)?Object.keys(Le).length:null,parentData:f,fullData:ae.fullData},Lt=Bw(I,ze);return d.jsx("div",{className:"jer-collection-element",style:t("collectionElement",ze),children:Lo(Le)&&!(Lt!=null&&Lt.renderCollectionAsValue)?d.jsx(Hw,Object.assign({},e,{data:Le,parentData:f,nodeData:ze,showCollectionCount:x,canDragOnto:st,customNodeData:Lt}),oe):d.jsx(Fw,Object.assign({},e,{data:Le,parentData:f,nodeData:ze,canDragOnto:st,showLabel:Ce==="object"||L,customNodeData:Lt}),oe)},oe)})):null,te=!!ve&&ee&&!fe;te||(Ve.current=!0);const ie=Object.assign(Object.assign({},e),{data:f,value:f,parentData:h,nodeData:ae,setValue:oe=>lo(void 0,void 0,void 0,(function*(){return yield g(oe,_e)})),handleEdit:Se,handleCancel:He,handleKeyPress:$e,isEditing:Ye,setIsEditing:()=>s(_e),getStyles:t,canDragOnto:st,canEdit:st,keyboardCommon:{},onError:rt}),tt=wt?d.jsx(Y,Object.assign({customNodeProps:X},ie,{children:F})):F,gt=he&&d.jsx(Lw,{startEdit:st?()=>{Ve.current=!0,c(null),s(_e)}:void 0,handleAdd:de?oe=>{ce(!1);const Le=Re(ae,oe);if(Ce==="array"){const Et=V.array?0:f.length,ze=V.array?{insert:!0}:{};v(Le,[..._e,Et],ze).then((Lt=>{Lt&&rt({code:"ADD_ERROR",message:Lt},Le)}))}else if(oe in f)rt({code:"KEY_EXISTS",message:N("ERROR_KEY_EXISTS",ae)},oe);else{const Et=V.object?{insertBefore:0}:{};v(Le,[..._e,oe],Et).then((ze=>{ze&&rt({code:"ADD_ERROR",message:ze},Le)}))}}:void 0,handleDelete:et?Te:void 0,enableClipboard:k,type:Ce,nodeData:ae,translate:N,customButtons:e.customButtons,keyboardControls:U,handleKeyboard:B,getNewKeyOptions:Pe,editConfirmRef:q,jsonStringify:R,onEditEvent:C,showIconTooltips:A}),pt={canEditKey:me,isEditingKey:Mt,pathString:Me,path:_e,name:Xe,handleKeyboard:B,handleEditKey:Tt,handleCancel:He,keyValueArray:se,styles:t("property",ae),getNextOrPrevious:oe=>kr(ae.fullData,_e,oe,O),handleClick:H.includes("property")?ye:oe=>oe.stopPropagation(),emptyStringKey:ot},bt=d.jsxs("div",Object.assign({className:"jer-component jer-collection-component",style:Object.assign(Object.assign({marginLeft:(_e.length===0?0:$/2)+"em"},t("collection",ae)),{position:"relative"}),draggable:at},mt,dt("above"),{children:[d.jsx("div",{className:"jer-clickzone",style:{width:$/2+1+"em",zIndex:10+2*ae.level},onClick:H.includes("left")?ye:void 0}),!Ye&&ft,d.jsx(vt,{position:"above",nodeData:ae}),ve?d.jsxs("div",{className:"jer-collection-header-row",style:{position:"relative"},onClick:H.includes("header")?ye:void 0,children:[d.jsxs("div",{className:"jer-collection-name",children:[d.jsx("div",{className:"jer-collapse-icon jer-accordion-icon"+(ee?" jer-rotate-90":""),style:{zIndex:11+2*ae.level,transition:we},onClick:ye,children:d.jsx(Cr,{name:"chevron",rotate:ee,nodeData:ae})}),Ie&&d.jsx(Ea,Object.assign({},pt)),!Ye&&d.jsx("span",{className:"jer-brackets jer-bracket-open",style:t("bracket",ae),children:Ee.open})]}),!Ye&&kt&&d.jsx("div",{className:"jer-collection-item-count"+(kt?" jer-visible":" jer-hidden"),style:Object.assign(Object.assign({},t("itemCount",ae)),{transition:we}),children:Je===1?N("ITEM_SINGLE",Object.assign(Object.assign({},ae),{size:1}),1):N("ITEMS_MULTIPLE",ae,Je)}),d.jsx("div",{className:"jer-brackets"+(te?" jer-visible":" jer-hidden"),style:Object.assign(Object.assign({},t("bracket",ae)),{transition:we}),children:Ee.close}),gt]}):pe?d.jsx(d.Fragment,{}):d.jsxs("div",{className:"jer-collection-header-row",style:{position:"relative"},children:[d.jsx(Ea,Object.assign({},pt)),gt]}),d.jsxs("div",{className:"jer-collection-inner",style:Object.assign(Object.assign({overflowY:te||Z?"clip":"visible",maxHeight:fe?void 0:ne},t("collectionInner",ae)),{transition:we}),ref:re,children:[tt,d.jsx("div",{className:Ye?"jer-collection-error-row":"jer-collection-error-row-edit",children:nt&&d.jsx("span",{className:"jer-error-slug",style:t("error",ae),children:nt})}),!Ye&&ve&&d.jsx("div",{className:"jer-brackets jer-bracket-outside",style:Object.assign(Object.assign({},t("bracket",ae)),{marginLeft:($<3?-1:$<6?-.5:0)+"em"}),children:Ee.close})]}),d.jsx(vt,{position:"below",nodeData:ae})]}));return Q?d.jsx(Q,Object.assign({customNodeProps:le},ie,{children:bt})):bt},f$={ITEM_SINGLE:"{{count}} item",ITEMS_MULTIPLE:"{{count}} items",KEY_NEW:"Enter new key",KEY_SELECT:"Select key",NO_KEY_OPTIONS:"No key options",ERROR_KEY_EXISTS:"Key already exists",ERROR_INVALID_JSON:"Invalid JSON",ERROR_UPDATE:"Update unsuccessful",ERROR_DELETE:"Delete unsuccessful",ERROR_ADD:"Adding node unsuccessful",DEFAULT_STRING:"New data!",DEFAULT_NEW_KEY:"key",SHOW_LESS:"(Show less)",EMPTY_STRING:"<empty string>",TOOLTIP_COPY:"Copy to clipboard",TOOLTIP_EDIT:"Edit",TOOLTIP_DELETE:"Delete",TOOLTIP_ADD:"Add"},p$=(e,t)=>(n,r,o)=>((i,s,a,l,c)=>{if(s[l]){const f=s[l](a);if(f!==null)return f}const u=l in i?i[l]:f$[l];return c===void 0?u:u==null?void 0:u.replace("{{count}}",String(c))})(e,t,r,n,o);var Ph=[],pi=[];(function(e,t){if(e&&typeof document<"u"){var n,r=t.prepend===!0?"prepend":"append",o=t.singleTag===!0,i=typeof t.container=="string"?document.querySelector(t.container):document.getElementsByTagName("head")[0];if(o){var s=Ph.indexOf(i);s===-1&&(s=Ph.push(i)-1,pi[s]={}),n=pi[s]&&pi[s][r]?pi[s][r]:pi[s][r]=a()}else n=a();e.charCodeAt(0)===65279&&(e=e.substring(1)),n.styleSheet?n.styleSheet.cssText+=e:n.appendChild(document.createTextNode(e))}function a(){var l=document.createElement("style");if(l.setAttribute("type","text/css"),t.attributes)for(var c=Object.keys(t.attributes),u=0;u<c.length;u++)l.setAttribute(c[u],t.attributes[c[u]]);var f=r==="prepend"?"afterbegin":"beforeend";return i.insertAdjacentElement(f,l),l}})(':root{--jer-select-border:#b6b6b6;--jer-select-focus:#777;--jer-select-arrow:#777;--jer-form-border:1px solid #ededf0;--jer-form-border-focus:1px solid #e2e2e2;--jer-highlight-color:#b3d8ff}.jer-visible{opacity:1}.jer-hidden{opacity:0}.jer-select select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;color:#000;cursor:inherit;font-family:inherit;font-size:.8em;line-height:inherit;margin:0;outline:none;padding:0 1em 0 0;z-index:1}select::-ms-expand{display:none}.jer-select{align-items:center;background-color:#fff;background-image:linear-gradient(0deg,#f9f9f9,#fff 33%);border:1px solid var(--jer-select-border);border-radius:.25em;cursor:pointer;display:grid;grid-template-areas:"select";line-height:1.1;max-width:15ch;min-width:12ch;padding:.25em .5em;position:relative}.jer-select select,.jer-select:after{grid-area:select}.jer-select:not(.jer-select--multiple):after{background-color:var(--jer-select-arrow);clip-path:polygon(100% 0,0 0,50% 100%);content:"";height:.5em;justify-self:end;width:.8em}select:focus+.focus{border:1px solid var(--jer-select-focus);border-radius:inherit;bottom:-1px;left:-1px;position:absolute;right:-1px;top:-1px}.jer-select-inner{text-overflow:ellipsis;width:100%}.jer-editor-container{border-radius:.5em;font-size:16px;line-height:1;padding:1em 1em 1em 2em;position:relative;text-align:left}.jer-editor-container textarea{border:var(--jer-form-border);border-radius:.3em;color:var(--jer-input-color);outline:none}.jer-editor-container textarea:focus{border:var(--jer-form-border-focus)}.jer-editor-container input{border:var(--jer-form-border);border-radius:.3em;font-family:inherit;outline:none}.jer-editor-container input:focus{border:var(--jer-form-border-focus)}.jer-editor-container ::selection{background-color:var(--jer-highlight-color)}.jer-collection-header-row,.jer-value-main-row{align-items:center;display:flex;gap:.3em;min-height:1.7em}.jer-collection-header-row{display:flex;flex-wrap:wrap}.jer-collapse-icon{left:-1.2em;position:absolute;top:.35em}.jer-collection-inner{position:relative}.jer-collection-text-edit{align-items:flex-start;display:flex;flex-direction:column;gap:.3em;line-height:1.1em}.jer-collection-text-area{font-family:inherit;font-size:.85em;max-height:40em;overflow:hidden;padding:.2em .5em 0;resize:both}.jer-collection-input-button-row{display:flex;font-size:150%;justify-content:flex-end;margin-top:.4em;width:100%}.jer-collection-error-row{bottom:.5em;position:absolute}.jer-error-slug{margin-left:1em}.jer-value-component{position:relative}.jer-value-main-row{display:flex;gap:0}.jer-value-and-buttons{align-items:center;display:flex;justify-content:flex-start;padding-left:.5em}.jer-value-error-row{position:absolute}.jer-value-string{line-height:1.3em;overflow-wrap:anywhere;white-space:pre-wrap;word-break:break-word}.jer-string-expansion{cursor:pointer;filter:saturate(50%);opacity:.6}.jer-show-less{font-size:80%}.jer-hyperlink{text-decoration:underline}.jer-input-text{font-family:inherit;font-size:.9em;height:1.4em;line-height:1.2em;margin:0;min-width:6em;overflow:hidden;padding:.25em .5em .2em;resize:none}.jer-input-boolean{margin-left:.3em;margin-right:.3em;transform:scale(1.5)}.jer-key-text{line-height:1.1em;white-space:pre-wrap;word-break:break-word}.jer-key-edit{font-size:inherit;font-size:.9em;padding:0 .3em}.jer-value-invalid{font-style:italic;opacity:.5}.jer-input-number{font-size:90%;min-width:3em}.jer-confirm-buttons,.jer-edit-buttons{align-items:center;cursor:pointer;display:flex;height:1em}.jer-input-buttons{gap:.4em}.jer-edit-buttons{gap:.4em;margin-left:.5em;opacity:0}.jer-confirm-buttons{gap:.2em;margin-left:.4em}.jer-edit-buttons:hover{opacity:1;position:relative}.jer-collection-header-row:hover>.jer-edit-buttons,.jer-value-and-buttons:hover>.jer-edit-buttons,.jer-value-main-row:hover>.jer-edit-buttons{opacity:1}.jer-copy-pulse{position:relative;transition:.3s}.jer-copy-pulse:hover{opacity:.85;transform:scale(1.2);transition:.3s}.jer-copy-pulse:after{border-radius:50%;box-shadow:0 0 15px 5px var(--jer-icon-copy-color);content:"";display:block;height:100%;left:0;opacity:0;position:absolute;top:0;transition:all .5s;width:100%}.jer-copy-pulse:active:after{border-radius:4em;box-shadow:0 0 0 0 var(--jer-icon-copy-color);left:0;opacity:1;position:absolute;top:0;transition:0s}.jer-copy-pulse:active{top:.07em}.jer-rotate-90{transform:rotate(-90deg)}.jer-icon:hover{opacity:.85;transform:scale(1.2);transition:.3s}.jer-empty-string{font-size:90%;font-style:italic}.jer-drag-n-drop-padding{border:1px dashed #e0e0e0;border-radius:.3em;height:.5em}.jer-clickzone{height:calc(100% - .8em);left:-1em;position:absolute;top:1.2em}',{});const h$=({data:e,setData:t,rootName:n="root",onUpdate:r=()=>{},onEdit:o=r,onDelete:i=r,onAdd:s=r,onChange:a,onError:l,onEditEvent:c,showErrorMessages:u=!0,enableClipboard:f=!0,indent:p=2,collapse:h=!1,collapseAnimationTime:x=300,showCollectionCount:g=!0,restrictEdit:v=!1,restrictDelete:y=!1,restrictAdd:b=!1,restrictTypeSelection:w=!1,restrictDrag:S=!0,viewOnly:E,searchFilter:k,searchText:C,searchDebounceTime:A=350,keySort:D=!1,showArrayIndices:z=!0,showStringQuotes:$=!0,showIconTooltips:O=!1,defaultValue:L=null,newKeyOptions:_,minWidth:M=250,maxWidth:N="min(600px, 90vw)",rootFontSize:I,stringTruncate:T=250,translations:j={},className:R,id:P,customText:U={},customNodeDefinitions:B=[],customButtons:V=[],jsonParse:G=JSON.parse,jsonStringify:q=(ee,ce)=>JSON.stringify(ee,ce,2),TextEditor:H,errorMessageTimeout:W=2500,keyboardControls:K={},externalTriggers:J,insertAtTop:re=!1,onCollapse:Z,collapseClickZones:ne=["header","left"]})=>{const{getStyles:ee}=Dn(),{setCurrentlyEditingElement:ce}=Vr(),we=m.useMemo((()=>mi(h)),[h]),Me=m.useMemo((()=>p$(j,U)),[j,U]),[ae,_e]=m.useState(C),[Xe,Je]=(({setData:be,data:me})=>{const[Ae,Re]=m.useState(be?void 0:me),Pe=m.useCallback((Y=>{be?be(Y):Re(Y)}),[be]);return m.useEffect((()=>{be||Re(me)}),[me]),[be?me:Ae,Pe]})({setData:t,data:e}),st=m.useRef(null);m.useEffect((()=>{ce(null);const be=setTimeout((()=>_e(C)),A);return()=>clearTimeout(be)}),[C,A]);const et={key:n,path:[],level:0,index:0,value:Xe,size:typeof Xe=="object"&&Xe!==null?Object.keys(Xe).length:1,parentData:null,fullData:Xe},de=(be,me)=>lo(void 0,void 0,void 0,(function*(){const Ae=yield be(me);if(Ae===!0||Ae===void 0)return void Je(me.newData);const Re=x$(Ae)?Ae:["error",Ae],[Pe,Y]=Re;if(Pe==="error")return Je(me.currentData),Y===!1?Me("ERROR_UPDATE",et):String(Y);Je(Y)})),at=m.useMemo((()=>mi(v,E)),[v,E]),nt=m.useMemo((()=>mi(y,E)),[y,E]),ut=m.useMemo((()=>mi(b,E)),[b,E]),rt=m.useMemo((()=>mi(S,E)),[S,E]),Tt=m.useMemo((()=>g$(k)),[k]),ot=m.useMemo((()=>(be=>{const me=Object.assign({},Mh);for(const Ae of Object.keys(Mh)){const Re=Ae;if(be[Re]){const Pe=be[Re],Y=["clipboardModifier","collapseModifier"].includes(Ae)?Array.isArray(Pe)?Pe:[Pe]:typeof Pe=="string"?{key:Pe}:Pe;me[Re]=Y,["stringConfirm","numberConfirm","booleanConfirm"].forEach((X=>{!be[X]&&be.confirm&&(me[X]=me.confirm)}))}}return me})(K)),[K]),jt=m.useCallback(((be,me)=>((Ae,Re,Pe)=>{const Y=Object.entries(Re);for(const[X,Q]of Y)if(F5(Pe,Ae[X],X)){Pe.preventDefault(),Q();break}})(ot,me,be)),[ot]),mt=m.useMemo((()=>{const be=Oh(B,"stringifyReplacer");return me=>q(me,be)}),[B,q]),dt=m.useMemo((()=>{const be=Oh(B,"parseReviver");return me=>{const Ae=G(me,be);return qc(Ae)}}),[B,G]),ft=m.useRef(null);((be,me)=>{const{setCurrentlyEditingElement:Ae,currentlyEditingElement:Re,setCollapseState:Pe}=Vr();m.useEffect((()=>{if(!be)return;const{collapse:Y,edit:X}=be;Y&&Pe(Y);const Q=!(X!=null&&X.path)||Gr(X.path)===Re;switch(X==null?void 0:X.action){case"accept":Q&&(me.current&&me.current.click(),Ae(null));break;case"cancel":Q&&Ae(null);break;default:X!=null&&X.path&&Ae(X.path)}}),[be])})(J,ft);const vt=m.useCallback(((be,me)=>{D!==!1&&(typeof D!="function"?be.sort(((Ae,Re)=>{const Pe=me(Ae)[0],Y=me(Re)[0];return Pe<Y?-1:Pe>Y?1:0})):be.sort(((Ae,Re)=>D(me(Ae),me(Re)))))}),[D]),Ve=Bw(B,et),Ye={mainContainerRef:st,name:n,nodeData:et,onEdit:(be,me)=>lo(void 0,void 0,void 0,(function*(){const{currentData:Ae,newData:Re,currentValue:Pe,newValue:Y}=hi(Xe,me,be,"update");if(Pe!==Y)return yield de(o,{currentData:Ae,newData:Re,currentValue:Pe,newValue:Y,name:me.slice(-1)[0],path:me})})),onDelete:(be,me)=>lo(void 0,void 0,void 0,(function*(){const{currentData:Ae,newData:Re,currentValue:Pe,newValue:Y}=hi(Xe,me,be,"delete");return yield de(i,{currentData:Ae,newData:Re,currentValue:Pe,newValue:Y,name:me.slice(-1)[0],path:me})})),onAdd:(be,me,Ae)=>lo(void 0,void 0,void 0,(function*(){const{currentData:Re,newData:Pe,currentValue:Y,newValue:X}=hi(Xe,me,be,"add",Ae);return yield de(s,{currentData:Re,newData:Pe,currentValue:Y,newValue:X,name:me.slice(-1)[0],path:me})})),onChange:a,onError:l,onEditEvent:c,showErrorMessages:u,onMove:(be,me,Ae)=>lo(void 0,void 0,void 0,(function*(){if(be===null)return;const{currentData:Re,newData:Pe,currentValue:Y}=hi(Xe,be,"","delete"),X=be.slice(-1)[0],Q=me.slice(0,-1),le=me.slice(-1)[0];let pe=typeof le=="number"?Ae==="above"?le:le+1:typeof X=="number"?`arr_${X}`:X;be.slice(0,-1).join(".")===me.slice(0,-1).join(".")&&typeof X=="number"&&typeof pe=="number"&&X<pe&&(pe-=1);const je=typeof pe=="number"?{insert:!0}:Ae==="above"?{insertBefore:le}:{insertAfter:le},{newData:Oe,newValue:Be}=hi(Pe,[...Q,pe],Y,"add",je);return yield de(o,{currentData:Re,newData:Oe,currentValue:Y,newValue:Be,name:me.slice(-1)[0],path:me})})),showCollectionCount:g,collapseFilter:we,collapseAnimationTime:x,restrictEditFilter:at,restrictDeleteFilter:nt,restrictAddFilter:ut,restrictTypeSelection:w,restrictDragFilter:rt,canDragOnto:!1,searchFilter:Tt,searchText:ae,enableClipboard:f,keySort:D,sort:vt,showArrayIndices:z,showStringQuotes:$,showIconTooltips:O,indent:p,defaultValue:L,newKeyOptions:_,stringTruncate:T,translate:Me,customNodeDefinitions:B,customNodeData:Ve,customButtons:V,parentData:null,jsonParse:dt,jsonStringify:mt,TextEditor:H,errorMessageTimeout:W,handleKeyboard:jt,keyboardControls:ot,insertAtTop:{object:re===!0||re==="object",array:re===!0||re==="array"},onCollapse:Z,editConfirmRef:ft,collapseClickZones:ne},Mt=Object.assign(Object.assign({},ee("container",et)),{minWidth:M,maxWidth:N});return Mt.fontSize=I??Mt.fontSize,d.jsx("div",{id:P,ref:st,className:`jer-editor-container ${R??""}`,style:Mt,children:Lo(Xe)&&!Ve.renderCollectionAsValue?d.jsx(Hw,Object.assign({data:Xe},Ye)):d.jsx(Fw,Object.assign({data:Xe,showLabel:!0},Ye))})},m$=e=>{var t;const[n,r]=m.useState();return m.useEffect((()=>{const o=document.documentElement;r(o)}),[]),n?d.jsx(H5,{theme:(t=e.theme)!==null&&t!==void 0?t:Sd,icons:e.icons,docRoot:n,children:d.jsx(G5,{onEditEvent:e.onEditEvent,onCollapse:e.onCollapse,children:d.jsx(h$,Object.assign({},e))})}):null},hi=(e,t,n,r,o={})=>{if(t.length===0)return{currentData:e,newData:n,currentValue:e,newValue:n};const i=Object.assign({remove:r==="delete"},o),s=r!=="add"?Oo(e,t):void 0;return{currentData:e,newData:P5(e,t,n,i),currentValue:s,newValue:r!=="delete"?n:void 0}},mi=(e,t)=>t?()=>!0:typeof e=="boolean"?()=>e:typeof e=="number"?({level:n})=>n>=e:e,g$=e=>{if(e!==void 0)return e==="value"?$o:e==="key"?jh:e==="all"?(t,n)=>$o(t,n)||jh(t,n):e},x$=e=>Array.isArray(e)&&e.length===2&&["error","value"].includes(e[0]),Oh=(e,t)=>{const n=t==="stringifyReplacer"?[r=>r===void 0?Dw:r]:[];if(n.push(...e.map((r=>r[t])).filter((r=>!!r))),n.length!==0)return(r,o)=>{let i=o;for(const s of n)i=s(i);return i}},v$=e=>({displayName:e?"Solace Dark JER":"Solace Light JER",styles:{container:{backgroundColor:"transparent",fontFamily:"monospace",fontSize:"14px"},property:e?"var(--color-primary-text-w10)":"var(--color-primary-text-wMain)",bracket:"var(--color-secondary-text-w50)",itemCount:{color:"var(--color-secondary-text-w50)",fontStyle:"italic"},string:e?"var(--color-success-w70)":"var(--color-success-wMain)",number:"var(--color-accent-n0-wMain)",boolean:e?"var(--color-warning-w70)":"var(--color-warning-wMain)",null:{color:"var(--color-secondary-text-w50)",fontStyle:"italic"},iconCollection:"var(--color-secondary-text-w50)",iconCopy:"var(--color-secondary-text-w50)"}}),Zc=({data:e,maxDepth:t=2,className:n=""})=>{const{currentTheme:r}=Qg(),o=m.useMemo(()=>v$(r==="dark"),[r]),i=m.useMemo(()=>t===void 0||t<0?!1:t,[t]),s=m.useMemo(()=>e===null||typeof e!="object"?{value:e}:e,[e]),a=`rounded-lg border overflow-auto ${n}`.trim();return e===void 0?d.jsx("div",{className:a,children:d.jsx("span",{className:"italic",children:"No JSON data"})}):d.jsx("div",{className:a,children:d.jsx(m$,{data:s,theme:o,viewOnly:!0,collapse:i,showStringQuotes:!0,showCollectionCount:"when-closed"})})};let Ps=null,Os=null;function y$({children:e}){const{fetchCsrfToken:t}=Kg(),[n,r]=m.useState(Ps),[o,i]=m.useState(!Ps&&!Os),[s,a]=m.useState(Os);return m.useEffect(()=>{if(Ps||Os)return;let l=!0;return(async()=>{i(!0),a(null);try{let u=await Ct("/api/v1/config",{credentials:"include",headers:{Accept:"application/json"}}),f;if(u.ok)f=await u.json();else{const x=await u.text();if(console.error("Initial config fetch failed:",u.status,x),u.status===403){console.log("Config fetch failed with 403, attempting to get CSRF token first...");const g=await t();if(!g)throw new Error("Failed to obtain CSRF token after config fetch failed.");if(console.log("Retrying config fetch with CSRF token..."),u=await Ct("/api/v1/config",{credentials:"include",headers:{"X-CSRF-TOKEN":g,Accept:"application/json"}}),!u.ok){const v=await u.text();throw console.error("Config fetch retry failed:",u.status,v),new Error(`Failed to fetch config on retry: ${u.status} ${v}`)}f=await u.json()}else throw new Error(`Failed to fetch config: ${u.status} ${x}`)}const p=f.frontend_use_authorization??!1;p&&(console.log("Fetching CSRF token for config-related requests..."),await t());const h={configServerUrl:f.frontend_server_url,configAuthLoginUrl:f.frontend_auth_login_url,configUseAuthorization:p,configWelcomeMessage:f.frontend_welcome_message,configRedirectUrl:f.frontend_redirect_url,configCollectFeedback:f.frontend_collect_feedback,configBotName:f.frontend_bot_name,frontend_use_authorization:f.frontend_use_authorization};l&&(Ps=h,r(h)),console.log("App config processed and set:",h)}catch(u){if(console.error("Error initializing app:",u),l){const f=u.message||"Failed to load application configuration.";Os=f,a(f)}}finally{l&&i(!1)}})(),()=>{l=!1}},[t]),n?d.jsx(Wg.Provider,{value:n,children:e}):o?d.jsx("div",{className:"flex min-h-screen items-center justify-center bg-white dark:bg-gray-900",children:d.jsxs("div",{className:"text-center",children:[d.jsx("div",{className:"border-solace-green mx-auto mb-4 h-12 w-12 animate-spin rounded-full border-b-2"}),d.jsx("h1",{className:"text-2xl text-black dark:text-white",children:"Loading Configuration..."})]})}):s?d.jsx("div",{className:"flex min-h-screen items-center justify-center bg-red-100 dark:bg-red-900",children:d.jsxs("div",{className:"rounded border border-red-400 bg-white p-4 text-center dark:bg-gray-800",children:[d.jsx("h1",{className:"text-xl font-bold text-red-700 dark:text-red-300",children:"Configuration Error"}),d.jsx("p",{className:"mt-2 text-red-600 dark:text-red-200",children:s}),d.jsx("p",{className:"mt-2 text-sm text-gray-600 dark:text-gray-400",children:"Please check the backend server and network connection, then refresh the page."})]})}):d.jsx("div",{className:"flex min-h-screen items-center justify-center bg-white dark:bg-gray-900",children:d.jsxs("div",{className:"text-center",children:[d.jsx("div",{className:"border-solace-green mx-auto mb-4 h-12 w-12 animate-spin rounded-full border-b-2"}),d.jsx("h1",{className:"text-2xl",children:"Initializing Application..."})]})})}const w$=({children:e})=>{const{configServerUrl:t}=Wo(),n=`${t}/api/v1`,[r,o]=m.useState(null),[i,s]=m.useState(!1),[a,l]=m.useState(!1),[c,u]=m.useState(null),[f,p]=m.useState({}),[h,x]=m.useState([]),[g,v]=m.useState(null),[y,b]=m.useState(0),[w,S]=m.useState(!1),E=10,k=m.useRef(null),C=m.useRef(null),A=m.useRef(null);m.useEffect(()=>{C.current=r},[r]);const D=m.useCallback(T=>{p(j=>{var B,V,G;const R=T.task_id;if(!R)return T.direction==="discovery"||console.warn("TaskMonitorContext: Received event without task_id, skipping:",T),j;const P=j[R],U=new Date(T.timestamp);if(P){const q=[...P.events,T].sort((H,W)=>new Date(H.timestamp).getTime()-new Date(W.timestamp).getTime());return{...j,[R]:{...P,events:q,lastUpdated:U}}}else{let q="Task started...";if(T.direction==="request"&&((V=(B=T.full_payload)==null?void 0:B.method)!=null&&V.startsWith("message/"))){const W=T.full_payload.params;if((G=W==null?void 0:W.message)!=null&&G.parts){const K=W.message.parts.filter(J=>J.kind==="text"&&J.text);K.length>0&&(q=K[K.length-1].text)}}const H={taskId:R,initialRequestText:q,events:[T],firstSeen:U,lastUpdated:U};return x(W=>[R,...W.filter(K=>K!==R)]),{...j,[R]:H}}})},[]),z=m.useCallback(()=>{console.log("TaskMonitorContext: SSE connection opened."),s(!1),l(!0),u(null),b(0),S(!1),A.current&&(clearTimeout(A.current),A.current=null)},[]),$=m.useCallback(T=>{try{const j=JSON.parse(T.data);D(j)}catch(j){console.error("TaskMonitorContext: Failed to parse SSE 'a2a_message' event data:",j,"Raw data:",T.data),u("Received unparseable 'a2a_message' event from server.")}},[D]),O=m.useCallback(T=>{console.error("TaskMonitorContext: SSE connection error:",T),s(!1),l(!1),k.current&&k.current.readyState===EventSource.CLOSED?u("Task Monitor SSE connection closed by server or network issue."):u("Task Monitor SSE connection error occurred."),k.current&&(k.current.close(),k.current=null),A.current&&(clearTimeout(A.current),A.current=null)},[]),L=m.useCallback(async()=>{if(a||i){console.warn("TaskMonitorContext: Stream is already active or connecting.");return}console.log("TaskMonitorContext: Attempting to connect stream..."),s(!0);try{const T={subscription_targets:[{type:"my_a2a_messages"}]},j=await Ct(`${n}/visualization/subscribe`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(T),credentials:"include"});if(!j.ok){const G=await j.json().catch(()=>({detail:"Failed to subscribe"}));if(G.error_type==="authorization_failure"){const q=G.message||"Access denied: insufficient permissions",H=G.suggested_action?` ${G.suggested_action}`:"";throw new Error(`${q}${H}`)}else if(G.error_type==="subscription_failure"){const q=G.message||"Subscription failed",H=G.suggested_action?` ${G.suggested_action}`:"";throw new Error(`${q}${H}`)}else throw new Error(G.detail||G.message||`Subscription failed: ${j.statusText}`)}const R=await j.json();o(R.stream_id);const P=R.sse_endpoint_url.startsWith("/")?`${t||""}${R.sse_endpoint_url}`:R.sse_endpoint_url;k.current&&k.current.close();const U=eu(),B=`${P}${U?`?token=${U}`:""}`,V=new EventSource(B,{withCredentials:!0});k.current=V,V.onopen=z,V.addEventListener("a2a_message",$),V.onerror=O}catch(T){console.error("TaskMonitorContext: Error connecting stream:",T),u(T instanceof Error?T.message:String(T)),s(!1),l(!1),o(null),k.current&&(k.current.close(),k.current=null),A.current&&(clearTimeout(A.current),A.current=null)}},[n,t,a,i,z,$,O]),_=m.useCallback(()=>{if(A.current){console.log("TaskMonitorContext: Reconnection already in progress, skipping...");return}if(y>=E){console.warn("TaskMonitorContext: Max reconnection attempts reached. Stopping auto-reconnection."),S(!1),u(`Connection lost. Max reconnection attempts (${E}) reached.`);return}const T=2e3;console.log(`TaskMonitorContext: Attempting reconnection ${y+1}/${E} in ${T}ms...`),S(!0),b(j=>j+1),A.current=setTimeout(()=>{L()},T)},[y,L]),M=m.useCallback(async()=>{console.log("TaskMonitorContext: Disconnecting stream..."),A.current&&(clearTimeout(A.current),A.current=null),k.current&&(k.current.close(),k.current=null);const T=C.current;if(T)try{await Ct(`${n}/visualization/${T}/unsubscribe`,{method:"DELETE",credentials:"include"})}catch(j){console.error(`TaskMonitorContext: Error unsubscribing from stream ID: ${T}`,j)}o(null),s(!1),l(!1),u(null),p({}),x([]),v(null),b(0),S(!1)},[n]);m.useEffect(()=>()=>{console.log("TaskMonitorProvider: Unmounting. Cleaning up Task Monitor SSE connection."),k.current&&(k.current.close(),k.current=null);const T=C.current;if(T)if(navigator.sendBeacon){const j=new FormData;navigator.sendBeacon(`${n}/visualization/${T}/unsubscribe`,j)}else Ct(`${n}/visualization/${T}/unsubscribe`,{method:"DELETE",credentials:"include",keepalive:!0}).catch(j=>console.error("TaskMonitorProvider: Error in final unsubscribe on unmount (fetch):",j))},[n]),m.useEffect(()=>{!a&&!i&&(console.log("TaskProvider: Auto-connecting to task monitor stream..."),L())},[]),m.useEffect(()=>{!a&&!i&&c&&(console.log("TaskMonitorContext: Connection lost, initiating auto-reconnection..."),_())},[a,i,c,_]),m.useEffect(()=>()=>{A.current&&(clearTimeout(A.current),A.current=null)},[]);const N=m.useCallback(T=>{v(T)},[]),I={isTaskMonitorConnecting:i,isTaskMonitorConnected:a,taskMonitorSseError:c,monitoredTasks:f,monitoredTaskOrder:h,highlightedStepId:g,isReconnecting:w,reconnectionAttempts:y,connectTaskMonitorStream:L,disconnectTaskMonitorStream:M,setHighlightedStepId:N};return d.jsx(Yg.Provider,{value:I,children:e})},b$=({children:e})=>{const{configWelcomeMessage:t,configServerUrl:n}=Wo(),r=`${n}/api/v1`,o=1*1024*1024,i=Y=>new Promise((X,Q)=>{const le=new FileReader;le.readAsDataURL(Y),le.onload=()=>X(le.result.split(",")[1]),le.onerror=pe=>Q(pe)}),[s,a]=m.useState(()=>`web-session-${Date.now()}`),[l,c]=m.useState([]),[u,f]=m.useState(""),[p,h]=m.useState(!1),[x,g]=m.useState([]),[v,y]=m.useState(null),b=m.useRef(null),[w,S]=m.useState(""),[E,k]=m.useState(!1),C=m.useRef(E);m.useEffect(()=>{C.current=E},[E]);const[A,D]=m.useState(null),z=m.useRef(null),$=m.useRef(!1),O=m.useRef(null),L=m.useRef(0),{agents:_,error:M,isLoading:N,refetch:I}=k_(),{artifacts:T,isLoading:j,refetch:R,error:P}=C_(),[U,B]=m.useState(!0),[V,G]=m.useState("files"),[q,H]=m.useState(!1),[W,K]=m.useState(null),[J,re]=m.useState(!1),[Z,ne]=m.useState(new Set),[ee,ce]=m.useState(!1),[we,Me]=m.useState(null),[ae,_e]=m.useState(null),[Xe,Je]=m.useState(null),[st,et]=m.useState(null),de=m.useCallback((Y,X)=>{g(Q=>{if(Q.find(Oe=>Oe.message===Y))return Q;const pe=Date.now().toString(),je={id:pe,message:Y,type:X||"info"};return setTimeout(()=>{g(Oe=>Oe.filter(Be=>Be.id!==pe))},3e3),[...Q,je]})},[]),at=m.useCallback(async Y=>{const X=new FormData;X.append("upload_file",Y,Y.name);try{const Q=await Ct(`${r}/artifacts/${encodeURIComponent(Y.name)}`,{method:"POST",body:X,credentials:"include"});if(!Q.ok){const pe=await Q.json().catch(()=>({detail:`Failed to upload ${Y.name}`}));throw new Error(pe.detail||`HTTP error ${Q.status}`)}const le=await Q.json();return de(`Artifact "${Y.name}" uploaded successfully.`),await R(),le.uri||null}catch(Q){return de(`Error uploading artifact "${Y.name}": ${Q instanceof Error?Q.message:"Unknown error"}`),null}},[r,de,R]),nt=m.useCallback(async Y=>{try{const X=await Ct(`${r}/artifacts/${encodeURIComponent(Y)}`,{method:"DELETE",credentials:"include"});if(!X.ok&&X.status!==204){const Q=await X.json().catch(()=>({detail:`Failed to delete ${Y}`}));throw new Error(Q.detail||`HTTP error ${X.status}`)}de(`File "${Y}" deleted successfully.`),await R()}catch(X){de(`Error deleting file "${Y}": ${X instanceof Error?X.message:"Unknown error"}`)}},[r,de,R]),ut=m.useCallback(Y=>{K(Y),H(!0)},[]),rt=m.useCallback(()=>{K(null),H(!1)},[]),Tt=m.useCallback(async()=>{W&&await nt(W.filename),rt()},[W,nt,rt]),ot=m.useCallback(()=>{if(Z.size===0){de("No files selected for deletion.");return}ce(!0)},[Z,de]),jt=m.useCallback(async()=>{ce(!1);const Y=Array.from(Z);let X=0,Q=0;for(const le of Y)try{const pe=await Ct(`${r}/artifacts/${encodeURIComponent(le)}`,{method:"DELETE",credentials:"include"});if(!pe.ok&&pe.status!==204)throw new Error(`Failed to delete ${le}`);X++}catch(pe){console.error(pe),Q++}X>0&&de(`${X} files(s) deleted successfully.`),Q>0&&de(`Failed to delete ${Q} files(s).`),await R(),ne(new Set),re(!1)},[Z,r,de,R]),mt=m.useCallback(async Y=>{_e(null),Je(null),et(null);try{const X=await Ct(`${r}/artifacts/${encodeURIComponent(Y)}/versions`,{credentials:"include"});if(!X.ok)throw new Error("Error fetching version list");const Q=await X.json();if(!Q||Q.length===0)throw new Error("No versions available");_e(Q.sort((fe,Ce)=>fe-Ce));const le=Math.max(...Q);Je(le);const pe=await Ct(`${r}/artifacts/${encodeURIComponent(Y)}/versions/${le}`,{credentials:"include"});if(!pe.ok)throw new Error("Error fetching latest version content");const je=await pe.blob(),Oe=await new Promise((fe,Ce)=>{const Ee=new FileReader;Ee.onloadend=()=>{var $e;return fe((($e=Ee.result)==null?void 0:$e.toString().split(",")[1])||"")},Ee.onerror=Ce,Ee.readAsDataURL(je)}),Be=T.find(fe=>fe.filename===Y),ve={name:Y,mime_type:(Be==null?void 0:Be.mime_type)||"application/octet-stream",content:Oe,last_modified:(Be==null?void 0:Be.last_modified)||new Date().toISOString()};return et(ve),ve}catch(X){return de(`Error loading preview for ${Y}: ${X instanceof Error?X.message:"Unknown error"}`),null}},[r,de,T]),dt=m.useCallback(async(Y,X)=>{if(!ae||!ae.includes(X))return de(`Version ${X} is not available for ${Y}.`),null;et(null);try{const Q=await Ct(`${r}/artifacts/${encodeURIComponent(Y)}/versions/${X}`,{credentials:"include"});if(!Q.ok)throw new Error(`Error fetching version ${X}`);const le=await Q.blob(),pe=await new Promise((Be,ve)=>{const fe=new FileReader;fe.onloadend=()=>{var Ce;return Be(((Ce=fe.result)==null?void 0:Ce.toString().split(",")[1])||"")},fe.onerror=ve,fe.readAsDataURL(le)}),je=T.find(Be=>Be.filename===Y),Oe={name:Y,mime_type:(je==null?void 0:je.mime_type)||"application/octet-stream",content:pe,last_modified:(je==null?void 0:je.last_modified)||new Date().toISOString()};return Je(X),et(Oe),Oe}catch(Q){return de(`Error loading version ${X}: ${Q instanceof Error?Q.message:"Unknown error"}`),null}},[r,de,T,ae]),ft=m.useCallback(Y=>{de(`Loading preview for attached file: ${Y.name}`),et(Y),_e(null),Je(null)},[de]),vt=m.useCallback(Y=>{B(!1),G(Y),typeof window<"u"&&window.dispatchEvent(new CustomEvent("expand-side-panel",{detail:{tab:Y}}))},[]),Ve=m.useCallback(()=>{z.current&&(clearTimeout(z.current),z.current=null),b.current&&(b.current.close(),b.current=null),$.current=!1},[]),Ye=m.useCallback(Y=>{var Ee;L.current+=1;const X=L.current;let Q;try{console.log("TEST-SSE ChatProvider Raw Message:",Y.data),Q=JSON.parse(Y.data)}catch($e){console.error("Failed to parse SSE message:",$e),de("Received unparseable agent update.","error");return}if("error"in Q&&Q.error){const ye=`Error: ${Q.error.message}`;c(Se=>{const Te=Se.filter(He=>!He.isStatusBubble);return Te.push({role:"agent",parts:[{kind:"text",text:ye}],isUser:!1,isError:!0,isComplete:!0,metadata:{messageId:`msg-${crypto.randomUUID()}`,lastProcessedEventSequence:X}}),Te}),h(!1),Ve(),y(null);return}if(!("result"in Q)||!Q.result){console.warn("Received SSE message without a result or error field.",Q);return}const le=Q.result;let pe=!1,je,Oe,Be;switch(le.kind){case"task":pe=!0,je=void 0,Be=le.id,le.artifacts&&le.artifacts.length>0&&console.log("Final task has artifacts to process:",le.artifacts);break;case"status-update":pe=le.final,je=(Ee=le.status)==null?void 0:Ee.message,Be=le.taskId;break;case"artifact-update":Oe=le.artifact,Be=le.taskId;break;default:console.warn("Received unknown result kind in SSE message:",le);return}const ve=[],fe=[];let Ce=null;if(je!=null&&je.parts)for(const $e of je.parts)if($e.kind==="data"){const ye=$e.data;if(ye&&typeof ye=="object"&&"type"in ye)switch(ye.type){case"agent_progress_update":Ce=String((ye==null?void 0:ye.status_text)??"Processing...");break;case"artifact_creation_progress":Ce=`Saving artifact: ${String((ye==null?void 0:ye.filename)??"unknown file")} (${Number((ye==null?void 0:ye.bytes_saved)??0)} bytes)`;break;case"tool_invocation_start":break;default:ve.push($e)}}else if($e.kind==="file"){const Se=$e.file,Te={name:Se.name||"untitled_file",mime_type:Se.mimeType};"bytes"in Se&&Se.bytes?Te.content=Se.bytes:"uri"in Se&&Se.uri&&(Te.uri=Se.uri),fe.push(Te)}else ve.push($e);Ce&&(O.current=Ce),c($e=>{var kt;const ye=[...$e];let Se=ye[ye.length-1];Se!=null&&Se.isStatusBubble&&(ye.pop(),Se=ye[ye.length-1]);const Te=ve.find(he=>he.kind==="text"),He=ve.filter(he=>he.kind!=="text");if(Se&&!Se.isUser&&!Se.isComplete&&Se.taskId===le.taskId&&(Te||fe.length>0)){const he={...Se,parts:[...Se.parts],files:Se.files?[...Se.files]:[],isComplete:pe||fe.length>0,metadata:{...Se.metadata,lastProcessedEventSequence:X}};if(Te){const Ie=he.parts[he.parts.length-1];(Ie==null?void 0:Ie.kind)==="text"?he.parts[he.parts.length-1]={...Ie,text:Ie.text+Te.text}:he.parts.push(Te)}He.length>0&&he.parts.push(...He),fe.length>0&&he.files.push(...fe),ye[ye.length-1]=he}else if(ve.some(Ie=>Ie.kind==="text"&&Ie.text.trim())||fe.length>0||Oe){const Ie={role:"agent",parts:ve,files:fe.length>0?fe:void 0,taskId:le.taskId,isUser:!1,isComplete:pe||fe.length>0,metadata:{messageId:((kt=Q.id)==null?void 0:kt.toString())||`msg-${crypto.randomUUID()}`,sessionId:le.contextId,lastProcessedEventSequence:X}};Oe&&(Ie.artifactNotification={name:Oe.name||Oe.artifactId}),ye.push(Ie)}if(!pe&&O.current)ye.push({role:"agent",parts:[{kind:"text",text:O.current}],taskId:le.taskId,isUser:!1,isStatusBubble:!0,isComplete:!1,metadata:{messageId:`status-${crypto.randomUUID()}`,lastProcessedEventSequence:X}});else if(pe){O.current=null;const he=ye.findLastIndex(Ie=>!Ie.isUser&&Ie.taskId===Be);he!==-1&&(ye[he]={...ye[he],isComplete:!0,metadata:{...ye[he].metadata,lastProcessedEventSequence:X}})}return ye}),pe&&(C.current&&(de("Task successfully cancelled."),z.current&&clearTimeout(z.current),k(!1)),h(!1),Ve(),y(null),$.current=!0,R(),setTimeout(()=>{$.current=!1},100))},[de,Ve,R]),Mt=m.useCallback(async()=>{var X;const Y="ChatProvider.handleNewSession:";if(console.log(`${Y} Starting new session process...`),Ve(),p&&v&&w&&!E){console.log(`${Y} Cancelling current task ${v}`);try{await Ct(`${r}/tasks/cancel`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({agent_name:w,task_id:v}),credentials:"include"})}catch(Q){console.warn(`${Y} Failed to cancel current task:`,Q)}}z.current&&(clearTimeout(z.current),z.current=null),k(!1);try{console.log(`${Y} Requesting new session from backend...`);const Q=await Ct(`${r}/sessions/new`,{method:"POST",credentials:"include",headers:{"Content-Type":"application/json"}});if(!Q.ok){const Oe=await Q.json().catch(()=>({detail:`HTTP error ${Q.status}`}));throw new Error(Oe.detail||`Failed to create new session: ${Q.status}`)}const le=await Q.json(),pe=(X=le==null?void 0:le.result)==null?void 0:X.sessionId;if(!pe)throw new Error("Backend did not return a valid session ID");console.log(`${Y} Received new backend session ID: ${pe}`),a(pe),c(t?[{parts:[{kind:"text",text:t}],isUser:!1,isComplete:!0,role:"agent",metadata:{sessionId:pe,lastProcessedEventSequence:0}}]:[]),f(""),h(!1),y(null),D(null),Me(null),$.current=!1,O.current=null,L.current=0,console.log(`${Y} Refreshing artifacts for new session...`),await R(),de("New session started successfully."),console.log(`${Y} New session setup complete.`)}catch(Q){console.error(`${Y} Error creating new session:`,Q),de(`Failed to create new session: ${Q instanceof Error?Q.message:"Unknown error"}`),console.log(`${Y} Falling back to frontend-only session reset...`);const le=`web-session-${Date.now()}`;a(le),c(t?[{parts:[{kind:"text",text:t}],isUser:!1,isComplete:!0,role:"agent",metadata:{sessionId:le,lastProcessedEventSequence:0}}]:[]),f(""),h(!1),y(null),D(null),$.current=!1,O.current=null,L.current=0,de("Session reset to frontend-only mode due to backend error.")}typeof window<"u"&&window.dispatchEvent(new CustomEvent("new-chat-session",{detail:{sessionId:s}}))},[Ve,p,v,w,E,r,t,de,R,s]),be=m.useCallback(async()=>{if(!p&&!E||!v){de("No active task to cancel.");return}if(E){de("Cancellation already in progress.");return}de(`Requesting cancellation for task ${v}...`),k(!0);try{const Y={jsonrpc:"2.0",id:`req-${crypto.randomUUID()}`,method:"tasks/cancel",params:{id:v}},X=await Ct(`${r}/tasks/${v}:cancel`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(Y)});if(X.status===202)z.current&&clearTimeout(z.current),z.current=setTimeout(()=>{de(`Cancellation for task ${v} timed out. Allowing new input.`),k(!1),h(!1),Ve(),y(null),z.current=null,c(Q=>Q.filter(le=>!le.isStatusBubble))},15e3);else{const Q=await X.json().catch(()=>({detail:"Unknown cancellation error"}));de(`Failed to request cancellation: ${Q.detail||X.statusText}`),k(!1)}}catch(Y){de(`Error sending cancellation request: ${Y instanceof Error?Y.message:"Network error"}`),k(!1)}},[p,E,v,r,de,Ve]),me=m.useCallback(()=>{},[]),Ae=m.useCallback(()=>{p&&!$.current&&!C.current&&de("Connection error with agent updates."),$.current||(h(!1),C.current||(Ve(),y(null)),O.current=null),c(Y=>Y.filter(X=>!X.isStatusBubble).map((X,Q,le)=>Q===le.length-1&&!X.isUser?{...X,isComplete:!0}:X))},[de,Ve,p]),Re=m.useCallback(async(Y,X,Q)=>{Y.preventDefault();const le=(Q==null?void 0:Q.trim())||u.trim(),pe=X||[];if(!le&&pe.length===0||p||E||!w){w||de("Please select an agent first."),E&&de("Cannot send new message while a task is being cancelled.");return}Ve(),$.current=!1,h(!0),y(null),O.current=null,L.current=0;const je={role:"user",parts:[{kind:"text",text:le}],isUser:!0,uploadedFiles:pe.length>0?pe:void 0,metadata:{messageId:`msg-${crypto.randomUUID()}`,sessionId:s,lastProcessedEventSequence:0}};O.current="Thinking",c(Oe=>[...Oe,je]),f("");try{const Oe=pe.map(async Te=>{if(Te.size<o)return{kind:"file",file:{bytes:await i(Te),name:Te.name,mimeType:Te.type}};{const He=await at(Te);return He?{kind:"file",file:{uri:He,name:Te.name,mimeType:Te.type}}:(de(`Failed to upload large file: ${Te.name}`,"error"),null)}}),Be=(await Promise.all(Oe)).filter(Te=>Te!==null),ve=[];if(le&&ve.push({kind:"text",text:le}),ve.push(...Be),ve.length===0)throw new Error("Cannot send an empty message.");const fe={role:"user",parts:ve,messageId:`msg-${crypto.randomUUID()}`,kind:"message",contextId:s,metadata:{agent_name:w}},Ce={jsonrpc:"2.0",id:`req-${crypto.randomUUID()}`,method:"message/stream",params:{message:fe}};console.log("ChatProvider handleSubmit: Sending POST to /message:stream");const Ee=await Ct(`${r}/message:stream`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(Ce)});if(!Ee.ok){const Te=await Ee.json().catch(()=>({detail:"Unknown error"}));throw console.error("ChatProvider handleSubmit: Error from /message:stream",Ee.status,Te),new Error(Te.detail||`HTTP error ${Ee.status}`)}const $e=await Ee.json(),ye=$e==null?void 0:$e.result,Se=ye==null?void 0:ye.id;if(!Se)throw console.error("ChatProvider handleSubmit: Backend did not return a valid taskId. Result:",$e),new Error("Backend did not return a valid taskId.");console.log(`ChatProvider handleSubmit: Received taskId ${Se}. Setting currentTaskId and taskIdInSidePanel.`),y(Se),D(Se)}catch(Oe){console.error("ChatProvider handleSubmit: Catch block error",Oe),de(`Error: ${Oe instanceof Error?Oe.message:"Unknown error"}`),h(!1),c(Be=>Be.filter(ve=>!ve.isStatusBubble)),y(null),$.current=!1,O.current=null}},[u,p,E,s,w,r,de,Ve,at]);m.useEffect(()=>{P&&de(`Error fetching files: ${P}`,"error")},[de,P]),m.useEffect(()=>{if(v&&r){console.log(`ChatProvider Effect: currentTaskId is ${v}. Setting up EventSource.`);const Y=eu(),X=`${r}/sse/subscribe/${v}${Y?`?token=${Y}`:""}`,Q=new EventSource(X,{withCredentials:!0});return b.current=Q,Q.onopen=me,Q.onerror=Ae,Q.addEventListener("status_update",Ye),Q.addEventListener("artifact_update",Ye),Q.addEventListener("final_response",Ye),Q.addEventListener("error",Ye),()=>{console.log(`ChatProvider Effect Cleanup: currentTaskId was ${v}. Closing EventSource.`),Q.removeEventListener("status_update",Ye),Q.removeEventListener("artifact_update",Ye),Q.removeEventListener("final_response",Ye),Q.removeEventListener("error",Ye),Ve()}}else console.log("ChatProvider Effect: currentTaskId is null or apiPrefix missing. Ensuring EventSource is closed."),Ve()},[v,r,Ye,me,Ae,Ve]);const Pe={sessionId:s,messages:l,setMessages:c,userInput:u,setUserInput:f,isResponding:p,currentTaskId:v,isCancelling:E,latestStatusText:O,agents:_,agentsLoading:N,agentsError:M,agentsRefetch:I,handleNewSession:Mt,handleSubmit:Re,handleCancel:be,notifications:x,addNotification:de,selectedAgentName:w,setSelectedAgentName:S,artifacts:T,artifactsLoading:j,artifactsRefetch:R,uploadArtifactFile:at,isSidePanelCollapsed:U,activeSidePanelTab:V,setIsSidePanelCollapsed:B,setActiveSidePanelTab:G,openSidePanelTab:vt,taskIdInSidePanel:A,setTaskIdInSidePanel:D,isDeleteModalOpen:q,artifactToDelete:W,openDeleteModal:ut,closeDeleteModal:rt,confirmDelete:Tt,isArtifactEditMode:J,setIsArtifactEditMode:re,selectedArtifactFilenames:Z,setSelectedArtifactFilenames:ne,handleDeleteSelectedArtifacts:ot,confirmBatchDeleteArtifacts:jt,isBatchDeleteModalOpen:ee,setIsBatchDeleteModalOpen:ce,previewedArtifactAvailableVersions:ae,currentPreviewedVersionNumber:Xe,previewFileContent:st,openArtifactForPreview:mt,navigateArtifactVersion:dt,openMessageAttachmentForPreview:ft,previewArtifact:we,setPreviewArtifact:Me};return d.jsx(Vg.Provider,{value:Pe,children:e})},E$=({children:e})=>{const{frontend_use_authorization:t,configAuthLoginUrl:n}=Wo(),{fetchCsrfToken:r,clearCsrfToken:o}=Kg(),[i,s]=m.useState(!1),[a,l]=m.useState(!0),[c,u]=m.useState(null);m.useEffect(()=>{let h=!0;const x=async()=>{if(!t){h&&(s(!0),l(!1));return}try{const v=await Ct("/api/v1/users/me",{credentials:"include",headers:{Accept:"application/json"}});if(v.ok){const y=await v.json();console.log("User is authenticated:",y),h&&(u(y),s(!0)),console.log("Fetching CSRF token for authenticated requests..."),await r()}else v.status===401?(console.log("User is not authenticated"),h&&s(!1)):(console.error("Unexpected response from /users/me:",v.status),h&&s(!1))}catch(v){console.error("Error checking authentication:",v),h&&s(!1)}finally{h&&l(!1)}};x();const g=v=>{v.key==="access_token"&&x()};return window.addEventListener("storage",g),()=>{h=!1,window.removeEventListener("storage",g)}},[t,n,r]);const f=()=>{window.location.href=n},p=()=>{s(!1),u(null),o()};return a?d.jsx("div",{className:"flex min-h-screen items-center justify-center bg-white dark:bg-gray-900",children:d.jsxs("div",{className:"text-center",children:[d.jsx("div",{className:"border-solace-green mx-auto mb-4 h-12 w-12 animate-spin rounded-full border-b-2"}),d.jsx("h1",{className:"text-2xl text-black dark:text-white",children:"Checking Authentication..."})]})}):d.jsx(Ug.Provider,{value:{isAuthenticated:i,useAuthorization:t,login:f,logout:p,userInfo:c},children:e})};function S$(e){var r;if(typeof document>"u")return null;const n=`; ${document.cookie}`.split(`; ${e}=`);return n.length===2&&((r=n.pop())==null?void 0:r.split(";").shift())||null}const k$=e=>new Promise(t=>setTimeout(t,e)),C$=async(e=5,t=50)=>{try{const n=await Ct("/api/v1/csrf-token",{credentials:"include"});if(!n.ok)throw new Error(`CSRF endpoint returned status ${n.status}`);const r=await n.json();if(r.csrf_token)return console.log("CSRF token found in response body:",r.csrf_token),r.csrf_token;for(let o=0;o<e;o++){const i=S$("csrf_token");if(i)return console.log(`CSRF token found in cookie after ${o} retries:`,i),i;console.log(`CSRF token not found in cookie, attempt ${o+1}/${e}. Waiting ${t}ms...`),await k$(t)}throw new Error("CSRF token not available in response or cookie after retries")}catch(n){return console.error("Error fetching/reading CSRF token:",n),null}};function _$({children:e}){const[t,n]=m.useState(null),r=m.useCallback(async()=>{if(t)return t;const s=await C$();if(s)n(s);else throw new Error("Failed to obtain CSRF token after config fetch failed.");return s},[t]),o=m.useCallback(()=>{n(null)},[]),i={fetchCsrfToken:r,clearCsrfToken:o};return d.jsx(Gg.Provider,{value:i,children:e})}const T$={brand:{wMain:"#00C895",w30:"#B3EFDF",wMain30:"#00C8954d",w10:"#E6FAF4",w60:"#66DEBF",w100:"#00AD93"},primary:{w100:"#01374E",w90:"#014968",wMain:"#015B82",w60:"#679DB4",w40:"#99BDCD",w20:"#CCDEE6",w10:"#E6EFF2",text:{wMain:"#273749",w100:"#000000",w10:"#CCCCCC"}},secondary:{w70:"#536574",w80:"#354E62",w8040:"#354E6240",w100:"#000000",wMain:"#8790A0",w40:"#CFD3D9",w20:"#E7E9EC",w10:"#F3F4F6",text:{wMain:"#647481",w50:"#B1B9C0"}},background:{w100:"#021B2F",wMain:"#03223B",w20:"#F7F8F9",w10:"#FFFFFF"},info:{w100:"#2B71B1",wMain:"#0591D3",w70:"#7CD3F6",w30:"#B4DEF2",w20:"#CDE9F6",w10:"#E6F4FB"},error:{w100:"#C33135",wMain:"#E94C4E",w70:"#ED9B9D",w30:"#F8C9CA",w20:"#FBDBDC",w10:"#FDEDED"},warning:{w100:"#E1681F",wMain:"#FF8E2B",w70:"#F8C785",w30:"#FFDDBF",w20:"#FFE8D5",w10:"#FFF4EA"},success:{w100:"#006B53",wMain:"#009A80",w70:"#6FCCBC",w30:"#B3E1D9",w20:"#CCEBE6",w10:"#E6F5F2"},stateLayer:{w10:"#03223B1a",w20:"#03223B33"},accent:{n0:{w100:"#2F51AD",wMain:"#3C69E1",w30:"#C5D2F6",w10:"#ECF0FC"},n1:{w100:"#1F284C",wMain:"#3A4880",w30:"#C4C8D9",w60:"#8991B3",w20:"#D8DAE6",w10:"#EBEDF2"},n2:{w100:"#165E64",wMain:"#009193",w30:"#B3DEDF",w20:"#CCE9E9",w10:"#E6F4F4"},n3:{w100:"#542D75",wMain:"#7841A8",w30:"#D7C6E5",w10:"#F2ECF6"},n4:{w100:"#951379",wMain:"#CB1AA5",w30:"#F2C4E8"},n5:{w100:"#D03C1B",wMain:"#F66651",w30:"#FCCEC7",w60:"#FAA397"},n6:{w100:"#DE7E00",wMain:"#FCA829",w30:"#FEE5BF"},n7:{w100:"#2DADE1",wMain:"#7CD3F6",w30:"#CBEDFB"},n8:{w100:"#4F5A63",wMain:"#86939E",w30:"#DBDFE2"},n9:{wMain:"#DA162D"}},learning:{wMain:"#033A6F",w90:"#022E59",w100:"#022343",w20:"#CDD8E2",w10:"#E6EBF1"}},A$={light:{background:"background.w10",foreground:"primary.text.wMain",card:"background.w10","card-foreground":"primary.text.wMain",popover:"background.w10","popover-foreground":"primary.text.wMain",primary:"primary.wMain","primary-foreground":"primary.text.w10",secondary:"secondary.w10","secondary-foreground":"secondary.text.wMain",muted:"secondary.w10","muted-foreground":"secondary.text.wMain",accent:"secondary.w40","accent-foreground":"secondary.text.wMain",destructive:"error.wMain",border:"secondary.w40",input:"secondary.w40",ring:"brand.wMain","ring-offset":"brand.wMain","accent-background":"background.w20","message-background":"secondary.w20","chart-1":"brand.w60","chart-2":"primary.wMain","chart-3":"accent.n3.wMain","chart-4":"accent.n6.wMain","chart-5":"accent.n5.wMain",sidebar:"background.w20","sidebar-foreground":"primary.text.wMain","sidebar-primary":"primary.wMain","sidebar-primary-foreground":"primary.text.w10","sidebar-accent":"secondary.w10","sidebar-accent-foreground":"secondary.text.wMain","sidebar-border":"secondary.w40","sidebar-ring":"brand.wMain"},dark:{background:"background.w100",foreground:"primary.text.w10",card:"background.wMain","card-foreground":"primary.text.w10",popover:"background.wMain","popover-foreground":"primary.text.w10",primary:"primary.w60","primary-foreground":"primary.text.wMain",secondary:"secondary.w80","secondary-foreground":"secondary.text.w50",muted:"secondary.w80","muted-foreground":"secondary.text.w50",accent:"secondary.w80","accent-foreground":"secondary.text.w50",destructive:"error.w70",border:"secondary.w70",input:"secondary.w70",ring:"brand.w60","ring-offset":"brand.w60","accent-background":"primary.w90","message-background":"secondary.w70","chart-1":"brand.w100","chart-2":"primary.wMain","chart-3":"accent.n3.w100","chart-4":"accent.n6.w30","chart-5":"accent.n5.w60",sidebar:"background.wMain","sidebar-foreground":"primary.text.w10","sidebar-primary":"primary.w60","sidebar-primary-foreground":"primary.text.wMain","sidebar-accent":"secondary.w80","sidebar-accent-foreground":"secondary.text.w50","sidebar-border":"secondary.w70","sidebar-ring":"brand.w60"}},N$={"error-text-wMain":"error.wMain","error-text-w50":"error.w70","warning-text-wMain":"warning.wMain","warning-text-w50":"warning.w70","success-text-wMain":"success.wMain","success-text-w50":"success.w70","info-text-wMain":"info.wMain","info-text-w50":"info.w70"};function Lh(e,t){const n=t.split(".");let r=e;for(const o of n)if(r&&typeof r=="object"&&o in r)r=r[o];else return console.warn(`Color path not found: ${t}`),"#000000";return typeof r=="string"?r:"#000000"}function I$(e,t){const n={},r=A$[t];for(const[o,i]of Object.entries(r)){const s=Lh(e,i);n[`--${o}`]=s}for(const[o,i]of Object.entries(N$)){const s=Lh(e,i);n[`--color-${o}`]=s}return n}const Sa="sam-theme";function j$(e){var n,r,o,i,s,a,l,c,u,f,p,h,x,g,v,y,b,w,S,E,k,C,A,D,z,$,O,L,_,M,N,I,T,j,R,P,U,B,V,G,q,H,W,K,J,re,Z,ne,ee,ce,we,Me,ae,_e,Xe,Je,st,et,de,at,nt,ut,rt,Tt,ot,jt,mt,dt,ft,vt,Ve,Ye,Mt,be,me,Ae,Re,Pe,Y,X,Q,le,pe,je,Oe,Be,ve,fe,Ce,Ee,$e,ye,Se,Te,He,kt,he,Ie,wt,se,F,te,ie;const t={};return e.brand.wMain&&(t["--color-brand-wMain"]=e.brand.wMain),e.brand.wMain30&&(t["--color-brand-wMain30"]=e.brand.wMain30),e.brand.w100&&(t["--color-brand-w100"]=e.brand.w100),e.brand.w60&&(t["--color-brand-w60"]=e.brand.w60),e.brand.w30&&(t["--color-brand-w30"]=e.brand.w30),e.brand.w10&&(t["--color-brand-w10"]=e.brand.w10),e.primary.wMain&&(t["--color-primary-wMain"]=e.primary.wMain),e.primary.w100&&(t["--color-primary-w100"]=e.primary.w100),e.primary.w90&&(t["--color-primary-w90"]=e.primary.w90),e.primary.w60&&(t["--color-primary-w60"]=e.primary.w60),e.primary.w40&&(t["--color-primary-w40"]=e.primary.w40),e.primary.w20&&(t["--color-primary-w20"]=e.primary.w20),e.primary.w10&&(t["--color-primary-w10"]=e.primary.w10),e.primary.text.wMain&&(t["--color-primary-text-wMain"]=e.primary.text.wMain),e.primary.text.w100&&(t["--color-primary-text-w100"]=e.primary.text.w100),e.primary.text.w10&&(t["--color-primary-text-w10"]=e.primary.text.w10),e.secondary.wMain&&(t["--color-secondary-wMain"]=e.secondary.wMain),e.secondary.w100&&(t["--color-secondary-w100"]=e.secondary.w100),e.secondary.w80&&(t["--color-secondary-w80"]=e.secondary.w80),e.secondary.w8040&&(t["--color-secondary-w8040"]=e.secondary.w8040),e.secondary.w70&&(t["--color-secondary-w70"]=e.secondary.w70),e.secondary.w40&&(t["--color-secondary-w40"]=e.secondary.w40),e.secondary.w20&&(t["--color-secondary-w20"]=e.secondary.w20),e.secondary.w10&&(t["--color-secondary-w10"]=e.secondary.w10),e.secondary.text.wMain&&(t["--color-secondary-text-wMain"]=e.secondary.text.wMain),e.secondary.text.w50&&(t["--color-secondary-text-w50"]=e.secondary.text.w50),e.background.wMain&&(t["--color-background-wMain"]=e.background.wMain),e.background.w100&&(t["--color-background-w100"]=e.background.w100),e.background.w20&&(t["--color-background-w20"]=e.background.w20),e.background.w10&&(t["--color-background-w10"]=e.background.w10),(n=e.info)!=null&&n.wMain&&(t["--color-info-wMain"]=e.info.wMain),(r=e.info)!=null&&r.w100&&(t["--color-info-w100"]=e.info.w100),(o=e.info)!=null&&o.w70&&(t["--color-info-w70"]=e.info.w70),(i=e.info)!=null&&i.w30&&(t["--color-info-w30"]=e.info.w30),(s=e.info)!=null&&s.w20&&(t["--color-info-w20"]=e.info.w20),(a=e.info)!=null&&a.w10&&(t["--color-info-w10"]=e.info.w10),(l=e.error)!=null&&l.wMain&&(t["--color-error-wMain"]=e.error.wMain),(c=e.error)!=null&&c.w100&&(t["--color-error-w100"]=e.error.w100),(u=e.error)!=null&&u.w70&&(t["--color-error-w70"]=e.error.w70),(f=e.error)!=null&&f.w30&&(t["--color-error-w30"]=e.error.w30),(p=e.error)!=null&&p.w20&&(t["--color-error-w20"]=e.error.w20),(h=e.error)!=null&&h.w10&&(t["--color-error-w10"]=e.error.w10),(x=e.warning)!=null&&x.wMain&&(t["--color-warning-wMain"]=e.warning.wMain),(g=e.warning)!=null&&g.w100&&(t["--color-warning-w100"]=e.warning.w100),(v=e.warning)!=null&&v.w70&&(t["--color-warning-w70"]=e.warning.w70),(y=e.warning)!=null&&y.w30&&(t["--color-warning-w30"]=e.warning.w30),(b=e.warning)!=null&&b.w20&&(t["--color-warning-w20"]=e.warning.w20),(w=e.warning)!=null&&w.w10&&(t["--color-warning-w10"]=e.warning.w10),(S=e.success)!=null&&S.wMain&&(t["--color-success-wMain"]=e.success.wMain),(E=e.success)!=null&&E.w100&&(t["--color-success-w100"]=e.success.w100),(k=e.success)!=null&&k.w70&&(t["--color-success-w70"]=e.success.w70),(C=e.success)!=null&&C.w30&&(t["--color-success-w30"]=e.success.w30),(A=e.success)!=null&&A.w20&&(t["--color-success-w20"]=e.success.w20),(D=e.success)!=null&&D.w10&&(t["--color-success-w10"]=e.success.w10),(z=e.stateLayer)!=null&&z.w10&&(t["--color-stateLayer-w10"]=e.stateLayer.w10),($=e.stateLayer)!=null&&$.w20&&(t["--color-stateLayer-w20"]=e.stateLayer.w20),(L=(O=e.accent)==null?void 0:O.n0)!=null&&L.wMain&&(t["--color-accent-n0-wMain"]=e.accent.n0.wMain),(M=(_=e.accent)==null?void 0:_.n0)!=null&&M.w100&&(t["--color-accent-n0-w100"]=e.accent.n0.w100),(I=(N=e.accent)==null?void 0:N.n0)!=null&&I.w30&&(t["--color-accent-n0-w30"]=e.accent.n0.w30),(j=(T=e.accent)==null?void 0:T.n0)!=null&&j.w10&&(t["--color-accent-n0-w10"]=e.accent.n0.w10),(P=(R=e.accent)==null?void 0:R.n1)!=null&&P.wMain&&(t["--color-accent-n1-wMain"]=e.accent.n1.wMain),(B=(U=e.accent)==null?void 0:U.n1)!=null&&B.w100&&(t["--color-accent-n1-w100"]=e.accent.n1.w100),(G=(V=e.accent)==null?void 0:V.n1)!=null&&G.w60&&(t["--color-accent-n1-w60"]=e.accent.n1.w60),(H=(q=e.accent)==null?void 0:q.n1)!=null&&H.w30&&(t["--color-accent-n1-w30"]=e.accent.n1.w30),(K=(W=e.accent)==null?void 0:W.n1)!=null&&K.w20&&(t["--color-accent-n1-w20"]=e.accent.n1.w20),(re=(J=e.accent)==null?void 0:J.n1)!=null&&re.w10&&(t["--color-accent-n1-w10"]=e.accent.n1.w10),(ne=(Z=e.accent)==null?void 0:Z.n2)!=null&&ne.wMain&&(t["--color-accent-n2-wMain"]=e.accent.n2.wMain),(ce=(ee=e.accent)==null?void 0:ee.n2)!=null&&ce.w100&&(t["--color-accent-n2-w100"]=e.accent.n2.w100),(Me=(we=e.accent)==null?void 0:we.n2)!=null&&Me.w30&&(t["--color-accent-n2-w30"]=e.accent.n2.w30),(_e=(ae=e.accent)==null?void 0:ae.n2)!=null&&_e.w20&&(t["--color-accent-n2-w20"]=e.accent.n2.w20),(Je=(Xe=e.accent)==null?void 0:Xe.n2)!=null&&Je.w10&&(t["--color-accent-n2-w10"]=e.accent.n2.w10),(et=(st=e.accent)==null?void 0:st.n3)!=null&&et.wMain&&(t["--color-accent-n3-wMain"]=e.accent.n3.wMain),(at=(de=e.accent)==null?void 0:de.n3)!=null&&at.w100&&(t["--color-accent-n3-w100"]=e.accent.n3.w100),(ut=(nt=e.accent)==null?void 0:nt.n3)!=null&&ut.w30&&(t["--color-accent-n3-w30"]=e.accent.n3.w30),(Tt=(rt=e.accent)==null?void 0:rt.n3)!=null&&Tt.w10&&(t["--color-accent-n3-w10"]=e.accent.n3.w10),(jt=(ot=e.accent)==null?void 0:ot.n4)!=null&&jt.wMain&&(t["--color-accent-n4-wMain"]=e.accent.n4.wMain),(dt=(mt=e.accent)==null?void 0:mt.n4)!=null&&dt.w100&&(t["--color-accent-n4-w100"]=e.accent.n4.w100),(vt=(ft=e.accent)==null?void 0:ft.n4)!=null&&vt.w30&&(t["--color-accent-n4-w30"]=e.accent.n4.w30),(Ye=(Ve=e.accent)==null?void 0:Ve.n5)!=null&&Ye.wMain&&(t["--color-accent-n5-wMain"]=e.accent.n5.wMain),(be=(Mt=e.accent)==null?void 0:Mt.n5)!=null&&be.w100&&(t["--color-accent-n5-w100"]=e.accent.n5.w100),(Ae=(me=e.accent)==null?void 0:me.n5)!=null&&Ae.w60&&(t["--color-accent-n5-w60"]=e.accent.n5.w60),(Pe=(Re=e.accent)==null?void 0:Re.n5)!=null&&Pe.w30&&(t["--color-accent-n5-w30"]=e.accent.n5.w30),(X=(Y=e.accent)==null?void 0:Y.n6)!=null&&X.wMain&&(t["--color-accent-n6-wMain"]=e.accent.n6.wMain),(le=(Q=e.accent)==null?void 0:Q.n6)!=null&&le.w100&&(t["--color-accent-n6-w100"]=e.accent.n6.w100),(je=(pe=e.accent)==null?void 0:pe.n6)!=null&&je.w30&&(t["--color-accent-n6-w30"]=e.accent.n6.w30),(Be=(Oe=e.accent)==null?void 0:Oe.n7)!=null&&Be.wMain&&(t["--color-accent-n7-wMain"]=e.accent.n7.wMain),(fe=(ve=e.accent)==null?void 0:ve.n7)!=null&&fe.w100&&(t["--color-accent-n7-w100"]=e.accent.n7.w100),(Ee=(Ce=e.accent)==null?void 0:Ce.n7)!=null&&Ee.w30&&(t["--color-accent-n7-w30"]=e.accent.n7.w30),(ye=($e=e.accent)==null?void 0:$e.n8)!=null&&ye.wMain&&(t["--color-accent-n8-wMain"]=e.accent.n8.wMain),(Te=(Se=e.accent)==null?void 0:Se.n8)!=null&&Te.w100&&(t["--color-accent-n8-w100"]=e.accent.n8.w100),(kt=(He=e.accent)==null?void 0:He.n8)!=null&&kt.w30&&(t["--color-accent-n8-w30"]=e.accent.n8.w30),(Ie=(he=e.accent)==null?void 0:he.n9)!=null&&Ie.wMain&&(t["--color-accent-n9-wMain"]=e.accent.n9.wMain),(wt=e.learning)!=null&&wt.wMain&&(t["--color-learning-wMain"]=e.learning.wMain),(se=e.learning)!=null&&se.w100&&(t["--color-learning-w100"]=e.learning.w100),(F=e.learning)!=null&&F.w90&&(t["--color-learning-w90"]=e.learning.w90),(te=e.learning)!=null&&te.w20&&(t["--color-learning-w20"]=e.learning.w20),(ie=e.learning)!=null&&ie.w10&&(t["--color-learning-w10"]=e.learning.w10),t}function M$(e,t="light"){const n={};if(e){const o=j$(e);Object.assign(n,o)}const r=I$(e,t);return Object.assign(n,r),n}function R$(){const e=localStorage.getItem(Sa);return e==="dark"||e==="light"?e:window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}function D$(e,t){const n=M$(e,t),r=document.documentElement;for(const[o,i]of Object.entries(n))r.style.setProperty(o,i);requestAnimationFrame(()=>{console.log(`Applying ${t} theme with palette`),r.classList.remove("light","dark"),r.classList.add(t),localStorage.setItem(Sa,t)})}const P$=({children:e})=>{const t=m.useMemo(()=>T$,[]),[n,r]=m.useState(()=>R$()),o=m.useMemo(()=>({currentTheme:n,toggleTheme:()=>{const i=n==="light"?"dark":"light";r(i),localStorage.setItem(Sa,i)}}),[n]);return m.useEffect(()=>{if(!(localStorage.getItem(Sa)!==null)){const s=window.matchMedia("(prefers-color-scheme: dark)"),a=l=>{r(l.matches?"dark":"light")};return s.addEventListener?s.addEventListener("change",a):s.addListener(a),()=>{s.removeEventListener?s.removeEventListener("change",a):s.removeListener(a)}}},[]),m.useEffect(()=>{document.documentElement.classList.remove("light","dark"),D$(t,n)},[n,t]),d.jsx(qg.Provider,{value:o,children:e})};function O$(){const[e,t]=m.useState("chat"),{isAuthenticated:n,login:r,useAuthorization:o}=__();if(T_(),o&&!n)return d.jsx("div",{className:"bg-background flex h-screen items-center justify-center",children:d.jsx(Ke,{onClick:r,children:"Login"})});const i=l=>{const c=Th.find(u=>u.id===l)||Ah.find(u=>u.id===l);c!=null&&c.onClick&&l!=="settings"?c.onClick():l!=="settings"&&t(l)},s=()=>{t("chat")},a=()=>{switch(e){case"chat":return d.jsx(D5,{});case"agentMesh":return d.jsx(M5,{})}};return d.jsxs("div",{className:"relative flex h-screen",children:[d.jsx(k5,{items:Th,bottomItems:Ah,activeItem:e,onItemChange:i,onHeaderClick:s}),d.jsx("main",{className:"h-full w-full flex-1 overflow-auto",children:a()}),d.jsx(cA,{})]})}function L$(){return d.jsx(P$,{children:d.jsx(_$,{children:d.jsx(y$,{children:d.jsx(E$,{children:d.jsx(b$,{children:d.jsx(w$,{children:d.jsx(O$,{})})})})})})})}qw.createRoot(document.getElementById("root")).render(d.jsx(m.StrictMode,{children:d.jsx(L$,{})}));