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
@@ -1,673 +0,0 @@
1
- var Yw=Object.defineProperty;var qw=(e,t,n)=>t in e?Yw(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var at=(e,t,n)=>qw(e,typeof t!="symbol"?t+"":t,n);import{r as g,j as d,a as Kw,g as Qc,R as Jc,b as ka,c as $t,d as Xw}from"./client-bp6u3qVZ.js";function Ad(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function Bh(...e){return t=>{let n=!1;const r=e.map(o=>{const i=Ad(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():Ad(e[o],null)}}}}function ft(...e){return g.useCallback(Bh(...e),e)}function Lr(e){const t=Zw(e),n=g.forwardRef((r,o)=>{const{children:i,...s}=r,a=g.Children.toArray(i),l=a.find(Jw);if(l){const c=l.props.children,u=a.map(f=>f===l?g.Children.count(c)>1?g.Children.only(null):g.isValidElement(c)?c.props.children:null:f);return d.jsx(t,{...s,ref:o,children:g.isValidElement(c)?g.cloneElement(c,void 0,u):null})}return d.jsx(t,{...s,ref:o,children:i})});return n.displayName=`${e}.Slot`,n}var Hh=Lr("Slot");function Zw(e){const t=g.forwardRef((n,r)=>{const{children:o,...i}=n;if(g.isValidElement(o)){const s=tb(o),a=eb(i,o.props);return o.type!==g.Fragment&&(a.ref=r?Bh(r,s):s),g.cloneElement(o,a)}return g.Children.count(o)>1?g.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var Vh=Symbol("radix.slottable");function Qw(e){const t=({children:n})=>d.jsx(d.Fragment,{children:n});return t.displayName=`${e}.Slottable`,t.__radixId=Vh,t}function Jw(e){return g.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===Vh}function eb(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 tb(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 Uh(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=Uh(e[t]))&&(r&&(r+=" "),r+=n)}else for(n in e)e[n]&&(r&&(r+=" "),r+=n);return r}function Wh(){for(var e,t,n=0,r="",o=arguments.length;n<o;n++)(e=arguments[n])&&(t=Uh(e))&&(r&&(r+=" "),r+=t);return r}const Nd=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,jd=Wh,xr=(e,t)=>n=>{var r;if((t==null?void 0:t.variants)==null)return jd(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=Nd(u)||Nd(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[m,v]=x;return Array.isArray(v)?v.includes({...i,...a}[m]):{...i,...a}[m]===v})?[...c,f,p]:c},[]);return jd(e,s,l,n==null?void 0:n.class,n==null?void 0:n.className)},eu=()=>localStorage.getItem("access_token"),nb=()=>localStorage.getItem("refresh_token"),rb=(e,t)=>{localStorage.setItem("access_token",e),localStorage.setItem("refresh_token",t)},ob=()=>{localStorage.removeItem("access_token"),localStorage.removeItem("refresh_token")},ib=async()=>{const e=nb();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 rb(n.access_token,n.refresh_token),n.access_token}return ob(),window.location.href="/api/v1/auth/login",null},It=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 ib();if(o)return fetch(e,{...t,headers:{...t.headers,Authorization:`Bearer ${o}`}})}return r},tu="-",sb=e=>{const t=lb(e),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=e;return{getClassGroupId:s=>{const a=s.split(tu);return a[0]===""&&a.length!==1&&a.shift(),Gh(a,t)||ab(s)},getConflictingClassGroupIds:(s,a)=>{const l=n[s]||[];return a&&r[s]?[...l,...r[s]]:l}}},Gh=(e,t)=>{var s;if(e.length===0)return t.classGroupId;const n=e[0],r=t.nextPart.get(n),o=r?Gh(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},Id=/^\[(.+)\]$/,ab=e=>{if(Id.test(e)){const t=Id.exec(e)[1],n=t==null?void 0:t.substring(0,t.indexOf(":"));if(n)return"arbitrary.."+n}},lb=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:Md(t,o);i.classGroupId=n;return}if(typeof o=="function"){if(cb(o)){tc(o(r),t,n,r);return}t.validators.push({validator:o,classGroupId:n});return}Object.entries(o).forEach(([i,s])=>{tc(s,Md(t,i),n,r)})})},Md=(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},cb=e=>e.isThemeGetter,ub=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=":",db=rc.length,fb=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 m=o[x];if(s===0&&a===0){if(m===rc){i.push(o.slice(l,x)),l=x+db;continue}if(m==="/"){c=x;continue}}m==="["?s++:m==="]"?s--:m==="("?a++:m===")"&&a--}const u=i.length===0?o:o.substring(l),f=pb(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},pb=e=>e.endsWith(nc)?e.substring(0,e.length-1):e.startsWith(nc)?e.substring(1):e,hb=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}},gb=e=>({cache:ub(e.cacheSize),parseClassName:fb(e),sortModifiers:hb(e),...sb(e)}),mb=/\s+/,xb=(e,t)=>{const{parseClassName:n,getClassGroupId:r,getConflictingClassGroupIds:o,sortModifiers:i}=t,s=[],a=e.trim().split(mb);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:m}=n(u);if(f){l=u+(l.length>0?" "+l:l);continue}let v=!!m,y=r(v?x.substring(0,m):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 vb(){let e=0,t,n,r="";for(;e<arguments.length;)(t=arguments[e++])&&(n=Yh(t))&&(r&&(r+=" "),r+=n);return r}const Yh=e=>{if(typeof e=="string")return e;let t,n="";for(let r=0;r<e.length;r++)e[r]&&(t=Yh(e[r]))&&(n&&(n+=" "),n+=t);return n};function yb(e,...t){let n,r,o,i=s;function s(l){const c=t.reduce((u,f)=>f(u),e());return n=gb(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=xb(l,n);return o(l,u),u}return function(){return i(vb.apply(null,arguments))}}const Ot=e=>{const t=n=>n[e]||[];return t.isThemeGetter=!0,t},qh=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,Kh=/^\((?:(\w[\w-]*):)?(.+)\)$/i,wb=/^\d+\/\d+$/,bb=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,Eb=/\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$/,Sb=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,kb=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,Cb=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,to=e=>wb.test(e),Ge=e=>!!e&&!Number.isNaN(Number(e)),or=e=>!!e&&Number.isInteger(Number(e)),cl=e=>e.endsWith("%")&&Ge(e.slice(0,-1)),Vn=e=>bb.test(e),_b=()=>!0,Tb=e=>Eb.test(e)&&!Sb.test(e),Xh=()=>!1,Ab=e=>kb.test(e),Nb=e=>Cb.test(e),jb=e=>!xe(e)&&!ve(e),Ib=e=>Vo(e,Jh,Xh),xe=e=>qh.test(e),Sr=e=>Vo(e,eg,Tb),ul=e=>Vo(e,Ob,Ge),Rd=e=>Vo(e,Zh,Xh),Mb=e=>Vo(e,Qh,Nb),ss=e=>Vo(e,tg,Ab),ve=e=>Kh.test(e),Zo=e=>Uo(e,eg),Rb=e=>Uo(e,Lb),Pd=e=>Uo(e,Zh),Pb=e=>Uo(e,Jh),Db=e=>Uo(e,Qh),as=e=>Uo(e,tg,!0),Vo=(e,t,n)=>{const r=qh.exec(e);return r?r[1]?t(r[1]):n(r[2]):!1},Uo=(e,t,n=!1)=>{const r=Kh.exec(e);return r?r[1]?t(r[1]):n:!1},Zh=e=>e==="position"||e==="percentage",Qh=e=>e==="image"||e==="url",Jh=e=>e==="length"||e==="size"||e==="bg-size",eg=e=>e==="length",Ob=e=>e==="number",Lb=e=>e==="family-name",tg=e=>e==="shadow",$b=()=>{const e=Ot("color"),t=Ot("font"),n=Ot("text"),r=Ot("font-weight"),o=Ot("tracking"),i=Ot("leading"),s=Ot("breakpoint"),a=Ot("container"),l=Ot("spacing"),c=Ot("radius"),u=Ot("shadow"),f=Ot("inset-shadow"),p=Ot("text-shadow"),h=Ot("drop-shadow"),x=Ot("blur"),m=Ot("perspective"),v=Ot("aspect"),y=Ot("ease"),b=Ot("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(),ve,xe],k=()=>["auto","hidden","clip","visible","scroll"],C=()=>["auto","contain","none"],T=()=>[ve,xe,l],P=()=>[to,"full","auto",...T()],B=()=>[or,"none","subgrid",ve,xe],O=()=>["auto",{span:["full",or,ve,xe]},or,ve,xe],z=()=>[or,"auto",ve,xe],L=()=>["auto","min","max","fr",ve,xe],_=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],I=()=>["start","end","center","stretch","center-safe","end-safe"],M=()=>["auto",...T()],j=()=>[to,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...T()],A=()=>[e,ve,xe],N=()=>[...S(),Pd,Rd,{position:[ve,xe]}],R=()=>["no-repeat",{repeat:["","x","y","space","round"]}],D=()=>["auto","cover","contain",Pb,Ib,{size:[ve,xe]}],Y=()=>[cl,Zo,Sr],H=()=>["","none","full",c,ve,xe],V=()=>["",Ge,Zo,Sr],U=()=>["solid","dashed","dotted","double"],G=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],F=()=>[Ge,cl,Pd,Rd],W=()=>["","none",x,ve,xe],X=()=>["none",Ge,ve,xe],Q=()=>["none",Ge,ve,xe],re=()=>[Ge,ve,xe],K=()=>[to,"full",...T()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[Vn],breakpoint:[Vn],color:[_b],container:[Vn],"drop-shadow":[Vn],ease:["in","out","in-out"],font:[jb],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[Vn],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[Vn],shadow:[Vn],spacing:["px",Ge],text:[Vn],"text-shadow":[Vn],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",to,xe,ve,v]}],container:["container"],columns:[{columns:[Ge,xe,ve,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:P()}],"inset-x":[{"inset-x":P()}],"inset-y":[{"inset-y":P()}],start:[{start:P()}],end:[{end:P()}],top:[{top:P()}],right:[{right:P()}],bottom:[{bottom:P()}],left:[{left:P()}],visibility:["visible","invisible","collapse"],z:[{z:[or,"auto",ve,xe]}],basis:[{basis:[to,"full","auto",a,...T()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[Ge,to,"auto","initial","none",xe]}],grow:[{grow:["",Ge,ve,xe]}],shrink:[{shrink:["",Ge,ve,xe]}],order:[{order:[or,"first","last","none",ve,xe]}],"grid-cols":[{"grid-cols":B()}],"col-start-end":[{col:O()}],"col-start":[{"col-start":z()}],"col-end":[{"col-end":z()}],"grid-rows":[{"grid-rows":B()}],"row-start-end":[{row:O()}],"row-start":[{"row-start":z()}],"row-end":[{"row-end":z()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":L()}],"auto-rows":[{"auto-rows":L()}],gap:[{gap:T()}],"gap-x":[{"gap-x":T()}],"gap-y":[{"gap-y":T()}],"justify-content":[{justify:[..._(),"normal"]}],"justify-items":[{"justify-items":[...I(),"normal"]}],"justify-self":[{"justify-self":["auto",...I()]}],"align-content":[{content:["normal",..._()]}],"align-items":[{items:[...I(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...I(),{baseline:["","last"]}]}],"place-content":[{"place-content":_()}],"place-items":[{"place-items":[...I(),"baseline"]}],"place-self":[{"place-self":["auto",...I()]}],p:[{p:T()}],px:[{px:T()}],py:[{py:T()}],ps:[{ps:T()}],pe:[{pe:T()}],pt:[{pt:T()}],pr:[{pr:T()}],pb:[{pb:T()}],pl:[{pl:T()}],m:[{m:M()}],mx:[{mx:M()}],my:[{my:M()}],ms:[{ms:M()}],me:[{me:M()}],mt:[{mt:M()}],mr:[{mr:M()}],mb:[{mb:M()}],ml:[{ml:M()}],"space-x":[{"space-x":T()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":T()}],"space-y-reverse":["space-y-reverse"],size:[{size:j()}],w:[{w:[a,"screen",...j()]}],"min-w":[{"min-w":[a,"screen","none",...j()]}],"max-w":[{"max-w":[a,"screen","none","prose",{screen:[s]},...j()]}],h:[{h:["screen","lh",...j()]}],"min-h":[{"min-h":["screen","lh","none",...j()]}],"max-h":[{"max-h":["screen","lh",...j()]}],"font-size":[{text:["base",n,Zo,Sr]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[r,ve,ul]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",cl,xe]}],"font-family":[{font:[Rb,xe,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,ve,xe]}],"line-clamp":[{"line-clamp":[Ge,"none",ve,ul]}],leading:[{leading:[i,...T()]}],"list-image":[{"list-image":["none",ve,xe]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",ve,xe]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:A()}],"text-color":[{text:A()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...U(),"wavy"]}],"text-decoration-thickness":[{decoration:[Ge,"from-font","auto",ve,Sr]}],"text-decoration-color":[{decoration:A()}],"underline-offset":[{"underline-offset":[Ge,"auto",ve,xe]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:T()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",ve,xe]}],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",ve,xe]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:N()}],"bg-repeat":[{bg:R()}],"bg-size":[{bg:D()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},or,ve,xe],radial:["",ve,xe],conic:[or,ve,xe]},Db,Mb]}],"bg-color":[{bg:A()}],"gradient-from-pos":[{from:Y()}],"gradient-via-pos":[{via:Y()}],"gradient-to-pos":[{to:Y()}],"gradient-from":[{from:A()}],"gradient-via":[{via:A()}],"gradient-to":[{to:A()}],rounded:[{rounded:H()}],"rounded-s":[{"rounded-s":H()}],"rounded-e":[{"rounded-e":H()}],"rounded-t":[{"rounded-t":H()}],"rounded-r":[{"rounded-r":H()}],"rounded-b":[{"rounded-b":H()}],"rounded-l":[{"rounded-l":H()}],"rounded-ss":[{"rounded-ss":H()}],"rounded-se":[{"rounded-se":H()}],"rounded-ee":[{"rounded-ee":H()}],"rounded-es":[{"rounded-es":H()}],"rounded-tl":[{"rounded-tl":H()}],"rounded-tr":[{"rounded-tr":H()}],"rounded-br":[{"rounded-br":H()}],"rounded-bl":[{"rounded-bl":H()}],"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:[...U(),"hidden","none"]}],"divide-style":[{divide:[...U(),"hidden","none"]}],"border-color":[{border:A()}],"border-color-x":[{"border-x":A()}],"border-color-y":[{"border-y":A()}],"border-color-s":[{"border-s":A()}],"border-color-e":[{"border-e":A()}],"border-color-t":[{"border-t":A()}],"border-color-r":[{"border-r":A()}],"border-color-b":[{"border-b":A()}],"border-color-l":[{"border-l":A()}],"divide-color":[{divide:A()}],"outline-style":[{outline:[...U(),"none","hidden"]}],"outline-offset":[{"outline-offset":[Ge,ve,xe]}],"outline-w":[{outline:["",Ge,Zo,Sr]}],"outline-color":[{outline:A()}],shadow:[{shadow:["","none",u,as,ss]}],"shadow-color":[{shadow:A()}],"inset-shadow":[{"inset-shadow":["none",f,as,ss]}],"inset-shadow-color":[{"inset-shadow":A()}],"ring-w":[{ring:V()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:A()}],"ring-offset-w":[{"ring-offset":[Ge,Sr]}],"ring-offset-color":[{"ring-offset":A()}],"inset-ring-w":[{"inset-ring":V()}],"inset-ring-color":[{"inset-ring":A()}],"text-shadow":[{"text-shadow":["none",p,as,ss]}],"text-shadow-color":[{"text-shadow":A()}],opacity:[{opacity:[Ge,ve,xe]}],"mix-blend":[{"mix-blend":[...G(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":G()}],"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":[Ge]}],"mask-image-linear-from-pos":[{"mask-linear-from":F()}],"mask-image-linear-to-pos":[{"mask-linear-to":F()}],"mask-image-linear-from-color":[{"mask-linear-from":A()}],"mask-image-linear-to-color":[{"mask-linear-to":A()}],"mask-image-t-from-pos":[{"mask-t-from":F()}],"mask-image-t-to-pos":[{"mask-t-to":F()}],"mask-image-t-from-color":[{"mask-t-from":A()}],"mask-image-t-to-color":[{"mask-t-to":A()}],"mask-image-r-from-pos":[{"mask-r-from":F()}],"mask-image-r-to-pos":[{"mask-r-to":F()}],"mask-image-r-from-color":[{"mask-r-from":A()}],"mask-image-r-to-color":[{"mask-r-to":A()}],"mask-image-b-from-pos":[{"mask-b-from":F()}],"mask-image-b-to-pos":[{"mask-b-to":F()}],"mask-image-b-from-color":[{"mask-b-from":A()}],"mask-image-b-to-color":[{"mask-b-to":A()}],"mask-image-l-from-pos":[{"mask-l-from":F()}],"mask-image-l-to-pos":[{"mask-l-to":F()}],"mask-image-l-from-color":[{"mask-l-from":A()}],"mask-image-l-to-color":[{"mask-l-to":A()}],"mask-image-x-from-pos":[{"mask-x-from":F()}],"mask-image-x-to-pos":[{"mask-x-to":F()}],"mask-image-x-from-color":[{"mask-x-from":A()}],"mask-image-x-to-color":[{"mask-x-to":A()}],"mask-image-y-from-pos":[{"mask-y-from":F()}],"mask-image-y-to-pos":[{"mask-y-to":F()}],"mask-image-y-from-color":[{"mask-y-from":A()}],"mask-image-y-to-color":[{"mask-y-to":A()}],"mask-image-radial":[{"mask-radial":[ve,xe]}],"mask-image-radial-from-pos":[{"mask-radial-from":F()}],"mask-image-radial-to-pos":[{"mask-radial-to":F()}],"mask-image-radial-from-color":[{"mask-radial-from":A()}],"mask-image-radial-to-color":[{"mask-radial-to":A()}],"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":[Ge]}],"mask-image-conic-from-pos":[{"mask-conic-from":F()}],"mask-image-conic-to-pos":[{"mask-conic-to":F()}],"mask-image-conic-from-color":[{"mask-conic-from":A()}],"mask-image-conic-to-color":[{"mask-conic-to":A()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:N()}],"mask-repeat":[{mask:R()}],"mask-size":[{mask:D()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",ve,xe]}],filter:[{filter:["","none",ve,xe]}],blur:[{blur:W()}],brightness:[{brightness:[Ge,ve,xe]}],contrast:[{contrast:[Ge,ve,xe]}],"drop-shadow":[{"drop-shadow":["","none",h,as,ss]}],"drop-shadow-color":[{"drop-shadow":A()}],grayscale:[{grayscale:["",Ge,ve,xe]}],"hue-rotate":[{"hue-rotate":[Ge,ve,xe]}],invert:[{invert:["",Ge,ve,xe]}],saturate:[{saturate:[Ge,ve,xe]}],sepia:[{sepia:["",Ge,ve,xe]}],"backdrop-filter":[{"backdrop-filter":["","none",ve,xe]}],"backdrop-blur":[{"backdrop-blur":W()}],"backdrop-brightness":[{"backdrop-brightness":[Ge,ve,xe]}],"backdrop-contrast":[{"backdrop-contrast":[Ge,ve,xe]}],"backdrop-grayscale":[{"backdrop-grayscale":["",Ge,ve,xe]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[Ge,ve,xe]}],"backdrop-invert":[{"backdrop-invert":["",Ge,ve,xe]}],"backdrop-opacity":[{"backdrop-opacity":[Ge,ve,xe]}],"backdrop-saturate":[{"backdrop-saturate":[Ge,ve,xe]}],"backdrop-sepia":[{"backdrop-sepia":["",Ge,ve,xe]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":T()}],"border-spacing-x":[{"border-spacing-x":T()}],"border-spacing-y":[{"border-spacing-y":T()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",ve,xe]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[Ge,"initial",ve,xe]}],ease:[{ease:["linear","initial",y,ve,xe]}],delay:[{delay:[Ge,ve,xe]}],animate:[{animate:["none",b,ve,xe]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[m,ve,xe]}],"perspective-origin":[{"perspective-origin":E()}],rotate:[{rotate:X()}],"rotate-x":[{"rotate-x":X()}],"rotate-y":[{"rotate-y":X()}],"rotate-z":[{"rotate-z":X()}],scale:[{scale:Q()}],"scale-x":[{"scale-x":Q()}],"scale-y":[{"scale-y":Q()}],"scale-z":[{"scale-z":Q()}],"scale-3d":["scale-3d"],skew:[{skew:re()}],"skew-x":[{"skew-x":re()}],"skew-y":[{"skew-y":re()}],transform:[{transform:[ve,xe,"","none","gpu","cpu"]}],"transform-origin":[{origin:E()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:K()}],"translate-x":[{"translate-x":K()}],"translate-y":[{"translate-y":K()}],"translate-z":[{"translate-z":K()}],"translate-none":["translate-none"],accent:[{accent:A()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:A()}],"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",ve,xe]}],"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":T()}],"scroll-mx":[{"scroll-mx":T()}],"scroll-my":[{"scroll-my":T()}],"scroll-ms":[{"scroll-ms":T()}],"scroll-me":[{"scroll-me":T()}],"scroll-mt":[{"scroll-mt":T()}],"scroll-mr":[{"scroll-mr":T()}],"scroll-mb":[{"scroll-mb":T()}],"scroll-ml":[{"scroll-ml":T()}],"scroll-p":[{"scroll-p":T()}],"scroll-px":[{"scroll-px":T()}],"scroll-py":[{"scroll-py":T()}],"scroll-ps":[{"scroll-ps":T()}],"scroll-pe":[{"scroll-pe":T()}],"scroll-pt":[{"scroll-pt":T()}],"scroll-pr":[{"scroll-pr":T()}],"scroll-pb":[{"scroll-pb":T()}],"scroll-pl":[{"scroll-pl":T()}],"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",ve,xe]}],fill:[{fill:["none",...A()]}],"stroke-w":[{stroke:[Ge,Zo,Sr,ul]}],stroke:[{stroke:["none",...A()]}],"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"]}},zb=yb($b);function Ye(...e){return zb(Wh(e))}const ng=(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)}},Fb=e=>{try{const t=atob(e.content),n=new Array(t.length);for(let i=0;i<t.length;i++)n[i]=t.charCodeAt(i);const r=new Uint8Array(n),o=new Blob([r],{type:e.mime_type??"application/octet-stream"});ng(o,e.name)}catch(t){console.error("Error creating download link:",t)}},rg=(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]},Dd=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}},Bb=e=>{if(!e)return"N/A";try{return new Date(e).toLocaleString()}catch{return"N/A"}},Od=(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," "),Hb=(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 Oe(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 Vb(e,t){const n=g.createContext(t),r=i=>{const{children:s,...a}=i,l=g.useMemo(()=>a,Object.values(a));return d.jsx(n.Provider,{value:l,children:s})};r.displayName=e+"Provider";function o(i){const s=g.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 vr(e,t=[]){let n=[];function r(i,s){const a=g.createContext(s),l=n.length;n=[...n,s];const c=f=>{var y;const{scope:p,children:h,...x}=f,m=((y=p==null?void 0:p[e])==null?void 0:y[l])||a,v=g.useMemo(()=>x,Object.values(x));return d.jsx(m.Provider,{value:v,children:h})};c.displayName=i+"Provider";function u(f,p){var m;const h=((m=p==null?void 0:p[e])==null?void 0:m[l])||a,x=g.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=>g.createContext(s));return function(a){const l=(a==null?void 0:a[e])||i;return g.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 g.useMemo(()=>({[`__scope${t.scopeName}`]:s}),[s])}};return n.scopeName=t.scopeName,n}var Wo=Kw();const Wb=Qc(Wo);var Gb=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],et=Gb.reduce((e,t)=>{const n=Lr(`Primitive.${t}`),r=g.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 Yb(e,t){e&&Wo.flushSync(()=>e.dispatchEvent(t))}function pr(e){const t=g.useRef(e);return g.useEffect(()=>{t.current=e}),g.useMemo(()=>(...n)=>{var r;return(r=t.current)==null?void 0:r.call(t,...n)},[])}function qb(e,t=globalThis==null?void 0:globalThis.document){const n=pr(e);g.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 Kb="DismissableLayer",oc="dismissableLayer.update",Xb="dismissableLayer.pointerDownOutside",Zb="dismissableLayer.focusOutside",Ld,og=g.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),Gi=g.forwardRef((e,t)=>{const{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:o,onFocusOutside:i,onInteractOutside:s,onDismiss:a,...l}=e,c=g.useContext(og),[u,f]=g.useState(null),p=(u==null?void 0:u.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,h]=g.useState({}),x=ft(t,C=>f(C)),m=Array.from(c.layers),[v]=[...c.layersWithOutsidePointerEventsDisabled].slice(-1),y=m.indexOf(v),b=u?m.indexOf(u):-1,w=c.layersWithOutsidePointerEventsDisabled.size>0,S=b>=y,E=e1(C=>{const T=C.target,P=[...c.branches].some(B=>B.contains(T));!S||P||(o==null||o(C),s==null||s(C),C.defaultPrevented||a==null||a())},p),k=t1(C=>{const T=C.target;[...c.branches].some(B=>B.contains(T))||(i==null||i(C),s==null||s(C),C.defaultPrevented||a==null||a())},p);return qb(C=>{b===c.layers.size-1&&(r==null||r(C),!C.defaultPrevented&&a&&(C.preventDefault(),a()))},p),g.useEffect(()=>{if(u)return n&&(c.layersWithOutsidePointerEventsDisabled.size===0&&(Ld=p.body.style.pointerEvents,p.body.style.pointerEvents="none"),c.layersWithOutsidePointerEventsDisabled.add(u)),c.layers.add(u),$d(),()=>{n&&c.layersWithOutsidePointerEventsDisabled.size===1&&(p.body.style.pointerEvents=Ld)}},[u,p,n,c]),g.useEffect(()=>()=>{u&&(c.layers.delete(u),c.layersWithOutsidePointerEventsDisabled.delete(u),$d())},[u,c]),g.useEffect(()=>{const C=()=>h({});return document.addEventListener(oc,C),()=>document.removeEventListener(oc,C)},[]),d.jsx(et.div,{...l,ref:x,style:{pointerEvents:w?S?"auto":"none":void 0,...e.style},onFocusCapture:Oe(e.onFocusCapture,k.onFocusCapture),onBlurCapture:Oe(e.onBlurCapture,k.onBlurCapture),onPointerDownCapture:Oe(e.onPointerDownCapture,E.onPointerDownCapture)})});Gi.displayName=Kb;var Qb="DismissableLayerBranch",Jb=g.forwardRef((e,t)=>{const n=g.useContext(og),r=g.useRef(null),o=ft(t,r);return g.useEffect(()=>{const i=r.current;if(i)return n.branches.add(i),()=>{n.branches.delete(i)}},[n.branches]),d.jsx(et.div,{...e,ref:o})});Jb.displayName=Qb;function e1(e,t=globalThis==null?void 0:globalThis.document){const n=pr(e),r=g.useRef(!1),o=g.useRef(()=>{});return g.useEffect(()=>{const i=a=>{if(a.target&&!r.current){let l=function(){ig(Xb,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 t1(e,t=globalThis==null?void 0:globalThis.document){const n=pr(e),r=g.useRef(!1);return g.useEffect(()=>{const o=i=>{i.target&&!r.current&&ig(Zb,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 $d(){const e=new CustomEvent(oc);document.dispatchEvent(e)}function ig(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?Yb(o,i):o.dispatchEvent(i)}var Vt=globalThis!=null&&globalThis.document?g.useLayoutEffect:()=>{},n1=Jc[" useId ".trim().toString()]||(()=>{}),r1=0;function Mn(e){const[t,n]=g.useState(n1());return Vt(()=>{n(r=>r??String(r1++))},[e]),t?`radix-${t}`:""}const o1=["top","right","bottom","left"],hr=Math.min,rn=Math.max,Gs=Math.round,ls=Math.floor,Rn=e=>({x:e,y:e}),i1={left:"right",right:"left",bottom:"top",top:"bottom"},s1={start:"end",end:"start"};function ic(e,t,n){return rn(e,hr(t,n))}function Zn(e,t){return typeof e=="function"?e(t):e}function Qn(e){return e.split("-")[0]}function Go(e){return e.split("-")[1]}function nu(e){return e==="x"?"y":"x"}function ru(e){return e==="y"?"height":"width"}const a1=new Set(["top","bottom"]);function Nn(e){return a1.has(Qn(e))?"y":"x"}function ou(e){return nu(Nn(e))}function l1(e,t,n){n===void 0&&(n=!1);const r=Go(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=Ys(s)),[s,Ys(s)]}function c1(e){const t=Ys(e);return[sc(e),t,sc(t)]}function sc(e){return e.replace(/start|end/g,t=>s1[t])}const zd=["left","right"],Fd=["right","left"],u1=["top","bottom"],d1=["bottom","top"];function f1(e,t,n){switch(e){case"top":case"bottom":return n?t?Fd:zd:t?zd:Fd;case"left":case"right":return t?u1:d1;default:return[]}}function p1(e,t,n,r){const o=Go(e);let i=f1(Qn(e),n==="start",r);return o&&(i=i.map(s=>s+"-"+o),t&&(i=i.concat(i.map(sc)))),i}function Ys(e){return e.replace(/left|right|bottom|top/g,t=>i1[t])}function h1(e){return{top:0,right:0,bottom:0,left:0,...e}}function sg(e){return typeof e!="number"?h1(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 Bd(e,t,n){let{reference:r,floating:o}=e;const i=Nn(t),s=ou(t),a=ru(s),l=Qn(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(Go(t)){case"start":h[s]-=p*(n&&c?-1:1);break;case"end":h[s]+=p*(n&&c?-1:1);break}return h}const g1=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}=Bd(c,r,l),p=r,h={},x=0;for(let m=0;m<a.length;m++){const{name:v,fn:y}=a[m],{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}=Bd(c,p,l)),m=-1)}return{x:u,y:f,placement:p,strategy:o,middlewareData:h}};async function Ti(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}=Zn(t,e),x=sg(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}=Zn(e,t)||{};if(c==null)return{};const f=sg(u),p={x:n,y:r},h=ou(o),x=ru(h),m=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 T=S/2-E/2,P=C/2-m[x]/2-1,B=hr(f[y],P),O=hr(f[b],P),z=B,L=C-m[x]-O,_=C/2-m[x]/2+T,I=ic(z,_,L),M=!l.arrow&&Go(o)!=null&&_!==I&&i.reference[x]/2-(_<z?B:O)-m[x]/2<0,j=M?_<z?_-z:_-L:0;return{[h]:p[h]+j,data:{[h]:I,centerOffset:_-I-j,...M&&{alignmentOffset:j}},reset:M}}}),x1=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:m=!0,...v}=Zn(e,t);if((n=i.arrow)!=null&&n.alignmentOffset)return{};const y=Qn(o),b=Nn(a),w=Qn(a)===a,S=await(l.isRTL==null?void 0:l.isRTL(c.floating)),E=p||(w||!m?[Ys(a)]:c1(a)),k=x!=="none";!p&&k&&E.push(...p1(a,m,x,S));const C=[a,...E],T=await Ti(t,v),P=[];let B=((r=i.flip)==null?void 0:r.overflows)||[];if(u&&P.push(T[y]),f){const _=l1(o,s,S);P.push(T[_[0]],T[_[1]])}if(B=[...B,{placement:o,overflows:P}],!P.every(_=>_<=0)){var O,z;const _=(((O=i.flip)==null?void 0:O.index)||0)+1,I=C[_];if(I&&(!(f==="alignment"?b!==Nn(I):!1)||B.every(A=>A.overflows[0]>0&&Nn(A.placement)===b)))return{data:{index:_,overflows:B},reset:{placement:I}};let M=(z=B.filter(j=>j.overflows[0]<=0).sort((j,A)=>j.overflows[1]-A.overflows[1])[0])==null?void 0:z.placement;if(!M)switch(h){case"bestFit":{var L;const j=(L=B.filter(A=>{if(k){const N=Nn(A.placement);return N===b||N==="y"}return!0}).map(A=>[A.placement,A.overflows.filter(N=>N>0).reduce((N,R)=>N+R,0)]).sort((A,N)=>A[1]-N[1])[0])==null?void 0:L[0];j&&(M=j);break}case"initialPlacement":M=a;break}if(o!==M)return{reset:{placement:M}}}return{}}}};function Hd(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function Vd(e){return o1.some(t=>e[t]>=0)}const v1=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){const{rects:n}=t,{strategy:r="referenceHidden",...o}=Zn(e,t);switch(r){case"referenceHidden":{const i=await Ti(t,{...o,elementContext:"reference"}),s=Hd(i,n.reference);return{data:{referenceHiddenOffsets:s,referenceHidden:Vd(s)}}}case"escaped":{const i=await Ti(t,{...o,altBoundary:!0}),s=Hd(i,n.floating);return{data:{escapedOffsets:s,escaped:Vd(s)}}}default:return{}}}}},ag=new Set(["left","top"]);async function y1(e,t){const{placement:n,platform:r,elements:o}=e,i=await(r.isRTL==null?void 0:r.isRTL(o.floating)),s=Qn(n),a=Go(n),l=Nn(n)==="y",c=ag.has(s)?-1:1,u=i&&l?-1:1,f=Zn(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 w1=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 y1(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}}}}},b1=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}=Zn(e,t),c={x:n,y:r},u=await Ti(t,l),f=Nn(Qn(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 m=a.fn({...t,[p]:h,[f]:x});return{...m,data:{x:m.x-n,y:m.y-r,enabled:{[p]:i,[f]:s}}}}}},E1=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}=Zn(e,t),u={x:n,y:r},f=Nn(o),p=nu(f);let h=u[p],x=u[f];const m=Zn(a,t),v=typeof m=="number"?{mainAxis:m,crossAxis:0}:{mainAxis:0,crossAxis:0,...m};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=ag.has(Qn(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}}}},S1=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}=Zn(e,t),u=await Ti(t,c),f=Qn(o),p=Go(o),h=Nn(o)==="y",{width:x,height:m}=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=m-u.top-u.bottom,w=x-u.left-u.right,S=hr(m-u[v],b),E=hr(x-u[y],w),k=!t.middlewareData.shift;let C=S,T=E;if((n=t.middlewareData.shift)!=null&&n.enabled.x&&(T=w),(r=t.middlewareData.shift)!=null&&r.enabled.y&&(C=b),k&&!p){const B=rn(u.left,0),O=rn(u.right,0),z=rn(u.top,0),L=rn(u.bottom,0);h?T=x-2*(B!==0||O!==0?B+O:rn(u.left,u.right)):C=m-2*(z!==0||L!==0?z+L:rn(u.top,u.bottom))}await l({...t,availableWidth:T,availableHeight:C});const P=await s.getDimensions(a.floating);return x!==P.width||m!==P.height?{reset:{rects:!0}}:{}}}};function Ca(){return typeof window<"u"}function Yo(e){return lg(e)?(e.nodeName||"").toLowerCase():"#document"}function an(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function $n(e){var t;return(t=(lg(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function lg(e){return Ca()?e instanceof Node||e instanceof an(e).Node:!1}function wn(e){return Ca()?e instanceof Element||e instanceof an(e).Element:!1}function On(e){return Ca()?e instanceof HTMLElement||e instanceof an(e).HTMLElement:!1}function Ud(e){return!Ca()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof an(e).ShadowRoot}const k1=new Set(["inline","contents"]);function Yi(e){const{overflow:t,overflowX:n,overflowY:r,display:o}=bn(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!k1.has(o)}const C1=new Set(["table","td","th"]);function _1(e){return C1.has(Yo(e))}const T1=[":popover-open",":modal"];function _a(e){return T1.some(t=>{try{return e.matches(t)}catch{return!1}})}const A1=["transform","translate","scale","rotate","perspective"],N1=["transform","translate","scale","rotate","perspective","filter"],j1=["paint","layout","strict","content"];function iu(e){const t=su(),n=wn(e)?bn(e):e;return A1.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)||N1.some(r=>(n.willChange||"").includes(r))||j1.some(r=>(n.contain||"").includes(r))}function I1(e){let t=gr(e);for(;On(t)&&!_o(t);){if(iu(t))return t;if(_a(t))return null;t=gr(t)}return null}function su(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const M1=new Set(["html","body","#document"]);function _o(e){return M1.has(Yo(e))}function bn(e){return an(e).getComputedStyle(e)}function Ta(e){return wn(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function gr(e){if(Yo(e)==="html")return e;const t=e.assignedSlot||e.parentNode||Ud(e)&&e.host||$n(e);return Ud(t)?t.host:t}function cg(e){const t=gr(e);return _o(t)?e.ownerDocument?e.ownerDocument.body:e.body:On(t)&&Yi(t)?t:cg(t)}function Ai(e,t,n){var r;t===void 0&&(t=[]),n===void 0&&(n=!0);const o=cg(e),i=o===((r=e.ownerDocument)==null?void 0:r.body),s=an(o);if(i){const a=ac(s);return t.concat(s,s.visualViewport||[],Yi(o)?o:[],a&&n?Ai(a):[])}return t.concat(o,Ai(o,[],n))}function ac(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function ug(e){const t=bn(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const o=On(e),i=o?e.offsetWidth:n,s=o?e.offsetHeight:r,a=Gs(n)!==i||Gs(r)!==s;return a&&(n=i,r=s),{width:n,height:r,$:a}}function au(e){return wn(e)?e:e.contextElement}function wo(e){const t=au(e);if(!On(t))return Rn(1);const n=t.getBoundingClientRect(),{width:r,height:o,$:i}=ug(t);let s=(i?Gs(n.width):n.width)/r,a=(i?Gs(n.height):n.height)/o;return(!s||!Number.isFinite(s))&&(s=1),(!a||!Number.isFinite(a))&&(a=1),{x:s,y:a}}const R1=Rn(0);function dg(e){const t=an(e);return!su()||!t.visualViewport?R1:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function P1(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==an(e)?!1:t}function $r(e,t,n,r){t===void 0&&(t=!1),n===void 0&&(n=!1);const o=e.getBoundingClientRect(),i=au(e);let s=Rn(1);t&&(r?wn(r)&&(s=wo(r)):s=wo(e));const a=P1(i,n,r)?dg(i):Rn(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=an(i),h=r&&wn(r)?an(r):r;let x=p,m=ac(x);for(;m&&r&&h!==x;){const v=wo(m),y=m.getBoundingClientRect(),b=bn(m),w=y.left+(m.clientLeft+parseFloat(b.paddingLeft))*v.x,S=y.top+(m.clientTop+parseFloat(b.paddingTop))*v.y;l*=v.x,c*=v.y,u*=v.x,f*=v.y,l+=w,c+=S,x=an(m),m=ac(x)}}return qs({width:u,height:f,x:l,y:c})}function lu(e,t){const n=Ta(e).scrollLeft;return t?t.left+n:$r($n(e)).left+n}function fg(e,t,n){n===void 0&&(n=!1);const r=e.getBoundingClientRect(),o=r.left+t.scrollLeft-(n?0:lu(e,r)),i=r.top+t.scrollTop;return{x:o,y:i}}function D1(e){let{elements:t,rect:n,offsetParent:r,strategy:o}=e;const i=o==="fixed",s=$n(r),a=t?_a(t.floating):!1;if(r===s||a&&i)return n;let l={scrollLeft:0,scrollTop:0},c=Rn(1);const u=Rn(0),f=On(r);if((f||!f&&!i)&&((Yo(r)!=="body"||Yi(s))&&(l=Ta(r)),On(r))){const h=$r(r);c=wo(r),u.x=h.x+r.clientLeft,u.y=h.y+r.clientTop}const p=s&&!f&&!i?fg(s,l,!0):Rn(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 O1(e){return Array.from(e.getClientRects())}function L1(e){const t=$n(e),n=Ta(e),r=e.ownerDocument.body,o=rn(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),i=rn(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let s=-n.scrollLeft+lu(e);const a=-n.scrollTop;return bn(r).direction==="rtl"&&(s+=rn(t.clientWidth,r.clientWidth)-o),{width:o,height:i,x:s,y:a}}function $1(e,t){const n=an(e),r=$n(e),o=n.visualViewport;let i=r.clientWidth,s=r.clientHeight,a=0,l=0;if(o){i=o.width,s=o.height;const c=su();(!c||c&&t==="fixed")&&(a=o.offsetLeft,l=o.offsetTop)}return{width:i,height:s,x:a,y:l}}const z1=new Set(["absolute","fixed"]);function F1(e,t){const n=$r(e,!0,t==="fixed"),r=n.top+e.clientTop,o=n.left+e.clientLeft,i=On(e)?wo(e):Rn(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 Wd(e,t,n){let r;if(t==="viewport")r=$1(e,n);else if(t==="document")r=L1($n(e));else if(wn(t))r=F1(t,n);else{const o=dg(e);r={x:t.x-o.x,y:t.y-o.y,width:t.width,height:t.height}}return qs(r)}function pg(e,t){const n=gr(e);return n===t||!wn(n)||_o(n)?!1:bn(n).position==="fixed"||pg(n,t)}function B1(e,t){const n=t.get(e);if(n)return n;let r=Ai(e,[],!1).filter(a=>wn(a)&&Yo(a)!=="body"),o=null;const i=bn(e).position==="fixed";let s=i?gr(e):e;for(;wn(s)&&!_o(s);){const a=bn(s),l=iu(s);!l&&a.position==="fixed"&&(o=null),(i?!l&&!o:!l&&a.position==="static"&&!!o&&z1.has(o.position)||Yi(s)&&!l&&pg(e,s))?r=r.filter(u=>u!==s):o=a,s=gr(s)}return t.set(e,r),r}function H1(e){let{element:t,boundary:n,rootBoundary:r,strategy:o}=e;const s=[...n==="clippingAncestors"?_a(t)?[]:B1(t,this._c):[].concat(n),r],a=s[0],l=s.reduce((c,u)=>{const f=Wd(t,u,o);return c.top=rn(f.top,c.top),c.right=hr(f.right,c.right),c.bottom=hr(f.bottom,c.bottom),c.left=rn(f.left,c.left),c},Wd(t,a,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function V1(e){const{width:t,height:n}=ug(e);return{width:t,height:n}}function U1(e,t,n){const r=On(t),o=$n(t),i=n==="fixed",s=$r(e,!0,i,t);let a={scrollLeft:0,scrollTop:0};const l=Rn(0);function c(){l.x=lu(o)}if(r||!r&&!i)if((Yo(t)!=="body"||Yi(o))&&(a=Ta(t)),r){const h=$r(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?fg(o,a):Rn(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 bn(e).position==="static"}function Gd(e,t){if(!On(e)||bn(e).position==="fixed")return null;if(t)return t(e);let n=e.offsetParent;return $n(e)===n&&(n=n.ownerDocument.body),n}function hg(e,t){const n=an(e);if(_a(e))return n;if(!On(e)){let o=gr(e);for(;o&&!_o(o);){if(wn(o)&&!dl(o))return o;o=gr(o)}return n}let r=Gd(e,t);for(;r&&_1(r)&&dl(r);)r=Gd(r,t);return r&&_o(r)&&dl(r)&&!iu(r)?n:r||I1(e)||n}const W1=async function(e){const t=this.getOffsetParent||hg,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 G1(e){return bn(e).direction==="rtl"}const Y1={convertOffsetParentRelativeRectToViewportRelativeRect:D1,getDocumentElement:$n,getClippingRect:H1,getOffsetParent:hg,getElementRects:W1,getClientRects:O1,getDimensions:V1,getScale:wo,isElement:wn,isRTL:G1};function gg(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function q1(e,t){let n=null,r;const o=$n(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=ls(f),m=ls(o.clientWidth-(u+p)),v=ls(o.clientHeight-(f+h)),y=ls(u),w={rootMargin:-x+"px "+-m+"px "+-v+"px "+-y+"px",threshold:rn(0,hr(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&&!gg(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 K1(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?Ai(c):[],...Ai(t)]:[];u.forEach(y=>{o&&y.addEventListener("scroll",n,{passive:!0}),i&&y.addEventListener("resize",n)});const f=c&&a?q1(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,m=l?$r(e):null;l&&v();function v(){const y=$r(e);m&&!gg(m,y)&&n(),m=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 X1=w1,Z1=b1,Q1=x1,J1=S1,eE=v1,Yd=m1,tE=E1,nE=(e,t,n)=>{const r=new Map,o={platform:Y1,...n},i={...o.platform,_c:r};return g1(e,t,{...o,platform:i})};var rE=typeof document<"u",oE=function(){},Rs=rE?g.useLayoutEffect:oE;function Ks(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(!Ks(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)&&!Ks(e[i],t[i]))return!1}return!0}return e!==e&&t!==t}function mg(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function qd(e,t){const n=mg(e);return Math.round(t*n)/n}function fl(e){const t=g.useRef(e);return Rs(()=>{t.current=e}),t}function iE(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]=g.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[p,h]=g.useState(r);Ks(p,r)||h(r);const[x,m]=g.useState(null),[v,y]=g.useState(null),b=g.useCallback(A=>{A!==k.current&&(k.current=A,m(A))},[]),w=g.useCallback(A=>{A!==C.current&&(C.current=A,y(A))},[]),S=i||x,E=s||v,k=g.useRef(null),C=g.useRef(null),T=g.useRef(u),P=l!=null,B=fl(l),O=fl(o),z=fl(c),L=g.useCallback(()=>{if(!k.current||!C.current)return;const A={placement:t,strategy:n,middleware:p};O.current&&(A.platform=O.current),nE(k.current,C.current,A).then(N=>{const R={...N,isPositioned:z.current!==!1};_.current&&!Ks(T.current,R)&&(T.current=R,Wo.flushSync(()=>{f(R)}))})},[p,t,n,O,z]);Rs(()=>{c===!1&&T.current.isPositioned&&(T.current.isPositioned=!1,f(A=>({...A,isPositioned:!1})))},[c]);const _=g.useRef(!1);Rs(()=>(_.current=!0,()=>{_.current=!1}),[]),Rs(()=>{if(S&&(k.current=S),E&&(C.current=E),S&&E){if(B.current)return B.current(S,E,L);L()}},[S,E,L,B,P]);const I=g.useMemo(()=>({reference:k,floating:C,setReference:b,setFloating:w}),[b,w]),M=g.useMemo(()=>({reference:S,floating:E}),[S,E]),j=g.useMemo(()=>{const A={position:n,left:0,top:0};if(!M.floating)return A;const N=qd(M.floating,u.x),R=qd(M.floating,u.y);return a?{...A,transform:"translate("+N+"px, "+R+"px)",...mg(M.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:N,top:R}},[n,a,M.floating,u.x,u.y]);return g.useMemo(()=>({...u,update:L,refs:I,elements:M,floatingStyles:j}),[u,L,I,M,j])}const sE=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?Yd({element:r.current,padding:o}).fn(n):{}:r?Yd({element:r,padding:o}).fn(n):{}}}},aE=(e,t)=>({...X1(e),options:[e,t]}),lE=(e,t)=>({...Z1(e),options:[e,t]}),cE=(e,t)=>({...tE(e),options:[e,t]}),uE=(e,t)=>({...Q1(e),options:[e,t]}),dE=(e,t)=>({...J1(e),options:[e,t]}),fE=(e,t)=>({...eE(e),options:[e,t]}),pE=(e,t)=>({...sE(e),options:[e,t]});var hE="Arrow",xg=g.forwardRef((e,t)=>{const{children:n,width:r=10,height:o=5,...i}=e;return d.jsx(et.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"})})});xg.displayName=hE;var gE=xg;function mE(e){const[t,n]=g.useState(void 0);return Vt(()=>{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 cu="Popper",[vg,qo]=vr(cu),[xE,yg]=vg(cu),wg=e=>{const{__scopePopper:t,children:n}=e,[r,o]=g.useState(null);return d.jsx(xE,{scope:t,anchor:r,onAnchorChange:o,children:n})};wg.displayName=cu;var bg="PopperAnchor",Eg=g.forwardRef((e,t)=>{const{__scopePopper:n,virtualRef:r,...o}=e,i=yg(bg,n),s=g.useRef(null),a=ft(t,s);return g.useEffect(()=>{i.onAnchorChange((r==null?void 0:r.current)||s.current)}),r?null:d.jsx(et.div,{...o,ref:a})});Eg.displayName=bg;var uu="PopperContent",[vE,yE]=vg(uu),Sg=g.forwardRef((e,t)=>{var F,W,X,Q,re,K;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,...m}=e,v=yg(uu,n),[y,b]=g.useState(null),w=ft(t,ne=>b(ne)),[S,E]=g.useState(null),k=mE(S),C=(k==null?void 0:k.width)??0,T=(k==null?void 0:k.height)??0,P=r+(i!=="center"?"-"+i:""),B=typeof u=="number"?u:{top:0,right:0,bottom:0,left:0,...u},O=Array.isArray(c)?c:[c],z=O.length>0,L={padding:B,boundary:O.filter(bE),altBoundary:z},{refs:_,floatingStyles:I,placement:M,isPositioned:j,middlewareData:A}=iE({strategy:"fixed",placement:P,whileElementsMounted:(...ne)=>K1(...ne,{animationFrame:h==="always"}),elements:{reference:v.anchor},middleware:[aE({mainAxis:o+T,alignmentAxis:s}),l&&lE({mainAxis:!0,crossAxis:!1,limiter:f==="partial"?cE():void 0,...L}),l&&uE({...L}),dE({...L,apply:({elements:ne,rects:ie,availableWidth:he,availableHeight:ue})=>{const{width:we,height:Ee}=ie.reference,Ke=ne.floating.style;Ke.setProperty("--radix-popper-available-width",`${he}px`),Ke.setProperty("--radix-popper-available-height",`${ue}px`),Ke.setProperty("--radix-popper-anchor-width",`${we}px`),Ke.setProperty("--radix-popper-anchor-height",`${Ee}px`)}}),S&&pE({element:S,padding:a}),EE({arrowWidth:C,arrowHeight:T}),p&&fE({strategy:"referenceHidden",...L})]}),[N,R]=_g(M),D=pr(x);Vt(()=>{j&&(D==null||D())},[j,D]);const Y=(F=A.arrow)==null?void 0:F.x,H=(W=A.arrow)==null?void 0:W.y,V=((X=A.arrow)==null?void 0:X.centerOffset)!==0,[U,G]=g.useState();return Vt(()=>{y&&G(window.getComputedStyle(y).zIndex)},[y]),d.jsx("div",{ref:_.setFloating,"data-radix-popper-content-wrapper":"",style:{...I,transform:j?I.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:U,"--radix-popper-transform-origin":[(Q=A.transformOrigin)==null?void 0:Q.x,(re=A.transformOrigin)==null?void 0:re.y].join(" "),...((K=A.hide)==null?void 0:K.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:d.jsx(vE,{scope:n,placedSide:N,onArrowChange:E,arrowX:Y,arrowY:H,shouldHideArrow:V,children:d.jsx(et.div,{"data-side":N,"data-align":R,...m,ref:w,style:{...m.style,animation:j?void 0:"none"}})})})});Sg.displayName=uu;var kg="PopperArrow",wE={top:"bottom",right:"left",bottom:"top",left:"right"},Cg=g.forwardRef(function(t,n){const{__scopePopper:r,...o}=t,i=yE(kg,r),s=wE[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(gE,{...o,ref:n,style:{...o.style,display:"block"}})})});Cg.displayName=kg;function bE(e){return e!==null}var EE=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]=_g(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="",m="";return c==="bottom"?(x=s?f:`${p}px`,m=`${-l}px`):c==="top"?(x=s?f:`${p}px`,m=`${r.floating.height+l}px`):c==="right"?(x=`${-l}px`,m=s?f:`${h}px`):c==="left"&&(x=`${r.floating.width+l}px`,m=s?f:`${h}px`),{data:{x,y:m}}}});function _g(e){const[t,n="center"]=e.split("-");return[t,n]}var du=wg,Aa=Eg,fu=Sg,pu=Cg,SE="Portal",qi=g.forwardRef((e,t)=>{var a;const{container:n,...r}=e,[o,i]=g.useState(!1);Vt(()=>i(!0),[]);const s=n||o&&((a=globalThis==null?void 0:globalThis.document)==null?void 0:a.body);return s?Wb.createPortal(d.jsx(et.div,{...r,ref:t}),s):null});qi.displayName=SE;function kE(e,t){return g.useReducer((n,r)=>t[n][r]??n,e)}var tr=e=>{const{present:t,children:n}=e,r=CE(t),o=typeof n=="function"?n({present:r.isPresent}):g.Children.only(n),i=ft(r.ref,_E(o));return typeof n=="function"||r.isPresent?g.cloneElement(o,{ref:i}):null};tr.displayName="Presence";function CE(e){const[t,n]=g.useState(),r=g.useRef(null),o=g.useRef(e),i=g.useRef("none"),s=e?"mounted":"unmounted",[a,l]=kE(s,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return g.useEffect(()=>{const c=cs(r.current);i.current=a==="mounted"?c:"none"},[a]),Vt(()=>{const c=r.current,u=o.current;if(u!==e){const p=i.current,h=cs(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]),Vt(()=>{if(t){let c;const u=t.ownerDocument.defaultView??window,f=h=>{const m=cs(r.current).includes(h.animationName);if(h.target===t&&m&&(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=cs(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:g.useCallback(c=>{r.current=c?getComputedStyle(c):null,n(c)},[])}}function cs(e){return(e==null?void 0:e.animationName)||"none"}function _E(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 TE=Jc[" useInsertionEffect ".trim().toString()]||Vt;function zr({prop:e,defaultProp:t,onChange:n=()=>{},caller:r}){const[o,i,s]=AE({defaultProp:t,onChange:n}),a=e!==void 0,l=a?e:o;{const u=g.useRef(e!==void 0);g.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=g.useCallback(u=>{var f;if(a){const p=NE(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 AE({defaultProp:e,onChange:t}){const[n,r]=g.useState(e),o=g.useRef(n),i=g.useRef(t);return TE(()=>{i.current=t},[t]),g.useEffect(()=>{var s;o.current!==n&&((s=i.current)==null||s.call(i,n),o.current=n)},[n,o]),[n,r,i]}function NE(e){return typeof e=="function"}var Tg=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"}),jE="VisuallyHidden",Ag=g.forwardRef((e,t)=>d.jsx(et.span,{...e,ref:t,style:{...Tg,...e.style}}));Ag.displayName=jE;var IE=Ag,[Na,q4]=vr("Tooltip",[qo]),ja=qo(),Ng="TooltipProvider",ME=700,lc="tooltip.open",[RE,hu]=Na(Ng),jg=e=>{const{__scopeTooltip:t,delayDuration:n=ME,skipDelayDuration:r=300,disableHoverableContent:o=!1,children:i}=e,s=g.useRef(!0),a=g.useRef(!1),l=g.useRef(0);return g.useEffect(()=>{const c=l.current;return()=>window.clearTimeout(c)},[]),d.jsx(RE,{scope:t,isOpenDelayedRef:s,delayDuration:n,onOpen:g.useCallback(()=>{window.clearTimeout(l.current),s.current=!1},[]),onClose:g.useCallback(()=>{window.clearTimeout(l.current),l.current=window.setTimeout(()=>s.current=!0,r)},[r]),isPointerInTransitRef:a,onPointerInTransitChange:g.useCallback(c=>{a.current=c},[]),disableHoverableContent:o,children:i})};jg.displayName=Ng;var Ni="Tooltip",[PE,Ki]=Na(Ni),Ig=e=>{const{__scopeTooltip:t,children:n,open:r,defaultOpen:o,onOpenChange:i,disableHoverableContent:s,delayDuration:a}=e,l=hu(Ni,e.__scopeTooltip),c=ja(t),[u,f]=g.useState(null),p=Mn(),h=g.useRef(0),x=s??l.disableHoverableContent,m=a??l.delayDuration,v=g.useRef(!1),[y,b]=zr({prop:r,defaultProp:o??!1,onChange:C=>{C?(l.onOpen(),document.dispatchEvent(new CustomEvent(lc))):l.onClose(),i==null||i(C)},caller:Ni}),w=g.useMemo(()=>y?v.current?"delayed-open":"instant-open":"closed",[y]),S=g.useCallback(()=>{window.clearTimeout(h.current),h.current=0,v.current=!1,b(!0)},[b]),E=g.useCallback(()=>{window.clearTimeout(h.current),h.current=0,b(!1)},[b]),k=g.useCallback(()=>{window.clearTimeout(h.current),h.current=window.setTimeout(()=>{v.current=!0,b(!0),h.current=0},m)},[m,b]);return g.useEffect(()=>()=>{h.current&&(window.clearTimeout(h.current),h.current=0)},[]),d.jsx(du,{...c,children:d.jsx(PE,{scope:t,contentId:p,open:y,stateAttribute:w,trigger:u,onTriggerChange:f,onTriggerEnter:g.useCallback(()=>{l.isOpenDelayedRef.current?k():S()},[l.isOpenDelayedRef,k,S]),onTriggerLeave:g.useCallback(()=>{x?E():(window.clearTimeout(h.current),h.current=0)},[E,x]),onOpen:S,onClose:E,disableHoverableContent:x,children:n})})};Ig.displayName=Ni;var cc="TooltipTrigger",Mg=g.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=Ki(cc,n),i=hu(cc,n),s=ja(n),a=g.useRef(null),l=ft(t,a,o.onTriggerChange),c=g.useRef(!1),u=g.useRef(!1),f=g.useCallback(()=>c.current=!1,[]);return g.useEffect(()=>()=>document.removeEventListener("pointerup",f),[f]),d.jsx(Aa,{asChild:!0,...s,children:d.jsx(et.button,{"aria-describedby":o.open?o.contentId:void 0,"data-state":o.stateAttribute,...r,ref:l,onPointerMove:Oe(e.onPointerMove,p=>{p.pointerType!=="touch"&&!u.current&&!i.isPointerInTransitRef.current&&(o.onTriggerEnter(),u.current=!0)}),onPointerLeave:Oe(e.onPointerLeave,()=>{o.onTriggerLeave(),u.current=!1}),onPointerDown:Oe(e.onPointerDown,()=>{o.open&&o.onClose(),c.current=!0,document.addEventListener("pointerup",f,{once:!0})}),onFocus:Oe(e.onFocus,()=>{c.current||o.onOpen()}),onBlur:Oe(e.onBlur,o.onClose),onClick:Oe(e.onClick,o.onClose)})})});Mg.displayName=cc;var gu="TooltipPortal",[DE,OE]=Na(gu,{forceMount:void 0}),Rg=e=>{const{__scopeTooltip:t,forceMount:n,children:r,container:o}=e,i=Ki(gu,t);return d.jsx(DE,{scope:t,forceMount:n,children:d.jsx(tr,{present:n||i.open,children:d.jsx(qi,{asChild:!0,container:o,children:r})})})};Rg.displayName=gu;var To="TooltipContent",Pg=g.forwardRef((e,t)=>{const n=OE(To,e.__scopeTooltip),{forceMount:r=n.forceMount,side:o="top",...i}=e,s=Ki(To,e.__scopeTooltip);return d.jsx(tr,{present:r||s.open,children:s.disableHoverableContent?d.jsx(Dg,{side:o,...i,ref:t}):d.jsx(LE,{side:o,...i,ref:t})})}),LE=g.forwardRef((e,t)=>{const n=Ki(To,e.__scopeTooltip),r=hu(To,e.__scopeTooltip),o=g.useRef(null),i=ft(t,o),[s,a]=g.useState(null),{trigger:l,onClose:c}=n,u=o.current,{onPointerInTransitChange:f}=r,p=g.useCallback(()=>{a(null),f(!1)},[f]),h=g.useCallback((x,m)=>{const v=x.currentTarget,y={x:x.clientX,y:x.clientY},b=BE(y,v.getBoundingClientRect()),w=HE(y,b),S=VE(m.getBoundingClientRect()),E=WE([...w,...S]);a(E),f(!0)},[f]);return g.useEffect(()=>()=>p(),[p]),g.useEffect(()=>{if(l&&u){const x=v=>h(v,u),m=v=>h(v,l);return l.addEventListener("pointerleave",x),u.addEventListener("pointerleave",m),()=>{l.removeEventListener("pointerleave",x),u.removeEventListener("pointerleave",m)}}},[l,u,h,p]),g.useEffect(()=>{if(s){const x=m=>{const v=m.target,y={x:m.clientX,y:m.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(Dg,{...e,ref:i})}),[$E,zE]=Na(Ni,{isInside:!1}),FE=Qw("TooltipContent"),Dg=g.forwardRef((e,t)=>{const{__scopeTooltip:n,children:r,"aria-label":o,onEscapeKeyDown:i,onPointerDownOutside:s,...a}=e,l=Ki(To,n),c=ja(n),{onClose:u}=l;return g.useEffect(()=>(document.addEventListener(lc,u),()=>document.removeEventListener(lc,u)),[u]),g.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(fu,{"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(FE,{children:r}),d.jsx($E,{scope:n,isInside:!0,children:d.jsx(IE,{id:l.contentId,role:"tooltip",children:o||r})})]})})});Pg.displayName=To;var Og="TooltipArrow",Lg=g.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=ja(n);return zE(Og,n).isInside?null:d.jsx(pu,{...o,...r,ref:t})});Lg.displayName=Og;function BE(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 HE(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 VE(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 WE(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),GE(t)}function GE(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 YE=jg,qE=Ig,KE=Mg,XE=Rg,ZE=Pg,QE=Lg;function JE({delayDuration:e=0,...t}){return d.jsx(YE,{"data-slot":"tooltip-provider",delayDuration:e,...t})}function mu({...e}){return d.jsx(JE,{delayDuration:500,children:d.jsx(qE,{"data-slot":"tooltip",...e})})}function xu({...e}){return d.jsx(KE,{"data-slot":"tooltip-trigger",...e})}function vu({className:e,sideOffset:t=0,children:n,...r}){return d.jsx(XE,{children:d.jsxs(ZE,{"data-slot":"tooltip-content",sideOffset:t,className:Ye("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(QE,{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)]",eS=xr("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 Je({className:e,variant:t,size:n,asChild:r=!1,tooltip:o="",testid:i="",...s}){const a=r?Hh:"button",l=o?{...s,"aria-label":o}:s,c=d.jsx(a,{"data-slot":"button","data-testid":i||o||s.title,className:Ye(eS({variant:t,size:n,className:e})),...l});return o?d.jsxs(mu,{children:[d.jsx(xu,{asChild:!0,children:c}),d.jsx(vu,{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 tS=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),nS=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,n,r)=>r?r.toUpperCase():n.toLowerCase()),Kd=e=>{const t=nS(e);return t.charAt(0).toUpperCase()+t.slice(1)},$g=(...e)=>e.filter((t,n,r)=>!!t&&t.trim()!==""&&r.indexOf(t)===n).join(" ").trim(),rS=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 oS={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 iS=g.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:o="",children:i,iconNode:s,...a},l)=>g.createElement("svg",{ref:l,...oS,width:t,height:t,stroke:e,strokeWidth:r?Number(n)*24/Number(t):n,className:$g("lucide",o),...!i&&!rS(a)&&{"aria-hidden":"true"},...a},[...s.map(([c,u])=>g.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 Re=(e,t)=>{const n=g.forwardRef(({className:r,...o},i)=>g.createElement(iS,{ref:i,iconNode:t,className:$g(`lucide-${tS(Kd(e))}`,`lucide-${e}`,r),...o}));return n.displayName=Kd(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 sS=[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]],zg=Re("arrow-down",sS);/**
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 aS=[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]],lS=Re("arrow-left",aS);/**
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 cS=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.9 4.9 14.2 14.2",key:"1m5liu"}]],uS=Re("ban",cS);/**
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 dS=[["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"}]],fS=Re("book",dS);/**
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 pS=[["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"}]],Fg=Re("bot",pS);/**
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 hS=[["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"}]],Xd=Re("box",hS);/**
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 gS=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],Bg=Re("check",gS);/**
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"}]],Hg=Re("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 xS=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],vS=Re("chevron-up",xS);/**
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 yS=[["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"}]],yu=Re("circle-alert",yS);/**
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 wS=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],bS=Re("circle-check-big",wS);/**
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 ES=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]],SS=Re("clock",ES);/**
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 kS=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],Vg=Re("code",kS);/**
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 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"}]],wu=Re("download",CS);/**
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 _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=Re("ellipsis-vertical",_S);/**
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 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=Re("ellipsis",AS);/**
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 jS=[["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"}]],Ug=Re("eye",jS);/**
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:"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=Re("file-audio",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 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"}]],PS=Re("file-code",RS);/**
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 DS=[["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=Re("file-image",DS);/**
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 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=Re("file-json",LS);/**
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 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=Re("file-spreadsheet",zS);/**
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 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"}]],Xs=Re("file-text",BS);/**
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 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"}]],Zd=Re("file",HS);/**
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 VS=[["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"}]],Qd=Re("git-merge",VS);/**
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=[["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=Re("grid-3x3",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 GS=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],bu=Re("info",GS);/**
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 YS=[["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"}]],Jd=Re("key",YS);/**
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=[["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"}]],KS=Re("link",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 XS=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],Eu=Re("loader-circle",XS);/**
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 ZS=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}]],QS=Re("message-circle",ZS);/**
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 JS=[["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"}]],Ps=Re("network",JS);/**
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 ek=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}]],Wg=Re("panel-left",ek);/**
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 tk=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]],ef=Re("panel-right",tk);/**
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=[["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"}]],Gg=Re("paperclip",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=[["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"}]],Yg=Re("refresh-ccw",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=[["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"}]],ik=Re("refresh-cw",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 sk=[["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"}]],ak=Re("send",sk);/**
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 lk=[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",key:"1qme2f"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],ck=Re("settings",lk);/**
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 uk=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]],dk=Re("shield",uk);/**
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 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"}]],qg=Re("square-pen",fk);/**
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 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"}]],Kg=Re("sun-moon",pk);/**
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 hk=[["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"}]],Xg=Re("trash",hk);/**
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 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"}]],mk=Re("triangle-alert",gk);/**
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 xk=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],Su=Re("x",xk);/**
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 vk=[["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"}]],yk=Re("wrench",vk),Zg=({onClick:e,text:t="View Agent Workflow"})=>d.jsx(Je,{variant:"ghost",size:"sm",onClick:e,tooltip:t,children:d.jsx(Ps,{className:"h-4 w-4"})}),Qg=g.forwardRef(({className:e,...t},n)=>d.jsx("textarea",{className:Ye("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}));Qg.displayName="Textarea";var hl={exports:{}},gl={};/**
323
- * @license React
324
- * use-sync-external-store-shim.production.js
325
- *
326
- * Copyright (c) Meta Platforms, Inc. and affiliates.
327
- *
328
- * This source code is licensed under the MIT license found in the
329
- * LICENSE file in the root directory of this source tree.
330
- */var tf;function wk(){if(tf)return gl;tf=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}}),m=x[0].inst,v=x[1];return i(function(){m.value=h,m.getSnapshot=p,l(m)&&v({inst:m})},[f,h,p]),o(function(){return l(m)&&v({inst:m}),f(function(){l(m)&&v({inst:m})})},[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 nf;function bk(){return nf||(nf=1,hl.exports=wk()),hl.exports}var ml="focusScope.autoFocusOnMount",xl="focusScope.autoFocusOnUnmount",rf={bubbles:!1,cancelable:!0},Ek="FocusScope",Ia=g.forwardRef((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:o,onUnmountAutoFocus:i,...s}=e,[a,l]=g.useState(null),c=pr(o),u=pr(i),f=g.useRef(null),p=ft(t,m=>l(m)),h=g.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;g.useEffect(()=>{if(r){let m=function(w){if(h.paused||!a)return;const S=w.target;a.contains(S)?f.current=S:ar(f.current,{select:!0})},v=function(w){if(h.paused||!a)return;const S=w.relatedTarget;S!==null&&(a.contains(S)||ar(f.current,{select:!0}))},y=function(w){if(document.activeElement===document.body)for(const E of w)E.removedNodes.length>0&&ar(a)};document.addEventListener("focusin",m),document.addEventListener("focusout",v);const b=new MutationObserver(y);return a&&b.observe(a,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",m),document.removeEventListener("focusout",v),b.disconnect()}}},[r,a,h.paused]),g.useEffect(()=>{if(a){sf.add(h);const m=document.activeElement;if(!a.contains(m)){const y=new CustomEvent(ml,rf);a.addEventListener(ml,c),a.dispatchEvent(y),y.defaultPrevented||(Sk(Ak(Jg(a)),{select:!0}),document.activeElement===m&&ar(a))}return()=>{a.removeEventListener(ml,c),setTimeout(()=>{const y=new CustomEvent(xl,rf);a.addEventListener(xl,u),a.dispatchEvent(y),y.defaultPrevented||ar(m??document.body,{select:!0}),a.removeEventListener(xl,u),sf.remove(h)},0)}}},[a,c,u,h]);const x=g.useCallback(m=>{if(!n&&!r||h.paused)return;const v=m.key==="Tab"&&!m.altKey&&!m.ctrlKey&&!m.metaKey,y=document.activeElement;if(v&&y){const b=m.currentTarget,[w,S]=kk(b);w&&S?!m.shiftKey&&y===S?(m.preventDefault(),n&&ar(w,{select:!0})):m.shiftKey&&y===w&&(m.preventDefault(),n&&ar(S,{select:!0})):y===b&&m.preventDefault()}},[n,r,h.paused]);return d.jsx(et.div,{tabIndex:-1,...s,ref:p,onKeyDown:x})});Ia.displayName=Ek;function Sk(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(ar(r,{select:t}),document.activeElement!==n)return}function kk(e){const t=Jg(e),n=of(t,e),r=of(t.reverse(),e);return[n,r]}function Jg(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 of(e,t){for(const n of e)if(!Ck(n,{upTo:t}))return n}function Ck(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 _k(e){return e instanceof HTMLInputElement&&"select"in e}function ar(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&_k(e)&&t&&e.select()}}var sf=Tk();function Tk(){let e=[];return{add(t){const n=e[0];t!==n&&(n==null||n.pause()),e=af(e,t),e.unshift(t)},remove(t){var n;e=af(e,t),(n=e[0])==null||n.resume()}}}function af(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function Ak(e){return e.filter(t=>t.tagName!=="A")}var vl=0;function ku(){g.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??lf()),document.body.insertAdjacentElement("beforeend",e[1]??lf()),vl++,()=>{vl===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),vl--}},[])}function lf(){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 An=function(){return An=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},An.apply(this,arguments)};function em(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 Nk(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 Ds="right-scroll-bar-position",Os="width-before-scroll-bar",jk="with-scroll-bars-hidden",Ik="--removed-body-scroll-bar-size";function yl(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function Mk(e,t){var n=g.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 Rk=typeof window<"u"?g.useLayoutEffect:g.useEffect,cf=new WeakMap;function Pk(e,t){var n=Mk(null,function(r){return e.forEach(function(o){return yl(o,r)})});return Rk(function(){var r=cf.get(n);if(r){var o=new Set(r),i=new Set(e),s=n.current;o.forEach(function(a){i.has(a)||yl(a,null)}),i.forEach(function(a){o.has(a)||yl(a,s)})}cf.set(n,e)},[e]),n}function Dk(e){return e}function Ok(e,t){t===void 0&&(t=Dk);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 Lk(e){e===void 0&&(e={});var t=Ok(null);return t.options=An({async:!0,ssr:!1},e),t}var tm=function(e){var t=e.sideCar,n=em(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 g.createElement(r,An({},n))};tm.isSideCarExport=!0;function $k(e,t){return e.useMedium(t),tm}var nm=Lk(),wl=function(){},Ma=g.forwardRef(function(e,t){var n=g.useRef(null),r=g.useState({onScrollCapture:wl,onWheelCapture:wl,onTouchMoveCapture:wl}),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,m=e.inert,v=e.allowPinchZoom,y=e.as,b=y===void 0?"div":y,w=e.gapMode,S=em(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noRelative","noIsolation","inert","allowPinchZoom","as","gapMode"]),E=p,k=Pk([n,t]),C=An(An({},S),o);return g.createElement(g.Fragment,null,u&&g.createElement(E,{sideCar:nm,removeScrollBar:c,shards:f,noRelative:h,noIsolation:x,inert:m,setCallbacks:i,allowPinchZoom:!!v,lockRef:n,gapMode:w}),s?g.cloneElement(g.Children.only(a),An(An({},C),{ref:k})):g.createElement(b,An({},C,{className:l,ref:k}),a))});Ma.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};Ma.classNames={fullWidth:Os,zeroRight:Ds};var zk=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function Fk(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=zk();return t&&e.setAttribute("nonce",t),e}function Bk(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function Hk(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var Vk=function(){var e=0,t=null;return{add:function(n){e==0&&(t=Fk())&&(Bk(t,n),Hk(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},Uk=function(){var e=Vk();return function(t,n){g.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},rm=function(){var e=Uk(),t=function(n){var r=n.styles,o=n.dynamic;return e(r,o),null};return t},Wk={left:0,top:0,right:0,gap:0},bl=function(e){return parseInt(e||"",10)||0},Gk=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[bl(n),bl(r),bl(o)]},Yk=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return Wk;var t=Gk(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=rm(),bo="data-scroll-locked",Kk=function(e,t,n,r){var o=e.left,i=e.top,s=e.right,a=e.gap;return n===void 0&&(n="margin"),`
331
- .`.concat(jk,` {
332
- overflow: hidden `).concat(r,`;
333
- padding-right: `).concat(a,"px ").concat(r,`;
334
- }
335
- body[`).concat(bo,`] {
336
- overflow: hidden `).concat(r,`;
337
- overscroll-behavior: contain;
338
- `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&`
339
- padding-left: `.concat(o,`px;
340
- padding-top: `).concat(i,`px;
341
- padding-right: `).concat(s,`px;
342
- margin-left:0;
343
- margin-top:0;
344
- margin-right: `).concat(a,"px ").concat(r,`;
345
- `),n==="padding"&&"padding-right: ".concat(a,"px ").concat(r,";")].filter(Boolean).join(""),`
346
- }
347
-
348
- .`).concat(Ds,` {
349
- right: `).concat(a,"px ").concat(r,`;
350
- }
351
-
352
- .`).concat(Os,` {
353
- margin-right: `).concat(a,"px ").concat(r,`;
354
- }
355
-
356
- .`).concat(Ds," .").concat(Ds,` {
357
- right: 0 `).concat(r,`;
358
- }
359
-
360
- .`).concat(Os," .").concat(Os,` {
361
- margin-right: 0 `).concat(r,`;
362
- }
363
-
364
- body[`).concat(bo,`] {
365
- `).concat(Ik,": ").concat(a,`px;
366
- }
367
- `)},uf=function(){var e=parseInt(document.body.getAttribute(bo)||"0",10);return isFinite(e)?e:0},Xk=function(){g.useEffect(function(){return document.body.setAttribute(bo,(uf()+1).toString()),function(){var e=uf()-1;e<=0?document.body.removeAttribute(bo):document.body.setAttribute(bo,e.toString())}},[])},Zk=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=r===void 0?"margin":r;Xk();var i=g.useMemo(function(){return Yk(o)},[o]);return g.createElement(qk,{styles:Kk(i,!t,o,n?"":"!important")})},uc=!1;if(typeof window<"u")try{var us=Object.defineProperty({},"passive",{get:function(){return uc=!0,!0}});window.addEventListener("test",us,us),window.removeEventListener("test",us,us)}catch{uc=!1}var no=uc?{passive:!1}:!1,Qk=function(e){return e.tagName==="TEXTAREA"},om=function(e,t){if(!(e instanceof Element))return!1;var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!Qk(e)&&n[t]==="visible")},Jk=function(e){return om(e,"overflowY")},eC=function(e){return om(e,"overflowX")},df=function(e,t){var n=t.ownerDocument,r=t;do{typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&(r=r.host);var o=im(e,r);if(o){var i=sm(e,r),s=i[1],a=i[2];if(s>a)return!0}r=r.parentNode}while(r&&r!==n.body);return!1},tC=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},nC=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},im=function(e,t){return e==="v"?Jk(t):eC(t)},sm=function(e,t){return e==="v"?tC(t):nC(t)},rC=function(e,t){return e==="h"&&t==="rtl"?-1:1},oC=function(e,t,n,r,o){var i=rC(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=sm(e,a),x=h[0],m=h[1],v=h[2],y=m-v-i*x;(x||y)&&im(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},ds=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},ff=function(e){return[e.deltaX,e.deltaY]},pf=function(e){return e&&"current"in e?e.current:e},iC=function(e,t){return e[0]===t[0]&&e[1]===t[1]},sC=function(e){return`
368
- .block-interactivity-`.concat(e,` {pointer-events: none;}
369
- .allow-interactivity-`).concat(e,` {pointer-events: all;}
370
- `)},aC=0,ro=[];function lC(e){var t=g.useRef([]),n=g.useRef([0,0]),r=g.useRef(),o=g.useState(aC++)[0],i=g.useState(rm)[0],s=g.useRef(e);g.useEffect(function(){s.current=e},[e]),g.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(o));var m=Nk([e.lockRef.current],(e.shards||[]).map(pf),!0).filter(Boolean);return m.forEach(function(v){return v.classList.add("allow-interactivity-".concat(o))}),function(){document.body.classList.remove("block-interactivity-".concat(o)),m.forEach(function(v){return v.classList.remove("allow-interactivity-".concat(o))})}}},[e.inert,e.lockRef.current,e.shards]);var a=g.useCallback(function(m,v){if("touches"in m&&m.touches.length===2||m.type==="wheel"&&m.ctrlKey)return!s.current.allowPinchZoom;var y=ds(m),b=n.current,w="deltaX"in m?m.deltaX:b[0]-y[0],S="deltaY"in m?m.deltaY:b[1]-y[1],E,k=m.target,C=Math.abs(w)>Math.abs(S)?"h":"v";if("touches"in m&&C==="h"&&k.type==="range")return!1;var T=df(C,k);if(!T)return!0;if(T?E=C:(E=C==="v"?"h":"v",T=df(C,k)),!T)return!1;if(!r.current&&"changedTouches"in m&&(w||S)&&(r.current=E),!E)return!0;var P=r.current||E;return oC(P,v,m,P==="h"?w:S)},[]),l=g.useCallback(function(m){var v=m;if(!(!ro.length||ro[ro.length-1]!==i)){var y="deltaY"in v?ff(v):ds(v),b=t.current.filter(function(E){return E.name===v.type&&(E.target===v.target||v.target===E.shadowParent)&&iC(E.delta,y)})[0];if(b&&b.should){v.cancelable&&v.preventDefault();return}if(!b){var w=(s.current.shards||[]).map(pf).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=g.useCallback(function(m,v,y,b){var w={name:m,delta:v,target:y,should:b,shadowParent:cC(y)};t.current.push(w),setTimeout(function(){t.current=t.current.filter(function(S){return S!==w})},1)},[]),u=g.useCallback(function(m){n.current=ds(m),r.current=void 0},[]),f=g.useCallback(function(m){c(m.type,ff(m),m.target,a(m,e.lockRef.current))},[]),p=g.useCallback(function(m){c(m.type,ds(m),m.target,a(m,e.lockRef.current))},[]);g.useEffect(function(){return ro.push(i),e.setCallbacks({onScrollCapture:f,onWheelCapture:f,onTouchMoveCapture:p}),document.addEventListener("wheel",l,no),document.addEventListener("touchmove",l,no),document.addEventListener("touchstart",u,no),function(){ro=ro.filter(function(m){return m!==i}),document.removeEventListener("wheel",l,no),document.removeEventListener("touchmove",l,no),document.removeEventListener("touchstart",u,no)}},[]);var h=e.removeScrollBar,x=e.inert;return g.createElement(g.Fragment,null,x?g.createElement(i,{styles:sC(o)}):null,h?g.createElement(Zk,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function cC(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}const uC=$k(nm,lC);var Ra=g.forwardRef(function(e,t){return g.createElement(Ma,An({},e,{ref:t,sideCar:uC}))});Ra.classNames=Ma.classNames;var dC=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},oo=new WeakMap,fs=new WeakMap,ps={},El=0,am=function(e){return e&&(e.host||am(e.parentNode))},fC=function(e,t){return t.map(function(n){if(e.contains(n))return n;var r=am(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})},pC=function(e,t,n,r){var o=fC(t,Array.isArray(e)?e:[e]);ps[n]||(ps[n]=new WeakMap);var i=ps[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",m=(oo.get(p)||0)+1,v=(i.get(p)||0)+1;oo.set(p,m),i.set(p,v),s.push(p),m===1&&x&&fs.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(),El++,function(){s.forEach(function(f){var p=oo.get(f)-1,h=i.get(f)-1;oo.set(f,p),i.set(f,h),p||(fs.has(f)||f.removeAttribute(r),fs.delete(f)),h||f.removeAttribute(n)}),El--,El||(oo=new WeakMap,oo=new WeakMap,fs=new WeakMap,ps={})}},Cu=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=dC(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live], script"))),pC(r,o,n,"aria-hidden")):function(){return null}},Pa="Dialog",[lm,K4]=vr(Pa),[hC,En]=lm(Pa),cm=e=>{const{__scopeDialog:t,children:n,open:r,defaultOpen:o,onOpenChange:i,modal:s=!0}=e,a=g.useRef(null),l=g.useRef(null),[c,u]=zr({prop:r,defaultProp:o??!1,onChange:i,caller:Pa});return d.jsx(hC,{scope:t,triggerRef:a,contentRef:l,contentId:Mn(),titleId:Mn(),descriptionId:Mn(),open:c,onOpenChange:u,onOpenToggle:g.useCallback(()=>u(f=>!f),[u]),modal:s,children:n})};cm.displayName=Pa;var um="DialogTrigger",gC=g.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=En(um,n),i=ft(t,o.triggerRef);return d.jsx(et.button,{type:"button","aria-haspopup":"dialog","aria-expanded":o.open,"aria-controls":o.contentId,"data-state":Au(o.open),...r,ref:i,onClick:Oe(e.onClick,o.onOpenToggle)})});gC.displayName=um;var _u="DialogPortal",[mC,dm]=lm(_u,{forceMount:void 0}),fm=e=>{const{__scopeDialog:t,forceMount:n,children:r,container:o}=e,i=En(_u,t);return d.jsx(mC,{scope:t,forceMount:n,children:g.Children.map(r,s=>d.jsx(tr,{present:n||i.open,children:d.jsx(qi,{asChild:!0,container:o,children:s})}))})};fm.displayName=_u;var Zs="DialogOverlay",pm=g.forwardRef((e,t)=>{const n=dm(Zs,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,i=En(Zs,e.__scopeDialog);return i.modal?d.jsx(tr,{present:r||i.open,children:d.jsx(vC,{...o,ref:t})}):null});pm.displayName=Zs;var xC=Lr("DialogOverlay.RemoveScroll"),vC=g.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=En(Zs,n);return d.jsx(Ra,{as:xC,allowPinchZoom:!0,shards:[o.contentRef],children:d.jsx(et.div,{"data-state":Au(o.open),...r,ref:t,style:{pointerEvents:"auto",...r.style}})})}),Fr="DialogContent",hm=g.forwardRef((e,t)=>{const n=dm(Fr,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,i=En(Fr,e.__scopeDialog);return d.jsx(tr,{present:r||i.open,children:i.modal?d.jsx(yC,{...o,ref:t}):d.jsx(wC,{...o,ref:t})})});hm.displayName=Fr;var yC=g.forwardRef((e,t)=>{const n=En(Fr,e.__scopeDialog),r=g.useRef(null),o=ft(t,n.contentRef,r);return g.useEffect(()=>{const i=r.current;if(i)return Cu(i)},[]),d.jsx(gm,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:Oe(e.onCloseAutoFocus,i=>{var s;i.preventDefault(),(s=n.triggerRef.current)==null||s.focus()}),onPointerDownOutside:Oe(e.onPointerDownOutside,i=>{const s=i.detail.originalEvent,a=s.button===0&&s.ctrlKey===!0;(s.button===2||a)&&i.preventDefault()}),onFocusOutside:Oe(e.onFocusOutside,i=>i.preventDefault())})}),wC=g.forwardRef((e,t)=>{const n=En(Fr,e.__scopeDialog),r=g.useRef(!1),o=g.useRef(!1);return d.jsx(gm,{...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()}})}),gm=g.forwardRef((e,t)=>{const{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:o,onCloseAutoFocus:i,...s}=e,a=En(Fr,n),l=g.useRef(null),c=ft(t,l);return ku(),d.jsxs(d.Fragment,{children:[d.jsx(Ia,{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":Au(a.open),...s,ref:c,onDismiss:()=>a.onOpenChange(!1)})}),d.jsxs(d.Fragment,{children:[d.jsx(bC,{titleId:a.titleId}),d.jsx(SC,{contentRef:l,descriptionId:a.descriptionId})]})]})}),Tu="DialogTitle",mm=g.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=En(Tu,n);return d.jsx(et.h2,{id:o.titleId,...r,ref:t})});mm.displayName=Tu;var xm="DialogDescription",vm=g.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=En(xm,n);return d.jsx(et.p,{id:o.descriptionId,...r,ref:t})});vm.displayName=xm;var ym="DialogClose",wm=g.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=En(ym,n);return d.jsx(et.button,{type:"button",...r,ref:t,onClick:Oe(e.onClick,()=>o.onOpenChange(!1))})});wm.displayName=ym;function Au(e){return e?"open":"closed"}var bm="DialogTitleWarning",[X4,Em]=Vb(bm,{contentName:Fr,titleName:Tu,docsSlug:"dialog"}),bC=({titleId:e})=>{const t=Em(bm),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
371
-
372
- If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
373
-
374
- For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return g.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},EC="DialogDescriptionWarning",SC=({contentRef:e,descriptionId:t})=>{const r=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${Em(EC).contentName}}.`;return g.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},kC=cm,CC=fm,_C=pm,TC=hm,AC=mm,NC=vm,jC=wm;function Nu({...e}){return d.jsx(kC,{"data-slot":"dialog",...e})}function IC({...e}){return d.jsx(CC,{"data-slot":"dialog-portal",...e})}function MC({className:e,...t}){return d.jsx(_C,{"data-slot":"dialog-overlay",className:Ye("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 ju({className:e,children:t,showCloseButton:n=!0,...r}){return d.jsxs(IC,{"data-slot":"dialog-portal",children:[d.jsx(MC,{}),d.jsxs(TC,{"data-slot":"dialog-content",className:Ye("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(jC,{"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(Su,{}),d.jsx("span",{className:"sr-only",children:"Close"})]})]})]})}function Iu({className:e,...t}){return d.jsx("div",{"data-slot":"dialog-header",className:Ye("flex flex-col gap-2 text-center sm:text-left",e),...t})}function Mu({className:e,...t}){return d.jsx(AC,{"data-slot":"dialog-title",className:Ye("text-lg leading-none font-semibold",e),...t})}function Ru({className:e,...t}){return d.jsx(NC,{"data-slot":"dialog-description",className:Ye("py-4 text-sm",e),...t})}const Da=g.createContext(null);Da.displayName="PanelGroupContext";const _t={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"},Pu=10,Rr=g.useLayoutEffect,hf=Jc.useId,RC=typeof hf=="function"?hf:()=>null;let PC=0;function Du(e=null){const t=RC(),n=g.useRef(e||t||null);return n.current===null&&(n.current=""+PC++),e??n.current}function Sm({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",...m}){const v=g.useContext(Da);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:T,resizePanel:P,unregisterPanel:B}=v,O=Du(s),z=g.useRef({callbacks:{onCollapse:c,onExpand:u,onResize:f},constraints:{collapsedSize:n,collapsible:r,defaultSize:o,maxSize:a,minSize:l},id:O,idIsFromProps:s!==void 0,order:p});g.useRef({didLogMissingDefaultSizeWarning:!1}),Rr(()=>{const{callbacks:_,constraints:I}=z.current,M={...I};z.current.id=O,z.current.idIsFromProps=s!==void 0,z.current.order=p,_.onCollapse=c,_.onExpand=u,_.onResize=f,I.collapsedSize=n,I.collapsible=r,I.defaultSize=o,I.maxSize=a,I.minSize=l,(M.collapsedSize!==I.collapsedSize||M.collapsible!==I.collapsible||M.maxSize!==I.maxSize||M.minSize!==I.minSize)&&C(z.current,M)}),Rr(()=>{const _=z.current;return T(_),()=>{B(_)}},[p,O,T,B]),g.useImperativeHandle(i,()=>({collapse:()=>{y(z.current)},expand:_=>{b(z.current,_)},getId(){return O},getSize(){return w(z.current)},isCollapsed(){return k(z.current)},isExpanded(){return!k(z.current)},resize:_=>{P(z.current,_)}}),[y,b,w,k,O,P]);const L=S(z.current,o);return g.createElement(x,{...m,children:e,className:t,id:O,style:{...L,...h},[_t.groupId]:E,[_t.panel]:"",[_t.panelCollapsible]:r||void 0,[_t.panelId]:O,[_t.panelSize]:parseFloat(""+L.flexGrow).toFixed(1)})}const km=g.forwardRef((e,t)=>g.createElement(Sm,{...e,forwardedRef:t}));Sm.displayName="Panel";km.displayName="forwardRef(Panel)";let dc=null,Ls=-1,lr=null;function DC(e,t){if(t){const n=(t&Nm)!==0,r=(t&jm)!==0,o=(t&Im)!==0,i=(t&Mm)!==0;if(n)return o?"se-resize":i?"ne-resize":"e-resize";if(r)return o?"sw-resize":i?"nw-resize":"w-resize";if(o)return"s-resize";if(i)return"n-resize"}switch(e){case"horizontal":return"ew-resize";case"intersection":return"move";case"vertical":return"ns-resize"}}function OC(){lr!==null&&(document.head.removeChild(lr),dc=null,lr=null,Ls=-1)}function Sl(e,t){var n,r;const o=DC(e,t);if(dc!==o){if(dc=o,lr===null&&(lr=document.createElement("style"),document.head.appendChild(lr)),Ls>=0){var i;(i=lr.sheet)===null||i===void 0||i.removeRule(Ls)}Ls=(n=(r=lr.sheet)===null||r===void 0?void 0:r.insertRule(`*{cursor: ${o} !important;}`))!==null&&n!==void 0?n:-1}}function Cm(e){return e.type==="keydown"}function _m(e){return e.type.startsWith("pointer")}function Tm(e){return e.type.startsWith("mouse")}function Oa(e){if(_m(e)){if(e.isPrimary)return{x:e.clientX,y:e.clientY}}else if(Tm(e))return{x:e.clientX,y:e.clientY};return{x:1/0,y:1/0}}function LC(){if(typeof matchMedia=="function")return matchMedia("(pointer:coarse)").matches?"coarse":"fine"}function $C(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 zC(e,t){if(e===t)throw new Error("Cannot compare node with itself");const n={a:xf(e),b:xf(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:mf(gf(n.a)),b:mf(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 FC=/\b(?:position|zIndex|opacity|transform|webkitTransform|mixBlendMode|filter|webkitFilter|isolation)\b/;function BC(e){var t;const n=getComputedStyle((t=Am(e))!==null&&t!==void 0?t:e).display;return n==="flex"||n==="inline-flex"}function HC(e){const t=getComputedStyle(e);return!!(t.position==="fixed"||t.zIndex!=="auto"&&(t.position!=="static"||BC(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"||FC.test(t.willChange)||t.webkitOverflowScrolling==="touch")}function gf(e){let t=e.length;for(;t--;){const n=e[t];if(Ue(n,"Missing node"),HC(n))return n}return null}function mf(e){return e&&Number(getComputedStyle(e).zIndex)||0}function xf(e){const t=[];for(;e;)t.push(e),e=Am(e);return t}function Am(e){const{parentNode:t}=e;return t&&t instanceof ShadowRoot?t.host:t}const Nm=1,jm=2,Im=4,Mm=8,VC=LC()==="coarse";let yn=[],Eo=!1,cr=new Map,La=new Map;const ji=new Set;function UC(e,t,n,r,o){var i;const{ownerDocument:s}=t,a={direction:n,element:t,hitAreaMargins:r,setResizeHandlerState:o},l=(i=cr.get(s))!==null&&i!==void 0?i:0;return cr.set(s,l+1),ji.add(a),Qs(),function(){var u;La.delete(e),ji.delete(a);const f=(u=cr.get(s))!==null&&u!==void 0?u:1;if(cr.set(s,f-1),Qs(),f===1&&cr.delete(s),yn.includes(a)){const p=yn.indexOf(a);p>=0&&yn.splice(p,1),Lu(),o("up",!0,null)}}}function WC(e){const{target:t}=e,{x:n,y:r}=Oa(e);Eo=!0,Ou({target:t,x:n,y:r}),Qs(),yn.length>0&&(Js("down",e),e.preventDefault(),Rm(t)||e.stopImmediatePropagation())}function kl(e){const{x:t,y:n}=Oa(e);if(Eo&&e.buttons===0&&(Eo=!1,Js("up",e)),!Eo){const{target:r}=e;Ou({target:r,x:t,y:n})}Js("move",e),Lu(),yn.length>0&&e.preventDefault()}function Cl(e){const{target:t}=e,{x:n,y:r}=Oa(e);La.clear(),Eo=!1,yn.length>0&&(e.preventDefault(),Rm(t)||e.stopImmediatePropagation()),Js("up",e),Ou({target:t,x:n,y:r}),Lu(),Qs()}function Rm(e){let t=e;for(;t;){if(t.hasAttribute(_t.resizeHandle))return!0;t=t.parentElement}return!1}function Ou({target:e,x:t,y:n}){yn.splice(0);let r=null;(e instanceof HTMLElement||e instanceof SVGElement)&&(r=e),ji.forEach(o=>{const{element:i,hitAreaMargins:s}=o,a=i.getBoundingClientRect(),{bottom:l,left:c,right:u,top:f}=a,p=VC?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)&&zC(r,i)>0){let x=r,m=!1;for(;x&&!x.contains(i);){if($C(x.getBoundingClientRect(),a)){m=!0;break}x=x.parentElement}if(m)return}yn.push(o)}})}function _l(e,t){La.set(e,t)}function Lu(){let e=!1,t=!1;yn.forEach(r=>{const{direction:o}=r;o==="horizontal"?e=!0:t=!0});let n=0;La.forEach(r=>{n|=r}),e&&t?Sl("intersection",n):e?Sl("horizontal",n):t?Sl("vertical",n):OC()}let Tl;function Qs(){var e;(e=Tl)===null||e===void 0||e.abort(),Tl=new AbortController;const t={capture:!0,signal:Tl.signal};ji.size&&(Eo?(yn.length>0&&cr.forEach((n,r)=>{const{body:o}=r;n>0&&(o.addEventListener("contextmenu",Cl,t),o.addEventListener("pointerleave",kl,t),o.addEventListener("pointermove",kl,t))}),cr.forEach((n,r)=>{const{body:o}=r;o.addEventListener("pointerup",Cl,t),o.addEventListener("pointercancel",Cl,t)})):cr.forEach((n,r)=>{const{body:o}=r;n>0&&(o.addEventListener("pointerdown",WC,t),o.addEventListener("pointermove",kl,t))}))}function Js(e,t){ji.forEach(n=>{const{setResizeHandlerState:r}=n,o=yn.includes(n);r(e,o,t)})}function GC(){const[e,t]=g.useState(0);return g.useCallback(()=>t(n=>n+1),[])}function Ue(e,t){if(!e)throw console.error(t),Error(t)}function Br(e,t,n=Pu){return e.toFixed(n)===t.toFixed(n)?0:e>t?1:-1}function Gn(e,t,n=Pu){return Br(e,t,n)===0}function nn(e,t,n){return Br(e,t,n)===0}function YC(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(!nn(o,i,n))return!1}return!0}function go({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(Br(n,a)<0)if(i){const l=(o+a)/2;Br(n,l)<0?n=o:n=a}else n=a;return n=Math.min(s,n),n=parseFloat(n.toFixed(Pu)),n}function xi({delta:e,initialLayout:t,panelConstraints:n,pivotIndices:r,prevLayout:o,trigger:i}){if(nn(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:m=0}=p;if(x){const v=t[f];if(Ue(v!=null,`Previous layout not found for panel index ${f}`),nn(v,h)){const y=m-v;Br(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:m=0}=p;if(x){const v=t[f];if(Ue(v!=null,`Previous layout not found for panel index ${f}`),nn(v,m)){const y=v-h;Br(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 m=t[p];Ue(m!=null,`Previous layout not found for panel index ${p}`);const y=go({panelConstraints:n,panelIndex:p,size:100})-m;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 m=x-h,v=go({panelConstraints:n,panelIndex:p,size:m});if(!nn(x,v)&&(c+=x-v,s[p]=v,c.toPrecision(3).localeCompare(Math.abs(e).toPrecision(3),void 0,{numeric:!0})>=0))break;e<0?p--:p++}}if(YC(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=go({panelConstraints:n,panelIndex:f,size:h});if(s[f]=x,!nn(x,h)){let m=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+m,S=go({panelConstraints:n,panelIndex:y,size:w});if(nn(b,S)||(m-=S-b,s[y]=S),nn(m,0))break;e>0?y--:y++}}}const u=s.reduce((f,p)=>p+f,0);return nn(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:m=0}=h;p===a?(r=m,o=x):(i+=m,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(`[${_t.resizeHandleId}][data-panel-group-id="${e}"]`))}function Pm(e,t,n=document){const o=Ii(e,n).findIndex(i=>i.getAttribute(_t.resizeHandleId)===t);return o??null}function Dm(e,t,n){const r=Pm(e,t,n);return r!=null?[r,r+1]:[-1,-1]}function KC(e){return e instanceof HTMLElement?!0:typeof e=="object"&&e!==null&&"tagName"in e&&"getAttribute"in e}function Om(e,t=document){if(KC(t)&&t.dataset.panelGroupId==e)return t;const n=t.querySelector(`[data-panel-group][data-panel-group-id="${e}"]`);return n||null}function $a(e,t=document){const n=t.querySelector(`[${_t.resizeHandleId}="${e}"]`);return n||null}function XC(e,t,n,r=document){var o,i,s,a;const l=$a(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 ZC({committedValuesRef:e,eagerValuesRef:t,groupId:n,layout:r,panelDataArray:o,panelGroupElement:i,setLayout:s}){g.useRef({didWarnAboutMissingResizeHandle:!1}),Rr(()=>{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]),g.useEffect(()=>{if(!i)return;const a=t.current;Ue(a,"Eager values not found");const{panelDataArray:l}=a,c=Om(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(_t.resizeHandleId);Ue(h,"Resize handle element has no handle id attribute");const[x,m]=XC(n,h,l,i);if(x==null||m==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 T=xi({delta:nn(S,E)?C-E:E-S,initialLayout:r,panelConstraints:l.map(P=>P.constraints),pivotIndices:Dm(n,h,i),prevLayout:r,trigger:"keyboard"});r!==T&&s(T)}}break}}};return p.addEventListener("keydown",v),()=>{p.removeEventListener("keydown",v)}});return()=>{f.forEach(p=>p())}},[i,e,t,n,r,o,s])}function vf(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 Lm(e,t){const n=e==="horizontal",{x:r,y:o}=Oa(t);return n?r:o}function QC(e,t,n,r,o){const i=n==="horizontal",s=$a(t,o);Ue(s,`No resize handle element found for id "${t}"`);const a=s.getAttribute(_t.groupId);Ue(a,"Resize handle element has no group id attribute");let{initialCursorPosition:l}=r;const c=Lm(n,e),u=Om(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 JC(e,t,n,r,o,i){if(Cm(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:QC(e,t,n,r,i)}function e_({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 io(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||Gn(f,c))&&!Gn(r,c)&&h(),p&&(f==null||!Gn(f,c))&&Gn(r,c)&&p())}})}function hs(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 t_({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.toPrecision(i):"1":r.length===1?a="1":a=s.toPrecision(i),{flexBasis:0,flexGrow:a,flexShrink:1,overflow:"hidden",pointerEvents:t!==null?"none":void 0}}function n_(e,t=10){let n=null;return(...o)=>{n!==null&&clearTimeout(n),n=setTimeout(()=>{e(...o)},t)}}function yf(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 $m(e){return`react-resizable-panels:${e}`}function zm(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 Fm(e,t){try{const n=$m(e),r=t.getItem(n);if(r){const o=JSON.parse(r);if(typeof o=="object"&&o!=null)return o}}catch{}return null}function r_(e,t,n){var r,o;const i=(r=Fm(e,n))!==null&&r!==void 0?r:{},s=zm(t);return(o=i[s])!==null&&o!==void 0?o:null}function o_(e,t,n,r,o){var i;const s=$m(e),a=zm(t),l=(i=Fm(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 wf({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(!nn(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=go({panelConstraints:t,panelIndex:i,size:s});s!=a&&(o+=s-a,n[i]=a)}if(!nn(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=go({panelConstraints:t,panelIndex:i,size:a});if(s!==l&&(o-=l-s,n[i]=l,nn(o,0)))break}return n}const i_=100,vi={getItem:e=>(yf(vi),vi.getItem(e)),setItem:(e,t)=>{yf(vi),vi.setItem(e,t)}},bf={};function Bm({autoSaveId:e=null,children:t,className:n="",direction:r,forwardedRef:o,id:i=null,onLayout:s=null,keyboardResizeBy:a=null,storage:l=vi,style:c,tagName:u="div",...f}){const p=Du(i),h=g.useRef(null),[x,m]=g.useState(null),[v,y]=g.useState([]),b=GC(),w=g.useRef({}),S=g.useRef(new Map),E=g.useRef(0),k=g.useRef({autoSaveId:e,direction:r,dragState:x,id:p,keyboardResizeBy:a,onLayout:s,storage:l}),C=g.useRef({layout:v,panelDataArray:[],panelDataArrayChanged:!1});g.useRef({didLogIdAndOrderWarning:!1,didLogPanelConstraintsWarning:!1,prevPanelIds:[]}),g.useImperativeHandle(o,()=>({getId:()=>k.current.id,getLayout:()=>{const{layout:H}=C.current;return H},setLayout:H=>{const{onLayout:V}=k.current,{layout:U,panelDataArray:G}=C.current,F=wf({layout:H,panelConstraints:G.map(W=>W.constraints)});vf(U,F)||(y(F),C.current.layout=F,V&&V(F),io(G,F,w.current))}}),[]),Rr(()=>{k.current.autoSaveId=e,k.current.direction=r,k.current.dragState=x,k.current.id=p,k.current.onLayout=s,k.current.storage=l}),ZC({committedValuesRef:k,eagerValuesRef:C,groupId:p,layout:v,panelDataArray:C.current.panelDataArray,setLayout:y,panelGroupElement:h.current}),g.useEffect(()=>{const{panelDataArray:H}=C.current;if(e){if(v.length===0||v.length!==H.length)return;let V=bf[e];V==null&&(V=n_(o_,i_),bf[e]=V);const U=[...H],G=new Map(S.current);V(e,U,G,v,l)}},[e,v,l]),g.useEffect(()=>{});const T=g.useCallback(H=>{const{onLayout:V}=k.current,{layout:U,panelDataArray:G}=C.current;if(H.constraints.collapsible){const F=G.map(re=>re.constraints),{collapsedSize:W=0,panelSize:X,pivotIndices:Q}=kr(G,H,U);if(Ue(X!=null,`Panel size not found for panel "${H.id}"`),!Gn(X,W)){S.current.set(H.id,X);const K=fo(G,H)===G.length-1?X-W:W-X,ne=xi({delta:K,initialLayout:U,panelConstraints:F,pivotIndices:Q,prevLayout:U,trigger:"imperative-api"});hs(U,ne)||(y(ne),C.current.layout=ne,V&&V(ne),io(G,ne,w.current))}}},[]),P=g.useCallback((H,V)=>{const{onLayout:U}=k.current,{layout:G,panelDataArray:F}=C.current;if(H.constraints.collapsible){const W=F.map(ie=>ie.constraints),{collapsedSize:X=0,panelSize:Q=0,minSize:re=0,pivotIndices:K}=kr(F,H,G),ne=V??re;if(Gn(Q,X)){const ie=S.current.get(H.id),he=ie!=null&&ie>=ne?ie:ne,we=fo(F,H)===F.length-1?Q-he:he-Q,Ee=xi({delta:we,initialLayout:G,panelConstraints:W,pivotIndices:K,prevLayout:G,trigger:"imperative-api"});hs(G,Ee)||(y(Ee),C.current.layout=Ee,U&&U(Ee),io(F,Ee,w.current))}}},[]),B=g.useCallback(H=>{const{layout:V,panelDataArray:U}=C.current,{panelSize:G}=kr(U,H,V);return Ue(G!=null,`Panel size not found for panel "${H.id}"`),G},[]),O=g.useCallback((H,V)=>{const{panelDataArray:U}=C.current,G=fo(U,H);return t_({defaultSize:V,dragState:x,layout:v,panelData:U,panelIndex:G})},[x,v]),z=g.useCallback(H=>{const{layout:V,panelDataArray:U}=C.current,{collapsedSize:G=0,collapsible:F,panelSize:W}=kr(U,H,V);return Ue(W!=null,`Panel size not found for panel "${H.id}"`),F===!0&&Gn(W,G)},[]),L=g.useCallback(H=>{const{layout:V,panelDataArray:U}=C.current,{collapsedSize:G=0,collapsible:F,panelSize:W}=kr(U,H,V);return Ue(W!=null,`Panel size not found for panel "${H.id}"`),!F||Br(W,G)>0},[]),_=g.useCallback(H=>{const{panelDataArray:V}=C.current;V.push(H),V.sort((U,G)=>{const F=U.order,W=G.order;return F==null&&W==null?0:F==null?-1:W==null?1:F-W}),C.current.panelDataArrayChanged=!0,b()},[b]);Rr(()=>{if(C.current.panelDataArrayChanged){C.current.panelDataArrayChanged=!1;const{autoSaveId:H,onLayout:V,storage:U}=k.current,{layout:G,panelDataArray:F}=C.current;let W=null;if(H){const Q=r_(H,F,U);Q&&(S.current=new Map(Object.entries(Q.expandToSizes)),W=Q.layout)}W==null&&(W=e_({panelDataArray:F}));const X=wf({layout:W,panelConstraints:F.map(Q=>Q.constraints)});vf(G,X)||(y(X),C.current.layout=X,V&&V(X),io(F,X,w.current))}}),Rr(()=>{const H=C.current;return()=>{H.layout=[]}},[]);const I=g.useCallback(H=>{let V=!1;const U=h.current;return U&&window.getComputedStyle(U,null).getPropertyValue("direction")==="rtl"&&(V=!0),function(F){F.preventDefault();const W=h.current;if(!W)return()=>null;const{direction:X,dragState:Q,id:re,keyboardResizeBy:K,onLayout:ne}=k.current,{layout:ie,panelDataArray:he}=C.current,{initialLayout:ue}=Q??{},we=Dm(re,H,W);let Ee=JC(F,H,X,Q,K,W);const Ke=X==="horizontal";Ke&&V&&(Ee=-Ee);const st=he.map(ut=>ut.constraints),tt=xi({delta:Ee,initialLayout:ue??ie,panelConstraints:st,pivotIndices:we,prevLayout:ie,trigger:Cm(F)?"keyboard":"mouse-or-touch"}),me=!hs(ie,tt);(_m(F)||Tm(F))&&E.current!=Ee&&(E.current=Ee,!me&&Ee!==0?Ke?_l(H,Ee<0?Nm:jm):_l(H,Ee<0?Im:Mm):_l(H,0)),me&&(y(tt),C.current.layout=tt,ne&&ne(tt),io(he,tt,w.current))}},[]),M=g.useCallback((H,V)=>{const{onLayout:U}=k.current,{layout:G,panelDataArray:F}=C.current,W=F.map(ie=>ie.constraints),{panelSize:X,pivotIndices:Q}=kr(F,H,G);Ue(X!=null,`Panel size not found for panel "${H.id}"`);const K=fo(F,H)===F.length-1?X-V:V-X,ne=xi({delta:K,initialLayout:G,panelConstraints:W,pivotIndices:Q,prevLayout:G,trigger:"imperative-api"});hs(G,ne)||(y(ne),C.current.layout=ne,U&&U(ne),io(F,ne,w.current))},[]),j=g.useCallback((H,V)=>{const{layout:U,panelDataArray:G}=C.current,{collapsedSize:F=0,collapsible:W}=V,{collapsedSize:X=0,collapsible:Q,maxSize:re=100,minSize:K=0}=H.constraints,{panelSize:ne}=kr(G,H,U);ne!=null&&(W&&Q&&Gn(ne,F)?Gn(F,X)||M(H,X):ne<K?M(H,K):ne>re&&M(H,re))},[M]),A=g.useCallback((H,V)=>{const{direction:U}=k.current,{layout:G}=C.current;if(!h.current)return;const F=$a(H,h.current);Ue(F,`Drag handle element not found for id "${H}"`);const W=Lm(U,V);m({dragHandleId:H,dragHandleRect:F.getBoundingClientRect(),initialCursorPosition:W,initialLayout:G})},[]),N=g.useCallback(()=>{m(null)},[]),R=g.useCallback(H=>{const{panelDataArray:V}=C.current,U=fo(V,H);U>=0&&(V.splice(U,1),delete w.current[H.id],C.current.panelDataArrayChanged=!0,b())},[b]),D=g.useMemo(()=>({collapsePanel:T,direction:r,dragState:x,expandPanel:P,getPanelSize:B,getPanelStyle:O,groupId:p,isPanelCollapsed:z,isPanelExpanded:L,reevaluatePanelConstraints:j,registerPanel:_,registerResizeHandle:I,resizePanel:M,startDragging:A,stopDragging:N,unregisterPanel:R,panelGroupElement:h.current}),[T,x,r,P,B,O,p,z,L,j,_,I,M,A,N,R]),Y={display:"flex",flexDirection:r==="horizontal"?"row":"column",height:"100%",overflow:"hidden",width:"100%"};return g.createElement(Da.Provider,{value:D},g.createElement(u,{...f,children:t,className:n,id:i,ref:h,style:{...Y,...c},[_t.group]:"",[_t.groupDirection]:r,[_t.groupId]:p}))}const Hm=g.forwardRef((e,t)=>g.createElement(Bm,{...e,forwardedRef:t}));Bm.displayName="PanelGroup";Hm.displayName="forwardRef(PanelGroup)";function fo(e,t){return e.findIndex(n=>n===t||n.id===t.id)}function kr(e,t,n){const r=fo(e,t),i=r===e.length-1?[r-1,r]:[r,r+1],s=n[r];return{...t.constraints,panelSize:s,pivotIndices:i}}function s_({disabled:e,handleId:t,resizeHandler:n,panelGroupElement:r}){g.useEffect(()=>{if(e||n==null||r==null)return;const o=$a(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(_t.groupId);Ue(a,`No group element found for id "${a}"`);const l=Ii(a,r),c=Pm(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 Vm({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 m,v;const y=g.useRef(null),b=g.useRef({onClick:s,onDragging:a,onPointerDown:c,onPointerUp:u});g.useEffect(()=>{b.current.onClick=s,b.current.onDragging=a,b.current.onPointerDown=c,b.current.onPointerUp=u});const w=g.useContext(Da);if(w===null)throw Error("PanelResizeHandle components must be rendered within a PanelGroup container");const{direction:S,groupId:E,registerResizeHandle:k,startDragging:C,stopDragging:T,panelGroupElement:P}=w,B=Du(o),[O,z]=g.useState("inactive"),[L,_]=g.useState(!1),[I,M]=g.useState(null),j=g.useRef({state:O});Rr(()=>{j.current.state=O}),g.useEffect(()=>{if(n)M(null);else{const D=k(B);M(()=>D)}},[n,B,k]);const A=(m=r==null?void 0:r.coarse)!==null&&m!==void 0?m:15,N=(v=r==null?void 0:r.fine)!==null&&v!==void 0?v:5;g.useEffect(()=>{if(n||I==null)return;const D=y.current;Ue(D,"Element ref not attached");let Y=!1;return UC(B,D,S,{coarse:A,fine:N},(V,U,G)=>{if(!U){z("inactive");return}switch(V){case"down":{z("drag"),Y=!1,Ue(G,'Expected event to be defined for "down" action'),C(B,G);const{onDragging:F,onPointerDown:W}=b.current;F==null||F(!0),W==null||W();break}case"move":{const{state:F}=j.current;Y=!0,F!=="drag"&&z("hover"),Ue(G,'Expected event to be defined for "move" action'),I(G);break}case"up":{z("hover"),T();const{onClick:F,onDragging:W,onPointerUp:X}=b.current;W==null||W(!1),X==null||X(),Y||F==null||F();break}}})},[A,S,n,N,k,B,I,C,T]),s_({disabled:n,handleId:B,resizeHandler:I,panelGroupElement:P});const R={touchAction:"none",userSelect:"none"};return g.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,[_t.groupDirection]:S,[_t.groupId]:E,[_t.resizeHandle]:"",[_t.resizeHandleActive]:O==="drag"?"pointer":L?"keyboard":void 0,[_t.resizeHandleEnabled]:!n,[_t.resizeHandleId]:B,[_t.resizeHandleState]:O})}Vm.displayName="PanelResizeHandle";function a_({className:e,...t}){return d.jsx(Hm,{"data-slot":"resizable-panel-group",className:Ye("flex h-full w-full data-[panel-group-direction=vertical]:flex-col",e),...t})}function Ef({...e}){return d.jsx(km,{"data-slot":"resizable-panel",...e})}function l_({withHandle:e,className:t,...n}){return d.jsx(Vm,{"data-slot":"resizable-handle",className:Ye("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 c_({ref:e,anchorRef:t,onClickOutside:n,enabled:r=!0}){g.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 u_({onEscape:e,enabled:t=!0}){g.useEffect(()=>{if(!t)return;const n=r=>{r.key==="Escape"&&e()};return document.addEventListener("keydown",n),()=>{document.removeEventListener("keydown",n)}},[e,t])}const d_={x:0,y:0},cn=16,f_=["top-start","bottom-end","top-end"];function p_({anchorRef:e,placement:t="top-start",offset:n=d_,fallbackPlacements:r=f_}){const o=g.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=g.useCallback((l,c)=>{const u={width:window.innerWidth,height:window.innerHeight};return l.left<cn||l.top<cn||l.left+c.width>u.width-cn||l.top+c.height>u.height-cn},[]),s=g.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 m=o(c,u,x);if(!i(m,u))return m}const p={width:window.innerWidth,height:window.innerHeight},h={...f};return h.left<cn?h.left=cn:h.left+u.width>p.width-cn&&(h.left=p.width-u.width-cn),h.top<cn?h.top=cn:h.top+u.height>p.height-cn&&(h.top=p.height-u.height-cn),h},[e,t,r,o,i]);return{getPositionStyle:g.useCallback(l=>{const c=s(l);return{position:"fixed",top:c.top,left:c.left,zIndex:1e3}},[s]),getOptimalPosition:s}}function h_({defaultWidth:e,minWidth:t,maxWidth:n,position:r="left",onWidthChange:o}){const[i,s]=g.useState(e),[a,l]=g.useState(!1),c=g.useRef(0),u=g.useRef(e),f=g.useCallback(y=>{y.preventDefault(),l(!0),c.current=y.clientX,u.current=i},[i]),p=g.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=g.useCallback(()=>{l(!1)},[]),x=g.useCallback(y=>{y.preventDefault(),l(!0),c.current=y.touches[0].clientX,u.current=i},[i]),m=g.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=g.useCallback(()=>{l(!1)},[]);return g.useEffect(()=>{if(a)return document.addEventListener("mousemove",p),document.addEventListener("mouseup",h),document.addEventListener("touchmove",m),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",m),document.removeEventListener("touchend",v),document.body.style.userSelect="",document.body.style.cursor=""}},[a,p,h,m,v]),{width:i,isResizing:a,handleMouseDown:f,handleTouchStart:x,setWidth:s}}const g_=g.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}=h_({defaultWidth:t,minWidth:n,maxWidth:r,position:o,onWidthChange:a}),x={width:`${u}px`},m=o==="left"?"right-0":"left-0";return d.jsxs("div",{ref:c,className:Ye("relative h-full flex-shrink-0 cursor-pointer",o==="left"?"border-r":"border-l",s),style:x,...l,children:[d.jsx("div",{className:Ye("h-full overflow-x-hidden overflow-y-auto"),children:e}),i&&d.jsx("div",{className:Ye("group absolute top-0 bottom-0 w-2",m,"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:Ye("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)]")})})]})});g_.displayName="SidePanel";const Um=g.createContext(null),Wm=g.createContext(void 0),Gm=g.createContext(null),Ym=g.createContext(null),qm=g.createContext(void 0),Km=g.createContext(null);function Ko(){const e=g.useContext(Gm);if(e===null)throw new Error("useConfig must be used within a ConfigProvider");return e}const m_=()=>{const{configServerUrl:e}=Ko(),[t,n]=g.useState([]),[r,o]=g.useState(!0),[i,s]=g.useState(null),a=`${e}/api/v1`,l=g.useCallback(async()=>{o(!0),s(null);try{const c=await It(`${a}/agents`,{credentials:"include"});if(!c.ok){const f=await c.json().catch(()=>({message:`Failed to fetch agents: ${c.statusText}`}));throw new Error(f.message||`Failed to fetch agents: ${c.statusText}`)}const u=await c.json();n(u)}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 g.useEffect(()=>{l()},[l]),{agents:t,isLoading:r,error:i,refetch:l}},x_=()=>{const{configServerUrl:e}=Ko(),[t,n]=g.useState([]),[r,o]=g.useState(!0),[i,s]=g.useState(null),a=`${e}/api/v1`,l=g.useCallback(async()=>{o(!0),s(null);try{const c=await It(`${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 g.useEffect(()=>{l()},[l]),{artifacts:t,isLoading:r,error:i,refetch:l}},v_=()=>{const e=g.useContext(Um);if(!e)throw new Error("useAuth must be used within an AuthProvider");return e},Rt=()=>{const e=g.useContext(Wm);if(e===void 0)throw new Error("useChatContext must be used within a ChatProvider");return e};function y_(){const{messages:e}=Rt(),t=g.useCallback(n=>{if(!(e.length<=1))return n.preventDefault(),"Are you sure you want to leave? Your chat history will be lost."},[e.length]);g.useEffect(()=>(window.addEventListener("beforeunload",t),()=>{window.removeEventListener("beforeunload",t)}),[t])}function Xm(){const e=g.useContext(Ym);if(!e)throw new Error("useCsrf must be used within a CsrfProvider");return e}function w_(e,t){const[n,r]=g.useState(e);return g.useEffect(()=>{const o=setTimeout(()=>{r(e)},t);return()=>{clearTimeout(o)}},[e,t]),n}const b_=async(e,t)=>{const n=await It(`${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();ng(r,t.filename)},Zm=()=>{const{configServerUrl:e}=Ko(),{addNotification:t}=Rt();return{onDownload:async r=>{try{await b_(e,r),t(`Downloaded artifact: ${r.filename}.`)}catch{t(`Failed to download artifact: ${r.filename}.`,"error")}}}},E_=({onFilesDropped:e,fileFilter:t,disabled:n=!1})=>{const[r,o]=g.useState(!1),i=g.useRef(0),s=g.useCallback(u=>{n||(u.preventDefault(),u.stopPropagation(),i.current=(i.current||0)+1,u.dataTransfer.types.includes("Files")&&o(!0))},[n,i]),a=g.useCallback(u=>{n||(u.preventDefault(),u.stopPropagation(),u.dataTransfer.types.includes("Files")&&(u.dataTransfer.dropEffect="copy"))},[n]),l=g.useCallback(u=>{n||(u.preventDefault(),u.stopPropagation(),i.current=(i.current||0)-1,i.current===0&&o(!1))},[n,i]),c=g.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}},Qm=()=>{const{messages:e}=Rt();return g.useMemo(()=>{const t=e.find(n=>n.isUser&&n.text&&n.text.trim());if(t&&t.text){const n=t.text.trim();return n.length>100?n.substring(0,100)+"...":n}return"New Chat"},[e])},$u=()=>{const e=g.useContext(qm);if(e===void 0)throw new Error("useTaskContext must be used within a TaskProvider");return e};function Jm(){const e=g.useContext(Km);if(e===null)throw new Error("useThemeContext must be used within a ThemeProvider");return e}g.createContext(null);function e0(e){const t=e+"CollectionProvider",[n,r]=vr(t),[o,i]=n(t,{collectionRef:{current:null},itemMap:new Map}),s=m=>{const{scope:v,children:y}=m,b=$t.useRef(null),w=$t.useRef(new Map).current;return d.jsx(o,{scope:v,itemMap:w,collectionRef:b,children:y})};s.displayName=t;const a=e+"CollectionSlot",l=Lr(a),c=$t.forwardRef((m,v)=>{const{scope:y,children:b}=m,w=i(a,y),S=ft(v,w.collectionRef);return d.jsx(l,{ref:S,children:b})});c.displayName=a;const u=e+"CollectionItemSlot",f="data-radix-collection-item",p=Lr(u),h=$t.forwardRef((m,v)=>{const{scope:y,children:b,...w}=m,S=$t.useRef(null),E=ft(v,S),k=i(u,y);return $t.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(m){const v=i(e+"CollectionConsumer",m);return $t.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 S_=g.createContext(void 0);function zu(e){const t=g.useContext(S_);return e||t||"ltr"}const Fu=g.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:Ye("min-w-[8rem] overflow-hidden",t),...n,children:e.map((s,a)=>d.jsxs(g.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:Ye("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))})});Fu.displayName="Menu";var za="Popover",[t0,Z4]=vr(za,[qo]),Xi=qo(),[k_,yr]=t0(za),n0=e=>{const{__scopePopover:t,children:n,open:r,defaultOpen:o,onOpenChange:i,modal:s=!1}=e,a=Xi(t),l=g.useRef(null),[c,u]=g.useState(!1),[f,p]=zr({prop:r,defaultProp:o??!1,onChange:i,caller:za});return d.jsx(du,{...a,children:d.jsx(k_,{scope:t,contentId:Mn(),triggerRef:l,open:f,onOpenChange:p,onOpenToggle:g.useCallback(()=>p(h=>!h),[p]),hasCustomAnchor:c,onCustomAnchorAdd:g.useCallback(()=>u(!0),[]),onCustomAnchorRemove:g.useCallback(()=>u(!1),[]),modal:s,children:n})})};n0.displayName=za;var r0="PopoverAnchor",C_=g.forwardRef((e,t)=>{const{__scopePopover:n,...r}=e,o=yr(r0,n),i=Xi(n),{onCustomAnchorAdd:s,onCustomAnchorRemove:a}=o;return g.useEffect(()=>(s(),()=>a()),[s,a]),d.jsx(Aa,{...i,...r,ref:t})});C_.displayName=r0;var o0="PopoverTrigger",i0=g.forwardRef((e,t)=>{const{__scopePopover:n,...r}=e,o=yr(o0,n),i=Xi(n),s=ft(t,o.triggerRef),a=d.jsx(et.button,{type:"button","aria-haspopup":"dialog","aria-expanded":o.open,"aria-controls":o.contentId,"data-state":u0(o.open),...r,ref:s,onClick:Oe(e.onClick,o.onOpenToggle)});return o.hasCustomAnchor?a:d.jsx(Aa,{asChild:!0,...i,children:a})});i0.displayName=o0;var Bu="PopoverPortal",[__,T_]=t0(Bu,{forceMount:void 0}),s0=e=>{const{__scopePopover:t,forceMount:n,children:r,container:o}=e,i=yr(Bu,t);return d.jsx(__,{scope:t,forceMount:n,children:d.jsx(tr,{present:n||i.open,children:d.jsx(qi,{asChild:!0,container:o,children:r})})})};s0.displayName=Bu;var Ao="PopoverContent",a0=g.forwardRef((e,t)=>{const n=T_(Ao,e.__scopePopover),{forceMount:r=n.forceMount,...o}=e,i=yr(Ao,e.__scopePopover);return d.jsx(tr,{present:r||i.open,children:i.modal?d.jsx(N_,{...o,ref:t}):d.jsx(j_,{...o,ref:t})})});a0.displayName=Ao;var A_=Lr("PopoverContent.RemoveScroll"),N_=g.forwardRef((e,t)=>{const n=yr(Ao,e.__scopePopover),r=g.useRef(null),o=ft(t,r),i=g.useRef(!1);return g.useEffect(()=>{const s=r.current;if(s)return Cu(s)},[]),d.jsx(Ra,{as:A_,allowPinchZoom:!0,children:d.jsx(l0,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:Oe(e.onCloseAutoFocus,s=>{var a;s.preventDefault(),i.current||(a=n.triggerRef.current)==null||a.focus()}),onPointerDownOutside:Oe(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:Oe(e.onFocusOutside,s=>s.preventDefault(),{checkForDefaultPrevented:!1})})})}),j_=g.forwardRef((e,t)=>{const n=yr(Ao,e.__scopePopover),r=g.useRef(!1),o=g.useRef(!1);return d.jsx(l0,{...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()}})}),l0=g.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=yr(Ao,n),h=Xi(n);return ku(),d.jsx(Ia,{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(fu,{"data-state":u0(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)"}})})})}),c0="PopoverClose",I_=g.forwardRef((e,t)=>{const{__scopePopover:n,...r}=e,o=yr(c0,n);return d.jsx(et.button,{type:"button",...r,ref:t,onClick:Oe(e.onClick,()=>o.onOpenChange(!1))})});I_.displayName=c0;var M_="PopoverArrow",R_=g.forwardRef((e,t)=>{const{__scopePopover:n,...r}=e,o=Xi(n);return d.jsx(pu,{...o,...r,ref:t})});R_.displayName=M_;function u0(e){return e?"open":"closed"}var P_=n0,D_=i0,O_=s0,L_=a0;function d0({...e}){return d.jsx(P_,{"data-slot":"popover",...e})}function f0({...e}){return d.jsx(D_,{"data-slot":"popover-trigger",...e})}function p0({className:e,align:t="center",sideOffset:n=4,...r}){return d.jsx(O_,{children:d.jsx(L_,{"data-slot":"popover-content",align:t,sideOffset:n,className:Ye("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 $_({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=g.useRef(null),[h,x]=g.useState({}),[m,v]=g.useState(!1);c_({ref:p,anchorRef:n,onClickOutside:t,enabled:e&&a}),u_({onEscape:t,enabled:e&&l});const{getPositionStyle:y}=p_({anchorRef:n,placement:o,offset:i,fallbackPlacements:f});if(g.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:Ye("bg-background min-w-[8rem] overflow-hidden border shadow-md",s),style:{...h,opacity:e&&m?1:0,transform:`scale(${e&&m?1:.95})`,transition:`opacity ${u}ms ease-in-out, transform ${u}ms ease-in-out`,pointerEvents:e&&m?"auto":"none",visibility:m?"visible":"hidden"},children:r});return c?Wo.createPortal(b,document.body):b}function Sf(e,[t,n]){return Math.min(n,Math.max(t,e))}function z_(e){const t=g.useRef({value:e,previous:e});return g.useMemo(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}var F_=[" ","Enter","ArrowUp","ArrowDown"],B_=[" ","Enter"],Hr="Select",[Fa,Ba,H_]=e0(Hr),[Xo,Q4]=vr(Hr,[H_,qo]),Ha=qo(),[V_,wr]=Xo(Hr),[U_,W_]=Xo(Hr),h0=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,m=Ha(t),[v,y]=g.useState(null),[b,w]=g.useState(null),[S,E]=g.useState(!1),k=zu(c),[C,T]=zr({prop:r,defaultProp:o??!1,onChange:i,caller:Hr}),[P,B]=zr({prop:s,defaultProp:a,onChange:l,caller:Hr}),O=g.useRef(null),z=v?x||!!v.closest("form"):!0,[L,_]=g.useState(new Set),I=Array.from(L).map(M=>M.props.value).join(";");return d.jsx(du,{...m,children:d.jsxs(V_,{required:h,scope:t,trigger:v,onTriggerChange:y,valueNode:b,onValueNodeChange:w,valueNodeHasChildren:S,onValueNodeHasChildrenChange:E,contentId:Mn(),value:P,onValueChange:B,open:C,onOpenChange:T,dir:k,triggerPointerDownPosRef:O,disabled:p,children:[d.jsx(Fa.Provider,{scope:t,children:d.jsx(U_,{scope:e.__scopeSelect,onNativeOptionAdd:g.useCallback(M=>{_(j=>new Set(j).add(M))},[]),onNativeOptionRemove:g.useCallback(M=>{_(j=>{const A=new Set(j);return A.delete(M),A})},[]),children:n})}),z?d.jsxs(O0,{"aria-hidden":!0,required:h,tabIndex:-1,name:u,autoComplete:f,value:P,onChange:M=>B(M.target.value),disabled:p,form:x,children:[P===void 0?d.jsx("option",{value:""}):null,Array.from(L)]},I):null]})})};h0.displayName=Hr;var g0="SelectTrigger",m0=g.forwardRef((e,t)=>{const{__scopeSelect:n,disabled:r=!1,...o}=e,i=Ha(n),s=wr(g0,n),a=s.disabled||r,l=ft(t,s.onTriggerChange),c=Ba(n),u=g.useRef("touch"),[f,p,h]=$0(m=>{const v=c().filter(w=>!w.disabled),y=v.find(w=>w.value===s.value),b=z0(v,m,y);b!==void 0&&s.onValueChange(b.value)}),x=m=>{a||(s.onOpenChange(!0),h()),m&&(s.triggerPointerDownPosRef.current={x:Math.round(m.pageX),y:Math.round(m.pageY)})};return d.jsx(Aa,{asChild:!0,...i,children:d.jsx(et.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":L0(s.value)?"":void 0,...o,ref:l,onClick:Oe(o.onClick,m=>{m.currentTarget.focus(),u.current!=="mouse"&&x(m)}),onPointerDown:Oe(o.onPointerDown,m=>{u.current=m.pointerType;const v=m.target;v.hasPointerCapture(m.pointerId)&&v.releasePointerCapture(m.pointerId),m.button===0&&m.ctrlKey===!1&&m.pointerType==="mouse"&&(x(m),m.preventDefault())}),onKeyDown:Oe(o.onKeyDown,m=>{const v=f.current!=="";!(m.ctrlKey||m.altKey||m.metaKey)&&m.key.length===1&&p(m.key),!(v&&m.key===" ")&&F_.includes(m.key)&&(x(),m.preventDefault())})})})});m0.displayName=g0;var x0="SelectValue",v0=g.forwardRef((e,t)=>{const{__scopeSelect:n,className:r,style:o,children:i,placeholder:s="",...a}=e,l=wr(x0,n),{onValueNodeHasChildrenChange:c}=l,u=i!==void 0,f=ft(t,l.onValueNodeChange);return Vt(()=>{c(u)},[c,u]),d.jsx(et.span,{...a,ref:f,style:{pointerEvents:"none"},children:L0(l.value)?d.jsx(d.Fragment,{children:s}):i})});v0.displayName=x0;var G_="SelectIcon",y0=g.forwardRef((e,t)=>{const{__scopeSelect:n,children:r,...o}=e;return d.jsx(et.span,{"aria-hidden":!0,...o,ref:t,children:r||"▼"})});y0.displayName=G_;var Y_="SelectPortal",w0=e=>d.jsx(qi,{asChild:!0,...e});w0.displayName=Y_;var Vr="SelectContent",b0=g.forwardRef((e,t)=>{const n=wr(Vr,e.__scopeSelect),[r,o]=g.useState();if(Vt(()=>{o(new DocumentFragment)},[]),!n.open){const i=r;return i?Wo.createPortal(d.jsx(E0,{scope:e.__scopeSelect,children:d.jsx(Fa.Slot,{scope:e.__scopeSelect,children:d.jsx("div",{children:e.children})})}),i):null}return d.jsx(S0,{...e,ref:t})});b0.displayName=Vr;var hn=10,[E0,br]=Xo(Vr),q_="SelectContentImpl",K_=Lr("SelectContent.RemoveScroll"),S0=g.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:m,avoidCollisions:v,...y}=e,b=wr(Vr,n),[w,S]=g.useState(null),[E,k]=g.useState(null),C=ft(t,F=>S(F)),[T,P]=g.useState(null),[B,O]=g.useState(null),z=Ba(n),[L,_]=g.useState(!1),I=g.useRef(!1);g.useEffect(()=>{if(w)return Cu(w)},[w]),ku();const M=g.useCallback(F=>{const[W,...X]=z().map(K=>K.ref.current),[Q]=X.slice(-1),re=document.activeElement;for(const K of F)if(K===re||(K==null||K.scrollIntoView({block:"nearest"}),K===W&&E&&(E.scrollTop=0),K===Q&&E&&(E.scrollTop=E.scrollHeight),K==null||K.focus(),document.activeElement!==re))return},[z,E]),j=g.useCallback(()=>M([T,w]),[M,T,w]);g.useEffect(()=>{L&&j()},[L,j]);const{onOpenChange:A,triggerPointerDownPosRef:N}=b;g.useEffect(()=>{if(w){let F={x:0,y:0};const W=Q=>{var re,K;F={x:Math.abs(Math.round(Q.pageX)-(((re=N.current)==null?void 0:re.x)??0)),y:Math.abs(Math.round(Q.pageY)-(((K=N.current)==null?void 0:K.y)??0))}},X=Q=>{F.x<=10&&F.y<=10?Q.preventDefault():w.contains(Q.target)||A(!1),document.removeEventListener("pointermove",W),N.current=null};return N.current!==null&&(document.addEventListener("pointermove",W),document.addEventListener("pointerup",X,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",W),document.removeEventListener("pointerup",X,{capture:!0})}}},[w,A,N]),g.useEffect(()=>{const F=()=>A(!1);return window.addEventListener("blur",F),window.addEventListener("resize",F),()=>{window.removeEventListener("blur",F),window.removeEventListener("resize",F)}},[A]);const[R,D]=$0(F=>{const W=z().filter(re=>!re.disabled),X=W.find(re=>re.ref.current===document.activeElement),Q=z0(W,F,X);Q&&setTimeout(()=>Q.ref.current.focus())}),Y=g.useCallback((F,W,X)=>{const Q=!I.current&&!X;(b.value!==void 0&&b.value===W||Q)&&(P(F),Q&&(I.current=!0))},[b.value]),H=g.useCallback(()=>w==null?void 0:w.focus(),[w]),V=g.useCallback((F,W,X)=>{const Q=!I.current&&!X;(b.value!==void 0&&b.value===W||Q)&&O(F)},[b.value]),U=r==="popper"?fc:k0,G=U===fc?{side:a,sideOffset:l,align:c,alignOffset:u,arrowPadding:f,collisionBoundary:p,collisionPadding:h,sticky:x,hideWhenDetached:m,avoidCollisions:v}:{};return d.jsx(E0,{scope:n,content:w,viewport:E,onViewportChange:k,itemRefCallback:Y,selectedItem:T,onItemLeave:H,itemTextRefCallback:V,focusSelectedItem:j,selectedItemText:B,position:r,isPositioned:L,searchRef:R,children:d.jsx(Ra,{as:K_,allowPinchZoom:!0,children:d.jsx(Ia,{asChild:!0,trapped:b.open,onMountAutoFocus:F=>{F.preventDefault()},onUnmountAutoFocus:Oe(o,F=>{var W;(W=b.trigger)==null||W.focus({preventScroll:!0}),F.preventDefault()}),children:d.jsx(Gi,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:i,onPointerDownOutside:s,onFocusOutside:F=>F.preventDefault(),onDismiss:()=>b.onOpenChange(!1),children:d.jsx(U,{role:"listbox",id:b.contentId,"data-state":b.open?"open":"closed",dir:b.dir,onContextMenu:F=>F.preventDefault(),...y,...G,onPlaced:()=>_(!0),ref:C,style:{display:"flex",flexDirection:"column",outline:"none",...y.style},onKeyDown:Oe(y.onKeyDown,F=>{const W=F.ctrlKey||F.altKey||F.metaKey;if(F.key==="Tab"&&F.preventDefault(),!W&&F.key.length===1&&D(F.key),["ArrowUp","ArrowDown","Home","End"].includes(F.key)){let Q=z().filter(re=>!re.disabled).map(re=>re.ref.current);if(["ArrowUp","End"].includes(F.key)&&(Q=Q.slice().reverse()),["ArrowUp","ArrowDown"].includes(F.key)){const re=F.target,K=Q.indexOf(re);Q=Q.slice(K+1)}setTimeout(()=>M(Q)),F.preventDefault()}})})})})})})});S0.displayName=q_;var X_="SelectItemAlignedPosition",k0=g.forwardRef((e,t)=>{const{__scopeSelect:n,onPlaced:r,...o}=e,i=wr(Vr,n),s=br(Vr,n),[a,l]=g.useState(null),[c,u]=g.useState(null),f=ft(t,C=>u(C)),p=Ba(n),h=g.useRef(!1),x=g.useRef(!0),{viewport:m,selectedItem:v,selectedItemText:y,focusSelectedItem:b}=s,w=g.useCallback(()=>{if(i.trigger&&i.valueNode&&a&&c&&m&&v&&y){const C=i.trigger.getBoundingClientRect(),T=c.getBoundingClientRect(),P=i.valueNode.getBoundingClientRect(),B=y.getBoundingClientRect();if(i.dir!=="rtl"){const re=B.left-T.left,K=P.left-re,ne=C.left-K,ie=C.width+ne,he=Math.max(ie,T.width),ue=window.innerWidth-hn,we=Sf(K,[hn,Math.max(hn,ue-he)]);a.style.minWidth=ie+"px",a.style.left=we+"px"}else{const re=T.right-B.right,K=window.innerWidth-P.right-re,ne=window.innerWidth-C.right-K,ie=C.width+ne,he=Math.max(ie,T.width),ue=window.innerWidth-hn,we=Sf(K,[hn,Math.max(hn,ue-he)]);a.style.minWidth=ie+"px",a.style.right=we+"px"}const O=p(),z=window.innerHeight-hn*2,L=m.scrollHeight,_=window.getComputedStyle(c),I=parseInt(_.borderTopWidth,10),M=parseInt(_.paddingTop,10),j=parseInt(_.borderBottomWidth,10),A=parseInt(_.paddingBottom,10),N=I+M+L+A+j,R=Math.min(v.offsetHeight*5,N),D=window.getComputedStyle(m),Y=parseInt(D.paddingTop,10),H=parseInt(D.paddingBottom,10),V=C.top+C.height/2-hn,U=z-V,G=v.offsetHeight/2,F=v.offsetTop+G,W=I+M+F,X=N-W;if(W<=V){const re=O.length>0&&v===O[O.length-1].ref.current;a.style.bottom="0px";const K=c.clientHeight-m.offsetTop-m.offsetHeight,ne=Math.max(U,G+(re?H:0)+K+j),ie=W+ne;a.style.height=ie+"px"}else{const re=O.length>0&&v===O[0].ref.current;a.style.top="0px";const ne=Math.max(V,I+m.offsetTop+(re?Y:0)+G)+X;a.style.height=ne+"px",m.scrollTop=W-V+m.offsetTop}a.style.margin=`${hn}px 0`,a.style.minHeight=R+"px",a.style.maxHeight=z+"px",r==null||r(),requestAnimationFrame(()=>h.current=!0)}},[p,i.trigger,i.valueNode,a,c,m,v,y,i.dir,r]);Vt(()=>w(),[w]);const[S,E]=g.useState();Vt(()=>{c&&E(window.getComputedStyle(c).zIndex)},[c]);const k=g.useCallback(C=>{C&&x.current===!0&&(w(),b==null||b(),x.current=!1)},[w,b]);return d.jsx(Q_,{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(et.div,{...o,ref:f,style:{boxSizing:"border-box",maxHeight:"100%",...o.style}})})})});k0.displayName=X_;var Z_="SelectPopperPosition",fc=g.forwardRef((e,t)=>{const{__scopeSelect:n,align:r="start",collisionPadding:o=hn,...i}=e,s=Ha(n);return d.jsx(fu,{...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=Z_;var[Q_,Hu]=Xo(Vr,{}),pc="SelectViewport",C0=g.forwardRef((e,t)=>{const{__scopeSelect:n,nonce:r,...o}=e,i=br(pc,n),s=Hu(pc,n),a=ft(t,i.onViewportChange),l=g.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(Fa.Slot,{scope:n,children:d.jsx(et.div,{"data-radix-select-viewport":"",role:"presentation",...o,ref:a,style:{position:"relative",flex:1,overflow:"hidden auto",...o.style},onScroll:Oe(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-hn*2,m=parseFloat(f.style.minHeight),v=parseFloat(f.style.height),y=Math.max(m,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})})})]})});C0.displayName=pc;var _0="SelectGroup",[J_,e2]=Xo(_0),t2=g.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=Mn();return d.jsx(J_,{scope:n,id:o,children:d.jsx(et.div,{role:"group","aria-labelledby":o,...r,ref:t})})});t2.displayName=_0;var T0="SelectLabel",n2=g.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=e2(T0,n);return d.jsx(et.div,{id:o.id,...r,ref:t})});n2.displayName=T0;var ea="SelectItem",[r2,A0]=Xo(ea),N0=g.forwardRef((e,t)=>{const{__scopeSelect:n,value:r,disabled:o=!1,textValue:i,...s}=e,a=wr(ea,n),l=br(ea,n),c=a.value===r,[u,f]=g.useState(i??""),[p,h]=g.useState(!1),x=ft(t,b=>{var w;return(w=l.itemRefCallback)==null?void 0:w.call(l,b,r,o)}),m=Mn(),v=g.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(r2,{scope:n,value:r,disabled:o,textId:m,isSelected:c,onItemTextChange:g.useCallback(b=>{f(w=>w||((b==null?void 0:b.textContent)??"").trim())},[]),children:d.jsx(Fa.ItemSlot,{scope:n,value:r,disabled:o,textValue:u,children:d.jsx(et.div,{role:"option","aria-labelledby":m,"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:Oe(s.onFocus,()=>h(!0)),onBlur:Oe(s.onBlur,()=>h(!1)),onClick:Oe(s.onClick,()=>{v.current!=="mouse"&&y()}),onPointerUp:Oe(s.onPointerUp,()=>{v.current==="mouse"&&y()}),onPointerDown:Oe(s.onPointerDown,b=>{v.current=b.pointerType}),onPointerMove:Oe(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:Oe(s.onPointerLeave,b=>{var w;b.currentTarget===document.activeElement&&((w=l.onItemLeave)==null||w.call(l))}),onKeyDown:Oe(s.onKeyDown,b=>{var S;((S=l.searchRef)==null?void 0:S.current)!==""&&b.key===" "||(B_.includes(b.key)&&y(),b.key===" "&&b.preventDefault())})})})})});N0.displayName=ea;var yi="SelectItemText",j0=g.forwardRef((e,t)=>{const{__scopeSelect:n,className:r,style:o,...i}=e,s=wr(yi,n),a=br(yi,n),l=A0(yi,n),c=W_(yi,n),[u,f]=g.useState(null),p=ft(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=g.useMemo(()=>d.jsx("option",{value:l.value,disabled:l.disabled,children:h},l.value),[l.disabled,l.value,h]),{onNativeOptionAdd:m,onNativeOptionRemove:v}=c;return Vt(()=>(m(x),()=>v(x)),[m,v,x]),d.jsxs(d.Fragment,{children:[d.jsx(et.span,{id:l.textId,...i,ref:p}),l.isSelected&&s.valueNode&&!s.valueNodeHasChildren?Wo.createPortal(i.children,s.valueNode):null]})});j0.displayName=yi;var I0="SelectItemIndicator",M0=g.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e;return A0(I0,n).isSelected?d.jsx(et.span,{"aria-hidden":!0,...r,ref:t}):null});M0.displayName=I0;var hc="SelectScrollUpButton",R0=g.forwardRef((e,t)=>{const n=br(hc,e.__scopeSelect),r=Hu(hc,e.__scopeSelect),[o,i]=g.useState(!1),s=ft(t,r.onScrollButtonChange);return Vt(()=>{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});R0.displayName=hc;var gc="SelectScrollDownButton",P0=g.forwardRef((e,t)=>{const n=br(gc,e.__scopeSelect),r=Hu(gc,e.__scopeSelect),[o,i]=g.useState(!1),s=ft(t,r.onScrollButtonChange);return Vt(()=>{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});P0.displayName=gc;var D0=g.forwardRef((e,t)=>{const{__scopeSelect:n,onAutoScroll:r,...o}=e,i=br("SelectScrollButton",n),s=g.useRef(null),a=Ba(n),l=g.useCallback(()=>{s.current!==null&&(window.clearInterval(s.current),s.current=null)},[]);return g.useEffect(()=>()=>l(),[l]),Vt(()=>{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(et.div,{"aria-hidden":!0,...o,ref:t,style:{flexShrink:0,...o.style},onPointerDown:Oe(o.onPointerDown,()=>{s.current===null&&(s.current=window.setInterval(r,50))}),onPointerMove:Oe(o.onPointerMove,()=>{var c;(c=i.onItemLeave)==null||c.call(i),s.current===null&&(s.current=window.setInterval(r,50))}),onPointerLeave:Oe(o.onPointerLeave,()=>{l()})})}),o2="SelectSeparator",i2=g.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e;return d.jsx(et.div,{"aria-hidden":!0,...r,ref:t})});i2.displayName=o2;var mc="SelectArrow",s2=g.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=Ha(n),i=wr(mc,n),s=br(mc,n);return i.open&&s.position==="popper"?d.jsx(pu,{...o,...r,ref:t}):null});s2.displayName=mc;var a2="SelectBubbleInput",O0=g.forwardRef(({__scopeSelect:e,value:t,...n},r)=>{const o=g.useRef(null),i=ft(r,o),s=z_(t);return g.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(et.select,{...n,style:{...Tg,...n.style},ref:i,defaultValue:t})});O0.displayName=a2;function L0(e){return e===""||e===void 0}function $0(e){const t=pr(e),n=g.useRef(""),r=g.useRef(0),o=g.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=g.useCallback(()=>{n.current="",window.clearTimeout(r.current)},[]);return g.useEffect(()=>()=>window.clearTimeout(r.current),[]),[n,o,i]}function z0(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=l2(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 l2(e,t){return e.map((n,r)=>e[(t+r)%e.length])}var c2=h0,u2=m0,d2=v0,f2=y0,p2=w0,h2=b0,g2=C0,m2=N0,x2=j0,v2=M0,y2=R0,w2=P0;function F0({...e}){return d.jsx(c2,{"data-slot":"select",...e})}function B0({...e}){return d.jsx(d2,{"data-slot":"select-value",...e})}function H0({className:e,size:t="default",children:n,...r}){return d.jsxs(u2,{"data-slot":"select-trigger","data-size":t,className:Ye("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(f2,{asChild:!0,children:d.jsx(Hg,{className:"size-4 opacity-50"})})]})}function V0({className:e,children:t,position:n="popper",...r}){return d.jsx(p2,{children:d.jsxs(h2,{"data-slot":"select-content",className:Ye("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(b2,{}),d.jsx(g2,{className:Ye("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(E2,{})]})})}function U0({className:e,children:t,...n}){return d.jsxs(m2,{"data-slot":"select-item",className:Ye("[&_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(v2,{children:d.jsx(Bg,{className:"size-4"})})}),d.jsx(x2,{children:t})]})}function b2({className:e,...t}){return d.jsx(y2,{"data-slot":"select-scroll-up-button",className:Ye("flex cursor-default items-center justify-center py-1",e),...t,children:d.jsx(vS,{className:"size-4"})})}function E2({className:e,...t}){return d.jsx(w2,{"data-slot":"select-scroll-down-button",className:Ye("flex cursor-default items-center justify-center py-1",e),...t,children:d.jsx(Hg,{className:"size-4"})})}var Al="rovingFocusGroup.onEntryFocus",S2={bubbles:!1,cancelable:!0},Zi="RovingFocusGroup",[xc,W0,k2]=e0(Zi),[C2,G0]=vr(Zi,[k2]),[_2,T2]=C2(Zi),Y0=g.forwardRef((e,t)=>d.jsx(xc.Provider,{scope:e.__scopeRovingFocusGroup,children:d.jsx(xc.Slot,{scope:e.__scopeRovingFocusGroup,children:d.jsx(A2,{...e,ref:t})})}));Y0.displayName=Zi;var A2=g.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=g.useRef(null),h=ft(t,p),x=zu(i),[m,v]=zr({prop:s,defaultProp:a??null,onChange:l,caller:Zi}),[y,b]=g.useState(!1),w=pr(c),S=W0(n),E=g.useRef(!1),[k,C]=g.useState(0);return g.useEffect(()=>{const T=p.current;if(T)return T.addEventListener(Al,w),()=>T.removeEventListener(Al,w)},[w]),d.jsx(_2,{scope:n,orientation:r,dir:x,loop:o,currentTabStopId:m,onItemFocus:g.useCallback(T=>v(T),[v]),onItemShiftTab:g.useCallback(()=>b(!0),[]),onFocusableItemAdd:g.useCallback(()=>C(T=>T+1),[]),onFocusableItemRemove:g.useCallback(()=>C(T=>T-1),[]),children:d.jsx(et.div,{tabIndex:y||k===0?-1:0,"data-orientation":r,...f,ref:h,style:{outline:"none",...e.style},onMouseDown:Oe(e.onMouseDown,()=>{E.current=!0}),onFocus:Oe(e.onFocus,T=>{const P=!E.current;if(T.target===T.currentTarget&&P&&!y){const B=new CustomEvent(Al,S2);if(T.currentTarget.dispatchEvent(B),!B.defaultPrevented){const O=S().filter(M=>M.focusable),z=O.find(M=>M.active),L=O.find(M=>M.id===m),I=[z,L,...O].filter(Boolean).map(M=>M.ref.current);X0(I,u)}}E.current=!1}),onBlur:Oe(e.onBlur,()=>b(!1))})})}),q0="RovingFocusGroupItem",K0=g.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:o=!1,tabStopId:i,children:s,...a}=e,l=Mn(),c=i||l,u=T2(q0,n),f=u.currentTabStopId===c,p=W0(n),{onFocusableItemAdd:h,onFocusableItemRemove:x,currentTabStopId:m}=u;return g.useEffect(()=>{if(r)return h(),()=>x()},[r,h,x]),d.jsx(xc.ItemSlot,{scope:n,id:c,focusable:r,active:o,children:d.jsx(et.span,{tabIndex:f?0:-1,"data-orientation":u.orientation,...a,ref:t,onMouseDown:Oe(e.onMouseDown,v=>{r?u.onItemFocus(c):v.preventDefault()}),onFocus:Oe(e.onFocus,()=>u.onItemFocus(c)),onKeyDown:Oe(e.onKeyDown,v=>{if(v.key==="Tab"&&v.shiftKey){u.onItemShiftTab();return}if(v.target!==v.currentTarget)return;const y=I2(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?M2(w,S+1):w.slice(S+1)}setTimeout(()=>X0(w))}}),children:typeof s=="function"?s({isCurrentTabStop:f,hasTabStop:m!=null}):s})})});K0.displayName=q0;var N2={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function j2(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function I2(e,t,n){const r=j2(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(r))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(r)))return N2[r]}function X0(e,t=!1){const n=document.activeElement;for(const r of e)if(r===n||(r.focus({preventScroll:t}),document.activeElement!==n))return}function M2(e,t){return e.map((n,r)=>e[(t+r)%e.length])}var R2=Y0,P2=K0,Va="Tabs",[D2,J4]=vr(Va,[G0]),Z0=G0(),[O2,Vu]=D2(Va),Q0=g.forwardRef((e,t)=>{const{__scopeTabs:n,value:r,onValueChange:o,defaultValue:i,orientation:s="horizontal",dir:a,activationMode:l="automatic",...c}=e,u=zu(a),[f,p]=zr({prop:r,onChange:o,defaultProp:i??"",caller:Va});return d.jsx(O2,{scope:n,baseId:Mn(),value:f,onValueChange:p,orientation:s,dir:u,activationMode:l,children:d.jsx(et.div,{dir:u,"data-orientation":s,...c,ref:t})})});Q0.displayName=Va;var J0="TabsList",ex=g.forwardRef((e,t)=>{const{__scopeTabs:n,loop:r=!0,...o}=e,i=Vu(J0,n),s=Z0(n);return d.jsx(R2,{asChild:!0,...s,orientation:i.orientation,dir:i.dir,loop:r,children:d.jsx(et.div,{role:"tablist","aria-orientation":i.orientation,...o,ref:t})})});ex.displayName=J0;var tx="TabsTrigger",nx=g.forwardRef((e,t)=>{const{__scopeTabs:n,value:r,disabled:o=!1,...i}=e,s=Vu(tx,n),a=Z0(n),l=ix(s.baseId,r),c=sx(s.baseId,r),u=r===s.value;return d.jsx(P2,{asChild:!0,...a,focusable:!o,active:u,children:d.jsx(et.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:Oe(e.onMouseDown,f=>{!o&&f.button===0&&f.ctrlKey===!1?s.onValueChange(r):f.preventDefault()}),onKeyDown:Oe(e.onKeyDown,f=>{[" ","Enter"].includes(f.key)&&s.onValueChange(r)}),onFocus:Oe(e.onFocus,()=>{const f=s.activationMode!=="manual";!u&&!o&&f&&s.onValueChange(r)})})})});nx.displayName=tx;var rx="TabsContent",ox=g.forwardRef((e,t)=>{const{__scopeTabs:n,value:r,forceMount:o,children:i,...s}=e,a=Vu(rx,n),l=ix(a.baseId,r),c=sx(a.baseId,r),u=r===a.value,f=g.useRef(u);return g.useEffect(()=>{const p=requestAnimationFrame(()=>f.current=!1);return()=>cancelAnimationFrame(p)},[]),d.jsx(tr,{present:o||u,children:({present:p})=>d.jsx(et.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})})});ox.displayName=rx;function ix(e,t){return`${e}-trigger-${t}`}function sx(e,t){return`${e}-content-${t}`}var L2=Q0,$2=ex,z2=nx,F2=ox;function B2({className:e,...t}){return d.jsx(L2,{"data-slot":"tabs",className:Ye("flex flex-col gap-2",e),...t})}function H2({className:e,...t}){return d.jsx($2,{"data-slot":"tabs-list",className:Ye("bg-muted text-muted-foreground inline-flex h-9 w-fit items-center justify-center rounded-lg p-[3px]",e),...t})}function kf({className:e,...t}){return d.jsx(z2,{"data-slot":"tabs-trigger","data-testid":t.value,"aria-label":t.value,title:t.title,className:Ye("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 Cf({className:e,...t}){return d.jsx(F2,{"data-slot":"tabs-content",className:Ye("flex-1 outline-none",e),...t})}const ax=g.forwardRef(({className:e,...t},n)=>d.jsx(Qg,{autoComplete:"off",ref:n,name:"message","data-testid":"chat-input",className:Ye("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}));ax.displayName="ChatInput";const V2=xr("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"}}),lx=g.forwardRef(({className:e,variant:t,layout:n,children:r,...o},i)=>d.jsx("div",{className:Ye(V2({variant:t,layout:n,className:e}),"group relative"),ref:i,...o,children:g.Children.map(r,s=>g.isValidElement(s)&&typeof s.type!="string"?g.cloneElement(s,{variant:t,layout:n}):s)}));lx.displayName="ChatBubble";const U2=xr("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"}}),cx=g.forwardRef(({className:e,variant:t,layout:n,children:r,...o},i)=>d.jsx("div",{className:Ye(U2({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})}));cx.displayName="ChatBubbleMessage";const W2=g.forwardRef(({variant:e,className:t,children:n,...r},o)=>d.jsx("div",{ref:o,className:Ye("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}));W2.displayName="ChatBubbleActionWrapper";const ux={padding:"0 16px",maxWidth:"1280px",minWidth:"400px",margin:"0 auto",width:"100%"},dx=$t.forwardRef(({className:e="",children:t,...n},r)=>{const{scrollRef:o,isAtBottom:i,disableAutoScroll:s,scrollToBottom:a,userHasScrolled:l}=nT({smooth:!0,content:t});return g.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:ux,children:t})}),!i&&l&&d.jsx(Je,{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(zg,{className:"h-4 w-4"})})]})});dx.displayName="ChatMessageList";const G2=xr("flex-col items-center justify-center",{variants:{show:{true:"flex",false:"hidden"}},defaultVariants:{show:!0}}),Y2=xr("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 q2({size:e,show:t,children:n,className:r,variant:o}){return d.jsxs("span",{className:G2({show:t}),children:[d.jsx(Eu,{className:Ye(Y2({size:e,variant:o}),r)}),n]})}function K2({className:e=""}){return d.jsx(q2,{size:"small",variant:"primary",className:e})}const gs={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)]"},X2=xr("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:gs.error,warning:gs.warning,info:gs.info,success:gs.success}},defaultVariants:{variant:"default"}});function fx({className:e,variant:t,type:n,asChild:r=!1,...o}){const i=r?Hh:"span";return d.jsx(i,{"data-slot":"badge",className:Ye(X2({variant:t,type:n}),e),...o})}const Z2=xr("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 Q2({className:e,variant:t,...n}){return d.jsx("div",{"data-slot":"alert",role:"alert",className:Ye(Z2({variant:t}),e),...n})}function J2({className:e,...t}){return d.jsx("div",{"data-slot":"alert-title",className:Ye("col-start-2 line-clamp-1 min-h-4 font-medium tracking-tight",e),...t})}function eT({message:e,type:t}){return d.jsx("div",{className:"transform transition-all duration-200 ease-in-out",children:d.jsx(Q2,{className:"border-border bg-accent max-w-80 rounded-sm shadow-md",children:d.jsxs(J2,{className:"flex items-center text-sm",children:[t==="error"&&d.jsx(yu,{className:"mr-2 text-[var(--color-error-wMain)]"}),d.jsx("div",{className:"truncate",children:e})]})})})}function tT(){const{notifications:e}=Rt();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(eT,{id:t.id,message:t.message,type:t.type,duration:t.type==="error"?5e3:3e3})},t.id))})}function nT(e={}){const{offset:t=20,smooth:n=!1,content:r,autoScrollOnNewContent:o=!1}=e,i=g.useRef(null),s=g.useRef(0),a=g.useRef(!1),[l,c]=g.useState({isAtBottom:!0,autoScrollEnabled:!0}),u=g.useCallback(x=>{const{scrollTop:m,scrollHeight:v,clientHeight:y}=x;return Math.abs(v-m-y)<=t},[t]),f=g.useCallback(x=>{if(!i.current)return;const m=i.current.scrollHeight-i.current.clientHeight;x?i.current.scrollTop=m:i.current.scrollTo({top:m,behavior:n?"smooth":"auto"}),c({isAtBottom:!0,autoScrollEnabled:!0}),a.current=!1},[n]),p=g.useCallback(()=>{if(!i.current)return;const x=u(i.current);c(m=>({isAtBottom:x,autoScrollEnabled:x?!0:m.autoScrollEnabled}))},[u]);g.useEffect(()=>{const x=i.current;if(x)return x.addEventListener("scroll",p,{passive:!0}),()=>x.removeEventListener("scroll",p)},[p]),g.useEffect(()=>{const x=i.current;if(!x)return;const m=x.scrollHeight;m!==s.current&&((l.autoScrollEnabled||o)&&requestAnimationFrame(()=>{f(s.current===0)}),s.current=m)},[r,l.autoScrollEnabled,f,o]),g.useEffect(()=>{const x=i.current;if(!x)return;const m=new ResizeObserver(()=>{l.autoScrollEnabled&&f(!0)});return m.observe(x),()=>m.disconnect()},[l.autoScrollEnabled,f]);const h=g.useCallback(()=>{(i.current?u(i.current):!1)||(a.current=!0,c(m=>({...m,autoScrollEnabled:!1})))},[u]);return{scrollRef:i,isAtBottom:l.isAtBottom,autoScrollEnabled:l.autoScrollEnabled,scrollToBottom:()=>f(),disableAutoScroll:h,userHasScrolled:a.current}}const rT=({fileName:e,onRemove:t})=>d.jsxs(fx,{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(Je,{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(Su,{})})]}),oT=({agents:e=[],scrollToBottom:t})=>{const{isResponding:n,isCancelling:r,userInput:o,selectedAgentName:i,setSelectedAgentName:s,setUserInput:a,handleSubmit:l,handleCancel:c}=Rt(),u=g.useRef(null),[f,p]=g.useState([]),h=g.useRef(null),x=g.useRef(n),[m,v]=g.useState(o),y=w_(m,300);g.useEffect(()=>{a(y)},[y,a]),g.useEffect(()=>{v(o)},[o]),g.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 I=_.target.files;if(I){const M=Array.from(I).filter(j=>!f.some(A=>A.name===j.name&&A.size===j.size&&A.lastModified===j.lastModified));M.length>0&&p(j=>[...j,...M])}_.target&&(_.target.value=""),setTimeout(()=>{var M;(M=h.current)==null||M.focus()},100)},S=_=>{if(n)return;const I=_.clipboardData;if(!I||!I.files||I.files.length===0)return;I.files.length>0&&_.preventDefault();const M=Array.from(I.files).filter(j=>!f.some(A=>A.name===j.name&&A.size===j.size&&A.lastModified===j.lastModified));M.length>0&&p(j=>[...j,...M])},E=_=>{p(I=>I.filter((M,j)=>j!==_))},k=g.useMemo(()=>!n&&((m==null?void 0:m.trim())||f.length!==0),[n,m,f]),C=async _=>{_.preventDefault(),k&&(await l(_,f,m.trim()),p([]),v(""),t==null||t())},T=_=>{if(n)return;const I=_.filter(M=>!f.some(j=>j.name===M.name&&j.size===M.size&&j.lastModified===M.lastModified));I.length>0&&p(M=>[...M,...I])},{isDragging:P,handleDragEnter:B,handleDragOver:O,handleDragLeave:z,handleDrop:L}=E_({onFilesDropped:T,disabled:n});return d.jsxs("div",{className:`rounded-lg border p-4 shadow-sm ${P?"border-dotted border-[var(--primary-wMain)] bg-[var(--accent-background)]":""}`,onDragEnter:B,onDragOver:O,onDragLeave:z,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((_,I)=>d.jsx(rT,{fileName:_.name,onRemove:()=>E(I)},`${_.name}-${_.lastModified}-${I}`))}),d.jsx(ax,{ref:h,value:m,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(Je,{variant:"ghost",onClick:b,disabled:n,tooltip:"Attach file",children:d.jsx(Gg,{className:"size-4"})}),d.jsx("div",{children:"Agent: "}),d.jsxs(F0,{value:i,onValueChange:s,disabled:n||e.length===0,children:[d.jsx(H0,{className:"w-[250px]",children:d.jsx(B0,{defaultValue:i})}),d.jsx(V0,{children:e.map(_=>d.jsx(U0,{value:_.name,children:_.display_name||_.name},_.name))})]}),n&&!r?d.jsxs(Je,{className:"ml-auto gap-1.5",onClick:c,variant:"outline",disabled:r,tooltip:"Cancel",children:[d.jsx(uS,{className:"size-4"}),"Stop"]}):d.jsx(Je,{variant:"ghost",className:"ml-auto gap-1.5",onClick:C,disabled:!k,tooltip:"Send message",children:d.jsx(ak,{className:"size-4"})})]})]})};function iT(e,t){return t&&t.toLowerCase().startsWith("text/")?!0:e?e.toLowerCase().endsWith(".txt")||e.toLowerCase().endsWith(".text"):!1}function sT(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 aT(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 lT(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 cT(e){if(!e)return!1;const t=e.toLowerCase();return t.endsWith(".png")||t.endsWith(".jpg")||t.endsWith(".jpeg")||t.endsWith(".gif")||t.endsWith(".bmp")||t.endsWith(".webp")||t.endsWith(".svg")}function uT(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 dT(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 fT(e,t){if(t){const r=t.toLowerCase();if(r==="text/markdown"||r==="application/markdown")return!0}if(!e)return!1;const n=e.toLowerCase();return n.endsWith(".md")||n.endsWith(".markdown")}function pT(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 Ua(e,t){return sT(e,t)?"html":aT(e,t)?"mermaid":cT(e)?"image":fT(e,t)?"markdown":pT(e,t)?"audio":uT(e,t)?"json":dT(e,t)?"yaml":lT(e,t)?"csv":iT(e,t)?"text":null}function hT(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){throw console.error("Failed to decode base64 content with atob fallback:",n),new Error("Invalid base64 string")}}}const px=["csv","html","json","mermaid","image","markdown","audio","text","yaml"],gT=["image","audio"],mT=e=>{if(!e||!e.content)return"";const t=Ua(e.name,e.mime_type);if(!t||!px.includes(t))return"";if(gT.includes(t))return e.content;try{return hT(e.content)}catch(n){return console.error("Failed to decode base64 content:",n),""}},hx=5*1024*1024,xT=rg(hx);function vT(e){if(!e||!e.size)return{canPreview:!1,reason:"No artifact or content available."};const t=Ua(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: ${xT}.`}:{canPreview:!0}}const gx=(e,t="h-4 w-4")=>{if(!e)return d.jsx(Zd,{className:t});switch(Ua(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(PS,{className:t});case"text":return d.jsx(Xs,{className:t});case"csv":return d.jsx(FS,{className:t});case"json":return d.jsx($S,{className:t});default:return d.jsx(Zd,{className:t})}},yT=({fileAttachment:e})=>d.jsx(mx,{filename:e.name,onDownload:()=>Fb(e),className:"ml-4"}),mx=({filename:e,className:t,onDownload:n})=>{const{artifacts:r,setPreviewArtifact:o,openSidePanelTab:i}=Rt(),s=g.useMemo(()=>r.find(l=>l.filename===e),[r,e]),a=g.useMemo(()=>gx(s),[s]);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 ${t||""}`,children:[a,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})})}),s&&d.jsx(Je,{variant:"ghost",onClick:l=>{l.stopPropagation(),i("files"),o(s)},tooltip:"Preview",children:d.jsx(Ug,{className:"h-4 w-4"})}),n&&d.jsx(Je,{variant:"ghost",onClick:()=>n(),tooltip:"Download file",children:d.jsx(wu,{className:"h-4 w-4"})})]})},wT=({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."]})})},bT=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===`
375
- `||s==="\r"&&a===`
376
- `)&&!o?(s==="\r"&&a===`
377
- `&&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},ET=({content:e,setRenderError:t})=>{g.useEffect(()=>{t(null)},[e,t]);const n=g.useMemo(()=>{try{return bT(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."})},ST=({content:e,setRenderError:t})=>{const n=g.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() {
378
- try {
379
- ${s}
380
- } catch (e) { console.error('Error in sandboxed script:', e); }
381
- })();<\/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)})})},kT=({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 xx(){const e=g.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 CT=({content:e})=>{const{ref:t,handleKeyDown:n}=xx();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(So,{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:vx,setPrototypeOf:_f,isFrozen:_T,getPrototypeOf:TT,getOwnPropertyDescriptor:AT}=Object;let{freeze:qt,seal:fn,create:yx}=Object,{apply:vc,construct:yc}=typeof Reflect<"u"&&Reflect;qt||(qt=function(t){return t});fn||(fn=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 ms=Kt(Array.prototype.forEach),NT=Kt(Array.prototype.lastIndexOf),Tf=Kt(Array.prototype.pop),Qo=Kt(Array.prototype.push),jT=Kt(Array.prototype.splice),$s=Kt(String.prototype.toLowerCase),Nl=Kt(String.prototype.toString),Af=Kt(String.prototype.match),Jo=Kt(String.prototype.replace),IT=Kt(String.prototype.indexOf),MT=Kt(String.prototype.trim),gn=Kt(Object.prototype.hasOwnProperty),Wt=Kt(RegExp.prototype.test),ei=RT(TypeError);function Kt(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 RT(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]:$s;_f&&_f(e,null);let r=t.length;for(;r--;){let o=t[r];if(typeof o=="string"){const i=n(o);i!==o&&(_T(t)||(t[r]=i),o=i)}e[o]=!0}return e}function PT(e){for(let t=0;t<e.length;t++)gn(e,t)||(e[t]=null);return e}function Wn(e){const t=yx(null);for(const[n,r]of vx(e))gn(e,n)&&(Array.isArray(r)?t[n]=PT(r):r&&typeof r=="object"&&r.constructor===Object?t[n]=Wn(r):t[n]=r);return t}function ti(e,t){for(;e!==null;){const r=AT(e,t);if(r){if(r.get)return Kt(r.get);if(typeof r.value=="function")return Kt(r.value)}e=TT(e)}function n(){return null}return n}const Nf=qt(["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=qt(["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"]),Il=qt(["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"]),DT=qt(["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"]),Ml=qt(["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"]),OT=qt(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),jf=qt(["#text"]),If=qt(["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"]),Rl=qt(["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"]),Mf=qt(["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"]),xs=qt(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),LT=fn(/\{\{[\w\W]*|[\w\W]*\}\}/gm),$T=fn(/<%[\w\W]*|[\w\W]*%>/gm),zT=fn(/\$\{[\w\W]*/gm),FT=fn(/^data-[\-\w.\u00B7-\uFFFF]+$/),BT=fn(/^aria-[\-\w]+$/),wx=fn(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),HT=fn(/^(?:\w+script|data):/i),VT=fn(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),bx=fn(/^html$/i),UT=fn(/^[a-z][.\w]*(-[.\w]+)+$/i);var Rf=Object.freeze({__proto__:null,ARIA_ATTR:BT,ATTR_WHITESPACE:VT,CUSTOM_ELEMENT:UT,DATA_ATTR:FT,DOCTYPE_NAME:bx,ERB_EXPR:$T,IS_ALLOWED_URI:wx,IS_SCRIPT_OR_DATA:HT,MUSTACHE_EXPR:LT,TMPLIT_EXPR:zT});const ni={element:1,text:3,progressingInstruction:7,comment:8,document:9},WT=function(){return typeof window>"u"?null:window},GT=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 Ex(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:WT();const t=oe=>Ex(oe);if(t.version="3.2.6",t.removed=[],!e||!e.document||e.document.nodeType!==ni.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,m=ti(x,"cloneNode"),v=ti(x,"remove"),y=ti(x,"nextSibling"),b=ti(x,"childNodes"),w=ti(x,"parentNode");if(typeof s=="function"){const oe=n.createElement("template");oe.content&&oe.content.ownerDocument&&(n=oe.content.ownerDocument)}let S,E="";const{implementation:k,createNodeIterator:C,createDocumentFragment:T,getElementsByTagName:P}=n,{importNode:B}=r;let O=Pf();t.isSupported=typeof vx=="function"&&typeof w=="function"&&k&&k.createHTMLDocument!==void 0;const{MUSTACHE_EXPR:z,ERB_EXPR:L,TMPLIT_EXPR:_,DATA_ATTR:I,ARIA_ATTR:M,IS_SCRIPT_OR_DATA:j,ATTR_WHITESPACE:A,CUSTOM_ELEMENT:N}=Rf;let{IS_ALLOWED_URI:R}=Rf,D=null;const Y=Qe({},[...Nf,...jl,...Il,...Ml,...jf]);let H=null;const V=Qe({},[...If,...Rl,...Mf,...xs]);let U=Object.seal(yx(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}})),G=null,F=null,W=!0,X=!0,Q=!1,re=!0,K=!1,ne=!0,ie=!1,he=!1,ue=!1,we=!1,Ee=!1,Ke=!1,st=!0,tt=!1;const me="user-content-";let ut=!0,dt=!1,lt={},We=null;const ht=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 xt=null;const pt=Qe({},["audio","video","img","source","image","track"]);let bt=null;const vt=Qe({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),ct="http://www.w3.org/1998/Math/MathML",Tt="http://www.w3.org/2000/svg",He="http://www.w3.org/1999/xhtml";let Fe=He,At=!1,be=null;const ye=Qe({},[ct,Tt,He],Nl);let _e=Qe({},["mi","mo","mn","ms","mtext"]),Pe=Qe({},["annotation-xml"]);const Le=Qe({},["title","style","font","a","script"]);let ee=null;const q=["application/xhtml+xml","text/html"],se="text/html";let le=null,de=null;const De=n.createElement("form"),Ie=function($){return $ instanceof RegExp||$ instanceof Function},qe=function(){let $=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!(de&&de===$)){if((!$||typeof $!="object")&&($={}),$=Wn($),ee=q.indexOf($.PARSER_MEDIA_TYPE)===-1?se:$.PARSER_MEDIA_TYPE,le=ee==="application/xhtml+xml"?Nl:$s,D=gn($,"ALLOWED_TAGS")?Qe({},$.ALLOWED_TAGS,le):Y,H=gn($,"ALLOWED_ATTR")?Qe({},$.ALLOWED_ATTR,le):V,be=gn($,"ALLOWED_NAMESPACES")?Qe({},$.ALLOWED_NAMESPACES,Nl):ye,bt=gn($,"ADD_URI_SAFE_ATTR")?Qe(Wn(vt),$.ADD_URI_SAFE_ATTR,le):vt,xt=gn($,"ADD_DATA_URI_TAGS")?Qe(Wn(pt),$.ADD_DATA_URI_TAGS,le):pt,We=gn($,"FORBID_CONTENTS")?Qe({},$.FORBID_CONTENTS,le):ht,G=gn($,"FORBID_TAGS")?Qe({},$.FORBID_TAGS,le):Wn({}),F=gn($,"FORBID_ATTR")?Qe({},$.FORBID_ATTR,le):Wn({}),lt=gn($,"USE_PROFILES")?$.USE_PROFILES:!1,W=$.ALLOW_ARIA_ATTR!==!1,X=$.ALLOW_DATA_ATTR!==!1,Q=$.ALLOW_UNKNOWN_PROTOCOLS||!1,re=$.ALLOW_SELF_CLOSE_IN_ATTR!==!1,K=$.SAFE_FOR_TEMPLATES||!1,ne=$.SAFE_FOR_XML!==!1,ie=$.WHOLE_DOCUMENT||!1,we=$.RETURN_DOM||!1,Ee=$.RETURN_DOM_FRAGMENT||!1,Ke=$.RETURN_TRUSTED_TYPE||!1,ue=$.FORCE_BODY||!1,st=$.SANITIZE_DOM!==!1,tt=$.SANITIZE_NAMED_PROPS||!1,ut=$.KEEP_CONTENT!==!1,dt=$.IN_PLACE||!1,R=$.ALLOWED_URI_REGEXP||wx,Fe=$.NAMESPACE||He,_e=$.MATHML_TEXT_INTEGRATION_POINTS||_e,Pe=$.HTML_INTEGRATION_POINTS||Pe,U=$.CUSTOM_ELEMENT_HANDLING||{},$.CUSTOM_ELEMENT_HANDLING&&Ie($.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(U.tagNameCheck=$.CUSTOM_ELEMENT_HANDLING.tagNameCheck),$.CUSTOM_ELEMENT_HANDLING&&Ie($.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(U.attributeNameCheck=$.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),$.CUSTOM_ELEMENT_HANDLING&&typeof $.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(U.allowCustomizedBuiltInElements=$.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),K&&(X=!1),Ee&&(we=!0),lt&&(D=Qe({},jf),H=[],lt.html===!0&&(Qe(D,Nf),Qe(H,If)),lt.svg===!0&&(Qe(D,jl),Qe(H,Rl),Qe(H,xs)),lt.svgFilters===!0&&(Qe(D,Il),Qe(H,Rl),Qe(H,xs)),lt.mathMl===!0&&(Qe(D,Ml),Qe(H,Mf),Qe(H,xs))),$.ADD_TAGS&&(D===Y&&(D=Wn(D)),Qe(D,$.ADD_TAGS,le)),$.ADD_ATTR&&(H===V&&(H=Wn(H)),Qe(H,$.ADD_ATTR,le)),$.ADD_URI_SAFE_ATTR&&Qe(bt,$.ADD_URI_SAFE_ATTR,le),$.FORBID_CONTENTS&&(We===ht&&(We=Wn(We)),Qe(We,$.FORBID_CONTENTS,le)),ut&&(D["#text"]=!0),ie&&Qe(D,["html","head","body"]),D.table&&(Qe(D,["tbody"]),delete G.tbody),$.TRUSTED_TYPES_POLICY){if(typeof $.TRUSTED_TYPES_POLICY.createHTML!="function")throw ei('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof $.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw ei('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');S=$.TRUSTED_TYPES_POLICY,E=S.createHTML("")}else S===void 0&&(S=GT(h,o)),S!==null&&typeof E=="string"&&(E=S.createHTML(""));qt&&qt($),de=$}},Xe=Qe({},[...jl,...Il,...DT]),Ae=Qe({},[...Ml,...OT]),Ve=function($){let J=w($);(!J||!J.tagName)&&(J={namespaceURI:Fe,tagName:"template"});const Z=$s($.tagName),pe=$s(J.tagName);return be[$.namespaceURI]?$.namespaceURI===Tt?J.namespaceURI===He?Z==="svg":J.namespaceURI===ct?Z==="svg"&&(pe==="annotation-xml"||_e[pe]):!!Xe[Z]:$.namespaceURI===ct?J.namespaceURI===He?Z==="math":J.namespaceURI===Tt?Z==="math"&&Pe[pe]:!!Ae[Z]:$.namespaceURI===He?J.namespaceURI===Tt&&!Pe[pe]||J.namespaceURI===ct&&!_e[pe]?!1:!Ae[Z]&&(Le[Z]||!Xe[Z]):!!(ee==="application/xhtml+xml"&&be[$.namespaceURI]):!1},ze=function($){Qo(t.removed,{element:$});try{w($).removeChild($)}catch{v($)}},rt=function($,J){try{Qo(t.removed,{attribute:J.getAttributeNode($),from:J})}catch{Qo(t.removed,{attribute:null,from:J})}if(J.removeAttribute($),$==="is")if(we||Ee)try{ze(J)}catch{}else try{J.setAttribute($,"")}catch{}},gt=function($){let J=null,Z=null;if(ue)$="<remove></remove>"+$;else{const te=Af($,/^[\r\n\t ]+/);Z=te&&te[0]}ee==="application/xhtml+xml"&&Fe===He&&($='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+$+"</body></html>");const pe=S?S.createHTML($):$;if(Fe===He)try{J=new p().parseFromString(pe,ee)}catch{}if(!J||!J.documentElement){J=k.createDocument(Fe,"template",null);try{J.documentElement.innerHTML=At?E:pe}catch{}}const ke=J.body||J.documentElement;return $&&Z&&ke.insertBefore(n.createTextNode(Z),ke.childNodes[0]||null),Fe===He?P.call(J,ie?"html":"body")[0]:ie?J.documentElement:ke},Et=function($){return C.call($.ownerDocument||$,$,c.SHOW_ELEMENT|c.SHOW_COMMENT|c.SHOW_TEXT|c.SHOW_PROCESSING_INSTRUCTION|c.SHOW_CDATA_SECTION,null)},Dt=function($){return $ instanceof f&&(typeof $.nodeName!="string"||typeof $.textContent!="string"||typeof $.removeChild!="function"||!($.attributes instanceof u)||typeof $.removeAttribute!="function"||typeof $.setAttribute!="function"||typeof $.namespaceURI!="string"||typeof $.insertBefore!="function"||typeof $.hasChildNodes!="function")},St=function($){return typeof a=="function"&&$ instanceof a};function kt(oe,$,J){ms(oe,Z=>{Z.call(t,$,J,de)})}const en=function($){let J=null;if(kt(O.beforeSanitizeElements,$,null),Dt($))return ze($),!0;const Z=le($.nodeName);if(kt(O.uponSanitizeElement,$,{tagName:Z,allowedTags:D}),ne&&$.hasChildNodes()&&!St($.firstElementChild)&&Wt(/<[/\w!]/g,$.innerHTML)&&Wt(/<[/\w!]/g,$.textContent)||$.nodeType===ni.progressingInstruction||ne&&$.nodeType===ni.comment&&Wt(/<[/\w]/g,$.data))return ze($),!0;if(!D[Z]||G[Z]){if(!G[Z]&&Te(Z)&&(U.tagNameCheck instanceof RegExp&&Wt(U.tagNameCheck,Z)||U.tagNameCheck instanceof Function&&U.tagNameCheck(Z)))return!1;if(ut&&!We[Z]){const pe=w($)||$.parentNode,ke=b($)||$.childNodes;if(ke&&pe){const te=ke.length;for(let ce=te-1;ce>=0;--ce){const fe=m(ke[ce],!0);fe.__removalCount=($.__removalCount||0)+1,pe.insertBefore(fe,y($))}}}return ze($),!0}return $ instanceof l&&!Ve($)||(Z==="noscript"||Z==="noembed"||Z==="noframes")&&Wt(/<\/no(script|embed|frames)/i,$.innerHTML)?(ze($),!0):(K&&$.nodeType===ni.text&&(J=$.textContent,ms([z,L,_],pe=>{J=Jo(J,pe," ")}),$.textContent!==J&&(Qo(t.removed,{element:$.cloneNode()}),$.textContent=J)),kt(O.afterSanitizeElements,$,null),!1)},Bt=function($,J,Z){if(st&&(J==="id"||J==="name")&&(Z in n||Z in De))return!1;if(!(X&&!F[J]&&Wt(I,J))){if(!(W&&Wt(M,J))){if(!H[J]||F[J]){if(!(Te($)&&(U.tagNameCheck instanceof RegExp&&Wt(U.tagNameCheck,$)||U.tagNameCheck instanceof Function&&U.tagNameCheck($))&&(U.attributeNameCheck instanceof RegExp&&Wt(U.attributeNameCheck,J)||U.attributeNameCheck instanceof Function&&U.attributeNameCheck(J))||J==="is"&&U.allowCustomizedBuiltInElements&&(U.tagNameCheck instanceof RegExp&&Wt(U.tagNameCheck,Z)||U.tagNameCheck instanceof Function&&U.tagNameCheck(Z))))return!1}else if(!bt[J]){if(!Wt(R,Jo(Z,A,""))){if(!((J==="src"||J==="xlink:href"||J==="href")&&$!=="script"&&IT(Z,"data:")===0&&xt[$])){if(!(Q&&!Wt(j,Jo(Z,A,"")))){if(Z)return!1}}}}}}return!0},Te=function($){return $!=="annotation-xml"&&Af($,N)},$e=function($){kt(O.beforeSanitizeAttributes,$,null);const{attributes:J}=$;if(!J||Dt($))return;const Z={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:H,forceKeepAttr:void 0};let pe=J.length;for(;pe--;){const ke=J[pe],{name:te,namespaceURI:ce,value:fe}=ke,ae=le(te),Ne=fe;let Me=te==="value"?Ne:MT(Ne);if(Z.attrName=ae,Z.attrValue=Me,Z.keepAttr=!0,Z.forceKeepAttr=void 0,kt(O.uponSanitizeAttribute,$,Z),Me=Z.attrValue,tt&&(ae==="id"||ae==="name")&&(rt(te,$),Me=me+Me),ne&&Wt(/((--!?|])>)|<\/(style|title)/i,Me)){rt(te,$);continue}if(Z.forceKeepAttr)continue;if(!Z.keepAttr){rt(te,$);continue}if(!re&&Wt(/\/>/i,Me)){rt(te,$);continue}K&&ms([z,L,_],Ze=>{Me=Jo(Me,Ze," ")});const Ct=le($.nodeName);if(!Bt(Ct,ae,Me)){rt(te,$);continue}if(S&&typeof h=="object"&&typeof h.getAttributeType=="function"&&!ce)switch(h.getAttributeType(Ct,ae)){case"TrustedHTML":{Me=S.createHTML(Me);break}case"TrustedScriptURL":{Me=S.createScriptURL(Me);break}}if(Me!==Ne)try{ce?$.setAttributeNS(ce,te,Me):$.setAttribute(te,Me),Dt($)?ze($):Tf(t.removed)}catch{rt(te,$)}}kt(O.afterSanitizeAttributes,$,null)},Ce=function oe($){let J=null;const Z=Et($);for(kt(O.beforeSanitizeShadowDOM,$,null);J=Z.nextNode();)kt(O.uponSanitizeShadowNode,J,null),en(J),$e(J),J.content instanceof i&&oe(J.content);kt(O.afterSanitizeShadowDOM,$,null)};return t.sanitize=function(oe){let $=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},J=null,Z=null,pe=null,ke=null;if(At=!oe,At&&(oe="<!-->"),typeof oe!="string"&&!St(oe))if(typeof oe.toString=="function"){if(oe=oe.toString(),typeof oe!="string")throw ei("dirty is not a string, aborting")}else throw ei("toString is not a function");if(!t.isSupported)return oe;if(he||qe($),t.removed=[],typeof oe=="string"&&(dt=!1),dt){if(oe.nodeName){const fe=le(oe.nodeName);if(!D[fe]||G[fe])throw ei("root node is forbidden and cannot be sanitized in-place")}}else if(oe instanceof a)J=gt("<!---->"),Z=J.ownerDocument.importNode(oe,!0),Z.nodeType===ni.element&&Z.nodeName==="BODY"||Z.nodeName==="HTML"?J=Z:J.appendChild(Z);else{if(!we&&!K&&!ie&&oe.indexOf("<")===-1)return S&&Ke?S.createHTML(oe):oe;if(J=gt(oe),!J)return we?null:Ke?E:""}J&&ue&&ze(J.firstChild);const te=Et(dt?oe:J);for(;pe=te.nextNode();)en(pe),$e(pe),pe.content instanceof i&&Ce(pe.content);if(dt)return oe;if(we){if(Ee)for(ke=T.call(J.ownerDocument);J.firstChild;)ke.appendChild(J.firstChild);else ke=J;return(H.shadowroot||H.shadowrootmode)&&(ke=B.call(r,ke,!0)),ke}let ce=ie?J.outerHTML:J.innerHTML;return ie&&D["!doctype"]&&J.ownerDocument&&J.ownerDocument.doctype&&J.ownerDocument.doctype.name&&Wt(bx,J.ownerDocument.doctype.name)&&(ce="<!DOCTYPE "+J.ownerDocument.doctype.name+`>
382
- `+ce),K&&ms([z,L,_],fe=>{ce=Jo(ce,fe," ")}),S&&Ke?S.createHTML(ce):ce},t.setConfig=function(){let oe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};qe(oe),he=!0},t.clearConfig=function(){de=null,he=!1},t.isValidAttribute=function(oe,$,J){de||qe({});const Z=le(oe),pe=le($);return Bt(Z,pe,J)},t.addHook=function(oe,$){typeof $=="function"&&Qo(O[oe],$)},t.removeHook=function(oe,$){if($!==void 0){const J=NT(O[oe],$);return J===-1?void 0:jT(O[oe],J,1)[0]}return Tf(O[oe])},t.removeHooks=function(oe){O[oe]=[]},t.removeAllHooks=function(){O=Pf()},t}var Sx=Ex();const YT=({content:e,setRenderError:t})=>{const[n,r]=g.useState(""),o=g.useMemo(()=>Sx.sanitize(e,{USE_PROFILES:{html:!1},ALLOWED_TAGS:["br","em","strong","b","i"],ALLOWED_ATTR:[]}),[e]);return g.useEffect(()=>{r(`<!DOCTYPE html>
383
- <html>
384
- <head>
385
- <meta charset="utf-8">
386
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
387
- <title>Mermaid Preview</title>
388
- <script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"><\/script>
389
- <script src="https://cdn.jsdelivr.net/npm/panzoom@9.4.0/dist/panzoom.min.js"><\/script>
390
- <script>
391
- document.addEventListener('DOMContentLoaded', function() {
392
- try {
393
- mermaid.initialize({
394
- startOnLoad: true,
395
- theme: 'default',
396
- fontFamily: 'arial, sans-serif',
397
- logLevel: 'error',
398
- securityLevel: 'strict'
399
- });
400
-
401
- // Initialize panzoom after Mermaid rendering
402
- mermaid.run().then(() => {
403
- const diagramContainer = document.getElementById('diagram-container');
404
- if (diagramContainer) {
405
- const pz = panzoom(diagramContainer, {
406
- maxZoom: 10,
407
- minZoom: 0.1,
408
- smoothScroll: true,
409
- bounds: true,
410
- boundsPadding: 0.1
411
- });
412
- // Add zoom controls (old version had only reset)
413
- const resetButton = document.getElementById('reset');
414
- if (resetButton) {
415
- resetButton.addEventListener('click', () => {
416
- pz.moveTo(0, 0);
417
- pz.zoomAbs(0, 0, 1);
418
- });
419
- }
420
- }
421
- }).catch(err => {
422
- console.error("Mermaid rendering failed inside iframe:", err);
423
- const mermaidDiv = document.querySelector('.mermaid');
424
- if (mermaidDiv) mermaidDiv.innerText = "Error rendering diagram: " + err.message;
425
- });
426
-
427
- window.addEventListener('message', function(event) {
428
- if (event.data && event.data.action === 'getMermaidSvg') {
429
- const svgElement = document.querySelector('.mermaid svg');
430
- if (svgElement) {
431
- if (!svgElement.getAttribute('xmlns')) { // Ensure xmlns for standalone SVG
432
- svgElement.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
433
- }
434
- const svgData = new XMLSerializer().serializeToString(svgElement);
435
- window.parent.postMessage({
436
- action: 'downloadSvg',
437
- svgData: svgData,
438
- filename: event.data.filename || 'mermaid-diagram.svg'
439
- }, '*');
440
- } else {
441
- console.error('SVG element not found for download inside iframe.');
442
- }
443
- }
444
- });
445
- } catch (e) {
446
- console.error("Error initializing Mermaid or Panzoom inside iframe:", e);
447
- const mermaidDiv = document.querySelector('.mermaid');
448
- if (mermaidDiv) mermaidDiv.innerText = "Failed to initialize diagram viewer: " + e.message;
449
- }
450
- });
451
- <\/script>
452
- <style>
453
- /* Styles from old code */
454
- html, body {
455
- height: 100%;
456
- margin: 0;
457
- padding: 0;
458
- overflow: hidden;
459
- font-family: Arial, sans-serif; /* Old font */
460
- }
461
- .container {
462
- display: flex;
463
- flex-direction: column;
464
- height: 100vh;
465
- overflow: hidden;
466
- }
467
- .diagram-wrapper {
468
- flex: 1;
469
- overflow: hidden;
470
- position: relative;
471
- display: flex;
472
- justify-content: center;
473
- align-items: center;
474
- background-color: #f9f9f9;
475
- }
476
- #diagram-container {
477
- transform-origin: 0 0;
478
- cursor: grab;
479
- box-shadow: 0 0 10px rgba(0,0,0,0.1);
480
- background-color: white;
481
- padding: 20px;
482
- border-radius: 5px;
483
- /* Ensure diagram container can hold the content */
484
- width: auto; /* Adjust as needed, or let content define it */
485
- height: auto;
486
- max-width: 100%;
487
- max-height: 100%;
488
- }
489
- #diagram-container:active {
490
- cursor: grabbing;
491
- }
492
- .mermaid {
493
- display: flex; /* Helps in centering if SVG is smaller */
494
- justify-content: center;
495
- align-items: center;
496
- /* width: 100%; Ensures mermaid div takes space, SVG might scale within it */
497
- /* height: 100%; */
498
- }
499
- .mermaid svg {
500
- max-width: 100%; /* Ensure SVG scales down if too large */
501
- max-height: 100%;
502
- }
503
- .controls{
504
- position: fixed;
505
- bottom: 20px;
506
- right: 20px;
507
- z-index: 1000;
508
- display: flex;
509
- gap: 5px;
510
- }
511
- .control-btn {
512
- width: 40px;
513
- height: 40px;
514
- border-radius: 50%;
515
- border: none;
516
- background-color: white;
517
- box-shadow: 0 2px 5px rgba(0,0,0,0.2);
518
- cursor: pointer;
519
- font-size: 18px;
520
- display: flex;
521
- align-items: center;
522
- justify-content: center;
523
- }
524
- .control-btn:hover {
525
- background-color: #f0f0f0;
526
- }
527
- .instructions {
528
- position: fixed;
529
- top: 10px;
530
- left: 10px;
531
- background-color: rgba(255,255,255,0.8);
532
- padding: 5px 10px;
533
- border-radius: 4px;
534
- font-size: 12px;
535
- color: #666;
536
- }
537
- </style>
538
- </head>
539
- <body>
540
- <div class="container">
541
- <div class="diagram-wrapper">
542
- <div id="diagram-container">
543
- <div class="mermaid">
544
- ${o}
545
- </div>
546
- </div>
547
- </div>
548
- <div class="instructions">
549
- Drag to pan and scroll to zoom
550
- </div>
551
- <div class="controls">
552
- <button id="reset" class="control-btn" title="Reset View">↺</button>
553
- </div>
554
- </div>
555
- </body>
556
- </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 kx(e){return typeof e>"u"||e===null}function qT(e){return typeof e=="object"&&e!==null}function KT(e){return Array.isArray(e)?e:kx(e)?[]:[e]}function XT(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 ZT(e,t){var n="",r;for(r=0;r<t;r+=1)n+=e;return n}function QT(e){return e===0&&Number.NEGATIVE_INFINITY===1/e}var JT=kx,eA=qT,tA=KT,nA=ZT,rA=QT,oA=XT,Lt={isNothing:JT,isObject:eA,toArray:tA,repeat:nA,isNegativeZero:rA,extend:oA};function Cx(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+=`
557
-
558
- `+e.mark.snippet),r+" "+n):r}function Mi(e,t){Error.call(this),this.name="YAMLException",this.reason=e,this.mark=t,this.message=Cx(this,!1),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack||""}Mi.prototype=Object.create(Error.prototype);Mi.prototype.constructor=Mi;Mi.prototype.toString=function(t){return this.name+": "+Cx(this,t)};var Gt=Mi;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 Dl(e,t){return Lt.repeat(" ",t-e.length)+e}function iA(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=Lt.repeat(" ",t.indent)+Dl((e.line-l+1).toString(),u)+" | "+c.str+`
559
- `+a;for(c=Pl(e.buffer,r[s],o[s],e.position,f),a+=Lt.repeat(" ",t.indent)+Dl((e.line+1).toString(),u)+" | "+c.str+`
560
- `,a+=Lt.repeat("-",t.indent+u+3+c.pos)+`^
561
- `,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+=Lt.repeat(" ",t.indent)+Dl((e.line+l+1).toString(),u)+" | "+c.str+`
562
- `;return a.replace(/\n$/,"")}var sA=iA,aA=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"],lA=["scalar","sequence","mapping"];function cA(e){var t={};return e!==null&&Object.keys(e).forEach(function(n){e[n].forEach(function(r){t[String(r)]=n})}),t}function uA(e,t){if(t=t||{},Object.keys(t).forEach(function(n){if(aA.indexOf(n)===-1)throw new Gt('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=cA(t.styleAliases||null),lA.indexOf(this.kind)===-1)throw new Gt('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}var Ft=uA;function Df(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 dA(){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 Ft)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 Gt("Schema.extend argument should be a Type, [ Type ], or a schema definition ({ implicit: [...], explicit: [...] })");n.forEach(function(i){if(!(i instanceof Ft))throw new Gt("Specified list of YAML types (or a single Type object) contains a non-Type object.");if(i.loadKind&&i.loadKind!=="scalar")throw new Gt("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 Gt("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 Ft))throw new Gt("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=Df(o,"implicit"),o.compiledExplicit=Df(o,"explicit"),o.compiledTypeMap=dA(o.compiledImplicit,o.compiledExplicit),o};var _x=wc,Tx=new Ft("tag:yaml.org,2002:str",{kind:"scalar",construct:function(e){return e!==null?e:""}}),Ax=new Ft("tag:yaml.org,2002:seq",{kind:"sequence",construct:function(e){return e!==null?e:[]}}),Nx=new Ft("tag:yaml.org,2002:map",{kind:"mapping",construct:function(e){return e!==null?e:{}}}),jx=new _x({explicit:[Tx,Ax,Nx]});function fA(e){if(e===null)return!0;var t=e.length;return t===1&&e==="~"||t===4&&(e==="null"||e==="Null"||e==="NULL")}function pA(){return null}function hA(e){return e===null}var Ix=new Ft("tag:yaml.org,2002:null",{kind:"scalar",resolve:fA,construct:pA,predicate:hA,represent:{canonical:function(){return"~"},lowercase:function(){return"null"},uppercase:function(){return"NULL"},camelcase:function(){return"Null"},empty:function(){return""}},defaultStyle:"lowercase"});function gA(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 mA(e){return e==="true"||e==="True"||e==="TRUE"}function xA(e){return Object.prototype.toString.call(e)==="[object Boolean]"}var Mx=new Ft("tag:yaml.org,2002:bool",{kind:"scalar",resolve:gA,construct:mA,predicate:xA,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 vA(e){return 48<=e&&e<=57||65<=e&&e<=70||97<=e&&e<=102}function yA(e){return 48<=e&&e<=55}function wA(e){return 48<=e&&e<=57}function bA(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(!vA(e.charCodeAt(n)))return!1;r=!0}return r&&o!=="_"}if(o==="o"){for(n++;n<t;n++)if(o=e[n],o!=="_"){if(!yA(e.charCodeAt(n)))return!1;r=!0}return r&&o!=="_"}}if(o==="_")return!1;for(;n<t;n++)if(o=e[n],o!=="_"){if(!wA(e.charCodeAt(n)))return!1;r=!0}return!(!r||o==="_")}function EA(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 SA(e){return Object.prototype.toString.call(e)==="[object Number]"&&e%1===0&&!Lt.isNegativeZero(e)}var Rx=new Ft("tag:yaml.org,2002:int",{kind:"scalar",resolve:bA,construct:EA,predicate:SA,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"]}}),kA=new RegExp("^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");function CA(e){return!(e===null||!kA.test(e)||e[e.length-1]==="_")}function _A(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 TA=/^[-+]?[0-9]+e/;function AA(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(Lt.isNegativeZero(e))return"-0.0";return n=e.toString(10),TA.test(n)?n.replace("e",".e"):n}function NA(e){return Object.prototype.toString.call(e)==="[object Number]"&&(e%1!==0||Lt.isNegativeZero(e))}var Px=new Ft("tag:yaml.org,2002:float",{kind:"scalar",resolve:CA,construct:_A,predicate:NA,represent:AA,defaultStyle:"lowercase"}),Dx=jx.extend({implicit:[Ix,Mx,Rx,Px]}),Ox=Dx,Lx=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),$x=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 jA(e){return e===null?!1:Lx.exec(e)!==null||$x.exec(e)!==null}function IA(e){var t,n,r,o,i,s,a,l=0,c=null,u,f,p;if(t=Lx.exec(e),t===null&&(t=$x.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 MA(e){return e.toISOString()}var zx=new Ft("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:jA,construct:IA,instanceOf:Date,represent:MA});function RA(e){return e==="<<"||e===null}var Fx=new Ft("tag:yaml.org,2002:merge",{kind:"scalar",resolve:RA}),Uu=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=
563
- \r`;function PA(e){if(e===null)return!1;var t,n,r=0,o=e.length,i=Uu;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 DA(e){var t,n,r=e.replace(/[\r\n=]/g,""),o=r.length,i=Uu,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 OA(e){var t="",n=0,r,o,i=e.length,s=Uu;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 LA(e){return Object.prototype.toString.call(e)==="[object Uint8Array]"}var Bx=new Ft("tag:yaml.org,2002:binary",{kind:"scalar",resolve:PA,construct:DA,predicate:LA,represent:OA}),$A=Object.prototype.hasOwnProperty,zA=Object.prototype.toString;function FA(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,zA.call(o)!=="[object Object]")return!1;for(i in o)if($A.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 BA(e){return e!==null?e:[]}var Hx=new Ft("tag:yaml.org,2002:omap",{kind:"sequence",resolve:FA,construct:BA}),HA=Object.prototype.toString;function VA(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],HA.call(r)!=="[object Object]"||(o=Object.keys(r),o.length!==1))return!1;i[t]=[o[0],r[o[0]]]}return!0}function UA(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 Ft("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:VA,construct:UA}),WA=Object.prototype.hasOwnProperty;function GA(e){if(e===null)return!0;var t,n=e;for(t in n)if(WA.call(n,t)&&n[t]!==null)return!1;return!0}function YA(e){return e!==null?e:{}}var Ux=new Ft("tag:yaml.org,2002:set",{kind:"mapping",resolve:GA,construct:YA}),Wu=Ox.extend({implicit:[zx,Fx],explicit:[Bx,Hx,Vx,Ux]}),mr=Object.prototype.hasOwnProperty,ta=1,Wx=2,Gx=3,na=4,Ol=1,qA=2,Of=3,KA=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,XA=/[\x85\u2028\u2029]/,ZA=/[,\[\]\{\}]/,Yx=/^(?:!|!!|![a-z\-]+!)$/i,qx=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;function Lf(e){return Object.prototype.toString.call(e)}function Pn(e){return e===10||e===13}function Pr(e){return e===9||e===32}function Qt(e){return e===9||e===32||e===10||e===13}function mo(e){return e===44||e===91||e===93||e===123||e===125}function QA(e){var t;return 48<=e&&e<=57?e-48:(t=e|32,97<=t&&t<=102?t-97+10:-1)}function JA(e){return e===120?2:e===117?4:e===85?8:0}function eN(e){return 48<=e&&e<=57?e-48:-1}function $f(e){return e===48?"\0":e===97?"\x07":e===98?"\b":e===116||e===9?" ":e===110?`
564
- `: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 tN(e){return e<=65535?String.fromCharCode(e):String.fromCharCode((e-65536>>10)+55296,(e-65536&1023)+56320)}var Kx=new Array(256),Xx=new Array(256);for(var so=0;so<256;so++)Kx[so]=$f(so)?1:0,Xx[so]=$f(so);function nN(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||Wu,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 Zx(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=sA(n),new Gt(t,n)}function Se(e,t){throw Zx(e,t)}function ra(e,t){e.onWarning&&e.onWarning.call(null,Zx(e,t))}var zf={YAML:function(t,n,r){var o,i,s;t.version!==null&&Se(t,"duplication of %YAML directive"),r.length!==1&&Se(t,"YAML directive accepts exactly one argument"),o=/^([0-9]+)\.([0-9]+)$/.exec(r[0]),o===null&&Se(t,"ill-formed argument of the YAML directive"),i=parseInt(o[1],10),s=parseInt(o[2],10),i!==1&&Se(t,"unacceptable YAML version of the document"),t.version=r[0],t.checkLineBreaks=s<2,s!==1&&s!==2&&ra(t,"unsupported YAML version of the document")},TAG:function(t,n,r){var o,i;r.length!==2&&Se(t,"TAG directive accepts exactly two arguments"),o=r[0],i=r[1],Yx.test(o)||Se(t,"ill-formed tag handle (first argument) of the TAG directive"),mr.call(t.tagMap,o)&&Se(t,'there is a previously declared suffix for "'+o+'" tag handle'),qx.test(i)||Se(t,"ill-formed tag prefix (second argument) of the TAG directive");try{i=decodeURIComponent(i)}catch{Se(t,"tag prefix is malformed: "+i)}t.tagMap[o]=i}};function dr(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||Se(e,"expected valid JSON character");else KA.test(a)&&Se(e,"the stream contains non-printable characters");e.result+=a}}function Ff(e,t,n,r){var o,i,s,a;for(Lt.isObject(n)||Se(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],mr.call(t,i)||(t[i]=n[i],r[i]=!0)}function xo(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])&&Se(e,"nested arrays are not supported inside keys"),typeof o=="object"&&Lf(o[c])==="[object Object]"&&(o[c]="[object Object]");if(typeof o=="object"&&Lf(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)Ff(e,t,i[c],n);else Ff(e,t,i,n);else!e.json&&!mr.call(n,o)&&mr.call(t,o)&&(e.line=s||e.line,e.lineStart=a||e.lineStart,e.position=l||e.position,Se(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 Gu(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++):Se(e,"a line break is expected"),e.line+=1,e.lineStart=e.position,e.firstTabInLine=-1}function Mt(e,t,n){for(var r=0,o=e.input.charCodeAt(e.position);o!==0;){for(;Pr(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(Pn(o))for(Gu(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&&ra(e,"deficient indentation"),r}function Wa(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||Qt(n)))}function Yu(e,t){t===1?e.result+=" ":t>1&&(e.result+=Lt.repeat(`
565
- `,t-1))}function rN(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),Qt(h)||mo(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),Qt(o)||n&&mo(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),Qt(o)||n&&mo(o))break}else if(h===35){if(r=e.input.charCodeAt(e.position-1),Qt(r))break}else{if(e.position===e.lineStart&&Wa(e)||n&&mo(h))break;if(Pn(h))if(l=e.line,c=e.lineStart,u=e.lineIndent,Mt(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&&(dr(e,i,s,!1),Yu(e,e.line-l),i=s=e.position,a=!1),Pr(h)||(s=e.position+1),h=e.input.charCodeAt(++e.position)}return dr(e,i,s,!1),e.result?!0:(e.kind=f,e.result=p,!1)}function oN(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(dr(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 Pn(n)?(dr(e,r,o,!0),Yu(e,Mt(e,!1,t)),r=o=e.position):e.position===e.lineStart&&Wa(e)?Se(e,"unexpected end of the document within a single quoted scalar"):(e.position++,o=e.position);Se(e,"unexpected end of the stream within a single quoted scalar")}function iN(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 dr(e,n,e.position,!0),e.position++,!0;if(a===92){if(dr(e,n,e.position,!0),a=e.input.charCodeAt(++e.position),Pn(a))Mt(e,!1,t);else if(a<256&&Kx[a])e.result+=Xx[a],e.position++;else if((s=JA(a))>0){for(o=s,i=0;o>0;o--)a=e.input.charCodeAt(++e.position),(s=QA(a))>=0?i=(i<<4)+s:Se(e,"expected hexadecimal character");e.result+=tN(i),e.position++}else Se(e,"unknown escape sequence");n=r=e.position}else Pn(a)?(dr(e,n,r,!0),Yu(e,Mt(e,!1,t)),n=r=e.position):e.position===e.lineStart&&Wa(e)?Se(e,"unexpected end of the document within a double quoted scalar"):(e.position++,r=e.position)}Se(e,"unexpected end of the stream within a double quoted scalar")}function sN(e,t){var n=!0,r,o,i,s=e.tag,a,l=e.anchor,c,u,f,p,h,x=Object.create(null),m,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(Mt(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&&Se(e,"expected the node content, but found ','"):Se(e,"missed comma between flow collection entries"),v=m=y=null,f=p=!1,b===63&&(c=e.input.charCodeAt(e.position+1),Qt(c)&&(f=p=!0,e.position++,Mt(e,!0,t))),r=e.line,o=e.lineStart,i=e.position,No(e,t,ta,!1,!0),v=e.tag,m=e.result,Mt(e,!0,t),b=e.input.charCodeAt(e.position),(p||e.line===r)&&b===58&&(f=!0,b=e.input.charCodeAt(++e.position),Mt(e,!0,t),No(e,t,ta,!1,!0),y=e.result),h?xo(e,a,x,v,m,y,r,o,i):f?a.push(xo(e,null,x,v,m,y,r,o,i)):a.push(m),Mt(e,!0,t),b=e.input.charCodeAt(e.position),b===44?(n=!0,b=e.input.charCodeAt(++e.position)):n=!1}Se(e,"unexpected end of the stream within a flow collection")}function aN(e,t){var n,r,o=Ol,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)Ol===o?o=f===43?Of:qA:Se(e,"repeat of a chomping mode identifier");else if((u=eN(f))>=0)u===0?Se(e,"bad explicit indentation width of a block scalar; it cannot be less than one"):s?Se(e,"repeat of an indentation width identifier"):(a=t+u-1,s=!0);else break;if(Pr(f)){do f=e.input.charCodeAt(++e.position);while(Pr(f));if(f===35)do f=e.input.charCodeAt(++e.position);while(!Pn(f)&&f!==0)}for(;f!==0;){for(Gu(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),Pn(f)){l++;continue}if(e.lineIndent<a){o===Of?e.result+=Lt.repeat(`
566
- `,i?1+l:l):o===Ol&&i&&(e.result+=`
567
- `);break}for(r?Pr(f)?(c=!0,e.result+=Lt.repeat(`
568
- `,i?1+l:l)):c?(c=!1,e.result+=Lt.repeat(`
569
- `,l+1)):l===0?i&&(e.result+=" "):e.result+=Lt.repeat(`
570
- `,l):e.result+=Lt.repeat(`
571
- `,i?1+l:l),i=!0,s=!0,l=0,n=e.position;!Pn(f)&&f!==0;)f=e.input.charCodeAt(++e.position);dr(e,n,e.position,!1)}return!0}function Bf(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,Se(e,"tab characters must not be used in indentation")),!(l!==45||(s=e.input.charCodeAt(e.position+1),!Qt(s))));){if(a=!0,e.position++,Mt(e,!0,-1)&&e.lineIndent<=t){i.push(null),l=e.input.charCodeAt(e.position);continue}if(n=e.line,No(e,t,Gx,!1,!0),i.push(e.result),Mt(e,!0,-1),l=e.input.charCodeAt(e.position),(e.line===n||e.lineIndent>t)&&l!==0)Se(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 lN(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,m=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,Se(e,"tab characters must not be used in indentation")),r=e.input.charCodeAt(e.position+1),i=e.line,(b===63||b===58)&&Qt(r))b===63?(v&&(xo(e,f,p,h,x,null,s,a,l),h=x=m=null),y=!0,v=!0,o=!0):v?(v=!1,o=!0):Se(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,!No(e,n,Wx,!1,!0))break;if(e.line===i){for(b=e.input.charCodeAt(e.position);Pr(b);)b=e.input.charCodeAt(++e.position);if(b===58)b=e.input.charCodeAt(++e.position),Qt(b)||Se(e,"a whitespace character is expected after the key-value separator within a block mapping"),v&&(xo(e,f,p,h,x,null,s,a,l),h=x=m=null),y=!0,v=!1,o=!1,h=e.tag,x=e.result;else if(y)Se(e,"can not read an implicit mapping pair; a colon is missed");else return e.tag=c,e.anchor=u,!0}else if(y)Se(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),No(e,t,na,!0,o)&&(v?x=e.result:m=e.result),v||(xo(e,f,p,h,x,m,s,a,l),h=x=m=null),Mt(e,!0,-1),b=e.input.charCodeAt(e.position)),(e.line===i||e.lineIndent>t)&&b!==0)Se(e,"bad indentation of a mapping entry");else if(e.lineIndent<t)break}return v&&xo(e,f,p,h,x,null,s,a,l),y&&(e.tag=c,e.anchor=u,e.kind="mapping",e.result=f),y}function cN(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&&Se(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)):Se(e,"unexpected end of the stream within a verbatim tag")}else{for(;s!==0&&!Qt(s);)s===33&&(r?Se(e,"tag suffix cannot contain exclamation marks"):(o=e.input.slice(t-1,e.position+1),Yx.test(o)||Se(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),ZA.test(i)&&Se(e,"tag suffix cannot contain flow indicator characters")}i&&!qx.test(i)&&Se(e,"tag name cannot contain such characters: "+i);try{i=decodeURIComponent(i)}catch{Se(e,"tag name is malformed: "+i)}return n?e.tag=i:mr.call(e.tagMap,o)?e.tag=e.tagMap[o]+i:o==="!"?e.tag="!"+i:o==="!!"?e.tag="tag:yaml.org,2002:"+i:Se(e,'undeclared tag handle "'+o+'"'),!0}function uN(e){var t,n;if(n=e.input.charCodeAt(e.position),n!==38)return!1;for(e.anchor!==null&&Se(e,"duplication of an anchor property"),n=e.input.charCodeAt(++e.position),t=e.position;n!==0&&!Qt(n)&&!mo(n);)n=e.input.charCodeAt(++e.position);return e.position===t&&Se(e,"name of an anchor node must contain at least one character"),e.anchor=e.input.slice(t,e.position),!0}function dN(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&&!Qt(r)&&!mo(r);)r=e.input.charCodeAt(++e.position);return e.position===t&&Se(e,"name of an alias node must contain at least one character"),n=e.input.slice(t,e.position),mr.call(e.anchorMap,n)||Se(e,'unidentified alias "'+n+'"'),e.result=e.anchorMap[n],Mt(e,!0,-1),!0}function No(e,t,n,r,o){var i,s,a,l=1,c=!1,u=!1,f,p,h,x,m,v;if(e.listener!==null&&e.listener("open",e),e.tag=null,e.anchor=null,e.kind=null,e.result=null,i=s=a=na===n||Gx===n,r&&Mt(e,!0,-1)&&(c=!0,e.lineIndent>t?l=1:e.lineIndent===t?l=0:e.lineIndent<t&&(l=-1)),l===1)for(;cN(e)||uN(e);)Mt(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||na===n)&&(ta===n||Wx===n?m=t:m=t+1,v=e.position-e.lineStart,l===1?a&&(Bf(e,v)||lN(e,v,m))||sN(e,m)?u=!0:(s&&aN(e,m)||oN(e,m)||iN(e,m)?u=!0:dN(e)?(u=!0,(e.tag!==null||e.anchor!==null)&&Se(e,"alias node should not have any properties")):rN(e,m,ta===n)&&(u=!0,e.tag===null&&(e.tag="?")),e.anchor!==null&&(e.anchorMap[e.anchor]=e.result)):l===0&&(u=a&&Bf(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"&&Se(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(mr.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||Se(e,"unknown tag !<"+e.tag+">"),e.result!==null&&x.kind!==e.kind&&Se(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)):Se(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 fN(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&&(Mt(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&&!Qt(s);)s=e.input.charCodeAt(++e.position);for(r=e.input.slice(n,e.position),o=[],r.length<1&&Se(e,"directive name must not be less than one character in length");s!==0;){for(;Pr(s);)s=e.input.charCodeAt(++e.position);if(s===35){do s=e.input.charCodeAt(++e.position);while(s!==0&&!Pn(s));break}if(Pn(s))break;for(n=e.position;s!==0&&!Qt(s);)s=e.input.charCodeAt(++e.position);o.push(e.input.slice(n,e.position))}s!==0&&Gu(e),mr.call(zf,r)?zf[r](e,r,o):ra(e,'unknown document directive "'+r+'"')}if(Mt(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,Mt(e,!0,-1)):i&&Se(e,"directives end mark is expected"),No(e,e.lineIndent-1,na,!1,!0),Mt(e,!0,-1),e.checkLineBreaks&&XA.test(e.input.slice(t,e.position))&&ra(e,"non-ASCII line breaks are interpreted as content"),e.documents.push(e.result),e.position===e.lineStart&&Wa(e)){e.input.charCodeAt(e.position)===46&&(e.position+=3,Mt(e,!0,-1));return}if(e.position<e.length-1)Se(e,"end of the stream or a document separator is expected");else return}function Qx(e,t){e=String(e),t=t||{},e.length!==0&&(e.charCodeAt(e.length-1)!==10&&e.charCodeAt(e.length-1)!==13&&(e+=`
572
- `),e.charCodeAt(0)===65279&&(e=e.slice(1)));var n=new nN(e,t),r=e.indexOf("\0");for(r!==-1&&(n.position=r,Se(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;)fN(n);return n.documents}function pN(e,t,n){t!==null&&typeof t=="object"&&typeof n>"u"&&(n=t,t=null);var r=Qx(e,n);if(typeof t!="function")return r;for(var o=0,i=r.length;o<i;o+=1)t(r[o])}function hN(e,t){var n=Qx(e,t);if(n.length!==0){if(n.length===1)return n[0];throw new Gt("expected a single document in the stream, but found more")}}var gN=pN,mN=hN,Jx={loadAll:gN,load:mN},ev=Object.prototype.toString,tv=Object.prototype.hasOwnProperty,qu=65279,xN=9,Ri=10,vN=13,yN=32,wN=33,bN=34,bc=35,EN=37,SN=38,kN=39,CN=42,nv=44,_N=45,oa=58,TN=61,AN=62,NN=63,jN=64,rv=91,ov=93,IN=96,iv=123,MN=124,sv=125,Ut={};Ut[0]="\\0";Ut[7]="\\a";Ut[8]="\\b";Ut[9]="\\t";Ut[10]="\\n";Ut[11]="\\v";Ut[12]="\\f";Ut[13]="\\r";Ut[27]="\\e";Ut[34]='\\"';Ut[92]="\\\\";Ut[133]="\\N";Ut[160]="\\_";Ut[8232]="\\L";Ut[8233]="\\P";var RN=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"],PN=/^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;function DN(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&&tv.call(l.styleAliases,a)&&(a=l.styleAliases[a]),n[s]=a;return n}function ON(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 Gt("code point within a string may not be greater than 0xFFFFFFFF");return"\\"+n+Lt.repeat("0",r-t.length)+t}var LN=1,Pi=2;function $N(e){this.schema=e.schema||Wu,this.indent=Math.max(1,e.indent||2),this.noArrayIndent=e.noArrayIndent||!1,this.skipInvalid=e.skipInvalid||!1,this.flowLevel=Lt.isNothing(e.flowLevel)?-1:e.flowLevel,this.styleMap=DN(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==='"'?Pi:LN,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 Hf(e,t){for(var n=Lt.repeat(" ",t),r=0,o=-1,i="",s,a=e.length;r<a;)o=e.indexOf(`
573
- `,r),o===-1?(s=e.slice(r),r=a):(s=e.slice(r,o+1),r=o+1),s.length&&s!==`
574
- `&&(i+=n),i+=s;return i}function Ec(e,t){return`
575
- `+Lt.repeat(" ",e.indent*t)}function zN(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 ia(e){return e===yN||e===xN}function Di(e){return 32<=e&&e<=126||161<=e&&e<=55295&&e!==8232&&e!==8233||57344<=e&&e<=65533&&e!==qu||65536<=e&&e<=1114111}function Vf(e){return Di(e)&&e!==qu&&e!==vN&&e!==Ri}function Uf(e,t,n){var r=Vf(e),o=r&&!ia(e);return(n?r:r&&e!==nv&&e!==rv&&e!==ov&&e!==iv&&e!==sv)&&e!==bc&&!(t===oa&&!o)||Vf(t)&&!ia(t)&&e===bc||t===oa&&o}function FN(e){return Di(e)&&e!==qu&&!ia(e)&&e!==_N&&e!==NN&&e!==oa&&e!==nv&&e!==rv&&e!==ov&&e!==iv&&e!==sv&&e!==bc&&e!==SN&&e!==CN&&e!==wN&&e!==MN&&e!==TN&&e!==AN&&e!==kN&&e!==bN&&e!==EN&&e!==jN&&e!==IN}function BN(e){return!ia(e)&&e!==oa}function wi(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 av(e){var t=/^\n* /;return t.test(e)}var lv=1,Sc=2,cv=3,uv=4,po=5;function HN(e,t,n,r,o,i,s,a){var l,c=0,u=null,f=!1,p=!1,h=r!==-1,x=-1,m=FN(wi(e,0))&&BN(wi(e,e.length-1));if(t||s)for(l=0;l<e.length;c>=65536?l+=2:l++){if(c=wi(e,l),!Di(c))return po;m=m&&Uf(c,u,a),u=c}else{for(l=0;l<e.length;c>=65536?l+=2:l++){if(c=wi(e,l),c===Ri)f=!0,h&&(p=p||l-x-1>r&&e[x+1]!==" ",x=l);else if(!Di(c))return po;m=m&&Uf(c,u,a),u=c}p=p||h&&l-x-1>r&&e[x+1]!==" "}return!f&&!p?m&&!s&&!o(e)?lv:i===Pi?po:Sc:n>9&&av(e)?po:s?i===Pi?po:Sc:p?uv:cv}function VN(e,t,n,r,o){e.dump=function(){if(t.length===0)return e.quotingType===Pi?'""':"''";if(!e.noCompatMode&&(RN.indexOf(t)!==-1||PN.test(t)))return e.quotingType===Pi?'"'+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 zN(e,c)}switch(HN(t,a,e.indent,s,l,e.quotingType,e.forceQuotes&&!r,o)){case lv:return t;case Sc:return"'"+t.replace(/'/g,"''")+"'";case cv:return"|"+Wf(t,e.indent)+Gf(Hf(t,i));case uv:return">"+Wf(t,e.indent)+Gf(Hf(UN(t,s),i));case po:return'"'+WN(t)+'"';default:throw new Gt("impossible error: invalid scalar style")}}()}function Wf(e,t){var n=av(e)?String(t):"",r=e[e.length-1]===`
576
- `,o=r&&(e[e.length-2]===`
577
- `||e===`
578
- `),i=o?"+":r?"":"-";return n+i+`
579
- `}function Gf(e){return e[e.length-1]===`
580
- `?e.slice(0,-1):e}function UN(e,t){for(var n=/(\n+)([^\n]*)/g,r=function(){var c=e.indexOf(`
581
- `);return c=c!==-1?c:e.length,n.lastIndex=c,Yf(e.slice(0,c),t)}(),o=e[0]===`
582
- `||e[0]===" ",i,s;s=n.exec(e);){var a=s[1],l=s[2];i=l[0]===" ",r+=a+(!o&&!i&&l!==""?`
583
- `:"")+Yf(l,t),o=i}return r}function Yf(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+=`
584
- `+e.slice(o,i),o=i+1),s=a;return l+=`
585
- `,e.length-o>t&&s>o?l+=e.slice(o,s)+`
586
- `+e.slice(s+1):l+=e.slice(o),l.slice(1)}function WN(e){for(var t="",n=0,r,o=0;o<e.length;n>=65536?o+=2:o++)n=wi(e,o),r=Ut[n],!r&&Di(n)?(t+=e[o],n>=65536&&(t+=e[o+1])):t+=r||ON(n);return t}function GN(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)),(Jn(e,t,a,!1,!1)||typeof a>"u"&&Jn(e,t,null,!1,!1))&&(r!==""&&(r+=","+(e.condenseFlow?"":" ")),r+=e.dump);e.tag=o,e.dump="["+r+"]"}function qf(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)),(Jn(e,t+1,l,!0,!0,!1,!0)||typeof l>"u"&&Jn(e,t+1,null,!0,!0,!1,!0))&&((!r||o!=="")&&(o+=Ec(e,t)),e.dump&&Ri===e.dump.charCodeAt(0)?o+="-":o+="- ",o+=e.dump);e.tag=i,e.dump=o||"[]"}function YN(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)),Jn(e,t,l,!1,!1)&&(e.dump.length>1024&&(u+="? "),u+=e.dump+(e.condenseFlow?'"':"")+":"+(e.condenseFlow?"":" "),Jn(e,t,c,!1,!1)&&(u+=e.dump,r+=u));e.tag=o,e.dump="{"+r+"}"}function qN(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 Gt("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)),Jn(e,t+1,c,!0,!0,!0)&&(f=e.tag!==null&&e.tag!=="?"||e.dump&&e.dump.length>1024,f&&(e.dump&&Ri===e.dump.charCodeAt(0)?p+="?":p+="? "),p+=e.dump,f&&(p+=Ec(e,t)),Jn(e,t+1,u,!0,f)&&(e.dump&&Ri===e.dump.charCodeAt(0)?p+=":":p+=": ",p+=e.dump,o+=p));e.tag=i,e.dump=o||"{}"}function Kf(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,ev.call(a.represent)==="[object Function]")r=a.represent(t,l);else if(tv.call(a.represent,l))r=a.represent[l](t,l);else throw new Gt("!<"+a.tag+'> tag resolver accepts not "'+l+'" style');e.dump=r}return!0}return!1}function Jn(e,t,n,r,o,i,s){e.tag=null,e.dump=n,Kf(e,n,!1)||Kf(e,n,!0);var a=ev.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?(qN(e,t,e.dump,o),p&&(e.dump="&ref_"+f+e.dump)):(YN(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?qf(e,t-1,e.dump,o):qf(e,t,e.dump,o),p&&(e.dump="&ref_"+f+e.dump)):(GN(e,t,e.dump),p&&(e.dump="&ref_"+f+" "+e.dump));else if(a==="[object String]")e.tag!=="?"&&VN(e,e.dump,t,i,l);else{if(a==="[object Undefined]")return!1;if(e.skipInvalid)return!1;throw new Gt("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 KN(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 XN(e,t){t=t||{};var n=new $N(t);n.noRefs||KN(e,n);var r=e;return n.replacer&&(r=n.replacer.call({"":r},"",r)),Jn(n,0,r,!0,!0)?n.dump+`
587
- `:""}var ZN=XN,QN={dump:ZN};function Ku(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 JN=Ft,ej=_x,tj=jx,nj=Dx,rj=Ox,oj=Wu,ij=Jx.load,sj=Jx.loadAll,aj=QN.dump,lj=Gt,cj={binary:Bx,float:Px,map:Nx,null:Ix,pairs:Vx,set:Ux,timestamp:zx,bool:Mx,int:Rx,merge:Fx,omap:Hx,seq:Ax,str:Tx},uj=Ku("safeLoad","load"),dj=Ku("safeLoadAll","loadAll"),fj=Ku("safeDump","dump"),pj={Type:JN,Schema:ej,FAILSAFE_SCHEMA:tj,JSON_SCHEMA:nj,CORE_SCHEMA:rj,DEFAULT_SCHEMA:oj,load:ij,loadAll:sj,dump:aj,YAMLException:lj,types:cj,safeLoad:uj,safeLoadAll:dj,safeDump:fj};const hj=({content:e,rendererType:t,setRenderError:n})=>{const[r,o]=g.useState(!1);g.useEffect(()=>{n(null)},[e,n]);const[i,s]=g.useMemo(()=>{try{if(t==="yaml"){const a=pj.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(Je,{onClick:()=>o(!r),title:r?"Show Structured View":"Show Raw Text",children:r?d.jsxs(d.Fragment,{children:[d.jsx(Ug,{})," Structured"]}):d.jsxs(d.Fragment,{children:[d.jsx(Vg,{})," 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(dv,{content:i,setRenderError:n}):d.jsx(Zc,{data:s,maxDepth:4,className:"min-h-16 border-none p-2"})})})]})},dv=({content:e,className:t=""})=>{const{ref:n,handleKeyDown:r}=xx();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})})},fv=({content:e,rendererType:t,mime_type:n,setRenderError:r})=>{switch(t){case"csv":return d.jsx(ET,{content:e,setRenderError:r});case"mermaid":return d.jsx(YT,{content:e,setRenderError:r});case"html":return d.jsx(ST,{content:e,setRenderError:r});case"json":case"yaml":return d.jsx(hj,{content:e,rendererType:t,setRenderError:r});case"image":return d.jsx(kT,{content:e,mime_type:n,setRenderError:r});case"markdown":return d.jsx(CT,{content:e,setRenderError:r});case"audio":return d.jsx(wT,{content:e,mime_type:n,setRenderError:r});default:return d.jsx(dv,{content:e,setRenderError:r})}},gj=["png","jpeg","jpg","gif","webp","svg+xml","bmp","ico"],mj=["mp3","wav","ogg","aac","flac","m4a"];function xj(e){if(!e||typeof e!="string")return[];const t=[],n=new RegExp(`data:image/(${gj.join("|")});base64,([A-Za-z0-9+/=]+)`,"g");let r;for(;(r=n.exec(e))!==null;){const[o,i,s]=r;s&&s.length>10&&t.push({type:"image",content:s,mimeType:`image/${i}`,originalMatch:o})}return t}function vj(e){if(!e||typeof e!="string")return[];const t=[],n=new RegExp(`data:audio/(${mj.join("|")});base64,([A-Za-z0-9+/=]+)`,"g");let r;for(;(r=n.exec(e))!==null;){const[o,i,s]=r;s&&s.length>10&&t.push({type:"audio",content:s,mimeType:`audio/${i}`,originalMatch:o})}return t}function yj(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 wj(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 bj(e){return!e||typeof e!="string"?[]:[...xj(e),...vj(e),...yj(e),...wj(e)]}const Ej=({message:e})=>{var a;const[t,n]=g.useState(null);if(e.isStatusBubble)return null;if(e.isUser)return d.jsx("span",{children:e.text||""});const r=(a=e.text)==null?void 0:a.trim();if(!r)return null;if(e.isError)return d.jsxs("div",{className:"flex items-center",children:[d.jsx(yu,{className:"mr-2 self-start text-[var(--color-error-wMain)]"}),d.jsx(So,{children:r})]});const o=bj(r);if(o.length===0)return d.jsx(So,{children:r});let i=r;const s=[];return o.forEach((l,c)=>{i=i.replace(l.originalMatch,""),s.push(d.jsx("div",{className:"my-2 h-auto w-md max-w-md overflow-hidden",children:d.jsx(fv,{content:l.content,rendererType:l.type,mime_type:l.mimeType,setRenderError:n})},`embedded-${c}`))}),d.jsxs("div",{children:[t&&d.jsx(id,{variant:"error",message:"Error rendering preview"}),d.jsx(So,{children:i}),s]})},pv=({message:e,children:t,className:n})=>d.jsx("div",{className:`mt-1 space-y-1 ${e.isUser?"ml-auto":"mr-auto"} ${n}`,children:t}),Sj=e=>e.uploadedFiles&&e.uploadedFiles.length>0?d.jsx(pv,{message:e,className:"flex flex-wrap justify-end gap-2",children:e.uploadedFiles.map((t,n)=>{var r;return d.jsx(mx,{filename:t.name},`uploaded-${(r=e.metadata)==null?void 0:r.messageId}-${n}`)})}):null,kj=e=>e.files&&e.files.length>0?d.jsx(pv,{message:e,children:e.files.map((t,n)=>{var r;return d.jsx(yT,{fileAttachment:t},`file-${(r=e.metadata)==null?void 0:r.messageId}-${n}`)})}):null,Cj=(e,t,n)=>{var i;const{openSidePanelTab:r,setTaskIdInSidePanel:o}=t;if(e.isStatusBubble)return null;if(e.text){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(lx,{variant:s,children:d.jsxs(cx,{variant:s,children:[d.jsx(Ej,{message:e}),a&&d.jsx("div",{className:"mt-3",children:d.jsx(Zg,{onClick:l})})]})},(i=e.metadata)==null?void 0:i.messageId)}return null},_j=({message:e,isLastWithTaskId:t})=>{const n=Rt();return e?d.jsxs(d.Fragment,{children:[Cj(e,n,t),Sj(e),kj(e)]}):null},Tj=()=>{const e=Qm();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"})]})})},Aj=({artifactInfo:e,isPreview:t=!1,isExpanded:n=!1,onDelete:r,onDownload:o,setIsExpanded:i})=>{const{previewedArtifactAvailableVersions:s,currentPreviewedVersionNumber:a,navigateArtifactVersion:l}=Rt(),c=g.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:Dd(e.last_modified),children:Dd(e.last_modified)})]}),t&&c.length>1&&d.jsx("div",{className:"align-right",children:d.jsxs(F0,{value:a==null?void 0:a.toString(),onValueChange:u=>{l(e.filename,parseInt(u))},children:[d.jsx(H0,{className:"h-[16px] py-0 text-xs shadow-none",children:d.jsx(B0,{placeholder:"Version"})}),d.jsx(V0,{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(Je,{variant:"ghost",size:"sm",onClick:u=>{u.stopPropagation(),u.preventDefault(),i(!n)},tooltip:n?"Collapse Details":"Expand Details",children:d.jsx(bu,{})}),o&&d.jsx(Je,{variant:"ghost",size:"sm",onClick:async u=>{u.stopPropagation(),u.preventDefault(),await o(e)},tooltip:"Download",children:d.jsx(wu,{})}),r&&d.jsx(Je,{variant:"ghost",size:"sm",onClick:u=>{u.preventDefault(),u.stopPropagation(),r(e)},tooltip:"Delete",children:d.jsx(Xg,{})})]})]})},Xf=({artifact:e,isPreview:t})=>{const{openDeleteModal:n,setPreviewArtifact:r}=Rt(),{onDownload:o}=Zm(),[i,s]=g.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],m)=>d.jsxs("div",{className:"text-xs",children:[d.jsxs("span",{className:"font-semibold",children:[h,":"]})," ",u(x,p+1)]},m))}):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:gx(e,"h-4 w-4 flex-shrink-0")}),d.jsxs("div",{className:"min-w-0 flex-grow",children:[d.jsx(Aj,{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: "}),rg(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)})]})]})]})]})})},Nj=()=>{const{isDeleteModalOpen:e,artifactToDelete:t,closeDeleteModal:n,confirmDelete:r}=Rt();return!e||!t?null:d.jsx(Nu,{open:e,onOpenChange:n,children:d.jsxs(ju,{children:[d.jsxs(Iu,{children:[d.jsxs(Mu,{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(Ru,{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(Je,{variant:"outline",onClick:n,children:"Cancel"}),d.jsx(Je,{variant:"default",onClick:()=>r(),children:"Delete"})]})]})})};function Xu(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var Qr=Xu();function hv(e){Qr=e}var ki={exec:()=>null};function ot(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(Yt.caret,"$1"),n=n.replace(o,s),r},getRegex:()=>new RegExp(n,t)};return r}var Yt={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")},jj=/^(?:[ \t]*(?:\n|$))+/,Ij=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,Mj=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,Qi=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,Rj=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,Zu=/(?:[*+-]|\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+|$)/,mv=ot(gv).replace(/bull/g,Zu).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(),Pj=ot(gv).replace(/bull/g,Zu).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(),Qu=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,Dj=/^[^\n]+/,Ju=/(?!\s*\])(?:\\.|[^\[\]\\])+/,Oj=ot(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",Ju).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),Lj=ot(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,Zu).getRegex(),Ga="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",ed=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,$j=ot("^ {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",ed).replace("tag",Ga).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),xv=ot(Qu).replace("hr",Qi).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",Ga).getRegex(),zj=ot(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",xv).getRegex(),td={blockquote:zj,code:Ij,def:Oj,fences:Mj,heading:Rj,hr:Qi,html:$j,lheading:mv,list:Lj,newline:jj,paragraph:xv,table:ki,text:Dj},Zf=ot("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",Qi).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",Ga).getRegex(),Fj={...td,lheading:Pj,table:Zf,paragraph:ot(Qu).replace("hr",Qi).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",Zf).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",Ga).getRegex()},Bj={...td,html:ot(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",ed).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:ki,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:ot(Qu).replace("hr",Qi).replace("heading",` *#{1,6} *[^
588
- ]`).replace("lheading",mv).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},Hj=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,Vj=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,vv=/^( {2,}|\\)\n(?!\s*$)/,Uj=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,Ya=/[\p{P}\p{S}]/u,nd=/[\s\p{P}\p{S}]/u,yv=/[^\s\p{P}\p{S}]/u,Wj=ot(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,nd).getRegex(),wv=/(?!~)[\p{P}\p{S}]/u,Gj=/(?!~)[\s\p{P}\p{S}]/u,Yj=/(?:[^\s\p{P}\p{S}]|~)/u,qj=/\[[^[\]]*?\]\((?:\\.|[^\\\(\)]|\((?:\\.|[^\\\(\)])*\))*\)|`[^`]*?`|<[^<>]*?>/g,bv=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,Kj=ot(bv,"u").replace(/punct/g,Ya).getRegex(),Xj=ot(bv,"u").replace(/punct/g,wv).getRegex(),Ev="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",Zj=ot(Ev,"gu").replace(/notPunctSpace/g,yv).replace(/punctSpace/g,nd).replace(/punct/g,Ya).getRegex(),Qj=ot(Ev,"gu").replace(/notPunctSpace/g,Yj).replace(/punctSpace/g,Gj).replace(/punct/g,wv).getRegex(),Jj=ot("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,yv).replace(/punctSpace/g,nd).replace(/punct/g,Ya).getRegex(),eI=ot(/\\(punct)/,"gu").replace(/punct/g,Ya).getRegex(),tI=ot(/^<(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(),nI=ot(ed).replace("(?:-->|$)","-->").getRegex(),rI=ot("^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",nI).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),sa=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,oI=ot(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",sa).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),Sv=ot(/^!?\[(label)\]\[(ref)\]/).replace("label",sa).replace("ref",Ju).getRegex(),kv=ot(/^!?\[(ref)\](?:\[\])?/).replace("ref",Ju).getRegex(),iI=ot("reflink|nolink(?!\\()","g").replace("reflink",Sv).replace("nolink",kv).getRegex(),rd={_backpedal:ki,anyPunctuation:eI,autolink:tI,blockSkip:qj,br:vv,code:Vj,del:ki,emStrongLDelim:Kj,emStrongRDelimAst:Zj,emStrongRDelimUnd:Jj,escape:Hj,link:oI,nolink:kv,punctuation:Wj,reflink:Sv,reflinkSearch:iI,tag:rI,text:Uj,url:ki},sI={...rd,link:ot(/^!?\[(label)\]\((.*?)\)/).replace("label",sa).getRegex(),reflink:ot(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",sa).getRegex()},Cc={...rd,emStrongRDelimAst:Qj,emStrongLDelim:Xj,url:ot(/^((?: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.!#$%&'*+\/=?_`{\|}~-]+@)))/},aI={...Cc,br:ot(vv).replace("{2,}","*").getRegex(),text:ot(Cc.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},vs={normal:td,gfm:Fj,pedantic:Bj},ri={normal:rd,gfm:Cc,breaks:aI,pedantic:sI},lI={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},Qf=e=>lI[e];function Cn(e,t){if(t){if(Yt.escapeTest.test(e))return e.replace(Yt.escapeReplace,Qf)}else if(Yt.escapeTestNoEncode.test(e))return e.replace(Yt.escapeReplaceNoEncode,Qf);return e}function Jf(e){try{e=encodeURI(e).replace(Yt.percentDecode,"%")}catch{return null}return e}function ep(e,t){var i;const n=e.replace(Yt.findPipe,(s,a,l)=>{let c=!1,u=a;for(;--u>=0&&l[u]==="\\";)c=!c;return c?"|":" |"}),r=n.split(Yt.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(Yt.slashPipe,"|");return r}function oi(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 cI(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 tp(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 uI(e,t,n){const r=e.match(n.other.indentCodeCompensation);if(r===null)return t;const o=r[1];return t.split(`
589
- `).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(`
590
- `)}var aa=class{constructor(e){at(this,"options");at(this,"rules");at(this,"lexer");this.options=e||Qr}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:oi(n,`
591
- `)}}}fences(e){const t=this.rules.block.fences.exec(e);if(t){const n=t[0],r=uI(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=oi(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:oi(t[0],`
592
- `)}}blockquote(e){const t=this.rules.block.blockquote.exec(e);if(t){let n=oi(t[0],`
593
- `).split(`
594
- `),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(`
595
- `),u=c.replace(this.rules.other.blockquoteSetextReplace,`
596
- $1`).replace(this.rules.other.blockquoteSetextReplace2,"");r=r?`${r}
597
- ${c}`:c,o=o?`${o}
598
- ${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+`
599
- `+n.join(`
600
- `),m=this.blockquote(x);i[i.length-1]=m,r=r.substring(0,r.length-h.raw.length)+m.raw,o=o.substring(0,o.length-h.text.length)+m.text;break}else if((p==null?void 0:p.type)==="list"){const h=p,x=h.raw+`
601
- `+n.join(`
602
- `),m=this.list(x);i[i.length-1]=m,r=r.substring(0,r.length-p.raw.length)+m.raw,o=o.substring(0,o.length-h.raw.length)+m.raw,n=x.substring(i.at(-1).raw.length).split(`
603
- `);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(`
604
- `,1)[0].replace(this.rules.other.listReplaceTabs,y=>" ".repeat(3*y.length)),p=e.split(`
605
- `,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+`
606
- `,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(`
607
- `,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+=`
608
- `+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+=`
609
- `+p}!h&&!p.trim()&&(h=!0),c+=k+`
610
- `,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 m=null,v;this.options.gfm&&(m=this.rules.other.listIsTask.exec(u),m&&(v=m[0]!=="[ ] ",u=u.replace(this.rules.other.listReplaceTask,""))),o.items.push({type:"list_item",raw:c,task:!!m,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=ep(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(`
611
- `):[],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(ep(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)===`
612
- `?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=oi(n.slice(0,-1),"\\");if((n.length-i.length)%2===0)return}else{const i=cI(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)),tp(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 tp(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}}}},Yn=class _c{constructor(t){at(this,"tokens");at(this,"options");at(this,"state");at(this,"tokenizer");at(this,"inlineQueue");this.tokens=[],this.tokens.links=Object.create(null),this.options=t||Qr,this.options.tokenizer=this.options.tokenizer||new aa,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:Yt,block:vs.normal,inline:ri.normal};this.options.pedantic?(n.block=vs.pedantic,n.inline=ri.pedantic):this.options.gfm&&(n.block=vs.gfm,this.options.breaks?n.inline=ri.breaks:n.inline=ri.gfm),this.tokenizer.rules=n}static get rules(){return{block:vs,inline:ri}}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(Yt.carriageReturn,`
613
- `),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(Yt.tabCharGlobal," ").replace(Yt.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+=`
614
- `: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+=`
615
- `+a.raw,c.text+=`
616
- `+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+=`
617
- `+a.raw,c.text+=`
618
- `+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+=`
619
- `+a.raw,c.text+=`
620
- `+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+=`
621
- `+a.raw,c.text+=`
622
- `+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(m=>{x=m.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}},la=class{constructor(e){at(this,"options");at(this,"parser");this.options=e||Qr}space(e){return""}code({text:e,lang:t,escaped:n}){var i;const r=(i=(t||"").match(Yt.notSpaceStart))==null?void 0:i[0],o=e.replace(Yt.endingNewline,"")+`
623
- `;return r?'<pre><code class="language-'+Cn(r)+'">'+(n?o:Cn(o,!0))+`</code></pre>
624
- `:"<pre><code>"+(n?o:Cn(o,!0))+`</code></pre>
625
- `}blockquote({tokens:e}){return`<blockquote>
626
- ${this.parser.parse(e)}</blockquote>
627
- `}html({text:e}){return e}heading({tokens:e,depth:t}){return`<h${t}>${this.parser.parseInline(e)}</h${t}>
628
- `}hr(e){return`<hr>
629
- `}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+`>
630
- `+r+"</"+o+`>
631
- `}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+" "+Cn(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>
632
- `}checkbox({checked:e}){return"<input "+(e?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph({tokens:e}){return`<p>${this.parser.parseInline(e)}</p>
633
- `}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>
634
- <thead>
635
- `+t+`</thead>
636
- `+r+`</table>
637
- `}tablerow({text:e}){return`<tr>
638
- ${e}</tr>
639
- `}tablecell(e){const t=this.parser.parseInline(e.tokens),n=e.header?"th":"td";return(e.align?`<${n} align="${e.align}">`:`<${n}>`)+t+`</${n}>
640
- `}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>${Cn(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=Jf(e);if(o===null)return r;e=o;let i='<a href="'+e+'"';return t&&(i+=' title="'+Cn(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=Jf(e);if(o===null)return Cn(n);e=o;let i=`<img src="${e}" alt="${n}"`;return t&&(i+=` title="${Cn(t)}"`),i+=">",i}text(e){return"tokens"in e&&e.tokens?this.parser.parseInline(e.tokens):"escaped"in e&&e.escaped?e.text:Cn(e.text)}},od=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""}},qn=class Tc{constructor(t){at(this,"options");at(this,"renderer");at(this,"textRenderer");this.options=t||Qr,this.options.renderer=this.options.renderer||new la,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new od}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+=`
641
- `+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,zs=(ec=class{constructor(e){at(this,"options");at(this,"block");this.options=e||Qr}preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}provideLexer(){return this.block?Yn.lex:Yn.lexInline}provideParser(){return this.block?qn.parse:qn.parseInline}},at(ec,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens"])),ec),dI=class{constructor(...e){at(this,"defaults",Xu());at(this,"options",this.setOptions);at(this,"parse",this.parseMarkdown(!0));at(this,"parseInline",this.parseMarkdown(!1));at(this,"Parser",qn);at(this,"Renderer",la);at(this,"TextRenderer",od);at(this,"Lexer",Yn);at(this,"Tokenizer",aa);at(this,"Hooks",zs);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 la(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 aa(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 zs;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];zs.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 Yn.lex(e,t??this.defaults)}parser(e,t){return qn.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?Yn.lex:Yn.lexInline,l=i.hooks?i.hooks.provideParser():e?qn.parse:qn.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+=`
642
- Please report this to https://github.com/markedjs/marked.`,e){const r="<p>An error occurred:</p><pre>"+Cn(n.message+"",!0)+"</pre>";return t?Promise.resolve(r):r}if(t)return Promise.reject(n);throw n}}},Ur=new dI;function it(e,t){return Ur.parse(e,t)}it.options=it.setOptions=function(e){return Ur.setOptions(e),it.defaults=Ur.defaults,hv(it.defaults),it};it.getDefaults=Xu;it.defaults=Qr;it.use=function(...e){return Ur.use(...e),it.defaults=Ur.defaults,hv(it.defaults),it};it.walkTokens=function(e,t){return Ur.walkTokens(e,t)};it.parseInline=Ur.parseInline;it.Parser=qn;it.parser=qn.parse;it.Renderer=la;it.TextRenderer=od;it.Lexer=Yn;it.lexer=Yn.lex;it.Tokenizer=aa;it.Hooks=zs;it.parse=it;it.options;it.setOptions;it.use;it.walkTokens;it.parseInline;qn.parse;Yn.lex;var ii={},ao={},ys={},Cr={},_r={},Ll={},np;function Cv(){return np||(np=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}(Ll)),Ll}var Be={},rp;function op(){if(rp)return Be;rp=1;var e=Be&&Be.__extends||function(){var E=function(k,C){return E=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(T,P){T.__proto__=P}||function(T,P){for(var B in P)Object.prototype.hasOwnProperty.call(P,B)&&(T[B]=P[B])},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 T(){this.constructor=k}k.prototype=C===null?Object.create(C):(T.prototype=C.prototype,new T)}}(),t=Be&&Be.__assign||function(){return t=Object.assign||function(E){for(var k,C=1,T=arguments.length;C<T;C++){k=arguments[C];for(var P in k)Object.prototype.hasOwnProperty.call(k,P)&&(E[P]=k[P])}return E},t.apply(this,arguments)};Object.defineProperty(Be,"__esModule",{value:!0}),Be.cloneNode=Be.hasChildren=Be.isDocument=Be.isDirective=Be.isComment=Be.isText=Be.isCDATA=Be.isTag=Be.Element=Be.Document=Be.CDATA=Be.NodeWithChildren=Be.ProcessingInstruction=Be.Comment=Be.Text=Be.DataNode=Be.Node=void 0;var n=Cv(),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}();Be.Node=r;var o=function(E){e(k,E);function k(C){var T=E.call(this)||this;return T.data=C,T}return Object.defineProperty(k.prototype,"nodeValue",{get:function(){return this.data},set:function(C){this.data=C},enumerable:!1,configurable:!0}),k}(r);Be.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);Be.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);Be.Comment=s;var a=function(E){e(k,E);function k(C,T){var P=E.call(this,T)||this;return P.name=C,P.type=n.ElementType.Directive,P}return Object.defineProperty(k.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),k}(o);Be.ProcessingInstruction=a;var l=function(E){e(k,E);function k(C){var T=E.call(this)||this;return T.children=C,T}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);Be.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);Be.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);Be.Document=u;var f=function(E){e(k,E);function k(C,T,P,B){P===void 0&&(P=[]),B===void 0&&(B=C==="script"?n.ElementType.Script:C==="style"?n.ElementType.Style:n.ElementType.Tag);var O=E.call(this,P)||this;return O.name=C,O.attribs=T,O.type=B,O}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(T){var P,B;return{name:T,value:C.attribs[T],namespace:(P=C["x-attribsNamespace"])===null||P===void 0?void 0:P[T],prefix:(B=C["x-attribsPrefix"])===null||B===void 0?void 0:B[T]}})},enumerable:!1,configurable:!0}),k}(l);Be.Element=f;function p(E){return(0,n.isTag)(E)}Be.isTag=p;function h(E){return E.type===n.ElementType.CDATA}Be.isCDATA=h;function x(E){return E.type===n.ElementType.Text}Be.isText=x;function m(E){return E.type===n.ElementType.Comment}Be.isComment=m;function v(E){return E.type===n.ElementType.Directive}Be.isDirective=v;function y(E){return E.type===n.ElementType.Root}Be.isDocument=y;function b(E){return Object.prototype.hasOwnProperty.call(E,"children")}Be.hasChildren=b;function w(E,k){k===void 0&&(k=!1);var C;if(x(E))C=new i(E.data);else if(m(E))C=new s(E.data);else if(p(E)){var T=k?S(E.children):[],P=new f(E.name,t({},E.attribs),T);T.forEach(function(L){return L.parent=P}),E.namespace!=null&&(P.namespace=E.namespace),E["x-attribsNamespace"]&&(P["x-attribsNamespace"]=t({},E["x-attribsNamespace"])),E["x-attribsPrefix"]&&(P["x-attribsPrefix"]=t({},E["x-attribsPrefix"])),C=P}else if(h(E)){var T=k?S(E.children):[],B=new c(T);T.forEach(function(_){return _.parent=B}),C=B}else if(y(E)){var T=k?S(E.children):[],O=new u(T);T.forEach(function(_){return _.parent=O}),E["x-mode"]&&(O["x-mode"]=E["x-mode"]),C=O}else if(v(E)){var z=new a(E.name,E.data);E["x-name"]!=null&&(z["x-name"]=E["x-name"],z["x-publicId"]=E["x-publicId"],z["x-systemId"]=E["x-systemId"]),C=z}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}Be.cloneNode=w;function S(E){for(var k=E.map(function(T){return w(T,!0)}),C=1;C<k.length;C++)k[C].prev=k[C-1],k[C-1].next=k[C];return k}return Be}var ip;function _v(){return ip||(ip=1,function(e){var t=_r&&_r.__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=_r&&_r.__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=Cv(),o=op();n(op(),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}(_r)),_r}var $l={},sp;function fI(){return sp||(sp=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")}($l)),$l}var ap;function Tv(){if(ap)return Cr;ap=1,Object.defineProperty(Cr,"__esModule",{value:!0}),Cr.formatAttributes=r,Cr.escapeSpecialCharacters=i,Cr.revertEscapedCharacters=s,Cr.formatDOM=a;var e=_v(),t=fI();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 m=l[h];switch(m.nodeType){case 1:{var v=o(m.nodeName);p=new e.Element(v,r(m.attributes)),p.children=a(v==="template"?m.content.childNodes:m.childNodes,p);break}case 3:p=new e.Text(s(m.nodeValue));break;case 8:p=new e.Comment(m.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 Cr}var lp;function pI(){if(lp)return ys;lp=1,Object.defineProperty(ys,"__esModule",{value:!0}),ys.default=m;var e=Tv(),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 m(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 ys}var cp;function hI(){if(cp)return ao;cp=1;var e=ao&&ao.__importDefault||function(i){return i&&i.__esModule?i:{default:i}};Object.defineProperty(ao,"__esModule",{value:!0}),ao.default=o;var t=e(pI()),n=Tv(),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 ao}var ws={},un={},si={},up;function gI(){if(up)return si;up=1;var e=0;si.SAME=e;var t=1;return si.CAMELCASE=t,si.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},si}var dp;function mI(){if(dp)return un;dp=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,T,P,B,O){this.acceptsBooleans=k===n||k===r||k===o,this.attributeName=T,this.attributeNamespace=P,this.mustUseProperty=C,this.propertyName=E,this.type=k,this.sanitizeURL=B,this.removeEmptyString=O}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:m,possibleStandardNames:v}=gI(),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===m?E[k]=k:C===x?E[k.toLowerCase()]=k:E[k]=C,E},{});return un.BOOLEAN=r,un.BOOLEANISH_STRING=n,un.NUMERIC=i,un.OVERLOADED_BOOLEAN=o,un.POSITIVE_NUMERIC=s,un.RESERVED=e,un.STRING=t,un.getPropertyInfo=a,un.isCustomAttribute=w,un.possibleStandardNames=S,un}var ai={},lo={},zl,fp;function xI(){if(fp)return zl;fp=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=`
643
- `,c="/",u="*",f="",p="comment",h="declaration";zl=function(m,v){if(typeof m!="string")throw new TypeError("First argument must be a string");if(!m)return[];v=v||{};var y=1,b=1;function w(L){var _=L.match(t);_&&(y+=_.length);var I=L.lastIndexOf(l);b=~I?L.length-I:b+L.length}function S(){var L={line:y,column:b};return function(_){return _.position=new E(L),T(),_}}function E(L){this.start=L,this.end={line:y,column:b},this.source=v.source}E.prototype.content=m;function k(L){var _=new Error(v.source+":"+y+":"+b+": "+L);if(_.reason=L,_.filename=v.source,_.line=y,_.column=b,_.source=m,!v.silent)throw _}function C(L){var _=L.exec(m);if(_){var I=_[0];return w(I),m=m.slice(I.length),_}}function T(){C(n)}function P(L){var _;for(L=L||[];_=B();)_!==!1&&L.push(_);return L}function B(){var L=S();if(!(c!=m.charAt(0)||u!=m.charAt(1))){for(var _=2;f!=m.charAt(_)&&(u!=m.charAt(_)||c!=m.charAt(_+1));)++_;if(_+=2,f===m.charAt(_-1))return k("End of comment missing");var I=m.slice(2,_-2);return b+=2,w(I),m=m.slice(_),b+=2,L({type:p,comment:I})}}function O(){var L=S(),_=C(r);if(_){if(B(),!C(o))return k("property missing ':'");var I=C(i),M=L({type:h,property:x(_[0].replace(e,f)),value:I?x(I[0].replace(e,f)):f});return C(s),M}}function z(){var L=[];P(L);for(var _;_=O();)_!==!1&&(L.push(_),P(L));return L}return T(),z()};function x(m){return m?m.replace(a,f):f}return zl}var pp;function vI(){if(pp)return lo;pp=1;var e=lo&&lo.__importDefault||function(r){return r&&r.__esModule?r:{default:r}};Object.defineProperty(lo,"__esModule",{value:!0}),lo.default=n;var t=e(xI());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 lo}var li={},hp;function yI(){if(hp)return li;hp=1,Object.defineProperty(li,"__esModule",{value:!0}),li.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 li.camelCase=l,li}var ci,gp;function wI(){if(gp)return ci;gp=1;var e=ci&&ci.__importDefault||function(o){return o&&o.__esModule?o:{default:o}},t=e(vI()),n=yI();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,ci=r,ci}var mp;function Av(){return mp||(mp=1,function(e){var t=ai&&ai.__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(wI()),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}(ai)),ai}var xp;function Nv(){if(xp)return ws;xp=1,Object.defineProperty(ws,"__esModule",{value:!0}),ws.default=i;var e=mI(),t=Av(),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 m=(0,e.getPropertyInfo)(x);switch(n.includes(x)&&r.includes(l)&&!u&&(x=s("default"+h)),c[x]=p,m&&m.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 ws}var co={},vp;function bI(){if(vp)return co;vp=1;var e=co&&co.__importDefault||function(a){return a&&a.__esModule?a:{default:a}};Object.defineProperty(co,"__esModule",{value:!0}),co.default=i;var t=ka(),n=e(Nv()),r=Av(),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,m=p.isValidElement,v=a.length,y=0;y<v;y++){var b=a[y];if(u){var w=l.replace(b,y);if(m(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 co}var yp;function EI(){return yp||(yp=1,function(e){var t=ii&&ii.__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(hI());e.htmlToDOM=n.default;var r=t(Nv());e.attributesToProps=r.default;var o=t(bI());e.domToReact=o.default;var i=_v();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):[]}}(ii)),ii}var jv=EI();const wp=Qc(jv),SI=wp.default||wp,kI={replace:e=>{e instanceof jv.Element&&e.attribs&&e.name==="a"&&(e.attribs.target="_blank",e.attribs.rel="noopener noreferrer")}};function So({children:e,className:t}){if(!e)return null;try{const n=it.parse(e,{gfm:!0}),r=Sx.sanitize(n,{USE_PROFILES:{html:!0}}),o=SI(r,kI);return d.jsx("div",{className:Od(t),children:o})}catch{return d.jsx("div",{className:Od(t),children:e})}}const CI=xr("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"}}),_I={error:yu,warning:mk,info:bu,success:bS};function id({className:e,variant:t="error",message:n,dismissible:r=!1,onDismiss:o,...i}){const s=_I[t||"error"];return d.jsxs("div",{className:Ye(CI({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(Je,{variant:"ghost",onClick:o,"aria-label":"Dismiss",children:d.jsx(Su,{className:"size-3"})})]})}const TI=({artifact:e,message:t})=>{const{onDownload:n}=Zm();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(Je,{onClick:()=>n(e),children:[d.jsx(wu,{className:"h-4 w-4"}),"Download"]})]})},Fl=({children:e})=>d.jsx("div",{className:"text-muted-foreground flex h-[50vh] items-center justify-center",children:e||"No preview available"}),AI=({artifact:e})=>{const{openArtifactForPreview:t,previewFileContent:n}=Rt(),r=g.useMemo(()=>vT(e),[e]),[o,i]=g.useState(!1),[s,a]=g.useState(null);if(g.useEffect(()=>{i(!1),a(null)},[e]),g.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(id,{variant:"error",message:"Error rendering preview"}),d.jsx(Fl,{children:"No preview available"})]});if(o)return d.jsx(Fl,{children:d.jsx(Eu,{className:"text-muted-foreground h-6 w-6 animate-spin"})});if(!r.canPreview)return d.jsx(TI,{artifact:e,message:r.reason??""});const l=Ua(e.filename,e.mime_type),c=mT(n);return!l||!c?d.jsx(Fl,{children:"No preview available"}):d.jsx(fv,{content:c,rendererType:l,mime_type:n==null?void 0:n.mime_type,setRenderError:a})},jn={NameAsc:"name_asc",NameDesc:"name_desc",DateAsc:"date_asc",DateDesc:"date_desc"},NI=e=>{switch(e){case jn.NameAsc:return"Name (A-Z)";case jn.NameDesc:return"Name (Z-A)";case jn.DateAsc:return"Date (oldest first)";case jn.DateDesc:return"Date (newest first)"}},jI=({currentSortOption:e,onSortChange:t,children:n})=>{const r=Object.values(jn).map(o=>({id:o,label:NI(o),onClick:()=>t(o),icon:e===o?d.jsx(Bg,{}):void 0,iconPosition:"right"}));return d.jsxs(d0,{children:[d.jsx(f0,{asChild:!0,children:n}),d.jsx(p0,{align:"end",side:"bottom",className:"w-auto",sideOffset:0,children:d.jsx(Fu,{actions:r})})]})},II=({children:e})=>{const{artifactsRefetch:t,setIsBatchDeleteModalOpen:n}=Rt(),r=[{id:"refreshAll",label:"Refresh",onClick:()=>{t()},icon:d.jsx(Yg,{}),iconPosition:"left"},{id:"deleteAll",label:"Delete All",onClick:()=>{n(!0)},icon:d.jsx(Xg,{}),iconPosition:"left",divider:!0}];return d.jsxs(d0,{children:[d.jsx(f0,{asChild:!0,children:e}),d.jsx(p0,{align:"end",side:"bottom",className:"w-auto",sideOffset:0,children:d.jsx(Fu,{actions:r})})]})},MI=()=>{const{artifacts:e,isBatchDeleteModalOpen:t,setIsBatchDeleteModalOpen:n,confirmBatchDeleteArtifacts:r,setSelectedArtifactFilenames:o}=Rt();return g.useEffect(()=>{t&&o(new Set(e.map(i=>i.filename)))},[e,t,o]),t?d.jsx(Nu,{open:t,onOpenChange:n,children:d.jsxs(ju,{children:[d.jsxs(Iu,{children:[d.jsx(Mu,{children:"Delete All?"}),d.jsxs(Ru,{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(Je,{variant:"outline",onClick:()=>n(!1),children:"Cancel"}),d.jsx(Je,{variant:"default",onClick:()=>r(),children:"Delete"})]})]})}):null},RI={[jn.NameAsc]:(e,t)=>e.filename.localeCompare(t.filename),[jn.NameDesc]:(e,t)=>t.filename.localeCompare(e.filename),[jn.DateAsc]:(e,t)=>e.last_modified>t.last_modified?1:-1,[jn.DateDesc]:(e,t)=>e.last_modified<t.last_modified?1:-1},PI=()=>{const{artifacts:e,artifactsLoading:t,previewArtifact:n,setPreviewArtifact:r}=Rt(),[o,i]=g.useState(jn.DateDesc),s=g.useMemo(()=>t?[]:e?[...e].sort(RI[o]):[],[e,t,o]),a=g.useMemo(()=>n?d.jsxs("div",{className:"flex items-center gap-2 border-b p-2",children:[d.jsx(Je,{variant:"ghost",onClick:()=>r(null),children:d.jsx(lS,{})}),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(jI,{currentSortOption:o,onSortChange:i,children:d.jsxs(Je,{variant:"ghost",title:"Sort By",children:[d.jsx(zg,{className:"h-5 w-5"}),d.jsx("div",{children:"Sort By"})]})},"sort-popover"),d.jsx(II,{children:d.jsx(Je,{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(Xf,{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(Eu,{className:"size-6 animate-spin"}),!t&&d.jsxs(d.Fragment,{children:[d.jsx(Xs,{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(Xf,{artifact:n,isPreview:!0},n.filename),d.jsx("div",{className:"flex-1 min-h-0 min-w-0 overflow-y-auto",children:d.jsx(AI,{artifact:n})})]})]}),d.jsx(Nj,{}),d.jsx(MI,{})]})},DI=({onCollapsedToggle:e,isSidePanelCollapsed:t,setIsSidePanelCollapsed:n,isSidePanelTransitioning:r})=>{const{activeSidePanelTab:o,setActiveSidePanelTab:i,setPreviewArtifact:s,taskIdInSidePanel:a}=Rt(),{isReconnecting:l,isTaskMonitorConnecting:c,isTaskMonitorConnected:u,monitoredTasks:f,connectTaskMonitorStream:p}=$u(),[h,x]=g.useState(null);g.useEffect(()=>{if(a&&f[a]){const w=f[a],S=I5(w.events||[],f,w);x(S)}else x(null)},[a,f]);const m=()=>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:ik,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(Je,{variant:"ghost",size:"sm",onClick:v,className:"h-10 w-10 p-0",tooltip:"Expand Panel",children:d.jsx(ef,{className:"size-5"})}),d.jsx("div",{className:"bg-border my-4 h-px w-8"}),d.jsx(Je,{variant:"ghost",size:"sm",onClick:()=>b("files"),className:"mb-2 h-10 w-10 p-0",tooltip:"Files",children:d.jsx(Xs,{className:"size-5"})}),d.jsx(Je,{variant:"ghost",size:"sm",onClick:()=>b("workflow"),className:"h-10 w-10 p-0",tooltip:"Workflow",children:d.jsx(Ps,{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(B2,{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(Je,{variant:"ghost",onClick:v,className:"p-1",tooltip:"Collapse Panel",children:d.jsx(ef,{className:"size-5"})}),d.jsxs(H2,{className:"grid w-full grid-cols-2 bg-transparent p-0",children:[d.jsxs(kf,{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(Xs,{className:"mr-2 h-4 w-4"}),"Files"]}),d.jsxs(kf,{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(Ps,{className:"mr-2 h-4 w-4"}),"Workflow"]})]})]}),d.jsxs("div",{className:"min-h-0 flex-1",children:[d.jsx(Cf,{value:"files",className:"m-0 h-full",children:d.jsx("div",{className:"h-full",children:d.jsx(PI,{})})}),d.jsx(Cf,{value:"workflow",className:"m-0 h-full",children:d.jsx("div",{className:"h-full",children:(()=>{const w=m();return!w&&h?d.jsxs("div",{className:"flex h-full flex-col",children:[d.jsx($I,{task:h}),d.jsx(N5,{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(Ps,{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(Je,{onClick:w.buttonAction,children:[w.buttonIcon&&(()=>{const S=w.buttonIcon;return d.jsx(S,{className:"h-4 w-4"})})(),w.buttonText]})})]})})})()})})]})]})})})},Iv=({statusText:e,onViewWorkflow:t})=>d.jsxs("div",{className:"flex h-8 items-center space-x-3 py-1",children:[t?d.jsx(Zg,{onClick:t}):d.jsx(K2,{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}=Rt();return d.jsx(Nu,{open:e,onOpenChange:t,children:d.jsxs(ju,{children:[d.jsxs(Iu,{children:[d.jsx(Mu,{className:"flex flex-row gap-1 max-w-[400px]",children:"New Chat Session?"}),d.jsx(Ru,{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(Je,{variant:"outline",onClick:t,children:"Cancel"}),d.jsx(Je,{variant:"default",onClick:()=>{n(),t()},children:"Start New Chat"})]})]})})},OI=({onToggle:e})=>{const[t,n]=g.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(Je,{variant:"ghost",onClick:e,className:"p-2",tooltip:"Collapse Sessions Panel",children:d.jsx(Wg,{className:"size-5"})}),d.jsxs(Je,{variant:"ghost",onClick:()=>n(!0),tooltip:"Start New Chat Session",children:[d.jsx(qg,{className:"size-5"}),"New chat"]})]}),d.jsx("div",{className:"mt-1 min-h-0 flex-1",children:d.jsx(Tj,{})}),d.jsx(Mv,{isOpen:t,onClose:()=>n(!1)})]})},ui=(e,t)=>d.jsx(fx,{type:t,className:"rounded-full border-none",children:d.jsx("span",{className:"text-xs font-semibold",title:e,children:e})}),LI=(e,t)=>{switch(e.status){case"submitted":case"working":return d.jsx("div",{title:(t==null?void 0:t.text)||e.status,children:d.jsx(Iv,{statusText:(t==null?void 0:t.text)||e.status})});case"input-required":return ui("Input Required","info");case"completed":return ui("Completed","success");case"canceled":return ui("Canceled","info");case"failed":return ui("Failed","error");default:return ui("Unknown","info")}},$I=({task:e})=>{const{messages:t}=Rt(),n=g.useMemo(()=>{const r=t.find(o=>o.isStatusBubble);return e?LI(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 Pt(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=Pt(e[n]))!==""&&(t+=(t&&" ")+r);else for(let n in e)e[n]&&(t+=(t&&" ")+n);return t}var zI={value:()=>{}};function qa(){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 Fs(n)}function Fs(e){this._=e}function FI(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}})}Fs.prototype=qa.prototype={constructor:Fs,on:function(e,t){var n=this._,r=FI(e+"",n),o,i=-1,s=r.length;if(arguments.length<2){for(;++i<s;)if((o=(e=r[i]).type)&&(o=BI(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]=bp(n[o],e.name,t);else if(t==null)for(o in n)n[o]=bp(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 Fs(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 BI(e,t){for(var n=0,r=e.length,o;n<r;++n)if((o=e[n]).name===t)return o.value}function bp(e,t,n){for(var r=0,o=e.length;r<o;++r)if(e[r].name===t){e[r]=zI,e=e.slice(0,r).concat(e.slice(r+1));break}return n!=null&&e.push({name:t,value:n}),e}var Ac="http://www.w3.org/1999/xhtml";const Ep={svg:"http://www.w3.org/2000/svg",xhtml:Ac,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Ka(e){var t=e+="",n=t.indexOf(":");return n>=0&&(t=e.slice(0,n))!=="xmlns"&&(e=e.slice(n+1)),Ep.hasOwnProperty(t)?{space:Ep[t],local:e}:e}function HI(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===Ac&&t.documentElement.namespaceURI===Ac?t.createElement(e):t.createElementNS(n,e)}}function VI(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function Rv(e){var t=Ka(e);return(t.local?VI:HI)(t)}function UI(){}function sd(e){return e==null?UI:function(){return this.querySelector(e)}}function WI(e){typeof e!="function"&&(e=sd(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 ln(r,this._parents)}function GI(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function YI(){return[]}function Pv(e){return e==null?YI:function(){return this.querySelectorAll(e)}}function qI(e){return function(){return GI(e.apply(this,arguments))}}function KI(e){typeof e=="function"?e=qI(e):e=Pv(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 ln(r,o)}function Dv(e){return function(){return this.matches(e)}}function Ov(e){return function(t){return t.matches(e)}}var XI=Array.prototype.find;function ZI(e){return function(){return XI.call(this.children,e)}}function QI(){return this.firstElementChild}function JI(e){return this.select(e==null?QI:ZI(typeof e=="function"?e:Ov(e)))}var eM=Array.prototype.filter;function tM(){return Array.from(this.children)}function nM(e){return function(){return eM.call(this.children,e)}}function rM(e){return this.selectAll(e==null?tM:nM(typeof e=="function"?e:Ov(e)))}function oM(e){typeof e!="function"&&(e=Dv(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 ln(r,this._parents)}function Lv(e){return new Array(e.length)}function iM(){return new ln(this._enter||this._groups.map(Lv),this._parents)}function ca(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}ca.prototype={constructor:ca,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 sM(e){return function(){return e}}function aM(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 ca(e,i[s]);for(;s<l;++s)(a=t[s])&&(o[s]=a)}function lM(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 ca(e,i[a]);for(a=0;a<u;++a)(l=t[a])&&c.get(p[a])===l&&(o[a]=l)}function cM(e){return e.__data__}function uM(e,t){if(!arguments.length)return Array.from(this,cM);var n=t?lM:aM,r=this._parents,o=this._groups;typeof e!="function"&&(e=sM(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=dM(e.call(u,u&&u.__data__,c,r)),x=h.length,m=a[c]=new Array(x),v=s[c]=new Array(x),y=l[c]=new Array(p);n(u,f,m,v,y,h,t);for(var b=0,w=0,S,E;b<x;++b)if(S=m[b]){for(b>=w&&(w=b+1);!(E=v[w])&&++w<x;);S._next=E||null}}return s=new ln(s,r),s._enter=a,s._exit=l,s}function dM(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function fM(){return new ln(this._exit||this._groups.map(Lv),this._parents)}function pM(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 hM(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 ln(a,this._parents)}function gM(){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 mM(e){e||(e=xM);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 ln(o,this._parents).order()}function xM(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function vM(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function yM(){return Array.from(this)}function wM(){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 bM(){let e=0;for(const t of this)++e;return e}function EM(){return!this.node()}function SM(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 kM(e){return function(){this.removeAttribute(e)}}function CM(e){return function(){this.removeAttributeNS(e.space,e.local)}}function _M(e,t){return function(){this.setAttribute(e,t)}}function TM(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function AM(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttribute(e):this.setAttribute(e,n)}}function NM(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 jM(e,t){var n=Ka(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?CM:kM:typeof t=="function"?n.local?NM:AM:n.local?TM:_M)(n,t))}function $v(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function IM(e){return function(){this.style.removeProperty(e)}}function MM(e,t,n){return function(){this.style.setProperty(e,t,n)}}function RM(e,t,n){return function(){var r=t.apply(this,arguments);r==null?this.style.removeProperty(e):this.style.setProperty(e,r,n)}}function PM(e,t,n){return arguments.length>1?this.each((t==null?IM:typeof t=="function"?RM:MM)(e,t,n??"")):jo(this.node(),e)}function jo(e,t){return e.style.getPropertyValue(t)||$v(e).getComputedStyle(e,null).getPropertyValue(t)}function DM(e){return function(){delete this[e]}}function OM(e,t){return function(){this[e]=t}}function LM(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function $M(e,t){return arguments.length>1?this.each((t==null?DM:typeof t=="function"?LM:OM)(e,t)):this.node()[e]}function zv(e){return e.trim().split(/^|\s+/)}function ad(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=ad(e),r=-1,o=t.length;++r<o;)n.add(t[r])}function Hv(e,t){for(var n=ad(e),r=-1,o=t.length;++r<o;)n.remove(t[r])}function zM(e){return function(){Bv(this,e)}}function FM(e){return function(){Hv(this,e)}}function BM(e,t){return function(){(t.apply(this,arguments)?Bv:Hv)(this,e)}}function HM(e,t){var n=zv(e+"");if(arguments.length<2){for(var r=ad(this.node()),o=-1,i=n.length;++o<i;)if(!r.contains(n[o]))return!1;return!0}return this.each((typeof t=="function"?BM:t?zM:FM)(n,t))}function VM(){this.textContent=""}function UM(e){return function(){this.textContent=e}}function WM(e){return function(){var t=e.apply(this,arguments);this.textContent=t??""}}function GM(e){return arguments.length?this.each(e==null?VM:(typeof e=="function"?WM:UM)(e)):this.node().textContent}function YM(){this.innerHTML=""}function qM(e){return function(){this.innerHTML=e}}function KM(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??""}}function XM(e){return arguments.length?this.each(e==null?YM:(typeof e=="function"?KM:qM)(e)):this.node().innerHTML}function ZM(){this.nextSibling&&this.parentNode.appendChild(this)}function QM(){return this.each(ZM)}function JM(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function eR(){return this.each(JM)}function tR(e){var t=typeof e=="function"?e:Rv(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function nR(){return null}function rR(e,t){var n=typeof e=="function"?e:Rv(e),r=t==null?nR:typeof t=="function"?t:sd(t);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function oR(){var e=this.parentNode;e&&e.removeChild(this)}function iR(){return this.each(oR)}function sR(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function aR(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function lR(e){return this.select(e?aR:sR)}function cR(e){return arguments.length?this.property("__data__",e):this.node().__data__}function uR(e){return function(t){e.call(this,t,this.__data__)}}function dR(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 fR(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 pR(e,t,n){return function(){var r=this.__on,o,i=uR(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 hR(e,t,n){var r=dR(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?pR:fR,o=0;o<i;++o)this.each(a(r[o],t,n));return this}function Vv(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 gR(e,t){return function(){return Vv(this,e,t)}}function mR(e,t){return function(){return Vv(this,e,t.apply(this,arguments))}}function xR(e,t){return this.each((typeof t=="function"?mR:gR)(e,t))}function*vR(){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 Uv=[null];function ln(e,t){this._groups=e,this._parents=t}function Ji(){return new ln([[document.documentElement]],Uv)}function yR(){return this}ln.prototype=Ji.prototype={constructor:ln,select:WI,selectAll:KI,selectChild:JI,selectChildren:rM,filter:oM,data:uM,enter:iM,exit:fM,join:pM,merge:hM,selection:yR,order:gM,sort:mM,call:vM,nodes:yM,node:wM,size:bM,empty:EM,each:SM,attr:jM,style:PM,property:$M,classed:HM,text:GM,html:XM,raise:QM,lower:eR,append:tR,insert:rR,remove:iR,clone:lR,datum:cR,on:hR,dispatch:xR,[Symbol.iterator]:vR};function on(e){return typeof e=="string"?new ln([[document.querySelector(e)]],[document.documentElement]):new ln([[e]],Uv)}function wR(e){let t;for(;t=e.sourceEvent;)e=t;return e}function mn(e,t){if(e=wR(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 bR={passive:!1},Oi={capture:!0,passive:!1};function Bl(e){e.stopImmediatePropagation()}function ko(e){e.preventDefault(),e.stopImmediatePropagation()}function Wv(e){var t=e.document.documentElement,n=on(e).on("dragstart.drag",ko,Oi);"onselectstart"in t?n.on("selectstart.drag",ko,Oi):(t.__noselect=t.style.MozUserSelect,t.style.MozUserSelect="none")}function Gv(e,t){var n=e.document.documentElement,r=on(e).on("dragstart.drag",null);t&&(r.on("click.drag",ko,Oi),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 bs=e=>()=>e;function Nc(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}})}Nc.prototype.on=function(){var e=this._.on.apply(this._,arguments);return e===this._?this:e};function ER(e){return!e.ctrlKey&&!e.button}function SR(){return this.parentNode}function kR(e,t){return t??{x:e.x,y:e.y}}function CR(){return navigator.maxTouchPoints||"ontouchstart"in this}function Yv(){var e=ER,t=SR,n=kR,r=CR,o={},i=qa("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,bR).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&&(on(S.view).on("mousemove.drag",x,Oi).on("mouseup.drag",m,Oi),Wv(S.view),Bl(S),c=!1,a=S.clientX,l=S.clientY,k("start",S))}}function x(S){if(ko(S),!c){var E=S.clientX-a,k=S.clientY-l;c=E*E+k*k>f}o.mouse("drag",S)}function m(S){on(S.view).on("mousemove.drag mouseup.drag",null),Gv(S.view,c),ko(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),T=k.length,P,B;for(P=0;P<T;++P)(B=w(this,C,S,E,k[P].identifier,k[P]))&&(Bl(S),B("start",S,k[P]))}}function y(S){var E=S.changedTouches,k=E.length,C,T;for(C=0;C<k;++C)(T=o[E[C].identifier])&&(ko(S),T("drag",S,E[C]))}function b(S){var E=S.changedTouches,k=E.length,C,T;for(u&&clearTimeout(u),u=setTimeout(function(){u=null},500),C=0;C<k;++C)(T=o[E[C].identifier])&&(Bl(S),T("end",S,E[C]))}function w(S,E,k,C,T,P){var B=i.copy(),O=mn(P||k,E),z,L,_;if((_=n.call(S,new Nc("beforestart",{sourceEvent:k,target:p,identifier:T,active:s,x:O[0],y:O[1],dx:0,dy:0,dispatch:B}),C))!=null)return z=_.x-O[0]||0,L=_.y-O[1]||0,function I(M,j,A){var N=O,R;switch(M){case"start":o[T]=I,R=s++;break;case"end":delete o[T],--s;case"drag":O=mn(A||j,E),R=s;break}B.call(M,S,new Nc(M,{sourceEvent:j,subject:_,target:p,identifier:T,active:R,x:O[0]+z,y:O[1]+L,dx:O[0]-N[0],dy:O[1]-N[1],dispatch:B}),C)}}return p.filter=function(S){return arguments.length?(e=typeof S=="function"?S:bs(!!S),p):e},p.container=function(S){return arguments.length?(t=typeof S=="function"?S:bs(S),p):t},p.subject=function(S){return arguments.length?(n=typeof S=="function"?S:bs(S),p):n},p.touchable=function(S){return arguments.length?(r=typeof S=="function"?S:bs(!!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 ld(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 es(){}var Li=.7,ua=1/Li,Co="\\s*([+-]?\\d+)\\s*",$i="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Dn="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",_R=/^#([0-9a-f]{3,8})$/,TR=new RegExp(`^rgb\\(${Co},${Co},${Co}\\)$`),AR=new RegExp(`^rgb\\(${Dn},${Dn},${Dn}\\)$`),NR=new RegExp(`^rgba\\(${Co},${Co},${Co},${$i}\\)$`),jR=new RegExp(`^rgba\\(${Dn},${Dn},${Dn},${$i}\\)$`),IR=new RegExp(`^hsl\\(${$i},${Dn},${Dn}\\)$`),MR=new RegExp(`^hsla\\(${$i},${Dn},${Dn},${$i}\\)$`),Sp={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};ld(es,Wr,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:kp,formatHex:kp,formatHex8:RR,formatHsl:PR,formatRgb:Cp,toString:Cp});function kp(){return this.rgb().formatHex()}function RR(){return this.rgb().formatHex8()}function PR(){return Kv(this).formatHsl()}function Cp(){return this.rgb().formatRgb()}function Wr(e){var t,n;return e=(e+"").trim().toLowerCase(),(t=_R.exec(e))?(n=t[1].length,t=parseInt(t[1],16),n===6?_p(t):n===3?new Jt(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?Es(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?Es(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=TR.exec(e))?new Jt(t[1],t[2],t[3],1):(t=AR.exec(e))?new Jt(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=NR.exec(e))?Es(t[1],t[2],t[3],t[4]):(t=jR.exec(e))?Es(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=IR.exec(e))?Np(t[1],t[2]/100,t[3]/100,1):(t=MR.exec(e))?Np(t[1],t[2]/100,t[3]/100,t[4]):Sp.hasOwnProperty(e)?_p(Sp[e]):e==="transparent"?new Jt(NaN,NaN,NaN,0):null}function _p(e){return new Jt(e>>16&255,e>>8&255,e&255,1)}function Es(e,t,n,r){return r<=0&&(e=t=n=NaN),new Jt(e,t,n,r)}function DR(e){return e instanceof es||(e=Wr(e)),e?(e=e.rgb(),new Jt(e.r,e.g,e.b,e.opacity)):new Jt}function jc(e,t,n,r){return arguments.length===1?DR(e):new Jt(e,t,n,r??1)}function Jt(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}ld(Jt,jc,qv(es,{brighter(e){return e=e==null?ua:Math.pow(ua,e),new Jt(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?Li:Math.pow(Li,e),new Jt(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new Jt(Dr(this.r),Dr(this.g),Dr(this.b),da(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:Tp,formatHex:Tp,formatHex8:OR,formatRgb:Ap,toString:Ap}));function Tp(){return`#${Nr(this.r)}${Nr(this.g)}${Nr(this.b)}`}function OR(){return`#${Nr(this.r)}${Nr(this.g)}${Nr(this.b)}${Nr((isNaN(this.opacity)?1:this.opacity)*255)}`}function Ap(){const e=da(this.opacity);return`${e===1?"rgb(":"rgba("}${Dr(this.r)}, ${Dr(this.g)}, ${Dr(this.b)}${e===1?")":`, ${e})`}`}function da(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function Dr(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Nr(e){return e=Dr(e),(e<16?"0":"")+e.toString(16)}function Np(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new xn(e,t,n,r)}function Kv(e){if(e instanceof xn)return new xn(e.h,e.s,e.l,e.opacity);if(e instanceof es||(e=Wr(e)),!e)return new xn;if(e instanceof xn)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 xn(s,a,l,e.opacity)}function LR(e,t,n,r){return arguments.length===1?Kv(e):new xn(e,t,n,r??1)}function xn(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}ld(xn,LR,qv(es,{brighter(e){return e=e==null?ua:Math.pow(ua,e),new xn(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?Li:Math.pow(Li,e),new xn(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 Jt(Hl(e>=240?e-240:e+120,o,r),Hl(e,o,r),Hl(e<120?e+240:e-120,o,r),this.opacity)},clamp(){return new xn(jp(this.h),Ss(this.s),Ss(this.l),da(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=da(this.opacity);return`${e===1?"hsl(":"hsla("}${jp(this.h)}, ${Ss(this.s)*100}%, ${Ss(this.l)*100}%${e===1?")":`, ${e})`}`}}));function jp(e){return e=(e||0)%360,e<0?e+360:e}function Ss(e){return Math.max(0,Math.min(1,e||0))}function Hl(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 cd=e=>()=>e;function $R(e,t){return function(n){return e+n*t}}function zR(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 FR(e){return(e=+e)==1?Xv:function(t,n){return n-t?zR(t,n,e):cd(isNaN(t)?n:t)}}function Xv(e,t){var n=t-e;return n?$R(e,n):cd(isNaN(e)?t:e)}const fa=function e(t){var n=FR(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 BR(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 HR(e){return ArrayBuffer.isView(e)&&!(e instanceof DataView)}function VR(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]=Ci(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 UR(e,t){var n=new Date;return e=+e,t=+t,function(r){return n.setTime(e*(1-r)+t*r),n}}function _n(e,t){return e=+e,t=+t,function(n){return e*(1-n)+t*n}}function WR(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]=Ci(e[o],t[o]):r[o]=t[o];return function(i){for(o in n)r[o]=n[o](i);return r}}var Ic=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,Vl=new RegExp(Ic.source,"g");function GR(e){return function(){return e}}function YR(e){return function(t){return e(t)+""}}function Zv(e,t){var n=Ic.lastIndex=Vl.lastIndex=0,r,o,i,s=-1,a=[],l=[];for(e=e+"",t=t+"";(r=Ic.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:_n(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]?YR(l[0].x):GR(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 Ci(e,t){var n=typeof t,r;return t==null||n==="boolean"?cd(t):(n==="number"?_n:n==="string"?(r=Wr(t))?(t=r,fa):Zv:t instanceof Wr?fa:t instanceof Date?UR:HR(t)?BR:Array.isArray(t)?VR:typeof t.valueOf!="function"&&typeof t.toString!="function"||isNaN(t)?WR:_n)(e,t)}var Ip=180/Math.PI,Mc={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)*Ip,skewX:Math.atan(l)*Ip,scaleX:s,scaleY:a}}var ks;function qR(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?Mc:Qv(t.a,t.b,t.c,t.d,t.e,t.f)}function KR(e){return e==null||(ks||(ks=document.createElementNS("http://www.w3.org/2000/svg","g")),ks.setAttribute("transform",e),!(e=ks.transform.baseVal.consolidate()))?Mc:(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 m=h.push("translate(",null,t,null,n);x.push({i:m-4,x:_n(c,f)},{i:m-2,x:_n(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:_n(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:_n(c,u)}):u&&f.push(o(f)+"skewX("+u+r)}function l(c,u,f,p,h,x){if(c!==f||u!==p){var m=h.push(o(h)+"scale(",null,",",null,")");x.push({i:m-4,x:_n(c,f)},{i:m-2,x:_n(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,m=p.length,v;++x<m;)f[(v=p[x]).i]=v.x(h);return f.join("")}}}var XR=Jv(qR,"px, ","px)","deg)"),ZR=Jv(KR,", ",")",")"),QR=1e-12;function Mp(e){return((e=Math.exp(e))+1/e)/2}function JR(e){return((e=Math.exp(e))-1/e)/2}function eP(e){return((e=Math.exp(2*e))-1)/(e+1)}const Bs=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,m=h*h+x*x,v,y;if(m<QR)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(m),w=(p*p-c*c+r*m)/(2*c*n*b),S=(p*p-c*c-r*m)/(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 T=C*y,P=Mp(E),B=c/(n*b)*(P*eP(t*T+E)-JR(E));return[a+B*h,l+B*x,c*P/Mp(t*T+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 Io=0,bi=0,di=0,ey=1e3,pa,Ei,ha=0,Gr=0,Xa=0,zi=typeof performance=="object"&&performance.now?performance:Date,ty=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function ud(){return Gr||(ty(tP),Gr=zi.now()+Xa)}function tP(){Gr=0}function ga(){this._call=this._time=this._next=null}ga.prototype=ny.prototype={constructor:ga,restart:function(e,t,n){if(typeof e!="function")throw new TypeError("callback is not a function");n=(n==null?ud():+n)+(t==null?0:+t),!this._next&&Ei!==this&&(Ei?Ei._next=this:pa=this,Ei=this),this._call=e,this._time=n,Rc()},stop:function(){this._call&&(this._call=null,this._time=1/0,Rc())}};function ny(e,t,n){var r=new ga;return r.restart(e,t,n),r}function nP(){ud(),++Io;for(var e=pa,t;e;)(t=Gr-e._time)>=0&&e._call.call(void 0,t),e=e._next;--Io}function Rp(){Gr=(ha=zi.now())+Xa,Io=bi=0;try{nP()}finally{Io=0,oP(),Gr=0}}function rP(){var e=zi.now(),t=e-ha;t>ey&&(Xa-=t,ha=e)}function oP(){for(var e,t=pa,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:pa=n);Ei=e,Rc(r)}function Rc(e){if(!Io){bi&&(bi=clearTimeout(bi));var t=e-Gr;t>24?(e<1/0&&(bi=setTimeout(Rp,e-zi.now()-Xa)),di&&(di=clearInterval(di))):(di||(ha=zi.now(),di=setInterval(rP,ey)),Io=1,ty(Rp))}}function Pp(e,t,n){var r=new ga;return t=t==null?0:+t,r.restart(o=>{r.stop(),e(o+t)},t,n),r}var iP=qa("start","end","cancel","interrupt"),sP=[],ry=0,Dp=1,Pc=2,Hs=3,Op=4,Dc=5,Vs=6;function Za(e,t,n,r,o,i){var s=e.__transition;if(!s)e.__transition={};else if(n in s)return;aP(e,n,{name:t,index:r,group:o,on:iP,tween:sP,time:i.time,delay:i.delay,duration:i.duration,ease:i.ease,timer:null,state:ry})}function dd(e,t){var n=Sn(e,t);if(n.state>ry)throw new Error("too late; already scheduled");return n}function zn(e,t){var n=Sn(e,t);if(n.state>Hs)throw new Error("too late; already running");return n}function Sn(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw new Error("transition not found");return n}function aP(e,t,n){var r=e.__transition,o;r[t]=n,n.timer=ny(i,0,n.time);function i(c){n.state=Dp,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!==Dp)return l();for(u in r)if(h=r[u],h.name===n.name){if(h.state===Hs)return Pp(s);h.state===Op?(h.state=Vs,h.timer.stop(),h.on.call("interrupt",e,e.__data__,h.index,h.group),delete r[u]):+u<t&&(h.state=Vs,h.timer.stop(),h.on.call("cancel",e,e.__data__,h.index,h.group),delete r[u])}if(Pp(function(){n.state===Hs&&(n.state=Op,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=Hs,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=Dc,1),f=-1,p=o.length;++f<p;)o[f].call(e,u);n.state===Dc&&(n.on.call("end",e,e.__data__,n.index,n.group),l())}function l(){n.state=Vs,n.timer.stop(),delete r[t];for(var c in r)return;delete e.__transition}}function Us(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<Dc,r.state=Vs,r.timer.stop(),r.on.call(o?"interrupt":"cancel",e,e.__data__,r.index,r.group),delete n[s]}i&&delete e.__transition}}function lP(e){return this.each(function(){Us(this,e)})}function cP(e,t){var n,r;return function(){var o=zn(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 uP(e,t,n){var r,o;if(typeof n!="function")throw new Error;return function(){var i=zn(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 dP(e,t){var n=this._id;if(e+="",arguments.length<2){for(var r=Sn(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?cP:uP)(n,e,t))}function fd(e,t,n){var r=e._id;return e.each(function(){var o=zn(this,r);(o.value||(o.value={}))[t]=n.apply(this,arguments)}),function(o){return Sn(o,r).value[t]}}function oy(e,t){var n;return(typeof t=="number"?_n:t instanceof Wr?fa:(n=Wr(t))?(t=n,fa):Zv)(e,t)}function fP(e){return function(){this.removeAttribute(e)}}function pP(e){return function(){this.removeAttributeNS(e.space,e.local)}}function hP(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 gP(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 mP(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 xP(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 vP(e,t){var n=Ka(e),r=n==="transform"?ZR:oy;return this.attrTween(e,typeof t=="function"?(n.local?xP:mP)(n,r,fd(this,"attr."+e,t)):t==null?(n.local?pP:fP)(n):(n.local?gP:hP)(n,r,t))}function yP(e,t){return function(n){this.setAttribute(e,t.call(this,n))}}function wP(e,t){return function(n){this.setAttributeNS(e.space,e.local,t.call(this,n))}}function bP(e,t){var n,r;function o(){var i=t.apply(this,arguments);return i!==r&&(n=(r=i)&&wP(e,i)),n}return o._value=t,o}function EP(e,t){var n,r;function o(){var i=t.apply(this,arguments);return i!==r&&(n=(r=i)&&yP(e,i)),n}return o._value=t,o}function SP(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=Ka(e);return this.tween(n,(r.local?bP:EP)(r,t))}function kP(e,t){return function(){dd(this,e).delay=+t.apply(this,arguments)}}function CP(e,t){return t=+t,function(){dd(this,e).delay=t}}function _P(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?kP:CP)(t,e)):Sn(this.node(),t).delay}function TP(e,t){return function(){zn(this,e).duration=+t.apply(this,arguments)}}function AP(e,t){return t=+t,function(){zn(this,e).duration=t}}function NP(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?TP:AP)(t,e)):Sn(this.node(),t).duration}function jP(e,t){if(typeof t!="function")throw new Error;return function(){zn(this,e).ease=t}}function IP(e){var t=this._id;return arguments.length?this.each(jP(t,e)):Sn(this.node(),t).ease}function MP(e,t){return function(){var n=t.apply(this,arguments);if(typeof n!="function")throw new Error;zn(this,e).ease=n}}function RP(e){if(typeof e!="function")throw new Error;return this.each(MP(this._id,e))}function PP(e){typeof e!="function"&&(e=Dv(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 er(r,this._parents,this._name,this._id)}function DP(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 er(s,this._parents,this._name,this._id)}function OP(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 LP(e,t,n){var r,o,i=OP(t)?dd:zn;return function(){var s=i(this,e),a=s.on;a!==r&&(o=(r=a).copy()).on(t,n),s.on=o}}function $P(e,t){var n=this._id;return arguments.length<2?Sn(this.node(),n).on.on(e):this.each(LP(n,e,t))}function zP(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function FP(){return this.on("end.remove",zP(this._id))}function BP(e){var t=this._name,n=this._id;typeof e!="function"&&(e=sd(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,Za(c[p],t,n,p,c,Sn(u,n)));return new er(i,this._parents,t,n)}function HP(e){var t=this._name,n=this._id;typeof e!="function"&&(e=Pv(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=Sn(u,n),m=0,v=p.length;m<v;++m)(h=p[m])&&Za(h,t,n,m,p,x);i.push(p),s.push(u)}return new er(i,s,t,n)}var VP=Ji.prototype.constructor;function UP(){return new VP(this._groups,this._parents)}function WP(e,t){var n,r,o;return function(){var i=jo(this,e),s=(this.style.removeProperty(e),jo(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 GP(e,t,n){var r,o=n+"",i;return function(){var s=jo(this,e);return s===o?null:s===r?i:i=t(r=s,n)}}function YP(e,t,n){var r,o,i;return function(){var s=jo(this,e),a=n(this),l=a+"";return a==null&&(l=a=(this.style.removeProperty(e),jo(this,e))),s===l?null:s===r&&l===o?i:(o=l,i=t(r=s,a))}}function qP(e,t){var n,r,o,i="style."+t,s="end."+i,a;return function(){var l=zn(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 KP(e,t,n){var r=(e+="")=="transform"?XR:oy;return t==null?this.styleTween(e,WP(e,r)).on("end.style."+e,iy(e)):typeof t=="function"?this.styleTween(e,YP(e,r,fd(this,"style."+e,t))).each(qP(this._id,e)):this.styleTween(e,GP(e,r,t),n).on("end.style."+e,null)}function XP(e,t,n){return function(r){this.style.setProperty(e,t.call(this,r),n)}}function ZP(e,t,n){var r,o;function i(){var s=t.apply(this,arguments);return s!==o&&(r=(o=s)&&XP(e,s,n)),r}return i._value=t,i}function QP(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,ZP(e,t,n??""))}function JP(e){return function(){this.textContent=e}}function eD(e){return function(){var t=e(this);this.textContent=t??""}}function tD(e){return this.tween("text",typeof e=="function"?eD(fd(this,"text",e)):JP(e==null?"":e+""))}function nD(e){return function(t){this.textContent=e.call(this,t)}}function rD(e){var t,n;function r(){var o=e.apply(this,arguments);return o!==n&&(t=(n=o)&&nD(o)),t}return r._value=e,r}function oD(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,rD(e))}function iD(){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=Sn(l,t);Za(l,e,n,c,s,{time:u.time+u.delay+u.duration,delay:0,duration:u.duration,ease:u.ease})}return new er(r,this._parents,e,n)}function sD(){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=zn(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 aD=0;function er(e,t,n,r){this._groups=e,this._parents=t,this._name=n,this._id=r}function sy(){return++aD}var Un=Ji.prototype;er.prototype={constructor:er,select:BP,selectAll:HP,selectChild:Un.selectChild,selectChildren:Un.selectChildren,filter:PP,merge:DP,selection:UP,transition:iD,call:Un.call,nodes:Un.nodes,node:Un.node,size:Un.size,empty:Un.empty,each:Un.each,on:$P,attr:vP,attrTween:SP,style:KP,styleTween:QP,text:tD,textTween:oD,remove:FP,tween:dP,delay:_P,duration:NP,ease:IP,easeVarying:RP,end:sD,[Symbol.iterator]:Un[Symbol.iterator]};function lD(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var cD={time:null,delay:0,duration:250,ease:lD};function uD(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 dD(e){var t,n;e instanceof er?(t=e._id,e=e._name):(t=sy(),(n=cD).time=ud(),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])&&Za(l,e,t,c,s,n||uD(l,t));return new er(r,this._parents,e,t)}Ji.prototype.interrupt=lP;Ji.prototype.transition=dD;const Cs=e=>()=>e;function fD(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 Kn(e,t,n){this.k=e,this.x=t,this.y=n}Kn.prototype={constructor:Kn,scale:function(e){return e===1?this:new Kn(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Kn(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 Qa=new Kn(1,0,0);ay.prototype=Kn.prototype;function ay(e){for(;!e.__zoom;)if(!(e=e.parentNode))return Qa;return e.__zoom}function Ul(e){e.stopImmediatePropagation()}function fi(e){e.preventDefault(),e.stopImmediatePropagation()}function pD(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function hD(){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 Lp(){return this.__zoom||Qa}function gD(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function mD(){return navigator.maxTouchPoints||"ontouchstart"in this}function xD(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=pD,t=hD,n=xD,r=gD,o=mD,i=[0,1/0],s=[[-1/0,-1/0],[1/0,1/0]],a=250,l=Bs,c=qa("start","zoom","end"),u,f,p,h=500,x=150,m=0,v=10;function y(_){_.property("__zoom",Lp).on("wheel.zoom",T,{passive:!1}).on("mousedown.zoom",P).on("dblclick.zoom",B).filter(o).on("touchstart.zoom",O).on("touchmove.zoom",z).on("touchend.zoom touchcancel.zoom",L).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}y.transform=function(_,I,M,j){var A=_.selection?_.selection():_;A.property("__zoom",Lp),_!==A?E(_,I,M,j):A.interrupt().each(function(){k(this,arguments).event(j).start().zoom(null,typeof I=="function"?I.apply(this,arguments):I).end()})},y.scaleBy=function(_,I,M,j){y.scaleTo(_,function(){var A=this.__zoom.k,N=typeof I=="function"?I.apply(this,arguments):I;return A*N},M,j)},y.scaleTo=function(_,I,M,j){y.transform(_,function(){var A=t.apply(this,arguments),N=this.__zoom,R=M==null?S(A):typeof M=="function"?M.apply(this,arguments):M,D=N.invert(R),Y=typeof I=="function"?I.apply(this,arguments):I;return n(w(b(N,Y),R,D),A,s)},M,j)},y.translateBy=function(_,I,M,j){y.transform(_,function(){return n(this.__zoom.translate(typeof I=="function"?I.apply(this,arguments):I,typeof M=="function"?M.apply(this,arguments):M),t.apply(this,arguments),s)},null,j)},y.translateTo=function(_,I,M,j,A){y.transform(_,function(){var N=t.apply(this,arguments),R=this.__zoom,D=j==null?S(N):typeof j=="function"?j.apply(this,arguments):j;return n(Qa.translate(D[0],D[1]).scale(R.k).translate(typeof I=="function"?-I.apply(this,arguments):-I,typeof M=="function"?-M.apply(this,arguments):-M),N,s)},j,A)};function b(_,I){return I=Math.max(i[0],Math.min(i[1],I)),I===_.k?_:new Kn(I,_.x,_.y)}function w(_,I,M){var j=I[0]-M[0]*_.k,A=I[1]-M[1]*_.k;return j===_.x&&A===_.y?_:new Kn(_.k,j,A)}function S(_){return[(+_[0][0]+ +_[1][0])/2,(+_[0][1]+ +_[1][1])/2]}function E(_,I,M,j){_.on("start.zoom",function(){k(this,arguments).event(j).start()}).on("interrupt.zoom end.zoom",function(){k(this,arguments).event(j).end()}).tween("zoom",function(){var A=this,N=arguments,R=k(A,N).event(j),D=t.apply(A,N),Y=M==null?S(D):typeof M=="function"?M.apply(A,N):M,H=Math.max(D[1][0]-D[0][0],D[1][1]-D[0][1]),V=A.__zoom,U=typeof I=="function"?I.apply(A,N):I,G=l(V.invert(Y).concat(H/V.k),U.invert(Y).concat(H/U.k));return function(F){if(F===1)F=U;else{var W=G(F),X=H/W[2];F=new Kn(X,Y[0]-W[0]*X,Y[1]-W[1]*X)}R.zoom(null,F)}})}function k(_,I,M){return!M&&_.__zooming||new C(_,I)}function C(_,I){this.that=_,this.args=I,this.active=0,this.sourceEvent=null,this.extent=t.apply(_,I),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(_,I){return this.mouse&&_!=="mouse"&&(this.mouse[1]=I.invert(this.mouse[0])),this.touch0&&_!=="touch"&&(this.touch0[1]=I.invert(this.touch0[0])),this.touch1&&_!=="touch"&&(this.touch1[1]=I.invert(this.touch1[0])),this.that.__zoom=I,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(_){var I=on(this.that).datum();c.call(_,this.that,new fD(_,{sourceEvent:this.sourceEvent,target:y,transform:this.that.__zoom,dispatch:c}),I)}};function T(_,...I){if(!e.apply(this,arguments))return;var M=k(this,I).event(_),j=this.__zoom,A=Math.max(i[0],Math.min(i[1],j.k*Math.pow(2,r.apply(this,arguments)))),N=mn(_);if(M.wheel)(M.mouse[0][0]!==N[0]||M.mouse[0][1]!==N[1])&&(M.mouse[1]=j.invert(M.mouse[0]=N)),clearTimeout(M.wheel);else{if(j.k===A)return;M.mouse=[N,j.invert(N)],Us(this),M.start()}fi(_),M.wheel=setTimeout(R,x),M.zoom("mouse",n(w(b(j,A),M.mouse[0],M.mouse[1]),M.extent,s));function R(){M.wheel=null,M.end()}}function P(_,...I){if(p||!e.apply(this,arguments))return;var M=_.currentTarget,j=k(this,I,!0).event(_),A=on(_.view).on("mousemove.zoom",Y,!0).on("mouseup.zoom",H,!0),N=mn(_,M),R=_.clientX,D=_.clientY;Wv(_.view),Ul(_),j.mouse=[N,this.__zoom.invert(N)],Us(this),j.start();function Y(V){if(fi(V),!j.moved){var U=V.clientX-R,G=V.clientY-D;j.moved=U*U+G*G>m}j.event(V).zoom("mouse",n(w(j.that.__zoom,j.mouse[0]=mn(V,M),j.mouse[1]),j.extent,s))}function H(V){A.on("mousemove.zoom mouseup.zoom",null),Gv(V.view,j.moved),fi(V),j.event(V).end()}}function B(_,...I){if(e.apply(this,arguments)){var M=this.__zoom,j=mn(_.changedTouches?_.changedTouches[0]:_,this),A=M.invert(j),N=M.k*(_.shiftKey?.5:2),R=n(w(b(M,N),j,A),t.apply(this,I),s);fi(_),a>0?on(this).transition().duration(a).call(E,R,j,_):on(this).call(y.transform,R,j,_)}}function O(_,...I){if(e.apply(this,arguments)){var M=_.touches,j=M.length,A=k(this,I,_.changedTouches.length===j).event(_),N,R,D,Y;for(Ul(_),R=0;R<j;++R)D=M[R],Y=mn(D,this),Y=[Y,this.__zoom.invert(Y),D.identifier],A.touch0?!A.touch1&&A.touch0[2]!==Y[2]&&(A.touch1=Y,A.taps=0):(A.touch0=Y,N=!0,A.taps=1+!!u);u&&(u=clearTimeout(u)),N&&(A.taps<2&&(f=Y[0],u=setTimeout(function(){u=null},h)),Us(this),A.start())}}function z(_,...I){if(this.__zooming){var M=k(this,I).event(_),j=_.changedTouches,A=j.length,N,R,D,Y;for(fi(_),N=0;N<A;++N)R=j[N],D=mn(R,this),M.touch0&&M.touch0[2]===R.identifier?M.touch0[0]=D:M.touch1&&M.touch1[2]===R.identifier&&(M.touch1[0]=D);if(R=M.that.__zoom,M.touch1){var H=M.touch0[0],V=M.touch0[1],U=M.touch1[0],G=M.touch1[1],F=(F=U[0]-H[0])*F+(F=U[1]-H[1])*F,W=(W=G[0]-V[0])*W+(W=G[1]-V[1])*W;R=b(R,Math.sqrt(F/W)),D=[(H[0]+U[0])/2,(H[1]+U[1])/2],Y=[(V[0]+G[0])/2,(V[1]+G[1])/2]}else if(M.touch0)D=M.touch0[0],Y=M.touch0[1];else return;M.zoom("touch",n(w(R,D,Y),M.extent,s))}}function L(_,...I){if(this.__zooming){var M=k(this,I).event(_),j=_.changedTouches,A=j.length,N,R;for(Ul(_),p&&clearTimeout(p),p=setTimeout(function(){p=null},h),N=0;N<A;++N)R=j[N],M.touch0&&M.touch0[2]===R.identifier?delete M.touch0:M.touch1&&M.touch1[2]===R.identifier&&delete M.touch1;if(M.touch1&&!M.touch0&&(M.touch0=M.touch1,delete M.touch1),M.touch0)M.touch0[1]=this.__zoom.invert(M.touch0[0]);else if(M.end(),M.taps===2&&(R=mn(R,this),Math.hypot(f[0]-R[0],f[1]-R[1])<v)){var D=on(this).on("dblclick.zoom");D&&D.apply(this,arguments)}}}return y.wheelDelta=function(_){return arguments.length?(r=typeof _=="function"?_:Cs(+_),y):r},y.filter=function(_){return arguments.length?(e=typeof _=="function"?_:Cs(!!_),y):e},y.touchable=function(_){return arguments.length?(o=typeof _=="function"?_:Cs(!!_),y):o},y.extent=function(_){return arguments.length?(t=typeof _=="function"?_:Cs([[+_[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?(m=(_=+_)*_,y):Math.sqrt(m)},y.tapDistance=function(_){return arguments.length?(v=+_,y):v},y}const Ln={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."},Fi=[[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 Mo;(function(e){e.Strict="strict",e.Loose="loose"})(Mo||(Mo={}));var Or;(function(e){e.Free="free",e.Vertical="vertical",e.Horizontal="horizontal"})(Or||(Or={}));var Bi;(function(e){e.Partial="partial",e.Full="full"})(Bi||(Bi={}));const dy={inProgress:!1,isValid:null,from:null,fromHandle:null,fromPosition:null,fromNode:null,to:null,toHandle:null,toPosition:null,toNode:null};var ur;(function(e){e.Bezier="default",e.Straight="straight",e.Step="step",e.SmoothStep="smoothstep",e.SimpleBezier="simplebezier"})(ur||(ur={}));var Hi;(function(e){e.Arrow="arrow",e.ArrowClosed="arrowclosed"})(Hi||(Hi={}));var ge;(function(e){e.Left="left",e.Top="top",e.Right="right",e.Bottom="bottom"})(ge||(ge={}));const $p={[ge.Left]:ge.Right,[ge.Right]:ge.Left,[ge.Top]:ge.Bottom,[ge.Bottom]:ge.Top};function fy(e){return e===null?null:e?"valid":"invalid"}const py=e=>"id"in e&&"source"in e&&"target"in e,vD=e=>"id"in e&&"position"in e&&!("source"in e)&&!("target"in e),pd=e=>"id"in e&&"internals"in e&&!("source"in e)&&!("target"in e),ts=(e,t=[0,0])=>{const{width:n,height:r}=nr(e),o=e.origin??t,i=n*o[0],s=r*o[1];return{x:e.position.x-i,y:e.position.y-s}},yD=(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):pd(o)?o:t.nodeLookup.get(o.id));const a=s?ma(s,t.nodeOrigin):{x:0,y:0,x2:0,y2:0};return Ja(r,a)},{x:1/0,y:1/0,x2:-1/0,y2:-1/0});return el(n)},ns=(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=ma(r);n=Ja(n,o)}}),el(n)},hd=(e,t,[n,r,o]=[0,0,1],i=!1,s=!1)=>{const a={...rs(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,m=Vi(a,Po(c)),v=(h??0)*(x??0),y=i&&m>0;(!c.internals.handleBounds||y||m>=v||c.dragging)&&l.push(c)}return l},wD=(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 bD(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 ED({nodes:e,width:t,height:n,panZoom:r,minZoom:o,maxZoom:i},s){if(e.size===0)return Promise.resolve(!0);const a=bD(e,s),l=ns(a),c=gd(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=o;if(s.extent==="parent"&&!s.expandParent)if(!a)i==null||i("005",Ln.error005());else{const h=a.measured.width,x=a.measured.height;h&&x&&(f=[[l,c],[l+h,c+x]])}else a&&Do(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=Do(f)?Yr(t,f,s.measured):t;return(s.measured.width===void 0||s.measured.height===void 0)&&(i==null||i("015",Ln.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 SD({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(m=>m.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=wD(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 Ro=(e,t=0,n=1)=>Math.min(Math.max(e,t),n),Yr=(e={x:0,y:0},t,n)=>({x:Ro(e.x,t[0][0],t[1][0]-((n==null?void 0:n.width)??0)),y:Ro(e.y,t[0][1],t[1][1]-((n==null?void 0:n.height)??0))});function gy(e,t,n){const{width:r,height:o}=nr(n),{x:i,y:s}=n.internals.positionAbsolute;return Yr(e,[[i,s],[i+r,s+o]],t)}const zp=(e,t,n)=>e<t?Ro(Math.abs(e-t),1,t)/t:e>n?-Ro(Math.abs(e-n),1,t)/t:0,my=(e,t,n=15,r=40)=>{const o=zp(e.x,r,t.width-r)*n,i=zp(e.y,r,t.height-r)*n;return[o,i]},Ja=(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)}),Oc=({x:e,y:t,width:n,height:r})=>({x:e,y:t,x2:e+n,y2:t+r}),el=({x:e,y:t,x2:n,y2:r})=>({x:e,y:t,width:n-e,height:r-t}),Po=(e,t=[0,0])=>{var o,i;const{x:n,y:r}=pd(e)?e.internals.positionAbsolute:ts(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}},ma=(e,t=[0,0])=>{var o,i;const{x:n,y:r}=pd(e)?e.internals.positionAbsolute:ts(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)=>el(Ja(Oc(e),Oc(t))),Vi=(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)},Fp=e=>vn(e.width)&&vn(e.height)&&vn(e.x)&&vn(e.y),vn=e=>!isNaN(e)&&isFinite(e),kD=(e,t)=>{},tl=(e,t=[1,1])=>({x:t[0]*Math.round(e.x/t[0]),y:t[1]*Math.round(e.y/t[1])}),rs=({x:e,y:t},[n,r,o],i=!1,s=[1,1])=>{const a={x:(e-n)/o,y:(t-r)/o};return i?tl(a,s):a},xa=({x:e,y:t},[n,r,o])=>({x:e*o+n,y:t*o+r});function uo(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 CD(e,t,n){if(typeof e=="string"||typeof e=="number"){const r=uo(e,n),o=uo(e,t);return{top:r,right:o,bottom:r,left:o,x:o*2,y:r*2}}if(typeof e=="object"){const r=uo(e.top??e.y??0,n),o=uo(e.bottom??e.y??0,n),i=uo(e.left??e.x??0,t),s=uo(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 _D(e,t,n,r,o,i){const{x:s,y:a}=xa(e,[t,n,r]),{x:l,y:c}=xa({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 gd=(e,t,n,r,o,i)=>{const s=CD(i,t,n),a=(t-s.x)/e.width,l=(n-s.y)/e.height,c=Math.min(a,l),u=Ro(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,m=_D(e,h,x,u,t,n),v={left:Math.min(m.left-s.left,0),top:Math.min(m.top-s.top,0),right:Math.min(m.right-s.right,0),bottom:Math.min(m.bottom-s.bottom,0)};return{x:h-v.left+v.right,y:x-v.top+v.bottom,zoom:u}},va=()=>{var e;return typeof navigator<"u"&&((e=navigator==null?void 0:navigator.userAgent)==null?void 0:e.indexOf("Mac"))>=0};function Do(e){return e!==void 0&&e!=="parent"}function nr(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 Bp(e,t){if(e.size!==t.size)return!1;for(const n of e)if(!t.has(n))return!1;return!0}function TD(){let e,t;return{promise:new Promise((r,o)=>{e=r,t=o}),resolve:e,reject:t}}function AD(e){return{...uy,...e||{}}}function _i(e,{snapGrid:t=[0,0],snapToGrid:n=!1,transform:r,containerBounds:o}){const{x:i,y:s}=In(e),a=rs({x:i-((o==null?void 0:o.left)??0),y:s-((o==null?void 0:o.top)??0)},r),{x:l,y:c}=n?tl(a,t):a;return{xSnapped:l,ySnapped:c,...a}}const md=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)},ND=["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:ND.includes(t.nodeName)||t.hasAttribute("contenteditable")||!!t.closest(".nokey")}const Ey=e=>"clientX"in e,In=(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)}},Hp=(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,...md(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 _s(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 ge.Left:return[t-_s(t-r,i),n];case ge.Right:return[t+_s(r-t,i),n];case ge.Top:return[t,n-_s(n-o,i)];case ge.Bottom:return[t,n+_s(o-n,i)]}}function xd({sourceX:e,sourceY:t,sourcePosition:n=ge.Bottom,targetX:r,targetY:o,targetPosition:i=ge.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 jD({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 ID({sourceNode:e,targetNode:t,width:n,height:r,transform:o}){const i=Ja(ma(e),ma(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 Vi(s,el(i))>0}const MD=({source:e,sourceHandle:t,target:n,targetHandle:r})=>`xy-edge__${e}${t||""}-${n}${r||""}`,RD=(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)),PD=(e,t)=>{if(!e.source||!e.target)return t;let n;return py(e)?n={...e}:n={...e,id:MD(e)},RD(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 Up={[ge.Left]:{x:-1,y:0},[ge.Right]:{x:1,y:0},[ge.Top]:{x:0,y:-1},[ge.Bottom]:{x:0,y:1}},DD=({source:e,sourcePosition:t=ge.Bottom,target:n})=>t===ge.Left||t===ge.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},Wp=(e,t)=>Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2));function OD({source:e,sourcePosition:t=ge.Bottom,target:n,targetPosition:r=ge.Top,center:o,offset:i}){const s=Up[t],a=Up[r],l={x:e.x+s.x*i,y:e.y+s.y*i},c={x:n.x+a.x*i,y:n.y+a.y*i},u=DD({source:l,sourcePosition:t,target:c}),f=u.x!==0?"x":"y",p=u[f];let h=[],x,m;const v={x:0,y:0},y={x:0,y:0},[b,w,S,E]=ky({sourceX:e.x,sourceY:e.y,targetX:n.x,targetY:n.y});if(s[f]*a[f]===-1){x=o.x??b,m=o.y??w;const C=[{x,y:l.y},{x,y:c.y}],T=[{x:l.x,y:m},{x:c.x,y:m}];s[f]===p?h=f==="x"?C:T:h=f==="x"?T:C}else{const C=[{x:l.x,y:c.y}],T=[{x:c.x,y:l.y}];if(f==="x"?h=s.x===p?T:C:h=s.y===p?C:T,t===r){const L=Math.abs(e[f]-n[f]);if(L<=i){const _=Math.min(i-1,i-L);s[f]===p?v[f]=(l[f]>e[f]?-1:1)*_:y[f]=(c[f]>n[f]?-1:1)*_}}if(t!==r){const L=f==="x"?"y":"x",_=s[f]===a[L],I=l[L]>c[L],M=l[L]<c[L];(s[f]===1&&(!_&&I||_&&M)||s[f]!==1&&(!_&&M||_&&I))&&(h=f==="x"?C:T)}const P={x:l.x+v.x,y:l.y+v.y},B={x:c.x+y.x,y:c.y+y.y},O=Math.max(Math.abs(P.x-h[0].x),Math.abs(B.x-h[0].x)),z=Math.max(Math.abs(P.y-h[0].y),Math.abs(B.y-h[0].y));O>=z?(x=(P.x+B.x)/2,m=h[0].y):(x=h[0].x,m=(P.y+B.y)/2)}return[[e,{x:l.x+v.x,y:l.y+v.y},...h,{x:c.x+y.x,y:c.y+y.y},n],x,m,S,E]}function LD(e,t,n,r){const o=Math.min(Wp(e,t)/2,Wp(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 Lc({sourceX:e,sourceY:t,sourcePosition:n=ge.Bottom,targetX:r,targetY:o,targetPosition:i=ge.Top,borderRadius:s=5,centerX:a,centerY:l,offset:c=20}){const[u,f,p,h,x]=OD({source:{x:e,y:t},sourcePosition:n,target:{x:r,y:o},targetPosition:i,center:{x:a,y:l},offset:c});return[u.reduce((v,y,b)=>{let w="";return b>0&&b<u.length-1?w=LD(u[b-1],y,u[b+1],s):w=`${b===0?"M":"L"}${y.x} ${y.y}`,v+=w,v},""),f,p,h,x]}function Gp(e){var t;return e&&!!(e.internals.handleBounds||(t=e.handles)!=null&&t.length)&&!!(e.measured.width||e.width||e.initialWidth)}function $D(e){var f;const{sourceNode:t,targetNode:n}=e;if(!Gp(t)||!Gp(n))return null;const r=t.internals.handleBounds||Yp(t.handles),o=n.internals.handleBounds||Yp(n.handles),i=qp((r==null?void 0:r.source)??[],e.sourceHandle),s=qp(e.connectionMode===Mo.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",Ln.error008(i?"target":"source",{id:e.id,sourceHandle:e.sourceHandle,targetHandle:e.targetHandle})),null;const a=(i==null?void 0:i.position)||ge.Bottom,l=(s==null?void 0:s.position)||ge.Top,c=Ui(t,i,a),u=Ui(n,s,l);return{sourceX:c.x,sourceY:c.y,targetX:u.x,targetY:u.y,sourcePosition:a,targetPosition:l}}function Yp(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 Ui(e,t,n=ge.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??nr(e);if(r)return{x:o+s/2,y:i+a/2};switch((t==null?void 0:t.position)??n){case ge.Top:return{x:o+s/2,y:i};case ge.Right:return{x:o+s,y:i+a/2};case ge.Bottom:return{x:o+s/2,y:i+a};case ge.Left:return{x:o,y:i+a/2}}}function qp(e,t){return e&&(t?e.find(n=>n.id===t):e[0])||null}function $c(e,t){return e?typeof e=="string"?e:`${t?`${t}__`:""}${Object.keys(e).sort().map(r=>`${r}=${e[r]}`).join("&")}`:""}function zD(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=$c(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 vd={nodeOrigin:[0,0],nodeExtent:Fi,elevateNodesOnSelect:!0,defaults:{}},FD={...vd,checkEquality:!0};function yd(e,t){const n={...e};for(const r in t)t[r]!==void 0&&(n[r]=t[r]);return n}function BD(e,t,n){const r=yd(vd,n);for(const o of e.values())if(o.parentId)wd(o,e,t,r);else{const i=ts(o,r.nodeOrigin),s=Do(o.extent)?o.extent:r.nodeExtent,a=Yr(i,s,nr(o));o.internals.positionAbsolute=a}}function zc(e,t,n,r){var l,c;const o=yd(FD,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=ts(u,o.nodeOrigin),h=Do(u.extent)?u.extent:o.nodeExtent,x=Yr(p,h,nr(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&&wd(f,t,n,r)}return i}function HD(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 wd(e,t,n,r){const{elevateNodesOnSelect:o,nodeOrigin:i,nodeExtent:s}=yd(vd,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}HD(e,n);const c=o?1e3:0,{x:u,y:f,z:p}=VD(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(vn(e.zIndex)?e.zIndex:0)+(e.selected?t:0)}function VD(e,t,n,r,o){const{x:i,y:s}=t.internals.positionAbsolute,a=nr(e),l=ts(e,n),c=Do(e.extent)?Yr(l,e.extent,a):l;let u=Yr({x:i+c.x,y:s+c.y},r,a);e.extent==="parent"&&(u=gy(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 bd(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)??Po(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=nr(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,m=Math.max(f.width,Math.round(a.width)),v=Math.max(f.height,Math.round(a.height)),y=(m-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:m+(h?p[0]*h-y:0),height:v+(x?p[1]*x-b:0)}})}),o}function UD(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=md(p.nodeElement),m=h.measured.width!==x.width||h.measured.height!==x.height;if(!!(x.width&&x.height&&(m||!h.internals.handleBounds||p.force))){const y=p.nodeElement.getBoundingClientRect(),b=Do(h.extent)?h.extent:i;let{positionAbsolute:w}=h.internals;h.parentId&&h.extent==="parent"?w=gy(w,x,t.get(h.parentId)):b&&(w=Yr(w,b,x));const S={...h,measured:x,internals:{...h.internals,positionAbsolute:w,handleBounds:{source:Hp("source",p.nodeElement,y,u,h.id),target:Hp("target",p.nodeElement,y,u,h.id)}}};t.set(h.id,S),h.parentId&&wd(S,t,n,{nodeOrigin:o}),a=!0,m&&(l.push({id:h.id,type:"dimensions",dimensions:x}),h.expandParent&&h.parentId&&f.push({id:h.id,parentId:h.parentId,rect:Po(S,o)}))}}if(f.length>0){const p=bd(f,t,n,o);l.push(...p)}return{changes:l,updatedInternals:a}}async function WD({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 Kp(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}`;Kp("source",l,u,e,o,s),Kp("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 Xp(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 GD(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 Wl({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 YD({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;function m({noDragClassName:y,handleSelector:b,domNode:w,isSelectable:S,nodeId:E,nodeClickDistance:k=0}){p=on(w);function C({x:O,y:z},L){const{nodeLookup:_,nodeExtent:I,snapGrid:M,snapToGrid:j,nodeOrigin:A,onNodeDrag:N,onSelectionDrag:R,onError:D,updateNodePositions:Y}=t();i={x:O,y:z};let H=!1,V={x:0,y:0,x2:0,y2:0};if(a.size>1&&I){const U=ns(a);V=Oc(U)}for(const[U,G]of a){if(!_.has(U))continue;let F={x:O-G.distance.x,y:z-G.distance.y};j&&(F=tl(F,M));let W=[[I[0][0],I[0][1]],[I[1][0],I[1][1]]];if(a.size>1&&I&&!G.extent){const{positionAbsolute:re}=G.internals,K=re.x-V.x+I[0][0],ne=re.x+G.measured.width-V.x2+I[1][0],ie=re.y-V.y+I[0][1],he=re.y+G.measured.height-V.y2+I[1][1];W=[[K,ie],[ne,he]]}const{position:X,positionAbsolute:Q}=hy({nodeId:U,nextPosition:F,nodeLookup:_,nodeExtent:W,nodeOrigin:A,onError:D});H=H||G.position.x!==X.x||G.position.y!==X.y,G.position=X,G.internals.positionAbsolute=Q}if(x=x||H,!!H&&(Y(a,!0),L&&(r||N||!E&&R))){const[U,G]=Wl({nodeId:E,dragItems:a,nodeLookup:_});r==null||r(L,a,U,G),N==null||N(L,U,G),E||R==null||R(L,G)}}async function T(){if(!u)return;const{transform:O,panBy:z,autoPanSpeed:L,autoPanOnNodeDrag:_}=t();if(!_){l=!1,cancelAnimationFrame(s);return}const[I,M]=my(c,u,L);(I!==0||M!==0)&&(i.x=(i.x??0)-I/O[2],i.y=(i.y??0)-M/O[2],await z({x:I,y:M})&&C(i,null)),s=requestAnimationFrame(T)}function P(O){var H;const{nodeLookup:z,multiSelectionActive:L,nodesDraggable:_,transform:I,snapGrid:M,snapToGrid:j,selectNodesOnDrag:A,onNodeDragStart:N,onSelectionDragStart:R,unselectNodesAndEdges:D}=t();f=!0,(!A||!S)&&!L&&E&&((H=z.get(E))!=null&&H.selected||D()),S&&A&&E&&(e==null||e(E));const Y=_i(O.sourceEvent,{transform:I,snapGrid:M,snapToGrid:j,containerBounds:u});if(i=Y,a=GD(z,_,Y,E),a.size>0&&(n||N||!E&&R)){const[V,U]=Wl({nodeId:E,dragItems:a,nodeLookup:z});n==null||n(O.sourceEvent,a,V,U),N==null||N(O.sourceEvent,V,U),E||R==null||R(O.sourceEvent,U)}}const B=Yv().clickDistance(k).on("start",O=>{const{domNode:z,nodeDragThreshold:L,transform:_,snapGrid:I,snapToGrid:M}=t();u=(z==null?void 0:z.getBoundingClientRect())||null,h=!1,x=!1,L===0&&P(O),i=_i(O.sourceEvent,{transform:_,snapGrid:I,snapToGrid:M,containerBounds:u}),c=In(O.sourceEvent,u)}).on("drag",O=>{const{autoPanOnNodeDrag:z,transform:L,snapGrid:_,snapToGrid:I,nodeDragThreshold:M,nodeLookup:j}=t(),A=_i(O.sourceEvent,{transform:L,snapGrid:_,snapToGrid:I,containerBounds:u});if((O.sourceEvent.type==="touchmove"&&O.sourceEvent.touches.length>1||E&&!j.has(E))&&(h=!0),!h){if(!l&&z&&f&&(l=!0,T()),!f){const N=A.xSnapped-(i.x??0),R=A.ySnapped-(i.y??0);Math.sqrt(N*N+R*R)>M&&P(O)}(i.x!==A.xSnapped||i.y!==A.ySnapped)&&a&&f&&(c=In(O.sourceEvent,u),C(A,O.sourceEvent))}}).on("end",O=>{if(!(!f||h)&&(l=!1,f=!1,cancelAnimationFrame(s),a.size>0)){const{nodeLookup:z,updateNodePositions:L,onNodeDragStop:_,onSelectionDragStop:I}=t();if(x&&(L(a,!1),x=!1),o||_||!E&&I){const[M,j]=Wl({nodeId:E,dragItems:a,nodeLookup:z,dragging:!1});o==null||o(O.sourceEvent,a,M,j),_==null||_(O.sourceEvent,M,j),E||I==null||I(O.sourceEvent,j)}}}).filter(O=>{const z=O.target;return!O.button&&(!y||!Xp(z,`.${y}`,w))&&(!b||Xp(z,b,w))});p.call(B)}function v(){p==null||p.on(".drag",null)}return{update:m,destroy:v}}function qD(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())Vi(o,Po(i))>0&&r.push(i);return r}const KD=250;function XD(e,t,n,r){var a,l;let o=[],i=1/0;const s=qD(e,n,t+KD);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}=Ui(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,...Ui(s,l,l.position,!0)}:l}function jy(e,t){return e||(t!=null&&t.classList.contains("target")?"target":t!=null&&t.classList.contains("source")?"source":null)}function ZD(e,t){let n=null;return t?n=!0:e&&!t&&(n=!1),n}const Iy=()=>!0;function QD(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:m,onConnectEnd:v,isValidConnection:y=Iy,onReconnectEnd:b,updateConnection:w,getTransform:S,getFromHandle:E,autoPanSpeed:k,dragThreshold:C=1}){const T=wy(e.target);let P=0,B;const{x:O,y:z}=In(e),L=T==null?void 0:T.elementFromPoint(O,z),_=jy(i,L),I=a==null?void 0:a.getBoundingClientRect();let M=!1;if(!I||!_)return;const j=Ny(o,_,r,l,t);if(!j)return;let A=In(e,I),N=!1,R=null,D=!1,Y=null;function H(){if(!u||!I)return;const[re,K]=my(A,I,k);p({x:re,y:K}),P=requestAnimationFrame(H)}const V={...j,nodeId:o,type:_,position:j.position},U=l.get(o);let F={inProgress:!0,isValid:null,from:Ui(U,V,ge.Left,!0),fromHandle:V,fromPosition:V.position,fromNode:U,to:A,toHandle:null,toPosition:$p[V.position],toNode:null};function W(){M=!0,w(F),x==null||x(e,{nodeId:o,handleId:r,handleType:_})}C===0&&W();function X(re){if(!M){const{x:he,y:ue}=In(re),we=he-O,Ee=ue-z;if(!(we*we+Ee*Ee>C*C))return;W()}if(!E()||!V){Q(re);return}const K=S();A=In(re,I),B=XD(rs(A,K,!1,[1,1]),n,l,V),N||(H(),N=!0);const ne=My(re,{handle:B,connectionMode:t,fromNodeId:o,fromHandleId:r,fromType:s?"target":"source",isValidConnection:y,doc:T,lib:c,flowId:f,nodeLookup:l});Y=ne.handleDomNode,R=ne.connection,D=ZD(!!B,ne.isValid);const ie={...F,isValid:D,to:ne.toHandle&&D?xa({x:ne.toHandle.x,y:ne.toHandle.y},K):A,toHandle:ne.toHandle,toPosition:D&&ne.toHandle?ne.toHandle.position:$p[V.position],toNode:ne.toHandle?l.get(ne.toHandle.nodeId):null};D&&B&&F.toHandle&&ie.toHandle&&F.toHandle.type===ie.toHandle.type&&F.toHandle.nodeId===ie.toHandle.nodeId&&F.toHandle.id===ie.toHandle.id&&F.to.x===ie.to.x&&F.to.y===ie.to.y||(w(ie),F=ie)}function Q(re){if(M){(B||Y)&&R&&D&&(m==null||m(R));const{inProgress:K,...ne}=F,ie={...ne,toPosition:F.toHandle?F.toPosition:null};v==null||v(re,ie),i&&(b==null||b(re,ie))}h(),cancelAnimationFrame(P),N=!1,D=!1,R=null,Y=null,T.removeEventListener("mousemove",X),T.removeEventListener("mouseup",Q),T.removeEventListener("touchmove",X),T.removeEventListener("touchend",Q)}T.addEventListener("mousemove",X),T.addEventListener("mouseup",Q),T.addEventListener("touchmove",X),T.addEventListener("touchend",Q)}function My(e,{handle:t,connectionMode:n,fromNodeId:r,fromHandleId:o,fromType:i,doc:s,lib:a,flowId:l,isValidConnection:c=Iy,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}=In(e),m=s.elementFromPoint(h,x),v=m!=null&&m.classList.contains(`${a}-flow__handle`)?m:p,y={handleDomNode:v,isValid:!1,connection:null,toHandle:null};if(v){const b=jy(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 P=E&&k&&(n===Mo.Strict?f&&b==="source"||!f&&b==="target":w!==r||S!==o);y.isValid=P&&c(C),y.toHandle=Ny(w,b,S,u,n,!0)}return y}const Fc={onPointerDown:QD,isValid:My};function JD({domNode:e,panZoom:t,getTransform:n,getViewScale:r}){const o=on(e);function i({translateExtent:a,width:l,height:c,zoomStep:u=10,pannable:f=!0,zoomable:p=!0,inversePan:h=!1}){const x=w=>{const S=n();if(w.sourceEvent.type!=="wheel"||!t)return;const E=-w.sourceEvent.deltaY*(w.sourceEvent.deltaMode===1?.05:w.sourceEvent.deltaMode?1:.002)*u,k=S[2]*Math.pow(2,E);t.scaleTo(k)};let m=[0,0];const v=w=>{(w.sourceEvent.type==="mousedown"||w.sourceEvent.type==="touchstart")&&(m=[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]-m[0],E[1]-m[1]];m=E;const C=r()*Math.max(S[2],Math.log(S[2]))*(h?-1:1),T={x:S[0]-k[0]*C,y:S[1]-k[1]*C},P=[[0,0],[l,c]];t.setViewportConstrained({x:T.x,y:T.y,zoom:S[2]},P,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:mn}}const eO=(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}),Gl=({x:e,y:t,zoom:n})=>Qa.translate(e,t).scale(n),vo=(e,t)=>e.target.closest(`.${t}`),Ry=(e,t)=>t===2&&Array.isArray(e)&&e.includes(2),tO=e=>((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2,Yl=(e,t=0,n=tO,r=()=>{})=>{const o=typeof t=="number"&&t>0;return o||r(),o?e.transition().duration(t).ease(n).on("end",r):e},Py=e=>{const t=e.ctrlKey&&va()?10:1;return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*t};function nO({zoomPanValues:e,noWheelClassName:t,d3Selection:n,d3Zoom:r,panOnScrollMode:o,panOnScrollSpeed:i,zoomOnPinch:s,onPanZoomStart:a,onPanZoom:l,onPanZoomEnd:c}){return u=>{if(vo(u,t))return!1;u.preventDefault(),u.stopImmediatePropagation();const f=n.property("__zoom").k||1;if(u.ctrlKey&&s){const v=mn(u),y=Py(u),b=f*Math.pow(2,y);r.scaleTo(n,b,v,u);return}const p=u.deltaMode===1?20:1;let h=o===Or.Vertical?0:u.deltaX*p,x=o===Or.Horizontal?0:u.deltaY*p;!va()&&u.shiftKey&&o!==Or.Vertical&&(h=u.deltaY*p,x=0),r.translateBy(n,-(h/f)*i,-(x/f)*i,{internal:!0});const m=nl(n.property("__zoom"));clearTimeout(e.panScrollTimeout),e.isPanScrolling||(e.isPanScrolling=!0,a==null||a(u,m)),e.isPanScrolling&&(l==null||l(u,m),e.panScrollTimeout=setTimeout(()=>{c==null||c(u,m),e.isPanScrolling=!1},150))}}function rO({noWheelClassName:e,preventScrolling:t,d3ZoomHandler:n}){return function(r,o){const i=r.type==="wheel",s=!t&&i&&!r.ctrlKey,a=vo(r,e);if(r.ctrlKey&&i&&a&&r.preventDefault(),s||a)return null;r.preventDefault(),n.call(this,r,o)}}function oO({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 iO({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 sO({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&&eO(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 aO({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"&&(vo(u,`${c}-flow__node`)||vo(u,`${c}-flow__edge`)))return!0;if(!r&&!f&&!o&&!i&&!n||s||vo(u,a)&&u.type==="wheel"||vo(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 lO({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(!vn(r)||r<0?0:r).scaleExtent([t,n]).translateExtent(o),h=on(e).call(p);w({x:i.x,y:i.y,zoom:Ro(i.zoom,t,n)},[[0,0],[f.width,f.height]],o);const x=h.on("wheel.zoom"),m=h.on("dblclick.zoom");p.wheelDelta(Py);function v(z,L){return h?new Promise(_=>{p==null||p.interpolate((L==null?void 0:L.interpolate)==="linear"?Ci:Bs).transform(Yl(h,L==null?void 0:L.duration,L==null?void 0:L.ease,()=>_(!0)),z)}):Promise.resolve(!1)}function y({noWheelClassName:z,noPanClassName:L,onPaneContextMenu:_,userSelectionActive:I,panOnScroll:M,panOnDrag:j,panOnScrollMode:A,panOnScrollSpeed:N,preventScrolling:R,zoomOnPinch:D,zoomOnScroll:Y,zoomOnDoubleClick:H,zoomActivationKeyPressed:V,lib:U,onTransformChange:G}){I&&!u.isZoomingOrPanning&&b();const W=M&&!V&&!I?nO({zoomPanValues:u,noWheelClassName:z,d3Selection:h,d3Zoom:p,panOnScrollMode:A,panOnScrollSpeed:N,zoomOnPinch:D,onPanZoomStart:a,onPanZoom:s,onPanZoomEnd:l}):rO({noWheelClassName:z,preventScrolling:R,d3ZoomHandler:x});if(h.on("wheel.zoom",W,{passive:!1}),!I){const Q=oO({zoomPanValues:u,onDraggingChange:c,onPanZoomStart:a});p.on("start",Q);const re=iO({zoomPanValues:u,panOnDrag:j,onPaneContextMenu:!!_,onPanZoom:s,onTransformChange:G});p.on("zoom",re);const K=sO({zoomPanValues:u,panOnDrag:j,panOnScroll:M,onPaneContextMenu:_,onPanZoomEnd:l,onDraggingChange:c});p.on("end",K)}const X=aO({zoomActivationKeyPressed:V,panOnDrag:j,zoomOnScroll:Y,panOnScroll:M,zoomOnDoubleClick:H,zoomOnPinch:D,userSelectionActive:I,noPanClassName:L,noWheelClassName:z,lib:U});p.filter(X),H?h.on("dblclick.zoom",m):h.on("dblclick.zoom",null)}function b(){p.on("zoom",null)}async function w(z,L,_){const I=Gl(z),M=p==null?void 0:p.constrain()(I,L,_);return M&&await v(M),new Promise(j=>j(M))}async function S(z,L){const _=Gl(z);return await v(_,L),new Promise(I=>I(_))}function E(z){if(h){const L=Gl(z),_=h.property("__zoom");(_.k!==z.zoom||_.x!==z.x||_.y!==z.y)&&(p==null||p.transform(h,L,null,{sync:!0}))}}function k(){const z=h?ay(h.node()):{x:0,y:0,k:1};return{x:z.x,y:z.y,zoom:z.k}}function C(z,L){return h?new Promise(_=>{p==null||p.interpolate((L==null?void 0:L.interpolate)==="linear"?Ci:Bs).scaleTo(Yl(h,L==null?void 0:L.duration,L==null?void 0:L.ease,()=>_(!0)),z)}):Promise.resolve(!1)}function T(z,L){return h?new Promise(_=>{p==null||p.interpolate((L==null?void 0:L.interpolate)==="linear"?Ci:Bs).scaleBy(Yl(h,L==null?void 0:L.duration,L==null?void 0:L.ease,()=>_(!0)),z)}):Promise.resolve(!1)}function P(z){p==null||p.scaleExtent(z)}function B(z){p==null||p.translateExtent(z)}function O(z){const L=!vn(z)||z<0?0:z;p==null||p.clickDistance(L)}return{update:y,destroy:b,setViewport:S,setViewportConstrained:w,getViewport:k,scaleTo:C,scaleBy:T,setScaleExtent:P,setTranslateExtent:B,syncViewport:E,setClickDistance:O}}var Oo;(function(e){e.Line="line",e.Handle="handle"})(Oo||(Oo={}));function cO({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 uO(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 ir(e,t){return Math.max(0,t-e)}function sr(e,t){return Math.max(0,e-t)}function Ts(e,t,n){return Math.max(0,t-e,e-n)}function Zp(e,t){return e?!t:t}function dO(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:m,maxWidth:v,minHeight:y,maxHeight:b}=r,{x:w,y:S,width:E,height:k,aspectRatio:C}=e;let T=Math.floor(u?h-e.pointerX:0),P=Math.floor(f?x-e.pointerY:0);const B=E+(l?-T:T),O=k+(c?-P:P),z=-i[0]*E,L=-i[1]*k;let _=Ts(B,m,v),I=Ts(O,y,b);if(s){let A=0,N=0;l&&T<0?A=ir(w+T+z,s[0][0]):!l&&T>0&&(A=sr(w+B+z,s[1][0])),c&&P<0?N=ir(S+P+L,s[0][1]):!c&&P>0&&(N=sr(S+O+L,s[1][1])),_=Math.max(_,A),I=Math.max(I,N)}if(a){let A=0,N=0;l&&T>0?A=sr(w+T,a[0][0]):!l&&T<0&&(A=ir(w+B,a[1][0])),c&&P>0?N=sr(S+P,a[0][1]):!c&&P<0&&(N=ir(S+O,a[1][1])),_=Math.max(_,A),I=Math.max(I,N)}if(o){if(u){const A=Ts(B/C,y,b)*C;if(_=Math.max(_,A),s){let N=0;!l&&!c||l&&!c&&p?N=sr(S+L+B/C,s[1][1])*C:N=ir(S+L+(l?T:-T)/C,s[0][1])*C,_=Math.max(_,N)}if(a){let N=0;!l&&!c||l&&!c&&p?N=ir(S+B/C,a[1][1])*C:N=sr(S+(l?T:-T)/C,a[0][1])*C,_=Math.max(_,N)}}if(f){const A=Ts(O*C,m,v)/C;if(I=Math.max(I,A),s){let N=0;!l&&!c||c&&!l&&p?N=sr(w+O*C+z,s[1][0])/C:N=ir(w+(c?P:-P)*C+z,s[0][0])/C,I=Math.max(I,N)}if(a){let N=0;!l&&!c||c&&!l&&p?N=ir(w+O*C,a[1][0])/C:N=sr(w+(c?P:-P)*C,a[0][0])/C,I=Math.max(I,N)}}}P=P+(P<0?I:-I),T=T+(T<0?_:-_),o&&(p?B>O*C?P=(Zp(l,c)?-T:T)/C:T=(Zp(l,c)?-P:P)*C:u?(P=T/C,c=l):(T=P*C,l=c));const M=l?w+T:w,j=c?S+P:S;return{width:E+(l?-T:T),height:k+(c?-P:P),x:i[0]*T*(l?-1:1)+M,y:i[1]*P*(c?-1:1)+j}}const Dy={width:0,height:0,x:0,y:0},fO={...Dy,pointerX:0,pointerY:0,aspectRatio:1};function pO(e){return[[0,0],[e.measured.width,e.measured.height]]}function hO(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 gO({domNode:e,nodeId:t,getStoreItems:n,onChange:r,onEnd:o}){const i=on(e);function s({controlPosition:l,boundaries:c,keepAspectRatio:u,resizeDirection:f,onResizeStart:p,onResize:h,onResizeEnd:x,shouldResize:m}){let v={...Dy},y={...fO};const b=uO(l);let w,S=null,E=[],k,C,T;const P=Yv().on("start",B=>{const{nodeLookup:O,transform:z,snapGrid:L,snapToGrid:_,nodeOrigin:I,paneDomNode:M}=n();if(w=O.get(t),!w)return;S=(M==null?void 0:M.getBoundingClientRect())??null;const{xSnapped:j,ySnapped:A}=_i(B.sourceEvent,{transform:z,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:j,pointerY:A,aspectRatio:v.width/v.height},k=void 0,w.parentId&&(w.extent==="parent"||w.expandParent)&&(k=O.get(w.parentId),C=k&&w.extent==="parent"?pO(k):void 0),E=[],T=void 0;for(const[N,R]of O)if(R.parentId===t&&(E.push({id:N,position:{...R.position},extent:R.extent}),R.extent==="parent"||R.expandParent)){const D=hO(R,w,R.origin??I);T?T=[[Math.min(D[0][0],T[0][0]),Math.min(D[0][1],T[0][1])],[Math.max(D[1][0],T[1][0]),Math.max(D[1][1],T[1][1])]]:T=D}p==null||p(B,{...v})}).on("drag",B=>{const{transform:O,snapGrid:z,snapToGrid:L,nodeOrigin:_}=n(),I=_i(B.sourceEvent,{transform:O,snapGrid:z,snapToGrid:L,containerBounds:S}),M=[];if(!w)return;const{x:j,y:A,width:N,height:R}=v,D={},Y=w.origin??_,{width:H,height:V,x:U,y:G}=dO(y,b,I,c,u,Y,C,T),F=H!==N,W=V!==R,X=U!==j&&F,Q=G!==A&&W;if(!X&&!Q&&!F&&!W)return;if((X||Q||Y[0]===1||Y[1]===1)&&(D.x=X?U:v.x,D.y=Q?G:v.y,v.x=D.x,v.y=D.y,E.length>0)){const ie=U-j,he=G-A;for(const ue of E)ue.position={x:ue.position.x-ie+Y[0]*(H-N),y:ue.position.y-he+Y[1]*(V-R)},M.push(ue)}if((F||W)&&(D.width=F&&(!f||f==="horizontal")?H:v.width,D.height=W&&(!f||f==="vertical")?V:v.height,v.width=D.width,v.height=D.height),k&&w.expandParent){const ie=Y[0]*(D.width??0);D.x&&D.x<ie&&(v.x=ie,y.x=y.x-(D.x-ie));const he=Y[1]*(D.height??0);D.y&&D.y<he&&(v.y=he,y.y=y.y-(D.y-he))}const re=cO({width:v.width,prevWidth:N,height:v.height,prevHeight:R,affectsX:b.affectsX,affectsY:b.affectsY}),K={...v,direction:re};(m==null?void 0:m(B,K))!==!1&&(h==null||h(B,K),r(D,M))}).on("end",B=>{x==null||x(B,{...v}),o==null||o({...v})});i.call(P)}function a(){i.on(".drag",null)}return{update:s,destroy:a}}var ql={exports:{}},Kl={};/**
644
- * @license React
645
- * use-sync-external-store-shim/with-selector.production.js
646
- *
647
- * Copyright (c) Meta Platforms, Inc. and affiliates.
648
- *
649
- * This source code is licensed under the MIT license found in the
650
- * LICENSE file in the root directory of this source tree.
651
- */var Qp;function mO(){if(Qp)return Kl;Qp=1;var e=ka(),t=bk();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 Kl.useSyncExternalStoreWithSelector=function(c,u,f,p,h){var x=i(null);if(x.current===null){var m={hasValue:!1,value:null};x.current=m}else m=x.current;x=a(function(){function y(k){if(!b){if(b=!0,w=k,k=p(k),h!==void 0&&m.hasValue){var C=m.value;if(h(C,k))return S=C}return S=k}if(C=S,r(w,k))return C;var T=p(k);return h!==void 0&&h(C,T)?(w=k,C):(w=k,S=T)}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(){m.hasValue=!0,m.value=v},[v]),l(v),v},Kl}var Jp;function xO(){return Jp||(Jp=1,ql.exports=mO()),ql.exports}var vO=xO();const yO=Qc(vO),wO={},eh=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:()=>{(wO?"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},bO=e=>e?eh(e):eh,{useDebugValue:EO}=$t,{useSyncExternalStoreWithSelector:SO}=yO,kO=e=>e;function Oy(e,t=kO,n){const r=SO(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,n);return EO(r),r}const th=(e,t)=>{const n=bO(e),r=(o,i=t)=>Oy(n,o,i);return Object.assign(r,n),r},CO=(e,t)=>e?th(e,t):th;function wt(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=g.createContext(null),_O=rl.Provider,Ly=Ln.error001();function nt(e,t){const n=g.useContext(rl);if(n===null)throw new Error(Ly);return Oy(n,e,t)}function mt(){const e=g.useContext(rl);if(e===null)throw new Error(Ly);return g.useMemo(()=>({getState:e.getState,setState:e.setState,subscribe:e.subscribe}),[e])}const nh={display:"none"},TO={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",AO="react-flow__aria-live",NO=e=>e.ariaLiveMessage,jO=e=>e.ariaLabelConfig;function IO({rfId:e}){const t=nt(NO);return d.jsx("div",{id:`${AO}-${e}`,"aria-live":"assertive","aria-atomic":"true",style:TO,children:t})}function MO({rfId:e,disableKeyboardA11y:t}){const n=nt(jO);return d.jsxs(d.Fragment,{children:[d.jsx("div",{id:`${$y}-${e}`,style:nh,children:t?n["node.a11yDescription.default"]:n["node.a11yDescription.keyboardDisabled"]}),d.jsx("div",{id:`${zy}-${e}`,style:nh,children:n["edge.a11yDescription.default"]}),!t&&d.jsx(IO,{rfId:e})]})}const os=g.forwardRef(({position:e="top-left",children:t,className:n,style:r,...o},i)=>{const s=`${e}`.split("-");return d.jsx("div",{className:Pt(["react-flow__panel",n,...s]),style:r,ref:i,...o,children:t})});os.displayName="Panel";function RO({proOptions:e,position:t="bottom-right"}){return e!=null&&e.hideAttribution?null:d.jsx(os,{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 PO=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}},As=e=>e.id;function DO(e,t){return wt(e.selectedNodes.map(As),t.selectedNodes.map(As))&&wt(e.selectedEdges.map(As),t.selectedEdges.map(As))}function OO({onSelectionChange:e}){const t=mt(),{selectedNodes:n,selectedEdges:r}=nt(PO,DO);return g.useEffect(()=>{const o={nodes:n,edges:r};e==null||e(o),t.getState().onSelectionChangeHandlers.forEach(i=>i(o))},[n,r,e]),null}const LO=e=>!!e.onSelectionChangeHandlers;function $O({onSelectionChange:e}){const t=nt(LO);return e||t?d.jsx(OO,{onSelectionChange:e}):null}const Fy=[0,0],zO={x:0,y:0,zoom:1},FO=["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"],rh=[...FO,"rfId"],BO=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}),oh={translateExtent:Fi,nodeOrigin:Fy,minZoom:.5,maxZoom:2,elementsSelectable:!0,noPanClassName:"nopan",rfId:"1",paneClickDistance:0};function HO(e){const{setNodes:t,setEdges:n,setMinZoom:r,setMaxZoom:o,setTranslateExtent:i,setNodeExtent:s,reset:a,setDefaultNodesAndEdges:l,setPaneClickDistance:c}=nt(BO,wt),u=mt();g.useEffect(()=>(l(e.defaultNodes,e.defaultEdges),()=>{f.current=oh,a()}),[]);const f=g.useRef(oh);return g.useEffect(()=>{for(const p of rh){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:AD(h)}):p==="fitView"?u.setState({fitViewQueued:h}):p==="fitViewOptions"?u.setState({fitViewOptions:h}):u.setState({[p]:h})))}f.current=e},rh.map(p=>e[p])),null}function ih(){return typeof window>"u"||!window.matchMedia?null:window.matchMedia("(prefers-color-scheme: dark)")}function VO(e){var r;const[t,n]=g.useState(e==="system"?null:e);return g.useEffect(()=>{if(e!=="system"){n(e);return}const o=ih(),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=ih())!=null&&r.matches?"dark":"light"}const sh=typeof document<"u"?document:null;function Wi(e=null,t={target:sh,actInsideInputWithModifier:!0}){const[n,r]=g.useState(!1),o=g.useRef(!1),i=g.useRef(new Set([])),[s,a]=g.useMemo(()=>{if(e!==null){const c=(Array.isArray(e)?e:[e]).filter(f=>typeof f=="string").map(f=>f.replace("+",`
652
- `).replace(`
653
-
654
- `,`
655
- +`).split(`
656
- `)),u=c.reduce((f,p)=>f.concat(...p),[]);return[c,u]}return[[],[]]},[e]);return g.useEffect(()=>{const l=(t==null?void 0:t.target)??sh,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 m=lh(h.code,a);if(i.current.add(h[m]),ah(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=lh(h.code,a);ah(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 ah(e,t,n){return e.filter(r=>n||r.length===t.size).some(r=>r.every(o=>t.has(o)))}function lh(e,t){return t.includes(e)?"code":"key"}const UO=()=>{const e=mt();return g.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=gd(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 rs(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=xa(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)WO(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 WO(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 Vy(e,t){return By(e,t)}function Ar(e,t){return{id:e,type:"select",selected:t}}function yo(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(Ar(i.id,s)))}return r}function ch({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 uh(e){return{id:e.id,type:"remove"}}const dh=e=>vD(e),GO=e=>py(e);function Uy(e){return g.forwardRef(e)}const YO=typeof window<"u"?g.useLayoutEffect:g.useEffect;function fh(e){const[t,n]=g.useState(BigInt(0)),[r]=g.useState(()=>qO(()=>n(o=>o+BigInt(1))));return YO(()=>{const o=r.get();o.length&&(e(o),r.reset())},[t]),r}function qO(e){let t=[];return{get:()=>t,reset:()=>{t=[]},push:n=>{t.push(n),e()}}}const Wy=g.createContext(null);function KO({children:e}){const t=mt(),n=g.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 m=ch({items:x,lookup:p});u&&c(x),m.length>0?f==null||f(m):h&&window.requestAnimationFrame(()=>{const{fitViewQueued:v,nodes:y,setNodes:b}=t.getState();v&&b(y)})},[]),r=fh(n),o=g.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(ch({items:h,lookup:p}))},[]),i=fh(o),s=g.useMemo(()=>({nodeQueue:r,edgeQueue:i}),[]);return d.jsx(Wy.Provider,{value:s,children:e})}function XO(){const e=g.useContext(Wy);if(!e)throw new Error("useBatchContext must be used within a BatchProvider");return e}const ZO=e=>!!e.panZoom;function ol(){const e=UO(),t=mt(),n=XO(),r=nt(ZO),o=g.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=dh(f)?f:p.get(f.id),m=x.parentId?yy(x.position,x.measured,x.parentId,p,h):x.position,v={...x,position:m,width:((y=x.measured)==null?void 0:y.width)??x.width,height:((b=x.measured)==null?void 0:b.height)??x.height};return Po(v)},c=(f,p,h={replace:!1})=>{s(x=>x.map(m=>{if(m.id===f){const v=typeof p=="function"?p(m):p;return h.replace&&dh(v)?v:{...m,...v}}return m}))},u=(f,p,h={replace:!1})=>{a(x=>x.map(m=>{if(m.id===f){const v=typeof p=="function"?p(m):p;return h.replace&&GO(v)?v:{...m,...v}}return m}))};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,m,v]=h;return{nodes:f.map(y=>({...y})),edges:p.map(y=>({...y})),viewport:{x,y:m,zoom:v}}},deleteElements:async({nodes:f=[],edges:p=[]})=>{const{nodes:h,edges:x,onNodesDelete:m,onEdgesDelete:v,triggerNodeChanges:y,triggerEdgeChanges:b,onDelete:w,onBeforeDelete:S}=t.getState(),{nodes:E,edges:k}=await SD({nodesToRemove:f,edgesToRemove:p,nodes:h,edges:x,onBeforeDelete:S}),C=k.length>0,T=E.length>0;if(C){const P=k.map(uh);v==null||v(k),b(P)}if(T){const P=E.map(uh);m==null||m(E),y(P)}return(T||C)&&(w==null||w({nodes:E,edges:k})),{deletedNodes:E,deletedEdges:k}},getIntersectingNodes:(f,p=!0,h)=>{const x=Fp(f),m=x?f:l(f),v=h!==void 0;return m?(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=Po(v?y:b),S=Vi(w,m);return p&&S>0||S>=m.width*m.height}):[]},isNodeIntersecting:(f,p,h=!0)=>{const m=Fp(f)?f:l(f);if(!m)return!1;const v=Vi(m,p);return h&&v>0||v>=m.width*m.height},updateNode:c,updateNodeData:(f,p,h={replace:!1})=>{c(f,x=>{const m=typeof p=="function"?p(x):p;return h.replace?{...x,data:m}:{...x,data:{...x.data,...m}}},h)},updateEdge:u,updateEdgeData:(f,p,h={replace:!1})=>{u(f,x=>{const m=typeof p=="function"?p(x):p;return h.replace?{...x,data:m}:{...x,data:{...x.data,...m}}},h)},getNodesBounds:f=>{const{nodeLookup:p,nodeOrigin:h}=t.getState();return yD(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??TD();return t.setState({fitViewQueued:!0,fitViewOptions:f,fitViewResolver:p}),n.nodeQueue.push(h=>[...h]),p.promise}}},[]);return g.useMemo(()=>({...o,...e,viewportInitialized:r}),[r])}const ph=e=>e.selected,QO=typeof window<"u"?window:void 0;function JO({deleteKeyCode:e,multiSelectionKeyCode:t}){const n=mt(),{deleteElements:r}=ol(),o=Wi(e,{actInsideInputWithModifier:!1}),i=Wi(t,{target:QO});g.useEffect(()=>{if(o){const{edges:s,nodes:a}=n.getState();r({nodes:a.filter(ph),edges:s.filter(ph)}),n.setState({nodesSelectionActive:!1})}},[o]),g.useEffect(()=>{n.setState({multiSelectionActive:i})},[i])}function eL(e){const t=mt();g.useEffect(()=>{const n=()=>{var o,i;if(!e.current)return!1;const r=md(e.current);(r.height===0||r.width===0)&&((i=(o=t.getState()).onError)==null||i.call(o,"004",Ln.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},tL=e=>({userSelectionActive:e.userSelectionActive,lib:e.lib});function nL({onPaneContextMenu:e,zoomOnScroll:t=!0,zoomOnPinch:n=!0,panOnScroll:r=!1,panOnScrollSpeed:o=.5,panOnScrollMode:i=Or.Free,zoomOnDoubleClick:s=!0,panOnDrag:a=!0,defaultViewport:l,translateExtent:c,minZoom:u,maxZoom:f,zoomActivationKeyCode:p,preventScrolling:h=!0,children:x,noWheelClassName:m,noPanClassName:v,onViewportChange:y,isControlledViewport:b,paneClickDistance:w}){const S=mt(),E=g.useRef(null),{userSelectionActive:k,lib:C}=nt(tL,wt),T=Wi(p),P=g.useRef();eL(E);const B=g.useCallback(O=>{y==null||y({x:O[0],y:O[1],zoom:O[2]}),b||S.setState({transform:O})},[y,b]);return g.useEffect(()=>{if(E.current){P.current=lO({domNode:E.current,minZoom:u,maxZoom:f,translateExtent:c,viewport:l,paneClickDistance:w,onDraggingChange:_=>S.setState({paneDragging:_}),onPanZoomStart:(_,I)=>{const{onViewportChangeStart:M,onMoveStart:j}=S.getState();j==null||j(_,I),M==null||M(I)},onPanZoom:(_,I)=>{const{onViewportChange:M,onMove:j}=S.getState();j==null||j(_,I),M==null||M(I)},onPanZoomEnd:(_,I)=>{const{onViewportChangeEnd:M,onMoveEnd:j}=S.getState();j==null||j(_,I),M==null||M(I)}});const{x:O,y:z,zoom:L}=P.current.getViewport();return S.setState({panZoom:P.current,transform:[O,z,L],domNode:E.current.closest(".react-flow")}),()=>{var _;(_=P.current)==null||_.destroy()}}},[]),g.useEffect(()=>{var O;(O=P.current)==null||O.update({onPaneContextMenu:e,zoomOnScroll:t,zoomOnPinch:n,panOnScroll:r,panOnScrollSpeed:o,panOnScrollMode:i,zoomOnDoubleClick:s,panOnDrag:a,zoomActivationKeyPressed:T,preventScrolling:h,noPanClassName:v,userSelectionActive:k,noWheelClassName:m,lib:C,onTransformChange:B})},[e,t,n,r,o,i,s,a,T,h,v,k,m,C,B]),d.jsx("div",{className:"react-flow__renderer",ref:E,style:il,children:x})}const rL=e=>({userSelectionActive:e.userSelectionActive,userSelectionRect:e.userSelectionRect});function oL(){const{userSelectionActive:e,userSelectionRect:t}=nt(rL,wt);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 Xl=(e,t)=>n=>{n.target===t.current&&(e==null||e(n))},iL=e=>({userSelectionActive:e.userSelectionActive,elementsSelectable:e.elementsSelectable,connectionInProgress:e.connection.inProgress,dragging:e.paneDragging});function sL({isSelecting:e,selectionKeyPressed:t,selectionMode:n=Bi.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=mt(),{userSelectionActive:m,elementsSelectable:v,dragging:y,connectionInProgress:b}=nt(iL,wt),w=v&&(e||m),S=g.useRef(null),E=g.useRef(),k=g.useRef(new Set),C=g.useRef(new Set),T=g.useRef(!1),P=g.useRef(!1),B=j=>{if(T.current||b){T.current=!1;return}a==null||a(j),x.getState().resetSelectedElements(),x.setState({nodesSelectionActive:!1})},O=j=>{if(Array.isArray(r)&&(r!=null&&r.includes(2))){j.preventDefault();return}l==null||l(j)},z=c?j=>c(j):void 0,L=j=>{var Y,H;const{resetSelectedElements:A,domNode:N}=x.getState();if(E.current=N==null?void 0:N.getBoundingClientRect(),!v||!e||j.button!==0||j.target!==S.current||!E.current)return;(H=(Y=j.target)==null?void 0:Y.setPointerCapture)==null||H.call(Y,j.pointerId),P.current=!0,T.current=!1;const{x:R,y:D}=In(j.nativeEvent,E.current);A(),x.setState({userSelectionRect:{width:0,height:0,startX:R,startY:D,x:R,y:D}}),i==null||i(j)},_=j=>{const{userSelectionRect:A,transform:N,nodeLookup:R,edgeLookup:D,connectionLookup:Y,triggerNodeChanges:H,triggerEdgeChanges:V,defaultEdgeOptions:U}=x.getState();if(!E.current||!A)return;T.current=!0;const{x:G,y:F}=In(j.nativeEvent,E.current),{startX:W,startY:X}=A,Q={startX:W,startY:X,x:G<W?G:W,y:F<X?F:X,width:Math.abs(G-W),height:Math.abs(F-X)},re=k.current,K=C.current;k.current=new Set(hd(R,Q,N,n===Bi.Partial,!0).map(ie=>ie.id)),C.current=new Set;const ne=(U==null?void 0:U.selectable)??!0;for(const ie of k.current){const he=Y.get(ie);if(he)for(const{edgeId:ue}of he.values()){const we=D.get(ue);we&&(we.selectable??ne)&&C.current.add(ue)}}if(!Bp(re,k.current)){const ie=yo(R,k.current,!0);H(ie)}if(!Bp(K,C.current)){const ie=yo(D,C.current);V(ie)}x.setState({userSelectionRect:Q,userSelectionActive:!0,nodesSelectionActive:!1})},I=j=>{var N,R;if(j.button!==0||!P.current)return;(R=(N=j.target)==null?void 0:N.releasePointerCapture)==null||R.call(N,j.pointerId);const{userSelectionRect:A}=x.getState();!m&&A&&j.target===S.current&&(B==null||B(j)),x.setState({userSelectionActive:!1,userSelectionRect:null,nodesSelectionActive:k.current.size>0}),s==null||s(j),(t||o)&&(T.current=!1),P.current=!1},M=r===!0||Array.isArray(r)&&r.includes(0);return d.jsxs("div",{className:Pt(["react-flow__pane",{draggable:M,dragging:y,selection:e}]),onClick:w?void 0:Xl(B,S),onContextMenu:Xl(O,S),onWheel:Xl(z,S),onPointerEnter:w?void 0:u,onPointerDown:w?L:f,onPointerMove:w?_:f,onPointerUp:w?I:void 0,onPointerLeave:p,ref:S,style:il,children:[h,d.jsx(oL,{})]})}function Bc({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",Ln.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=mt(),[l,c]=g.useState(!1),u=g.useRef();return g.useEffect(()=>{u.current=YD({getStoreItems:()=>a.getState(),onNodeMouseDown:f=>{Bc({id:f,store:a,nodeRef:e})},onDragStart:()=>{c(!0)},onDragStop:()=>{c(!1)}})},[]),g.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 aL=e=>t=>t.selected&&(t.draggable||e&&typeof t.draggable>"u");function Yy(){const e=mt();return g.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=aL(s),h=o?i[0]:5,x=o?i[1]:5,m=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+m,y:y.internals.positionAbsolute.y+v};o&&(b=tl(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 Ed=g.createContext(null),lL=Ed.Provider;Ed.Consumer;const qy=()=>g.useContext(Ed),cL=e=>({connectOnClick:e.connectOnClick,noPanClassName:e.noPanClassName,rfId:e.rfId}),uL=(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===Mo.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 dL({type:e="source",position:t=ge.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 I,M;const x=s||null,m=e==="target",v=mt(),y=qy(),{connectOnClick:b,noPanClassName:w,rfId:S}=nt(cL,wt),{connectingFrom:E,connectingTo:k,clickConnecting:C,isPossibleEndHandle:T,connectionInProcess:P,clickConnectionInProcess:B,valid:O}=nt(uL(y,x,e),wt);y||(M=(I=v.getState()).onError)==null||M.call(I,"010",Ln.error010());const z=j=>{const{defaultEdgeOptions:A,onConnect:N,hasDefaultEdges:R}=v.getState(),D={...A,...j};if(R){const{edges:Y,setEdges:H}=v.getState();H(PD(D,Y))}N==null||N(D),a==null||a(D)},L=j=>{if(!y)return;const A=Ey(j.nativeEvent);if(o&&(A&&j.button===0||!A)){const N=v.getState();Fc.onPointerDown(j.nativeEvent,{autoPanOnConnect:N.autoPanOnConnect,connectionMode:N.connectionMode,connectionRadius:N.connectionRadius,domNode:N.domNode,nodeLookup:N.nodeLookup,lib:N.lib,isTarget:m,handleId:x,nodeId:y,flowId:N.rfId,panBy:N.panBy,cancelConnection:N.cancelConnection,onConnectStart:N.onConnectStart,onConnectEnd:N.onConnectEnd,updateConnection:N.updateConnection,onConnect:z,isValidConnection:n||N.isValidConnection,getTransform:()=>v.getState().transform,getFromHandle:()=>v.getState().connection.fromHandle,autoPanSpeed:N.autoPanSpeed,dragThreshold:N.connectionDragThreshold})}A?u==null||u(j):f==null||f(j)},_=j=>{const{onClickConnectStart:A,onClickConnectEnd:N,connectionClickStartHandle:R,connectionMode:D,isValidConnection:Y,lib:H,rfId:V,nodeLookup:U,connection:G}=v.getState();if(!y||!R&&!o)return;if(!R){A==null||A(j.nativeEvent,{nodeId:y,handleId:x,handleType:e}),v.setState({connectionClickStartHandle:{nodeId:y,type:e,id:x}});return}const F=wy(j.target),W=n||Y,{connection:X,isValid:Q}=Fc.isValid(j.nativeEvent,{handle:{nodeId:y,id:x,type:e},connectionMode:D,fromNodeId:R.nodeId,fromHandleId:R.id||null,fromType:R.type,isValidConnection:W,flowId:V,doc:F,lib:H,nodeLookup:U});Q&&X&&z(X);const re=structuredClone(G);delete re.inProgress,re.toPosition=re.toHandle?re.toHandle.position:null,N==null||N(j,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:Pt(["react-flow__handle",`react-flow__handle-${t}`,"nodrag",w,c,{source:!m,target:m,connectable:r,connectablestart:o,connectableend:i,clickconnecting:C,connectingfrom:E,connectingto:k,valid:O,connectionindicator:r&&(!P||T)&&(P||B?i:o)}]),onMouseDown:L,onTouchStart:L,onClick:b?_:void 0,ref:h,...p,children:l})}const Nt=g.memo(Uy(dL));function fL({data:e,isConnectable:t,sourcePosition:n=ge.Bottom}){return d.jsxs(d.Fragment,{children:[e==null?void 0:e.label,d.jsx(Nt,{type:"source",position:n,isConnectable:t})]})}function pL({data:e,isConnectable:t,targetPosition:n=ge.Top,sourcePosition:r=ge.Bottom}){return d.jsxs(d.Fragment,{children:[d.jsx(Nt,{type:"target",position:n,isConnectable:t}),e==null?void 0:e.label,d.jsx(Nt,{type:"source",position:r,isConnectable:t})]})}function hL(){return null}function gL({data:e,isConnectable:t,targetPosition:n=ge.Top}){return d.jsxs(d.Fragment,{children:[d.jsx(Nt,{type:"target",position:n,isConnectable:t}),e==null?void 0:e.label]})}const ya={ArrowUp:{x:0,y:-1},ArrowDown:{x:0,y:1},ArrowLeft:{x:-1,y:0},ArrowRight:{x:1,y:0}},hh={input:fL,default:pL,output:gL,group:hL};function mL(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 xL=e=>{const{width:t,height:n,x:r,y:o}=ns(e.nodeLookup,{filter:i=>!!i.selected});return{width:vn(t)?t:null,height:vn(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 vL({onSelectionContextMenu:e,noPanClassName:t,disableKeyboardA11y:n}){const r=mt(),{width:o,height:i,transformString:s,userSelectionActive:a}=nt(xL,wt),l=Yy(),c=g.useRef(null);if(g.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(ya,p.key)&&(p.preventDefault(),l({direction:ya[p.key],factor:p.shiftKey?4:1}))};return d.jsx("div",{className:Pt(["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,yL=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:m,zoomActivationKeyCode:v,elementsSelectable:y,zoomOnScroll:b,zoomOnPinch:w,panOnScroll:S,panOnScrollSpeed:E,panOnScrollMode:k,zoomOnDoubleClick:C,panOnDrag:T,defaultViewport:P,translateExtent:B,minZoom:O,maxZoom:z,preventScrolling:L,onSelectionContextMenu:_,noWheelClassName:I,noPanClassName:M,disableKeyboardA11y:j,onViewportChange:A,isControlledViewport:N}){const{nodesSelectionActive:R,userSelectionActive:D}=nt(yL),Y=Wi(c,{target:gh}),H=Wi(m,{target:gh}),V=H||T,U=H||S,G=u&&V!==!0,F=Y||D||G;return JO({deleteKeyCode:l,multiSelectionKeyCode:x}),d.jsx(nL,{onPaneContextMenu:i,elementsSelectable:y,zoomOnScroll:b,zoomOnPinch:w,panOnScroll:U,panOnScrollSpeed:E,panOnScrollMode:k,zoomOnDoubleClick:C,panOnDrag:!Y&&V,defaultViewport:P,translateExtent:B,minZoom:O,maxZoom:z,zoomActivationKeyCode:v,preventScrolling:L,noWheelClassName:I,noPanClassName:M,onViewportChange:A,isControlledViewport:N,paneClickDistance:a,children:d.jsxs(sL,{onSelectionStart:p,onSelectionEnd:h,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:r,onPaneMouseLeave:o,onPaneContextMenu:i,onPaneScroll:s,panOnDrag:V,isSelecting:!!F,selectionMode:f,selectionKeyPressed:Y,selectionOnDrag:G,children:[e,R&&d.jsx(vL,{onSelectionContextMenu:_,noPanClassName:M,disableKeyboardA11y:j})]})})}Ky.displayName="FlowRenderer";const wL=g.memo(Ky),bL=e=>t=>e?hd(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 EL(e){return nt(g.useCallback(bL(e),[e]),wt)}const SL=e=>e.updateNodeInternals;function kL(){const e=nt(SL),[t]=g.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 g.useEffect(()=>()=>{t==null||t.disconnect()},[t]),t}function CL({node:e,nodeType:t,hasDimensions:n,resizeObserver:r}){const o=mt(),i=g.useRef(null),s=g.useRef(null),a=g.useRef(e.sourcePosition),l=g.useRef(e.targetPosition),c=g.useRef(t),u=n&&!!e.internals.handleBounds;return g.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]),g.useEffect(()=>()=>{s.current&&(r==null||r.unobserve(s.current),s.current=null)},[]),g.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 _L({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:m,nodeTypes:v,nodeClickDistance:y,onError:b}){const{node:w,internals:S,isParent:E}=nt(W=>{const X=W.nodeLookup.get(e),Q=W.parentLookup.has(e);return{node:X,internals:X.internals,isParent:Q}},wt);let k=w.type||"default",C=(v==null?void 0:v[k])||hh[k];C===void 0&&(b==null||b("003",Ln.error003(k)),k="default",C=hh.default);const T=!!(w.draggable||a&&typeof w.draggable>"u"),P=!!(w.selectable||l&&typeof w.selectable>"u"),B=!!(w.connectable||c&&typeof w.connectable>"u"),O=!!(w.focusable||u&&typeof w.focusable>"u"),z=mt(),L=vy(w),_=CL({node:w,nodeType:k,hasDimensions:L,resizeObserver:f}),I=Gy({nodeRef:_,disabled:w.hidden||!T,noDragClassName:p,handleSelector:w.dragHandle,nodeId:e,isSelectable:P,nodeClickDistance:y}),M=Yy();if(w.hidden)return null;const j=nr(w),A=mL(w),N=P||T||t||n||r||o,R=n?W=>n(W,{...S.userNode}):void 0,D=r?W=>r(W,{...S.userNode}):void 0,Y=o?W=>o(W,{...S.userNode}):void 0,H=i?W=>i(W,{...S.userNode}):void 0,V=s?W=>s(W,{...S.userNode}):void 0,U=W=>{const{selectNodesOnDrag:X,nodeDragThreshold:Q}=z.getState();P&&(!X||!T||Q>0)&&Bc({id:e,store:z,nodeRef:_}),t&&t(W,{...S.userNode})},G=W=>{if(!(by(W.nativeEvent)||x)){if(cy.includes(W.key)&&P){const X=W.key==="Escape";Bc({id:e,store:z,unselect:X,nodeRef:_})}else if(T&&w.selected&&Object.prototype.hasOwnProperty.call(ya,W.key)){W.preventDefault();const{ariaLabelConfig:X}=z.getState();z.setState({ariaLiveMessage:X["node.a11yDescription.ariaLiveMessage"]({direction:W.key.replace("Arrow","").toLowerCase(),x:~~S.positionAbsolute.x,y:~~S.positionAbsolute.y})}),M({direction:ya[W.key],factor:W.shiftKey?4:1})}}},F=()=>{var ie;if(x||!((ie=_.current)!=null&&ie.matches(":focus-visible")))return;const{transform:W,width:X,height:Q,autoPanOnNodeFocus:re,setCenter:K}=z.getState();if(!re)return;hd(new Map([[e,w]]),{x:0,y:0,width:X,height:Q},W,!0).length>0||K(w.position.x+j.width/2,w.position.y+j.height/2,{zoom:W[2]})};return d.jsx("div",{className:Pt(["react-flow__node",`react-flow__node-${k}`,{[h]:T},w.className,{selected:w.selected,selectable:P,parent:E,draggable:T,dragging:I}]),ref:_,style:{zIndex:S.z,transform:`translate(${S.positionAbsolute.x}px,${S.positionAbsolute.y}px)`,pointerEvents:N?"all":"none",visibility:L?"visible":"hidden",...w.style,...A},"data-id":e,"data-testid":`rf__node-${e}`,onMouseEnter:R,onMouseMove:D,onMouseLeave:Y,onContextMenu:H,onClick:U,onDoubleClick:V,onKeyDown:O?G:void 0,tabIndex:O?0:void 0,onFocus:O?F:void 0,role:w.ariaRole??(O?"group":void 0),"aria-roledescription":"node","aria-describedby":x?void 0:`${$y}-${m}`,"aria-label":w.ariaLabel,...w.domAttributes,children:d.jsx(lL,{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:P,draggable:T,deletable:w.deletable??!0,isConnectable:B,sourcePosition:w.sourcePosition,targetPosition:w.targetPosition,dragging:I,dragHandle:w.dragHandle,zIndex:S.z,parentId:w.parentId,...j})})})}const TL=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}=nt(TL,wt),s=EL(e.onlyRenderVisibleElements),a=kL();return d.jsx("div",{className:"react-flow__nodes",style:il,children:s.map(l=>d.jsx(_L,{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 AL=g.memo(Xy);function NL(e){return nt(g.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&&ID({sourceNode:i,targetNode:s,width:n.width,height:n.height,transform:n.transform})&&r.push(o.id)}return r},[e]),wt)}const jL=({color:e="none",strokeWidth:t=1})=>d.jsx("polyline",{style:{stroke:e,strokeWidth:t},strokeLinecap:"round",strokeLinejoin:"round",fill:"none",points:"-5,-4 0,0 -5,4"}),IL=({color:e="none",strokeWidth:t=1})=>d.jsx("polyline",{style:{stroke:e,fill:e,strokeWidth:t},strokeLinecap:"round",strokeLinejoin:"round",points:"-5,-4 0,0 -5,4 -5,-4"}),mh={[Hi.Arrow]:jL,[Hi.ArrowClosed]:IL};function ML(e){const t=mt();return g.useMemo(()=>{var o,i;return Object.prototype.hasOwnProperty.call(mh,e)?mh[e]:((i=(o=t.getState()).onError)==null||i.call(o,"009",Ln.error009(e)),null)},[e])}const RL=({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=ML(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=nt(i=>i.edges),r=nt(i=>i.defaultEdgeOptions),o=g.useMemo(()=>zD(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(RL,{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 PL=g.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]=g.useState({x:1,y:0,width:0,height:0}),h=Pt(["react-flow__edge-textwrapper",c]),x=g.useRef(null);return g.useEffect(()=>{if(x.current){const m=x.current.getBBox();p({x:m.x,y:m.y,width:m.width,height:m.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 DL=g.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:Pt(["react-flow__edge-path",u.className])}),c&&d.jsx("path",{d:e,fill:"none",strokeOpacity:0,strokeWidth:c,className:"react-flow__edge-interaction"}),r&&vn(t)&&vn(n)?d.jsx(DL,{x:t,y:n,label:r,labelStyle:o,labelShowBg:i,labelBgStyle:s,labelBgPadding:a,labelBgBorderRadius:l}):null]})}function xh({pos:e,x1:t,y1:n,x2:r,y2:o}){return e===ge.Left||e===ge.Right?[.5*(t+r),n]:[t,.5*(n+o)]}function Jy({sourceX:e,sourceY:t,sourcePosition:n=ge.Bottom,targetX:r,targetY:o,targetPosition:i=ge.Top}){const[s,a]=xh({pos:n,x1:e,y1:t,x2:r,y2:o}),[l,c]=xh({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 g.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:m,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:m,markerStart:v,interactionWidth:y})})}const OL=ew({isInternal:!1}),tw=ew({isInternal:!0});OL.displayName="SimpleBezierEdge";tw.displayName="SimpleBezierEdgeInternal";function nw(e){return g.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=ge.Bottom,targetPosition:x=ge.Top,markerEnd:m,markerStart:v,pathOptions:y,interactionWidth:b})=>{const[w,S,E]=Lc({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}),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:m,markerStart:v,interactionWidth:b})})}const rw=nw({isInternal:!1}),ow=nw({isInternal:!0});rw.displayName="SmoothStepEdge";ow.displayName="SmoothStepEdgeInternal";function iw(e){return g.memo(({id:t,...n})=>{var o;const r=e.isInternal?void 0:t;return d.jsx(rw,{...n,id:r,pathOptions:g.useMemo(()=>{var i;return{borderRadius:0,offset:(i=n.pathOptions)==null?void 0:i.offset}},[(o=n.pathOptions)==null?void 0:o.offset])})})}const LL=iw({isInternal:!1}),sw=iw({isInternal:!0});LL.displayName="StepEdge";sw.displayName="StepEdgeInternal";function aw(e){return g.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:m})=>{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:m})})}const $L=aw({isInternal:!1}),lw=aw({isInternal:!0});$L.displayName="StraightEdge";lw.displayName="StraightEdgeInternal";function cw(e){return g.memo(({id:t,sourceX:n,sourceY:r,targetX:o,targetY:i,sourcePosition:s=ge.Bottom,targetPosition:a=ge.Top,label:l,labelStyle:c,labelShowBg:u,labelBgStyle:f,labelBgPadding:p,labelBgBorderRadius:h,style:x,markerEnd:m,markerStart:v,pathOptions:y,interactionWidth:b})=>{const[w,S,E]=xd({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:m,markerStart:v,interactionWidth:b})})}const zL=cw({isInternal:!1}),uw=cw({isInternal:!0});zL.displayName="BezierEdge";uw.displayName="BezierEdgeInternal";const vh={default:uw,straight:lw,step:sw,smoothstep:ow,simplebezier:tw},yh={sourceX:null,sourceY:null,targetX:null,targetY:null,sourcePosition:null,targetPosition:null},FL=(e,t,n)=>n===ge.Left?e-t:n===ge.Right?e+t:e,BL=(e,t,n)=>n===ge.Top?e-t:n===ge.Bottom?e+t:e,wh="react-flow__edgeupdater";function bh({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:Pt([wh,`${wh}-${a}`]),cx:FL(t,r,e),cy:BL(n,r,e),r,stroke:"transparent",fill:"transparent"})}function HL({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=mt(),m=(S,E)=>{if(S.button!==0)return;const{autoPanOnConnect:k,domNode:C,isValidConnection:T,connectionMode:P,connectionRadius:B,lib:O,onConnectStart:z,onConnectEnd:L,cancelConnection:_,nodeLookup:I,rfId:M,panBy:j,updateConnection:A}=x.getState(),N=E.type==="target",R=(H,V)=>{p(!1),f==null||f(H,n,E.type,V)},D=H=>c==null?void 0:c(n,H),Y=(H,V)=>{p(!0),u==null||u(S,n,E.type),z==null||z(H,V)};Fc.onPointerDown(S.nativeEvent,{autoPanOnConnect:k,connectionMode:P,connectionRadius:B,domNode:C,handleId:E.id,nodeId:E.nodeId,nodeLookup:I,isTarget:N,edgeUpdaterType:E.type,lib:O,flowId:M,cancelConnection:_,panBy:j,isValidConnection:T,onConnect:D,onConnectStart:Y,onConnectEnd:L,onReconnectEnd:R,updateConnection:A,getTransform:()=>x.getState().transform,getFromHandle:()=>x.getState().connection.fromHandle,dragThreshold:x.getState().connectionDragThreshold})},v=S=>m(S,{nodeId:n.target,id:n.targetHandle??null,type:"target"}),y=S=>m(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(bh,{position:a,centerX:r,centerY:o,radius:t,onMouseDown:v,onMouseEnter:b,onMouseOut:w,type:"source"}),(e===!0||e==="target")&&d.jsx(bh,{position:l,centerX:i,centerY:s,radius:t,onMouseDown:y,onMouseEnter:b,onMouseOut:w,type:"target"})]})}function VL({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:m,noPanClassName:v,onError:y,disableKeyboardA11y:b}){let w=nt(K=>K.edgeLookup.get(e));const S=nt(K=>K.defaultEdgeOptions);w=S?{...S,...w}:w;let E=w.type||"default",k=(m==null?void 0:m[E])||vh[E];k===void 0&&(y==null||y("011",Ln.error011(E)),E="default",k=vh.default);const C=!!(w.focusable||t&&typeof w.focusable>"u"),T=typeof f<"u"&&(w.reconnectable||n&&typeof w.reconnectable>"u"),P=!!(w.selectable||r&&typeof w.selectable>"u"),B=g.useRef(null),[O,z]=g.useState(!1),[L,_]=g.useState(!1),I=mt(),{zIndex:M,sourceX:j,sourceY:A,targetX:N,targetY:R,sourcePosition:D,targetPosition:Y}=nt(g.useCallback(K=>{const ne=K.nodeLookup.get(w.source),ie=K.nodeLookup.get(w.target);if(!ne||!ie)return{zIndex:w.zIndex,...yh};const he=$D({id:e,sourceNode:ne,targetNode:ie,sourceHandle:w.sourceHandle||null,targetHandle:w.targetHandle||null,connectionMode:K.connectionMode,onError:y});return{zIndex:jD({selected:w.selected,zIndex:w.zIndex,sourceNode:ne,targetNode:ie,elevateOnSelect:K.elevateEdgesOnSelect}),...he||yh}},[w.source,w.target,w.sourceHandle,w.targetHandle,w.selected,w.zIndex]),wt),H=g.useMemo(()=>w.markerStart?`url('#${$c(w.markerStart,x)}')`:void 0,[w.markerStart,x]),V=g.useMemo(()=>w.markerEnd?`url('#${$c(w.markerEnd,x)}')`:void 0,[w.markerEnd,x]);if(w.hidden||j===null||A===null||N===null||R===null)return null;const U=K=>{var ue;const{addSelectedEdges:ne,unselectNodesAndEdges:ie,multiSelectionActive:he}=I.getState();P&&(I.setState({nodesSelectionActive:!1}),w.selected&&he?(ie({nodes:[],edges:[w]}),(ue=B.current)==null||ue.blur()):ne([e])),o&&o(K,w)},G=i?K=>{i(K,{...w})}:void 0,F=s?K=>{s(K,{...w})}:void 0,W=a?K=>{a(K,{...w})}:void 0,X=l?K=>{l(K,{...w})}:void 0,Q=c?K=>{c(K,{...w})}:void 0,re=K=>{var ne;if(!b&&cy.includes(K.key)&&P){const{unselectNodesAndEdges:ie,addSelectedEdges:he}=I.getState();K.key==="Escape"?((ne=B.current)==null||ne.blur(),ie({edges:[w]})):he([e])}};return d.jsx("svg",{style:{zIndex:M},children:d.jsxs("g",{className:Pt(["react-flow__edge",`react-flow__edge-${E}`,w.className,v,{selected:w.selected,animated:w.animated,inactive:!P&&!o,updating:O,selectable:P}]),onClick:U,onDoubleClick:G,onContextMenu:F,onMouseEnter:W,onMouseMove:X,onMouseLeave:Q,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:B,...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:P,deletable:w.deletable??!0,label:w.label,labelStyle:w.labelStyle,labelShowBg:w.labelShowBg,labelBgStyle:w.labelBgStyle,labelBgPadding:w.labelBgPadding,labelBgBorderRadius:w.labelBgBorderRadius,sourceX:j,sourceY:A,targetX:N,targetY:R,sourcePosition:D,targetPosition:Y,data:w.data,style:w.style,sourceHandleId:w.sourceHandle,targetHandleId:w.targetHandle,markerStart:H,markerEnd:V,pathOptions:"pathOptions"in w?w.pathOptions:void 0,interactionWidth:w.interactionWidth}),T&&d.jsx(HL,{edge:w,isReconnectable:T,reconnectRadius:u,onReconnect:f,onReconnectStart:p,onReconnectEnd:h,sourceX:j,sourceY:A,targetX:N,targetY:R,sourcePosition:D,targetPosition:Y,setUpdateHover:z,setReconnecting:_})]})})}const UL=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:m}){const{edgesFocusable:v,edgesReconnectable:y,elementsSelectable:b,onError:w}=nt(UL,wt),S=NL(t);return d.jsxs("div",{className:"react-flow__edges",children:[d.jsx(PL,{defaultColor:e,rfId:n}),S.map(E=>d.jsx(VL,{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:m},E))]})}dw.displayName="EdgeRenderer";const WL=g.memo(dw),GL=e=>`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]})`;function YL({children:e}){const t=nt(GL);return d.jsx("div",{className:"react-flow__viewport xyflow__viewport react-flow__container",style:{transform:t},children:e})}function qL(e){const t=ol(),n=g.useRef(!1);g.useEffect(()=>{!n.current&&t.viewportInitialized&&e&&(setTimeout(()=>e(t),1),n.current=!0)},[e,t.viewportInitialized])}const KL=e=>{var t;return(t=e.panZoom)==null?void 0:t.syncViewport};function XL(e){const t=nt(KL),n=mt();return g.useEffect(()=>{e&&(t==null||t(e),n.setState({transform:[e.x,e.y,e.zoom]}))},[e,t]),null}function ZL(e){return e.connection.inProgress?{...e.connection,to:rs(e.connection.to,e.transform)}:{...e.connection}}function QL(e){return ZL}function JL(e){const t=QL();return nt(t,wt)}const e3=e=>({nodesConnectable:e.nodesConnectable,isValid:e.connection.isValid,inProgress:e.connection.inProgress,width:e.width,height:e.height});function t3({containerStyle:e,style:t,type:n,component:r}){const{nodesConnectable:o,width:i,height:s,isValid:a,inProgress:l}=nt(e3,wt);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:Pt(["react-flow__connection",fy(a)]),children:d.jsx(fw,{style:t,type:n,CustomComponent:r,isValid:a})})})}const fw=({style:e,type:t=ur.Bezier,CustomComponent:n,isValid:r})=>{const{inProgress:o,from:i,fromNode:s,fromHandle:a,fromPosition:l,to:c,toNode:u,toHandle:f,toPosition:p}=JL();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 ur.Bezier:[h]=xd(x);break;case ur.SimpleBezier:[h]=Jy(x);break;case ur.Step:[h]=Lc({...x,borderRadius:0});break;case ur.SmoothStep:[h]=Lc(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 n3={};function Eh(e=n3){g.useRef(e),mt(),g.useEffect(()=>{},[e])}function r3(){mt(),g.useRef(!1),g.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:m,connectionLineComponent:v,connectionLineContainerStyle:y,selectionKeyCode:b,selectionOnDrag:w,selectionMode:S,multiSelectionKeyCode:E,panActivationKeyCode:k,zoomActivationKeyCode:C,deleteKeyCode:T,onlyRenderVisibleElements:P,elementsSelectable:B,defaultViewport:O,translateExtent:z,minZoom:L,maxZoom:_,preventScrolling:I,defaultMarkerColor:M,zoomOnScroll:j,zoomOnPinch:A,panOnScroll:N,panOnScrollSpeed:R,panOnScrollMode:D,zoomOnDoubleClick:Y,panOnDrag:H,onPaneClick:V,onPaneMouseEnter:U,onPaneMouseMove:G,onPaneMouseLeave:F,onPaneScroll:W,onPaneContextMenu:X,paneClickDistance:Q,nodeClickDistance:re,onEdgeContextMenu:K,onEdgeMouseEnter:ne,onEdgeMouseMove:ie,onEdgeMouseLeave:he,reconnectRadius:ue,onReconnect:we,onReconnectStart:Ee,onReconnectEnd:Ke,noDragClassName:st,noWheelClassName:tt,noPanClassName:me,disableKeyboardA11y:ut,nodeExtent:dt,rfId:lt,viewport:We,onViewportChange:ht}){return Eh(e),Eh(t),r3(),qL(n),XL(We),d.jsx(wL,{onPaneClick:V,onPaneMouseEnter:U,onPaneMouseMove:G,onPaneMouseLeave:F,onPaneContextMenu:X,onPaneScroll:W,paneClickDistance:Q,deleteKeyCode:T,selectionKeyCode:b,selectionOnDrag:w,selectionMode:S,onSelectionStart:p,onSelectionEnd:h,multiSelectionKeyCode:E,panActivationKeyCode:k,zoomActivationKeyCode:C,elementsSelectable:B,zoomOnScroll:j,zoomOnPinch:A,zoomOnDoubleClick:Y,panOnScroll:N,panOnScrollSpeed:R,panOnScrollMode:D,panOnDrag:H,defaultViewport:O,translateExtent:z,minZoom:L,maxZoom:_,onSelectionContextMenu:f,preventScrolling:I,noDragClassName:st,noWheelClassName:tt,noPanClassName:me,disableKeyboardA11y:ut,onViewportChange:ht,isControlledViewport:!!We,children:d.jsxs(YL,{children:[d.jsx(WL,{edgeTypes:t,onEdgeClick:o,onEdgeDoubleClick:s,onReconnect:we,onReconnectStart:Ee,onReconnectEnd:Ke,onlyRenderVisibleElements:P,onEdgeContextMenu:K,onEdgeMouseEnter:ne,onEdgeMouseMove:ie,onEdgeMouseLeave:he,reconnectRadius:ue,defaultMarkerColor:M,noPanClassName:me,disableKeyboardA11y:ut,rfId:lt}),d.jsx(t3,{style:m,type:x,component:v,containerStyle:y}),d.jsx("div",{className:"react-flow__edgelabel-renderer"}),d.jsx(AL,{nodeTypes:e,onNodeClick:r,onNodeDoubleClick:i,onNodeMouseEnter:a,onNodeMouseMove:l,onNodeMouseLeave:c,onNodeContextMenu:u,nodeClickDistance:re,onlyRenderVisibleElements:P,noPanClassName:me,noDragClassName:st,disableKeyboardA11y:ut,nodeExtent:dt,rfId:lt}),d.jsx("div",{className:"react-flow__viewport-portal"})]})})}pw.displayName="GraphView";const o3=g.memo(pw),Sh=({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,m=new Map,v=r??t??[],y=n??e??[],b=u??[0,0],w=f??Fi;Ty(x,m,v);const S=zc(y,p,h,{nodeOrigin:b,nodeExtent:w,elevateNodesOnSelect:!1});let E=[0,0,1];if(s&&o&&i){const k=ns(p,{filter:B=>!!((B.width||B.initialWidth)&&(B.height||B.initialHeight))}),{x:C,y:T,zoom:P}=gd(k,o,i,l,c,(a==null?void 0:a.padding)??.1);E=[C,T,P]}return{rfId:"1",width:0,height:0,transform:E,nodes:y,nodesInitialized:S,nodeLookup:p,parentLookup:h,edges:v,edgeLookup:m,connectionLookup:x,onNodesChange:null,onEdgesChange:null,hasDefaultNodes:n!==void 0,hasDefaultEdges:r!==void 0,panZoom:null,minZoom:l,maxZoom:c,translateExtent:Fi,nodeExtent:w,nodesSelectionActive:!1,userSelectionActive:!1,userSelectionRect:null,connectionMode:Mo.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:kD,isValidConnection:void 0,onSelectionChangeHandlers:[],lib:"react",debug:!1,ariaLabelConfig:uy}},i3=({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,width:o,height:i,fitView:s,fitViewOptions:a,minZoom:l,maxZoom:c,nodeOrigin:u,nodeExtent:f})=>CO((p,h)=>{async function x(){const{nodeLookup:m,panZoom:v,fitViewOptions:y,fitViewResolver:b,width:w,height:S,minZoom:E,maxZoom:k}=h();v&&(await ED({nodes:m,width:w,height:S,panZoom:v,minZoom:E,maxZoom:k},y),b==null||b.resolve(!0),p({fitViewResolver:null}))}return{...Sh({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:m=>{const{nodeLookup:v,parentLookup:y,nodeOrigin:b,elevateNodesOnSelect:w,fitViewQueued:S}=h(),E=zc(m,v,y,{nodeOrigin:b,nodeExtent:f,elevateNodesOnSelect:w,checkEquality:!0});S&&E?(x(),p({nodes:m,nodesInitialized:E,fitViewQueued:!1,fitViewOptions:void 0})):p({nodes:m,nodesInitialized:E})},setEdges:m=>{const{connectionLookup:v,edgeLookup:y}=h();Ty(v,y,m),p({edges:m})},setDefaultNodesAndEdges:(m,v)=>{if(m){const{setNodes:y}=h();y(m),p({hasDefaultNodes:!0})}if(v){const{setEdges:y}=h();y(v),p({hasDefaultEdges:!0})}},updateNodeInternals:m=>{const{triggerNodeChanges:v,nodeLookup:y,parentLookup:b,domNode:w,nodeOrigin:S,nodeExtent:E,debug:k,fitViewQueued:C}=h(),{changes:T,updatedInternals:P}=UD(m,y,b,w,S,E);P&&(BD(y,b,{nodeOrigin:S,nodeExtent:E}),C?(x(),p({fitViewQueued:!1,fitViewOptions:void 0})):p({}),(T==null?void 0:T.length)>0&&(k&&console.log("React Flow: trigger node changes",T),v==null||v(T)))},updateNodePositions:(m,v=!1)=>{const y=[],b=[],{nodeLookup:w,triggerNodeChanges:S}=h();for(const[E,k]of m){const C=w.get(E),T=!!(C!=null&&C.expandParent&&(C!=null&&C.parentId)&&(k!=null&&k.position)),P={id:E,type:"position",position:T?{x:Math.max(0,k.position.x),y:Math.max(0,k.position.y)}:k.position,dragging:v};T&&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(P)}if(y.length>0){const{parentLookup:E,nodeOrigin:k}=h(),C=bd(y,w,E,k);b.push(...C)}S(b)},triggerNodeChanges:m=>{const{onNodesChange:v,setNodes:y,nodes:b,hasDefaultNodes:w,debug:S}=h();if(m!=null&&m.length){if(w){const E=Hy(m,b);y(E)}S&&console.log("React Flow: trigger node changes",m),v==null||v(m)}},triggerEdgeChanges:m=>{const{onEdgesChange:v,setEdges:y,edges:b,hasDefaultEdges:w,debug:S}=h();if(m!=null&&m.length){if(w){const E=Vy(m,b);y(E)}S&&console.log("React Flow: trigger edge changes",m),v==null||v(m)}},addSelectedNodes:m=>{const{multiSelectionActive:v,edgeLookup:y,nodeLookup:b,triggerNodeChanges:w,triggerEdgeChanges:S}=h();if(v){const E=m.map(k=>Ar(k,!0));w(E);return}w(yo(b,new Set([...m]),!0)),S(yo(y))},addSelectedEdges:m=>{const{multiSelectionActive:v,edgeLookup:y,nodeLookup:b,triggerNodeChanges:w,triggerEdgeChanges:S}=h();if(v){const E=m.map(k=>Ar(k,!0));S(E);return}S(yo(y,new Set([...m]))),w(yo(b,new Set,!0))},unselectNodesAndEdges:({nodes:m,edges:v}={})=>{const{edges:y,nodes:b,nodeLookup:w,triggerNodeChanges:S,triggerEdgeChanges:E}=h(),k=m||b,C=v||y,T=k.map(B=>{const O=w.get(B.id);return O&&(O.selected=!1),Ar(B.id,!1)}),P=C.map(B=>Ar(B.id,!1));S(T),E(P)},setMinZoom:m=>{const{panZoom:v,maxZoom:y}=h();v==null||v.setScaleExtent([m,y]),p({minZoom:m})},setMaxZoom:m=>{const{panZoom:v,minZoom:y}=h();v==null||v.setScaleExtent([y,m]),p({maxZoom:m})},setTranslateExtent:m=>{var v;(v=h().panZoom)==null||v.setTranslateExtent(m),p({translateExtent:m})},setPaneClickDistance:m=>{var v;(v=h().panZoom)==null||v.setClickDistance(m)},resetSelectedElements:()=>{const{edges:m,nodes:v,triggerNodeChanges:y,triggerEdgeChanges:b,elementsSelectable:w}=h();if(!w)return;const S=v.reduce((k,C)=>C.selected?[...k,Ar(C.id,!1)]:k,[]),E=m.reduce((k,C)=>C.selected?[...k,Ar(C.id,!1)]:k,[]);y(S),b(E)},setNodeExtent:m=>{const{nodes:v,nodeLookup:y,parentLookup:b,nodeOrigin:w,elevateNodesOnSelect:S,nodeExtent:E}=h();m[0][0]===E[0][0]&&m[0][1]===E[0][1]&&m[1][0]===E[1][0]&&m[1][1]===E[1][1]||(zc(v,y,b,{nodeOrigin:w,nodeExtent:m,elevateNodesOnSelect:S,checkEquality:!1}),p({nodeExtent:m}))},panBy:m=>{const{transform:v,width:y,height:b,panZoom:w,translateExtent:S}=h();return WD({delta:m,panZoom:w,transform:v,translateExtent:S,width:y,height:b})},setCenter:async(m,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-m*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:m=>{p({connection:m})},reset:()=>p({...Sh()})}},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]=g.useState(()=>i3({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(_O,{value:h,children:d.jsx(KO,{children:p})})}function s3({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 g.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 a3={width:"100%",height:"100%",overflow:"hidden",position:"relative",zIndex:0};function l3({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:m,onClickConnectStart:v,onClickConnectEnd:y,onNodeMouseEnter:b,onNodeMouseMove:w,onNodeMouseLeave:S,onNodeContextMenu:E,onNodeDoubleClick:k,onNodeDragStart:C,onNodeDrag:T,onNodeDragStop:P,onNodesDelete:B,onEdgesDelete:O,onDelete:z,onSelectionChange:L,onSelectionDragStart:_,onSelectionDrag:I,onSelectionDragStop:M,onSelectionContextMenu:j,onSelectionStart:A,onSelectionEnd:N,onBeforeDelete:R,connectionMode:D,connectionLineType:Y=ur.Bezier,connectionLineStyle:H,connectionLineComponent:V,connectionLineContainerStyle:U,deleteKeyCode:G="Backspace",selectionKeyCode:F="Shift",selectionOnDrag:W=!1,selectionMode:X=Bi.Full,panActivationKeyCode:Q="Space",multiSelectionKeyCode:re=va()?"Meta":"Control",zoomActivationKeyCode:K=va()?"Meta":"Control",snapToGrid:ne,snapGrid:ie,onlyRenderVisibleElements:he=!1,selectNodesOnDrag:ue,nodesDraggable:we,autoPanOnNodeFocus:Ee,nodesConnectable:Ke,nodesFocusable:st,nodeOrigin:tt=Fy,edgesFocusable:me,edgesReconnectable:ut,elementsSelectable:dt=!0,defaultViewport:lt=zO,minZoom:We=.5,maxZoom:ht=2,translateExtent:xt=Fi,preventScrolling:pt=!0,nodeExtent:bt,defaultMarkerColor:vt="#b1b1b7",zoomOnScroll:ct=!0,zoomOnPinch:Tt=!0,panOnScroll:He=!1,panOnScrollSpeed:Fe=.5,panOnScrollMode:At=Or.Free,zoomOnDoubleClick:be=!0,panOnDrag:ye=!0,onPaneClick:_e,onPaneMouseEnter:Pe,onPaneMouseMove:Le,onPaneMouseLeave:ee,onPaneScroll:q,onPaneContextMenu:se,paneClickDistance:le=0,nodeClickDistance:de=0,children:De,onReconnect:Ie,onReconnectStart:qe,onReconnectEnd:Xe,onEdgeContextMenu:Ae,onEdgeDoubleClick:Ve,onEdgeMouseEnter:ze,onEdgeMouseMove:rt,onEdgeMouseLeave:gt,reconnectRadius:Et=10,onNodesChange:Dt,onEdgesChange:St,noDragClassName:kt="nodrag",noWheelClassName:en="nowheel",noPanClassName:Bt="nopan",fitView:Te,fitViewOptions:$e,connectOnClick:Ce,attributionPosition:oe,proOptions:$,defaultEdgeOptions:J,elevateNodesOnSelect:Z,elevateEdgesOnSelect:pe,disableKeyboardA11y:ke=!1,autoPanOnConnect:te,autoPanOnNodeDrag:ce,autoPanSpeed:fe,connectionRadius:ae,isValidConnection:Ne,onError:Me,style:Ct,id:Ze,nodeDragThreshold:jt,connectionDragThreshold:Zt,viewport:Ht,onViewportChange:rr,width:kn,height:tn,colorMode:Hn="light",debug:pn,onScroll:je,ariaLabelConfig:Er,...eo},Uw){const ll=Ze||"1",Ww=VO(Hn),Gw=g.useCallback(Td=>{Td.currentTarget.scrollTo({top:0,left:0,behavior:"instant"}),je==null||je(Td)},[je]);return d.jsx("div",{"data-testid":"rf__wrapper",...eo,onScroll:Gw,style:{...Ct,...a3},ref:Uw,className:Pt(["react-flow",o,Ww]),id:Ze,role:"application",children:d.jsxs(s3,{nodes:e,edges:t,width:kn,height:tn,fitView:Te,fitViewOptions:$e,minZoom:We,maxZoom:ht,nodeOrigin:tt,nodeExtent:bt,children:[d.jsx(o3,{onInit:c,onNodeClick:a,onEdgeClick:l,onNodeMouseEnter:b,onNodeMouseMove:w,onNodeMouseLeave:S,onNodeContextMenu:E,onNodeDoubleClick:k,nodeTypes:i,edgeTypes:s,connectionLineType:Y,connectionLineStyle:H,connectionLineComponent:V,connectionLineContainerStyle:U,selectionKeyCode:F,selectionOnDrag:W,selectionMode:X,deleteKeyCode:G,multiSelectionKeyCode:re,panActivationKeyCode:Q,zoomActivationKeyCode:K,onlyRenderVisibleElements:he,defaultViewport:lt,translateExtent:xt,minZoom:We,maxZoom:ht,preventScrolling:pt,zoomOnScroll:ct,zoomOnPinch:Tt,zoomOnDoubleClick:be,panOnScroll:He,panOnScrollSpeed:Fe,panOnScrollMode:At,panOnDrag:ye,onPaneClick:_e,onPaneMouseEnter:Pe,onPaneMouseMove:Le,onPaneMouseLeave:ee,onPaneScroll:q,onPaneContextMenu:se,paneClickDistance:le,nodeClickDistance:de,onSelectionContextMenu:j,onSelectionStart:A,onSelectionEnd:N,onReconnect:Ie,onReconnectStart:qe,onReconnectEnd:Xe,onEdgeContextMenu:Ae,onEdgeDoubleClick:Ve,onEdgeMouseEnter:ze,onEdgeMouseMove:rt,onEdgeMouseLeave:gt,reconnectRadius:Et,defaultMarkerColor:vt,noDragClassName:kt,noWheelClassName:en,noPanClassName:Bt,rfId:ll,disableKeyboardA11y:ke,nodeExtent:bt,viewport:Ht,onViewportChange:rr}),d.jsx(HO,{nodes:e,edges:t,defaultNodes:n,defaultEdges:r,onConnect:h,onConnectStart:x,onConnectEnd:m,onClickConnectStart:v,onClickConnectEnd:y,nodesDraggable:we,autoPanOnNodeFocus:Ee,nodesConnectable:Ke,nodesFocusable:st,edgesFocusable:me,edgesReconnectable:ut,elementsSelectable:dt,elevateNodesOnSelect:Z,elevateEdgesOnSelect:pe,minZoom:We,maxZoom:ht,nodeExtent:bt,onNodesChange:Dt,onEdgesChange:St,snapToGrid:ne,snapGrid:ie,connectionMode:D,translateExtent:xt,connectOnClick:Ce,defaultEdgeOptions:J,fitView:Te,fitViewOptions:$e,onNodesDelete:B,onEdgesDelete:O,onDelete:z,onNodeDragStart:C,onNodeDrag:T,onNodeDragStop:P,onSelectionDrag:I,onSelectionDragStart:_,onSelectionDragStop:M,onMove:u,onMoveStart:f,onMoveEnd:p,noPanClassName:Bt,nodeOrigin:tt,rfId:ll,autoPanOnConnect:te,autoPanOnNodeDrag:ce,autoPanSpeed:fe,onError:Me,connectionRadius:ae,isValidConnection:Ne,selectNodesOnDrag:ue,nodeDragThreshold:jt,connectionDragThreshold:Zt,onBeforeDelete:R,paneClickDistance:le,debug:pn,ariaLabelConfig:Er}),d.jsx($O,{onSelectionChange:L}),De,d.jsx(RO,{proOptions:$,position:oe}),d.jsx(MO,{rfId:ll,disableKeyboardA11y:ke})]})})}var c3=Uy(l3);function u3(e){const[t,n]=g.useState(e),r=g.useCallback(o=>n(i=>Hy(o,i)),[]);return[t,n,r]}function d3(e){const[t,n]=g.useState(e),r=g.useCallback(o=>n(i=>Vy(o,i)),[]);return[t,n,r]}function f3({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:Pt(["react-flow__background-pattern",n,r])})}function p3({radius:e,className:t}){return d.jsx("circle",{cx:e,cy:e,r:e,className:Pt(["react-flow__background-pattern","dots",t])})}var fr;(function(e){e.Lines="lines",e.Dots="dots",e.Cross="cross"})(fr||(fr={}));const h3={[fr.Dots]:1,[fr.Lines]:1,[fr.Cross]:6},g3=e=>({transform:e.transform,patternId:`pattern-${e.rfId}`});function gw({id:e,variant:t=fr.Dots,gap:n=20,size:r,lineWidth:o=1,offset:i=0,color:s,bgColor:a,style:l,className:c,patternClassName:u}){const f=g.useRef(null),{transform:p,patternId:h}=nt(g3,wt),x=r||h3[t],m=t===fr.Dots,v=t===fr.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:Pt(["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:m?d.jsx(p3,{radius:w/2,className:u}):d.jsx(f3,{dimensions:E,lineWidth:o,variant:t,className:u})}),d.jsx("rect",{x:"0",y:"0",width:"100%",height:"100%",fill:`url(#${C})`})]})}gw.displayName="Background";const m3=g.memo(gw);function x3(){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 v3(){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 y3(){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 w3(){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 b3(){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 Ns({children:e,className:t,...n}){return d.jsx("button",{type:"button",className:Pt(["react-flow__controls-button",t]),...n,children:e})}const E3=e=>({isInteractive:e.nodesDraggable||e.nodesConnectable||e.elementsSelectable,minZoomReached:e.transform[2]<=e.minZoom,maxZoomReached:e.transform[2]>=e.maxZoom,ariaLabelConfig:e.ariaLabelConfig});function mw({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=mt(),{isInteractive:m,minZoomReached:v,maxZoomReached:y,ariaLabelConfig:b}=nt(E3,wt),{zoomIn:w,zoomOut:S,fitView:E}=ol(),k=()=>{w(),i==null||i()},C=()=>{S(),s==null||s()},T=()=>{E(o),a==null||a()},P=()=>{x.setState({nodesDraggable:!m,nodesConnectable:!m,elementsSelectable:!m}),l==null||l(!m)},B=p==="horizontal"?"horizontal":"vertical";return d.jsxs(os,{className:Pt(["react-flow__controls",B,c]),position:f,style:e,"data-testid":"rf__controls","aria-label":h??b["controls.ariaLabel"],children:[t&&d.jsxs(d.Fragment,{children:[d.jsx(Ns,{onClick:k,className:"react-flow__controls-zoomin",title:b["controls.zoomIn.ariaLabel"],"aria-label":b["controls.zoomIn.ariaLabel"],disabled:y,children:d.jsx(x3,{})}),d.jsx(Ns,{onClick:C,className:"react-flow__controls-zoomout",title:b["controls.zoomOut.ariaLabel"],"aria-label":b["controls.zoomOut.ariaLabel"],disabled:v,children:d.jsx(v3,{})})]}),n&&d.jsx(Ns,{className:"react-flow__controls-fitview",onClick:T,title:b["controls.fitView.ariaLabel"],"aria-label":b["controls.fitView.ariaLabel"],children:d.jsx(y3,{})}),r&&d.jsx(Ns,{className:"react-flow__controls-interactive",onClick:P,title:b["controls.interactive.ariaLabel"],"aria-label":b["controls.interactive.ariaLabel"],children:m?d.jsx(b3,{}):d.jsx(w3,{})}),u]})}mw.displayName="Controls";const S3=g.memo(mw);function k3({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:m}=i||{},v=s||x||m;return d.jsx("rect",{className:Pt(["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 C3=g.memo(k3),_3=e=>e.nodes.map(t=>t.id),Zl=e=>e instanceof Function?e:()=>e;function T3({nodeStrokeColor:e,nodeColor:t,nodeClassName:n="",nodeBorderRadius:r=5,nodeStrokeWidth:o,nodeComponent:i=C3,onClick:s}){const a=nt(_3,wt),l=Zl(t),c=Zl(e),u=Zl(n),f=typeof window>"u"||window.chrome?"crispEdges":"geometricPrecision";return d.jsx(d.Fragment,{children:a.map(p=>d.jsx(N3,{id:p,nodeColorFunc:l,nodeStrokeColorFunc:c,nodeClassNameFunc:u,nodeBorderRadius:r,nodeStrokeWidth:o,NodeComponent:i,onClick:s,shapeRendering:f},p))})}function A3({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}=nt(x=>{const{internals:m}=x.nodeLookup.get(e),v=m.userNode,{x:y,y:b}=m.positionAbsolute,{width:w,height:S}=nr(v);return{node:v,x:y,y:b,width:w,height:S}},wt);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 N3=g.memo(A3);var j3=g.memo(T3);const I3=200,M3=150,R3=e=>!e.hidden,P3=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(ns(e.nodeLookup,{filter:R3}),t):t,rfId:e.rfId,panZoom:e.panZoom,translateExtent:e.translateExtent,flowWidth:e.width,flowHeight:e.height,ariaLabelConfig:e.ariaLabelConfig}},D3="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:m=!1,zoomable:v=!1,ariaLabel:y,inversePan:b,zoomStep:w=10,offsetScale:S=5}){const E=mt(),k=g.useRef(null),{boundingRect:C,viewBB:T,rfId:P,panZoom:B,translateExtent:O,flowWidth:z,flowHeight:L,ariaLabelConfig:_}=nt(P3,wt),I=(e==null?void 0:e.width)??I3,M=(e==null?void 0:e.height)??M3,j=C.width/I,A=C.height/M,N=Math.max(j,A),R=N*I,D=N*M,Y=S*N,H=C.x-(R-C.width)/2-Y,V=C.y-(D-C.height)/2-Y,U=R+Y*2,G=D+Y*2,F=`${D3}-${P}`,W=g.useRef(0),X=g.useRef();W.current=N,g.useEffect(()=>{if(k.current&&B)return X.current=JD({domNode:k.current,panZoom:B,getTransform:()=>E.getState().transform,getViewScale:()=>W.current}),()=>{var ne;(ne=X.current)==null||ne.destroy()}},[B]),g.useEffect(()=>{var ne;(ne=X.current)==null||ne.update({translateExtent:O,width:z,height:L,inversePan:b,pannable:m,zoomStep:w,zoomable:v})},[m,v,b,w,O,z,L]);const Q=h?ne=>{var ue;const[ie,he]=((ue=X.current)==null?void 0:ue.pointer(ne))||[0,0];h(ne,{x:ie,y:he})}:void 0,re=x?g.useCallback((ne,ie)=>{const he=E.getState().nodeLookup.get(ie).internals.userNode;x(ne,he)},[]):void 0,K=y??_["minimap.ariaLabel"];return d.jsx(os,{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*N: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:Pt(["react-flow__minimap",t]),"data-testid":"rf__minimap",children:d.jsxs("svg",{width:I,height:M,viewBox:`${H} ${V} ${U} ${G}`,className:"react-flow__minimap-svg",role:"img","aria-labelledby":F,ref:k,onClick:Q,children:[K&&d.jsx("title",{id:F,children:K}),d.jsx(j3,{onClick:re,nodeColor:r,nodeStrokeColor:n,nodeBorderRadius:i,nodeClassName:o,nodeStrokeWidth:s,nodeComponent:a}),d.jsx("path",{className:"react-flow__minimap-mask",d:`M${H-Y},${V-Y}h${U+Y*2}v${G+Y*2}h${-U-Y*2}z
657
- M${T.x},${T.y}h${T.width}v${T.height}h${-T.width}z`,fillRule:"evenodd",pointerEvents:"none"})]})})}xw.displayName="MiniMap";g.memo(xw);const O3=e=>t=>e?`${Math.max(1/t.transform[2],1)}`:void 0,L3={[Oo.Line]:"right",[Oo.Handle]:"bottom-right"};function $3({nodeId:e,position:t,variant:n=Oo.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:m,onResize:v,onResizeEnd:y}){const b=qy(),w=typeof e=="string"?e:b,S=mt(),E=g.useRef(null),k=n===Oo.Handle,C=nt(g.useCallback(O3(k&&h),[k,h]),wt),T=g.useRef(null),P=t??L3[n];g.useEffect(()=>{if(!(!E.current||!w))return T.current||(T.current=gO({domNode:E.current,nodeId:w,getStoreItems:()=>{const{nodeLookup:O,transform:z,snapGrid:L,snapToGrid:_,nodeOrigin:I,domNode:M}=S.getState();return{nodeLookup:O,transform:z,snapGrid:L,snapToGrid:_,nodeOrigin:I,paneDomNode:M}},onChange:(O,z)=>{const{triggerNodeChanges:L,nodeLookup:_,parentLookup:I,nodeOrigin:M}=S.getState(),j=[],A={x:O.x,y:O.y},N=_.get(w);if(N&&N.expandParent&&N.parentId){const R=N.origin??M,D=O.width??N.measured.width??0,Y=O.height??N.measured.height??0,H={id:N.id,parentId:N.parentId,rect:{width:D,height:Y,...yy({x:O.x??N.position.x,y:O.y??N.position.y},{width:D,height:Y},N.parentId,_,R)}},V=bd([H],_,I,M);j.push(...V),A.x=O.x?Math.max(R[0]*D,O.x):void 0,A.y=O.y?Math.max(R[1]*Y,O.y):void 0}if(A.x!==void 0&&A.y!==void 0){const R={id:w,type:"position",position:{...A}};j.push(R)}if(O.width!==void 0&&O.height!==void 0){const D={id:w,type:"dimensions",resizing:!0,setAttributes:p?p==="horizontal"?"width":"height":!0,dimensions:{width:O.width,height:O.height}};j.push(D)}for(const R of z){const D={...R,type:"position"};j.push(D)}L(j)},onEnd:({width:O,height:z})=>{const L={id:w,type:"dimensions",resizing:!1,dimensions:{width:O,height:z}};S.getState().triggerNodeChanges([L])}})),T.current.update({controlPosition:P,boundaries:{minWidth:a,minHeight:l,maxWidth:c,maxHeight:u},keepAspectRatio:f,resizeDirection:p,onResizeStart:m,onResize:v,onResizeEnd:y,shouldResize:x}),()=>{var O;(O=T.current)==null||O.destroy()}},[P,a,l,c,u,f,m,v,y,x]);const B=P.split("-");return d.jsx("div",{className:Pt(["react-flow__resize-control","nodrag",...B,n,r]),ref:E,style:{...o,scale:C,...s&&{[k?"backgroundColor":"borderColor"]:s}},children:i})}g.memo($3);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=>{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==="AGENT_LLM_CALL"||i.type==="TASK_COMPLETED");return a||l})}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 Xn={USER:50,MAIN_FLOW:300,TOOLS:600},z3=50,zt=50,dn=330,qr=50,Tn=20,Lo=10,kh=zt+20,F3=90;function Kr(e,t,n){return e.push(n),t.add(n.id),n}function B3(e,t){return e.push(t),t}function Xr(e,t){return e.nodeIdCounter++,`${t.replace(/[^a-zA-Z0-9_]/g,"_")}_${e.nodeIdCounter}`}function Xt(e){return e.currentPhaseIndex===-1||e.currentPhaseIndex>=e.phases.length?null:e.phases[e.currentPhaseIndex]}function is(e){const t=Xt(e);return!t||e.currentSubflowIndex===-1||e.currentSubflowIndex>=t.subflows.length?null:t.subflows[e.currentSubflowIndex]}function H3(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 V3(e,t){if(!t)return null;const n=Xt(e);return n&&n.subflows.findLast(r=>r.functionCallId===t)||null}function U3(e,t){if(!t)return null;const n=Xt(e);return n&&n.subflows.findLast(r=>r.id===t)||null}function al(e,t){var r,o;const n=is(e);if(t.owningTaskId&&t.isSubTaskStep){const i=U3(e,t.owningTaskId),s=((r=Xt(e))==null?void 0:r.subflows)||[],a=new Set(s.map(l=>l.id)).size!==s.length;if(i&&!a)return i}if(n&&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=n.peerAgent.id;if(a.includes(i)||s&&a.includes(s))return n}if(t.functionCallId){const i=V3(e,t.functionCallId);if(i)return i}return n||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 H3(e,t,n)}function W3(e,t,n){const r=Xt(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 $o(e,t,n,r){const o=`phase_${e.phases.length}`,i=Xr(e,`${t}_${o}`),s=e.nextAvailableGlobalY,a={id:i,type:"orchestratorNode",position:{x:Xn.MAIN_FLOW,y:s},data:{label:t,visualizerStepId:n.id}};Kr(r,e.allCreatedNodeIds,a),e.nodePositions.set(i,a.position);const l={id:i,yPosition:s,height:zt,width:dn},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+zt};return e.phases.push(u),e.currentPhaseIndex=e.phases.length-1,e.currentSubflowIndex=-1,e.nextAvailableGlobalY=u.maxY+qr,u}function Hc(e,t,n,r,o){var P,B,O,z,L;const i=Xt(e);if(!i)return null;const s=n.type==="AGENT_TOOL_EXECUTION_RESULT"&&((P=n.data.toolResult)==null?void 0:P.isPeerResponse)===!0,a=n.source||"",l=n.target||"",c=zo(a);!s&&!c&&!o&&e.indentationLevel++;const u=((O=(B=n.delegationInfo)==null?void 0:B[0])==null?void 0:O.subTaskId)||n.owningTaskId,f=Xr(e,`${t}_${u}`),p=Xr(e,`group_${t}_${u}`),h=((L=(z=n.data)==null?void 0:z.toolInvocationStart)==null?void 0:L.functionCallId)||n.functionCallId||"";let x,m,v;const y=Array.from(e.parallelFlows.values()).find(_=>_.subflowFunctionCallIds.includes(h)),b=is(e),w=W3(e,a,l);o&&y?(x=y.startX+y.currentXOffset,m=y.startY,v=m+Tn,y.currentXOffset+=(dn+Lo)*2.2):w?(v=e.nextAvailableGlobalY,x=(w.groupNode.xPosition||Xn.MAIN_FLOW-50)+e.indentationLevel*e.indentationStep,m=v-Tn):(v=e.nextAvailableGlobalY,x=Xn.MAIN_FLOW-50+e.indentationLevel*e.indentationStep,m=v-Tn);const S={id:f,type:"genericAgentNode",position:{x:50,y:Tn},data:{label:t,visualizerStepId:n.id},parentId:p},E={id:p,type:"group",position:{x,y:m},data:{label:`${t} Sub-flow`},style:{backgroundColor:"rgba(220, 220, 255, 0.1)",border:"1px solid #aac",borderRadius:"8px",minHeight:`${zt+2*Tn}px`}};Kr(r,e.allCreatedNodeIds,E),Kr(r,e.allCreatedNodeIds,S),e.nodePositions.set(f,S.position),e.nodePositions.set(p,E.position);const k={id:f,xPosition:Xn.MAIN_FLOW,yPosition:v,height:zt,width:dn},C={id:f,name:t,type:"peer",phaseId:i.id,subflowId:u,context:"subflow",nodeInstance:k};e.agentRegistry.registerAgent(C);const T={id:u,functionCallId:h,isParallel:o,peerAgent:k,groupNode:{id:p,xPosition:x,yPosition:m,height:zt+2*Tn,width:0},toolInstances:[],currentToolYOffset:0,maxY:v+zt,maxContentXRelative:S.position.x+dn,callingPhaseId:i.id,parentSubflowId:b==null?void 0:b.id,inheritedXOffset:w==null?void 0:w.groupNode.xPosition};return i.subflows.push(T),w&&(w.lastSubflow=T),e.currentSubflowIndex=i.subflows.length-1,o&&y?(y.maxHeight=Math.max(y.maxHeight,T.groupNode.height),e.nextAvailableGlobalY=y.startY+y.maxHeight+qr):e.nextAvailableGlobalY=T.groupNode.yPosition+T.groupNode.height+qr,T}function Ew(e,t,n,r,o,i,s=!1){const a=Xt(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,m;if(i){if(p=i.peerAgent.yPosition+i.currentToolYOffset,i.currentToolYOffset+=kh,x=50+300,i.groupNode.xPosition===void 0||i.groupNode.yPosition===void 0)return null;h=i.groupNode.xPosition+x,m=p-i.groupNode.yPosition}else h=Xn.TOOLS,p=a.orchestratorAgent.yPosition+a.currentToolYOffset,a.currentToolYOffset+=kh,x=h,m=p;const v=Xr(e,`${u}_${r.id}`),y={id:v,type:n,position:{x,y:m},data:{label:c,visualizerStepId:r.id,toolName:t},parentId:f};Kr(o,e.allCreatedNodeIds,y),e.nodePositions.set(v,{x,y:m});const b={id:v,xPosition:h,yPosition:p,height:zt,width:dn,functionCallId:r.functionCallId};l.push(b);const w=p+zt;if(i){i.maxY=Math.max(i.maxY,w),i.maxContentXRelative=Math.max(i.maxContentXRelative,x+dn);const S=i.maxY-i.groupNode.yPosition+Tn;i.groupNode.height=Math.max(i.groupNode.height,S);const E=i.maxContentXRelative+Lo;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+qr)}else a.maxY=Math.max(a.maxY,w),e.nextAvailableGlobalY=Math.max(e.nextAvailableGlobalY,a.maxY+qr);return b}function Sd(e,t,n,r){e.userNodeCounter++;const o=Xr(e,`User_response_${e.userNodeCounter}`),i=e.nextAvailableGlobalY+20,s={id:o,type:"userNode",position:{x:Xn.USER,y:i},data:{label:"User",visualizerStepId:n.id,isBottomNode:!0}};Kr(r,e.allCreatedNodeIds,s),e.nodePositions.set(o,s.position);const a={id:o,yPosition:i,height:zt,width:dn};t.userNodes.push(a),e.allUserNodes.push(a);const l=i+zt;return t.maxY=Math.max(t.maxY,l),a}function sn(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),m={id:f,source:e,target:t,label:h,type:"defaultFlowEdge",data:{visualizerStepId:n.id,isAnimated:x,animationType:x?"request":"static",duration:1}};a&&(m.sourceHandle=a),l&&(m.targetHandle=l),B3(r,m)}}function G3(){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 zo(e){return e==="OrchestratorAgent"||e.toLowerCase().includes("orchestrator")}const Y3=["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 q3(e,t,n,r,o,i){const s=e.target,a=s.replace(/[^a-zA-Z0-9_]/g,"_"),l=Xt(t),c=is(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=Xr(t,`User_continue_${t.userNodeCounter}`),h=t.nextAvailableGlobalY,x={id:p,type:"userNode",position:{x:Xn.USER,y:h},data:{label:"User",visualizerStepId:e.id}};Kr(n,t.allCreatedNodeIds,x),t.nodePositions.set(p,x.position);const m={id:p,yPosition:h,height:zt,width:dn};l.userNodes.push(m),t.allUserNodes.push(m);const v=h+zt;u.yPosition=Math.max(u.yPosition,h),l.maxY=Math.max(l.maxY,v,u.yPosition+zt),t.nextAvailableGlobalY=l.maxY+qr;const y=zo(s)?"orch-left-input":"peer-left-input";sn(m.id,u.id,e,r,t,o,i,"user-right-output",y)}else{const p=$o(t,s,e,n),h=Xr(t,`User_${p.id}`),x={id:h,type:"userNode",position:{x:Xn.USER,y:p.orchestratorAgent.yPosition-F3},data:{label:"User",visualizerStepId:e.id,isTopNode:!0}};Kr(n,t.allCreatedNodeIds,x),t.nodePositions.set(h,x.position);const m={id:h,yPosition:x.position.y,height:zt,width:dn};p.userNodes.push(m),t.allUserNodes.push(m),t.userNodeCounter++,p.maxY=Math.max(p.maxY,x.position.y+zt),t.nextAvailableGlobalY=p.maxY+qr,sn(h,p.orchestratorAgent.id,e,r,t,o,i,"user-bottom-output","orch-top-input")}}function K3(e,t,n,r,o,i){const s=Xt(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&&sn(l,c.id,e,r,t,o,i,a?"peer-right-output-tools":"orch-right-output-tools","llm-left-input")}function X3(e,t,n,r,o,i){var x;if(e.type==="AGENT_LLM_RESPONSE_TOOL_DECISION"&&((x=e.data.toolDecision)!=null&&x.isParallel)){const m=`parallel-${e.id}`;t.parallelFlows.set(m,{subflowFunctionCallIds:e.data.toolDecision.decisions.filter(v=>v.isPeerDelegation).map(v=>v.functionCallId),completedSubflows:new Set,startX:Xn.MAIN_FLOW-50,startY:t.nextAvailableGlobalY,currentXOffset:0,maxHeight:0})}const s=Xt(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?sn(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 Z3(e,t,n,r,o,i){var u;const s=Xt(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"),m=yw(e,t),v=Hc(t,f,e,n,m);v&&sn(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 m=t.agentRegistry.findAgentByName(a);m?(p=m.id,h=Vc(m.type,"output","right")):(p=s.orchestratorAgent.id,h="orch-right-output-tools")}const x=Ew(t,l,"genericToolNode",e,n,f);x&&sn(p,x.id,e,r,t,o,i,h,`${x.id}-tool-left-input`)}}function Q3(e,t,n,r,o,i){var c,u;const s=Xt(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,m])=>m.subflowFunctionCallIds.includes(f||""));if(p){const[x,m]=p;if(m.completedSubflows.add(f||""),m.completedSubflows.size<m.subflowFunctionCallIds.length)return;const v=s.subflows.filter(S=>m.subflowFunctionCallIds.includes(S.functionCallId)),y=e.target||"OrchestratorAgent";let b,w;if(zo(y))t.indentationLevel=0,b=$o(t,y,e,n).orchestratorAgent,w="orch-top-input",t.currentSubflowIndex=-1;else{t.indentationLevel=Math.max(0,t.indentationLevel-1);const S=Hc(t,y,e,n,!1);if(!S)return;b=S.peerAgent,w="peer-top-input"}v.forEach(S=>{var E;sn(((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(zo(l)){t.indentationLevel=0;const x=$o(t,l,e,n);sn(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))),m=Hc(t,l,e,n,x);m&&sn(h.id,m.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 m,v;if(p)m=p.peerAgent.id,v="peer-right-input-tools";else{const y=t.agentRegistry.findAgentByName(l);y?(m=y.id,v=Vc(y.type,"input","right")):(m=s.orchestratorAgent.id,v="orch-right-input-tools")}sn(f,m,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 J3(e,t,n,r,o,i){const s=Xt(t);if(!s||e.isSubTaskStep)return;const a=s.orchestratorAgent.id,l=Sd(t,s,e,n);sn(a,l.id,e,r,t,o,i,"orch-bottom-output","user-top-input")}function e5(e,t,n,r,o,i){const s=Xt(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=$o(t,"OrchestratorAgent",e,n);s.subflows.forEach(x=>{a.subflowFunctionCallIds.includes(x.functionCallId)&&sn(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=is(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"&&zo(h.data.label));let f,p;u?(t.indentationLevel=0,f=$o(t,"OrchestratorAgent",e,n).orchestratorAgent.id,p="orch-top-input"):(f=Sd(t,s,e,n).id,p="user-top-input"),sn(c.id,f,e,r,t,o,i,"peer-bottom-output",p),t.currentSubflowIndex=-1}function t5(e,t,n,r){const o=Xt(t);if(!o)return;const i=e.source||"UnknownSource",s=e.target||"User";let a,l="orch-bottom-output";const c=is(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;zo(s)?(t.indentationLevel=0,u=$o(t,s,e,n).orchestratorAgent.id,f="orch-top-input",t.currentSubflowIndex=-1):(u=Sd(t,o,e,n).id,f="user-top-input"),n5(a.id,u,e,r,t,l,f)}function n5(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 r5=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:z3,nodeIdCounter:0,allCreatedNodeIds:new Set,nodePositions:new Map,allUserNodes:[],userNodeCounter:0,agentRegistry:G3(),indentationLevel:0,indentationStep:50},i=e.filter(l=>Y3.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":q3(l,o,t,n,r,e);break;case"AGENT_LLM_CALL":K3(l,o,t,n,r,e);break;case"AGENT_LLM_RESPONSE_TO_AGENT":case"AGENT_LLM_RESPONSE_TOOL_DECISION":X3(l,o,t,n,r,e);break;case"AGENT_TOOL_INVOCATION_START":Z3(l,o,t,n,r,e);break;case"AGENT_TOOL_EXECUTION_RESULT":Q3(l,o,t,n,r,e);break;case"AGENT_RESPONSE_TEXT":J3(l,o,t,n,r,e);break;case"TASK_COMPLETED":e5(l,o,t,n,r,e);break;case"TASK_FAILED":t5(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+Tn;u.style.height=`${Math.max(zt+2*Tn,p)}px`;const h=c.maxContentXRelative+Lo,x=dn+2*Lo+o.indentationLevel*o.indentationStep;u.style.width=`${Math.max(h,x)}px`}})}),{nodes:t,edges:n}},o5=({id:e,sourceX:t,sourceY:n,targetX:r,targetY:o,sourcePosition:i,targetPosition:s,style:a={},markerEnd:l,data:c})=>{const[u,f]=g.useState(!1),[p]=xd({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),m=()=>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:m}),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:m})]})},i5=({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(Nt,{type:"target",position:ge.Top,id:"peer-top-input",className:"!bg-blue-700",isConnectable:!0}),d.jsx(Nt,{type:"source",position:ge.Right,id:"peer-right-output-tools",className:"!bg-blue-700",style:{top:"25%"},isConnectable:!0}),d.jsx(Nt,{type:"target",position:ge.Right,id:"peer-right-input-tools",className:"!bg-blue-700",style:{top:"75%"},isConnectable:!0}),d.jsx(Nt,{type:"source",position:ge.Bottom,id:"peer-bottom-output",className:"!bg-blue-700",isConnectable:!0}),d.jsx(Nt,{type:"target",position:ge.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})})]}),s5=({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(Nt,{type:"target",position:ge.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(Nt,{type:"source",position:ge.Left,id:`${t}-tool-bottom-output`,className:"!bg-cyan-500",isConnectable:!0,style:{top:"75%"}})]})},a5=({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(Nt,{type:"target",position:ge.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(Nt,{type:"source",position:ge.Left,id:"llm-bottom-output",className:"!bg-teal-500",isConnectable:!0,style:{top:"75%"}})]})},l5=({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(Nt,{type:"source",position:ge.Right,id:"orch-right-output-tools",className:"!bg-indigo-500",style:{top:"25%"},isConnectable:!0}),d.jsx(Nt,{type:"target",position:ge.Right,id:"orch-right-input-tools",className:"!bg-indigo-500",style:{top:"75%"},isConnectable:!0}),d.jsx(Nt,{type:"target",position:ge.Top,id:"orch-top-input",className:"!bg-indigo-500",isConnectable:!0}),d.jsx(Nt,{type:"source",position:ge.Bottom,id:"orch-bottom-output",className:"!bg-indigo-500",isConnectable:!0}),d.jsx(Nt,{type:"target",position:ge.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})})]}),c5=({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(Nt,{type:"source",position:ge.Bottom,id:"user-bottom-output",className:"!bg-gray-500",isConnectable:!0}),e.isBottomNode&&d.jsx(Nt,{type:"target",position:ge.Top,id:"user-top-input",className:"!bg-gray-500",isConnectable:!0}),!e.isTopNode&&!e.isBottomNode&&d.jsx(Nt,{type:"source",position:ge.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})]})]})};var Sw={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},Ch=$t.createContext&&$t.createContext(Sw),u5=["attr","size","title"];function d5(e,t){if(e==null)return{};var n=f5(e,t),r,o;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o<i.length;o++)r=i[o],!(t.indexOf(r)>=0)&&Object.prototype.propertyIsEnumerable.call(e,r)&&(n[r]=e[r])}return n}function f5(e,t){if(e==null)return{};var n={};for(var r in e)if(Object.prototype.hasOwnProperty.call(e,r)){if(t.indexOf(r)>=0)continue;n[r]=e[r]}return n}function wa(){return wa=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},wa.apply(this,arguments)}function _h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function ba(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?_h(Object(n),!0).forEach(function(r){p5(e,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_h(Object(n)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(n,r))})}return e}function p5(e,t,n){return t=h5(t),t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function h5(e){var t=g5(e,"string");return typeof t=="symbol"?t:t+""}function g5(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function kw(e){return e&&e.map((t,n)=>$t.createElement(t.tag,ba({key:n},t.attr),kw(t.child)))}function Fn(e){return t=>$t.createElement(m5,wa({attr:ba({},e.attr)},t),kw(e.child))}function m5(e){var t=n=>{var{attr:r,size:o,title:i}=e,s=d5(e,u5),a=o||n.size||"1em",l;return n.className&&(l=n.className),e.className&&(l=(l?l+" ":"")+e.className),$t.createElement("svg",wa({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},n.attr,r,s,{className:l,style:ba(ba({color:e.color||n.color},n.style),e.style),height:a,width:a,xmlns:"http://www.w3.org/2000/svg"}),i&&$t.createElement("title",null,i),e.children)};return Ch!==void 0?$t.createElement(Ch.Consumer,null,n=>t(n)):t(Sw)}function x5(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"path",attr:{d:"M22 11.08V12a10 10 0 1 1-5.93-9.14"},child:[]},{tag:"polyline",attr:{points:"22 4 12 14.01 9 11.01"},child:[]}]})(e)}function v5(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"path",attr:{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"},child:[]},{tag:"polyline",attr:{points:"14 2 14 8 20 8"},child:[]},{tag:"line",attr:{x1:"16",y1:"13",x2:"8",y2:"13"},child:[]},{tag:"line",attr:{x1:"16",y1:"17",x2:"8",y2:"17"},child:[]},{tag:"polyline",attr:{points:"10 9 9 9 8 9"},child:[]}]})(e)}function y5(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"line",attr:{x1:"22",y1:"12",x2:"2",y2:"12"},child:[]},{tag:"path",attr:{d:"M5.45 5.11L2 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"},child:[]},{tag:"line",attr:{x1:"6",y1:"16",x2:"6.01",y2:"16"},child:[]},{tag:"line",attr:{x1:"10",y1:"16",x2:"10.01",y2:"16"},child:[]}]})(e)}function w5(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"path",attr:{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"},child:[]},{tag:"path",attr:{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"},child:[]}]})(e)}function b5(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"path",attr:{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"},child:[]}]})(e)}function Th(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"circle",attr:{cx:"18",cy:"5",r:"3"},child:[]},{tag:"circle",attr:{cx:"6",cy:"12",r:"3"},child:[]},{tag:"circle",attr:{cx:"18",cy:"19",r:"3"},child:[]},{tag:"line",attr:{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"},child:[]},{tag:"line",attr:{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"},child:[]}]})(e)}function Ah(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"polyline",attr:{points:"4 17 10 11 4 5"},child:[]},{tag:"line",attr:{x1:"12",y1:"19",x2:"20",y2:"19"},child:[]}]})(e)}function E5(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"path",attr:{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"},child:[]},{tag:"circle",attr:{cx:"12",cy:"7",r:"4"},child:[]}]})(e)}function S5(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"circle",attr:{cx:"12",cy:"12",r:"10"},child:[]},{tag:"line",attr:{x1:"15",y1:"9",x2:"9",y2:"15"},child:[]},{tag:"line",attr:{x1:"9",y1:"9",x2:"15",y2:"15"},child:[]}]})(e)}function Ql(e){return Fn({attr:{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},child:[{tag:"polygon",attr:{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"},child:[]}]})(e)}const k5=({step:e,isHighlighted:t,onClick:n,variant:r="list"})=>{const o=()=>{var b,w,S;switch(e.type){case"USER_REQUEST":return d.jsx(E5,{className:"mr-2 text-blue-500 dark:text-blue-400",size:18});case"AGENT_RESPONSE_TEXT":return d.jsx(Ql,{className:"mr-2 text-teal-500 dark:text-teal-400",size:18});case"TASK_COMPLETED":return d.jsx(x5,{className:"mr-2 text-green-500 dark:text-green-400",size:18});case"TASK_FAILED":return d.jsx(S5,{className:"mr-2 text-red-500 dark:text-red-400",size:18});case"AGENT_LLM_CALL":return d.jsx(Ql,{className:"mr-2 text-purple-500 dark:text-purple-400",size:18});case"AGENT_LLM_RESPONSE_TO_AGENT":return d.jsx(Ql,{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(Th,{className:"mr-2 text-orange-500 dark:text-orange-400",size:18}):d.jsx(Ah,{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(Th,{className:"mr-2 text-cyan-500 dark:text-cyan-400",size:18}):d.jsx(Ah,{className:"mr-2 text-cyan-500 dark:text-cyan-400",size:18});case"AGENT_TOOL_EXECUTION_RESULT":return d.jsx(y5,{className:"mr-2 text-teal-500 dark:text-teal-400",size:18});case"AGENT_ARTIFACT_NOTIFICATION":return d.jsx(v5,{className:"mr-2 text-indigo-500 dark:text-indigo-400",size:18});default:return d.jsx(b5,{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]=$t.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`}:{},m=r==="popover"?`
658
- p-3 bg-transparent hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors duration-150
659
- ${n?"cursor-pointer":""}
660
- `:`
661
- mb-3 p-3 border rounded-lg shadow-sm
662
- bg-white dark:bg-gray-800 hover:shadow-md transition-shadow duration-150
663
- ${t?"border-blue-500 dark:border-blue-400 ring-2 ring-blue-500 dark:ring-blue-400":"border-gray-200 dark:border-gray-700"}
664
- ${n?"cursor-pointer":""}
665
- `,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:m,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(w5,{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(So,{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(So,{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)]})},C5={genericAgentNode:i5,userNode:c5,llmNode:a5,orchestratorNode:l5,genericToolNode:s5},_5={defaultFlowEdge:o5},T5={x:16,y:0},A5=({processedSteps:e,isRightPanelVisible:t=!1,isSidePanelTransitioning:n=!1})=>{const[r,o,i]=u3([]),[s,a,l]=d3([]),{fitView:c}=ol(),{highlightedStepId:u,setHighlightedStepId:f}=$u(),{taskIdInSidePanel:p}=Rt(),h=g.useRef([]),[x,m]=g.useState(!1),[v,y]=g.useState(null),[b,w]=g.useState(!1),S=g.useRef(null),[E,k]=g.useState(null),C=g.useRef(new vw),T=g.useMemo(()=>!e||e.length===0?{nodes:[],edges:[]}:r5(e),[e]),P=g.useMemo(()=>T.edges.length?T.edges.map(j=>{const A=j.data;let N={isAnimated:!1,animationType:"none"};if(A!=null&&A.visualizerStepId){const D=e.length-1;N=C.current.getEdgeAnimationState(A.visualizerStepId,D,e)}let R=j.id===E;return u&&(A==null?void 0:A.visualizerStepId)===u&&(R=!0),{...j,animated:N.isAnimated,data:{...A,isAnimated:N.isAnimated,animationType:N.animationType,isSelected:R}}}):[],[T.edges,e,E,u]),B=g.useCallback(()=>{o(j=>j.map(A=>{var Q,re,K,ne;if(A.type!=="group")return A;const N=j.filter(ie=>ie.parentId===A.id);if(N.length===0)return A;let R=0,D=0;N.forEach(ie=>{const he=ie.position.x+dn,ue=ie.position.y+zt;R=Math.max(R,he),D=Math.max(D,ue)});const Y=R+Lo,H=D+Tn;let V=0;const U=A.id.split("_");if(U.length>2){const ie=U.find(he=>he.startsWith("subflow"));if(ie){const he=parseInt(ie.replace("subflow",""));isNaN(he)||(V=he)}}const G=dn+2*Lo+V*50,F=Math.max(Y,G),W=parseInt(((re=(Q=A.style)==null?void 0:Q.width)==null?void 0:re.toString().replace("px",""))||"0"),X=parseInt(((ne=(K=A.style)==null?void 0:K.height)==null?void 0:ne.toString().replace("px",""))||"0");return W!==F||X!==H?{...A,style:{...A.style,width:`${F}px`,height:`${H}px`}}:A}))},[o]);g.useEffect(()=>{o(T.nodes),a(P),B()},[T.nodes,P,o,a,B]);const O=g.useCallback((j,A)=>s.find(N=>N.source===j&&(A?N.sourceHandle===A:!0))||null,[s]),z=g.useCallback((j,A)=>{var R;m(!0);const N=(R=A.data)==null?void 0:R.visualizerStepId;if(N){const D=e.find(Y=>Y.id===N);D&&(k(A.id),t?f(N):(f(N),y(D),w(!0)))}},[e,t,f]),L=g.useCallback(j=>{switch(j.type){case"userNode":{const A=j.data;return A!=null&&A.isTopNode?["user-bottom-output"]:A!=null&&A.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[`${j.id}-tool-bottom-output`];default:return[]}},[]),_=g.useCallback(()=>{w(!1),y(null)},[]),I=g.useCallback((j,A)=>{if(m(!0),A.type==="group"){f(null),k(null),_();return}const N=L(A);let R=null;for(const D of N)if(R=O(A.id,D),R)break;if(!R&&A.type==="userNode"){const D=A.data;D!=null&&D.isBottomNode&&(R=s.find(Y=>Y.target===A.id)||null)}R&&z(j,R)},[L,f,_,O,s,z]),M=g.useCallback(j=>{j!=null&&j.isTrusted&&m(!0)},[]);return g.useEffect(()=>{m(!1)},[p]),g.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]),g.useEffect(()=>{if(o(j=>j.map(A=>{var Y;const N=((Y=A.data)==null?void 0:Y.visualizerStepId)&&A.data.visualizerStepId===u,R=T.nodes.find(H=>H.id===A.id),D=(R==null?void 0:R.style)||{};return{...A,style:{...D,boxShadow:N?"0px 4px 12px rgba(0, 0, 0, 0.2)":D.boxShadow||"none",transition:"box-shadow 0.2s ease-in-out"}}})),u){const j=P.find(A=>{const N=A.data;return(N==null?void 0:N.visualizerStepId)===u});j&&k(j.id)}else k(null)},[u,o,T.nodes,P]),!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."}):T.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(c3,{nodes:r,edges:s.map(j=>({...j,markerEnd:{type:Hi.ArrowClosed,color:"#888"}})),onNodesChange:i,onEdgesChange:l,onEdgeClick:z,onNodeClick:I,onPaneClick:()=>{f(null),k(null),_()},onMoveStart:M,nodeTypes:C5,edgeTypes:_5,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(m3,{}),d.jsx(S3,{className:Hb()}),d.jsx(os,{position:"top-right",className:"flex items-center space-x-4",children:d.jsx("div",{ref:S})})]}),d.jsx($_,{isOpen:b,onClose:_,anchorRef:S,offset:T5,placement:"right-start",className:"max-w-[500px] min-w-[400px] p-2",children:v&&d.jsx(k5,{step:v,variant:"popover"})})]})},N5=e=>d.jsx(hw,{children:d.jsx(A5,{...e})}),Uc=e=>{var t,n,r;if(e.events&&e.events.length>0){const o=e.events[0];if((r=(n=(t=o.full_payload)==null?void 0:t.params)==null?void 0:n.metadata)!=null&&r.parentTaskId)return o.full_payload.params.metadata.parentTaskId}},j5=(e,t)=>{var o,i,s,a,l;const n=t[e];if(!n)return null;for(const c of n.events||[]){const u=c.full_payload;if(c.direction==="status_update"&&(u!=null&&u.result)){const f=((o=u.result.metadata)==null?void 0:o.agent_name)||((a=(s=(i=u.result.status)==null?void 0:i.message)==null?void 0:s.metadata)==null?void 0:a.agent_name)||c.source_entity;if(f)return f}}const r=(l=n.events)==null?void 0:l.find(c=>c.direction==="request");return(r==null?void 0:r.target_entity)||null},pi=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},Cw=(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;Uc(a)===e&&(i=i.concat(Cw(a.taskId,t,n,r+1)))}return i},I5=(e,t,n)=>{if(!n)return null;const r={overall:{totalTaskDurationMs:0},agents:{}},o=new Map,i=new Map,s=(I,M)=>(r.agents[I]||(r.agents[I]={agentName:M,instanceId:I,displayName:M,llmCalls:[],toolCalls:[],totalLlmTimeMs:0,totalToolTimeMs:0}),r.agents[I]),a=new Map,l=Cw(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((I,M)=>new Date(pi(I)).getTime()-new Date(pi(M)).getTime()),u=[];let f="",p,h,x=[],m=null,v;const y=new Map,b=new Map,w=new Map,S=I=>{if(f.trim()&&p&&h){const M=f.trim();let j=n.taskId;if(x.length>0){const R=x[0].split("-");R.length>2&&R[1]!=="global"&&(j=R.slice(1,R.length-1).join("-"))}else I&&(j=I);const A=a.get(j)??0,N=y.get(j)||w.get(j);u.push({id:`vstep-agenttext-${u.length}-${x[0]||"unknown"}`,type:"AGENT_RESPONSE_TEXT",timestamp:h,title:`${p}: Response`,source:p,target:"User",data:{text:M},rawEventIds:[...x],isSubTaskStep:A>0,nestingLevel:A,owningTaskId:j,functionCallId:N}),m=M}f="",p=void 0,h=void 0,x=[],v=void 0};c.forEach((I,M)=>{var F,W,X,Q,re,K,ne,ie,he,ue,we,Ee,Ke,st,tt,me,ut,dt,lt,We,ht,xt,pt,bt,vt,ct,Tt,He,Fe,At,be,ye,_e,Pe,Le,ee,q,se,le,de,De,Ie,qe,Xe,Ae,Ve,ze,rt,gt,Et,Dt,St,kt,en,Bt;const j=pi(I),A=`raw-${I.task_id||"global"}-${M}`,N=I.full_payload,R=I.task_id||n.taskId,D=a.get(R)??0;let Y=I.source_entity||"UnknownAgent";(W=(F=N==null?void 0:N.result)==null?void 0:F.metadata)!=null&&W.agent_name?Y=N.result.metadata.agent_name:(K=(re=(Q=(X=N==null?void 0:N.result)==null?void 0:X.status)==null?void 0:Q.message)==null?void 0:re.metadata)!=null&&K.agent_name?Y=N.result.status.message.metadata.agent_name:(he=(ie=(ne=N==null?void 0:N.result)==null?void 0:ne.artifact)==null?void 0:ie.metadata)!=null&&he.agent_name&&(Y=N.result.artifact.metadata.agent_name);let H;const V=(Ke=(Ee=(we=(ue=N==null?void 0:N.result)==null?void 0:ue.status)==null?void 0:we.message)==null?void 0:Ee.metadata)==null?void 0:Ke.function_call_id;if(D>0?H=y.get(R):H=w.get(R),V&&(H=V),I.direction==="request"&&D>0){const Te=(st=N.params)==null?void 0:st.metadata,$e=Te==null?void 0:Te.function_call_id,Ce=I.task_id;if(Ce&&$e){y.set(Ce,$e);return}}if(I.direction==="request"&&D===0&&I.task_id===n.taskId){S(R),m=null;const Te=N.params;let $e="User request";if((tt=Te==null?void 0:Te.message)!=null&&tt.parts){const Ce=Te.message.parts.filter(oe=>oe.type==="text");$e=((me=Ce[1])==null?void 0:me.text)??((ut=Ce[0])==null?void 0:ut.text)}u.push({id:`vstep-userreq-${u.length}-${A}`,type:"USER_REQUEST",timestamp:j,title:"User Input",source:"User",target:I.target_entity||Y,data:{text:$e},rawEventIds:[A],isSubTaskStep:!1,nestingLevel:0,owningTaskId:R});return}if(I.direction==="status_update"&&(N!=null&&N.result)){const Te=N.result,$e=(dt=Te.status)==null?void 0:dt.message,Ce=$e==null?void 0:$e.metadata;let oe,$=!1;Ce!=null&&Ce.forwarded_from_peer?(oe=Ce.forwarded_from_peer,$=!0):(lt=Te.metadata)!=null&&lt.agent_name?oe=Te.metadata.agent_name:Ce!=null&&Ce.agent_name?oe=Ce.agent_name:oe=I.source_entity||"Agent";const J=`${oe}:${R}`;if((Ce==null?void 0:Ce.type)==="llm_invocation"){S(R);const Z=Ce.data;let pe="System-initiated LLM call";if(Z!=null&&Z.contents&&Array.isArray(Z.contents))for(let ce=Z.contents.length-1;ce>=0;ce--){const fe=Z.contents[ce];if((fe==null?void 0:fe.role)==="user"){if((We=fe.parts)!=null&&We.some(ae=>ae.text)){pe=fe.parts.map(ae=>ae.text).join(`
666
- `);break}else if((ht=fe.parts)!=null&&ht.some(ae=>ae.function_response)){pe=`Processing response from tool: ${fe.parts.find(Ne=>Ne.function_response).function_response.name}`;break}}}const ke={modelName:(Z==null?void 0:Z.model)||"Unknown Model",promptPreview:pe};s(J,oe),o.set(J,{timestamp:j,modelName:ke.modelName});const te={id:`vstep-llmcall-${u.length}-${A}`,type:"AGENT_LLM_CALL",timestamp:j,title:`${oe}: LLM Call`,source:oe,target:"LLM",data:{llmCall:ke},rawEventIds:[A],isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R,functionCallId:H};u.push(te);return}if((Ce==null?void 0:Ce.type)==="llm_response"&&((pt=(xt=Ce.data)==null?void 0:xt.content)!=null&&pt.parts)){const Z=o.get(J);if(Z){const te=new Date(j).getTime()-new Date(Z.timestamp).getTime();s(J,oe).llmCalls.push({modelName:Z.modelName,durationMs:te,timestamp:Z.timestamp}),o.delete(J)}const pe=Ce.data.content.parts,ke=pe.filter(te=>te.function_call);if(ke.length>0){p===oe&&f.trim()&&(S(R),m=null),w.delete(R);const te=ke.map(Ze=>{var Zt;const jt=Ze.function_call;return{functionCallId:jt.id,toolName:jt.name,toolArguments:jt.args||{},isPeerDelegation:(Zt=jt.name)==null?void 0:Zt.startsWith("peer_")}}),ce={decisions:te,isParallel:te.length>1},fe=[],ae=new Set;te.forEach(Ze=>{if(Ze.isPeerDelegation){const jt=Ze.toolName.substring(5);for(const Zt in t){const Ht=t[Zt];if(ae.has(Ht.taskId))continue;if(Uc(Ht)===R&&Ht.events&&Ht.events.length>0){const kn=Ht.events.find(tn=>{var Hn,pn;return tn.direction==="request"&&((pn=(Hn=tn.full_payload)==null?void 0:Hn.method)==null?void 0:pn.startsWith("tasks/"))&&tn.target_entity===jt});if(kn&&new Date(pi(kn)).getTime()>=new Date(j).getTime()){const tn={functionCallId:Ze.functionCallId,peerAgentName:jt,subTaskId:Ht.taskId};fe.push(tn),b.set(Ze.functionCallId,tn),Ht.taskId&&(y.set(Ht.taskId,Ze.functionCallId),ae.add(Ht.taskId));break}}}}});const Ne={id:`vstep-tooldecision-${u.length}-${A}`,type:"AGENT_LLM_RESPONSE_TOOL_DECISION",timestamp:j,title:`LLM: Tool Decision${ce.isParallel?" (Parallel)":""}`,source:"LLM",target:oe,data:{toolDecision:ce},rawEventIds:[A],delegationInfo:fe.length>0?fe:void 0,isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R};u.push(Ne);const Me=ce.isParallel?Ne.id:void 0,Ct=J;s(Ct,oe),te.forEach(Ze=>{var Zt;const jt=Ze.isPeerDelegation?(Zt=b.get(Ze.functionCallId))==null?void 0:Zt.subTaskId:void 0;i.has(Ze.functionCallId)||i.set(Ze.functionCallId,{timestamp:j,toolName:Ze.toolName,isPeer:Ze.isPeerDelegation,invokingAgentInstanceId:Ct,subTaskId:jt,parallelBlockId:Me})});return}else{const te=pe.filter(fe=>fe.text).map(fe=>fe.text).join("\\n"),ce={responsePreview:te.substring(0,200)+(te.length>200?"...":""),isFinalResponse:((bt=Ce.data)==null?void 0:bt.partial)===!1};u.push({id:`vstep-llmrespagent-${u.length}-${A}`,type:"AGENT_LLM_RESPONSE_TO_AGENT",timestamp:j,title:`${oe}: LLM Response`,source:"LLM",target:oe,data:{llmResponseToAgent:ce},rawEventIds:[A],isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R,functionCallId:H});return}}if((Ce==null?void 0:Ce.type)==="tool_invocation_start"){p===oe&&f.trim()&&(S(R),m=null);const Z=Ce.data,pe=Z==null?void 0:Z.tool_name,ke=(Z==null?void 0:Z.tool_args)||{},te=(Z==null?void 0:Z.function_call_id)||`unknown-${pe}-${u.length}`;console.log(`Processing tool invocation start for ${pe} with functionCallId: ${te}`);const ce={functionCallId:te,toolName:pe,toolArguments:ke,isPeerInvocation:pe==null?void 0:pe.startsWith("peer_")},fe={id:`vstep-toolinvokestart-${u.length}-${A}`,type:"AGENT_TOOL_INVOCATION_START",timestamp:j,title:`${oe}: Executing tool ${pe}`,source:oe,target:pe,data:{toolInvocationStart:ce},rawEventIds:[A],isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R,functionCallId:te};if(ce.isPeerInvocation){const ae=b.get(te);ae&&(fe.delegationInfo=[ae])}u.push(fe);return}if($e!=null&&$e.parts&&(Ce==null?void 0:Ce.type)==="tool_response_content"){S(R),(((Tt=(ct=(vt=Te.status)==null?void 0:vt.message)==null?void 0:ct.parts)==null?void 0:Tt.filter(pe=>{var ke;return pe.type==="data"&&((ke=pe.metadata)==null?void 0:ke.tool_name)}))||[]).forEach((pe,ke)=>{const te=pe.metadata,ce=te.tool_name,fe=te.function_call_id;if(!ce||!fe){console.warn("Skipping tool result part due to missing metadata",pe);return}const ae=i.get(fe);if(ae){const Ct=new Date(j).getTime()-new Date(ae.timestamp).getTime(),Ze=r.agents[ae.invokingAgentInstanceId];if(Ze){const jt={toolName:ae.toolName,durationMs:Ct,isPeer:ae.isPeer,timestamp:ae.timestamp,peerAgentName:ae.isPeer?ae.toolName.substring(5):void 0,subTaskId:ae.subTaskId,parallelBlockId:ae.parallelBlockId};Ze.toolCalls.push(jt)}i.delete(fe)}const Ne=ce==null?void 0:ce.startsWith("peer_"),Me={toolName:ce,functionCallId:fe,resultData:pe.data,isPeerResponse:Ne};u.push({id:`vstep-toolresult-${u.length}-${A}-${ke}`,type:"AGENT_TOOL_EXECUTION_RESULT",timestamp:j,title:`${oe}: Tool Result - ${ce}`,source:ce,target:oe,data:{toolResult:Me},rawEventIds:[A],isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R,functionCallId:fe})});return}if(Te.final===!0&&R===n.taskId){S(R);const Z=(He=Te.status)==null?void 0:He.message;if(Z!=null&&Z.parts){const pe=Z.parts.find(ke=>ke.type==="text");if(pe!=null&&pe.text&&pe.text.trim()){const ke=pe.text.trim();ke!==m&&(u.push({id:`vstep-agenttext-finalevent-${u.length}-${A}`,type:"AGENT_RESPONSE_TEXT",timestamp:j,title:`${oe}: Response (Final Update)`,source:oe,target:"User",data:{text:ke},rawEventIds:[A],isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R,functionCallId:H}),m=ke)}}return}if($e!=null&&$e.parts){const Z=$e.parts.find(pe=>pe.type==="text");if(Z!=null&&Z.text)p&&p!==oe&&(S(R),m=null),p||(p=oe,h=j,v=$),f+=Z.text,x.push(A);else{const pe=$e.parts.find(ke=>{var te;return ke.type==="data"&&((te=ke.data)==null?void 0:te.a2a_signal_type)==="agent_status_message"});if(pe&&$){const ke=(Fe=pe.data)==null?void 0:Fe.text;ke&&(p&&p!==oe&&(S(R),m=null),p||(p=oe,h=j,v=!0),f+=ke,x.push(A))}}}return}if(I.direction==="artifact_update"&&((At=N==null?void 0:N.result)!=null&&At.artifact)){S(R);const Te=N.result.artifact,$e=((be=Te.metadata)==null?void 0:be.agent_name)||I.source_entity||"Agent";let Ce;if(Te.parts&&Te.parts.length>0){const $=Te.parts[0];$.type==="file"?Ce=$.file.mimeType||void 0:(ye=$.metadata)!=null&&ye.mime_type&&(Ce=$.metadata.mime_type)}const oe={artifactName:Te.name||"Unnamed Artifact",version:typeof((_e=Te.metadata)==null?void 0:_e.version)=="number"?Te.metadata.version:void 0,description:Te.description||void 0,mimeType:Ce};u.push({id:`vstep-artifactnotify-${u.length}-${A}`,type:"AGENT_ARTIFACT_NOTIFICATION",timestamp:j,title:`${$e}: Artifact Update - ${oe.artifactName}`,source:$e,target:"User/System",data:{artifactNotification:oe},rawEventIds:[A],isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R,functionCallId:H});return}if(I.direction==="response"&&((Le=(Pe=N==null?void 0:N.result)==null?void 0:Pe.status)!=null&&Le.state)){f.trim()&&S(R);const Te=N.result,$e=Te.status.state,Ce=((ee=Te.metadata)==null?void 0:ee.agent_name)||((le=(se=(q=Te.status)==null?void 0:q.message)==null?void 0:se.metadata)==null?void 0:le.agent_name)||I.source_entity||"Agent";if(D>0&&$e==="completed"){const oe=Uc(t[R]),$=oe?j5(oe,t):null,J=y.get(R);if($&&J){const Z=i.get(J);if(Z){const ke=new Date(j).getTime()-new Date(Z.timestamp).getTime(),te=r.agents[Z.invokingAgentInstanceId];if(te){const ce={toolName:Z.toolName,durationMs:ke,isPeer:Z.isPeer,timestamp:Z.timestamp,peerAgentName:Z.isPeer?Z.toolName.substring(5):void 0,subTaskId:Z.subTaskId,parallelBlockId:Z.parallelBlockId};te.toolCalls.push(ce)}i.delete(J)}const pe={toolName:`peer_${Ce}`,functionCallId:J,resultData:Te.status.message,isPeerResponse:!0};u.push({id:`vstep-toolresult-${u.length}-${A}`,type:"AGENT_TOOL_EXECUTION_RESULT",timestamp:j,title:`${$}: Tool Result - peer_${Ce}`,source:`peer_${Ce}`,target:$,data:{toolResult:pe},rawEventIds:[A],isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R,functionCallId:J});return}}if(["completed","failed","canceled"].includes($e)){const oe=$e==="completed"?"TASK_COMPLETED":"TASK_FAILED",$=`${Ce}: Task ${$e.charAt(0).toUpperCase()+$e.slice(1)}`;let J={},Z="";if((de=Te.status.message)!=null&&de.parts){const te=Te.status.message.parts.find(ce=>ce.type==="text");te!=null&&te.text&&(Z=te.text.trim())}const pe=R===n.taskId,ke=Z&&(!pe||Z!==m);if(oe==="TASK_COMPLETED")J={finalMessage:ke?Z:void 0};else{const ce={message:ke?Z:`Task ${$e}.`},fe=N.error;fe&&(ce.message=fe.message||ce.message,ce.code=fe.code,fe.data&&(ce.details=fe.data)),Te.error&&(ce.message=Te.error.message||ce.message,ce.code=Te.error.code||ce.code,ce.details=Te.error.data||ce.details),J={errorDetails:ce}}u.push({id:`vstep-${$e}-${u.length}-${A}`,type:oe,timestamp:j,title:$,source:Ce,target:"User",data:J,rawEventIds:[A],isSubTaskStep:D>0,nestingLevel:D,owningTaskId:R,functionCallId:H}),pe&&(m=null);return}}const U=I.direction==="status_update"&&((Xe=(qe=(Ie=(De=N==null?void 0:N.result)==null?void 0:De.status)==null?void 0:Ie.message)==null?void 0:qe.parts)==null?void 0:Xe.some(Te=>Te.type==="text"));let G=I.source_entity;(rt=(ze=(Ve=(Ae=N==null?void 0:N.result)==null?void 0:Ae.status)==null?void 0:Ve.message)==null?void 0:ze.metadata)!=null&&rt.forwarded_from_peer?G=N.result.status.message.metadata.forwarded_from_peer:(Et=(gt=N==null?void 0:N.result)==null?void 0:gt.metadata)!=null&&Et.agent_name?G=N.result.metadata.agent_name:(en=(kt=(St=(Dt=N==null?void 0:N.result)==null?void 0:Dt.status)==null?void 0:St.message)==null?void 0:kt.metadata)!=null&&en.agent_name&&(G=N.result.status.message.metadata.agent_name),f.trim()&&p&&(!U||U&&G!==p)&&(S(R),a.get(((Bt=x[0])==null?void 0:Bt.split("-")[1])||n.taskId)===0&&!v&&(m=null))});const E=c.length>0&&c[c.length-1].task_id||n.taskId;S(E);const k=c[0]?pi(c[0]):n.firstSeen.toISOString();let C,T="working";const P=u.filter(I=>I.owningTaskId===n.taskId),B=P.length>0?P[P.length-1]:null;if(B&&(B.type==="TASK_COMPLETED"?(T="completed",C=B.timestamp):B.type==="TASK_FAILED"&&(T="failed",C=B.timestamp)),T==="working"&&c.length>0){const I=c[c.length-1];t[I.task_id||n.taskId]}let O;k&&C&&(O=new Date(C).getTime()-new Date(k).getTime());const z={taskId:n.taskId,initialRequestText:n.initialRequestText,status:T,startTime:k,endTime:C,durationMs:O,steps:u};Object.values(r.agents).forEach(I=>{I.totalLlmTimeMs=I.llmCalls.reduce((R,D)=>R+D.durationMs,0);const M=I.toolCalls.filter(R=>!R.parallelBlockId),j=new Map;I.toolCalls.forEach(R=>{R.parallelBlockId&&(j.has(R.parallelBlockId)||j.set(R.parallelBlockId,[]),j.get(R.parallelBlockId).push(R))});const A=M.reduce((R,D)=>R+D.durationMs,0);let N=0;j.forEach(R=>{if(R.length>0){const D=Math.min(...R.map(H=>new Date(H.timestamp).getTime())),Y=Math.max(...R.map(H=>new Date(H.timestamp).getTime()+H.durationMs));N+=Y-D}}),I.totalToolTimeMs=A+N});const L=new Map;Object.values(r.agents).forEach(I=>{L.has(I.agentName)||L.set(I.agentName,[]),L.get(I.agentName).push(I)}),L.forEach(I=>{I.length>1&&(I.sort((M,j)=>{const A=N=>{const R=[...N.llmCalls.map(D=>new Date(D.timestamp).getTime()),...N.toolCalls.map(D=>new Date(D.timestamp).getTime())];return R.length>0?Math.min(...R):1/0};return A(M)-A(j)}),I.forEach((M,j)=>{M.displayName=`${M.agentName} (${j+1})`}))});const _=new Map;return Object.values(r.agents).forEach(I=>{const M=I.instanceId.split(":").slice(1).join(":");M&&_.set(M,I.displayName)}),Object.values(r.agents).forEach(I=>{I.toolCalls.forEach(M=>{if(M.isPeer&&M.subTaskId){const j=_.get(M.subTaskId);j&&(M.peerAgentName=j)}})}),O!==void 0&&(r.overall.totalTaskDurationMs=O),z.performanceReport=r,z},M5=({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(P5,{onClick:o}),d.jsx(O5,{items:e,bottomItems:t,activeItem:n,onItemClick:i})]})},R5=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"})]}),P5=({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:R5})}),D5=()=>{const{currentTheme:e,toggleTheme:t}=Jm(),n=`Toggle theme (currently ${e})`;return d.jsxs(mu,{children:[d.jsx(xu,{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(Kg,{className:"mb-1 w-6 h-6"})})}),d.jsx(vu,{side:"right",children:n})]})},O5=({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(Nh,{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(D5,{}):d.jsx(Nh,{item:o,isActive:n===o.id,onItemClick:r},o.id)},o.id))})]}),Nh=({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(xu,{asChild:!0,children:d.jsxs("button",{type:"button",onClick:n?a:void 0,onKeyDown:n?l:void 0,disabled:s,className:Ye("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:Ye("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(vu,{side:"right",children:o})]})},jh=[{id:"chat",label:"Chat",icon:QS},{id:"agentMesh",label:"Agents",icon:Fg}],Ih=[{id:"theme-toggle",label:"Theme",icon:Kg,onClick:()=>{}}],_w=({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($t.Fragment,{children:o},i))})]}),yt=({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})]}),L5=({agent:e,isExpanded:t,onToggleExpand:n})=>{var l;const r=c=>!c||Object.keys(c).length===0?d.jsx("span",{className:"text-sm",children:"N/A"}):d.jsx("ul",{className:"list-inside list-disc pl-1",children:Object.entries(c).map(([u,f])=>d.jsxs("li",{className:"text-sm",children:[d.jsxs("span",{className:"capitalize",children:[u.replace(/_/g," "),":"]})," ",f?"Yes":"No"]},u))}),o=(c,u="None")=>!c||c.length===0?d.jsx("span",{children:u}):c.map(f=>d.jsx("span",{className:"mr-1 mb-1 inline-block rounded-full px-2 py-0.5 text-xs font-medium",children:f},f)),i=c=>!c||c.length===0?d.jsx("span",{children:"No skills listed"}):d.jsx("div",{className:"space-y-1",children:c.map(u=>d.jsxs("div",{className:"rounded p-1.5 text-xs",children:[d.jsx("p",{className:"font-semibold",children:u.name}),d.jsx("p",{children:u.description})]},u.id||u.name))}),s=c=>!c||c.length===0?d.jsx("span",{children:"No tools listed"}):d.jsx("div",{className:"space-y-1",children:c.map(u=>d.jsxs("div",{className:"rounded p-1.5 text-xs",children:[d.jsx("p",{className:"font-semibold text-foreground",children:u.name}),d.jsx("p",{className:"mb-1",children:u.description})]},u.name))}),a=c=>!c||Object.keys(c).length===0?d.jsx("span",{children:"N/A"}):d.jsx("div",{className:"ml-1 border-l pl-2",children:Object.entries(c).map(([u,f])=>d.jsx(yt,{label:u.replace(/_/g," "),value:typeof f=="object"?d.jsx("span",{children:JSON.stringify(f)}):String(f)},u))});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(Fg,{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:[e.description&&d.jsx("div",{className:"mb-2 line-clamp-4 text-base",children:e.description}),!e.description&&d.jsx("div",{className:"mb-2 text-base",children:"No description provided."}),d.jsx(yt,{label:"Version",value:e.version,icon:d.jsx(Qd,{size:14})}),e.capabilities&&Object.keys(e.capabilities).length>0&&d.jsx(yt,{label:"Key Capabilities",value:r(e.capabilities),icon:d.jsx(Jd,{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(yt,{label:"Name",value:e.name,icon:d.jsx(bu,{size:14})}),d.jsx(yt,{label:"Description",value:e.description,icon:d.jsx(fS,{size:14}),fullWidthValue:!0}),d.jsx(yt,{label:"Version",value:e.version,icon:d.jsx(Qd,{size:14})}),d.jsx(yt,{label:"Endpoint",value:e.url||"N/A",icon:d.jsx(KS,{size:14})}),d.jsx(yt,{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(Gg,{size:14})}),d.jsx(yt,{label:"Last Seen",value:Bb(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(yt,{label:"Name",value:e.provider.name}),d.jsx(yt,{label:"URL",value:e.provider.url||"N/A"})]}),e.authentication&&e.authentication.type!=="none"&&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:"Authentication"}),d.jsx(yt,{label:"Type",value:e.authentication.type,icon:d.jsx(dk,{size:14})}),d.jsx(yt,{label:"Token URL",value:e.authentication.token_url}),d.jsx(yt,{label:"Scopes",value:(l=e.authentication.scopes)==null?void 0:l.join(", ")})]}),d.jsx(yt,{label:"Capabilities",value:r(e.capabilities),icon:d.jsx(Jd,{size:14}),fullWidthValue:!0}),d.jsx(yt,{label:"Input Modes",value:o(e.defaultInputModes),icon:d.jsx(Xd,{size:14}),fullWidthValue:!0}),d.jsx(yt,{label:"Output Modes",value:o(e.defaultOutputModes),icon:d.jsx(Xd,{size:14}),fullWidthValue:!0}),d.jsx(yt,{label:"Skills",value:i(e.skills),icon:d.jsx(yk,{size:14}),fullWidthValue:!0}),d.jsx(yt,{label:"Tools Info",value:s(e.tools),icon:d.jsx(Vg,{size:14}),fullWidthValue:!0}),d.jsx(yt,{label:"Model Settings",value:a(e.model_settings),icon:d.jsx(ck,{size:14}),fullWidthValue:!0}),d.jsxs("div",{className:"text-2xs mt-1.5 pt-1.5",children:[d.jsx(yt,{label:"A2A Protocol",value:e.a2a_protocol_version}),d.jsx(yt,{label:"ADK Version",value:e.adk_version}),d.jsx(yt,{label:"SAC Version",value:e.sac_version})]})]}),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]=g.useState(null),[r,o]=g.useState(""),i=a=>{n(l=>l===a?null:a)},s=e.filter(a=>{var l;return(l=(a==null?void 0: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(Je,{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(L5,{agent:a,isExpanded:t===a.name,onToggleExpand:()=>i(a.name)},a.name))})})]})})},Tw={LAYOUT:"layout"};class $5{constructor(){at(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:Tw.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 Aw=new $5,z5=({currentLayout:e,onLayoutChange:t,className:n=""})=>{const r=Aw.getPluginsByType(Tw.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(Je,{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},Mh={CARDS:"cards"};function F5(){const{agents:e,agentsLoading:t,agentsError:n,agentsRefetch:r}=Rt(),[o,i]=g.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(id,{variant:"error",message:`Error loading agents. ${n}`})})});const s=()=>{if(o===Mh.CARDS)return d.jsx(Wc,{agents:e});const a=Aw.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(_w,{title:"Agents",buttons:[d.jsxs(Je,{variant:"ghost",title:"Refresh Agents",onClick:()=>r(),children:[d.jsx(Yg,{className:"size-4"}),"Refresh Agents"]})]}),d.jsxs("div",{className:`relative flex-1 p-4 ${o===Mh.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(z5,{currentLayout:o,onLayoutChange:i})}),s()]})]})}const js=4,Gc={chatPanelSizes:{default:50,min:30,max:96},sidePanelSizes:{default:50,min:20,max:70}},B5={chatPanelSizes:{...Gc.chatPanelSizes,min:50},sidePanelSizes:{...Gc.sidePanelSizes,max:50}};function H5(){var A;const{agents:e,sessionId:t,messages:n,setMessages:r,selectedAgentName:o,setSelectedAgentName:i,isSidePanelCollapsed:s,setIsSidePanelCollapsed:a,openSidePanelTab:l,setTaskIdInSidePanel:c}=Rt(),{isTaskMonitorConnected:u,isTaskMonitorConnecting:f,taskMonitorSseError:p,connectTaskMonitorStream:h}=$u(),[x,m]=g.useState(!0),[v,y]=g.useState(!1),b=Qm(),[w,S]=g.useState(!1),E=g.useRef(null),k=g.useRef(null),C=g.useRef(null),{chatPanelSizes:T,sidePanelSizes:P}=g.useMemo(()=>x?Gc:B5,[x]),B=g.useCallback(N=>{if(y(!0),k.current)if(N)k.current.resize(js);else{const R=C.current||P.default;k.current.resize(R)}setTimeout(()=>y(!1),300)},[P.default]),O=g.useCallback(()=>{a(!0)},[a]),z=g.useCallback(()=>{a(!1)},[a]),L=g.useCallback(N=>{N>js+1&&(C.current=N)},[]),_=g.useCallback(()=>{m(!x)},[x]);g.useEffect(()=>{k.current&&s&&k.current.resize(js);const N=()=>{if(k.current&&s){y(!0);const R=C.current||P.default;k.current.resize(R),a(!1),setTimeout(()=>y(!1),300)}};return window.addEventListener("expand-side-panel",N),()=>{window.removeEventListener("expand-side-panel",N)}},[s,a,P.default]),g.useEffect(()=>{if(!o&&e.length>0){const N=e.find(H=>H.name==="OrchestratorAgent"),R=N?N.name:e[0].name;i(R);const D=e.find(H=>H.name===R),Y=D!=null&&D.display_name?`Hi! I'm the ${D==null?void 0:D.display_name} Agent. How can I help?`:`Hi! I'm ${R}. How can I help?`;r(H=>[...H.filter(U=>!U.isStatusBubble),{text:Y,isUser:!1,isComplete:!0,metadata:{sessionId:t,lastProcessedEventSequence:0}}])}},[e,o,t,r,i]);const I=g.useMemo(()=>{const N=new Map;return n.forEach((R,D)=>{R.taskId&&N.set(R.taskId,D)}),N},[n]),M=g.useMemo(()=>n.find(N=>N.isStatusBubble),[n]),j=g.useMemo(()=>{if(M!=null&&M.taskId)return()=>{c(M.taskId),l("workflow")}},[M==null?void 0:M.taskId,c,l]);return g.useEffect(()=>{const N=()=>{!u&&!f&&p&&(console.log("ChatPage: Window focused while disconnected, attempting reconnection..."),h())};return window.addEventListener("focus",N),()=>{window.removeEventListener("focus",N)}},[u,f,p,h]),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 ${x?"-translate-x-full":"translate-x-0"}`,children:d.jsx(OI,{onToggle:_})}),d.jsx("div",{className:`transition-all duration-300 ${x?"ml-0":"ml-100"}`,children:d.jsx(_w,{title:b,leadingAction:x?d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsx(Je,{variant:"ghost",onClick:_,className:"h-10 w-10 p-0",tooltip:"Show Sessions Panel",children:d.jsx(Wg,{className:"size-5"})}),d.jsx("div",{className:"h-6 w-px bg-gray-300 dark:bg-gray-600"}),d.jsx(Je,{variant:"ghost",onClick:()=>S(!0),className:"h-10 w-10 p-0",tooltip:"Start New Chat Session",children:d.jsx(qg,{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 ${x?"ml-0":"ml-100"}`,children:d.jsxs(a_,{direction:"horizontal",autoSaveId:"chat-side-panel",className:"h-full",children:[d.jsx(Ef,{defaultSize:T.default,minSize:T.min,maxSize:T.max,id:"chat-panel",children:d.jsxs("div",{className:"flex h-full w-full flex-col py-6",children:[d.jsx(dx,{className:"text-base",ref:E,children:n.map((N,R)=>{var Y;const D=!!(N.taskId&&I.get(N.taskId)===R);return d.jsx(_j,{message:N,isLastWithTaskId:D},`${((Y=N.metadata)==null?void 0:Y.sessionId)||"session"}-${R}-${N.isUser?"received":"sent"}`)})}),d.jsxs("div",{style:ux,children:[M&&d.jsx(Iv,{statusText:M.text,onViewWorkflow:j}),d.jsx(oT,{agents:e,scrollToBottom:(A=E.current)==null?void 0:A.scrollToBottom})]})]})}),d.jsx(l_,{}),d.jsx(Ef,{ref:k,defaultSize:P.default,minSize:P.min,maxSize:P.max,collapsedSize:js,collapsible:!0,onCollapse:O,onExpand:z,onResize:L,id:"chat-side-panel",className:v?"transition-all duration-300 ease-in-out":"",children:d.jsx("div",{className:"h-full",children:d.jsx(DI,{onCollapsedToggle:B,isSidePanelCollapsed:s,setIsSidePanelCollapsed:a,isSidePanelTransitioning:v})})})]})})}),d.jsx(Mv,{isOpen:w,onClose:()=>S(!1)})]})}const jr=(e,t,n,r,o)=>{if(!r)throw new Error(o??`Invalid property path: ${t}
667
- Couldn't access "${n}" in ${JSON.stringify(e)}`)},Rh=e=>typeof e=="object"&&e!==null&&!Array.isArray(e),Ws=e=>Array.isArray(e),Nw=(e,t)=>e.filter((n,r)=>r!==t),V5=(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 Ws(e)&&o&&f.length===1?Nw(e,f[0]):Si(e,f,n,u)},Si=(e,t,n,r)=>{const o=Rh(e)?Object.assign({},e):null,i=Ws(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(m=>Si(m,t,n,r));if(t.length===1){if(o&&typeof f=="string"){const m=U5(o,f,n,r);return m??o}return i&&typeof f=="number"?(W5(i,f,n,r),i):(jr(c,u,f,l),e)}const p=o||i||[];if(a&&t.length===2&&typeof t[1]=="number"){const m=p[f],v=t[1];return Ws(m)?p[f]=Nw(m,v):jr(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],!Ws(x)&&!Rh(x)){if(!s)return jr(c,u,f,l),p;p[f]={}}return p[f]=Si(p[f],h,n,r),p}var x;if(s){const m=typeof h[0]=="number"?[]:{};if(o)return p[f]=m,p[f]=Si(p[f],h,n,r),p;if(i&&Array.isArray(p)){p.push(m);const v=p.length-1;return p[v]=Si(p[v],h,n,r),p}}return jr(c,u,f,l),p},U5=(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,m])=>x===(l??a)),a&&h++,p.splice(h,0,[t,n]),Object.fromEntries(p)}const f=t in e;o?f?delete e[t]:jr(c,u,t,s):i||f?e[t]=n:jr(c,u,t,s)},W5=(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):jr(i,s,t,o)},Fo=(e,t,n)=>{const r=Array.isArray(t)?t:G5(t);if(r.length===0)return e;const o=r[0];if(Array.isArray(e)&&typeof o!="number")return e.map(s=>Fo(s,r));if(typeof e!="object"||e===null||!(o in e))return Y5(e,o);const i=e[o];return r.length===1?i:Fo(i,r.slice(1))},G5=e=>e.split(/(\.|\[\d+\])/).filter(t=>t!=="."&&t!=="").map(t=>{const n=/\[(\d+)\]/.exec(t);return n?Number(n[1]):t}).flat(),Y5=(e,t,n)=>{throw new Error(`Unable to extract object property
668
- Looking for property: ${t}
669
- In object: ${JSON.stringify(e)}`)};function jw(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 ho(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)===`
670
- `?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})]})},Bo=e=>e!==null&&typeof e=="object",Mw=(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&&!Ho(t,r))return!1}return!0},Yc=(e="",t,n=Ho)=>{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 Bo(i)?Yc(e,a,n):n(a,e)})},Ho=(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}},Ph=({key:e,path:t},n="")=>!!Ho({value:e},n)||!!t.some(r=>Ho({value:r},n)),Jr=(e,t)=>(t??"")+e.map(n=>n===""?"\0":n).join("."),kd=e=>e.shiftKey?"Shift":e.metaKey?"Meta":e.ctrlKey?"Control":e.altKey?"Alt":void 0,q5=(e,t,n)=>{const r=e.key,o=kd(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))},Tr={key:"Enter"},Dh={confirm:Tr,cancel:{key:"Escape"},objectConfirm:Object.assign(Object.assign({},Tr),{modifier:["Meta","Shift","Control"]}),objectLineBreak:Tr,stringConfirm:Tr,stringLineBreak:Object.assign(Object.assign({},Tr),{modifier:["Shift"]}),numberConfirm:Tr,numberUp:{key:"ArrowUp"},numberDown:{key:"ArrowDown"},tabForward:{key:"Tab"},tabBack:{key:"Tab",modifier:"Shift"},booleanConfirm:Tr,booleanToggle:{key:" "},clipboardModifier:["Meta","Control"],collapseModifier:["Alt"]},Ir=(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=Fo(e,o),a=K5(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?Bo(c.value)?Object.keys(c.value).length===0?Ir(e,[...o,c.key],n,r):Rw(e,[...o,c.key],n,r):[...o,c.key]:o.length===0?null:Ir(e,o,n,r)},Rw=(e,t,n="next",r)=>{const o=Fo(e,t);if(!Bo(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 Rw(e,[...t,s],n,r)},K5=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})),Pw=(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__",Cd={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)"}},Ow=g.createContext({getStyles:()=>({}),icons:{}}),X5=({theme:e=Cd,icons:t={},docRoot:n,children:r})=>{const o=Z5(e,n);return d.jsx(Ow.Provider,{value:{getStyles:(i,s)=>typeof o[i]=="function"?o[i](s):o[i],icons:t},children:r})},Bn=()=>g.useContext(Ow),Z5=(e,t)=>{var n,r,o,i;const s={},a=(Array.isArray(e)?e:[e]).map(u=>Q5(u)?Jl({fragments:{},styles:u},s):Jl(u,s)),l=Jl(Cd,{});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=J5[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},Q5=e=>!("styles"in e),J5={container:"backgroundColor",collection:"backgroundColor",collectionInner:"backgroundColor",collectionElement:"backgroundColor",dropZone:"borderColor",inputHighlight:"backgroundColor"},Lw=g.createContext(null),e4=({children:e,onEditEvent:t,onCollapse:n})=>{const[r,o]=g.useState(null),[i,s]=g.useState(null),[a,l]=g.useState(null),[c,u]=g.useState({path:null,pathString:null}),f=g.useRef(null),p=g.useRef("next"),h=g.useRef(null);return d.jsx(Lw.Provider,{value:{collapseState:r,setCollapseState:x=>{o(x),n&&x!==null&&(Array.isArray(x)?x.forEach(m=>n(m)):n(x)),x!==null&&setTimeout(()=>o(null),2e3)},getMatchingCollapseState:x=>{if(Array.isArray(r)){for(const m of r)if(Oh(x,m))return m;return null}return Oh(x,r)?r:null},currentlyEditingElement:i,setCurrentlyEditingElement:(x,m)=>{const v=typeof x=="string"||x===null?x:Jr(x,m==="key"?"key_":void 0);i!==null&&v!==null&&f.current!==null&&f.current(),s(v),t&&t(x,m==="key"),f.current=typeof m=="function"?m: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})},Zr=()=>{const e=g.useContext(Lw);if(!e)throw new Error("Missing Context Provider");return e},Oh=(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**",t4=({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]=g.useState(!1),h=t?'"':"",x=u.length>n,m=()=>{o?i(!0):p(!f)};return d.jsxs("div",{id:`${r}_display`,onDoubleClick:m,onClick:v=>{(v.getModifierState("Control")||v.getModifierState("Meta"))&&m()},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}`})]})},n4=({styles:e,pathString:t,value:n,setValue:r,handleEdit:o,handleKeyboard:i,keyboardCommon:s})=>{const a=g.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=Pw(a,`
671
- `);r(c)}},s))},styles:e})},r4=e=>{var{isEditing:t,path:n,enumType:r}=e,o=jw(e,["isEditing","path","enumType"]);const{getStyles:i}=Bn(),s=Jr(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(n4,Object.assign({styles:i("input",c),pathString:s},o,{setValue:o.setValue})):d.jsx(t4,Object.assign({pathString:s,styles:i("string",c)},o))},o4=({value:e,setValue:t,isEditing:n,path:r,setIsEditing:o,handleEdit:i,nodeData:s,handleKeyboard:a,keyboardCommon:l})=>{const{getStyles:c}=Bn();return n?d.jsx("input",{className:"jer-input-number",type:"text",name:Jr(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})},i4=({value:e,setValue:t,isEditing:n,path:r,setIsEditing:o,handleEdit:i,nodeData:s,handleKeyboard:a,keyboardCommon:l})=>{const{getStyles:c}=Bn();return typeof e!="boolean"?null:n?d.jsx("input",{className:"jer-input-boolean",type:"checkbox",name:Jr(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)})},s4=(e,t)=>{const n=g.useRef(void 0),r=g.useRef(t);g.useEffect(()=>{r.current=t},[t]);const o=i=>{r.current(i)};g.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])},a4=({value:e,isEditing:t,setIsEditing:n,handleEdit:r,nodeData:o,handleKeyboard:i,keyboardCommon:s})=>{const{getStyles:a}=Bn();return s4(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)})},l4=({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})},c4=({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"})]}),u4=({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"})]}),d4=({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"})}),f4=({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"})]}),p4=({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"})]}),h4=({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"})}),g4=({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"})}),Mr=({name:e,nodeData:t})=>{var n,r,o,i,s,a,l;const{getStyles:c,icons:u}=Bn(),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(c4,Object.assign({},f,{style:c("iconAdd",t)}));case"edit":return(r=u==null?void 0:u.edit)!==null&&r!==void 0?r:d.jsx(u4,Object.assign({},f,{style:c("iconEdit",t)}));case"delete":return(o=u==null?void 0:u.delete)!==null&&o!==void 0?o:d.jsx(d4,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(f4,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(p4,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(h4,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(g4,{size:"1em",style:c("iconCollection",t)});default:return d.jsx(d.Fragment,{})}},$w=({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})=>{const{getStyles:h}=Bn(),x=a("KEY_NEW",s),[m,v]=g.useState(x),[y,b]=g.useState(!1),{key:w,path:S,value:E}=s,k=Array.isArray(y),C=T=>{var P;if(!T)return void b(!1);const B=Object.keys(Fo(s.fullData,S)),O=f?(P=f(s))===null||P===void 0?void 0:P.filter(z=>!B.includes(z)):null;O&&v(""),b(O==null||O)};return d.jsxs("div",{className:"jer-edit-buttons",style:{opacity:y?1:void 0},onClick:T=>T.stopPropagation(),children:[r&&d.jsx("div",{onClick:T=>{var P;T.stopPropagation();let B,O,z="value",L="",_=null;if(r){const I=kd(T);if(I&&l.clipboardModifier.includes(I)?(B=m4(S),L=B,z="path"):(B=E,L=typeof B=="object"?p(E):String(B)),!navigator.clipboard)return void(typeof r=="function"&&r({success:!1,value:B,stringValue:L,path:S,key:w,type:z,errorMessage:"Can't access clipboard API"}));(P=navigator.clipboard)===null||P===void 0||P.writeText(L).then(()=>O=!0).catch(M=>{O=!1,_=M.message}).finally(()=>{typeof r=="function"&&r({success:O,errorMessage:_,value:B,stringValue:L,path:S,key:w,type:z})})}},className:"jer-copy-pulse",children:d.jsx(Mr,{name:"copy",nodeData:s})}),e&&d.jsx("div",{onClick:e,children:d.jsx(Mr,{name:"edit",nodeData:s})}),t&&d.jsx("div",{onClick:t,children:d.jsx(Mr,{name:"delete",nodeData:s})}),n&&d.jsx("div",{onClick:()=>{o==="object"?C(!0):n("")},children:d.jsx(Mr,{name:"add",nodeData:s})}),i==null?void 0:i.map(({Element:T,onClick:P},B)=>d.jsx("div",{onClick:O=>P&&P(s,O),children:d.jsx(T,{nodeData:s})},B)),y&&n&&o==="object"&&d.jsxs(d.Fragment,{children:[k?d.jsxs("div",{className:"jer-select jer-select-keys",children:[d.jsxs("select",{name:"new-key-select",className:"jer-select-inner",onChange:T=>{n(T.target.value),C(!1)},defaultValue:"",autoFocus:!0,onKeyDown:T=>{c(T,{cancel:()=>C(!1)})},children:[d.jsx("option",{value:"",disabled:!0,children:y.length>0?a("KEY_SELECT",s):a("NO_KEY_OPTIONS",s)}),y.map(T=>d.jsx("option",{value:T,children:T},T))]}),d.jsx("span",{className:"focus"})]}):d.jsx("input",{className:"jer-input-new-key",type:"text",name:"new-object-key",value:m,onChange:T=>v(T.target.value),autoFocus:!0,onFocus:T=>T.target.select(),onKeyDown:T=>{c(T,{stringConfirm:()=>{n&&(C(!1),n(m),v(x))},cancel:()=>{C(!1),v(x)}})},style:h("input",s)}),d.jsx(_d,{onOk:()=>{k&&!m||(C(!1),n(m))},onCancel:()=>{C(!1)},nodeData:s,editConfirmRef:u,hideOk:k})]})]})},_d=({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(Mr,{name:"ok",nodeData:n})}),d.jsx("div",{onClick:t,children:d.jsx(Mr,{name:"cancel",nodeData:n})})]}),m4=e=>e.reduce((t,n)=>typeof n=="number"?`${t}[${n}]`:t===""?n:`${t}.${n}`,""),x4=["string","number","boolean","null","object","array"],zw=({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:m}=Zr(),[v,y]=g.useState(null),b=Object.assign(Object.assign({},r),{collapsed:t}),{path:w,key:S,size:E}=b,k=Jr(w),C=!l(b),T=!c(b),P=!u(b),B=!f(b)&&T&&x===null,O=A=>{a&&(y(A),setTimeout(()=>y(null),h)),console.warn("Error",A)},z=g.useCallback((A,N)=>{O(A.message),s&&s({currentData:b.fullData,errorValue:N,currentValue:n,name:S,path:w,error:A})},[s,a]),L=x===k,_=x===`key_${k}`,I=typeof w.slice(-1)[0]=="number",M={isEditing:L,isEditingKey:_,isArray:I,canEditKey:o!==null&&C&&P&&T&&!I},j=S===""&&w.length>0?p("EMPTY_STRING",b):null;return{pathString:k,nodeData:b,path:w,name:S,size:E,canEdit:C,canDelete:T,canAdd:P,canDrag:B,error:v,showError:O,onError:z,setError:y,handleEditKey:A=>{if(m(null),S===A||!o)return;const N=w.slice(0,-1);if(Object.keys(o).includes(A))return void z({code:"KEY_EXISTS",message:p("ERROR_KEY_EXISTS",b)},A);const R=Object.fromEntries(Object.entries(o).map(([D,Y])=>D===S?[A,Y]:[D,Y]));i(R,N).then(D=>{D&&z({code:"UPDATE_ERROR",message:D},A)})},derivedValues:M,emptyStringKey:j}},Fw=({canDrag:e,canDragOnto:t,path:n,nodeData:r,onMove:o,onError:i,translate:s})=>{const{getStyles:a}=Bn(),{dragSource:l,setDragSource:c}=Zr(),[u,f]=g.useState(!1),p=Jr(n),h=g.useMemo(()=>e?{onDragStart:y=>{y.stopPropagation(),c({path:n,pathString:p})},onDragEnd:y=>{y.stopPropagation(),c({path:null,pathString:null})}}:{},[e,p]),x=g.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]),m=g.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(T=>{T&&i({code:"UPDATE_ERROR",message:T},r.value)})};return{dragSourceProps:h,getDropTargetProps:x,BottomDropTarget:m,DropTargetPadding:({position:y,nodeData:b})=>u===y?d.jsx("div",{className:"jer-drag-n-drop-padding",style:a("dropZone",b)}):null,handleDrop:v}},v4=(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,`
672
- `).split(`
673
- `).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}=Zr();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 m=c==null?void 0:c[0][0];h(m?[...r,m]: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]})},Bw=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:m,translate:v,customNodeDefinitions:y,customNodeData:b,handleKeyboard:w,keyboardControls:S,sort:E,editConfirmRef:k,jsonStringify:C}=e,{getStyles:T}=Bn(),{setCurrentlyEditingElement:P,setCollapseState:B,previouslyEditedElement:O,setPreviouslyEditedElement:z,tabDirection:L,setTabDirection:_,previousValue:I,setPreviousValue:M}=Zr(),[j,A]=g.useState(typeof t=="function"?Kc:t),{pathString:N,nodeData:R,path:D,name:Y,canEdit:H,canDelete:V,canDrag:U,error:G,onError:F,handleEditKey:W,emptyStringKey:X,derivedValues:Q}=zw({props:e}),{dragSourceProps:re,getDropTargetProps:K,BottomDropTarget:ne,DropTargetPadding:ie}=Fw({canDrag:U,canDragOnto:l,path:D,nodeData:R,onMove:s,onError:F,translate:v}),[he,ue]=g.useState(Xc(t,b)),we=g.useCallback(q=>{if(!i)return void A(q);const se=i({currentData:R.fullData,newValue:q,currentValue:j,name:Y,path:D});A(se)},[i]);g.useEffect(()=>{A(typeof t=="function"?Kc:t),ue(Xc(t,b))},[t,G]);const{CustomNode:Ee,customNodeProps:Ke,hideKey:st,showEditTools:tt=!0,showOnEdit:me,showOnView:ut,passOriginalNode:dt}=b,lt=[...x4,...y.filter(({showInTypesSelector:q=!1,name:se})=>q&&!!se).map(({name:q})=>q)],We=g.useMemo(()=>{if(typeof c=="boolean")return c?[]:lt;if(Array.isArray(c))return c;const q=c(R);return typeof q=="boolean"?q?[]:lt:q},[R,c]),[ht,xt]=g.useState(((q,se)=>{var le;if(typeof q!="string")return null;const de=se.filter(De=>De instanceof Object&&De.enum&&De.values.includes(q)&&De.matchPriority);return de.sort((De,Ie)=>{var qe,Xe;return((qe=Ie.matchPriority)!==null&&qe!==void 0?qe:0)-((Xe=De.matchPriority)!==null&&Xe!==void 0?Xe:0)}),(le=de[0])!==null&&le!==void 0?le:null})(j,We)),{isEditing:pt}=Q,bt=Mw("value",R,u,f);if(pt&&(!bt||!H)){const q=Ir(R.fullData,D,L,E);P(q||O)}if(!bt)return null;const vt=q=>{let se;if(P(null),M(null),q===void 0||(le=>le&&typeof le=="object"&&"type"in le&&"target"in le&&"preventDefault"in le&&typeof le.preventDefault=="function")(q))switch(he){case"object":se={[v("DEFAULT_NEW_KEY",R)]:j};break;case"array":se=j??[];break;case"number":{const le=Number(j);se=isNaN(le)?0:le;break}default:se=j}else se=q;r(se,D).then(le=>{le&&F({code:"UPDATE_ERROR",message:le},se)})},ct=()=>{P(null),I===null?(A(t),M(null)):r(I,D)},{isEditingKey:Tt,canEditKey:He}=Q,Fe=!pt&&G,At=pt&&We.length>1,be=(he!=="invalid"||Ee)&&!G&&tt,ye=p&&!st,_e=Ee&&(pt&&me||!pt&&ut),Pe={value:j,parentData:n,setValue:we,isEditing:pt,canEdit:H,setIsEditing:H?()=>P(D):()=>{},handleEdit:vt,handleCancel:ct,path:D,stringTruncate:h,showStringQuotes:x,nodeData:R,enumType:ht,translate:v,handleKeyboard:w,keyboardCommon:{cancel:ct,tabForward:()=>{_("next"),z(N);const q=Ir(R.fullData,D,"next",E);q&&(vt(),P(q))},tabBack:()=>{_("prev"),z(N);const q=Ir(R.fullData,D,"prev",E);q&&(vt(),P(q))}}},Le={canEditKey:He,isEditingKey:Tt,pathString:N,path:D,name:Y,handleKeyboard:w,handleEditKey:W,handleCancel:ct,styles:T("property",R),getNextOrPrevious:q=>Ir(R.fullData,D,q,E),emptyStringKey:X},ee=_e?d.jsx(Ee,Object.assign({},e,{value:j,customNodeProps:Ke,setValue:we,handleEdit:vt,handleCancel:ct,handleKeyPress:q=>w(q,{stringConfirm:vt,cancel:ct}),isEditing:pt,setIsEditing:()=>P(D),getStyles:T,originalNode:dt?Lh(t,Pe):void 0,originalNodeKey:dt?d.jsx(Ea,Object.assign({},Le)):void 0,canEdit:H,keyboardCommon:Pe.keyboardCommon,onError:F})):Lh(t,Pe);return d.jsxs("div",Object.assign({className:"jer-component jer-value-component",style:{marginLeft:m/2+"em",position:"relative"},draggable:U},re,K("above"),{children:[ne,d.jsx(ie,{position:"above",nodeData:R}),d.jsxs("div",{className:"jer-value-main-row",style:{flexWrap:Y.length>10?"wrap":"nowrap"},children:[ye&&d.jsx(Ea,Object.assign({},Le)),d.jsxs("div",{className:"jer-value-and-buttons",children:[d.jsx("div",{className:"jer-input-component",children:ee}),pt?d.jsx(_d,{onOk:vt,onCancel:ct,nodeData:R,editConfirmRef:k}):be&&d.jsx($w,{startEdit:H?()=>{M(I),P(D,ct)}:void 0,handleDelete:V?()=>{o(j,D).then(q=>{q&&F({code:"DELETE_ERROR",message:q},j)})}:void 0,enableClipboard:a,translate:v,customButtons:e.customButtons,nodeData:R,handleKeyboard:w,keyboardControls:S,editConfirmRef:k,jsonStringify:C}),At&&d.jsxs("div",{className:"jer-select jer-select-types",children:[d.jsx("select",{name:`${Y}-type-select`,className:"jer-select-inner",onChange:q=>(se=>{const le=y.find(Ie=>Ie.name===se);if(le)return r(le.defaultValue,D),ue(se),xt(null),P(null),void B({path:D,collapsed:!1,includeChildren:!1});const de=We.find(Ie=>Ie instanceof Object&&Ie.enum===se);if(de)return typeof j=="string"&&de.values.includes(j)||r(de.values[0],D).then(Ie=>{Ie&&(F({code:"UPDATE_ERROR",message:Ie},De),P(null))}),void xt(de);const De=y4(j,se,v("DEFAULT_NEW_KEY",R),b!=null&&b.CustomNode?v("DEFAULT_STRING",R):void 0);r(De,D).then(Ie=>{Ie?(F({code:"UPDATE_ERROR",message:Ie},De),P(null)):xt(null)})})(q.target.value),value:ht?ht.enum:he,children:We.map(q=>q instanceof Object&&"enum"in q?d.jsx("option",{value:q.enum,children:q.enum},q.enum):d.jsx("option",{value:q,children:q},q))}),d.jsx("span",{className:"focus"})]}),Fe&&d.jsx("span",{className:"jer-error-slug",style:T("error",R),children:G})]})]}),d.jsx(ie,{position:"below",nodeData:R})]}))},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",Lh=(e,t)=>{const n=Xc(e),{value:r}=t;switch(n){case"string":return d.jsx(r4,Object.assign({},t,{value:r}));case"number":return d.jsx(o4,Object.assign({},t,{value:r}));case"boolean":return d.jsx(i4,Object.assign({},t,{value:r}));case"null":return d.jsx(a4,Object.assign({},t));default:return d.jsx(l4,Object.assign({},t))}},y4=(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)}},Hw=(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=jw(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)},Vw=e=>{const{getStyles:t}=Bn(),{collapseState:n,setCollapseState:r,getMatchingCollapseState:o,currentlyEditingElement:i,setCurrentlyEditingElement:s,areChildrenBeingEdited:a,previousValue:l,setPreviousValue:c}=Zr(),{mainContainerRef:u,data:f,nodeData:p,parentData:h,showCollectionCount:x,onEdit:m,onAdd:v,onDelete:y,canDragOnto:b,collapseFilter:w,collapseAnimationTime:S,onMove:E,enableClipboard:k,searchFilter:C,searchText:T,indent:P,sort:B,showArrayIndices:O,defaultValue:z,newKeyOptions:L,translate:_,customNodeDefinitions:I,customNodeData:M,jsonParse:j,jsonStringify:A,TextEditor:N,keyboardControls:R,handleKeyboard:D,insertAtTop:Y,onCollapse:H,editConfirmRef:V,collapseClickZones:U}=e,[G,F]=g.useState(A(f)),W=w(p),{contentRef:X,isAnimating:Q,maxHeight:re,collapsed:K,animateCollapse:ne,cssTransitionValue:ie}=((te,ce,fe,ae,Ne)=>{const[Me,Ct]=g.useState(fe?0:void 0),[Ze,jt]=g.useState(fe),Zt=g.useRef(!1),Ht=g.useRef(null),rr=g.useRef(0),kn=g.useRef(0),tn=ce/1e3+"s",Hn=g.useCallback(pn=>{var je,Er;if(Ze!==pn){switch(window.clearTimeout(kn.current),Zt.current=!0,pn){case!0:{const eo=(Er=(je=Ht.current)===null||je===void 0?void 0:je.offsetHeight)!==null&&Er!==void 0?Er:0;rr.current=eo,Ct(eo),setTimeout(()=>{Ct(0)},5);break}case!1:Ct(rr.current||v4(te,Ht,ae,Ne))}jt(!Ze),kn.current=window.setTimeout(()=>{Zt.current=!1,pn||Ct(void 0)},ce)}},[ce,Ze,te,ae,Ne]);return{contentRef:Ht,isAnimating:Zt.current,animateCollapse:Hn,maxHeight:Me,collapsed:Ze,cssTransitionValue:tn}})(f,S,W,u,A),{pathString:he,nodeData:ue,path:we,name:Ee,size:Ke,canEdit:st,canDelete:tt,canAdd:me,canDrag:ut,error:dt,setError:lt,onError:We,handleEditKey:ht,emptyStringKey:xt,derivedValues:pt}=zw({props:e,collapsed:K}),{dragSourceProps:bt,getDropTargetProps:vt,BottomDropTarget:ct,DropTargetPadding:Tt}=Fw({canDrag:ut,canDragOnto:b,path:we,nodeData:ue,onMove:E,onError:We,translate:_}),He=g.useRef(!W),{isEditing:Fe,isEditingKey:At,isArray:be,canEditKey:ye}=pt;g.useEffect(()=>{F(A(f))},[f,A]),g.useEffect(()=>{const te=w(ue)&&!Fe;He.current=!te,ne(te)},[w]),g.useEffect(()=>{if(n!==null){const te=o(we);te&&(He.current=!0,ne(te.collapsed))}},[n]);const _e=g.useRef(null),Pe=g.useCallback((te,ce)=>{if(typeof z!="function")return z;const fe=z(te,ce);return fe!==void 0?fe:null},[z]),Le=g.useCallback(te=>L?typeof L!="function"?L:L(te):null,[L]),{CustomNode:ee,customNodeProps:q,CustomWrapper:se,wrapperProps:le={},hideKey:de,showEditTools:De=!0,showOnEdit:Ie,showOnView:qe,showCollectionWrapper:Xe=!0}=M,Ae=a(he);if(Ae&&K&&ne(!1),!(Mw("collection",ue,C,T)||ue.level===0)&&!Ae)return null;const Ve=Array.isArray(f)?"array":"object",ze=Ve==="array"?{open:"[",close:"]"}:{open:"{",close:"}"},rt=te=>{if(te.key!=="Tab"||te.getModifierState("Shift"))D(te,{objectConfirm:Et,cancel:St});else{te.preventDefault();const ce=Pw(_e," ");F(ce)}},gt=te=>{te.stopPropagation();const ce=kd(te);if(ce&&R.collapseModifier.includes(ce))return He.current=!0,void r({collapsed:!K,path:we,includeChildren:!0});i&&i.includes(he)||(He.current=!0,r(null),H&&H({path:we,collapsed:!K,includeChildren:!1}),ne(!K))},Et=()=>{try{const te=j(G);if(s(null),c(null),lt(null),A(te)===A(f))return;m(te,we).then(ce=>{ce&&We({code:"UPDATE_ERROR",message:ce},te)})}catch{We({code:"INVALID_JSON",message:_("ERROR_INVALID_JSON",ue)},G)}},Dt=we.length>0?()=>{y(f,we).then(te=>{te&&We({code:"DELETE_ERROR",message:te},f)})}:void 0,St=()=>{s(null),l===null?(lt(null),F(A(f)),c(null)):m(l,we)},kt=x==="when-closed"?K:x,en=!Fe&&De,Bt=(O||!be)&&!de&&Ee!==void 0,Te=ee&&(Fe&&Ie||!Fe&&qe),$e=Object.entries(f).map(([te,ce])=>[Ve==="array"?Number(te):te,ce]);Ve==="object"&&B($e,te=>te);const Ce=He.current?Fe?d.jsxs("div",{className:"jer-collection-text-edit",children:[N?d.jsx(N,{value:G,onChange:F,onKeyDown:te=>D(te,{objectConfirm:Et,cancel:St})}):d.jsx(Iw,{textAreaRef:_e,className:"jer-collection-text-area",name:he,value:G,setValue:F,handleKeyPress:rt,styles:t("input",ue)}),d.jsx("div",{className:"jer-collection-input-button-row",children:d.jsx(_d,{onOk:Et,onCancel:St,nodeData:ue,editConfirmRef:V})})]}):$e.map(([te,ce],fe)=>{const ae={key:te,value:ce,path:[...we,te],level:we.length+1,index:fe,size:Bo(ce)?Object.keys(ce).length:null,parentData:f,fullData:ue.fullData},Ne=Hw(I,ae);return d.jsx("div",{className:"jer-collection-element",style:t("collectionElement",ae),children:Bo(ce)&&!(Ne!=null&&Ne.renderCollectionAsValue)?d.jsx(Vw,Object.assign({},e,{data:ce,parentData:f,nodeData:ae,showCollectionCount:x,canDragOnto:st,customNodeData:Ne}),te):d.jsx(Bw,Object.assign({},e,{data:ce,parentData:f,nodeData:ae,canDragOnto:st,showLabel:Ve==="object"||O,customNodeData:Ne}),te)},te)}):null,oe=!!Xe&&K&&!Ae;oe||(He.current=!0);const $=Object.assign(Object.assign({},e),{data:f,value:f,parentData:h,nodeData:ue,setValue:te=>ho(void 0,void 0,void 0,function*(){return yield m(te,we)}),handleEdit:Et,handleCancel:St,handleKeyPress:rt,isEditing:Fe,setIsEditing:()=>s(we),getStyles:t,canDragOnto:st,canEdit:st,keyboardCommon:{},onError:We}),J=Te?d.jsx(ee,Object.assign({customNodeProps:q},$,{children:Ce})):Ce,Z=en&&d.jsx($w,{startEdit:st?()=>{He.current=!0,c(null),s(we)}:void 0,handleAdd:me?te=>{ne(!1);const ce=Pe(ue,te);if(Ve==="array"){const fe=Y.array?0:f.length,ae=Y.array?{insert:!0}:{};v(ce,[...we,fe],ae).then(Ne=>{Ne&&We({code:"ADD_ERROR",message:Ne},ce)})}else if(te in f)We({code:"KEY_EXISTS",message:_("ERROR_KEY_EXISTS",ue)},te);else{const fe=Y.object?{insertBefore:0}:{};v(ce,[...we,te],fe).then(ae=>{ae&&We({code:"ADD_ERROR",message:ae},ce)})}}:void 0,handleDelete:tt?Dt:void 0,enableClipboard:k,type:Ve,nodeData:ue,translate:_,customButtons:e.customButtons,keyboardControls:R,handleKeyboard:D,getNewKeyOptions:Le,editConfirmRef:V,jsonStringify:A}),pe={canEditKey:ye,isEditingKey:At,pathString:he,path:we,name:Ee,handleKeyboard:D,handleEditKey:ht,handleCancel:St,keyValueArray:$e,styles:t("property",ue),getNextOrPrevious:te=>Ir(ue.fullData,we,te,B),handleClick:U.includes("property")?gt:te=>te.stopPropagation(),emptyStringKey:xt},ke=d.jsxs("div",Object.assign({className:"jer-component jer-collection-component",style:Object.assign(Object.assign({marginLeft:(we.length===0?0:P/2)+"em"},t("collection",ue)),{position:"relative"}),draggable:ut},bt,vt("above"),{children:[d.jsx("div",{className:"jer-clickzone",style:{width:P/2+1+"em",zIndex:10+2*ue.level},onClick:U.includes("left")?gt:void 0}),!Fe&&ct,d.jsx(Tt,{position:"above",nodeData:ue}),Xe?d.jsxs("div",{className:"jer-collection-header-row",style:{position:"relative"},onClick:U.includes("header")?gt:void 0,children:[d.jsxs("div",{className:"jer-collection-name",children:[d.jsx("div",{className:"jer-collapse-icon jer-accordion-icon"+(K?" jer-rotate-90":""),style:{zIndex:11+2*ue.level,transition:ie},onClick:gt,children:d.jsx(Mr,{name:"chevron",rotate:K,nodeData:ue})}),Bt&&d.jsx(Ea,Object.assign({},pe)),!Fe&&d.jsx("span",{className:"jer-brackets jer-bracket-open",style:t("bracket",ue),children:ze.open})]}),!Fe&&kt&&d.jsx("div",{className:"jer-collection-item-count"+(kt?" jer-visible":" jer-hidden"),style:Object.assign(Object.assign({},t("itemCount",ue)),{transition:ie}),children:Ke===1?_("ITEM_SINGLE",Object.assign(Object.assign({},ue),{size:1}),1):_("ITEMS_MULTIPLE",ue,Ke)}),d.jsx("div",{className:"jer-brackets"+(oe?" jer-visible":" jer-hidden"),style:Object.assign(Object.assign({},t("bracket",ue)),{transition:ie}),children:ze.close}),Z]}):de?d.jsx(d.Fragment,{}):d.jsxs("div",{className:"jer-collection-header-row",style:{position:"relative"},children:[d.jsx(Ea,Object.assign({},pe)),Z]}),d.jsxs("div",{className:"jer-collection-inner",style:Object.assign(Object.assign({overflowY:oe||Q?"clip":"visible",maxHeight:Ae?void 0:re},t("collectionInner",ue)),{transition:ie}),ref:X,children:[J,d.jsx("div",{className:Fe?"jer-collection-error-row":"jer-collection-error-row-edit",children:dt&&d.jsx("span",{className:"jer-error-slug",style:t("error",ue),children:dt})}),!Fe&&Xe&&d.jsx("div",{className:"jer-brackets jer-bracket-outside",style:Object.assign(Object.assign({},t("bracket",ue)),{marginLeft:(P<3?-1:P<6?-.5:0)+"em"}),children:ze.close})]}),d.jsx(Tt,{position:"below",nodeData:ue})]}));return se?d.jsx(se,Object.assign({customNodeProps:le},$,{children:ke})):ke},w4={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>"},b4=(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]:w4[l];return c===void 0?u:u==null?void 0:u.replace("{{count}}",String(c))})(e,t,r,n,o);var $h=[],hi=[];(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=$h.indexOf(i);s===-1&&(s=$h.push(i)-1,hi[s]={}),n=hi[s]&&hi[s][r]?hi[s][r]:hi[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 E4=({data:e,setData:t,rootName:n="root",onUpdate:r=()=>{},onEdit:o=r,onDelete:i=r,onAdd:s=r,onChange:a,onError:l,showErrorMessages:c=!0,enableClipboard:u=!0,indent:f=2,collapse:p=!1,collapseAnimationTime:h=300,showCollectionCount:x=!0,restrictEdit:m=!1,restrictDelete:v=!1,restrictAdd:y=!1,restrictTypeSelection:b=!1,restrictDrag:w=!0,viewOnly:S,searchFilter:E,searchText:k,searchDebounceTime:C=350,keySort:T=!1,showArrayIndices:P=!0,showStringQuotes:B=!0,defaultValue:O=null,newKeyOptions:z,minWidth:L=250,maxWidth:_="min(600px, 90vw)",rootFontSize:I,stringTruncate:M=250,translations:j={},className:A,id:N,customText:R={},customNodeDefinitions:D=[],customButtons:Y=[],jsonParse:H=JSON.parse,jsonStringify:V=(K,ne)=>JSON.stringify(K,ne,2),TextEditor:U,errorMessageTimeout:G=2500,keyboardControls:F={},externalTriggers:W,insertAtTop:X=!1,onCollapse:Q,collapseClickZones:re=["header","left"]})=>{const{getStyles:K}=Bn(),{setCurrentlyEditingElement:ne}=Zr(),ie=g.useMemo(()=>mi(p),[p]),he=g.useMemo(()=>b4(j,R),[j,R]),[ue,we]=g.useState(k),[Ee,Ke]=(({setData:be,data:ye})=>{const[_e,Pe]=g.useState(be?void 0:ye),Le=g.useCallback(ee=>{be?be(ee):Pe(ee)},[be]);return g.useEffect(()=>{be||Pe(ye)},[ye]),[be?ye:_e,Le]})({setData:t,data:e}),st=g.useRef(null);g.useEffect(()=>{ne(null);const be=setTimeout(()=>we(k),C);return()=>clearTimeout(be)},[k,C]);const tt={key:n,path:[],level:0,index:0,value:Ee,size:typeof Ee=="object"&&Ee!==null?Object.keys(Ee).length:1,parentData:null,fullData:Ee},me=(be,ye)=>ho(void 0,void 0,void 0,function*(){const _e=yield be(ye);if(_e===!0||_e===void 0)return void Ke(ye.newData);const Pe=C4(_e)?_e:["error",_e],[Le,ee]=Pe;if(Le==="error")return Ke(ye.currentData),ee===!1?he("ERROR_UPDATE",tt):String(ee);Ke(ee)}),ut=g.useMemo(()=>mi(m,S),[m,S]),dt=g.useMemo(()=>mi(v,S),[v,S]),lt=g.useMemo(()=>mi(y,S),[y,S]),We=g.useMemo(()=>mi(w,S),[w,S]),ht=g.useMemo(()=>k4(E),[E]),xt=g.useMemo(()=>(be=>{const ye=Object.assign({},Dh);for(const _e of Object.keys(Dh)){const Pe=_e;if(be[Pe]){const Le=be[Pe],ee=["clipboardModifier","collapseModifier"].includes(_e)?Array.isArray(Le)?Le:[Le]:typeof Le=="string"?{key:Le}:Le;ye[Pe]=ee,["stringConfirm","numberConfirm","booleanConfirm"].forEach(q=>{!be[q]&&be.confirm&&(ye[q]=ye.confirm)})}}return ye})(F),[F]),pt=g.useCallback((be,ye)=>((_e,Pe,Le)=>{const ee=Object.entries(Pe);for(const[q,se]of ee)if(q5(Le,_e[q],q)){Le.preventDefault(),se();break}})(xt,ye,be),[xt]),bt=g.useMemo(()=>{const be=zh(D,"stringifyReplacer");return ye=>V(ye,be)},[D,V]),vt=g.useMemo(()=>{const be=zh(D,"parseReviver");return ye=>{const _e=H(ye,be);return qc(_e)}},[D,H]),ct=g.useRef(null);((be,ye)=>{const{setCurrentlyEditingElement:_e,currentlyEditingElement:Pe,setCollapseState:Le}=Zr();g.useEffect(()=>{if(!be)return;const{collapse:ee,edit:q}=be;ee&&Le(ee);const se=!(q!=null&&q.path)||Jr(q.path)===Pe;switch(q==null?void 0:q.action){case"accept":se&&(ye.current&&ye.current.click(),_e(null));break;case"cancel":se&&_e(null);break;default:q!=null&&q.path&&_e(q.path)}},[be])})(W,ct);const Tt=g.useCallback((be,ye)=>{T!==!1&&(typeof T!="function"?be.sort((_e,Pe)=>{const Le=ye(_e)[0],ee=ye(Pe)[0];return Le<ee?-1:Le>ee?1:0}):be.sort((_e,Pe)=>T(ye(_e),ye(Pe))))},[T]),He=Hw(D,tt),Fe={mainContainerRef:st,name:n,nodeData:tt,onEdit:(be,ye)=>ho(void 0,void 0,void 0,function*(){const{currentData:_e,newData:Pe,currentValue:Le,newValue:ee}=gi(Ee,ye,be,"update");if(Le!==ee)return yield me(o,{currentData:_e,newData:Pe,currentValue:Le,newValue:ee,name:ye.slice(-1)[0],path:ye})}),onDelete:(be,ye)=>ho(void 0,void 0,void 0,function*(){const{currentData:_e,newData:Pe,currentValue:Le,newValue:ee}=gi(Ee,ye,be,"delete");return yield me(i,{currentData:_e,newData:Pe,currentValue:Le,newValue:ee,name:ye.slice(-1)[0],path:ye})}),onAdd:(be,ye,_e)=>ho(void 0,void 0,void 0,function*(){const{currentData:Pe,newData:Le,currentValue:ee,newValue:q}=gi(Ee,ye,be,"add",_e);return yield me(s,{currentData:Pe,newData:Le,currentValue:ee,newValue:q,name:ye.slice(-1)[0],path:ye})}),onChange:a,onError:l,showErrorMessages:c,onMove:(be,ye,_e)=>ho(void 0,void 0,void 0,function*(){if(be===null)return;const{currentData:Pe,newData:Le,currentValue:ee}=gi(Ee,be,"","delete"),q=be.slice(-1)[0],se=ye.slice(0,-1),le=ye.slice(-1)[0];let de=typeof le=="number"?_e==="above"?le:le+1:typeof q=="number"?`arr_${q}`:q;be.slice(0,-1).join(".")===ye.slice(0,-1).join(".")&&typeof q=="number"&&typeof de=="number"&&q<de&&(de-=1);const De=typeof de=="number"?{insert:!0}:_e==="above"?{insertBefore:le}:{insertAfter:le},{newData:Ie,newValue:qe}=gi(Le,[...se,de],ee,"add",De);return yield me(o,{currentData:Pe,newData:Ie,currentValue:ee,newValue:qe,name:ye.slice(-1)[0],path:ye})}),showCollectionCount:x,collapseFilter:ie,collapseAnimationTime:h,restrictEditFilter:ut,restrictDeleteFilter:dt,restrictAddFilter:lt,restrictTypeSelection:b,restrictDragFilter:We,canDragOnto:!1,searchFilter:ht,searchText:ue,enableClipboard:u,keySort:T,sort:Tt,showArrayIndices:P,showStringQuotes:B,indent:f,defaultValue:O,newKeyOptions:z,stringTruncate:M,translate:he,customNodeDefinitions:D,customNodeData:He,customButtons:Y,parentData:null,jsonParse:vt,jsonStringify:bt,TextEditor:U,errorMessageTimeout:G,handleKeyboard:pt,keyboardControls:xt,insertAtTop:{object:X===!0||X==="object",array:X===!0||X==="array"},onCollapse:Q,editConfirmRef:ct,collapseClickZones:re},At=Object.assign(Object.assign({},K("container",tt)),{minWidth:L,maxWidth:_});return At.fontSize=I??At.fontSize,d.jsx("div",{id:N,ref:st,className:`jer-editor-container ${A??""}`,style:At,children:Bo(Ee)&&!He.renderCollectionAsValue?d.jsx(Vw,Object.assign({data:Ee},Fe)):d.jsx(Bw,Object.assign({data:Ee,showLabel:!0},Fe))})},S4=e=>{var t;const[n,r]=g.useState();return g.useEffect(()=>{const o=document.documentElement;r(o)},[]),n?d.jsx(X5,{theme:(t=e.theme)!==null&&t!==void 0?t:Cd,icons:e.icons,docRoot:n,children:d.jsx(e4,{onEditEvent:e.onEditEvent,onCollapse:e.onCollapse,children:d.jsx(E4,Object.assign({},e))})}):null},gi=(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"?Fo(e,t):void 0;return{currentData:e,newData:V5(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,k4=e=>{if(e!==void 0)return e==="value"?Ho:e==="key"?Ph:e==="all"?(t,n)=>Ho(t,n)||Ph(t,n):e},C4=e=>Array.isArray(e)&&e.length===2&&["error","value"].includes(e[0]),zh=(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}},_4=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}=Jm(),o=g.useMemo(()=>_4(r==="dark"),[r]),i=g.useMemo(()=>t===void 0||t<0?!1:t,[t]),s=g.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(S4,{data:s,theme:o,viewOnly:!0,collapse:i,showStringQuotes:!0,showCollectionCount:"when-closed"})})};let Is=null,Ms=null;function T4({children:e}){const{fetchCsrfToken:t}=Xm(),[n,r]=g.useState(Is),[o,i]=g.useState(!Is&&!Ms),[s,a]=g.useState(Ms);return g.useEffect(()=>{if(Is||Ms)return;let l=!0;return(async()=>{i(!0),a(null);try{let u=await It("/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 m=await t();if(!m)throw new Error("Failed to obtain CSRF token after config fetch failed.");if(console.log("Retrying config fetch with CSRF token..."),u=await It("/api/v1/config",{credentials:"include",headers:{"X-CSRF-TOKEN":m,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&&(Is=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.";Ms=f,a(f)}}finally{l&&i(!1)}})(),()=>{l=!1}},[t]),n?d.jsx(Gm.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 A4=({children:e})=>{const{configServerUrl:t}=Ko(),n=`${t}/api/v1`,[r,o]=g.useState(null),[i,s]=g.useState(!1),[a,l]=g.useState(!1),[c,u]=g.useState(null),[f,p]=g.useState({}),[h,x]=g.useState([]),[m,v]=g.useState(null),[y,b]=g.useState(0),[w,S]=g.useState(!1),E=10,k=g.useRef(null),C=g.useRef(null),T=g.useRef(null);g.useEffect(()=>{C.current=r},[r]);const P=g.useCallback(A=>{p(N=>{var H,V,U,G,F;const R=A.task_id;if(!R)return A.direction==="discovery"||console.warn("TaskMonitorContext: Received event without task_id, skipping:",A),N;const D=N[R],Y=new Date(A.timestamp);if(D){const W=[...D.events,A].sort((X,Q)=>new Date(X.timestamp).getTime()-new Date(Q.timestamp).getTime());return{...N,[R]:{...D,events:W,lastUpdated:Y}}}else{let W="Task started...";if(A.direction==="request"&&((V=(H=A.full_payload)==null?void 0:H.method)!=null&&V.startsWith("tasks/"))){const Q=A.full_payload.params;if((U=Q==null?void 0:Q.message)!=null&&U.parts){const re=Q.message.parts.filter(K=>K.type==="text");W=((G=re[1])==null?void 0:G.text)??((F=re[0])==null?void 0:F.text)}}const X={taskId:R,initialRequestText:W,events:[A],firstSeen:Y,lastUpdated:Y};return x(Q=>[R,...Q.filter(re=>re!==R)]),{...N,[R]:X}}})},[]),B=g.useCallback(()=>{console.log("TaskMonitorContext: SSE connection opened."),s(!1),l(!0),u(null),b(0),S(!1),T.current&&(clearTimeout(T.current),T.current=null)},[]),O=g.useCallback(A=>{try{const N=JSON.parse(A.data);P(N)}catch(N){console.error("TaskMonitorContext: Failed to parse SSE 'a2a_message' event data:",N,"Raw data:",A.data),u("Received unparseable 'a2a_message' event from server.")}},[P]),z=g.useCallback(A=>{console.error("TaskMonitorContext: SSE connection error:",A),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),T.current&&(clearTimeout(T.current),T.current=null)},[]),L=g.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 A={subscription_targets:[{type:"my_a2a_messages"}]},N=await It(`${n}/visualization/subscribe`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(A),credentials:"include"});if(!N.ok){const U=await N.json().catch(()=>({detail:"Failed to subscribe"}));if(U.error_type==="authorization_failure"){const G=U.message||"Access denied: insufficient permissions",F=U.suggested_action?` ${U.suggested_action}`:"";throw new Error(`${G}${F}`)}else if(U.error_type==="subscription_failure"){const G=U.message||"Subscription failed",F=U.suggested_action?` ${U.suggested_action}`:"";throw new Error(`${G}${F}`)}else throw new Error(U.detail||U.message||`Subscription failed: ${N.statusText}`)}const R=await N.json();o(R.stream_id);const D=R.sse_endpoint_url.startsWith("/")?`${t||""}${R.sse_endpoint_url}`:R.sse_endpoint_url;k.current&&k.current.close();const Y=eu(),H=`${D}${Y?`?token=${Y}`:""}`,V=new EventSource(H,{withCredentials:!0});k.current=V,V.onopen=B,V.addEventListener("a2a_message",O),V.onerror=z}catch(A){console.error("TaskMonitorContext: Error connecting stream:",A),u(A instanceof Error?A.message:String(A)),s(!1),l(!1),o(null),k.current&&(k.current.close(),k.current=null),T.current&&(clearTimeout(T.current),T.current=null)}},[n,t,a,i,B,O,z]),_=g.useCallback(()=>{if(T.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 A=2e3;console.log(`TaskMonitorContext: Attempting reconnection ${y+1}/${E} in ${A}ms...`),S(!0),b(N=>N+1),T.current=setTimeout(()=>{L()},A)},[y,L]),I=g.useCallback(async()=>{console.log("TaskMonitorContext: Disconnecting stream..."),T.current&&(clearTimeout(T.current),T.current=null),k.current&&(k.current.close(),k.current=null);const A=C.current;if(A)try{await It(`${n}/visualization/${A}/unsubscribe`,{method:"DELETE",credentials:"include"})}catch(N){console.error(`TaskMonitorContext: Error unsubscribing from stream ID: ${A}`,N)}o(null),s(!1),l(!1),u(null),p({}),x([]),v(null),b(0),S(!1)},[n]);g.useEffect(()=>()=>{console.log("TaskMonitorProvider: Unmounting. Cleaning up Task Monitor SSE connection."),k.current&&(k.current.close(),k.current=null);const A=C.current;if(A)if(navigator.sendBeacon){const N=new FormData;navigator.sendBeacon(`${n}/visualization/${A}/unsubscribe`,N)}else It(`${n}/visualization/${A}/unsubscribe`,{method:"DELETE",credentials:"include",keepalive:!0}).catch(N=>console.error("TaskMonitorProvider: Error in final unsubscribe on unmount (fetch):",N))},[n]),g.useEffect(()=>{!a&&!i&&(console.log("TaskProvider: Auto-connecting to task monitor stream..."),L())},[]),g.useEffect(()=>{!a&&!i&&c&&(console.log("TaskMonitorContext: Connection lost, initiating auto-reconnection..."),_())},[a,i,c,_]),g.useEffect(()=>()=>{T.current&&(clearTimeout(T.current),T.current=null)},[]);const M=g.useCallback(A=>{v(A)},[]),j={isTaskMonitorConnecting:i,isTaskMonitorConnected:a,taskMonitorSseError:c,monitoredTasks:f,monitoredTaskOrder:h,highlightedStepId:m,isReconnecting:w,reconnectionAttempts:y,connectTaskMonitorStream:L,disconnectTaskMonitorStream:I,setHighlightedStepId:M};return d.jsx(qm.Provider,{value:j,children:e})},N4=({children:e})=>{const{configWelcomeMessage:t,configServerUrl:n}=Ko(),r=`${n}/api/v1`,[o,i]=g.useState(()=>`web-session-${Date.now()}`),[s,a]=g.useState([]),[l,c]=g.useState(""),[u,f]=g.useState(!1),[p,h]=g.useState([]),[x,m]=g.useState(null),v=g.useRef(null),[y,b]=g.useState(""),[w,S]=g.useState(!1),[E,k]=g.useState(null),C=g.useRef(null),T=g.useRef(!1),P=g.useRef(null),B=g.useRef(0),{agents:O,error:z,isLoading:L,refetch:_}=m_(),{artifacts:I,isLoading:M,refetch:j,error:A}=x_(),N=g.useCallback(async ee=>{!M&&(ee==null?void 0:ee.some(se=>!I.some(le=>le.filename===se.name)))&&await j()},[I,M,j]),[R,D]=g.useState(!0),[Y,H]=g.useState("files"),[V,U]=g.useState(!1),[G,F]=g.useState(null),[W,X]=g.useState(!1),[Q,re]=g.useState(new Set),[K,ne]=g.useState(!1),[ie,he]=g.useState(null),[ue,we]=g.useState(null),[Ee,Ke]=g.useState(null),[st,tt]=g.useState(null),me=g.useCallback((ee,q)=>{h(se=>{if(se.find(Ie=>Ie.message===ee))return se;const de=Date.now().toString(),De={id:de,message:ee,type:q||"info"};return setTimeout(()=>{h(Ie=>Ie.filter(qe=>qe.id!==de))},3e3),[...se,De]})},[]),ut=g.useCallback(async ee=>{const q=new FormData;q.append("upload_file",ee,ee.name);try{const se=await It(`${r}/artifacts/${encodeURIComponent(ee.name)}`,{method:"POST",body:q,credentials:"include"});if(!se.ok){const le=await se.json().catch(()=>({detail:`Failed to upload ${ee.name}`}));throw new Error(le.detail||`HTTP error ${se.status}`)}me(`Artifact "${ee.name}" uploaded successfully.`),await j()}catch(se){me(`Error uploading artifact "${ee.name}": ${se instanceof Error?se.message:"Unknown error"}`)}},[r,me,j]),dt=g.useCallback(async ee=>{try{const q=await It(`${r}/artifacts/${encodeURIComponent(ee)}`,{method:"DELETE",credentials:"include"});if(!q.ok&&q.status!==204){const se=await q.json().catch(()=>({detail:`Failed to delete ${ee}`}));throw new Error(se.detail||`HTTP error ${q.status}`)}me(`File "${ee}" deleted successfully.`),await j()}catch(q){me(`Error deleting file "${ee}": ${q instanceof Error?q.message:"Unknown error"}`)}},[r,me,j]),lt=g.useCallback(ee=>{F(ee),U(!0)},[]),We=g.useCallback(()=>{F(null),U(!1)},[]),ht=g.useCallback(async()=>{G&&await dt(G.filename),We()},[G,dt,We]),xt=g.useCallback(()=>{if(Q.size===0){me("No files selected for deletion.");return}ne(!0)},[Q,me]),pt=g.useCallback(async()=>{ne(!1);const ee=Array.from(Q);let q=0,se=0;for(const le of ee)try{const de=await It(`${r}/artifacts/${encodeURIComponent(le)}`,{method:"DELETE",credentials:"include"});if(!de.ok&&de.status!==204)throw new Error(`Failed to delete ${le}`);q++}catch(de){console.error(de),se++}q>0&&me(`${q} files(s) deleted successfully.`),se>0&&me(`Failed to delete ${se} files(s).`),await j(),re(new Set),X(!1)},[Q,r,me,j]),bt=g.useCallback(async ee=>{we(null),Ke(null),tt(null);try{const q=await It(`${r}/artifacts/${encodeURIComponent(ee)}/versions`,{credentials:"include"});if(!q.ok)throw new Error("Error fetching version list");const se=await q.json();if(!se||se.length===0)throw new Error("No versions available");we(se.sort((Ae,Ve)=>Ae-Ve));const le=Math.max(...se);Ke(le);const de=await It(`${r}/artifacts/${encodeURIComponent(ee)}/versions/${le}`,{credentials:"include"});if(!de.ok)throw new Error("Error fetching latest version content");const De=await de.blob(),Ie=await new Promise((Ae,Ve)=>{const ze=new FileReader;ze.onloadend=()=>{var rt;return Ae(((rt=ze.result)==null?void 0:rt.toString().split(",")[1])||"")},ze.onerror=Ve,ze.readAsDataURL(De)}),qe=I.find(Ae=>Ae.filename===ee),Xe={name:ee,mime_type:(qe==null?void 0:qe.mime_type)||"application/octet-stream",content:Ie,last_modified:(qe==null?void 0:qe.last_modified)||new Date().toISOString()};return tt(Xe),Xe}catch(q){return me(`Error loading preview for ${ee}: ${q instanceof Error?q.message:"Unknown error"}`),null}},[r,me,I]),vt=g.useCallback(async(ee,q)=>{if(!ue||!ue.includes(q))return me(`Version ${q} is not available for ${ee}.`),null;tt(null);try{const se=await It(`${r}/artifacts/${encodeURIComponent(ee)}/versions/${q}`,{credentials:"include"});if(!se.ok)throw new Error(`Error fetching version ${q}`);const le=await se.blob(),de=await new Promise((qe,Xe)=>{const Ae=new FileReader;Ae.onloadend=()=>{var Ve;return qe(((Ve=Ae.result)==null?void 0:Ve.toString().split(",")[1])||"")},Ae.onerror=Xe,Ae.readAsDataURL(le)}),De=I.find(qe=>qe.filename===ee),Ie={name:ee,mime_type:(De==null?void 0:De.mime_type)||"application/octet-stream",content:de,last_modified:(De==null?void 0:De.last_modified)||new Date().toISOString()};return Ke(q),tt(Ie),Ie}catch(se){return me(`Error loading version ${q}: ${se instanceof Error?se.message:"Unknown error"}`),null}},[r,me,I,ue]),ct=g.useCallback(ee=>{me(`Loading preview for attached file: ${ee.name}`),tt(ee),we(null),Ke(null)},[me]),Tt=g.useCallback(ee=>{D(!1),H(ee),typeof window<"u"&&window.dispatchEvent(new CustomEvent("expand-side-panel",{detail:{tab:ee}}))},[]),He=g.useCallback(ee=>{var Bt,Te,$e,Ce,oe,$,J,Z,pe,ke,te,ce;B.current+=1;const q=B.current;let se;try{console.log("TEST-SSE ChatProvider Raw Message:",ee.data),se=JSON.parse(ee.data)}catch(fe){console.error(fe),me("Received unparseable agent update.","error");return}const le=se;let de="",De=[],Ie,qe=!1,Xe=!1,Ae=null,Ve=((Bt=le.id)==null?void 0:Bt.toString())||x||`msg-${Date.now()}`;const ze=ee.type==="final_response";let rt=!1,gt=!1;const Et=!!le.error||ee.type==="error";let Dt=[],St=null;if(le.error)Ae=le.error,de=`Error: ${Ae.message}`;else if(le.result){const fe=le.result;if(fe.id&&(fe.status||fe.artifact))if(fe.status){const ae=fe;if(rt=ae.final??!1,Ve=ae.id,"sessionId"in fe&&ae.status.state==="failed"){if(console.log("DEBUG: Detected failed task in status_update",ae),(Te=ae.status.message)!=null&&Te.parts)for(const Ne of ae.status.message.parts)Ne.type==="text"&&(de+=Ne.text||"",Xe=!0);de||(de="An unexpected error occurred during task execution.",Xe=!0),console.log("DEBUG: Failed task error message",{messageContent:de,hasOtherContentParts:Xe}),Ae={code:-32603,message:de},console.log("DEBUG: Set errorContent for failed task",Ae)}else if(ae.status.message&&ae.status.message.parts)for(const Ne of ae.status.message.parts){if(Ne.type==="data"&&(($e=Ne.data)==null?void 0:$e.a2a_signal_type)==="agent_status_message"){qe=!0,qe=!0;const Ct=Ne.data.text||"Status update received.";P.current=Ct;continue}if(Xe=!0,Ne.type==="text")de+=Ne.text||"";else if(Ne.type==="file")De.push({name:Ne.file.name||"unknown_file",content:Ne.file.bytes||"",mime_type:Ne.file.mimeType??"application/octet-stream"});else if(Ne.type==="data"){const Me=Ne;((Ce=Me.data)==null?void 0:Ce.type)==="agent_status"&&typeof((oe=Me.data)==null?void 0:oe.text)=="string"?St=Me.data.text:($=Me.metadata)!=null&&$.tool_name&&Dt.push({toolName:Me.metadata.tool_name,data:Me.data})}}}else{const ae=fe;Ve=ae.id;const Ne=ae.artifact;Ne.parts.forEach(Me=>{var Ct,Ze;Me.type==="file"?De.push({name:Me.file.name||Ne.name||"unknown_artifact_file",content:Me.file.bytes||"",mime_type:Me.file.mimeType??"application/octet-stream"}):Me.type==="data"&&((Ct=Me.metadata)!=null&&Ct.tool_name)&&Dt.push({toolName:(Ze=Me==null?void 0:Me.metadata)==null?void 0:Ze.tool_name,data:Me.data})}),Ie={name:Ne.name||"untitled",version:(J=Ne.metadata)==null?void 0:J.version},Xe=!0}else if(fe.id&&fe.status&&!("final"in fe)&&ee.type==="final_response"){const ae=fe;if(Ve=ae.id,((Z=ae.status)==null?void 0:Z.state)==="failed"){if((pe=ae.status.message)!=null&&pe.parts)for(const Ne of ae.status.message.parts)Ne.type==="text"&&(de+=Ne.text||"",Xe=!0);de||(de="An unexpected error occurred during task execution.",Xe=!0),Ae={code:-32603,message:de}}else de="",De=[],Ie=void 0,Dt=[],St=null,Xe=!1}(ke=le.result)!=null&&ke.status&&((ce=(te=le.result.status.message)==null?void 0:te.metadata)==null?void 0:ce.type)==="llm_response"&&!Xe&&(gt=!0)}St&&(P.current=St);const kt=rt&&!gt||ze||Et;a(fe=>{var rr,kn,tn,Hn,pn;let ae=[...fe];((rr=ae[ae.length-1])==null?void 0:rr.isStatusBubble)&&(ae=ae.slice(0,-1));let Me=!1,Ct=!1;const Ze=(je,Er)=>{const eo={taskId:x??void 0,isUser:!1,isComplete:!1,metadata:{sessionId:o,messageId:Ve,lastProcessedEventSequence:Er},...je};ae.push(eo),je.text&&Ae&&(ae[ae.length-1].isComplete=!0),Ct=!0},jt=ae.length-1;if(!qe||Xe||ze||Et){const je=ae.length>0?ae[ae.length-1]:null;de&&!ze&&!rt&&(je&&!je.isUser&&!je.isComplete&&((kn=je.metadata)==null?void 0:kn.messageId)===Ve&&je.text!==void 0&&!je.toolEvents&&!je.files&&!je.artifactNotification&&(((tn=je.metadata)==null?void 0:tn.lastProcessedEventSequence)||0)<q?(ae[ae.length-1]={...je,text:(je.text||"")+de,metadata:{...je.metadata,sessionId:o,lastProcessedEventSequence:q}},Me=!0):Ze({text:de},q)),Dt.length>0&&!ze&&Ze({toolEvents:Dt},q),De.length>0&&!ze&&(Ze({files:De},q),N(De)),Ie&&!ze&&Ze({artifactNotification:Ie},q),Ae&&(console.log("DEBUG: Creating error bubble",{messageContent:de,errorContent:Ae,currentEventSequence:q}),Ze({text:de,isComplete:!0,isError:!0},q))}if(kt)for(let je=0;je<ae.length;je++)ae[je]&&!ae[je].isUser&&((Hn=ae[je].metadata)==null?void 0:Hn.messageId)===Ve&&!ae[je].isStatusBubble&&(!ae[je].isComplete||Ae&&ae[je].text===de)&&(ae[je]={...ae[je],isComplete:!0,metadata:{...ae[je].metadata,lastProcessedEventSequence:q}});else if(Ct&&!Me&&jt>=0&&jt<ae.length){const je=ae[jt];je&&!je.isUser&&((pn=je.metadata)==null?void 0:pn.messageId)===Ve&&!je.isStatusBubble&&!je.isComplete&&(ae[jt]={...je,isComplete:!0,metadata:{...je.metadata,lastProcessedEventSequence:q}})}if(ze||Et||rt&&w)P.current=null;else{const je=St??P.current;je&&ae.push({taskId:x??void 0,text:je,isUser:!1,isStatusBubble:!0,isComplete:!1,metadata:{sessionId:o,messageId:Ve,lastProcessedEventSequence:q}})}return ae}),w&&(rt||Et)&&(me(Et?"Task failed during cancellation.":"Task successfully cancelled."),C.current&&(clearTimeout(C.current),C.current=null),S(!1),a(fe=>fe.filter(ae=>!ae.isStatusBubble))),(ze||Et||rt&&w)&&(f(!1),v.current&&(v.current.close(),v.current=null),m(null),T.current=!0,j(),setTimeout(()=>{T.current=!1},100))},[x,w,me,o,N,j]),Fe=g.useCallback(()=>{C.current&&(clearTimeout(C.current),C.current=null),S(!1),v.current&&(v.current.removeEventListener("status_update",He),v.current.removeEventListener("artifact_update",He),v.current.removeEventListener("final_response",He),v.current.removeEventListener("error",He),v.current.close(),v.current=null),T.current=!1},[He]),At=g.useCallback(async()=>{var q;const ee="ChatProvider.handleNewSession:";if(console.log(`${ee} Starting new session process...`),Fe(),u&&x&&y&&!w){console.log(`${ee} Cancelling current task ${x}`);try{await It(`${r}/tasks/cancel`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({agent_name:y,task_id:x}),credentials:"include"})}catch(se){console.warn(`${ee} Failed to cancel current task:`,se)}}C.current&&(clearTimeout(C.current),C.current=null),S(!1);try{console.log(`${ee} Requesting new session from backend...`);const se=await It(`${r}/sessions/new`,{method:"POST",credentials:"include",headers:{"Content-Type":"application/json"}});if(!se.ok){const Ie=await se.json().catch(()=>({detail:`HTTP error ${se.status}`}));throw new Error(Ie.detail||`Failed to create new session: ${se.status}`)}const le=await se.json(),de=(q=le==null?void 0:le.result)==null?void 0:q.sessionId;if(!de)throw new Error("Backend did not return a valid session ID");console.log(`${ee} Received new backend session ID: ${de}`),i(de),a(t?[{text:t,isUser:!1,isComplete:!0,metadata:{sessionId:de,lastProcessedEventSequence:0}}]:[]),c(""),f(!1),m(null),k(null),he(null),T.current=!1,P.current=null,B.current=0,console.log(`${ee} Refreshing artifacts for new session...`),await j(),me("New session started successfully."),console.log(`${ee} New session setup complete.`)}catch(se){console.error(`${ee} Error creating new session:`,se),me(`Failed to create new session: ${se instanceof Error?se.message:"Unknown error"}`),console.log(`${ee} Falling back to frontend-only session reset...`);const le=`web-session-${Date.now()}`;i(le),a(t?[{text:t,isUser:!1,isComplete:!0,metadata:{sessionId:le,lastProcessedEventSequence:0}}]:[]),c(""),f(!1),m(null),k(null),T.current=!1,P.current=null,B.current=0,me("Session reset to frontend-only mode due to backend error.")}typeof window<"u"&&window.dispatchEvent(new CustomEvent("new-chat-session",{detail:{sessionId:o}}))},[Fe,u,x,y,w,r,t,me,j,o]),be=g.useCallback(async()=>{if(!u&&!w||!x||!y){me("No active task to cancel.");return}if(w){me("Cancellation already in progress.");return}me(`Requesting cancellation for task ${x}...`),S(!0);try{const ee=await It(`${r}/tasks/cancel`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({agent_name:y,task_id:x})});if(ee.status===202)C.current&&clearTimeout(C.current),C.current=setTimeout(()=>{me(`Cancellation for task ${x} timed out. Allowing new input.`),S(!1),f(!1),Fe(),m(null),C.current=null,a(q=>q.filter(se=>!se.isStatusBubble))},15e3);else{const q=await ee.json().catch(()=>({detail:"Unknown cancellation error"}));me(`Failed to request cancellation: ${q.detail||ee.statusText}`),S(!1)}}catch(ee){me(`Error sending cancellation request: ${ee instanceof Error?ee.message:"Network error"}`),S(!1)}},[u,w,x,y,r,me,Fe]),ye=g.useCallback(()=>{},[]),_e=g.useCallback(()=>{u&&!T.current&&!w&&me("Connection error with agent updates."),T.current||(f(!1),w||(Fe(),m(null)),P.current=null),a(ee=>ee.filter(q=>!q.isStatusBubble).map((q,se,le)=>se===le.length-1&&!q.isUser?{...q,isComplete:!0}:q))},[me,Fe,u,w]),Pe=g.useCallback(async(ee,q,se)=>{var Xe;ee.preventDefault();const le=(se==null?void 0:se.trim())||l.trim(),de=q||[];if(!le&&de.length===0||u||w||!y){y||me("Please select an agent first."),w&&me("Cannot send new message while a task is being cancelled.");return}Fe(),T.current=!1,f(!0),m(null),P.current=null,B.current=0;const De={text:le,isUser:!0,uploadedFiles:de.length>0?de:void 0,metadata:{sessionId:o,lastProcessedEventSequence:0}},Ie="Thinking";P.current=Ie;const qe={text:Ie,isUser:!1,isStatusBubble:!0,isComplete:!1,metadata:{sessionId:o,lastProcessedEventSequence:0}};a(Ae=>[...Ae,De,qe]),c("");try{const Ae=new FormData;Ae.append("agent_name",y),Ae.append("message",le),de.forEach(gt=>Ae.append("files",gt,gt.name)),console.log("ChatProvider handleSubmit: Sending POST to /tasks/subscribe");const Ve=await It(`${r}/tasks/subscribe`,{method:"POST",body:Ae});if(!Ve.ok){const gt=await Ve.json().catch(()=>({detail:"Unknown error"}));throw console.error("ChatProvider handleSubmit: Error from /tasks/subscribe",Ve.status,gt),new Error(gt.detail||`HTTP error ${Ve.status}`)}const ze=await Ve.json(),rt=(Xe=ze==null?void 0:ze.result)==null?void 0:Xe.taskId;if(!rt)throw console.error("ChatProvider handleSubmit: Backend did not return a valid taskId. Result:",ze),new Error("Backend did not return a valid taskId.");console.log(`ChatProvider handleSubmit: Received taskId ${rt}. Setting currentTaskId and taskIdInSidePanel.`),m(rt),k(rt)}catch(Ae){console.error("ChatProvider handleSubmit: Catch block error",Ae),me(`Error: ${Ae instanceof Error?Ae.message:"Unknown error"}`),f(!1),a(Ve=>Ve.filter(ze=>!ze.isStatusBubble)),m(null),T.current=!1,P.current=null}},[l,u,w,o,y,r,me,Fe]);g.useEffect(()=>{A&&me(`Error fetching files: ${A}`,"error")},[me,A]),g.useEffect(()=>{if(x&&r){console.log(`ChatProvider Effect: currentTaskId is ${x}. Setting up EventSource.`);const ee=eu(),q=`${r}/sse/subscribe/${x}${ee?`?token=${ee}`:""}`,se=new EventSource(q,{withCredentials:!0});return v.current=se,se.onopen=ye,se.onerror=_e,se.addEventListener("status_update",He),se.addEventListener("artifact_update",He),se.addEventListener("final_response",He),se.addEventListener("error",He),()=>{console.log(`ChatProvider Effect Cleanup: currentTaskId was ${x}. Closing EventSource.`),Fe()}}else console.log("ChatProvider Effect: currentTaskId is null or apiPrefix missing. Ensuring EventSource is closed."),Fe()},[x,r]);const Le={sessionId:o,messages:s,setMessages:a,userInput:l,setUserInput:c,isResponding:u,currentTaskId:x,isCancelling:w,agents:O,agentsLoading:L,agentsError:z,agentsRefetch:_,handleNewSession:At,handleSubmit:Pe,handleCancel:be,notifications:p,addNotification:me,selectedAgentName:y,setSelectedAgentName:b,artifacts:I,artifactsLoading:M,artifactsRefetch:j,uploadArtifactFile:ut,isSidePanelCollapsed:R,activeSidePanelTab:Y,setIsSidePanelCollapsed:D,setActiveSidePanelTab:H,openSidePanelTab:Tt,taskIdInSidePanel:E,setTaskIdInSidePanel:k,isDeleteModalOpen:V,artifactToDelete:G,openDeleteModal:lt,closeDeleteModal:We,confirmDelete:ht,isArtifactEditMode:W,setIsArtifactEditMode:X,selectedArtifactFilenames:Q,setSelectedArtifactFilenames:re,handleDeleteSelectedArtifacts:xt,confirmBatchDeleteArtifacts:pt,isBatchDeleteModalOpen:K,setIsBatchDeleteModalOpen:ne,previewedArtifactAvailableVersions:ue,currentPreviewedVersionNumber:Ee,previewFileContent:st,openArtifactForPreview:bt,navigateArtifactVersion:vt,openMessageAttachmentForPreview:ct,previewArtifact:ie,setPreviewArtifact:he};return d.jsx(Wm.Provider,{value:Le,children:e})},j4=({children:e})=>{const{frontend_use_authorization:t,configAuthLoginUrl:n}=Ko(),{fetchCsrfToken:r,clearCsrfToken:o}=Xm(),[i,s]=g.useState(!1),[a,l]=g.useState(!0),[c,u]=g.useState(null);g.useEffect(()=>{let h=!0;const x=async()=>{if(!t){h&&(s(!0),l(!1));return}try{const v=await It("/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 m=v=>{v.key==="access_token"&&x()};return window.addEventListener("storage",m),()=>{h=!1,window.removeEventListener("storage",m)}},[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(Um.Provider,{value:{isAuthenticated:i,useAuthorization:t,login:f,logout:p,userInfo:c},children:e})};function I4(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 M4=e=>new Promise(t=>setTimeout(t,e)),R4=async(e=5,t=50)=>{try{const n=await It("/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=I4("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 M4(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 P4({children:e}){const[t,n]=g.useState(null),r=g.useCallback(async()=>{if(t)return t;const s=await R4();if(s)n(s);else throw new Error("Failed to obtain CSRF token after config fetch failed.");return s},[t]),o=g.useCallback(()=>{n(null)},[]),i={fetchCsrfToken:r,clearCsrfToken:o};return d.jsx(Ym.Provider,{value:i,children:e})}const D4={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"}},O4={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"}},L4={"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 Fh(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 $4(e,t){const n={},r=O4[t];for(const[o,i]of Object.entries(r)){const s=Fh(e,i);n[`--${o}`]=s}for(const[o,i]of Object.entries(L4)){const s=Fh(e,i);n[`--color-${o}`]=s}return n}const Sa="sam-theme";function z4(e){var n,r,o,i,s,a,l,c,u,f,p,h,x,m,v,y,b,w,S,E,k,C,T,P,B,O,z,L,_,I,M,j,A,N,R,D,Y,H,V,U,G,F,W,X,Q,re,K,ne,ie,he,ue,we,Ee,Ke,st,tt,me,ut,dt,lt,We,ht,xt,pt,bt,vt,ct,Tt,He,Fe,At,be,ye,_e,Pe,Le,ee,q,se,le,de,De,Ie,qe,Xe,Ae,Ve,ze,rt,gt,Et,Dt,St,kt,en,Bt,Te,$e,Ce,oe,$,J,Z;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),(m=e.warning)!=null&&m.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),(T=e.success)!=null&&T.w20&&(t["--color-success-w20"]=e.success.w20),(P=e.success)!=null&&P.w10&&(t["--color-success-w10"]=e.success.w10),(B=e.stateLayer)!=null&&B.w10&&(t["--color-stateLayer-w10"]=e.stateLayer.w10),(O=e.stateLayer)!=null&&O.w20&&(t["--color-stateLayer-w20"]=e.stateLayer.w20),(L=(z=e.accent)==null?void 0:z.n0)!=null&&L.wMain&&(t["--color-accent-n0-wMain"]=e.accent.n0.wMain),(I=(_=e.accent)==null?void 0:_.n0)!=null&&I.w100&&(t["--color-accent-n0-w100"]=e.accent.n0.w100),(j=(M=e.accent)==null?void 0:M.n0)!=null&&j.w30&&(t["--color-accent-n0-w30"]=e.accent.n0.w30),(N=(A=e.accent)==null?void 0:A.n0)!=null&&N.w10&&(t["--color-accent-n0-w10"]=e.accent.n0.w10),(D=(R=e.accent)==null?void 0:R.n1)!=null&&D.wMain&&(t["--color-accent-n1-wMain"]=e.accent.n1.wMain),(H=(Y=e.accent)==null?void 0:Y.n1)!=null&&H.w100&&(t["--color-accent-n1-w100"]=e.accent.n1.w100),(U=(V=e.accent)==null?void 0:V.n1)!=null&&U.w60&&(t["--color-accent-n1-w60"]=e.accent.n1.w60),(F=(G=e.accent)==null?void 0:G.n1)!=null&&F.w30&&(t["--color-accent-n1-w30"]=e.accent.n1.w30),(X=(W=e.accent)==null?void 0:W.n1)!=null&&X.w20&&(t["--color-accent-n1-w20"]=e.accent.n1.w20),(re=(Q=e.accent)==null?void 0:Q.n1)!=null&&re.w10&&(t["--color-accent-n1-w10"]=e.accent.n1.w10),(ne=(K=e.accent)==null?void 0:K.n2)!=null&&ne.wMain&&(t["--color-accent-n2-wMain"]=e.accent.n2.wMain),(he=(ie=e.accent)==null?void 0:ie.n2)!=null&&he.w100&&(t["--color-accent-n2-w100"]=e.accent.n2.w100),(we=(ue=e.accent)==null?void 0:ue.n2)!=null&&we.w30&&(t["--color-accent-n2-w30"]=e.accent.n2.w30),(Ke=(Ee=e.accent)==null?void 0:Ee.n2)!=null&&Ke.w20&&(t["--color-accent-n2-w20"]=e.accent.n2.w20),(tt=(st=e.accent)==null?void 0:st.n2)!=null&&tt.w10&&(t["--color-accent-n2-w10"]=e.accent.n2.w10),(ut=(me=e.accent)==null?void 0:me.n3)!=null&&ut.wMain&&(t["--color-accent-n3-wMain"]=e.accent.n3.wMain),(lt=(dt=e.accent)==null?void 0:dt.n3)!=null&&lt.w100&&(t["--color-accent-n3-w100"]=e.accent.n3.w100),(ht=(We=e.accent)==null?void 0:We.n3)!=null&&ht.w30&&(t["--color-accent-n3-w30"]=e.accent.n3.w30),(pt=(xt=e.accent)==null?void 0:xt.n3)!=null&&pt.w10&&(t["--color-accent-n3-w10"]=e.accent.n3.w10),(vt=(bt=e.accent)==null?void 0:bt.n4)!=null&&vt.wMain&&(t["--color-accent-n4-wMain"]=e.accent.n4.wMain),(Tt=(ct=e.accent)==null?void 0:ct.n4)!=null&&Tt.w100&&(t["--color-accent-n4-w100"]=e.accent.n4.w100),(Fe=(He=e.accent)==null?void 0:He.n4)!=null&&Fe.w30&&(t["--color-accent-n4-w30"]=e.accent.n4.w30),(be=(At=e.accent)==null?void 0:At.n5)!=null&&be.wMain&&(t["--color-accent-n5-wMain"]=e.accent.n5.wMain),(_e=(ye=e.accent)==null?void 0:ye.n5)!=null&&_e.w100&&(t["--color-accent-n5-w100"]=e.accent.n5.w100),(Le=(Pe=e.accent)==null?void 0:Pe.n5)!=null&&Le.w60&&(t["--color-accent-n5-w60"]=e.accent.n5.w60),(q=(ee=e.accent)==null?void 0:ee.n5)!=null&&q.w30&&(t["--color-accent-n5-w30"]=e.accent.n5.w30),(le=(se=e.accent)==null?void 0:se.n6)!=null&&le.wMain&&(t["--color-accent-n6-wMain"]=e.accent.n6.wMain),(De=(de=e.accent)==null?void 0:de.n6)!=null&&De.w100&&(t["--color-accent-n6-w100"]=e.accent.n6.w100),(qe=(Ie=e.accent)==null?void 0:Ie.n6)!=null&&qe.w30&&(t["--color-accent-n6-w30"]=e.accent.n6.w30),(Ae=(Xe=e.accent)==null?void 0:Xe.n7)!=null&&Ae.wMain&&(t["--color-accent-n7-wMain"]=e.accent.n7.wMain),(ze=(Ve=e.accent)==null?void 0:Ve.n7)!=null&&ze.w100&&(t["--color-accent-n7-w100"]=e.accent.n7.w100),(gt=(rt=e.accent)==null?void 0:rt.n7)!=null&&gt.w30&&(t["--color-accent-n7-w30"]=e.accent.n7.w30),(Dt=(Et=e.accent)==null?void 0:Et.n8)!=null&&Dt.wMain&&(t["--color-accent-n8-wMain"]=e.accent.n8.wMain),(kt=(St=e.accent)==null?void 0:St.n8)!=null&&kt.w100&&(t["--color-accent-n8-w100"]=e.accent.n8.w100),(Bt=(en=e.accent)==null?void 0:en.n8)!=null&&Bt.w30&&(t["--color-accent-n8-w30"]=e.accent.n8.w30),($e=(Te=e.accent)==null?void 0:Te.n9)!=null&&$e.wMain&&(t["--color-accent-n9-wMain"]=e.accent.n9.wMain),(Ce=e.learning)!=null&&Ce.wMain&&(t["--color-learning-wMain"]=e.learning.wMain),(oe=e.learning)!=null&&oe.w100&&(t["--color-learning-w100"]=e.learning.w100),($=e.learning)!=null&&$.w90&&(t["--color-learning-w90"]=e.learning.w90),(J=e.learning)!=null&&J.w20&&(t["--color-learning-w20"]=e.learning.w20),(Z=e.learning)!=null&&Z.w10&&(t["--color-learning-w10"]=e.learning.w10),t}function F4(e,t="light"){const n={};if(e){const o=z4(e);Object.assign(n,o)}const r=$4(e,t);return Object.assign(n,r),n}function B4(){const e=localStorage.getItem(Sa);return e==="dark"||e==="light"?e:window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}function H4(e,t){const n=F4(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 V4=({children:e})=>{const t=g.useMemo(()=>D4,[]),[n,r]=g.useState(()=>B4()),o=g.useMemo(()=>({currentTheme:n,toggleTheme:()=>{const i=n==="light"?"dark":"light";r(i),localStorage.setItem(Sa,i)}}),[n]);return g.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)}}},[]),g.useEffect(()=>{document.documentElement.classList.remove("light","dark"),H4(t,n)},[n,t]),d.jsx(Km.Provider,{value:o,children:e})};function U4(){const[e,t]=g.useState("chat"),{isAuthenticated:n,login:r,useAuthorization:o}=v_();if(y_(),o&&!n)return d.jsx("div",{className:"bg-background flex h-screen items-center justify-center",children:d.jsx(Je,{onClick:r,children:"Login"})});const i=l=>{const c=jh.find(u=>u.id===l)||Ih.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(H5,{});case"agentMesh":return d.jsx(F5,{})}};return d.jsxs("div",{className:"relative flex h-screen",children:[d.jsx(M5,{items:jh,bottomItems:Ih,activeItem:e,onItemChange:i,onHeaderClick:s}),d.jsx("main",{className:"h-full w-full flex-1 overflow-auto",children:a()}),d.jsx(tT,{})]})}function W4(){return d.jsx(V4,{children:d.jsx(P4,{children:d.jsx(T4,{children:d.jsx(j4,{children:d.jsx(N4,{children:d.jsx(A4,{children:d.jsx(U4,{})})})})})})})}Xw.createRoot(document.getElementById("root")).render(d.jsx(g.StrictMode,{children:d.jsx(W4,{})}));