@mizchi/luna 0.1.4 → 0.1.5
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/index.d.ts +230 -0
- package/dist/index.js +1 -0
- package/dist/jsx-dev-runtime.d.ts +2 -0
- package/dist/jsx-dev-runtime.js +1 -0
- package/dist/jsx-runtime.d.ts +204 -0
- package/dist/jsx-runtime.js +1 -0
- package/dist/src-C-OpUndy.js +1 -0
- package/package.json +17 -13
- package/dom.d.ts +0 -2
- package/dom.js +0 -2
- package/index.d.ts +0 -564
- package/index.js +0 -785
- package/jsx-dev-runtime.d.ts +0 -2
- package/jsx-dev-runtime.js +0 -2
- package/jsx-runtime.d.ts +0 -123
- package/jsx-runtime.js +0 -119
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
//#region ../../target/js/release/build/platform/js/api/moonbit.d.ts
|
|
2
|
+
|
|
3
|
+
type Unit = undefined;
|
|
4
|
+
type Bool = boolean;
|
|
5
|
+
/**
|
|
6
|
+
* A signed integer in 32-bit two's complement format.
|
|
7
|
+
*/
|
|
8
|
+
type Int = number;
|
|
9
|
+
type String = string;
|
|
10
|
+
type UnboxedOption<T> = /* Some */T | /* None */undefined;
|
|
11
|
+
//#endregion
|
|
12
|
+
//#region ../../target/js/release/build/platform/js/api/api.d.ts
|
|
13
|
+
declare function portalToElementWithShadow(mount: any, children: any): any;
|
|
14
|
+
declare function portalWithShadow(children: any): any;
|
|
15
|
+
declare function portalToSelector(selector: String, children: any): any;
|
|
16
|
+
declare function portalToBody(children: any): any;
|
|
17
|
+
declare function stateError(state: any): String;
|
|
18
|
+
declare function stateValue(state: any): any;
|
|
19
|
+
declare function stateIsFailure(state: any): Bool;
|
|
20
|
+
declare function stateIsSuccess(state: any): Bool;
|
|
21
|
+
declare function stateIsPending(state: any): Bool;
|
|
22
|
+
declare function resourceError(res: any): String;
|
|
23
|
+
declare function resourceValue(res: any): any;
|
|
24
|
+
declare function resourceIsFailure(res: any): Bool;
|
|
25
|
+
declare function resourceIsSuccess(res: any): Bool;
|
|
26
|
+
declare function resourceIsPending(res: any): Bool;
|
|
27
|
+
declare function resourceRefetch(res: any): Unit;
|
|
28
|
+
declare function resourcePeek(res: any): any;
|
|
29
|
+
declare function resourceGet(res: any): any;
|
|
30
|
+
declare function useContext(ctx: any): any;
|
|
31
|
+
declare function provide(ctx: any, value: any, f: () => any): any;
|
|
32
|
+
declare function createContext(default_value: any): any;
|
|
33
|
+
declare function routerGetBase(router: any): String;
|
|
34
|
+
declare function routerGetMatch(router: any): UnboxedOption<any>;
|
|
35
|
+
declare function routerGetPath(router: any): String;
|
|
36
|
+
declare function routerReplace(router: any, path: String): Unit;
|
|
37
|
+
declare function routerNavigate(router: any, path: String): Unit;
|
|
38
|
+
declare function createRouter(routes: any, base$46$opt: UnboxedOption<String>): any;
|
|
39
|
+
declare function routePageFull(path: String, component: String, title: String, meta: any): any;
|
|
40
|
+
declare function routePageTitled(path: String, component: String, title: String): any;
|
|
41
|
+
declare function routePage(path: String, component: String): any;
|
|
42
|
+
declare function events(): any;
|
|
43
|
+
declare function createElement(tag: String, attrs: any, children: any): any;
|
|
44
|
+
declare function Fragment(children: any): any;
|
|
45
|
+
declare function jsxs(tag: String, attrs: any, children: any): any;
|
|
46
|
+
declare function jsx(tag: String, attrs: any, children: any): any;
|
|
47
|
+
declare function show(cond: () => Bool, render: () => any): any;
|
|
48
|
+
declare function mount(root: any, node: any): Unit;
|
|
49
|
+
declare function render(root: any, node: any): Unit;
|
|
50
|
+
declare function textDyn(get_content: () => String): any;
|
|
51
|
+
declare function text(content: String): any;
|
|
52
|
+
declare function forEach(items: () => any, render_item: (_arg0: any, _arg1: Int) => any): any;
|
|
53
|
+
declare function onMount(fn_: () => Unit): Unit;
|
|
54
|
+
declare function hasOwner(): Bool;
|
|
55
|
+
declare function runWithOwner(owner: any, f: () => any): any;
|
|
56
|
+
declare function getOwner(): UnboxedOption<any>;
|
|
57
|
+
declare function createRoot(f: (_arg0: () => Unit) => any): any;
|
|
58
|
+
declare function onCleanup(cleanup: () => Unit): Unit;
|
|
59
|
+
declare function batch(f: () => any): any;
|
|
60
|
+
declare function runUntracked(f: () => any): any;
|
|
61
|
+
declare function batchEnd(): Unit;
|
|
62
|
+
declare function batchStart(): Unit;
|
|
63
|
+
declare function effect(fn_: () => Unit): () => Unit;
|
|
64
|
+
declare function combine(a: any, b: any, f: (_arg0: any, _arg1: any) => any): () => any;
|
|
65
|
+
declare function map(sig: any, f: (_arg0: any) => any): () => any;
|
|
66
|
+
declare function subscribe(sig: any, callback: (_arg0: any) => Unit): () => Unit;
|
|
67
|
+
declare function peek(sig: any): any;
|
|
68
|
+
declare function update(sig: any, f: (_arg0: any) => any): Unit;
|
|
69
|
+
declare function set(sig: any, value: any): Unit;
|
|
70
|
+
declare function get(sig: any): any;
|
|
71
|
+
//#endregion
|
|
72
|
+
//#region src/index.d.ts
|
|
73
|
+
type Accessor<T> = () => T;
|
|
74
|
+
type Setter<T> = (value: T | ((prev: T) => T)) => void;
|
|
75
|
+
type Signal<T> = [Accessor<T>, Setter<T>];
|
|
76
|
+
interface ForProps<T> {
|
|
77
|
+
each: Accessor<T[]> | T[];
|
|
78
|
+
fallback?: any;
|
|
79
|
+
children: (item: T, index: Accessor<number>) => any;
|
|
80
|
+
}
|
|
81
|
+
interface ShowProps<T> {
|
|
82
|
+
when: T | Accessor<T>;
|
|
83
|
+
fallback?: any;
|
|
84
|
+
children: any | ((item: T) => any);
|
|
85
|
+
}
|
|
86
|
+
interface IndexProps<T> {
|
|
87
|
+
each: Accessor<T[]> | T[];
|
|
88
|
+
fallback?: any;
|
|
89
|
+
children: (item: Accessor<T>, index: number) => any;
|
|
90
|
+
}
|
|
91
|
+
interface Context<T> {
|
|
92
|
+
id: number;
|
|
93
|
+
default_value: () => T;
|
|
94
|
+
providers: any[];
|
|
95
|
+
}
|
|
96
|
+
interface ProviderProps<T> {
|
|
97
|
+
context: Context<T>;
|
|
98
|
+
value: T;
|
|
99
|
+
children: any | (() => any);
|
|
100
|
+
}
|
|
101
|
+
interface MatchProps<T> {
|
|
102
|
+
when: T | Accessor<T>;
|
|
103
|
+
children: any | ((item: T) => any);
|
|
104
|
+
}
|
|
105
|
+
interface SwitchProps {
|
|
106
|
+
fallback?: any;
|
|
107
|
+
children: any[];
|
|
108
|
+
}
|
|
109
|
+
interface PortalProps {
|
|
110
|
+
mount?: Element | string;
|
|
111
|
+
useShadow?: boolean;
|
|
112
|
+
children: any | (() => any);
|
|
113
|
+
}
|
|
114
|
+
interface ResourceAccessor<T> {
|
|
115
|
+
(): T | undefined;
|
|
116
|
+
loading: boolean;
|
|
117
|
+
error: string | undefined;
|
|
118
|
+
state: 'pending' | 'ready' | 'errored' | 'unresolved';
|
|
119
|
+
latest: T | undefined;
|
|
120
|
+
}
|
|
121
|
+
type SetStoreFunction<T> = (...args: any[]) => void;
|
|
122
|
+
/**
|
|
123
|
+
* Creates a reactive signal (SolidJS-style)
|
|
124
|
+
*/
|
|
125
|
+
declare function createSignal<T>(initialValue: T): Signal<T>;
|
|
126
|
+
/**
|
|
127
|
+
* Creates a reactive effect (SolidJS-style alias)
|
|
128
|
+
*/
|
|
129
|
+
declare function createEffect(fn: () => void): () => void;
|
|
130
|
+
/**
|
|
131
|
+
* Creates a memoized computed value (SolidJS-style)
|
|
132
|
+
*/
|
|
133
|
+
declare function createMemo<T>(fn: () => T): Accessor<T>;
|
|
134
|
+
/**
|
|
135
|
+
* Explicit dependency tracking helper (SolidJS-style)
|
|
136
|
+
* Wraps a function to explicitly specify which signals to track
|
|
137
|
+
*
|
|
138
|
+
* @template T
|
|
139
|
+
* @template U
|
|
140
|
+
* @param {(() => T) | Array<() => any>} deps - Signal accessor(s) to track
|
|
141
|
+
* @param {(input: T, prevInput?: T, prevValue?: U) => U} fn - Function to run with dependency values
|
|
142
|
+
* @param {{ defer?: boolean }} [options] - Options (defer: don't run on initial)
|
|
143
|
+
* @returns {(prevValue?: U) => U | undefined}
|
|
144
|
+
*/
|
|
145
|
+
declare function on(deps: any, fn: any, options?: {}): (injectedPrevValue: any) => any;
|
|
146
|
+
/**
|
|
147
|
+
* Merge multiple props objects, with later objects taking precedence (SolidJS-style)
|
|
148
|
+
* Event handlers and refs are merged, other props are overwritten
|
|
149
|
+
*
|
|
150
|
+
* @template T
|
|
151
|
+
* @param {...T} sources - Props objects to merge
|
|
152
|
+
* @returns {T}
|
|
153
|
+
*/
|
|
154
|
+
declare function mergeProps(...sources: any[]): {};
|
|
155
|
+
/**
|
|
156
|
+
* Split props into multiple objects based on key lists (SolidJS-style)
|
|
157
|
+
*
|
|
158
|
+
* @template T
|
|
159
|
+
* @template K
|
|
160
|
+
* @param {T} props - Props object to split
|
|
161
|
+
* @param {...K[]} keys - Arrays of keys to extract
|
|
162
|
+
* @returns {[Pick<T, K>, Omit<T, K>]}
|
|
163
|
+
*/
|
|
164
|
+
declare function splitProps(props: any, ...keys: any[]): any[];
|
|
165
|
+
/**
|
|
166
|
+
* Creates a resource for async data (SolidJS-style)
|
|
167
|
+
*/
|
|
168
|
+
declare function createResource<T>(fetcher: (resolve: (v: T) => void, reject: (e: string) => void) => void): [ResourceAccessor<T>, {
|
|
169
|
+
refetch: () => void;
|
|
170
|
+
}];
|
|
171
|
+
/**
|
|
172
|
+
* Creates a deferred resource (SolidJS-style)
|
|
173
|
+
*/
|
|
174
|
+
declare function createDeferred<T>(): [ResourceAccessor<T>, (value: T) => void, (error: string) => void];
|
|
175
|
+
/**
|
|
176
|
+
* Debounces a signal (returns SolidJS-style signal)
|
|
177
|
+
*/
|
|
178
|
+
declare function debounced<T>(signal: Signal<T>, delayMs: number): Signal<T>;
|
|
179
|
+
/**
|
|
180
|
+
* For component for list rendering (SolidJS-style)
|
|
181
|
+
*/
|
|
182
|
+
declare function For<T>(props: ForProps<T>): any;
|
|
183
|
+
/**
|
|
184
|
+
* Show component for conditional rendering (SolidJS-style)
|
|
185
|
+
*/
|
|
186
|
+
declare function Show<T>(props: ShowProps<T>): any;
|
|
187
|
+
/**
|
|
188
|
+
* Index component for index-based list rendering (SolidJS-style)
|
|
189
|
+
*/
|
|
190
|
+
declare function Index<T>(props: IndexProps<T>): any;
|
|
191
|
+
/**
|
|
192
|
+
* Provider component for Context (SolidJS-style)
|
|
193
|
+
*/
|
|
194
|
+
declare function Provider<T>(props: ProviderProps<T>): any;
|
|
195
|
+
/**
|
|
196
|
+
* Switch component for conditional rendering with multiple branches (SolidJS-style)
|
|
197
|
+
*/
|
|
198
|
+
declare function Switch(props: SwitchProps): any;
|
|
199
|
+
/**
|
|
200
|
+
* Match component for use inside Switch (SolidJS-style)
|
|
201
|
+
*/
|
|
202
|
+
declare function Match<T>(props: MatchProps<T>): {
|
|
203
|
+
__isMatch: true;
|
|
204
|
+
when: () => boolean;
|
|
205
|
+
children: any;
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* Portal component for rendering outside the component tree (SolidJS-style)
|
|
209
|
+
*/
|
|
210
|
+
declare function Portal(props: PortalProps): any;
|
|
211
|
+
/**
|
|
212
|
+
* Creates a reactive store with nested property tracking (SolidJS-style)
|
|
213
|
+
*/
|
|
214
|
+
declare function createStore<T extends object>(initialValue: T): [T, SetStoreFunction<T>];
|
|
215
|
+
/**
|
|
216
|
+
* Produce helper for immer-style mutations (SolidJS-style)
|
|
217
|
+
* @template T
|
|
218
|
+
* @param {(draft: T) => void} fn - Mutation function
|
|
219
|
+
* @returns {(state: T) => T} - Function that applies mutations to a copy
|
|
220
|
+
*/
|
|
221
|
+
declare function produce(fn: any): (state: any) => any;
|
|
222
|
+
/**
|
|
223
|
+
* Reconcile helper for efficient array/object updates (SolidJS-style)
|
|
224
|
+
* @template T
|
|
225
|
+
* @param {T} value - New value to reconcile
|
|
226
|
+
* @returns {(state: T) => T} - Function that returns the new value
|
|
227
|
+
*/
|
|
228
|
+
declare function reconcile(value: any): () => any;
|
|
229
|
+
//#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 };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{$ as e,A as t,B as ee,C as n,Ct as r,D as i,E 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,U as S,V as C,W as w,X as T,Y as E,Z as D,_ as O,_t as k,a as A,at as j,b as M,bt as N,c as P,ct as F,d as I,dt as L,et as R,f as z,ft as B,g as te,gt as V,h as H,ht as U,i as W,it as G,j as K,k as q,l as J,lt as Y,m as X,mt as Z,n as Q,nt as ne,o as re,ot as ie,p as ae,pt as oe,q as se,r as ce,rt as le,s as ue,st as de,t as fe,tt as pe,u as me,ut as $,v as he,vt as ge,w as _e,x as ve,xt as ye,y as be,yt as xe,z as Se}from"./src-C-OpUndy.js";export{fe as For,K as Fragment,Q as Index,ce as Match,W as Portal,A as Provider,re as Show,ue as Switch,M as batch,ve as batchEnd,y as batchStart,n as combine,_e as createContext,P as createDeferred,J as createEffect,x as createElement,me as createMemo,I as createResource,a as createRoot,i as createRouter,z as createSignal,ae as createStore,X as debounced,h as effect,q as events,t as forEach,p as get,m as getOwner,g as hasOwner,o as jsx,l as jsxs,f as map,H as mergeProps,v as mount,te as on,Se as onCleanup,ee as onMount,C as peek,c as portalToBody,S as portalToElementWithShadow,w as portalToSelector,s as portalWithShadow,O as produce,d as provide,he as reconcile,se as render,u as resourceError,E as resourceGet,T as resourceIsFailure,D as resourceIsPending,_ as resourceIsSuccess,e as resourcePeek,R as resourceRefetch,pe as resourceValue,ne as routePage,le as routePageFull,G as routePageTitled,j as routerGetBase,ie as routerGetMatch,de as routerGetPath,F as routerNavigate,Y as routerReplace,$ as runUntracked,$ as untrack,L as runWithOwner,B as set,oe as show,be as splitProps,Z as stateError,U as stateIsFailure,V as stateIsPending,k as stateIsSuccess,ge as stateValue,xe as subscribe,N as text,ye as textDyn,b as update,r as useContext};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import"./src-C-OpUndy.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};
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
//#region src/jsx-runtime.d.ts
|
|
2
|
+
type MaybeAccessor<T> = T | (() => T);
|
|
3
|
+
interface HTMLAttributes {
|
|
4
|
+
id?: MaybeAccessor<string>;
|
|
5
|
+
className?: MaybeAccessor<string>;
|
|
6
|
+
class?: MaybeAccessor<string>;
|
|
7
|
+
style?: MaybeAccessor<string | Record<string, string | number>>;
|
|
8
|
+
title?: MaybeAccessor<string>;
|
|
9
|
+
tabIndex?: MaybeAccessor<number>;
|
|
10
|
+
hidden?: MaybeAccessor<boolean>;
|
|
11
|
+
type?: MaybeAccessor<string>;
|
|
12
|
+
name?: MaybeAccessor<string>;
|
|
13
|
+
value?: MaybeAccessor<string | number>;
|
|
14
|
+
placeholder?: MaybeAccessor<string>;
|
|
15
|
+
disabled?: MaybeAccessor<boolean>;
|
|
16
|
+
checked?: MaybeAccessor<boolean>;
|
|
17
|
+
readonly?: MaybeAccessor<boolean>;
|
|
18
|
+
required?: MaybeAccessor<boolean>;
|
|
19
|
+
min?: MaybeAccessor<string | number>;
|
|
20
|
+
max?: MaybeAccessor<string | number>;
|
|
21
|
+
step?: MaybeAccessor<string | number>;
|
|
22
|
+
pattern?: MaybeAccessor<string>;
|
|
23
|
+
href?: MaybeAccessor<string>;
|
|
24
|
+
src?: MaybeAccessor<string>;
|
|
25
|
+
alt?: MaybeAccessor<string>;
|
|
26
|
+
target?: MaybeAccessor<string>;
|
|
27
|
+
rel?: MaybeAccessor<string>;
|
|
28
|
+
role?: MaybeAccessor<string>;
|
|
29
|
+
"aria-label"?: MaybeAccessor<string>;
|
|
30
|
+
"aria-hidden"?: MaybeAccessor<boolean | "true" | "false">;
|
|
31
|
+
"aria-expanded"?: MaybeAccessor<boolean | "true" | "false">;
|
|
32
|
+
"aria-selected"?: MaybeAccessor<boolean | "true" | "false">;
|
|
33
|
+
"aria-disabled"?: MaybeAccessor<boolean | "true" | "false">;
|
|
34
|
+
[key: `data-${string}`]: MaybeAccessor<string | number | boolean>;
|
|
35
|
+
onClick?: (e: MouseEvent) => void;
|
|
36
|
+
onInput?: (e: Event) => void;
|
|
37
|
+
onChange?: (e: Event) => void;
|
|
38
|
+
onSubmit?: (e: Event) => void;
|
|
39
|
+
onKeyDown?: (e: KeyboardEvent) => void;
|
|
40
|
+
onKeyUp?: (e: KeyboardEvent) => void;
|
|
41
|
+
onKeyPress?: (e: KeyboardEvent) => void;
|
|
42
|
+
onFocus?: (e: FocusEvent) => void;
|
|
43
|
+
onBlur?: (e: FocusEvent) => void;
|
|
44
|
+
onMouseEnter?: (e: MouseEvent) => void;
|
|
45
|
+
onMouseLeave?: (e: MouseEvent) => void;
|
|
46
|
+
onMouseDown?: (e: MouseEvent) => void;
|
|
47
|
+
onMouseUp?: (e: MouseEvent) => void;
|
|
48
|
+
onMouseMove?: (e: MouseEvent) => void;
|
|
49
|
+
onTouchStart?: (e: TouchEvent) => void;
|
|
50
|
+
onTouchEnd?: (e: TouchEvent) => void;
|
|
51
|
+
onTouchMove?: (e: TouchEvent) => void;
|
|
52
|
+
onScroll?: (e: Event) => void;
|
|
53
|
+
onLoad?: (e: Event) => void;
|
|
54
|
+
onError?: (e: Event) => void;
|
|
55
|
+
ref?: (el: HTMLElement) => void;
|
|
56
|
+
children?: JSX.Element | JSX.Element[] | string | number | (() => string | number);
|
|
57
|
+
[key: string]: unknown;
|
|
58
|
+
}
|
|
59
|
+
type Component = (props: any) => JSX.Element;
|
|
60
|
+
declare function jsx(type: string | Component, props: Record<string, unknown> | null): JSX.Element;
|
|
61
|
+
declare const jsxs: typeof jsx;
|
|
62
|
+
declare function Fragment({
|
|
63
|
+
children
|
|
64
|
+
}: {
|
|
65
|
+
children?: unknown;
|
|
66
|
+
}): unknown[];
|
|
67
|
+
declare const jsxDEV: typeof jsx;
|
|
68
|
+
declare namespace JSX {
|
|
69
|
+
type Element = any;
|
|
70
|
+
interface IntrinsicElements {
|
|
71
|
+
a: HTMLAttributes;
|
|
72
|
+
abbr: HTMLAttributes;
|
|
73
|
+
address: HTMLAttributes;
|
|
74
|
+
area: HTMLAttributes;
|
|
75
|
+
article: HTMLAttributes;
|
|
76
|
+
aside: HTMLAttributes;
|
|
77
|
+
audio: HTMLAttributes;
|
|
78
|
+
b: HTMLAttributes;
|
|
79
|
+
base: HTMLAttributes;
|
|
80
|
+
bdi: HTMLAttributes;
|
|
81
|
+
bdo: HTMLAttributes;
|
|
82
|
+
blockquote: HTMLAttributes;
|
|
83
|
+
body: HTMLAttributes;
|
|
84
|
+
br: HTMLAttributes;
|
|
85
|
+
button: HTMLAttributes;
|
|
86
|
+
canvas: HTMLAttributes;
|
|
87
|
+
caption: HTMLAttributes;
|
|
88
|
+
cite: HTMLAttributes;
|
|
89
|
+
code: HTMLAttributes;
|
|
90
|
+
col: HTMLAttributes;
|
|
91
|
+
colgroup: HTMLAttributes;
|
|
92
|
+
data: HTMLAttributes;
|
|
93
|
+
datalist: HTMLAttributes;
|
|
94
|
+
dd: HTMLAttributes;
|
|
95
|
+
del: HTMLAttributes;
|
|
96
|
+
details: HTMLAttributes;
|
|
97
|
+
dfn: HTMLAttributes;
|
|
98
|
+
dialog: HTMLAttributes;
|
|
99
|
+
div: HTMLAttributes;
|
|
100
|
+
dl: HTMLAttributes;
|
|
101
|
+
dt: HTMLAttributes;
|
|
102
|
+
em: HTMLAttributes;
|
|
103
|
+
embed: HTMLAttributes;
|
|
104
|
+
fieldset: HTMLAttributes;
|
|
105
|
+
figcaption: HTMLAttributes;
|
|
106
|
+
figure: HTMLAttributes;
|
|
107
|
+
footer: HTMLAttributes;
|
|
108
|
+
form: HTMLAttributes;
|
|
109
|
+
h1: HTMLAttributes;
|
|
110
|
+
h2: HTMLAttributes;
|
|
111
|
+
h3: HTMLAttributes;
|
|
112
|
+
h4: HTMLAttributes;
|
|
113
|
+
h5: HTMLAttributes;
|
|
114
|
+
h6: HTMLAttributes;
|
|
115
|
+
head: HTMLAttributes;
|
|
116
|
+
header: HTMLAttributes;
|
|
117
|
+
hgroup: HTMLAttributes;
|
|
118
|
+
hr: HTMLAttributes;
|
|
119
|
+
html: HTMLAttributes;
|
|
120
|
+
i: HTMLAttributes;
|
|
121
|
+
iframe: HTMLAttributes;
|
|
122
|
+
img: HTMLAttributes;
|
|
123
|
+
input: HTMLAttributes;
|
|
124
|
+
ins: HTMLAttributes;
|
|
125
|
+
kbd: HTMLAttributes;
|
|
126
|
+
label: HTMLAttributes;
|
|
127
|
+
legend: HTMLAttributes;
|
|
128
|
+
li: HTMLAttributes;
|
|
129
|
+
link: HTMLAttributes;
|
|
130
|
+
main: HTMLAttributes;
|
|
131
|
+
map: HTMLAttributes;
|
|
132
|
+
mark: HTMLAttributes;
|
|
133
|
+
menu: HTMLAttributes;
|
|
134
|
+
meta: HTMLAttributes;
|
|
135
|
+
meter: HTMLAttributes;
|
|
136
|
+
nav: HTMLAttributes;
|
|
137
|
+
noscript: HTMLAttributes;
|
|
138
|
+
object: HTMLAttributes;
|
|
139
|
+
ol: HTMLAttributes;
|
|
140
|
+
optgroup: HTMLAttributes;
|
|
141
|
+
option: HTMLAttributes;
|
|
142
|
+
output: HTMLAttributes;
|
|
143
|
+
p: HTMLAttributes;
|
|
144
|
+
picture: HTMLAttributes;
|
|
145
|
+
pre: HTMLAttributes;
|
|
146
|
+
progress: HTMLAttributes;
|
|
147
|
+
q: HTMLAttributes;
|
|
148
|
+
rp: HTMLAttributes;
|
|
149
|
+
rt: HTMLAttributes;
|
|
150
|
+
ruby: HTMLAttributes;
|
|
151
|
+
s: HTMLAttributes;
|
|
152
|
+
samp: HTMLAttributes;
|
|
153
|
+
script: HTMLAttributes;
|
|
154
|
+
search: HTMLAttributes;
|
|
155
|
+
section: HTMLAttributes;
|
|
156
|
+
select: HTMLAttributes;
|
|
157
|
+
slot: HTMLAttributes;
|
|
158
|
+
small: HTMLAttributes;
|
|
159
|
+
source: HTMLAttributes;
|
|
160
|
+
span: HTMLAttributes;
|
|
161
|
+
strong: HTMLAttributes;
|
|
162
|
+
style: HTMLAttributes;
|
|
163
|
+
sub: HTMLAttributes;
|
|
164
|
+
summary: HTMLAttributes;
|
|
165
|
+
sup: HTMLAttributes;
|
|
166
|
+
table: HTMLAttributes;
|
|
167
|
+
tbody: HTMLAttributes;
|
|
168
|
+
td: HTMLAttributes;
|
|
169
|
+
template: HTMLAttributes;
|
|
170
|
+
textarea: HTMLAttributes;
|
|
171
|
+
tfoot: HTMLAttributes;
|
|
172
|
+
th: HTMLAttributes;
|
|
173
|
+
thead: HTMLAttributes;
|
|
174
|
+
time: HTMLAttributes;
|
|
175
|
+
title: HTMLAttributes;
|
|
176
|
+
tr: HTMLAttributes;
|
|
177
|
+
track: HTMLAttributes;
|
|
178
|
+
u: HTMLAttributes;
|
|
179
|
+
ul: HTMLAttributes;
|
|
180
|
+
var: HTMLAttributes;
|
|
181
|
+
video: HTMLAttributes;
|
|
182
|
+
wbr: HTMLAttributes;
|
|
183
|
+
svg: HTMLAttributes;
|
|
184
|
+
path: HTMLAttributes;
|
|
185
|
+
circle: HTMLAttributes;
|
|
186
|
+
rect: HTMLAttributes;
|
|
187
|
+
line: HTMLAttributes;
|
|
188
|
+
polyline: HTMLAttributes;
|
|
189
|
+
polygon: HTMLAttributes;
|
|
190
|
+
ellipse: HTMLAttributes;
|
|
191
|
+
g: HTMLAttributes;
|
|
192
|
+
text: HTMLAttributes;
|
|
193
|
+
tspan: HTMLAttributes;
|
|
194
|
+
defs: HTMLAttributes;
|
|
195
|
+
use: HTMLAttributes;
|
|
196
|
+
image: HTMLAttributes;
|
|
197
|
+
[key: string]: HTMLAttributes;
|
|
198
|
+
}
|
|
199
|
+
interface ElementChildrenAttribute {
|
|
200
|
+
children: {};
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
//#endregion
|
|
204
|
+
export { Fragment, JSX, jsx, jsxDEV, jsxs };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{T as e,bt as t,xt as n}from"./src-C-OpUndy.js";function r(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 i(e){if(!e)return[];let t=[];for(let[n,i]of Object.entries(e)){if(n===`children`)continue;let e=n,a;if(n===`className`&&(e=`class`),n===`style`){a={$tag:0,_0:r(i)},t.push({_0:e,_1:a});continue}if(n.startsWith(`on`)&&typeof i==`function`){e=n.slice(2).toLowerCase(),a={$tag:2,_0:i},t.push({_0:e,_1:a});continue}a=typeof i==`function`?{$tag:1,_0:i}:{$tag:0,_0:String(i)},t.push({_0:e,_1:a})}return t}function a(e){if(!e)return[];let r;return r=Array.isArray(e)?e:[e],r.flat().map(e=>typeof e==`string`?t(e):typeof e==`number`?t(String(e)):typeof e==`function`&&e.length===0?n(()=>String(e())):e).filter(Boolean)}function o(t,n){let{children:r,...o}=n||{},s=i(o),c=a(r);if(typeof t==`string`)return e(t,s,c);if(typeof t==`function`)return t({...o,children:r});throw Error(`Invalid JSX type: ${t}`)}const s=o;function c({children:e}){return a(e)}const l=o;export{c as Fragment,o as jsx,l as jsxDEV,s 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=()=>({}),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;const b={$tag:0};function Te(e){this._0=e}Te.prototype.$tag=1;function Ee(e){this._0=e}Ee.prototype.$tag=0;function De(e){this._0=e}De.prototype.$tag=1;function x(e){this._0=e}x.prototype.$tag=2;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 Re=()=>window.location.pathname,ze=()=>window.location.search,Be=e=>window.history.pushState(null,``,e),Ve=e=>window.history.replaceState(null,``,e),He=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 Ue(e,t,n){this._0=e,this._1=t,this._2=n}Ue.prototype.$tag=1;function We(e,t){this._0=e,this._1=t}We.prototype.$tag=2;function Ge(e,t){this._0=e,this._1=t}Ge.prototype.$tag=3;const Ke=()=>void 0,qe={method_0:Et,method_1:Dt,method_2:Lt,method_3:lt},Je={val:0},C={current_subscriber:void 0,current_owner:void 0,current_cleanups:e,batch_depth:0,pending_effects:[],pending_ids:[]},Ye={val:0};function Xe(e){return r()}function Ze(e){return r()}function Qe(e){return r()}function $e(e){return r()}function et(e){r()}function tt(e){return r()}function nt(e,t){return e===0?t===0:t===1}function rt(e,t){return Xe(`${e}\n at ${j(t)}\n`)}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){et(`${e}\n at ${j(t)}\n`)}function ct(e,t){return tt(`${e}\n at ${j(t)}\n`)}function w(e){return{val:``}}function lt(e,t){let n=e;n.val=`${n.val}${String.fromCodePoint(t)}`}function ut(e,t){return(((Math.imul(e-55296|0,1024)|0)+t|0)-56320|0)+65536|0}function dt(e,t){return!nt(e,t)}function ft(e,t){let n=e.length;return t>=0&&t<n?(i(e,t),e[t]):r()}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 T(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.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 xt(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?xt(e,t):bt(e,t)}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;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 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;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?Ct(e,t):St(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}:ot(`Invalid index for View`,`@moonbitlang/core/builtin:stringview.mbt:111:5-111:36`)}function wt(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 Tt(e){_L:if(Nt(e,1,0,e.length))if(e.charCodeAt(0)===64){let t=It(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=wt(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=wt(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 Et(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 Dt(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()}Lt(e,a)}function A(e){let t=w(0);return $t(e,{self:t,method_table:qe}),t.val}function j(e){let t=w(0);return sn(e,{self:t,method_table:qe}),t.val}function Ot(e,t){return u(e,t)}function M(e){return e.str.substring(e.start,e.end)}function kt(e){return e()}function At(e){return e()}function jt(e){return t=>{for(;;){let n=kt(e);if(n===void 0)return 1;if(t(n)!==1)return 0}}}function Mt(e){return t=>{for(;;){let n=At(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];lt(t,n),r=i+1|0;continue}else break}return t.val}function Nt(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 st(`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 Pt(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 Ft(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 ct(`Invalid start index`,`@moonbitlang/core/builtin:string.mbt:366:5-366:33`)}function It(e,t,n,r){let i;return i=r===void 0?e.length:r,t>=0?Ft(e,t,n,i):Pt(e,-t|0,n,i)}function Lt(e,t){let n=e;n.val=`${n.val}${M(t)}`}function Rt(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 Rt({str:e,start:0,end:e.length},t)}function zt(e,t){let n=E(e,t);return n===void 0?!1:n===0}function F(e,t){return zt({str:e,start:0,end:e.length},t)}function Bt(e){return[]}function I(e,t){d(e,t)}function Vt(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 L(e,t){d(e,t)}function R(e,t){d(e,t)}function z(e,t){d(e,t)}function Jt(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=ut(i,r);return n.val=n.val+2|0,e}}return n.val=n.val+1|0,i}else return-1}}function Yt(e){return Mt(Jt(e))}function Xt(e,t){return e(t)}function Zt(e){return String.fromCodePoint(e)}function Qt(e){let t=Yt(e),n={val:Bt(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 $t(e,t){t.method_table.method_0(t.self,Ot(e,10))}function en(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 tn(e){return en({buf:e,start:0,end:e.length})}function B(e){return jt(tn(e))}function V(e,t){return dt(Xt(e,e=>t(e)?0:1),1)}function nn(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 rn(e,t,n){let a=e.length;if(t>=0&&t<a){i(e,t),e[t]=n;return}else{r();return}}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){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 sn(e,t){on(Tt(e),t)}function cn(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}:at(`View index out of bounds`,`@moonbitlang/core/builtin:arrayview.mbt:200:5-200:38`)}function ln(e,t){p(e,t)}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){return ae(e)}function hn(e){return e.length===0?-1:mn(e)}function gn(e,t){if(t>=0&&t<e.length){i(e,t);let n=e[t];return oe(e,t,1),n}else return rt(`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 _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){return ie(e)}function yn(e){un(e,0)}function bn(e){dn(e,0)}function xn(e){pn(e,0)}function Sn(e){return ce(e)?pe:new h(e)}function Cn(e){return ce(e)?me:new g(e)}function wn(e){return ce(e)?he:new ge(e)}function Tn(e,t,n){return{mode:e,delegatesFocus:t,slotAssignment:n}}function En(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 Sn(se(e,`parentNode`))}function U(e,t){return m(e,`appendChild`,[t])}function W(e,t){return m(e,`removeChild`,[t])}function Dn(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 On(e,t){ue(e,`textContent`,t)}function kn(e,t){ue(e,`className`,t)}function An(e,t,n){m(e,`setAttribute`,[t,n])}function jn(e,t){m(e,`removeAttribute`,[t])}function Mn(e,t){return Cn(m(e,`querySelector`,[t]))}function Nn(e){return wn(se(e,`body`))}function Pn(e){return m(e,`createDocumentFragment`,[])}function Fn(e,t){return m(e,`createComment`,[t])}function G(){let e=Je.val;return Je.val=e+1|0,e}function In(e){let t=C.current_owner;t!==void 0&&Vt(t.disposers,e)}function Ln(e){let t=e.length-1|0;for(;;){let n=t;if(n>=0){pt(e,n)(),t=n-1|0;continue}else break}yn(e)}function Rn(e){let t=C.current_cleanups;return C.current_cleanups=e,t}function zn(e,n){let r=Rn(new t(e));n(),C.current_cleanups=r}function Bn(e,t){let n=C.current_subscriber;C.current_subscriber=e;let r=t();return C.current_subscriber=n,r}function Vn(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;Ln(t.cleanups);let n=r.val;n!==void 0&&Vn(n,()=>{zn(t.cleanups,e)})};r.val={id:n,run:i},i();let a=()=>{t.active=!1,Ln(t.cleanups)};return In(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 Hn(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){return{value:e,subscribers:[]}}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 Gn(e)}function Xn(e){return Kn(e)}function Zn(e){return qn(e)}function Qn(e){return Jn(e)}function $n(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($n(e.id))return;Ut(C.pending_ids,e.id),I(C.pending_effects,e);return}else{let t=e.run;t();return}}function er(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 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,t){e.value=t,er(e)}function Y(e,t){e.value=t,tr(e)}function ar(e,t){e.value=t,nr(e)}function or(e,t){e.value=t,rr(e)}function sr(e,t){e.value=t(e.value),er(e)}function cr(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(Bn(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 lr(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{ln(n,o);return}}}function ur(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,lr(e,n)}}function dr(e){return e.$tag===0}function fr(e){return e.$tag===1}function pr(e){return e.$tag===2}function mr(e){if(e.$tag===1){let t=e._0;return new v(t)}else return Se}function hr(e){if(e.$tag===2)return e._0}function gr(e){return Wn(e.state)}function _r(e){return e.state.value}function vr(e){let t=e.state;return dr(t.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.refetch_;t()}function wr(e){let t=Xn(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 Tr(){let e=Xn(y);return{_0:{state:e,refetch_:()=>{Y(e,y)}},_1:t=>{Y(e,new Ce(t))},_2:t=>{Y(e,new we(t))}}}function Er(e){let t=Ye.val;return Ye.val=t+1|0,{id:t,default_value:()=>e,providers:[]}}function Dr(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 Or(e,t){let n=e.providers.length-1|0;for(;;){let r=n;if(r>=0){let i=ht(e.providers,r),a=i._0,o=i._1;if(Dr(a,t))return o;n=r-1|0;continue}else break}}function kr(e,t){let n=C.current_owner;C.current_owner=e;let r=t();return C.current_owner=n,r}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){if(e.disposed)return;e.disposed=!0;let t=e.children.length-1|0;for(;;){let n=t;if(n>=0){jr(mt(e.children,n)),t=n-1|0;continue}else break}let n=e.disposers.length-1|0;for(;;){let t=n;if(t>=0){pt(e.disposers,t)(),n=t-1|0;continue}else break}let r=e.cleanups.length-1|0;for(;;){let t=r;if(t>=0){pt(e.cleanups,t)(),r=t-1|0;continue}else break}bn(e.children),yn(e.disposers),yn(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{dn(t,o);return}}}}function Mr(e){let t={id:G(),parent:e,children:[],cleanups:[],disposers:[],disposed:!1};return e===void 0||Wt(e.children,t),t}function Nr(e){let t=Mr(C.current_owner),n=()=>{jr(t)};return kr(t,()=>e(n))}function Pr(e,t,n){let r=C.current_owner,i=Mr(r),a=i.id;return Gt(e.providers,{_0:a,_1:()=>t}),Vt(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{fn(t,o);return}}}),kr(i,n)}function Fr(e,t,n){return C.current_owner===void 0?Nr(r=>Pr(e,t,n)):Pr(e,t,n)}function Ir(e){let t=C.current_owner,n=Or(e,t);if(n===void 0){let t=e.default_value;return t()}else return n()}function Lr(e){let t=C.current_subscriber;C.current_subscriber=void 0;let n=e();return C.current_subscriber=t,n}function Rr(e){let t=C.current_subscriber;C.current_subscriber=void 0,e(),C.current_subscriber=t}function zr(e){Rr(e)}function Br(){C.batch_depth=C.batch_depth+1|0}function Vr(){for(;;)if(C.pending_effects.length>0){let e=gn(C.pending_effects,0);_n(C.pending_ids,0);let t=e.run;t();continue}else return}function Hr(){if(C.batch_depth=C.batch_depth-1|0,C.batch_depth===0){Vr();return}else return}function Ur(e){Br();let t=e();return Hr(),t}function Wr(e){let t=C.current_cleanups;if(t.$tag===1){let n=t._0;Vt(n,e);return}else return}function Gr(e,t){return cr(()=>t(q(e)))}function Kr(e,t,n){return cr(()=>n(q(e),q(t)))}function X(e,t){let n=[],r=Qt(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})),xn(i)):z(i,a),o=e+1|0;continue}else break}return L(n,N({buf:i,start:0,end:i.length})),n}function qr(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 Jr(e){let t=Qt(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(cn(t,0,n)),_1:qr(N(cn(t,n+1|0,void 0)))}}function Yr(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 Xr(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&&Et(t,`/`),Et(t,n),r=i+1|0;continue}else break}return t.val}function Zr(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 Qr(e,t){let n=Zt(t);return F(e,{str:n,start:0,end:n.length})}function $r(e,t){let n=Zr(t.pattern),r=Zr(e),i=t.catch_all;if(i===void 0){if(n.length!==r.length)return b;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(Qr(a,58)||Yr(a))if(i<t.param_names.length)R(e,{_0:T(t.param_names,i),_1:c}),i=i+1|0;else return b;else if(a!==c)return b;o=s+1|0;continue}else break}return new Te(e)}else{let e=i,a=n.length-1|0,o=r.length;if(e.optional){if(o<a)return b}else if(o<=a)return b;let s=[],c=0,l=0;for(;;){let e=l;if(e<a){let i=T(n,e),a=T(r,e);if(Qr(i,58)||Yr(i))if(c<t.param_names.length)R(s,{_0:T(t.param_names,c),_1:a}),c=c+1|0;else return b;else if(i!==a)return b;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=Xr(u);return R(s,{_0:e.name,_1:f}),new Te(s)}}function ei(e,t){let n=Jr(e),r=n._0,i=n._1,a=t.length,o=0;for(;;){let e=o;if(e<a){let n=t[e],a=$r(r,n);if(a.$tag===1)return{route:n,params:a._0,query:i,path:r};o=e+1|0;continue}else break}}function ti(e){if(e===``||e===`/`)return`/`;let t=Qt(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&&yt(n,o-1|0)===47&&hn(n),N({buf:n,start:0,end:n.length})}function ni(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 ri(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 ii(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=ti(`${t}${a}`),u=ni(l),d=ri(l);qt(r,{pattern:l,param_names:u,component:o,layouts:vn(n),kind:0,title:s,meta:c,catch_all:d});break}case 2:{let e=i,n=e._0,a=e._1,o=ti(`${t}${n}`);qt(r,{pattern:o,param_names:ni(o),component:a,layouts:[],kind:1,title:``,meta:[],catch_all:ri(o)});break}case 3:{let e=i,n=e._0,a=e._1,o=ti(`${t}${n}`);qt(r,{pattern:o,param_names:ni(o),component:a,layouts:[],kind:2,title:``,meta:[],catch_all:ri(o)});break}default:{let e=i,a=e._0,o=e._1,s=e._2,c=ti(`${t}${a}`),l=vn(n);L(l,s),ii(o,c,l,r)}}a=o+1|0;continue}else return}}function ai(e,t){let n=[];return ii(e,t,[],n),n}function oi(e){let t=xe(_(),e());return K(()=>{On(t,e())}),new De(t)}function si(e,t,n){if(t===`className`){kn(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`){An(e,`disabled`,``);return}else{jn(e,`disabled`);return}else{An(e,t,n);return}}function ci(e,t){An(e,`style`,t)}function li(e,t,n){switch(n.$tag){case 0:{let r=n._0;if(t===`style`){ci(e,r);return}else{si(e,t,r);return}}case 1:{let r=n._0;K(()=>{let n=r();if(t===`style`){ci(e,n);return}else{si(e,t,n);return}});return}default:{let r=n._0;if(t===`__ref`){r(e);return}else{Oe(e,t,r);return}}}}function ui(e){return{inner:e}}function Z(e){switch(e.$tag){case 0:return e._0.inner;case 1:return e._0;default:return e._0}}function di(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;li(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 Ee(ui(r))}function fi(e,t){U(e,Z(t))}function pi(e){On(e,``)}function mi(e,t){pi(e),fi(e,t)}function hi(e){switch(e.length){case 0:return new x(Pn(_()));case 1:return ft(e,0);default:{let t=Pn(_()),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 x(t)}}}function gi(e,t){let n=Fn(_(),`show`),r=C.current_owner,i=e(),a;if(i){let e;e=r===void 0?t():Ar(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():Ar(r,t),Dn(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 hi([new x(e),new x(n)])}else return new x(n)}function _i(e,t){return ke(e,t)}function vi(e,t){let n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];if(_i(n.item,t))return i;r=i+1|0;continue}else break}return-1}function yi(e,t,n){if(n.$tag===1){let r=n._0;return Ae(e,t,r)}else return je(e,t)}function bi(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){Ht(o,{item:gt(n,0),dom:i}),s=e+1|0;continue}else break}let c=nn(t.length,!1),l=i,u=a-1|0;for(;;){let i=u;if(i>=0){let a=gt(n,i),s=vi(t,a);if(s>=0){let n=_t(t,s);rn(c,s,!0),Me(n.dom,l)||yi(e,n.dom,new h(l)),l=n.dom,an(o,i,n)}else{let t=r(a,i);Dn(e,t,new h(l)),l=t,an(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];vt(c,n)||W(e,r.dom),f=n+1|0;continue}else break}return o}function xi(e,t,n,r){let i=H(t);if(i.$tag===1){let a=i._0;e.val=bi(a,e.val,n,r,t);return}else return}function Si(e,t){return{item:e,dom:t}}function Ci(e,t){let n=_(),r=Fn(n,`for`),i={val:[]},a={val:!0},o=C.current_owner,s=(e,n)=>Z(o===void 0?t(e,n):Ar(o,()=>t(e,n))),c=Pn(n),l=e(),u=l.length,d=0;for(;;){let e=d;if(e<u){let t=l[e],n=s(t,e);Ht(i.val,Si(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}xi(i,r,t,s)}),new x(c)}function wi(e){return new De(xe(_(),e))}function Ti(e){return new x(e)}function Ei(){return le()}function Di(e){return wi(e)}function Oi(e){return oi(e)}function ki(e,t,n){return di(e,t,n)}function Ai(e,t,n){return di(e,t,n)}function ji(e,t){let n=Gn(e.value),r={val:Ne};return ur(e,e=>{let i=r.val;if(i.$tag===1){let e=i._0;ve(e)}r.val=new Pe(_e(()=>{ir(n,e)},t))}),n}function Mi(e){switch(e.$tag){case 0:return e._0;case 1:return e._0;default:return e._0}}function Ni(){return{mount:me,use_shadow:!1,is_svg:!1}}function Pi(e){return{mount:new g(e),use_shadow:!1,is_svg:!1}}function Fi(){return{mount:me,use_shadow:!0,is_svg:!1}}function Ii(e,t){let n=_(),r=e.mount,i;if(r.$tag===1)i=r._0;else{let e=Nn(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(En(i,Tn(`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=Mi(n);U(o,r),Kt(s,r),l=e+1|0;continue}else break}return Wr(()=>{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(Fn(n,`portal`))}function Li(e){return Ii(Ni(),e)}function Ri(e,t){let n=Mn(_(),e),r;if(n.$tag===1){let e=n._0;r=Pi(e)}else r=Ni();return Ii(r,t)}function zi(e){return Ii(Fi(),e)}function Bi(e,t){return Ii({mount:new g(e),use_shadow:!0,is_svg:!1},t)}function Vi(){let e=Re(),t=ze();return t===``?e:`${e}${t}`}function Hi(e){let t=Vi();ar(e.current_path,t),or(e.current_match,ei(t,e.routes))}function Ui(e,t){let n=ai(e,t),r=Vi(),i=ei(r,n),a={routes:n,base:t,current_path:Zn(r),current_match:Qn(i)};return He(()=>{Hi(a)}),a}function Wi(e,t){ar(e.current_path,t),or(e.current_match,ei(t,e.routes))}function Gi(e,t){Be(t),Wi(e,t)}function Ki(e,t){Ve(t),Wi(e,t)}function qi(e){return Hn(e.current_path)}function Ji(e){return Un(e.current_match)}function Yi(e){return Yn(e)}function Xi(e){return q(e)}function Q(e,t){ir(e,t)}function Zi(e,t){sr(e,t)}function Qi(e){return e.value}function $i(e,t){return ur(e,t)}function ea(e,t){return Gr(e,t)}function ta(e){return cr(e)}function na(e,t,n){return Kr(e,t,n)}function ra(e){return K(e)}function ia(){Br()}function aa(){Hr()}function oa(e){return Lr(e)}function sa(e){return Ur(e)}function ca(e){Wr(e)}function la(e){return Nr(e)}function ua(){let e=C.current_owner;if(e!==void 0)return e}function da(e,t){return kr(e,t)}function fa(){return C.current_owner!==void 0}function pa(e){zr(e)}function ma(e,t){return Ci(e,t)}function ha(e){return Di(e)}function ga(e){return Oi(e)}function _a(e,t){mi(e,t)}function va(e,t){fi(e,t)}function ya(e,t){return gi(e,t)}function ba(e,t,n){return ki(e,t,n)}function xa(e,t,n){return Ai(e,t,n)}function Sa(e){return hi(e)}function Ca(e,t,n){return di(e,t,n)}function wa(){return Ei()}function Ta(e,t){return ji(e,t)}function Ea(e,t){return new S(e,t,``,[])}function Da(e,t,n){return new S(e,t,n,[])}function Oa(e,t,n,r){return new S(e,t,n,r)}function ka(e,t){return Ui(e,t)}function Aa(e,t){let n;return n=t===void 0?``:t,ka(e,n)}function ja(e,t){Gi(e,t)}function Ma(e,t){Ki(e,t)}function Na(e){return qi(e)}function Pa(e){return Ji(e)}function Fa(e){return e.base}function Ia(e){return Er(e)}function La(e,t,n){return Fr(e,t,n)}function Ra(e){return Ir(e)}function za(e){return wr(e)}function Ba(){let e=Tr();return{_0:e._0,_1:e._1,_2:e._2}}function Va(e){return gr(e)}function Ha(e){return _r(e)}function Ua(e){Cr(e)}function Wa(e){return vr(e)}function Ga(e){return yr(e)}function Ka(e){return br(e)}function qa(e){let t=xr(e);return t.$tag===1?t._0:Ke()}function Ja(e){let t=Sr(e);return t===void 0?``:t}function Ya(e){return dr(e)}function Xa(e){return fr(e)}function Za(e){return pr(e)}function Qa(e){let t=mr(e);return t.$tag===1?t._0:Ke()}function $a(e){let t=hr(e);return t===void 0?``:t}function eo(e){return new Le(Z(e))}function $(e){return Ti(Mi(e))}function to(e){let t=Array(e.length),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];t[i]=eo(n),r=i+1|0;continue}else break}return $(Li(t))}function no(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]=eo(r),i=e+1|0;continue}else break}return $(Ri(e,n))}function ro(e){let t=Array(e.length),n=e.length,r=0;for(;;){let i=r;if(i<n){let n=e[i];t[i]=eo(n),r=i+1|0;continue}else break}return $(zi(t))}function io(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]=eo(r),i=e+1|0;continue}else break}return $(Bi(e,n))}function ao(e){let t=Yi(e);return[()=>Xi(t),e=>{typeof e==`function`?Zi(t,e):Q(t,e)}]}function oo(e){return ra(e)}function so(e){return ta(e)}function co(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 lo(...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 uo(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 fo(e){let t=za(e),n=()=>Qa(Va(t));return Object.defineProperties(n,{loading:{get:()=>Wa(t)},error:{get:()=>Ja(t)},state:{get:()=>Wa(t)?`pending`:Ga(t)?`ready`:Ka(t)?`errored`:`unresolved`},latest:{get:()=>Ha(t)}}),[n,{refetch:()=>Ua(t)}]}function po(){let e=Ba(),t=e._0,n=e._1,r=e._2,i=()=>Qa(Va(t));return Object.defineProperties(i,{loading:{get:()=>Wa(t)},error:{get:()=>Ja(t)}}),[i,n,r]}function mo(e,t){let[n]=e,r=Yi(n()),i=Ta(r,t);return[()=>Xi(i),e=>Q(r,e)]}function ho(e){let{each:t,fallback:n,children:r}=e;return t?ma(typeof t==`function`?t:()=>t,(e,t)=>r(e,()=>t)):n??null}function go(e){let{when:t,children:n}=e,r=typeof t==`function`?t:()=>t;return ya(()=>!!r(),typeof n==`function`?()=>n(r()):()=>n)}function _o(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:ma(i,(e,t)=>r(()=>i()[t],t))}function vo(e){let{context:t,value:n,children:r}=e;return La(t,n,()=>typeof r==`function`?r():r)}function yo(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 bo(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 xo(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 io(e,i)}else if(t)return io(t,i);return ro(i)}return typeof t==`string`?no(t,i):to(i)}function So(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,Yi(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(`.`);ia();try{for(let[e,a]of t.entries())(e===r||e.startsWith(r+`.`))&&Q(a,i(n,e.split(`.`)))}finally{aa()}}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];Xi(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 Co(e){return t=>{let n=structuredClone(t);return e(n),n}}function wo(e){return()=>e}export{Ha as $,ma as A,pa as B,na as C,Ra as Ct,Aa as D,la as E,ba as F,ro as G,to as H,xa as I,Ja as J,La as K,ea as L,Xi as M,ua as N,ra as O,fa as P,Ga as Q,va as R,ia as S,Zi as St,Ca as T,io as U,Qi as V,no as W,Ka as X,Va as Y,Wa as Z,Co as _,Xa as _t,vo as a,Fa as at,sa as b,ha as bt,po as c,ja as ct,fo as d,da as dt,Ua as et,ao as f,Q as ft,co as g,Ya as gt,lo as h,Za as ht,xo as i,Da as it,Sa as j,wa as k,oo as l,Ma as lt,mo as m,$a as mt,_o as n,Ea as nt,go as o,Pa as ot,So as p,ya as pt,_a as q,bo as r,Oa as rt,yo as s,Na as st,ho as t,qa as tt,so as u,oa as ut,wo as v,Qa as vt,Ia as w,aa as x,ga as xt,uo as y,$i as yt,ca as z};
|
package/package.json
CHANGED
|
@@ -1,37 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mizchi/luna",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Fine-grained reactive UI library for Moonbit/JS",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./index.js",
|
|
7
|
-
"types": "./index.d.ts",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"types": "./index.d.ts",
|
|
11
|
-
"import": "./index.js"
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
12
|
},
|
|
13
13
|
"./jsx-runtime": {
|
|
14
|
-
"types": "./jsx-runtime.d.ts",
|
|
15
|
-
"import": "./jsx-runtime.js"
|
|
14
|
+
"types": "./dist/jsx-runtime.d.ts",
|
|
15
|
+
"import": "./dist/jsx-runtime.js"
|
|
16
16
|
},
|
|
17
17
|
"./jsx-dev-runtime": {
|
|
18
|
-
"types": "./jsx-runtime.d.ts",
|
|
19
|
-
"import": "./jsx-runtime.js"
|
|
18
|
+
"types": "./dist/jsx-dev-runtime.d.ts",
|
|
19
|
+
"import": "./dist/jsx-dev-runtime.js"
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"
|
|
23
|
+
"prepublishOnly": "pnpm build",
|
|
24
|
+
"build": "tsdown",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"build:examples": "vite build examples"
|
|
24
27
|
},
|
|
25
28
|
"devDependencies": {
|
|
26
29
|
"global-jsdom": "^27.0.0",
|
|
27
|
-
"jsdom": "^27.3.0"
|
|
30
|
+
"jsdom": "^27.3.0",
|
|
31
|
+
"preact": "^10.28.0",
|
|
32
|
+
"tsdown": "^0.18.2"
|
|
28
33
|
},
|
|
29
34
|
"repository": {
|
|
30
35
|
"directory": "js/luna",
|
|
31
36
|
"url": "https://github.com/mizchi/luna.mbt"
|
|
32
37
|
},
|
|
33
38
|
"files": [
|
|
34
|
-
"
|
|
35
|
-
"*.d.ts"
|
|
39
|
+
"dist"
|
|
36
40
|
]
|
|
37
41
|
}
|
package/dom.d.ts
DELETED
package/dom.js
DELETED