sonda 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -4
- package/README.md +13 -11
- package/dist/index.html +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.4
|
|
4
|
+
|
|
5
|
+
- Show "No data to display" with a helpful message when there is no data to display in the report.
|
|
6
|
+
- Prevent black boxes in tree maps with large `[unassigned]` tiles.
|
|
7
|
+
|
|
3
8
|
## 0.1.3
|
|
4
9
|
|
|
5
|
-
Show the approximate file and folder size after GZIP and Brotli compression.
|
|
10
|
+
- Show the approximate file and folder size after GZIP and Brotli compression.
|
|
6
11
|
|
|
7
12
|
## 0.1.2
|
|
8
13
|
|
|
9
|
-
Use the `open` package to open the generated reports.
|
|
14
|
+
- Use the `open` package to open the generated reports.
|
|
10
15
|
|
|
11
16
|
## 0.1.1
|
|
12
17
|
|
|
13
|
-
Use `execFileSync` instead of `exec` to prevent potential shell injection when the path contains characters that the shell interprets in a special way, for instance quotes and spaces.
|
|
18
|
+
- Use `execFileSync` instead of `exec` to prevent potential shell injection when the path contains characters that the shell interprets in a special way, for instance quotes and spaces.
|
|
14
19
|
|
|
15
20
|
## 0.1.0
|
|
16
21
|
|
|
17
|
-
Initial release of sonda that allowed generating an `'html'` and `'json'` report for bundles generated by Vite, Rollup, Webpack, and esbuild.
|
|
22
|
+
- Initial release of sonda that allowed generating an `'html'` and `'json'` report for bundles generated by Vite, Rollup, Webpack, and esbuild.
|
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@ Sonda works with the following bundlers:
|
|
|
9
9
|
* esbuild
|
|
10
10
|
* webpack
|
|
11
11
|
|
|
12
|
+

