@astrale-os/cli 1.0.0-beta.2 → 1.0.0-beta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -1
- package/dist/astrale.js +51105 -58057
- package/dist/public/connect-core.js +2085 -30702
- package/dist/public/keys/index.js +884 -29476
- package/dist/public/paths/index.js +13101 -41452
- package/dist/types/admin/contract.d.ts +26 -0
- package/dist/types/admin/instance/client.d.ts +20 -0
- package/dist/types/admin/instance/index.d.ts +2 -0
- package/dist/types/admin/instance/model.d.ts +6 -10
- package/dist/types/connection/auth.d.ts +3 -0
- package/dist/types/connection/call.d.ts +3 -0
- package/dist/types/connection/command.d.ts +27 -0
- package/dist/types/connection/credential.d.ts +14 -0
- package/dist/types/connection/errors.d.ts +1 -0
- package/dist/types/connection/exchange.d.ts +9 -0
- package/dist/types/connection/failure/classify.d.ts +2 -0
- package/dist/types/connection/failure/index.d.ts +5 -0
- package/dist/types/connection/failure/model.d.ts +25 -0
- package/dist/types/connection/failure/render.d.ts +3 -0
- package/dist/types/connection/index.d.ts +8 -0
- package/dist/types/connection/reasons.d.ts +37 -0
- package/dist/types/connection/self.d.ts +37 -0
- package/dist/types/connection/session.d.ts +31 -0
- package/dist/types/connection/target.d.ts +38 -0
- package/dist/types/errors.d.ts +1 -1
- package/dist/types/lib/admin-instance.d.ts +17 -0
- package/dist/types/lib/admin-target.d.ts +11 -36
- package/dist/types/lib/config.d.ts +7 -59
- package/dist/types/lib/failure-debug.d.ts +1 -0
- package/dist/types/lib/idp.d.ts +25 -173
- package/dist/types/lib/instance-target.d.ts +1 -1
- package/dist/types/lib/instance.d.ts +30 -88
- package/dist/types/lib/log.d.ts +5 -3
- package/dist/types/lib/output.d.ts +1 -1
- package/dist/types/lib/proc.d.ts +43 -0
- package/dist/types/lib/self.d.ts +9 -0
- package/dist/types/lib/update.d.ts +109 -0
- package/dist/types/lib/validation.d.ts +4 -1
- package/package.json +15 -20
- package/src/__tests__/fixtures/publication.ts +20 -0
- package/src/admin/.spec/architecture.md +12 -5
- package/src/admin/__tests__/fixture.ts +25 -0
- package/src/admin/catalog/.spec/api.d.ts +1 -3
- package/src/admin/catalog/.spec/architecture.md +5 -4
- package/src/admin/catalog/__tests__/client.test.ts +143 -69
- package/src/admin/catalog/client.ts +40 -54
- package/src/admin/catalog/model.ts +3 -4
- package/src/admin/contract.ts +46 -0
- package/src/admin/graph/.spec/api.d.ts +4 -10
- package/src/admin/graph/nodes.ts +1 -1
- package/src/admin/instance/.spec/api.d.ts +5 -9
- package/src/admin/instance/.spec/architecture.md +7 -7
- package/src/admin/instance/__tests__/client.test.ts +157 -175
- package/src/admin/instance/client.ts +39 -128
- package/src/admin/instance/index.ts +1 -2
- package/src/admin/instance/model.ts +12 -18
- package/src/commands/__tests__/admin-instance.test.ts +11 -8
- package/src/commands/__tests__/call-describe.test.ts +46 -33
- package/src/commands/__tests__/call.test.ts +34 -0
- package/src/commands/__tests__/domain-install-operation.test.ts +7 -22
- package/src/commands/__tests__/domain-install-owned.test.ts +1 -1
- package/src/commands/__tests__/domain-list.test.ts +5 -25
- package/src/commands/__tests__/install-direct.test.ts +115 -8
- package/src/commands/__tests__/install-identity-override.test.ts +3 -14
- package/src/commands/__tests__/instance-list-rows.test.ts +1 -1
- package/src/commands/__tests__/instance-status.test.ts +139 -0
- package/src/commands/__tests__/introspect-parse.test.ts +80 -1
- package/src/commands/__tests__/logs.test.ts +250 -2
- package/src/commands/__tests__/read-commands.test.ts +62 -10
- package/src/commands/__tests__/token-ttl.test.ts +49 -4
- package/src/commands/__tests__/update.test.ts +25 -3
- package/src/commands/__tests__/view.test.ts +49 -0
- package/src/commands/call-describe.ts +60 -68
- package/src/commands/call.ts +71 -59
- package/src/commands/domain/install.ts +54 -35
- package/src/commands/domain/list.ts +1 -1
- package/src/commands/domain/publish.ts +14 -11
- package/src/commands/domain/uninstall.ts +2 -2
- package/src/commands/get.ts +14 -15
- package/src/commands/identity/__tests__/register.test.ts +3 -3
- package/src/commands/identity/register.ts +5 -4
- package/src/commands/instance/create.ts +8 -16
- package/src/commands/instance/delete.ts +12 -9
- package/src/commands/instance/list.ts +2 -2
- package/src/commands/instance/status.ts +66 -20
- package/src/commands/instance/use.ts +16 -12
- package/src/commands/introspect.ts +48 -35
- package/src/commands/logs.ts +123 -33
- package/src/commands/mutate.ts +6 -5
- package/src/commands/query.ts +35 -32
- package/src/commands/token.ts +42 -27
- package/src/commands/ui/__tests__/commands.test.ts +152 -0
- package/src/commands/ui/add.ts +51 -0
- package/src/commands/ui/doctor.ts +13 -0
- package/src/commands/ui/init.ts +38 -0
- package/src/commands/ui/list.ts +26 -0
- package/src/commands/ui/preset-apply.ts +19 -0
- package/src/commands/ui/preset-list.ts +12 -0
- package/src/commands/ui/shared.ts +25 -0
- package/src/commands/update.ts +31 -11
- package/src/commands/view.ts +82 -37
- package/src/connection/.spec/api.d.ts +7 -8
- package/src/connection/.spec/architecture.md +5 -4
- package/src/connection/.spec/flows/session.ts +2 -2
- package/src/connection/.spec/laws/connection.ts +6 -2
- package/src/connection/.spec/layout.ts +1 -0
- package/src/connection/__tests__/credential.test.ts +20 -1
- package/src/connection/__tests__/errors.test.ts +27 -20
- package/src/connection/__tests__/exchange.test.ts +30 -1
- package/src/connection/__tests__/failure-fixtures.ts +39 -0
- package/src/connection/__tests__/failure-safety.test.ts +75 -0
- package/src/connection/__tests__/self.test.ts +31 -11
- package/src/connection/__tests__/session.test.ts +3 -3
- package/src/connection/__tests__/target.test.ts +1 -0
- package/src/connection/auth.ts +13 -0
- package/src/connection/call.ts +1 -1
- package/src/connection/credential.ts +2 -2
- package/src/connection/errors.ts +1 -355
- package/src/connection/exchange.ts +47 -23
- package/src/connection/failure/classify.ts +110 -0
- package/src/connection/failure/index.ts +18 -0
- package/src/connection/failure/model.ts +28 -0
- package/src/connection/failure/render.ts +116 -0
- package/src/connection/reasons.ts +16 -0
- package/src/connection/self.ts +39 -21
- package/src/connection/session.ts +19 -8
- package/src/errors.ts +3 -2
- package/src/graph/.spec/api.d.ts +12 -5
- package/src/graph/.spec/layout.ts +9 -1
- package/src/graph/__tests__/mutation.test.ts +2 -2
- package/src/graph/__tests__/query.test.ts +25 -6
- package/src/graph/class.ts +30 -0
- package/src/graph/index.ts +1 -0
- package/src/graph/query.ts +21 -32
- package/src/identity/.spec/api.d.ts +2 -2
- package/src/identity/__tests__/registration.test.ts +1 -1
- package/src/identity/registration.ts +3 -3
- package/src/keys/__tests__/keys.test.ts +4 -0
- package/src/keys/credential.ts +1 -0
- package/src/lib/__tests__/admin-target.test.ts +12 -0
- package/src/lib/__tests__/binary.test.ts +16 -1
- package/src/lib/__tests__/command-dx.test.ts +1 -1
- package/src/lib/__tests__/domain-publication.test.ts +10 -16
- package/src/lib/__tests__/idp.test.ts +34 -4
- package/src/lib/__tests__/instance-candidates.test.ts +1 -3
- package/src/lib/__tests__/instance-target.test.ts +7 -39
- package/src/lib/__tests__/log-errors.test.ts +64 -0
- package/src/lib/__tests__/studio-server-deps.test.ts +1 -1
- package/src/lib/__tests__/update.test.ts +264 -11
- package/src/lib/__tests__/view-assets.test.ts +14 -0
- package/src/lib/__tests__/view-external-open-intent.test.ts +150 -0
- package/src/lib/__tests__/view-external-open-origins.test.ts +27 -0
- package/src/lib/__tests__/view-open-intent.test.ts +0 -2
- package/src/lib/__tests__/view-server.test.ts +26 -3
- package/src/lib/__tests__/view-session.test.ts +2 -1
- package/src/lib/admin-instance.ts +14 -8
- package/src/lib/admin-target.ts +21 -2
- package/src/lib/binary.ts +22 -5
- package/src/lib/command-dx.ts +9 -9
- package/src/lib/domain-publication.ts +9 -7
- package/src/lib/failure-debug.ts +26 -0
- package/src/lib/idp.ts +34 -3
- package/src/lib/instance-candidates.ts +2 -2
- package/src/lib/instance-target.ts +3 -14
- package/src/lib/instance.ts +16 -11
- package/src/lib/log.ts +16 -9
- package/src/lib/output.ts +1 -1
- package/src/lib/proc.ts +7 -2
- package/src/lib/provision-instance.ts +34 -57
- package/src/lib/update.ts +298 -45
- package/src/lib/validation.ts +2 -2
- package/src/lib/view/assets.ts +11 -2
- package/src/lib/view/external-open-intent.ts +41 -0
- package/src/lib/view/external-open-origins.ts +37 -0
- package/src/lib/view/host-capabilities.ts +17 -0
- package/src/lib/view/resolve.ts +1 -1
- package/src/lib/view/server.ts +18 -3
- package/src/lib/view/session.ts +2 -0
- package/src/program/.spec/api.d.ts +1 -0
- package/src/program/__tests__/program.test.ts +163 -6
- package/src/program/argv.ts +14 -0
- package/src/program/build.ts +26 -4
- package/src/program/command.ts +1 -0
- package/src/program/index.ts +1 -0
- package/src/program/registry.ts +2 -1
- package/src/setup/__tests__/instance-step.test.ts +27 -10
- package/src/setup/steps/instance.ts +22 -15
- package/src/telemetry/__tests__/recorder.test.ts +1 -0
- package/src/telemetry/recorder.ts +9 -1
- package/src/ui/.spec/api.d.ts +14 -0
- package/src/ui/.spec/architecture.md +10 -0
- package/src/ui/.spec/laws.ts +36 -0
- package/src/ui/.spec/layout.ts +16 -0
- package/src/ui/__tests__/ui.test.ts +981 -0
- package/src/ui/index.ts +13 -0
- package/src/ui/lock.ts +87 -0
- package/src/ui/model.ts +83 -0
- package/src/ui/operations.ts +710 -0
- package/src/ui/project.ts +219 -0
- package/src/ui/release.ts +321 -0
- package/src/ui/runner.ts +18 -0
- package/studio/client/dist/assets/elk-api-DjmKsHXc.js +1 -0
- package/studio/client/dist/assets/index-7YHdeCxp.js +81 -0
- package/studio/client/dist/assets/index-C0FAnwNw.css +2 -0
- package/studio/client/dist/assets/rolldown-runtime-Dd_uD5pT.js +1 -0
- package/studio/client/dist/assets/schema-studio-BilUNb6Z.css +1 -0
- package/studio/client/dist/assets/schema-studio-CABpTfvH.js +8 -0
- package/studio/client/dist/index.html +3 -2
- package/studio/package.json +7 -13
- package/studio/server/agent/ask.test.ts +1 -1
- package/studio/server/agent/bridge/grant.test.ts +1 -1
- package/studio/server/agent/bridge/routes.test.ts +1 -1
- package/studio/server/agent/harness/claude/adapter.test.ts +15 -5
- package/studio/server/agent/harness/gateway/token.test.ts +1 -1
- package/studio/server/agent/harness/gateway/token.ts +3 -3
- package/studio/server/agent/prompts/anchors.test.ts +32 -36
- package/studio/server/agent/prompts/anchors.ts +20 -49
- package/studio/server/agent/prompts/system.test.ts +3 -2
- package/studio/server/agent/prompts/system.ts +3 -3
- package/studio/server/agent/routes.test.ts +1 -1
- package/studio/server/agent/run/coordinator.test.ts +1 -1
- package/studio/server/api/canvas.ts +0 -1
- package/studio/server/api-agent-loadout.test.ts +1 -1
- package/studio/server/api.test.ts +1 -1
- package/studio/server/cache.test.ts +23 -12
- package/studio/server/cache.ts +12 -15
- package/studio/server/domain.test.ts +50 -68
- package/studio/server/domain.ts +82 -63
- package/studio/server/handoff/copy.ts +1 -1
- package/studio/server/index.ts +1 -1
- package/studio/server/instances/probe.test.ts +1 -1
- package/studio/server/introspect/anatomy/views/routes.ts +46 -37
- package/studio/server/introspect/anatomy/views.ts +9 -14
- package/studio/server/introspect/anatomy-extras.test.ts +26 -42
- package/studio/server/introspect/anatomy.test.ts +22 -14
- package/studio/server/introspect/anatomy.ts +6 -9
- package/studio/server/introspect/bundle.ts +0 -3
- package/studio/server/introspect/canonical-schema.test.ts +94 -389
- package/studio/server/introspect/canonical-schema.ts +227 -457
- package/studio/server/introspect/core-extractor.ts +18 -127
- package/studio/server/introspect/core.ts +1 -2
- package/studio/server/introspect/diff.test.ts +11 -7
- package/studio/server/introspect/diff.ts +18 -55
- package/studio/server/introspect/extractor.ts +22 -117
- package/studio/server/introspect/overlay-tsmorph.test.ts +119 -240
- package/studio/server/introspect/overlay.test.ts +26 -54
- package/studio/server/introspect/overlay.ts +10 -37
- package/studio/server/introspect/revision.test.ts +1 -1
- package/studio/server/introspect/revision.ts +1 -1
- package/studio/server/introspect/runtime.test.ts +65 -183
- package/studio/server/introspect/runtime.ts +8 -25
- package/studio/server/introspect/schema-ir-json.test.ts +70 -0
- package/studio/server/introspect/schema-ir-json.ts +38 -68
- package/studio/server/introspect/schema-refs.test.ts +43 -88
- package/studio/server/introspect/schema-refs.ts +14 -49
- package/studio/server/introspect/source-overlay/handlers.ts +116 -636
- package/studio/server/introspect/source-overlay/kernel-calls.ts +0 -3
- package/studio/server/introspect/source-overlay/spans.ts +15 -45
- package/studio/server/state/baseline.test.ts +14 -9
- package/studio/server/state/baseline.ts +3 -5
- package/studio/server/state/visibility.ts +1 -5
- package/studio/server/views/model.ts +3 -3
- package/studio/server/views/target.test.ts +17 -74
- package/studio/server/views/target.ts +24 -50
- package/studio/server/watch.test.ts +11 -11
- package/studio/server/watch.ts +8 -4
- package/studio/server/workspace-watch.ts +2 -2
- package/studio/shared/contracts/schema.ts +38 -107
- package/studio/shared/contracts/surface.test.ts +13 -15
- package/studio/shared/contracts/workspace.ts +2 -11
- package/studio/shared/schema/identity.test.ts +20 -44
- package/studio/shared/schema/identity.ts +9 -23
- package/viewer/dist/main.js +30 -51
- package/.check-workspace.cjs +0 -40
- package/src/admin/binding.ts +0 -168
- package/src/commands/__tests__/instance-create-hosts.test.ts +0 -29
- package/studio/client/dist/assets/elk-api-lwhFo7vB.js +0 -1
- package/studio/client/dist/assets/index-B-c-smo9.js +0 -8
- package/studio/client/dist/assets/index-BckHuAWk.js +0 -81
- package/studio/client/dist/assets/index-C4aNQ6dz.css +0 -1
- package/studio/client/dist/assets/index-ChOr3yP0.css +0 -1
- package/studio/server/introspect/anatomy/views/legacy.ts +0 -232
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/elk-api-DjmKsHXc.js","assets/rolldown-runtime-Dd_uD5pT.js"])))=>i.map(i=>d[i]);
|
|
2
|
+
import{i as e,t}from"./rolldown-runtime-Dd_uD5pT.js";import{$ as n,$t as r,A as i,At as a,B as o,Bt as s,C as c,Ct as l,D as u,Dt as d,E as f,Et as p,F as m,Ft as h,G as g,Gt as _,H as v,Ht as y,I as b,It as x,J as S,Jt as C,K as w,Kt as T,L as E,Lt as D,M as O,Mt as k,N as A,Nt as j,O as M,Ot as N,P,Pt as F,Q as I,Qt as L,R,Rt as z,S as B,St as ee,T as V,Tt as te,U as H,Ut as ne,V as re,Vt as ie,W as U,Wt as ae,X as oe,Xt as se,Y as ce,Yt as le,Z as ue,Zt as de,_ as fe,_t as pe,a as me,at as W,b as he,bt as ge,c as _e,ct as G,d as ve,dt as ye,en as be,et as xe,f as Se,ft as Ce,g as we,gt as Te,h as Ee,ht as De,i as Oe,it as ke,j as Ae,jt as je,k as Me,kt as Ne,l as K,lt as Pe,m as Fe,mt as Ie,n as Le,nt as Re,o as ze,ot as Be,p as Ve,pt as He,q as Ue,qt as We,r as Ge,rt as Ke,s as qe,st as Je,t as Ye,tt as Xe,u as Ze,ut as Qe,v as $e,vt as et,w as tt,wt as nt,x as rt,xt as it,y as at,yt as ot,z as st,zt as ct}from"./index-7YHdeCxp.js";function lt(e,t){let n=new Set(t);return e.filter(e=>!n.has(e))}function ut(e,t,n){let r=e.slice(0);return r[t]=n,r}var dt=class extends be{#e;#t;#n;#r;#i;#a;#o;#s;#c;#l=[];constructor(e,t,n){super(),this.#e=e,this.#r=n,this.#n=[],this.#i=[],this.#t=[],this.setQueries(t)}onSubscribe(){this.listeners.size===1&&this.#i.forEach(e=>{e.subscribe(t=>{this.#m(e,t)})})}onUnsubscribe(){this.listeners.size||this.destroy()}destroy(){this.listeners=new Set,this.#i.forEach(e=>{e.destroy()})}setQueries(e,t){this.#n=e,this.#r=t,se.batch(()=>{let e=this.#i,t=this.#p(this.#n);t.forEach(e=>e.observer.setOptions(e.defaultedQueryOptions));let n=t.map(e=>e.observer),i=n.map(e=>e.getCurrentResult()),a=e.length!==n.length,o=n.some((t,n)=>t!==e[n]),s=a||o,c=s?!0:i.some((e,t)=>{let n=this.#t[t];return!n||!r(e,n)});!s&&!c||(s&&(this.#l=t,this.#i=n),this.#t=i,this.hasListeners()&&(s&&(lt(e,n).forEach(e=>{e.destroy()}),lt(n,e).forEach(e=>{e.subscribe(t=>{this.#m(e,t)})})),this.#h()))})}getCurrentResult(){return this.#t}getQueries(){return this.#i.map(e=>e.getCurrentQuery())}getObservers(){return this.#i}getOptimisticResult(e,t){let n=this.#p(e),r=n.map(e=>e.observer.getOptimisticResult(e.defaultedQueryOptions)),i=n.map(e=>e.defaultedQueryOptions.queryHash);return[r,e=>this.#d(e??r,t,i),()=>this.#u(r,n)]}#u(e,t){return t.map((n,r)=>{let i=e[r];return n.defaultedQueryOptions.notifyOnChangeProps?i:n.observer.trackResult(i,e=>{t.forEach(t=>{t.observer.trackProp(e)})})})}#d(e,t,n){if(t){let r=this.#c,i=n!==void 0&&r!==void 0&&(r.length!==n.length||n.some((e,t)=>e!==r[t]));return(!this.#a||this.#t!==this.#s||i||t!==this.#o)&&(this.#o=t,this.#s=this.#t,n!==void 0&&(this.#c=n),this.#a=L(this.#a,t(e))),this.#a}return e}#f(){return this.#r?.combine!==void 0&&this.#i.some((e,t)=>e.options.suspense&&this.#t[t]?.data===void 0)}#p(e){let t=new Map;this.#i.forEach(e=>{let n=e.options.queryHash;if(!n)return;let r=t.get(n);r?r.push(e):t.set(n,[e])});let n=[];return e.forEach(e=>{let r=this.#e.defaultQueryOptions(e),i=t.get(r.queryHash)?.shift()??new le(this.#e,r);n.push({defaultedQueryOptions:r,observer:i})}),n}#m(e,t){let n=this.#i.indexOf(e);n!==-1&&(this.#t=ut(this.#t,n,t),this.#h())}#h(){if(this.hasListeners()){let e=this.#u(this.#t,this.#l),t=this.#f(),n=this.#a,r=t?n:this.#d(e,this.#r?.combine);(t||n!==r)&&se.batch(()=>{this.listeners.forEach(e=>{e(this.#t)})})}}},q=e(C(),1);function ft({queries:e,...t},n){let r=T(n),i=_(),a=ae(),o=q.useMemo(()=>e.map(e=>{let t=r.defaultQueryOptions(e);return t._optimisticResults=i?`isRestoring`:`optimistic`,t}),[e,r,i]);o.forEach(e=>{z(e);let t=r.getQueryCache().get(e.queryHash);ie(e,a,t)}),ne(a);let[c]=q.useState(()=>new dt(r,o,t)),[l,u,d]=c.getOptimisticResult(o,t.combine),f=!i&&t.subscribed!==!1;q.useSyncExternalStore(q.useCallback(e=>f?c.subscribe(se.batchCalls(e)):de,[c,f]),()=>c.getCurrentResult(),()=>c.getCurrentResult()),q.useEffect(()=>{c.setQueries(o,t)},[o,t,c]);let p=l.some((e,t)=>s(o[t],e))?l.flatMap((e,t)=>{let n=o[t];if(n&&s(n,e)){let e=new le(r,n);return ct(n,e,a)}return[]}):[];if(p.length>0)throw Promise.all(p);let m=l.find((e,t)=>{let n=o[t];return n&&y({result:e,errorResetBoundary:a,throwOnError:n.throwOnError,query:r.getQueryCache().get(n.queryHash),suspense:n.suspense})});if(m?.error)throw m.error;return u(d())}var pt=h(`app-window`,[[`rect`,{x:`2`,y:`4`,width:`20`,height:`16`,rx:`2`,key:`izxlao`}],[`path`,{d:`M10 4v4`,key:`pp8u80`}],[`path`,{d:`M2 8h20`,key:`d11cs7`}],[`path`,{d:`M6 4v4`,key:`1svtjw`}]]),mt=h(`arrow-left`,[[`path`,{d:`m12 19-7-7 7-7`,key:`1l729n`}],[`path`,{d:`M19 12H5`,key:`x3x0zl`}]]),ht=h(`circle-alert`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`12`,x2:`12`,y1:`8`,y2:`12`,key:`1pkeuh`}],[`line`,{x1:`12`,x2:`12.01`,y1:`16`,y2:`16`,key:`4dfq90`}]]),gt=h(`folder-closed`,[[`path`,{d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z`,key:`1kt360`}],[`path`,{d:`M2 10h20`,key:`1ir3d8`}]]),_t=h(`folder-open`,[[`path`,{d:`m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2`,key:`usdka0`}]]),vt=h(`folder-tree`,[[`path`,{d:`M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z`,key:`hod4my`}],[`path`,{d:`M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z`,key:`w4yl2u`}],[`path`,{d:`M3 5a2 2 0 0 0 2 2h3`,key:`f2jnh7`}],[`path`,{d:`M3 3v13a2 2 0 0 0 2 2h3`,key:`k8epm1`}]]),yt=h(`hexagon`,[[`path`,{d:`M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z`,key:`yt0hxn`}]]),bt=h(`layout-grid`,[[`rect`,{width:`7`,height:`7`,x:`3`,y:`3`,rx:`1`,key:`1g98yp`}],[`rect`,{width:`7`,height:`7`,x:`14`,y:`3`,rx:`1`,key:`6d4xhi`}],[`rect`,{width:`7`,height:`7`,x:`14`,y:`14`,rx:`1`,key:`nxv5o0`}],[`rect`,{width:`7`,height:`7`,x:`3`,y:`14`,rx:`1`,key:`1bb6yr`}]]),xt=h(`message-square-plus`,[[`path`,{d:`M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z`,key:`18887p`}],[`path`,{d:`M12 8v6`,key:`1ib9pf`}],[`path`,{d:`M9 11h6`,key:`1fldmi`}]]),St=h(`monitor-play`,[[`path`,{d:`M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z`,key:`vbtd3f`}],[`path`,{d:`M12 17v4`,key:`1riwvh`}],[`path`,{d:`M8 21h8`,key:`1ev6f3`}],[`rect`,{x:`2`,y:`3`,width:`20`,height:`14`,rx:`2`,key:`x3v2xh`}]]),Ct=h(`plug`,[[`path`,{d:`M12 22v-5`,key:`1ega77`}],[`path`,{d:`M15 8V2`,key:`18g5xt`}],[`path`,{d:`M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z`,key:`1xoxul`}],[`path`,{d:`M9 8V2`,key:`14iosj`}]]),wt=h(`plus`,[[`path`,{d:`M5 12h14`,key:`1ays0h`}],[`path`,{d:`M12 5v14`,key:`s699le`}]]),Tt=h(`unplug`,[[`path`,{d:`m19 5 3-3`,key:`yk6iyv`}],[`path`,{d:`m2 22 3-3`,key:`19mgm9`}],[`path`,{d:`M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z`,key:`goz73y`}],[`path`,{d:`M7.5 13.5 10 11`,key:`7xgeeb`}],[`path`,{d:`M10.5 16.5 13 14`,key:`10btkg`}],[`path`,{d:`m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z`,key:`1snsnr`}]]),Et=h(`user-round`,[[`circle`,{cx:`12`,cy:`8`,r:`5`,key:`1hypcn`}],[`path`,{d:`M20 21a8 8 0 0 0-16 0`,key:`rfgkzh`}]]),J=We();function Y(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=Y(e[n]))!==``&&(t+=(t&&` `)+r);else for(let n in e)e[n]&&(t+=(t&&` `)+n);return t}var Dt={value:()=>{}};function Ot(){for(var e=0,t=arguments.length,n={},r;e<t;++e){if(!(r=arguments[e]+``)||r in n||/[\s.]/.test(r))throw Error(`illegal type: `+r);n[r]=[]}return new kt(n)}function kt(e){this._=e}function At(e,t){return e.trim().split(/^|\s+/).map(function(e){var n=``,r=e.indexOf(`.`);if(r>=0&&(n=e.slice(r+1),e=e.slice(0,r)),e&&!t.hasOwnProperty(e))throw Error(`unknown type: `+e);return{type:e,name:n}})}kt.prototype=Ot.prototype={constructor:kt,on:function(e,t){var n=this._,r=At(e+``,n),i,a=-1,o=r.length;if(arguments.length<2){for(;++a<o;)if((i=(e=r[a]).type)&&(i=jt(n[i],e.name)))return i;return}if(t!=null&&typeof t!=`function`)throw Error(`invalid callback: `+t);for(;++a<o;)if(i=(e=r[a]).type)n[i]=Mt(n[i],e.name,t);else if(t==null)for(i in n)n[i]=Mt(n[i],e.name,null);return this},copy:function(){var e={},t=this._;for(var n in t)e[n]=t[n].slice();return new kt(e)},call:function(e,t){if((i=arguments.length-2)>0)for(var n=Array(i),r=0,i,a;r<i;++r)n[r]=arguments[r+2];if(!this._.hasOwnProperty(e))throw Error(`unknown type: `+e);for(a=this._[e],r=0,i=a.length;r<i;++r)a[r].value.apply(t,n)},apply:function(e,t,n){if(!this._.hasOwnProperty(e))throw Error(`unknown type: `+e);for(var r=this._[e],i=0,a=r.length;i<a;++i)r[i].value.apply(t,n)}};function jt(e,t){for(var n=0,r=e.length,i;n<r;++n)if((i=e[n]).name===t)return i.value}function Mt(e,t,n){for(var r=0,i=e.length;r<i;++r)if(e[r].name===t){e[r]=Dt,e=e.slice(0,r).concat(e.slice(r+1));break}return n!=null&&e.push({name:t,value:n}),e}var Nt={svg:`http://www.w3.org/2000/svg`,xhtml:`http://www.w3.org/1999/xhtml`,xlink:`http://www.w3.org/1999/xlink`,xml:`http://www.w3.org/XML/1998/namespace`,xmlns:`http://www.w3.org/2000/xmlns/`};function Pt(e){var t=e+=``,n=t.indexOf(`:`);return n>=0&&(t=e.slice(0,n))!==`xmlns`&&(e=e.slice(n+1)),Nt.hasOwnProperty(t)?{space:Nt[t],local:e}:e}function Ft(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===`http://www.w3.org/1999/xhtml`&&t.documentElement.namespaceURI===`http://www.w3.org/1999/xhtml`?t.createElement(e):t.createElementNS(n,e)}}function It(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function Lt(e){var t=Pt(e);return(t.local?It:Ft)(t)}function Rt(){}function zt(e){return e==null?Rt:function(){return this.querySelector(e)}}function Bt(e){typeof e!=`function`&&(e=zt(e));for(var t=this._groups,n=t.length,r=Array(n),i=0;i<n;++i)for(var a=t[i],o=a.length,s=r[i]=Array(o),c,l,u=0;u<o;++u)(c=a[u])&&(l=e.call(c,c.__data__,u,a))&&(`__data__`in c&&(l.__data__=c.__data__),s[u]=l);return new kr(r,this._parents)}function Vt(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function Ht(){return[]}function Ut(e){return e==null?Ht:function(){return this.querySelectorAll(e)}}function Wt(e){return function(){return Vt(e.apply(this,arguments))}}function Gt(e){e=typeof e==`function`?Wt(e):Ut(e);for(var t=this._groups,n=t.length,r=[],i=[],a=0;a<n;++a)for(var o=t[a],s=o.length,c,l=0;l<s;++l)(c=o[l])&&(r.push(e.call(c,c.__data__,l,o)),i.push(c));return new kr(r,i)}function Kt(e){return function(){return this.matches(e)}}function qt(e){return function(t){return t.matches(e)}}var Jt=Array.prototype.find;function Yt(e){return function(){return Jt.call(this.children,e)}}function Xt(){return this.firstElementChild}function Zt(e){return this.select(e==null?Xt:Yt(typeof e==`function`?e:qt(e)))}var Qt=Array.prototype.filter;function $t(){return Array.from(this.children)}function en(e){return function(){return Qt.call(this.children,e)}}function tn(e){return this.selectAll(e==null?$t:en(typeof e==`function`?e:qt(e)))}function nn(e){typeof e!=`function`&&(e=Kt(e));for(var t=this._groups,n=t.length,r=Array(n),i=0;i<n;++i)for(var a=t[i],o=a.length,s=r[i]=[],c,l=0;l<o;++l)(c=a[l])&&e.call(c,c.__data__,l,a)&&s.push(c);return new kr(r,this._parents)}function rn(e){return Array(e.length)}function an(){return new kr(this._enter||this._groups.map(rn),this._parents)}function on(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}on.prototype={constructor:on,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 sn(e){return function(){return e}}function cn(e,t,n,r,i,a){for(var o=0,s,c=t.length,l=a.length;o<l;++o)(s=t[o])?(s.__data__=a[o],r[o]=s):n[o]=new on(e,a[o]);for(;o<c;++o)(s=t[o])&&(i[o]=s)}function ln(e,t,n,r,i,a,o){var s,c,l=new Map,u=t.length,d=a.length,f=Array(u),p;for(s=0;s<u;++s)(c=t[s])&&(f[s]=p=o.call(c,c.__data__,s,t)+``,l.has(p)?i[s]=c:l.set(p,c));for(s=0;s<d;++s)p=o.call(e,a[s],s,a)+``,(c=l.get(p))?(r[s]=c,c.__data__=a[s],l.delete(p)):n[s]=new on(e,a[s]);for(s=0;s<u;++s)(c=t[s])&&l.get(f[s])===c&&(i[s]=c)}function un(e){return e.__data__}function dn(e,t){if(!arguments.length)return Array.from(this,un);var n=t?ln:cn,r=this._parents,i=this._groups;typeof e!=`function`&&(e=sn(e));for(var a=i.length,o=Array(a),s=Array(a),c=Array(a),l=0;l<a;++l){var u=r[l],d=i[l],f=d.length,p=fn(e.call(u,u&&u.__data__,l,r)),m=p.length,h=s[l]=Array(m),g=o[l]=Array(m);n(u,d,h,g,c[l]=Array(f),p,t);for(var _=0,v=0,y,b;_<m;++_)if(y=h[_]){for(_>=v&&(v=_+1);!(b=g[v])&&++v<m;);y._next=b||null}}return o=new kr(o,r),o._enter=s,o._exit=c,o}function fn(e){return typeof e==`object`&&`length`in e?e:Array.from(e)}function pn(){return new kr(this._exit||this._groups.map(rn),this._parents)}function mn(e,t,n){var r=this.enter(),i=this,a=this.exit();return typeof e==`function`?(r=e(r),r&&=r.selection()):r=r.append(e+``),t!=null&&(i=t(i),i&&=i.selection()),n==null?a.remove():n(a),r&&i?r.merge(i).order():i}function hn(e){for(var t=e.selection?e.selection():e,n=this._groups,r=t._groups,i=n.length,a=r.length,o=Math.min(i,a),s=Array(i),c=0;c<o;++c)for(var l=n[c],u=r[c],d=l.length,f=s[c]=Array(d),p,m=0;m<d;++m)(p=l[m]||u[m])&&(f[m]=p);for(;c<i;++c)s[c]=n[c];return new kr(s,this._parents)}function gn(){for(var e=this._groups,t=-1,n=e.length;++t<n;)for(var r=e[t],i=r.length-1,a=r[i],o;--i>=0;)(o=r[i])&&(a&&o.compareDocumentPosition(a)^4&&a.parentNode.insertBefore(o,a),a=o);return this}function _n(e){e||=vn;function t(t,n){return t&&n?e(t.__data__,n.__data__):!t-!n}for(var n=this._groups,r=n.length,i=Array(r),a=0;a<r;++a){for(var o=n[a],s=o.length,c=i[a]=Array(s),l,u=0;u<s;++u)(l=o[u])&&(c[u]=l);c.sort(t)}return new kr(i,this._parents).order()}function vn(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function yn(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function bn(){return Array.from(this)}function xn(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,a=r.length;i<a;++i){var o=r[i];if(o)return o}return null}function Sn(){let e=0;for(let t of this)++e;return e}function Cn(){return!this.node()}function wn(e){for(var t=this._groups,n=0,r=t.length;n<r;++n)for(var i=t[n],a=0,o=i.length,s;a<o;++a)(s=i[a])&&e.call(s,s.__data__,a,i);return this}function Tn(e){return function(){this.removeAttribute(e)}}function En(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Dn(e,t){return function(){this.setAttribute(e,t)}}function On(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function kn(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttribute(e):this.setAttribute(e,n)}}function An(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 jn(e,t){var n=Pt(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?En:Tn:typeof t==`function`?n.local?An:kn:n.local?On:Dn)(n,t))}function Mn(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function Nn(e){return function(){this.style.removeProperty(e)}}function Pn(e,t,n){return function(){this.style.setProperty(e,t,n)}}function Fn(e,t,n){return function(){var r=t.apply(this,arguments);r==null?this.style.removeProperty(e):this.style.setProperty(e,r,n)}}function In(e,t,n){return arguments.length>1?this.each((t==null?Nn:typeof t==`function`?Fn:Pn)(e,t,n??``)):Ln(this.node(),e)}function Ln(e,t){return e.style.getPropertyValue(t)||Mn(e).getComputedStyle(e,null).getPropertyValue(t)}function Rn(e){return function(){delete this[e]}}function zn(e,t){return function(){this[e]=t}}function Bn(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function Vn(e,t){return arguments.length>1?this.each((t==null?Rn:typeof t==`function`?Bn:zn)(e,t)):this.node()[e]}function Hn(e){return e.trim().split(/^|\s+/)}function Un(e){return e.classList||new Wn(e)}function Wn(e){this._node=e,this._names=Hn(e.getAttribute(`class`)||``)}Wn.prototype={add:function(e){this._names.indexOf(e)<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 Gn(e,t){for(var n=Un(e),r=-1,i=t.length;++r<i;)n.add(t[r])}function Kn(e,t){for(var n=Un(e),r=-1,i=t.length;++r<i;)n.remove(t[r])}function qn(e){return function(){Gn(this,e)}}function Jn(e){return function(){Kn(this,e)}}function Yn(e,t){return function(){(t.apply(this,arguments)?Gn:Kn)(this,e)}}function Xn(e,t){var n=Hn(e+``);if(arguments.length<2){for(var r=Un(this.node()),i=-1,a=n.length;++i<a;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof t==`function`?Yn:t?qn:Jn)(n,t))}function Zn(){this.textContent=``}function Qn(e){return function(){this.textContent=e}}function $n(e){return function(){var t=e.apply(this,arguments);this.textContent=t??``}}function er(e){return arguments.length?this.each(e==null?Zn:(typeof e==`function`?$n:Qn)(e)):this.node().textContent}function tr(){this.innerHTML=``}function nr(e){return function(){this.innerHTML=e}}function rr(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??``}}function ir(e){return arguments.length?this.each(e==null?tr:(typeof e==`function`?rr:nr)(e)):this.node().innerHTML}function ar(){this.nextSibling&&this.parentNode.appendChild(this)}function or(){return this.each(ar)}function sr(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function cr(){return this.each(sr)}function lr(e){var t=typeof e==`function`?e:Lt(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function ur(){return null}function dr(e,t){var n=typeof e==`function`?e:Lt(e),r=t==null?ur:typeof t==`function`?t:zt(t);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function fr(){var e=this.parentNode;e&&e.removeChild(this)}function pr(){return this.each(fr)}function mr(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function hr(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function gr(e){return this.select(e?hr:mr)}function _r(e){return arguments.length?this.property(`__data__`,e):this.node().__data__}function vr(e){return function(t){e.call(this,t,this.__data__)}}function yr(e){return e.trim().split(/^|\s+/).map(function(e){var t=``,n=e.indexOf(`.`);return n>=0&&(t=e.slice(n+1),e=e.slice(0,n)),{type:e,name:t}})}function br(e){return function(){var t=this.__on;if(t){for(var n=0,r=-1,i=t.length,a;n<i;++n)a=t[n],(!e.type||a.type===e.type)&&a.name===e.name?this.removeEventListener(a.type,a.listener,a.options):t[++r]=a;++r?t.length=r:delete this.__on}}}function xr(e,t,n){return function(){var r=this.__on,i,a=vr(t);if(r){for(var o=0,s=r.length;o<s;++o)if((i=r[o]).type===e.type&&i.name===e.name){this.removeEventListener(i.type,i.listener,i.options),this.addEventListener(i.type,i.listener=a,i.options=n),i.value=t;return}}this.addEventListener(e.type,a,n),i={type:e.type,name:e.name,value:t,listener:a,options:n},r?r.push(i):this.__on=[i]}}function Sr(e,t,n){var r=yr(e+``),i,a=r.length,o;if(arguments.length<2){var s=this.node().__on;if(s){for(var c=0,l=s.length,u;c<l;++c)for(i=0,u=s[c];i<a;++i)if((o=r[i]).type===u.type&&o.name===u.name)return u.value}return}for(s=t?xr:br,i=0;i<a;++i)this.each(s(r[i],t,n));return this}function Cr(e,t,n){var r=Mn(e),i=r.CustomEvent;typeof i==`function`?i=new i(t,n):(i=r.document.createEvent(`Event`),n?(i.initEvent(t,n.bubbles,n.cancelable),i.detail=n.detail):i.initEvent(t,!1,!1)),e.dispatchEvent(i)}function wr(e,t){return function(){return Cr(this,e,t)}}function Tr(e,t){return function(){return Cr(this,e,t.apply(this,arguments))}}function Er(e,t){return this.each((typeof t==`function`?Tr:wr)(e,t))}function*Dr(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,a=r.length,o;i<a;++i)(o=r[i])&&(yield o)}var Or=[null];function kr(e,t){this._groups=e,this._parents=t}function Ar(){return new kr([[document.documentElement]],Or)}function jr(){return this}kr.prototype=Ar.prototype={constructor:kr,select:Bt,selectAll:Gt,selectChild:Zt,selectChildren:tn,filter:nn,data:dn,enter:an,exit:pn,join:mn,merge:hn,selection:jr,order:gn,sort:_n,call:yn,nodes:bn,node:xn,size:Sn,empty:Cn,each:wn,attr:jn,style:In,property:Vn,classed:Xn,text:er,html:ir,raise:or,lower:cr,append:lr,insert:dr,remove:pr,clone:gr,datum:_r,on:Sr,dispatch:Er,[Symbol.iterator]:Dr};function Mr(e){return typeof e==`string`?new kr([[document.querySelector(e)]],[document.documentElement]):new kr([[e]],Or)}function Nr(e){let t;for(;t=e.sourceEvent;)e=t;return e}function Pr(e,t){if(e=Nr(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 i=t.getBoundingClientRect();return[e.clientX-i.left-t.clientLeft,e.clientY-i.top-t.clientTop]}}return[e.pageX,e.pageY]}var Fr={passive:!1},Ir={capture:!0,passive:!1};function Lr(e){e.stopImmediatePropagation()}function Rr(e){e.preventDefault(),e.stopImmediatePropagation()}function zr(e){var t=e.document.documentElement,n=Mr(e).on(`dragstart.drag`,Rr,Ir);`onselectstart`in t?n.on(`selectstart.drag`,Rr,Ir):(t.__noselect=t.style.MozUserSelect,t.style.MozUserSelect=`none`)}function Br(e,t){var n=e.document.documentElement,r=Mr(e).on(`dragstart.drag`,null);t&&(r.on(`click.drag`,Rr,Ir),setTimeout(function(){r.on(`click.drag`,null)},0)),`onselectstart`in n?r.on(`selectstart.drag`,null):(n.style.MozUserSelect=n.__noselect,delete n.__noselect)}var Vr=e=>()=>e;function Hr(e,{sourceEvent:t,subject:n,target:r,identifier:i,active:a,x:o,y:s,dx:c,dy:l,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:i,enumerable:!0,configurable:!0},active:{value:a,enumerable:!0,configurable:!0},x:{value:o,enumerable:!0,configurable:!0},y:{value:s,enumerable:!0,configurable:!0},dx:{value:c,enumerable:!0,configurable:!0},dy:{value:l,enumerable:!0,configurable:!0},_:{value:u}})}Hr.prototype.on=function(){var e=this._.on.apply(this._,arguments);return e===this._?this:e};function Ur(e){return!e.ctrlKey&&!e.button}function Wr(){return this.parentNode}function Gr(e,t){return t??{x:e.x,y:e.y}}function Kr(){return navigator.maxTouchPoints||`ontouchstart`in this}function qr(){var e=Ur,t=Wr,n=Gr,r=Kr,i={},a=Ot(`start`,`drag`,`end`),o=0,s,c,l,u,d=0;function f(e){e.on(`mousedown.drag`,p).filter(r).on(`touchstart.drag`,g).on(`touchmove.drag`,_,Fr).on(`touchend.drag touchcancel.drag`,v).style(`touch-action`,`none`).style(`-webkit-tap-highlight-color`,`rgba(0,0,0,0)`)}function p(n,r){if(!(u||!e.call(this,n,r))){var i=y(this,t.call(this,n,r),n,r,`mouse`);i&&(Mr(n.view).on(`mousemove.drag`,m,Ir).on(`mouseup.drag`,h,Ir),zr(n.view),Lr(n),l=!1,s=n.clientX,c=n.clientY,i(`start`,n))}}function m(e){if(Rr(e),!l){var t=e.clientX-s,n=e.clientY-c;l=t*t+n*n>d}i.mouse(`drag`,e)}function h(e){Mr(e.view).on(`mousemove.drag mouseup.drag`,null),Br(e.view,l),Rr(e),i.mouse(`end`,e)}function g(n,r){if(e.call(this,n,r)){var i=n.changedTouches,a=t.call(this,n,r),o=i.length,s,c;for(s=0;s<o;++s)(c=y(this,a,n,r,i[s].identifier,i[s]))&&(Lr(n),c(`start`,n,i[s]))}}function _(e){var t=e.changedTouches,n=t.length,r,a;for(r=0;r<n;++r)(a=i[t[r].identifier])&&(Rr(e),a(`drag`,e,t[r]))}function v(e){var t=e.changedTouches,n=t.length,r,a;for(u&&clearTimeout(u),u=setTimeout(function(){u=null},500),r=0;r<n;++r)(a=i[t[r].identifier])&&(Lr(e),a(`end`,e,t[r]))}function y(e,t,r,s,c,l){var u=a.copy(),d=Pr(l||r,t),p,m,h;if((h=n.call(e,new Hr(`beforestart`,{sourceEvent:r,target:f,identifier:c,active:o,x:d[0],y:d[1],dx:0,dy:0,dispatch:u}),s))!=null)return p=h.x-d[0]||0,m=h.y-d[1]||0,function n(r,a,l){var g=d,_;switch(r){case`start`:i[c]=n,_=o++;break;case`end`:delete i[c],--o;case`drag`:d=Pr(l||a,t),_=o}u.call(r,e,new Hr(r,{sourceEvent:a,subject:h,target:f,identifier:c,active:_,x:d[0]+p,y:d[1]+m,dx:d[0]-g[0],dy:d[1]-g[1],dispatch:u}),s)}}return f.filter=function(t){return arguments.length?(e=typeof t==`function`?t:Vr(!!t),f):e},f.container=function(e){return arguments.length?(t=typeof e==`function`?e:Vr(e),f):t},f.subject=function(e){return arguments.length?(n=typeof e==`function`?e:Vr(e),f):n},f.touchable=function(e){return arguments.length?(r=typeof e==`function`?e:Vr(!!e),f):r},f.on=function(){var e=a.on.apply(a,arguments);return e===a?f:e},f.clickDistance=function(e){return arguments.length?(d=(e=+e)*e,f):Math.sqrt(d)},f}function Jr(e,t,n){e.prototype=t.prototype=n,n.constructor=e}function Yr(e,t){var n=Object.create(e.prototype);for(var r in t)n[r]=t[r];return n}function Xr(){}var Zr=.7,Qr=1/Zr,$r=`\\s*([+-]?\\d+)\\s*`,ei=`\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*`,ti=`\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*`,ni=/^#([0-9a-f]{3,8})$/,ri=RegExp(`^rgb\\(${$r},${$r},${$r}\\)$`),ii=RegExp(`^rgb\\(${ti},${ti},${ti}\\)$`),ai=RegExp(`^rgba\\(${$r},${$r},${$r},${ei}\\)$`),oi=RegExp(`^rgba\\(${ti},${ti},${ti},${ei}\\)$`),si=RegExp(`^hsl\\(${ei},${ti},${ti}\\)$`),ci=RegExp(`^hsla\\(${ei},${ti},${ti},${ei}\\)$`),li={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};Jr(Xr,mi,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:ui,formatHex:ui,formatHex8:di,formatHsl:fi,formatRgb:pi,toString:pi});function ui(){return this.rgb().formatHex()}function di(){return this.rgb().formatHex8()}function fi(){return Di(this).formatHsl()}function pi(){return this.rgb().formatRgb()}function mi(e){var t,n;return e=(e+``).trim().toLowerCase(),(t=ni.exec(e))?(n=t[1].length,t=parseInt(t[1],16),n===6?hi(t):n===3?new yi(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?gi(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?gi(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=ri.exec(e))?new yi(t[1],t[2],t[3],1):(t=ii.exec(e))?new yi(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=ai.exec(e))?gi(t[1],t[2],t[3],t[4]):(t=oi.exec(e))?gi(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=si.exec(e))?Ei(t[1],t[2]/100,t[3]/100,1):(t=ci.exec(e))?Ei(t[1],t[2]/100,t[3]/100,t[4]):li.hasOwnProperty(e)?hi(li[e]):e===`transparent`?new yi(NaN,NaN,NaN,0):null}function hi(e){return new yi(e>>16&255,e>>8&255,e&255,1)}function gi(e,t,n,r){return r<=0&&(e=t=n=NaN),new yi(e,t,n,r)}function _i(e){return e instanceof Xr||(e=mi(e)),e?(e=e.rgb(),new yi(e.r,e.g,e.b,e.opacity)):new yi}function vi(e,t,n,r){return arguments.length===1?_i(e):new yi(e,t,n,r??1)}function yi(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}Jr(yi,vi,Yr(Xr,{brighter(e){return e=e==null?Qr:Qr**+e,new yi(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?Zr:Zr**+e,new yi(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new yi(wi(this.r),wi(this.g),wi(this.b),Ci(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:bi,formatHex:bi,formatHex8:xi,formatRgb:Si,toString:Si}));function bi(){return`#${Ti(this.r)}${Ti(this.g)}${Ti(this.b)}`}function xi(){return`#${Ti(this.r)}${Ti(this.g)}${Ti(this.b)}${Ti((isNaN(this.opacity)?1:this.opacity)*255)}`}function Si(){let e=Ci(this.opacity);return`${e===1?`rgb(`:`rgba(`}${wi(this.r)}, ${wi(this.g)}, ${wi(this.b)}${e===1?`)`:`, ${e})`}`}function Ci(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function wi(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Ti(e){return e=wi(e),(e<16?`0`:``)+e.toString(16)}function Ei(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new ki(e,t,n,r)}function Di(e){if(e instanceof ki)return new ki(e.h,e.s,e.l,e.opacity);if(e instanceof Xr||(e=mi(e)),!e)return new ki;if(e instanceof ki)return e;e=e.rgb();var t=e.r/255,n=e.g/255,r=e.b/255,i=Math.min(t,n,r),a=Math.max(t,n,r),o=NaN,s=a-i,c=(a+i)/2;return s?(o=t===a?(n-r)/s+(n<r)*6:n===a?(r-t)/s+2:(t-n)/s+4,s/=c<.5?a+i:2-a-i,o*=60):s=c>0&&c<1?0:o,new ki(o,s,c,e.opacity)}function Oi(e,t,n,r){return arguments.length===1?Di(e):new ki(e,t,n,r??1)}function ki(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}Jr(ki,Oi,Yr(Xr,{brighter(e){return e=e==null?Qr:Qr**+e,new ki(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?Zr:Zr**+e,new ki(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,i=2*n-r;return new yi(Mi(e>=240?e-240:e+120,i,r),Mi(e,i,r),Mi(e<120?e+240:e-120,i,r),this.opacity)},clamp(){return new ki(Ai(this.h),ji(this.s),ji(this.l),Ci(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(){let e=Ci(this.opacity);return`${e===1?`hsl(`:`hsla(`}${Ai(this.h)}, ${ji(this.s)*100}%, ${ji(this.l)*100}%${e===1?`)`:`, ${e})`}`}}));function Ai(e){return e=(e||0)%360,e<0?e+360:e}function ji(e){return Math.max(0,Math.min(1,e||0))}function Mi(e,t,n){return(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)*255}var Ni=e=>()=>e;function Pi(e,t){return function(n){return e+n*t}}function Fi(e,t,n){return e**=+n,t=t**+n-e,n=1/n,function(r){return(e+r*t)**+n}}function Ii(e){return(e=+e)==1?Li:function(t,n){return n-t?Fi(t,n,e):Ni(isNaN(t)?n:t)}}function Li(e,t){var n=t-e;return n?Pi(e,n):Ni(isNaN(e)?t:e)}var Ri=(function e(t){var n=Ii(t);function r(e,t){var r=n((e=vi(e)).r,(t=vi(t)).r),i=n(e.g,t.g),a=n(e.b,t.b),o=Li(e.opacity,t.opacity);return function(t){return e.r=r(t),e.g=i(t),e.b=a(t),e.opacity=o(t),e+``}}return r.gamma=e,r})(1);function zi(e,t){t||=[];var n=e?Math.min(t.length,e.length):0,r=t.slice(),i;return function(a){for(i=0;i<n;++i)r[i]=e[i]*(1-a)+t[i]*a;return r}}function Bi(e){return ArrayBuffer.isView(e)&&!(e instanceof DataView)}function Vi(e,t){var n=t?t.length:0,r=e?Math.min(n,e.length):0,i=Array(r),a=Array(n),o;for(o=0;o<r;++o)i[o]=Xi(e[o],t[o]);for(;o<n;++o)a[o]=t[o];return function(e){for(o=0;o<r;++o)a[o]=i[o](e);return a}}function Hi(e,t){var n=new Date;return e=+e,t=+t,function(r){return n.setTime(e*(1-r)+t*r),n}}function Ui(e,t){return e=+e,t=+t,function(n){return e*(1-n)+t*n}}function Wi(e,t){var n={},r={},i;for(i in(typeof e!=`object`||!e)&&(e={}),(typeof t!=`object`||!t)&&(t={}),t)i in e?n[i]=Xi(e[i],t[i]):r[i]=t[i];return function(e){for(i in n)r[i]=n[i](e);return r}}var Gi=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,Ki=new RegExp(Gi.source,`g`);function qi(e){return function(){return e}}function Ji(e){return function(t){return e(t)+``}}function Yi(e,t){var n=Gi.lastIndex=Ki.lastIndex=0,r,i,a,o=-1,s=[],c=[];for(e+=``,t+=``;(r=Gi.exec(e))&&(i=Ki.exec(t));)(a=i.index)>n&&(a=t.slice(n,a),s[o]?s[o]+=a:s[++o]=a),(r=r[0])===(i=i[0])?s[o]?s[o]+=i:s[++o]=i:(s[++o]=null,c.push({i:o,x:Ui(r,i)})),n=Ki.lastIndex;return n<t.length&&(a=t.slice(n),s[o]?s[o]+=a:s[++o]=a),s.length<2?c[0]?Ji(c[0].x):qi(t):(t=c.length,function(e){for(var n=0,r;n<t;++n)s[(r=c[n]).i]=r.x(e);return s.join(``)})}function Xi(e,t){var n=typeof t,r;return t==null||n===`boolean`?Ni(t):(n===`number`?Ui:n===`string`?(r=mi(t))?(t=r,Ri):Yi:t instanceof mi?Ri:t instanceof Date?Hi:Bi(t)?zi:Array.isArray(t)?Vi:typeof t.valueOf!=`function`&&typeof t.toString!=`function`||isNaN(t)?Wi:Ui)(e,t)}var Zi=180/Math.PI,Qi={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function $i(e,t,n,r,i,a){var o,s,c;return(o=Math.sqrt(e*e+t*t))&&(e/=o,t/=o),(c=e*n+t*r)&&(n-=e*c,r-=t*c),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,c/=s),e*r<t*n&&(e=-e,t=-t,c=-c,o=-o),{translateX:i,translateY:a,rotate:Math.atan2(t,e)*Zi,skewX:Math.atan(c)*Zi,scaleX:o,scaleY:s}}var ea;function ta(e){let t=new(typeof DOMMatrix==`function`?DOMMatrix:WebKitCSSMatrix)(e+``);return t.isIdentity?Qi:$i(t.a,t.b,t.c,t.d,t.e,t.f)}function na(e){return e==null||(ea||=document.createElementNS(`http://www.w3.org/2000/svg`,`g`),ea.setAttribute(`transform`,e),!(e=ea.transform.baseVal.consolidate()))?Qi:(e=e.matrix,$i(e.a,e.b,e.c,e.d,e.e,e.f))}function ra(e,t,n,r){function i(e){return e.length?e.pop()+` `:``}function a(e,r,i,a,o,s){if(e!==i||r!==a){var c=o.push(`translate(`,null,t,null,n);s.push({i:c-4,x:Ui(e,i)},{i:c-2,x:Ui(r,a)})}else(i||a)&&o.push(`translate(`+i+t+a+n)}function o(e,t,n,a){e===t?t&&n.push(i(n)+`rotate(`+t+r):(e-t>180?t+=360:t-e>180&&(e+=360),a.push({i:n.push(i(n)+`rotate(`,null,r)-2,x:Ui(e,t)}))}function s(e,t,n,a){e===t?t&&n.push(i(n)+`skewX(`+t+r):a.push({i:n.push(i(n)+`skewX(`,null,r)-2,x:Ui(e,t)})}function c(e,t,n,r,a,o){if(e!==n||t!==r){var s=a.push(i(a)+`scale(`,null,`,`,null,`)`);o.push({i:s-4,x:Ui(e,n)},{i:s-2,x:Ui(t,r)})}else(n!==1||r!==1)&&a.push(i(a)+`scale(`+n+`,`+r+`)`)}return function(t,n){var r=[],i=[];return t=e(t),n=e(n),a(t.translateX,t.translateY,n.translateX,n.translateY,r,i),o(t.rotate,n.rotate,r,i),s(t.skewX,n.skewX,r,i),c(t.scaleX,t.scaleY,n.scaleX,n.scaleY,r,i),t=n=null,function(e){for(var t=-1,n=i.length,a;++t<n;)r[(a=i[t]).i]=a.x(e);return r.join(``)}}}var ia=ra(ta,`px, `,`px)`,`deg)`),aa=ra(na,`, `,`)`,`)`),oa=1e-12;function sa(e){return((e=Math.exp(e))+1/e)/2}function ca(e){return((e=Math.exp(e))-1/e)/2}function la(e){return((e=Math.exp(2*e))-1)/(e+1)}var ua=(function e(t,n,r){function i(e,i){var a=e[0],o=e[1],s=e[2],c=i[0],l=i[1],u=i[2],d=c-a,f=l-o,p=d*d+f*f,m,h;if(p<oa)h=Math.log(u/s)/t,m=function(e){return[a+e*d,o+e*f,s*Math.exp(t*e*h)]};else{var g=Math.sqrt(p),_=(u*u-s*s+r*p)/(2*s*n*g),v=(u*u-s*s-r*p)/(2*u*n*g),y=Math.log(Math.sqrt(_*_+1)-_);h=(Math.log(Math.sqrt(v*v+1)-v)-y)/t,m=function(e){var r=e*h,i=sa(y),c=s/(n*g)*(i*la(t*r+y)-ca(y));return[a+c*d,o+c*f,s*i/sa(t*r+y)]}}return m.duration=h*1e3*t/Math.SQRT2,m}return i.rho=function(t){var n=Math.max(.001,+t),r=n*n;return e(n,r,r*r)},i})(Math.SQRT2,2,4),da=0,fa=0,pa=0,ma=1e3,ha,ga,_a=0,va=0,ya=0,ba=typeof performance==`object`&&performance.now?performance:Date,xa=typeof window==`object`&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function Sa(){return va||=(xa(Ca),ba.now()+ya)}function Ca(){va=0}function wa(){this._call=this._time=this._next=null}wa.prototype=Ta.prototype={constructor:wa,restart:function(e,t,n){if(typeof e!=`function`)throw TypeError(`callback is not a function`);n=(n==null?Sa():+n)+(t==null?0:+t),!this._next&&ga!==this&&(ga?ga._next=this:ha=this,ga=this),this._call=e,this._time=n,Aa()},stop:function(){this._call&&(this._call=null,this._time=1/0,Aa())}};function Ta(e,t,n){var r=new wa;return r.restart(e,t,n),r}function Ea(){Sa(),++da;for(var e=ha,t;e;)(t=va-e._time)>=0&&e._call.call(void 0,t),e=e._next;--da}function Da(){va=(_a=ba.now())+ya,da=fa=0;try{Ea()}finally{da=0,ka(),va=0}}function Oa(){var e=ba.now(),t=e-_a;t>ma&&(ya-=t,_a=e)}function ka(){for(var e,t=ha,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:ha=n);ga=e,Aa(r)}function Aa(e){da||(fa&&=clearTimeout(fa),e-va>24?(e<1/0&&(fa=setTimeout(Da,e-ba.now()-ya)),pa&&=clearInterval(pa)):(pa||=(_a=ba.now(),setInterval(Oa,ma)),da=1,xa(Da)))}function ja(e,t,n){var r=new wa;return t=t==null?0:+t,r.restart(n=>{r.stop(),e(n+t)},t,n),r}var Ma=Ot(`start`,`end`,`cancel`,`interrupt`),Na=[];function Pa(e,t,n,r,i,a){var o=e.__transition;if(!o)e.__transition={};else if(n in o)return;Ra(e,n,{name:t,index:r,group:i,on:Ma,tween:Na,time:a.time,delay:a.delay,duration:a.duration,ease:a.ease,timer:null,state:0})}function Fa(e,t){var n=La(e,t);if(n.state>0)throw Error(`too late; already scheduled`);return n}function Ia(e,t){var n=La(e,t);if(n.state>3)throw Error(`too late; already running`);return n}function La(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw Error(`transition not found`);return n}function Ra(e,t,n){var r=e.__transition,i;r[t]=n,n.timer=Ta(a,0,n.time);function a(e){n.state=1,n.timer.restart(o,n.delay,n.time),n.delay<=e&&o(e-n.delay)}function o(a){var l,u,d,f;if(n.state!==1)return c();for(l in r)if(f=r[l],f.name===n.name){if(f.state===3)return ja(o);f.state===4?(f.state=6,f.timer.stop(),f.on.call(`interrupt`,e,e.__data__,f.index,f.group),delete r[l]):+l<t&&(f.state=6,f.timer.stop(),f.on.call(`cancel`,e,e.__data__,f.index,f.group),delete r[l])}if(ja(function(){n.state===3&&(n.state=4,n.timer.restart(s,n.delay,n.time),s(a))}),n.state=2,n.on.call(`start`,e,e.__data__,n.index,n.group),n.state===2){for(n.state=3,i=Array(d=n.tween.length),l=0,u=-1;l<d;++l)(f=n.tween[l].value.call(e,e.__data__,n.index,n.group))&&(i[++u]=f);i.length=u+1}}function s(t){for(var r=t<n.duration?n.ease.call(null,t/n.duration):(n.timer.restart(c),n.state=5,1),a=-1,o=i.length;++a<o;)i[a].call(e,r);n.state===5&&(n.on.call(`end`,e,e.__data__,n.index,n.group),c())}function c(){for(var i in n.state=6,n.timer.stop(),delete r[t],r)return;delete e.__transition}}function za(e,t){var n=e.__transition,r,i,a=!0,o;if(n){for(o in t=t==null?null:t+``,n){if((r=n[o]).name!==t){a=!1;continue}i=r.state>2&&r.state<5,r.state=6,r.timer.stop(),r.on.call(i?`interrupt`:`cancel`,e,e.__data__,r.index,r.group),delete n[o]}a&&delete e.__transition}}function Ba(e){return this.each(function(){za(this,e)})}function Va(e,t){var n,r;return function(){var i=Ia(this,e),a=i.tween;if(a!==n){r=n=a;for(var o=0,s=r.length;o<s;++o)if(r[o].name===t){r=r.slice(),r.splice(o,1);break}}i.tween=r}}function Ha(e,t,n){var r,i;if(typeof n!=`function`)throw Error();return function(){var a=Ia(this,e),o=a.tween;if(o!==r){i=(r=o).slice();for(var s={name:t,value:n},c=0,l=i.length;c<l;++c)if(i[c].name===t){i[c]=s;break}c===l&&i.push(s)}a.tween=i}}function Ua(e,t){var n=this._id;if(e+=``,arguments.length<2){for(var r=La(this.node(),n).tween,i=0,a=r.length,o;i<a;++i)if((o=r[i]).name===e)return o.value;return null}return this.each((t==null?Va:Ha)(n,e,t))}function Wa(e,t,n){var r=e._id;return e.each(function(){var e=Ia(this,r);(e.value||={})[t]=n.apply(this,arguments)}),function(e){return La(e,r).value[t]}}function Ga(e,t){var n;return(typeof t==`number`?Ui:t instanceof mi?Ri:(n=mi(t))?(t=n,Ri):Yi)(e,t)}function Ka(e){return function(){this.removeAttribute(e)}}function qa(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Ja(e,t,n){var r,i=n+``,a;return function(){var o=this.getAttribute(e);return o===i?null:o===r?a:a=t(r=o,n)}}function Ya(e,t,n){var r,i=n+``,a;return function(){var o=this.getAttributeNS(e.space,e.local);return o===i?null:o===r?a:a=t(r=o,n)}}function Xa(e,t,n){var r,i,a;return function(){var o,s=n(this),c;return s==null?void this.removeAttribute(e):(o=this.getAttribute(e),c=s+``,o===c?null:o===r&&c===i?a:(i=c,a=t(r=o,s)))}}function Za(e,t,n){var r,i,a;return function(){var o,s=n(this),c;return s==null?void this.removeAttributeNS(e.space,e.local):(o=this.getAttributeNS(e.space,e.local),c=s+``,o===c?null:o===r&&c===i?a:(i=c,a=t(r=o,s)))}}function Qa(e,t){var n=Pt(e),r=n===`transform`?aa:Ga;return this.attrTween(e,typeof t==`function`?(n.local?Za:Xa)(n,r,Wa(this,`attr.`+e,t)):t==null?(n.local?qa:Ka)(n):(n.local?Ya:Ja)(n,r,t))}function $a(e,t){return function(n){this.setAttribute(e,t.call(this,n))}}function eo(e,t){return function(n){this.setAttributeNS(e.space,e.local,t.call(this,n))}}function to(e,t){var n,r;function i(){var i=t.apply(this,arguments);return i!==r&&(n=(r=i)&&eo(e,i)),n}return i._value=t,i}function no(e,t){var n,r;function i(){var i=t.apply(this,arguments);return i!==r&&(n=(r=i)&&$a(e,i)),n}return i._value=t,i}function ro(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 Error();var r=Pt(e);return this.tween(n,(r.local?to:no)(r,t))}function io(e,t){return function(){Fa(this,e).delay=+t.apply(this,arguments)}}function ao(e,t){return t=+t,function(){Fa(this,e).delay=t}}function oo(e){var t=this._id;return arguments.length?this.each((typeof e==`function`?io:ao)(t,e)):La(this.node(),t).delay}function so(e,t){return function(){Ia(this,e).duration=+t.apply(this,arguments)}}function co(e,t){return t=+t,function(){Ia(this,e).duration=t}}function lo(e){var t=this._id;return arguments.length?this.each((typeof e==`function`?so:co)(t,e)):La(this.node(),t).duration}function uo(e,t){if(typeof t!=`function`)throw Error();return function(){Ia(this,e).ease=t}}function fo(e){var t=this._id;return arguments.length?this.each(uo(t,e)):La(this.node(),t).ease}function po(e,t){return function(){var n=t.apply(this,arguments);if(typeof n!=`function`)throw Error();Ia(this,e).ease=n}}function mo(e){if(typeof e!=`function`)throw Error();return this.each(po(this._id,e))}function ho(e){typeof e!=`function`&&(e=Kt(e));for(var t=this._groups,n=t.length,r=Array(n),i=0;i<n;++i)for(var a=t[i],o=a.length,s=r[i]=[],c,l=0;l<o;++l)(c=a[l])&&e.call(c,c.__data__,l,a)&&s.push(c);return new Wo(r,this._parents,this._name,this._id)}function go(e){if(e._id!==this._id)throw Error();for(var t=this._groups,n=e._groups,r=t.length,i=n.length,a=Math.min(r,i),o=Array(r),s=0;s<a;++s)for(var c=t[s],l=n[s],u=c.length,d=o[s]=Array(u),f,p=0;p<u;++p)(f=c[p]||l[p])&&(d[p]=f);for(;s<r;++s)o[s]=t[s];return new Wo(o,this._parents,this._name,this._id)}function _o(e){return(e+``).trim().split(/^|\s+/).every(function(e){var t=e.indexOf(`.`);return t>=0&&(e=e.slice(0,t)),!e||e===`start`})}function vo(e,t,n){var r,i,a=_o(t)?Fa:Ia;return function(){var o=a(this,e),s=o.on;s!==r&&(i=(r=s).copy()).on(t,n),o.on=i}}function yo(e,t){var n=this._id;return arguments.length<2?La(this.node(),n).on.on(e):this.each(vo(n,e,t))}function bo(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function xo(){return this.on(`end.remove`,bo(this._id))}function So(e){var t=this._name,n=this._id;typeof e!=`function`&&(e=zt(e));for(var r=this._groups,i=r.length,a=Array(i),o=0;o<i;++o)for(var s=r[o],c=s.length,l=a[o]=Array(c),u,d,f=0;f<c;++f)(u=s[f])&&(d=e.call(u,u.__data__,f,s))&&(`__data__`in u&&(d.__data__=u.__data__),l[f]=d,Pa(l[f],t,n,f,l,La(u,n)));return new Wo(a,this._parents,t,n)}function Co(e){var t=this._name,n=this._id;typeof e!=`function`&&(e=Ut(e));for(var r=this._groups,i=r.length,a=[],o=[],s=0;s<i;++s)for(var c=r[s],l=c.length,u,d=0;d<l;++d)if(u=c[d]){for(var f=e.call(u,u.__data__,d,c),p,m=La(u,n),h=0,g=f.length;h<g;++h)(p=f[h])&&Pa(p,t,n,h,f,m);a.push(f),o.push(u)}return new Wo(a,o,t,n)}var wo=Ar.prototype.constructor;function To(){return new wo(this._groups,this._parents)}function Eo(e,t){var n,r,i;return function(){var a=Ln(this,e),o=(this.style.removeProperty(e),Ln(this,e));return a===o?null:a===n&&o===r?i:i=t(n=a,r=o)}}function Do(e){return function(){this.style.removeProperty(e)}}function Oo(e,t,n){var r,i=n+``,a;return function(){var o=Ln(this,e);return o===i?null:o===r?a:a=t(r=o,n)}}function ko(e,t,n){var r,i,a;return function(){var o=Ln(this,e),s=n(this),c=s+``;return s??(c=s=(this.style.removeProperty(e),Ln(this,e))),o===c?null:o===r&&c===i?a:(i=c,a=t(r=o,s))}}function Ao(e,t){var n,r,i,a=`style.`+t,o=`end.`+a,s;return function(){var c=Ia(this,e),l=c.on,u=c.value[a]==null?s||=Do(t):void 0;(l!==n||i!==u)&&(r=(n=l).copy()).on(o,i=u),c.on=r}}function jo(e,t,n){var r=(e+=``)==`transform`?ia:Ga;return t==null?this.styleTween(e,Eo(e,r)).on(`end.style.`+e,Do(e)):typeof t==`function`?this.styleTween(e,ko(e,r,Wa(this,`style.`+e,t))).each(Ao(this._id,e)):this.styleTween(e,Oo(e,r,t),n).on(`end.style.`+e,null)}function Mo(e,t,n){return function(r){this.style.setProperty(e,t.call(this,r),n)}}function No(e,t,n){var r,i;function a(){var a=t.apply(this,arguments);return a!==i&&(r=(i=a)&&Mo(e,a,n)),r}return a._value=t,a}function Po(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 Error();return this.tween(r,No(e,t,n??``))}function Fo(e){return function(){this.textContent=e}}function Io(e){return function(){var t=e(this);this.textContent=t??``}}function Lo(e){return this.tween(`text`,typeof e==`function`?Io(Wa(this,`text`,e)):Fo(e==null?``:e+``))}function Ro(e){return function(t){this.textContent=e.call(this,t)}}function zo(e){var t,n;function r(){var r=e.apply(this,arguments);return r!==n&&(t=(n=r)&&Ro(r)),t}return r._value=e,r}function Bo(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 Error();return this.tween(t,zo(e))}function Vo(){for(var e=this._name,t=this._id,n=Go(),r=this._groups,i=r.length,a=0;a<i;++a)for(var o=r[a],s=o.length,c,l=0;l<s;++l)if(c=o[l]){var u=La(c,t);Pa(c,e,n,l,o,{time:u.time+u.delay+u.duration,delay:0,duration:u.duration,ease:u.ease})}return new Wo(r,this._parents,e,n)}function Ho(){var e,t,n=this,r=n._id,i=n.size();return new Promise(function(a,o){var s={value:o},c={value:function(){--i===0&&a()}};n.each(function(){var n=Ia(this,r),i=n.on;i!==e&&(t=(e=i).copy(),t._.cancel.push(s),t._.interrupt.push(s),t._.end.push(c)),n.on=t}),i===0&&a()})}var Uo=0;function Wo(e,t,n,r){this._groups=e,this._parents=t,this._name=n,this._id=r}function Go(){return++Uo}var Ko=Ar.prototype;Wo.prototype={constructor:Wo,select:So,selectAll:Co,selectChild:Ko.selectChild,selectChildren:Ko.selectChildren,filter:ho,merge:go,selection:To,transition:Vo,call:Ko.call,nodes:Ko.nodes,node:Ko.node,size:Ko.size,empty:Ko.empty,each:Ko.each,on:yo,attr:Qa,attrTween:ro,style:jo,styleTween:Po,text:Lo,textTween:Bo,remove:xo,tween:Ua,delay:oo,duration:lo,ease:fo,easeVarying:mo,end:Ho,[Symbol.iterator]:Ko[Symbol.iterator]};function qo(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var Jo={time:null,delay:0,duration:250,ease:qo};function Yo(e,t){for(var n;!(n=e.__transition)||!(n=n[t]);)if(!(e=e.parentNode))throw Error(`transition ${t} not found`);return n}function Xo(e){var t,n;e instanceof Wo?(t=e._id,e=e._name):(t=Go(),(n=Jo).time=Sa(),e=e==null?null:e+``);for(var r=this._groups,i=r.length,a=0;a<i;++a)for(var o=r[a],s=o.length,c,l=0;l<s;++l)(c=o[l])&&Pa(c,e,t,l,o,n||Yo(c,t));return new Wo(r,this._parents,e,t)}Ar.prototype.interrupt=Ba,Ar.prototype.transition=Xo;var Zo=e=>()=>e;function Qo(e,{sourceEvent:t,target:n,transform:r,dispatch:i}){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:i}})}function $o(e,t,n){this.k=e,this.x=t,this.y=n}$o.prototype={constructor:$o,scale:function(e){return e===1?this:new $o(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new $o(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 es=new $o(1,0,0);ts.prototype=$o.prototype;function ts(e){for(;!e.__zoom;)if(!(e=e.parentNode))return es;return e.__zoom}function ns(e){e.stopImmediatePropagation()}function rs(e){e.preventDefault(),e.stopImmediatePropagation()}function is(e){return(!e.ctrlKey||e.type===`wheel`)&&!e.button}function as(){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 os(){return this.__zoom||es}function ss(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function cs(){return navigator.maxTouchPoints||`ontouchstart`in this}function ls(e,t,n){var r=e.invertX(t[0][0])-n[0][0],i=e.invertX(t[1][0])-n[1][0],a=e.invertY(t[0][1])-n[0][1],o=e.invertY(t[1][1])-n[1][1];return e.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),o>a?(a+o)/2:Math.min(0,a)||Math.max(0,o))}function us(){var e=is,t=as,n=ls,r=ss,i=cs,a=[0,1/0],o=[[-1/0,-1/0],[1/0,1/0]],s=250,c=ua,l=Ot(`start`,`zoom`,`end`),u,d,f,p=500,m=150,h=0,g=10;function _(e){e.property(`__zoom`,os).on(`wheel.zoom`,w,{passive:!1}).on(`mousedown.zoom`,T).on(`dblclick.zoom`,E).filter(i).on(`touchstart.zoom`,D).on(`touchmove.zoom`,O).on(`touchend.zoom touchcancel.zoom`,k).style(`-webkit-tap-highlight-color`,`rgba(0,0,0,0)`)}_.transform=function(e,t,n,r){var i=e.selection?e.selection():e;i.property(`__zoom`,os),e===i?i.interrupt().each(function(){S(this,arguments).event(r).start().zoom(null,typeof t==`function`?t.apply(this,arguments):t).end()}):x(e,t,n,r)},_.scaleBy=function(e,t,n,r){_.scaleTo(e,function(){return this.__zoom.k*(typeof t==`function`?t.apply(this,arguments):t)},n,r)},_.scaleTo=function(e,r,i,a){_.transform(e,function(){var e=t.apply(this,arguments),a=this.__zoom,s=i==null?b(e):typeof i==`function`?i.apply(this,arguments):i,c=a.invert(s),l=typeof r==`function`?r.apply(this,arguments):r;return n(y(v(a,l),s,c),e,o)},i,a)},_.translateBy=function(e,r,i,a){_.transform(e,function(){return n(this.__zoom.translate(typeof r==`function`?r.apply(this,arguments):r,typeof i==`function`?i.apply(this,arguments):i),t.apply(this,arguments),o)},null,a)},_.translateTo=function(e,r,i,a,s){_.transform(e,function(){var e=t.apply(this,arguments),s=this.__zoom,c=a==null?b(e):typeof a==`function`?a.apply(this,arguments):a;return n(es.translate(c[0],c[1]).scale(s.k).translate(typeof r==`function`?-r.apply(this,arguments):-r,typeof i==`function`?-i.apply(this,arguments):-i),e,o)},a,s)};function v(e,t){return t=Math.max(a[0],Math.min(a[1],t)),t===e.k?e:new $o(t,e.x,e.y)}function y(e,t,n){var r=t[0]-n[0]*e.k,i=t[1]-n[1]*e.k;return r===e.x&&i===e.y?e:new $o(e.k,r,i)}function b(e){return[(+e[0][0]+ +e[1][0])/2,(+e[0][1]+ +e[1][1])/2]}function x(e,n,r,i){e.on(`start.zoom`,function(){S(this,arguments).event(i).start()}).on(`interrupt.zoom end.zoom`,function(){S(this,arguments).event(i).end()}).tween(`zoom`,function(){var e=this,a=arguments,o=S(e,a).event(i),s=t.apply(e,a),l=r==null?b(s):typeof r==`function`?r.apply(e,a):r,u=Math.max(s[1][0]-s[0][0],s[1][1]-s[0][1]),d=e.__zoom,f=typeof n==`function`?n.apply(e,a):n,p=c(d.invert(l).concat(u/d.k),f.invert(l).concat(u/f.k));return function(e){if(e===1)e=f;else{var t=p(e),n=u/t[2];e=new $o(n,l[0]-t[0]*n,l[1]-t[1]*n)}o.zoom(null,e)}})}function S(e,t,n){return!n&&e.__zooming||new C(e,t)}function C(e,n){this.that=e,this.args=n,this.active=0,this.sourceEvent=null,this.extent=t.apply(e,n),this.taps=0}C.prototype={event:function(e){return e&&(this.sourceEvent=e),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit(`start`)),this},zoom:function(e,t){return this.mouse&&e!==`mouse`&&(this.mouse[1]=t.invert(this.mouse[0])),this.touch0&&e!==`touch`&&(this.touch0[1]=t.invert(this.touch0[0])),this.touch1&&e!==`touch`&&(this.touch1[1]=t.invert(this.touch1[0])),this.that.__zoom=t,this.emit(`zoom`),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit(`end`)),this},emit:function(e){var t=Mr(this.that).datum();l.call(e,this.that,new Qo(e,{sourceEvent:this.sourceEvent,target:_,type:e,transform:this.that.__zoom,dispatch:l}),t)}};function w(t,...i){if(!e.apply(this,arguments))return;var s=S(this,i).event(t),c=this.__zoom,l=Math.max(a[0],Math.min(a[1],c.k*2**r.apply(this,arguments))),u=Pr(t);if(s.wheel)(s.mouse[0][0]!==u[0]||s.mouse[0][1]!==u[1])&&(s.mouse[1]=c.invert(s.mouse[0]=u)),clearTimeout(s.wheel);else if(c.k===l)return;else s.mouse=[u,c.invert(u)],za(this),s.start();rs(t),s.wheel=setTimeout(d,m),s.zoom(`mouse`,n(y(v(c,l),s.mouse[0],s.mouse[1]),s.extent,o));function d(){s.wheel=null,s.end()}}function T(t,...r){if(f||!e.apply(this,arguments))return;var i=t.currentTarget,a=S(this,r,!0).event(t),s=Mr(t.view).on(`mousemove.zoom`,d,!0).on(`mouseup.zoom`,p,!0),c=Pr(t,i),l=t.clientX,u=t.clientY;zr(t.view),ns(t),a.mouse=[c,this.__zoom.invert(c)],za(this),a.start();function d(e){if(rs(e),!a.moved){var t=e.clientX-l,r=e.clientY-u;a.moved=t*t+r*r>h}a.event(e).zoom(`mouse`,n(y(a.that.__zoom,a.mouse[0]=Pr(e,i),a.mouse[1]),a.extent,o))}function p(e){s.on(`mousemove.zoom mouseup.zoom`,null),Br(e.view,a.moved),rs(e),a.event(e).end()}}function E(r,...i){if(e.apply(this,arguments)){var a=this.__zoom,c=Pr(r.changedTouches?r.changedTouches[0]:r,this),l=a.invert(c),u=a.k*(r.shiftKey?.5:2),d=n(y(v(a,u),c,l),t.apply(this,i),o);rs(r),s>0?Mr(this).transition().duration(s).call(x,d,c,r):Mr(this).call(_.transform,d,c,r)}}function D(t,...n){if(e.apply(this,arguments)){var r=t.touches,i=r.length,a=S(this,n,t.changedTouches.length===i).event(t),o,s,c,l;for(ns(t),s=0;s<i;++s)c=r[s],l=Pr(c,this),l=[l,this.__zoom.invert(l),c.identifier],a.touch0?!a.touch1&&a.touch0[2]!==l[2]&&(a.touch1=l,a.taps=0):(a.touch0=l,o=!0,a.taps=1+!!u);u&&=clearTimeout(u),o&&(a.taps<2&&(d=l[0],u=setTimeout(function(){u=null},p)),za(this),a.start())}}function O(e,...t){if(this.__zooming){var r=S(this,t).event(e),i=e.changedTouches,a=i.length,s,c,l,u;for(rs(e),s=0;s<a;++s)c=i[s],l=Pr(c,this),r.touch0&&r.touch0[2]===c.identifier?r.touch0[0]=l:r.touch1&&r.touch1[2]===c.identifier&&(r.touch1[0]=l);if(c=r.that.__zoom,r.touch1){var d=r.touch0[0],f=r.touch0[1],p=r.touch1[0],m=r.touch1[1],h=(h=p[0]-d[0])*h+(h=p[1]-d[1])*h,g=(g=m[0]-f[0])*g+(g=m[1]-f[1])*g;c=v(c,Math.sqrt(h/g)),l=[(d[0]+p[0])/2,(d[1]+p[1])/2],u=[(f[0]+m[0])/2,(f[1]+m[1])/2]}else if(r.touch0)l=r.touch0[0],u=r.touch0[1];else return;r.zoom(`touch`,n(y(c,l,u),r.extent,o))}}function k(e,...t){if(this.__zooming){var n=S(this,t).event(e),r=e.changedTouches,i=r.length,a,o;for(ns(e),f&&clearTimeout(f),f=setTimeout(function(){f=null},p),a=0;a<i;++a)o=r[a],n.touch0&&n.touch0[2]===o.identifier?delete n.touch0:n.touch1&&n.touch1[2]===o.identifier&&delete n.touch1;if(n.touch1&&!n.touch0&&(n.touch0=n.touch1,delete n.touch1),n.touch0)n.touch0[1]=this.__zoom.invert(n.touch0[0]);else if(n.end(),n.taps===2&&(o=Pr(o,this),Math.hypot(d[0]-o[0],d[1]-o[1])<g)){var s=Mr(this).on(`dblclick.zoom`);s&&s.apply(this,arguments)}}}return _.wheelDelta=function(e){return arguments.length?(r=typeof e==`function`?e:Zo(+e),_):r},_.filter=function(t){return arguments.length?(e=typeof t==`function`?t:Zo(!!t),_):e},_.touchable=function(e){return arguments.length?(i=typeof e==`function`?e:Zo(!!e),_):i},_.extent=function(e){return arguments.length?(t=typeof e==`function`?e:Zo([[+e[0][0],+e[0][1]],[+e[1][0],+e[1][1]]]),_):t},_.scaleExtent=function(e){return arguments.length?(a[0]=+e[0],a[1]=+e[1],_):[a[0],a[1]]},_.translateExtent=function(e){return arguments.length?(o[0][0]=+e[0][0],o[1][0]=+e[1][0],o[0][1]=+e[0][1],o[1][1]=+e[1][1],_):[[o[0][0],o[0][1]],[o[1][0],o[1][1]]]},_.constrain=function(e){return arguments.length?(n=e,_):n},_.duration=function(e){return arguments.length?(s=+e,_):s},_.interpolate=function(e){return arguments.length?(c=e,_):c},_.on=function(){var e=l.on.apply(l,arguments);return e===l?_:e},_.clickDistance=function(e){return arguments.length?(h=(e=+e)*e,_):Math.sqrt(h)},_.tapDistance=function(e){return arguments.length?(g=+e,_):g},_}var ds={error001:(e=`react`)=>`Seems like you have not used ${e===`svelte`?`SvelteFlowProvider`:`ReactFlowProvider`} as an ancestor. Help: https://${e}flow.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 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.`,error016:e=>`Edge with id "${e}" does not exist, it may have been removed. This can happen when an edge is deleted before the "onEdgeClick" handler is called.`},fs=[[-1/0,-1/0],[1/0,1/0]],ps=[`Enter`,` `,`Escape`],ms={"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`},hs;(function(e){e.Strict=`strict`,e.Loose=`loose`})(hs||={});var gs;(function(e){e.Free=`free`,e.Vertical=`vertical`,e.Horizontal=`horizontal`})(gs||={});var _s;(function(e){e.Partial=`partial`,e.Full=`full`})(_s||={});var vs={inProgress:!1,isValid:null,from:null,fromHandle:null,fromPosition:null,fromNode:null,to:null,toHandle:null,toPosition:null,toNode:null,pointer:null},ys;(function(e){e.Bezier=`default`,e.Straight=`straight`,e.Step=`step`,e.SmoothStep=`smoothstep`,e.SimpleBezier=`simplebezier`})(ys||={});var bs;(function(e){e.Arrow=`arrow`,e.ArrowClosed=`arrowclosed`})(bs||={});var X;(function(e){e.Left=`left`,e.Top=`top`,e.Right=`right`,e.Bottom=`bottom`})(X||={});var xs={[X.Left]:X.Right,[X.Right]:X.Left,[X.Top]:X.Bottom,[X.Bottom]:X.Top};function Ss(e){return e===null?null:e?`valid`:`invalid`}var Cs=e=>!!e&&typeof e==`object`&&`id`in e&&`source`in e&&`target`in e,ws=e=>!!e&&typeof e==`object`&&`id`in e&&`position`in e&&!(`source`in e)&&!(`target`in e),Ts=e=>!!e&&typeof e==`object`&&`id`in e&&`internals`in e&&!(`source`in e)&&!(`target`in e),Es=(e,t=[0,0])=>{let{width:n,height:r}=oc(e),i=e.origin??t,a=n*i[0],o=r*i[1];return{x:e.position.x-a,y:e.position.y-o}},Ds=(e,t={nodeOrigin:[0,0]})=>{if(e.length===0)return{x:0,y:0,width:0,height:0};let n=!1,r=e.reduce((e,r)=>{let i=typeof r==`string`,a=!t.nodeLookup&&!i?r:void 0;return t.nodeLookup&&(a=i?t.nodeLookup.get(r):Ts(r)?r:t.nodeLookup.get(r.id)),a?(n=!0,Bs(e,Ws(a,t.nodeOrigin))):e},{x:1/0,y:1/0,x2:-1/0,y2:-1/0});return n?Hs(r):{x:0,y:0,width:0,height:0}},Os=(e,t={})=>{let n={x:1/0,y:1/0,x2:-1/0,y2:-1/0},r=!1;return e.forEach(e=>{(t.filter===void 0||t.filter(e))&&(n=Bs(n,Ws(e)),r=!0)}),r?Hs(n):{x:0,y:0,width:0,height:0}},ks=(e,t,[n,r,i]=[0,0,1],a=!1,o=!1)=>{let s=(t.x-n)/i,c=(t.y-r)/i,l=t.width/i,u=t.height/i,d=[];for(let t of e.values()){let{measured:e,selectable:n=!0,hidden:r=!1}=t;if(o&&!n||r)continue;let i=e.width??t.width??t.initialWidth??0,f=e.height??t.height??t.initialHeight??0,{x:p,y:m}=t.internals.positionAbsolute,h=Ks(s,c,l,u,p,m,i,f),g=i*f,_=a&&h>0;(!t.internals.handleBounds||_||h>=g||t.dragging)&&d.push(t)}return d},As=(e,t)=>{let n=new Set;return e.forEach(e=>{n.add(e.id)}),t.filter(e=>n.has(e.source)||n.has(e.target))};function js(e,t){let n=new Map,r=t?.nodes?new Set(t.nodes.map(e=>e.id)):null;return e.forEach(e=>{let i;if(t?.includeHiddenNodes){let{width:t,height:n}=oc(e);i=t>0&&n>0}else i=!!(e.measured.width&&e.measured.height&&!e.hidden);i&&(!r||r.has(e.id))&&n.set(e.id,e)}),n}async function Ms({nodes:e,width:t,height:n,panZoom:r,minZoom:i,maxZoom:a},o){if(e.size===0)return!0;let s=rc(Os(js(e,o)),t,n,o?.minZoom??i,o?.maxZoom??a,o?.padding??.1);return await r.setViewport(s,{duration:o?.duration,ease:o?.ease,interpolate:o?.interpolate}),!0}function Ns({nodeId:e,nextPosition:t,nodeLookup:n,nodeOrigin:r=[0,0],nodeExtent:i,onError:a}){let o=n.get(e),s=o.parentId?n.get(o.parentId):void 0,{x:c,y:l}=s?s.internals.positionAbsolute:{x:0,y:0},u=o.origin??r,d=o.extent||i;if(o.extent===`parent`&&!o.expandParent){if(!s)a?.(`005`,ds.error005());else{let{width:e,height:t}=oc(s);e&&t&&(d=[[c,l],[c+e,l+t]])}}else s&&ac(o.extent)&&(d=[[o.extent[0][0]+c,o.extent[0][1]+l],[o.extent[1][0]+c,o.extent[1][1]+l]]);let f=ac(d)?Is(t,d,o.measured):t;return(o.measured.width===void 0||o.measured.height===void 0)&&a?.(`015`,ds.error015()),{position:{x:f.x-c+(o.measured.width??0)*u[0],y:f.y-l+(o.measured.height??0)*u[1]},positionAbsolute:f}}async function Ps({nodesToRemove:e=[],edgesToRemove:t=[],nodes:n,edges:r,onBeforeDelete:i}){let a=new Set(e.map(e=>e.id)),o=[];for(let e of n){if(e.deletable===!1)continue;let t=a.has(e.id),n=!t&&e.parentId&&o.find(t=>t.id===e.parentId);(t||n)&&o.push(e)}let s=new Set(t.map(e=>e.id)),c=r.filter(e=>e.deletable!==!1),l=As(o,c);for(let e of c)s.has(e.id)&&!l.find(t=>t.id===e.id)&&l.push(e);if(!i)return{edges:l,nodes:o};let u=await i({nodes:o,edges:l});return typeof u==`boolean`?u?{edges:l,nodes:o}:{edges:[],nodes:[]}:u}var Fs=(e,t=0,n=1)=>Math.min(Math.max(e,t),n),Is=(e={x:0,y:0},t,n)=>({x:Fs(e.x,t[0][0],t[1][0]-(n?.width??0)),y:Fs(e.y,t[0][1],t[1][1]-(n?.height??0))});function Ls(e,t,n){let{width:r,height:i}=oc(n),{x:a,y:o}=n.internals.positionAbsolute;return Is(e,[[a,o],[a+r,o+i]],t)}var Rs=(e,t,n)=>e<t?Fs(Math.abs(e-t),1,t)/t:e>n?-Fs(Math.abs(e-n),1,t)/t:0,zs=(e,t,n=15,r=40)=>[Rs(e.x,r,t.width-r)*n,Rs(e.y,r,t.height-r)*n],Bs=(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)}),Vs=({x:e,y:t,width:n,height:r})=>({x:e,y:t,x2:e+n,y2:t+r}),Hs=({x:e,y:t,x2:n,y2:r})=>({x:e,y:t,width:n-e,height:r-t}),Us=(e,t=[0,0])=>{let{x:n,y:r}=Ts(e)?e.internals.positionAbsolute:Es(e,t);return{x:n,y:r,width:e.measured?.width??e.width??e.initialWidth??0,height:e.measured?.height??e.height??e.initialHeight??0}},Ws=(e,t=[0,0])=>{let{x:n,y:r}=Ts(e)?e.internals.positionAbsolute:Es(e,t);return{x:n,y:r,x2:n+(e.measured?.width??e.width??e.initialWidth??0),y2:r+(e.measured?.height??e.height??e.initialHeight??0)}},Gs=(e,t)=>Hs(Bs(Vs(e),Vs(t))),Ks=(e,t,n,r,i,a,o,s)=>{let c=Math.max(0,Math.min(e+n,i+o)-Math.max(e,i)),l=Math.max(0,Math.min(t+r,a+s)-Math.max(t,a));return Math.ceil(c*l)},qs=(e,t)=>Ks(e.x,e.y,e.width,e.height,t.x,t.y,t.width,t.height),Js=e=>Ys(e.width)&&Ys(e.height)&&Ys(e.x)&&Ys(e.y),Ys=e=>!isNaN(e)&&isFinite(e),Xs=(e,t)=>(e,t)=>{},Zs=(e,t=[1,1])=>({x:t[0]*Math.round(e.x/t[0]),y:t[1]*Math.round(e.y/t[1])}),Qs=({x:e,y:t},[n,r,i],a=!1,o=[1,1])=>{let s={x:(e-n)/i,y:(t-r)/i};return a?Zs(s,o):s},$s=({x:e,y:t},[n,r,i])=>({x:e*i+n,y:t*i+r});function ec(e,t){if(typeof e==`number`)return Math.floor((t-t/(1+e))*.5);if(typeof e==`string`&&e.endsWith(`px`)){let t=parseFloat(e);if(!Number.isNaN(t))return Math.floor(t)}if(typeof e==`string`&&e.endsWith(`%`)){let n=parseFloat(e);if(!Number.isNaN(n))return Math.floor(t*n*.01)}return console.error(`The padding value "${e}" is invalid. Please provide a number or a string with a valid unit (px or %).`),0}function tc(e,t,n){if(typeof e==`string`||typeof e==`number`){let r=ec(e,n),i=ec(e,t);return{top:r,right:i,bottom:r,left:i,x:i*2,y:r*2}}if(typeof e==`object`){let r=ec(e.top??e.y??0,n),i=ec(e.bottom??e.y??0,n),a=ec(e.left??e.x??0,t),o=ec(e.right??e.x??0,t);return{top:r,right:o,bottom:i,left:a,x:a+o,y:r+i}}return{top:0,right:0,bottom:0,left:0,x:0,y:0}}function nc(e,t,n,r,i,a){let{x:o,y:s}=$s(e,[t,n,r]),{x:c,y:l}=$s({x:e.x+e.width,y:e.y+e.height},[t,n,r]),u=i-c,d=a-l;return{left:Math.floor(o),top:Math.floor(s),right:Math.floor(u),bottom:Math.floor(d)}}var rc=(e,t,n,r,i,a)=>{let o=tc(a,t,n),s=(t-o.x)/e.width,c=(n-o.y)/e.height,l=Fs(Math.min(s,c),r,i),u=e.x+e.width/2,d=e.y+e.height/2,f=t/2-u*l,p=n/2-d*l,m=nc(e,f,p,l,t,n),h={left:Math.min(m.left-o.left,0),top:Math.min(m.top-o.top,0),right:Math.min(m.right-o.right,0),bottom:Math.min(m.bottom-o.bottom,0)};return{x:f-h.left+h.right,y:p-h.top+h.bottom,zoom:l}},ic=()=>typeof navigator<`u`&&navigator?.userAgent?.indexOf(`Mac`)>=0;function ac(e){return e!=null&&e!==`parent`}function oc(e){return{width:e.measured?.width??e.width??e.initialWidth??0,height:e.measured?.height??e.height??e.initialHeight??0}}function sc(e){return(e.measured?.width??e.width??e.initialWidth)!==void 0&&(e.measured?.height??e.height??e.initialHeight)!==void 0}function cc(e,t={width:0,height:0},n,r,i){let a={...e},o=r.get(n);if(o){let e=o.origin||i;a.x+=o.internals.positionAbsolute.x-(t.width??0)*e[0],a.y+=o.internals.positionAbsolute.y-(t.height??0)*e[1]}return a}function lc(e,t){if(e.size!==t.size)return!1;for(let n of e)if(!t.has(n))return!1;return!0}function uc(){let e,t;return{promise:new Promise((n,r)=>{e=n,t=r}),resolve:e,reject:t}}function dc(e){return{...ms,...e||{}}}function fc(e,{snapGrid:t=[0,0],snapToGrid:n=!1,transform:r,containerBounds:i}){let{x:a,y:o}=vc(e),s=Qs({x:a-(i?.left??0),y:o-(i?.top??0)},r),{x:c,y:l}=n?Zs(s,t):s;return{xSnapped:c,ySnapped:l,...s}}var pc=e=>({width:e.offsetWidth,height:e.offsetHeight}),mc=e=>e?.getRootNode?.()||window?.document,hc=[`INPUT`,`SELECT`,`TEXTAREA`];function gc(e){let t=e.composedPath?.()?.[0]||e.target;return t?.nodeType===1?hc.includes(t.nodeName)||t.hasAttribute(`contenteditable`)||!!t.closest(`.nokey`):!1}var _c=e=>`clientX`in e,vc=(e,t)=>{let n=_c(e),r=n?e.clientX:e.touches?.[0].clientX,i=n?e.clientY:e.touches?.[0].clientY;return{x:r-(t?.left??0),y:i-(t?.top??0)}},yc=(e,t,n,r,i)=>{let a=t.querySelectorAll(`.${e}`);return!a||!a.length?null:Array.from(a).map(t=>{let a=t.getBoundingClientRect();return{id:t.getAttribute(`data-handleid`),type:e,nodeId:i,position:t.getAttribute(`data-handlepos`),x:(a.left-n.left)/r,y:(a.top-n.top)/r,...pc(t)}})};function bc({sourceX:e,sourceY:t,targetX:n,targetY:r,sourceControlX:i,sourceControlY:a,targetControlX:o,targetControlY:s}){let c=e*.125+i*.375+o*.375+n*.125,l=t*.125+a*.375+s*.375+r*.125;return[c,l,Math.abs(c-e),Math.abs(l-t)]}function xc(e,t){return e>=0?.5*e:t*25*Math.sqrt(-e)}function Sc({pos:e,x1:t,y1:n,x2:r,y2:i,c:a}){switch(e){case X.Left:return[t-xc(t-r,a),n];case X.Right:return[t+xc(r-t,a),n];case X.Top:return[t,n-xc(n-i,a)];case X.Bottom:return[t,n+xc(i-n,a)]}}function Cc({sourceX:e,sourceY:t,sourcePosition:n=X.Bottom,targetX:r,targetY:i,targetPosition:a=X.Top,curvature:o=.25}){let[s,c]=Sc({pos:n,x1:e,y1:t,x2:r,y2:i,c:o}),[l,u]=Sc({pos:a,x1:r,y1:i,x2:e,y2:t,c:o}),[d,f,p,m]=bc({sourceX:e,sourceY:t,targetX:r,targetY:i,sourceControlX:s,sourceControlY:c,targetControlX:l,targetControlY:u});return[`M${e},${t} C${s},${c} ${l},${u} ${r},${i}`,d,f,p,m]}function wc({sourceX:e,sourceY:t,targetX:n,targetY:r}){let i=Math.abs(n-e)/2,a=n<e?n+i:n-i,o=Math.abs(r-t)/2;return[a,r<t?r+o:r-o,i,o]}function Tc({sourceNode:e,targetNode:t,selected:n=!1,zIndex:r=0,elevateOnSelect:i=!1,zIndexMode:a=`basic`}){return a===`manual`?r:(i&&n?r+1e3:r)+Math.max(e.parentId||i&&e.selected?e.internals.z:0,t.parentId||i&&t.selected?t.internals.z:0)}function Ec({sourceNode:e,targetNode:t,width:n,height:r,transform:i}){let a=Bs(Ws(e),Ws(t));return a.x===a.x2&&(a.x2+=1),a.y===a.y2&&(a.y2+=1),qs({x:-i[0]/i[2],y:-i[1]/i[2],width:n/i[2],height:r/i[2]},Hs(a))>0}var Dc=({source:e,sourceHandle:t,target:n,targetHandle:r})=>`xy-edge__${e}${t||``}-${n}${r||``}`,Oc=(e,t)=>t.some(t=>t.source===e.source&&t.target===e.target&&(t.sourceHandle===e.sourceHandle||!t.sourceHandle&&!e.sourceHandle)&&(t.targetHandle===e.targetHandle||!t.targetHandle&&!e.targetHandle)),kc=(e,t,n={})=>{if(!e.source||!e.target)return n.onError?.(`006`,ds.error006()),t;let r=n.getEdgeId||Dc,i;return i=Cs(e)?{...e}:{...e,id:r(e)},Oc(i,t)?t:(i.sourceHandle===null&&delete i.sourceHandle,i.targetHandle===null&&delete i.targetHandle,t.concat(i))};function Ac({sourceX:e,sourceY:t,targetX:n,targetY:r}){let[i,a,o,s]=wc({sourceX:e,sourceY:t,targetX:n,targetY:r});return[`M ${e},${t}L ${n},${r}`,i,a,o,s]}var jc={[X.Left]:{x:-1,y:0},[X.Right]:{x:1,y:0},[X.Top]:{x:0,y:-1},[X.Bottom]:{x:0,y:1}},Mc=({source:e,sourcePosition:t=X.Bottom,target:n})=>t===X.Left||t===X.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},Nc=(e,t)=>Math.sqrt((t.x-e.x)**2+(t.y-e.y)**2);function Pc({source:e,sourcePosition:t=X.Bottom,target:n,targetPosition:r=X.Top,center:i,offset:a,stepPosition:o}){let s=jc[t],c=jc[r],l={x:e.x+s.x*a,y:e.y+s.y*a},u={x:n.x+c.x*a,y:n.y+c.y*a},d=Mc({source:l,sourcePosition:t,target:u}),f=d.x===0?`y`:`x`,p=d[f],m=[],h,g,_={x:0,y:0},v={x:0,y:0},[,,y,b]=wc({sourceX:e.x,sourceY:e.y,targetX:n.x,targetY:n.y});if(s[f]*c[f]===-1){f===`x`?(h=i.x??l.x+(u.x-l.x)*o,g=i.y??(l.y+u.y)/2):(h=i.x??(l.x+u.x)/2,g=i.y??l.y+(u.y-l.y)*o);let e=[{x:h,y:l.y},{x:h,y:u.y}],t=[{x:l.x,y:g},{x:u.x,y:g}];m=s[f]===p?f===`x`?e:t:f===`x`?t:e}else{let i=[{x:l.x,y:u.y}],o=[{x:u.x,y:l.y}];if(m=f===`x`?s.x===p?o:i:s.y===p?i:o,t===r){let t=Math.abs(e[f]-n[f]);if(t<=a){let r=Math.min(a-1,a-t);s[f]===p?_[f]=(l[f]>e[f]?-1:1)*r:v[f]=(u[f]>n[f]?-1:1)*r}}if(t!==r){let e=f===`x`?`y`:`x`,t=s[f]===c[e],n=l[e]>u[e],r=l[e]<u[e];(s[f]===1&&(!t&&n||t&&r)||s[f]!==1&&(!t&&r||t&&n))&&(m=f===`x`?i:o)}let d={x:l.x+_.x,y:l.y+_.y},y={x:u.x+v.x,y:u.y+v.y};Math.max(Math.abs(d.x-m[0].x),Math.abs(y.x-m[0].x))>=Math.max(Math.abs(d.y-m[0].y),Math.abs(y.y-m[0].y))?(h=(d.x+y.x)/2,g=m[0].y):(h=m[0].x,g=(d.y+y.y)/2)}let x={x:l.x+_.x,y:l.y+_.y},S={x:u.x+v.x,y:u.y+v.y};return[[e,...x.x!==m[0].x||x.y!==m[0].y?[x]:[],...m,...S.x!==m[m.length-1].x||S.y!==m[m.length-1].y?[S]:[],n],h,g,y,b]}function Fc(e,t,n,r){let i=Math.min(Nc(e,t)/2,Nc(t,n)/2,r),{x:a,y:o}=t;if(e.x===a&&a===n.x||e.y===o&&o===n.y)return`L${a} ${o}`;if(e.y===o){let t=e.x<n.x?-1:1,r=e.y<n.y?1:-1;return`L ${a+i*t},${o}Q ${a},${o} ${a},${o+i*r}`}let s=e.x<n.x?1:-1;return`L ${a},${o+i*(e.y<n.y?-1:1)}Q ${a},${o} ${a+i*s},${o}`}function Ic({sourceX:e,sourceY:t,sourcePosition:n=X.Bottom,targetX:r,targetY:i,targetPosition:a=X.Top,borderRadius:o=5,centerX:s,centerY:c,offset:l=20,stepPosition:u=.5}){let[d,f,p,m,h]=Pc({source:{x:e,y:t},sourcePosition:n,target:{x:r,y:i},targetPosition:a,center:{x:s,y:c},offset:l,stepPosition:u}),g=`M${d[0].x} ${d[0].y}`;for(let e=1;e<d.length-1;e++)g+=Fc(d[e-1],d[e],d[e+1],o);return g+=`L${d[d.length-1].x} ${d[d.length-1].y}`,[g,f,p,m,h]}function Lc(e){return e&&!!(e.internals.handleBounds||e.handles?.length)&&!!(e.measured.width||e.width||e.initialWidth)}function Rc(e){let{sourceNode:t,targetNode:n}=e;if(!Lc(t)||!Lc(n))return null;let r=t.internals.handleBounds||zc(t.handles),i=n.internals.handleBounds||zc(n.handles),a=Vc(r?.source??[],e.sourceHandle),o=Vc(e.connectionMode===hs.Strict?i?.target??[]:(i?.target??[]).concat(i?.source??[]),e.targetHandle);if(!a||!o)return e.onError?.(`008`,ds.error008(a?`target`:`source`,{id:e.id,sourceHandle:e.sourceHandle,targetHandle:e.targetHandle})),null;let s=a?.position||X.Bottom,c=o?.position||X.Top,l=Bc(t,a,s),u=Bc(n,o,c);return{sourceX:l.x,sourceY:l.y,targetX:u.x,targetY:u.y,sourcePosition:s,targetPosition:c}}function zc(e){if(!e)return null;let t=[],n=[];for(let 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 Bc(e,t,n=X.Left,r=!1){let i=(t?.x??0)+e.internals.positionAbsolute.x,a=(t?.y??0)+e.internals.positionAbsolute.y,{width:o,height:s}=t??oc(e);if(r)return{x:i+o/2,y:a+s/2};switch(t?.position??n){case X.Top:return{x:i+o/2,y:a};case X.Right:return{x:i+o,y:a+s/2};case X.Bottom:return{x:i+o/2,y:a+s};case X.Left:return{x:i,y:a+s/2}}}function Vc(e,t){return e&&(t?e.find(e=>e.id===t):e[0])||null}function Hc(e,t){return e?typeof e==`string`?e:`${t?`${t}__`:``}${Object.keys(e).sort().map(t=>`${t}=${e[t]}`).join(`&`)}`:``}function Uc(e,{id:t,defaultColor:n,defaultMarkerStart:r,defaultMarkerEnd:i}){let a=new Set;return e.reduce((e,o)=>([o.markerStart||r,o.markerEnd||i].forEach(r=>{if(r&&typeof r==`object`){let i=Hc(r,t);a.has(i)||(e.push({id:i,color:r.color||n,...r}),a.add(i))}}),e),[]).sort((e,t)=>e.id.localeCompare(t.id))}var Wc=1e3,Gc=10,Kc={nodeOrigin:[0,0],nodeExtent:fs,elevateNodesOnSelect:!0,zIndexMode:`basic`,defaults:{}},qc={...Kc,checkEquality:!0};function Jc(e,t){let n={...e};for(let e in t)t[e]!==void 0&&(n[e]=t[e]);return n}function Yc(e,t,n){let r=Jc(Kc,n);for(let n of e.values())if(n.parentId)el(n,e,t,r);else{let e=Is(Es(n,r.nodeOrigin),ac(n.extent)?n.extent:r.nodeExtent,oc(n));n.internals.positionAbsolute=e}}function Xc(e,t){if(!e.handles)return e.measured?t?.internals.handleBounds:void 0;let n=[],r=[];for(let t of e.handles){let i={id:t.id,width:t.width??1,height:t.height??1,nodeId:e.id,x:t.x,y:t.y,position:t.position,type:t.type};t.type===`source`?n.push(i):t.type===`target`&&r.push(i)}return{source:n,target:r}}function Zc(e){return e===`manual`}function Qc(e,t,n,r={}){let i=Jc(qc,r),a={i:0},o=new Map(t),s=i?.elevateNodesOnSelect&&!Zc(i.zIndexMode)?Wc:0,c=e.length>0,l=!1;t.clear(),n.clear();for(let u of e){let e=o.get(u.id);if(i.checkEquality&&u===e?.internals.userNode)t.set(u.id,e);else{let n=Is(Es(u,i.nodeOrigin),ac(u.extent)?u.extent:i.nodeExtent,oc(u));e={...i.defaults,...u,measured:{width:u.measured?.width,height:u.measured?.height},internals:{positionAbsolute:n,handleBounds:Xc(u,e),z:tl(u,s,i.zIndexMode),userNode:u}},t.set(u.id,e)}(e.measured===void 0||e.measured.width===void 0||e.measured.height===void 0)&&!e.hidden&&(c=!1),u.parentId&&el(e,t,n,r,a),l||=u.selected??!1}return{nodesInitialized:c,hasSelectedNodes:l}}function $c(e,t){if(!e.parentId)return;let n=t.get(e.parentId);n?n.set(e.id,e):t.set(e.parentId,new Map([[e.id,e]]))}function el(e,t,n,r,i){let{elevateNodesOnSelect:a,nodeOrigin:o,nodeExtent:s,zIndexMode:c}=Jc(Kc,r),l=e.parentId,u=t.get(l);if(!u){console.warn(`Parent node ${l} not found. Please make sure that parent nodes are in front of their child nodes in the nodes array.`);return}$c(e,n),i&&!u.parentId&&u.internals.rootParentIndex===void 0&&c===`auto`&&(u.internals.rootParentIndex=++i.i,u.internals.z=u.internals.z+i.i*Gc),i&&u.internals.rootParentIndex!==void 0&&(i.i=u.internals.rootParentIndex);let{x:d,y:f,z:p}=nl(e,u,o,s,a&&!Zc(c)?Wc:0,c),{positionAbsolute:m}=e.internals,h=d!==m.x||f!==m.y;(h||p!==e.internals.z)&&t.set(e.id,{...e,internals:{...e.internals,positionAbsolute:h?{x:d,y:f}:m,z:p}})}function tl(e,t,n){let r=Ys(e.zIndex)?e.zIndex:0;return Zc(n)?r:r+(e.selected?t:0)}function nl(e,t,n,r,i,a){let{x:o,y:s}=t.internals.positionAbsolute,c=oc(e),l=Es(e,n),u=ac(e.extent)?Is(l,e.extent,c):l,d=Is({x:o+u.x,y:s+u.y},r,c);e.extent===`parent`&&(d=Ls(d,c,t));let f=tl(e,i,a),p=t.internals.z??0;return{x:d.x,y:d.y,z:p>=f?p+1:f}}function rl(e,t,n,r=[0,0]){let i=[],a=new Map;for(let n of e){let e=t.get(n.parentId);if(!e)continue;let r=Gs(a.get(n.parentId)?.expandedRect??Us(e),n.rect);a.set(n.parentId,{expandedRect:r,parent:e})}return a.size>0&&a.forEach(({expandedRect:t,parent:a},o)=>{let s=a.internals.positionAbsolute,c=oc(a),l=a.origin??r,u=t.x<s.x?Math.round(Math.abs(s.x-t.x)):0,d=t.y<s.y?Math.round(Math.abs(s.y-t.y)):0,f=Math.max(c.width,Math.round(t.width)),p=Math.max(c.height,Math.round(t.height)),m=(f-c.width)*l[0],h=(p-c.height)*l[1];(u>0||d>0||m||h)&&(i.push({id:o,type:`position`,position:{x:a.position.x-u+m,y:a.position.y-d+h}}),n.get(o)?.forEach(t=>{e.some(e=>e.id===t.id)||i.push({id:t.id,type:`position`,position:{x:t.position.x+u,y:t.position.y+d}})})),(c.width<t.width||c.height<t.height||u||d)&&i.push({id:o,type:`dimensions`,setAttributes:!0,dimensions:{width:f+(u?l[0]*u-m:0),height:p+(d?l[1]*d-h:0)}})}),i}function il(e,t,n,r,i,a,o){let s=r?.querySelector(`.xyflow__viewport`),c=!1;if(!s)return{changes:[],updatedInternals:c};let l=[],u=window.getComputedStyle(s),{m22:d}=new window.DOMMatrixReadOnly(u.transform),f=[];for(let r of e.values()){let e=t.get(r.id);if(!e)continue;if(e.hidden){t.set(e.id,{...e,internals:{...e.internals,handleBounds:void 0}}),c=!0;continue}let s=pc(r.nodeElement),u=e.measured.width!==s.width||e.measured.height!==s.height;if(s.width&&s.height&&(u||!e.internals.handleBounds||r.force)){let p=r.nodeElement.getBoundingClientRect(),m=ac(e.extent)?e.extent:a,{positionAbsolute:h}=e.internals;if(e.parentId&&e.extent===`parent`){let n=t.get(e.parentId);n&&(h=Ls(h,s,n))}else m&&(h=Is(h,m,s));let g={...e,measured:s,internals:{...e.internals,positionAbsolute:h,handleBounds:{source:yc(`source`,r.nodeElement,p,d,e.id),target:yc(`target`,r.nodeElement,p,d,e.id)}}};t.set(e.id,g),e.parentId&&el(g,t,n,{nodeOrigin:i,zIndexMode:o}),c=!0,u&&(l.push({id:e.id,type:`dimensions`,dimensions:s}),e.expandParent&&e.parentId&&f.push({id:e.id,parentId:e.parentId,rect:Us(g,i)}))}}if(f.length>0){let e=rl(f,t,n,i);l.push(...e)}return{changes:l,updatedInternals:c}}async function al({delta:e,panZoom:t,transform:n,translateExtent:r,width:i,height:a}){if(!t||!e.x&&!e.y)return!1;let o=await t.setViewportConstrained({x:n[0]+e.x,y:n[1]+e.y,zoom:n[2]},[[0,0],[i,a]],r);return!!o&&(o.x!==n[0]||o.y!==n[1]||o.k!==n[2])}function ol(e,t,n,r,i,a){let o=i,s=r.get(o)||new Map;r.set(o,s.set(n,t)),o=`${i}-${e}`;let c=r.get(o)||new Map;if(r.set(o,c.set(n,t)),a){o=`${i}-${e}-${a}`;let s=r.get(o)||new Map;r.set(o,s.set(n,t))}}function sl(e,t,n){e.clear(),t.clear();for(let r of n){let{source:n,target:i,sourceHandle:a=null,targetHandle:o=null}=r,s={edgeId:r.id,source:n,target:i,sourceHandle:a,targetHandle:o},c=`${n}-${a}--${i}-${o}`;ol(`source`,s,`${i}-${o}--${n}-${a}`,e,n,a),ol(`target`,s,c,e,i,o),t.set(r.id,r)}}function cl(e,t){if(!e.parentId)return!1;let n=t.get(e.parentId);return n?n.selected?!0:cl(n,t):!1}function ll(e,t,n){let r=e;do{if(r?.matches?.(t))return!0;if(r===n)return!1;r=r?.parentElement}while(r);return!1}function ul(e,t,n,r){let i=new Map;for(let[a,o]of e)if((o.selected||o.id===r)&&(!o.parentId||!cl(o,e))&&(o.draggable||t&&o.draggable===void 0)){let t=e.get(a);t&&i.set(a,{id:a,position:t.position||{x:0,y:0},distance:{x:n.x-t.internals.positionAbsolute.x,y:n.y-t.internals.positionAbsolute.y},extent:t.extent,parentId:t.parentId,origin:t.origin,expandParent:t.expandParent,internals:{positionAbsolute:t.internals.positionAbsolute||{x:0,y:0}},measured:{width:t.measured.width??0,height:t.measured.height??0}})}return i}function dl({nodeId:e,dragItems:t,nodeLookup:n,dragging:r=!0}){let i=[];for(let[e,a]of t){let t=n.get(e)?.internals.userNode;t&&i.push({...t,position:a.position,dragging:r})}if(!e)return[i[0],i];let a=n.get(e)?.internals.userNode;return[a?{...a,position:t.get(e)?.position||a.position,dragging:r}:i[0],i]}function fl({dragItems:e,snapGrid:t,x:n,y:r}){let i=e.values().next().value;if(!i)return null;let a={x:n-i.distance.x,y:r-i.distance.y},o=Zs(a,t);return{x:o.x-a.x,y:o.y-a.y}}function pl({onNodeMouseDown:e,getStoreItems:t,onDragStart:n,onDrag:r,onDragStop:i}){let a={x:null,y:null},o=0,s=new Map,c=!1,l={x:0,y:0},u=null,d=!1,f=null,p=!1,m=!1,h=null;function g({noDragClassName:g,handleSelector:_,domNode:v,isSelectable:y,nodeId:b,nodeClickDistance:x=0}){f=Mr(v);function S({x:e,y:n}){let{nodeLookup:i,nodeExtent:o,snapGrid:c,snapToGrid:l,nodeOrigin:u,onNodeDrag:d,onSelectionDrag:f,onError:p,updateNodePositions:g}=t();a={x:e,y:n};let _=!1,v=s.size>1,y=v&&o?Vs(Os(s)):null,x=v&&l?fl({dragItems:s,snapGrid:c,x:e,y:n}):null;for(let[t,r]of s){if(!i.has(t))continue;let a={x:e-r.distance.x,y:n-r.distance.y};l&&(a=x?{x:Math.round(a.x+x.x),y:Math.round(a.y+x.y)}:Zs(a,c));let s=null;if(v&&o&&!r.extent&&y){let{positionAbsolute:e}=r.internals,t=e.x-y.x+o[0][0],n=e.x+r.measured.width-y.x2+o[1][0],i=e.y-y.y+o[0][1],a=e.y+r.measured.height-y.y2+o[1][1];s=[[t,i],[n,a]]}let{position:d,positionAbsolute:f}=Ns({nodeId:t,nextPosition:a,nodeLookup:i,nodeExtent:s||o,nodeOrigin:u,onError:p});_=_||r.position.x!==d.x||r.position.y!==d.y,r.position=d,r.internals.positionAbsolute=f}if(m||=_,_&&(g(s,!0),h&&(r||d||!b&&f))){let[e,t]=dl({nodeId:b,dragItems:s,nodeLookup:i});r?.(h,s,e,t),d?.(h,e,t),b||f?.(h,t)}}async function C(){if(!u)return;let{transform:e,panBy:n,autoPanSpeed:r,autoPanOnNodeDrag:i}=t();if(!i){c=!1,cancelAnimationFrame(o);return}let[s,d]=zs(l,u,r);(s!==0||d!==0)&&(a.x=(a.x??0)-s/e[2],a.y=(a.y??0)-d/e[2],await n({x:s,y:d})&&S(a)),o=requestAnimationFrame(C)}function w(r){let{nodeLookup:i,multiSelectionActive:o,nodesDraggable:c,transform:l,snapGrid:f,snapToGrid:p,selectNodesOnDrag:m,onNodeDragStart:h,onSelectionDragStart:g,unselectNodesAndEdges:_}=t();d=!0,(!m||!y)&&!o&&b&&(i.get(b)?.selected||_()),y&&m&&b&&e?.(b);let v=fc(r.sourceEvent,{transform:l,snapGrid:f,snapToGrid:p,containerBounds:u});if(a=v,s=ul(i,c,v,b),s.size>0&&(n||h||!b&&g)){let[e,t]=dl({nodeId:b,dragItems:s,nodeLookup:i});n?.(r.sourceEvent,s,e,t),h?.(r.sourceEvent,e,t),b||g?.(r.sourceEvent,t)}}let T=qr().clickDistance(x).on(`start`,e=>{let{domNode:n,nodeDragThreshold:r,transform:i,snapGrid:o,snapToGrid:s}=t();u=n?.getBoundingClientRect()||null,p=!1,m=!1,h=e.sourceEvent,r===0&&w(e),a=fc(e.sourceEvent,{transform:i,snapGrid:o,snapToGrid:s,containerBounds:u}),l=vc(e.sourceEvent,u)}).on(`drag`,e=>{let{autoPanOnNodeDrag:n,transform:r,snapGrid:i,snapToGrid:o,nodeDragThreshold:f,nodeLookup:m}=t(),g=fc(e.sourceEvent,{transform:r,snapGrid:i,snapToGrid:o,containerBounds:u});if(h=e.sourceEvent,(e.sourceEvent.type===`touchmove`&&e.sourceEvent.touches.length>1||b&&!m.has(b))&&(p=!0),!p){if(!c&&n&&d&&(c=!0,C()),!d){let t=vc(e.sourceEvent,u),n=t.x-l.x,r=t.y-l.y;Math.sqrt(n*n+r*r)>f&&w(e)}(a.x!==g.xSnapped||a.y!==g.ySnapped)&&s&&d&&(l=vc(e.sourceEvent,u),S(g))}}).on(`end`,e=>{if(!d||p){p&&s.size>0&&t().updateNodePositions(s,!1);return}if(c=!1,d=!1,cancelAnimationFrame(o),s.size>0){let{nodeLookup:n,updateNodePositions:r,onNodeDragStop:a,onSelectionDragStop:o}=t();if(m&&=(r(s,!1),!1),i||a||!b&&o){let[t,r]=dl({nodeId:b,dragItems:s,nodeLookup:n,dragging:!1});i?.(e.sourceEvent,s,t,r),a?.(e.sourceEvent,t,r),b||o?.(e.sourceEvent,r)}}}).filter(e=>{let t=e.target;return!e.button&&(!g||!ll(t,`.${g}`,v))&&(!_||ll(t,_,v))});f.call(T)}function _(){f?.on(`.drag`,null)}return{update:g,destroy:_}}function ml(e,t,n){let r=[],i={x:e.x-n,y:e.y-n,width:n*2,height:n*2};for(let e of t.values())qs(i,Us(e))>0&&r.push(e);return r}var hl=250;function gl(e,t,n,r){let i=[],a=1/0,o=ml(e,n,t+hl);for(let n of o){let o=[...n.internals.handleBounds?.source??[],...n.internals.handleBounds?.target??[]];for(let s of o){if(r.nodeId===s.nodeId&&r.type===s.type&&r.id===s.id)continue;let{x:o,y:c}=Bc(n,s,s.position,!0),l=Math.sqrt((o-e.x)**2+(c-e.y)**2);l>t||(l<a?(i=[{...s,x:o,y:c}],a=l):l===a&&i.push({...s,x:o,y:c}))}}if(!i.length)return null;if(i.length>1){let e=r.type===`source`?`target`:`source`;return i.find(t=>t.type===e)??i[0]}return i[0]}function _l(e,t,n,r,i,a=!1){let o=r.get(e);if(!o)return null;let s=i===`strict`?o.internals.handleBounds?.[t]:[...o.internals.handleBounds?.source??[],...o.internals.handleBounds?.target??[]],c=(n?s?.find(e=>e.id===n):s?.[0])??null;return c&&a?{...c,...Bc(o,c,c.position,!0)}:c}function vl(e,t){return e||(t?.classList.contains(`target`)?`target`:t?.classList.contains(`source`)?`source`:null)}function yl(e,t){let n=null;return t?n=!0:e&&!t&&(n=!1),n}var bl=()=>!0;function xl(e,{connectionMode:t,connectionRadius:n,handleId:r,nodeId:i,edgeUpdaterType:a,isTarget:o,domNode:s,nodeLookup:c,lib:l,autoPanOnConnect:u,flowId:d,panBy:f,cancelConnection:p,onConnectStart:m,onConnect:h,onConnectEnd:g,isValidConnection:_=bl,onReconnectEnd:v,updateConnection:y,getTransform:b,getFromHandle:x,autoPanSpeed:S,dragThreshold:C=1,handleDomNode:w}){let T=mc(e.target),E=0,D,{x:O,y:k}=vc(e),A=vl(a,w),j=s?.getBoundingClientRect(),M=!1;if(!j||!A)return;let N=_l(i,A,r,c,t);if(!N)return;let P=vc(e,j),F=!1,I=null,L=!1,R=null;function z(){if(!u||!j)return;let[e,t]=zs(P,j,S);f({x:e,y:t}),E=requestAnimationFrame(z)}let B={...N,nodeId:i,type:A,position:N.position},ee=c.get(i),V={inProgress:!0,isValid:null,from:Bc(ee,B,X.Left,!0),fromHandle:B,fromPosition:B.position,fromNode:ee,to:P,toHandle:null,toPosition:xs[B.position],toNode:null,pointer:P};function te(){M=!0,y(V),m?.(e,{nodeId:i,handleId:r,handleType:A})}C===0&&te();function H(e){if(!M){let{x:t,y:n}=vc(e),r=t-O,i=n-k;if(!(r*r+i*i>C*C))return;te()}if(!x()||!B){ne(e);return}let a=b();P=vc(e,j),D=gl(Qs(P,a,!1,[1,1]),n,c,B),F||=(z(),!0);let s=Sl(e,{handle:D,connectionMode:t,fromNodeId:i,fromHandleId:r,fromType:o?`target`:`source`,isValidConnection:_,doc:T,lib:l,flowId:d,nodeLookup:c});R=s.handleDomNode,I=s.connection,L=yl(!!D,s.isValid);let u=c.get(i),f=u?Bc(u,B,X.Left,!0):V.from,p={...V,from:f,isValid:L,to:s.toHandle&&L?$s({x:s.toHandle.x,y:s.toHandle.y},a):P,toHandle:s.toHandle,toPosition:L&&s.toHandle?s.toHandle.position:xs[B.position],toNode:s.toHandle?c.get(s.toHandle.nodeId):null,pointer:P};y(p),V=p}function ne(e){if(!(`touches`in e&&e.touches.length>0)){if(M){(D||R)&&I&&L&&h?.(I);let{inProgress:t,...n}=V,r={...n,toPosition:V.toHandle?V.toPosition:null};g?.(e,r),a&&v?.(e,r)}p(),cancelAnimationFrame(E),F=!1,L=!1,I=null,R=null,T.removeEventListener(`mousemove`,H),T.removeEventListener(`mouseup`,ne),T.removeEventListener(`touchmove`,H),T.removeEventListener(`touchend`,ne)}}T.addEventListener(`mousemove`,H),T.addEventListener(`mouseup`,ne),T.addEventListener(`touchmove`,H),T.addEventListener(`touchend`,ne)}function Sl(e,{handle:t,connectionMode:n,fromNodeId:r,fromHandleId:i,fromType:a,doc:o,lib:s,flowId:c,isValidConnection:l=bl,nodeLookup:u}){let d=a===`target`,f=t?o.querySelector(`.${s}-flow__handle[data-id="${c}-${t?.nodeId}-${t?.id}-${t?.type}"]`):null,{x:p,y:m}=vc(e),h=o.elementFromPoint(p,m),g=h?.classList.contains(`${s}-flow__handle`)?h:f,_={handleDomNode:g,isValid:!1,connection:null,toHandle:null};if(g){let e=vl(void 0,g),t=g.getAttribute(`data-nodeid`),a=g.getAttribute(`data-handleid`),o=g.classList.contains(`connectable`),s=g.classList.contains(`connectableend`);if(!t||!e)return _;let c={source:d?t:r,sourceHandle:d?a:i,target:d?r:t,targetHandle:d?i:a};_.connection=c,_.isValid=o&&s&&(n===hs.Strict?d&&e===`source`||!d&&e===`target`:t!==r||a!==i)&&l(c),_.toHandle=_l(t,e,a,u,n,!0)}return _}var Cl={onPointerDown:xl,isValid:Sl};function wl({domNode:e,panZoom:t,getTransform:n,getViewScale:r}){let i=Mr(e);function a({translateExtent:e,width:a,height:o,zoomStep:s=1,pannable:c=!0,zoomable:l=!0,inversePan:u=!1}){let d=e=>{if(e.sourceEvent.type!==`wheel`||!t)return;let r=n(),i=e.sourceEvent.ctrlKey&&ic()?10:1,a=-e.sourceEvent.deltaY*(e.sourceEvent.deltaMode===1?.05:e.sourceEvent.deltaMode?1:.002)*s,o=r[2]*2**(a*i);t.scaleTo(o)},f=[0,0],p=us().on(`start`,e=>{(e.sourceEvent.type===`mousedown`||e.sourceEvent.type===`touchstart`)&&(f=[e.sourceEvent.clientX??e.sourceEvent.touches[0].clientX,e.sourceEvent.clientY??e.sourceEvent.touches[0].clientY])}).on(`zoom`,c?i=>{let s=n();if(i.sourceEvent.type!==`mousemove`&&i.sourceEvent.type!==`touchmove`||!t)return;let c=[i.sourceEvent.clientX??i.sourceEvent.touches[0].clientX,i.sourceEvent.clientY??i.sourceEvent.touches[0].clientY],l=[c[0]-f[0],c[1]-f[1]];f=c;let d=r()*Math.max(s[2],Math.log(s[2]))*(u?-1:1),p={x:s[0]-l[0]*d,y:s[1]-l[1]*d},m=[[0,0],[a,o]];t.setViewportConstrained({x:p.x,y:p.y,zoom:s[2]},m,e)}:null).on(`zoom.wheel`,l?d:null);i.call(p,{})}function o(){i.on(`zoom`,null)}return{update:a,destroy:o,pointer:Pr}}var Tl=e=>({x:e.x,y:e.y,zoom:e.k}),El=({x:e,y:t,zoom:n})=>es.translate(e,t).scale(n),Dl=(e,t)=>e.target.closest(`.${t}`),Ol=(e,t)=>t===2&&Array.isArray(e)&&e.includes(2),kl=e=>((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2,Al=(e,t=0,n=kl,r=()=>{})=>{let i=typeof t==`number`&&t>0;return i||r(),i?e.transition().duration(t).ease(n).on(`end`,r):e},jl=e=>{let t=e.ctrlKey&&ic()?10:1;return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*t};function Ml({zoomPanValues:e,noWheelClassName:t,d3Selection:n,d3Zoom:r,panOnScrollMode:i,panOnScrollSpeed:a,zoomOnPinch:o,onPanZoomStart:s,onPanZoom:c,onPanZoomEnd:l}){return u=>{if(Dl(u,t))return u.ctrlKey&&u.preventDefault(),!1;u.preventDefault(),u.stopImmediatePropagation();let d=n.property(`__zoom`).k||1;if(u.ctrlKey&&o){let e=Pr(u),t=d*2**jl(u);r.scaleTo(n,t,e,u);return}let f=u.deltaMode===1?20:1,p=i===gs.Vertical?0:u.deltaX*f,m=i===gs.Horizontal?0:u.deltaY*f;!ic()&&u.shiftKey&&i!==gs.Vertical&&(p=u.deltaY*f,m=0),r.translateBy(n,-(p/d)*a,-(m/d)*a,{internal:!0});let h=Tl(n.property(`__zoom`));clearTimeout(e.panScrollTimeout),e.isPanScrolling?c?.(u,h):(e.isPanScrolling=!0,s?.(u,h)),e.panScrollTimeout=setTimeout(()=>{l?.(u,h),e.isPanScrolling=!1},150)}}function Nl({noWheelClassName:e,preventScrolling:t,d3ZoomHandler:n}){return function(r,i){let a=r.type===`wheel`,o=!t&&a&&!r.ctrlKey,s=Dl(r,e);if(r.ctrlKey&&a&&s&&r.preventDefault(),o||s)return null;r.preventDefault(),n.call(this,r,i)}}function Pl({zoomPanValues:e,onDraggingChange:t,onPanZoomStart:n}){return r=>{if(r.sourceEvent?.internal)return;let i=Tl(r.transform);e.mouseButton=r.sourceEvent?.button||0,e.isZoomingOrPanning=!0,e.prevViewport=i,r.sourceEvent?.type===`mousedown`&&t(!0),n&&n?.(r.sourceEvent,i)}}function Fl({zoomPanValues:e,panOnDrag:t,onPaneContextMenu:n,onTransformChange:r,onPanZoom:i}){return a=>{e.usedRightMouseButton=!!(n&&Ol(t,e.mouseButton??0)),a.sourceEvent?.sync||r([a.transform.x,a.transform.y,a.transform.k]),i&&!a.sourceEvent?.internal&&i?.(a.sourceEvent,Tl(a.transform))}}function Il({zoomPanValues:e,panOnDrag:t,panOnScroll:n,onDraggingChange:r,onPanZoomEnd:i,onPaneContextMenu:a}){return o=>{if(!o.sourceEvent?.internal&&(e.isZoomingOrPanning=!1,a&&Ol(t,e.mouseButton??0)&&!e.usedRightMouseButton&&o.sourceEvent&&a(o.sourceEvent),e.usedRightMouseButton=!1,r(!1),i)){let t=Tl(o.transform);e.prevViewport=t,clearTimeout(e.timerId),e.timerId=setTimeout(()=>{i?.(o.sourceEvent,t)},n?150:0)}}}function Ll({panActivationKeyPressed:e,zoomActivationKeyPressed:t,zoomOnScroll:n,zoomOnPinch:r,panOnDrag:i,panOnScroll:a,zoomOnDoubleClick:o,userSelectionActive:s,noWheelClassName:c,noPanClassName:l,lib:u,connectionInProgress:d}){return f=>{let p=t||n,m=r&&f.ctrlKey,h=f.type===`wheel`;if(f.button===1&&f.type===`mousedown`&&(Dl(f,`${u}-flow__node`)||Dl(f,`${u}-flow__edge`)||Dl(f,`${u}-flow__selection`)||Dl(f,`${u}-flow__nodesselection`)))return!0;if(!i&&!p&&!a&&!o&&!r||s||d&&!h||Dl(f,c)&&h||Dl(f,l)&&(!h||a&&h&&!t)||!r&&f.ctrlKey&&h)return!1;if(!r&&f.type===`touchstart`&&f.touches?.length>1)return f.preventDefault(),!1;if(!p&&!a&&!m&&h||!i&&(f.type===`mousedown`||f.type===`touchstart`)||Array.isArray(i)&&!i.includes(f.button)&&f.type===`mousedown`)return!1;let g=Array.isArray(i)&&i.includes(f.button)||!f.button||f.button<=1;return(!f.ctrlKey||h||e)&&g}}function Rl({domNode:e,minZoom:t,maxZoom:n,translateExtent:r,viewport:i,onPanZoom:a,onPanZoomStart:o,onPanZoomEnd:s,onDraggingChange:c}){let l={isZoomingOrPanning:!1,usedRightMouseButton:!1,prevViewport:{},mouseButton:0,timerId:void 0,panScrollTimeout:void 0,isPanScrolling:!1},u=e.getBoundingClientRect(),d=[[0,0],[u.width,u.height]];(typeof ResizeObserver<`u`?new ResizeObserver(e=>{let t=e[0];t&&(d=[[0,0],[t.contentRect.width,t.contentRect.height]])}):null)?.observe(e);let f=us().extent(()=>d).scaleExtent([t,n]).translateExtent(r),p=Mr(e).call(f);y({x:i.x,y:i.y,zoom:Fs(i.zoom,t,n)},[[0,0],[u.width,u.height]],r);let m=p.on(`wheel.zoom`),h=p.on(`dblclick.zoom`);f.wheelDelta(jl);async function g(e,t){return p?new Promise(n=>{f?.interpolate(t?.interpolate===`linear`?Xi:ua).transform(Al(p,t?.duration,t?.ease,()=>n(!0)),e)}):!1}function _({noWheelClassName:e,noPanClassName:t,onPaneContextMenu:n,userSelectionActive:r,panOnScroll:i,panOnDrag:u,panOnScrollMode:d,panOnScrollSpeed:g,preventScrolling:_,zoomOnPinch:y,zoomOnScroll:b,zoomOnDoubleClick:x,panActivationKeyPressed:S=!1,zoomActivationKeyPressed:C,lib:w,onTransformChange:T,connectionInProgress:E,paneClickDistance:D,selectionOnDrag:O}){r&&!l.isZoomingOrPanning&&v();let k=i&&!C&&!r;f.clickDistance(O?1/0:!Ys(D)||D<0?0:D);let A=k?Ml({zoomPanValues:l,noWheelClassName:e,d3Selection:p,d3Zoom:f,panOnScrollMode:d,panOnScrollSpeed:g,zoomOnPinch:y,onPanZoomStart:o,onPanZoom:a,onPanZoomEnd:s}):Nl({noWheelClassName:e,preventScrolling:_,d3ZoomHandler:m});p.on(`wheel.zoom`,A,{passive:!1});let j=Pl({zoomPanValues:l,onDraggingChange:c,onPanZoomStart:o});f.on(`start`,j);let M=Fl({zoomPanValues:l,panOnDrag:u,onPaneContextMenu:!!n,onPanZoom:a,onTransformChange:T});f.on(`zoom`,M);let N=Il({zoomPanValues:l,panOnDrag:u,panOnScroll:i,onPaneContextMenu:n,onPanZoomEnd:s,onDraggingChange:c});f.on(`end`,N);let P=Ll({panActivationKeyPressed:S,zoomActivationKeyPressed:C,panOnDrag:u,zoomOnScroll:b,panOnScroll:i,zoomOnDoubleClick:x,zoomOnPinch:y,userSelectionActive:r,noPanClassName:t,noWheelClassName:e,lib:w,connectionInProgress:E});f.filter(P),x?p.on(`dblclick.zoom`,h):p.on(`dblclick.zoom`,null)}function v(){f.on(`zoom`,null)}async function y(e,t,n){let r=El(e),i=f?.constrain()(r,t,n);return i&&await g(i),i}async function b(e,t){let n=El(e);return await g(n,t),n}function x(e){if(p){let t=El(e),n=p.property(`__zoom`);(n.k!==e.zoom||n.x!==e.x||n.y!==e.y)&&f?.transform(p,t,null,{sync:!0})}}function S(){let e=p?ts(p.node()):{x:0,y:0,k:1};return{x:e.x,y:e.y,zoom:e.k}}async function C(e,t){return p?new Promise(n=>{f?.interpolate(t?.interpolate===`linear`?Xi:ua).scaleTo(Al(p,t?.duration,t?.ease,()=>n(!0)),e)}):!1}async function w(e,t){return p?new Promise(n=>{f?.interpolate(t?.interpolate===`linear`?Xi:ua).scaleBy(Al(p,t?.duration,t?.ease,()=>n(!0)),e)}):!1}function T(e){f?.scaleExtent(e)}function E(e){f?.translateExtent(e)}function D(e){let t=!Ys(e)||e<0?0:e;f?.clickDistance(t)}return{update:_,destroy:v,setViewport:b,setViewportConstrained:y,getViewport:S,scaleTo:C,scaleBy:w,setScaleExtent:T,setTranslateExtent:E,syncViewport:x,setClickDistance:D}}var zl;(function(e){e.Line=`line`,e.Handle=`handle`})(zl||={});function Bl({width:e,prevWidth:t,height:n,prevHeight:r,affectsX:i,affectsY:a}){let o=e-t,s=n-r,c=[o>0?1:o<0?-1:0,s>0?1:s<0?-1:0];return o&&i&&(c[0]*=-1),s&&a&&(c[1]*=-1),c}function Vl(e){return{isHorizontal:e.includes(`right`)||e.includes(`left`),isVertical:e.includes(`bottom`)||e.includes(`top`),affectsX:e.includes(`left`),affectsY:e.includes(`top`)}}function Hl(e,t){return Math.max(0,t-e)}function Ul(e,t){return Math.max(0,e-t)}function Wl(e,t,n){return Math.max(0,t-e,e-n)}function Gl(e,t){return e?!t:t}function Kl(e,t,n,r,i,a,o,s){let{affectsX:c,affectsY:l}=t,{isHorizontal:u,isVertical:d}=t,f=u&&d,{xSnapped:p,ySnapped:m}=n,{minWidth:h,maxWidth:g,minHeight:_,maxHeight:v}=r,{x:y,y:b,width:x,height:S,aspectRatio:C}=e,w=Math.floor(u?p-e.pointerX:0),T=Math.floor(d?m-e.pointerY:0),E=x+(c?-w:w),D=S+(l?-T:T),O=-a[0]*x,k=-a[1]*S,A=Wl(E,h,g),j=Wl(D,_,v);if(o){let e=0,t=0;c&&w<0?e=Hl(y+w+O,o[0][0]):!c&&w>0&&(e=Ul(y+E+O,o[1][0])),l&&T<0?t=Hl(b+T+k,o[0][1]):!l&&T>0&&(t=Ul(b+D+k,o[1][1])),A=Math.max(A,e),j=Math.max(j,t)}if(s){let e=0,t=0;c&&w>0?e=Ul(y+w,s[0][0]):!c&&w<0&&(e=Hl(y+E,s[1][0])),l&&T>0?t=Ul(b+T,s[0][1]):!l&&T<0&&(t=Hl(b+D,s[1][1])),A=Math.max(A,e),j=Math.max(j,t)}if(i){if(u){let e=Wl(E/C,_,v)*C;if(A=Math.max(A,e),o){let e=0;e=!c&&!l||c&&!l&&f?Ul(b+k+E/C,o[1][1])*C:Hl(b+k+(c?w:-w)/C,o[0][1])*C,A=Math.max(A,e)}if(s){let e=0;e=!c&&!l||c&&!l&&f?Hl(b+E/C,s[1][1])*C:Ul(b+(c?w:-w)/C,s[0][1])*C,A=Math.max(A,e)}}if(d){let e=Wl(D*C,h,g)/C;if(j=Math.max(j,e),o){let e=0;e=!c&&!l||l&&!c&&f?Ul(y+D*C+O,o[1][0])/C:Hl(y+(l?T:-T)*C+O,o[0][0])/C,j=Math.max(j,e)}if(s){let e=0;e=!c&&!l||l&&!c&&f?Hl(y+D*C,s[1][0])/C:Ul(y+(l?T:-T)*C,s[0][0])/C,j=Math.max(j,e)}}}T+=T<0?j:-j,w+=w<0?A:-A,i&&(f?E>D*C?T=(Gl(c,l)?-w:w)/C:w=(Gl(c,l)?-T:T)*C:u?(T=w/C,l=c):(w=T*C,c=l));let M=c?y+w:y,N=l?b+T:b;return{width:x+(c?-w:w),height:S+(l?-T:T),x:a[0]*w*(c?-1:1)+M,y:a[1]*T*(l?-1:1)+N}}var ql={width:0,height:0,x:0,y:0},Jl={...ql,pointerX:0,pointerY:0,aspectRatio:1};function Yl(e,t,n){let r=t.position.x+e.position.x,i=t.position.y+e.position.y,a=e.measured.width??0,o=e.measured.height??0,s=n[0]*a,c=n[1]*o;return[[r-s,i-c],[r+a-s,i+o-c]]}function Xl({domNode:e,nodeId:t,getStoreItems:n,onChange:r,onEnd:i}){let a=Mr(e),o={controlDirection:Vl(`bottom-right`),boundaries:{minWidth:0,minHeight:0,maxWidth:Number.MAX_VALUE,maxHeight:Number.MAX_VALUE},resizeDirection:void 0,keepAspectRatio:!1};function s({controlPosition:e,boundaries:s,keepAspectRatio:c,resizeDirection:l,onResizeStart:u,onResize:d,onResizeEnd:f,shouldResize:p}){let m={...ql},h={...Jl};o={boundaries:s,resizeDirection:l,keepAspectRatio:c,controlDirection:Vl(e)};let g,_=null,v=[],y,b,x,S=!1,C=qr().on(`start`,e=>{let{nodeLookup:r,transform:i,snapGrid:a,snapToGrid:o,nodeOrigin:s,paneDomNode:c}=n();if(g=r.get(t),!g)return;_=c?.getBoundingClientRect()??null;let{xSnapped:l,ySnapped:d}=fc(e.sourceEvent,{transform:i,snapGrid:a,snapToGrid:o,containerBounds:_});m={width:g.measured.width??0,height:g.measured.height??0,x:g.position.x??0,y:g.position.y??0},h={...m,pointerX:l,pointerY:d,aspectRatio:m.width/m.height},y=void 0,b=ac(g.extent)?g.extent:void 0,g.parentId&&(g.extent===`parent`||g.expandParent)&&(y=r.get(g.parentId)),y&&g.extent===`parent`&&(b=[[0,0],[y.measured.width,y.measured.height]]),v=[],x=void 0;for(let[e,n]of r)if(n.parentId===t&&(v.push({id:e,position:{...n.position},extent:n.extent}),n.extent===`parent`||n.expandParent)){let e=Yl(n,g,n.origin??s);x=x?[[Math.min(e[0][0],x[0][0]),Math.min(e[0][1],x[0][1])],[Math.max(e[1][0],x[1][0]),Math.max(e[1][1],x[1][1])]]:e}u?.(e,{...m})}).on(`drag`,e=>{let{transform:t,snapGrid:i,snapToGrid:a,nodeOrigin:s}=n(),c=fc(e.sourceEvent,{transform:t,snapGrid:i,snapToGrid:a,containerBounds:_}),l=[];if(!g)return;let{x:u,y:f,width:C,height:w}=m,T={},E=g.origin??s,{width:D,height:O,x:k,y:A}=Kl(h,o.controlDirection,c,o.boundaries,o.keepAspectRatio,E,b,x),j=D!==C,M=O!==w,N=k!==u&&j,P=A!==f&&M;if(!N&&!P&&!j&&!M)return;if((N||P||E[0]===1||E[1]===1)&&(T.x=N?k:m.x,T.y=P?A:m.y,m.x=T.x,m.y=T.y,v.length>0)){let e=k-u,t=A-f;for(let n of v)n.position={x:n.position.x-e+E[0]*(D-C),y:n.position.y-t+E[1]*(O-w)},l.push(n)}if((j||M)&&(T.width=j&&(!o.resizeDirection||o.resizeDirection===`horizontal`)?D:m.width,T.height=M&&(!o.resizeDirection||o.resizeDirection===`vertical`)?O:m.height,m.width=T.width,m.height=T.height),y&&g.expandParent){let e=E[0]*(T.width??0);T.x&&T.x<e&&(m.x=e,h.x-=T.x-e);let t=E[1]*(T.height??0);T.y&&T.y<t&&(m.y=t,h.y-=T.y-t)}let F=Bl({width:m.width,prevWidth:C,height:m.height,prevHeight:w,affectsX:o.controlDirection.affectsX,affectsY:o.controlDirection.affectsY}),I={...m,direction:F};p?.(e,I)!==!1&&(S=!0,d?.(e,I),r(T,l))}).on(`end`,e=>{S&&=(f?.(e,{...m}),i?.({...m}),!1)});a.call(C)}function c(){a.on(`.drag`,null)}return{update:s,destroy:c}}var Zl=t((e=>{var t=C();function n(e,t){return e===t&&(e!==0||1/e==1/t)||e!==e&&t!==t}var r=typeof Object.is==`function`?Object.is:n,i=t.useState,a=t.useEffect,o=t.useLayoutEffect,s=t.useDebugValue;function c(e,t){var n=t(),r=i({inst:{value:n,getSnapshot:t}}),c=r[0].inst,u=r[1];return o(function(){c.value=n,c.getSnapshot=t,l(c)&&u({inst:c})},[e,n,t]),a(function(){return l(c)&&u({inst:c}),e(function(){l(c)&&u({inst:c})})},[e]),s(n),n}function l(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!r(e,n)}catch{return!0}}function u(e,t){return t()}var d=typeof window>`u`||window.document===void 0||window.document.createElement===void 0?u:c;e.useSyncExternalStore=t.useSyncExternalStore===void 0?d:t.useSyncExternalStore})),Ql=t(((e,t)=>{t.exports=Zl()})),$l=t((e=>{var t=C(),n=Ql();function r(e,t){return e===t&&(e!==0||1/e==1/t)||e!==e&&t!==t}var i=typeof Object.is==`function`?Object.is:r,a=n.useSyncExternalStore,o=t.useRef,s=t.useEffect,c=t.useMemo,l=t.useDebugValue;e.useSyncExternalStoreWithSelector=function(e,t,n,r,u){var d=o(null);if(d.current===null){var f={hasValue:!1,value:null};d.current=f}else f=d.current;d=c(function(){function e(e){if(!a){if(a=!0,o=e,e=r(e),u!==void 0&&f.hasValue){var t=f.value;if(u(t,e))return s=t}return s=e}if(t=s,i(o,e))return t;var n=r(e);return u!==void 0&&u(t,n)?(o=e,t):(o=e,s=n)}var a=!1,o,s,c=n===void 0?null:n;return[function(){return e(t())},c===null?void 0:function(){return e(c())}]},[t,n,r,u]);var p=a(e,d[0],d[1]);return s(function(){f.hasValue=!0,f.value=p},[p]),l(p),p}})),eu=e(t(((e,t)=>{t.exports=$l()}))(),1),tu=e=>{let t,n=new Set,r=(e,r)=>{let i=typeof e==`function`?e(t):e;if(!Object.is(i,t)){let e=t;t=r??(typeof i!=`object`||!i)?i:Object.assign({},t,i),n.forEach(n=>n(t,e))}},i=()=>t,a={setState:r,getState:i,getInitialState:()=>o,subscribe:e=>(n.add(e),()=>n.delete(e)),destroy:()=>{n.clear()}},o=t=e(r,i,a);return a},nu=e=>e?tu(e):tu,{useDebugValue:ru}=q.default,{useSyncExternalStoreWithSelector:iu}=eu.default,au=e=>e;function ou(e,t=au,n){let r=iu(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,n);return ru(r),r}var su=(e,t)=>{let n=nu(e),r=(e,r=t)=>ou(n,e,r);return Object.assign(r,n),r},cu=(e,t)=>e?su(e,t):su;function Z(e,t){if(Object.is(e,t))return!0;if(typeof e!=`object`||!e||typeof t!=`object`||!t)return!1;if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(let[n,r]of e)if(!Object.is(r,t.get(n)))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(let n of e)if(!t.has(n))return!1;return!0}let n=Object.keys(e);if(n.length!==Object.keys(t).length)return!1;for(let r of n)if(!Object.prototype.hasOwnProperty.call(t,r)||!Object.is(e[r],t[r]))return!1;return!0}var lu=e(D()),uu=(0,q.createContext)(null),du=uu.Provider,fu=ds.error001(`react`);function Q(e,t){let n=(0,q.useContext)(uu);if(n===null)throw Error(fu);return ou(n,e,t)}function $(){let e=(0,q.useContext)(uu);if(e===null)throw Error(fu);return(0,q.useMemo)(()=>({getState:e.getState,setState:e.setState,subscribe:e.subscribe}),[e])}var pu={display:`none`},mu={position:`absolute`,width:1,height:1,margin:-1,border:0,padding:0,overflow:`hidden`,clip:`rect(0px, 0px, 0px, 0px)`,clipPath:`inset(100%)`},hu=`react-flow__node-desc`,gu=`react-flow__edge-desc`,_u=`react-flow__aria-live`,vu=e=>e.ariaLiveMessage,yu=e=>e.ariaLabelConfig;function bu({rfId:e}){let t=Q(vu);return(0,J.jsx)(`div`,{id:`${_u}-${e}`,"aria-live":`assertive`,"aria-atomic":`true`,style:mu,children:t})}function xu({rfId:e,disableKeyboardA11y:t}){let n=Q(yu);return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{id:`${hu}-${e}`,style:pu,children:t?n[`node.a11yDescription.default`]:n[`node.a11yDescription.keyboardDisabled`]}),(0,J.jsx)(`div`,{id:`${gu}-${e}`,style:pu,children:n[`edge.a11yDescription.default`]}),!t&&(0,J.jsx)(bu,{rfId:e})]})}var Su=(0,q.forwardRef)(({position:e=`top-left`,children:t,className:n,style:r,...i},a)=>{let o=`${e}`.split(`-`);return(0,J.jsx)(`div`,{className:Y([`react-flow__panel`,n,...o]),style:r,ref:a,...i,children:t})});Su.displayName=`Panel`;var Cu=`https://reactflow.dev?utm_source=attribution`;function wu({proOptions:e,position:t=`bottom-right`}){return e?.hideAttribution?null:(0,J.jsx)(Su,{position:t,className:`react-flow__attribution`,"data-message":`Please only hide this attribution when you are subscribed to React Flow Pro: ${Cu}`,children:(0,J.jsx)(`a`,{href:Cu,target:`_blank`,rel:`noopener noreferrer`,"aria-label":`React Flow attribution`,children:`React Flow`})})}var Tu=e=>{let t=[],n=[];for(let[,n]of e.nodeLookup)n.selected&&t.push(n.internals.userNode);for(let[,t]of e.edgeLookup)t.selected&&n.push(t);return{selectedNodes:t,selectedEdges:n}},Eu=e=>e.id;function Du(e,t){return Z(e.selectedNodes.map(Eu),t.selectedNodes.map(Eu))&&Z(e.selectedEdges.map(Eu),t.selectedEdges.map(Eu))}function Ou({onSelectionChange:e}){let t=$(),{selectedNodes:n,selectedEdges:r}=Q(Tu,Du);return(0,q.useEffect)(()=>{let i={nodes:n,edges:r};e?.(i),t.getState().onSelectionChangeHandlers.forEach(e=>e(i))},[n,r,e]),null}var ku=e=>!!e.onSelectionChangeHandlers;function Au({onSelectionChange:e}){let t=Q(ku);return e||t?(0,J.jsx)(Ou,{onSelectionChange:e}):null}var ju=[0,0],Mu={x:0,y:0,zoom:1},Nu=[...`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.ariaLabelConfig.zIndexMode`.split(`.`),`rfId`],Pu=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}),Fu={translateExtent:fs,nodeOrigin:ju,minZoom:.5,maxZoom:2,elementsSelectable:!0,noPanClassName:`nopan`,rfId:`1`};function Iu(e){let{setNodes:t,setEdges:n,setMinZoom:r,setMaxZoom:i,setTranslateExtent:a,setNodeExtent:o,reset:s,setDefaultNodesAndEdges:c}=Q(Pu,Z),l=$();(0,q.useEffect)(()=>(c(e.defaultNodes,e.defaultEdges),()=>{u.current=Fu,s()}),[]);let u=(0,q.useRef)(Fu);return(0,q.useEffect)(()=>{for(let s of Nu){let c=e[s];c!==u.current[s]&&e[s]!==void 0&&(s===`nodes`?t(c):s===`edges`?n(c):s===`minZoom`?r(c):s===`maxZoom`?i(c):s===`translateExtent`?a(c):s===`nodeExtent`?o(c):s===`ariaLabelConfig`?l.setState({ariaLabelConfig:dc(c)}):s===`fitView`?l.setState({fitViewQueued:c}):s===`fitViewOptions`?l.setState({fitViewOptions:c}):l.setState({[s]:c}))}u.current=e},Nu.map(t=>e[t])),null}function Lu(){return typeof window>`u`||!window.matchMedia?null:window.matchMedia(`(prefers-color-scheme: dark)`)}function Ru(e){let[t,n]=(0,q.useState)(e===`system`?null:e);return(0,q.useEffect)(()=>{if(e!==`system`){n(e);return}let t=Lu(),r=()=>n(t?.matches?`dark`:`light`);return r(),t?.addEventListener(`change`,r),()=>{t?.removeEventListener(`change`,r)}},[e]),t===null?Lu()?.matches?`dark`:`light`:t}var zu=typeof document<`u`?document:null;function Bu(e=null,t={target:zu,actInsideInputWithModifier:!0}){let[n,r]=(0,q.useState)(!1),i=(0,q.useRef)(!1),a=(0,q.useRef)(new Set([])),[o,s]=(0,q.useMemo)(()=>{if(e!==null){let t=(Array.isArray(e)?e:[e]).filter(e=>typeof e==`string`).map(e=>e.replace(/\+/g,`
|
|
3
|
+
`).replace(`
|
|
4
|
+
|
|
5
|
+
`,`
|
|
6
|
+
+`).split(`
|
|
7
|
+
`));return[t,t.reduce((e,t)=>e.concat(...t),[])]}return[[],[]]},[e]);return(0,q.useEffect)(()=>{let n=t?.target??zu,c=t?.actInsideInputWithModifier??!0;if(e!==null){let e=e=>{if(i.current=e.ctrlKey||e.metaKey||e.shiftKey||e.altKey,(!i.current||i.current&&!c)&&gc(e))return!1;let n=Hu(e.code,s);if(a.current.add(e[n]),Vu(o,a.current,!1)){let n=e.composedPath?.()?.[0]||e.target,a=n?.nodeName===`BUTTON`||n?.nodeName===`A`;t.preventDefault!==!1&&(i.current||!a)&&e.preventDefault(),r(!0)}},l=e=>{let t=Hu(e.code,s);Vu(o,a.current,!0)?(r(!1),a.current.clear()):a.current.delete(e[t]),e.key===`Meta`&&a.current.clear(),i.current=!1},u=()=>{a.current.clear(),r(!1)};return n?.addEventListener(`keydown`,e),n?.addEventListener(`keyup`,l),window.addEventListener(`blur`,u),window.addEventListener(`contextmenu`,u),()=>{n?.removeEventListener(`keydown`,e),n?.removeEventListener(`keyup`,l),window.removeEventListener(`blur`,u),window.removeEventListener(`contextmenu`,u)}}},[e,r]),n}function Vu(e,t,n){return e.filter(e=>n||e.length===t.size).some(e=>e.every(e=>t.has(e)))}function Hu(e,t){return t.includes(e)?`code`:`key`}var Uu=()=>{let e=$();return(0,q.useMemo)(()=>({zoomIn:async t=>{let{panZoom:n}=e.getState();return n?n.scaleBy(1.2,t):!1},zoomOut:async t=>{let{panZoom:n}=e.getState();return n?n.scaleBy(1/1.2,t):!1},zoomTo:async(t,n)=>{let{panZoom:r}=e.getState();return r?r.scaleTo(t,n):!1},getZoom:()=>e.getState().transform[2],setViewport:async(t,n)=>{let{transform:[r,i,a],panZoom:o}=e.getState();return o?(await o.setViewport({x:t.x??r,y:t.y??i,zoom:t.zoom??a},n),!0):!1},getViewport:()=>{let[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)=>{let{width:r,height:i,minZoom:a,maxZoom:o,panZoom:s}=e.getState(),c=rc(t,r,i,a,o,n?.padding??.1);return s?(await s.setViewport(c,{duration:n?.duration,ease:n?.ease,interpolate:n?.interpolate}),!0):!1},screenToFlowPosition:(t,n={})=>{let{transform:r,snapGrid:i,snapToGrid:a,domNode:o}=e.getState();if(!o)return t;let{x:s,y:c}=o.getBoundingClientRect(),l={x:t.x-s,y:t.y-c},u=n.snapGrid??i;return Qs(l,r,n.snapToGrid??a,u)},flowToScreenPosition:t=>{let{transform:n,domNode:r}=e.getState();if(!r)return t;let{x:i,y:a}=r.getBoundingClientRect(),o=$s(t,n);return{x:o.x+i,y:o.y+a}}}),[])};function Wu(e,t){let n=[],r=new Map,i=[];for(let t of e)if(t.type===`add`){i.push(t);continue}else if(t.type===`remove`||t.type===`replace`)r.set(t.id,[t]);else{let e=r.get(t.id);e?e.push(t):r.set(t.id,[t])}for(let e of t){let t=r.get(e.id);if(!t){n.push(e);continue}if(t[0].type===`remove`)continue;if(t[0].type===`replace`){n.push({...t[0].item});continue}let i={...e};for(let e of t)Gu(e,i);n.push(i)}return i.length&&i.forEach(e=>{e.index===void 0?n.push({...e.item}):n.splice(e.index,0,{...e.item})}),n}function Gu(e,t){switch(e.type){case`select`:t.selected=e.selected;break;case`position`:e.position!==void 0&&(t.position=e.position),e.dragging!==void 0&&(t.dragging=e.dragging);break;case`dimensions`:e.dimensions!==void 0&&(t.measured={...e.dimensions},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)}}function Ku(e,t){return Wu(e,t)}function qu(e,t){return Wu(e,t)}function Ju(e,t){return{id:e,type:`select`,selected:t}}function Yu(e,t=new Set,n=!1){let r=[];for(let[i,a]of e){let e=t.has(i);!(a.selected===void 0&&!e)&&a.selected!==e&&(n&&(a.selected=e),r.push(Ju(a.id,e)))}return r}function Xu({items:e=[],lookup:t}){let n=[],r=new Map(e.map(e=>[e.id,e]));for(let[r,i]of e.entries()){let e=t.get(i.id),a=e?.internals?.userNode??e;a!==void 0&&a!==i&&n.push({id:i.id,item:i,type:`replace`}),a===void 0&&n.push({item:i,type:`add`,index:r})}for(let[e]of t)r.get(e)===void 0&&n.push({id:e,type:`remove`});return n}function Zu(e){return{id:e.id,type:`remove`}}var Qu=Xs(`React Flow`,`https://reactflow.dev/`);function $u(e,t,n={}){return kc(e,t,{...n,onError:n.onError??Qu})}var ed=e=>ws(e),td=e=>Cs(e);function nd(e){return(0,q.forwardRef)(e)}var rd=typeof window<`u`?q.useLayoutEffect:q.useEffect;function id(e){let[t,n]=(0,q.useState)(BigInt(0)),[r]=(0,q.useState)(()=>ad(()=>n(e=>e+BigInt(1))));return rd(()=>{let t=r.get();t.length&&(e(t),r.reset())},[t]),r}function ad(e){let t=[];return{get:()=>t,reset:()=>{t=[]},push:n=>{t.push(n),e()}}}var od=(0,q.createContext)(null);function sd({children:e}){let t=$(),n=id((0,q.useCallback)(e=>{let{nodes:n=[],setNodes:r,hasDefaultNodes:i,onNodesChange:a,nodeLookup:o,fitViewQueued:s,onNodesChangeMiddlewareMap:c}=t.getState(),l=n;for(let t of e)l=typeof t==`function`?t(l):t;let u=Xu({items:l,lookup:o});for(let e of c.values())u=e(u);i&&r(l),u.length>0?a?.(u):s&&window.requestAnimationFrame(()=>{let{fitViewQueued:e,nodes:n,setNodes:r}=t.getState();e&&r(n)})},[])),r=id((0,q.useCallback)(e=>{let{edges:n=[],setEdges:r,hasDefaultEdges:i,onEdgesChange:a,edgeLookup:o}=t.getState(),s=n;for(let t of e)s=typeof t==`function`?t(s):t;i?r(s):a&&a(Xu({items:s,lookup:o}))},[])),i=(0,q.useMemo)(()=>({nodeQueue:n,edgeQueue:r}),[]);return(0,J.jsx)(od.Provider,{value:i,children:e})}function cd(){let e=(0,q.useContext)(od);if(!e)throw Error(`useBatchContext must be used within a BatchProvider`);return e}var ld=e=>!!e.panZoom;function ud(){let e=Uu(),t=$(),n=cd(),r=Q(ld),i=(0,q.useMemo)(()=>{let e=e=>t.getState().nodeLookup.get(e),r=e=>{n.nodeQueue.push(e)},i=e=>{n.edgeQueue.push(e)},a=e=>{let{nodeLookup:n,nodeOrigin:r}=t.getState(),i=ed(e)?e:n.get(e.id),a=i.parentId?cc(i.position,i.measured,i.parentId,n,r):i.position;return Us({...i,position:a,width:i.measured?.width??i.width,height:i.measured?.height??i.height})},o=(e,t,n={replace:!1})=>{r(r=>r.map(r=>{if(r.id===e){let e=typeof t==`function`?t(r):t;return n.replace&&ed(e)?e:{...r,...e}}return r}))},s=(e,t,n={replace:!1})=>{i(r=>r.map(r=>{if(r.id===e){let e=typeof t==`function`?t(r):t;return n.replace&&td(e)?e:{...r,...e}}return r}))};return{getNodes:()=>t.getState().nodes.map(e=>({...e})),getNode:t=>e(t)?.internals.userNode,getInternalNode:e,getEdges:()=>{let{edges:e=[]}=t.getState();return e.map(e=>({...e}))},getEdge:e=>t.getState().edgeLookup.get(e),setNodes:r,setEdges:i,addNodes:e=>{let t=Array.isArray(e)?e:[e];n.nodeQueue.push(e=>[...e,...t])},addEdges:e=>{let t=Array.isArray(e)?e:[e];n.edgeQueue.push(e=>[...e,...t])},toObject:()=>{let{nodes:e=[],edges:n=[],transform:r}=t.getState(),[i,a,o]=r;return{nodes:e.map(e=>({...e})),edges:n.map(e=>({...e})),viewport:{x:i,y:a,zoom:o}}},deleteElements:async({nodes:e=[],edges:n=[]})=>{let{nodes:r,edges:i,onNodesDelete:a,onEdgesDelete:o,triggerNodeChanges:s,triggerEdgeChanges:c,onDelete:l,onBeforeDelete:u}=t.getState(),{nodes:d,edges:f}=await Ps({nodesToRemove:e,edgesToRemove:n,nodes:r,edges:i,onBeforeDelete:u}),p=f.length>0,m=d.length>0;if(p){let e=f.map(Zu);o?.(f),c(e)}if(m){let e=d.map(Zu);a?.(d),s(e)}return(m||p)&&l?.({nodes:d,edges:f}),{deletedNodes:d,deletedEdges:f}},getIntersectingNodes:(e,n=!0,r)=>{let i=Js(e),o=i?e:a(e),s=r!==void 0;return o?(r||t.getState().nodes).filter(r=>{let a=t.getState().nodeLookup.get(r.id);if(a&&!i&&(r.id===e.id||!a.internals.positionAbsolute))return!1;let c=Us(s?r:a),l=qs(c,o);return n&&l>0||l>=c.width*c.height||l>=o.width*o.height}):[]},isNodeIntersecting:(e,t,n=!0)=>{let r=Js(e)?e:a(e);if(!r)return!1;let i=qs(r,t);return n&&i>0||i>=t.width*t.height||i>=r.width*r.height},updateNode:o,updateNodeData:(e,t,n={replace:!1})=>{o(e,e=>{let r=typeof t==`function`?t(e):t;return n.replace?{...e,data:r}:{...e,data:{...e.data,...r}}},n)},updateEdge:s,updateEdgeData:(e,t,n={replace:!1})=>{s(e,e=>{let r=typeof t==`function`?t(e):t;return n.replace?{...e,data:r}:{...e,data:{...e.data,...r}}},n)},getNodesBounds:e=>{let{nodeLookup:n,nodeOrigin:r}=t.getState();return Ds(e,{nodeLookup:n,nodeOrigin:r})},getHandleConnections:({type:e,id:n,nodeId:r})=>Array.from(t.getState().connectionLookup.get(`${r}-${e}${n?`-${n}`:``}`)?.values()??[]),getNodeConnections:({type:e,handleId:n,nodeId:r})=>Array.from(t.getState().connectionLookup.get(`${r}${e?n?`-${e}-${n}`:`-${e}`:``}`)?.values()??[]),fitView:async e=>{let r=t.getState().fitViewResolver??uc();return t.setState({fitViewQueued:!0,fitViewOptions:e,fitViewResolver:r}),n.nodeQueue.push(e=>[...e]),r.promise}}},[]);return(0,q.useMemo)(()=>({...i,...e,viewportInitialized:r}),[r])}var dd=e=>e.selected,fd=typeof window<`u`?window:void 0;function pd({deleteKeyCode:e,multiSelectionKeyCode:t}){let n=$(),{deleteElements:r}=ud(),i=Bu(e,{actInsideInputWithModifier:!1}),a=Bu(t,{target:fd});(0,q.useEffect)(()=>{if(i){let{edges:e,nodes:t}=n.getState();r({nodes:t.filter(dd),edges:e.filter(dd)}),n.setState({nodesSelectionActive:!1})}},[i]),(0,q.useEffect)(()=>{n.setState({multiSelectionActive:a})},[a])}function md(e){let t=$();(0,q.useEffect)(()=>{let n=()=>{if(!e.current||!(e.current.checkVisibility?.()??!0))return!1;let n=pc(e.current);(n.height===0||n.width===0)&&t.getState().onError?.(`004`,ds.error004()),t.setState({width:n.width||500,height:n.height||500})};if(e.current){n(),window.addEventListener(`resize`,n);let t=new ResizeObserver(()=>n());return t.observe(e.current),()=>{window.removeEventListener(`resize`,n),t&&e.current&&t.unobserve(e.current)}}},[])}var hd={position:`absolute`,width:`100%`,height:`100%`,top:0,left:0},gd=e=>({userSelectionActive:e.userSelectionActive,lib:e.lib,connectionInProgress:e.connection.inProgress});function _d({onPaneContextMenu:e,zoomOnScroll:t=!0,zoomOnPinch:n=!0,panOnScroll:r=!1,panActivationKeyPressed:i,panOnScrollSpeed:a=.5,panOnScrollMode:o=gs.Free,zoomOnDoubleClick:s=!0,panOnDrag:c=!0,defaultViewport:l,translateExtent:u,minZoom:d,maxZoom:f,zoomActivationKeyCode:p,preventScrolling:m=!0,children:h,noWheelClassName:g,noPanClassName:_,onViewportChange:v,isControlledViewport:y,paneClickDistance:b,selectionOnDrag:x}){let S=$(),C=(0,q.useRef)(null),{userSelectionActive:w,lib:T,connectionInProgress:E}=Q(gd,Z),D=Bu(p),O=(0,q.useRef)();md(C);let k=(0,q.useCallback)(e=>{v?.({x:e[0],y:e[1],zoom:e[2]}),y||S.setState({transform:e})},[v,y]);return(0,q.useEffect)(()=>{if(C.current){O.current=Rl({domNode:C.current,minZoom:d,maxZoom:f,translateExtent:u,viewport:l,onDraggingChange:e=>S.setState(t=>t.paneDragging===e?t:{paneDragging:e}),onPanZoomStart:(e,t)=>{let{onViewportChangeStart:n,onMoveStart:r}=S.getState();r?.(e,t),n?.(t)},onPanZoom:(e,t)=>{let{onViewportChange:n,onMove:r}=S.getState();r?.(e,t),n?.(t)},onPanZoomEnd:(e,t)=>{let{onViewportChangeEnd:n,onMoveEnd:r}=S.getState();r?.(e,t),n?.(t)}});let{x:e,y:t,zoom:n}=O.current.getViewport();return S.setState({panZoom:O.current,transform:[e,t,n],domNode:C.current.closest(`.react-flow`)}),()=>{O.current?.destroy()}}},[]),(0,q.useEffect)(()=>{O.current?.update({onPaneContextMenu:e,zoomOnScroll:t,zoomOnPinch:n,panOnScroll:r,panActivationKeyPressed:i,panOnScrollSpeed:a,panOnScrollMode:o,zoomOnDoubleClick:s,panOnDrag:c,zoomActivationKeyPressed:D,preventScrolling:m,noPanClassName:_,userSelectionActive:w,noWheelClassName:g,lib:T,onTransformChange:k,connectionInProgress:E,selectionOnDrag:x,paneClickDistance:b})},[e,t,n,r,i,a,o,s,c,D,m,_,w,g,T,k,E,x,b]),(0,J.jsx)(`div`,{className:`react-flow__renderer`,ref:C,style:hd,children:h})}var vd=e=>({userSelectionActive:e.userSelectionActive,userSelectionRect:e.userSelectionRect});function yd(){let{userSelectionActive:e,userSelectionRect:t}=Q(vd,Z);return e&&t?(0,J.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}var bd=(e,t)=>n=>{n.target===t.current&&e?.(n)},xd=e=>({userSelectionActive:e.userSelectionActive,elementsSelectable:e.elementsSelectable,dragging:e.paneDragging,panBy:e.panBy,autoPanSpeed:e.autoPanSpeed});function Sd({isSelecting:e,selectionKeyPressed:t,selectionMode:n=_s.Full,panOnDrag:r,autoPanOnSelection:i,paneClickDistance:a,selectionOnDrag:o,onSelectionStart:s,onSelectionEnd:c,onPaneClick:l,onPaneContextMenu:u,onPaneScroll:d,onPaneMouseEnter:f,onPaneMouseMove:p,onPaneMouseLeave:m,children:h}){let g=(0,q.useRef)(0),_=$(),{userSelectionActive:v,elementsSelectable:y,dragging:b,panBy:x,autoPanSpeed:S}=Q(xd,Z),C=y&&(e||v),w=(0,q.useRef)(null),T=(0,q.useRef)(),E=(0,q.useRef)(new Set),D=(0,q.useRef)(new Set),O=(0,q.useRef)(!1),k=(0,q.useRef)(!1),A=(0,q.useRef)({x:0,y:0}),j=(0,q.useRef)(!1),M=e=>{if(k.current||O.current||_.getState().connection.inProgress){k.current=!1,O.current=!1;return}l?.(e),_.getState().resetSelectedElements(),_.setState({nodesSelectionActive:!1})},N=e=>{if(Array.isArray(r)&&r?.includes(2)){e.preventDefault();return}u?.(e)},P=d?e=>d(e):void 0,F=e=>{k.current&&=(e.stopPropagation(),!1)},I=n=>{if(n.pointerType===`touch`&&r!==!1&&!t)return;let{domNode:i,transform:a}=_.getState();if(T.current=i?.getBoundingClientRect(),!T.current)return;let s=n.target===w.current;if(!s&&n.target.closest(`.nokey`)||!e||!(o&&s||t)||n.button!==0||!n.isPrimary)return;n.target?.setPointerCapture?.(n.pointerId),k.current=!1;let{x:c,y:l}=vc(n.nativeEvent,T.current),u=Qs({x:c,y:l},a);_.setState({userSelectionRect:{width:0,height:0,startX:u.x,startY:u.y,x:c,y:l}}),s||(n.stopPropagation(),n.preventDefault())};function L(e,t){let{userSelectionRect:r}=_.getState();if(!r)return;let{transform:i,nodeLookup:a,edgeLookup:o,connectionLookup:s,triggerNodeChanges:c,triggerEdgeChanges:l,defaultEdgeOptions:u}=_.getState(),d={x:r.startX,y:r.startY},{x:f,y:p}=$s(d,i),m={startX:d.x,startY:d.y,x:e<f?e:f,y:t<p?t:p,width:Math.abs(e-f),height:Math.abs(t-p)},h=E.current,g=D.current;E.current=new Set(ks(a,m,i,n===_s.Partial,!0).map(e=>e.id)),D.current=new Set;let v=u?.selectable??!0;for(let e of E.current){let t=s.get(e);if(t)for(let{edgeId:e}of t.values()){let t=o.get(e);t&&(t.selectable??v)&&D.current.add(e)}}lc(h,E.current)||c(Yu(a,E.current,!0)),lc(g,D.current)||l(Yu(o,D.current)),_.setState({userSelectionRect:m,userSelectionActive:!0,nodesSelectionActive:!1})}function R(){if(!i||!T.current)return;let[e,t]=zs(A.current,T.current,S);x({x:e,y:t}).then(e=>{if(!k.current||!e){g.current=requestAnimationFrame(R);return}let{x:t,y:n}=A.current;L(t,n),g.current=requestAnimationFrame(R)})}let z=()=>{cancelAnimationFrame(g.current),g.current=0,j.current=!1};(0,q.useEffect)(()=>()=>z(),[]);let B=e=>{let{userSelectionRect:n,transform:r,resetSelectedElements:i}=_.getState();if(!T.current||!n)return;let{x:o,y:c}=vc(e.nativeEvent,T.current);A.current={x:o,y:c};let l=$s({x:n.startX,y:n.startY},r);if(!k.current){let n=t?0:a;if(Math.hypot(o-l.x,c-l.y)<=n)return;i(),s?.(e)}k.current=!0,j.current||=(R(),!0),L(o,c)},ee=e=>{if(!C){e.target===w.current&&_.getState().connection.inProgress&&(O.current=!0);return}e.button===0&&(e.target?.releasePointerCapture?.(e.pointerId),!v&&e.target===w.current&&_.getState().userSelectionRect&&M?.(e),_.setState({userSelectionActive:!1,userSelectionRect:null}),k.current&&(c?.(e),_.setState({nodesSelectionActive:E.current.size>0})),z())},V=e=>{e.target?.releasePointerCapture?.(e.pointerId),z()},te=r===!0||Array.isArray(r)&&r.includes(0);return(0,J.jsxs)(`div`,{className:Y([`react-flow__pane`,{draggable:te,dragging:b,selection:e}]),onClick:C?void 0:bd(M,w),onContextMenu:bd(N,w),onWheel:bd(P,w),onPointerEnter:C?void 0:f,onPointerMove:C?B:p,onPointerUp:ee,onPointerCancel:C?V:void 0,onPointerDownCapture:C?I:void 0,onClickCapture:C?F:void 0,onPointerLeave:m,ref:w,style:hd,children:[h,(0,J.jsx)(yd,{})]})}function Cd({id:e,store:t,unselect:n=!1,nodeRef:r}){let{addSelectedNodes:i,unselectNodesAndEdges:a,multiSelectionActive:o,nodeLookup:s,onError:c}=t.getState(),l=s.get(e);if(!l){c?.(`012`,ds.error012(e));return}t.setState({nodesSelectionActive:!1}),l.selected?(n||l.selected&&o)&&(a({nodes:[l],edges:[]}),requestAnimationFrame(()=>r?.current?.blur())):i([e])}function wd({nodeRef:e,disabled:t=!1,noDragClassName:n,handleSelector:r,nodeId:i,isSelectable:a,nodeClickDistance:o}){let s=$(),[c,l]=(0,q.useState)(!1),u=(0,q.useRef)();return(0,q.useEffect)(()=>{if(!t)return u.current=pl({getStoreItems:()=>s.getState(),onNodeMouseDown:t=>{Cd({id:t,store:s,nodeRef:e})},onDragStart:()=>{l(!0)},onDragStop:()=>{l(!1)}}),()=>{u.current?.destroy(),u.current=void 0}},[t,s,e]),(0,q.useEffect)(()=>{t||!e.current||!u.current||u.current.update({noDragClassName:n,handleSelector:r,domNode:e.current,isSelectable:a,nodeId:i,nodeClickDistance:o})},[n,r,t,a,e,i,o]),c}var Td=e=>t=>t.selected&&(t.draggable||e&&t.draggable===void 0);function Ed(){let e=$();return(0,q.useCallback)(t=>{let{nodeExtent:n,snapToGrid:r,snapGrid:i,nodesDraggable:a,onError:o,updateNodePositions:s,nodeLookup:c,nodeOrigin:l}=e.getState(),u=new Map,d=Td(a),f=r?i[0]:5,p=r?i[1]:5,m=t.direction.x*f*t.factor,h=t.direction.y*p*t.factor;for(let[,e]of c){if(!d(e))continue;let t={x:e.internals.positionAbsolute.x+m,y:e.internals.positionAbsolute.y+h};r&&(t=Zs(t,i));let{position:a,positionAbsolute:s}=Ns({nodeId:e.id,nextPosition:t,nodeLookup:c,nodeExtent:n,nodeOrigin:l,onError:o});e.position=a,e.internals.positionAbsolute=s,u.set(e.id,e)}s(u)},[])}var Dd=(0,q.createContext)(null),Od=Dd.Provider;Dd.Consumer;var kd=()=>(0,q.useContext)(Dd),Ad=e=>({connectOnClick:e.connectOnClick,noPanClassName:e.noPanClassName,rfId:e.rfId}),jd=(0,q.createContext)(null);function Md({children:e}){let t=Q(Ad,Z);return(0,J.jsx)(jd.Provider,{value:t,children:e})}function Nd(){let e=(0,q.useContext)(jd);if(!e)throw Error(`useHandleConfig must be used within a HandleConfigProvider`);return e}var Pd={connectingFrom:!1,connectingTo:!1,clickConnecting:!1,isPossibleEndHandle:!0,connectionInProcess:!1,clickConnectionInProcess:!1,valid:!1},Fd=(e,t,n)=>r=>{let{connectionClickStartHandle:i,connectionMode:a,connection:o}=r,{fromHandle:s,toHandle:c,isValid:l}=o;if(!s&&!i)return Pd;let u=c?.nodeId===e&&c?.id===t&&c?.type===n;return{connectingFrom:s?.nodeId===e&&s?.id===t&&s?.type===n,connectingTo:u,clickConnecting:i?.nodeId===e&&i?.id===t&&i?.type===n,isPossibleEndHandle:a===hs.Strict?s?.type!==n:e!==s?.nodeId||t!==s?.id,connectionInProcess:!!s,clickConnectionInProcess:!!i,valid:u&&l}};function Id({type:e=`source`,position:t=X.Top,isValidConnection:n,isConnectable:r=!0,isConnectableStart:i=!0,isConnectableEnd:a=!0,id:o,onConnect:s,children:c,className:l,onMouseDown:u,onTouchStart:d,...f},p){let m=o||null,h=e===`target`,g=$(),_=kd(),{connectOnClick:v,noPanClassName:y,rfId:b}=Nd(),{connectingFrom:x,connectingTo:S,clickConnecting:C,isPossibleEndHandle:w,connectionInProcess:T,clickConnectionInProcess:E,valid:D}=Q(Fd(_,m,e),Z);_||g.getState().onError?.(`010`,ds.error010());let O=e=>{let{defaultEdgeOptions:t,onConnect:n,hasDefaultEdges:r}=g.getState(),i={...t,...e};if(r){let{edges:e,setEdges:t,onError:n}=g.getState();t($u(i,e,{onError:n}))}n?.(i),s?.(i)},k=e=>{if(!_)return;let t=_c(e.nativeEvent);if(i&&(t&&e.button===0||!t)){let t=g.getState();Cl.onPointerDown(e.nativeEvent,{handleDomNode:e.currentTarget,autoPanOnConnect:t.autoPanOnConnect,connectionMode:t.connectionMode,connectionRadius:t.connectionRadius,domNode:t.domNode,nodeLookup:t.nodeLookup,lib:t.lib,isTarget:h,handleId:m,nodeId:_,flowId:t.rfId,panBy:t.panBy,cancelConnection:t.cancelConnection,onConnectStart:t.onConnectStart,onConnectEnd:(...e)=>g.getState().onConnectEnd?.(...e),updateConnection:t.updateConnection,onConnect:O,isValidConnection:n||((...e)=>g.getState().isValidConnection?.(...e)??!0),getTransform:()=>g.getState().transform,getFromHandle:()=>g.getState().connection.fromHandle,autoPanSpeed:t.autoPanSpeed,dragThreshold:t.connectionDragThreshold})}t?u?.(e):d?.(e)};return(0,J.jsx)(`div`,{"data-handleid":m,"data-nodeid":_,"data-handlepos":t,"data-id":`${b}-${_}-${m}-${e}`,className:Y([`react-flow__handle`,`react-flow__handle-${t}`,`nodrag`,y,l,{source:!h,target:h,connectable:r,connectablestart:i,connectableend:a,clickconnecting:C,connectingfrom:x,connectingto:S,valid:D,connectionindicator:r&&(!T||w)&&(T||E?a:i)}]),onMouseDown:k,onTouchStart:k,onClick:v?t=>{let{onClickConnectStart:r,onClickConnectEnd:a,connectionClickStartHandle:o,connectionMode:s,isValidConnection:c,lib:l,rfId:u,nodeLookup:d,connection:f}=g.getState();if(!_||!o&&!i)return;if(!o){r?.(t.nativeEvent,{nodeId:_,handleId:m,handleType:e}),g.setState({connectionClickStartHandle:{nodeId:_,type:e,id:m}});return}let p=mc(t.target),h=n||c,{connection:v,isValid:y}=Cl.isValid(t.nativeEvent,{handle:{nodeId:_,id:m,type:e},connectionMode:s,fromNodeId:o.nodeId,fromHandleId:o.id||null,fromType:o.type,isValidConnection:h,flowId:u,doc:p,lib:l,nodeLookup:d});y&&v&&O(v);let b=structuredClone(f);delete b.inProgress,b.toPosition=b.toHandle?b.toHandle.position:null,a?.(t,b),g.setState({connectionClickStartHandle:null})}:void 0,ref:p,...f,children:c})}var Ld=(0,q.memo)(nd(Id));function Rd({data:e,isConnectable:t,sourcePosition:n=X.Bottom}){return(0,J.jsxs)(J.Fragment,{children:[e?.label,(0,J.jsx)(Ld,{type:`source`,position:n,isConnectable:t})]})}function zd({data:e,isConnectable:t,targetPosition:n=X.Top,sourcePosition:r=X.Bottom}){return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Ld,{type:`target`,position:n,isConnectable:t}),e?.label,(0,J.jsx)(Ld,{type:`source`,position:r,isConnectable:t})]})}function Bd(){return null}function Vd({data:e,isConnectable:t,targetPosition:n=X.Top}){return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Ld,{type:`target`,position:n,isConnectable:t}),e?.label]})}var Hd={ArrowUp:{x:0,y:-1},ArrowDown:{x:0,y:1},ArrowLeft:{x:-1,y:0},ArrowRight:{x:1,y:0}},Ud={input:Rd,default:zd,output:Vd,group:Bd};function Wd(e){return e.internals.handleBounds===void 0?{width:e.width??e.initialWidth??e.style?.width,height:e.height??e.initialHeight??e.style?.height}:{width:e.width??e.style?.width,height:e.height??e.style?.height}}var Gd=e=>{let{width:t,height:n,x:r,y:i}=Os(e.nodeLookup,{filter:e=>!!e.selected});return{width:Ys(t)?t:null,height:Ys(n)?n:null,userSelectionActive:e.userSelectionActive,transformString:`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]}) translate(${r}px,${i}px)`}};function Kd({onSelectionContextMenu:e,noPanClassName:t,disableKeyboardA11y:n}){let r=$(),{width:i,height:a,transformString:o,userSelectionActive:s}=Q(Gd,Z),c=Ed(),l=(0,q.useRef)(null);(0,q.useEffect)(()=>{n||l.current?.focus({preventScroll:!0})},[n]);let u=!s&&i!==null&&a!==null;if(wd({nodeRef:l,disabled:!u}),!u)return null;let d=e?t=>{e(t,r.getState().nodes.filter(e=>e.selected))}:void 0;return(0,J.jsx)(`div`,{className:Y([`react-flow__nodesselection`,`react-flow__container`,t]),style:{transform:o},children:(0,J.jsx)(`div`,{ref:l,className:`react-flow__nodesselection-rect`,onContextMenu:d,tabIndex:n?void 0:-1,onKeyDown:n?void 0:e=>{Object.prototype.hasOwnProperty.call(Hd,e.key)&&(e.preventDefault(),c({direction:Hd[e.key],factor:e.shiftKey?4:1}))},style:{width:i,height:a}})})}var qd=typeof window<`u`?window:void 0,Jd=e=>({nodesSelectionActive:e.nodesSelectionActive,userSelectionActive:e.userSelectionActive});function Yd({children:e,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:r,onPaneMouseLeave:i,onPaneContextMenu:a,onPaneScroll:o,paneClickDistance:s,deleteKeyCode:c,selectionKeyCode:l,selectionOnDrag:u,selectionMode:d,onSelectionStart:f,onSelectionEnd:p,multiSelectionKeyCode:m,panActivationKeyCode:h,zoomActivationKeyCode:g,elementsSelectable:_,zoomOnScroll:v,zoomOnPinch:y,panOnScroll:b,panOnScrollSpeed:x,panOnScrollMode:S,zoomOnDoubleClick:C,panOnDrag:w,autoPanOnSelection:T,defaultViewport:E,translateExtent:D,minZoom:O,maxZoom:k,preventScrolling:A,onSelectionContextMenu:j,noWheelClassName:M,noPanClassName:N,disableKeyboardA11y:P,onViewportChange:F,isControlledViewport:I}){let{nodesSelectionActive:L,userSelectionActive:R}=Q(Jd,Z),z=Bu(l,{target:qd}),B=Bu(h,{target:qd}),ee=B||w,V=B||b,te=u&&ee!==!0,H=z||R||te;return pd({deleteKeyCode:c,multiSelectionKeyCode:m}),(0,J.jsx)(_d,{onPaneContextMenu:a,elementsSelectable:_,zoomOnScroll:v,zoomOnPinch:y,panOnScroll:V,panActivationKeyPressed:B,panOnScrollSpeed:x,panOnScrollMode:S,zoomOnDoubleClick:C,panOnDrag:!z&&ee,defaultViewport:E,translateExtent:D,minZoom:O,maxZoom:k,zoomActivationKeyCode:g,preventScrolling:A,noWheelClassName:M,noPanClassName:N,onViewportChange:F,isControlledViewport:I,paneClickDistance:s,selectionOnDrag:te,children:(0,J.jsxs)(Sd,{onSelectionStart:f,onSelectionEnd:p,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:r,onPaneMouseLeave:i,onPaneContextMenu:a,onPaneScroll:o,panOnDrag:ee,autoPanOnSelection:T,isSelecting:!!H,selectionMode:d,selectionKeyPressed:z,paneClickDistance:s,selectionOnDrag:te,children:[e,L&&(0,J.jsx)(Kd,{onSelectionContextMenu:j,noPanClassName:N,disableKeyboardA11y:P})]})})}Yd.displayName=`FlowRenderer`;var Xd=(0,q.memo)(Yd),Zd=e=>t=>e?ks(t.nodeLookup,{x:0,y:0,width:t.width,height:t.height},t.transform,!0).map(e=>e.id):Array.from(t.nodeLookup.keys());function Qd(e){return Q((0,q.useCallback)(Zd(e),[e]),Z)}var $d=e=>e.updateNodeInternals;function ef(){let e=Q($d),[t]=(0,q.useState)(()=>typeof ResizeObserver>`u`?null:new ResizeObserver(t=>{let n=new Map;t.forEach(e=>{let t=e.target.getAttribute(`data-id`);n.set(t,{id:t,nodeElement:e.target,force:!0})}),e(n)}));return(0,q.useEffect)(()=>()=>{t?.disconnect()},[t]),t}function tf({node:e,nodeType:t,hasDimensions:n,resizeObserver:r}){let i=$(),a=(0,q.useRef)(null),o=(0,q.useRef)(null),s=(0,q.useRef)(e.sourcePosition),c=(0,q.useRef)(e.targetPosition),l=(0,q.useRef)(t),u=n&&!!e.internals.handleBounds;return(0,q.useEffect)(()=>{a.current&&!e.hidden&&(!u||o.current!==a.current)&&(o.current&&r?.unobserve(o.current),r?.observe(a.current),o.current=a.current)},[u,e.hidden]),(0,q.useEffect)(()=>()=>{o.current&&=(r?.unobserve(o.current),null)},[]),(0,q.useEffect)(()=>{if(a.current){let n=l.current!==t,r=s.current!==e.sourcePosition,o=c.current!==e.targetPosition;(n||r||o)&&(l.current=t,s.current=e.sourcePosition,c.current=e.targetPosition,i.getState().updateNodeInternals(new Map([[e.id,{id:e.id,nodeElement:a.current,force:!0}]])))}},[e.id,t,e.sourcePosition,e.targetPosition]),a}function nf({id:e,onClick:t,onMouseEnter:n,onMouseMove:r,onMouseLeave:i,onContextMenu:a,onDoubleClick:o,nodesDraggable:s,elementsSelectable:c,nodesConnectable:l,nodesFocusable:u,resizeObserver:d,noDragClassName:f,noPanClassName:p,disableKeyboardA11y:m,rfId:h,nodeTypes:g,nodeClickDistance:_,onError:v}){let{node:y,internals:b,isParent:x}=Q(t=>{let n=t.nodeLookup.get(e),r=t.parentLookup.has(e);return{node:n,internals:n.internals,isParent:r}},Z),S=y.type||`default`,C=g?.[S]||Ud[S];C===void 0&&(v?.(`003`,ds.error003(S)),S=`default`,C=g?.default||Ud.default);let w=!!(y.draggable||s&&y.draggable===void 0),T=!!(y.selectable||c&&y.selectable===void 0),E=!!(y.connectable||l&&y.connectable===void 0),D=!!(y.focusable||u&&y.focusable===void 0),O=$(),k=sc(y),A=tf({node:y,nodeType:S,hasDimensions:k,resizeObserver:d}),j=wd({nodeRef:A,disabled:y.hidden||!w,noDragClassName:f,handleSelector:y.dragHandle,nodeId:e,isSelectable:T,nodeClickDistance:_}),M=Ed();if(y.hidden)return null;let N=oc(y),P=Wd(y),F=T||w||t||n||r||i,I=n?e=>n(e,{...b.userNode}):void 0,L=r?e=>r(e,{...b.userNode}):void 0,R=i?e=>i(e,{...b.userNode}):void 0,z=a?e=>a(e,{...b.userNode}):void 0,B=o?e=>o(e,{...b.userNode}):void 0,ee=n=>{let{selectNodesOnDrag:r,nodeDragThreshold:i}=O.getState();T&&(!r||!w||i>0)&&Cd({id:e,store:O,nodeRef:A}),t&&t(n,{...b.userNode})},V=t=>{if(!(gc(t.nativeEvent)||m)){if(ps.includes(t.key)&&T){let n=t.key===`Escape`;Cd({id:e,store:O,unselect:n,nodeRef:A})}else if(w&&y.selected&&Object.prototype.hasOwnProperty.call(Hd,t.key)){t.preventDefault();let{ariaLabelConfig:e}=O.getState();O.setState({ariaLiveMessage:e[`node.a11yDescription.ariaLiveMessage`]({direction:t.key.replace(`Arrow`,``).toLowerCase(),x:~~b.positionAbsolute.x,y:~~b.positionAbsolute.y})}),M({direction:Hd[t.key],factor:t.shiftKey?4:1})}}},te=()=>{if(m||!A.current?.matches(`:focus-visible`))return;let{transform:t,width:n,height:r,autoPanOnNodeFocus:i,setCenter:a}=O.getState();i&&(ks(new Map([[e,y]]),{x:0,y:0,width:n,height:r},t,!0).length>0||a(y.position.x+N.width/2,y.position.y+N.height/2,{zoom:t[2]}))};return(0,J.jsx)(`div`,{className:Y([`react-flow__node`,`react-flow__node-${S}`,{[p]:w},y.className,{selected:y.selected,selectable:T,parent:x,draggable:w,dragging:j}]),ref:A,style:{zIndex:b.z,transform:`translate(${b.positionAbsolute.x}px,${b.positionAbsolute.y}px)`,pointerEvents:F?`all`:`none`,visibility:k?`visible`:`hidden`,...y.style,...P},"data-id":e,"data-testid":`rf__node-${e}`,onMouseEnter:I,onMouseMove:L,onMouseLeave:R,onContextMenu:z,onClick:ee,onDoubleClick:B,onKeyDown:D?V:void 0,tabIndex:D?0:void 0,onFocus:D?te:void 0,role:y.ariaRole??(D?`group`:void 0),"aria-roledescription":`node`,"aria-describedby":m?void 0:`${hu}-${h}`,"aria-label":y.ariaLabel,...y.domAttributes,children:(0,J.jsx)(Od,{value:e,children:(0,J.jsx)(C,{id:e,data:y.data,type:S,positionAbsoluteX:b.positionAbsolute.x,positionAbsoluteY:b.positionAbsolute.y,selected:y.selected??!1,selectable:T,draggable:w,deletable:y.deletable??!0,isConnectable:E,sourcePosition:y.sourcePosition,targetPosition:y.targetPosition,dragging:j,dragHandle:y.dragHandle,zIndex:b.z,parentId:y.parentId,...N})})})}var rf=(0,q.memo)(nf),af=e=>({nodesConnectable:e.nodesConnectable,nodesFocusable:e.nodesFocusable,elementsSelectable:e.elementsSelectable,onError:e.onError});function of(e){let{nodesConnectable:t,nodesFocusable:n,elementsSelectable:r,onError:i}=Q(af,Z),a=Qd(e.onlyRenderVisibleElements),o=ef();return(0,J.jsx)(`div`,{className:`react-flow__nodes`,style:hd,children:a.map(a=>(0,J.jsx)(rf,{id:a,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:o,nodesDraggable:e.nodesDraggable??!0,nodesConnectable:t,nodesFocusable:n,elementsSelectable:r,nodeClickDistance:e.nodeClickDistance,onError:i},a))})}of.displayName=`NodeRenderer`;var sf=(0,q.memo)(of);function cf(e){return Q((0,q.useCallback)(t=>{if(!e)return t.edges.map(e=>e.id);let n=[];if(t.width&&t.height)for(let e of t.edges){let r=t.nodeLookup.get(e.source),i=t.nodeLookup.get(e.target);r&&i&&Ec({sourceNode:r,targetNode:i,width:t.width,height:t.height,transform:t.transform})&&n.push(e.id)}return n},[e]),Z)}var lf=({color:e=`none`,strokeWidth:t=1})=>{let n={strokeWidth:t,...e&&{stroke:e}};return(0,J.jsx)(`polyline`,{className:`arrow`,style:n,strokeLinecap:`round`,fill:`none`,strokeLinejoin:`round`,points:`-5,-4 0,0 -5,4`})},uf=({color:e=`none`,strokeWidth:t=1})=>{let n={strokeWidth:t,...e&&{stroke:e,fill:e}};return(0,J.jsx)(`polyline`,{className:`arrowclosed`,style:n,strokeLinecap:`round`,strokeLinejoin:`round`,points:`-5,-4 0,0 -5,4 -5,-4`})},df={[bs.Arrow]:lf,[bs.ArrowClosed]:uf};function ff(e){let t=$();return(0,q.useMemo)(()=>Object.prototype.hasOwnProperty.call(df,e)?df[e]:(t.getState().onError?.(`009`,ds.error009(e)),null),[e])}var pf=({id:e,type:t,color:n,width:r=12.5,height:i=12.5,markerUnits:a=`strokeWidth`,strokeWidth:o,orient:s=`auto-start-reverse`})=>{let c=ff(t);return c?(0,J.jsx)(`marker`,{className:`react-flow__arrowhead`,id:e,markerWidth:`${r}`,markerHeight:`${i}`,viewBox:`-10 -10 20 20`,markerUnits:a,orient:s,refX:`0`,refY:`0`,children:(0,J.jsx)(c,{color:n,strokeWidth:o})}):null},mf=({defaultColor:e,rfId:t})=>{let n=Q(e=>e.edges),r=Q(e=>e.defaultEdgeOptions),i=(0,q.useMemo)(()=>Uc(n,{id:t,defaultColor:e,defaultMarkerStart:r?.markerStart,defaultMarkerEnd:r?.markerEnd}),[n,r,t,e]);return i.length?(0,J.jsx)(`svg`,{className:`react-flow__marker`,"aria-hidden":`true`,children:(0,J.jsx)(`defs`,{children:i.map(e=>(0,J.jsx)(pf,{id:e.id,type:e.type,color:e.color,width:e.width,height:e.height,markerUnits:e.markerUnits,strokeWidth:e.strokeWidth,orient:e.orient},e.id))})}):null};mf.displayName=`MarkerDefinitions`;var hf=(0,q.memo)(mf);function gf({x:e,y:t,label:n,labelStyle:r,labelShowBg:i=!0,labelBgStyle:a,labelBgPadding:o=[2,4],labelBgBorderRadius:s=2,children:c,className:l,...u}){let[d,f]=(0,q.useState)({x:1,y:0,width:0,height:0}),p=Y([`react-flow__edge-textwrapper`,l]),m=(0,q.useRef)(null);return(0,q.useEffect)(()=>{if(m.current){let e=m.current.getBBox();f({x:e.x,y:e.y,width:e.width,height:e.height})}},[n]),n?(0,J.jsxs)(`g`,{transform:`translate(${e-d.width/2} ${t-d.height/2})`,className:p,visibility:d.width?`visible`:`hidden`,...u,children:[i&&(0,J.jsx)(`rect`,{width:d.width+2*o[0],x:-o[0],y:-o[1],height:d.height+2*o[1],className:`react-flow__edge-textbg`,style:a,rx:s,ry:s}),(0,J.jsx)(`text`,{className:`react-flow__edge-text`,y:d.height/2,dy:`0.3em`,ref:m,style:r,children:n}),c]}):null}gf.displayName=`EdgeText`;var _f=(0,q.memo)(gf);function vf({path:e,labelX:t,labelY:n,label:r,labelStyle:i,labelShowBg:a,labelBgStyle:o,labelBgPadding:s,labelBgBorderRadius:c,interactionWidth:l=20,...u}){return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`path`,{...u,d:e,fill:`none`,className:Y([`react-flow__edge-path`,u.className])}),l?(0,J.jsx)(`path`,{d:e,fill:`none`,strokeOpacity:0,strokeWidth:l,className:`react-flow__edge-interaction`}):null,r&&Ys(t)&&Ys(n)?(0,J.jsx)(_f,{x:t,y:n,label:r,labelStyle:i,labelShowBg:a,labelBgStyle:o,labelBgPadding:s,labelBgBorderRadius:c}):null]})}function yf({pos:e,x1:t,y1:n,x2:r,y2:i}){return e===X.Left||e===X.Right?[.5*(t+r),n]:[t,.5*(n+i)]}function bf({sourceX:e,sourceY:t,sourcePosition:n=X.Bottom,targetX:r,targetY:i,targetPosition:a=X.Top}){let[o,s]=yf({pos:n,x1:e,y1:t,x2:r,y2:i}),[c,l]=yf({pos:a,x1:r,y1:i,x2:e,y2:t}),[u,d,f,p]=bc({sourceX:e,sourceY:t,targetX:r,targetY:i,sourceControlX:o,sourceControlY:s,targetControlX:c,targetControlY:l});return[`M${e},${t} C${o},${s} ${c},${l} ${r},${i}`,u,d,f,p]}function xf(e){return(0,q.memo)(({id:t,sourceX:n,sourceY:r,targetX:i,targetY:a,sourcePosition:o,targetPosition:s,label:c,labelStyle:l,labelShowBg:u,labelBgStyle:d,labelBgPadding:f,labelBgBorderRadius:p,style:m,markerEnd:h,markerStart:g,interactionWidth:_})=>{let[v,y,b]=bf({sourceX:n,sourceY:r,sourcePosition:o,targetX:i,targetY:a,targetPosition:s}),x=e.isInternal?void 0:t;return(0,J.jsx)(vf,{id:x,path:v,labelX:y,labelY:b,label:c,labelStyle:l,labelShowBg:u,labelBgStyle:d,labelBgPadding:f,labelBgBorderRadius:p,style:m,markerEnd:h,markerStart:g,interactionWidth:_})})}var Sf=xf({isInternal:!1}),Cf=xf({isInternal:!0});Sf.displayName=`SimpleBezierEdge`,Cf.displayName=`SimpleBezierEdgeInternal`;function wf(e){return(0,q.memo)(({id:t,sourceX:n,sourceY:r,targetX:i,targetY:a,label:o,labelStyle:s,labelShowBg:c,labelBgStyle:l,labelBgPadding:u,labelBgBorderRadius:d,style:f,sourcePosition:p=X.Bottom,targetPosition:m=X.Top,markerEnd:h,markerStart:g,pathOptions:_,interactionWidth:v})=>{let[y,b,x]=Ic({sourceX:n,sourceY:r,sourcePosition:p,targetX:i,targetY:a,targetPosition:m,borderRadius:_?.borderRadius,offset:_?.offset,stepPosition:_?.stepPosition}),S=e.isInternal?void 0:t;return(0,J.jsx)(vf,{id:S,path:y,labelX:b,labelY:x,label:o,labelStyle:s,labelShowBg:c,labelBgStyle:l,labelBgPadding:u,labelBgBorderRadius:d,style:f,markerEnd:h,markerStart:g,interactionWidth:v})})}var Tf=wf({isInternal:!1}),Ef=wf({isInternal:!0});Tf.displayName=`SmoothStepEdge`,Ef.displayName=`SmoothStepEdgeInternal`;function Df(e){return(0,q.memo)(({id:t,...n})=>{let r=e.isInternal?void 0:t;return(0,J.jsx)(Tf,{...n,id:r,pathOptions:(0,q.useMemo)(()=>({borderRadius:0,offset:n.pathOptions?.offset}),[n.pathOptions?.offset])})})}var Of=Df({isInternal:!1}),kf=Df({isInternal:!0});Of.displayName=`StepEdge`,kf.displayName=`StepEdgeInternal`;function Af(e){return(0,q.memo)(({id:t,sourceX:n,sourceY:r,targetX:i,targetY:a,label:o,labelStyle:s,labelShowBg:c,labelBgStyle:l,labelBgPadding:u,labelBgBorderRadius:d,style:f,markerEnd:p,markerStart:m,interactionWidth:h})=>{let[g,_,v]=Ac({sourceX:n,sourceY:r,targetX:i,targetY:a}),y=e.isInternal?void 0:t;return(0,J.jsx)(vf,{id:y,path:g,labelX:_,labelY:v,label:o,labelStyle:s,labelShowBg:c,labelBgStyle:l,labelBgPadding:u,labelBgBorderRadius:d,style:f,markerEnd:p,markerStart:m,interactionWidth:h})})}var jf=Af({isInternal:!1}),Mf=Af({isInternal:!0});jf.displayName=`StraightEdge`,Mf.displayName=`StraightEdgeInternal`;function Nf(e){return(0,q.memo)(({id:t,sourceX:n,sourceY:r,targetX:i,targetY:a,sourcePosition:o=X.Bottom,targetPosition:s=X.Top,label:c,labelStyle:l,labelShowBg:u,labelBgStyle:d,labelBgPadding:f,labelBgBorderRadius:p,style:m,markerEnd:h,markerStart:g,pathOptions:_,interactionWidth:v})=>{let[y,b,x]=Cc({sourceX:n,sourceY:r,sourcePosition:o,targetX:i,targetY:a,targetPosition:s,curvature:_?.curvature}),S=e.isInternal?void 0:t;return(0,J.jsx)(vf,{id:S,path:y,labelX:b,labelY:x,label:c,labelStyle:l,labelShowBg:u,labelBgStyle:d,labelBgPadding:f,labelBgBorderRadius:p,style:m,markerEnd:h,markerStart:g,interactionWidth:v})})}var Pf=Nf({isInternal:!1}),Ff=Nf({isInternal:!0});Pf.displayName=`BezierEdge`,Ff.displayName=`BezierEdgeInternal`;var If={default:Ff,straight:Mf,step:kf,smoothstep:Ef,simplebezier:Cf},Lf={sourceX:null,sourceY:null,targetX:null,targetY:null,sourcePosition:null,targetPosition:null,zIndex:void 0},Rf=(e,t,n)=>n===X.Left?e-t:n===X.Right?e+t:e,zf=(e,t,n)=>n===X.Top?e-t:n===X.Bottom?e+t:e,Bf=`react-flow__edgeupdater`;function Vf({position:e,centerX:t,centerY:n,radius:r=10,onMouseDown:i,onMouseEnter:a,onMouseOut:o,type:s}){return(0,J.jsx)(`circle`,{onMouseDown:i,onMouseEnter:a,onMouseOut:o,className:Y([Bf,`${Bf}-${s}`]),cx:Rf(t,r,e),cy:zf(n,r,e),r,stroke:`transparent`,fill:`transparent`})}function Hf({isReconnectable:e,reconnectRadius:t,edge:n,sourceX:r,sourceY:i,targetX:a,targetY:o,sourcePosition:s,targetPosition:c,onReconnect:l,onReconnectStart:u,onReconnectEnd:d,setReconnecting:f,setUpdateHover:p}){let m=$(),h=(e,t)=>{if(e.button!==0)return;let{autoPanOnConnect:r,domNode:i,connectionMode:a,connectionRadius:o,lib:s,onConnectStart:c,cancelConnection:p,nodeLookup:h,rfId:g,panBy:_,updateConnection:v}=m.getState(),y=t.type===`target`;Cl.onPointerDown(e.nativeEvent,{autoPanOnConnect:r,connectionMode:a,connectionRadius:o,domNode:i,handleId:t.id,nodeId:t.nodeId,nodeLookup:h,isTarget:y,edgeUpdaterType:t.type,lib:s,flowId:g,cancelConnection:p,panBy:_,isValidConnection:(...e)=>m.getState().isValidConnection?.(...e)??!0,onConnect:e=>l?.(n,e),onConnectStart:(r,i)=>{f(!0),u?.(e,n,t.type),c?.(r,i)},onConnectEnd:(...e)=>m.getState().onConnectEnd?.(...e),onReconnectEnd:(e,r)=>{f(!1),d?.(e,n,t.type,r)},updateConnection:v,getTransform:()=>m.getState().transform,getFromHandle:()=>m.getState().connection.fromHandle,dragThreshold:m.getState().connectionDragThreshold,handleDomNode:e.currentTarget})},g=e=>h(e,{nodeId:n.target,id:n.targetHandle??null,type:`target`}),_=e=>h(e,{nodeId:n.source,id:n.sourceHandle??null,type:`source`}),v=()=>p(!0),y=()=>p(!1);return(0,J.jsxs)(J.Fragment,{children:[(e===!0||e===`source`)&&(0,J.jsx)(Vf,{position:s,centerX:r,centerY:i,radius:t,onMouseDown:g,onMouseEnter:v,onMouseOut:y,type:`source`}),(e===!0||e===`target`)&&(0,J.jsx)(Vf,{position:c,centerX:a,centerY:o,radius:t,onMouseDown:_,onMouseEnter:v,onMouseOut:y,type:`target`})]})}function Uf({id:e,edgesFocusable:t,edgesReconnectable:n,elementsSelectable:r,onClick:i,onDoubleClick:a,onContextMenu:o,onMouseEnter:s,onMouseMove:c,onMouseLeave:l,reconnectRadius:u,onReconnect:d,onReconnectStart:f,onReconnectEnd:p,rfId:m,edgeTypes:h,noPanClassName:g,onError:_,disableKeyboardA11y:v}){let y=Q(t=>t.edgeLookup.get(e)),b=Q(e=>e.defaultEdgeOptions);y=b?{...b,...y}:y;let x=y.type||`default`,S=h?.[x]||If[x];S===void 0&&(_?.(`011`,ds.error011(x)),x=`default`,S=h?.default||If.default);let C=!!(y.focusable||t&&y.focusable===void 0),w=d!==void 0&&(y.reconnectable||n&&y.reconnectable===void 0),T=!!(y.selectable||r&&y.selectable===void 0),E=(0,q.useRef)(null),[D,O]=(0,q.useState)(!1),[k,A]=(0,q.useState)(!1),j=$(),{zIndex:M=y.zIndex,sourceX:N,sourceY:P,targetX:F,targetY:I,sourcePosition:L,targetPosition:R}=Q((0,q.useCallback)(t=>{let n=t.nodeLookup.get(y.source),r=t.nodeLookup.get(y.target);if(!n||!r)return Lf;let i=Rc({id:e,sourceNode:n,targetNode:r,sourceHandle:y.sourceHandle||null,targetHandle:y.targetHandle||null,connectionMode:t.connectionMode,onError:_}),a=Tc({selected:y.selected,zIndex:y.zIndex,sourceNode:n,targetNode:r,elevateOnSelect:t.elevateEdgesOnSelect,zIndexMode:t.zIndexMode});return{...i||Lf,zIndex:a}},[y.source,y.target,y.sourceHandle,y.targetHandle,y.selected,y.zIndex,_]),Z),z=(0,q.useMemo)(()=>y.markerStart?`url('#${Hc(y.markerStart,m)}')`:void 0,[y.markerStart,m]),B=(0,q.useMemo)(()=>y.markerEnd?`url('#${Hc(y.markerEnd,m)}')`:void 0,[y.markerEnd,m]);if(y.hidden||N===null||P===null||F===null||I===null)return null;let ee=t=>{let{addSelectedEdges:n,unselectNodesAndEdges:r,multiSelectionActive:a}=j.getState();T&&(j.setState({nodesSelectionActive:!1}),y.selected&&a?(r({nodes:[],edges:[y]}),E.current?.blur()):n([e])),i&&i(t,y)},V=a?e=>{a(e,{...y})}:void 0,te=o?e=>{o(e,{...y})}:void 0,H=s?e=>{s(e,{...y})}:void 0,ne=c?e=>{c(e,{...y})}:void 0,re=l?e=>{l(e,{...y})}:void 0;return(0,J.jsx)(`svg`,{style:{zIndex:M},children:(0,J.jsxs)(`g`,{className:Y([`react-flow__edge`,`react-flow__edge-${x}`,y.className,g,{selected:y.selected,animated:y.animated,inactive:!T&&!i,updating:D,selectable:T}]),onClick:ee,onDoubleClick:V,onContextMenu:te,onMouseEnter:H,onMouseMove:ne,onMouseLeave:re,onKeyDown:C?t=>{if(!v&&ps.includes(t.key)&&T){let{unselectNodesAndEdges:n,addSelectedEdges:r}=j.getState();t.key===`Escape`?(E.current?.blur(),n({edges:[y]})):r([e])}}:void 0,tabIndex:C?0:void 0,role:y.ariaRole??(C?`group`:`img`),"aria-roledescription":`edge`,"data-id":e,"data-testid":`rf__edge-${e}`,"aria-label":y.ariaLabel===null?void 0:y.ariaLabel||`Edge from ${y.source} to ${y.target}`,"aria-describedby":C?`${gu}-${m}`:void 0,ref:E,...y.domAttributes,children:[!k&&(0,J.jsx)(S,{id:e,source:y.source,target:y.target,type:y.type,selected:y.selected,animated:y.animated,selectable:T,deletable:y.deletable??!0,label:y.label,labelStyle:y.labelStyle,labelShowBg:y.labelShowBg,labelBgStyle:y.labelBgStyle,labelBgPadding:y.labelBgPadding,labelBgBorderRadius:y.labelBgBorderRadius,sourceX:N,sourceY:P,targetX:F,targetY:I,sourcePosition:L,targetPosition:R,data:y.data,style:y.style,sourceHandleId:y.sourceHandle,targetHandleId:y.targetHandle,markerStart:z,markerEnd:B,pathOptions:`pathOptions`in y?y.pathOptions:void 0,interactionWidth:y.interactionWidth}),w&&(0,J.jsx)(Hf,{edge:y,isReconnectable:w,reconnectRadius:u,onReconnect:d,onReconnectStart:f,onReconnectEnd:p,sourceX:N,sourceY:P,targetX:F,targetY:I,sourcePosition:L,targetPosition:R,setUpdateHover:O,setReconnecting:A})]})})}var Wf=(0,q.memo)(Uf),Gf=e=>({edgesFocusable:e.edgesFocusable,edgesReconnectable:e.edgesReconnectable,elementsSelectable:e.elementsSelectable,connectionMode:e.connectionMode,onError:e.onError});function Kf({defaultMarkerColor:e,onlyRenderVisibleElements:t,rfId:n,edgeTypes:r,noPanClassName:i,onReconnect:a,onEdgeContextMenu:o,onEdgeMouseEnter:s,onEdgeMouseMove:c,onEdgeMouseLeave:l,onEdgeClick:u,reconnectRadius:d,onEdgeDoubleClick:f,onReconnectStart:p,onReconnectEnd:m,disableKeyboardA11y:h}){let{edgesFocusable:g,edgesReconnectable:_,elementsSelectable:v,onError:y}=Q(Gf,Z),b=cf(t);return(0,J.jsxs)(`div`,{className:`react-flow__edges`,children:[(0,J.jsx)(hf,{defaultColor:e,rfId:n}),b.map(e=>(0,J.jsx)(Wf,{id:e,edgesFocusable:g,edgesReconnectable:_,elementsSelectable:v,noPanClassName:i,onReconnect:a,onContextMenu:o,onMouseEnter:s,onMouseMove:c,onMouseLeave:l,onClick:u,reconnectRadius:d,onDoubleClick:f,onReconnectStart:p,onReconnectEnd:m,rfId:n,onError:y,edgeTypes:r,disableKeyboardA11y:h},e))]})}Kf.displayName=`EdgeRenderer`;var qf=(0,q.memo)(Kf),Jf=e=>`translate(${e[0]}px,${e[1]}px) scale(${e[2]})`;function Yf({children:e}){let t=$(),n=(0,q.useRef)(null),[r]=(0,q.useState)(()=>t.getState().transform);return rd(()=>{let e=null,r=()=>{let r=t.getState().transform;e&&r[0]===e[0]&&r[1]===e[1]&&r[2]===e[2]||(e=r,n.current&&(n.current.style.transform=Jf(r)))};return r(),t.subscribe(r)},[t]),(0,J.jsx)(`div`,{ref:n,className:`react-flow__viewport xyflow__viewport react-flow__container`,style:{transform:Jf(r)},children:e})}function Xf(e){let t=ud(),n=(0,q.useRef)(!1);(0,q.useEffect)(()=>{!n.current&&t.viewportInitialized&&e&&(setTimeout(()=>e(t),1),n.current=!0)},[e,t.viewportInitialized])}var Zf=e=>e.panZoom?.syncViewport;function Qf(e){let t=Q(Zf),n=$();return(0,q.useEffect)(()=>{e&&(t?.(e),n.setState({transform:[e.x,e.y,e.zoom]}))},[e,t]),null}function $f(e){return e.connection.inProgress?{...e.connection,to:Qs(e.connection.to,e.transform)}:{...e.connection}}function ep(e){return e?t=>e($f(t)):$f}function tp(e){return Q(ep(e),Z)}var np=e=>({nodesConnectable:e.nodesConnectable,isValid:e.connection.isValid,inProgress:e.connection.inProgress,width:e.width,height:e.height});function rp({containerStyle:e,style:t,type:n,component:r}){let{nodesConnectable:i,width:a,height:o,isValid:s,inProgress:c}=Q(np,Z);return a&&i&&c?(0,J.jsx)(`svg`,{style:e,width:a,height:o,className:`react-flow__connectionline react-flow__container`,children:(0,J.jsx)(`g`,{className:Y([`react-flow__connection`,Ss(s)]),children:(0,J.jsx)(ip,{style:t,type:n,CustomComponent:r,isValid:s})})}):null}var ip=({style:e,type:t=ys.Bezier,CustomComponent:n,isValid:r})=>{let{inProgress:i,from:a,fromNode:o,fromHandle:s,fromPosition:c,to:l,toNode:u,toHandle:d,toPosition:f,pointer:p}=tp();if(!i)return;if(n)return(0,J.jsx)(n,{connectionLineType:t,connectionLineStyle:e,fromNode:o,fromHandle:s,fromX:a.x,fromY:a.y,toX:l.x,toY:l.y,fromPosition:c,toPosition:f,connectionStatus:Ss(r),toNode:u,toHandle:d,pointer:p});let m=``,h={sourceX:a.x,sourceY:a.y,sourcePosition:c,targetX:l.x,targetY:l.y,targetPosition:f};switch(t){case ys.Bezier:[m]=Cc(h);break;case ys.SimpleBezier:[m]=bf(h);break;case ys.Step:[m]=Ic({...h,borderRadius:0});break;case ys.SmoothStep:[m]=Ic(h);break;default:[m]=Ac(h)}return(0,J.jsx)(`path`,{d:m,fill:`none`,className:`react-flow__connection-path`,style:e})};ip.displayName=`ConnectionLine`;var ap={};function op(e=ap){(0,q.useRef)(e),$(),(0,q.useEffect)(()=>{},[e])}function sp(){$(),(0,q.useRef)(!1),(0,q.useEffect)(()=>{},[])}function cp({nodeTypes:e,edgeTypes:t,onInit:n,onNodeClick:r,onEdgeClick:i,onNodeDoubleClick:a,onEdgeDoubleClick:o,onNodeMouseEnter:s,onNodeMouseMove:c,onNodeMouseLeave:l,onNodeContextMenu:u,onSelectionContextMenu:d,onSelectionStart:f,onSelectionEnd:p,connectionLineType:m,connectionLineStyle:h,connectionLineComponent:g,connectionLineContainerStyle:_,selectionKeyCode:v,selectionOnDrag:y,selectionMode:b,multiSelectionKeyCode:x,panActivationKeyCode:S,zoomActivationKeyCode:C,deleteKeyCode:w,onlyRenderVisibleElements:T,elementsSelectable:E,defaultViewport:D,translateExtent:O,minZoom:k,maxZoom:A,preventScrolling:j,defaultMarkerColor:M,zoomOnScroll:N,zoomOnPinch:P,panOnScroll:F,panOnScrollSpeed:I,panOnScrollMode:L,zoomOnDoubleClick:R,panOnDrag:z,autoPanOnSelection:B,onPaneClick:ee,onPaneMouseEnter:V,onPaneMouseMove:te,onPaneMouseLeave:H,onPaneScroll:ne,onPaneContextMenu:re,paneClickDistance:ie,nodeClickDistance:U,onEdgeContextMenu:ae,onEdgeMouseEnter:oe,onEdgeMouseMove:se,onEdgeMouseLeave:ce,reconnectRadius:le,onReconnect:ue,onReconnectStart:de,onReconnectEnd:fe,noDragClassName:pe,noWheelClassName:me,noPanClassName:W,disableKeyboardA11y:he,nodeExtent:ge,rfId:_e,viewport:G,onViewportChange:ve,nodesDraggable:ye}){return op(e),op(t),sp(),Xf(n),Qf(G),(0,J.jsx)(Xd,{onPaneClick:ee,onPaneMouseEnter:V,onPaneMouseMove:te,onPaneMouseLeave:H,onPaneContextMenu:re,onPaneScroll:ne,paneClickDistance:ie,deleteKeyCode:w,selectionKeyCode:v,selectionOnDrag:y,selectionMode:b,onSelectionStart:f,onSelectionEnd:p,multiSelectionKeyCode:x,panActivationKeyCode:S,zoomActivationKeyCode:C,elementsSelectable:E,zoomOnScroll:N,zoomOnPinch:P,zoomOnDoubleClick:R,panOnScroll:F,panOnScrollSpeed:I,panOnScrollMode:L,panOnDrag:z,autoPanOnSelection:B,defaultViewport:D,translateExtent:O,minZoom:k,maxZoom:A,onSelectionContextMenu:d,preventScrolling:j,noDragClassName:pe,noWheelClassName:me,noPanClassName:W,disableKeyboardA11y:he,onViewportChange:ve,isControlledViewport:!!G,children:(0,J.jsxs)(Yf,{children:[(0,J.jsx)(qf,{edgeTypes:t,onEdgeClick:i,onEdgeDoubleClick:o,onReconnect:ue,onReconnectStart:de,onReconnectEnd:fe,onlyRenderVisibleElements:T,onEdgeContextMenu:ae,onEdgeMouseEnter:oe,onEdgeMouseMove:se,onEdgeMouseLeave:ce,reconnectRadius:le,defaultMarkerColor:M,noPanClassName:W,disableKeyboardA11y:he,rfId:_e}),(0,J.jsx)(rp,{style:h,type:m,component:g,containerStyle:_}),(0,J.jsx)(`div`,{className:`react-flow__edgelabel-renderer`}),(0,J.jsx)(sf,{nodeTypes:e,onNodeClick:r,onNodeDoubleClick:a,onNodeMouseEnter:s,onNodeMouseMove:c,onNodeMouseLeave:l,onNodeContextMenu:u,nodeClickDistance:U,onlyRenderVisibleElements:T,noPanClassName:W,noDragClassName:pe,disableKeyboardA11y:he,nodeExtent:ge,rfId:_e,nodesDraggable:ye}),(0,J.jsx)(`div`,{className:`react-flow__viewport-portal`})]})})}cp.displayName=`GraphView`;var lp=(0,q.memo)(cp),up=Xs(`React Flow`,`https://reactflow.dev/`),dp=({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,width:i,height:a,fitView:o,fitViewOptions:s,minZoom:c=.5,maxZoom:l=2,nodeOrigin:u,nodeExtent:d,zIndexMode:f=`basic`}={})=>{let p=new Map,m=new Map,h=new Map,g=new Map,_=r??t??[],v=n??e??[],y=u??[0,0],b=d??fs;sl(h,g,_);let{nodesInitialized:x}=Qc(v,p,m,{nodeOrigin:y,nodeExtent:b,zIndexMode:f}),S=[0,0,1];if(o&&i&&a){let{x:e,y:t,zoom:n}=rc(Os(p,{filter:e=>!!((e.width||e.initialWidth)&&(e.height||e.initialHeight))}),i,a,c,l,s?.padding??.1);S=[e,t,n]}return{rfId:`1`,width:i??0,height:a??0,transform:S,nodes:v,nodesInitialized:x,nodeLookup:p,parentLookup:m,edges:_,edgeLookup:g,connectionLookup:h,onNodesChange:null,onEdgesChange:null,hasDefaultNodes:n!==void 0,hasDefaultEdges:r!==void 0,panZoom:null,minZoom:c,maxZoom:l,translateExtent:fs,nodeExtent:b,nodesSelectionActive:!1,userSelectionActive:!1,userSelectionRect:null,connectionMode:hs.Strict,domNode:null,paneDragging:!1,noPanClassName:`nopan`,nodeOrigin:y,nodeDragThreshold:1,connectionDragThreshold:1,snapGrid:[15,15],snapToGrid:!1,nodesDraggable:!0,nodesConnectable:!0,nodesFocusable:!0,edgesFocusable:!0,edgesReconnectable:!0,elementsSelectable:!0,elevateNodesOnSelect:!0,elevateEdgesOnSelect:!0,selectNodesOnDrag:!0,multiSelectionActive:!1,fitViewQueued:o??!1,fitViewOptions:s,fitViewResolver:null,connection:{...vs},connectionClickStartHandle:null,connectOnClick:!0,ariaLiveMessage:``,autoPanOnConnect:!0,autoPanOnNodeDrag:!0,autoPanOnNodeFocus:!0,autoPanSpeed:15,connectionRadius:20,onError:up,isValidConnection:void 0,onSelectionChangeHandlers:[],lib:`react`,debug:!1,ariaLabelConfig:ms,zIndexMode:f,onNodesChangeMiddlewareMap:new Map,onEdgesChangeMiddlewareMap:new Map}},fp=({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,width:i,height:a,fitView:o,fitViewOptions:s,minZoom:c,maxZoom:l,nodeOrigin:u,nodeExtent:d,zIndexMode:f})=>cu((p,m)=>{async function h(){let{nodeLookup:e,panZoom:t,fitViewOptions:n,fitViewResolver:r,width:i,height:a,minZoom:o,maxZoom:s}=m();t&&(await Ms({nodes:e,width:i,height:a,panZoom:t,minZoom:o,maxZoom:s},n),r?.resolve(!0),p({fitViewResolver:null}))}return{...dp({nodes:e,edges:t,width:i,height:a,fitView:o,fitViewOptions:s,minZoom:c,maxZoom:l,nodeOrigin:u,nodeExtent:d,defaultNodes:n,defaultEdges:r,zIndexMode:f}),setNodes:e=>{let{nodeLookup:t,parentLookup:n,nodeOrigin:r,nodeExtent:i,elevateNodesOnSelect:a,fitViewQueued:o,zIndexMode:s,nodesSelectionActive:c}=m(),{nodesInitialized:l,hasSelectedNodes:u}=Qc(e,t,n,{nodeOrigin:r,nodeExtent:i,elevateNodesOnSelect:a,checkEquality:!0,zIndexMode:s}),d=c&&u;o&&l?(h(),p({nodes:e,nodesInitialized:l,fitViewQueued:!1,fitViewOptions:void 0,nodesSelectionActive:d})):p({nodes:e,nodesInitialized:l,nodesSelectionActive:d})},setEdges:e=>{let{connectionLookup:t,edgeLookup:n}=m();sl(t,n,e),p({edges:e})},setDefaultNodesAndEdges:(e,t)=>{if(e){let{setNodes:t}=m();t(e),p({hasDefaultNodes:!0})}if(t){let{setEdges:e}=m();e(t),p({hasDefaultEdges:!0})}},updateNodeInternals:e=>{let{triggerNodeChanges:t,nodeLookup:n,parentLookup:r,domNode:i,nodeOrigin:a,nodeExtent:o,debug:s,fitViewQueued:c,zIndexMode:l}=m(),{changes:u,updatedInternals:d}=il(e,n,r,i,a,o,l);d&&(Yc(n,r,{nodeOrigin:a,nodeExtent:o,zIndexMode:l}),c?(h(),p({fitViewQueued:!1,fitViewOptions:void 0})):p({}),u?.length>0&&(s&&console.log(`React Flow: trigger node changes`,u),t?.(u)))},updateNodePositions:(e,t=!1)=>{let n=[],r=[],{nodeLookup:i,triggerNodeChanges:a,connection:o,updateConnection:s,onNodesChangeMiddlewareMap:c}=m();for(let[a,c]of e){let e=i.get(a),l=!!(e?.expandParent&&e?.parentId&&c?.position),u={id:a,type:`position`,position:l?{x:Math.max(0,c.position.x),y:Math.max(0,c.position.y)}:c.position,dragging:t};if(e&&o.inProgress&&o.fromNode.id===e.id){let t=Bc(e,o.fromHandle,X.Left,!0);s({...o,from:t})}l&&e.parentId&&n.push({id:a,parentId:e.parentId,rect:{...c.internals.positionAbsolute,width:c.measured.width??0,height:c.measured.height??0}}),r.push(u)}if(n.length>0){let{parentLookup:e,nodeOrigin:t}=m(),a=rl(n,i,e,t);r.push(...a)}for(let e of c.values())r=e(r);a(r)},triggerNodeChanges:e=>{let{onNodesChange:t,setNodes:n,nodes:r,hasDefaultNodes:i,debug:a}=m();e?.length&&(i&&n(Ku(e,r)),a&&console.log(`React Flow: trigger node changes`,e),t?.(e))},triggerEdgeChanges:e=>{let{onEdgesChange:t,setEdges:n,edges:r,hasDefaultEdges:i,debug:a}=m();e?.length&&(i&&n(qu(e,r)),a&&console.log(`React Flow: trigger edge changes`,e),t?.(e))},addSelectedNodes:e=>{let{multiSelectionActive:t,edgeLookup:n,nodeLookup:r,triggerNodeChanges:i,triggerEdgeChanges:a}=m();if(t){i(e.map(e=>Ju(e,!0)));return}i(Yu(r,new Set([...e]),!0)),a(Yu(n))},addSelectedEdges:e=>{let{multiSelectionActive:t,edgeLookup:n,nodeLookup:r,triggerNodeChanges:i,triggerEdgeChanges:a}=m();if(t){a(e.map(e=>Ju(e,!0)));return}a(Yu(n,new Set([...e]))),i(Yu(r,new Set,!0))},unselectNodesAndEdges:({nodes:e,edges:t}={})=>{let{edges:n,nodes:r,nodeLookup:i,triggerNodeChanges:a,triggerEdgeChanges:o}=m(),s=e||r,c=t||n,l=[];for(let e of s){if(!e.selected)continue;let t=i.get(e.id);t&&(t.selected=!1),l.push(Ju(e.id,!1))}let u=[];for(let e of c)e.selected&&u.push(Ju(e.id,!1));a(l),o(u)},setMinZoom:e=>{let{panZoom:t,maxZoom:n}=m();t?.setScaleExtent([e,n]),p({minZoom:e})},setMaxZoom:e=>{let{panZoom:t,minZoom:n}=m();t?.setScaleExtent([n,e]),p({maxZoom:e})},setTranslateExtent:e=>{m().panZoom?.setTranslateExtent(e),p({translateExtent:e})},resetSelectedElements:()=>{let{edges:e,nodes:t,triggerNodeChanges:n,triggerEdgeChanges:r,elementsSelectable:i}=m();if(!i)return;let a=t.reduce((e,t)=>t.selected?[...e,Ju(t.id,!1)]:e,[]),o=e.reduce((e,t)=>t.selected?[...e,Ju(t.id,!1)]:e,[]);n(a),r(o)},setNodeExtent:e=>{let{nodes:t,nodeLookup:n,parentLookup:r,nodeOrigin:i,elevateNodesOnSelect:a,nodeExtent:o,zIndexMode:s}=m();(e[0][0]!==o[0][0]||e[0][1]!==o[0][1]||e[1][0]!==o[1][0]||e[1][1]!==o[1][1])&&(Qc(t,n,r,{nodeOrigin:i,nodeExtent:e,elevateNodesOnSelect:a,checkEquality:!1,zIndexMode:s}),p({nodeExtent:e}))},panBy:e=>{let{transform:t,width:n,height:r,panZoom:i,translateExtent:a}=m();return al({delta:e,panZoom:i,transform:t,translateExtent:a,width:n,height:r})},setCenter:async(e,t,n)=>{let{width:r,height:i,maxZoom:a,panZoom:o}=m();if(!o)return!1;let s=n?.zoom===void 0?a:n.zoom;return await o.setViewport({x:r/2-e*s,y:i/2-t*s,zoom:s},{duration:n?.duration,ease:n?.ease,interpolate:n?.interpolate}),!0},cancelConnection:()=>{p({connection:{...vs}})},updateConnection:e=>{p({connection:e})},reset:()=>p({...dp()})}},Object.is);function pp({initialNodes:e,initialEdges:t,defaultNodes:n,defaultEdges:r,initialWidth:i,initialHeight:a,initialMinZoom:o,initialMaxZoom:s,initialFitViewOptions:c,fitView:l,nodeOrigin:u,nodeExtent:d,zIndexMode:f,children:p}){let[m]=(0,q.useState)(()=>fp({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,width:i,height:a,fitView:l,minZoom:o,maxZoom:s,fitViewOptions:c,nodeOrigin:u,nodeExtent:d,zIndexMode:f}));return(0,J.jsx)(du,{value:m,children:(0,J.jsx)(sd,{children:(0,J.jsx)(Md,{children:p})})})}function mp({children:e,nodes:t,edges:n,defaultNodes:r,defaultEdges:i,width:a,height:o,fitView:s,fitViewOptions:c,minZoom:l,maxZoom:u,nodeOrigin:d,nodeExtent:f,zIndexMode:p}){return(0,q.useContext)(uu)?(0,J.jsx)(J.Fragment,{children:e}):(0,J.jsx)(pp,{initialNodes:t,initialEdges:n,defaultNodes:r,defaultEdges:i,initialWidth:a,initialHeight:o,fitView:s,initialFitViewOptions:c,initialMinZoom:l,initialMaxZoom:u,nodeOrigin:d,nodeExtent:f,zIndexMode:p,children:e})}var hp={width:`100%`,height:`100%`,overflow:`hidden`,position:`relative`,zIndex:0};function gp({nodes:e,edges:t,defaultNodes:n,defaultEdges:r,className:i,nodeTypes:a,edgeTypes:o,onNodeClick:s,onEdgeClick:c,onInit:l,onMove:u,onMoveStart:d,onMoveEnd:f,onConnect:p,onConnectStart:m,onConnectEnd:h,onClickConnectStart:g,onClickConnectEnd:_,onNodeMouseEnter:v,onNodeMouseMove:y,onNodeMouseLeave:b,onNodeContextMenu:x,onNodeDoubleClick:S,onNodeDragStart:C,onNodeDrag:w,onNodeDragStop:T,onNodesDelete:E,onEdgesDelete:D,onDelete:O,onSelectionChange:k,onSelectionDragStart:A,onSelectionDrag:j,onSelectionDragStop:M,onSelectionContextMenu:N,onSelectionStart:P,onSelectionEnd:F,onBeforeDelete:I,connectionMode:L,connectionLineType:R=ys.Bezier,connectionLineStyle:z,connectionLineComponent:B,connectionLineContainerStyle:ee,deleteKeyCode:V=`Backspace`,selectionKeyCode:te=`Shift`,selectionOnDrag:H=!1,selectionMode:ne=_s.Full,panActivationKeyCode:re=`Space`,multiSelectionKeyCode:ie=ic()?`Meta`:`Control`,zoomActivationKeyCode:U=ic()?`Meta`:`Control`,snapToGrid:ae,snapGrid:oe,onlyRenderVisibleElements:se=!1,selectNodesOnDrag:ce,nodesDraggable:le,autoPanOnNodeFocus:ue,nodesConnectable:de,nodesFocusable:fe,nodeOrigin:pe=ju,edgesFocusable:me,edgesReconnectable:W,elementsSelectable:he=!0,defaultViewport:ge=Mu,minZoom:_e=.5,maxZoom:G=2,translateExtent:ve=fs,preventScrolling:ye=!0,nodeExtent:be,defaultMarkerColor:xe=`#b1b1b7`,zoomOnScroll:Se=!0,zoomOnPinch:Ce=!0,panOnScroll:we=!1,panOnScrollSpeed:Te=.5,panOnScrollMode:Ee=gs.Free,zoomOnDoubleClick:De=!0,panOnDrag:Oe=!0,onPaneClick:ke,onPaneMouseEnter:Ae,onPaneMouseMove:je,onPaneMouseLeave:Me,onPaneScroll:Ne,onPaneContextMenu:K,paneClickDistance:Pe=1,nodeClickDistance:Fe=0,children:Ie,onReconnect:Le,onReconnectStart:Re,onReconnectEnd:ze,onEdgeContextMenu:Be,onEdgeDoubleClick:Ve,onEdgeMouseEnter:He,onEdgeMouseMove:Ue,onEdgeMouseLeave:We,reconnectRadius:Ge=10,onNodesChange:Ke,onEdgesChange:qe,noDragClassName:Je=`nodrag`,noWheelClassName:Ye=`nowheel`,noPanClassName:Xe=`nopan`,fitView:Ze,fitViewOptions:Qe,connectOnClick:$e,attributionPosition:et,proOptions:tt,defaultEdgeOptions:nt,elevateNodesOnSelect:rt=!0,elevateEdgesOnSelect:it=!1,disableKeyboardA11y:at=!1,autoPanOnConnect:ot,autoPanOnNodeDrag:st,autoPanOnSelection:ct=!0,autoPanSpeed:lt,connectionRadius:ut,isValidConnection:dt,onError:ft,style:pt,id:mt,nodeDragThreshold:ht,connectionDragThreshold:gt,viewport:_t,onViewportChange:vt,width:yt,height:bt,colorMode:xt=`light`,debug:St,onScroll:Ct,ariaLabelConfig:wt,zIndexMode:Tt=`basic`,...Et},Dt){let Ot=mt||`1`,kt=Ru(xt),At=(0,q.useCallback)(e=>{e.currentTarget.scrollTo({top:0,left:0,behavior:`instant`}),Ct?.(e)},[Ct]);return(0,J.jsx)(`div`,{"data-testid":`rf__wrapper`,...Et,onScroll:At,style:{...pt,...hp},ref:Dt,className:Y([`react-flow`,i,kt]),id:mt,role:`application`,children:(0,J.jsxs)(mp,{nodes:e,edges:t,width:yt,height:bt,fitView:Ze,fitViewOptions:Qe,minZoom:_e,maxZoom:G,nodeOrigin:pe,nodeExtent:be,zIndexMode:Tt,children:[(0,J.jsx)(Iu,{nodes:e,edges:t,defaultNodes:n,defaultEdges:r,onConnect:p,onConnectStart:m,onConnectEnd:h,onClickConnectStart:g,onClickConnectEnd:_,nodesDraggable:le,autoPanOnNodeFocus:ue,nodesConnectable:de,nodesFocusable:fe,edgesFocusable:me,edgesReconnectable:W,elementsSelectable:he,elevateNodesOnSelect:rt,elevateEdgesOnSelect:it,minZoom:_e,maxZoom:G,nodeExtent:be,onNodesChange:Ke,onEdgesChange:qe,snapToGrid:ae,snapGrid:oe,connectionMode:L,translateExtent:ve,connectOnClick:$e,defaultEdgeOptions:nt,fitView:Ze,fitViewOptions:Qe,onNodesDelete:E,onEdgesDelete:D,onDelete:O,onNodeDragStart:C,onNodeDrag:w,onNodeDragStop:T,onSelectionDrag:j,onSelectionDragStart:A,onSelectionDragStop:M,onMove:u,onMoveStart:d,onMoveEnd:f,noPanClassName:Xe,nodeOrigin:pe,rfId:Ot,autoPanOnConnect:ot,autoPanOnNodeDrag:st,autoPanSpeed:lt,onError:ft,connectionRadius:ut,isValidConnection:dt,selectNodesOnDrag:ce,nodeDragThreshold:ht,connectionDragThreshold:gt,onBeforeDelete:I,debug:St,ariaLabelConfig:wt,zIndexMode:Tt}),(0,J.jsx)(lp,{onInit:l,onNodeClick:s,onEdgeClick:c,onNodeMouseEnter:v,onNodeMouseMove:y,onNodeMouseLeave:b,onNodeContextMenu:x,onNodeDoubleClick:S,nodeTypes:a,edgeTypes:o,connectionLineType:R,connectionLineStyle:z,connectionLineComponent:B,connectionLineContainerStyle:ee,selectionKeyCode:te,selectionOnDrag:H,selectionMode:ne,deleteKeyCode:V,multiSelectionKeyCode:ie,panActivationKeyCode:re,zoomActivationKeyCode:U,onlyRenderVisibleElements:se,defaultViewport:ge,translateExtent:ve,minZoom:_e,maxZoom:G,preventScrolling:ye,zoomOnScroll:Se,zoomOnPinch:Ce,zoomOnDoubleClick:De,panOnScroll:we,panOnScrollSpeed:Te,panOnScrollMode:Ee,panOnDrag:Oe,autoPanOnSelection:ct,onPaneClick:ke,onPaneMouseEnter:Ae,onPaneMouseMove:je,onPaneMouseLeave:Me,onPaneScroll:Ne,onPaneContextMenu:K,paneClickDistance:Pe,nodeClickDistance:Fe,onSelectionContextMenu:N,onSelectionStart:P,onSelectionEnd:F,onReconnect:Le,onReconnectStart:Re,onReconnectEnd:ze,onEdgeContextMenu:Be,onEdgeDoubleClick:Ve,onEdgeMouseEnter:He,onEdgeMouseMove:Ue,onEdgeMouseLeave:We,reconnectRadius:Ge,defaultMarkerColor:xe,noDragClassName:Je,noWheelClassName:Ye,noPanClassName:Xe,rfId:Ot,disableKeyboardA11y:at,nodeExtent:be,viewport:_t,onViewportChange:vt,nodesDraggable:le}),(0,J.jsx)(Au,{onSelectionChange:k}),Ie,(0,J.jsx)(wu,{proOptions:tt,position:et}),(0,J.jsx)(xu,{rfId:Ot,disableKeyboardA11y:at})]})})}var _p=nd(gp),vp=e=>e.domNode?.querySelector(`.react-flow__edgelabel-renderer`);function yp({children:e}){let t=Q(vp);return t?(0,lu.createPortal)(e,t):null}ds.error014();function bp(e){return Q((0,q.useCallback)(t=>t.nodeLookup.get(e),[e]),Z)}function xp({dimensions:e,lineWidth:t,variant:n,className:r}){return(0,J.jsx)(`path`,{strokeWidth:t,d:`M${e[0]/2} 0 V${e[1]} M0 ${e[1]/2} H${e[0]}`,className:Y([`react-flow__background-pattern`,n,r])})}function Sp({radius:e,className:t}){return(0,J.jsx)(`circle`,{cx:e,cy:e,r:e,className:Y([`react-flow__background-pattern`,`dots`,t])})}var Cp;(function(e){e.Lines=`lines`,e.Dots=`dots`,e.Cross=`cross`})(Cp||={});var wp={[Cp.Dots]:1,[Cp.Lines]:1,[Cp.Cross]:6},Tp=e=>({transform:e.transform,patternId:`pattern-${e.rfId}`});function Ep({id:e,variant:t=Cp.Dots,gap:n=20,size:r,lineWidth:i=1,offset:a=0,color:o,bgColor:s,style:c,className:l,patternClassName:u}){let d=(0,q.useRef)(null),{transform:f,patternId:p}=Q(Tp,Z),m=r||wp[t],h=t===Cp.Dots,g=t===Cp.Cross,_=Array.isArray(n)?n:[n,n],v=[_[0]*f[2]||1,_[1]*f[2]||1],y=m*f[2],b=Array.isArray(a)?a:[a,a],x=g?[y,y]:v,S=[b[0]*f[2]+x[0]/2,b[1]*f[2]+x[1]/2],C=`${p}${e||``}`;return(0,J.jsxs)(`svg`,{className:Y([`react-flow__background`,l]),style:{...c,...hd,"--xy-background-color-props":s,"--xy-background-pattern-color-props":o},ref:d,"data-testid":`rf__background`,children:[(0,J.jsx)(`pattern`,{id:C,x:f[0]%v[0],y:f[1]%v[1],width:v[0],height:v[1],patternUnits:`userSpaceOnUse`,patternTransform:`translate(-${S[0]},-${S[1]})`,children:h?(0,J.jsx)(Sp,{radius:y/2,className:u}):(0,J.jsx)(xp,{dimensions:x,lineWidth:i,variant:t,className:u})}),(0,J.jsx)(`rect`,{x:`0`,y:`0`,width:`100%`,height:`100%`,fill:`url(#${C})`})]})}Ep.displayName=`Background`;var Dp=(0,q.memo)(Ep);function Op(){return(0,J.jsx)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 32 32`,children:(0,J.jsx)(`path`,{d:`M32 18.133H18.133V32h-4.266V18.133H0v-4.266h13.867V0h4.266v13.867H32z`})})}function kp(){return(0,J.jsx)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 32 5`,children:(0,J.jsx)(`path`,{d:`M0 0h32v4.2H0z`})})}function Ap(){return(0,J.jsx)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 32 30`,children:(0,J.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 jp(){return(0,J.jsx)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 25 32`,children:(0,J.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 Mp(){return(0,J.jsx)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 25 32`,children:(0,J.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 Np({children:e,className:t,...n}){return(0,J.jsx)(`button`,{type:`button`,className:Y([`react-flow__controls-button`,t]),...n,children:e})}var Pp=e=>({isInteractive:e.nodesDraggable||e.nodesConnectable||e.elementsSelectable,minZoomReached:e.transform[2]<=e.minZoom,maxZoomReached:e.transform[2]>=e.maxZoom,ariaLabelConfig:e.ariaLabelConfig});function Fp({style:e,showZoom:t=!0,showFitView:n=!0,showInteractive:r=!0,fitViewOptions:i,onZoomIn:a,onZoomOut:o,onFitView:s,onInteractiveChange:c,className:l,children:u,position:d=`bottom-left`,orientation:f=`vertical`,"aria-label":p}){let m=$(),{isInteractive:h,minZoomReached:g,maxZoomReached:_,ariaLabelConfig:v}=Q(Pp,Z),{zoomIn:y,zoomOut:b,fitView:x}=ud();return(0,J.jsxs)(Su,{className:Y([`react-flow__controls`,f===`horizontal`?`horizontal`:`vertical`,l]),position:d,style:e,"data-testid":`rf__controls`,"aria-label":p??v[`controls.ariaLabel`],children:[t&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(Np,{onClick:()=>{y(),a?.()},className:`react-flow__controls-zoomin`,title:v[`controls.zoomIn.ariaLabel`],"aria-label":v[`controls.zoomIn.ariaLabel`],disabled:_,children:(0,J.jsx)(Op,{})}),(0,J.jsx)(Np,{onClick:()=>{b(),o?.()},className:`react-flow__controls-zoomout`,title:v[`controls.zoomOut.ariaLabel`],"aria-label":v[`controls.zoomOut.ariaLabel`],disabled:g,children:(0,J.jsx)(kp,{})})]}),n&&(0,J.jsx)(Np,{className:`react-flow__controls-fitview`,onClick:()=>{x(i),s?.()},title:v[`controls.fitView.ariaLabel`],"aria-label":v[`controls.fitView.ariaLabel`],children:(0,J.jsx)(Ap,{})}),r&&(0,J.jsx)(Np,{className:`react-flow__controls-interactive`,onClick:()=>{m.setState({nodesDraggable:!h,nodesConnectable:!h,elementsSelectable:!h}),c?.(!h)},title:v[`controls.interactive.ariaLabel`],"aria-label":v[`controls.interactive.ariaLabel`],children:h?(0,J.jsx)(Mp,{}):(0,J.jsx)(jp,{})}),u]})}Fp.displayName=`Controls`;var Ip=(0,q.memo)(Fp);function Lp({id:e,x:t,y:n,width:r,height:i,style:a,color:o,strokeColor:s,strokeWidth:c,className:l,borderRadius:u,shapeRendering:d,selected:f,onClick:p}){let{background:m,backgroundColor:h}=a||{},g=o||m||h;return(0,J.jsx)(`rect`,{className:Y([`react-flow__minimap-node`,{selected:f},l]),x:t,y:n,rx:u,ry:u,width:r,height:i,style:{fill:g,stroke:s,strokeWidth:c},shapeRendering:d,onClick:p?t=>p(t,e):void 0})}var Rp=(0,q.memo)(Lp),zp=e=>e.nodes.map(e=>e.id),Bp=e=>e instanceof Function?e:()=>e;function Vp({nodeStrokeColor:e,nodeColor:t,nodeClassName:n=``,nodeBorderRadius:r=5,nodeStrokeWidth:i,nodeComponent:a=Rp,onClick:o}){let s=Q(zp,Z),c=Bp(t),l=Bp(e),u=Bp(n),d=typeof window>`u`||window.chrome?`crispEdges`:`geometricPrecision`;return(0,J.jsx)(J.Fragment,{children:s.map(e=>(0,J.jsx)(Up,{id:e,nodeColorFunc:c,nodeStrokeColorFunc:l,nodeClassNameFunc:u,nodeBorderRadius:r,nodeStrokeWidth:i,NodeComponent:a,onClick:o,shapeRendering:d},e))})}function Hp({id:e,nodeColorFunc:t,nodeStrokeColorFunc:n,nodeClassNameFunc:r,nodeBorderRadius:i,nodeStrokeWidth:a,shapeRendering:o,NodeComponent:s,onClick:c}){let{node:l,x:u,y:d,width:f,height:p}=Q(t=>{let n=t.nodeLookup.get(e);if(!n)return{node:void 0,x:0,y:0,width:0,height:0};let r=n.internals.userNode,{x:i,y:a}=n.internals.positionAbsolute,{width:o,height:s}=oc(r);return{node:r,x:i,y:a,width:o,height:s}},Z);return!l||l.hidden||!sc(l)?null:(0,J.jsx)(s,{x:u,y:d,width:f,height:p,style:l.style,selected:!!l.selected,className:r(l),color:t(l),borderRadius:i,strokeColor:n(l),strokeWidth:a,shapeRendering:o,onClick:c,id:l.id})}var Up=(0,q.memo)(Hp),Wp=(0,q.memo)(Vp),Gp=200,Kp=150,qp=e=>!e.hidden,Jp=e=>{let 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?Gs(Os(e.nodeLookup,{filter:qp}),t):t,rfId:e.rfId,panZoom:e.panZoom,translateExtent:e.translateExtent,flowWidth:e.width,flowHeight:e.height,ariaLabelConfig:e.ariaLabelConfig}},Yp=(e,t)=>e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height,Xp=(e,t)=>Yp(e.viewBB,t.viewBB)&&Yp(e.boundingRect,t.boundingRect)&&e.rfId===t.rfId&&e.panZoom===t.panZoom&&e.translateExtent===t.translateExtent&&e.flowWidth===t.flowWidth&&e.flowHeight===t.flowHeight&&e.ariaLabelConfig===t.ariaLabelConfig,Zp=`react-flow__minimap-desc`;function Qp({style:e,className:t,nodeStrokeColor:n,nodeColor:r,nodeClassName:i=``,nodeBorderRadius:a=5,nodeStrokeWidth:o,nodeComponent:s,bgColor:c,maskColor:l,maskStrokeColor:u,maskStrokeWidth:d,position:f=`bottom-right`,onClick:p,onNodeClick:m,pannable:h=!1,zoomable:g=!1,ariaLabel:_,inversePan:v,zoomStep:y=1,offsetScale:b=5}){let x=$(),S=(0,q.useRef)(null),{boundingRect:C,viewBB:w,rfId:T,panZoom:E,translateExtent:D,flowWidth:O,flowHeight:k,ariaLabelConfig:A}=Q(Jp,Xp),j=e?.width??Gp,M=e?.height??Kp,N=C.width/j,P=C.height/M,F=Math.max(N,P),I=F*j,L=F*M,R=b*F,z=C.x-(I-C.width)/2-R,B=C.y-(L-C.height)/2-R,ee=I+R*2,V=L+R*2,te=`${Zp}-${T}`,H=(0,q.useRef)(0),ne=(0,q.useRef)();H.current=F,(0,q.useEffect)(()=>{if(S.current&&E)return ne.current=wl({domNode:S.current,panZoom:E,getTransform:()=>x.getState().transform,getViewScale:()=>H.current}),()=>{ne.current?.destroy()}},[E]),(0,q.useEffect)(()=>{ne.current?.update({translateExtent:D,width:O,height:k,inversePan:v,pannable:h,zoomStep:y,zoomable:g})},[h,g,v,y,D,O,k]);let re=p?e=>{let[t,n]=ne.current?.pointer(e)||[0,0];p(e,{x:t,y:n})}:void 0,ie=m?(0,q.useCallback)((e,t)=>{let n=x.getState().nodeLookup.get(t).internals.userNode;m(e,n)},[]):void 0,U=_??A[`minimap.ariaLabel`];return(0,J.jsx)(Su,{position:f,style:{...e,"--xy-minimap-background-color-props":typeof c==`string`?c:void 0,"--xy-minimap-mask-background-color-props":typeof l==`string`?l:void 0,"--xy-minimap-mask-stroke-color-props":typeof u==`string`?u:void 0,"--xy-minimap-mask-stroke-width-props":typeof d==`number`?d*F: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 o==`number`?o:void 0},className:Y([`react-flow__minimap`,t]),"data-testid":`rf__minimap`,children:(0,J.jsxs)(`svg`,{width:j,height:M,viewBox:`${z} ${B} ${ee} ${V}`,className:`react-flow__minimap-svg`,role:`img`,"aria-labelledby":te,ref:S,onClick:re,children:[U&&(0,J.jsx)(`title`,{id:te,children:U}),(0,J.jsx)(Wp,{onClick:ie,nodeColor:r,nodeStrokeColor:n,nodeBorderRadius:a,nodeClassName:i,nodeStrokeWidth:o,nodeComponent:s}),(0,J.jsx)(`path`,{className:`react-flow__minimap-mask`,d:`M${z-R},${B-R}h${ee+R*2}v${V+R*2}h${-ee-R*2}z
|
|
8
|
+
M${w.x},${w.y}h${w.width}v${w.height}h${-w.width}z`,fillRule:`evenodd`,pointerEvents:`none`})]})})}Qp.displayName=`MiniMap`;var $p=(0,q.memo)(Qp),em=e=>t=>e?`${Math.max(1/t.transform[2],1)}`:void 0,tm={[zl.Line]:`right`,[zl.Handle]:`bottom-right`};function nm({nodeId:e,position:t,variant:n=zl.Handle,className:r,style:i=void 0,children:a,color:o,minWidth:s=10,minHeight:c=10,maxWidth:l=Number.MAX_VALUE,maxHeight:u=Number.MAX_VALUE,keepAspectRatio:d=!1,resizeDirection:f,autoScale:p=!0,shouldResize:m,onResizeStart:h,onResize:g,onResizeEnd:_}){let v=kd(),y=typeof e==`string`?e:v,b=$(),x=(0,q.useRef)(null),S=n===zl.Handle,C=Q((0,q.useCallback)(em(S&&p),[S,p]),Z),w=(0,q.useRef)(null),T=t??tm[n];(0,q.useEffect)(()=>{if(!(!x.current||!y))return w.current||=Xl({domNode:x.current,nodeId:y,getStoreItems:()=>{let{nodeLookup:e,transform:t,snapGrid:n,snapToGrid:r,nodeOrigin:i,domNode:a}=b.getState();return{nodeLookup:e,transform:t,snapGrid:n,snapToGrid:r,nodeOrigin:i,paneDomNode:a}},onChange:(e,t)=>{let{triggerNodeChanges:n,nodeLookup:r,parentLookup:i,nodeOrigin:a}=b.getState(),o=[],s={x:e.x,y:e.y},c=r.get(y);if(c&&c.expandParent&&c.parentId){let t=c.origin??a,n=e.width??c.measured.width??0,l=e.height??c.measured.height??0,u=rl([{id:c.id,parentId:c.parentId,rect:{width:n,height:l,...cc({x:e.x??c.position.x,y:e.y??c.position.y},{width:n,height:l},c.parentId,r,t)}}],r,i,a);o.push(...u),s.x=e.x?Math.max(t[0]*n,e.x):void 0,s.y=e.y?Math.max(t[1]*l,e.y):void 0}if(s.x!==void 0&&s.y!==void 0){let e={id:y,type:`position`,position:{...s}};o.push(e)}if(e.width!==void 0&&e.height!==void 0){let t={id:y,type:`dimensions`,resizing:!0,setAttributes:f?f===`horizontal`?`width`:`height`:!0,dimensions:{width:e.width,height:e.height}};o.push(t)}for(let e of t){let t={...e,type:`position`};o.push(t)}n(o)},onEnd:({width:e,height:t})=>{let n={id:y,type:`dimensions`,resizing:!1,dimensions:{width:e,height:t}};b.getState().triggerNodeChanges([n])}}),w.current.update({controlPosition:T,boundaries:{minWidth:s,minHeight:c,maxWidth:l,maxHeight:u},keepAspectRatio:d,resizeDirection:f,onResizeStart:h,onResize:g,onResizeEnd:_,shouldResize:m}),()=>{w.current?.destroy()}},[T,s,c,l,u,d,h,g,_,m]);let E=T.split(`-`);return(0,J.jsx)(`div`,{className:Y([`react-flow__resize-control`,`nodrag`,...E,n,r]),ref:x,style:{...i,scale:C,...o&&{[S?`backgroundColor`:`borderColor`]:o}},children:a})}var rm=(0,q.memo)(nm),im=`/assets/elk-worker.min-C9JGDOE-.js`,am;function om(){return am??=Ye(async()=>{let{default:t}=await import(`./elk-api-DjmKsHXc.js`).then(t=>e(t.default,1));return{default:t}},__vite__mapDeps([0,1])).then(({default:e})=>new e({workerUrl:im})),am}var sm={"elk.algorithm":`layered`,"elk.direction":`RIGHT`,"elk.hierarchyHandling":`INCLUDE_CHILDREN`,"elk.layered.spacing.nodeNodeBetweenLayers":`70`,"elk.spacing.nodeNode":`44`,"elk.spacing.componentComponent":`70`,"elk.layered.crossingMinimization.strategy":`LAYER_SWEEP`,"elk.padding":`[top=34,left=14,bottom=14,right=14]`},cm=160,lm=88;async function um(e,t){if(e.length===0)return e;let n=new Map,r=new Set;for(let t of e)t.parentId&&r.add(t.parentId);for(let t of e){let e=t.type===`classNode`||t.type===`coreNode`||t.type===`moduleNode`||t.type===`group`&&!r.has(t.id),i=typeof t.style?.width==`number`?t.style.width:void 0,a=typeof t.style?.height==`number`?t.style.height:void 0;n.set(t.id,{id:t.id,...e?{width:i??t.measured?.width??cm,height:a??t.measured?.height??lm}:{layoutOptions:sm},children:[]})}let i=[];for(let t of e){let e=n.get(t.id);t.parentId&&n.has(t.parentId)?n.get(t.parentId).children.push(e):i.push(e)}let a={id:`root`,layoutOptions:sm,children:i,edges:t.map(e=>({id:e.id,sources:[e.source],targets:[e.target]}))},o;try{o=await(await om()).layout(a)}catch{return e}let s=new Map,c=e=>{s.set(e.id,{x:e.x??0,y:e.y??0,w:e.width??0,h:e.height??0}),e.children?.forEach(c)};return o.children?.forEach(c),e.map(e=>{let t=s.get(e.id);if(!t)return e;let n={...e,position:{x:t.x,y:t.y}};return e.type===`group`&&(n.style={...e.style,width:t.w,height:t.h}),n})}var dm=32;function fm(e){let t=new Map;for(let n of e){if(n.type!==`floating`||n.source===n.target)continue;let[e,r]=[n.source,n.target].sort(),i=`${e}\u0000${r}`,a=t.get(i);a?a.push(n):t.set(i,[n])}let n=new Map;for(let e of t.values()){if(e.length<2)continue;let t=[...e].sort((e,t)=>{let n=String(e.data?.label??e.data?.edgeClass??``),r=String(t.data?.label??t.data?.edgeClass??``);return n.localeCompare(r)||e.id.localeCompare(t.id)}),r=(t.length-1)/2;t.forEach((e,i)=>{let a=(i-r)*dm,o=e.source<e.target?1:-1;n.set(e.id,{parallelCount:t.length,parallelOffset:a*o})})}return e.map(e=>{let t=n.get(e.id);return t?{...e,data:{...e.data,...t}}:e})}function pm(e,t){let n=(e.measured.width??0)/2,r=(e.measured.height??0)/2,i=e.internals.positionAbsolute,a=t.internals.positionAbsolute,o=i.x+n,s=i.y+r,c=a.x+(t.measured.width??0)/2,l=a.y+(t.measured.height??0)/2,u=(c-o)/(2*n)-(l-s)/(2*r),d=(c-o)/(2*n)+(l-s)/(2*r),f=1/(Math.abs(u)+Math.abs(d)||1),p=f*u,m=f*d;return{x:n*(p+m)+o,y:r*(-p+m)+s}}function mm(e,t){let n=e.internals.positionAbsolute,r=Math.round(n.x),i=Math.round(n.y),a=Math.round(t.x),o=Math.round(t.y);return a<=r+1?X.Left:a>=r+(e.measured.width??0)-1?X.Right:o<=i+1?X.Top:X.Bottom}function hm(e,t){let n=pm(e,t),r=pm(t,e);return{sx:n.x,sy:n.y,tx:r.x,ty:r.y,sourcePos:mm(e,n),targetPos:mm(t,r)}}function gm({sx:e,sy:t,tx:n,ty:r,offset:i}){let a=n-e,o=r-t,s=Math.hypot(a,o)||1,c=-o/s,l=a/s,u=(e+n)/2+c*i*2,d=(t+r)/2+l*i*2,f=e*.25+u*.5+n*.25,p=t*.25+d*.5+r*.25;return[`M ${e},${t} Q ${u},${d} ${n},${r}`,f,p]}function _m({id:e,source:t,target:n,markerStart:r,markerEnd:i,style:a,data:o}){let s=bp(t),c=bp(n);if(!s||!c)return null;let{sx:l,sy:u,tx:d,ty:f,sourcePos:p,targetPos:m}=hm(s,c),h=o,[g,_,v]=(h?.parallelCount??1)>1?gm({sx:l,sy:u,tx:d,ty:f,offset:h?.parallelOffset??0}):Cc({sourceX:l,sourceY:u,sourcePosition:p,targetX:d,targetY:f,targetPosition:m,curvature:.25}),y=h?.label,b=h?.selected===!0,x=b?`var(--color-primary)`:a?.stroke??`var(--color-muted-foreground)`,S=b?{...a,stroke:x,strokeWidth:3}:a;return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(vf,{id:e,path:g,markerStart:r,markerEnd:i,style:S,interactionWidth:18}),y&&(0,J.jsx)(yp,{children:(0,J.jsx)(`div`,{className:`absolute font-mono font-extrabold text-[9px] px-1 rounded pointer-events-none`,style:{transform:`translate(-50%, -50%) translate(${_}px, ${v}px)`,color:x,background:`oklch(0.17 0.01 270)`},children:y})})]})}function vm({id:e,source:t,target:n,style:r}){let i=bp(t),a=bp(n);if(!i||!a)return null;let o=i.internals.positionAbsolute,s=a.internals.positionAbsolute,c=i.measured.width??0,l=i.measured.height??0,u=a.measured.width??0,d=a.measured.height??0,f=s.x>=o.x,[p]=Ic({sourceX:f?o.x+c:o.x,sourceY:o.y+l/2,sourcePosition:f?X.Right:X.Left,targetX:f?s.x:s.x+u,targetY:s.y+d/2,targetPosition:f?X.Left:X.Right,borderRadius:16});return(0,J.jsx)(vf,{id:e,path:p,style:r,interactionWidth:18})}var ym={floating:_m,tree:vm};function bm({domainId:e,anchorRef:t,kind:n,excerpt:r,className:i}){let{threads:a,status:o,orphaned:s}=Ve(t,e),c=(0,q.useId)(),l=U(e=>e.openAnchorRef),u=U(e=>e.openAnchorId),d=e?`${e}::${t}`:t,f=l===d&&(u===null||u===c),p=U(e=>e.setOpenAnchor);return a.length===0?null:(0,J.jsxs)(A,{modal:!1,open:f,onOpenChange:e=>p(e?d:null,e?c:null),children:[(0,J.jsx)(P,{asChild:!0,children:(0,J.jsxs)(`button`,{type:`button`,title:`View comments`,onClick:e=>{e.stopPropagation(),p(f?null:d,c)},className:H(`nodrag nopan absolute right-1 top-1 z-30 flex h-[18px] min-w-[18px] items-center justify-center gap-0.5 rounded-full px-1 text-[10px] font-bold shadow-md ring-2 ring-card hover:brightness-110`,s?`bg-destructive text-white`:o===`open`?`bg-primary text-primary-foreground`:`bg-muted text-muted-foreground`,i),children:[(0,J.jsx)(et,{className:`h-2.5 w-2.5`}),a.length]})}),(0,J.jsx)(m,{side:`top`,align:`end`,className:`w-80`,children:(0,J.jsx)(Fe,{domainId:e,anchor:{ref:t,kind:n},excerpt:r,threads:a,onClose:()=>p(null)})})]})}function xm(e){let t=e.trim();if(!t.startsWith(`<svg`))return null;let n=t;return n=n.replace(/<script[\s\S]*?<\/script>/gi,``),n=n.replace(/<foreignObject[\s\S]*?<\/foreignObject>/gi,``),n=n.replace(/\son\w+\s*=\s*"[^"]*"/gi,``),n=n.replace(/\son\w+\s*=\s*'[^']*'/gi,``),n=n.replace(/(href|xlink:href)\s*=\s*"(?!#)[^"]*"/gi,``),n=n.replace(/<!--[\s\S]*?-->/g,``),n=n.replace(/<svg\b([^>]*)>/i,(e,t)=>{let n=t.replace(/\swidth\s*=\s*"[^"]*"/i,``).replace(/\sheight\s*=\s*"[^"]*"/i,``);return/viewBox=/i.test(n)||(n+=` viewBox="0 0 24 24"`),`<svg${n} width="100%" height="100%" preserveAspectRatio="xMidYMid meet">`}),n}function Sm({svg:e,className:t}){let n=(0,q.useMemo)(()=>e?xm(e):null,[e]);return n?(0,J.jsx)(`span`,{className:H(`inline-flex shrink-0 items-center justify-center [&>svg]:h-full [&>svg]:w-full`,t),dangerouslySetInnerHTML:{__html:n}}):null}var Cm=e=>`core.node.${e}`,wm=e=>e.split(`/`).filter(Boolean).pop()??e,Tm=/^.+:class\.[A-Za-z][A-Za-z0-9_]*\.property\.([A-Za-z][A-Za-z0-9_]*)$/;function Em(e){let t=Object.entries(e).map(([e,t])=>({key:e,shortName:Tm.exec(e)?.[1]??e,value:t})),n=new Map;for(let e of t)n.set(e.shortName,(n.get(e.shortName)??0)+1);return t.map(({key:e,shortName:t,value:r})=>({key:e,label:n.get(t)===1?t:e,value:r}))}function Dm(e,t){let n=Em(e);return t.flatMap(e=>n.filter(t=>t.label===e))[0]}function Om(e){let t=Dm(e.data,[`name`,`title`])?.value;return typeof t==`string`&&t?t:wm(e.path)}function km(e){let t=[...new Set(e.nodes.map(e=>e.className))].sort();return new Map(t.map((e,t)=>[e,i(t)]))}var Am=e=>e==null?`—`:typeof e==`string`?e:Array.isArray(e)?e.map(Am).join(`, `):JSON.stringify(e);function jm(e,t=2){let n=Dm(e.data,[`name`,`title`]);return Em(e.data).filter(e=>e.key!==n?.key).slice(0,t).map(({label:e,value:t})=>[e,Am(t)])}function Mm(e,t){return e.ir?.classes?.[t]?.icon}function Nm(e,t,n){let r=new Set(e.nodes.map(e=>Cm(e.path))),i=e.nodes.map(e=>{let r=jm(e);return{id:Cm(e.path),type:`coreNode`,position:{x:0,y:0},data:{path:e.path,className:e.className,title:Om(e),hue:n.get(e.className)??264,icon:Mm(t,e.className),fields:r,selected:!1},style:{width:184,height:50+r.length*15}}}),a=`/:${e.domain}`;for(let t of new Set(e.edges.flatMap(e=>[e.from,e.to]))){let n=Cm(t);if(r.has(n))continue;let o=t===a;i.push({id:n,type:`coreNode`,position:{x:0,y:0},selectable:!1,focusable:!1,data:{path:t,className:o?`Domain`:`External`,title:o?e.domain:wm(t),hue:o?210:264,fields:[],selected:!1,virtual:!0},style:{width:184,height:50}}),r.add(n)}let o=[];for(let t of e.nodes){if(!t.parent)continue;let e=Cm(t.parent),n=Cm(t.path);!r.has(e)||!r.has(n)||o.push({id:`core.struct.${t.path}`,source:e,target:n,type:`tree`,data:{structural:!0},style:{stroke:`oklch(0.5 0.02 264)`,strokeWidth:1.4,strokeDasharray:`4 4`}})}for(let t of e.edges){let e=Cm(t.from),n=Cm(t.to);if(!r.has(e)||!r.has(n))continue;let i=`oklch(0.72 0.16 35)`;o.push({id:`core.edge.${t.from}__${t.edgeName}__${t.to}`,source:e,target:n,type:`floating`,data:{label:t.edgeName},markerEnd:{type:bs.ArrowClosed,color:i,width:16,height:16},style:{stroke:i,strokeWidth:2}})}return{nodes:i,edges:o}}function Pm({count:e}){let t=U(e=>e.canvasMode),n=U(e=>e.setCanvasMode),r=t===`core`;return(0,J.jsxs)(v,{size:`xs`,variant:r?`default`:`outline`,onClick:()=>n(r?`schema`:`core`),"aria-pressed":r,title:r?`Back to the schema graph`:`Show core (genesis) data`,children:[r?(0,J.jsx)(Te,{className:`h-3.5 w-3.5`}):(0,J.jsx)(je,{className:`h-3.5 w-3.5`}),r?`Schema`:`Core`,!r&&e!==void 0&&(0,J.jsx)(`span`,{className:`rounded-full bg-muted px-1 text-[10px] tabular-nums text-muted-foreground`,children:e})]})}function Fm({data:e}){let t=e,n=t.className===`Folder`;return(0,J.jsxs)(`div`,{className:H(`relative rounded-lg border bg-card shadow-sm w-[184px] transition-shadow`,t.selected?`ring-2 ring-primary`:`hover:shadow-md`),style:{borderLeft:`3px solid oklch(0.72 0.15 ${t.hue})`},children:[!t.virtual&&(0,J.jsx)(bm,{anchorRef:Cm(t.path),kind:`section`,excerpt:`${t.title} (${t.className})`}),(0,J.jsx)(Ld,{type:`target`,position:X.Top,className:`!opacity-0`}),(0,J.jsxs)(`div`,{className:`px-2.5 py-1.5`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(`span`,{style:{color:`oklch(0.82 0.14 ${t.hue})`},className:`shrink-0`,children:t.icon?(0,J.jsx)(Sm,{svg:t.icon,className:`h-5 w-5`}):n?(0,J.jsx)(gt,{className:`h-5 w-5`}):(0,J.jsx)(k,{className:`h-5 w-5`})}),(0,J.jsxs)(`div`,{className:`min-w-0`,children:[(0,J.jsx)(`div`,{className:`text-[13px] font-extrabold truncate leading-tight`,children:t.title}),(0,J.jsx)(`div`,{className:`text-[10px] font-mono text-muted-foreground/70 truncate leading-tight`,children:t.className})]})]}),t.fields.length>0&&(0,J.jsx)(`div`,{className:`mt-1.5 flex flex-col gap-0.5`,children:t.fields.map(([e,t])=>(0,J.jsxs)(`div`,{className:`flex items-baseline gap-1 text-[10px] leading-tight`,children:[(0,J.jsx)(`span`,{className:`font-mono text-muted-foreground/60 shrink-0`,children:e}),(0,J.jsx)(`span`,{className:`truncate text-foreground/80`,children:t})]},e))})]}),(0,J.jsx)(Ld,{type:`source`,position:X.Bottom,className:`!opacity-0`})]})}var Im={coreNode:Fm};function Lm({core:e,bundle:t,selectedPath:n,onSelect:r}){let{fitView:i}=ud(),a=U(e=>e.setOpenAnchor),o=(0,q.useMemo)(()=>km(e),[e]),s=(0,q.useMemo)(()=>Nm(e,t,o),[e,t,o]),[c,l]=(0,q.useState)([]),[u,d]=(0,q.useState)([]);(0,q.useEffect)(()=>{let e=!1;return um(s.nodes,s.edges).then(t=>{e||(l(t),d(fm(s.edges)),requestAnimationFrame(()=>i({padding:.2,duration:400})))}),()=>{e=!0}},[s,i]);let f=(0,q.useCallback)(e=>l(t=>Ku(e,t)),[]),p=(0,q.useCallback)(e=>d(t=>qu(e,t)),[]),[m,h]=(0,q.useState)(!0),[g,_]=(0,q.useState)(!0),y=(0,q.useMemo)(()=>c.filter(e=>{let t=e.data;return!(!m&&t.className===`Folder`||!g&&t.virtual)}),[c,g,m]),b=(0,q.useMemo)(()=>new Set(y.map(e=>e.id)),[y]),x=(0,q.useMemo)(()=>y.map(e=>{let t=e.data.path===n;return e.data.selected===t?e:{...e,data:{...e.data,selected:t}}}),[y,n]),S=(0,q.useMemo)(()=>u.filter(e=>!b.has(e.source)||!b.has(e.target)?!1:e.type===`tree`?m:g),[u,b,m,g]);return(0,J.jsxs)(_p,{nodes:x,edges:S,nodeTypes:Im,edgeTypes:ym,onNodesChange:f,onEdgesChange:p,onNodeClick:(e,t)=>{let n=t.data;n.virtual||r(n.path)},onPaneClick:()=>{r(null),a(null)},minZoom:.15,nodesConnectable:!1,proOptions:{hideAttribution:!0},children:[(0,J.jsx)(Dp,{gap:18,size:1,color:`oklch(0.3 0.01 270)`}),(0,J.jsx)(Ip,{className:`!bg-card !border !border-border [&_button]:!bg-card [&_button]:!border-border [&_button]:!fill-foreground`,showInteractive:!1}),(0,J.jsx)($p,{pannable:!0,zoomable:!0,className:`!bg-card !border !border-border`,nodeColor:e=>`oklch(0.6 0.13 ${e.data.hue})`,nodeStrokeWidth:0,maskColor:`oklch(0.17 0.01 270 / 0.7)`}),(0,J.jsxs)(Su,{position:`top-right`,className:`flex gap-1.5`,children:[(0,J.jsxs)(v,{size:`xs`,variant:m?`default`:`outline`,onClick:()=>h(e=>!e),"aria-pressed":m,title:`Folders & the parent→child tree — toggle to focus on the semantic graph alone`,children:[(0,J.jsx)(vt,{className:`h-3.5 w-3.5`}),` Structure`]}),(0,J.jsxs)(v,{size:`xs`,variant:g?`default`:`outline`,onClick:()=>_(e=>!e),"aria-pressed":g,title:`Typed (semantic) edges — toggle to focus on the tree/organization alone`,children:[(0,J.jsx)(Ce,{className:`h-3.5 w-3.5`}),` Semantics`]}),(0,J.jsx)(Pm,{})]})]})}function Rm({anchor:e,excerpt:t,children:n,className:r}){let i=(0,q.useId)(),a=U(e=>e.openAnchorRef),o=U(e=>e.openAnchorId),s=a===e.ref&&(o===null||o===i),c=U(e=>e.setOpenAnchor),{threads:l,status:u,orphaned:d}=Ve(e.ref);return(0,J.jsxs)(A,{modal:!1,open:s,onOpenChange:t=>c(t?e.ref:null,t?i:null),children:[(0,J.jsx)(P,{asChild:!0,children:(0,J.jsxs)(`span`,{"data-anchor-ref":e.ref,"data-commentable":``,className:H(`group relative block`,r),children:[n,(0,J.jsx)(`button`,{type:`button`,onClick:t=>{t.stopPropagation(),c(s?null:e.ref,i)},title:`Comment on ${e.ref}`,className:H(`absolute right-1 top-1 z-10 inline-flex h-5 w-5 items-center justify-center rounded-md border bg-card text-muted-foreground shadow-sm transition-opacity hover:text-primary`,s?`opacity-100`:`opacity-40 group-hover:opacity-100`),children:(0,J.jsx)(xt,{className:`h-3 w-3`})}),l.length>0&&(0,J.jsx)(f,{count:l.length,status:u,orphaned:d,onClick:()=>c(s?null:e.ref,i),className:`absolute -right-1.5 -top-1.5 z-10`})]})}),(0,J.jsx)(m,{onInteractOutside:e=>e.preventDefault(),className:`max-h-[var(--radix-popover-content-available-height)] overflow-y-auto`,children:(0,J.jsx)(Fe,{anchor:e,excerpt:t,threads:l,onClose:()=>c(null)})})]})}function zm({core:e,bundle:t,selectedPath:n}){let r=(0,q.useMemo)(()=>e.nodes.find(e=>e.path===n)??null,[e,n]),i=(0,q.useMemo)(()=>km(e),[e]);if(!r)return(0,J.jsx)(`div`,{className:`flex h-full items-center justify-center p-6 text-center text-sm text-muted-foreground/70`,children:`Select a core node to see what's set on it.`});let a=i.get(r.className)??264,o=Mm(t,r.className),s=r.className===`Folder`,c=Em(r.data),l=e.edges.filter(e=>e.from===r.path||e.to===r.path);return(0,J.jsxs)(`div`,{className:`h-full overflow-y-auto`,children:[(0,J.jsx)(Rm,{anchor:{ref:Cm(r.path),kind:`section`},excerpt:`${Om(r)} (${r.className})`,className:`block`,children:(0,J.jsxs)(`div`,{className:`flex items-center gap-2.5 border-b px-4 py-3`,children:[(0,J.jsx)(`span`,{style:{color:`oklch(0.82 0.14 ${a})`},className:`shrink-0`,children:o?(0,J.jsx)(Sm,{svg:o,className:`h-7 w-7`}):s?(0,J.jsx)(gt,{className:`h-6 w-6`}):(0,J.jsx)(k,{className:`h-6 w-6`})}),(0,J.jsxs)(`div`,{className:`min-w-0`,children:[(0,J.jsx)(`div`,{className:`text-base font-extrabold truncate`,children:Om(r)}),(0,J.jsx)(`div`,{className:`text-[11px] font-mono text-muted-foreground/70`,children:r.className})]})]})}),(0,J.jsxs)(`div`,{className:`px-4 py-3`,children:[(0,J.jsx)(`div`,{className:`text-[10px] font-semibold uppercase tracking-wide text-muted-foreground/70`,children:`Path`}),(0,J.jsx)(`div`,{className:`mt-1 break-all font-mono text-[11px] text-foreground/80`,children:r.path})]}),(0,J.jsxs)(`div`,{className:`px-4 pb-3`,children:[(0,J.jsx)(`div`,{className:`text-[10px] font-semibold uppercase tracking-wide text-muted-foreground/70`,children:`Data`}),c.length===0?(0,J.jsx)(`p`,{className:`mt-1 text-[12px] text-muted-foreground/60`,children:`No fields set.`}):(0,J.jsx)(`div`,{className:`mt-1.5 flex flex-col gap-1.5`,children:c.map(({key:e,label:t,value:n})=>(0,J.jsxs)(`div`,{className:`flex flex-col gap-0.5 rounded-md border bg-card/40 px-2.5 py-1.5`,children:[(0,J.jsx)(`span`,{className:`font-mono text-[11px] text-muted-foreground/70`,title:t===e?void 0:e,children:t}),(0,J.jsx)(`span`,{className:`break-words text-[13px] text-foreground/90`,children:Am(n)})]},e))})]}),l.length>0&&(0,J.jsxs)(`div`,{className:`px-4 pb-4`,children:[(0,J.jsx)(`div`,{className:`text-[10px] font-semibold uppercase tracking-wide text-muted-foreground/70`,children:`Edges`}),(0,J.jsx)(`div`,{className:`mt-1.5 flex flex-col gap-1`,children:l.map((e,t)=>{let n=e.from===r.path,i=n?e.to:e.from;return(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 text-[12px]`,children:[(0,J.jsx)(Ce,{className:`h-3.5 w-3.5 shrink-0 text-amber-400`}),(0,J.jsx)(`span`,{className:`font-mono text-amber-300`,children:e.edgeName}),(0,J.jsx)(`span`,{className:`text-muted-foreground/60`,children:n?`→`:`←`}),(0,J.jsx)(`span`,{className:`truncate text-foreground/80`,title:i,children:wm(i)})]},`${e.edgeName}-${t}`)})})]})]})}function Bm(e){let t=new Set(e.nodes.map(e=>e.path)),n=new Map,r=[];for(let i of e.nodes)if(i.parent&&t.has(i.parent)){let e=n.get(i.parent)??[];e.push(i),n.set(i.parent,e)}else r.push(i);let i=e=>({node:e,children:(n.get(e.path)??[]).map(i)});return r.map(i)}function Vm({item:e,depth:t,bundle:n,hues:r,selectedPath:i,onSelect:a}){let[o,s]=(0,q.useState)(!0),c=e.node,l=e.children.length>0,u=i===c.path,d=r.get(c.className)??264,f=Mm(n,c.className),p=c.className===`Folder`;return(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{className:H(`group/row flex items-center gap-0.5 pr-2 rounded-md hover:bg-accent/50`,u&&`bg-accent text-accent-foreground`),style:{paddingLeft:6+t*12},children:[l?(0,J.jsx)(`button`,{type:`button`,onClick:()=>s(e=>!e),className:`shrink-0 rounded p-0.5 text-muted-foreground hover:bg-white/5`,title:o?`Collapse`:`Expand`,children:o?(0,J.jsx)(Ne,{className:`h-3 w-3`}):(0,J.jsx)(N,{className:`h-3 w-3`})}):(0,J.jsx)(`span`,{className:`w-4 shrink-0`}),(0,J.jsx)(Rm,{anchor:{ref:Cm(c.path),kind:`section`},excerpt:`${Om(c)} (${c.className})`,className:`flex-1 min-w-0`,children:(0,J.jsxs)(`button`,{type:`button`,onClick:()=>a(c.path),className:`flex w-full items-center gap-1.5 py-1 text-left min-w-0`,children:[(0,J.jsx)(`span`,{style:{color:`oklch(0.8 0.13 ${d})`},className:`shrink-0`,children:f?(0,J.jsx)(Sm,{svg:f,className:`h-4 w-4`}):p?(0,J.jsx)(gt,{className:`h-3.5 w-3.5`}):(0,J.jsx)(k,{className:`h-3.5 w-3.5`})}),(0,J.jsx)(`span`,{className:`truncate font-bold`,children:Om(c)}),(0,J.jsx)(`span`,{className:`ml-auto text-[10px] font-mono text-muted-foreground/50 shrink-0`,children:c.className})]})})]}),o&&l&&(0,J.jsx)(`div`,{children:e.children.map(e=>(0,J.jsx)(Vm,{item:e,depth:t+1,bundle:n,hues:r,selectedPath:i,onSelect:a},e.node.path))})]})}function Hm({core:e,bundle:t,selectedPath:n,onSelect:r}){let i=(0,q.useMemo)(()=>km(e),[e]),a=(0,q.useMemo)(()=>Bm(e),[e]);return(0,J.jsxs)(`div`,{className:`text-sm py-2`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 px-3 pb-1.5 text-[10px] font-semibold uppercase tracking-wide text-muted-foreground`,children:[(0,J.jsx)(je,{className:`h-3.5 w-3.5`}),` Core`,(0,J.jsx)(`span`,{className:`ml-auto tabular-nums text-muted-foreground/50`,children:e.nodes.length})]}),a.length===0?(0,J.jsx)(`p`,{className:`px-3 pt-2 text-[12px] text-muted-foreground/60`,children:e.error?e.error.message:`This domain defines no core (genesis) data.`}):a.map(e=>(0,J.jsx)(Vm,{item:e,depth:0,bundle:t,hues:i,selectedPath:n,onSelect:r},e.node.path))]})}var Um=`kernel.astrale.ai`,Wm=new Set([`Node`,`Edge`]);function Gm(e,t){let n=e.ir;if(n)return typeof t==`string`?n.classes[t]:t.origin===n.domain?n.classes[t.name]:n.importedClassesByKey[W(t)]}function Km(e,t){return t.origin===e.ir?.domain?`local`:t.origin===Um?`kernel`:`external`}function qm(e,t){let n=e.ir?.classes[t];if(!n)return[];let r=new Set(Object.keys(n.properties)),i=new Set(Object.keys(n.methods)),a=new Set(r),o=new Set,s=new Set,c=[...n.extendsRefs??[]],l=[];for(;c.length>0;){let t=c.shift(),n=W(t);if(s.has(n)||t.origin===Um&&Wm.has(t.name))continue;s.add(n);let r=Gm(e,t);if(!r)continue;c.push(...r.extendsRefs??[]);let u=Object.entries(r.properties).filter(([e])=>!a.has(e)).map(([e,t])=>[e,t,!(r.required??[]).includes(e)]),d=Object.entries(r.methods).filter(([e])=>!o.has(e)).map(([e,t])=>({name:e,method:t,overridden:i.has(e)}));for(let[e]of u)a.add(e);for(let{name:e}of d)o.add(e);(u.length!==0||d.length!==0)&&l.push({owner:t.name,ref:t,tier:Km(e,t),...t.origin===e.ir?.domain?{}:{origin:t.origin},props:u,methods:d})}let u={local:0,external:1,kernel:2};return l.sort((e,t)=>u[e.tier]-u[t.tier])}function Jm(e){return e.reduce((e,t)=>e+t.props.length+t.methods.length,0)}function Ym({domainId:e,view:t,open:n,onOpenChange:r}){let i=I(e,t.slug,n),s=i.data,[c,l]=(0,q.useState)(``),[u,d]=(0,q.useState)(0),[f,p]=(0,q.useState)(!1),[m,h]=(0,q.useState)({phase:`idle`}),g=(0,q.useRef)(``);(0,q.useEffect)(()=>{if(!n){g.current=``,l(``),h({phase:`idle`});return}if(!s)return;let r=`${e}:${t.slug}:${s.instance??`none`}`;g.current!==r&&(g.current=r,l(s.targets.selected?.id??``))},[e,n,s,t.slug]);let _=!!s&&(!s.targetRequired||s.targets.items.some(e=>e.id===c)),v=n&&!f&&!!s?.instance&&_;(0,q.useEffect)(()=>{if(!v){h({phase:`idle`});return}let n=!1,r=null;return h({phase:`launching`}),G.launchView(e,t.slug,c?{targetId:c}:{}).then(t=>{t.status===`ready`?(r=t.sessionId,n?G.closeViewSession(e,t.sessionId):h({phase:`ready`,session:t})):n||h({phase:`error`,reason:t.reason})}).catch(e=>{n||h({phase:`error`,reason:e instanceof Error?e.message:String(e)})}),()=>{n=!0,r&&G.closeViewSession(e,r)}},[u,e,v,s?.instance,c,t.slug]),(0,q.useEffect)(()=>{if(m.phase!==`ready`)return;let t=()=>{let t=`/api/domain/${encodeURIComponent(e)}/views/sessions/close`;navigator.sendBeacon(t,new Blob([JSON.stringify({sessionId:m.session.sessionId})],{type:`application/json`}))};return window.addEventListener(`pagehide`,t),()=>window.removeEventListener(`pagehide`,t)},[e,m]);let y=async()=>{if(!f){p(!0),h({phase:`idle`});try{await i.refetch(),d(e=>e+1)}catch(e){h({phase:`error`,reason:e instanceof Error?e.message:String(e)})}finally{p(!1)}}};return(0,J.jsx)(st,{open:n,onOpenChange:r,children:(0,J.jsxs)(o,{className:`grid h-[90vh] w-[95vw] max-w-[1500px] grid-rows-[auto_auto_1fr] gap-0 overflow-hidden rounded-2xl p-0`,children:[(0,J.jsxs)(`header`,{className:`flex min-w-0 items-center gap-3 border-b bg-card/95 px-4 py-3 pr-12`,children:[(0,J.jsx)(`span`,{className:`grid h-9 w-9 shrink-0 place-items-center rounded-xl bg-sky-500/12 text-sky-400`,children:(0,J.jsx)(St,{className:`h-[18px] w-[18px]`})}),(0,J.jsxs)(`div`,{className:`min-w-0`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(re,{className:`truncate text-sm font-semibold`,children:t.slug}),(0,J.jsxs)(`code`,{className:`rounded bg-muted px-1.5 py-0.5 text-[10px] text-muted-foreground`,children:[`view.`,t.slug]})]}),(0,J.jsx)(`p`,{className:`truncate text-[11px] text-muted-foreground`,children:t.description??`Domain view preview`})]}),(0,J.jsxs)(`div`,{className:`ml-auto flex shrink-0 items-center gap-1.5`,children:[m.phase===`ready`&&(0,J.jsxs)(`a`,{href:m.session.pageUrl,target:`_blank`,rel:`noreferrer`,className:`inline-flex h-8 items-center gap-1.5 rounded-lg px-2.5 text-[11px] text-muted-foreground transition-colors hover:bg-accent hover:text-foreground`,children:[(0,J.jsx)(te,{className:`h-3.5 w-3.5`}),` Open separately`]}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>void y(),disabled:f,title:`Retry the CLI-resolved View session`,className:`grid h-8 w-8 place-items-center rounded-lg text-muted-foreground transition-colors hover:bg-accent hover:text-foreground disabled:opacity-30`,children:(0,J.jsx)(Ie,{className:H(`h-3.5 w-3.5`,f&&`animate-spin`)})})]})]}),(0,J.jsxs)(`div`,{className:`flex flex-wrap items-center gap-3 border-b bg-muted/15 px-4 py-3`,children:[s?.targetRequired?(0,J.jsx)(Xm,{result:s.targets,value:c,onChange:l,instance:s.instance}):(0,J.jsxs)(`div`,{className:`inline-flex h-9 items-center gap-2 rounded-xl border bg-background/60 px-3 text-[11px]`,children:[(0,J.jsx)(a,{className:`h-3.5 w-3.5 text-emerald-400`}),(0,J.jsx)(`span`,{className:`font-medium`,children:`Standalone view`}),(0,J.jsx)(`span`,{className:`text-muted-foreground`,children:`No target required`})]}),(0,J.jsxs)(`div`,{className:`ml-auto flex items-center gap-2`,children:[(0,J.jsxs)(`div`,{className:H(`inline-flex h-9 items-center gap-2 rounded-xl border px-3 text-[10px]`,s?.instance?`border-emerald-500/20 bg-emerald-500/8 text-emerald-200`:`bg-background/60 text-muted-foreground`),title:`The Astrale CLI resolves the verified View placement installed on this instance.`,children:[s?.instance?(0,J.jsxs)(`span`,{className:`relative flex h-2 w-2`,children:[(0,J.jsx)(`span`,{className:`absolute inline-flex h-full w-full animate-ping rounded-full bg-emerald-400 opacity-30`}),(0,J.jsx)(`span`,{className:`relative inline-flex h-2 w-2 rounded-full bg-emerald-400`})]}):s?(0,J.jsx)(ht,{className:`h-3 w-3 text-amber-400`}):(0,J.jsx)(ot,{className:`h-3 w-3 animate-spin`}),(0,J.jsx)(St,{className:`h-3.5 w-3.5`}),(0,J.jsx)(`span`,{className:`font-medium`,children:`CLI-resolved View`})]}),(0,J.jsxs)(`div`,{className:`h-9 rounded-xl border bg-background/60 px-3 py-1.5 text-right text-[9px] uppercase leading-tight tracking-wider text-muted-foreground`,children:[(0,J.jsx)(`div`,{children:`Data instance`}),(0,J.jsx)(`div`,{className:`max-w-40 truncate text-[10px] font-medium normal-case tracking-normal text-foreground`,children:s?.instance??`not selected`})]})]})]}),(0,J.jsx)(`main`,{className:`relative min-h-0 overflow-hidden bg-[#0d0d11]`,children:m.phase===`ready`?(0,J.jsx)(`iframe`,{src:m.session.pageUrl,title:`${t.slug} preview`,className:`h-full w-full border-0 bg-white`,allow:`clipboard-read; clipboard-write`},m.session.sessionId):(0,J.jsx)($m,{loading:i.isLoading||f||m.phase===`launching`,runtimeError:i.isError,runtime:s,targetId:c,sessionError:m.phase===`error`?m.reason:void 0,onRetry:()=>void y()})})]})})}function Xm({result:e,value:t,onChange:n,instance:r}){let[i,a]=(0,q.useState)(!1),[o,s]=(0,q.useState)(``),c=e.items.find(e=>e.id===t)??null,l=(0,q.useMemo)(()=>{let t=o.trim().toLocaleLowerCase();return t?e.items.filter(e=>[e.label,e.description,e.className,e.status,e.id].filter(Boolean).some(e=>e.toLocaleLowerCase().includes(t))):e.items},[e.items,o]);return(0,J.jsxs)(A,{open:i,onOpenChange:e=>{a(e),e||s(``)},children:[(0,J.jsx)(b,{asChild:!0,children:(0,J.jsxs)(`button`,{type:`button`,className:H(`flex h-9 min-w-64 max-w-[28rem] items-center gap-2 rounded-xl border bg-background/60 px-3 text-left transition-colors hover:bg-accent/40`,e.stale&&!c&&`border-amber-500/40`),children:[(0,J.jsx)(`span`,{className:H(`h-2 w-2 shrink-0 rounded-full`,c?`bg-emerald-400`:e.stale?`bg-amber-400`:`bg-muted-foreground/30`)}),(0,J.jsxs)(`span`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`span`,{className:`block text-[9px] uppercase tracking-wider text-muted-foreground`,children:`Target`}),(0,J.jsx)(`span`,{className:`block truncate text-[11px] font-medium`,children:c?.label??e.stale?.label??`Select a target`})]}),(0,J.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:e.items.length}),(0,J.jsx)(d,{className:`h-3.5 w-3.5 text-muted-foreground`})]})}),(0,J.jsxs)(m,{side:`bottom`,align:`start`,className:`z-[70] w-[28rem] p-0`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2 border-b px-3 py-2.5`,children:[(0,J.jsx)(He,{className:`h-3.5 w-3.5 text-muted-foreground`}),(0,J.jsx)(`input`,{autoFocus:!0,value:o,onChange:e=>s(e.target.value),placeholder:`Search visible targets…`,className:`min-w-0 flex-1 bg-transparent text-xs outline-none placeholder:text-muted-foreground/60`}),(0,J.jsx)(`span`,{className:`text-[9px] uppercase tracking-wider text-muted-foreground`,children:r??`no instance`})]}),e.stale&&(0,J.jsxs)(`div`,{className:`m-2 flex gap-2 rounded-lg border border-amber-500/25 bg-amber-500/8 p-2.5 text-[11px] text-amber-200`,children:[(0,J.jsx)(ht,{className:`mt-0.5 h-3.5 w-3.5 shrink-0`}),(0,J.jsxs)(`span`,{children:[(0,J.jsx)(`strong`,{children:e.stale.label}),` was remembered, but it was deleted or is no longer visible. Pick a replacement.`]})]}),(0,J.jsx)(`div`,{className:`max-h-80 overflow-y-auto p-1.5`,children:e.status===`unavailable`?(0,J.jsx)(Qm,{children:e.reason??`Targets could not be queried.`}):l.length===0?(0,J.jsx)(Qm,{children:e.items.length===0?`No eligible targets are visible.`:`No matches.`}):l.map(e=>(0,J.jsx)(Zm,{item:e,selected:e.id===t,onClick:()=>{n(e.id),a(!1)}},e.id))}),e.truncated&&(0,J.jsx)(`div`,{className:`border-t px-3 py-2 text-[10px] text-muted-foreground`,children:`Showing the first 200 visible targets per class.`})]})]})}function Zm({item:e,selected:t,onClick:n}){return(0,J.jsxs)(`button`,{type:`button`,onClick:n,className:H(`flex w-full items-center gap-2.5 rounded-lg px-2.5 py-2 text-left transition-colors hover:bg-accent`,t&&`bg-accent/70`),children:[(0,J.jsx)(`span`,{className:`grid h-7 w-7 shrink-0 place-items-center rounded-lg bg-sky-500/10 text-[10px] font-semibold text-sky-300`,children:e.className.slice(0,2).toUpperCase()}),(0,J.jsxs)(`span`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`span`,{className:`block truncate text-xs font-medium`,children:e.label}),(0,J.jsx)(`span`,{className:`block truncate text-[10px] text-muted-foreground`,children:[e.className,e.description,e.status].filter(Boolean).join(` · `)})]}),(0,J.jsx)(`code`,{className:`text-[9px] text-muted-foreground/50`,children:e.id.slice(0,8)}),t&&(0,J.jsx)(a,{className:`h-3.5 w-3.5 text-primary`})]})}function Qm({children:e}){return(0,J.jsx)(`div`,{className:`px-3 py-8 text-center text-[11px] text-muted-foreground`,children:e})}function $m({loading:e,runtimeError:t,runtime:n,targetId:r,sessionError:i,onRetry:a}){if(e)return(0,J.jsx)(eh,{icon:(0,J.jsx)(ot,{className:`animate-spin`}),title:`Resolving installed View`,children:`The Astrale CLI is resolving the View and connecting it to the active data instance.`});if(t)return(0,J.jsx)(eh,{icon:(0,J.jsx)(Tt,{}),title:`The Studio runtime did not respond`,action:a,children:`Retry the View session. The schema canvas is unaffected.`});if(!n?.instance)return(0,J.jsx)(eh,{icon:(0,J.jsx)(Tt,{}),title:`Choose an Astrale instance`,children:`The installed View reads data from the active instance in the Studio header.`});if(n.targetRequired&&!n.targets.items.some(e=>e.id===r)){let e=n.targets.stale;return(0,J.jsx)(eh,{icon:(0,J.jsx)(He,{}),title:e?`The remembered target is gone`:`Choose what this view should open`,children:e?`${e.label} was deleted or is no longer visible. Use the target selector above.`:n.targets.items.length?`${n.targets.items.length} visible candidate${n.targets.items.length===1?``:`s`} found on ${n.instance}.`:n.targets.reason||`No eligible targets are currently visible.`})}return i?(0,J.jsx)(eh,{icon:(0,J.jsx)(ht,{}),title:`The view could not be opened`,action:a,children:i}):(0,J.jsx)(eh,{icon:(0,J.jsx)(ot,{className:`animate-spin`}),title:`Opening view session`,children:`Studio is preparing the authenticated CLI-owned Shell session.`})}function eh({icon:e,title:t,children:n,action:r}){return(0,J.jsxs)(`div`,{className:`flex h-full flex-col items-center justify-center px-8 text-center text-zinc-200`,children:[(0,J.jsx)(`div`,{className:`mb-3 grid h-11 w-11 place-items-center rounded-2xl border border-white/10 bg-white/5 text-zinc-400 [&_svg]:h-5 [&_svg]:w-5`,children:e}),(0,J.jsx)(`h2`,{className:`text-sm font-semibold`,children:t}),(0,J.jsx)(`div`,{className:`mt-1.5 max-w-md text-[12px] leading-relaxed text-zinc-500`,children:n}),r&&(0,J.jsx)(`button`,{type:`button`,onClick:r,className:`mt-4 rounded-lg border border-white/10 bg-white/5 px-3 py-1.5 text-[11px] transition-colors hover:bg-white/10`,children:`Restart preview`})]})}function th({kind:e,className:t}){return(0,J.jsx)(e===`inline-html`?ee:e===`spa`?pt:it,{className:t})}function nh({domainId:e,view:t,icon:n}){let[r,i]=(0,q.useState)(!1),a=Ke(t.drift),o=[t.kind,t.mount,t.auth,t.unbound?`standalone`:`targeted`].filter(Boolean).join(` · `),s=`view.${t.slug}`;return(0,J.jsxs)(J.Fragment,{children:[(0,J.jsxs)(`div`,{"data-domain-id":e,"data-anchor-ref":s,"data-anchor-excerpt":t.slug,className:`group flex w-full items-center gap-2.5 rounded-lg px-2 py-1.5 transition-colors hover:bg-accent/60`,children:[(0,J.jsxs)(`button`,{type:`button`,onClick:()=>i(!0),title:`Open live view`,className:`flex min-w-0 flex-1 items-center gap-2.5 text-left`,children:[(0,J.jsx)(B,{tone:`sky`,size:`sm`,children:n?(0,J.jsx)(Sm,{svg:n,className:`h-3.5 w-3.5`}):(0,J.jsx)(th,{kind:t.kind,className:`h-3.5 w-3.5`})}),(0,J.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`div`,{className:`truncate text-[13px] font-medium leading-tight`,children:t.slug}),(0,J.jsx)(`div`,{className:`truncate text-[11px] leading-tight text-muted-foreground/70`,children:o})]}),a&&(0,J.jsxs)(`span`,{className:H(`inline-flex shrink-0 items-center gap-1 text-[10px] font-medium`,a.tone===`warn`?`text-warning`:`text-muted-foreground/70`),children:[a.tone===`warn`&&(0,J.jsx)(ye,{className:`h-3 w-3`}),a.text]}),(0,J.jsx)(De,{className:`h-3.5 w-3.5 shrink-0 text-muted-foreground/0 transition-colors group-hover:text-primary`})]}),(0,J.jsx)(Se,{domainId:e,anchorRef:{ref:s,kind:`section`,file:t.file},excerpt:t.slug,className:`ml-1`})]}),r&&(0,J.jsx)(Ym,{domainId:e,view:t,open:r,onOpenChange:i})]})}function rh({domainId:e,model:t}){let{data:n}=w(e),r=U(e=>e.selectClass),i=[...t.byClass.keys()].sort(),a=e=>n?.ir?.classes[e]?.icon;return(0,J.jsx)(E,{className:`h-full`,children:(0,J.jsxs)(`div`,{className:`p-5`,children:[(0,J.jsxs)(`div`,{className:`mb-5 flex items-baseline gap-2 pr-8`,children:[(0,J.jsx)(`h1`,{className:`text-base font-semibold`,children:`Views`}),(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:t.all.length}),t.hasDrift&&(0,J.jsxs)(`span`,{className:`inline-flex items-center gap-1 text-[11px] font-medium text-warning`,children:[(0,J.jsx)(ye,{className:`h-3.5 w-3.5`}),` drift`]})]}),t.all.length===0&&(0,J.jsx)(he,{icon:(0,J.jsx)(pt,{}),title:`No views`,hint:`This domain declares no views.`}),i.map(n=>{let i=a(n),o=t.byClass.get(n);return(0,J.jsxs)(`section`,{className:`mb-6`,children:[(0,J.jsxs)(`button`,{type:`button`,onClick:()=>r(`class.${n}`),title:`Open ${n}`,className:`group mb-1.5 flex w-full items-center gap-1.5 px-1 text-left`,children:[(0,J.jsx)(`span`,{className:`shrink-0 text-muted-foreground/70`,children:i?(0,J.jsx)(Sm,{svg:i,className:`h-4 w-4`}):(0,J.jsx)(k,{className:`h-4 w-4`})}),(0,J.jsx)(`span`,{className:`text-[13px] font-semibold transition-colors group-hover:text-primary`,children:n}),(0,J.jsx)(`span`,{className:`text-[11px] text-muted-foreground/50`,children:o.length}),(0,J.jsx)(F,{className:`ml-auto h-3.5 w-3.5 text-muted-foreground/0 transition-colors group-hover:text-muted-foreground/60`})]}),(0,J.jsx)(`div`,{className:`flex flex-col gap-0.5`,children:o.map(t=>(0,J.jsx)(nh,{domainId:e,view:t,icon:i},t.slug))})]},n)}),t.unbound.length>0&&(0,J.jsx)(rt,{label:`Standalone`,hint:`opens without a target`,children:(0,J.jsx)(`div`,{className:`flex flex-col gap-0.5`,children:t.unbound.map(t=>(0,J.jsx)(nh,{domainId:e,view:t},t.slug))})}),t.orphanRoutes.length>0&&(0,J.jsx)(rt,{label:`Orphan client routes`,hint:`no declaring view`,children:(0,J.jsx)(`div`,{className:`flex flex-col gap-1`,children:t.orphanRoutes.map(e=>(0,J.jsxs)(`div`,{className:`flex items-center gap-2 rounded-lg px-2 py-1.5 text-[12px] text-warning`,children:[(0,J.jsx)(ye,{className:`h-3.5 w-3.5 shrink-0`}),(0,J.jsx)(`code`,{className:`truncate`,children:e})]},e))})})]})})}function ih(e){return e?e.max===null?e.min<=0?`*`:`${e.min}..*`:e.min===e.max?`${e.max}`:`${e.min}..${e.max}`:`*`}var ah=e=>!e||e.max===null||e.max>1,oh=e=>!e||e.min<=0;function sh(e){return e?e===`kernel.astrale.ai`?`kernel`:e.split(`.`)[0]:`this domain`}function ch({doc:e}){return(0,J.jsxs)(Ee,{openDelay:80,children:[(0,J.jsx)(fe,{asChild:!0,children:(0,J.jsx)(`button`,{type:`button`,"aria-label":`Description`,className:`text-muted-foreground/40 hover:text-foreground transition-colors`,children:(0,J.jsx)(p,{className:`h-3.5 w-3.5`})})}),(0,J.jsx)(we,{className:`w-auto max-w-xs text-[13px] leading-relaxed text-muted-foreground`,children:e})]})}function lh({bundle:e,refBase:t,pname:n,schema:r,optional:i}){let a=`${t}.property.${n}`,o=e.overlay.sourceSpans[a]?.doc,s=Le(r,i),l=s.icon,u=e.overlay.annotations.filter(e=>e.target===a),d=qe(r);return(0,J.jsx)(tt,{anchorRef:a,anchorExcerpt:n,leading:(0,J.jsx)(B,{tone:`sky`,size:`sm`,children:(0,J.jsx)(l,{})}),title:(0,J.jsxs)(`span`,{className:`flex items-center gap-1.5`,children:[n,o&&(0,J.jsx)(ch,{doc:o}),s.optional&&(0,J.jsx)($e,{tone:`default`,children:`optional`}),u.map(e=>(0,J.jsx)($e,{tone:`warning`,title:e.message,children:e.code},e.code))]}),subtitle:(0,J.jsxs)(Ee,{openDelay:140,children:[(0,J.jsx)(fe,{asChild:!0,children:(0,J.jsx)(`span`,{className:`cursor-default`,children:s.label})}),(0,J.jsx)(we,{className:`w-auto max-w-sm`,children:(0,J.jsx)(c,{items:[{label:`type`,value:_e(d)+(s.optional?` (optional)`:``)},{label:`key`,value:a}]})})]}),trailing:(0,J.jsx)(Se,{anchorRef:{ref:a,kind:`schema`,file:e.overlay.sourceSpans[a]?.file},excerpt:n})})}function uh({bundle:e,owner:t,ownerKind:n=`class`,handlerOwnerLocal:r=!0,refBase:i,mname:a,method:o,overridden:s=!1}){let c=`${i}.method.${a}`,l=r?me(e.overlay.handlerLinks,t,a,n):void 0,u=e.overlay.sourceSpans[c]?.doc,d=Ge(o),f=d.icon,p=l&&!l.implemented,m=l?.unlinked;return(0,J.jsxs)(V,{className:`px-3 py-2.5`,"data-anchor-ref":c,"data-anchor-excerpt":`${t}.${a}`,"data-commentable":``,children:[(0,J.jsx)(tt,{className:`px-0 py-0 hover:bg-transparent`,leading:(0,J.jsx)(B,{tone:d.tone,size:`sm`,children:(0,J.jsx)(f,{})}),title:(0,J.jsxs)(`span`,{className:`flex items-center gap-1.5`,children:[(0,J.jsx)(`span`,{className:H(s&&`line-through text-muted-foreground/70`),children:a}),(0,J.jsx)(Oe,{method:o}),u&&(0,J.jsx)(ch,{doc:u}),o.inheritance===`sealed`&&(0,J.jsx)($e,{tone:`warning`,children:`sealed`}),o.inheritance===`abstract`&&(0,J.jsx)($e,{tone:`fuchsia`,children:`contract`}),s&&(0,J.jsx)($e,{tone:`default`,children:`overridden`}),p&&(0,J.jsx)($e,{tone:`warning`,children:`needs handler`}),m&&(0,J.jsx)($e,{tone:`default`,children:`unlinked`})]}),trailing:(0,J.jsx)(Se,{anchorRef:{ref:c,kind:`schema`,file:e.overlay.sourceSpans[c]?.file},excerpt:`${t}.${a}`})}),(0,J.jsx)(`div`,{className:`pl-[2.625rem] pt-1.5`,children:(0,J.jsx)(at,{label:`Details`,children:(0,J.jsx)(dh,{method:o,link:l,owner:t})})})]})}function dh({method:e,link:t,owner:n}){let r=Object.entries(e.input.properties??{}),i=new Set(e.input.required??[]);return(0,J.jsxs)(`div`,{className:`space-y-3 pb-1`,children:[r.length>0&&(0,J.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,J.jsx)(`p`,{className:`text-[11px] font-semibold uppercase tracking-wider text-muted-foreground/70`,children:`Input`}),(0,J.jsx)(`div`,{className:`flex flex-wrap gap-x-4 gap-y-1 text-[13px]`,children:r.map(([e,t])=>{let n=!i.has(e),r=Le(t,n);return(0,J.jsxs)(`span`,{className:`inline-flex items-baseline gap-1.5`,children:[(0,J.jsx)(`span`,{className:`font-medium`,children:e}),(0,J.jsxs)(`span`,{className:`text-muted-foreground`,children:[r.label,r.optional?`?`:``]})]},e)})})]}),(0,J.jsx)(fh,{owner:n,isStatic:e.static}),t?.kernelCalls&&t.kernelCalls.length>0&&(0,J.jsx)(`div`,{className:`flex flex-wrap gap-1.5`,children:t.kernelCalls.map(e=>(0,J.jsx)($e,{tone:`outline`,className:`font-mono`,children:e},e))}),(0,J.jsxs)(`div`,{className:`pt-0.5`,children:[(0,J.jsx)(`span`,{className:`text-[11px] text-muted-foreground/60`,children:`returns `}),e.output.mode===`binary`?(0,J.jsx)($e,{tone:`outline`,children:`Binary`}):e.output.mode===`stream`?(0,J.jsxs)(`span`,{className:`inline-flex items-center gap-1.5`,children:[(0,J.jsx)($e,{tone:`outline`,children:`Stream`}),(0,J.jsx)(ze,{schema:e.output.item})]}):(0,J.jsx)(ze,{schema:e.output.schema})]})]})}function fh({owner:e,isStatic:t}){return(0,J.jsxs)(Ee,{openDelay:80,children:[(0,J.jsx)(fe,{asChild:!0,children:(0,J.jsx)(`button`,{type:`button`,className:`cursor-default rounded-full`,children:(0,J.jsxs)($e,{tone:`outline`,children:[t?(0,J.jsx)(ge,{className:`h-3 w-3`}):(0,J.jsx)(k,{className:`h-3 w-3`}),` `,t?`on the ${e} type`:`on a ${e}`]})})}),(0,J.jsx)(we,{className:`w-auto max-w-[15rem]`,children:(0,J.jsx)(`p`,{className:`text-[12px] leading-relaxed text-muted-foreground`,children:t?(0,J.jsxs)(J.Fragment,{children:[`Acts on the `,(0,J.jsxs)(`span`,{className:`font-medium text-foreground/90`,children:[e,` type`]}),`.`,` `,(0,J.jsx)(`span`,{className:`text-muted-foreground/60`,children:`(static)`})]}):(0,J.jsxs)(J.Fragment,{children:[`Acts on a single `,(0,J.jsx)(`span`,{className:`font-medium text-foreground/90`,children:e}),`.`,` `,(0,J.jsx)(`span`,{className:`text-muted-foreground/60`,children:`(instance)`})]})})})]})}function ph({bundle:e,groups:t,originIcon:n}){let r=U(e=>e.selectClass);return(0,J.jsx)(rt,{label:`Inherited`,hint:`${Jm(t)}`,children:(0,J.jsx)(`div`,{className:`space-y-5`,children:t.map(t=>{let i=t.tier===`local`?`border-l-fuchsia-500/40`:t.tier===`external`?`border-l-sky-500/40`:`border-l-border`,a=t.tier===`local`?`fuchsia`:t.tier===`external`?`sky`:`muted`,o=t.ref.origin===e.ir?.domain?`class.${t.owner}`:`class.${W(t.ref)}`;return(0,J.jsxs)(`div`,{className:H(`border-l-2 pl-3.5`,i),children:[(0,J.jsxs)(`button`,{type:`button`,onClick:()=>r(o),title:t.origin??`this domain`,className:`group/ih mb-2.5 flex w-full items-center gap-2.5 text-left`,children:[(0,J.jsx)(B,{tone:a,size:`sm`,children:(0,J.jsx)(mh,{tier:t.tier,iconSvg:n(t.origin)})}),(0,J.jsx)(`span`,{className:`text-sm font-semibold tracking-tight group-hover/ih:text-foreground transition-colors`,children:t.owner}),(0,J.jsx)($e,{tone:t.tier===`local`?`fuchsia`:`outline`,children:t.tier===`local`?`base class`:sh(t.origin)}),(0,J.jsxs)(`span`,{className:`ml-auto inline-flex items-center gap-1 text-[11px] text-muted-foreground/50 group-hover/ih:text-muted-foreground transition-colors`,children:[`inherited `,(0,J.jsx)(j,{className:`h-3.5 w-3.5`})]})]}),(0,J.jsxs)(`div`,{className:`space-y-2.5`,children:[t.props.length>0&&(0,J.jsx)(V,{className:`divide-y divide-border/70`,children:t.props.map(([t,n,r])=>(0,J.jsx)(lh,{bundle:e,refBase:o,pname:t,schema:n,optional:r},`p-${t}`))}),t.methods.map(n=>(0,J.jsx)(uh,{bundle:e,owner:t.owner,ownerKind:`class`,handlerOwnerLocal:t.tier===`local`,refBase:o,mname:n.name,method:n.method,overridden:n.overridden},`m-${n.name}`))]})]},o)})})})}function mh({tier:e,iconSvg:t}){return e===`local`?(0,J.jsx)(k,{}):t?(0,J.jsx)(Sm,{svg:t,className:`h-4 w-4`}):e===`kernel`?(0,J.jsx)(yt,{}):(0,J.jsx)(it,{})}function hh({bundle:e,endpoints:t,edgeName:n}){let[r,i]=t;return(0,J.jsx)(V,{className:`px-3 py-5`,children:(0,J.jsxs)(`div`,{className:`grid grid-cols-[minmax(0,1fr)_auto_minmax(0,1fr)] items-stretch gap-1`,children:[(0,J.jsx)(gh,{bundle:e,endpoint:r,edgeName:n}),(0,J.jsx)(_h,{edgeName:n,from:r,to:i}),(0,J.jsx)(gh,{bundle:e,endpoint:i,edgeName:n})]})})}function gh({bundle:e,endpoint:t,edgeName:n}){let r=U(e=>e.selectClass);if(!t)return null;let i=e.ir;if(!i)return null;let a=t.refs===void 0?t.types.map(e=>({name:e})):t.refs.filter(Be).map(e=>({name:e.name,ref:e}));a.length===0&&a.push({name:`—`});let o=t.cardinality,s=t.name?Ze(`edge.${n}.endpoint.${t.name}`,t.name):{},c=({name:t,ref:n})=>{if(n){let r=n.origin===i.domain,a=r?i.classes[t]:Gm(e,n),o=!!a;return{t,key:W(n),origin:r?void 0:n.origin,resolvable:o,selectionId:r?`class.${n.name}`:`class.${W(n)}`,icon:a?.icon}}let r=i.classes[t],a=!!r;return{t,key:`class:${t}`,origin:void 0,resolvable:a,selectionId:a?`class.${t}`:void 0,icon:r?.icon}},l=e=>()=>{e.resolvable&&e.selectionId&&r(e.selectionId)},u=(0,J.jsx)(`div`,{className:`inline-flex max-w-full items-center rounded-full bg-muted/60 px-2 py-0.5 text-[10px] font-semibold uppercase tracking-wider text-muted-foreground/80`,children:(0,J.jsx)(`span`,{className:`truncate`,children:t.name})}),d=(0,J.jsx)(`span`,{className:`inline-flex items-center rounded-full border border-border/70 px-1.5 py-0.5 font-mono text-[10px] text-muted-foreground/80`,title:`declared cardinality`,children:ih(o)});if(a.length===1){let e=c(a[0]);return(0,J.jsxs)(`button`,{type:`button`,onClick:e.resolvable?l(e):void 0,disabled:!e.resolvable,title:e.resolvable?`Open ${e.t}`:e.origin?`${e.t} · ${e.origin}`:e.t,...s,className:H(`group/ep flex flex-col items-center gap-2.5 rounded-xl px-2 py-3 text-center min-w-0 transition-colors`,e.resolvable?`hover:bg-accent/60 cursor-pointer`:`cursor-default`),children:[(0,J.jsx)(B,{tone:e.origin?`sky`:`violet`,size:`lg`,className:`transition-transform group-hover/ep:-translate-y-0.5`,children:e.icon?(0,J.jsx)(Sm,{svg:e.icon,className:`h-5 w-5`}):(0,J.jsx)(k,{})}),(0,J.jsxs)(`div`,{className:`min-w-0 w-full space-y-1.5`,children:[(0,J.jsx)(`div`,{className:`text-sm font-bold break-words leading-tight`,children:e.t}),(0,J.jsxs)(`div`,{className:`flex flex-wrap items-center justify-center gap-1`,children:[u,d]})]})]})}return(0,J.jsxs)(`div`,{...s,className:`flex flex-col items-center gap-2.5 rounded-xl px-2 py-3 text-center min-w-0`,children:[(0,J.jsx)(`div`,{className:`flex flex-wrap items-center justify-center gap-1.5`,children:a.map(e=>{let t=c(e);return(0,J.jsxs)(`button`,{type:`button`,onClick:t.resolvable?l(t):void 0,disabled:!t.resolvable,title:t.resolvable?`Open ${t.t}`:t.origin?`${t.t} · ${t.origin}`:t.t,className:H(`inline-flex items-center gap-1.5 rounded-lg border border-border/70 pl-1 pr-2 py-1 transition-colors`,t.resolvable?`hover:bg-accent/60 cursor-pointer`:`cursor-default`),children:[(0,J.jsx)(B,{tone:t.origin?`sky`:`violet`,size:`sm`,children:t.icon?(0,J.jsx)(Sm,{svg:t.icon,className:`h-3.5 w-3.5`}):(0,J.jsx)(k,{})}),(0,J.jsx)(`span`,{className:`text-[13px] font-semibold`,children:t.t})]},t.key)})}),(0,J.jsxs)(`div`,{className:`flex flex-wrap items-center justify-center gap-1`,children:[(0,J.jsx)(`span`,{className:`text-[10px] lowercase tracking-wide text-muted-foreground/60`,children:`any of`}),u,d]})]})}function _h({edgeName:e,from:t,to:n}){let r=t?.cardinality,i=n?.cardinality,a=`${ah(r)?`many`:`one`}-to-${ah(i)?`many`:`one`}`;return(0,J.jsxs)(`div`,{className:`flex flex-col items-center justify-center gap-2 self-center px-1.5 min-w-[84px]`,children:[(0,J.jsxs)(`div`,{className:`flex w-full items-center text-muted-foreground/45`,children:[(0,J.jsx)(vh,{many:ah(r),optional:oh(r),side:`left`}),(0,J.jsx)(`span`,{className:`h-px flex-1 bg-border`}),(0,J.jsx)(F,{className:`h-[18px] w-[18px] shrink-0 text-muted-foreground/70`}),(0,J.jsx)(`span`,{className:`h-px flex-1 bg-border`}),(0,J.jsx)(vh,{many:ah(i),optional:oh(i),side:`right`})]}),(0,J.jsxs)(Ee,{openDelay:80,children:[(0,J.jsx)(fe,{asChild:!0,children:(0,J.jsx)(`button`,{type:`button`,className:`rounded-full border border-border/70 px-2 py-0.5 text-[10px] font-medium text-muted-foreground/75 transition-colors hover:text-muted-foreground cursor-default`,children:a})}),(0,J.jsx)(we,{className:`w-60`,children:(0,J.jsxs)(`p`,{className:`text-[12px] leading-relaxed text-muted-foreground`,children:[(0,J.jsx)(`span`,{className:`font-mono text-foreground/90`,children:e}),` links`,` `,(0,J.jsx)(`span`,{className:`font-mono text-foreground/90`,children:ih(r)}),` `,t?.name,` to`,` `,(0,J.jsx)(`span`,{className:`font-mono text-foreground/90`,children:ih(i)}),` `,n?.name,`.`]})})]})]})}function vh({many:e,optional:t,side:n}){return(0,J.jsx)(`svg`,{viewBox:`0 0 24 16`,className:H(`h-4 w-6 shrink-0`,n===`right`&&`rotate-180`),fill:`none`,stroke:`currentColor`,strokeWidth:`1.25`,strokeLinecap:`round`,strokeLinejoin:`round`,"aria-hidden":!0,children:e?(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`path`,{d:`M22 8 L9 2 M22 8 L9 8 M22 8 L9 14`}),!t&&(0,J.jsx)(`circle`,{cx:`16`,cy:`8`,r:`2.2`,fill:`currentColor`,stroke:`none`})]}):(0,J.jsx)(`circle`,{cx:`9`,cy:`8`,r:`3`,fill:t?`none`:`currentColor`,stroke:t?`currentColor`:`none`})})}function yh(){let e=U(e=>e.back);return U(e=>e.selectionHistory.length>0)?(0,J.jsx)(`div`,{className:`px-3 pt-3`,children:(0,J.jsxs)(`button`,{type:`button`,onClick:()=>e(),title:`Back to previous selection`,className:`group inline-flex items-center gap-1 rounded-md px-2 py-1 text-[12px] text-muted-foreground/55 transition-colors hover:bg-accent/50 hover:text-muted-foreground`,children:[(0,J.jsx)(mt,{className:`h-3.5 w-3.5 transition-transform group-hover:-translate-x-0.5`}),`Back`]})}):null}function bh({bundle:e,selected:t}){let r=e.ir,i=U(e=>e.selectClass),{data:a}=Ue(),o=n(e.domainId),s=e=>e?a?.find(t=>t.origin===e)?.icon:void 0;if(!r||!t)return(0,J.jsx)(`div`,{className:`h-full flex items-center justify-center px-6`,children:(0,J.jsx)(he,{icon:(0,J.jsx)(pe,{}),title:`Nothing selected`,hint:`Pick a Class or relationship to inspect its properties, methods, handlers, and Views.`})});if(t.startsWith(`module.`))return(0,J.jsx)(xh,{bundle:e,path:t.slice(7)});let c=t.startsWith(`class.`)?t.slice(6):t,l=Je(c),u=l===void 0||l.origin===r.domain,d=l?.name??c,f=u?r.classes[d]:Gm(e,l);if(!f)return(0,J.jsx)(`div`,{className:`h-full flex items-center justify-center px-6`,children:(0,J.jsx)(he,{title:`Not found`,hint:t})});let p=l??{origin:r.domain,kind:`class`,name:d},m=f.type===`edge`,h=u?ve(m?`edge`:`class`,d):`class.${W(p)}`,g=u?e.overlay.sourceSpans[h]:void 0,_=Object.entries(f.properties),v=Object.entries(f.methods),y=u&&!m?qm(e,d):[],b=u&&!m?ke(o,d):[];return(0,J.jsxs)(`div`,{className:`h-full overflow-y-auto`,...Ze(h,d),children:[(0,J.jsx)(yh,{}),(0,J.jsxs)(`div`,{className:`px-5 py-6 space-y-7`,children:[(0,J.jsxs)(`header`,{className:`group space-y-3`,children:[(0,J.jsxs)(`div`,{className:`flex items-start gap-3.5`,children:[(0,J.jsx)(B,{tone:`violet`,size:`lg`,children:f.icon?(0,J.jsx)(Sm,{svg:f.icon,className:`h-5 w-5`}):m?(0,J.jsx)(Ce,{}):(0,J.jsx)(k,{})}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0 pt-0.5`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,J.jsx)(`h2`,{className:`text-lg font-extrabold tracking-tight truncate`,children:d}),m&&(0,J.jsx)($e,{tone:`outline`,children:`edge`}),!u&&(0,J.jsx)($e,{tone:`outline`,children:sh(p.origin)}),(0,J.jsx)(Se,{anchorRef:{ref:h,kind:`schema`,file:g?.file},excerpt:d,className:`ml-auto`})]}),(g?.doc??f.description)&&(0,J.jsx)(`p`,{className:`text-[13px] text-muted-foreground mt-1 leading-relaxed`,children:g?.doc??f.description})]})]}),(f.extendsRefs??[]).length>0&&(0,J.jsx)(`div`,{className:`flex flex-wrap items-center gap-1.5 pl-[3.25rem]`,children:(f.extendsRefs??[]).map(t=>{let n=Gm(e,t)!==void 0,a=t.origin===r.domain?`class.${t.name}`:`class.${W(t)}`;return(0,J.jsx)(`button`,{type:`button`,disabled:!n,onClick:()=>n&&i(a),children:(0,J.jsxs)($e,{tone:`outline`,children:[`extends `,t.name,t.origin===r.domain?``:` · ${sh(t.origin)}`]})},W(t))})})]}),m&&(f.endpoints?.length??0)>=2&&(0,J.jsx)(rt,{label:`Relationship`,children:(0,J.jsx)(hh,{bundle:e,endpoints:f.endpoints,edgeName:d})}),_.length>0&&(0,J.jsx)(rt,{label:`Properties`,hint:`${_.length}`,children:(0,J.jsx)(V,{className:`divide-y divide-border/70`,children:_.map(([t,n])=>(0,J.jsx)(lh,{bundle:e,refBase:h,pname:t,schema:n,optional:!(f.required??[]).includes(t)},t))})}),v.length>0&&(0,J.jsx)(rt,{label:`Methods`,hint:v.length,children:(0,J.jsx)(`div`,{className:`space-y-2.5`,children:v.map(([t,n])=>(0,J.jsx)(uh,{bundle:e,owner:d,ownerKind:`class`,handlerOwnerLocal:u,refBase:h,mname:t,method:n},t))})}),b.length>0&&(0,J.jsx)(rt,{label:`Views`,hint:`${b.length}`,children:(0,J.jsx)(`div`,{className:`flex flex-col gap-0.5`,children:b.map(t=>(0,J.jsx)(nh,{domainId:e.domainId,view:t,icon:f.icon},t.slug))})}),y.length>0&&(0,J.jsx)(ph,{bundle:e,groups:y,originIcon:s}),_.length===0&&v.length===0&&y.length===0&&!m&&(0,J.jsx)(he,{title:`No properties or methods`,hint:`This Class declares no own members.`})]})]})}function xh({bundle:e,path:t}){let n=U(e=>e.selectClass),r=Ae(e,t),i=e=>(0,J.jsx)(tt,{onClick:()=>n(e.selectId),anchorRef:e.ref,anchorExcerpt:e.name,leading:(0,J.jsx)(B,{tone:e.kind===`edge`?`amber`:`sky`,size:`sm`,children:e.icon?(0,J.jsx)(Sm,{svg:e.icon,className:`h-4 w-4`}):e.kind===`edge`?(0,J.jsx)(Ce,{}):(0,J.jsx)(k,{})}),title:e.name},e.selectId);return(0,J.jsxs)(`div`,{className:`h-full overflow-y-auto`,...Ze(`module.${t}`,r.label),children:[(0,J.jsx)(yh,{}),(0,J.jsxs)(`div`,{className:`px-5 py-6 space-y-7`,children:[(0,J.jsxs)(`header`,{className:`flex items-start gap-3.5`,children:[(0,J.jsx)(B,{tone:`muted`,size:`lg`,style:{color:`oklch(0.82 0.12 ${r.hue})`},children:(0,J.jsx)(gt,{})}),(0,J.jsxs)(`div`,{className:`flex-1 min-w-0 pt-0.5`,children:[(0,J.jsx)(`h2`,{className:`text-lg font-extrabold tracking-tight truncate`,children:r.label}),(0,J.jsxs)(`p`,{className:`text-[13px] text-muted-foreground mt-1`,children:[r.classes.length,` `,r.classes.length===1?`class`:`classes`,r.edges.length>0&&` · ${r.edges.length} relationship${r.edges.length===1?``:`s`}`]})]})]}),r.classes.length>0&&(0,J.jsx)(rt,{label:`Classes`,children:(0,J.jsx)(V,{className:`divide-y divide-border/70`,children:r.classes.map(i)})}),r.edges.length>0&&(0,J.jsx)(rt,{label:`Relationships`,children:(0,J.jsx)(V,{className:`divide-y divide-border/70`,children:r.edges.map(i)})})]})]})}function Sh(e,t){return`extmember.${e}.class.${t}`}function Ch(e){return e?e.refs===void 0?e.types.map(e=>({name:e})):e.refs.filter(Be).map(e=>({name:e.name,ref:e})):[]}function wh(e,t){let n=Ch(t).flatMap(({name:t,ref:n})=>(n===void 0||n.origin===e.domain)&&e.classes[t]?.type===`node`?[t]:[]);return[...new Set(n)].map(e=>({className:e}))}function Th(e){let t=e.ir;if(!t)return[];let n=[];for(let[e,r]of Object.entries(t.classes)){if(r.type!==`edge`||!r.endpoints)continue;let i=r.endpoints[0],a=r.endpoints[1];if(!(!i||!a))for(let[r,o]of[[i,a],[a,i]]){let i=Ch(r).filter(({name:e,ref:n})=>(n===void 0||n.origin===t.domain)&&t.classes[e]?.type===`node`),a=Ch(o).flatMap(({name:e,ref:n})=>{if(n===void 0||n.origin===t.domain)return[];let r=t.importsByKey[W(n)];return r===void 0?[]:[{name:e,ref:r.ref}]});for(let t of a)for(let a of i)n.push({edge:e,from:a.name,origin:t.ref.origin,to:t.name,...a.ref===void 0?{}:{fromRef:a.ref},toRef:t.ref,fromCard:r.cardinality,toCard:o.cardinality})}}return n}function Eh(e){let t=new Map;for(let n of Th(e)){let e=t.get(n.origin)??new Map;e.set(W(n.toRef),{name:n.to,ref:n.toRef}),t.set(n.origin,e)}return[...t].map(([e,t])=>({origin:e,kind:e===`kernel.astrale.ai`?`kernel`:`external`,members:[...t.values()].sort((e,t)=>e.name.localeCompare(t.name))})).sort((e,t)=>e.kind===t.kind?e.origin.localeCompare(t.origin):e.kind===`kernel`?1:-1)}var Dh={hidden:{},showInheritedEdges:!0},Oh=e=>Me(`class`,e),kh=e=>Me(`edge`,e),Ah=e=>`domain.${e}`;function jh(e,t){return t[e]===!0}function Mh(e,t){if(e.showInheritedEdges!==t.showInheritedEdges)return!1;let n=Object.keys(e.hidden);return n.length===Object.keys(t.hidden).length&&n.every(e=>t.hidden[e])}function Nh(e,t){return!jh(Oh(e),t)}function Ph(e,t){return!jh(Ah(e),t)}function Fh(e,t,n){return!jh(kh(e.edgeName),t)&&!jh(Oh(e.aClass),t)&&!jh(Oh(e.bClass),t)}var Ih=`domain.import.`,Lh=e=>`${Ih}${e}`;function Rh(){let{data:e}=Ue(),t=new Map((e??[]).map(e=>[e.origin,e]));return e=>t.get(e)??{name:e.split(`.`)[0]||e,icon:``}}function zh({domain:e}){let t=Rh(),n=U(t=>jh(Ah(e.origin),t.hidden)),r=U(e=>e.toggleHidden),i=t(e.origin),a=e.kind===`kernel`?`violet`:`emerald`,o=e.members.length;return(0,J.jsxs)(`div`,{className:H(`group flex items-center gap-2 rounded-lg px-1.5 py-1 transition-opacity`,n&&`opacity-50`),children:[(0,J.jsx)(B,{tone:a,size:`sm`,children:i.icon?(0,J.jsx)(Sm,{svg:i.icon,className:`h-3.5 w-3.5`}):(0,J.jsx)(it,{})}),(0,J.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`div`,{className:`truncate text-[13px] font-medium leading-tight`,children:i.name}),(0,J.jsxs)(`div`,{className:`text-[11px] text-muted-foreground/70 leading-tight`,children:[o,` linked `,o===1?`type`:`types`]})]}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>r(Ah(e.origin)),title:n?`Show in canvas`:`Hide in canvas`,className:`flex h-6 w-6 shrink-0 items-center justify-center rounded-md text-muted-foreground/60 transition-colors hover:bg-accent/60 hover:text-foreground`,children:n?(0,J.jsx)(nt,{className:`h-3.5 w-3.5`}):(0,J.jsx)(l,{className:`h-3.5 w-3.5`})})]})}function Bh({origin:e}){let t=Rh()(e);return(0,J.jsx)(Rm,{anchor:{ref:Lh(e),kind:`section`},excerpt:`Import ${t.name}`,children:(0,J.jsxs)(`div`,{className:`flex items-center gap-2 rounded-lg px-1.5 py-1`,children:[(0,J.jsx)(B,{tone:`amber`,size:`sm`,children:t.icon?(0,J.jsx)(Sm,{svg:t.icon,className:`h-3.5 w-3.5`}):(0,J.jsx)(it,{})}),(0,J.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`div`,{className:`truncate text-[13px] font-medium leading-tight`,children:t.name}),(0,J.jsx)(`div`,{className:`text-[11px] text-muted-foreground/70 leading-tight`,children:`import requested`})]})]})})}function Vh({domainId:e,taken:t}){let{data:n}=Ue(),{create:r}=S(e),i=U(e=>e.setOpenAnchor),a=e=>{let t=Lh(e.origin);r.mutate({anchors:[e.origin],anchorRefs:[{ref:t,kind:`section`}],text:`Import the ${e.name} domain (${e.origin}) — add it to this domain's imports and wire up the types we depend on.`,firstRole:`user`,type:`text`},{onSuccess:()=>{i(t),x.success(`Import requested — add the why/how in the comment`)},onError:e=>x.error(String(e))})},o=(n??[]).filter(n=>n.kind!==`kernel`&&n.origin!==e&&!t.has(n.origin));return(0,J.jsxs)(A,{children:[(0,J.jsx)(b,{asChild:!0,children:(0,J.jsxs)(`button`,{type:`button`,className:`flex w-full items-center gap-1.5 rounded-lg px-2 py-1.5 text-[12px] font-medium text-muted-foreground transition-colors hover:bg-accent/60 hover:text-foreground`,children:[(0,J.jsx)(wt,{className:`h-3.5 w-3.5`}),`Import a domain`]})}),(0,J.jsxs)(m,{align:`start`,side:`top`,className:`w-64 p-1.5`,children:[(0,J.jsx)(`div`,{className:`px-1.5 pb-1.5 pt-1 text-[10px] font-semibold uppercase tracking-wider text-muted-foreground/70`,children:`Catalog`}),o.length===0?(0,J.jsx)(`div`,{className:`px-1.5 py-3 text-center text-xs text-muted-foreground/60`,children:`Everything imported`}):(0,J.jsx)(`div`,{className:`flex flex-col gap-0.5`,children:o.map(e=>(0,J.jsxs)(`button`,{type:`button`,onClick:()=>a(e),disabled:r.isPending,className:`group/imp flex items-center gap-2.5 rounded-lg px-1.5 py-1.5 text-left transition-colors hover:bg-accent/60 disabled:opacity-50`,children:[(0,J.jsx)(B,{tone:e.kind===`external`?`emerald`:`sky`,size:`sm`,children:e.icon?(0,J.jsx)(Sm,{svg:e.icon,className:`h-3.5 w-3.5`}):(0,J.jsx)(it,{})}),(0,J.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`div`,{className:`truncate text-[13px] font-medium leading-tight`,children:e.name}),(0,J.jsx)(`div`,{className:`truncate text-[11px] text-muted-foreground/70 leading-tight`,children:e.description})]}),(0,J.jsx)(`span`,{className:`shrink-0 text-[11px] font-medium text-primary opacity-0 transition-opacity group-hover/imp:opacity-100`,children:`Import`})]},e.origin))})]})]})}function Hh({domainId:e}){let{data:t}=w(e),{data:n}=ce(e),r=(0,q.useMemo)(()=>t?Eh(t):[],[t]),i=(0,q.useMemo)(()=>new Set(r.map(e=>e.origin)),[r]),a=(0,q.useMemo)(()=>{let e=new Set([`kernel.astrale.ai`,...i]);for(let n of t?.overlay.requires??[])e.add(n);for(let n of t?.overlay.crossDomainImports??[])e.add(n.origin);return e},[i,t]),o=(0,q.useMemo)(()=>{let e=new Set,t=[];for(let r of n?.comments??[])if(r.status===`open`)for(let n of r.anchorRefs){if(!n.ref.startsWith(Ih))continue;let r=n.ref.slice(14);i.has(r)||e.has(r)||(e.add(r),t.push(r))}return t},[n,i]);return(0,J.jsx)(E,{className:`h-full`,children:(0,J.jsxs)(`div`,{className:`p-5`,children:[(0,J.jsxs)(`div`,{className:`mb-5 flex items-baseline gap-2 pr-8`,children:[(0,J.jsx)(`h1`,{className:`text-base font-semibold`,children:`Domains`}),(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:r.length})]}),r.length>0&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`px-1.5 pb-1.5 pt-0.5 text-[10px] font-semibold uppercase tracking-wider text-muted-foreground/70`,children:`Imported domains`}),(0,J.jsx)(`div`,{className:`flex flex-col gap-0.5`,children:r.map(e=>(0,J.jsx)(zh,{domain:e},e.origin))})]}),o.length>0&&(0,J.jsxs)(J.Fragment,{children:[r.length>0&&(0,J.jsx)(R,{className:`my-2 opacity-60`}),(0,J.jsx)(`div`,{className:`px-1.5 pb-1.5 pt-0.5 text-[10px] font-semibold uppercase tracking-wider text-muted-foreground/70`,children:`Requested`}),(0,J.jsx)(`div`,{className:`flex flex-col gap-0.5`,children:o.map(e=>(0,J.jsx)(Bh,{origin:e},e))})]}),r.length===0&&o.length===0&&(0,J.jsx)(`p`,{className:`px-2 pb-1 pt-0.5 text-[11px] text-muted-foreground/60`,children:`No imported domains yet.`}),(0,J.jsx)(R,{className:`my-3 opacity-60`}),(0,J.jsx)(Vh,{domainId:e,taken:a})]})})}var Uh=[{id:`erd-many`,draw:(0,J.jsx)(`path`,{d:`M6 11 L18 4 L13.5 11 L18 18 Z`,fill:`context-stroke`,stroke:`none`})},{id:`erd-one`,draw:(0,J.jsx)(`circle`,{cx:15,cy:11,r:2.9,fill:`context-stroke`,stroke:`none`})}];function Wh(){return(0,J.jsx)(`svg`,{width:`0`,height:`0`,"aria-hidden":!0,className:`absolute`,style:{position:`absolute`},children:(0,J.jsx)(`defs`,{children:Uh.map(({id:e,draw:t})=>(0,J.jsx)(`marker`,{id:e,viewBox:`0 0 24 22`,refX:21,refY:11,markerWidth:24,markerHeight:22,markerUnits:`userSpaceOnUse`,orient:`auto-start-reverse`,children:(0,J.jsx)(`g`,{fill:`none`,stroke:`context-stroke`,strokeWidth:1.4,strokeLinecap:`round`,strokeLinejoin:`round`,children:t})},e))})})}function Gh(e){return e?e.max===null||e.max>1?`erd-many`:`erd-one`:`erd-many`}function Kh(e,t){return{markerStart:Gh(e),markerEnd:Gh(t)}}var qh=88,Jh=24;function Yh(e){if(e.type!==`group`)return{};let t=(typeof e.measured?.width==`number`?e.measured.width:void 0)??(typeof e.style?.width==`number`?e.style.width:void 0),n=(typeof e.measured?.height==`number`?e.measured.height:void 0)??(typeof e.style?.height==`number`?e.style.height:void 0);return t!==void 0&&n!==void 0?{w:Math.round(t),h:Math.round(n)}:{}}function Xh(e,t){let n=t[e.id];if(!n)return e;let r={...e,position:{x:n.x,y:n.y}};return e.type===`group`&&n.w!==void 0&&n.h!==void 0&&(r.style={...e.style,width:n.w,height:n.h}),r}function Zh(e){let t={};for(let n of e)t[n.id]={x:Math.round(n.position.x),y:Math.round(n.position.y),...Yh(n)};return t}function Qh(e,t){let n=0,r=1/0,i=new Map;for(let{node:t,position:a}of e)if(t.parentId){let e=a.y+(t.style?.height??qh)+Jh;i.set(t.parentId,Math.max(i.get(t.parentId)??34,e))}else n=Math.max(n,a.x+(t.style?.width??200)),r=Math.min(r,a.y);Number.isFinite(r)||(r=0);let a=n+96,o=r,s={};for(let e of t)if(e.parentId){let t=i.get(e.parentId)??34;s[e.id]={x:14,y:t},i.set(e.parentId,t+qh+Jh)}else s[e.id]={x:a,y:o,...Yh(e)},o+=(e.style?.height??120)+Jh;return s}function $h(){let e=T(),t=(0,q.useRef)(new Map),n=(0,q.useRef)(new Map),r=(0,q.useCallback)(e=>{let r=n.current.get(e);r&&clearTimeout(r),n.current.delete(e);let i=t.current.get(e);t.current.delete(e),i&&Object.keys(i).length>0&&G.setLayout(e,i).catch(()=>{})},[]),i=(0,q.useCallback)((i,a)=>{e.setQueryData(Pe.layout(i),e=>({renderFingerprint:e?.renderFingerprint,positions:{...e?.positions,...a}})),t.current.set(i,{...t.current.get(i),...a});let o=n.current.get(i);o&&clearTimeout(o),n.current.set(i,setTimeout(()=>r(i),500))},[r,e]);return(0,q.useEffect)(()=>()=>{for(let e of t.current.keys())r(e)},[r]),{commitLayout:i,flushLayout:r}}function eg(e){let t=e.filter(e=>e.origin===`kernel.astrale.ai`);return t.some(e=>e.name===`Identity`)?`identity`:t.some(e=>e.name===`Container`)?`container`:null}function tg(e,t,n,r){let i=e.ir;if(!i)return{nodes:[],edges:[]};let a=M(e).filter(e=>e.classes.length>0),o=[];for(let r of a){let a=`grp-${r.path}`,s=t.has(r.path);if(o.push({id:a,type:s?`moduleNode`:`group`,position:{x:0,y:0},selectable:!0,data:{domainId:e.domainId,domainOrigin:i.domain,label:r.label,path:r.path,hue:r.hue,collapsed:s,classCount:r.classes.length},style:s?{width:200,height:44}:{width:200,height:120}}),!s)for(let t of r.classes){if(!Nh(t,n))continue;let s=i.classes[t];o.push({id:`class.${t}`,type:`classNode`,parentId:a,extent:`parent`,expandParent:!0,position:{x:0,y:0},data:{domainId:e.domainId,domainOrigin:i.domain,name:t,props:Object.keys(s?.properties??{}).length,methods:Object.keys(s?.methods??{}).length,bases:(s?.extendsRefs??[]).map(e=>e.name),coreRole:eg(s?.extendsRefs??[]),hue:r.hue,icon:s?.icon}})}}let s=n=>{let r=O(e,n);return t.has(r)?`grp-${r}`:`class.${n}`},c=e=>wh(i,e),l=[];for(let t of Object.values(i.classes)){if(t.type!==`edge`)continue;let i=c(t.endpoints?.[0]),a=c(t.endpoints?.[1]),o=Kh(t.endpoints?.[0]?.cardinality,t.endpoints?.[1]?.cardinality);for(let c of i)for(let i of a){let a=s(c.className),u=s(i.className);if(a===u||!Fh({edgeName:t.name,aClass:c.className,bClass:i.className},n,r))continue;let d=O(e,c.className)!==O(e,i.className);l.push({id:`edge-${t.name}__${a}__${u}`,source:a,target:u,type:`floating`,data:{label:t.name,edgeClass:t.name,ownerDomainId:e.domainId},markerStart:o.markerStart,markerEnd:o.markerEnd,style:{stroke:d?`oklch(0.72 0.16 35)`:`oklch(0.62 0.07 264)`,strokeWidth:d?2.4:1.8}})}}if(r){for(let[t,r]of Object.entries(i.classes))if(!(r.type!==`node`||jh(Oh(t),n)))for(let n of r.extendsRefs??[]){if(n.origin!==i.domain||i.classes[n.name]?.type!==`node`)continue;let r=s(t),a=s(n.name);r!==a&&l.push({id:`extends-${t}__${n.name}`,source:r,target:a,type:`floating`,data:{label:`extends`,kind:`extends`,ownerDomainId:e.domainId},markerEnd:{type:bs.ArrowClosed,color:`oklch(0.72 0.18 330)`,width:16,height:16},style:{stroke:`oklch(0.72 0.18 330)`,strokeWidth:1.6,strokeDasharray:`2 4`}})}}return{nodes:o,edges:l}}function ng({data:e}){let t=e;U(e=>e.selectClass),U(e=>e.setDomain);let n=U(e=>e.domainId===t.domainId&&e.selectedClass===`class.${t.name}`),r=Q(e=>e.transform[2])<.5,i=t.coreRole?{container:`schema-core-container`,identity:`schema-core-identity`}[t.coreRole]:void 0;return(0,J.jsxs)(`div`,{"data-domain-id":t.domainId,"data-core-role":t.coreRole??void 0,className:H(`relative rounded-lg border bg-card shadow-sm w-[160px] transition-shadow`,i,n?`ring-2 ring-primary`:`hover:shadow-md`),style:{borderLeft:`3px solid oklch(0.72 0.15 ${t.hue})`},children:[t.coreRole===`identity`&&(0,J.jsx)(`span`,{title:`Identity`,className:`schema-core-identity-icon`,children:(0,J.jsx)(Et,{className:`h-3 w-3`})}),(0,J.jsx)(bm,{domainId:t.domainId,anchorRef:`class.${t.name}`,kind:`schema`,excerpt:t.name,className:t.coreRole===`identity`?`top-6`:void 0}),(0,J.jsx)(Ld,{type:`target`,position:X.Top,className:`!opacity-0`}),(0,J.jsxs)(`div`,{className:`px-2.5 py-1.5`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-2`,children:[t.icon?(0,J.jsx)(`span`,{style:{color:`oklch(0.82 0.14 ${t.hue})`},className:`shrink-0`,children:(0,J.jsx)(Sm,{svg:t.icon,className:`h-6 w-6`})}):(0,J.jsx)(`span`,{className:`h-2.5 w-2.5 rounded-sm shrink-0`,style:{background:`oklch(0.7 0.15 ${t.hue})`}}),(0,J.jsx)(`span`,{className:`text-sm font-extrabold truncate`,children:t.name})]}),!r&&t.bases.length>0&&(0,J.jsx)(`div`,{className:`rf-meta mt-1.5 flex flex-wrap gap-1`,children:t.bases.map(e=>(0,J.jsx)(`span`,{title:`extends ${e}`,className:`rounded bg-fuchsia-500/15 px-1 py-0.5 font-mono text-[9px] text-fuchsia-300`,children:e},e))})]}),(0,J.jsx)(Ld,{type:`source`,position:X.Bottom,className:`!opacity-0`})]})}function rg({data:e}){let t=e,n=U(e=>e.setDomain),r=U(e=>e.toggleModule),i=U(e=>e.domainId===t.domainId&&e.selectedClass===`module.${t.path}`);return(0,J.jsxs)(`div`,{"data-domain-id":t.domainId,className:H(`relative w-full h-full rounded-xl border transition-shadow`,i?`ring-2 ring-primary`:t.collapsed&&`hover:shadow-md cursor-pointer`),style:{borderColor:`oklch(0.55 0.1 ${t.hue} / 0.45)`,background:`oklch(0.5 0.12 ${t.hue} / ${t.collapsed?.12:.07})`},children:[(0,J.jsx)(bm,{domainId:t.domainId,anchorRef:`module.${t.path}`,kind:`section`,excerpt:t.label}),(0,J.jsx)(Ld,{type:`target`,position:X.Top,className:`!opacity-0`}),(0,J.jsx)(Ld,{type:`source`,position:X.Bottom,className:`!opacity-0`}),(0,J.jsxs)(`div`,{className:`flex items-center gap-1 px-1.5 py-1.5 text-[13px]`,style:{color:`oklch(0.85 0.12 ${t.hue})`},children:[(0,J.jsx)(`button`,{type:`button`,title:t.collapsed?`Show classes`:`Hide classes`,onClick:e=>{e.stopPropagation(),t.onToggleModule?t.onToggleModule(t.domainId,t.path):(U.getState().domainId!==t.domainId&&n(t.domainId),r(t.path))},className:`rounded p-0.5 hover:bg-white/10 shrink-0`,children:t.collapsed?(0,J.jsx)(N,{className:`h-3.5 w-3.5`}):(0,J.jsx)(Ne,{className:`h-3.5 w-3.5`})}),(0,J.jsx)(`span`,{className:`font-extrabold truncate`,children:t.label}),t.collapsed&&(0,J.jsx)(`span`,{className:`ml-auto text-[10px] opacity-60 shrink-0 pr-1`,children:t.classCount})]})]})}function ig({data:e}){let t=e,n=t.kind===`kernel`?285:158;return(0,J.jsx)(`div`,{className:`w-full h-full rounded-xl border border-dashed`,style:{borderColor:`oklch(0.6 0.1 ${n} / 0.55)`,background:`oklch(0.5 0.1 ${n} / 0.06)`},children:(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 px-2.5 py-1.5`,style:{color:`oklch(0.84 0.11 ${n})`},children:[(0,J.jsx)(`span`,{className:`shrink-0`,children:t.icon?(0,J.jsx)(Sm,{svg:t.icon,className:`h-4 w-4`}):(0,J.jsx)(it,{className:`h-4 w-4`})}),(0,J.jsx)(`span`,{className:`text-[13px] font-extrabold truncate`,children:t.name}),(0,J.jsx)(`span`,{className:`ml-auto text-[9px] uppercase tracking-wider opacity-60 shrink-0`,children:t.kind})]})})}function ag({data:e}){let t=e,n=t.kind===`kernel`?285:158;return(0,J.jsxs)(`div`,{className:`w-full h-full rounded-lg border bg-card flex items-center gap-1.5 px-2 shadow-sm`,style:{borderLeft:`3px solid oklch(0.72 0.14 ${n})`},children:[(0,J.jsx)(Ld,{type:`target`,position:X.Left,className:`!opacity-0`}),(0,J.jsx)(k,{className:`h-4 w-4 shrink-0`,style:{color:`oklch(0.78 0.13 ${n})`}}),(0,J.jsx)(`span`,{className:`text-[12px] font-extrabold truncate`,children:t.name}),(0,J.jsx)(Ld,{type:`source`,position:X.Right,className:`!opacity-0`})]})}function og({data:e}){return(0,J.jsx)(`div`,{className:`relative w-full h-full rounded-2xl border-2 border-dashed`,style:{borderColor:`oklch(0.62 0.04 264 / 0.38)`,background:`oklch(0.6 0.03 264 / 0.025)`},children:(0,J.jsx)(`span`,{className:`absolute -top-2.5 left-5 px-2 text-[11px] font-semibold uppercase tracking-wider text-muted-foreground/55 whitespace-nowrap`,style:{background:`var(--color-canvas)`},children:e.label})})}function sg({data:e}){let t=e;return(0,J.jsx)(lg,{threads:t.comments,anchor:t.anchor,excerpt:t.excerpt,className:`nodrag nopan`})}var cg={classNode:ng,group:rg,moduleNode:rg,extDomain:ig,extMember:ag,internalRegion:og,canvasComment:sg};function lg({threads:e,anchor:t,excerpt:n,className:r}){let[i,a]=(0,q.useState)(!1);if(e.length===0)return null;let o=e.some(e=>e.status===`open`)?`open`:`resolved`,s=e.some(e=>e.orphaned);return(0,J.jsxs)(A,{modal:!1,open:i,onOpenChange:a,children:[(0,J.jsx)(P,{asChild:!0,children:(0,J.jsxs)(`button`,{type:`button`,title:`Schema canvas comments`,onClick:e=>{e.stopPropagation(),a(e=>!e)},className:H(`flex h-6 min-w-6 items-center justify-center gap-1 rounded-full px-1.5 text-[11px] font-bold shadow-md ring-2 ring-card transition-colors hover:brightness-110`,o===`open`?`bg-primary text-primary-foreground`:`bg-muted text-muted-foreground`,s&&`bg-destructive text-white`,r),children:[(0,J.jsx)(et,{className:`h-3 w-3`}),e.length]})}),(0,J.jsx)(m,{side:`top`,align:`center`,className:`w-80`,onInteractOutside:e=>e.preventDefault(),children:(0,J.jsx)(Fe,{anchor:t,excerpt:n,threads:e,onClose:()=>a(!1)})})]})}function ug(e,t,n,r){let i=1/0,a=-1/0,o=1/0,s=-1/0;for(let t of e){if(t.parentId)continue;let e=r?.[t.id]??t.position,n=t.style?.width??200,c=t.style?.height??120;i=Math.min(i,e.x),a=Math.max(a,e.x+n),o=Math.min(o,e.y),s=Math.max(s,e.y+c)}Number.isFinite(i)||(i=0,o=0,a=400,s=400);let c=i-56,l=o-56,u=a-i+112,d=new Map((n??[]).map(e=>[e.origin,e])),f=c+u+96,p=[],m=l+24;for(let e of t){let t=d.get(e.origin),n=36+e.members.length*52+8,i=`extdom.${e.origin}`;p.push({id:i,type:`extDomain`,position:r?.[i]??{x:f,y:m},draggable:!0,selectable:!1,data:{name:t?.name??e.origin.split(`.`)[0],origin:e.origin,kind:e.kind,icon:t?.icon},style:{width:216,height:n}}),e.members.forEach((t,n)=>{p.push({id:Sh(e.origin,t.name),type:`extMember`,parentId:i,extent:`parent`,draggable:!1,position:{x:12,y:36+n*52},data:{name:t.name,kind:e.kind},style:{width:192,height:44}})}),m+=n+40}return{extNodes:p}}function dg(e,t){let n=1/0,r=1/0,i=-1/0,a=-1/0;for(let t of e){if(!t.id.startsWith(`grp-`))continue;let e=t.style?.width??200,o=t.style?.height??120;n=Math.min(n,t.position.x),r=Math.min(r,t.position.y),i=Math.max(i,t.position.x+e),a=Math.max(a,t.position.y+o)}return Number.isFinite(n)?{id:`region`,type:`internalRegion`,position:{x:n-56,y:r-56},draggable:!1,selectable:!1,zIndex:-1,data:{label:t},style:{width:i-n+112,height:a-r+112}}:null}function fg(e,t,n,r,i,a,o){let s=r.ir;if(!s)return[];let c=[];for(let l of e){if(!t.has(l.origin))continue;let e=Sh(l.origin,l.to);if(!n.has(e))continue;let u=l.fromRef?{types:[l.from],refs:[l.fromRef]}:{types:[l.from]};for(let t of wh(s,u)){if(!Fh({edgeName:l.edge,aClass:t.className,bClass:``},a,o))continue;let s=i.has(O(r,t.className))?`grp-${O(r,t.className)}`:`class.${t.className}`;if(!n.has(s))continue;let u=Kh(l.fromCard,l.toCard);c.push({id:`edge-${l.edge}__${s}__${e}`,source:s,target:e,type:`floating`,data:{label:l.edge,edgeClass:l.edge},markerStart:u.markerStart,markerEnd:u.markerEnd,style:{stroke:`oklch(0.72 0.16 35)`,strokeWidth:2}})}}return c}function pg(e){return!e||!Number.isFinite(e.x)||!Number.isFinite(e.y)?null:{x:e.x,y:e.y}}function mg(e){let t=new Map;for(let n of e??[]){let e=n.anchorRefs.find(e=>e.ref===`section.schema`);if(!e)continue;let r=pg(e);if(!r)continue;let i=`${Math.round(r.x/12)*12}:${Math.round(r.y/12)*12}`,a=t.get(i);a?a.comments.push(n):t.set(i,{key:i,anchor:e,comments:[n]})}return[...t.values()]}function hg(e){return(e??[]).filter(e=>{let t=e.anchorRefs.find(e=>e.ref===`section.schema`);return!!t&&!pg(t)})}function gg(e){return e.map(e=>{let t=pg(e.anchor)??{x:0,y:0};return{id:`canvas-comment.${e.key}`,type:`canvasComment`,position:{x:t.x,y:t.y},draggable:!1,selectable:!1,data:{comments:e.comments,anchor:e.anchor,excerpt:`Schema canvas`},style:{width:24,height:24},zIndex:40}})}function _g(e,t){let n=new Set([e]),r=new Set;for(let i of t)i.source===e?(n.add(i.target),r.add(i.id)):i.target===e&&(n.add(i.source),r.add(i.id));return{nodeIds:n,edgeIds:r}}function vg({bundle:e,domainId:t,saved:r}){let{fitView:i,getNodes:a}=ud(),o=U(e=>e.focusId),s=U(e=>e.focusClass),c=U(e=>e.panelOverlay),l=U(e=>e.setPanelOverlay),u=n(t).all.length,d=g(t).data?.detectedIntegrations?.length??0,f=oe(t).data,p=(f?.nodes.length??0)+(f?.edges.length??0),m=U(e=>e.selectClass),h=U(e=>e.selectedClass),_=U(e=>e.setFocus),y=U(e=>e.setOpenAnchor),b=U(e=>e.collapsedModules),x=U(e=>e.toggleModule),S=U(e=>e.hidden),C=U(e=>e.showInheritedEdges),w=U(e=>e.toggleInheritedEdges),E=U(e=>e.setVisibility),{data:D}=Ue(),{data:k}=ce(t),{data:A}=xe(t),j=(0,q.useRef)(!1),[M,N]=(0,q.useState)([]),[P,F]=(0,q.useState)([]),[I,L]=(0,q.useState)(null),R=(0,q.useMemo)(()=>tg(e,new Set(b),S,C),[e.renderFingerprint,e,b,S,C]),z=(0,q.useMemo)(()=>Eh(e),[e]),B=(0,q.useMemo)(()=>Th(e),[e]),ee=Object.keys(S).sort().join(`,`)+`|${C}`;(0,q.useEffect)(()=>{if(!h?.startsWith(`class.`))return;let t=O(e,h.slice(6));b.includes(t)&&x(t)},[h,e,b,x]);let V=T(),te=(0,q.useRef)(!1),{commitLayout:ne}=$h(),re=(0,q.useCallback)(e=>{ne(t,e)},[ne,t]);(0,q.useEffect)(()=>{if(!A)return;let e=A,t=U.getState(),n={hidden:e.hidden,showInheritedEdges:e.showInheritedEdges};Mh(n,t)||E(n),j.current=!0},[t,A,E]),(0,q.useEffect)(()=>{if(!j.current)return;let e=U.getState(),n={hidden:e.hidden,showInheritedEdges:e.showInheritedEdges};Mh(n,V.getQueryData(Pe.visibility(t))??Dh)||(V.setQueryData(Pe.visibility(t),n),G.setVisibility(t,n).catch(()=>{}))},[S,C,t,V]);let ie=(0,q.useCallback)(t=>{let n=R.nodes.map(e=>Xh(e,t)),r=z.filter(e=>Ph(e.origin,S)),{extNodes:i}=ug(n,r,D,t),a=[...n,...i],o=new Set(a.map(e=>e.id));N(a),F(fm([...R.edges,...fg(B,new Set(r.map(e=>e.origin)),o,e,new Set(b),S,C)]))},[R,z,S,D,B,e,b,C]),ae=(0,q.useCallback)(()=>{te.current||(te.current=!0,requestAnimationFrame(()=>{i({padding:.18,duration:400})}))},[i]),se=(0,q.useRef)(r);se.current=r,(0,q.useEffect)(()=>{let e=se.current;if(!e)return;let t=R.nodes.filter(t=>e[t.id]),n=R.nodes.filter(t=>!e[t.id]);if(n.length===0){ie(e),ae();return}if(t.length===0){let e=!1;return um(R.nodes,R.edges).then(t=>{if(e)return;let n=Zh(t);ie(n),re(n),ae()}),()=>{e=!0}}let r=Qh(t.map(t=>({node:t,position:e[t.id]})),n);ie({...e,...r}),re(r),ae()},[R,r!==void 0,z,B,D,ee]);let le=(0,q.useCallback)(e=>N(t=>Ku(e.filter(e=>e.id!==`region`),t)),[]),ue=(0,q.useCallback)(e=>F(t=>qu(e,t)),[]),de=(0,q.useCallback)((e,t)=>{let n={[t.id]:{x:Math.round(t.position.x),y:Math.round(t.position.y),...Yh(t)}};if(t.parentId){let e=a(),r=e.find(e=>e.id===t.parentId);if(r){let i=r.measured?.width??(typeof r.style?.width==`number`?r.style.width:200),a=r.measured?.height??(typeof r.style?.height==`number`?r.style.height:120);for(let n of e)n.parentId===t.parentId&&(i=Math.max(i,n.position.x+(n.measured?.width??160)),a=Math.max(a,n.position.y+(n.measured?.height??88)));n[r.id]={x:Math.round(r.position.x),y:Math.round(r.position.y),w:Math.round(i),h:Math.round(a)}}}re(n)},[re,a]),fe=(0,q.useCallback)(async()=>{await G.resetLayout(t).catch(()=>{});let e=Zh(await um(R.nodes,R.edges));ie(e),V.setQueryData(Pe.layout(t),{positions:e}),G.setLayout(t,e).catch(()=>{}),requestAnimationFrame(()=>i({padding:.18,duration:400}))},[t,R,i,ie,V]),pe=o??I,me=(0,q.useMemo)(()=>pe?_g(pe,P):null,[pe,P]),W=(0,q.useMemo)(()=>dg(M,e.overlay.origin),[M,e.overlay.origin]),he=(0,q.useMemo)(()=>mg(k?.comments),[k?.comments]),ge=(0,q.useMemo)(()=>hg(k?.comments),[k?.comments]),_e=(0,q.useMemo)(()=>gg(he),[he]),ve=(0,q.useMemo)(()=>{let e=M.map(e=>{if(e.type!==`classNode`)return e.className?{...e,className:void 0}:e;let t=me&&!me.nodeIds.has(e.id)?`is-dimmed`:void 0;return e.className===t?e:{...e,className:t}}),t=W?[W,...e]:e;return _e.length?[...t,..._e]:t},[M,me,W,_e]),ye=(0,q.useMemo)(()=>P.map(e=>{let t=e.data?.edgeClass??e.id.replace(/^edge-/,``),n=h===`class.${t}`,r=me?me.edgeIds.has(e.id)?`is-on`:`is-dimmed`:void 0,i=n?H(`is-selected`,r):r;if(n){let t=`var(--color-primary)`;return{...e,className:i,data:{...e.data,selected:!0},style:{...e.style,stroke:t,strokeWidth:3},markerEnd:typeof e.markerEnd==`object`?{...e.markerEnd,color:t}:e.markerEnd}}return e.className===i&&!e.data?.selected?e:{...e,className:i,data:{...e.data,selected:!1}}}),[P,me,h]);return(0,J.jsxs)(_p,{nodes:ve,edges:ye,nodeTypes:cg,edgeTypes:ym,onNodesChange:le,onEdgesChange:ue,onNodeDragStop:de,onNodeClick:(e,t)=>{t.id.startsWith(`class.`)?s(t.id):t.id.startsWith(`grp-`)&&m(`module.${t.id.slice(4)}`)},onNodeMouseEnter:(e,t)=>t.id.startsWith(`class.`)&&L(t.id),onNodeMouseLeave:()=>L(null),onEdgeClick:(e,t)=>{if(!t.id.startsWith(`edge-`))return;let n=t.data?.edgeClass??t.id.slice(5);m(`class.${n}`)},onPaneClick:()=>{_(null),y(null)},minZoom:.15,nodesConnectable:!1,edgesFocusable:!0,proOptions:{hideAttribution:!0},children:[(0,J.jsx)(Dp,{gap:18,size:1,color:`oklch(0.3 0.01 270)`}),(0,J.jsx)(Wh,{}),(0,J.jsx)(Ip,{className:`!bg-card !border !border-border [&_button]:!bg-card [&_button]:!border-border [&_button]:!fill-foreground`,showInteractive:!1,children:(0,J.jsx)(Np,{onClick:fe,title:`Auto-arrange (ELK) — clears manual layout`,children:(0,J.jsx)(bt,{className:`h-4 w-4 text-foreground`})})}),(0,J.jsx)($p,{pannable:!0,zoomable:!0,className:`!bg-card !border !border-border`,nodeColor:e=>e.type===`classNode`?`oklch(0.6 0.13 ${e.data.hue})`:`transparent`,nodeStrokeWidth:0,maskColor:`oklch(0.17 0.01 270 / 0.7)`}),(0,J.jsxs)(Su,{position:`top-right`,className:`flex gap-1.5`,children:[ge.length>0&&(0,J.jsx)(lg,{threads:ge,anchor:{ref:`section.schema`,kind:`section`},excerpt:`Schema canvas`}),(0,J.jsxs)(v,{size:`xs`,variant:c===`domains`?`default`:`outline`,onClick:()=>l(c===`domains`?null:`domains`),title:`Imported domains — shown in the right panel`,children:[(0,J.jsx)(it,{className:`h-3.5 w-3.5`}),` Domains`,(0,J.jsx)(`span`,{className:`rounded-full bg-muted px-1 text-[10px] tabular-nums text-muted-foreground`,children:z.length})]}),(0,J.jsxs)(v,{size:`xs`,variant:c===`views`?`default`:`outline`,onClick:()=>l(c===`views`?null:`views`),title:`Views — shown in the right panel`,children:[(0,J.jsx)(pt,{className:`h-3.5 w-3.5`}),` Views`,(0,J.jsx)(`span`,{className:`rounded-full bg-muted px-1 text-[10px] tabular-nums text-muted-foreground`,children:u})]}),(0,J.jsxs)(v,{size:`xs`,variant:c===`integrations`?`default`:`outline`,onClick:()=>l(c===`integrations`?null:`integrations`),title:`Integrations — shown in the right panel`,children:[(0,J.jsx)(Ct,{className:`h-3.5 w-3.5`}),` Integrations`,(0,J.jsx)(`span`,{className:`rounded-full bg-muted px-1 text-[10px] tabular-nums text-muted-foreground`,children:d})]}),(0,J.jsxs)(v,{size:`xs`,variant:C?`default`:`outline`,onClick:w,title:`Toggle Class inheritance edges`,children:[(0,J.jsx)(Ce,{className:`h-3.5 w-3.5`}),` Inherited`]}),(0,J.jsx)(Pm,{count:p})]})]})}var yg=`integration.request.`,bg=e=>`${yg}${e}`,xg=e=>e.toLowerCase().trim().replace(/[^a-z0-9]+/g,`-`).replace(/^-+|-+$/g,``)||`integration`;function Sg({name:e}){return(0,J.jsx)(Rm,{anchor:{ref:`section.integrations.${e}`,kind:`section`},excerpt:`${e} integration`,children:(0,J.jsxs)(`div`,{className:`flex items-center gap-2 rounded-lg px-1.5 py-1`,children:[(0,J.jsx)(B,{tone:`emerald`,size:`sm`,children:(0,J.jsx)(Ct,{})}),(0,J.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`div`,{className:`truncate text-[13px] font-medium leading-tight`,children:e}),(0,J.jsx)(`div`,{className:`text-[11px] text-muted-foreground/70 leading-tight`,children:`in integrations/`})]})]})})}function Cg({slug:e,label:t}){return(0,J.jsx)(Rm,{anchor:{ref:bg(e),kind:`section`},excerpt:`Add ${t} integration`,children:(0,J.jsxs)(`div`,{className:`flex items-center gap-2 rounded-lg px-1.5 py-1`,children:[(0,J.jsx)(B,{tone:`amber`,size:`sm`,children:(0,J.jsx)(Ct,{})}),(0,J.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,J.jsx)(`div`,{className:`truncate text-[13px] font-medium leading-tight`,children:t}),(0,J.jsx)(`div`,{className:`text-[11px] text-muted-foreground/70 leading-tight`,children:`requested`})]})]})})}function wg({domainId:e,taken:t}){let{create:n}=S(e),r=U(e=>e.setOpenAnchor),[i,a]=(0,q.useState)(!1),[o,s]=(0,q.useState)(``),[c,l]=(0,q.useState)(``),u=()=>{let e=o.trim();if(!e)return;let t=bg(xg(e)),i=`Add a "${e}" integration under the integrations/ folder${c.trim()?` — ${c.trim()}`:``}. Wire it up the Astrale way (DI, secrets, idempotency).`;n.mutate({anchors:[e],anchorRefs:[{ref:t,kind:`section`}],text:i,firstRole:`user`,type:`text`},{onSuccess:()=>{s(``),l(``),a(!1),r(t),x.success(`Integration requested — add the why/how in the comment`)},onError:e=>x.error(String(e))})};return(0,J.jsxs)(A,{open:i,onOpenChange:a,children:[(0,J.jsx)(b,{asChild:!0,children:(0,J.jsxs)(`button`,{type:`button`,className:`flex w-full items-center gap-1.5 rounded-lg px-2 py-1.5 text-[12px] font-medium text-muted-foreground transition-colors hover:bg-accent/60 hover:text-foreground`,children:[(0,J.jsx)(wt,{className:`h-3.5 w-3.5`}),`Request an integration`]})}),(0,J.jsxs)(m,{align:`start`,side:`top`,className:`w-64 p-2.5`,children:[(0,J.jsx)(`div`,{className:`pb-2 text-[10px] font-semibold uppercase tracking-wider text-muted-foreground/70`,children:`Request an integration`}),(0,J.jsx)(`input`,{autoFocus:!0,value:o,onChange:e=>s(e.target.value),onKeyDown:e=>{e.key===`Enter`&&u()},placeholder:`Name (e.g. Stripe)`,className:`mb-1.5 w-full rounded-md border bg-background px-2 py-1.5 text-[13px] outline-none focus:border-primary`}),(0,J.jsx)(`textarea`,{value:c,onChange:e=>l(e.target.value),placeholder:`Why / what for (optional)`,rows:2,className:`mb-2 w-full resize-none rounded-md border bg-background px-2 py-1.5 text-[13px] outline-none focus:border-primary`}),(0,J.jsx)(`button`,{type:`button`,onClick:u,disabled:!o.trim()||n.isPending,className:`w-full rounded-md bg-primary px-2 py-1.5 text-[12px] font-medium text-primary-foreground transition-opacity hover:opacity-90 disabled:opacity-50`,children:`Request`}),t.size>0&&(0,J.jsxs)(`p`,{className:`pt-2 text-[10px] leading-snug text-muted-foreground/50`,children:[`Already present: `,[...t].join(`, `)]})]})]})}function Tg({domainId:e}){let{data:t}=g(e),{data:n}=ce(e),r=t?.detectedIntegrations??[],i=(0,q.useMemo)(()=>new Set(r),[r]),a=(0,q.useMemo)(()=>{let e=new Set,t=[];for(let r of n?.comments??[])if(r.status===`open`)for(let n of r.anchorRefs){if(!n.ref.startsWith(yg))continue;let a=n.ref.slice(20);i.has(a)||e.has(a)||(e.add(a),t.push({slug:a,label:r.anchors[0]??a}))}return t},[n,i]);return(0,J.jsx)(E,{className:`h-full`,children:(0,J.jsxs)(`div`,{className:`p-5`,children:[(0,J.jsxs)(`div`,{className:`mb-5 flex items-baseline gap-2 pr-8`,children:[(0,J.jsx)(`h1`,{className:`text-base font-semibold`,children:`Integrations`}),(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:r.length})]}),r.length>0&&(0,J.jsxs)(J.Fragment,{children:[(0,J.jsx)(`div`,{className:`px-1.5 pb-1.5 pt-0.5 text-[10px] font-semibold uppercase tracking-wider text-muted-foreground/70`,children:`Detected`}),(0,J.jsx)(`div`,{className:`flex flex-col gap-0.5`,children:r.map(e=>(0,J.jsx)(Sg,{name:e},e))})]}),a.length>0&&(0,J.jsxs)(J.Fragment,{children:[r.length>0&&(0,J.jsx)(R,{className:`my-2 opacity-60`}),(0,J.jsx)(`div`,{className:`px-1.5 pb-1.5 pt-0.5 text-[10px] font-semibold uppercase tracking-wider text-muted-foreground/70`,children:`Requested`}),(0,J.jsx)(`div`,{className:`flex flex-col gap-0.5`,children:a.map(e=>(0,J.jsx)(Cg,{slug:e.slug,label:e.label},e.slug))})]}),r.length===0&&a.length===0&&(0,J.jsx)(`p`,{className:`px-2 pb-1 pt-0.5 text-[11px] text-muted-foreground/60`,children:`No integrations detected.`}),(0,J.jsx)(R,{className:`my-3 opacity-60`}),(0,J.jsx)(wg,{domainId:e,taken:i})]})})}function Eg({onClose:e,children:t}){return(0,J.jsxs)(`div`,{className:`relative min-h-0 w-[420px] shrink-0 border-l bg-card/30`,children:[(0,J.jsx)(`button`,{type:`button`,onClick:e,"aria-label":`Close panel`,title:`Close (Esc)`,className:`absolute right-3.5 top-3.5 z-20 inline-flex h-7 w-7 items-center justify-center rounded-md text-muted-foreground/50 transition-colors hover:bg-accent hover:text-foreground`,children:(0,J.jsx)(Qe,{className:`h-4 w-4`})}),t]})}function Dg(e,t){return t?e.members.some(e=>e.selectId===t)?!0:e.children.some(e=>Dg(e,t)):!1}function Og({root:e,selected:t,onSelect:n,controls:r}){return(0,J.jsxs)(`div`,{className:`text-sm py-2`,"data-domain-id":r?.domainId,children:[(0,J.jsx)(`div`,{className:`px-3 pb-1.5 text-[10px] font-semibold uppercase tracking-wide text-muted-foreground`,children:`Modules`}),e.children.map(e=>(0,J.jsx)(kg,{node:e,depth:0,selected:t,onSelect:n,controls:r},e.path)),e.members.map(e=>(0,J.jsx)(Ag,{m:e,depth:1,selected:t,onSelect:n,controls:r},e.selectId))]})}function kg({node:e,depth:t,selected:n,onSelect:r,controls:i}){let a=U(e=>e.collapsedModules),o=U(e=>e.toggleModule),s=i?.collapsedModules??a,c=i?.toggleModule??o,[l,u]=(0,q.useState)(!0),d=`module.${e.path}`,f=n===d,p=e.members.length>0,m=p?!s.includes(e.path)||Dg(e,n):l||Dg(e,n),h=()=>p?c(e.path):u(e=>!e),g={paddingLeft:8+t*12},_=m?_t:gt;return(0,J.jsxs)(`div`,{children:[(0,J.jsxs)(`div`,{"data-anchor-ref":d,"data-anchor-excerpt":e.path,className:H(`flex items-center gap-0.5 pr-2 hover:bg-accent/50 rounded-md`,f&&`bg-accent text-accent-foreground`),style:g,children:[(0,J.jsx)(`button`,{type:`button`,onClick:h,className:`shrink-0 rounded p-0.5 text-muted-foreground hover:bg-white/5`,title:m?`Collapse`:`Expand`,children:m?(0,J.jsx)(Ne,{className:`h-3 w-3`}):(0,J.jsx)(N,{className:`h-3 w-3`})}),(0,J.jsxs)(`button`,{type:`button`,onClick:()=>r(d),className:H(`flex items-center gap-1.5 flex-1 min-w-0 py-1 text-left font-bold`,f&&`font-extrabold`),children:[(0,J.jsx)(_,{className:`h-3.5 w-3.5 shrink-0`,style:{color:`oklch(0.78 0.12 ${e.hue})`}}),(0,J.jsx)(`span`,{className:`truncate`,children:e.name})]}),(0,J.jsx)(Se,{domainId:i?.domainId,anchorRef:{ref:d,kind:`section`},excerpt:e.path,className:`ml-1`})]}),m&&(0,J.jsxs)(`div`,{children:[e.children.map(e=>(0,J.jsx)(kg,{node:e,depth:t+1,selected:n,onSelect:r,controls:i},e.path)),e.members.map(e=>(0,J.jsx)(Ag,{m:e,depth:t+1,selected:n,onSelect:r,controls:i},e.selectId))]})]})}function Ag({m:e,depth:t,selected:n,onSelect:r,controls:i}){let a=n===e.selectId,o=U(t=>jh(e.ref,t.hidden)),s=U(e=>e.toggleHidden),c=i?jh(e.ref,i.hidden):o,u=i?.toggleHidden??s,d=c,f=e.kind===`edge`?Ce:k,p=e.kind===`edge`?`text-amber-400`:`text-sky-300`,m=(0,q.useRef)(null);return(0,q.useEffect)(()=>{a&&m.current?.scrollIntoView({block:`nearest`,behavior:`smooth`})},[a]),(0,J.jsxs)(`div`,{ref:m,"data-anchor-ref":e.selectId,"data-anchor-excerpt":`${e.kind} ${e.name}`,className:H(`group w-full flex items-center pr-2 hover:bg-accent/50`,a&&`bg-accent text-accent-foreground font-black`,d&&`opacity-50`),style:{paddingLeft:8+(t+1)*12+12},title:`${e.kind} ${e.name}`,children:[(0,J.jsxs)(`button`,{type:`button`,onClick:()=>r(e.selectId),className:`flex min-w-0 flex-1 items-center gap-1.5 py-1 text-left font-extrabold`,children:[e.icon?(0,J.jsx)(Sm,{svg:e.icon,className:H(`h-4 w-4 shrink-0`,p)}):(0,J.jsx)(f,{className:H(`h-3.5 w-3.5 shrink-0`,p)}),(0,J.jsx)(`span`,{className:`truncate`,children:e.name})]}),(0,J.jsx)(`button`,{type:`button`,onClick:t=>{t.stopPropagation(),u(e.ref)},title:c?`Show in canvas`:`Hide in canvas`,className:H(`ml-1 shrink-0 rounded p-0.5 text-muted-foreground/60 transition hover:bg-white/5 hover:text-foreground`,c?`opacity-100`:`opacity-0 group-hover:opacity-100`),children:c?(0,J.jsx)(nt,{className:`h-3.5 w-3.5`}):(0,J.jsx)(l,{className:`h-3.5 w-3.5`})}),(0,J.jsx)(Se,{domainId:i?.domainId,anchorRef:{ref:e.selectId,kind:`schema`},excerpt:`${e.kind} ${e.name}`,className:`ml-1`})]})}var jg={width:360,height:220},Mg={width:200,height:120},Ng=52,Pg=1900;function Fg(e){let t=e.type===`classNode`?{width:160,height:44}:e.type===`moduleNode`?{width:200,height:44}:Mg;return{width:e.measured?.width??(typeof e.style?.width==`number`?e.style.width:t.width),height:e.measured?.height??(typeof e.style?.height==`number`?e.style.height:t.height)}}function Ig(e){let t=e.filter(e=>!e.parentId);if(t.length===0)return{minX:0,minY:0,maxX:0,maxY:0};let n=1/0,r=1/0,i=-1/0,a=-1/0;for(let e of t){let t=Fg(e);n=Math.min(n,e.position.x),r=Math.min(r,e.position.y),i=Math.max(i,e.position.x+t.width),a=Math.max(a,e.position.y+t.height)}return{minX:n,minY:r,maxX:i,maxY:a}}function Lg(e){let t=[],n=0,r=0,i=0;for(let a of e)n>0&&n+a.size.width>Pg&&(n=0,r+=i+112,i=0),t.push({x:n,y:r}),n+=a.size.width+112,i=Math.max(i,a.size.height);return t}function Rg(e,t){let n=e.filter(e=>t[e.domainId]);if(n.length===0)return Lg(e);let r=n.reduce((e,n)=>{let r=t[n.domainId];return Math.max(e,r.x+n.size.width)},0),i=n.reduce((e,n)=>Math.min(e,t[n.domainId].y),1/0);return e.map(e=>{let n=t[e.domainId];if(n)return n;r+=112;let a={x:r,y:Number.isFinite(i)?i:0};return r+=e.size.width,a})}function zg(e,t,n,r){let i=e.map(e=>{let t=Ig(e.nodes),i=r[e.domainId]??{x:Ng-t.minX,y:100-t.minY},a={width:Math.max(jg.width,t.maxX+i.x),height:Math.max(jg.height,t.maxY+i.y)},o={width:Math.max(jg.width,t.maxX+i.x+Ng),height:Math.max(jg.height,t.maxY+i.y+Ng)},s=n[e.domainId];return{domainId:e.domainId,contentOffset:i,size:{width:s?Math.max(a.width,s.width):o.width,height:s?Math.max(a.height,s.height):o.height}}}),a=Rg(i,t);return i.map((e,t)=>({...e,position:a[t]}))}function Bg(e){return e.data?.workspaceGeometry??null}function Vg(e,t){let n=Bg(e);return n?{domainId:n.domainId,updates:{[n.localId]:{x:Math.round(e.position.x-n.offset.x),y:Math.round(e.position.y-n.offset.y),...t?{w:Math.round(t.width),h:Math.round(t.height)}:Yh(e)}}}:null}var Hg=(0,q.createContext)(null);function Ug({actions:e,children:t}){return(0,J.jsx)(Hg.Provider,{value:e,children:t})}function Wg(){let e=(0,q.useContext)(Hg);if(!e)throw Error(`Workspace nodes require WorkspaceNodeActionsProvider`);return e}function Gg({nodeId:e,minimum:t,label:n,placement:r=`module`}){let i=Wg();return(0,J.jsx)(rm,{position:`bottom-right`,minWidth:t.width,minHeight:t.height,onResizeEnd:(t,n)=>i.resizeNode(e,{width:Math.round(n.width),height:Math.round(n.height)}),style:r===`domain`?{left:`calc(100% - 6px)`,top:`calc(100% + 20px)`}:{left:`calc(100% + 20px)`,top:`calc(100% + 20px)`},className:`nodrag nopan !flex !h-6 !w-6 !cursor-se-resize !items-start !justify-start !border-0 !bg-transparent !p-0`,children:(0,J.jsx)(`span`,{"data-testid":`workspace-resize-${e}`,title:n,className:`block h-3 w-3 rounded-br-[3px] border-b-2 border-r-2 border-sky-300/60 opacity-45 transition-[opacity,border-color] hover:border-sky-200 hover:opacity-100 active:border-sky-100 active:opacity-100`})})}function Kg({id:e,data:t}){let n=Wg(),r=t;return(0,J.jsxs)(`div`,{"data-domain-id":r.domainId,title:r.active?void 0:`Click to activate ${r.origin}`,className:H(`relative h-full w-full rounded-[22px] border-2 bg-card/[0.035] shadow-[0_24px_80px_-48px_rgba(0,0,0,0.9)] transition-colors`,r.active?`border-sky-400/55 bg-sky-400/[0.045]`:`cursor-pointer border-border/55 hover:border-border`),children:[(0,J.jsxs)(`div`,{"data-testid":`workspace-domain-header-${r.domainId}`,title:`Drag ${r.origin}`,onPointerDownCapture:()=>n.activateDomain(r.domainId),className:`workspace-domain-drag-handle absolute inset-x-0 top-0 flex h-12 cursor-grab select-none items-center gap-2 border-b border-border/35 px-4 active:cursor-grabbing`,children:[(0,J.jsx)(`span`,{className:H(`h-2 w-2 rounded-full`,r.active?`bg-sky-300 shadow-[0_0_12px_rgba(125,211,252,0.8)]`:`bg-muted-foreground/35`)}),(0,J.jsx)(`span`,{className:`truncate text-[13px] font-extrabold tracking-tight`,children:r.origin}),(0,J.jsx)(`span`,{className:`ml-auto rounded-full bg-muted/70 px-1.5 py-0.5 text-[9px] font-semibold tabular-nums text-muted-foreground`,children:r.memberCount})]}),r.active&&(0,J.jsx)(Gg,{nodeId:e,minimum:jg,label:`Resize ${r.origin}`,placement:`domain`})]})}function qg(e){let t=Wg(),n=Bg(e),r=e.data;return(0,J.jsxs)(`div`,{className:`relative h-full w-full`,children:[(0,J.jsx)(rg,{...e,data:{...r,onToggleModule:t.toggleModule}}),e.type===`group`&&n?.active&&(0,J.jsx)(Gg,{nodeId:e.id,minimum:Mg,label:`Resize module`})]})}var Jg={...cg,group:qg,moduleNode:qg,workspaceDomain:Kg},Yg=216,Xg=48,Zg=52,Qg=12,$g=40,e_=e=>`workspace-external:${encodeURIComponent(e)}`,t_=(e,t,n)=>`workspace-external-member:${encodeURIComponent(e)}:${n?`${n}:`:``}${encodeURIComponent(t)}`;function n_(e,t,n){return e.position.x<t.position.x+t.size.width+n&&e.position.x+e.size.width+n>t.position.x&&e.position.y<t.position.y+t.size.height+n&&e.position.y+e.size.height+n>t.position.y}function r_(e,t,n,r){let i=e.ownerDomainIds.map(e=>t.get(e)).filter(e=>!!e),a=i.length>0?i:n,o=a.reduce((e,t)=>Math.max(e,t.position.x+t.size.width),0)+112,s=a.reduce((e,t)=>Math.min(e,t.position.y),1/0);for(Number.isFinite(s)||(s=0);;){let t={position:{x:o,y:s},size:e.size},n=r.find(e=>n_(t,e,$g));if(!n)return t.position;s=n.position.y+n.size.height+$g}}function i_(e,t,n){let r=[...e].sort((e,t)=>e.origin.localeCompare(t.origin)).map(e=>({...e,size:{width:Yg,height:Xg+e.members.length*Zg+Qg}})),i=new Map(t.map(e=>[e.domainId,e])),a=t.map(({position:e,size:t})=>({position:e,size:t}));for(let e of r){let t=n[e.origin];t&&a.push({position:t,size:e.size})}return r.map(e=>{let r=n[e.origin],o=r??r_(e,i,t,a);return r||a.push({position:o,size:e.size}),{...e,position:o}})}function a_(e,t,n,r){let i=new Map((r??[]).map(e=>[e.origin,e])),a=i_(e,t,n),o=[];for(let e of a){let t=i.get(e.origin),n=e_(e.origin),r=e.origin===`kernel.astrale.ai`?`kernel`:`external`;o.push({id:n,type:`extDomain`,position:e.position,draggable:!1,selectable:!1,data:{name:t?.name??e.origin.split(`.`)[0],origin:e.origin,kind:r,icon:t?.icon},style:e.size}),e.members.forEach((t,i)=>{o.push({id:t_(e.origin,t.name,t.definition),type:`extMember`,parentId:n,extent:`parent`,draggable:!1,position:{x:12,y:42+i*Zg},data:{name:t.name,kind:r,definition:t.definition},style:{width:192,height:44}})})}return{nodes:o,positions:Object.fromEntries(a.map(e=>[e.origin,e.position]))}}var o_=`oklch(0.76 0.16 35)`,s_=`oklch(0.72 0.18 330)`,c_=e=>`workspace-domain:${e}`,l_=(e,t)=>`workspace:${encodeURIComponent(e)}:${t}`;async function u_(e,t){let n=new Set(t),r=tg(e.bundle,n,e.visibility.hidden,e.visibility.showInheritedEdges),i=e.layout.positions,a=r.nodes.filter(e=>i[e.id]),o=r.nodes.filter(e=>!i[e.id]),s;return s=o.length===0?i:a.length===0?Zh(await um(r.nodes,r.edges)):{...i,...Qh(a.map(e=>({node:e,position:i[e.id]})),o)},{input:e,collapsed:n,nodes:r.nodes.map(e=>Xh(e,s)),edges:r.edges}}function d_(e){return e.refs===void 0?e.types:e.refs.filter(Be)}function f_(e,t){let n=e.input.bundle.ir;if(!n||n.classes[t]?.type!==`node`||jh(Oh(t),e.input.visibility.hidden))return;let r=O(e.input.bundle,t),i=e.collapsed.has(r)?`grp-${r}`:`class.${t}`;return{nodeId:l_(e.input.summary.id,i),domainId:e.input.summary.id,className:t}}function p_(e,t){let n=e.input.bundle.ir;if(n)return Object.values(n.importsByKey).find(e=>e.ref.name===t)?.ref}function m_(e,t,n,r){let i=e.input.bundle.ir;if(!i)return[];let a=typeof t==`string`?p_(e,t)??{origin:i.domain,kind:`class`,name:t}:t;if(a.origin===i.domain){let t=f_(e,a.name);return t?[t]:[]}let o=n.get(a.origin)??[];if(o.length>1&&r.add(`Multiple selected folders declare ${a.origin}; ${a.name} stays external.`),o.length===1){let t=f_(o[0],a.name);if(t)return[t];r.add(`${e.input.summary.origin} imports ${a.origin}:class.${a.name}, but the selected schema does not expose it.`)}return[{nodeId:t_(a.origin,a.name,`class`),domainId:null,className:null,unresolved:{origin:a.origin,name:a.name,definition:`class`}}]}function h_(e,t,n,r){return`workspace-edge:${encodeURIComponent(e)}:${t}:${n}:${r}`}function g_(e,t,n){let r=[],i=new Map,a=new Set,o=(e,t)=>{if(!e.unresolved)return;let n=i.get(e.unresolved.origin)??{members:new Map,ownerDomainIds:new Set};n.members.set(e.unresolved.name,e.unresolved),n.ownerDomainIds.add(t),i.set(e.unresolved.origin,n)};for(let i of e){let e=i.input.bundle.ir;if(e)for(let s of Object.values(e.classes)){if(s.type!==`edge`||s.endpoints?.length!==2||jh(kh(s.name),i.input.visibility.hidden))continue;let e=d_(s.endpoints[0]).flatMap(e=>m_(i,e,t,n)),c=d_(s.endpoints[1]).flatMap(e=>m_(i,e,t,n)),l=Kh(s.endpoints[0].cardinality,s.endpoints[1].cardinality);for(let t of e)for(let e of c){if(t.domainId===i.input.summary.id&&e.domainId===i.input.summary.id||t.nodeId===e.nodeId)continue;o(t,i.input.summary.id),o(e,i.input.summary.id);let n=h_(i.input.summary.id,s.name,t.nodeId,e.nodeId);a.has(n)||(a.add(n),r.push({id:n,source:t.nodeId,target:e.nodeId,type:`floating`,data:{label:s.name,edgeClass:s.name,ownerDomainId:i.input.summary.id},markerStart:l.markerStart,markerEnd:l.markerEnd,style:{stroke:o_,strokeWidth:2.5}}))}}}return{edges:r,unresolved:[...i.entries()].map(([e,t])=>({origin:e,members:[...t.members.values()].sort((e,t)=>e.name.localeCompare(t.name)),ownerDomainIds:[...t.ownerDomainIds]}))}}function __(e,t,n){let r=[],i=new Set;for(let a of e){let e=a.input.bundle.ir;if(!(!e||!a.input.visibility.showInheritedEdges))for(let[o,s]of Object.entries(e.classes)){if(s.type!==`node`)continue;let e=f_(a,o);if(e)for(let o of s.extendsRefs??[])for(let s of m_(a,o,t,n)){if(s.unresolved||s.nodeId===e.nodeId)continue;let t=`workspace-extends:${e.nodeId}:${s.nodeId}`;i.has(t)||(i.add(t),r.push({id:t,source:e.nodeId,target:s.nodeId,type:`floating`,data:{label:`extends`,kind:`extends`,ownerDomainId:a.input.summary.id},markerEnd:{type:bs.ArrowClosed,color:s_,width:16,height:16},style:{stroke:s_,strokeWidth:1.7,strokeDasharray:`2 4`}}))}}}return r}function v_(e,{activeDomainId:t,domainPositions:n={},externalPositions:r={},contentOffsets:i={},domainSizes:a={},catalog:o}){let s=new Set,c=new Map;for(let t of e){let e=t.input.bundle.ir?.domain??t.input.summary.origin;c.set(e,[...c.get(e)??[],t])}let l=zg(e.map(e=>({domainId:e.input.summary.id,nodes:e.nodes})),n,a,i),u=new Map(l.map(e=>[e.domainId,e])),d=[],f=[];for(let n of e){let e=n.input.summary.id,r=u.get(e),i=c_(e),a=e===t;d.push({id:i,type:`workspaceDomain`,position:r.position,draggable:!0,dragHandle:`.workspace-domain-drag-handle`,selectable:!0,data:{domainId:e,origin:n.input.summary.origin,memberCount:Object.keys(n.input.bundle.ir?.classes??{}).length,active:a},style:{width:r.size.width,height:r.size.height}});for(let t of n.nodes){let n=!t.parentId,o=n?r.contentOffset:{x:0,y:0};d.push({...t,id:l_(e,t.id),parentId:n?i:l_(e,t.parentId),position:{x:t.position.x+o.x,y:t.position.y+o.y},data:{...t.data,workspaceGeometry:{domainId:e,localId:t.id,offset:o,active:a}},extent:`parent`,expandParent:!1,draggable:a,selectable:a,focusable:a,style:{...t.style,...a?{}:{pointerEvents:`none`}}})}for(let t of n.edges)f.push({...t,id:l_(e,t.id),source:l_(e,t.source),target:l_(e,t.target)})}let p=g_(e,c,s),m=__(e,c,s),h=a_(p.unresolved,l,r,o);return d.push(...h.nodes),f.push(...p.edges,...m),{nodes:d,edges:f,diagnostics:[...s].sort(),domainPositions:Object.fromEntries(l.map(e=>[e.domainId,e.position])),externalPositions:h.positions,contentOffsets:Object.fromEntries(l.map(e=>[e.domainId,e.contentOffset]))}}function y_(e){if(!e.startsWith(`workspace:`))return null;let[,t,...n]=e.split(`:`);return!t||n.length===0?null:{domainId:decodeURIComponent(t),localId:n.join(`:`)}}function b_({domains:e,viewsCount:t,onToggleInherited:n}){let{fitView:r,getNode:i}=ud(),{data:a}=Ue(),o=U(e=>e.domainId)??e[0]?.input.summary.id??``,s=U(e=>e.selectedClass),c=U(e=>e.setDomain),l=U(e=>e.setPanelOverlay),u=U(e=>e.panelOverlay),d=K(e=>e.domainPositions),f=K(e=>e.externalPositions),p=K(e=>e.domainSizes),m=K(e=>e.domainContentOffsets),h=K(e=>e.setDomainPosition),g=K(e=>e.setDomainSize),_=K(e=>e.ensureDomainPositions),y=K(e=>e.ensureExternalPositions),b=K(e=>e.ensureDomainContentOffsets),x=K(e=>e.resetWorkspaceFrames),S=K(e=>e.toggleModule),{commitLayout:C}=$h(),w=(0,q.useRef)(``),T=(0,q.useRef)(!1),E=(0,q.useCallback)((e,t)=>{if(e.startsWith(`workspace-domain:`)){g(e.slice(17),t);return}let n=i(e);if(!n||n.type!==`group`)return;let r=Vg(n,t);r&&C(r.domainId,r.updates)},[C,i,g]),D=(0,q.useCallback)((e,t)=>{if(U.getState().domainId!==e){c(e);return}t&&U.getState().selectClass(t)},[c]),O=(0,q.useCallback)((e,t)=>{if(U.getState().domainId!==e){c(e);return}S(e,t)},[c,S]),k=(0,q.useMemo)(()=>({activateDomain:D,resizeNode:E,toggleModule:O}),[D,E,O]),A=(0,q.useMemo)(()=>v_(e,{activeDomainId:o,catalog:a,contentOffsets:m,domainPositions:d,domainSizes:p,externalPositions:f}),[o,a,m,d,p,e,f]),[j,M]=(0,q.useState)(A.nodes),[N,P]=(0,q.useState)(()=>fm(A.edges));(0,q.useEffect)(()=>{if(_(A.domainPositions),y(A.externalPositions),b(A.contentOffsets),M(A.nodes),P(fm(A.edges)),T.current){T.current=!1;let e=requestAnimationFrame(()=>r({padding:.12,duration:420}));return()=>cancelAnimationFrame(e)}let t=e.map(e=>e.input.summary.id).join(`|`);if(w.current===t)return;w.current=t;let n=requestAnimationFrame(()=>r({padding:.12,duration:420}));return()=>cancelAnimationFrame(n)},[e,b,_,y,r,A]);let F=(0,q.useCallback)(e=>M(t=>Ku(e.filter(e=>e.type!==`remove`),t)),[]),I=(0,q.useCallback)(e=>P(t=>qu(e.filter(e=>e.type!==`remove`),t)),[]),L=e.every(e=>e.input.visibility.showInheritedEdges),R=(0,q.useCallback)((e,t)=>{if(t.id.startsWith(`workspace-domain:`)){h(t.id.slice(17),{x:Math.round(t.position.x),y:Math.round(t.position.y)});return}let n=Vg(t);n&&C(n.domainId,n.updates)},[C,h]),z=(0,q.useMemo)(()=>N.map(e=>{let t=e.data?.ownerDomainId,n=e.data?.edgeClass;if(!(n&&t===o&&s===`class.${n}`))return e;let r=`var(--color-primary)`;return{...e,className:H(e.className,`is-selected`),data:{...e.data,selected:!0},style:{...e.style,stroke:r,strokeWidth:3},markerEnd:typeof e.markerEnd==`object`?{...e.markerEnd,color:r}:e.markerEnd}}),[o,N,s]);return(0,J.jsx)(Ug,{actions:k,children:(0,J.jsxs)(_p,{"data-testid":`workspace-schema-canvas`,nodes:j,edges:z,nodeTypes:Jg,edgeTypes:ym,onNodesChange:F,onEdgesChange:I,onNodeDragStop:R,onNodeClick:(e,t)=>{if(t.id.startsWith(`workspace-domain:`)){D(t.id.slice(17));return}let n=y_(t.id);n&&(n.localId.startsWith(`class.`)?D(n.domainId,n.localId):n.localId.startsWith(`grp-`)&&D(n.domainId,`module.${n.localId.slice(4)}`))},onEdgeClick:(e,t)=>{let n=t.data?.ownerDomainId,r=t.data?.edgeClass;n&&r&&D(n,`class.${r}`)},onPaneClick:()=>U.getState().setFocus(null),minZoom:.08,nodesConnectable:!1,edgesFocusable:!0,onlyRenderVisibleElements:!0,proOptions:{hideAttribution:!0},children:[(0,J.jsx)(Dp,{gap:18,size:1,color:`oklch(0.3 0.01 270)`}),(0,J.jsx)(Wh,{}),(0,J.jsx)(Ip,{className:`!border !border-border !bg-card [&_button]:!border-border [&_button]:!bg-card [&_button]:!fill-foreground`,showInteractive:!1,children:(0,J.jsx)(Np,{onClick:()=>{T.current=!0,x()},title:`Reset and auto-pack workspace regions`,children:(0,J.jsx)(bt,{className:`h-4 w-4 text-foreground`})})}),(0,J.jsx)($p,{pannable:!0,zoomable:!0,className:`!border !border-border !bg-card`,nodeColor:e=>e.type===`classNode`?`oklch(0.6 0.13 ${e.data.hue})`:e.type===`workspaceDomain`?`oklch(0.52 0.08 225 / 0.45)`:`transparent`,nodeStrokeWidth:0,maskColor:`oklch(0.17 0.01 270 / 0.72)`}),A.diagnostics.length>0&&(0,J.jsx)(Su,{position:`top-center`,className:`max-w-xl`,children:(0,J.jsxs)(`div`,{className:`flex items-start gap-2 rounded-lg border border-warning/30 bg-card/95 px-3 py-2 text-[11px] text-warning shadow-lg backdrop-blur`,children:[(0,J.jsx)(ye,{className:`mt-0.5 h-3.5 w-3.5 shrink-0`}),(0,J.jsx)(`span`,{children:A.diagnostics.join(` `)})]})}),(0,J.jsxs)(Su,{position:`top-right`,className:`flex gap-1.5`,children:[(0,J.jsxs)(v,{size:`xs`,variant:`outline`,disabled:!0,title:`Selected workspace domains`,children:[(0,J.jsx)(ge,{className:`h-3.5 w-3.5`}),` Domains`,(0,J.jsx)(`span`,{className:`rounded-full bg-muted px-1 text-[10px] tabular-nums text-muted-foreground`,children:e.length})]}),(0,J.jsxs)(v,{size:`xs`,variant:u===`views`?`default`:`outline`,onClick:()=>l(u===`views`?null:`views`),title:`Views across selected domains`,children:[(0,J.jsx)(pt,{className:`h-3.5 w-3.5`}),` Views`,(0,J.jsx)(`span`,{className:`rounded-full bg-muted px-1 text-[10px] tabular-nums text-muted-foreground`,children:t})]}),(0,J.jsxs)(v,{size:`xs`,variant:L?`default`:`outline`,onClick:n,title:`Toggle inherited edges in every selected domain`,children:[(0,J.jsx)(Ce,{className:`h-3.5 w-3.5`}),` Inherited`]})]})]})})}function x_({domains:e,onToggleHidden:t}){let n=U(e=>e.domainId),r=U(e=>e.selectedClass),i=U(e=>e.setDomain),a=K(e=>e.collapsedModules),o=K(e=>e.toggleModule),[s,c]=(0,q.useState)({}),l=(e,t)=>{U.getState().domainId!==e&&i(e),t&&U.getState().selectClass(t)};return(0,J.jsxs)(`div`,{className:`py-2`,"data-testid":`workspace-module-tree`,children:[(0,J.jsxs)(`div`,{className:`flex items-center gap-1.5 px-3 pb-2 text-[10px] font-semibold uppercase tracking-wide text-muted-foreground`,children:[(0,J.jsx)(ge,{className:`h-3 w-3`}),` Workspace modules`]}),e.map(e=>{let i=e.input.summary.id,d=n===i,f=!!s[i],p={domainId:i,collapsedModules:a[i]??[],hidden:e.input.visibility.hidden,toggleModule:e=>o(i,e),toggleHidden:e=>t(i,e)},m=u(e.input.bundle);return(0,J.jsxs)(`section`,{className:`border-b border-border/40 last:border-b-0`,children:[(0,J.jsxs)(`div`,{"data-domain-id":i,className:H(`flex items-center gap-1 px-2 py-2 transition-colors`,d?`bg-sky-400/[0.075]`:`hover:bg-accent/30`),children:[(0,J.jsx)(`button`,{type:`button`,onClick:()=>c(e=>{let t={...e};return t[i]?delete t[i]:t[i]=!0,t}),className:`rounded p-0.5 text-muted-foreground hover:bg-white/5`,title:f?`Expand domain`:`Collapse domain`,children:f?(0,J.jsx)(N,{className:`h-3.5 w-3.5`}):(0,J.jsx)(Ne,{className:`h-3.5 w-3.5`})}),(0,J.jsx)(`button`,{type:`button`,onClick:()=>l(i),className:`min-w-0 flex-1 truncate text-left text-[12px] font-extrabold`,title:`Make ${e.input.summary.origin} active`,children:e.input.summary.origin}),d&&(0,J.jsx)(`span`,{className:`h-1.5 w-1.5 rounded-full bg-sky-300`,title:`Active`})]}),!f&&(0,J.jsx)(`div`,{className:`border-t border-border/25 bg-background/15`,children:(0,J.jsx)(Og,{root:m,selected:d?r:void 0,onSelect:e=>l(i,e),controls:p})})]},i)})]})}var S_={positions:{}},C_={hidden:{},showInheritedEdges:!0};function w_(e,t){let n=ft({queries:e.map(e=>({queryKey:Pe.bundle(e),queryFn:()=>G.bundle(e)}))}),r=ft({queries:e.map(e=>({queryKey:Pe.anatomy(e),queryFn:()=>G.anatomy(e)}))}),i=ft({queries:e.map(e=>({queryKey:Pe.layout(e),queryFn:()=>G.layout(e)}))}),a=ft({queries:e.map(e=>({queryKey:Pe.visibility(e),queryFn:()=>G.visibility(e)}))});return(0,q.useMemo)(()=>{let o=new Map((t??[]).map(e=>[e.id,e])),s=[],c=[],l=!1;return e.forEach((e,t)=>{let u=o.get(e),d=n[t]?.data,f=r[t]?.data,p=n[t]?.error??r[t]?.error;if(p&&c.push(`${u?.origin??e}: ${String(p)}`),!u||!d||!f){l||=!p;return}s.push({summary:u,bundle:d,anatomy:f,layout:i[t]?.data??S_,visibility:a[t]?.data??C_})}),{inputs:s,pending:l,errors:c}},[r,n,t,e,i,a])}function T_({inputs:e}){let t=e.map(e=>({input:e,model:Re(e.anatomy,e.bundle)})),n=t.reduce((e,t)=>e+t.model.all.length,0),r=t.some(e=>e.model.hasDrift);return(0,J.jsx)(E,{className:`h-full`,"data-testid":`workspace-views-panel`,children:(0,J.jsxs)(`div`,{className:`p-5`,children:[(0,J.jsxs)(`div`,{className:`mb-5 flex items-baseline gap-2 pr-8`,children:[(0,J.jsx)(`h1`,{className:`text-base font-semibold`,children:`Workspace views`}),(0,J.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:n}),r&&(0,J.jsxs)(`span`,{className:`inline-flex items-center gap-1 text-[11px] font-medium text-warning`,children:[(0,J.jsx)(ye,{className:`h-3.5 w-3.5`}),` drift`]})]}),n===0&&(0,J.jsx)(he,{icon:(0,J.jsx)(pt,{}),title:`No views`,hint:`The selected domains declare no views.`}),(0,J.jsx)(`div`,{className:`space-y-7`,children:t.filter(e=>e.model.all.length>0).map(({input:e,model:t})=>(0,J.jsxs)(`section`,{"data-domain-id":e.summary.id,children:[(0,J.jsxs)(`div`,{className:`mb-2 flex items-center gap-2 border-b border-border/45 pb-2`,children:[(0,J.jsx)(`span`,{className:`h-2 w-2 rounded-full bg-sky-300/80`}),(0,J.jsx)(`h2`,{className:`min-w-0 flex-1 truncate text-[13px] font-extrabold`,children:e.summary.origin}),(0,J.jsx)(`span`,{className:`rounded-full bg-muted px-1.5 py-0.5 text-[9px] tabular-nums text-muted-foreground`,children:t.all.length})]}),(0,J.jsx)(`div`,{className:`space-y-0.5`,children:t.all.map(t=>{let n=t.boundClass?e.bundle.ir?.classes[t.boundClass]?.icon:void 0;return(0,J.jsx)(nh,{domainId:e.summary.id,view:t,icon:n},`${e.summary.id}:${t.slug}`)})})]},e.summary.id))})]})})}var E_=220,D_=620,O_=300;function k_(e,t){return[e.summary.id,e.summary.origin,e.bundle.renderFingerprint,Object.keys(e.visibility.hidden).sort().join(`,`),e.visibility.showInheritedEdges,Object.entries(e.layout.positions).sort(([e],[t])=>e.localeCompare(t)).map(([e,t])=>`${e}:${t.x}:${t.y}:${t.w??``}:${t.h??``}`).join(`,`),t.slice().sort().join(`,`)].join(`|`)}function A_({domainIds:e}){let{data:t}=Xe(),{inputs:n,pending:r,errors:i}=w_(e,t),a=T(),o=U(e=>e.domainId),s=U(e=>e.selectedClass),c=U(e=>e.selectClass),l=U(e=>e.setFocus),u=U(e=>e.panelOverlay),d=U(e=>e.setPanelOverlay),f=U(e=>e.setCanvasMode),p=K(e=>e.collapsedModules),[m,h]=(0,q.useState)([]),g=(0,q.useRef)(new Map),[_,v]=(0,q.useState)(()=>{try{let e=Number(localStorage.getItem(`studio.workspaceModulesWidth`));if(Number.isFinite(e)&&e>=E_&&e<=D_)return e}catch{}return O_});(0,q.useEffect)(()=>{f(`schema`),U.getState().panelOverlay&&U.getState().panelOverlay!==`views`&&d(null)},[f,d]);let y=(0,q.useMemo)(()=>n.map(e=>k_(e,p[e.summary.id]??[])).join(`::`),[p,n]);(0,q.useEffect)(()=>{let e=!1,t=new Set(n.map(e=>e.summary.id));for(let e of g.current.keys())t.has(e)||g.current.delete(e);return Promise.all(n.map(async t=>{let n=t.summary.id,r=p[n]??[],i=k_(t,r),a=g.current.get(n);if(a?.key===i)return{...a.projection,input:t};let o=await u_(t,r);return e||g.current.set(n,{key:i,projection:o}),o})).then(t=>{e||h(t)}),()=>{e=!0}},[y]),(0,q.useEffect)(()=>{let e=e=>{e.key!==`Escape`||e.defaultPrevented||(l(null),c(void 0),d(null))};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[c,l,d]);let b=(0,q.useCallback)((e,t)=>{let r=n.find(t=>t.summary.id===e);if(!r)return;let i=t(r.visibility);a.setQueryData(Pe.visibility(e),i),G.setVisibility(e,i).catch(()=>{a.invalidateQueries({queryKey:Pe.visibility(e)})})},[n,a]),x=(0,q.useCallback)((e,t)=>b(e,e=>{let n={...e.hidden};return n[t]?delete n[t]:n[t]=!0,{...e,hidden:n}}),[b]),S=(0,q.useCallback)(()=>{let e=!n.every(e=>e.visibility.showInheritedEdges);for(let t of n)b(t.summary.id,t=>({...t,showInheritedEdges:e}))},[n,b]),C=e=>{e.preventDefault();let t=e.clientX,n=_,r=n,i=e=>{r=Math.min(D_,Math.max(E_,n+e.clientX-t)),v(r)},a=()=>{document.removeEventListener(`pointermove`,i),document.removeEventListener(`pointerup`,a),document.body.style.cursor=``,document.body.style.userSelect=``;try{localStorage.setItem(`studio.workspaceModulesWidth`,String(r))}catch{}};document.addEventListener(`pointermove`,i),document.addEventListener(`pointerup`,a),document.body.style.cursor=`col-resize`,document.body.style.userSelect=`none`},w=n.find(e=>e.summary.id===o),D=n.reduce((e,t)=>e+t.anatomy.views.length,0),O=m.length===n.length&&n.length===e.length,k=m.map(e=>`${e.input.summary.id}:${e.input.bundle.renderFingerprint}`).join(`|`);return(r||!O)&&i.length===0?(0,J.jsx)(`div`,{className:`flex h-full items-center justify-center text-muted-foreground`,children:`Composing workspace…`}):(0,J.jsxs)(`div`,{className:`flex h-full flex-col`,"data-testid":`workspace-schema-section`,children:[(i.length>0||n.some(e=>e.bundle.error))&&(0,J.jsxs)(`div`,{className:`flex items-start gap-2 border-b border-warning/30 bg-warning/10 px-4 py-2 text-sm text-warning`,children:[(0,J.jsx)(ye,{className:`mt-0.5 h-4 w-4 shrink-0`}),(0,J.jsx)(`span`,{children:[...i,...n.flatMap(e=>e.bundle.error?.message??[])].join(` `)})]}),(0,J.jsxs)(`div`,{className:`flex min-h-0 flex-1`,children:[(0,J.jsxs)(`div`,{className:`relative min-h-0 shrink-0 border-r`,style:{width:_},children:[(0,J.jsx)(E,{className:`h-full`,children:(0,J.jsx)(x_,{domains:m,onToggleHidden:x})}),(0,J.jsx)(`div`,{role:`separator`,"aria-orientation":`vertical`,onPointerDown:C,title:`Drag to resize`,className:`group absolute right-0 top-0 z-20 h-full w-1.5 translate-x-1/2 cursor-col-resize`,children:(0,J.jsx)(`div`,{className:`mx-auto h-full w-px bg-transparent transition-colors group-hover:bg-primary/50`})})]}),(0,J.jsx)(`div`,{className:`relative min-w-0 flex-1`,children:(0,J.jsx)(pp,{children:(0,J.jsx)(b_,{domains:m,viewsCount:D,onToggleInherited:S})},k)}),u===`views`?(0,J.jsx)(Eg,{onClose:()=>d(null),children:(0,J.jsx)(T_,{inputs:n})}):s&&w?(0,J.jsx)(Eg,{onClose:()=>c(void 0),children:(0,J.jsx)(bh,{bundle:w.bundle,selected:s})}):null]})]})}var j_=180,M_=560,N_=240;function P_({domainId:e}){let t=K(e=>e.selectedDomainIds),n=t.includes(e)?t:[e,...t];return n.length>1?(0,J.jsx)(A_,{domainIds:n}):(0,J.jsx)(F_,{domainId:e})}function F_({domainId:e}){let{data:t,isLoading:r}=w(e),{data:i}=ue(e),{data:a}=oe(e),o=U(e=>e.selectedClass),s=U(e=>e.selectClass),c=U(e=>e.setFocus),l=U(e=>e.canvasMode),d=l===`core`,f=U(e=>e.panelOverlay),p=U(e=>e.setPanelOverlay),m=n(e),[h,g]=(0,q.useState)(()=>{try{let e=Number(localStorage.getItem(`studio.modulesWidth`));if(Number.isFinite(e)&&e>=j_&&e<=M_)return e}catch{}return N_}),_=e=>{e.preventDefault();let t=e.clientX,n=h,r=n,i=e=>{r=Math.min(M_,Math.max(j_,n+(e.clientX-t))),g(r)},a=()=>{document.removeEventListener(`pointermove`,i),document.removeEventListener(`pointerup`,a),document.body.style.cursor=``,document.body.style.userSelect=``;try{localStorage.setItem(`studio.modulesWidth`,String(r))}catch{}};document.addEventListener(`pointermove`,i),document.addEventListener(`pointerup`,a),document.body.style.cursor=`col-resize`,document.body.style.userSelect=`none`},[v,y]=(0,q.useState)(null);(0,q.useEffect)(()=>y(null),[e,l]),(0,q.useEffect)(()=>{let e=e=>{e.key!==`Escape`||e.defaultPrevented||(c(null),s(void 0),y(null),p(null))};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[c,s,p]);let b=(0,q.useMemo)(()=>t?.ir?u(t):null,[t]);return r||!t?(0,J.jsx)(`div`,{className:`h-full flex items-center justify-center text-muted-foreground`,children:`Introspecting schema…`}):(0,J.jsxs)(`div`,{className:`h-full flex flex-col`,children:[t.error&&(0,J.jsxs)(`div`,{className:`flex items-center gap-2 px-4 py-2 bg-warning/10 border-b border-warning/30 text-warning text-sm`,children:[(0,J.jsx)(ye,{className:`h-4 w-4 shrink-0`}),(0,J.jsxs)(`span`,{children:[t.error.message,!t.depsInstalled&&" — showing the static structure; run `pnpm install` in the domain for full fidelity."]})]}),t.ir?(0,J.jsxs)(`div`,{className:`flex-1 flex min-h-0`,children:[(0,J.jsxs)(`div`,{className:`relative border-r shrink-0 min-h-0`,style:{width:h},children:[(0,J.jsx)(E,{className:`h-full`,children:d?a&&(0,J.jsx)(Hm,{core:a,bundle:t,selectedPath:v,onSelect:y}):b&&(0,J.jsx)(Og,{root:b,selected:o,onSelect:s})}),(0,J.jsx)(`div`,{role:`separator`,"aria-orientation":`vertical`,onPointerDown:_,title:`Drag to resize`,className:`group absolute right-0 top-0 z-20 h-full w-1.5 translate-x-1/2 cursor-col-resize`,children:(0,J.jsx)(`div`,{className:`mx-auto h-full w-px bg-transparent transition-colors group-hover:bg-primary/50`})})]}),(0,J.jsx)(`div`,{className:`flex-1 min-w-0 relative`,children:(0,J.jsx)(pp,{children:d?a?(0,J.jsx)(Lm,{core:a,bundle:t,selectedPath:v,onSelect:y}):(0,J.jsx)(`div`,{className:`h-full flex items-center justify-center text-muted-foreground text-sm`,children:`Extracting core…`}):(0,J.jsx)(vg,{bundle:t,domainId:e,saved:i?.positions},e)},`${e}:${l}`)}),d?v&&a&&(0,J.jsx)(Eg,{onClose:()=>y(null),children:(0,J.jsx)(zm,{core:a,bundle:t,selectedPath:v})}):f===`views`?(0,J.jsx)(Eg,{onClose:()=>p(null),children:(0,J.jsx)(rh,{domainId:e,model:m})}):f===`domains`?(0,J.jsx)(Eg,{onClose:()=>p(null),children:(0,J.jsx)(Hh,{domainId:e})}):f===`integrations`?(0,J.jsx)(Eg,{onClose:()=>p(null),children:(0,J.jsx)(Tg,{domainId:e})}):o?(0,J.jsx)(Eg,{onClose:()=>s(void 0),children:(0,J.jsx)(bh,{bundle:t,selected:o})}):null]}):(0,J.jsx)(`div`,{className:`flex-1 flex items-center justify-center text-muted-foreground text-sm p-6 text-center`,children:`No compiled schema available.`})]})}export{P_ as SchemaSection};
|