@luna_ui/luna 0.2.0 → 0.2.3
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/dist/event-utils-C_M2XBNj.js +1 -0
- package/dist/event-utils.d.ts +142 -0
- package/dist/event-utils.js +1 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/dist/jsx-dev-runtime.js +1 -1
- package/dist/jsx-runtime.d.ts +1 -1
- package/dist/jsx-runtime.js +1 -1
- package/dist/src-BLshJ0o2.js +1 -0
- package/package.json +5 -1
- package/dist/src-BgIEfZkm.js +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function e(e){return e.target?.value??``}function t(e){return e.target?.checked??!1}function n(e){return e.target?.selectedIndex??-1}function r(e){if(`touches`in e&&e.touches.length>0)return{x:e.touches[0].clientX,y:e.touches[0].clientY};let t=e;return{x:t.clientX,y:t.clientY}}function i(e){return{x:e.offsetX,y:e.offsetY}}function a(e){if(`touches`in e&&e.touches.length>0)return{x:e.touches[0].pageX,y:e.touches[0].pageY};let t=e;return{x:t.pageX,y:t.pageY}}function o(e){return{dx:e.movementX,dy:e.movementY}}function s(e,t){return e.target?.closest(`[data-${t}]`)?.getAttribute(`data-${t}`)??null}function c(e){return s(e,`id`)}function l(e){return e.target?.dataset??{}}function u(e,t){return e.target?.matches?.(t)??!1}function d(e,t){return e.target?.closest?.(t)}function f(e){e.preventDefault()}function p(e){e.stopPropagation()}function m(e){e.preventDefault(),e.stopPropagation()}function h(e){return e.isComposing??!1}function g(e,t){switch(t){case`ctrl`:return e.ctrlKey;case`alt`:return e.altKey;case`shift`:return e.shiftKey;case`meta`:return e.metaKey}}function _(e){return e.metaKey||e.ctrlKey}function v(e){return e.key}function y(e){return e.key===`Enter`&&!h(e)}function b(e){return e.key===`Escape`}function x(e){return{deltaX:e.deltaX,deltaY:e.deltaY,deltaZ:e.deltaZ}}function S(e){return e.button}function C(e){return e.button===0}function w(e){return e.button===2}function T(e){return e.dataTransfer?.files??null}function E(e){return(`dataTransfer`in e?e.dataTransfer:e.clipboardData)?.getData(`text/plain`)??``}export{w as C,p as D,m as E,C as S,f as T,_,c as a,y as b,v as c,a as d,n as f,x as g,E as h,s as i,o as l,e as m,r as n,l as o,t as p,d as r,T as s,S as t,i as u,g as v,u as w,b as x,h as y};
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
//#region src/event-utils.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Event utilities for common event handling patterns
|
|
4
|
+
*
|
|
5
|
+
* These utilities are tree-shakeable - only import what you use.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* import { getTargetValue, getDataId, stopEvent } from "@luna_ui/luna/event-utils";
|
|
9
|
+
*
|
|
10
|
+
* on=events().input(fn(e) {
|
|
11
|
+
* const value = getTargetValue(e);
|
|
12
|
+
* setValue(value);
|
|
13
|
+
* })
|
|
14
|
+
*/
|
|
15
|
+
/**
|
|
16
|
+
* Get value from input/textarea/select element
|
|
17
|
+
*/
|
|
18
|
+
declare function getTargetValue(e: Event): string;
|
|
19
|
+
/**
|
|
20
|
+
* Get checked state from checkbox/radio input
|
|
21
|
+
*/
|
|
22
|
+
declare function getTargetChecked(e: Event): boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Get selected index from select element
|
|
25
|
+
*/
|
|
26
|
+
declare function getSelectedIndex(e: Event): number;
|
|
27
|
+
/**
|
|
28
|
+
* Get client position (relative to viewport) from mouse/pointer/touch event
|
|
29
|
+
*/
|
|
30
|
+
declare function getClientPos(e: MouseEvent | PointerEvent | TouchEvent): {
|
|
31
|
+
x: number;
|
|
32
|
+
y: number;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Get offset position (relative to target element) from mouse/pointer event
|
|
36
|
+
*/
|
|
37
|
+
declare function getOffsetPos(e: MouseEvent | PointerEvent): {
|
|
38
|
+
x: number;
|
|
39
|
+
y: number;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Get page position (relative to document) from mouse/pointer/touch event
|
|
43
|
+
*/
|
|
44
|
+
declare function getPagePos(e: MouseEvent | PointerEvent | TouchEvent): {
|
|
45
|
+
x: number;
|
|
46
|
+
y: number;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Get movement delta from mouse/pointer event
|
|
50
|
+
*/
|
|
51
|
+
declare function getMovement(e: MouseEvent | PointerEvent): {
|
|
52
|
+
dx: number;
|
|
53
|
+
dy: number;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Get data attribute from event target or closest ancestor
|
|
57
|
+
*/
|
|
58
|
+
declare function getDataAttr(e: Event, key: string): string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Get data-id from closest ancestor (common pattern for list items)
|
|
61
|
+
*/
|
|
62
|
+
declare function getDataId(e: Event): string | null;
|
|
63
|
+
/**
|
|
64
|
+
* Get all data attributes from event target as object
|
|
65
|
+
*/
|
|
66
|
+
declare function getDataset(e: Event): DOMStringMap;
|
|
67
|
+
/**
|
|
68
|
+
* Check if event target matches a CSS selector
|
|
69
|
+
*/
|
|
70
|
+
declare function matchesSelector(e: Event, selector: string): boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Get closest ancestor matching selector from event target
|
|
73
|
+
*/
|
|
74
|
+
declare function getClosest<T extends Element = HTMLElement>(e: Event, selector: string): T | null;
|
|
75
|
+
/**
|
|
76
|
+
* Prevent default behavior
|
|
77
|
+
*/
|
|
78
|
+
declare function preventDefault(e: Event): void;
|
|
79
|
+
/**
|
|
80
|
+
* Stop event propagation
|
|
81
|
+
*/
|
|
82
|
+
declare function stopPropagation(e: Event): void;
|
|
83
|
+
/**
|
|
84
|
+
* Prevent default and stop propagation (convenience)
|
|
85
|
+
*/
|
|
86
|
+
declare function stopEvent(e: Event): void;
|
|
87
|
+
/**
|
|
88
|
+
* Check if IME is composing (for input/keyboard events)
|
|
89
|
+
* Use this to avoid handling partial IME input
|
|
90
|
+
*/
|
|
91
|
+
declare function isComposing(e: Event): boolean;
|
|
92
|
+
/**
|
|
93
|
+
* Check if modifier key is pressed
|
|
94
|
+
*/
|
|
95
|
+
declare function hasModifier(e: KeyboardEvent | MouseEvent, modifier: "ctrl" | "alt" | "shift" | "meta"): boolean;
|
|
96
|
+
/**
|
|
97
|
+
* Check if Cmd (Mac) or Ctrl (Windows/Linux) is pressed
|
|
98
|
+
*/
|
|
99
|
+
declare function hasCmdOrCtrl(e: KeyboardEvent | MouseEvent): boolean;
|
|
100
|
+
/**
|
|
101
|
+
* Get keyboard key with normalized names
|
|
102
|
+
*/
|
|
103
|
+
declare function getKey(e: KeyboardEvent): string;
|
|
104
|
+
/**
|
|
105
|
+
* Check if Enter key was pressed (outside IME composition)
|
|
106
|
+
*/
|
|
107
|
+
declare function isEnterKey(e: KeyboardEvent): boolean;
|
|
108
|
+
/**
|
|
109
|
+
* Check if Escape key was pressed
|
|
110
|
+
*/
|
|
111
|
+
declare function isEscapeKey(e: KeyboardEvent): boolean;
|
|
112
|
+
/**
|
|
113
|
+
* Get wheel delta (normalized across browsers)
|
|
114
|
+
*/
|
|
115
|
+
declare function getWheelDelta(e: WheelEvent): {
|
|
116
|
+
deltaX: number;
|
|
117
|
+
deltaY: number;
|
|
118
|
+
deltaZ: number;
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* Get which mouse button was pressed
|
|
122
|
+
* 0 = primary (left), 1 = auxiliary (middle), 2 = secondary (right)
|
|
123
|
+
*/
|
|
124
|
+
declare function getButton(e: MouseEvent): number;
|
|
125
|
+
/**
|
|
126
|
+
* Check if primary (left) mouse button was pressed
|
|
127
|
+
*/
|
|
128
|
+
declare function isPrimaryButton(e: MouseEvent): boolean;
|
|
129
|
+
/**
|
|
130
|
+
* Check if secondary (right) mouse button was pressed
|
|
131
|
+
*/
|
|
132
|
+
declare function isSecondaryButton(e: MouseEvent): boolean;
|
|
133
|
+
/**
|
|
134
|
+
* Get files from drag event
|
|
135
|
+
*/
|
|
136
|
+
declare function getDroppedFiles(e: DragEvent): FileList | null;
|
|
137
|
+
/**
|
|
138
|
+
* Get text data from drag/clipboard event
|
|
139
|
+
*/
|
|
140
|
+
declare function getTextData(e: DragEvent | ClipboardEvent): string;
|
|
141
|
+
//#endregion
|
|
142
|
+
export { getButton, getClientPos, getClosest, getDataAttr, getDataId, getDataset, getDroppedFiles, getKey, getMovement, getOffsetPos, getPagePos, getSelectedIndex, getTargetChecked, getTargetValue, getTextData, getWheelDelta, hasCmdOrCtrl, hasModifier, isComposing, isEnterKey, isEscapeKey, isPrimaryButton, isSecondaryButton, matchesSelector, preventDefault, stopEvent, stopPropagation };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{C as e,D as t,E as n,S as r,T as i,_ as a,a as o,b as s,c,d as l,f as u,g as d,h as f,i as p,l as m,m as h,n as g,o as _,p as v,r as y,s as b,t as x,u as S,v as C,w,x as T,y as E}from"./event-utils-C_M2XBNj.js";export{x as getButton,g as getClientPos,y as getClosest,p as getDataAttr,o as getDataId,_ as getDataset,b as getDroppedFiles,c as getKey,m as getMovement,S as getOffsetPos,l as getPagePos,u as getSelectedIndex,v as getTargetChecked,h as getTargetValue,f as getTextData,d as getWheelDelta,a as hasCmdOrCtrl,C as hasModifier,E as isComposing,s as isEnterKey,T as isEscapeKey,r as isPrimaryButton,e as isSecondaryButton,w as matchesSelector,i as preventDefault,n as stopEvent,t as stopPropagation};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { getButton, getClientPos, getClosest, getDataAttr, getDataId, getDataset, getDroppedFiles, getKey, getMovement, getOffsetPos, getPagePos, getSelectedIndex, getTargetChecked, getTargetValue, getTextData, getWheelDelta, hasCmdOrCtrl, hasModifier, isComposing, isEnterKey, isEscapeKey, isPrimaryButton, isSecondaryButton, matchesSelector, preventDefault, stopEvent, stopPropagation } from "./event-utils.js";
|
|
2
|
+
|
|
1
3
|
//#region ../../target/js/release/build/platform/js/api/moonbit.d.ts
|
|
2
4
|
|
|
3
5
|
type Unit = undefined;
|
|
@@ -40,6 +42,9 @@ declare function routePageFull(path: String, component: String, title: String, m
|
|
|
40
42
|
declare function routePageTitled(path: String, component: String, title: String): any;
|
|
41
43
|
declare function routePage(path: String, component: String): any;
|
|
42
44
|
declare function events(): any;
|
|
45
|
+
declare function mathmlNs(): String;
|
|
46
|
+
declare function svgNs(): String;
|
|
47
|
+
declare function createElementNs(ns: String, tag: String, attrs: any, children: any): any;
|
|
43
48
|
declare function createElement(tag: String, attrs: any, children: any): any;
|
|
44
49
|
declare function Fragment(children: any): any;
|
|
45
50
|
declare function jsxs(tag: String, attrs: any, children: any): any;
|
|
@@ -194,6 +199,7 @@ declare function Index<T>(props: IndexProps<T>): any;
|
|
|
194
199
|
declare function Provider<T>(props: ProviderProps<T>): any;
|
|
195
200
|
/**
|
|
196
201
|
* Switch component for conditional rendering with multiple branches (SolidJS-style)
|
|
202
|
+
* Reactively updates when conditions change.
|
|
197
203
|
*/
|
|
198
204
|
declare function Switch(props: SwitchProps): any;
|
|
199
205
|
/**
|
|
@@ -227,4 +233,4 @@ declare function produce(fn: any): (state: any) => any;
|
|
|
227
233
|
*/
|
|
228
234
|
declare function reconcile(value: any): () => any;
|
|
229
235
|
//#endregion
|
|
230
|
-
export { Accessor, Context, For, ForProps, Fragment, Index, IndexProps, Match, MatchProps, Portal, PortalProps, Provider, ProviderProps, ResourceAccessor, SetStoreFunction, Setter, Show, ShowProps, Signal, Switch, SwitchProps, batch, batchEnd, batchStart, combine, createContext, createDeferred, createEffect, createElement, createMemo, createResource, createRoot, createRouter, createSignal, createStore, debounced, effect, events, forEach, get, getOwner, hasOwner, jsx, jsxs, map, mergeProps, mount, on, onCleanup, onMount, peek, portalToBody, portalToElementWithShadow, portalToSelector, portalWithShadow, produce, provide, reconcile, render, resourceError, resourceGet, resourceIsFailure, resourceIsPending, resourceIsSuccess, resourcePeek, resourceRefetch, resourceValue, routePage, routePageFull, routePageTitled, routerGetBase, routerGetMatch, routerGetPath, routerNavigate, routerReplace, runUntracked, runUntracked as untrack, runWithOwner, set, show, splitProps, stateError, stateIsFailure, stateIsPending, stateIsSuccess, stateValue, subscribe, text, textDyn, update, useContext };
|
|
236
|
+
export { Accessor, Context, For, ForProps, Fragment, Index, IndexProps, Match, MatchProps, Portal, PortalProps, Provider, ProviderProps, ResourceAccessor, SetStoreFunction, Setter, Show, ShowProps, Signal, Switch, SwitchProps, batch, batchEnd, batchStart, combine, createContext, createDeferred, createEffect, createElement, createElementNs, createMemo, createResource, createRoot, createRouter, createSignal, createStore, debounced, effect, events, forEach, get, getButton, getClientPos, getClosest, getDataAttr, getDataId, getDataset, getDroppedFiles, getKey, getMovement, getOffsetPos, getOwner, getPagePos, getSelectedIndex, getTargetChecked, getTargetValue, getTextData, getWheelDelta, hasCmdOrCtrl, hasModifier, hasOwner, isComposing, isEnterKey, isEscapeKey, isPrimaryButton, isSecondaryButton, jsx, jsxs, map, matchesSelector, mathmlNs, mergeProps, mount, on, onCleanup, onMount, peek, portalToBody, portalToElementWithShadow, portalToSelector, portalWithShadow, preventDefault, produce, provide, reconcile, render, resourceError, resourceGet, resourceIsFailure, resourceIsPending, resourceIsSuccess, resourcePeek, resourceRefetch, resourceValue, routePage, routePageFull, routePageTitled, routerGetBase, routerGetMatch, routerGetPath, routerNavigate, routerReplace, runUntracked, runUntracked as untrack, runWithOwner, set, show, splitProps, stateError, stateIsFailure, stateIsPending, stateIsSuccess, stateValue, stopEvent, stopPropagation, subscribe, svgNs, text, textDyn, update, useContext };
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{$ as
|
|
1
|
+
import{$ as ee,A as te,B as e,C as t,Ct as n,D as r,E as i,Et as a,F as o,G as s,H as c,I as l,J as u,K as d,L as f,M as p,N as m,O as h,P as g,Q as _,R as v,S as y,St as b,T as x,Tt as S,U as C,V as w,W as T,X as E,Y as D,Z as O,_ as k,_t as A,a as j,at as M,b as N,bt as P,c as F,ct as I,d as L,dt as R,et as z,f as B,ft as V,g as H,gt as U,h as W,ht as G,i as K,it as q,j as J,k as Y,l as X,lt as Z,m as Q,mt as ne,n as $,nt as re,o as ie,ot as ae,p as oe,pt as se,q as ce,r as le,rt as ue,s as de,st as fe,t as pe,tt as me,u as he,ut as ge,v as _e,vt as ve,w as ye,wt as be,x as xe,xt as Se,y as Ce,yt as we,z as Te}from"./src-BLshJ0o2.js";import{C as Ee,D as De,E as Oe,S as ke,T as Ae,_ as je,a as Me,b as Ne,c as Pe,d as Fe,f as Ie,g as Le,h as Re,i as ze,l as Be,m as Ve,n as He,o as Ue,p as We,r as Ge,s as Ke,t as qe,u as Je,v as Ye,w as Xe,x as Ze,y as Qe}from"./event-utils-C_M2XBNj.js";export{pe as For,p as Fragment,$ as Index,le as Match,K as Portal,j as Provider,ie as Show,de as Switch,N as batch,xe as batchEnd,y as batchStart,t as combine,ye as createContext,F as createDeferred,X as createEffect,x as createElement,i as createElementNs,he as createMemo,L as createResource,r as createRoot,h as createRouter,B as createSignal,oe as createStore,Q as debounced,Y as effect,te as events,J as forEach,m as get,qe as getButton,He as getClientPos,Ge as getClosest,ze as getDataAttr,Me as getDataId,Ue as getDataset,Ke as getDroppedFiles,Pe as getKey,Be as getMovement,Je as getOffsetPos,g as getOwner,Fe as getPagePos,Ie as getSelectedIndex,We as getTargetChecked,Ve as getTargetValue,Re as getTextData,Le as getWheelDelta,je as hasCmdOrCtrl,Ye as hasModifier,o as hasOwner,Qe as isComposing,Ne as isEnterKey,Ze as isEscapeKey,ke as isPrimaryButton,Ee as isSecondaryButton,l as jsx,f as jsxs,v as map,Xe as matchesSelector,Te as mathmlNs,W as mergeProps,e as mount,H as on,w as onCleanup,c as onMount,C as peek,T as portalToBody,s as portalToElementWithShadow,d as portalToSelector,ce as portalWithShadow,Ae as preventDefault,k as produce,u as provide,_e as reconcile,D as render,E as resourceError,O as resourceGet,_ as resourceIsFailure,ee as resourceIsPending,z as resourceIsSuccess,me as resourcePeek,re as resourceRefetch,ue as resourceValue,q as routePage,M as routePageFull,ae as routePageTitled,fe as routerGetBase,I as routerGetMatch,Z as routerGetPath,ge as routerNavigate,R as routerReplace,V as runUntracked,V as untrack,se as runWithOwner,ne as set,G as show,Ce as splitProps,U as stateError,A as stateIsFailure,ve as stateIsPending,we as stateIsSuccess,P as stateValue,Oe as stopEvent,De as stopPropagation,Se as subscribe,b as svgNs,n as text,be as textDyn,S as update,a as useContext};
|
package/dist/jsx-dev-runtime.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import"./src-
|
|
1
|
+
import"./src-BLshJ0o2.js";import{Fragment as e,jsx as t,jsxDEV as n,jsxs as r}from"./jsx-runtime.js";export{e as Fragment,t as jsx,n as jsxDEV,r as jsxs};
|
package/dist/jsx-runtime.d.ts
CHANGED
package/dist/jsx-runtime.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import{Ct as e,M as t,T as n,wt as r}from"./src-BLshJ0o2.js";function i(e){return typeof e==`string`?e:typeof e!=`object`||!e?``:Object.entries(e).map(([e,t])=>`${e.replace(/([A-Z])/g,`-$1`).toLowerCase()}: ${t}`).join(`; `)}function a(e){if(!e)return[];let t=[];for(let[n,r]of Object.entries(e)){if(n===`children`)continue;let e=n,a;if(n===`className`&&(e=`class`),n===`style`){a={$tag:0,_0:i(r)},t.push({_0:e,_1:a});continue}if(n===`ref`&&typeof r==`function`){e=`__ref`,a={$tag:2,_0:r},t.push({_0:e,_1:a});continue}if(n.startsWith(`on`)&&typeof r==`function`){e=n.slice(2).toLowerCase(),a={$tag:2,_0:r},t.push({_0:e,_1:a});continue}a=typeof r==`function`?{$tag:1,_0:r}:{$tag:0,_0:String(r)},t.push({_0:e,_1:a})}return t}function o(t){if(!t)return[];let n;return n=Array.isArray(t)?t:[t],n.flat().map(t=>typeof t==`string`?e(t):typeof t==`number`?e(String(t)):typeof t==`function`&&t.length===0?r(()=>String(t())):t).filter(Boolean)}function s(e,t){let{children:r,...i}=t||{},s=a(i),c=o(r);if(typeof e==`string`)return n(e,s,c);if(typeof e==`function`)return e({...i,children:r});throw Error(`Invalid JSX type: ${e}`)}const c=s;function l({children:e}){return t(o(e))}const u=s;export{l as Fragment,s as jsx,u as jsxDEV,c as jsxs};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e={$tag:0};function t(e){this._0=e}t.prototype.$tag=1;var n=class extends Error{};function r(){throw new n}function i(e,t){if(t<0||t>=e.length)throw Error(`Index out of bounds`)}function a(e,t){let n=Array(e);return n.fill(t),n}function o(e){this._0=e}o.prototype.$tag=0;function s(e){this._0=e}s.prototype.$tag=1;const c={$tag:1},l={$tag:0},u=(e,t)=>e.toString(t),d=(e,t)=>{e.push(t)},f={$tag:0};function ee(e){this._0=e}ee.prototype.$tag=1;function te(e){this._0=e}te.prototype.$tag=2;function ne(e){this._0=e}ne.prototype.$tag=3;function re(e){this._0=e}re.prototype.$tag=4;const ie=e=>e.slice(0),p=(e,t)=>{e.length=t},ae=e=>e.pop(),oe=(e,t,n)=>e.splice(t,n),se=(e,t)=>e[t],m=(e,t,n)=>e[t](...n),ce=e=>e==null,le=()=>({}),h=(e,t,n)=>{e[t]=n},ue=()=>null,de=e=>Object.fromEntries(e.map(e=>[e._0,e._1])),fe={$tag:0};function g(e){this._0=e}g.prototype.$tag=1;const pe={$tag:0};function _(e){this._0=e}_.prototype.$tag=1;const me={$tag:0};function he(e){this._0=e}he.prototype.$tag=1;const ge=(e,t)=>setTimeout(e,t),_e=e=>clearTimeout(e),v=()=>document,ve=(e,t)=>e.createElement(t),ye=(e,t,n)=>e.createElementNS(t,n),be=(e,t)=>e.createTextNode(t),xe={$tag:0};function y(e){this._0=e}y.prototype.$tag=1;const b={$tag:0};function Se(e){this._0=e}Se.prototype.$tag=1;function Ce(e){this._0=e}Ce.prototype.$tag=2;function we(e){this._0=e}we.prototype.$tag=0;function Te(e){this._0=e}Te.prototype.$tag=1;function x(e){this._0=e}x.prototype.$tag=2;function Ee(e){this._0=e}Ee.prototype.$tag=3;const De=(e,t)=>document.createElementNS(e,t),Oe=(e,t,n)=>e.addEventListener(t,n),ke=(e,t)=>e===t,Ae=(e,t,n)=>{if(typeof e.moveBefore==`function`)try{return e.moveBefore(t,n),t}catch{return e.insertBefore(t,n)}else return e.insertBefore(t,n)},je=(e,t)=>{if(typeof e.moveBefore==`function`)try{return e.moveBefore(t,null),t}catch{return e.insertBefore(t,null)}else return e.insertBefore(t,null)},Me=(e,t)=>e.nextSibling===t,Ne=(e,t)=>{try{t.parentNode===e?e.removeChild(t):t.parentNode&&t.parentNode.removeChild(t)}catch{}},Pe={$tag:0};function Fe(e){this._0=e}Fe.prototype.$tag=1;function Ie(e){this._0=e}Ie.prototype.$tag=0;function Le(e){this._0=e}Le.prototype.$tag=1;function Re(e){this._0=e}Re.prototype.$tag=2;const S={$tag:0};function ze(e){this._0=e}ze.prototype.$tag=1;const Be=()=>window.location.pathname,Ve=()=>window.location.search,He=e=>window.history.pushState(null,``,e),Ue=e=>window.history.replaceState(null,``,e),We=e=>window.addEventListener(`popstate`,()=>e());function C(e,t,n,r){this._0=e,this._1=t,this._2=n,this._3=r}C.prototype.$tag=0;function Ge(e,t,n){this._0=e,this._1=t,this._2=n}Ge.prototype.$tag=1;function Ke(e,t){this._0=e,this._1=t}Ke.prototype.$tag=2;function qe(e,t){this._0=e,this._1=t}qe.prototype.$tag=3;const Je=()=>void 0,Ye={method_0:Ot,method_1:kt,method_2:zt,method_3:dt},Xe={val:0},w={current_subscriber:void 0,current_owner:void 0,current_cleanups:e,batch_depth:0,pending_effects:[],pending_ids:[]},Ze={val:0};function Qe(e){return r()}function $e(e){return r()}function et(e){return r()}function tt(e){return r()}function nt(e){r()}function rt(e){return r()}function it(e,t){return e===0?t===0:t===1}function at(e,t){return Qe(`${e}\n at ${M(t)}\n`)}function ot(e,t){return $e(`${e}\n at ${M(t)}\n`)}function st(e,t){return et(`${e}\n at ${M(t)}\n`)}function ct(e,t){return tt(`${e}\n at ${M(t)}\n`)}function lt(e,t){nt(`${e}\n at ${M(t)}\n`)}function ut(e,t){return rt(`${e}\n at ${M(t)}\n`)}function T(e){return{val:``}}function dt(e,t){let n=e;n.val=`${n.val}${String.fromCodePoint(t)}`}function ft(e,t){return(((Math.imul(e-55296|0,1024)|0)+t|0)-56320|0)+65536|0}function pt(e,t){return!it(e,t)}function mt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function ht(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function gt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function _t(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function vt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function yt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function bt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function E(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function xt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function St(e,t){let n=e.end-e.start|0,r=t.end-t.start|0;if(r>0)if(n>=r){let o=a(256,r),s=r-1|0,c=0;for(;;){let e=c;if(e<s){let n=t.str,a=t.start+e|0,s=n.charCodeAt(a)&255;i(o,s),o[s]=(r-1|0)-e|0,c=e+1|0;continue}else break}let l=0;for(;;){let a=l;if(a<=(n-r|0)){let n=r-1|0,s=0;for(;;){let r=s;if(r<=n){let n=a+r|0,i=e.str,o=e.start+n|0,c=i.charCodeAt(o),l=t.str,u=t.start+r|0;if(c!==l.charCodeAt(u))break;s=r+1|0;continue}else return a}let c=(a+r|0)-1|0,u=e.str,d=e.start+c|0,f=u.charCodeAt(d)&255;i(o,f),l=a+o[f]|0;continue}else break}return}else return;else return 0}function Ct(e,t){let n=e.end-e.start|0,r=t.end-t.start|0;if(r>0)if(n>=r){let i=t.str,a=t.start+0|0,o=i.charCodeAt(a),s=n-r|0,c=0;for(;c<=s;){for(;;){let t;if(c<=s){let n=c,r=e.str,i=e.start+n|0;t=r.charCodeAt(i)!==o}else t=!1;if(t){c=c+1|0;continue}else break}if(c<=s){let n=1;for(;;){let i=n;if(i<r){let r=c+i|0,a=e.str,o=e.start+r|0,s=a.charCodeAt(o),l=t.str,u=t.start+i|0;if(s!==l.charCodeAt(u))break;n=i+1|0;continue}else return c}c=c+1|0}}return}else return;else return 0}function D(e,t){return(t.end-t.start|0)<=4?Ct(e,t):St(e,t)}function wt(e,t){let n=e.end-e.start|0,r=t.end-t.start|0;if(r>0)if(n>=r){let o=a(256,r),s=r-1|0;for(;;){let e=s;if(e>0){let n=t.str,r=t.start+e|0,a=n.charCodeAt(r)&255;i(o,a),o[a]=e,s=e-1|0;continue}else break}let c=n-r|0;for(;;){let n=c;if(n>=0){let a=0;for(;;){let i=a;if(i<r){let r=n+i|0,o=e.str,s=e.start+r|0,c=o.charCodeAt(s),l=t.str,u=t.start+i|0;if(c!==l.charCodeAt(u))break;a=i+1|0;continue}else return n}let s=e.str,l=e.start+n|0,u=s.charCodeAt(l)&255;i(o,u),c=n-o[u]|0;continue}else break}return}else return;else return n}function Tt(e,t){let n=e.end-e.start|0,r=t.end-t.start|0;if(r>0)if(n>=r){let i=t.str,a=t.start+0|0,o=i.charCodeAt(a),s=n-r|0;for(;s>=0;){for(;;){let t;if(s>=0){let n=s,r=e.str,i=e.start+n|0;t=r.charCodeAt(i)!==o}else t=!1;if(t){s=s-1|0;continue}else break}if(s>=0){let n=1;for(;;){let i=n;if(i<r){let r=s+i|0,a=e.str,o=e.start+r|0,c=a.charCodeAt(o),l=t.str,u=t.start+i|0;if(c!==l.charCodeAt(u))break;n=i+1|0;continue}else return s}s=s-1|0}}return}else return;else return n}function O(e,t){return(t.end-t.start|0)<=4?Tt(e,t):wt(e,t)}function k(e,t,n){let r;return r=n===void 0?e.end-e.start|0:n,t>=0&&t<=r&&r<=(e.end-e.start|0)?{str:e.str,start:e.start+t|0,end:e.start+r|0}:ct(`Invalid index for View`,`@moonbitlang/core/builtin:stringview.mbt:111:5-111:36`)}function Et(e){let t=D(e,{str:`:`,start:0,end:1});if(t!==void 0){let n=t;return n>0&&(n+1|0)<(e.end-e.start|0)?{_0:k(e,0,n),_1:k(e,n+1|0,void 0)}:void 0}}function Dt(e){_L:if(Ft(e,1,0,e.length))if(e.charCodeAt(0)===64){let t=Rt(e,1,0,e.length),n;n=t===void 0?e.length:t;let i={str:e,start:n,end:e.length},a=D(i,{str:`:`,start:0,end:1});if(a===void 0)return r();{let e=a,t=k(i,0,e),n=O(i,{str:`-`,start:0,end:1});if(n===void 0)return r();{let a=n;if((a+1|0)<(i.end-i.start|0)){let n=Et(k(i,a+1|0,void 0));if(n===void 0)return r();{let o=n,s=o._0,c=o._1,l=k(i,0,a);_L$2:{let n=O(l,{str:`:`,start:0,end:1});if(n===void 0)break _L$2;{let i=O(k(l,0,n),{str:`:`,start:0,end:1});if(i===void 0)break _L$2;{let n=i;if((n+1|0)<(l.end-l.start|0)){let i=Et(k(l,n+1|0,void 0));if(i===void 0)return r();{let a=i,o=a._0,u=a._1;return n>(e+1|0)?{pkg:t,filename:k(l,e+1|0,n),start_line:o,start_column:u,end_line:s,end_column:c}:r()}}else return r()}}}return r()}}else return r()}}}else break _L;else break _L;return r()}function Ot(e,t){let n=e;n.val=`${n.val}${t}`}function A(e,t,n){let r=e.length,i;if(n===void 0)i=r;else{let e=n;i=e<0?r+e|0:e}let a=t<0?r+t|0:t;if(a>=0&&a<=i&&i<=r){let t;if(a<r){let n=e.charCodeAt(a);t=56320<=n&&n<=57343}else t=!1;if(t)return new o(l);let n;if(i<r){let t=e.charCodeAt(i);n=56320<=t&&t<=57343}else n=!1;return n?new o(l):new s({str:e,start:a,end:i})}else return new o(c)}function kt(e,t,n,i){let a;_L:{_L$2:{let e=A(t,n,n+i|0);if(e.$tag===1)a=e._0;else{e._0;break _L$2}break _L}a=r()}zt(e,a)}function j(e){let t=T(0);return tn(e,{self:t,method_table:Ye}),t.val}function M(e){let t=T(0);return ln(e,{self:t,method_table:Ye}),t.val}function At(e,t){return u(e,t)}function N(e){return e.str.substring(e.start,e.end)}function jt(e){return e()}function Mt(e){return e()}function Nt(e){return t=>{for(;;){let n=jt(e);if(n===void 0)return 1;if(t(n)!==1)return 0}}}function Pt(e){return t=>{for(;;){let n=Mt(e);if(n===-1)return 1;if(t(n)!==1)return 0}}}function P(e){let t=T(Math.imul(e.end-e.start|0,4)|0),n=e.end-e.start|0,r=0;for(;;){let i=r;if(i<n){let n=e.buf[e.start+i|0];dt(t,n),r=i+1|0;continue}else break}return t.val}function Ft(e,t,n,r){let i;i=r===void 0?e.length:r;let a=n,o=0;for(;;){let n=a,r=o;if(n<i&&r<t){let t=e.charCodeAt(n);if(55296<=t&&t<=56319&&(n+1|0)<i){let t=n+1|0,i=e.charCodeAt(t);if(56320<=i&&i<=57343){a=n+2|0,o=r+1|0;continue}else lt(`invalid surrogate pair`,`@moonbitlang/core/builtin:string.mbt:491:9-491:40`)}a=n+1|0,o=r+1|0;continue}else return r>=t}}function It(e,t,n,r){let i=0,a=r;for(;(a-1|0)>=n&&i<t;){let t=a-1|0,n=e.charCodeAt(t);a=56320<=n&&n<=57343?a-2|0:a-1|0,i=i+1|0}return i<t||a<n?void 0:a}function Lt(e,t,n,r){if(n>=0&&n<=r){let i=n,a=0;for(;i<r&&a<t;){let t=i,n=e.charCodeAt(t);i=55296<=n&&n<=56319?i+2|0:i+1|0,a=a+1|0}return a<t||i>=r?void 0:i}else return ut(`Invalid start index`,`@moonbitlang/core/builtin:string.mbt:366:5-366:33`)}function Rt(e,t,n,r){let i;return i=r===void 0?e.length:r,t>=0?Lt(e,t,n,i):It(e,-t|0,n,i)}function zt(e,t){let n=e;n.val=`${n.val}${N(t)}`}function Bt(e,t){let n=O(e,t);return n===void 0?!1:n===((e.end-e.start|0)-(t.end-t.start|0)|0)}function F(e,t){return Bt({str:e,start:0,end:e.length},t)}function Vt(e,t){let n=D(e,t);return n===void 0?!1:n===0}function I(e,t){return Vt({str:e,start:0,end:e.length},t)}function Ht(e){return[]}function L(e,t){d(e,t)}function Ut(e,t){d(e,t)}function Wt(e,t){d(e,t)}function Gt(e,t){d(e,t)}function Kt(e,t){d(e,t)}function qt(e,t){d(e,t)}function Jt(e,t){d(e,t)}function Yt(e,t){d(e,t)}function R(e,t){d(e,t)}function z(e,t){d(e,t)}function B(e,t){d(e,t)}function Xt(e){let t=e.length,n={val:0};return()=>{if(n.val<t){let r=n.val,i=e.charCodeAt(r);if(55296<=i&&i<=56319&&(n.val+1|0)<t){let t=n.val+1|0,r=e.charCodeAt(t);if(56320<=r&&r<=57343){let e=ft(i,r);return n.val=n.val+2|0,e}}return n.val=n.val+1|0,i}else return-1}}function Zt(e){return Pt(Xt(e))}function Qt(e,t){return e(t)}function $t(e){return String.fromCodePoint(e)}function en(e){let t=Zt(e),n={val:Ht(e.length)},i={val:f};t(e=>{let t=n.val;return B(t,e),n.val=t,1});let a=i.val;switch(a.$tag){case 0:break;case 1:a._0;break;case 2:return a._0;case 3:r();break;default:r()}return n.val}function tn(e,t){t.method_table.method_0(t.self,At(e,10))}function nn(e){let t={val:0};return()=>{if(t.val<(e.end-e.start|0)){let n=e.buf[e.start+t.val|0];return t.val=t.val+1|0,n}else return}}function rn(e){return nn({buf:e,start:0,end:e.length})}function V(e){return Nt(rn(e))}function H(e,t){return pt(Qt(e,e=>t(e)?0:1),1)}function an(e,t){let n=Array(e),r=0;for(;;){let i=r;if(i<e){n[i]=t,r=i+1|0;continue}else break}return n}function on(e,t,n){let a=e.length;if(t>=0&&t<a){i(e,t),e[t]=n;return}else{r();return}}function sn(e,t,n){let a=e.length;if(t>=0&&t<a){i(e,t),e[t]=n;return}else{r();return}}function cn(e,t){let n=e.pkg,r=D(n,{str:`/`,start:0,end:1}),i;if(r===void 0)i={_0:n,_1:void 0};else{let e=r,t=D(k(n,e+1|0,void 0),{str:`/`,start:0,end:1});if(t===void 0)i={_0:n,_1:void 0};else{let r=t,a=(e+1|0)+r|0;i={_0:k(n,0,a),_1:k(n,a+1|0,void 0)}}}let a=i._0,o=i._1;if(o!==void 0){let e=o;t.method_table.method_2(t.self,e),t.method_table.method_3(t.self,47)}t.method_table.method_2(t.self,e.filename),t.method_table.method_3(t.self,58),t.method_table.method_2(t.self,e.start_line),t.method_table.method_3(t.self,58),t.method_table.method_2(t.self,e.start_column),t.method_table.method_3(t.self,45),t.method_table.method_2(t.self,e.end_line),t.method_table.method_3(t.self,58),t.method_table.method_2(t.self,e.end_column),t.method_table.method_3(t.self,64),t.method_table.method_2(t.self,a)}function ln(e,t){cn(Dt(e),t)}function un(e,t,n){let r=e.length,i;if(n===void 0)i=r;else{let e=n;i=e<0?r+e|0:e}let a=t<0?r+t|0:t;return a>=0&&a<=i&&i<=r?{buf:e,start:a,end:i}:st(`View index out of bounds`,`@moonbitlang/core/builtin:arrayview.mbt:200:5-200:38`)}function dn(e,t){p(e,t)}function fn(e,t){p(e,t)}function pn(e,t){p(e,t)}function mn(e,t){p(e,t)}function hn(e,t){p(e,t)}function gn(e){return ae(e)}function _n(e){return e.length===0?-1:gn(e)}function vn(e,t){if(t>=0&&t<e.length){i(e,t);let n=e[t];return oe(e,t,1),n}else return at(`index out of bounds: the len is from 0 to ${j(e.length)} but the index is ${j(t)}`,`@moonbitlang/core/builtin:arraycore_js.mbt:241:5-243:6`)}function yn(e,t){if(t>=0&&t<e.length){i(e,t);let n=e[t];return oe(e,t,1),n}else return ot(`index out of bounds: the len is from 0 to ${j(e.length)} but the index is ${j(t)}`,`@moonbitlang/core/builtin:arraycore_js.mbt:241:5-243:6`)}function bn(e){return ie(e)}function xn(e){fn(e,0)}function Sn(e){pn(e,0)}function Cn(e){hn(e,0)}function wn(e){return ce(e)?fe:new g(e)}function Tn(e){return ce(e)?pe:new _(e)}function En(e){return ce(e)?me:new he(e)}function Dn(e,t,n){return{mode:e,delegatesFocus:t,slotAssignment:n}}function On(e,t){return m(e,`attachShadow`,[de([{_0:`mode`,_1:t.mode},{_0:`delegatesFocus`,_1:t.delegatesFocus},{_0:`slotAssignment`,_1:t.slotAssignment}])])}function U(e){return wn(se(e,`parentNode`))}function W(e,t){return m(e,`appendChild`,[t])}function kn(e,t){return m(e,`removeChild`,[t])}function An(e,t,n){if(n.$tag===1){let r=n._0;return m(e,`insertBefore`,[t,r])}else return m(e,`insertBefore`,[t,ue()])}function jn(e,t){h(e,`textContent`,t)}function Mn(e,t){h(e,`className`,t)}function Nn(e,t,n){m(e,`setAttribute`,[t,n])}function Pn(e,t){m(e,`removeAttribute`,[t])}function Fn(e,t){return Tn(m(e,`querySelector`,[t]))}function In(e){return En(se(e,`body`))}function Ln(e){return m(e,`createDocumentFragment`,[])}function Rn(e,t){return m(e,`createComment`,[t])}function G(){let e=Xe.val;return Xe.val=e+1|0,e}function zn(e){let t=w.current_owner;t!==void 0&&Ut(t.disposers,e)}function Bn(e){let t=e.length-1|0;for(;;){let n=t;if(n>=0){ht(e,n)(),t=n-1|0;continue}else break}xn(e)}function Vn(e){let t=w.current_cleanups;return w.current_cleanups=e,t}function Hn(e,n){let r=Vn(new t(e));n(),w.current_cleanups=r}function Un(e,t){let n=w.current_subscriber;w.current_subscriber=e;let r=t();return w.current_subscriber=n,r}function Wn(e,t){let n=w.current_subscriber;w.current_subscriber=e,t(),w.current_subscriber=n}function K(e){let t={active:!0,cleanups:[]},n=G(),r={val:void 0},i=()=>{if(!t.active)return;Bn(t.cleanups);let n=r.val;n!==void 0&&Wn(n,()=>{Hn(t.cleanups,e)})};r.val={id:n,run:i},i();let a=()=>{t.active=!1,Bn(t.cleanups)};return zn(a),a}function q(e){let t=w.current_subscriber;if(t!==void 0){let n=t;H(V(e.subscribers),e=>e.id===n.id)||L(e.subscribers,n)}return e.value}function Gn(e){let t=w.current_subscriber;if(t!==void 0){let n=t;H(V(e.subscribers),e=>e.id===n.id)||L(e.subscribers,n)}return e.value}function Kn(e){let t=w.current_subscriber;if(t!==void 0){let n=t;H(V(e.subscribers),e=>e.id===n.id)||L(e.subscribers,n)}return e.value}function qn(e){let t=w.current_subscriber;if(t!==void 0){let n=t;H(V(e.subscribers),e=>e.id===n.id)||L(e.subscribers,n)}return e.value}function Jn(e){return{value:e,subscribers:[]}}function Yn(e){return{value:e,subscribers:[]}}function Xn(e){return{value:e,subscribers:[]}}function Zn(e){return{value:e,subscribers:[]}}function Qn(e){return Jn(e)}function $n(e){return Yn(e)}function er(e){return Xn(e)}function tr(e){return Zn(e)}function nr(e){let t=w.pending_ids,n=t.length,r=0;for(;;){let i=r;if(i<n){if(t[i]===e)return!0;r=i+1|0;continue}else break}return!1}function J(e){if(w.batch_depth>0){if(nr(e.id))return;Gt(w.pending_ids,e.id),L(w.pending_effects,e);return}else{let t=e.run;t();return}}function rr(e){let t=e.subscribers,n=t.length,r=0;for(;;){let e=r;if(e<n){let n=t[e];J(n),r=e+1|0;continue}else return}}function ir(e){let t=e.subscribers,n=t.length,r=0;for(;;){let e=r;if(e<n){let n=t[e];J(n),r=e+1|0;continue}else return}}function ar(e){let t=e.subscribers,n=t.length,r=0;for(;;){let e=r;if(e<n){let n=t[e];J(n),r=e+1|0;continue}else return}}function or(e){let t=e.subscribers,n=t.length,r=0;for(;;){let e=r;if(e<n){let n=t[e];J(n),r=e+1|0;continue}else return}}function sr(e,t){e.value=t,rr(e)}function Y(e,t){e.value=t,ir(e)}function cr(e,t){e.value=t,ar(e)}function lr(e,t){e.value=t,or(e)}function ur(e,t){e.value=t(e.value),rr(e)}function dr(e){let t=G(),n={value:xe,dirty:!0,subscribers:[]},r={val:void 0};return r.val={id:t,run:()=>{if(!n.dirty){n.dirty=!0;let e=n.subscribers,t=e.length,r=0;for(;;){let n=r;if(n<t){let t=e[n];J(t),r=n+1|0;continue}else return}}}},()=>{let t=w.current_subscriber;if(t!==void 0){let e=t;H(V(n.subscribers),t=>t.id===e.id)||L(n.subscribers,e)}if(n.dirty){let t=r.val;t===void 0||(n.value=new y(Un(t,e)),n.dirty=!1)}let i=n.value;if(i.$tag===1)return i._0;{let t=e();return n.value=new y(t),t}}}function fr(e,t){let n=e.subscribers,r=n.length,i=0,a=0;for(;;){let e=i,o=a;if(e<r){let r=n[e];if(r.id!==t){n[o]=r,i=e+1|0,a=o+1|0;continue}i=e+1|0;continue}else{dn(n,o);return}}}function pr(e,t){let n=G(),r={val:!0},i={id:n,run:()=>{if(r.val){t(e.value);return}else return}};return L(e.subscribers,i),()=>{r.val=!1,fr(e,n)}}function mr(e){return e.$tag===0}function hr(e){return e.$tag===1}function gr(e){return e.$tag===2}function _r(e){if(e.$tag===1){let t=e._0;return new y(t)}else return xe}function vr(e){if(e.$tag===2)return e._0}function yr(e){return qn(e.state)}function br(e){return e.state.value}function xr(e){let t=e.state;return mr(t.value)}function Sr(e){let t=e.state;return hr(t.value)}function Cr(e){let t=e.state;return gr(t.value)}function wr(e){let t=e.state;return _r(t.value)}function Tr(e){let t=e.state;return vr(t.value)}function Er(e){let t=e.refetch_;t()}function Dr(e){let t=$n(b),n=e=>{Y(t,new Se(e))},r=e=>{Y(t,new Ce(e))},i=()=>{Y(t,b),e(n,r)};return i(),{state:t,refetch_:i}}function Or(){let e=$n(b);return{_0:{state:e,refetch_:()=>{Y(e,b)}},_1:t=>{Y(e,new Se(t))},_2:t=>{Y(e,new Ce(t))}}}function kr(e){let t=Ze.val;return Ze.val=t+1|0,{id:t,default_value:()=>e,providers:[]}}function Ar(e,t){let n=t;for(;;){let t=n;if(t===void 0)return!1;{let r=t;if(r.id===e)return!r.disposed;n=r.parent;continue}}}function jr(e,t){let n=e.providers.length-1|0;for(;;){let r=n;if(r>=0){let i=_t(e.providers,r),a=i._0,o=i._1;if(Ar(a,t))return o;n=r-1|0;continue}else break}}function Mr(e,t){let n=w.current_owner;w.current_owner=e;let r=t();return w.current_owner=n,r}function Nr(e,t){let n=w.current_owner;w.current_owner=e;let r=t();return w.current_owner=n,r}function Pr(e){if(e.disposed)return;e.disposed=!0;let t=e.children.length-1|0;for(;;){let n=t;if(n>=0){Pr(gt(e.children,n)),t=n-1|0;continue}else break}let n=e.disposers.length-1|0;for(;;){let t=n;if(t>=0){ht(e.disposers,t)(),n=t-1|0;continue}else break}let r=e.cleanups.length-1|0;for(;;){let t=r;if(t>=0){ht(e.cleanups,t)(),r=t-1|0;continue}else break}Sn(e.children),xn(e.disposers),xn(e.cleanups);let i=e.parent;if(i!==void 0){let t=i.children,n=t.length,r=0,a=0;for(;;){let i=r,o=a;if(i<n){let n=t[i];if(n.id!==e.id){t[o]=n,r=i+1|0,a=o+1|0;continue}r=i+1|0;continue}else{pn(t,o);return}}}}function Fr(e){let t={id:G(),parent:e,children:[],cleanups:[],disposers:[],disposed:!1};return e===void 0||Kt(e.children,t),t}function Ir(e){let t=Fr(w.current_owner),n=()=>{Pr(t)};return Mr(t,()=>e(n))}function Lr(e,t,n){let r=w.current_owner,i=Fr(r),a=i.id;return qt(e.providers,{_0:a,_1:()=>t}),Ut(i.cleanups,()=>{let t=e.providers,n=t.length,r=0,i=0;for(;;){let e=r,o=i;if(e<n){let n=t[e];if(n._0!==a){t[o]=n,r=e+1|0,i=o+1|0;continue}r=e+1|0;continue}else{mn(t,o);return}}}),Mr(i,n)}function Rr(e,t,n){return w.current_owner===void 0?Ir(r=>Lr(e,t,n)):Lr(e,t,n)}function zr(e){let t=w.current_owner,n=jr(e,t);if(n===void 0){let t=e.default_value;return t()}else return n()}function Br(e){let t=w.current_subscriber;w.current_subscriber=void 0;let n=e();return w.current_subscriber=t,n}function Vr(e){let t=w.current_subscriber;w.current_subscriber=void 0,e(),w.current_subscriber=t}function Hr(e){Vr(e)}function Ur(){w.batch_depth=w.batch_depth+1|0}function Wr(){for(;;)if(w.pending_effects.length>0){let e=vn(w.pending_effects,0);yn(w.pending_ids,0);let t=e.run;t();continue}else return}function Gr(){if(w.batch_depth=w.batch_depth-1|0,w.batch_depth===0){Wr();return}else return}function Kr(e){Ur();let t=e();return Gr(),t}function qr(e){let t=w.current_cleanups;if(t.$tag===1){let n=t._0;Ut(n,e);return}else return}function Jr(e,t){return dr(()=>t(q(e)))}function Yr(e,t,n){return dr(()=>n(q(e),q(t)))}function X(e,t){let n=[],r=en(e),i=[],a=r.length,o=0;for(;;){let e=o;if(e<a){let a=r[e];a===t?(R(n,P({buf:i,start:0,end:i.length})),Cn(i)):B(i,a),o=e+1|0;continue}else break}return R(n,P({buf:i,start:0,end:i.length})),n}function Xr(e){let t=be(v(),e());return K(()=>{jn(t,e())}),new Te(t)}function Zr(e,t,n){if(t===`className`){Mn(e,n);return}else if(t===`value`){h(e,`value`,n);return}else if(t===`checked`){h(e,`checked`,n===`true`);return}else if(t===`disabled`)if(n===`true`){Nn(e,`disabled`,``);return}else{Pn(e,`disabled`);return}else{Nn(e,t,n);return}}function Qr(e,t){Nn(e,`style`,t)}function $r(e,t,n){switch(n.$tag){case 0:{let r=n._0;if(t===`style`){Qr(e,r);return}else{Zr(e,t,r);return}}case 1:{let r=n._0;K(()=>{let n=r();if(t===`style`){Qr(e,n);return}else{Zr(e,t,n);return}});return}default:{let r=n._0;if(t===`__ref`){r(e);return}else{Oe(e,t,r);return}}}}function ei(e){return{inner:e}}function Z(e){switch(e.$tag){case 0:return e._0.inner;case 1:return e._0;case 2:return e._0;default:return e._0}}function ti(e,t,n,r){let i=De(e,t),a=n.length,o=0;for(;;){let e=o;if(e<a){let t=n[e],r=t._0,a=t._1;$r(i,r,a),o=e+1|0;continue}else break}let s=r.length,c=0;for(;;){let e=c;if(e<s){let t=r[e];W(i,Z(t)),c=e+1|0;continue}else break}return new we(ei(i))}function ni(e,t,n){let r=ve(v(),e),i=t.length,a=0;for(;;){let e=a;if(e<i){let n=t[e],i=n._0,o=n._1;$r(r,i,o),a=e+1|0;continue}else break}let o=n.length,s=0;for(;;){let e=s;if(e<o){let t=n[e];W(r,Z(t)),s=e+1|0;continue}else break}return new we(ei(r))}function ri(e,t){W(e,Z(t))}function ii(e){jn(e,``)}function ai(e,t){ii(e),ri(e,t)}function oi(e){switch(e.length){case 0:return new x(Ln(v()));case 1:return mt(e,0);default:{let t=Ln(v()),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];W(t,Z(n)),r=i+1|0;continue}else break}return new x(t)}}}function si(e,t){let n=Rn(v(),`show`),r=w.current_owner,i=e(),a;if(i){let e;e=r===void 0?t():Nr(r,t),a=new g(Z(e))}else a=fe;let o={val:a};if(K(()=>{let i=e(),a=o.val;if(i===!0)if(a.$tag===0){let e=U(n);if(e.$tag===1){let i=e._0,a;a=r===void 0?t():Nr(r,t),An(i,Z(a),new g(n)),o.val=new g(Z(a));return}else return}else return;else if(a.$tag===1){let e=a._0,t=U(e);if(t.$tag===1){let n=t._0;kn(n,e),o.val=fe;return}else return}else return}),a.$tag===1){let e=a._0;return oi([new x(e),new x(n)])}else return new x(n)}function ci(e,t){return ke(e,t)}function li(e,t){let n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];if(ci(n.item,t))return i;r=i+1|0;continue}else break}return-1}function ui(e,t,n){if(n.$tag===1){let r=n._0;return Ae(e,t,r)}else return je(e,t)}function di(e,t,n,r,i){let a=n.length;if(a===0){let n=t.length,r=0;for(;;){let i=r;if(i<n){let n=t[i];Ne(e,n.dom),r=i+1|0;continue}else break}return[]}let o=[],s=0;for(;;){let e=s;if(e<a){Wt(o,{item:vt(n,0),dom:i}),s=e+1|0;continue}else break}let c=an(t.length,!1),l=i,u=a-1|0;for(;;){let i=u;if(i>=0){let a=vt(n,i),s=li(t,a);if(s>=0){let n=yt(t,s);on(c,s,!0),Me(n.dom,l)||ui(e,n.dom,new g(l)),l=n.dom,sn(o,i,n)}else{let t=r(a,i);An(e,t,new g(l)),l=t,sn(o,i,{item:a,dom:t})}u=i-1|0;continue}else break}let d=t.length,f=0;for(;;){let n=f;if(n<d){let r=t[n];bt(c,n)||Ne(e,r.dom),f=n+1|0;continue}else break}return o}function fi(e,t,n,r){let i=U(t);if(i.$tag===1){let a=i._0;e.val=di(a,e.val,n,r,t);return}else return}function pi(e,t){return{item:e,dom:t}}function mi(e,t){let n=v(),r=Rn(n,`for`),i={val:[]},a={val:!0},o=w.current_owner,s=(e,n)=>Z(o===void 0?t(e,n):Nr(o,()=>t(e,n))),c=Ln(n),l=e(),u=l.length,d=0;for(;;){let e=d;if(e<u){let t=l[e],n=s(t,e);Wt(i.val,pi(t,n)),W(c,n),d=e+1|0;continue}else break}return W(c,r),K(()=>{let t=e();if(a.val){a.val=!1;return}fi(i,r,t,s)}),new x(c)}function hi(e){return new Te(be(v(),e))}function gi(e){return new x(e)}function _i(){return le()}function vi(e){return hi(e)}function yi(e){return Xr(e)}function bi(e,t,n){return ni(e,t,n)}function xi(e,t,n){return ni(e,t,n)}function Si(e,t){let n=Jn(e.value),r={val:Pe};return pr(e,e=>{let i=r.val;if(i.$tag===1){let e=i._0;_e(e)}r.val=new Fe(ge(()=>{sr(n,e)},t))}),n}function Ci(e){switch(e.$tag){case 0:return e._0;case 1:return e._0;default:return e._0}}function wi(){return{mount:pe,use_shadow:!1,is_svg:!1}}function Ti(e){return{mount:new _(e),use_shadow:!1,is_svg:!1}}function Ei(){return{mount:pe,use_shadow:!0,is_svg:!1}}function Q(e,t){let n=v(),r=e.mount,i;if(r.$tag===1)i=r._0;else{let e=In(n);i=e.$tag===1?e._0:ve(n,`div`)}let a=e.is_svg?ye(n,`http://www.w3.org/2000/svg`,`g`):ve(n,`div`),o;e.use_shadow?(W(On(i,Dn(`open`,!1,`named`)),a),o=a):(W(i,a),o=a);let s=[],c=t.length,l=0;for(;;){let e=l;if(e<c){let n=t[e],r=Ci(n);W(o,r),Jt(s,r),l=e+1|0;continue}else break}return qr(()=>{let e=s.length,t=0;for(;;){let n=t;if(n<e){let e=s[n],r=U(e);if(r.$tag===1){let t=r._0;kn(t,e)}t=n+1|0;continue}else break}let n=U(a);if(n.$tag===1){let e=n._0;kn(e,a);return}else return}),new Re(Rn(n,`portal`))}function Di(e){return Q(wi(),e)}function Oi(e,t){let n=Fn(v(),e),r;if(n.$tag===1){let e=n._0;r=Ti(e)}else r=wi();return Q(r,t)}function ki(e){return Q(Ei(),e)}function Ai(e,t){return Q({mount:new _(e),use_shadow:!0,is_svg:!1},t)}function ji(e){if(e!==``){let t=[],n=X(e,38),r=n.length,i=0;for(;;){let e=i;if(e<r){let r=n[e],a=X(r,61);if(a.length===2)z(t,{_0:E(a,0),_1:E(a,1)});else{let e;e=a.length===1?E(a,0)!==``:!1,e&&z(t,{_0:E(a,0),_1:``})}i=e+1|0;continue}else break}return t}else return[]}function Mi(e){let t=en(e),n=-1,r=t.length,i=0;for(;;){let e=i;if(e<r){if(t[e]===63){n=e;break}i=e+1|0;continue}else break}return n===-1?{_0:e,_1:[]}:{_0:P(un(t,0,n)),_1:ji(P(un(t,n+1|0,void 0)))}}function Ni(e){return I(e,{str:`[`,start:0,end:1})&&F(e,{str:`]`,start:0,end:1})&&!I(e,{str:`[...`,start:0,end:4})&&!I(e,{str:`[[...`,start:0,end:5})}function Pi(e){if(e.length===0)return``;let t=T(0),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];i>0&&Ot(t,`/`),Ot(t,n),r=i+1|0;continue}else break}return t.val}function Fi(e){let t=X(e,47),n=[],r=t.length,i=0;for(;;){let e=i;if(e<r){let r=t[e];r!==``&&R(n,r),i=e+1|0;continue}else break}return n}function Ii(e,t){let n=$t(t);return I(e,{str:n,start:0,end:n.length})}function Li(e,t){let n=Fi(t.pattern),r=Fi(e),i=t.catch_all;if(i===void 0){if(n.length!==r.length)return S;let e=[],i=0,a=n.length,o=0;for(;;){let s=o;if(s<a){let a=n[s],c=E(r,s);if(Ii(a,58)||Ni(a))if(i<t.param_names.length)z(e,{_0:E(t.param_names,i),_1:c}),i=i+1|0;else return S;else if(a!==c)return S;o=s+1|0;continue}else break}return new ze(e)}else{let e=i,a=n.length-1|0,o=r.length;if(e.optional){if(o<a)return S}else if(o<=a)return S;let s=[],c=0,l=0;for(;;){let e=l;if(e<a){let i=E(n,e),a=E(r,e);if(Ii(i,58)||Ni(i))if(c<t.param_names.length)z(s,{_0:E(t.param_names,c),_1:a}),c=c+1|0;else return S;else if(i!==a)return S;l=e+1|0;continue}else break}let u=[],d=a;for(;;){let e=d;if(e<o){R(u,E(r,e)),d=e+1|0;continue}else break}let f=Pi(u);return z(s,{_0:e.name,_1:f}),new ze(s)}}function Ri(e,t){let n=Mi(e),r=n._0,i=n._1,a=t.length,o=0;for(;;){let e=o;if(e<a){let n=t[e],a=Li(r,n);if(a.$tag===1)return{route:n,params:a._0,query:i,path:r};o=e+1|0;continue}else break}}function zi(e){if(e===``||e===`/`)return`/`;let t=en(e),n=[],r=!1,i=t.length,a=0;for(;;){let e=a;if(e<i){let i=t[e];i===47?(r||B(n,i),r=!0):(B(n,i),r=!1),a=e+1|0;continue}else break}let o=n.length;return o>1&&xt(n,o-1|0)===47&&_n(n),P({buf:n,start:0,end:n.length})}function Bi(e){let t=[],n=X(e,47),r=n.length,i=0;for(;;){let e=i;if(e<r){_L:{let r=n[e];if(I(r,{str:`:`,start:0,end:1})&&r.length>1){let e;_L$2:{_L$3:{let t=A(r,1,void 0),n;if(t.$tag===1)n=t._0;else{t._0;break _L$3}e=N(n);break _L$2}break _L}R(t,e)}else if(I(r,{str:`[`,start:0,end:1})&&!I(r,{str:`[...`,start:0,end:4})&&!I(r,{str:`[[...`,start:0,end:5})&&F(r,{str:`]`,start:0,end:1})&&r.length>2){let e;_L$2:{_L$3:{let t=A(r,1,r.length-1|0),n;if(t.$tag===1)n=t._0;else{t._0;break _L$3}e=N(n);break _L$2}break _L}R(t,e)}break _L}i=e+1|0;continue}else break}return t}function Vi(e){let t=X(e,47);if(t.length===0)return;let n=E(t,t.length-1|0);if(I(n,{str:`[[...`,start:0,end:5})&&F(n,{str:`]]`,start:0,end:2})&&n.length>7){let e;_L:{_L$2:{let t=A(n,5,n.length-2|0),r;if(t.$tag===1)r=t._0;else{t._0;break _L$2}e=N(r);break _L}return}return{name:e,optional:!0}}if(I(n,{str:`[...`,start:0,end:4})&&F(n,{str:`]`,start:0,end:1})&&n.length>5){let e;_L:{_L$2:{let t=A(n,4,n.length-1|0),r;if(t.$tag===1)r=t._0;else{t._0;break _L$2}e=N(r);break _L}return}return{name:e,optional:!1}}}function Hi(e,t,n,r){let i=e.length,a=0;for(;;){let o=a;if(o<i){let i=e[o];switch(i.$tag){case 0:{let e=i,a=e._0,o=e._1,s=e._2,c=e._3,l=zi(`${t}${a}`),u=Bi(l),d=Vi(l);Yt(r,{pattern:l,param_names:u,component:o,layouts:bn(n),kind:0,title:s,meta:c,catch_all:d});break}case 2:{let e=i,n=e._0,a=e._1,o=zi(`${t}${n}`);Yt(r,{pattern:o,param_names:Bi(o),component:a,layouts:[],kind:1,title:``,meta:[],catch_all:Vi(o)});break}case 3:{let e=i,n=e._0,a=e._1,o=zi(`${t}${n}`);Yt(r,{pattern:o,param_names:Bi(o),component:a,layouts:[],kind:2,title:``,meta:[],catch_all:Vi(o)});break}default:{let e=i,a=e._0,o=e._1,s=e._2,c=zi(`${t}${a}`),l=bn(n);R(l,s),Hi(o,c,l,r)}}a=o+1|0;continue}else return}}function Ui(e,t){let n=[];return Hi(e,t,[],n),n}function Wi(){let e=Be(),t=Ve();return t===``?e:`${e}${t}`}function Gi(e){let t=Wi();cr(e.current_path,t),lr(e.current_match,Ri(t,e.routes))}function Ki(e,t){let n=Ui(e,t),r=Wi(),i=Ri(r,n),a={routes:n,base:t,current_path:er(r),current_match:tr(i)};return We(()=>{Gi(a)}),a}function qi(e,t){cr(e.current_path,t),lr(e.current_match,Ri(t,e.routes))}function Ji(e,t){He(t),qi(e,t)}function Yi(e,t){Ue(t),qi(e,t)}function Xi(e){return Gn(e.current_path)}function Zi(e){return Kn(e.current_match)}function Qi(e){return Qn(e)}function $i(e){return q(e)}function $(e,t){sr(e,t)}function ea(e,t){ur(e,t)}function ta(e){return e.value}function na(e,t){return pr(e,t)}function ra(e,t){return Jr(e,t)}function ia(e){return dr(e)}function aa(e,t,n){return Yr(e,t,n)}function oa(e){return K(e)}function sa(){Ur()}function ca(){Gr()}function la(e){return Br(e)}function ua(e){return Kr(e)}function da(e){qr(e)}function fa(e){return Ir(e)}function pa(){let e=w.current_owner;if(e!==void 0)return e}function ma(e,t){return Mr(e,t)}function ha(){return w.current_owner!==void 0}function ga(e){Hr(e)}function _a(e,t){return mi(e,t)}function va(e){return vi(e)}function ya(e){return yi(e)}function ba(e,t){ai(e,t)}function xa(e,t){ri(e,t)}function Sa(e,t){return si(e,t)}function Ca(e,t,n){return bi(e,t,n)}function wa(e,t,n){return xi(e,t,n)}function Ta(e){return oi(e)}function Ea(e,t,n){return ni(e,t,n)}function Da(e,t,n,r){return ti(e,t,n,r)}function Oa(){return`http://www.w3.org/2000/svg`}function ka(){return`http://www.w3.org/1998/Math/MathML`}function Aa(){return _i()}function ja(e,t){return Si(e,t)}function Ma(e,t){return new C(e,t,``,[])}function Na(e,t,n){return new C(e,t,n,[])}function Pa(e,t,n,r){return new C(e,t,n,r)}function Fa(e,t){return Ki(e,t)}function Ia(e,t){let n;return n=t===void 0?``:t,Fa(e,n)}function La(e,t){Ji(e,t)}function Ra(e,t){Yi(e,t)}function za(e){return Xi(e)}function Ba(e){return Zi(e)}function Va(e){return e.base}function Ha(e){return kr(e)}function Ua(e,t,n){return Rr(e,t,n)}function Wa(e){return zr(e)}function Ga(e){return Dr(e)}function Ka(){let e=Or();return{_0:e._0,_1:e._1,_2:e._2}}function qa(e){return yr(e)}function Ja(e){return br(e)}function Ya(e){Er(e)}function Xa(e){return xr(e)}function Za(e){return Sr(e)}function Qa(e){return Cr(e)}function $a(e){let t=wr(e);return t.$tag===1?t._0:Je()}function eo(e){let t=Tr(e);return t===void 0?``:t}function to(e){return mr(e)}function no(e){return hr(e)}function ro(e){return gr(e)}function io(e){let t=_r(e);return t.$tag===1?t._0:Je()}function ao(e){let t=vr(e);return t===void 0?``:t}function oo(e){return new Re(Z(e))}function so(e){return gi(Ci(e))}function co(e){let t=Array(e.length),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];t[i]=oo(n),r=i+1|0;continue}else break}return so(Di(t))}function lo(e,t){let n=Array(t.length),r=t.length,i=0;for(;;){let e=i;if(e<r){let r=t[e];n[e]=oo(r),i=e+1|0;continue}else break}return so(Oi(e,n))}function uo(e){let t=Array(e.length),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];t[i]=oo(n),r=i+1|0;continue}else break}return so(ki(t))}function fo(e,t){let n=Array(t.length),r=t.length,i=0;for(;;){let e=i;if(e<r){let r=t[e];n[e]=oo(r),i=e+1|0;continue}else break}return so(Ai(e,n))}function po(e){let t=Qi(e);return[()=>$i(t),e=>{typeof e==`function`?ea(t,e):$(t,e)}]}function mo(e){return oa(e)}function ho(e){return ia(e)}function go(e,t,n={}){let{defer:r=!1}=n,i=Array.isArray(e),a,o,s=!0;return n=>{let c=i?e.map(e=>e()):e();if(r&&s){s=!1,a=c;return}let l=t(c,a,n??o);return a=c,o=l,s=!1,l}}function _o(...e){let t={};for(let n of e)if(n)for(let e of Object.keys(n)){let r=n[e];if(e.startsWith(`on`)&&typeof r==`function`){let n=t[e];typeof n==`function`?t[e]=(...e)=>{n(...e),r(...e)}:t[e]=r}else if(e===`ref`&&typeof r==`function`){let n=t[e];typeof n==`function`?t[e]=e=>{n(e),r(e)}:t[e]=r}else if(e===`class`||e===`className`){let n=t[e];n?t[e]=`${n} ${r}`:t[e]=r}else e===`style`&&typeof r==`object`&&typeof t[e]==`object`?t[e]={...t[e],...r}:t[e]=r}return t}function vo(e,...t){let n=[],r={...e};for(let e of t){let t={};for(let n of e)n in r&&(t[n]=r[n],delete r[n]);n.push(t)}return n.push(r),n}function yo(e){let t=Ga(e),n=()=>io(qa(t));return Object.defineProperties(n,{loading:{get:()=>Xa(t)},error:{get:()=>eo(t)},state:{get:()=>Xa(t)?`pending`:Za(t)?`ready`:Qa(t)?`errored`:`unresolved`},latest:{get:()=>Ja(t)}}),[n,{refetch:()=>Ya(t)}]}function bo(){let e=Ka(),t=e._0,n=e._1,r=e._2,i=()=>io(qa(t));return Object.defineProperties(i,{loading:{get:()=>Xa(t)},error:{get:()=>eo(t)}}),[i,n,r]}function xo(e,t){let[n]=e,r=Qi(n()),i=ja(r,t);return[()=>$i(i),e=>$(r,e)]}function So(e){let{each:t,fallback:n,children:r}=e;return t?_a(typeof t==`function`?t:()=>t,(e,t)=>r(e,()=>t)):n??null}function Co(e){let{when:t,children:n}=e,r=typeof t==`function`?t:()=>t;return Sa(()=>!!r(),typeof n==`function`?()=>n(r()):()=>n)}function wo(e){let{each:t,fallback:n,children:r}=e;if(!t)return n??null;let i=typeof t==`function`?t:()=>t;return i().length===0&&n?n:_a(i,(e,t)=>r(()=>i()[t],t))}function To(e){let{context:t,value:n,children:r}=e;return Ua(t,n,()=>typeof r==`function`?r():r)}function Eo(e){let{fallback:t,children:n}=e,r;r=n?Array.isArray(n)?n.flat():[n]:[];let i=r.filter(e=>e&&e.__isMatch);if(i.length===0)return t??null;let a=ho(()=>{for(let e=0;e<i.length;e++)if(i[e].when())return e;return-1}),o=[];for(let e=0;e<i.length;e++){let t=i[e],n=e;o.push(Sa(()=>a()===n,()=>typeof t.children==`function`?t.children():t.children))}return t&&o.push(Sa(()=>a()===-1,()=>t)),Ta(o)}function Do(e){let{when:t,children:n}=e,r=typeof t==`function`?t:()=>t;return{__isMatch:!0,when:()=>!!r(),children:typeof n==`function`?()=>n(r()):n}}function Oo(e){let{mount:t,useShadow:n=!1,children:r}=e,i=typeof r==`function`?[r()]:Array.isArray(r)?r:[r];if(n){if(typeof t==`string`){let e=document.querySelector(t);if(e)return fo(e,i)}else if(t)return fo(t,i);return uo(i)}return typeof t==`string`?lo(t,i):co(i)}function ko(e){let t=new Map,n=structuredClone(e);function r(e){let r=e.join(`.`);if(!t.has(r)){let a=i(n,e);t.set(r,Qi(a))}return t.get(r)}function i(e,t){let n=e;for(let e of t){if(n==null)return;n=n[e]}return n}function a(e,t,n){if(t.length===0)return;let r=e;for(let e=0;e<t.length-1;e++){let n=t[e];if(r[n]==null){let i=t[e+1];r[n]=typeof i==`number`||/^\d+$/.test(i)?[]:{}}r=r[n]}r[t[t.length-1]]=n}function o(e){let r=e.join(`.`);sa();try{for(let[e,a]of t.entries())(e===r||e.startsWith(r+`.`))&&$(a,i(n,e.split(`.`)))}finally{ca()}}function s(e,t=[]){return typeof e!=`object`||!e?e:new Proxy(e,{get(e,n){if(typeof n==`symbol`)return e[n];let i=[...t,n];$i(r(i));let a=e[n];return typeof a==`object`&&a?s(a,i):a},set(e,n,r){let i=[...t,n];return e[n]=r,o(i),!0}})}function c(...e){if(e.length===0)return;let r=[],s=0;for(;s<e.length-1&&typeof e[s]==`string`;)r.push(e[s]),s++;let c=e[s];if(r.length===0&&typeof c==`object`&&c){Object.assign(n,c);for(let[e,r]of t.entries())$(r,i(n,e.split(`.`)));return}let l=i(n,r),u;u=typeof c==`function`?c(l):Array.isArray(c)?c:typeof c==`object`&&c&&typeof l==`object`&&l&&!Array.isArray(l)?{...l,...c}:c,a(n,r,u),o(r)}return[s(n),c]}function Ao(e){return t=>{let n=structuredClone(t);return e(n),n}}function jo(e){return()=>e}export{Xa as $,Aa as A,xa as B,aa as C,va as Ct,fa as D,Da as E,Wa as Et,ha as F,fo as G,ga as H,Ca as I,Ua as J,lo as K,wa as L,Ta as M,$i as N,Ia as O,pa as P,Qa as Q,ra as R,sa as S,Oa as St,Ea as T,ea as Tt,ta as U,da as V,co as W,eo as X,ba as Y,qa as Z,Ao as _,ro as _t,To as a,Pa as at,ua as b,io as bt,bo as c,Ba as ct,yo as d,Ra as dt,Za as et,po as f,la as ft,go as g,ao as gt,_o as h,Sa as ht,Oo as i,Ma as it,_a as j,oa as k,mo as l,za as lt,xo as m,$ as mt,wo as n,Ya as nt,Co as o,Na as ot,ko as p,ma as pt,uo as q,Do as r,$a as rt,Eo as s,Va as st,So as t,Ja as tt,ho as u,La as ut,jo as v,to as vt,Ha as w,ya as wt,ca as x,na as xt,vo as y,no as yt,ka as z};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luna_ui/luna",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Fine-grained reactive UI library for Moonbit/JS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
15
|
"import": "./dist/index.js"
|
|
16
16
|
},
|
|
17
|
+
"./event-utils": {
|
|
18
|
+
"types": "./dist/event-utils.d.ts",
|
|
19
|
+
"import": "./dist/event-utils.js"
|
|
20
|
+
},
|
|
17
21
|
"./jsx-runtime": {
|
|
18
22
|
"types": "./dist/jsx-runtime.d.ts",
|
|
19
23
|
"import": "./dist/jsx-runtime.js"
|
package/dist/src-BgIEfZkm.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const e={$tag:0};function t(e){this._0=e}t.prototype.$tag=1;var n=class extends Error{};function r(){throw new n}function i(e,t){if(t<0||t>=e.length)throw Error(`Index out of bounds`)}function a(e,t){let n=Array(e);return n.fill(t),n}function o(e){this._0=e}o.prototype.$tag=0;function s(e){this._0=e}s.prototype.$tag=1;const c={$tag:1},l={$tag:0},u=(e,t)=>e.toString(t),d=(e,t)=>{e.push(t)},f={$tag:0};function ee(e){this._0=e}ee.prototype.$tag=1;function te(e){this._0=e}te.prototype.$tag=2;function ne(e){this._0=e}ne.prototype.$tag=3;function re(e){this._0=e}re.prototype.$tag=4;const ie=e=>e.slice(0),p=(e,t)=>{e.length=t},ae=e=>e.pop(),oe=(e,t,n)=>e.splice(t,n),se=(e,t)=>e[t],m=(e,t,n)=>e[t](...n),ce=e=>e==null,le=()=>({}),ue=(e,t,n)=>{e[t]=n},de=()=>null,fe=e=>Object.fromEntries(e.map(e=>[e._0,e._1])),pe={$tag:0};function h(e){this._0=e}h.prototype.$tag=1;const me={$tag:0};function g(e){this._0=e}g.prototype.$tag=1;const he={$tag:0};function ge(e){this._0=e}ge.prototype.$tag=1;const _e=(e,t)=>setTimeout(e,t),ve=e=>clearTimeout(e),_=()=>document,ye=(e,t)=>e.createElement(t),be=(e,t,n)=>e.createElementNS(t,n),xe=(e,t)=>e.createTextNode(t),Se={$tag:0};function v(e){this._0=e}v.prototype.$tag=1;const y={$tag:0};function Ce(e){this._0=e}Ce.prototype.$tag=1;function we(e){this._0=e}we.prototype.$tag=2;function Te(e){this._0=e}Te.prototype.$tag=0;function Ee(e){this._0=e}Ee.prototype.$tag=1;function b(e){this._0=e}b.prototype.$tag=2;function De(e){this._0=e}De.prototype.$tag=3;const Oe=(e,t,n)=>e.addEventListener(t,n),ke=(e,t)=>e===t,Ae=(e,t,n)=>typeof e.moveBefore==`function`?(e.moveBefore(t,n),t):e.insertBefore(t,n),je=(e,t)=>typeof e.moveBefore==`function`?(e.moveBefore(t,null),t):e.insertBefore(t,null),Me=(e,t)=>e.nextSibling===t,Ne={$tag:0};function Pe(e){this._0=e}Pe.prototype.$tag=1;function Fe(e){this._0=e}Fe.prototype.$tag=0;function Ie(e){this._0=e}Ie.prototype.$tag=1;function Le(e){this._0=e}Le.prototype.$tag=2;const x={$tag:0};function Re(e){this._0=e}Re.prototype.$tag=1;const ze=()=>window.location.pathname,Be=()=>window.location.search,Ve=e=>window.history.pushState(null,``,e),He=e=>window.history.replaceState(null,``,e),Ue=e=>window.addEventListener(`popstate`,()=>e());function S(e,t,n,r){this._0=e,this._1=t,this._2=n,this._3=r}S.prototype.$tag=0;function We(e,t,n){this._0=e,this._1=t,this._2=n}We.prototype.$tag=1;function Ge(e,t){this._0=e,this._1=t}Ge.prototype.$tag=2;function Ke(e,t){this._0=e,this._1=t}Ke.prototype.$tag=3;const qe=()=>void 0,Je={method_0:Dt,method_1:Ot,method_2:Rt,method_3:ut},Ye={val:0},C={current_subscriber:void 0,current_owner:void 0,current_cleanups:e,batch_depth:0,pending_effects:[],pending_ids:[]},Xe={val:0};function Ze(e){return r()}function Qe(e){return r()}function $e(e){return r()}function et(e){return r()}function tt(e){r()}function nt(e){return r()}function rt(e,t){return e===0?t===0:t===1}function it(e,t){return Ze(`${e}\n at ${j(t)}\n`)}function at(e,t){return Qe(`${e}\n at ${j(t)}\n`)}function ot(e,t){return $e(`${e}\n at ${j(t)}\n`)}function st(e,t){return et(`${e}\n at ${j(t)}\n`)}function ct(e,t){tt(`${e}\n at ${j(t)}\n`)}function lt(e,t){return nt(`${e}\n at ${j(t)}\n`)}function w(e){return{val:``}}function ut(e,t){let n=e;n.val=`${n.val}${String.fromCodePoint(t)}`}function dt(e,t){return(((Math.imul(e-55296|0,1024)|0)+t|0)-56320|0)+65536|0}function ft(e,t){return!rt(e,t)}function pt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function mt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function ht(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function gt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function _t(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function vt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function yt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function T(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function bt(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}function xt(e,t){let n=e.end-e.start|0,r=t.end-t.start|0;if(r>0)if(n>=r){let o=a(256,r),s=r-1|0,c=0;for(;;){let e=c;if(e<s){let n=t.str,a=t.start+e|0,s=n.charCodeAt(a)&255;i(o,s),o[s]=(r-1|0)-e|0,c=e+1|0;continue}else break}let l=0;for(;;){let a=l;if(a<=(n-r|0)){let n=r-1|0,s=0;for(;;){let r=s;if(r<=n){let n=a+r|0,i=e.str,o=e.start+n|0,c=i.charCodeAt(o),l=t.str,u=t.start+r|0;if(c!==l.charCodeAt(u))break;s=r+1|0;continue}else return a}let c=(a+r|0)-1|0,u=e.str,d=e.start+c|0,f=u.charCodeAt(d)&255;i(o,f),l=a+o[f]|0;continue}else break}return}else return;else return 0}function St(e,t){let n=e.end-e.start|0,r=t.end-t.start|0;if(r>0)if(n>=r){let i=t.str,a=t.start+0|0,o=i.charCodeAt(a),s=n-r|0,c=0;for(;c<=s;){for(;;){let t;if(c<=s){let n=c,r=e.str,i=e.start+n|0;t=r.charCodeAt(i)!==o}else t=!1;if(t){c=c+1|0;continue}else break}if(c<=s){let n=1;for(;;){let i=n;if(i<r){let r=c+i|0,a=e.str,o=e.start+r|0,s=a.charCodeAt(o),l=t.str,u=t.start+i|0;if(s!==l.charCodeAt(u))break;n=i+1|0;continue}else return c}c=c+1|0}}return}else return;else return 0}function E(e,t){return(t.end-t.start|0)<=4?St(e,t):xt(e,t)}function Ct(e,t){let n=e.end-e.start|0,r=t.end-t.start|0;if(r>0)if(n>=r){let o=a(256,r),s=r-1|0;for(;;){let e=s;if(e>0){let n=t.str,r=t.start+e|0,a=n.charCodeAt(r)&255;i(o,a),o[a]=e,s=e-1|0;continue}else break}let c=n-r|0;for(;;){let n=c;if(n>=0){let a=0;for(;;){let i=a;if(i<r){let r=n+i|0,o=e.str,s=e.start+r|0,c=o.charCodeAt(s),l=t.str,u=t.start+i|0;if(c!==l.charCodeAt(u))break;a=i+1|0;continue}else return n}let s=e.str,l=e.start+n|0,u=s.charCodeAt(l)&255;i(o,u),c=n-o[u]|0;continue}else break}return}else return;else return n}function wt(e,t){let n=e.end-e.start|0,r=t.end-t.start|0;if(r>0)if(n>=r){let i=t.str,a=t.start+0|0,o=i.charCodeAt(a),s=n-r|0;for(;s>=0;){for(;;){let t;if(s>=0){let n=s,r=e.str,i=e.start+n|0;t=r.charCodeAt(i)!==o}else t=!1;if(t){s=s-1|0;continue}else break}if(s>=0){let n=1;for(;;){let i=n;if(i<r){let r=s+i|0,a=e.str,o=e.start+r|0,c=a.charCodeAt(o),l=t.str,u=t.start+i|0;if(c!==l.charCodeAt(u))break;n=i+1|0;continue}else return s}s=s-1|0}}return}else return;else return n}function D(e,t){return(t.end-t.start|0)<=4?wt(e,t):Ct(e,t)}function O(e,t,n){let r;return r=n===void 0?e.end-e.start|0:n,t>=0&&t<=r&&r<=(e.end-e.start|0)?{str:e.str,start:e.start+t|0,end:e.start+r|0}:st(`Invalid index for View`,`@moonbitlang/core/builtin:stringview.mbt:111:5-111:36`)}function Tt(e){let t=E(e,{str:`:`,start:0,end:1});if(t!==void 0){let n=t;return n>0&&(n+1|0)<(e.end-e.start|0)?{_0:O(e,0,n),_1:O(e,n+1|0,void 0)}:void 0}}function Et(e){_L:if(Pt(e,1,0,e.length))if(e.charCodeAt(0)===64){let t=Lt(e,1,0,e.length),n;n=t===void 0?e.length:t;let i={str:e,start:n,end:e.length},a=E(i,{str:`:`,start:0,end:1});if(a===void 0)return r();{let e=a,t=O(i,0,e),n=D(i,{str:`-`,start:0,end:1});if(n===void 0)return r();{let a=n;if((a+1|0)<(i.end-i.start|0)){let n=Tt(O(i,a+1|0,void 0));if(n===void 0)return r();{let o=n,s=o._0,c=o._1,l=O(i,0,a);_L$2:{let n=D(l,{str:`:`,start:0,end:1});if(n===void 0)break _L$2;{let i=D(O(l,0,n),{str:`:`,start:0,end:1});if(i===void 0)break _L$2;{let n=i;if((n+1|0)<(l.end-l.start|0)){let i=Tt(O(l,n+1|0,void 0));if(i===void 0)return r();{let a=i,o=a._0,u=a._1;return n>(e+1|0)?{pkg:t,filename:O(l,e+1|0,n),start_line:o,start_column:u,end_line:s,end_column:c}:r()}}else return r()}}}return r()}}else return r()}}}else break _L;else break _L;return r()}function Dt(e,t){let n=e;n.val=`${n.val}${t}`}function k(e,t,n){let r=e.length,i;if(n===void 0)i=r;else{let e=n;i=e<0?r+e|0:e}let a=t<0?r+t|0:t;if(a>=0&&a<=i&&i<=r){let t;if(a<r){let n=e.charCodeAt(a);t=56320<=n&&n<=57343}else t=!1;if(t)return new o(l);let n;if(i<r){let t=e.charCodeAt(i);n=56320<=t&&t<=57343}else n=!1;return n?new o(l):new s({str:e,start:a,end:i})}else return new o(c)}function Ot(e,t,n,i){let a;_L:{_L$2:{let e=k(t,n,n+i|0);if(e.$tag===1)a=e._0;else{e._0;break _L$2}break _L}a=r()}Rt(e,a)}function A(e){let t=w(0);return en(e,{self:t,method_table:Je}),t.val}function j(e){let t=w(0);return cn(e,{self:t,method_table:Je}),t.val}function kt(e,t){return u(e,t)}function M(e){return e.str.substring(e.start,e.end)}function At(e){return e()}function jt(e){return e()}function Mt(e){return t=>{for(;;){let n=At(e);if(n===void 0)return 1;if(t(n)!==1)return 0}}}function Nt(e){return t=>{for(;;){let n=jt(e);if(n===-1)return 1;if(t(n)!==1)return 0}}}function N(e){let t=w(Math.imul(e.end-e.start|0,4)|0),n=e.end-e.start|0,r=0;for(;;){let i=r;if(i<n){let n=e.buf[e.start+i|0];ut(t,n),r=i+1|0;continue}else break}return t.val}function Pt(e,t,n,r){let i;i=r===void 0?e.length:r;let a=n,o=0;for(;;){let n=a,r=o;if(n<i&&r<t){let t=e.charCodeAt(n);if(55296<=t&&t<=56319&&(n+1|0)<i){let t=n+1|0,i=e.charCodeAt(t);if(56320<=i&&i<=57343){a=n+2|0,o=r+1|0;continue}else ct(`invalid surrogate pair`,`@moonbitlang/core/builtin:string.mbt:491:9-491:40`)}a=n+1|0,o=r+1|0;continue}else return r>=t}}function Ft(e,t,n,r){let i=0,a=r;for(;(a-1|0)>=n&&i<t;){let t=a-1|0,n=e.charCodeAt(t);a=56320<=n&&n<=57343?a-2|0:a-1|0,i=i+1|0}return i<t||a<n?void 0:a}function It(e,t,n,r){if(n>=0&&n<=r){let i=n,a=0;for(;i<r&&a<t;){let t=i,n=e.charCodeAt(t);i=55296<=n&&n<=56319?i+2|0:i+1|0,a=a+1|0}return a<t||i>=r?void 0:i}else return lt(`Invalid start index`,`@moonbitlang/core/builtin:string.mbt:366:5-366:33`)}function Lt(e,t,n,r){let i;return i=r===void 0?e.length:r,t>=0?It(e,t,n,i):Ft(e,-t|0,n,i)}function Rt(e,t){let n=e;n.val=`${n.val}${M(t)}`}function zt(e,t){let n=D(e,t);return n===void 0?!1:n===((e.end-e.start|0)-(t.end-t.start|0)|0)}function P(e,t){return zt({str:e,start:0,end:e.length},t)}function Bt(e,t){let n=E(e,t);return n===void 0?!1:n===0}function F(e,t){return Bt({str:e,start:0,end:e.length},t)}function Vt(e){return[]}function I(e,t){d(e,t)}function Ht(e,t){d(e,t)}function Ut(e,t){d(e,t)}function Wt(e,t){d(e,t)}function Gt(e,t){d(e,t)}function Kt(e,t){d(e,t)}function qt(e,t){d(e,t)}function Jt(e,t){d(e,t)}function L(e,t){d(e,t)}function R(e,t){d(e,t)}function z(e,t){d(e,t)}function Yt(e){let t=e.length,n={val:0};return()=>{if(n.val<t){let r=n.val,i=e.charCodeAt(r);if(55296<=i&&i<=56319&&(n.val+1|0)<t){let t=n.val+1|0,r=e.charCodeAt(t);if(56320<=r&&r<=57343){let e=dt(i,r);return n.val=n.val+2|0,e}}return n.val=n.val+1|0,i}else return-1}}function Xt(e){return Nt(Yt(e))}function Zt(e,t){return e(t)}function Qt(e){return String.fromCodePoint(e)}function $t(e){let t=Xt(e),n={val:Vt(e.length)},i={val:f};t(e=>{let t=n.val;return z(t,e),n.val=t,1});let a=i.val;switch(a.$tag){case 0:break;case 1:a._0;break;case 2:return a._0;case 3:r();break;default:r()}return n.val}function en(e,t){t.method_table.method_0(t.self,kt(e,10))}function tn(e){let t={val:0};return()=>{if(t.val<(e.end-e.start|0)){let n=e.buf[e.start+t.val|0];return t.val=t.val+1|0,n}else return}}function nn(e){return tn({buf:e,start:0,end:e.length})}function B(e){return Mt(nn(e))}function V(e,t){return ft(Zt(e,e=>t(e)?0:1),1)}function rn(e,t){let n=Array(e),r=0;for(;;){let i=r;if(i<e){n[i]=t,r=i+1|0;continue}else break}return n}function an(e,t,n){let a=e.length;if(t>=0&&t<a){i(e,t),e[t]=n;return}else{r();return}}function on(e,t,n){let a=e.length;if(t>=0&&t<a){i(e,t),e[t]=n;return}else{r();return}}function sn(e,t){let n=e.pkg,r=E(n,{str:`/`,start:0,end:1}),i;if(r===void 0)i={_0:n,_1:void 0};else{let e=r,t=E(O(n,e+1|0,void 0),{str:`/`,start:0,end:1});if(t===void 0)i={_0:n,_1:void 0};else{let r=t,a=(e+1|0)+r|0;i={_0:O(n,0,a),_1:O(n,a+1|0,void 0)}}}let a=i._0,o=i._1;if(o!==void 0){let e=o;t.method_table.method_2(t.self,e),t.method_table.method_3(t.self,47)}t.method_table.method_2(t.self,e.filename),t.method_table.method_3(t.self,58),t.method_table.method_2(t.self,e.start_line),t.method_table.method_3(t.self,58),t.method_table.method_2(t.self,e.start_column),t.method_table.method_3(t.self,45),t.method_table.method_2(t.self,e.end_line),t.method_table.method_3(t.self,58),t.method_table.method_2(t.self,e.end_column),t.method_table.method_3(t.self,64),t.method_table.method_2(t.self,a)}function cn(e,t){sn(Et(e),t)}function ln(e,t,n){let r=e.length,i;if(n===void 0)i=r;else{let e=n;i=e<0?r+e|0:e}let a=t<0?r+t|0:t;return a>=0&&a<=i&&i<=r?{buf:e,start:a,end:i}:ot(`View index out of bounds`,`@moonbitlang/core/builtin:arrayview.mbt:200:5-200:38`)}function un(e,t){p(e,t)}function dn(e,t){p(e,t)}function fn(e,t){p(e,t)}function pn(e,t){p(e,t)}function mn(e,t){p(e,t)}function hn(e){return ae(e)}function gn(e){return e.length===0?-1:hn(e)}function _n(e,t){if(t>=0&&t<e.length){i(e,t);let n=e[t];return oe(e,t,1),n}else return it(`index out of bounds: the len is from 0 to ${A(e.length)} but the index is ${A(t)}`,`@moonbitlang/core/builtin:arraycore_js.mbt:241:5-243:6`)}function vn(e,t){if(t>=0&&t<e.length){i(e,t);let n=e[t];return oe(e,t,1),n}else return at(`index out of bounds: the len is from 0 to ${A(e.length)} but the index is ${A(t)}`,`@moonbitlang/core/builtin:arraycore_js.mbt:241:5-243:6`)}function yn(e){return ie(e)}function bn(e){dn(e,0)}function xn(e){fn(e,0)}function Sn(e){mn(e,0)}function Cn(e){return ce(e)?pe:new h(e)}function wn(e){return ce(e)?me:new g(e)}function Tn(e){return ce(e)?he:new ge(e)}function En(e,t,n){return{mode:e,delegatesFocus:t,slotAssignment:n}}function Dn(e,t){return m(e,`attachShadow`,[fe([{_0:`mode`,_1:t.mode},{_0:`delegatesFocus`,_1:t.delegatesFocus},{_0:`slotAssignment`,_1:t.slotAssignment}])])}function H(e){return Cn(se(e,`parentNode`))}function U(e,t){return m(e,`appendChild`,[t])}function W(e,t){return m(e,`removeChild`,[t])}function On(e,t,n){if(n.$tag===1){let r=n._0;return m(e,`insertBefore`,[t,r])}else return m(e,`insertBefore`,[t,de()])}function kn(e,t){ue(e,`textContent`,t)}function An(e,t){ue(e,`className`,t)}function jn(e,t,n){m(e,`setAttribute`,[t,n])}function Mn(e,t){m(e,`removeAttribute`,[t])}function Nn(e,t){return wn(m(e,`querySelector`,[t]))}function Pn(e){return Tn(se(e,`body`))}function Fn(e){return m(e,`createDocumentFragment`,[])}function In(e,t){return m(e,`createComment`,[t])}function G(){let e=Ye.val;return Ye.val=e+1|0,e}function Ln(e){let t=C.current_owner;t!==void 0&&Ht(t.disposers,e)}function Rn(e){let t=e.length-1|0;for(;;){let n=t;if(n>=0){mt(e,n)(),t=n-1|0;continue}else break}bn(e)}function zn(e){let t=C.current_cleanups;return C.current_cleanups=e,t}function Bn(e,n){let r=zn(new t(e));n(),C.current_cleanups=r}function Vn(e,t){let n=C.current_subscriber;C.current_subscriber=e;let r=t();return C.current_subscriber=n,r}function Hn(e,t){let n=C.current_subscriber;C.current_subscriber=e,t(),C.current_subscriber=n}function K(e){let t={active:!0,cleanups:[]},n=G(),r={val:void 0},i=()=>{if(!t.active)return;Rn(t.cleanups);let n=r.val;n!==void 0&&Hn(n,()=>{Bn(t.cleanups,e)})};r.val={id:n,run:i},i();let a=()=>{t.active=!1,Rn(t.cleanups)};return Ln(a),a}function q(e){let t=C.current_subscriber;if(t!==void 0){let n=t;V(B(e.subscribers),e=>e.id===n.id)||I(e.subscribers,n)}return e.value}function Un(e){let t=C.current_subscriber;if(t!==void 0){let n=t;V(B(e.subscribers),e=>e.id===n.id)||I(e.subscribers,n)}return e.value}function Wn(e){let t=C.current_subscriber;if(t!==void 0){let n=t;V(B(e.subscribers),e=>e.id===n.id)||I(e.subscribers,n)}return e.value}function Gn(e){let t=C.current_subscriber;if(t!==void 0){let n=t;V(B(e.subscribers),e=>e.id===n.id)||I(e.subscribers,n)}return e.value}function Kn(e){return{value:e,subscribers:[]}}function qn(e){return{value:e,subscribers:[]}}function Jn(e){return{value:e,subscribers:[]}}function Yn(e){return{value:e,subscribers:[]}}function Xn(e){return Kn(e)}function Zn(e){return qn(e)}function Qn(e){return Jn(e)}function $n(e){return Yn(e)}function er(e){let t=C.pending_ids,n=t.length,r=0;for(;;){let i=r;if(i<n){if(t[i]===e)return!0;r=i+1|0;continue}else break}return!1}function J(e){if(C.batch_depth>0){if(er(e.id))return;Wt(C.pending_ids,e.id),I(C.pending_effects,e);return}else{let t=e.run;t();return}}function tr(e){let t=e.subscribers,n=t.length,r=0;for(;;){let e=r;if(e<n){let n=t[e];J(n),r=e+1|0;continue}else return}}function nr(e){let t=e.subscribers,n=t.length,r=0;for(;;){let e=r;if(e<n){let n=t[e];J(n),r=e+1|0;continue}else return}}function rr(e){let t=e.subscribers,n=t.length,r=0;for(;;){let e=r;if(e<n){let n=t[e];J(n),r=e+1|0;continue}else return}}function ir(e){let t=e.subscribers,n=t.length,r=0;for(;;){let e=r;if(e<n){let n=t[e];J(n),r=e+1|0;continue}else return}}function ar(e,t){e.value=t,tr(e)}function Y(e,t){e.value=t,nr(e)}function or(e,t){e.value=t,rr(e)}function sr(e,t){e.value=t,ir(e)}function cr(e,t){e.value=t(e.value),tr(e)}function lr(e){let t=G(),n={value:Se,dirty:!0,subscribers:[]},r={val:void 0};return r.val={id:t,run:()=>{if(!n.dirty){n.dirty=!0;let e=n.subscribers,t=e.length,r=0;for(;;){let n=r;if(n<t){let t=e[n];J(t),r=n+1|0;continue}else return}}}},()=>{let t=C.current_subscriber;if(t!==void 0){let e=t;V(B(n.subscribers),t=>t.id===e.id)||I(n.subscribers,e)}if(n.dirty){let t=r.val;t===void 0||(n.value=new v(Vn(t,e)),n.dirty=!1)}let i=n.value;if(i.$tag===1)return i._0;{let t=e();return n.value=new v(t),t}}}function ur(e,t){let n=e.subscribers,r=n.length,i=0,a=0;for(;;){let e=i,o=a;if(e<r){let r=n[e];if(r.id!==t){n[o]=r,i=e+1|0,a=o+1|0;continue}i=e+1|0;continue}else{un(n,o);return}}}function dr(e,t){let n=G(),r={val:!0},i={id:n,run:()=>{if(r.val){t(e.value);return}else return}};return I(e.subscribers,i),()=>{r.val=!1,ur(e,n)}}function fr(e){return e.$tag===0}function pr(e){return e.$tag===1}function mr(e){return e.$tag===2}function hr(e){if(e.$tag===1){let t=e._0;return new v(t)}else return Se}function gr(e){if(e.$tag===2)return e._0}function _r(e){return Gn(e.state)}function vr(e){return e.state.value}function yr(e){let t=e.state;return fr(t.value)}function br(e){let t=e.state;return pr(t.value)}function xr(e){let t=e.state;return mr(t.value)}function Sr(e){let t=e.state;return hr(t.value)}function Cr(e){let t=e.state;return gr(t.value)}function wr(e){let t=e.refetch_;t()}function Tr(e){let t=Zn(y),n=e=>{Y(t,new Ce(e))},r=e=>{Y(t,new we(e))},i=()=>{Y(t,y),e(n,r)};return i(),{state:t,refetch_:i}}function Er(){let e=Zn(y);return{_0:{state:e,refetch_:()=>{Y(e,y)}},_1:t=>{Y(e,new Ce(t))},_2:t=>{Y(e,new we(t))}}}function Dr(e){let t=Xe.val;return Xe.val=t+1|0,{id:t,default_value:()=>e,providers:[]}}function Or(e,t){let n=t;for(;;){let t=n;if(t===void 0)return!1;{let r=t;if(r.id===e)return!r.disposed;n=r.parent;continue}}}function kr(e,t){let n=e.providers.length-1|0;for(;;){let r=n;if(r>=0){let i=gt(e.providers,r),a=i._0,o=i._1;if(Or(a,t))return o;n=r-1|0;continue}else break}}function Ar(e,t){let n=C.current_owner;C.current_owner=e;let r=t();return C.current_owner=n,r}function jr(e,t){let n=C.current_owner;C.current_owner=e;let r=t();return C.current_owner=n,r}function Mr(e){if(e.disposed)return;e.disposed=!0;let t=e.children.length-1|0;for(;;){let n=t;if(n>=0){Mr(ht(e.children,n)),t=n-1|0;continue}else break}let n=e.disposers.length-1|0;for(;;){let t=n;if(t>=0){mt(e.disposers,t)(),n=t-1|0;continue}else break}let r=e.cleanups.length-1|0;for(;;){let t=r;if(t>=0){mt(e.cleanups,t)(),r=t-1|0;continue}else break}xn(e.children),bn(e.disposers),bn(e.cleanups);let i=e.parent;if(i!==void 0){let t=i.children,n=t.length,r=0,a=0;for(;;){let i=r,o=a;if(i<n){let n=t[i];if(n.id!==e.id){t[o]=n,r=i+1|0,a=o+1|0;continue}r=i+1|0;continue}else{fn(t,o);return}}}}function Nr(e){let t={id:G(),parent:e,children:[],cleanups:[],disposers:[],disposed:!1};return e===void 0||Gt(e.children,t),t}function Pr(e){let t=Nr(C.current_owner),n=()=>{Mr(t)};return Ar(t,()=>e(n))}function Fr(e,t,n){let r=C.current_owner,i=Nr(r),a=i.id;return Kt(e.providers,{_0:a,_1:()=>t}),Ht(i.cleanups,()=>{let t=e.providers,n=t.length,r=0,i=0;for(;;){let e=r,o=i;if(e<n){let n=t[e];if(n._0!==a){t[o]=n,r=e+1|0,i=o+1|0;continue}r=e+1|0;continue}else{pn(t,o);return}}}),Ar(i,n)}function Ir(e,t,n){return C.current_owner===void 0?Pr(r=>Fr(e,t,n)):Fr(e,t,n)}function Lr(e){let t=C.current_owner,n=kr(e,t);if(n===void 0){let t=e.default_value;return t()}else return n()}function Rr(e){let t=C.current_subscriber;C.current_subscriber=void 0;let n=e();return C.current_subscriber=t,n}function zr(e){let t=C.current_subscriber;C.current_subscriber=void 0,e(),C.current_subscriber=t}function Br(e){zr(e)}function Vr(){C.batch_depth=C.batch_depth+1|0}function Hr(){for(;;)if(C.pending_effects.length>0){let e=_n(C.pending_effects,0);vn(C.pending_ids,0);let t=e.run;t();continue}else return}function Ur(){if(C.batch_depth=C.batch_depth-1|0,C.batch_depth===0){Hr();return}else return}function Wr(e){Vr();let t=e();return Ur(),t}function Gr(e){let t=C.current_cleanups;if(t.$tag===1){let n=t._0;Ht(n,e);return}else return}function Kr(e,t){return lr(()=>t(q(e)))}function qr(e,t,n){return lr(()=>n(q(e),q(t)))}function X(e,t){let n=[],r=$t(e),i=[],a=r.length,o=0;for(;;){let e=o;if(e<a){let a=r[e];a===t?(L(n,N({buf:i,start:0,end:i.length})),Sn(i)):z(i,a),o=e+1|0;continue}else break}return L(n,N({buf:i,start:0,end:i.length})),n}function Jr(e){let t=xe(_(),e());return K(()=>{kn(t,e())}),new Ee(t)}function Yr(e,t,n){if(t===`className`){An(e,n);return}else if(t===`value`){ue(e,`value`,n);return}else if(t===`checked`){ue(e,`checked`,n===`true`);return}else if(t===`disabled`)if(n===`true`){jn(e,`disabled`,``);return}else{Mn(e,`disabled`);return}else{jn(e,t,n);return}}function Xr(e,t){jn(e,`style`,t)}function Zr(e,t,n){switch(n.$tag){case 0:{let r=n._0;if(t===`style`){Xr(e,r);return}else{Yr(e,t,r);return}}case 1:{let r=n._0;K(()=>{let n=r();if(t===`style`){Xr(e,n);return}else{Yr(e,t,n);return}});return}default:{let r=n._0;if(t===`__ref`){r(e);return}else{Oe(e,t,r);return}}}}function Qr(e){return{inner:e}}function Z(e){switch(e.$tag){case 0:return e._0.inner;case 1:return e._0;case 2:return e._0;default:return e._0}}function $r(e,t,n){let r=ye(_(),e),i=t.length,a=0;for(;;){let e=a;if(e<i){let n=t[e],i=n._0,o=n._1;Zr(r,i,o),a=e+1|0;continue}else break}let o=n.length,s=0;for(;;){let e=s;if(e<o){let t=n[e];U(r,Z(t)),s=e+1|0;continue}else break}return new Te(Qr(r))}function ei(e,t){U(e,Z(t))}function ti(e){kn(e,``)}function ni(e,t){ti(e),ei(e,t)}function ri(e){switch(e.length){case 0:return new b(Fn(_()));case 1:return pt(e,0);default:{let t=Fn(_()),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];U(t,Z(n)),r=i+1|0;continue}else break}return new b(t)}}}function ii(e,t){let n=In(_(),`show`),r=C.current_owner,i=e(),a;if(i){let e;e=r===void 0?t():jr(r,t),a=new h(Z(e))}else a=pe;let o={val:a};if(K(()=>{let i=e(),a=o.val;if(i===!0)if(a.$tag===0){let e=H(n);if(e.$tag===1){let i=e._0,a;a=r===void 0?t():jr(r,t),On(i,Z(a),new h(n)),o.val=new h(Z(a));return}else return}else return;else if(a.$tag===1){let e=a._0,t=H(e);if(t.$tag===1){let n=t._0;W(n,e),o.val=pe;return}else return}else return}),a.$tag===1){let e=a._0;return ri([new b(e),new b(n)])}else return new b(n)}function ai(e,t){return ke(e,t)}function oi(e,t){let n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];if(ai(n.item,t))return i;r=i+1|0;continue}else break}return-1}function si(e,t,n){if(n.$tag===1){let r=n._0;return Ae(e,t,r)}else return je(e,t)}function ci(e,t,n,r,i){let a=n.length;if(a===0){let n=t.length,r=0;for(;;){let i=r;if(i<n){let n=t[i];W(e,n.dom),r=i+1|0;continue}else break}return[]}let o=[],s=0;for(;;){let e=s;if(e<a){Ut(o,{item:_t(n,0),dom:i}),s=e+1|0;continue}else break}let c=rn(t.length,!1),l=i,u=a-1|0;for(;;){let i=u;if(i>=0){let a=_t(n,i),s=oi(t,a);if(s>=0){let n=vt(t,s);an(c,s,!0),Me(n.dom,l)||si(e,n.dom,new h(l)),l=n.dom,on(o,i,n)}else{let t=r(a,i);On(e,t,new h(l)),l=t,on(o,i,{item:a,dom:t})}u=i-1|0;continue}else break}let d=t.length,f=0;for(;;){let n=f;if(n<d){let r=t[n];yt(c,n)||W(e,r.dom),f=n+1|0;continue}else break}return o}function li(e,t,n,r){let i=H(t);if(i.$tag===1){let a=i._0;e.val=ci(a,e.val,n,r,t);return}else return}function ui(e,t){return{item:e,dom:t}}function di(e,t){let n=_(),r=In(n,`for`),i={val:[]},a={val:!0},o=C.current_owner,s=(e,n)=>Z(o===void 0?t(e,n):jr(o,()=>t(e,n))),c=Fn(n),l=e(),u=l.length,d=0;for(;;){let e=d;if(e<u){let t=l[e],n=s(t,e);Ut(i.val,ui(t,n)),U(c,n),d=e+1|0;continue}else break}return U(c,r),K(()=>{let t=e();if(a.val){a.val=!1;return}li(i,r,t,s)}),new b(c)}function fi(e){return new Ee(xe(_(),e))}function pi(e){return new b(e)}function mi(){return le()}function hi(e){return fi(e)}function gi(e){return Jr(e)}function _i(e,t,n){return $r(e,t,n)}function vi(e,t,n){return $r(e,t,n)}function yi(e,t){let n=Kn(e.value),r={val:Ne};return dr(e,e=>{let i=r.val;if(i.$tag===1){let e=i._0;ve(e)}r.val=new Pe(_e(()=>{ar(n,e)},t))}),n}function bi(e){switch(e.$tag){case 0:return e._0;case 1:return e._0;default:return e._0}}function xi(){return{mount:me,use_shadow:!1,is_svg:!1}}function Si(e){return{mount:new g(e),use_shadow:!1,is_svg:!1}}function Ci(){return{mount:me,use_shadow:!0,is_svg:!1}}function wi(e,t){let n=_(),r=e.mount,i;if(r.$tag===1)i=r._0;else{let e=Pn(n);i=e.$tag===1?e._0:ye(n,`div`)}let a=e.is_svg?be(n,`http://www.w3.org/2000/svg`,`g`):ye(n,`div`),o;e.use_shadow?(U(Dn(i,En(`open`,!1,`named`)),a),o=a):(U(i,a),o=a);let s=[],c=t.length,l=0;for(;;){let e=l;if(e<c){let n=t[e],r=bi(n);U(o,r),qt(s,r),l=e+1|0;continue}else break}return Gr(()=>{let e=s.length,t=0;for(;;){let n=t;if(n<e){let e=s[n],r=H(e);if(r.$tag===1){let t=r._0;W(t,e)}t=n+1|0;continue}else break}let n=H(a);if(n.$tag===1){let e=n._0;W(e,a);return}else return}),new Le(In(n,`portal`))}function Ti(e){return wi(xi(),e)}function Ei(e,t){let n=Nn(_(),e),r;if(n.$tag===1){let e=n._0;r=Si(e)}else r=xi();return wi(r,t)}function Di(e){return wi(Ci(),e)}function Oi(e,t){return wi({mount:new g(e),use_shadow:!0,is_svg:!1},t)}function ki(e){if(e!==``){let t=[],n=X(e,38),r=n.length,i=0;for(;;){let e=i;if(e<r){let r=n[e],a=X(r,61);if(a.length===2)R(t,{_0:T(a,0),_1:T(a,1)});else{let e;e=a.length===1?T(a,0)!==``:!1,e&&R(t,{_0:T(a,0),_1:``})}i=e+1|0;continue}else break}return t}else return[]}function Ai(e){let t=$t(e),n=-1,r=t.length,i=0;for(;;){let e=i;if(e<r){if(t[e]===63){n=e;break}i=e+1|0;continue}else break}return n===-1?{_0:e,_1:[]}:{_0:N(ln(t,0,n)),_1:ki(N(ln(t,n+1|0,void 0)))}}function ji(e){return F(e,{str:`[`,start:0,end:1})&&P(e,{str:`]`,start:0,end:1})&&!F(e,{str:`[...`,start:0,end:4})&&!F(e,{str:`[[...`,start:0,end:5})}function Mi(e){if(e.length===0)return``;let t=w(0),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];i>0&&Dt(t,`/`),Dt(t,n),r=i+1|0;continue}else break}return t.val}function Ni(e){let t=X(e,47),n=[],r=t.length,i=0;for(;;){let e=i;if(e<r){let r=t[e];r!==``&&L(n,r),i=e+1|0;continue}else break}return n}function Pi(e,t){let n=Qt(t);return F(e,{str:n,start:0,end:n.length})}function Fi(e,t){let n=Ni(t.pattern),r=Ni(e),i=t.catch_all;if(i===void 0){if(n.length!==r.length)return x;let e=[],i=0,a=n.length,o=0;for(;;){let s=o;if(s<a){let a=n[s],c=T(r,s);if(Pi(a,58)||ji(a))if(i<t.param_names.length)R(e,{_0:T(t.param_names,i),_1:c}),i=i+1|0;else return x;else if(a!==c)return x;o=s+1|0;continue}else break}return new Re(e)}else{let e=i,a=n.length-1|0,o=r.length;if(e.optional){if(o<a)return x}else if(o<=a)return x;let s=[],c=0,l=0;for(;;){let e=l;if(e<a){let i=T(n,e),a=T(r,e);if(Pi(i,58)||ji(i))if(c<t.param_names.length)R(s,{_0:T(t.param_names,c),_1:a}),c=c+1|0;else return x;else if(i!==a)return x;l=e+1|0;continue}else break}let u=[],d=a;for(;;){let e=d;if(e<o){L(u,T(r,e)),d=e+1|0;continue}else break}let f=Mi(u);return R(s,{_0:e.name,_1:f}),new Re(s)}}function Ii(e,t){let n=Ai(e),r=n._0,i=n._1,a=t.length,o=0;for(;;){let e=o;if(e<a){let n=t[e],a=Fi(r,n);if(a.$tag===1)return{route:n,params:a._0,query:i,path:r};o=e+1|0;continue}else break}}function Li(e){if(e===``||e===`/`)return`/`;let t=$t(e),n=[],r=!1,i=t.length,a=0;for(;;){let e=a;if(e<i){let i=t[e];i===47?(r||z(n,i),r=!0):(z(n,i),r=!1),a=e+1|0;continue}else break}let o=n.length;return o>1&&bt(n,o-1|0)===47&&gn(n),N({buf:n,start:0,end:n.length})}function Ri(e){let t=[],n=X(e,47),r=n.length,i=0;for(;;){let e=i;if(e<r){_L:{let r=n[e];if(F(r,{str:`:`,start:0,end:1})&&r.length>1){let e;_L$2:{_L$3:{let t=k(r,1,void 0),n;if(t.$tag===1)n=t._0;else{t._0;break _L$3}e=M(n);break _L$2}break _L}L(t,e)}else if(F(r,{str:`[`,start:0,end:1})&&!F(r,{str:`[...`,start:0,end:4})&&!F(r,{str:`[[...`,start:0,end:5})&&P(r,{str:`]`,start:0,end:1})&&r.length>2){let e;_L$2:{_L$3:{let t=k(r,1,r.length-1|0),n;if(t.$tag===1)n=t._0;else{t._0;break _L$3}e=M(n);break _L$2}break _L}L(t,e)}break _L}i=e+1|0;continue}else break}return t}function zi(e){let t=X(e,47);if(t.length===0)return;let n=T(t,t.length-1|0);if(F(n,{str:`[[...`,start:0,end:5})&&P(n,{str:`]]`,start:0,end:2})&&n.length>7){let e;_L:{_L$2:{let t=k(n,5,n.length-2|0),r;if(t.$tag===1)r=t._0;else{t._0;break _L$2}e=M(r);break _L}return}return{name:e,optional:!0}}if(F(n,{str:`[...`,start:0,end:4})&&P(n,{str:`]`,start:0,end:1})&&n.length>5){let e;_L:{_L$2:{let t=k(n,4,n.length-1|0),r;if(t.$tag===1)r=t._0;else{t._0;break _L$2}e=M(r);break _L}return}return{name:e,optional:!1}}}function Bi(e,t,n,r){let i=e.length,a=0;for(;;){let o=a;if(o<i){let i=e[o];switch(i.$tag){case 0:{let e=i,a=e._0,o=e._1,s=e._2,c=e._3,l=Li(`${t}${a}`),u=Ri(l),d=zi(l);Jt(r,{pattern:l,param_names:u,component:o,layouts:yn(n),kind:0,title:s,meta:c,catch_all:d});break}case 2:{let e=i,n=e._0,a=e._1,o=Li(`${t}${n}`);Jt(r,{pattern:o,param_names:Ri(o),component:a,layouts:[],kind:1,title:``,meta:[],catch_all:zi(o)});break}case 3:{let e=i,n=e._0,a=e._1,o=Li(`${t}${n}`);Jt(r,{pattern:o,param_names:Ri(o),component:a,layouts:[],kind:2,title:``,meta:[],catch_all:zi(o)});break}default:{let e=i,a=e._0,o=e._1,s=e._2,c=Li(`${t}${a}`),l=yn(n);L(l,s),Bi(o,c,l,r)}}a=o+1|0;continue}else return}}function Vi(e,t){let n=[];return Bi(e,t,[],n),n}function Hi(){let e=ze(),t=Be();return t===``?e:`${e}${t}`}function Ui(e){let t=Hi();or(e.current_path,t),sr(e.current_match,Ii(t,e.routes))}function Wi(e,t){let n=Vi(e,t),r=Hi(),i=Ii(r,n),a={routes:n,base:t,current_path:Qn(r),current_match:$n(i)};return Ue(()=>{Ui(a)}),a}function Gi(e,t){or(e.current_path,t),sr(e.current_match,Ii(t,e.routes))}function Ki(e,t){Ve(t),Gi(e,t)}function qi(e,t){He(t),Gi(e,t)}function Ji(e){return Un(e.current_path)}function Yi(e){return Wn(e.current_match)}function Xi(e){return Xn(e)}function Zi(e){return q(e)}function Q(e,t){ar(e,t)}function Qi(e,t){cr(e,t)}function $i(e){return e.value}function ea(e,t){return dr(e,t)}function ta(e,t){return Kr(e,t)}function na(e){return lr(e)}function ra(e,t,n){return qr(e,t,n)}function ia(e){return K(e)}function aa(){Vr()}function oa(){Ur()}function sa(e){return Rr(e)}function ca(e){return Wr(e)}function la(e){Gr(e)}function ua(e){return Pr(e)}function da(){let e=C.current_owner;if(e!==void 0)return e}function fa(e,t){return Ar(e,t)}function pa(){return C.current_owner!==void 0}function ma(e){Br(e)}function ha(e,t){return di(e,t)}function ga(e){return hi(e)}function _a(e){return gi(e)}function va(e,t){ni(e,t)}function ya(e,t){ei(e,t)}function ba(e,t){return ii(e,t)}function xa(e,t,n){return _i(e,t,n)}function Sa(e,t,n){return vi(e,t,n)}function Ca(e){return ri(e)}function wa(e,t,n){return $r(e,t,n)}function Ta(){return mi()}function Ea(e,t){return yi(e,t)}function Da(e,t){return new S(e,t,``,[])}function Oa(e,t,n){return new S(e,t,n,[])}function ka(e,t,n,r){return new S(e,t,n,r)}function Aa(e,t){return Wi(e,t)}function ja(e,t){let n;return n=t===void 0?``:t,Aa(e,n)}function Ma(e,t){Ki(e,t)}function Na(e,t){qi(e,t)}function Pa(e){return Ji(e)}function Fa(e){return Yi(e)}function Ia(e){return e.base}function La(e){return Dr(e)}function Ra(e,t,n){return Ir(e,t,n)}function za(e){return Lr(e)}function Ba(e){return Tr(e)}function Va(){let e=Er();return{_0:e._0,_1:e._1,_2:e._2}}function Ha(e){return _r(e)}function Ua(e){return vr(e)}function Wa(e){wr(e)}function Ga(e){return yr(e)}function Ka(e){return br(e)}function qa(e){return xr(e)}function Ja(e){let t=Sr(e);return t.$tag===1?t._0:qe()}function Ya(e){let t=Cr(e);return t===void 0?``:t}function Xa(e){return fr(e)}function Za(e){return pr(e)}function Qa(e){return mr(e)}function $a(e){let t=hr(e);return t.$tag===1?t._0:qe()}function eo(e){let t=gr(e);return t===void 0?``:t}function to(e){return new Le(Z(e))}function $(e){return pi(bi(e))}function no(e){let t=Array(e.length),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];t[i]=to(n),r=i+1|0;continue}else break}return $(Ti(t))}function ro(e,t){let n=Array(t.length),r=t.length,i=0;for(;;){let e=i;if(e<r){let r=t[e];n[e]=to(r),i=e+1|0;continue}else break}return $(Ei(e,n))}function io(e){let t=Array(e.length),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];t[i]=to(n),r=i+1|0;continue}else break}return $(Di(t))}function ao(e,t){let n=Array(t.length),r=t.length,i=0;for(;;){let e=i;if(e<r){let r=t[e];n[e]=to(r),i=e+1|0;continue}else break}return $(Oi(e,n))}function oo(e){let t=Xi(e);return[()=>Zi(t),e=>{typeof e==`function`?Qi(t,e):Q(t,e)}]}function so(e){return ia(e)}function co(e){return na(e)}function lo(e,t,n={}){let{defer:r=!1}=n,i=Array.isArray(e),a,o,s=!0;return n=>{let c=i?e.map(e=>e()):e();if(r&&s){s=!1,a=c;return}let l=t(c,a,n??o);return a=c,o=l,s=!1,l}}function uo(...e){let t={};for(let n of e)if(n)for(let e of Object.keys(n)){let r=n[e];if(e.startsWith(`on`)&&typeof r==`function`){let n=t[e];typeof n==`function`?t[e]=(...e)=>{n(...e),r(...e)}:t[e]=r}else if(e===`ref`&&typeof r==`function`){let n=t[e];typeof n==`function`?t[e]=e=>{n(e),r(e)}:t[e]=r}else if(e===`class`||e===`className`){let n=t[e];n?t[e]=`${n} ${r}`:t[e]=r}else e===`style`&&typeof r==`object`&&typeof t[e]==`object`?t[e]={...t[e],...r}:t[e]=r}return t}function fo(e,...t){let n=[],r={...e};for(let e of t){let t={};for(let n of e)n in r&&(t[n]=r[n],delete r[n]);n.push(t)}return n.push(r),n}function po(e){let t=Ba(e),n=()=>$a(Ha(t));return Object.defineProperties(n,{loading:{get:()=>Ga(t)},error:{get:()=>Ya(t)},state:{get:()=>Ga(t)?`pending`:Ka(t)?`ready`:qa(t)?`errored`:`unresolved`},latest:{get:()=>Ua(t)}}),[n,{refetch:()=>Wa(t)}]}function mo(){let e=Va(),t=e._0,n=e._1,r=e._2,i=()=>$a(Ha(t));return Object.defineProperties(i,{loading:{get:()=>Ga(t)},error:{get:()=>Ya(t)}}),[i,n,r]}function ho(e,t){let[n]=e,r=Xi(n()),i=Ea(r,t);return[()=>Zi(i),e=>Q(r,e)]}function go(e){let{each:t,fallback:n,children:r}=e;return t?ha(typeof t==`function`?t:()=>t,(e,t)=>r(e,()=>t)):n??null}function _o(e){let{when:t,children:n}=e,r=typeof t==`function`?t:()=>t;return ba(()=>!!r(),typeof n==`function`?()=>n(r()):()=>n)}function vo(e){let{each:t,fallback:n,children:r}=e;if(!t)return n??null;let i=typeof t==`function`?t:()=>t;return i().length===0&&n?n:ha(i,(e,t)=>r(()=>i()[t],t))}function yo(e){let{context:t,value:n,children:r}=e;return Ra(t,n,()=>typeof r==`function`?r():r)}function bo(e){let{fallback:t,children:n}=e;if(!Array.isArray(n))return t??null;for(let e of n)if(e&&e.__isMatch&&e.when())return typeof e.children==`function`?e.children():e.children;return t??null}function xo(e){let{when:t,children:n}=e,r=typeof t==`function`?t:()=>t;return{__isMatch:!0,when:()=>!!r(),children:typeof n==`function`?()=>n(r()):n}}function So(e){let{mount:t,useShadow:n=!1,children:r}=e,i=typeof r==`function`?[r()]:Array.isArray(r)?r:[r];if(n){if(typeof t==`string`){let e=document.querySelector(t);if(e)return ao(e,i)}else if(t)return ao(t,i);return io(i)}return typeof t==`string`?ro(t,i):no(i)}function Co(e){let t=new Map,n=structuredClone(e);function r(e){let r=e.join(`.`);if(!t.has(r)){let a=i(n,e);t.set(r,Xi(a))}return t.get(r)}function i(e,t){let n=e;for(let e of t){if(n==null)return;n=n[e]}return n}function a(e,t,n){if(t.length===0)return;let r=e;for(let e=0;e<t.length-1;e++){let n=t[e];if(r[n]==null){let i=t[e+1];r[n]=typeof i==`number`||/^\d+$/.test(i)?[]:{}}r=r[n]}r[t[t.length-1]]=n}function o(e){let r=e.join(`.`);aa();try{for(let[e,a]of t.entries())(e===r||e.startsWith(r+`.`))&&Q(a,i(n,e.split(`.`)))}finally{oa()}}function s(e,t=[]){return typeof e!=`object`||!e?e:new Proxy(e,{get(e,n){if(typeof n==`symbol`)return e[n];let i=[...t,n];Zi(r(i));let a=e[n];return typeof a==`object`&&a?s(a,i):a},set(e,n,r){let i=[...t,n];return e[n]=r,o(i),!0}})}function c(...e){if(e.length===0)return;let r=[],s=0;for(;s<e.length-1&&typeof e[s]==`string`;)r.push(e[s]),s++;let c=e[s];if(r.length===0&&typeof c==`object`&&c){Object.assign(n,c);for(let[e,r]of t.entries())Q(r,i(n,e.split(`.`)));return}let l=i(n,r),u;u=typeof c==`function`?c(l):Array.isArray(c)?c:typeof c==`object`&&c&&typeof l==`object`&&l&&!Array.isArray(l)?{...l,...c}:c,a(n,r,u),o(r)}return[s(n),c]}function wo(e){return t=>{let n=structuredClone(t);return e(n),n}}function To(e){return()=>e}export{Ua as $,ha as A,ma as B,ra as C,za as Ct,ja as D,ua as E,xa as F,io as G,no as H,Sa as I,Ya as J,Ra as K,ta as L,Zi as M,da as N,ia as O,pa as P,Ka as Q,ya as R,aa as S,Qi as St,wa as T,ao as U,$i as V,ro as W,qa as X,Ha as Y,Ga as Z,wo as _,Za as _t,yo as a,Ia as at,ca as b,ga as bt,mo as c,Ma as ct,po as d,fa as dt,Wa as et,oo as f,Q as ft,lo as g,Xa as gt,uo as h,Qa as ht,So as i,Oa as it,Ca as j,Ta as k,so as l,Na as lt,ho as m,eo as mt,vo as n,Da as nt,_o as o,Fa as ot,Co as p,ba as pt,va as q,xo as r,ka as rt,bo as s,Pa as st,go as t,Ja as tt,co as u,sa as ut,To as v,$a as vt,La as w,oa as x,_a as xt,fo as y,ea as yt,la as z};
|