|
|
13
|
+
|
|
12
14
|
## Installation
|
|
13
15
|
|
|
14
16
|
Start by installing the package:
|
|
@@ -46,13 +48,13 @@ import { defineConfig } from 'rollup';
|
|
|
46
48
|
import { SondaRollupPlugin } from 'sonda';
|
|
47
49
|
|
|
48
50
|
export default defineConfig( {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
51
|
+
output: {
|
|
52
|
+
// Other options are skipped for brevity
|
|
53
|
+
sourcemap: true,
|
|
54
|
+
},
|
|
55
|
+
plugins: [
|
|
56
|
+
SondaRollupPlugin(),
|
|
57
|
+
]
|
|
56
58
|
} );
|
|
57
59
|
```
|
|
58
60
|
|
|
@@ -75,10 +77,10 @@ import { build } from 'esbuild';
|
|
|
75
77
|
import { SondaEsbuildPlugin } from 'sonda';
|
|
76
78
|
|
|
77
79
|
build( {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
sourcemap: true,
|
|
81
|
+
plugins: [
|
|
82
|
+
SondaEsbuildPlugin()
|
|
83
|
+
]
|
|
82
84
|
} );
|
|
83
85
|
```
|
|
84
86
|
|
package/dist/index.html
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><link rel="icon" href="data:;base64,iVBORw0KGgo="/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Sonda report</title><link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512' fill='none'%3E%3Cpath fill='%23FACC15' d='M0 0h512v512H0V0Z'/%3E%3Cpath fill='%23000' d='m264.536 203.704-41.984 89.6-21.504-9.728c-20.139-9.216-35.669-21.504-46.592-36.864-10.923-15.36-16.384-37.717-16.384-67.072 0-37.547 9.728-65.536 29.184-83.968 19.797-18.773 52.395-28.33 97.792-28.672 18.773 0 35.84.853 51.2 2.56s27.648 3.584 36.864 5.632l13.824 2.56-10.24 82.432-12.8-1.536c-8.192-1.024-18.432-1.877-30.72-2.56-12.288-1.024-24.235-1.536-35.84-1.536-12.288 0-21.675 1.877-28.16 5.632-6.144 3.413-9.216 10.069-9.216 19.968 0 5.461 2.219 9.899 6.656 13.312 4.437 3.413 10.411 6.827 17.92 10.24Zm-18.432 100.864 42.496-90.624 22.016 9.728c23.211 10.24 40.107 23.04 50.688 38.4 10.581 15.019 15.872 36.523 15.872 64.512 0 37.888-9.899 67.072-29.696 87.552-19.797 20.48-52.395 30.891-97.792 31.232-22.528 0-43.52-1.536-62.976-4.608-19.456-2.731-36.693-5.973-51.712-9.728l10.24-82.432 12.288 2.048c8.533 1.365 19.797 2.731 33.792 4.096 13.995 1.365 29.355 2.048 46.08 2.048 12.971 0 22.699-1.877 29.184-5.632 6.485-3.755 9.728-9.899 9.728-18.432 0-5.803-1.536-10.411-4.608-13.824-3.072-3.413-8.533-6.827-16.384-10.24l-9.216-4.096Z'/%3E%3C/svg%3E"/><script type="module" crossorigin>var Or=Object.defineProperty;var Pe=t=>{throw TypeError(t)};var Tr=(t,e,r)=>e in t?Or(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r;var J=(t,e,r)=>Tr(t,typeof e!="symbol"?e+"":e,r),ne=(t,e,r)=>e.has(t)||Pe("Cannot "+r);var X=(t,e,r)=>(ne(t,e,"read from private field"),r?r.call(t):e.get(t)),At=(t,e,r)=>e.has(t)?Pe("Cannot add the same private member more than once"):e instanceof WeakSet?e.add(t):e.set(t,r),ie=(t,e,r,n)=>(ne(t,e,"write to private field"),n?n.call(t,r):e.set(t,r),r),ze=(t,e,r)=>(ne(t,e,"access private method"),r);(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))n(i);new MutationObserver(i=>{for(const s of i)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&n(a)}).observe(document,{childList:!0,subtree:!0});function r(i){const s={};return i.integrity&&(s.integrity=i.integrity),i.referrerPolicy&&(s.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?s.credentials="include":i.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function n(i){if(i.ep)return;i.ep=!0;const s=r(i);fetch(i.href,s)}})();window.SONDA_JSON_REPORT=JSON.parse(String.raw`__REPORT_DATA__`);const kr=!1;var _e=Array.isArray,ge=Array.from,Ar=Object.defineProperty,mt=Object.getOwnPropertyDescriptor,Nr=Object.prototype,Pr=Array.prototype,zr=Object.getPrototypeOf;function Mr(t){return typeof t=="function"}const Nt=()=>{};function Lr(t){for(var e=0;e<t.length;e++)t[e]()}const $=2,Ge=4,Ot=8,pe=16,tt=32,Kt=64,ht=128,Ft=256,U=512,lt=1024,It=2048,dt=4096,Ct=8192,Je=16384,Dt=32768,Rr=65536,Ir=1<<18,Ht=1<<19,bt=Symbol("$state"),Cr=Symbol("");function Ye(t){return t===this.v}function Ke(t,e){return t!=t?e==e:t!==e||t!==null&&typeof t=="object"||typeof t=="function"}function we(t){return!Ke(t,this.v)}function Dr(t){throw new Error("effect_in_teardown")}function Br(){throw new Error("effect_in_unowned_derived")}function qr(t){throw new Error("effect_orphan")}function Fr(){throw new Error("effect_update_depth_exceeded")}function Hr(t){throw new Error("props_invalid_value")}function jr(){throw new Error("state_descriptors_fixed")}function Wr(){throw new Error("state_prototype_fixed")}function Ur(){throw new Error("state_unsafe_local_read")}function Vr(){throw new Error("state_unsafe_mutation")}function W(t){return{f:0,v:t,reactions:null,equals:Ye,version:0}}function R(t){return Gr(W(t))}function Ze(t){var r;const e=W(t);return e.equals=we,L!==null&&L.l!==null&&((r=L.l).s??(r.s=[])).push(e),e}function Gr(t){return P!==null&&P.f&$&&(Z===null?_n([t]):Z.push(t)),t}function E(t,e){return P!==null&&ue()&&P.f&$&&(Z===null||!Z.includes(t))&&Vr(),t.equals(e)||(t.v=e,t.version=fr(),Xe(t,lt),ue()&&O!==null&&O.f&U&&!(O.f&tt)&&(I!==null&&I.includes(t)?(K(O,lt),te(O)):ot===null?gn([t]):ot.push(t))),e}function Xe(t,e){var r=t.reactions;if(r!==null)for(var n=ue(),i=r.length,s=0;s<i;s++){var a=r[s],f=a.f;f<||!n&&a===O||(K(a,e),f&(U|ht)&&(f&$?Xe(a,It):te(a)))}}const me=1,be=2,Qe=4,Jr=8,Yr=16,Kr=1,Zr=2,Xr=4,Qr=8,$r=16,tn=4,en=1,rn=2,D=Symbol();let $e=!1;function q(t,e=null,r){if(typeof t!="object"||t===null||bt in t)return t;const n=zr(t);if(n!==Nr&&n!==Pr)return t;var i=new Map,s=_e(t),a=W(0);s&&i.set("length",W(t.length));var f;return new Proxy(t,{defineProperty(o,l,u){(!("value"in u)||u.configurable===!1||u.enumerable===!1||u.writable===!1)&&jr();var d=i.get(l);return d===void 0?(d=W(u.value),i.set(l,d)):E(d,q(u.value,f)),!0},deleteProperty(o,l){var u=i.get(l);return u===void 0?l in o&&i.set(l,W(D)):(E(u,D),Me(a)),!0},get(o,l,u){var _;if(l===bt)return t;var d=i.get(l),v=l in o;if(d===void 0&&(!v||(_=mt(o,l))!=null&&_.writable)&&(d=W(q(v?o[l]:D,f)),i.set(l,d)),d!==void 0){var c=h(d);return c===D?void 0:c}return Reflect.get(o,l,u)},getOwnPropertyDescriptor(o,l){var u=Reflect.getOwnPropertyDescriptor(o,l);if(u&&"value"in u){var d=i.get(l);d&&(u.value=h(d))}else if(u===void 0){var v=i.get(l),c=v==null?void 0:v.v;if(v!==void 0&&c!==D)return{enumerable:!0,configurable:!0,value:c,writable:!0}}return u},has(o,l){var c;if(l===bt)return!0;var u=i.get(l),d=u!==void 0&&u.v!==D||Reflect.has(o,l);if(u!==void 0||O!==null&&(!d||(c=mt(o,l))!=null&&c.writable)){u===void 0&&(u=W(d?q(o[l],f):D),i.set(l,u));var v=h(u);if(v===D)return!1}return d},set(o,l,u,d){var g;var v=i.get(l),c=l in o;if(s&&l==="length")for(var _=u;_<v.v;_+=1){var p=i.get(_+"");p!==void 0?E(p,D):_ in o&&(p=W(D),i.set(_+"",p))}v===void 0?(!c||(g=mt(o,l))!=null&&g.writable)&&(v=W(void 0),E(v,q(u,f)),i.set(l,v)):(c=v.v!==D,E(v,q(u,f)));var m=Reflect.getOwnPropertyDescriptor(o,l);if(m!=null&&m.set&&m.set.call(d,u),!c){if(s&&typeof l=="string"){var b=i.get("length"),y=Number(l);Number.isInteger(y)&&y>=b.v&&E(b,y+1)}Me(a)}return!0},ownKeys(o){h(a);var l=Reflect.ownKeys(o).filter(v=>{var c=i.get(v);return c===void 0||c.v!==D});for(var[u,d]of i)d.v!==D&&!(u in o)&&l.push(u);return l},setPrototypeOf(){Wr()}})}function Me(t,e=1){E(t,t.v+e)}function Le(t){return t!==null&&typeof t=="object"&&bt in t?t[bt]:t}function nn(t,e){return Object.is(Le(t),Le(e))}var Re,Q,tr,er;function sn(){if(Re===void 0){Re=window,Q=document;var t=Element.prototype,e=Node.prototype;tr=mt(e,"firstChild").get,er=mt(e,"nextSibling").get,t.__click=void 0,t.__className="",t.__attributes=null,t.__e=void 0,Text.prototype.__t=void 0}}function ye(t=""){return document.createTextNode(t)}function St(t){return tr.call(t)}function Zt(t){return er.call(t)}function S(t){return St(t)}function Y(t,e){{var r=St(t);return r instanceof Comment&&r.data===""?Zt(r):r}}function N(t,e=1,r=!1){let n=t;for(;e--;)n=Zt(n);return n}function an(t){t.textContent=""}function on(t){O===null&&P===null&&qr(),P!==null&&P.f&ht&&Br(),Ee&&Dr()}function ln(t,e){var r=e.last;r===null?e.last=e.first=t:(r.next=t,t.prev=r,e.last=t)}function Tt(t,e,r,n=!0){var i=(t&Kt)!==0,s=O,a={ctx:L,deps:null,nodes_start:null,nodes_end:null,f:t|lt,first:null,fn:e,last:null,next:null,parent:i?null:s,prev:null,teardown:null,transitions:null,version:0};if(r){var f=yt;try{Ie(!0),$t(a),a.f|=Je}catch(u){throw gt(a),u}finally{Ie(f)}}else e!==null&&te(a);var o=r&&a.deps===null&&a.first===null&&a.nodes_start===null&&a.teardown===null;if(!o&&!i&&n&&(s!==null&&ln(a,s),P!==null&&P.f&$)){var l=P;(l.children??(l.children=[])).push(a)}return a}function un(t){const e=Tt(Ot,null,!1);return K(e,U),e.teardown=t,e}function fn(t){on();var e=O!==null&&(O.f&Ot)!==0&&L!==null&&!L.m;if(e){var r=L;(r.e??(r.e=[])).push({fn:t,parent:O})}else{var n=_t(t);return n}}function cn(t){const e=Tt(Kt,t,!0);return()=>{gt(e)}}function _t(t){return Tt(Ge,t,!1)}function rr(t){return Tt(Ot,t,!0)}function C(t){return rr(t)}function Xt(t,e=0){return Tt(Ot|pe|e,t,!0)}function vt(t,e=!0){return Tt(Ot|tt,t,!0,e)}function nr(t){var e=t.teardown;if(e!==null){const r=Ee,n=P;Ce(!0),De(null);try{e.call(null)}finally{Ce(r),De(n)}}}function gt(t,e=!0){var r=!1;if((e||t.f&Ir)&&t.nodes_start!==null){for(var n=t.nodes_start,i=t.nodes_end;n!==null;){var s=n===i?null:Zt(n);n.remove(),n=s}r=!0}dr(t,e&&!r),Lt(t,0),K(t,Ct);var a=t.transitions;if(a!==null)for(const o of a)o.stop();nr(t);var f=t.parent;f!==null&&f.first!==null&&ir(t),t.next=t.prev=t.teardown=t.ctx=t.deps=t.parent=t.fn=t.nodes_start=t.nodes_end=null}function ir(t){var e=t.parent,r=t.prev,n=t.next;r!==null&&(r.next=n),n!==null&&(n.prev=r),e!==null&&(e.first===t&&(e.first=n),e.last===t&&(e.last=r))}function jt(t,e){var r=[];xe(t,r,!0),sr(r,()=>{gt(t),e&&e()})}function sr(t,e){var r=t.length;if(r>0){var n=()=>--r||e();for(var i of t)i.out(n)}else e()}function xe(t,e,r){if(!(t.f&dt)){if(t.f^=dt,t.transitions!==null)for(const a of t.transitions)(a.is_global||r)&&e.push(a);for(var n=t.first;n!==null;){var i=n.next,s=(n.f&Dt)!==0||(n.f&tt)!==0;xe(n,e,s?r:!1),n=i}}}function Wt(t){ar(t,!0)}function ar(t,e){if(t.f&dt){t.f^=dt,Bt(t)&&$t(t);for(var r=t.first;r!==null;){var n=r.next,i=(r.f&Dt)!==0||(r.f&tt)!==0;ar(r,i?e:!1),r=n}if(t.transitions!==null)for(const s of t.transitions)(s.is_global||e)&&s.in()}}let ae=!1,oe=[];function dn(){ae=!1;const t=oe.slice();oe=[],Lr(t)}function Qt(t){ae||(ae=!0,queueMicrotask(dn)),oe.push(t)}function k(t){let e=$|lt;O===null&&(e|=ht);const r={children:null,deps:null,equals:Ye,f:e,fn:t,reactions:null,v:null,version:0};if(P!==null&&P.f&$){var n=P;(n.children??(n.children=[])).push(r)}return r}function vn(t){const e=k(t);return e.equals=we,e}function or(t){var e=t.children;if(e!==null){t.children=null;for(var r=0;r<e.length;r+=1){var n=e[r];n.f&$?hn(n):gt(n)}}}function lr(t){var e;or(t),e=cr(t);var r=(wt||t.f&ht)&&t.deps!==null?It:U;K(t,r),t.equals(e)||(t.v=e,t.version=fr())}function hn(t){or(t),Lt(t,0),K(t,Ct),t.children=t.deps=t.reactions=t.fn=null}let Ut=!1,yt=!1,Ee=!1;function Ie(t){yt=t}function Ce(t){Ee=t}let le=[],zt=0;let P=null;function De(t){P=t}let O=null;function Be(t){O=t}let Z=null;function _n(t){Z=t}let I=null,H=0,ot=null;function gn(t){ot=t}let ur=0,wt=!1,L=null;function fr(){return++ur}function ue(){return L!==null&&L.l===null}function Bt(t){var a,f;var e=t.f;if(e<)return!0;if(e&It){var r=t.deps,n=(e&ht)!==0;if(r!==null){var i;if(e&Ft){for(i=0;i<r.length;i++)((a=r[i]).reactions??(a.reactions=[])).push(t);t.f^=Ft}for(i=0;i<r.length;i++){var s=r[i];if(Bt(s)&&lr(s),n&&O!==null&&!wt&&!((f=s==null?void 0:s.reactions)!=null&&f.includes(t))&&(s.reactions??(s.reactions=[])).push(t),s.version>t.version)return!0}}n||K(t,U)}return!1}function pn(t,e,r){throw t}function cr(t){var u;var e=I,r=H,n=ot,i=P,s=wt,a=Z;I=null,H=0,ot=null,P=t.f&(tt|Kt)?null:t,wt=!yt&&(t.f&ht)!==0,Z=null;try{var f=(0,t.fn)(),o=t.deps;if(I!==null){var l;if(Lt(t,H),o!==null&&H>0)for(o.length=H+I.length,l=0;l<I.length;l++)o[H+l]=I[l];else t.deps=o=I;if(!wt)for(l=H;l<o.length;l++)((u=o[l]).reactions??(u.reactions=[])).push(t)}else o!==null&&H<o.length&&(Lt(t,H),o.length=H);return f}finally{I=e,H=r,ot=n,P=i,wt=s,Z=a}}function wn(t,e){let r=e.reactions;if(r!==null){var n=r.indexOf(t);if(n!==-1){var i=r.length-1;i===0?r=e.reactions=null:(r[n]=r[i],r.pop())}}r===null&&e.f&$&&(I===null||!I.includes(e))&&(K(e,It),e.f&(ht|Ft)||(e.f^=Ft),Lt(e,0))}function Lt(t,e){var r=t.deps;if(r!==null)for(var n=e;n<r.length;n++)wn(t,r[n])}function dr(t,e=!1){var r=t.first;for(t.first=t.last=null;r!==null;){var n=r.next;gt(r,e),r=n}}function $t(t){var e=t.f;if(!(e&Ct)){K(t,U);var r=O,n=L;O=t,L=t.ctx;try{e&pe||dr(t),nr(t);var i=cr(t);t.teardown=typeof i=="function"?i:null,t.version=ur}catch(s){pn(s)}finally{O=r,L=n}}}function mn(){zt>1e3&&(zt=0,Fr()),zt++}function bn(t){var e=t.length;if(e!==0){mn();var r=yt;yt=!0;try{for(var n=0;n<e;n++){var i=t[n];if(i.f&Ht&&(i.f^=Ht),i.first===null&&!(i.f&tt))qe([i]);else{var s=[];vr(i,s),qe(s)}}}finally{yt=r}}}function qe(t){var e=t.length;if(e!==0)for(var r=0;r<e;r++){var n=t[r];!(n.f&(Ct|dt))&&Bt(n)&&($t(n),n.deps===null&&n.first===null&&n.nodes_start===null&&(n.teardown===null?ir(n):n.fn=null))}}function yn(){if(Ut=!1,zt>1001)return;const t=le;le=[],bn(t),Ut||(zt=0)}function te(t){Ut||(Ut=!0,queueMicrotask(yn));for(var e=t;e.parent!==null;){e=e.parent;var r=e.f;if(r&tt){if(!(r&U))return;e.f^=U}if(r&Kt){if(r&Ht)return;e.f^=Ht}}le.push(e)}function vr(t,e){var r=t.first,n=[];t:for(;r!==null;){var i=r.f,s=(i&dt)===0,a=(i&tt)!==0,f=(i&U)!==0,o=r.first;if(s&&(!a||!f))if(a&&K(r,U),i&Ot){if(!a&&Bt(r)&&$t(r),o=r.first,o!==null){r=o;continue}}else i&Ge&&n.push(r);var l=r.next;if(l===null){let v=r.parent;for(;v!==null;){if(t===v)break t;var u=v.next;if(u!==null){r=u;continue t}v=v.parent}}r=l}for(var d=0;d<n.length;d++)o=n[d],e.push(o),vr(o,e)}function h(t){var e=t.f;if(e&Ct)return t.v;if(P!==null){Z!==null&&Z.includes(t)&&Ur();var r=P.deps;I===null&&r!==null&&r[H]===t?H++:I===null?I=[t]:I.push(t),ot!==null&&O!==null&&O.f&U&&!(O.f&tt)&&ot.includes(t)&&(K(O,lt),te(O))}if(e&$){var n=t;Bt(n)&&lr(n)}return t.v}function ee(t){const e=P;try{return P=null,t()}finally{P=e}}const xn=~(lt|It|U);function K(t,e){t.f=t.f&xn|e}function ut(t,e=!1,r){L={p:L,c:null,e:null,m:!1,s:t,x:null,l:null},e||(L.l={s:null,u:null,r1:[],r2:W(!1)})}function ft(t){const e=L;if(e!==null){const s=e.e;if(s!==null){var r=O;e.e=null;try{for(var n=0;n<s.length;n++){var i=s[n];Be(i.parent),_t(i.fn)}}finally{Be(r)}}L=e.p,e.m=!0}return{}}const hr=new Set,fe=new Set;function En(t,e,r,n){function i(s){if(n.capture||Pt.call(e,s),!s.cancelBubble)return r.call(this,s)}return t.startsWith("pointer")||t.startsWith("touch")||t==="wheel"?Qt(()=>{e.addEventListener(t,i,n)}):e.addEventListener(t,i,n),i}function xt(t,e,r,n,i){var s={capture:n,passive:i},a=En(t,e,r,s);(e===document.body||e===window||e===document)&&un(()=>{e.removeEventListener(t,a,s)})}function Sn(t){for(var e=0;e<t.length;e++)hr.add(t[e]);for(var r of fe)r(t)}function Pt(t){var m;var e=this,r=e.ownerDocument,n=t.type,i=((m=t.composedPath)==null?void 0:m.call(t))||[],s=i[0]||t.target,a=0,f=t.__root;if(f){var o=i.indexOf(f);if(o!==-1&&(e===document||e===window)){t.__root=e;return}var l=i.indexOf(e);if(l===-1)return;o<=l&&(a=o)}if(s=i[a]||t.target,s!==e){Ar(t,"currentTarget",{configurable:!0,get(){return s||r}});try{for(var u,d=[];s!==null;){var v=s.assignedSlot||s.parentNode||s.host||null;try{var c=s["__"+n];if(c!==void 0&&!s.disabled)if(_e(c)){var[_,...p]=c;_.apply(s,[t,...p])}else c.call(s,t)}catch(b){u?d.push(b):u=b}if(t.cancelBubble||v===e||v===null)break;s=v}if(u){for(let b of d)queueMicrotask(()=>{throw b});throw u}}finally{t.__root=e,delete t.currentTarget}}}function _r(t){var e=document.createElement("template");return e.innerHTML=t,e.content}function Vt(t,e){var r=O;r.nodes_start===null&&(r.nodes_start=t,r.nodes_end=e)}function V(t,e){var r=(e&en)!==0,n=(e&rn)!==0,i,s=!t.startsWith("<!>");return()=>{i===void 0&&(i=_r(s?t:"<!>"+t),r||(i=St(i)));var a=n?document.importNode(i,!0):i.cloneNode(!0);if(r){var f=St(a),o=a.lastChild;Vt(f,o)}else Vt(a,a);return a}}function gr(t,e,r="svg"){var n=!t.startsWith("<!>"),i=`<${r}>${n?t:"<!>"+t}</${r}>`,s;return()=>{if(!s){var a=_r(i),f=St(a);s=St(f)}var o=s.cloneNode(!0);return Vt(o,o),o}}function re(){var t=document.createDocumentFragment(),e=document.createComment(""),r=ye();return t.append(e,r),Vt(e,r),t}function M(t,e){t!==null&&t.before(e)}const On=["wheel","mousewheel","touchstart","touchmove"];function Tn(t){return On.includes(t)}let ce=!0;function B(t,e){e!==(t.__t??(t.__t=t.nodeValue))&&(t.__t=e,t.nodeValue=e==null?"":e+"")}function kn(t,e){const r=e.anchor??e.target.appendChild(ye());return An(t,{...e,anchor:r})}const pt=new Map;function An(t,{target:e,anchor:r,props:n={},events:i,context:s,intro:a=!0}){sn();var f=new Set,o=d=>{for(var v=0;v<d.length;v++){var c=d[v];if(!f.has(c)){f.add(c);var _=Tn(c);e.addEventListener(c,Pt,{passive:_});var p=pt.get(c);p===void 0?(document.addEventListener(c,Pt,{passive:_}),pt.set(c,1)):pt.set(c,p+1)}}};o(ge(hr)),fe.add(o);var l=void 0,u=cn(()=>(vt(()=>{if(s){ut({});var d=L;d.c=s}i&&(n.$$events=i),ce=a,l=t(r,n)||{},ce=!0,s&&ft()}),()=>{for(var d of f){e.removeEventListener(d,Pt);var v=pt.get(d);--v===0?(document.removeEventListener(d,Pt),pt.delete(d)):pt.set(d,v)}fe.delete(o),Fe.delete(l)}));return Fe.set(l,u),l}let Fe=new WeakMap;function rt(t,e,r,n=null,i=!1){var s=t,a=null,f=null,o=null,l=i?Dt:0;Xt(()=>{o!==(o=!!e())&&(o?(a?Wt(a):a=vt(()=>r(s)),f&&jt(f,()=>{f=null})):(f?Wt(f):n&&(f=vt(()=>n(s))),a&&jt(a,()=>{a=null})))},l)}function Nn(t,e,r){var n=t,i=D,s;Xt(()=>{Ke(i,i=e())&&(s&&jt(s),s=vt(()=>r(n)))})}let se=null;function Pn(t,e){return e}function zn(t,e,r,n){for(var i=[],s=e.length,a=0;a<s;a++)xe(e[a].e,i,!0);var f=s>0&&i.length===0&&r!==null;if(f){var o=r.parentNode;an(o),o.append(r),n.clear(),et(t,e[0].prev,e[s-1].next)}sr(i,()=>{for(var l=0;l<s;l++){var u=e[l];f||(n.delete(u.k),et(t,u.prev,u.next)),gt(u.e,!f)}})}function pr(t,e,r,n,i,s=null){var a=t,f={flags:e,items:new Map,first:null},o=(e&Qe)!==0;if(o){var l=t;a=l.appendChild(ye())}var u=null;Xt(()=>{var d=r(),v=_e(d)?d:d==null?[]:ge(d),c=v.length;Mn(v,f,a,i,e,n),s!==null&&(c===0?u?Wt(u):u=vt(()=>s(a)):u!==null&&jt(u,()=>{u=null}))})}function Mn(t,e,r,n,i,s){var Oe,Te,ke,Ae;var a=(i&Jr)!==0,f=(i&(me|be))!==0,o=t.length,l=e.items,u=e.first,d=u,v,c=null,_,p=[],m=[],b,y,g,w;if(a)for(w=0;w<o;w+=1)b=t[w],y=s(b,w),g=l.get(y),g!==void 0&&((Oe=g.a)==null||Oe.measure(),(_??(_=new Set)).add(g));for(w=0;w<o;w+=1){if(b=t[w],y=s(b,w),g=l.get(y),g===void 0){var x=d?d.e.nodes_start:r;c=Rn(x,e,c,c===null?e.first:c.next,b,y,w,n,i),l.set(y,c),p=[],m=[],d=c.next;continue}if(f&&Ln(g,b,w,i),g.e.f&dt&&(Wt(g.e),a&&((Te=g.a)==null||Te.unfix(),(_??(_=new Set)).delete(g))),g!==d){if(v!==void 0&&v.has(g)){if(p.length<m.length){var z=m[0],T;c=z.prev;var A=p[0],G=p[p.length-1];for(T=0;T<p.length;T+=1)He(p[T],z,r);for(T=0;T<m.length;T+=1)v.delete(m[T]);et(e,A.prev,G.next),et(e,c,A),et(e,G,z),d=z,c=G,w-=1,p=[],m=[]}else v.delete(g),He(g,d,r),et(e,g.prev,g.next),et(e,g,c===null?e.first:c.next),et(e,c,g),c=g;continue}for(p=[],m=[];d!==null&&d.k!==y;)(v??(v=new Set)).add(d),m.push(d),d=d.next;if(d===null)continue;g=d}p.push(g),c=g,d=g.next}if(d!==null||v!==void 0){for(var F=v===void 0?[]:ge(v);d!==null;)F.push(d),d=d.next;var kt=F.length;if(kt>0){var Sr=i&Qe&&o===0?r:null;if(a){for(w=0;w<kt;w+=1)(ke=F[w].a)==null||ke.measure();for(w=0;w<kt;w+=1)(Ae=F[w].a)==null||Ae.fix()}zn(e,F,Sr,l)}}a&&Qt(()=>{var Ne;if(_!==void 0)for(g of _)(Ne=g.a)==null||Ne.apply()}),O.first=e.first&&e.first.e,O.last=c&&c.e}function Ln(t,e,r,n){n&me&&E(t.v,e),n&be?E(t.i,r):t.i=r}function Rn(t,e,r,n,i,s,a,f,o){var l=se;try{var u=(o&me)!==0,d=(o&Yr)===0,v=u?d?Ze(i):W(i):i,c=o&be?W(a):a,_={i:c,v,k:s,a:null,e:null,prev:r,next:n};return se=_,_.e=vt(()=>f(t,v,c),$e),_.e.prev=r&&r.e,_.e.next=n&&n.e,r===null?e.first=_:(r.next=_,r.e.next=_.e),n!==null&&(n.prev=_,n.e.prev=_.e),_}finally{se=l}}function He(t,e,r){for(var n=t.next?t.next.e.nodes_start:r,i=e?e.e.nodes_start:r,s=t.e.nodes_start;s!==n;){var a=Zt(s);i.before(s),s=a}}function et(t,e,r){e===null?t.first=r:(e.next=r,e.e.next=r&&r.e),r!==null&&(r.prev=e,r.e.prev=e&&e.e)}function In(t,e,...r){var n=t,i=Nt,s;Xt(()=>{i!==(i=e())&&(s&&(gt(s),s=null),s=vt(()=>i(n,...r)))},Dt)}let je=!1;function Cn(){je||(je=!0,document.addEventListener("reset",t=>{Promise.resolve().then(()=>{var e;if(!t.defaultPrevented)for(const r of t.target.elements)(e=r.__on_r)==null||e.call(r)})},{capture:!0}))}function j(t,e,r,n){r=r==null?null:r+"";var i=t.__attributes??(t.__attributes={});i[e]!==(i[e]=r)&&(e==="loading"&&(t[Cr]=r),r===null?t.removeAttribute(e):t.setAttribute(e,r))}function Dn(t,e){var r=t.__className,n=Bn(e);(r!==n||$e)&&(n===""?t.removeAttribute("class"):t.setAttribute("class",n),t.__className=n)}function Bn(t){return t??""}function de(t,e,r){if(r){if(t.classList.contains(e))return;t.classList.add(e)}else{if(!t.classList.contains(e))return;t.classList.remove(e)}}function We(t,e,r,n,i){var s=t.__attributes??(t.__attributes={}),a=t.style,f="style-"+e;s[f]===r&&a.getPropertyValue(e)===r||(s[f]=r,r==null?a.removeProperty(e):a.setProperty(e,r,""))}const qn=requestAnimationFrame,Fn=()=>performance.now(),it={tick:t=>qn(t),now:()=>Fn(),tasks:new Set};function wr(t){it.tasks.forEach(e=>{e.c(t)||(it.tasks.delete(e),e.f())}),it.tasks.size!==0&&it.tick(wr)}function Hn(t){let e;return it.tasks.size===0&&it.tick(wr),{promise:new Promise(r=>{it.tasks.add(e={c:t,f:r})}),abort(){it.tasks.delete(e)}}}function qt(t,e){t.dispatchEvent(new CustomEvent(e))}function jn(t){const e=t.split("-");return e.length===1?e[0]:e[0]+e.slice(1).map(r=>r[0].toUpperCase()+r.slice(1)).join("")}function Ue(t){const e={},r=t.split(";");for(const n of r){const[i,s]=n.split(":");if(!i||s===void 0)break;const a=jn(i.trim());e[a]=s.trim()}return e}const Wn=t=>t;function Un(t,e,r,n){var i=(t&tn)!==0,s="both",a,f=e.inert,o,l;function u(){return a??(a=r()(e,(n==null?void 0:n())??{},{direction:s}))}var d={is_global:i,in(){e.inert=f,qt(e,"introstart"),o=ve(e,u(),l,1,()=>{qt(e,"introend"),o==null||o.abort(),o=a=void 0})},out(p){e.inert=!0,qt(e,"outrostart"),l=ve(e,u(),o,0,()=>{qt(e,"outroend"),p==null||p()})},stop:()=>{o==null||o.abort(),l==null||l.abort()}},v=O;if((v.transitions??(v.transitions=[])).push(d),ce){var c=i;if(!c){for(var _=v.parent;_&&_.f&Dt;)for(;(_=_.parent)&&!(_.f&pe););c=!_||(_.f&Je)!==0}c&&_t(()=>{ee(()=>d.in())})}}function ve(t,e,r,n,i){var s=n===1;if(Mr(e)){var a,f=!1;return Qt(()=>{if(!f){var m=e({direction:s?"in":"out"});a=ve(t,m,r,n,i)}}),{abort:()=>{f=!0,a==null||a.abort()},deactivate:()=>a.deactivate(),reset:()=>a.reset(),t:()=>a.t()}}if(r==null||r.deactivate(),!(e!=null&&e.duration))return i(),{abort:Nt,deactivate:Nt,reset:Nt,t:()=>n};const{delay:o=0,css:l,tick:u,easing:d=Wn}=e;var v=[];if(s&&r===void 0&&(u&&u(0,1),l)){var c=Ue(l(0,1));v.push(c,c)}var _=()=>1-n,p=t.animate(v,{duration:o});return p.onfinish=()=>{var m=(r==null?void 0:r.t())??1-n;r==null||r.abort();var b=n-m,y=e.duration*Math.abs(b),g=[];if(y>0){if(l)for(var w=Math.ceil(y/16.666666666666668),x=0;x<=w;x+=1){var z=m+b*d(x/w),T=l(z,1-z);g.push(Ue(T))}_=()=>{var A=p.currentTime;return m+b*d(A/y)},u&&Hn(()=>{if(p.playState!=="running")return!1;var A=_();return u(A,1-A),!0})}p=t.animate(g,{duration:y,fill:"forwards"}),p.onfinish=()=>{_=()=>n,u==null||u(n,1-n),i()}},{abort:()=>{p&&(p.cancel(),p.effect=null)},deactivate:()=>{i=Nt},reset:()=>{n===0&&(u==null||u(1,0))},t:()=>_()}}function Vn(t,e,r,n=r){t.addEventListener(e,r);const i=t.__on_r;i?t.__on_r=()=>{i(),n()}:t.__on_r=n,Cn()}function mr(t,e,r){if(t.multiple)return Yn(t,e);for(var n of t.options){var i=Mt(n);if(nn(i,e)){n.selected=!0;return}}(!r||e!==void 0)&&(t.selectedIndex=-1)}function Gn(t,e){_t(()=>{var r=new MutationObserver(()=>{var n=t.__value;mr(t,n)});return r.observe(t,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["value"]}),()=>{r.disconnect()}})}function Jn(t,e,r=e){var n=!0;Vn(t,"change",()=>{var i;if(t.multiple)i=[].map.call(t.querySelectorAll(":checked"),Mt);else{var s=t.querySelector(":checked");i=s&&Mt(s)}r(i)}),_t(()=>{var i=e();if(mr(t,i,n),n&&i===void 0){var s=t.querySelector(":checked");s!==null&&(i=Mt(s),r(i))}t.__value=i,n=!1}),Gn(t)}function Yn(t,e){for(var r of t.options)r.selected=~e.indexOf(Mt(r))}function Mt(t){return"__value"in t?t.__value:t.value}var nt,Et,Rt,Jt,br;const Yt=class Yt{constructor(e){At(this,Jt);At(this,nt,new WeakMap);At(this,Et);At(this,Rt);ie(this,Rt,e)}observe(e,r){var n=X(this,nt).get(e)||new Set;return n.add(r),X(this,nt).set(e,n),ze(this,Jt,br).call(this).observe(e,X(this,Rt)),()=>{var i=X(this,nt).get(e);i.delete(r),i.size===0&&(X(this,nt).delete(e),X(this,Et).unobserve(e))}}};nt=new WeakMap,Et=new WeakMap,Rt=new WeakMap,Jt=new WeakSet,br=function(){return X(this,Et)??ie(this,Et,new ResizeObserver(e=>{for(var r of e){Yt.entries.set(r.target,r);for(var n of X(this,nt).get(r.target)||[])n(r)}}))},J(Yt,"entries",new WeakMap);let he=Yt;var Kn=new he({box:"border-box"});function st(t,e,r){var n=Kn.observe(t,()=>r(t[e]));_t(()=>(ee(()=>r(t[e])),n))}function Ve(t,e){return t===e||(t==null?void 0:t[bt])===e}function Zn(t={},e,r,n){return _t(()=>{var i,s;return rr(()=>{i=s,s=[],ee(()=>{t!==r(...s)&&(e(t,...s),i&&Ve(r(...i),t)&&e(null,...i))})}),()=>{Qt(()=>{s&&Ve(r(...s),t)&&e(null,...s)})}}),t}function Se(t,e,r,n){var w;var i=(r&Kr)!==0,s=(r&Zr)!==0,a=(r&Qr)!==0,f=(r&$r)!==0,o=t[e],l=(w=mt(t,e))==null?void 0:w.set,u=n,d=!0,v=!1,c=()=>(v=!0,d&&(d=!1,f?u=ee(n):u=n),u);o===void 0&&n!==void 0&&(l&&s&&Hr(),o=c(),l&&l(o));var _;if(s)_=()=>{var x=t[e];return x===void 0?c():(d=!0,v=!1,x)};else{var p=(i?k:vn)(()=>t[e]);p.f|=Rr,_=()=>{var x=h(p);return x!==void 0&&(u=void 0),x===void 0?u:x}}if(!(r&Xr))return _;if(l){var m=t.$$legacy;return function(x,z){return arguments.length>0?((!s||!z||m)&&l(z?_():x),x):_()}}var b=!1,y=Ze(o),g=k(()=>{var x=_(),z=h(y);return b?(b=!1,z):y.v=x});return i||(g.equals=we),function(x,z){var T=h(g);if(arguments.length>0){const A=z?h(g):s&&a?q(x):x;return g.equals(A)||(b=!0,E(y,A),v&&u!==void 0&&(u=A),h(g)),x}return T}}const Xn="5";typeof window<"u"&&(window.__svelte||(window.__svelte={v:new Set})).v.add(Xn);var Qn=V("<option> </option>"),$n=V('<div class="flex flex-row p-4 items-center space-y-0 h-16 justify-end space-x-2 bg-gray-50"><div class="flex items-center justify-center space-x-2 max-w-sm"><select class="text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-1 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 h-10 min-w-80"></select></div> <button aria-label="Details of the entire build output" class="text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-1 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 h-10"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-gray-900"><path d="M0 0h24v24H0z" stroke="none" shape-rendering="geometricPrecision"></path><path d="M8 5H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5.697M18 12V7a2 2 0 0 0-2-2h-2" shape-rendering="geometricPrecision"></path><path d="M8 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2zM8 11h4M8 15h3M14 17.5a2.5 2.5 0 1 0 5 0 2.5 2.5 0 1 0-5 0M18.5 19.5 21 22" shape-rendering="geometricPrecision"></path></svg></button> <a href="https://github.com/filipsobol/sonda" target="_blank" aria-label="GitHub repository" class="flex items-center text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-1 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 h-10"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-gray-900"><path d="M0 0h24v24H0z" stroke="none" shape-rendering="geometricPrecision"></path><path d="M9 19c-4.3 1.4-4.3-2.5-6-3m12 5v-3.5c0-1 .1-1.4-.5-2 2.8-.3 5.5-1.4 5.5-6a4.6 4.6 0 0 0-1.3-3.2 4.2 4.2 0 0 0-.1-3.2s-1.1-.3-3.5 1.3a12.3 12.3 0 0 0-6.2 0C6.5 2.8 5.4 3.1 5.4 3.1a4.2 4.2 0 0 0-.1 3.2A4.6 4.6 0 0 0 4 9.5c0 4.6 2.7 5.7 5.5 6-.6.6-.6 1.2-.5 2V21" shape-rendering="geometricPrecision"></path></svg></a></div>');function ti(t,e){let r=Se(e,"activeOutputIndex",15);var n=$n(),i=S(n),s=S(i);pr(s,21,()=>e.outputs,Pn,(a,f,o)=>{var l=Qn();l.value=(l.__value=o)==null?"":o;var u=S(l);C(()=>B(u,`${o+1}. ${h(f).root.name??""}`)),M(a,l)}),Jn(s,r),M(t,n)}function at(t){const r=["b","KiB","MiB","GiB","TiB","PiB"];let n=t,i=0;for(;n>1024&&r.length>i+1;)n=n/1024,i++;return`${i?n.toFixed(2):n} ${r[i]}`}function ei(t){return Object.entries(t.outputs).map(([e,r])=>{const n=new ri;return Object.entries(r.inputs).forEach(([i,s])=>n.insert(i,s)),n.root.items.push({name:"[unassigned]",path:"[unassigned]",uncompressed:r.uncompressed-n.root.uncompressed,gzip:r.gzip-n.root.gzip,brotli:r.brotli-n.root.brotli}),n.root.name=e,n.optimize(),n})}function ct(t){return"items"in t}class ri{constructor(){J(this,"root");this.root=this.createNode("","")}createNode(e,r){return{name:e,path:r,uncompressed:0,gzip:0,brotli:0,items:[]}}insert(e,r){const n=e.split("/"),i=n.pop();let s=this.root;n.forEach(a=>{let f=s.items.find(o=>ct(o)&&o.name===a);f||(f=this.createNode(a,s.path?`${s.path}/${a}`:a),s.items.push(f)),s=f,s.uncompressed+=r.uncompressed,s.gzip+=r.gzip,s.brotli+=r.brotli}),s.items.push({name:i,path:`${s.path}/${i}`,uncompressed:r.uncompressed,gzip:r.gzip,brotli:r.brotli}),this.root.uncompressed+=r.uncompressed,this.root.gzip+=r.gzip,this.root.brotli+=r.brotli}optimize(){const e=[this.root];for(;e.length;){const r=e.pop();for(;r.items.length===1&&ct(r.items[0]);){const n=r.items[0];r.name=`${r.name}/${n.name}`,r.path=n.path,r.items=n.items}r.items.sort((n,i)=>i.uncompressed-n.uncompressed),r.items.forEach(n=>ct(n)&&e.push(n))}}get(e){let r=this.root;for(;r&&r.path!==e;)r=ct(r)&&r.items.find(n=>e.startsWith(n.path))||null;return r}}var ni=V('<span class="text-gray-900"> </span> <span class="text-gray-600"> </span>',1),ii=gr('<g><rect shape-rendering="crispEdges" vector-effect="non-scaling-stroke"></rect><foreignObject class="pointer-events-none"><p xmlns="http://www.w3.org/1999/xhtml" class="p-1 size-full text-center text-xs truncate"><!></p></foreignObject><!></g>');function si(t,e){ut(e,!0);const r=20,n=6,i=22,s=k(()=>e.tile.width-n*2),a=k(()=>e.tile.height-n-i),f=k(()=>at(e.content.uncompressed)),o=k(()=>(e.content.uncompressed/e.totalBytes*100).toFixed(2)),l=k(()=>`color-mix(in oklch, #fca5a5 ${h(o)}%, #86efac)`),u=k(()=>e.tile.width>=i*1.75&&e.tile.height>=i),d=k(()=>!ct(e.content)||h(a)<=r||h(s)<=r?[]:e.content.items);var v=ii(),c=S(v);C(()=>Dn(c,`stroke-gray-500 ${(ct(e.content)?"cursor-zoom-in":"cursor-pointer")??""} svelte-ks9kyg`));var _=N(c),p=S(_),m=S(p);rt(m,()=>h(u),y=>{var g=ni(),w=Y(g),x=S(w),z=N(w,2),T=S(z);C(()=>{B(x,e.content.name),B(T,`- ${h(f)??""}`)}),M(y,g)});var b=N(_);rt(b,()=>h(d).length,y=>{var g=k(()=>e.tile.x+n),w=k(()=>e.tile.y+i);yr(y,{get content(){return h(d)},get totalBytes(){return e.totalBytes},get width(){return h(s)},get height(){return h(a)},get xStart(){return h(g)},get yStart(){return h(w)}})}),C(()=>{j(c,"data-tile",e.content.path),j(c,"data-hover",`${e.content.name} - ${h(f)} (${h(o)}%)`),j(c,"x",e.tile.x),j(c,"y",e.tile.y),j(c,"width",e.tile.width),j(c,"height",e.tile.height),j(c,"fill",h(l)),j(_,"x",e.tile.x),j(_,"y",e.tile.y),j(_,"width",e.tile.width),j(_,"height",e.tile.height)}),M(t,v),ft()}class ai{constructor(e,r,n,i=0,s=0){J(this,"sizes");J(this,"tiles");J(this,"xStart");J(this,"yStart");J(this,"widthLeft");J(this,"heightLeft");const a=e.reduce((o,l)=>o+l,0),f=n*r/a;this.sizes=new Float32Array(e.length);for(let o=0;o<e.length;o++)this.sizes[o]=e[o]*f;this.tiles=new Array,this.xStart=i,this.yStart=s,this.widthLeft=r,this.heightLeft=n}layout(e,r,n,i,s){let a=i?this.yStart:this.xStart,f;const o=this.sizes,l=this.tiles;for(let u=e;u<=r;u++)f=o[u]/n,i?l.push({x:this.xStart,y:a,width:n,height:f}):l.push({x:a,y:this.yStart,width:f,height:n}),a+=f,s++;return i?(this.xStart+=n,this.widthLeft-=n):(this.yStart+=n,this.heightLeft-=n),s}calculate(){let e=this.heightLeft<this.widthLeft,r=e?this.heightLeft:this.widthLeft,n=r*r,i=0,s=0,a=this.sizes[0],f=this.sizes[0],o=this.sizes[0],l=0,u=a*a,d=Math.max(n*o/u,u/(n*f));for(let v=1;v<this.sizes.length;v++){const c=this.sizes[v],_=a+c,p=f<c?f:c,m=o>c?o:c,b=_*_,y=Math.max(n*m/b,b/(n*p));(d<=y?1:0)?(l=this.layout(i,s,a/r,e,l),e=this.heightLeft<this.widthLeft,r=e?this.heightLeft:this.widthLeft,n=r*r,i=v,s=v,a=c,f=c,o=c,u=c*c,d=Math.max(n*o/u,u/(n*f))):(s=v,a=_,f=p,o=m,u=b,d=y)}return l=this.layout(i,s,a/r,e,l),this.tiles}}function yr(t,e){const r=k(()=>Array.isArray(e.content)?Object.values(e.content):[e.content]),n=k(()=>new ai(h(r).map(f=>f.uncompressed),e.width,e.height,e.xStart,e.yStart).calculate());var i=re(),s=Y(i);pr(s,18,()=>h(n),a=>a,(a,f,o)=>{si(a,{get tile(){return f},get content(){return h(r)[h(o)]},get totalBytes(){return e.totalBytes}})}),M(t,i)}var oi=gr('<svg xmlns="http://www.w3.org/2000/svg" role="img"><!></svg>');function xr(t,e){ut(e,!0);var r=re(),n=Y(r);Nn(n,()=>[e.content.path,e.width,e.height],i=>{var s=oi(),a=S(s),f=k(()=>e.width-1),o=k(()=>e.height-1);yr(a,{get content(){return e.content},get totalBytes(){return e.content.uncompressed},get width(){return h(f)},get height(){return h(o)},xStart:.5,yStart:.5}),C(()=>{j(s,"width",e.width),j(s,"height",e.height)}),M(i,s)}),M(t,r),ft()}const li=t=>t;function ui(t,{delay:e=0,duration:r=400,easing:n=li}={}){const i=+getComputedStyle(t).opacity;return{delay:e,duration:r,easing:n,css:s=>`opacity: ${s*i}`}}var fi=V('<div class="fixed top-0 right-0 left-0 bottom-0 flex justify-center items-center"><div class="fixed bg-gray-200/70 w-full h-full backdrop-blur-sm" aria-hidden="true"></div> <div class="bg-white relative flex flex-col rounded-lg border p-6 shadow-lg overflow-hidden max-h-[95vh] max-w-[95vw]"><div class="mb-4"><h2 class="py-2 pr-6 block align-text-bottom font-semibold leading-none tracking-tight text-base border-b-2 border-gray-300 border-dashed"> </h2> <button aria-label="Close dialog" class="absolute top-0 right-0 mt-2 mr-2 flex justify-center items-center border border-transparent rounded-full w-10 h-10 text-gray-600 hover:text-gray-900"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M0 0h24v24H0z" stroke="none"></path><path d="M18 6 6 18M6 6l12 12"></path></svg></button></div> <!></div></div>');function Er(t,e){ut(e,!0);let r=R(void 0);function n(v){e.onClose&&v.target===h(r)&&e.onClose()}var i=fi();xt("click",Q.body,n);var s=S(i);Zn(s,v=>E(r,v),()=>h(r));var a=N(s,2),f=S(a),o=S(f),l=S(o),u=N(o,2);u.__click=function(...v){var c;(c=e.onClose)==null||c.apply(this,v)};var d=N(f,2);In(d,()=>e.children),C(()=>{de(a,"w-[95vw]",e.large),de(a,"h-[95vh]",e.large),B(l,e.heading)}),Un(3,i,()=>ui,()=>({duration:150})),M(t,i),ft()}Sn(["click"]);function Gt(t,e,r){const n=t.root[r],i=window.SONDA_JSON_REPORT.outputs[t.root.name][r];return Math.round(e[r]*(i/n)*100)/100}class ci{constructor(){J(this,"depth",0);J(this,"tree",[])}process(e){const r=this.getImporters(e);if(!r.length)return;if(r.length===1)return this.addLast(`imported by ${r[0]}`),this.process(r[0]);const n=r.pop();r.forEach(i=>this.add(`imported by ${i}`)),this.addLast(`imported by ${n}`)}getImporters(e){return e?Object.entries(window.SONDA_JSON_REPORT.inputs).filter(([,r])=>r.imports.includes(e)).map(([r])=>r):[]}addLast(e){this.tree.push(" ".repeat(this.depth*4)+"└── "+e),this.depth++}add(e){this.tree.push(" ".repeat(this.depth*4)+"├── "+e)}render(e){const r=window.SONDA_JSON_REPORT.inputs[e];return r.belongsTo&&(this.tree.push(`└── part of the ${r.belongsTo} bundle`),this.depth++,e=r.belongsTo),this.process(e),this.tree.join(`
|
|
2
|
-
`)}}var di=V('<span>File format</span> <span class="font-bold"> </span>',1),vi=V('<span>Approx. GZIP size</span> <span class="font-bold"> </span>',1),hi=V('<span>Approx. Brotli size</span> <span class="font-bold"> </span>',1),_i=V('<p class="mt-8">This file is in the bundle, because it is:</p> <code class="mt-2 p-4 w-max leading-5 bg-slate-200 rounded overflow-auto"><pre> </pre></code>',1),gi=V('<div class="flex flex-col overflow-y-auto"><div class="grid grid-cols-[auto_1fr] gap-x-8"><!> <span>Original file size</span> <span class="font-bold"> </span> <span>Bundled size</span> <span class="font-bold"> </span> <!> <!></div> <!></div>');function pi(t,e){ut(e,!0);let r=Se(e,"file",7);const n=k(()=>r()&&window.SONDA_JSON_REPORT.inputs[r().path]),i=k(()=>Gt(e.activeOutput,r(),"gzip")),s=k(()=>Gt(e.activeOutput,r(),"brotli")),a=k(()=>{var d;if(h(n))return h(n).format.toUpperCase();const u=(d=window.SONDA_JSON_REPORT.inputs[r().path])==null?void 0:d.belongsTo;return u?window.SONDA_JSON_REPORT.inputs[u].format.toUpperCase:"UNKNOWN"}),f=k(()=>h(n)?new ci().render(r().path):null);var o=re(),l=Y(o);rt(l,r,u=>{Er(u,{get heading(){return r().path},onClose:()=>r(null),children:v=>{var c=gi(),_=S(c),p=S(_);rt(p,()=>h(a)!=="UNKNOWN",T=>{var A=di(),G=N(Y(A),2),F=S(G);C(()=>B(F,h(a))),M(T,A)});var m=N(p,4),b=S(m);C(()=>{var T;return B(b,at(((T=h(n))==null?void 0:T.bytes)||0))});var y=N(m,4),g=S(y);C(()=>B(g,at(r().uncompressed)));var w=N(y,2);rt(w,()=>r().gzip>0,T=>{var A=vi(),G=N(Y(A),2),F=S(G);C(()=>B(F,at(h(i)))),M(T,A)});var x=N(w,2);rt(x,()=>r().brotli>0,T=>{var A=hi(),G=N(Y(A),2),F=S(G);C(()=>B(F,at(h(s)))),M(T,A)});var z=N(_,2);rt(z,()=>h(f),T=>{var A=_i(),G=N(Y(A),2),F=S(G),kt=S(F);C(()=>B(kt,h(f))),M(T,A)}),M(v,c)}})}),M(t,o),ft()}var wi=V('<div class="mb-4 grid grid-cols-[auto_1fr] gap-x-8"><span>Bundled size</span> <span class="font-bold"> </span> <span>Approx. GZIP size</span> <span class="font-bold"> </span> <span>Approx. Brotli size</span> <span class="font-bold"> </span></div> <div class="flex-grow overflow-hidden"><!></div>',1);function mi(t,e){ut(e,!0);let r=Se(e,"folder",7),n=R(0),i=R(0);const s=k(()=>Gt(e.activeOutput,r(),"gzip")),a=k(()=>Gt(e.activeOutput,r(),"brotli"));var f=re(),o=Y(f);rt(o,r,l=>{Er(l,{get heading(){return r().path},onClose:()=>r(null),large:!0,children:d=>{var v=wi(),c=Y(v),_=N(S(c),2),p=S(_);C(()=>B(p,at(r().uncompressed)));var m=N(_,4),b=S(m);C(()=>B(b,at(h(s))));var y=N(m,4),g=S(y);C(()=>B(g,at(h(a))));var w=N(c,2),x=S(w);xr(x,{get content(){return r()},get width(){return h(n)},get height(){return h(i)}}),st(w,"clientWidth",z=>E(n,z)),st(w,"clientHeight",z=>E(i,z)),M(d,v)}})}),M(t,f),ft()}var bi=V('<div role="tooltip" class="fixed z-10 px-2 py-1 bg-gray-800 text-gray-100 rounded-md whitespace-nowrap pointer-events-none will-change-transform" style="transform: translate( var(--x), var(--y) )"> </div>');function yi(t,e){ut(e,!0);const r=12;let n=R(0),i=R(0),s=R(0),a=R(0),f=R(0),o=R(0),l=R(""),u=R("0px"),d=R("0px");fn(()=>{h(l)&&(E(u,(h(f)+h(n)+r>h(s)?h(f)-h(n)-r:h(f)+r)+"px"),E(d,(h(o)+h(i)+r>h(a)?h(o)-h(i):h(o)+r)+"px"))});function v({target:p,clientX:m,clientY:b}){E(l,q(p instanceof Element&&p.getAttribute("data-hover")||"")),E(f,q(m)),E(o,q(b))}var c=bi();xt("mouseover",Q.body,v),xt("mousemove",Q.body,v),xt("mouseleave",Q.body,()=>E(l,""));var _=S(c);C(()=>{de(c,"invisible",!h(l)),We(c,"--x",h(u)),We(c,"--y",h(d)),B(_,h(l))}),st(Q.body,"clientWidth",p=>E(s,q(p))),st(Q.body,"clientHeight",p=>E(a,q(p))),st(c,"clientWidth",p=>E(n,p)),st(c,"clientHeight",p=>E(i,p)),M(t,c),ft()}var xi=V('<div role="application" class="wrapper relative flex flex-col overflow-hidden h-screen w-screen"><!> <div class="flex-grow overflow-hidden"><!></div></div> <!> <!> <!>',1);function Ei(t,e){ut(e,!0);const r=ei(window.SONDA_JSON_REPORT);let n=R(0),i=R(0),s=R(null),a=R(null),f=R(0);const o=k(()=>r[h(f)]);function l({target:g}){const w=g instanceof Element&&g.getAttribute("data-tile");if(!w)return;const x=h(o).get(w);if(x)return ct(x)?E(s,q(x)):E(a,q(x))}function u(g){if(g.key==="Escape"){if(g.stopPropagation(),h(a))return E(a,null);if(h(s))return E(s,null)}}var d=xi();xt("click",Q.body,l),xt("keydown",Q.body,u);var v=Y(d),c=S(v);ti(c,{get activeOutputIndex(){return h(f)},set activeOutputIndex(g){E(f,q(g))},outputs:r});var _=N(c,2),p=S(_);xr(p,{get content(){return h(o).root},get width(){return h(n)},get height(){return h(i)}});var m=N(v,2);mi(m,{get folder(){return h(s)},get activeOutput(){return h(o)}});var b=N(m,2);pi(b,{get file(){return h(a)},get activeOutput(){return h(o)}});var y=N(b,2);yi(y,{}),st(_,"clientWidth",g=>E(n,g)),st(_,"clientHeight",g=>E(i,g)),M(t,d),ft()}kn(Ei,{target:document.getElementById("app")});</script><style rel="stylesheet" crossorigin>rect.svelte-ks9kyg:hover{filter:brightness(1.15)}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:after,:before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.bottom-0{bottom:0}.left-0{left:0}.right-0{right:0}.top-0{top:0}.z-10{z-index:10}.mb-4{margin-bottom:1rem}.mr-2{margin-right:.5rem}.mt-2{margin-top:.5rem}.mt-8{margin-top:2rem}.block{display:block}.flex{display:flex}.grid{display:grid}.size-full{width:100%;height:100%}.h-10{height:2.5rem}.h-16{height:4rem}.h-\[95vh\]{height:95vh}.h-full{height:100%}.h-screen{height:100vh}.max-h-\[95vh\]{max-height:95vh}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-\[95vw\]{width:95vw}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.w-screen{width:100vw}.min-w-80{min-width:20rem}.max-w-\[95vw\]{max-width:95vw}.max-w-sm{max-width:24rem}.flex-grow{flex-grow:1}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.cursor-zoom-in{cursor:zoom-in}.grid-cols-\[auto_1fr\]{grid-template-columns:auto 1fr}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px * var(--tw-space-y-reverse))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.border{border-width:1px}.border-b-2{border-bottom-width:2px}.border-dashed{border-style:dashed}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.bg-gray-200\/70{background-color:#e5e7ebb3}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240 / var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.stroke-gray-500{stroke:#6b7280}.p-1{padding:.25rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pr-6{padding-right:1.5rem}.text-center{text-align:center}.align-text-bottom{vertical-align:text-bottom}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-5{line-height:1.25rem}.leading-none{line-height:1}.tracking-tight{letter-spacing:-.025em}.text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39 / var(--tw-text-opacity))}.shadow-lg{--tw-shadow:0 10px 15px -3px rgb(0 0 0 / .1),0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.will-change-transform{will-change:transform}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(17 24 39 / var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-blue-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(147 197 253 / var(--tw-ring-opacity))}</style></head><body class="flex w-screen h-screen font-mono"><div id="app" class="flex w-screen min-h-screen"></div></body></html>
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><link rel="icon" href="data:;base64,iVBORw0KGgo="/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Sonda report</title><link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512' fill='none'%3E%3Cpath fill='%23FACC15' d='M0 0h512v512H0V0Z'/%3E%3Cpath fill='%23000' d='m264.536 203.704-41.984 89.6-21.504-9.728c-20.139-9.216-35.669-21.504-46.592-36.864-10.923-15.36-16.384-37.717-16.384-67.072 0-37.547 9.728-65.536 29.184-83.968 19.797-18.773 52.395-28.33 97.792-28.672 18.773 0 35.84.853 51.2 2.56s27.648 3.584 36.864 5.632l13.824 2.56-10.24 82.432-12.8-1.536c-8.192-1.024-18.432-1.877-30.72-2.56-12.288-1.024-24.235-1.536-35.84-1.536-12.288 0-21.675 1.877-28.16 5.632-6.144 3.413-9.216 10.069-9.216 19.968 0 5.461 2.219 9.899 6.656 13.312 4.437 3.413 10.411 6.827 17.92 10.24Zm-18.432 100.864 42.496-90.624 22.016 9.728c23.211 10.24 40.107 23.04 50.688 38.4 10.581 15.019 15.872 36.523 15.872 64.512 0 37.888-9.899 67.072-29.696 87.552-19.797 20.48-52.395 30.891-97.792 31.232-22.528 0-43.52-1.536-62.976-4.608-19.456-2.731-36.693-5.973-51.712-9.728l10.24-82.432 12.288 2.048c8.533 1.365 19.797 2.731 33.792 4.096 13.995 1.365 29.355 2.048 46.08 2.048 12.971 0 22.699-1.877 29.184-5.632 6.485-3.755 9.728-9.899 9.728-18.432 0-5.803-1.536-10.411-4.608-13.824-3.072-3.413-8.533-6.827-16.384-10.24l-9.216-4.096Z'/%3E%3C/svg%3E"/><script type="module" crossorigin>var Or=Object.defineProperty;var Me=t=>{throw TypeError(t)};var kr=(t,e,r)=>e in t?Or(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r;var Y=(t,e,r)=>kr(t,typeof e!="symbol"?e+"":e,r),ne=(t,e,r)=>e.has(t)||Me("Cannot "+r);var Q=(t,e,r)=>(ne(t,e,"read from private field"),r?r.call(t):e.get(t)),Nt=(t,e,r)=>e.has(t)?Me("Cannot add the same private member more than once"):e instanceof WeakSet?e.add(t):e.set(t,r),ie=(t,e,r,n)=>(ne(t,e,"write to private field"),n?n.call(t,r):e.set(t,r),r),ze=(t,e,r)=>(ne(t,e,"access private method"),r);(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))n(i);new MutationObserver(i=>{for(const s of i)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&n(a)}).observe(document,{childList:!0,subtree:!0});function r(i){const s={};return i.integrity&&(s.integrity=i.integrity),i.referrerPolicy&&(s.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?s.credentials="include":i.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function n(i){if(i.ep)return;i.ep=!0;const s=r(i);fetch(i.href,s)}})();window.SONDA_JSON_REPORT=JSON.parse(String.raw`__REPORT_DATA__`);const Tr=!1;var _e=Array.isArray,ge=Array.from,Nr=Object.defineProperty,mt=Object.getOwnPropertyDescriptor,Ar=Object.prototype,Mr=Array.prototype,zr=Object.getPrototypeOf;function Pr(t){return typeof t=="function"}const At=()=>{};function Lr(t){for(var e=0;e<t.length;e++)t[e]()}const tt=2,Ge=4,Ot=8,pe=16,et=32,Kt=64,ht=128,Ft=256,G=512,ft=1024,It=2048,dt=4096,Ct=8192,Je=16384,Dt=32768,Rr=65536,Ir=1<<18,Ht=1<<19,bt=Symbol("$state"),Cr=Symbol("");function Ye(t){return t===this.v}function Ke(t,e){return t!=t?e==e:t!==e||t!==null&&typeof t=="object"||typeof t=="function"}function we(t){return!Ke(t,this.v)}function Dr(t){throw new Error("effect_in_teardown")}function Br(){throw new Error("effect_in_unowned_derived")}function qr(t){throw new Error("effect_orphan")}function Fr(){throw new Error("effect_update_depth_exceeded")}function Hr(t){throw new Error("props_invalid_value")}function jr(){throw new Error("state_descriptors_fixed")}function Wr(){throw new Error("state_prototype_fixed")}function Ur(){throw new Error("state_unsafe_local_read")}function Vr(){throw new Error("state_unsafe_mutation")}function U(t){return{f:0,v:t,reactions:null,equals:Ye,version:0}}function R(t){return Gr(U(t))}function Ze(t){var r;const e=U(t);return e.equals=we,L!==null&&L.l!==null&&((r=L.l).s??(r.s=[])).push(e),e}function Gr(t){return M!==null&&M.f&tt&&(X===null?_n([t]):X.push(t)),t}function x(t,e){return M!==null&&ue()&&M.f&tt&&(X===null||!X.includes(t))&&Vr(),t.equals(e)||(t.v=e,t.version=fr(),Xe(t,ft),ue()&&O!==null&&O.f&G&&!(O.f&et)&&(I!==null&&I.includes(t)?(Z(O,ft),te(O)):ut===null?gn([t]):ut.push(t))),e}function Xe(t,e){var r=t.reactions;if(r!==null)for(var n=ue(),i=r.length,s=0;s<i;s++){var a=r[s],f=a.f;f&ft||!n&&a===O||(Z(a,e),f&(G|ht)&&(f&tt?Xe(a,It):te(a)))}}const me=1,be=2,Qe=4,Jr=8,Yr=16,Kr=1,Zr=2,Xr=4,Qr=8,$r=16,tn=4,en=1,rn=2,B=Symbol();let $e=!1;function F(t,e=null,r){if(typeof t!="object"||t===null||bt in t)return t;const n=zr(t);if(n!==Ar&&n!==Mr)return t;var i=new Map,s=_e(t),a=U(0);s&&i.set("length",U(t.length));var f;return new Proxy(t,{defineProperty(o,l,u){(!("value"in u)||u.configurable===!1||u.enumerable===!1||u.writable===!1)&&jr();var c=i.get(l);return c===void 0?(c=U(u.value),i.set(l,c)):x(c,F(u.value,f)),!0},deleteProperty(o,l){var u=i.get(l);return u===void 0?l in o&&i.set(l,U(B)):(x(u,B),Pe(a)),!0},get(o,l,u){var _;if(l===bt)return t;var c=i.get(l),v=l in o;if(c===void 0&&(!v||(_=mt(o,l))!=null&&_.writable)&&(c=U(F(v?o[l]:B,f)),i.set(l,c)),c!==void 0){var d=h(c);return d===B?void 0:d}return Reflect.get(o,l,u)},getOwnPropertyDescriptor(o,l){var u=Reflect.getOwnPropertyDescriptor(o,l);if(u&&"value"in u){var c=i.get(l);c&&(u.value=h(c))}else if(u===void 0){var v=i.get(l),d=v==null?void 0:v.v;if(v!==void 0&&d!==B)return{enumerable:!0,configurable:!0,value:d,writable:!0}}return u},has(o,l){var d;if(l===bt)return!0;var u=i.get(l),c=u!==void 0&&u.v!==B||Reflect.has(o,l);if(u!==void 0||O!==null&&(!c||(d=mt(o,l))!=null&&d.writable)){u===void 0&&(u=U(c?F(o[l],f):B),i.set(l,u));var v=h(u);if(v===B)return!1}return c},set(o,l,u,c){var p;var v=i.get(l),d=l in o;if(s&&l==="length")for(var _=u;_<v.v;_+=1){var g=i.get(_+"");g!==void 0?x(g,B):_ in o&&(g=U(B),i.set(_+"",g))}v===void 0?(!d||(p=mt(o,l))!=null&&p.writable)&&(v=U(void 0),x(v,F(u,f)),i.set(l,v)):(d=v.v!==B,x(v,F(u,f)));var b=Reflect.getOwnPropertyDescriptor(o,l);if(b!=null&&b.set&&b.set.call(c,u),!d){if(s&&typeof l=="string"){var y=i.get("length"),w=Number(l);Number.isInteger(w)&&w>=y.v&&x(y,w+1)}Pe(a)}return!0},ownKeys(o){h(a);var l=Reflect.ownKeys(o).filter(v=>{var d=i.get(v);return d===void 0||d.v!==B});for(var[u,c]of i)c.v!==B&&!(u in o)&&l.push(u);return l},setPrototypeOf(){Wr()}})}function Pe(t,e=1){x(t,t.v+e)}function Le(t){return t!==null&&typeof t=="object"&&bt in t?t[bt]:t}function nn(t,e){return Object.is(Le(t),Le(e))}var Re,$,tr,er;function sn(){if(Re===void 0){Re=window,$=document;var t=Element.prototype,e=Node.prototype;tr=mt(e,"firstChild").get,er=mt(e,"nextSibling").get,t.__click=void 0,t.__className="",t.__attributes=null,t.__e=void 0,Text.prototype.__t=void 0}}function ye(t=""){return document.createTextNode(t)}function St(t){return tr.call(t)}function Zt(t){return er.call(t)}function E(t){return St(t)}function V(t,e){{var r=St(t);return r instanceof Comment&&r.data===""?Zt(r):r}}function A(t,e=1,r=!1){let n=t;for(;e--;)n=Zt(n);return n}function an(t){t.textContent=""}function on(t){O===null&&M===null&&qr(),M!==null&&M.f&ht&&Br(),Ee&&Dr()}function ln(t,e){var r=e.last;r===null?e.last=e.first=t:(r.next=t,t.prev=r,e.last=t)}function kt(t,e,r,n=!0){var i=(t&Kt)!==0,s=O,a={ctx:L,deps:null,nodes_start:null,nodes_end:null,f:t|ft,first:null,fn:e,last:null,next:null,parent:i?null:s,prev:null,teardown:null,transitions:null,version:0};if(r){var f=yt;try{Ie(!0),$t(a),a.f|=Je}catch(u){throw gt(a),u}finally{Ie(f)}}else e!==null&&te(a);var o=r&&a.deps===null&&a.first===null&&a.nodes_start===null&&a.teardown===null;if(!o&&!i&&n&&(s!==null&&ln(a,s),M!==null&&M.f&tt)){var l=M;(l.children??(l.children=[])).push(a)}return a}function un(t){const e=kt(Ot,null,!1);return Z(e,G),e.teardown=t,e}function fn(t){on();var e=O!==null&&(O.f&Ot)!==0&&L!==null&&!L.m;if(e){var r=L;(r.e??(r.e=[])).push({fn:t,parent:O})}else{var n=_t(t);return n}}function cn(t){const e=kt(Kt,t,!0);return()=>{gt(e)}}function _t(t){return kt(Ge,t,!1)}function rr(t){return kt(Ot,t,!0)}function C(t){return rr(t)}function Xt(t,e=0){return kt(Ot|pe|e,t,!0)}function vt(t,e=!0){return kt(Ot|et,t,!0,e)}function nr(t){var e=t.teardown;if(e!==null){const r=Ee,n=M;Ce(!0),De(null);try{e.call(null)}finally{Ce(r),De(n)}}}function gt(t,e=!0){var r=!1;if((e||t.f&Ir)&&t.nodes_start!==null){for(var n=t.nodes_start,i=t.nodes_end;n!==null;){var s=n===i?null:Zt(n);n.remove(),n=s}r=!0}dr(t,e&&!r),Lt(t,0),Z(t,Ct);var a=t.transitions;if(a!==null)for(const o of a)o.stop();nr(t);var f=t.parent;f!==null&&f.first!==null&&ir(t),t.next=t.prev=t.teardown=t.ctx=t.deps=t.parent=t.fn=t.nodes_start=t.nodes_end=null}function ir(t){var e=t.parent,r=t.prev,n=t.next;r!==null&&(r.next=n),n!==null&&(n.prev=r),e!==null&&(e.first===t&&(e.first=n),e.last===t&&(e.last=r))}function jt(t,e){var r=[];xe(t,r,!0),sr(r,()=>{gt(t),e&&e()})}function sr(t,e){var r=t.length;if(r>0){var n=()=>--r||e();for(var i of t)i.out(n)}else e()}function xe(t,e,r){if(!(t.f&dt)){if(t.f^=dt,t.transitions!==null)for(const a of t.transitions)(a.is_global||r)&&e.push(a);for(var n=t.first;n!==null;){var i=n.next,s=(n.f&Dt)!==0||(n.f&et)!==0;xe(n,e,s?r:!1),n=i}}}function Wt(t){ar(t,!0)}function ar(t,e){if(t.f&dt){t.f^=dt,Bt(t)&&$t(t);for(var r=t.first;r!==null;){var n=r.next,i=(r.f&Dt)!==0||(r.f&et)!==0;ar(r,i?e:!1),r=n}if(t.transitions!==null)for(const s of t.transitions)(s.is_global||e)&&s.in()}}let ae=!1,oe=[];function dn(){ae=!1;const t=oe.slice();oe=[],Lr(t)}function Qt(t){ae||(ae=!0,queueMicrotask(dn)),oe.push(t)}function T(t){let e=tt|ft;O===null&&(e|=ht);const r={children:null,deps:null,equals:Ye,f:e,fn:t,reactions:null,v:null,version:0};if(M!==null&&M.f&tt){var n=M;(n.children??(n.children=[])).push(r)}return r}function vn(t){const e=T(t);return e.equals=we,e}function or(t){var e=t.children;if(e!==null){t.children=null;for(var r=0;r<e.length;r+=1){var n=e[r];n.f&tt?hn(n):gt(n)}}}function lr(t){var e;or(t),e=cr(t);var r=(wt||t.f&ht)&&t.deps!==null?It:G;Z(t,r),t.equals(e)||(t.v=e,t.version=fr())}function hn(t){or(t),Lt(t,0),Z(t,Ct),t.children=t.deps=t.reactions=t.fn=null}let Ut=!1,yt=!1,Ee=!1;function Ie(t){yt=t}function Ce(t){Ee=t}let le=[],zt=0;let M=null;function De(t){M=t}let O=null;function Be(t){O=t}let X=null;function _n(t){X=t}let I=null,j=0,ut=null;function gn(t){ut=t}let ur=0,wt=!1,L=null;function fr(){return++ur}function ue(){return L!==null&&L.l===null}function Bt(t){var a,f;var e=t.f;if(e&ft)return!0;if(e&It){var r=t.deps,n=(e&ht)!==0;if(r!==null){var i;if(e&Ft){for(i=0;i<r.length;i++)((a=r[i]).reactions??(a.reactions=[])).push(t);t.f^=Ft}for(i=0;i<r.length;i++){var s=r[i];if(Bt(s)&&lr(s),n&&O!==null&&!wt&&!((f=s==null?void 0:s.reactions)!=null&&f.includes(t))&&(s.reactions??(s.reactions=[])).push(t),s.version>t.version)return!0}}n||Z(t,G)}return!1}function pn(t,e,r){throw t}function cr(t){var u;var e=I,r=j,n=ut,i=M,s=wt,a=X;I=null,j=0,ut=null,M=t.f&(et|Kt)?null:t,wt=!yt&&(t.f&ht)!==0,X=null;try{var f=(0,t.fn)(),o=t.deps;if(I!==null){var l;if(Lt(t,j),o!==null&&j>0)for(o.length=j+I.length,l=0;l<I.length;l++)o[j+l]=I[l];else t.deps=o=I;if(!wt)for(l=j;l<o.length;l++)((u=o[l]).reactions??(u.reactions=[])).push(t)}else o!==null&&j<o.length&&(Lt(t,j),o.length=j);return f}finally{I=e,j=r,ut=n,M=i,wt=s,X=a}}function wn(t,e){let r=e.reactions;if(r!==null){var n=r.indexOf(t);if(n!==-1){var i=r.length-1;i===0?r=e.reactions=null:(r[n]=r[i],r.pop())}}r===null&&e.f&tt&&(I===null||!I.includes(e))&&(Z(e,It),e.f&(ht|Ft)||(e.f^=Ft),Lt(e,0))}function Lt(t,e){var r=t.deps;if(r!==null)for(var n=e;n<r.length;n++)wn(t,r[n])}function dr(t,e=!1){var r=t.first;for(t.first=t.last=null;r!==null;){var n=r.next;gt(r,e),r=n}}function $t(t){var e=t.f;if(!(e&Ct)){Z(t,G);var r=O,n=L;O=t,L=t.ctx;try{e&pe||dr(t),nr(t);var i=cr(t);t.teardown=typeof i=="function"?i:null,t.version=ur}catch(s){pn(s)}finally{O=r,L=n}}}function mn(){zt>1e3&&(zt=0,Fr()),zt++}function bn(t){var e=t.length;if(e!==0){mn();var r=yt;yt=!0;try{for(var n=0;n<e;n++){var i=t[n];if(i.f&Ht&&(i.f^=Ht),i.first===null&&!(i.f&et))qe([i]);else{var s=[];vr(i,s),qe(s)}}}finally{yt=r}}}function qe(t){var e=t.length;if(e!==0)for(var r=0;r<e;r++){var n=t[r];!(n.f&(Ct|dt))&&Bt(n)&&($t(n),n.deps===null&&n.first===null&&n.nodes_start===null&&(n.teardown===null?ir(n):n.fn=null))}}function yn(){if(Ut=!1,zt>1001)return;const t=le;le=[],bn(t),Ut||(zt=0)}function te(t){Ut||(Ut=!0,queueMicrotask(yn));for(var e=t;e.parent!==null;){e=e.parent;var r=e.f;if(r&et){if(!(r&G))return;e.f^=G}if(r&Kt){if(r&Ht)return;e.f^=Ht}}le.push(e)}function vr(t,e){var r=t.first,n=[];t:for(;r!==null;){var i=r.f,s=(i&dt)===0,a=(i&et)!==0,f=(i&G)!==0,o=r.first;if(s&&(!a||!f))if(a&&Z(r,G),i&Ot){if(!a&&Bt(r)&&$t(r),o=r.first,o!==null){r=o;continue}}else i&Ge&&n.push(r);var l=r.next;if(l===null){let v=r.parent;for(;v!==null;){if(t===v)break t;var u=v.next;if(u!==null){r=u;continue t}v=v.parent}}r=l}for(var c=0;c<n.length;c++)o=n[c],e.push(o),vr(o,e)}function h(t){var e=t.f;if(e&Ct)return t.v;if(M!==null){X!==null&&X.includes(t)&&Ur();var r=M.deps;I===null&&r!==null&&r[j]===t?j++:I===null?I=[t]:I.push(t),ut!==null&&O!==null&&O.f&G&&!(O.f&et)&&ut.includes(t)&&(Z(O,ft),te(O))}if(e&tt){var n=t;Bt(n)&&lr(n)}return t.v}function ee(t){const e=M;try{return M=null,t()}finally{M=e}}const xn=~(ft|It|G);function Z(t,e){t.f=t.f&xn|e}function rt(t,e=!1,r){L={p:L,c:null,e:null,m:!1,s:t,x:null,l:null},e||(L.l={s:null,u:null,r1:[],r2:U(!1)})}function nt(t){const e=L;if(e!==null){const s=e.e;if(s!==null){var r=O;e.e=null;try{for(var n=0;n<s.length;n++){var i=s[n];Be(i.parent),_t(i.fn)}}finally{Be(r)}}L=e.p,e.m=!0}return{}}const hr=new Set,fe=new Set;function En(t,e,r,n){function i(s){if(n.capture||Mt.call(e,s),!s.cancelBubble)return r.call(this,s)}return t.startsWith("pointer")||t.startsWith("touch")||t==="wheel"?Qt(()=>{e.addEventListener(t,i,n)}):e.addEventListener(t,i,n),i}function xt(t,e,r,n,i){var s={capture:n,passive:i},a=En(t,e,r,s);(e===document.body||e===window||e===document)&&un(()=>{e.removeEventListener(t,a,s)})}function Sn(t){for(var e=0;e<t.length;e++)hr.add(t[e]);for(var r of fe)r(t)}function Mt(t){var b;var e=this,r=e.ownerDocument,n=t.type,i=((b=t.composedPath)==null?void 0:b.call(t))||[],s=i[0]||t.target,a=0,f=t.__root;if(f){var o=i.indexOf(f);if(o!==-1&&(e===document||e===window)){t.__root=e;return}var l=i.indexOf(e);if(l===-1)return;o<=l&&(a=o)}if(s=i[a]||t.target,s!==e){Nr(t,"currentTarget",{configurable:!0,get(){return s||r}});try{for(var u,c=[];s!==null;){var v=s.assignedSlot||s.parentNode||s.host||null;try{var d=s["__"+n];if(d!==void 0&&!s.disabled)if(_e(d)){var[_,...g]=d;_.apply(s,[t,...g])}else d.call(s,t)}catch(y){u?c.push(y):u=y}if(t.cancelBubble||v===e||v===null)break;s=v}if(u){for(let y of c)queueMicrotask(()=>{throw y});throw u}}finally{t.__root=e,delete t.currentTarget}}}function _r(t){var e=document.createElement("template");return e.innerHTML=t,e.content}function Vt(t,e){var r=O;r.nodes_start===null&&(r.nodes_start=t,r.nodes_end=e)}function D(t,e){var r=(e&en)!==0,n=(e&rn)!==0,i,s=!t.startsWith("<!>");return()=>{i===void 0&&(i=_r(s?t:"<!>"+t),r||(i=St(i)));var a=n?document.importNode(i,!0):i.cloneNode(!0);if(r){var f=St(a),o=a.lastChild;Vt(f,o)}else Vt(a,a);return a}}function gr(t,e,r="svg"){var n=!t.startsWith("<!>"),i=`<${r}>${n?t:"<!>"+t}</${r}>`,s;return()=>{if(!s){var a=_r(i),f=St(a);s=St(f)}var o=s.cloneNode(!0);return Vt(o,o),o}}function re(){var t=document.createDocumentFragment(),e=document.createComment(""),r=ye();return t.append(e,r),Vt(e,r),t}function P(t,e){t!==null&&t.before(e)}const On=["wheel","mousewheel","touchstart","touchmove"];function kn(t){return On.includes(t)}let ce=!0;function q(t,e){e!==(t.__t??(t.__t=t.nodeValue))&&(t.__t=e,t.nodeValue=e==null?"":e+"")}function Tn(t,e){const r=e.anchor??e.target.appendChild(ye());return Nn(t,{...e,anchor:r})}const pt=new Map;function Nn(t,{target:e,anchor:r,props:n={},events:i,context:s,intro:a=!0}){sn();var f=new Set,o=c=>{for(var v=0;v<c.length;v++){var d=c[v];if(!f.has(d)){f.add(d);var _=kn(d);e.addEventListener(d,Mt,{passive:_});var g=pt.get(d);g===void 0?(document.addEventListener(d,Mt,{passive:_}),pt.set(d,1)):pt.set(d,g+1)}}};o(ge(hr)),fe.add(o);var l=void 0,u=cn(()=>(vt(()=>{if(s){rt({});var c=L;c.c=s}i&&(n.$$events=i),ce=a,l=t(r,n)||{},ce=!0,s&&nt()}),()=>{for(var c of f){e.removeEventListener(c,Mt);var v=pt.get(c);--v===0?(document.removeEventListener(c,Mt),pt.delete(c)):pt.set(c,v)}fe.delete(o),Fe.delete(l)}));return Fe.set(l,u),l}let Fe=new WeakMap;function K(t,e,r,n=null,i=!1){var s=t,a=null,f=null,o=null,l=i?Dt:0;Xt(()=>{o!==(o=!!e())&&(o?(a?Wt(a):a=vt(()=>r(s)),f&&jt(f,()=>{f=null})):(f?Wt(f):n&&(f=vt(()=>n(s))),a&&jt(a,()=>{a=null})))},l)}function An(t,e,r){var n=t,i=B,s;Xt(()=>{Ke(i,i=e())&&(s&&jt(s),s=vt(()=>r(n)))})}let se=null;function Mn(t,e){return e}function zn(t,e,r,n){for(var i=[],s=e.length,a=0;a<s;a++)xe(e[a].e,i,!0);var f=s>0&&i.length===0&&r!==null;if(f){var o=r.parentNode;an(o),o.append(r),n.clear(),it(t,e[0].prev,e[s-1].next)}sr(i,()=>{for(var l=0;l<s;l++){var u=e[l];f||(n.delete(u.k),it(t,u.prev,u.next)),gt(u.e,!f)}})}function pr(t,e,r,n,i,s=null){var a=t,f={flags:e,items:new Map,first:null},o=(e&Qe)!==0;if(o){var l=t;a=l.appendChild(ye())}var u=null;Xt(()=>{var c=r(),v=_e(c)?c:c==null?[]:ge(c),d=v.length;Pn(v,f,a,i,e,n),s!==null&&(d===0?u?Wt(u):u=vt(()=>s(a)):u!==null&&jt(u,()=>{u=null}))})}function Pn(t,e,r,n,i,s){var Oe,ke,Te,Ne;var a=(i&Jr)!==0,f=(i&(me|be))!==0,o=t.length,l=e.items,u=e.first,c=u,v,d=null,_,g=[],b=[],y,w,p,m;if(a)for(m=0;m<o;m+=1)y=t[m],w=s(y,m),p=l.get(w),p!==void 0&&((Oe=p.a)==null||Oe.measure(),(_??(_=new Set)).add(p));for(m=0;m<o;m+=1){if(y=t[m],w=s(y,m),p=l.get(w),p===void 0){var S=c?c.e.nodes_start:r;d=Rn(S,e,d,d===null?e.first:d.next,y,w,m,n,i),l.set(w,d),g=[],b=[],c=d.next;continue}if(f&&Ln(p,y,m,i),p.e.f&dt&&(Wt(p.e),a&&((ke=p.a)==null||ke.unfix(),(_??(_=new Set)).delete(p))),p!==c){if(v!==void 0&&v.has(p)){if(g.length<b.length){var z=b[0],k;d=z.prev;var N=g[0],J=g[g.length-1];for(k=0;k<g.length;k+=1)He(g[k],z,r);for(k=0;k<b.length;k+=1)v.delete(b[k]);it(e,N.prev,J.next),it(e,d,N),it(e,J,z),c=z,d=J,m-=1,g=[],b=[]}else v.delete(p),He(p,c,r),it(e,p.prev,p.next),it(e,p,d===null?e.first:d.next),it(e,d,p),d=p;continue}for(g=[],b=[];c!==null&&c.k!==w;)(v??(v=new Set)).add(c),b.push(c),c=c.next;if(c===null)continue;p=c}g.push(p),d=p,c=p.next}if(c!==null||v!==void 0){for(var H=v===void 0?[]:ge(v);c!==null;)H.push(c),c=c.next;var Tt=H.length;if(Tt>0){var Sr=i&Qe&&o===0?r:null;if(a){for(m=0;m<Tt;m+=1)(Te=H[m].a)==null||Te.measure();for(m=0;m<Tt;m+=1)(Ne=H[m].a)==null||Ne.fix()}zn(e,H,Sr,l)}}a&&Qt(()=>{var Ae;if(_!==void 0)for(p of _)(Ae=p.a)==null||Ae.apply()}),O.first=e.first&&e.first.e,O.last=d&&d.e}function Ln(t,e,r,n){n&me&&x(t.v,e),n&be?x(t.i,r):t.i=r}function Rn(t,e,r,n,i,s,a,f,o){var l=se;try{var u=(o&me)!==0,c=(o&Yr)===0,v=u?c?Ze(i):U(i):i,d=o&be?U(a):a,_={i:d,v,k:s,a:null,e:null,prev:r,next:n};return se=_,_.e=vt(()=>f(t,v,d),$e),_.e.prev=r&&r.e,_.e.next=n&&n.e,r===null?e.first=_:(r.next=_,r.e.next=_.e),n!==null&&(n.prev=_,n.e.prev=_.e),_}finally{se=l}}function He(t,e,r){for(var n=t.next?t.next.e.nodes_start:r,i=e?e.e.nodes_start:r,s=t.e.nodes_start;s!==n;){var a=Zt(s);i.before(s),s=a}}function it(t,e,r){e===null?t.first=r:(e.next=r,e.e.next=r&&r.e),r!==null&&(r.prev=e,r.e.prev=e&&e.e)}function In(t,e,...r){var n=t,i=At,s;Xt(()=>{i!==(i=e())&&(s&&(gt(s),s=null),s=vt(()=>i(n,...r)))},Dt)}let je=!1;function Cn(){je||(je=!0,document.addEventListener("reset",t=>{Promise.resolve().then(()=>{var e;if(!t.defaultPrevented)for(const r of t.target.elements)(e=r.__on_r)==null||e.call(r)})},{capture:!0}))}function W(t,e,r,n){r=r==null?null:r+"";var i=t.__attributes??(t.__attributes={});i[e]!==(i[e]=r)&&(e==="loading"&&(t[Cr]=r),r===null?t.removeAttribute(e):t.setAttribute(e,r))}function Dn(t,e){var r=t.__className,n=Bn(e);(r!==n||$e)&&(n===""?t.removeAttribute("class"):t.setAttribute("class",n),t.__className=n)}function Bn(t){return t??""}function de(t,e,r){if(r){if(t.classList.contains(e))return;t.classList.add(e)}else{if(!t.classList.contains(e))return;t.classList.remove(e)}}function We(t,e,r,n,i){var s=t.__attributes??(t.__attributes={}),a=t.style,f="style-"+e;s[f]===r&&a.getPropertyValue(e)===r||(s[f]=r,r==null?a.removeProperty(e):a.setProperty(e,r,""))}const qn=requestAnimationFrame,Fn=()=>performance.now(),at={tick:t=>qn(t),now:()=>Fn(),tasks:new Set};function wr(t){at.tasks.forEach(e=>{e.c(t)||(at.tasks.delete(e),e.f())}),at.tasks.size!==0&&at.tick(wr)}function Hn(t){let e;return at.tasks.size===0&&at.tick(wr),{promise:new Promise(r=>{at.tasks.add(e={c:t,f:r})}),abort(){at.tasks.delete(e)}}}function qt(t,e){t.dispatchEvent(new CustomEvent(e))}function jn(t){const e=t.split("-");return e.length===1?e[0]:e[0]+e.slice(1).map(r=>r[0].toUpperCase()+r.slice(1)).join("")}function Ue(t){const e={},r=t.split(";");for(const n of r){const[i,s]=n.split(":");if(!i||s===void 0)break;const a=jn(i.trim());e[a]=s.trim()}return e}const Wn=t=>t;function Un(t,e,r,n){var i=(t&tn)!==0,s="both",a,f=e.inert,o,l;function u(){return a??(a=r()(e,(n==null?void 0:n())??{},{direction:s}))}var c={is_global:i,in(){e.inert=f,qt(e,"introstart"),o=ve(e,u(),l,1,()=>{qt(e,"introend"),o==null||o.abort(),o=a=void 0})},out(g){e.inert=!0,qt(e,"outrostart"),l=ve(e,u(),o,0,()=>{qt(e,"outroend"),g==null||g()})},stop:()=>{o==null||o.abort(),l==null||l.abort()}},v=O;if((v.transitions??(v.transitions=[])).push(c),ce){var d=i;if(!d){for(var _=v.parent;_&&_.f&Dt;)for(;(_=_.parent)&&!(_.f&pe););d=!_||(_.f&Je)!==0}d&&_t(()=>{ee(()=>c.in())})}}function ve(t,e,r,n,i){var s=n===1;if(Pr(e)){var a,f=!1;return Qt(()=>{if(!f){var b=e({direction:s?"in":"out"});a=ve(t,b,r,n,i)}}),{abort:()=>{f=!0,a==null||a.abort()},deactivate:()=>a.deactivate(),reset:()=>a.reset(),t:()=>a.t()}}if(r==null||r.deactivate(),!(e!=null&&e.duration))return i(),{abort:At,deactivate:At,reset:At,t:()=>n};const{delay:o=0,css:l,tick:u,easing:c=Wn}=e;var v=[];if(s&&r===void 0&&(u&&u(0,1),l)){var d=Ue(l(0,1));v.push(d,d)}var _=()=>1-n,g=t.animate(v,{duration:o});return g.onfinish=()=>{var b=(r==null?void 0:r.t())??1-n;r==null||r.abort();var y=n-b,w=e.duration*Math.abs(y),p=[];if(w>0){if(l)for(var m=Math.ceil(w/16.666666666666668),S=0;S<=m;S+=1){var z=b+y*c(S/m),k=l(z,1-z);p.push(Ue(k))}_=()=>{var N=g.currentTime;return b+y*c(N/w)},u&&Hn(()=>{if(g.playState!=="running")return!1;var N=_();return u(N,1-N),!0})}g=t.animate(p,{duration:w,fill:"forwards"}),g.onfinish=()=>{_=()=>n,u==null||u(n,1-n),i()}},{abort:()=>{g&&(g.cancel(),g.effect=null)},deactivate:()=>{i=At},reset:()=>{n===0&&(u==null||u(1,0))},t:()=>_()}}function Vn(t,e,r,n=r){t.addEventListener(e,r);const i=t.__on_r;i?t.__on_r=()=>{i(),n()}:t.__on_r=n,Cn()}function mr(t,e,r){if(t.multiple)return Yn(t,e);for(var n of t.options){var i=Pt(n);if(nn(i,e)){n.selected=!0;return}}(!r||e!==void 0)&&(t.selectedIndex=-1)}function Gn(t,e){_t(()=>{var r=new MutationObserver(()=>{var n=t.__value;mr(t,n)});return r.observe(t,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["value"]}),()=>{r.disconnect()}})}function Jn(t,e,r=e){var n=!0;Vn(t,"change",()=>{var i;if(t.multiple)i=[].map.call(t.querySelectorAll(":checked"),Pt);else{var s=t.querySelector(":checked");i=s&&Pt(s)}r(i)}),_t(()=>{var i=e();if(mr(t,i,n),n&&i===void 0){var s=t.querySelector(":checked");s!==null&&(i=Pt(s),r(i))}t.__value=i,n=!1}),Gn(t)}function Yn(t,e){for(var r of t.options)r.selected=~e.indexOf(Pt(r))}function Pt(t){return"__value"in t?t.__value:t.value}var st,Et,Rt,Jt,br;const Yt=class Yt{constructor(e){Nt(this,Jt);Nt(this,st,new WeakMap);Nt(this,Et);Nt(this,Rt);ie(this,Rt,e)}observe(e,r){var n=Q(this,st).get(e)||new Set;return n.add(r),Q(this,st).set(e,n),ze(this,Jt,br).call(this).observe(e,Q(this,Rt)),()=>{var i=Q(this,st).get(e);i.delete(r),i.size===0&&(Q(this,st).delete(e),Q(this,Et).unobserve(e))}}};st=new WeakMap,Et=new WeakMap,Rt=new WeakMap,Jt=new WeakSet,br=function(){return Q(this,Et)??ie(this,Et,new ResizeObserver(e=>{for(var r of e){Yt.entries.set(r.target,r);for(var n of Q(this,st).get(r.target)||[])n(r)}}))},Y(Yt,"entries",new WeakMap);let he=Yt;var Kn=new he({box:"border-box"});function ot(t,e,r){var n=Kn.observe(t,()=>r(t[e]));_t(()=>(ee(()=>r(t[e])),n))}function Ve(t,e){return t===e||(t==null?void 0:t[bt])===e}function Zn(t={},e,r,n){return _t(()=>{var i,s;return rr(()=>{i=s,s=[],ee(()=>{t!==r(...s)&&(e(t,...s),i&&Ve(r(...i),t)&&e(null,...i))})}),()=>{Qt(()=>{s&&Ve(r(...s),t)&&e(null,...s)})}}),t}function Se(t,e,r,n){var m;var i=(r&Kr)!==0,s=(r&Zr)!==0,a=(r&Qr)!==0,f=(r&$r)!==0,o=t[e],l=(m=mt(t,e))==null?void 0:m.set,u=n,c=!0,v=!1,d=()=>(v=!0,c&&(c=!1,f?u=ee(n):u=n),u);o===void 0&&n!==void 0&&(l&&s&&Hr(),o=d(),l&&l(o));var _;if(s)_=()=>{var S=t[e];return S===void 0?d():(c=!0,v=!1,S)};else{var g=(i?T:vn)(()=>t[e]);g.f|=Rr,_=()=>{var S=h(g);return S!==void 0&&(u=void 0),S===void 0?u:S}}if(!(r&Xr))return _;if(l){var b=t.$$legacy;return function(S,z){return arguments.length>0?((!s||!z||b)&&l(z?_():S),S):_()}}var y=!1,w=Ze(o),p=T(()=>{var S=_(),z=h(w);return y?(y=!1,z):w.v=S});return i||(p.equals=we),function(S,z){var k=h(p);if(arguments.length>0){const N=z?h(p):s&&a?F(S):S;return p.equals(N)||(y=!0,x(w,N),v&&u!==void 0&&(u=N),h(p)),S}return k}}const Xn="5";typeof window<"u"&&(window.__svelte||(window.__svelte={v:new Set})).v.add(Xn);var Qn=D("<option> </option>"),$n=D('<select class="text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-1 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 h-10 min-w-80"></select>'),ti=D('<div class="flex flex-row p-4 items-center space-y-0 h-16 justify-end space-x-2 bg-gray-50 shadow"><div class="flex items-center justify-center space-x-2 max-w-sm"><!></div> <button aria-label="Details of the entire build output" class="text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-1 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 h-10"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-gray-900"><path d="M0 0h24v24H0z" stroke="none" shape-rendering="geometricPrecision"></path><path d="M8 5H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5.697M18 12V7a2 2 0 0 0-2-2h-2" shape-rendering="geometricPrecision"></path><path d="M8 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2zM8 11h4M8 15h3M14 17.5a2.5 2.5 0 1 0 5 0 2.5 2.5 0 1 0-5 0M18.5 19.5 21 22" shape-rendering="geometricPrecision"></path></svg></button> <a href="https://github.com/filipsobol/sonda" target="_blank" aria-label="GitHub repository" class="flex items-center text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-1 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 h-10"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-gray-900"><path d="M0 0h24v24H0z" stroke="none" shape-rendering="geometricPrecision"></path><path d="M9 19c-4.3 1.4-4.3-2.5-6-3m12 5v-3.5c0-1 .1-1.4-.5-2 2.8-.3 5.5-1.4 5.5-6a4.6 4.6 0 0 0-1.3-3.2 4.2 4.2 0 0 0-.1-3.2s-1.1-.3-3.5 1.3a12.3 12.3 0 0 0-6.2 0C6.5 2.8 5.4 3.1 5.4 3.1a4.2 4.2 0 0 0-.1 3.2A4.6 4.6 0 0 0 4 9.5c0 4.6 2.7 5.7 5.5 6-.6.6-.6 1.2-.5 2V21" shape-rendering="geometricPrecision"></path></svg></a></div>');function ei(t,e){rt(e,!0);let r=Se(e,"activeOutputIndex",15);var n=ti(),i=E(n),s=E(i);K(s,()=>e.outputs.length>0,a=>{var f=$n();pr(f,21,()=>e.outputs,Mn,(o,l,u)=>{var c=Qn();c.value=(c.__value=u)==null?"":u;var v=E(c);C(()=>q(v,`${u+1}. ${h(l).root.name??""}`)),P(o,c)}),Jn(f,r),P(a,f)}),P(t,n),nt()}function lt(t){const r=["b","KiB","MiB","GiB","TiB","PiB"];let n=t,i=0;for(;n>1024&&r.length>i+1;)n=n/1024,i++;return`${i?n.toFixed(2):n} ${r[i]}`}function ri(t){return Object.entries(t.outputs).map(([e,r])=>{const n=new ni;return Object.entries(r.inputs).forEach(([i,s])=>n.insert(i,s)),n.root.items.push({name:"[unassigned]",path:"[unassigned]",uncompressed:r.uncompressed-n.root.uncompressed,gzip:r.gzip-n.root.gzip,brotli:r.brotli-n.root.brotli}),n.root.name=e,n.root.uncompressed=r.uncompressed,n.root.gzip=r.gzip,n.root.brotli=r.brotli,n.optimize(),n})}function ct(t){return"items"in t}class ni{constructor(){Y(this,"root");this.root=this.createNode("","")}createNode(e,r){return{name:e,path:r,uncompressed:0,gzip:0,brotli:0,items:[]}}insert(e,r){const n=e.split("/"),i=n.pop();let s=this.root;n.forEach(a=>{let f=s.items.find(o=>ct(o)&&o.name===a);f||(f=this.createNode(a,s.path?`${s.path}/${a}`:a),s.items.push(f)),s=f,s.uncompressed+=r.uncompressed,s.gzip+=r.gzip,s.brotli+=r.brotli}),s.items.push({name:i,path:`${s.path}/${i}`,uncompressed:r.uncompressed,gzip:r.gzip,brotli:r.brotli}),this.root.uncompressed+=r.uncompressed,this.root.gzip+=r.gzip,this.root.brotli+=r.brotli}optimize(){const e=[this.root];for(;e.length;){const r=e.pop();for(;r.items.length===1&&ct(r.items[0]);){const n=r.items[0];r.name=`${r.name}/${n.name}`,r.path=n.path,r.items=n.items}r.items.sort((n,i)=>i.uncompressed-n.uncompressed),r.items.forEach(n=>ct(n)&&e.push(n))}}get(e){let r=this.root;for(;r&&r.path!==e;)r=ct(r)&&r.items.find(n=>e.startsWith(n.path))||null;return r}}var ii=D('<span class="text-gray-900"> </span> <span class="text-gray-600"> </span>',1),si=gr('<g><rect shape-rendering="crispEdges" vector-effect="non-scaling-stroke"></rect><foreignObject class="pointer-events-none"><p xmlns="http://www.w3.org/1999/xhtml" class="p-1 size-full text-center text-xs truncate"><!></p></foreignObject><!></g>');function ai(t,e){rt(e,!0);const r=20,n=6,i=22,s=T(()=>e.tile.width-n*2),a=T(()=>e.tile.height-n-i),f=T(()=>lt(e.content.uncompressed)),o=T(()=>Math.min(e.content.uncompressed/e.totalBytes*100,100).toFixed(2)),l=T(()=>`color-mix(in oklch, #fca5a5 ${h(o)}%, #86efac)`),u=T(()=>e.tile.width>=i*1.75&&e.tile.height>=i),c=T(()=>!ct(e.content)||h(a)<=r||h(s)<=r?[]:e.content.items);var v=si(),d=E(v);C(()=>Dn(d,`stroke-gray-500 ${(ct(e.content)?"cursor-zoom-in":"cursor-pointer")??""} svelte-ks9kyg`));var _=A(d),g=E(_),b=E(g);K(b,()=>h(u),w=>{var p=ii(),m=V(p),S=E(m),z=A(m,2),k=E(z);C(()=>{q(S,e.content.name),q(k,`- ${h(f)??""}`)}),P(w,p)});var y=A(_);K(y,()=>h(c).length,w=>{var p=T(()=>e.tile.x+n),m=T(()=>e.tile.y+i);yr(w,{get content(){return h(c)},get totalBytes(){return e.totalBytes},get width(){return h(s)},get height(){return h(a)},get xStart(){return h(p)},get yStart(){return h(m)}})}),C(()=>{W(d,"data-tile",e.content.path),W(d,"data-hover",`${e.content.name} - ${h(f)} (${h(o)}%)`),W(d,"x",e.tile.x),W(d,"y",e.tile.y),W(d,"width",e.tile.width),W(d,"height",e.tile.height),W(d,"fill",h(l)),W(_,"x",e.tile.x),W(_,"y",e.tile.y),W(_,"width",e.tile.width),W(_,"height",e.tile.height)}),P(t,v),nt()}class oi{constructor(e,r,n,i=0,s=0){Y(this,"sizes");Y(this,"tiles");Y(this,"xStart");Y(this,"yStart");Y(this,"widthLeft");Y(this,"heightLeft");const a=e.reduce((o,l)=>o+l,0),f=n*r/a;this.sizes=new Float32Array(e.length);for(let o=0;o<e.length;o++)this.sizes[o]=e[o]*f;this.tiles=new Array,this.xStart=i,this.yStart=s,this.widthLeft=r,this.heightLeft=n}layout(e,r,n,i,s){let a=i?this.yStart:this.xStart,f;const o=this.sizes,l=this.tiles;for(let u=e;u<=r;u++)f=o[u]/n,i?l.push({x:this.xStart,y:a,width:n,height:f}):l.push({x:a,y:this.yStart,width:f,height:n}),a+=f,s++;return i?(this.xStart+=n,this.widthLeft-=n):(this.yStart+=n,this.heightLeft-=n),s}calculate(){let e=this.heightLeft<this.widthLeft,r=e?this.heightLeft:this.widthLeft,n=r*r,i=0,s=0,a=this.sizes[0],f=this.sizes[0],o=this.sizes[0],l=0,u=a*a,c=Math.max(n*o/u,u/(n*f));for(let v=1;v<this.sizes.length;v++){const d=this.sizes[v],_=a+d,g=f<d?f:d,b=o>d?o:d,y=_*_,w=Math.max(n*b/y,y/(n*g));(c<=w?1:0)?(l=this.layout(i,s,a/r,e,l),e=this.heightLeft<this.widthLeft,r=e?this.heightLeft:this.widthLeft,n=r*r,i=v,s=v,a=d,f=d,o=d,u=d*d,c=Math.max(n*o/u,u/(n*f))):(s=v,a=_,f=g,o=b,u=y,c=w)}return l=this.layout(i,s,a/r,e,l),this.tiles}}function yr(t,e){const r=T(()=>Array.isArray(e.content)?Object.values(e.content):[e.content]),n=T(()=>new oi(h(r).map(f=>f.uncompressed),e.width,e.height,e.xStart,e.yStart).calculate());var i=re(),s=V(i);pr(s,18,()=>h(n),a=>a,(a,f,o)=>{ai(a,{get tile(){return f},get content(){return h(r)[h(o)]},get totalBytes(){return e.totalBytes}})}),P(t,i)}var li=gr('<svg xmlns="http://www.w3.org/2000/svg" role="img"><!></svg>');function xr(t,e){rt(e,!0);var r=re(),n=V(r);An(n,()=>[e.content.path,e.width,e.height],i=>{var s=li(),a=E(s),f=T(()=>e.width-1),o=T(()=>e.height-1);yr(a,{get content(){return e.content},get totalBytes(){return e.content.uncompressed},get width(){return h(f)},get height(){return h(o)},xStart:.5,yStart:.5}),C(()=>{W(s,"width",e.width),W(s,"height",e.height)}),P(i,s)}),P(t,r),nt()}var ui=D('<div class="flex-grow flex flex-col mt-24 items-center w-full h-full"><svg xmlns="http://www.w3.org/2000/svg" width="96" height="96" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="text-yellow-400 fill-yellow-100"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"></path><path d="M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"></path><path d="M8.5 11.5l1.5 -1.5l-1.5 -1.5"></path><path d="M15.5 11.5l-1.5 -1.5l1.5 -1.5"></path></svg> <h2 class="mt-8 text-3xl font-semibold text-gray-800">No data to display</h2> <p class="mt-4 text-lg text-gray-500">Did you enable source maps in the bundler configuration?</p></div>');function fi(t){var e=ui();P(t,e)}const ci=t=>t;function di(t,{delay:e=0,duration:r=400,easing:n=ci}={}){const i=+getComputedStyle(t).opacity;return{delay:e,duration:r,easing:n,css:s=>`opacity: ${s*i}`}}var vi=D('<div class="fixed top-0 right-0 left-0 bottom-0 flex justify-center items-center"><div class="fixed bg-gray-200/70 w-full h-full backdrop-blur-sm" aria-hidden="true"></div> <div class="bg-white relative flex flex-col rounded-lg border p-6 shadow-lg overflow-hidden max-h-[95vh] max-w-[95vw]"><div class="mb-4"><h2 class="py-2 pr-6 block align-text-bottom font-semibold leading-none tracking-tight text-base border-b-2 border-gray-300 border-dashed"> </h2> <button aria-label="Close dialog" class="absolute top-0 right-0 mt-2 mr-2 flex justify-center items-center border border-transparent rounded-full w-10 h-10 text-gray-600 hover:text-gray-900"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M0 0h24v24H0z" stroke="none"></path><path d="M18 6 6 18M6 6l12 12"></path></svg></button></div> <!></div></div>');function Er(t,e){rt(e,!0);let r=R(void 0);function n(v){e.onClose&&v.target===h(r)&&e.onClose()}var i=vi();xt("click",$.body,n);var s=E(i);Zn(s,v=>x(r,v),()=>h(r));var a=A(s,2),f=E(a),o=E(f),l=E(o),u=A(o,2);u.__click=function(...v){var d;(d=e.onClose)==null||d.apply(this,v)};var c=A(f,2);In(c,()=>e.children),C(()=>{de(a,"w-[95vw]",e.large),de(a,"h-[95vh]",e.large),q(l,e.heading)}),Un(3,i,()=>di,()=>({duration:150})),P(t,i),nt()}Sn(["click"]);function Gt(t,e,r){const n=t.root[r],i=window.SONDA_JSON_REPORT.outputs[t.root.name][r];return Math.round(e[r]*(i/n)*100)/100}class hi{constructor(){Y(this,"depth",0);Y(this,"tree",[])}process(e){const r=this.getImporters(e);if(!r.length)return;if(r.length===1)return this.addLast(`imported by ${r[0]}`),this.process(r[0]);const n=r.pop();r.forEach(i=>this.add(`imported by ${i}`)),this.addLast(`imported by ${n}`)}getImporters(e){return e?Object.entries(window.SONDA_JSON_REPORT.inputs).filter(([,r])=>r.imports.includes(e)).map(([r])=>r):[]}addLast(e){this.tree.push(" ".repeat(this.depth*4)+"└── "+e),this.depth++}add(e){this.tree.push(" ".repeat(this.depth*4)+"├── "+e)}render(e){const r=window.SONDA_JSON_REPORT.inputs[e];return r.belongsTo&&(this.tree.push(`└── part of the ${r.belongsTo} bundle`),this.depth++,e=r.belongsTo),this.process(e),this.tree.join(`
|
|
2
|
+
`)}}var _i=D('<span>File format</span> <span class="font-bold"> </span>',1),gi=D('<span>Approx. GZIP size</span> <span class="font-bold"> </span>',1),pi=D('<span>Approx. Brotli size</span> <span class="font-bold"> </span>',1),wi=D('<p class="mt-8">This file is in the bundle, because it is:</p> <code class="mt-2 p-4 w-max leading-5 bg-slate-200 rounded overflow-auto"><pre> </pre></code>',1),mi=D('<div class="flex flex-col overflow-y-auto"><div class="grid grid-cols-[auto_1fr] gap-x-8"><!> <span>Original file size</span> <span class="font-bold"> </span> <span>Bundled size</span> <span class="font-bold"> </span> <!> <!></div> <!></div>');function bi(t,e){rt(e,!0);let r=Se(e,"file",7);const n=T(()=>r()&&window.SONDA_JSON_REPORT.inputs[r().path]),i=T(()=>Gt(e.activeOutput,r(),"gzip")),s=T(()=>Gt(e.activeOutput,r(),"brotli")),a=T(()=>{var c;if(h(n))return h(n).format.toUpperCase();const u=(c=window.SONDA_JSON_REPORT.inputs[r().path])==null?void 0:c.belongsTo;return u?window.SONDA_JSON_REPORT.inputs[u].format.toUpperCase:"UNKNOWN"}),f=T(()=>h(n)?new hi().render(r().path):null);var o=re(),l=V(o);K(l,r,u=>{Er(u,{get heading(){return r().path},onClose:()=>r(null),children:v=>{var d=mi(),_=E(d),g=E(_);K(g,()=>h(a)!=="UNKNOWN",k=>{var N=_i(),J=A(V(N),2),H=E(J);C(()=>q(H,h(a))),P(k,N)});var b=A(g,4),y=E(b);C(()=>{var k;return q(y,lt(((k=h(n))==null?void 0:k.bytes)||0))});var w=A(b,4),p=E(w);C(()=>q(p,lt(r().uncompressed)));var m=A(w,2);K(m,()=>r().path!=="[unassigned]",k=>{var N=gi(),J=A(V(N),2),H=E(J);C(()=>q(H,lt(h(i)))),P(k,N)});var S=A(m,2);K(S,()=>r().path!=="[unassigned]",k=>{var N=pi(),J=A(V(N),2),H=E(J);C(()=>q(H,lt(h(s)))),P(k,N)});var z=A(_,2);K(z,()=>h(f),k=>{var N=wi(),J=A(V(N),2),H=E(J),Tt=E(H);C(()=>q(Tt,h(f))),P(k,N)}),P(v,d)}})}),P(t,o),nt()}var yi=D('<div class="mb-4 grid grid-cols-[auto_1fr] gap-x-8"><span>Bundled size</span> <span class="font-bold"> </span> <span>Approx. GZIP size</span> <span class="font-bold"> </span> <span>Approx. Brotli size</span> <span class="font-bold"> </span></div> <div class="flex-grow overflow-hidden"><!></div>',1);function xi(t,e){rt(e,!0);let r=Se(e,"folder",7),n=R(0),i=R(0);const s=T(()=>Gt(e.activeOutput,r(),"gzip")),a=T(()=>Gt(e.activeOutput,r(),"brotli"));var f=re(),o=V(f);K(o,r,l=>{Er(l,{get heading(){return r().path},onClose:()=>r(null),large:!0,children:c=>{var v=yi(),d=V(v),_=A(E(d),2),g=E(_);C(()=>q(g,lt(r().uncompressed)));var b=A(_,4),y=E(b);C(()=>q(y,lt(h(s))));var w=A(b,4),p=E(w);C(()=>q(p,lt(h(a))));var m=A(d,2),S=E(m);xr(S,{get content(){return r()},get width(){return h(n)},get height(){return h(i)}}),ot(m,"clientWidth",z=>x(n,z)),ot(m,"clientHeight",z=>x(i,z)),P(c,v)}})}),P(t,f),nt()}var Ei=D('<div role="tooltip" class="fixed z-10 px-2 py-1 bg-gray-800 text-gray-100 rounded-md whitespace-nowrap pointer-events-none will-change-transform" style="transform: translate( var(--x), var(--y) )"> </div>');function Si(t,e){rt(e,!0);const r=12;let n=R(0),i=R(0),s=R(0),a=R(0),f=R(0),o=R(0),l=R(""),u=R("0px"),c=R("0px");fn(()=>{h(l)&&(x(u,(h(f)+h(n)+r>h(s)?h(f)-h(n)-r:h(f)+r)+"px"),x(c,(h(o)+h(i)+r>h(a)?h(o)-h(i):h(o)+r)+"px"))});function v({target:g,clientX:b,clientY:y}){x(l,F(g instanceof Element&&g.getAttribute("data-hover")||"")),x(f,F(b)),x(o,F(y))}var d=Ei();xt("mouseover",$.body,v),xt("mousemove",$.body,v),xt("mouseleave",$.body,()=>x(l,""));var _=E(d);C(()=>{de(d,"invisible",!h(l)),We(d,"--x",h(u)),We(d,"--y",h(c)),q(_,h(l))}),ot($.body,"clientWidth",g=>x(s,F(g))),ot($.body,"clientHeight",g=>x(a,F(g))),ot(d,"clientWidth",g=>x(n,g)),ot(d,"clientHeight",g=>x(i,g)),P(t,d),nt()}var Oi=D("<!> <!>",1),ki=D('<div role="application" class="wrapper relative flex flex-col overflow-hidden h-screen w-screen"><!> <div class="flex-grow overflow-hidden"><!></div></div> <!> <!>',1);function Ti(t,e){rt(e,!0);const r=ri(window.SONDA_JSON_REPORT);let n=R(0),i=R(0),s=R(null),a=R(null),f=R(0);const o=T(()=>r.at(h(f)));function l({target:w}){const p=w instanceof Element&&w.getAttribute("data-tile");if(!p)return;const m=h(o).get(p);if(m)return ct(m)?x(s,F(m)):x(a,F(m))}function u(w){if(w.key==="Escape"){if(w.stopPropagation(),h(a))return x(a,null);if(h(s))return x(s,null)}}var c=ki();xt("click",$.body,l),xt("keydown",$.body,u);var v=V(c),d=E(v);ei(d,{get activeOutputIndex(){return h(f)},set activeOutputIndex(w){x(f,F(w))},outputs:r});var _=A(d,2),g=E(_);K(g,()=>h(o),w=>{xr(w,{get content(){return h(o).root},get width(){return h(n)},get height(){return h(i)}})},w=>{fi(w)});var b=A(v,2);K(b,()=>h(o),w=>{var p=Oi(),m=V(p);xi(m,{get folder(){return h(s)},get activeOutput(){return h(o)}});var S=A(m,2);bi(S,{get file(){return h(a)},get activeOutput(){return h(o)}}),P(w,p)});var y=A(b,2);Si(y,{}),ot(_,"clientWidth",w=>x(n,w)),ot(_,"clientHeight",w=>x(i,w)),P(t,c),nt()}Tn(Ti,{target:document.getElementById("app")});</script><style rel="stylesheet" crossorigin>rect.svelte-ks9kyg:hover{filter:brightness(1.15)}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:after,:before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.bottom-0{bottom:0}.left-0{left:0}.right-0{right:0}.top-0{top:0}.z-10{z-index:10}.mb-4{margin-bottom:1rem}.mr-2{margin-right:.5rem}.mt-2{margin-top:.5rem}.mt-24{margin-top:6rem}.mt-4{margin-top:1rem}.mt-8{margin-top:2rem}.block{display:block}.flex{display:flex}.grid{display:grid}.size-full{width:100%;height:100%}.h-10{height:2.5rem}.h-16{height:4rem}.h-\[95vh\]{height:95vh}.h-full{height:100%}.h-screen{height:100vh}.max-h-\[95vh\]{max-height:95vh}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-\[95vw\]{width:95vw}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.w-screen{width:100vw}.min-w-80{min-width:20rem}.max-w-\[95vw\]{max-width:95vw}.max-w-sm{max-width:24rem}.flex-grow{flex-grow:1}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.cursor-zoom-in{cursor:zoom-in}.grid-cols-\[auto_1fr\]{grid-template-columns:auto 1fr}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px * var(--tw-space-y-reverse))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.border{border-width:1px}.border-b-2{border-bottom-width:2px}.border-dashed{border-style:dashed}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.bg-gray-200\/70{background-color:#e5e7ebb3}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240 / var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.fill-yellow-100{fill:#fef9c3}.stroke-gray-500{stroke:#6b7280}.p-1{padding:.25rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pr-6{padding-right:1.5rem}.text-center{text-align:center}.align-text-bottom{vertical-align:text-bottom}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-5{line-height:1.25rem}.leading-none{line-height:1}.tracking-tight{letter-spacing:-.025em}.text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246 / var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21 / var(--tw-text-opacity))}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / .1),0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgb(0 0 0 / .1),0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.will-change-transform{will-change:transform}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(17 24 39 / var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-blue-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(147 197 253 / var(--tw-ring-opacity))}</style></head><body class="flex w-screen h-screen font-mono"><div id="app" class="flex w-screen min-h-screen"></div></body></html>
|