regor 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -40
- package/dist/regor.d.ts +23 -12
- package/dist/regor.es2015.cjs.js +5 -3
- package/dist/regor.es2015.cjs.prod.js +3 -3
- package/dist/regor.es2015.esm.js +5 -3
- package/dist/regor.es2015.esm.prod.js +3 -3
- package/dist/regor.es2015.iife.js +5 -3
- package/dist/regor.es2015.iife.prod.js +3 -3
- package/dist/regor.es2019.cjs.js +5 -3
- package/dist/regor.es2019.cjs.prod.js +3 -3
- package/dist/regor.es2019.esm.js +5 -3
- package/dist/regor.es2019.esm.prod.js +3 -3
- package/dist/regor.es2019.iife.js +5 -3
- package/dist/regor.es2019.iife.prod.js +3 -3
- package/dist/regor.es2022.cjs.js +5 -3
- package/dist/regor.es2022.cjs.prod.js +3 -3
- package/dist/regor.es2022.esm.js +5 -3
- package/dist/regor.es2022.esm.prod.js +3 -3
- package/dist/regor.es2022.iife.js +5 -3
- package/dist/regor.es2022.iife.prod.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,6 +27,12 @@ Regor is a powerful UI framework designed to streamline the development of HTML5
|
|
|
27
27
|
- **Reentrance:** Regor supports multiple mountings in the previously mounted area using the same or different app contexts. This enables creating and mounting new directives dynamically.
|
|
28
28
|
- **Compatibility:** Rendered pages are designed for seamless integration with other libraries manipulating the DOM.
|
|
29
29
|
|
|
30
|
+
## Documentation
|
|
31
|
+
|
|
32
|
+
Discover the capabilities of Regor by diving into our comprehensive documentation. Whether you're new to Regor or an experienced user, our documentation provides in-depth insights into its features, API, directives, and more.
|
|
33
|
+
|
|
34
|
+
Start exploring the [Regor Documentation](docs/index.md) now to harness the full potential of this powerful UI framework.
|
|
35
|
+
|
|
30
36
|
## Getting started
|
|
31
37
|
|
|
32
38
|
Click and count sample source:
|
|
@@ -83,7 +89,7 @@ HTML:
|
|
|
83
89
|
</div>
|
|
84
90
|
```
|
|
85
91
|
|
|
86
|
-
|
|
92
|
+
Define composables:
|
|
87
93
|
|
|
88
94
|
```ts
|
|
89
95
|
import { ref, onMounted, onUnmounted, type Ref } from 'regor'
|
|
@@ -108,6 +114,10 @@ export const useMouse = (): { x: Ref<number>; y: Ref<number> } => {
|
|
|
108
114
|
|
|
109
115
|
`yarn add regor`
|
|
110
116
|
|
|
117
|
+
or
|
|
118
|
+
|
|
119
|
+
`npm install regor`
|
|
120
|
+
|
|
111
121
|
## Comparison with VueJs
|
|
112
122
|
|
|
113
123
|
Regor shares core functionality with VueJs but differs in implementation, TypeScript support, template evaluation, reactivity, server-side rendering support, compatibility.
|
|
@@ -147,66 +157,66 @@ These directives empower you to create dynamic and interactive user interfaces,
|
|
|
147
157
|
|
|
148
158
|
**App / Component Template Functions**
|
|
149
159
|
|
|
150
|
-
-
|
|
151
|
-
-
|
|
152
|
-
-
|
|
153
|
-
-
|
|
160
|
+
- **`createApp`** Similar to Vue's `createApp`, it initializes a Regor application instance.
|
|
161
|
+
- **`createComponent`** Creates a Regor component instance.
|
|
162
|
+
- **`toFragment`** Converts a JSON template to a document fragment.
|
|
163
|
+
- **`toJsonTemplate`** Converts a DOM element to a JSON template.
|
|
154
164
|
|
|
155
165
|
**Cleanup Functions**
|
|
156
166
|
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
167
|
+
- **`addUnbinder`** Adds an unbinder to a DOM element.
|
|
168
|
+
- **`getBindData`** Retrieves bind data associated with a DOM element.
|
|
169
|
+
- **`removeNode`** Removes a node while properly disposing of associated bind data and observers.
|
|
170
|
+
- **`unbind`** Unbinds a node, disposing of observers and bind data.
|
|
161
171
|
|
|
162
172
|
**Compute Functions**
|
|
163
173
|
|
|
164
|
-
-
|
|
165
|
-
-
|
|
166
|
-
-
|
|
167
|
-
-
|
|
168
|
-
-
|
|
169
|
-
-
|
|
174
|
+
- **`computed`** Similar to Vue's `computed`, it creates a computed property.
|
|
175
|
+
- **`computed`** Computes the value observing a single ref, more efficient than observing any.
|
|
176
|
+
- **`computeMany`** Computes the value observing given refs, more efficient than observing any.
|
|
177
|
+
- **`watchEffect`** Similar to Vue's `watchEffect`, it watches for reactive changes.
|
|
178
|
+
- **`collectRefs`** Like `watchEffect`, but runs once and returns all refs used in the evaluated action.
|
|
179
|
+
- **`silence`** Silences the ref collection in a `watchEffect` or `collectRefs`.
|
|
170
180
|
|
|
171
181
|
**Misc Functions**
|
|
172
182
|
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
-
|
|
177
|
-
-
|
|
178
|
-
-
|
|
183
|
+
- **`flatten`** Flattens a given ref object into a raw object recursively.
|
|
184
|
+
- **`isRaw`** Checks if a given ref is marked as raw.
|
|
185
|
+
- **`markRaw`** Marks a ref as raw.
|
|
186
|
+
- **`persist`** Persists a given ref in local storage reactively.
|
|
187
|
+
- **`html`** A tag to produce HTML string using template literals. Recommended to use with the VS-Code [`lit-html`](https://marketplace.visualstudio.com/items?itemName=bierner.lit-html) extension for formatting and highlighting.
|
|
188
|
+
- **`raw`** A tag to produce HTML string, similar to `html`, but it is excluded from formatting when [`lit-html`](https://marketplace.visualstudio.com/items?itemName=bierner.lit-html) extension is installed.
|
|
179
189
|
|
|
180
190
|
**Observe Functions**
|
|
181
191
|
|
|
182
|
-
-
|
|
183
|
-
-
|
|
184
|
-
-
|
|
185
|
-
-
|
|
186
|
-
-
|
|
187
|
-
-
|
|
192
|
+
- **`observe`** Observes changes in a single ref.
|
|
193
|
+
- **`observeMany`** Observes changes in multiple refs.
|
|
194
|
+
- **`observerCount`** Retrieves the active observer count of a ref.
|
|
195
|
+
- **`batch`** Performs batch updates, triggering changes at the end. Use with caution due to possible dirty reads.
|
|
196
|
+
- **`startBatch`** Starts a batch update.
|
|
197
|
+
- **`endBatch`** Ends a started batch update and triggers affected refs.
|
|
188
198
|
|
|
189
199
|
**Reactivity Functions**
|
|
190
200
|
|
|
191
|
-
-
|
|
192
|
-
-
|
|
193
|
-
-
|
|
194
|
-
-
|
|
195
|
-
-
|
|
196
|
-
-
|
|
197
|
-
-
|
|
198
|
-
-
|
|
199
|
-
-
|
|
201
|
+
- **`ref`** Creates a deep ref object recursively, modifying the source object in place.
|
|
202
|
+
- **`sref`** Creates a simple ref object from a given value, without nested ref creation.
|
|
203
|
+
- **`isDeepRef`** Returns true if a given ref is created with `ref()` function.
|
|
204
|
+
- **`isRef`** Returns true for any ref, false for non-refs.
|
|
205
|
+
- **`pause`** Pauses a ref's auto-trigger on value change.
|
|
206
|
+
- **`resume`** Resumes a ref's auto-trigger on value change.
|
|
207
|
+
- **`trigger`** Manually triggers a ref to inform its observers.
|
|
208
|
+
- **`unref`** Unwraps a ref, returning the raw value.
|
|
209
|
+
- **`entangle`** Entangles two refs to sync their value changes.
|
|
200
210
|
|
|
201
211
|
**Composition Functions**
|
|
202
212
|
|
|
203
|
-
-
|
|
204
|
-
-
|
|
205
|
-
-
|
|
213
|
+
- **`useScope`** In a scope, you can use `onMounted` and `onUnmounted` functions. Components are always created in scope. Use the useScope for apps created by createApp. Similar to Vue's `effectScope`, useScope provides efficient cleanup of watchEffects, computed refs, observers and enables the `onMounted` and `onUnmounted` calls in the scope.
|
|
214
|
+
- **`onMounted`** Similar to Vue's `onMounted`, it executes when the component is mounted.
|
|
215
|
+
- **`onUnmounted`** Similar to Vue's `onUnmounted`, it executes when the component is unmounted.
|
|
206
216
|
|
|
207
217
|
**Log Configuration**
|
|
208
218
|
|
|
209
|
-
-
|
|
219
|
+
- **`warningHandler`** Customize or turn off console warnings.
|
|
210
220
|
|
|
211
221
|
## Contributing
|
|
212
222
|
|
package/dist/regor.d.ts
CHANGED
|
@@ -250,33 +250,44 @@ export declare const isDeepRef: (value: unknown) => value is AnyRef;
|
|
|
250
250
|
export declare const isRef: (value: unknown) => value is AnyRef;
|
|
251
251
|
export declare const pause: <TValueType extends AnyRef>(source: TValueType) => void;
|
|
252
252
|
/**
|
|
253
|
-
* Converts the given value and
|
|
254
|
-
* The returned object's type reflects
|
|
253
|
+
* Converts the given value and its nested properties into ref objects recursively and returns the ref.
|
|
254
|
+
* The returned object's type reflects its nested properties as well.
|
|
255
|
+
*
|
|
255
256
|
* Regor provides two options to get or update the value of a ref.
|
|
257
|
+
*
|
|
256
258
|
* Getting the ref value:
|
|
259
|
+
*
|
|
257
260
|
* 1. refObj.value
|
|
258
261
|
* 2. refObj()
|
|
262
|
+
*
|
|
259
263
|
* Setting the ref value:
|
|
264
|
+
*
|
|
260
265
|
* 1. refObj.value = newValue
|
|
261
266
|
* 2. refObj(newValue)
|
|
262
267
|
*
|
|
263
|
-
* @param value
|
|
264
|
-
* @returns ref
|
|
268
|
+
* @param value - Any value to be converted into a ref object.
|
|
269
|
+
* @returns A ref object representing the input value and its nested properties.
|
|
265
270
|
*/
|
|
266
271
|
export declare const ref: <TValueType>(value?: TValueType | RefContent<TValueType> | RefParam<TValueType> | (TValueType extends Ref<infer V1> ? Ref<RefParam<V1>> : never) | (TValueType extends SRef<infer V2> ? SRef<UnwrapRef<V2>> : never) | (TValueType extends (infer V1_1)[] ? V1_1[] : never) | null | undefined) => IsNull<TValueType> extends true ? Ref<unknown> : Ref<RefParam<TValueType>>;
|
|
267
272
|
export declare const resume: <TValueType extends AnyRef>(source: TValueType) => void;
|
|
268
273
|
/**
|
|
269
|
-
* Converts the given value to sref object and returns the sref.
|
|
270
|
-
*
|
|
274
|
+
* Converts the given value to an sref object and returns the sref.
|
|
275
|
+
* A sref (short for "shallow ref") allows you to get or update its value.
|
|
276
|
+
*
|
|
277
|
+
* Regor provides two options to get or update the value of an sref.
|
|
278
|
+
*
|
|
271
279
|
* Getting the sref value:
|
|
272
|
-
*
|
|
273
|
-
*
|
|
280
|
+
*
|
|
281
|
+
* 1. srefObj.value
|
|
282
|
+
* 2. srefObj()
|
|
283
|
+
*
|
|
274
284
|
* Setting the sref value:
|
|
275
|
-
* 1. refObj.value = newValue
|
|
276
|
-
* 2. refObj(newValue)
|
|
277
285
|
*
|
|
278
|
-
*
|
|
279
|
-
*
|
|
286
|
+
* 1. srefObj.value = newValue
|
|
287
|
+
* 2. srefObj(newValue)
|
|
288
|
+
*
|
|
289
|
+
* @param value - Any value to be converted into an sref object.
|
|
290
|
+
* @returns An sref object representing the input value.
|
|
280
291
|
*/
|
|
281
292
|
export declare const sref: <TValueType>(value?: TValueType | (TValueType extends SRef<infer V2> ? SRef<UnwrapRef<V2>> : never) | (TValueType extends (infer V1)[] ? V1[] : never) | null | undefined) => IsNull<TValueType> extends true ? SRef<unknown> : SRef<SRefContent<TValueType>>;
|
|
282
293
|
export declare const trigger: <TValueType extends AnyRef>(source: TValueType, eventSource?: any, isRecursive?: boolean) => void;
|
package/dist/regor.es2015.cjs.js
CHANGED
|
@@ -1234,7 +1234,7 @@ var _ForBinder = class _ForBinder {
|
|
|
1234
1234
|
return;
|
|
1235
1235
|
const keys = (matches[1] + ((_a = matches[2]) != null ? _a : "")).split(",").map((key) => key.trim());
|
|
1236
1236
|
const indexOfIndex = keys.length > 1 ? keys.length - 1 : -1;
|
|
1237
|
-
const index = indexOfIndex !== -1 && ((_b = keys[indexOfIndex]) == null ? void 0 : _b.startsWith("#")) ? keys[indexOfIndex] : "";
|
|
1237
|
+
const index = indexOfIndex !== -1 && (keys[indexOfIndex] === "index" || ((_b = keys[indexOfIndex]) == null ? void 0 : _b.startsWith("#"))) ? keys[indexOfIndex] : "";
|
|
1238
1238
|
if (index)
|
|
1239
1239
|
keys.splice(indexOfIndex, 1);
|
|
1240
1240
|
const list = matches[3];
|
|
@@ -1260,7 +1260,7 @@ var _ForBinder = class _ForBinder {
|
|
|
1260
1260
|
}
|
|
1261
1261
|
const result = { ctx, index: sref(-1) };
|
|
1262
1262
|
if (index) {
|
|
1263
|
-
result.index = ctx[index.substring(1)] = sref(i);
|
|
1263
|
+
result.index = ctx[index.startsWith("#") ? index.substring(1) : index] = sref(i);
|
|
1264
1264
|
}
|
|
1265
1265
|
return result;
|
|
1266
1266
|
}
|
|
@@ -4108,7 +4108,7 @@ var handleInputAndTextArea = (el, flags, modelRef, parsedValue) => {
|
|
|
4108
4108
|
const eventType = isLazy ? "change" : "input";
|
|
4109
4109
|
const isNumber = isNumberInput(el);
|
|
4110
4110
|
const trimmer = () => {
|
|
4111
|
-
if (!flags.trim && !getFlags(parsedValue()[1]))
|
|
4111
|
+
if (!flags.trim && !getFlags(parsedValue()[1]).trim)
|
|
4112
4112
|
return;
|
|
4113
4113
|
el.value = el.value.trim();
|
|
4114
4114
|
};
|
|
@@ -4834,7 +4834,9 @@ var _RegorConfig = class _RegorConfig {
|
|
|
4834
4834
|
[`${prefix}show`]: showDirective,
|
|
4835
4835
|
[`${prefix}model`]: modelDirective,
|
|
4836
4836
|
":style": styleDirective,
|
|
4837
|
+
[`${prefix}bind:style`]: styleDirective,
|
|
4837
4838
|
":class": classDirective,
|
|
4839
|
+
[`${prefix}bind:class`]: classDirective,
|
|
4838
4840
|
":ref": refDirective,
|
|
4839
4841
|
":value": valueDirective,
|
|
4840
4842
|
teleport: teleportDirective
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";var at=Object.defineProperty,to=Object.defineProperties,no=Object.getOwnPropertyDescriptor,ro=Object.getOwnPropertyDescriptors,oo=Object.getOwnPropertyNames,On=Object.getOwnPropertySymbols;var An=Object.prototype.hasOwnProperty,so=Object.prototype.propertyIsEnumerable;var pt=Math.pow,Gt=(t,e,n)=>e in t?at(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,ct=(t,e)=>{for(var n in e||(e={}))An.call(e,n)&&Gt(t,n,e[n]);if(On)for(var n of On(e))so.call(e,n)&&Gt(t,n,e[n]);return t},Nn=(t,e)=>to(t,ro(e));var io=(t,e)=>{for(var n in e)at(t,n,{get:e[n],enumerable:!0})},ao=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of oo(e))!An.call(t,o)&&o!==n&&at(t,o,{get:()=>e[o],enumerable:!(r=no(e,o))||r.enumerable});return t};var po=t=>ao(at({},"__esModule",{value:!0}),t);var l=(t,e,n)=>(Gt(t,typeof e!="symbol"?e+"":e,n),n);var vs={};io(vs,{ComponentHead:()=>$e,RegorConfig:()=>ie,addUnbinder:()=>D,batch:()=>Zr,collectRefs:()=>Tt,computeMany:()=>Kr,computeRef:()=>Wr,computed:()=>zr,createApp:()=>Fr,createComponent:()=>qr,endBatch:()=>wn,entangle:()=>Ot,flatten:()=>Q,getBindData:()=>he,html:()=>vn,isDeepRef:()=>Le,isRaw:()=>je,isRef:()=>h,markRaw:()=>Gr,observe:()=>S,observeMany:()=>Xr,observerCount:()=>Yr,onMounted:()=>eo,onUnmounted:()=>G,pause:()=>Ft,persist:()=>Jr,raw:()=>Qr,ref:()=>Re,removeNode:()=>j,resume:()=>qt,silence:()=>bt,sref:()=>z,startBatch:()=>Sn,toFragment:()=>ke,toJsonTemplate:()=>Ge,trigger:()=>F,unbind:()=>oe,unref:()=>P,useScope:()=>wt,warningHandler:()=>Xe,watchEffect:()=>Ae});module.exports=po(vs);var H=t=>typeof t=="function",W=t=>typeof t=="string",Mn=t=>typeof t=="undefined",te=t=>t==null||typeof t=="undefined",$=t=>typeof t!="string"||!(t!=null&&t.trim()),co=Object.prototype.toString,Jt=t=>co.call(t),ye=t=>Jt(t)==="[object Map]",Z=t=>Jt(t)==="[object Set]",Qt=t=>Jt(t)==="[object Date]",Qe=t=>typeof t=="symbol",E=Array.isArray,N=t=>t!==null&&typeof t=="object";var Ln={0:"App root element is missing",1:t=>`${t} component template cannot be found.`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:t=>`${t} requires ref source argument`,4:"computed is readonly.",5:"ref is readonly."},_=(t,...e)=>{let n=Ln[t];return new Error(H(n)?n.call(Ln,...e):n)};var De=Symbol(":regor");var he=t=>{let e=t[De];if(e)return e;let n={unbinders:[],data:{}};return t[De]=n,n};var D=(t,e)=>{he(t).unbinders.push(e)};var ft=[],kn=()=>{let t={onMounted:[],onUnmounted:[]};return ft.push(t),t},we=t=>{let e=ft[ft.length-1];if(!e&&!t)throw _(2);return e},In=t=>{let e=we();return t&&Yt(t),ft.pop(),e},Xt=Symbol("csp"),Yt=t=>{let e=t,n=e[Xt];if(n){let r=we();if(n===r)return;r.onMounted.length>0&&n.onMounted.push(...r.onMounted),r.onUnmounted.length>0&&n.onUnmounted.push(...r.onUnmounted);return}e[Xt]=we()},mt=t=>t[Xt];var G=(t,e)=>{var n;(n=we(e))==null||n.onUnmounted.push(t)};var lt=Symbol("ref"),J=Symbol("sref"),ut=Symbol("raw");var h=t=>(t==null?void 0:t[J])===1;var S=(t,e,n)=>{if(!h(t))throw _(3,"observe");n&&e(t());let o=t(void 0,void 0,0,e);return G(o,!0),o};var oe=t=>{let e=[t];for(;e.length>0;){let n=e.shift();fo(n);let r=n.childNodes;if(r)for(let o of r)e.push(o)}},fo=t=>{let e=t[De];if(e){for(let n of e.unbinders)n();e.unbinders.splice(0),delete t[De]}};var j=t=>{t.remove(),setTimeout(()=>oe(t),1)};var Dn={8:t=>`Model binding requires a ref at ${t.outerHTML}`,7:t=>`Model binding is not supported on ${t.tagName} element at ${t.outerHTML}`,0:(t,e)=>`${t} binding expression is missing at ${e.outerHTML}`,1:(t,e,n)=>`invalid ${t} expression: ${e} at ${n.outerHTML}`,2:(t,e)=>`${t} requires object expression at ${e.outerHTML}`,3:(t,e)=>`${t} binder: key is empty on ${e.outerHTML}.`,4:(t,e,n,r)=>({msg:`Failed setting prop "${t}" on <${e.toLowerCase()}>: value ${n} is invalid.`,args:[r]}),5:(t,e)=>`${t} binding missing event type at ${e.outerHTML}`,6:(t,e)=>({msg:t,args:[e]})},U=(t,...e)=>{let n=Dn[t],r=H(n)?n.call(Dn,...e):n,o=Xe.warning;o&&(W(r)?o(r):o(r,...r.args))},Xe={warning:console.warn};var yt={},dt={},Un=1,Hn=t=>{let e=(Un++).toString();return yt[e]=t,dt[e]=0,e},Zt=t=>{dt[t]+=1},en=t=>{--dt[t]===0&&(delete yt[t],delete dt[t])},_n=t=>yt[t],tn=()=>Un!==1&&Object.keys(yt).length>0,Ye="r-switch",mo=t=>{let e=t.filter(r=>Oe(r)).map(r=>[...r.querySelectorAll("[r-switch]")].map(o=>o.getAttribute(Ye))),n=new Set;return e.forEach(r=>{r.forEach(o=>o&&n.add(o))}),[...n]},Ue=(t,e)=>{if(!tn())return;let n=mo(e);n.length!==0&&(n.forEach(Zt),D(t,()=>{n.forEach(en)}))};var nn=(t,e,n,r)=>{let o=[];for(let s of t){let i=s.cloneNode(!0);n.insertBefore(i,r),o.push(i)}be(e,o)},rn=Symbol("r-if"),Bn=Symbol("r-else"),Pn=t=>t[Bn]===1,ht=class{constructor(e){l(this,"p");l(this,"P");l(this,"q");l(this,"K");l(this,"z");l(this,"b");l(this,"T");this.p=e,this.P=e.o.f.if,this.q=Be(e.o.f.if),this.K=e.o.f.else,this.z=e.o.f.elseif,this.b=e.o.f.for,this.T=e.o.f.pre}$e(e,n){let r=e.parentElement;for(;r!==null&&r!==document.documentElement;){if(r.hasAttribute(n))return!0;r=r.parentElement}return!1}N(e){let n=e.hasAttribute(this.P),r=ge(e,this.q);for(let o of r)this.x(o);return n}W(e){return e[rn]?!0:(e[rn]=!0,ge(e,this.q).forEach(n=>n[rn]=!0),!1)}x(e){if(e.hasAttribute(this.T)||this.W(e)||this.$e(e,this.b))return;let n=e.getAttribute(this.P);if(!n){U(0,this.P,e);return}e.removeAttribute(this.P),this.k(e,n)}B(e,n,r){let o=_e(e),s=e.parentNode,i=document.createComment(`__begin__ :${n}${r!=null?r:""}`);s.insertBefore(i,e),Ue(i,o),o.forEach(p=>{j(p)}),e.remove(),n!=="if"&&(e[Bn]=1);let a=document.createComment(`__end__ :${n}${r!=null?r:""}`);return s.insertBefore(a,i.nextSibling),{nodes:o,parent:s,commentBegin:i,commentEnd:a}}pe(e,n){if(!e)return[];let r=e.nextElementSibling;if(e.hasAttribute(this.K)){e.removeAttribute(this.K);let{nodes:o,parent:s,commentBegin:i,commentEnd:a}=this.B(e,"else");return[{mount:()=>{nn(o,this.p,s,a)},unmount:()=>{ce(i,a)},isTrue:()=>!0,isMounted:!1}]}else{let o=e.getAttribute(this.z);if(!o)return[];e.removeAttribute(this.z);let{nodes:s,parent:i,commentBegin:a,commentEnd:p}=this.B(e,"elseif",` => ${o} `),c=this.p.h.C(o),f=c.value,m=this.pe(r,n),u=[];D(a,()=>{c.stop();for(let C of u)C();u.length=0});let d=S(f,n);return u.push(d),[{mount:()=>{nn(s,this.p,i,p)},unmount:()=>{ce(a,p)},isTrue:()=>!!f()[0],isMounted:!1}].concat(m)}}k(e,n){let r=e.nextElementSibling,{nodes:o,parent:s,commentBegin:i,commentEnd:a}=this.B(e,"if",` => ${n} `),p=this.p.h.C(n),c=p.value,f=!1,m=this.p.h,u=m.V(),y=()=>{m.v(u,()=>{if(c()[0])f||(nn(o,this.p,s,a),f=!0),d.forEach(b=>{b.unmount(),b.isMounted=!1});else{ce(i,a),f=!1;let b=!1;for(let L of d)!b&&L.isTrue()?(L.isMounted||(L.mount(),L.isMounted=!0),b=!0):(L.unmount(),L.isMounted=!1)}})},d=this.pe(r,y),C=[];D(i,()=>{p.stop();for(let b of C)b();C.length=0}),y();let x=S(c,y);C.push(x)}};var _e=t=>{let e=se(t)?t.content.childNodes:[t];return Array.from(e).filter(n=>{let r=n==null?void 0:n.tagName;return r!=="SCRIPT"&&r!=="STYLE"})},be=(t,e)=>{for(let n of e)!Pn(n)&&t.G(n)},ge=(t,e)=>{var r;let n=t.querySelectorAll(e);return(r=t.matches)!=null&&r.call(t,e)?[t,...n]:n},se=t=>t instanceof HTMLTemplateElement,Oe=t=>t.nodeType===Node.ELEMENT_NODE,Ze=t=>t.nodeType===Node.ELEMENT_NODE,jn=t=>t instanceof HTMLSlotElement,fe=t=>se(t)?t.content.childNodes:t.childNodes,ce=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let r=n.nextSibling;j(n),n=r}},Te=(t,e)=>{Object.defineProperty(t,"value",{get(){return t()},set(n){if(e)throw new Error("value is readonly.");return t(n)},enumerable:!0,configurable:!1})},Vn=(t,e)=>{if(!t)return!1;if(t.startsWith("["))return t.substring(1,t.length-1);let n=e.length;return t.startsWith(e)?t.substring(n,t.length-n):!1},Be=t=>`[${CSS.escape(t)}]`,gt=(t,e)=>(t.startsWith("@")&&(t=e.f.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.f.dynamic)),t),on=t=>{let e=Object.create(null);return n=>e[n]||(e[n]=t(n))},lo=/-(\w)/g,B=on(t=>t&&t.replace(lo,(e,n)=>n?n.toUpperCase():"")),uo=/\B([A-Z])/g,Pe=on(t=>t&&t.replace(uo,"-$1").toLowerCase()),et=on(t=>t&&t.charAt(0).toUpperCase()+t.slice(1));var ne=[],$n=t=>{var e;ne.length!==0&&((e=ne[ne.length-1])==null||e.add(t))},Ae=t=>{if(!t)return()=>{};let e={stop:()=>{}};return yo(t,e),G(()=>e.stop(),!0),e.stop},yo=(t,e)=>{if(!t)return;let n=[],r=!1,o=()=>{for(let s of n)s();n=[],r=!0};e.stop=o;try{let s=new Set;if(ne.push(s),t(i=>n.push(i)),r)return;for(let i of[...s]){let a=S(i,()=>{o(),Ae(t)});n.push(a)}}finally{ne.pop()}},bt=t=>{let e=ne.length,n=e>0&&ne[e-1];try{return n&&ne.push(null),t()}finally{n&&ne.pop()}},Tt=t=>{try{let e=new Set;return ne.push(e),{value:t(),refs:[...e]}}finally{ne.pop()}};var je=t=>!!t&&t[ut]===1;var F=(t,e,n)=>{if(!h(t))return;let r=t;if(r(void 0,e,1),!n)return;let o=r();if(o){if(E(o)||Z(o))for(let s of o)F(s,e,!0);else if(ye(o))for(let s of o)F(s[0],e,!0),F(s[1],e,!0);if(N(o))for(let s in o)F(o[s],e,!0)}};function ho(t,e,n){Object.defineProperty(t,e,{value:n,enumerable:!1,writable:!0,configurable:!0})}var Ve=(t,e,n)=>{n.forEach(function(r){let o=t[r];ho(e,r,function(...i){let a=o.apply(this,i),p=this[J];for(let c of p)F(c);return a})})},Et=(t,e)=>{Object.defineProperty(t,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var Fn=Array.prototype,sn=Object.create(Fn),go=["push","pop","shift","unshift","splice","sort","reverse"];Ve(Fn,sn,go);var qn=Map.prototype,Ct=Object.create(qn),bo=["set","clear","delete"];Et(Ct,"Map");Ve(qn,Ct,bo);var zn=Set.prototype,Rt=Object.create(zn),To=["add","clear","delete"];Et(Rt,"Set");Ve(zn,Rt,To);var Ne={},z=t=>{if(h(t)||je(t))return t;let e={auto:!0,_value:t},n=p=>N(p)?J in p?!0:E(p)?(Object.setPrototypeOf(p,sn),!0):Z(p)?(Object.setPrototypeOf(p,Rt),!0):ye(p)?(Object.setPrototypeOf(p,Ct),!0):!1:!1,r=n(t),o=new Set,s=(p,c)=>{if(Ne.set){Ne.set.add(a);return}o.size!==0&&bt(()=>{for(let f of[...o.keys()])o.has(f)&&f(p,c)})},i=p=>{let c=p[J];c||(p[J]=c=new Set),c.add(a)},a=(...p)=>{if(!(2 in p)){let f=p[0],m=p[1];return 0 in p?e._value===f||h(f)&&(f=f(),e._value===f)?f:(n(f)&&i(f),e._value=f,e.auto&&s(f,m),e._value):($n(a),e._value)}switch(p[2]){case 0:{let f=p[3];if(!f)return()=>{};let m=u=>{o.delete(u)};return o.add(f),()=>{m(f)}}case 1:{let f=p[1],m=e._value;s(m,f);break}case 2:return o.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[J]=1,Te(a,!1),r&&i(t),a};var P=t=>h(t)?t():t;var tt=class{constructor(e){l(this,"E",[]);l(this,"H",new Map);l(this,"J");this.J=e}get S(){return this.E.length}Q(e){let n=this.J(e.value);n&&this.H.set(n,e)}X(e){var r;let n=this.J((r=this.E[e])==null?void 0:r.value);n&&this.H.delete(n)}static qe(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.S,this.E.push(e),this.Q(e)}Ke(e,n){let r=this.S;for(let o=e;o<r;++o)this.E[o].order=o+1;n.order=e,this.E.splice(e,0,n),this.Q(n)}I(e){return this.E[e]}Y(e,n){this.X(e),this.E[e]=n,this.Q(n),n.order=e}ce(e){this.X(e),this.E.splice(e,1);let n=this.S;for(let r=e;r<n;++r)this.E[r].order=r}fe(e){let n=this.S;for(let r=e;r<n;++r)this.X(r);this.E.splice(e)}Rt(e){return this.H.has(e)}ze(e){var r;let n=this.H.get(e);return(r=n==null?void 0:n.order)!=null?r:-1}};var an=Symbol("r-for"),vt=class vt{constructor(e){l(this,"p");l(this,"b");l(this,"Z");l(this,"T");this.p=e,this.b=e.o.f.for,this.Z=Be(this.b),this.T=e.o.f.pre}N(e){let n=e.hasAttribute(this.b),r=ge(e,this.Z);for(let o of r)this.We(o);return n}W(e){return e[an]?!0:(e[an]=!0,ge(e,this.Z).forEach(n=>n[an]=!0),!1)}We(e){if(e.hasAttribute(this.T)||this.W(e))return;let n=e.getAttribute(this.b);if(!n){U(0,this.b,e);return}e.removeAttribute(this.b),this.Ge(e,n)}le(e){return te(e)?[]:(H(e)&&(e=e()),Symbol.iterator in Object(e)?e:typeof e=="number"?(r=>({*[Symbol.iterator](){for(let o=1;o<=r;o++)yield o}}))(e):Object.entries(e))}Ge(e,n){var it;let r=this.Je(n);if(!(r!=null&&r.list)){U(1,this.b,n,e);return}let o=this.p.o.f.key,s=this.p.o.f.keyBind,i=(it=e.getAttribute(o))!=null?it:e.getAttribute(s);e.removeAttribute(o),e.removeAttribute(s);let a=i?v=>{var A;return P((A=P(v))==null?void 0:A[i])}:v=>v,p=(v,A)=>a(v)===a(A),c=_e(e),f=e.parentNode;if(!f)return;let m=`${this.b} => ${n}`,u=new Comment(`__begin__ ${m}`);f.insertBefore(u,e),Ue(u,c),c.forEach(v=>{j(v)}),e.remove();let y=new Comment(`__end__ ${m}`);f.insertBefore(y,u.nextSibling);let d=this.p,C=d.h,I=C.V(),x=(v,A,q)=>{let w=r.createContext(A,v),Y=tt.qe(w.index,A);return C.v(I,()=>{C.w(w.ctx);let re=q.previousSibling,Ie=[];for(let g of c){let M=g.cloneNode(!0);f.insertBefore(M,q),Ie.push(M)}for(be(d,Ie),re=re.nextSibling;re!==q;)Y.items.push(re),re=re.nextSibling}),Y},b=(v,A)=>{let q=O.I(v).items,w=q[q.length-1].nextSibling;for(let Y of q)j(Y);O.Y(v,x(v,A,w))},L=(v,A)=>{O.w(x(v,A,y))},X=v=>{for(let A of O.I(v).items)j(A)},ee=v=>{let A=O.S;for(let q=v;q<A;++q)O.I(q).index(q)},Je=v=>{let A=O.S;H(v)&&(v=v());let q=P(v[0]);if(E(q)&&q.length===0){ce(u,y),O.fe(0);return}let w=0,Y=Number.MAX_SAFE_INTEGER,re=A,Ie=this.p.o.forGrowThreshold,g=()=>O.S<re+Ie;for(let T of this.le(v[0])){let V=()=>{if(w<A){let K=O.I(w++);if(p(K.value,T))return;let R=O.ze(a(T));if(R>=w&&R-w<10){if(--w,Y=Math.min(Y,w),X(w),O.ce(w),--A,R>w+1)for(let k=w;k<R-1&&k<A&&!p(O.I(w).value,T);)++k,X(w),O.ce(w),--A;V();return}g()?(O.Ke(w-1,x(w,T,O.I(w-1).items[0])),Y=Math.min(Y,w-1),++A):b(w-1,T)}else L(w++,T)};V()}let M=w;for(A=O.S;w<A;)X(w++);O.fe(M),ee(Y)},Kt=()=>{de=S(ot,Je)},rt=()=>{ue.stop(),de()},ue=C.C(r.list),ot=ue.value,de,st=0,O=new tt(a);for(let v of this.le(ot()[0]))O.w(x(st++,v,y));D(u,rt),Kt()}Je(e){var p,c;let n=vt.Qe.exec(e);if(!n)return;let r=(n[1]+((p=n[2])!=null?p:"")).split(",").map(f=>f.trim()),o=r.length>1?r.length-1:-1,s=o!==-1&&((c=r[o])!=null&&c.startsWith("#"))?r[o]:"";s&&r.splice(o,1);let i=n[3];if(!i||r.length===0)return;let a=/[{[]/.test(e);return{list:i,createContext:(f,m)=>{let u={},y=P(f);if(!a&&r.length===1)u[r[0]]=f;else if(E(y)){let C=0;for(let I of r)u[I]=y[C++]}else for(let C of r)u[C]=y[C];let d={ctx:u,index:z(-1)};return s&&(d.index=u[s.substring(1)]=z(m)),d}}}};l(vt,"Qe",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+([^\s]+)\s*/);var xt=vt;var Eo=(t,e)=>{for(let n of t){let r=n.cloneNode(!0);e.appendChild(r)}},St=class{constructor(e){l(this,"p");l(this,"D");l(this,"ue");this.p=e,this.D=e.o.f.is,this.ue=Be(this.D)+", [is]"}N(e){let n=e.hasAttribute(this.D),r=ge(e,this.ue);for(let o of r)this.x(o);return n}x(e){let n=e.getAttribute(this.D);if(!n){if(n=e.getAttribute("is"),!n||!n.startsWith("regor:"))return;n=`'${n.slice(6)}'`,e.removeAttribute("is")}e.removeAttribute(this.D),this.k(e,n)}B(e,n){let r=_e(e),o=e.parentNode,s=document.createComment(`__begin__ dynamic ${n!=null?n:""}`);o.insertBefore(s,e),Ue(s,r),r.forEach(a=>{j(a)}),e.remove();let i=document.createComment(`__end__ dynamic ${n!=null?n:""}`);return o.insertBefore(i,s.nextSibling),{nodes:r,parent:o,commentBegin:s,commentEnd:i}}k(e,n){let{nodes:r,parent:o,commentBegin:s,commentEnd:i}=this.B(e,` => ${n} `),a=this.p.h.C(n),p=a.value,c=this.p.h,f=c.V(),m={name:""},u=se(e)?r:[...r[0].childNodes],y=()=>{c.v(f,()=>{let x=p()[0];if(N(x)&&(x=x.name),!W(x)||$(x)){ce(s,i);return}if(m.name===x)return;ce(s,i);let b=document.createElement(x);for(let L of e.getAttributeNames())L!==this.D&&b.setAttribute(L,e.getAttribute(L));Eo(u,b),o.insertBefore(b,i),this.p.G(b),m.name=x})},d=[];D(s,()=>{a.stop();for(let x of d)x();d.length=0}),y();let I=S(p,y);d.push(I)}};var Kn={collectRefObj:!0,onBind:(t,e)=>S(e.value,()=>{let r=e.value(),o=e.context,s=r[0];if(N(s))for(let i of Object.entries(s)){let a=i[0],p=i[1],c=o[a];c!==p&&(h(c)?c(p):o[a]=p)}},!0)};var Wn={collectRefObj:!0,once:!0,onBind:(t,e)=>{let n=e.value(),r=e.context,o=n[0];if(!N(o))return()=>{};for(let s of Object.entries(o)){let i=s[0],a=s[1],p=r[i];p!==a&&(h(p)?p(a):r[i]=a)}return()=>{}}};var Ee=t=>{var n,r;let e=(n=mt(t))==null?void 0:n.onUnmounted;e==null||e.forEach(o=>{o()}),(r=t.unmounted)==null||r.call(t)};var $e=class{constructor(e,n,r,o,s){l(this,"props");l(this,"start");l(this,"end");l(this,"ctx");l(this,"autoProps",!0);l(this,"entangle",!0);l(this,"disableSwitch",!1);l(this,"onAutoPropsAssigned");l(this,"me");l(this,"emit",(e,n)=>{this.me.dispatchEvent(new CustomEvent(e,{detail:n}))});this.props=e,this.me=n,this.ctx=r,this.start=o,this.end=s}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)j(e),e=e.nextSibling;Ee(this)}};var pn=Symbol("scope"),wt=t=>{try{kn();let e=t();Yt(e);let n={context:e,unmount:()=>Ee(e),[pn]:1};return n[pn]=1,n}finally{In()}},Gn=t=>N(t)?pn in t:!1;var Ot=(t,e)=>{if(t===e)return()=>{};let n=S(t,o=>e(o)),r=S(e,o=>t(o));return e(t()),()=>{n(),r()}};var At=t=>{var n,r;let e=(n=mt(t))==null?void 0:n.onMounted;e==null||e.forEach(o=>{o()}),(r=t.mounted)==null||r.call(t)};var Jn={collectRefObj:!0,onBind:(t,e,n,r,o,s)=>{if(!r)return()=>{};let i=B(r);return S(e.value,()=>{var m;let p=(m=e.refs[0])!=null?m:e.value()[0],c=e.context,f=c[r];f!==p&&(h(f)?f(p):c[i]=p)},!0)}};var Nt=class{constructor(e){l(this,"p");l(this,"de");this.p=e,this.de=e.o.f.inherit}N(e){this.Xe(e)}Xe(e){var f;let n=this.p,r=n.h,o=n.o.ye,s=n.o.he,i=r.Ye(),a=[...o.keys(),...Object.keys(i),...[...o.keys()].map(Pe),...[...Object.keys(i)].map(Pe)].join(",");if($(a))return;let p=e.querySelectorAll(a),c=(f=e.matches)!=null&&f.call(e,a)?[e,...p]:p;for(let m of c){if(m.hasAttribute(n.T))continue;let u=m.parentNode;if(!u)continue;let y=m.nextSibling,d=B(m.tagName).toUpperCase(),C=i[d],I=C!=null?C:s.get(d);if(!I)continue;let x=I.template;if(!x)continue;let b=m.parentElement;if(!b)continue;let L=new Comment(" begin component: "+m.tagName),X=new Comment(" end component: "+m.tagName);b.insertBefore(L,m),m.remove();let ee=n.o.f.props,Je=n.o.f.propsOnce,Kt=n.o.f.bind,rt=(g,M)=>{let T={},V=g.hasAttribute(ee),K=g.hasAttribute(Je);return r.v(M,()=>{r.w(T),V&&n.x(Kn,g,ee),K&&n.x(Wn,g,Je);let R=I.props;if(!R||R.length===0)return;R=R.map(B);for(let ve of R.concat(R.map(Pe))){let ae=g.getAttribute(ve);ae!==null&&(T[B(ve)]=ae,g.removeAttribute(ve))}let k=n.ee.ge(g,!1);for(let[ve,ae]of k.entries()){let[Se,Wt]=ae.te;Wt&&R.includes(B(Wt))&&(Se!=="."&&Se!==":"&&Se!==Kt||n.x(Jn,g,ve,!0,Wt,ae.ne))}}),T},ue=[...r.V()],ot=()=>{var V;let g=rt(m,ue),M=new $e(g,m,ue,L,X),T=wt(()=>{var K;return(K=I.context(M))!=null?K:{}}).context;if(M.autoProps){for(let[K,R]of Object.entries(g))if(K in T){let k=T[K];if(k===R)continue;M.entangle&&h(k)&&h(R)?D(L,Ot(R,k)):h(k)?k(R):T[K]=P(R)}else T[K]=R;(V=M.onAutoPropsAssigned)==null||V.call(M)}return{componentCtx:T,head:M}},{componentCtx:de,head:st}=ot(),O=[...fe(x)],it=O.length,v=m.childNodes.length===0,A=g=>{let M=g.parentElement;if(v){for(let R of[...g.childNodes])M.insertBefore(R,g);return}let T=g.name;$(T)&&(T=g.getAttributeNames().filter(R=>R.startsWith("#"))[0],$(T)?T="default":T=T.substring(1));let V=m.querySelector(`template[name='${T}'], template[\\#${T}]`);!V&&T==="default"&&(V=m.querySelector("template:not([name])"),V&&V.getAttributeNames().filter(R=>R.startsWith("#")).length>0&&(V=null));let K=R=>{st.disableSwitch||r.v(ue,()=>{r.w(de);let k=rt(g,r.V());r.v(ue,()=>{r.w(k);let ve=r.V(),ae=Hn(ve);for(let Se of R)Oe(Se)&&(Se.setAttribute(Ye,ae),Zt(ae),D(Se,()=>{en(ae)}))})})};if(V){let R=[...fe(V)];for(let k of R)M.insertBefore(k,g);K(R)}else{if(T!=="default"){for(let k of[...fe(g)])M.insertBefore(k,g);return}let R=[...fe(m)].filter(k=>!se(k));for(let k of R)M.insertBefore(k,g);K(R)}},q=g=>{if(!Oe(g))return;let M=g.querySelectorAll("slot");if(jn(g)){A(g),g.remove();return}for(let T of M)A(T),T.remove()};(()=>{for(let g=0;g<it;++g)O[g]=O[g].cloneNode(!0),u.insertBefore(O[g],y),q(O[g])})(),b.insertBefore(X,y);let Y=()=>{if(!I.inheritAttrs)return;let g=O.filter(T=>T.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(T=>T.hasAttribute(this.de)));let M=g[0];if(M)for(let T of m.getAttributeNames()){if(T===ee||T===Je)continue;let V=m.getAttribute(T);if(T==="class")M.classList.add(...V.split(" "));else if(T==="style"){let K=M.style,R=m.style;for(let k of R)K.setProperty(k,R.getPropertyValue(k))}else M.setAttribute(gt(T,n.o),V)}},re=()=>{for(let g of m.getAttributeNames())!g.startsWith("@")&&!g.startsWith(n.o.f.on)&&m.removeAttribute(g)},Ie=()=>{Y(),re(),r.w(de),n.be(m,!1),de.$emit=st.emit,be(n,O),D(m,()=>{Ee(de)}),D(L,()=>{oe(m)}),At(de)};r.v(ue,Ie)}}};var cn=class{constructor(e){l(this,"Te");l(this,"te",[]);l(this,"ne",[]);l(this,"xe",[]);this.Te=e,this.C()}C(){let e=this.Te,n=e.startsWith(".");n&&(e=":"+e.slice(1));let r=e.indexOf("."),o=this.te=(r<0?e:e.substring(0,r)).split(/[:@]/);if($(o[0])&&(o[0]=n?".":e[0]),r>=0){let s=this.ne=e.slice(r+1).split(".");if(s.includes("camel")){let i=o.length-1;o[i]=B(o[i])}s.includes("prop")&&(o[0]=".")}}},Mt=class{constructor(e){l(this,"p");l(this,"Ee");this.p=e,this.Ee=e.o.Ze()}ge(e,n){let r=new Map;if(!Ze(e))return r;let o=this.Ee,s=a=>{let p=a.getAttributeNames().filter(c=>o.some(f=>c.startsWith(f)));for(let c of p)r.has(c)||r.set(c,new cn(c)),r.get(c).xe.push(a)};if(s(e),!n)return r;let i=e.querySelectorAll("*");for(let a of i)s(a);return r}};var Lt={};var kt=class{constructor(e){l(this,"h");l(this,"Re");l(this,"Ce");l(this,"ve");l(this,"Se");l(this,"ee");l(this,"o");l(this,"T");l(this,"we");this.h=e,this.o=e.o,this.Ce=new xt(this),this.Re=new ht(this),this.ve=new St(this),this.Se=new Nt(this),this.ee=new Mt(this),this.T=this.o.f.pre,this.we=this.o.f.dynamic}et(e){let n=se(e)?[e]:e.querySelectorAll("template");for(let r of n){if(r.hasAttribute(this.T))continue;let o=r.parentNode;if(!o)continue;let s=r.nextSibling;if(r.remove(),!r.content)continue;let i=[...r.content.childNodes];for(let a of i)o.insertBefore(a,s);be(this,i)}}G(e){e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.T)||this.Re.N(e)||this.Ce.N(e)||this.ve.N(e)||(this.Se.N(e),this.et(e),this.be(e,!0))}be(e,n){var s;let r=this.ee.ge(e,n),o=this.o._;for(let[i,a]of r.entries()){let[p,c]=a.te,f=(s=o[i])!=null?s:o[p];if(!f){console.error("directive not found:",p);continue}a.xe.forEach(m=>{this.x(f,m,i,!1,c,a.ne)})}}x(e,n,r,o,s,i){if(n.hasAttribute(this.T))return;let a=n.getAttribute(r);n.removeAttribute(r);let p=c=>{let f=c.getAttribute(Ye);return f||(c.parentElement?p(c.parentElement):null)};if(tn()){let c=p(n);if(c){this.h.v(_n(c),()=>{this.k(e,n,a,s,i)});return}}this.k(e,n,a,s,i)}tt(e,n,r){if(e!==Lt)return!1;if($(r))return!0;let o=document.querySelector(r);if(o){let s=n.parentElement;if(!s)return!0;let i=new Comment(`teleported => '${r}'`);s.insertBefore(i,n),n.teleportedFrom=i,i.teleportedTo=n,D(i,()=>{j(n)}),o.appendChild(n)}return!0}k(e,n,r,o,s){var I;if(n.nodeType!==Node.ELEMENT_NODE||r==null||this.tt(e,n,r))return;let i=this.h.C(r,e.isLazy,e.isLazyKey,e.collectRefObj,e.once),a=[];D(n,()=>{i.stop(),f==null||f.stop();for(let x of a)x();a.length=0});let c=Vn(o,this.we),f;c&&(f=this.h.C(B(c),void 0,void 0,void 0,e.once));let m,u=()=>(m=i.value(),m),y,d=()=>f?(y=f.value()[0],y):(y=o,o),C=()=>{if(!e.onChange)return;let x=S(i.value,b=>{var ee;let L=m,X=y;(ee=e.onChange)==null||ee.call(e,n,u(),L,d(),X,s)});if(a.push(x),f){let b=S(f.value,L=>{var ee;let X=y;(ee=e.onChange)==null||ee.call(e,n,u(),X,d(),X,s)});a.push(b)}};e.once||C(),e.onBind&&a.push(e.onBind(n,i,r,o,f,s)),(I=e.onChange)==null||I.call(e,n,u(),void 0,d(),void 0,s)}};var Co=9,Ro=10,xo=13,vo=32,Ce=46,It=44,So=39,wo=34,Dt=40,Fe=41,Ut=91,Ht=93,fn=63,Oo=59,Qn=58,Ao=123,_t=125,ln=43,No=45,Xn=96,Yn=47,Mo=92,Zn=[2,3],er=[ln,No],ir={"-":1,"!":1,"~":1,"+":1,new:1},ar={"=":2.5,"*=":2.5,"**=":2.5,"/=":2.5,"%=":2.5,"+=":2.5,"-=":2.5,"<<=":2.5,">>=":2.5,">>>=":2.5,"&=":2.5,"^=":2.5,"|=":2.5},ze=Nn(ct({"=>":2},ar),{"||":3,"??":3,"&&":4,"|":5,"^":6,"&":7,"==":8,"!=":8,"===":8,"!==":8,"<":9,">":9,"<=":9,">=":9,in:9,"<<":10,">>":10,">>>":10,"+":11,"-":11,"*":12,"/":12,"%":12,"**":13}),pr=Object.keys(ar),Lo=new Set(pr),Bt=new Set;Bt.add("=>");pr.forEach(t=>Bt.add(t));var ko=new Set(["$","_"]),tr={true:!0,false:!1,null:null},Io="this";function cr(t){return Math.max(0,...Object.keys(t).map(e=>e.length))}var Do=cr(ir),Uo=cr(ze),Ke="Expected ",Me="Unexpected ",dn="Unclosed ",Ho=Ke+":",nr=Ke+"expression",_o="missing }",Bo=Me+"object property",Po=dn+"(",rr=Ke+"comma",or=Me+"token ",jo=Me+"period",mn=Ke+"expression after ",Vo="missing unaryOp argument",$o=dn+"[",Fo=Ke+"exponent (",qo="Variable names cannot start with a number (",zo=dn+'quote after "';var qe=t=>t>=48&&t<=57,sr=t=>ze[t]||0,un=class{constructor(e){l(this,"nt",{0:[this.rt],1:[this.ot,this.st,this.it],2:[this.at,this.pt,this.ct,this.Oe,this.ft],3:[this.lt,this.ut,this.mt]});l(this,"r");l(this,"e");this.r=e,this.e=0}get M(){return this.r.charAt(this.e)}get l(){return this.r.charCodeAt(this.e)}u(e){return this.r.charCodeAt(this.e)===e}U(e){let n=String.fromCharCode(e);return e>=65&&e<=90||e>=97&&e<=122||e>=128&&!(n in ze)||ko.has(n)}re(e){return this.U(e)||qe(e)}i(e){return new Error(`${e} at character ${this.e}`)}L(e,n,r){let o=this.nt[e];if(!o)return r;let s={node:r},i=a=>{a.call(this,s)};return n===0?o.forEach(i):o.find(i),s.node}y(){let e=this.l,n=this.r,r=this.e;for(;e===vo||e===Co||e===Ro||e===xo;)e=n.charCodeAt(++r);this.e=r}parse(){let e=this.oe();return e.length===1?e[0]:{type:0,body:e}}oe(e){let n=[];for(;this.e<this.r.length;){let r=this.l;if(r===Oo||r===It)this.e++;else{let o=this.O();if(o)n.push(o);else if(this.e<this.r.length){if(r===e)break;throw this.i(Me+'"'+this.M+'"')}}}return n}O(){var n;let e=(n=this.L(0,1))!=null?n:this.Ae();return this.y(),this.L(1,0,e)}se(){this.y();let e=this.e,n=this.r,r=n.substr(e,Uo),o=r.length;for(;o>0;){if(r in ze&&(!this.U(this.l)||e+r.length<n.length&&!this.re(n.charCodeAt(e+r.length))))return e+=o,this.e=e,r;r=r.substr(0,--o)}return!1}Ae(){let e,n,r,o,s,i,a,p;if(s=this.j(),!s||(n=this.se(),!n))return s;if(o={value:n,prec:sr(n),right_a:Bt.has(n)},i=this.j(),!i)throw this.i(mn+n);let c=[s,o,i];for(;n=this.se();){if(r=sr(n),r===0){this.e-=n.length;break}o={value:n,prec:r,right_a:Bt.has(n)},p=n;let f=m=>o.right_a&&m.right_a?r>m.prec:r<=m.prec;for(;c.length>2&&f(c[c.length-2]);)i=c.pop(),n=c.pop().value,s=c.pop(),e={type:8,operator:n,left:s,right:i},c.push(e);if(e=this.j(),!e)throw this.i(mn+p);c.push(o,e)}for(a=c.length-1,e=c[a];a>1;)e={type:8,operator:c[a-1].value,left:c[a-2],right:e},a-=2;return e}j(){let e,n,r;if(this.y(),r=this.L(2,1),r)return this.L(3,0,r);let o=this.l;if(qe(o)||o===Ce)return this.dt();if(o===So||o===wo)r=this.yt();else if(o===Ut)r=this.ht();else{for(e=this.r.substr(this.e,Do),n=e.length;n>0;){if(Object.prototype.hasOwnProperty.call(ir,e)&&(!this.U(this.l)||this.e+e.length<this.r.length&&!this.re(this.r.charCodeAt(this.e+e.length)))){this.e+=n;let s=this.j();if(!s)throw this.i(Vo);return this.L(3,0,{type:7,operator:e,argument:s})}e=e.substr(0,--n)}this.U(o)?(r=this.ie(),r.name in tr?r={type:4,value:tr[r.name],raw:r.name}:r.name===Io&&(r={type:5})):o===Dt&&(r=this.gt())}return r?(r=this.F(r),this.L(3,0,r)):this.L(3,0,!1)}F(e){this.y();let n=this.l;for(;n===Ce||n===Ut||n===Dt||n===fn;){let r;if(n===fn){if(this.r.charCodeAt(this.e+1)!==Ce)break;r=!0,this.e+=2,this.y(),n=this.l}if(this.e++,n===Ut){if(e={type:3,computed:!0,object:e,property:this.O()},this.y(),n=this.l,n!==Ht)throw this.i($o);this.e++}else n===Dt?e={type:6,arguments:this.Ne(Fe),callee:e}:(n===Ce||r)&&(r&&this.e--,this.y(),e={type:3,computed:!1,object:e,property:this.ie()});r&&(e.optional=!0),this.y(),n=this.l}return e}dt(){let e="",n;for(;qe(this.l);)e+=this.r.charAt(this.e++);if(this.u(Ce))for(e+=this.r.charAt(this.e++);qe(this.l);)e+=this.r.charAt(this.e++);if(n=this.M,n==="e"||n==="E"){for(e+=this.r.charAt(this.e++),n=this.M,(n==="+"||n==="-")&&(e+=this.r.charAt(this.e++));qe(this.l);)e+=this.r.charAt(this.e++);if(!qe(this.r.charCodeAt(this.e-1)))throw this.i(Fo+e+this.M+")")}let r=this.l;if(this.U(r))throw this.i(qo+e+this.M+")");if(r===Ce||e.length===1&&e.charCodeAt(0)===Ce)throw this.i(jo);return{type:4,value:parseFloat(e),raw:e}}yt(){let e="",n=this.e,r=this.r.charAt(this.e++),o=!1;for(;this.e<this.r.length;){let s=this.r.charAt(this.e++);if(s===r){o=!0;break}else if(s==="\\")switch(s=this.r.charAt(this.e++),s){case"n":e+=`
|
|
2
|
-
`;break;case"r":e+="\r";break;case"t":e+=" ";break;case"b":e+="\b";break;case"f":e+="\f";break;case"v":e+="\v";break;default:e+=s}else e+=s}if(!o)throw this.i(zo+e+'"');return{type:4,value:e,raw:this.r.substring(n,this.e)}}ie(){let e=this.l,n=this.e;if(this.U(e))this.e++;else throw this.i(Me+this.M);for(;this.e<this.r.length&&(e=this.l,this.re(e));)this.e++;return{type:2,name:this.r.slice(n,this.e)}}Ne(e){let n=[],r=!1,o=0;for(;this.e<this.r.length;){this.y();let s=this.l;if(s===e){if(r=!0,this.e++,e===Fe&&o&&o>=n.length)throw this.i(
|
|
3
|
-
`;break;case"r":r+="\r";break;case"t":r+=" ";break;case"b":r+="\b";break;case"f":r+="\f";break;case"v":r+="\v";break;default:r+=p}else r+=p,o+=p}throw this.i("Unclosed `")}lt(e){var o;let n=e.node;if(!n||n.operator!=="new"||!n.argument)return;if(!n.argument||![6,3].includes(n.argument.type))throw this.i("Expected new function()");e.node=n.argument;let r=e.node;for(;r.type===3||r.type===6&&((o=r==null?void 0:r.callee)==null?void 0:o.type)===3;)r=r.type===3?r.object:r.callee.object;r.type=20}ft(e){if(!this.u(Yn))return;let n=++this.e,r=!1;for(;this.e<this.r.length;){if(this.l===Yn&&!r){let o=this.r.slice(n,this.e),s="";for(;++this.e<this.r.length;){let a=this.l;if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57)s+=this.M;else break}let i;try{i=new RegExp(o,s)}catch(a){throw this.i(a.message)}return e.node={type:4,value:i,raw:this.r.slice(n-1,this.e)},e.node=this.F(e.node),e.node}this.u(Ut)?r=!0:r&&this.u(Ht)&&(r=!1),this.e+=this.u(Mo)?2:1}throw this.i("Unclosed Regex")}},fr=t=>new un(t).parse();var Ko={"=>":(t,e)=>{},"=":(t,e)=>{},"*=":(t,e)=>{},"**=":(t,e)=>{},"/=":(t,e)=>{},"%=":(t,e)=>{},"+=":(t,e)=>{},"-=":(t,e)=>{},"<<=":(t,e)=>{},">>=":(t,e)=>{},">>>=":(t,e)=>{},"&=":(t,e)=>{},"^=":(t,e)=>{},"|=":(t,e)=>{},"||":(t,e)=>t()||e(),"??":(t,e)=>{var n;return(n=t())!=null?n:e()},"&&":(t,e)=>t()&&e(),"|":(t,e)=>t|e,"^":(t,e)=>t^e,"&":(t,e)=>t&e,"==":(t,e)=>t==e,"!=":(t,e)=>t!=e,"===":(t,e)=>t===e,"!==":(t,e)=>t!==e,"<":(t,e)=>t<e,">":(t,e)=>t>e,"<=":(t,e)=>t<=e,">=":(t,e)=>t>=e,in:(t,e)=>t in e,"<<":(t,e)=>t<<e,">>":(t,e)=>t>>e,">>>":(t,e)=>t>>>e,"+":(t,e)=>t+e,"-":(t,e)=>t-e,"*":(t,e)=>t*e,"/":(t,e)=>t/e,"%":(t,e)=>t%e,"**":(t,e)=>pt(t,e)},Wo={"-":t=>-t,"+":t=>+t,"!":t=>!t,"~":t=>~t,new:t=>t},dr=t=>{if(!(t!=null&&t.some(ur)))return t;let e=[];return t.forEach(n=>ur(n)?e.push(...n):e.push(n)),e},mr=(...t)=>dr(t),yn=(t,e)=>{if(!t)return e;let n=Object.create(e!=null?e:{});return n.$event=t,n},Go={"++":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(++r),r}return++t[e]},"--":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(--r),r}return--t[e]}},Jo={"++":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(r+1),r}return t[e]++},"--":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(r-1),r}return t[e]--}},lr={"=":(t,e,n)=>{let r=t[e];return h(r)?r(n):t[e]=n},"+=":(t,e,n)=>{let r=t[e];return h(r)?r(r()+n):t[e]+=n},"-=":(t,e,n)=>{let r=t[e];return h(r)?r(r()-n):t[e]-=n},"*=":(t,e,n)=>{let r=t[e];return h(r)?r(r()*n):t[e]*=n},"/=":(t,e,n)=>{let r=t[e];return h(r)?r(r()/n):t[e]/=n},"%=":(t,e,n)=>{let r=t[e];return h(r)?r(r()%n):t[e]%=n},"**=":(t,e,n)=>{let r=t[e];return h(r)?r(pt(r(),n)):t[e]=pt(t[e],n)},"<<=":(t,e,n)=>{let r=t[e];return h(r)?r(r()<<n):t[e]<<=n},">>=":(t,e,n)=>{let r=t[e];return h(r)?r(r()>>n):t[e]>>=n},">>>=":(t,e,n)=>{let r=t[e];return h(r)?r(r()>>>n):t[e]>>>=n},"|=":(t,e,n)=>{let r=t[e];return h(r)?r(r()|n):t[e]|=n},"&=":(t,e,n)=>{let r=t[e];return h(r)?r(r()&n):t[e]&=n},"^=":(t,e,n)=>{let r=t[e];return h(r)?r(r()^n):t[e]^=n}},Pt=(t,e)=>H(t)?t.bind(e):t,hn=class{constructor(e,n,r,o,s){l(this,"m");l(this,"Le");l(this,"ke");l(this,"Ve");l(this,"A");l(this,"Ie");l(this,"De");this.m=E(e)?e:[e],this.Le=n,this.ke=r,this.Ve=o,this.De=!!s}Ue(e,n){if(n&&e in n)return n;for(let r of this.m)if(e in r)return r}2(e,n,r){let o=e.name;if(o==="$root")return this.m[this.m.length-1];if(o==="$parent")return this.m[1];if(o==="$ctx")return[...this.m];if(r&&o in r)return this.A=r[o],Pt(P(r[o]),r);for(let i of this.m)if(o in i)return this.A=i[o],Pt(P(i[o]),i);let s=this.Le;if(s&&o in s)return this.A=s[o],Pt(P(s[o]),s)}5(e,n,r){return this.m[0]}0(e,n,r){return this.Pe(n,r,mr,...e.body)}1(e,n,r){return this.R(n,r,(...o)=>o.pop(),...e.expressions)}3(e,n,r){let{obj:o,key:s}=this.ae(e,n,r),i=o==null?void 0:o[s];return this.A=i,Pt(P(i),o)}4(e,n,r){return e.value}6(e,n,r){let o=(i,...a)=>H(i)?i(...dr(a)):i,s=this.R(++n,r,o,e.callee,...e.arguments);return this.A=s,s}7(e,n,r){return this.R(n,r,Wo[e.operator],e.argument)}8(e,n,r){let o=Ko[e.operator];switch(e.operator){case"||":case"&&":case"??":return o(()=>this.g(e.left,n,r),()=>this.g(e.right,n,r))}return this.R(n,r,o,e.left,e.right)}9(e,n,r){return this.Pe(++n,r,mr,...e.elements)}10(e,n,r){let o={},s=(...i)=>{i.forEach(a=>{Object.assign(o,a)})};return this.R(++n,r,s,...e.properties),o}11(e,n,r){return this.R(n,r,o=>this.g(o?e.consequent:e.alternate,n,r),e.test)}12(e,n,r){var f;let o={},s=m=>(m==null?void 0:m.type)!==15,i=(f=this.Ve)!=null?f:()=>!1,a=n===0&&this.De,p=m=>this.Be(a,e.key,n,yn(m,r)),c=m=>this.Be(a,e.value,n,yn(m,r));if(e.shorthand){let m=e.key.name;o[m]=s(e.key)&&i(m,n)?p:p()}else if(e.computed){let m=P(p());o[m]=s(e.value)&&i(m,n)?c:c()}else{let m=e.key.type===4?e.key.value:e.key.name;o[m]=s(e.value)&&i(m,n)?()=>c:c()}return o}ae(e,n,r){let o=this.g(e.object,n,r),s=e.computed?this.g(e.property,n,r):e.property.name;return{obj:o,key:s}}13(e,n,r){let o=e.argument,s=e.operator,i=e.prefix?Go:Jo;if(o.type===2){let a=o.name,p=this.Ue(a,r);return te(p)?void 0:i[s](p,a)}if(o.type===3){let{obj:a,key:p}=this.ae(o,n,r);return i[s](a,p)}}16(e,n,r){let o=e.left,s=e.operator;if(o.type===2){let i=o.name,a=this.Ue(i,r);if(te(a))return;let p=this.g(e.right,n,r);return lr[s](a,i,p)}if(o.type===3){let{obj:i,key:a}=this.ae(o,n,r),p=this.g(e.right,n,r);return lr[s](i,a,p)}}14(e,n,r){let o=this.g(e.argument,n,r);return E(o)&&(o.s=yr),o}17(e,n,r){return this[6]({type:6,callee:e.tag,arguments:[{type:9,elements:e.quasi.quasis},...e.quasi.expressions]},n,r)}19(e,n,r){let o=(...s)=>s.reduce((i,a,p)=>i+=a+e.quasis[p+1].value.cooked,e.quasis[0].value.cooked);return this.R(n,r,o,...e.expressions)}18(e,n,r){return e.value.cooked}20(e,n,r){let o=(s,...i)=>new s(...i);return this.R(n,r,o,e.callee,...e.arguments)}15(e,n,r){return(...o)=>{let s=Object.create(r!=null?r:{}),i=e.params;if(i){let a=0;for(let p of i)s[p.name]=o[a++]}return this.g(e.body,n,s)}}g(e,n,r){let o=P(this[e.type](e,n,r));return this.Ie=e.type,o}Be(e,n,r,o){let s=this.g(n,r,o);return e&&this.He()?this.A:s}He(){let e=this.Ie;return(e===2||e===3||e===6)&&h(this.A)}eval(e,n){let{value:r,refs:o}=Tt(()=>this.g(e,-1,n)),s={value:r,refs:o};return this.He()&&(s.ref=this.A),s}R(e,n,r,...o){let s=o.map(i=>i&&this.g(i,e,n));return r(...s)}Pe(e,n,r,...o){let s=this.ke;if(!s)return this.R(e,n,r,...o);let i=o.map((a,p)=>a&&(a.type!==15&&s(p,e)?c=>this.g(a,e,yn(c,n)):this.g(a,e,n)));return r(...i)}},yr=Symbol("s"),ur=t=>(t==null?void 0:t.s)===yr,hr=(t,e,n,r,o,s,i)=>new hn(e,n,r,o,i).eval(t,s);var gr={},jt=class{constructor(e,n){l(this,"m");l(this,"o");l(this,"_e",[]);this.m=e,this.o=n}w(e){this.m=[e,...this.m]}Ye(){return this.m.map(n=>n.components).filter(n=>!!n).reverse().reduce((n,r)=>{for(let[o,s]of Object.entries(r))n[o.toUpperCase()]=s;return n},{})}C(e,n,r,o,s){var y;let i=z([]),a=[],p=()=>{for(let d of a)d();a.length=0},c={value:i,stop:p,refs:[],context:this.m[0]};if($(e))return c;let f=this.o.globalContext,m=[],u=(d,C,I,x)=>{try{let b=hr(d,C,f,n,r,x,o);return I&&m.push(...b.refs),{value:b.value,refs:b.refs,ref:b.ref}}catch(b){U(6,`evaluation error: ${e}`,b)}return{value:void 0,refs:[]}};try{let d=(y=gr[e])!=null?y:fr("["+e+"]");gr[e]=d;let C=this.m,I=()=>{m.splice(0),p();let x=d.elements.map((b,L)=>n!=null&&n(L,-1)?{value:X=>u(b,C,!1,{$event:X}).value,refs:[]}:u(b,C,!0));if(!s)for(let b of m){let L=S(b,I);a.push(L)}i(x.map(b=>b.value)),c.refs=x.map(b=>b.ref)};I()}catch(d){U(6,`parse error: ${e}`,d)}return c}V(){return this.m}Y(e){this._e.push(this.m),this.m=e}v(e,n){try{this.Y(e),n()}finally{this.bt()}}bt(){var e;this.m=(e=this._e.pop())!=null?e:[]}};var br="http://www.w3.org/1999/xlink",Qo={itemscope:2,allowfullscreen:2,formnovalidate:2,ismap:2,nomodule:2,novalidate:2,readonly:2,async:1,autofocus:1,autoplay:1,controls:1,default:1,defer:1,disabled:1,hidden:1,inert:1,loop:1,open:1,required:1,reversed:1,scoped:1,seamless:1,checked:1,muted:1,multiple:1,selected:1};function Xo(t){return!!t||t===""}var gn={onChange:(t,e,n,r,o,s)=>{var a;if(r){s&&s.includes("camel")&&(r=B(r)),Vt(t,r,e[0],o);return}let i=e.length;for(let p=0;p<i;++p){let c=e[p];if(E(c)){let f=(a=n==null?void 0:n[p])==null?void 0:a[0],m=c[0],u=c[1];Vt(t,m,u,f)}else if(N(c))for(let f of Object.entries(c)){let m=f[0],u=f[1],y=n==null?void 0:n[p],d=y&&m in y?m:void 0;Vt(t,m,u,d)}else{let f=n==null?void 0:n[p],m=e[p++],u=e[p];Vt(t,m,u,f)}}}},Vt=(t,e,n,r)=>{if(r&&r!==e&&t.removeAttribute(r),te(e)){U(3,name,t);return}if(!W(e)){U(6,`Attribute key is not string at ${t.outerHTML}`,e);return}if(e.startsWith("xlink:")){te(n)?t.removeAttributeNS(br,e.slice(6,e.length)):t.setAttributeNS(br,e,n);return}let o=e in Qo;te(n)||o&&!Xo(n)?t.removeAttribute(e):t.setAttribute(e,o?"":n)};var Er={onChange:(t,e,n)=>{let r=e.length;for(let o=0;o<r;++o){let s=e[o],i=n==null?void 0:n[o];if(E(s)){let a=s.length;for(let p=0;p<a;++p)Tr(t,s[p],i==null?void 0:i[p])}else Tr(t,s,i)}}},Tr=(t,e,n)=>{let r=t.classList,o=W(e),s=W(n);if(e&&!o){if(n&&!s)for(let i in n)i in e||r.remove(i);for(let i in e)e[i]&&r.add(i)}else o?n!==e&&(s&&r.remove(...n==null?void 0:n.split(",")),r.add(...e.split(","))):n&&s&&r.remove(...n==null?void 0:n.split(","))};var Cr={onChange:(t,e)=>{let[n,r]=e;H(r)?r(t,n):t.innerHTML=n==null?void 0:n.toString()}};function Yo(t,e){if(t.length!==e.length)return!1;let n=!0;for(let r=0;n&&r<t.length;r++)n=me(t[r],e[r]);return n}function me(t,e){if(t===e)return!0;let n=Qt(t),r=Qt(e);if(n||r)return n&&r?t.getTime()===e.getTime():!1;if(n=Qe(t),r=Qe(e),n||r)return t===e;if(n=E(t),r=E(e),n||r)return n&&r?Yo(t,e):!1;if(n=N(t),r=N(e),n||r){if(!n||!r)return!1;let o=Object.keys(t).length,s=Object.keys(e).length;if(o!==s)return!1;for(let i in t){let a=t.hasOwnProperty(i),p=e.hasOwnProperty(i);if(a&&!p||!a&&p||!me(t[i],e[i]))return!1}}return String(t)===String(e)}function $t(t,e){return t.findIndex(n=>me(n,e))}var Rr=t=>{let e=parseFloat(t);return isNaN(e)?t:e};var Ft=t=>{if(!h(t))throw _(3,"pause");t(void 0,void 0,3)};var qt=t=>{if(!h(t))throw _(3,"resume");t(void 0,void 0,4)};var vr={onChange:(t,e)=>{Zo(t,e[0])},onBind:(t,e,n,r,o,s)=>es(t,e,s)},Zo=(t,e)=>{let n=Ar(t);if(n&&Sr(t))E(e)?e=$t(e,le(t))>-1:Z(e)?e=e.has(le(t)):e=is(t,e),t.checked=e;else if(n&&wr(t))t.checked=me(e,le(t));else if(n||Nr(t))Or(t)?t.value!==(e==null?void 0:e.toString())&&(t.value=e):t.value!==e&&(t.value=e);else if(Mr(t)){let r=t.options,o=r.length,s=t.multiple;for(let i=0;i<o;i++){let a=r[i],p=le(a);if(s)E(e)?a.selected=$t(e,p)>-1:a.selected=e.has(p);else if(me(le(a),e)){t.selectedIndex!==i&&(t.selectedIndex=i);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}else U(7,t)},nt=t=>(h(t)&&(t=t()),H(t)&&(t=t()),t?W(t)?{trim:t.includes("trim"),lazy:t.includes("lazy"),number:t.includes("number"),int:t.includes("int")}:{trim:!!t.trim,lazy:!!t.lazy,number:!!t.number,int:!!t.int}:{trim:!1,lazy:!1,number:!1,int:!1}),Sr=t=>t.type==="checkbox",wr=t=>t.type==="radio",Or=t=>t.type==="number"||t.type==="range",Ar=t=>t.tagName==="INPUT",Nr=t=>t.tagName==="TEXTAREA",Mr=t=>t.tagName==="SELECT",es=(t,e,n)=>{let r=e.value,o=nt(n==null?void 0:n.join(",")),s=nt(r()[1]),i={int:o.int||o.int,lazy:o.lazy||s.lazy,number:o.number||s.number,trim:o.trim||s.trim},a=e.refs[0];if(!a)return U(8,t),()=>{};let p=Ar(t);return p&&Sr(t)?ns(t,a):p&&wr(t)?as(t,a):p||Nr(t)?ts(t,i,a,r):Mr(t)?ps(t,a,r):(U(7,t),()=>{})},xr=/[.,' ·٫]/,ts=(t,e,n,r)=>{let s=e.lazy?"change":"input",i=Or(t),a=()=>{!e.trim&&!nt(r()[1])||(t.value=t.value.trim())},p=u=>{let y=u.target;y.composing=1},c=u=>{let y=u.target;y.composing&&(y.composing=0,y.dispatchEvent(new Event(s)))},f=()=>{t.removeEventListener(s,m),t.removeEventListener("change",a),t.removeEventListener("compositionstart",p),t.removeEventListener("compositionend",c),t.removeEventListener("change",c)},m=u=>{let y=u.target;if(!y||y.composing)return;let d=y.value,C=nt(r()[1]);if(i||C.number||C.int){if(C.int)d=parseInt(d);else{if(xr.test(d[d.length-1])&&d.split(xr).length===2){if(d+="0",d=parseFloat(d),isNaN(d))d="";else if(n()===d)return}d=parseFloat(d)}isNaN(d)&&(d=""),t.value=d}else C.trim&&(d=d.trim());n(d)};return t.addEventListener(s,m),t.addEventListener("change",a),t.addEventListener("compositionstart",p),t.addEventListener("compositionend",c),t.addEventListener("change",c),f},ns=(t,e)=>{let n="change",r=()=>{t.removeEventListener(n,o)},o=()=>{let s=le(t),i=t.checked,a=e();if(E(a)){let p=$t(a,s),c=p!==-1;i&&!c?a.push(s):!i&&c&&a.splice(p,1)}else Z(a)?i?a.add(s):a.delete(s):e(ss(t,i))};return t.addEventListener(n,o),r},le=t=>"_value"in t?t._value:t.value,Lr="trueValue",rs="falseValue",kr="true-value",os="false-value",ss=(t,e)=>{let n=e?Lr:rs;if(n in t)return t[n];let r=e?kr:os;return t.hasAttribute(r)?t.getAttribute(r):e},is=(t,e)=>{if(Lr in t)return me(e,t.trueValue);let r=kr;return t.hasAttribute(r)?me(e,t.getAttribute(r)):me(e,!0)},as=(t,e)=>{let n="change",r=()=>{t.removeEventListener(n,o)},o=()=>{let s=le(t);e(s)};return t.addEventListener(n,o),r},ps=(t,e,n)=>{let r="change",o=()=>{t.removeEventListener(r,s)},s=()=>{let a=nt(n()[1]).number,p=Array.prototype.filter.call(t.options,c=>c.selected).map(c=>a?Rr(le(c)):le(c));if(t.multiple){let c=e();try{if(Ft(e),Z(c)){c.clear();for(let f of p)c.add(f)}else E(c)?(c.splice(0),c.push(...p)):e(p)}finally{qt(e),F(e)}}else e(p[0])};return t.addEventListener(r,s),o};var cs=["stop","prevent","capture","self","once","left","right","middle","passive"],fs=t=>{let e={};if($(t))return;let n=t.split(",");for(let r of cs)e[r]=n.includes(r);return e},Tn={isLazy:(t,e)=>e===-1&&t%2===0,isLazyKey:(t,e)=>e===0&&!t.endsWith("_flags"),once:!1,collectRefObj:!0,onBind:(t,e,n,r,o,s)=>{var f,m;if(o){let u=e.value(),y=P(o.value()[0]);return W(y)?bn(t,B(y),()=>e.value()[0],(f=s==null?void 0:s.join(","))!=null?f:u[1]):()=>{}}else if(r){let u=e.value();return bn(t,B(r),()=>e.value()[0],(m=s==null?void 0:s.join(","))!=null?m:u[1])}let i=[],a=()=>{i.forEach(u=>u())},p=e.value(),c=p.length;for(let u=0;u<c;++u){let y=p[u];if(H(y)&&(y=y()),N(y))for(let d of Object.entries(y)){let C=d[0],I=()=>{let b=e.value()[u];return H(b)&&(b=b()),b=b[C],H(b)&&(b=b()),b},x=y[C+"_flags"];i.push(bn(t,C,I,x))}else U(2,name,t)}return a}},ms=(t,e)=>{if(t.startsWith("keydown")||t.startsWith("keyup")||t.startsWith("keypress")){e!=null||(e="");let n=t.split(".").concat(e.split(","));t=n[0];let r=n[1],o=n.includes("ctrl"),s=n.includes("shift"),i=n.includes("alt"),a=n.includes("meta"),p=c=>!(o&&!c.ctrlKey||s&&!c.shiftKey||i&&!c.altKey||a&&!c.metaKey);return r?[t,c=>p(c)?c.key.toUpperCase()===r.toUpperCase():!1]:[t,p]}return[t,n=>!0]},bn=(t,e,n,r)=>{if($(e))return U(5,name,t),()=>{};let o=fs(r),s=o?{capture:o.capture,passive:o.passive,once:o.once}:void 0,i;[e,i]=ms(e,r);let a=f=>{if(!i(f)||!n&&e==="submit"&&(o!=null&&o.prevent))return;let m=n(f);H(m)&&(m=m(f)),H(m)&&m(f)},p=()=>{t.removeEventListener(e,c,s)},c=f=>{if(!o){a(f);return}try{if(o.left&&f.button!==1||o.middle&&f.button!==2||o.right&&f.button!==3||o.self&&f.target!==t)return;o.stop&&f.stopPropagation(),o.prevent&&f.preventDefault(),a(f)}finally{o.once&&p()}};return t.addEventListener(e,c,s),p};var Ir={onChange:(t,e,n,r,o,s)=>{if(r){s&&s.includes("camel")&&(r=B(r)),We(t,r,e[0]);return}let i=e.length;for(let a=0;a<i;++a){let p=e[a];if(E(p)){let c=p[0],f=p[1];We(t,c,f)}else if(N(p))for(let c of Object.entries(p)){let f=c[0],m=c[1];We(t,f,m)}else{let c=e[a++],f=e[a];We(t,c,f)}}}};function ls(t){return!!t||t===""}var We=(t,e,n)=>{if(te(e)){U(3,name,t);return}if(e==="innerHTML"||e==="textContent"){let s=[...t.childNodes];setTimeout(()=>s.forEach(oe),1),t[e]=n!=null?n:"";return}let r=t.tagName;if(e==="value"&&r!=="PROGRESS"&&!r.includes("-")){t._value=n;let s=r==="OPTION"?t.getAttribute("value"):t.value,i=n!=null?n:"";s!==i&&(t.value=i),n==null&&t.removeAttribute(e);return}let o=!1;if(n===""||n==null){let s=typeof t[e];s==="boolean"?n=ls(n):n==null&&s==="string"?(n="",o=!0):s==="number"&&(n=0,o=!0)}try{t[e]=n}catch(s){o||U(4,e,r,n,s)}o&&t.removeAttribute(e)};var Dr={once:!0,onBind:(t,e,n)=>{let r=e.value()[0],o=E(r),s=e.refs[0];return o?r.push(t):s?s==null||s(t):e.context[n]=t,()=>{if(o){let i=r.indexOf(t);i!==-1&&r.splice(i,1)}else s==null||s(null)}}};var Ur={onChange:(t,e)=>{let n=he(t).data,r=n._ord;Mn(r)&&(r=n._ord=t.style.display),!!e[0]?t.style.display=r:t.style.display="none"}};var Pr={onChange:(t,e,n)=>{let r=e.length;for(let o=0;o<r;++o){let s=e[o],i=n==null?void 0:n[o];if(E(s)){let a=s.length;for(let p=0;p<a;++p)Hr(t,s[p],i==null?void 0:i[p])}else Hr(t,s,i)}}},Hr=(t,e,n)=>{let r=t.style,o=W(e);if(e&&!o){if(n&&!W(n))for(let s in n)e[s]==null&&Cn(r,s,"");for(let s in e)Cn(r,s,e[s])}else{let s=r.display;if(o?n!==e&&(r.cssText=e):n&&t.removeAttribute("style"),"_ord"in he(t).data)return;r.display=s}},_r=/\s*!important$/;function Cn(t,e,n){if(E(n))n.forEach(r=>{Cn(t,e,r)});else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{let r=us(t,e);_r.test(n)?t.setProperty(Pe(r),n.replace(_r,""),"important"):t[r]=n}}var Br=["Webkit","Moz","ms"],En={};function us(t,e){let n=En[e];if(n)return n;let r=B(e);if(r!=="filter"&&r in t)return En[e]=r;r=et(r);for(let o=0;o<Br.length;o++){let s=Br[o]+r;if(s in t)return En[e]=s}return e}var Q=t=>ds(P(t)),ds=t=>{if(!t||!N(t))return t;if(E(t))return t.map(Q);if(Z(t)){let n=new Set;for(let r of t.keys())n.add(Q(r));return n}if(ye(t)){let n=new Map;for(let r of n)n.set(Q(r[0]),Q(r[1]));return n}let e=ct({},t);for(let n of Object.entries(e))e[n[0]]=Q(n[1]);return e};var jr={onChange:(t,e)=>{var r;let n=e[0];t.textContent=Z(n)?JSON.stringify(Q([...n])):ye(n)?JSON.stringify(Q([...n])):N(n)?JSON.stringify(Q(n)):(r=n==null?void 0:n.toString())!=null?r:""}};var Vr={onChange:(t,e)=>{We(t,"value",e[0])}};var Le=t=>(t==null?void 0:t[lt])===1;var Re=t=>{if(je(t))return t;let e;if(h(t)?(e=t,t=e()):e=z(t),t instanceof Node||t instanceof Date||t instanceof RegExp||t instanceof Promise||t instanceof Error)return e;if(e[lt]=1,E(t)){let n=t.length;for(let r=0;r<n;++r){let o=t[r];Le(o)||(t[r]=Re(o))}return e}if(!N(t))return e;for(let n of Object.entries(t)){let r=n[1];if(Le(r))continue;let o=n[0];Qe(o)||(t[o]=Re(r))}return e};var xe=class xe{constructor(e){l(this,"_",{});l(this,"f",{});l(this,"Ze",()=>Object.keys(this._).filter(e=>e.length===1||!e.startsWith(":")));l(this,"ye",new Map);l(this,"he",new Map);l(this,"forGrowThreshold",10);l(this,"globalContext");l(this,"useInterpolation",!0);if(this.setDirectives("r-"),e){this.globalContext=e;return}this.globalContext=this.xt()}static getDefault(){var e;return(e=xe.je)!=null?e:xe.je=new xe}xt(){let e={},n=globalThis;for(let r of xe.Tt.split(","))e[r]=n[r];return e.ref=Re,e.sref=z,e.flatten=Q,e}addComponent(...e){for(let n of e){if(!n.defaultName){Xe.warning("Registered component's default name is not defined",n);continue}this.ye.set(et(n.defaultName),n),this.he.set(et(n.defaultName).toLocaleUpperCase(),n)}}setDirectives(e){this._={".":Ir,":":gn,"@":Tn,[`${e}on`]:Tn,[`${e}bind`]:gn,[`${e}html`]:Cr,[`${e}text`]:jr,[`${e}show`]:Ur,[`${e}model`]:vr,":style":Pr,":class":Er,":ref":Dr,":value":Vr,teleport:Lt},this.f={for:`${e}for`,if:`${e}if`,else:`${e}else`,elseif:`${e}else-if`,pre:`${e}pre`,inherit:`${e}inherit`,text:`${e}text`,props:":props",propsOnce:":props-once",bind:`${e}bind`,on:`${e}on`,keyBind:":key",key:"key",is:":is",teleport:`${e}teleport`,dynamic:"_d_"}}updateDirectives(e){e(this._,this.f)}};l(xe,"je"),l(xe,"Tt","Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console");var ie=xe;var zt=(t,e)=>{if(!t)return;let n=(e!=null?e:ie.getDefault()).f;for(let r of gs(t,n.pre))hs(r,n.text)},ys=/({{[^]*?}})/g,hs=(t,e)=>{var i;let n=t.textContent;if(!n)return;let r=ys,o=n.split(r);if(o.length<=1)return;if(((i=t.parentElement)==null?void 0:i.childNodes.length)===1&&o.length===3){let a=o[1];if($(o[0])&&$(o[2])&&a.startsWith("{{")&&a.endsWith("}}")){let p=t.parentElement;p.setAttribute(e,a.substring(2,a.length-2)),p.innerText="";return}}let s=document.createDocumentFragment();for(let a of o)if(a.startsWith("{{")&&a.endsWith("}}")){let p=document.createElement("span");p.setAttribute(e,a.substring(2,a.length-2)),s.appendChild(p)}else s.appendChild(document.createTextNode(a));t.replaceWith(s)},gs=(t,e)=>{let n=[],r=o=>{var s,i;if(o.nodeType===Node.TEXT_NODE)(s=o.textContent)!=null&&s.includes("{{")&&n.push(o);else{if((i=o==null?void 0:o.hasAttribute)!=null&&i.call(o,e))return;for(let a of fe(o))r(a)}};return r(t),n};var bs="svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view",Ts=new Set(bs.toUpperCase().split(",")),Es="http://www.w3.org/2000/svg",$r=(t,e)=>{se(t)?t.content.appendChild(e):t.appendChild(e)},Rn=(t,e,n,r)=>{var i;let o=t.t;if(o){let a=n&&Ts.has(o.toUpperCase())?document.createElementNS(Es,o.toLowerCase()):document.createElement(o),p=t.a;if(p)for(let f of Object.entries(p)){let m=f[0],u=f[1];m.startsWith("#")&&(u=m.substring(1),m="name"),a.setAttribute(gt(m,r),u)}let c=t.c;if(c)for(let f of c)Rn(f,a,n,r);$r(e,a);return}let s=t.d;if(s){let a;switch((i=t.n)!=null?i:Node.TEXT_NODE){case Node.COMMENT_NODE:a=document.createComment(s);break;case Node.TEXT_NODE:a=document.createTextNode(s);break}if(a)$r(e,a);else throw new Error("unsupported node type.")}},ke=(t,e,n)=>{n!=null||(n=ie.getDefault());let r=document.createDocumentFragment();if(!E(t))return Rn(t,r,!!e,n),r;for(let o of t)Rn(o,r,!!e,n);return r};var Fr=(t,e={selector:"#app"},n)=>{Gn(t)&&(t=t.context);let r=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!r||!Oe(r))throw _(0);n||(n=ie.getDefault());let o=()=>{for(let a of[...r.childNodes])j(a)},s=a=>{for(let p of a)r.appendChild(p)};if(e.html){let a=document.createRange().createContextualFragment(e.html);o(),s(a.childNodes),e.element=a}else if(e.json){let a=ke(e.json,e.isSVG,n);o(),s(a.childNodes)}return n.useInterpolation&&zt(r,n),new xn(t,r,n).x(),D(r,()=>{Ee(t)}),At(t),{context:t,unmount:()=>{j(r)},unbind:()=>{oe(r)}}},xn=class{constructor(e,n,r){l(this,"Et");l(this,"Fe");l(this,"o");l(this,"h");l(this,"p");this.Et=e,this.Fe=n,this.o=r,this.h=new jt([e],r),this.p=new kt(this.h)}x(){this.p.G(this.Fe)}};var Ge=t=>{if(E(t))return t.map(o=>Ge(o));let e={};if(t.tagName)e.t=t.tagName;else return t.nodeType===Node.COMMENT_NODE&&(e.n=Node.COMMENT_NODE),t.textContent&&(e.d=t.textContent),e;let n=t.getAttributeNames();n.length>0&&(e.a=Object.fromEntries(n.map(o=>[o,t.getAttribute(o)])));let r=fe(t);return r.length>0&&(e.c=[...r].map(o=>Ge(o))),e};var qr=(t,e,n={})=>{var s,i,a,p;let r=!1;if(e.element){let c=e.element;c.remove(),e.element=c}else if(e.selector){let c=document.querySelector(e.selector);if(!c)throw _(1,name);c.remove(),e.element=c}else if(e.html){let c=document.createRange().createContextualFragment(e.html);e.element=c}else e.json&&(e.element=ke(e.json,e.isSVG,n.config),r=!0);e.element||(e.element=document.createDocumentFragment()),((s=n.useInterpolation)==null||s)&&zt(e.element);let o=e.element;if(!r&&(((a=e.isSVG)!=null?a:Ze(o)&&((i=o.hasAttribute)!=null&&i.call(o,"isSVG")))||Ze(o)&&o.querySelector("[isSVG]"))){let c=e.element.content,f=c?[...c.childNodes]:[...o.childNodes],m=Ge(f);e.element=ke(m,!0,n.config)}return{context:t,template:e.element,inheritAttrs:(p=n.inheritAttrs)!=null?p:!0,props:n.props,defaultName:n.defaultName}};var zr=t=>{let e,n={},r=(...o)=>{if(o.length<=2&&0 in o)throw _(4);return e&&!n.isStopped?e(...o):(e=Cs(t,n),e(...o))};return r[J]=1,Te(r,!0),r.stop=()=>{var o,s;return(s=(o=n.ref)==null?void 0:o.stop)==null?void 0:s.call(o)},G(()=>r.stop(),!0),r},Cs=(t,e)=>{var s;let n=(s=e.ref)!=null?s:z(null);e.ref=n,e.isStopped=!1;let r=0,o=Ae(()=>{if(r>0){o(),e.isStopped=!0,F(n);return}n(t()),++r});return n.stop=o,n};var Kr=(t,e)=>{let n={},r,o=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return r&&!n.isStopped?r(...s):(r=Rs(t,e,n),r(...s))};return o[J]=1,Te(o,!0),o.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},G(()=>o.stop(),!0),o},Rs=(t,e,n)=>{var a;let r=(a=n.ref)!=null?a:z(null);n.ref=r,n.isStopped=!1;let o=0,s=p=>{if(o>0){r.stop(),n.isStopped=!0,F(r);return}r(e(...t.map(c=>c()))),++o},i=[];for(let p of t){let c=S(p,s);i.push(c)}return s(null),r.stop=()=>{i.forEach(p=>{p()})},r};var Wr=(t,e)=>{let n={},r,o=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return r&&!n.isStopped?r(...s):(r=xs(t,e,n),r(...s))};return o[J]=1,Te(o,!0),o.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},G(()=>o.stop(),!0),o},xs=(t,e,n)=>{var s;let r=(s=n.ref)!=null?s:z(null);n.ref=r,n.isStopped=!1;let o=0;return r.stop=S(t,i=>{if(o>0){r.stop(),n.isStopped=!0,F(r);return}r(e(i)),++o},!0),r};var Gr=t=>(t[ut]=1,t);var Jr=(t,e)=>{if(!e)throw new Error("persist requires a string key.");let r=Le(t)?Re:a=>a,o=()=>localStorage.setItem(e,JSON.stringify(Q(t()))),s=localStorage.getItem(e);s!=null?t(r(JSON.parse(s))):o();let i=Ae(o);return G(()=>i,!0),t};var vn=(t,...e)=>{let n="";return e.length===0?t.join():(t.forEach((r,o)=>{n+=r+e[o]}),n)},Qr=vn;var Xr=(t,e,n)=>{let r=[],o=()=>{e(t.map(i=>i()))};for(let i of t)r.push(S(i,o));n&&o();let s=()=>{for(let i of r)i()};return G(s,!0),s};var Yr=t=>{if(!h(t))throw _(3,"observe");return t(void 0,void 0,2)};var Zr=t=>{Sn();try{t()}finally{wn()}},Sn=()=>{Ne.set||(Ne.set=new Set)},wn=()=>{let t=Ne.set;if(t){delete Ne.set;for(let e of t)try{F(e)}catch(n){console.error(n)}}};var eo=t=>{var e;(e=we())==null||e.onMounted.push(t)};
|
|
1
|
+
"use strict";var at=Object.defineProperty,to=Object.defineProperties,no=Object.getOwnPropertyDescriptor,ro=Object.getOwnPropertyDescriptors,oo=Object.getOwnPropertyNames,Nn=Object.getOwnPropertySymbols;var Mn=Object.prototype.hasOwnProperty,so=Object.prototype.propertyIsEnumerable;var ct=Math.pow,Gt=(t,e,n)=>e in t?at(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,pt=(t,e)=>{for(var n in e||(e={}))Mn.call(e,n)&&Gt(t,n,e[n]);if(Nn)for(var n of Nn(e))so.call(e,n)&&Gt(t,n,e[n]);return t},Ln=(t,e)=>to(t,ro(e));var io=(t,e)=>{for(var n in e)at(t,n,{get:e[n],enumerable:!0})},ao=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of oo(e))!Mn.call(t,o)&&o!==n&&at(t,o,{get:()=>e[o],enumerable:!(r=no(e,o))||r.enumerable});return t};var co=t=>ao(at({},"__esModule",{value:!0}),t);var l=(t,e,n)=>(Gt(t,typeof e!="symbol"?e+"":e,n),n);var vs={};io(vs,{ComponentHead:()=>$e,RegorConfig:()=>ie,addUnbinder:()=>D,batch:()=>Zr,collectRefs:()=>Tt,computeMany:()=>Kr,computeRef:()=>Wr,computed:()=>zr,createApp:()=>Fr,createComponent:()=>qr,endBatch:()=>An,entangle:()=>Ot,flatten:()=>Q,getBindData:()=>he,html:()=>wn,isDeepRef:()=>Le,isRaw:()=>je,isRef:()=>h,markRaw:()=>Gr,observe:()=>S,observeMany:()=>Xr,observerCount:()=>Yr,onMounted:()=>eo,onUnmounted:()=>G,pause:()=>Ft,persist:()=>Jr,raw:()=>Qr,ref:()=>Re,removeNode:()=>j,resume:()=>qt,silence:()=>bt,sref:()=>z,startBatch:()=>On,toFragment:()=>ke,toJsonTemplate:()=>Ge,trigger:()=>F,unbind:()=>oe,unref:()=>P,useScope:()=>wt,warningHandler:()=>Xe,watchEffect:()=>Ae});module.exports=co(vs);var H=t=>typeof t=="function",W=t=>typeof t=="string",kn=t=>typeof t=="undefined",te=t=>t==null||typeof t=="undefined",$=t=>typeof t!="string"||!(t!=null&&t.trim()),po=Object.prototype.toString,Jt=t=>po.call(t),ye=t=>Jt(t)==="[object Map]",Z=t=>Jt(t)==="[object Set]",Qt=t=>Jt(t)==="[object Date]",Qe=t=>typeof t=="symbol",E=Array.isArray,N=t=>t!==null&&typeof t=="object";var In={0:"App root element is missing",1:t=>`${t} component template cannot be found.`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:t=>`${t} requires ref source argument`,4:"computed is readonly.",5:"ref is readonly."},_=(t,...e)=>{let n=In[t];return new Error(H(n)?n.call(In,...e):n)};var De=Symbol(":regor");var he=t=>{let e=t[De];if(e)return e;let n={unbinders:[],data:{}};return t[De]=n,n};var D=(t,e)=>{he(t).unbinders.push(e)};var ft=[],Dn=()=>{let t={onMounted:[],onUnmounted:[]};return ft.push(t),t},we=t=>{let e=ft[ft.length-1];if(!e&&!t)throw _(2);return e},Un=t=>{let e=we();return t&&Yt(t),ft.pop(),e},Xt=Symbol("csp"),Yt=t=>{let e=t,n=e[Xt];if(n){let r=we();if(n===r)return;r.onMounted.length>0&&n.onMounted.push(...r.onMounted),r.onUnmounted.length>0&&n.onUnmounted.push(...r.onUnmounted);return}e[Xt]=we()},mt=t=>t[Xt];var G=(t,e)=>{var n;(n=we(e))==null||n.onUnmounted.push(t)};var lt=Symbol("ref"),J=Symbol("sref"),ut=Symbol("raw");var h=t=>(t==null?void 0:t[J])===1;var S=(t,e,n)=>{if(!h(t))throw _(3,"observe");n&&e(t());let o=t(void 0,void 0,0,e);return G(o,!0),o};var oe=t=>{let e=[t];for(;e.length>0;){let n=e.shift();fo(n);let r=n.childNodes;if(r)for(let o of r)e.push(o)}},fo=t=>{let e=t[De];if(e){for(let n of e.unbinders)n();e.unbinders.splice(0),delete t[De]}};var j=t=>{t.remove(),setTimeout(()=>oe(t),1)};var Hn={8:t=>`Model binding requires a ref at ${t.outerHTML}`,7:t=>`Model binding is not supported on ${t.tagName} element at ${t.outerHTML}`,0:(t,e)=>`${t} binding expression is missing at ${e.outerHTML}`,1:(t,e,n)=>`invalid ${t} expression: ${e} at ${n.outerHTML}`,2:(t,e)=>`${t} requires object expression at ${e.outerHTML}`,3:(t,e)=>`${t} binder: key is empty on ${e.outerHTML}.`,4:(t,e,n,r)=>({msg:`Failed setting prop "${t}" on <${e.toLowerCase()}>: value ${n} is invalid.`,args:[r]}),5:(t,e)=>`${t} binding missing event type at ${e.outerHTML}`,6:(t,e)=>({msg:t,args:[e]})},U=(t,...e)=>{let n=Hn[t],r=H(n)?n.call(Hn,...e):n,o=Xe.warning;o&&(W(r)?o(r):o(r,...r.args))},Xe={warning:console.warn};var yt={},dt={},_n=1,Bn=t=>{let e=(_n++).toString();return yt[e]=t,dt[e]=0,e},Zt=t=>{dt[t]+=1},en=t=>{--dt[t]===0&&(delete yt[t],delete dt[t])},Pn=t=>yt[t],tn=()=>_n!==1&&Object.keys(yt).length>0,Ye="r-switch",mo=t=>{let e=t.filter(r=>Oe(r)).map(r=>[...r.querySelectorAll("[r-switch]")].map(o=>o.getAttribute(Ye))),n=new Set;return e.forEach(r=>{r.forEach(o=>o&&n.add(o))}),[...n]},Ue=(t,e)=>{if(!tn())return;let n=mo(e);n.length!==0&&(n.forEach(Zt),D(t,()=>{n.forEach(en)}))};var nn=(t,e,n,r)=>{let o=[];for(let s of t){let i=s.cloneNode(!0);n.insertBefore(i,r),o.push(i)}be(e,o)},rn=Symbol("r-if"),jn=Symbol("r-else"),Vn=t=>t[jn]===1,ht=class{constructor(e){l(this,"p");l(this,"P");l(this,"q");l(this,"K");l(this,"z");l(this,"b");l(this,"T");this.p=e,this.P=e.o.f.if,this.q=Be(e.o.f.if),this.K=e.o.f.else,this.z=e.o.f.elseif,this.b=e.o.f.for,this.T=e.o.f.pre}Fe(e,n){let r=e.parentElement;for(;r!==null&&r!==document.documentElement;){if(r.hasAttribute(n))return!0;r=r.parentElement}return!1}N(e){let n=e.hasAttribute(this.P),r=ge(e,this.q);for(let o of r)this.x(o);return n}W(e){return e[rn]?!0:(e[rn]=!0,ge(e,this.q).forEach(n=>n[rn]=!0),!1)}x(e){if(e.hasAttribute(this.T)||this.W(e)||this.Fe(e,this.b))return;let n=e.getAttribute(this.P);if(!n){U(0,this.P,e);return}e.removeAttribute(this.P),this.k(e,n)}B(e,n,r){let o=_e(e),s=e.parentNode,i=document.createComment(`__begin__ :${n}${r!=null?r:""}`);s.insertBefore(i,e),Ue(i,o),o.forEach(c=>{j(c)}),e.remove(),n!=="if"&&(e[jn]=1);let a=document.createComment(`__end__ :${n}${r!=null?r:""}`);return s.insertBefore(a,i.nextSibling),{nodes:o,parent:s,commentBegin:i,commentEnd:a}}pe(e,n){if(!e)return[];let r=e.nextElementSibling;if(e.hasAttribute(this.K)){e.removeAttribute(this.K);let{nodes:o,parent:s,commentBegin:i,commentEnd:a}=this.B(e,"else");return[{mount:()=>{nn(o,this.p,s,a)},unmount:()=>{pe(i,a)},isTrue:()=>!0,isMounted:!1}]}else{let o=e.getAttribute(this.z);if(!o)return[];e.removeAttribute(this.z);let{nodes:s,parent:i,commentBegin:a,commentEnd:c}=this.B(e,"elseif",` => ${o} `),p=this.p.h.C(o),f=p.value,m=this.pe(r,n),u=[];D(a,()=>{p.stop();for(let C of u)C();u.length=0});let d=S(f,n);return u.push(d),[{mount:()=>{nn(s,this.p,i,c)},unmount:()=>{pe(a,c)},isTrue:()=>!!f()[0],isMounted:!1}].concat(m)}}k(e,n){let r=e.nextElementSibling,{nodes:o,parent:s,commentBegin:i,commentEnd:a}=this.B(e,"if",` => ${n} `),c=this.p.h.C(n),p=c.value,f=!1,m=this.p.h,u=m.V(),y=()=>{m.v(u,()=>{if(p()[0])f||(nn(o,this.p,s,a),f=!0),d.forEach(b=>{b.unmount(),b.isMounted=!1});else{pe(i,a),f=!1;let b=!1;for(let L of d)!b&&L.isTrue()?(L.isMounted||(L.mount(),L.isMounted=!0),b=!0):(L.unmount(),L.isMounted=!1)}})},d=this.pe(r,y),C=[];D(i,()=>{c.stop();for(let b of C)b();C.length=0}),y();let x=S(p,y);C.push(x)}};var _e=t=>{let e=se(t)?t.content.childNodes:[t];return Array.from(e).filter(n=>{let r=n==null?void 0:n.tagName;return r!=="SCRIPT"&&r!=="STYLE"})},be=(t,e)=>{for(let n of e)!Vn(n)&&t.G(n)},ge=(t,e)=>{var r;let n=t.querySelectorAll(e);return(r=t.matches)!=null&&r.call(t,e)?[t,...n]:n},se=t=>t instanceof HTMLTemplateElement,Oe=t=>t.nodeType===Node.ELEMENT_NODE,Ze=t=>t.nodeType===Node.ELEMENT_NODE,$n=t=>t instanceof HTMLSlotElement,fe=t=>se(t)?t.content.childNodes:t.childNodes,pe=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let r=n.nextSibling;j(n),n=r}},Te=(t,e)=>{Object.defineProperty(t,"value",{get(){return t()},set(n){if(e)throw new Error("value is readonly.");return t(n)},enumerable:!0,configurable:!1})},Fn=(t,e)=>{if(!t)return!1;if(t.startsWith("["))return t.substring(1,t.length-1);let n=e.length;return t.startsWith(e)?t.substring(n,t.length-n):!1},Be=t=>`[${CSS.escape(t)}]`,gt=(t,e)=>(t.startsWith("@")&&(t=e.f.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.f.dynamic)),t),on=t=>{let e=Object.create(null);return n=>e[n]||(e[n]=t(n))},lo=/-(\w)/g,B=on(t=>t&&t.replace(lo,(e,n)=>n?n.toUpperCase():"")),uo=/\B([A-Z])/g,Pe=on(t=>t&&t.replace(uo,"-$1").toLowerCase()),et=on(t=>t&&t.charAt(0).toUpperCase()+t.slice(1));var ne=[],qn=t=>{var e;ne.length!==0&&((e=ne[ne.length-1])==null||e.add(t))},Ae=t=>{if(!t)return()=>{};let e={stop:()=>{}};return yo(t,e),G(()=>e.stop(),!0),e.stop},yo=(t,e)=>{if(!t)return;let n=[],r=!1,o=()=>{for(let s of n)s();n=[],r=!0};e.stop=o;try{let s=new Set;if(ne.push(s),t(i=>n.push(i)),r)return;for(let i of[...s]){let a=S(i,()=>{o(),Ae(t)});n.push(a)}}finally{ne.pop()}},bt=t=>{let e=ne.length,n=e>0&&ne[e-1];try{return n&&ne.push(null),t()}finally{n&&ne.pop()}},Tt=t=>{try{let e=new Set;return ne.push(e),{value:t(),refs:[...e]}}finally{ne.pop()}};var je=t=>!!t&&t[ut]===1;var F=(t,e,n)=>{if(!h(t))return;let r=t;if(r(void 0,e,1),!n)return;let o=r();if(o){if(E(o)||Z(o))for(let s of o)F(s,e,!0);else if(ye(o))for(let s of o)F(s[0],e,!0),F(s[1],e,!0);if(N(o))for(let s in o)F(o[s],e,!0)}};function ho(t,e,n){Object.defineProperty(t,e,{value:n,enumerable:!1,writable:!0,configurable:!0})}var Ve=(t,e,n)=>{n.forEach(function(r){let o=t[r];ho(e,r,function(...i){let a=o.apply(this,i),c=this[J];for(let p of c)F(p);return a})})},Et=(t,e)=>{Object.defineProperty(t,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var zn=Array.prototype,sn=Object.create(zn),go=["push","pop","shift","unshift","splice","sort","reverse"];Ve(zn,sn,go);var Kn=Map.prototype,Ct=Object.create(Kn),bo=["set","clear","delete"];Et(Ct,"Map");Ve(Kn,Ct,bo);var Wn=Set.prototype,Rt=Object.create(Wn),To=["add","clear","delete"];Et(Rt,"Set");Ve(Wn,Rt,To);var Ne={},z=t=>{if(h(t)||je(t))return t;let e={auto:!0,_value:t},n=c=>N(c)?J in c?!0:E(c)?(Object.setPrototypeOf(c,sn),!0):Z(c)?(Object.setPrototypeOf(c,Rt),!0):ye(c)?(Object.setPrototypeOf(c,Ct),!0):!1:!1,r=n(t),o=new Set,s=(c,p)=>{if(Ne.set){Ne.set.add(a);return}o.size!==0&&bt(()=>{for(let f of[...o.keys()])o.has(f)&&f(c,p)})},i=c=>{let p=c[J];p||(c[J]=p=new Set),p.add(a)},a=(...c)=>{if(!(2 in c)){let f=c[0],m=c[1];return 0 in c?e._value===f||h(f)&&(f=f(),e._value===f)?f:(n(f)&&i(f),e._value=f,e.auto&&s(f,m),e._value):(qn(a),e._value)}switch(c[2]){case 0:{let f=c[3];if(!f)return()=>{};let m=u=>{o.delete(u)};return o.add(f),()=>{m(f)}}case 1:{let f=c[1],m=e._value;s(m,f);break}case 2:return o.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[J]=1,Te(a,!1),r&&i(t),a};var P=t=>h(t)?t():t;var tt=class{constructor(e){l(this,"E",[]);l(this,"H",new Map);l(this,"J");this.J=e}get S(){return this.E.length}Q(e){let n=this.J(e.value);n&&this.H.set(n,e)}X(e){var r;let n=this.J((r=this.E[e])==null?void 0:r.value);n&&this.H.delete(n)}static qe(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.S,this.E.push(e),this.Q(e)}Ke(e,n){let r=this.S;for(let o=e;o<r;++o)this.E[o].order=o+1;n.order=e,this.E.splice(e,0,n),this.Q(n)}I(e){return this.E[e]}Y(e,n){this.X(e),this.E[e]=n,this.Q(n),n.order=e}ce(e){this.X(e),this.E.splice(e,1);let n=this.S;for(let r=e;r<n;++r)this.E[r].order=r}fe(e){let n=this.S;for(let r=e;r<n;++r)this.X(r);this.E.splice(e)}Rt(e){return this.H.has(e)}ze(e){var r;let n=this.H.get(e);return(r=n==null?void 0:n.order)!=null?r:-1}};var an=Symbol("r-for"),vt=class vt{constructor(e){l(this,"p");l(this,"b");l(this,"Z");l(this,"T");this.p=e,this.b=e.o.f.for,this.Z=Be(this.b),this.T=e.o.f.pre}N(e){let n=e.hasAttribute(this.b),r=ge(e,this.Z);for(let o of r)this.We(o);return n}W(e){return e[an]?!0:(e[an]=!0,ge(e,this.Z).forEach(n=>n[an]=!0),!1)}We(e){if(e.hasAttribute(this.T)||this.W(e))return;let n=e.getAttribute(this.b);if(!n){U(0,this.b,e);return}e.removeAttribute(this.b),this.Ge(e,n)}le(e){return te(e)?[]:(H(e)&&(e=e()),Symbol.iterator in Object(e)?e:typeof e=="number"?(r=>({*[Symbol.iterator](){for(let o=1;o<=r;o++)yield o}}))(e):Object.entries(e))}Ge(e,n){var it;let r=this.Je(n);if(!(r!=null&&r.list)){U(1,this.b,n,e);return}let o=this.p.o.f.key,s=this.p.o.f.keyBind,i=(it=e.getAttribute(o))!=null?it:e.getAttribute(s);e.removeAttribute(o),e.removeAttribute(s);let a=i?v=>{var A;return P((A=P(v))==null?void 0:A[i])}:v=>v,c=(v,A)=>a(v)===a(A),p=_e(e),f=e.parentNode;if(!f)return;let m=`${this.b} => ${n}`,u=new Comment(`__begin__ ${m}`);f.insertBefore(u,e),Ue(u,p),p.forEach(v=>{j(v)}),e.remove();let y=new Comment(`__end__ ${m}`);f.insertBefore(y,u.nextSibling);let d=this.p,C=d.h,I=C.V(),x=(v,A,q)=>{let w=r.createContext(A,v),Y=tt.qe(w.index,A);return C.v(I,()=>{C.w(w.ctx);let re=q.previousSibling,Ie=[];for(let g of p){let M=g.cloneNode(!0);f.insertBefore(M,q),Ie.push(M)}for(be(d,Ie),re=re.nextSibling;re!==q;)Y.items.push(re),re=re.nextSibling}),Y},b=(v,A)=>{let q=O.I(v).items,w=q[q.length-1].nextSibling;for(let Y of q)j(Y);O.Y(v,x(v,A,w))},L=(v,A)=>{O.w(x(v,A,y))},X=v=>{for(let A of O.I(v).items)j(A)},ee=v=>{let A=O.S;for(let q=v;q<A;++q)O.I(q).index(q)},Je=v=>{let A=O.S;H(v)&&(v=v());let q=P(v[0]);if(E(q)&&q.length===0){pe(u,y),O.fe(0);return}let w=0,Y=Number.MAX_SAFE_INTEGER,re=A,Ie=this.p.o.forGrowThreshold,g=()=>O.S<re+Ie;for(let T of this.le(v[0])){let V=()=>{if(w<A){let K=O.I(w++);if(c(K.value,T))return;let R=O.ze(a(T));if(R>=w&&R-w<10){if(--w,Y=Math.min(Y,w),X(w),O.ce(w),--A,R>w+1)for(let k=w;k<R-1&&k<A&&!c(O.I(w).value,T);)++k,X(w),O.ce(w),--A;V();return}g()?(O.Ke(w-1,x(w,T,O.I(w-1).items[0])),Y=Math.min(Y,w-1),++A):b(w-1,T)}else L(w++,T)};V()}let M=w;for(A=O.S;w<A;)X(w++);O.fe(M),ee(Y)},Kt=()=>{de=S(ot,Je)},rt=()=>{ue.stop(),de()},ue=C.C(r.list),ot=ue.value,de,st=0,O=new tt(a);for(let v of this.le(ot()[0]))O.w(x(st++,v,y));D(u,rt),Kt()}Je(e){var c,p;let n=vt.Qe.exec(e);if(!n)return;let r=(n[1]+((c=n[2])!=null?c:"")).split(",").map(f=>f.trim()),o=r.length>1?r.length-1:-1,s=o!==-1&&(r[o]==="index"||(p=r[o])!=null&&p.startsWith("#"))?r[o]:"";s&&r.splice(o,1);let i=n[3];if(!i||r.length===0)return;let a=/[{[]/.test(e);return{list:i,createContext:(f,m)=>{let u={},y=P(f);if(!a&&r.length===1)u[r[0]]=f;else if(E(y)){let C=0;for(let I of r)u[I]=y[C++]}else for(let C of r)u[C]=y[C];let d={ctx:u,index:z(-1)};return s&&(d.index=u[s.startsWith("#")?s.substring(1):s]=z(m)),d}}}};l(vt,"Qe",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+([^\s]+)\s*/);var xt=vt;var Eo=(t,e)=>{for(let n of t){let r=n.cloneNode(!0);e.appendChild(r)}},St=class{constructor(e){l(this,"p");l(this,"D");l(this,"ue");this.p=e,this.D=e.o.f.is,this.ue=Be(this.D)+", [is]"}N(e){let n=e.hasAttribute(this.D),r=ge(e,this.ue);for(let o of r)this.x(o);return n}x(e){let n=e.getAttribute(this.D);if(!n){if(n=e.getAttribute("is"),!n||!n.startsWith("regor:"))return;n=`'${n.slice(6)}'`,e.removeAttribute("is")}e.removeAttribute(this.D),this.k(e,n)}B(e,n){let r=_e(e),o=e.parentNode,s=document.createComment(`__begin__ dynamic ${n!=null?n:""}`);o.insertBefore(s,e),Ue(s,r),r.forEach(a=>{j(a)}),e.remove();let i=document.createComment(`__end__ dynamic ${n!=null?n:""}`);return o.insertBefore(i,s.nextSibling),{nodes:r,parent:o,commentBegin:s,commentEnd:i}}k(e,n){let{nodes:r,parent:o,commentBegin:s,commentEnd:i}=this.B(e,` => ${n} `),a=this.p.h.C(n),c=a.value,p=this.p.h,f=p.V(),m={name:""},u=se(e)?r:[...r[0].childNodes],y=()=>{p.v(f,()=>{let x=c()[0];if(N(x)&&(x=x.name),!W(x)||$(x)){pe(s,i);return}if(m.name===x)return;pe(s,i);let b=document.createElement(x);for(let L of e.getAttributeNames())L!==this.D&&b.setAttribute(L,e.getAttribute(L));Eo(u,b),o.insertBefore(b,i),this.p.G(b),m.name=x})},d=[];D(s,()=>{a.stop();for(let x of d)x();d.length=0}),y();let I=S(c,y);d.push(I)}};var Gn={collectRefObj:!0,onBind:(t,e)=>S(e.value,()=>{let r=e.value(),o=e.context,s=r[0];if(N(s))for(let i of Object.entries(s)){let a=i[0],c=i[1],p=o[a];p!==c&&(h(p)?p(c):o[a]=c)}},!0)};var Jn={collectRefObj:!0,once:!0,onBind:(t,e)=>{let n=e.value(),r=e.context,o=n[0];if(!N(o))return()=>{};for(let s of Object.entries(o)){let i=s[0],a=s[1],c=r[i];c!==a&&(h(c)?c(a):r[i]=a)}return()=>{}}};var Ee=t=>{var n,r;let e=(n=mt(t))==null?void 0:n.onUnmounted;e==null||e.forEach(o=>{o()}),(r=t.unmounted)==null||r.call(t)};var $e=class{constructor(e,n,r,o,s){l(this,"props");l(this,"start");l(this,"end");l(this,"ctx");l(this,"autoProps",!0);l(this,"entangle",!0);l(this,"disableSwitch",!1);l(this,"onAutoPropsAssigned");l(this,"me");l(this,"emit",(e,n)=>{this.me.dispatchEvent(new CustomEvent(e,{detail:n}))});this.props=e,this.me=n,this.ctx=r,this.start=o,this.end=s}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)j(e),e=e.nextSibling;Ee(this)}};var cn=Symbol("scope"),wt=t=>{try{Dn();let e=t();Yt(e);let n={context:e,unmount:()=>Ee(e),[cn]:1};return n[cn]=1,n}finally{Un()}},Qn=t=>N(t)?cn in t:!1;var Ot=(t,e)=>{if(t===e)return()=>{};let n=S(t,o=>e(o)),r=S(e,o=>t(o));return e(t()),()=>{n(),r()}};var At=t=>{var n,r;let e=(n=mt(t))==null?void 0:n.onMounted;e==null||e.forEach(o=>{o()}),(r=t.mounted)==null||r.call(t)};var Xn={collectRefObj:!0,onBind:(t,e,n,r,o,s)=>{if(!r)return()=>{};let i=B(r);return S(e.value,()=>{var m;let c=(m=e.refs[0])!=null?m:e.value()[0],p=e.context,f=p[r];f!==c&&(h(f)?f(c):p[i]=c)},!0)}};var Nt=class{constructor(e){l(this,"p");l(this,"de");this.p=e,this.de=e.o.f.inherit}N(e){this.Xe(e)}Xe(e){var f;let n=this.p,r=n.h,o=n.o.ye,s=n.o.he,i=r.Ye(),a=[...o.keys(),...Object.keys(i),...[...o.keys()].map(Pe),...[...Object.keys(i)].map(Pe)].join(",");if($(a))return;let c=e.querySelectorAll(a),p=(f=e.matches)!=null&&f.call(e,a)?[e,...c]:c;for(let m of p){if(m.hasAttribute(n.T))continue;let u=m.parentNode;if(!u)continue;let y=m.nextSibling,d=B(m.tagName).toUpperCase(),C=i[d],I=C!=null?C:s.get(d);if(!I)continue;let x=I.template;if(!x)continue;let b=m.parentElement;if(!b)continue;let L=new Comment(" begin component: "+m.tagName),X=new Comment(" end component: "+m.tagName);b.insertBefore(L,m),m.remove();let ee=n.o.f.props,Je=n.o.f.propsOnce,Kt=n.o.f.bind,rt=(g,M)=>{let T={},V=g.hasAttribute(ee),K=g.hasAttribute(Je);return r.v(M,()=>{r.w(T),V&&n.x(Gn,g,ee),K&&n.x(Jn,g,Je);let R=I.props;if(!R||R.length===0)return;R=R.map(B);for(let ve of R.concat(R.map(Pe))){let ae=g.getAttribute(ve);ae!==null&&(T[B(ve)]=ae,g.removeAttribute(ve))}let k=n.ee.ge(g,!1);for(let[ve,ae]of k.entries()){let[Se,Wt]=ae.te;Wt&&R.includes(B(Wt))&&(Se!=="."&&Se!==":"&&Se!==Kt||n.x(Xn,g,ve,!0,Wt,ae.ne))}}),T},ue=[...r.V()],ot=()=>{var V;let g=rt(m,ue),M=new $e(g,m,ue,L,X),T=wt(()=>{var K;return(K=I.context(M))!=null?K:{}}).context;if(M.autoProps){for(let[K,R]of Object.entries(g))if(K in T){let k=T[K];if(k===R)continue;M.entangle&&h(k)&&h(R)?D(L,Ot(R,k)):h(k)?k(R):T[K]=P(R)}else T[K]=R;(V=M.onAutoPropsAssigned)==null||V.call(M)}return{componentCtx:T,head:M}},{componentCtx:de,head:st}=ot(),O=[...fe(x)],it=O.length,v=m.childNodes.length===0,A=g=>{let M=g.parentElement;if(v){for(let R of[...g.childNodes])M.insertBefore(R,g);return}let T=g.name;$(T)&&(T=g.getAttributeNames().filter(R=>R.startsWith("#"))[0],$(T)?T="default":T=T.substring(1));let V=m.querySelector(`template[name='${T}'], template[\\#${T}]`);!V&&T==="default"&&(V=m.querySelector("template:not([name])"),V&&V.getAttributeNames().filter(R=>R.startsWith("#")).length>0&&(V=null));let K=R=>{st.disableSwitch||r.v(ue,()=>{r.w(de);let k=rt(g,r.V());r.v(ue,()=>{r.w(k);let ve=r.V(),ae=Bn(ve);for(let Se of R)Oe(Se)&&(Se.setAttribute(Ye,ae),Zt(ae),D(Se,()=>{en(ae)}))})})};if(V){let R=[...fe(V)];for(let k of R)M.insertBefore(k,g);K(R)}else{if(T!=="default"){for(let k of[...fe(g)])M.insertBefore(k,g);return}let R=[...fe(m)].filter(k=>!se(k));for(let k of R)M.insertBefore(k,g);K(R)}},q=g=>{if(!Oe(g))return;let M=g.querySelectorAll("slot");if($n(g)){A(g),g.remove();return}for(let T of M)A(T),T.remove()};(()=>{for(let g=0;g<it;++g)O[g]=O[g].cloneNode(!0),u.insertBefore(O[g],y),q(O[g])})(),b.insertBefore(X,y);let Y=()=>{if(!I.inheritAttrs)return;let g=O.filter(T=>T.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(T=>T.hasAttribute(this.de)));let M=g[0];if(M)for(let T of m.getAttributeNames()){if(T===ee||T===Je)continue;let V=m.getAttribute(T);if(T==="class")M.classList.add(...V.split(" "));else if(T==="style"){let K=M.style,R=m.style;for(let k of R)K.setProperty(k,R.getPropertyValue(k))}else M.setAttribute(gt(T,n.o),V)}},re=()=>{for(let g of m.getAttributeNames())!g.startsWith("@")&&!g.startsWith(n.o.f.on)&&m.removeAttribute(g)},Ie=()=>{Y(),re(),r.w(de),n.be(m,!1),de.$emit=st.emit,be(n,O),D(m,()=>{Ee(de)}),D(L,()=>{oe(m)}),At(de)};r.v(ue,Ie)}}};var pn=class{constructor(e){l(this,"Te");l(this,"te",[]);l(this,"ne",[]);l(this,"xe",[]);this.Te=e,this.C()}C(){let e=this.Te,n=e.startsWith(".");n&&(e=":"+e.slice(1));let r=e.indexOf("."),o=this.te=(r<0?e:e.substring(0,r)).split(/[:@]/);if($(o[0])&&(o[0]=n?".":e[0]),r>=0){let s=this.ne=e.slice(r+1).split(".");if(s.includes("camel")){let i=o.length-1;o[i]=B(o[i])}s.includes("prop")&&(o[0]=".")}}},Mt=class{constructor(e){l(this,"p");l(this,"Ee");this.p=e,this.Ee=e.o.Ze()}ge(e,n){let r=new Map;if(!Ze(e))return r;let o=this.Ee,s=a=>{let c=a.getAttributeNames().filter(p=>o.some(f=>p.startsWith(f)));for(let p of c)r.has(p)||r.set(p,new pn(p)),r.get(p).xe.push(a)};if(s(e),!n)return r;let i=e.querySelectorAll("*");for(let a of i)s(a);return r}};var Lt={};var kt=class{constructor(e){l(this,"h");l(this,"Re");l(this,"Ce");l(this,"ve");l(this,"Se");l(this,"ee");l(this,"o");l(this,"T");l(this,"we");this.h=e,this.o=e.o,this.Ce=new xt(this),this.Re=new ht(this),this.ve=new St(this),this.Se=new Nt(this),this.ee=new Mt(this),this.T=this.o.f.pre,this.we=this.o.f.dynamic}et(e){let n=se(e)?[e]:e.querySelectorAll("template");for(let r of n){if(r.hasAttribute(this.T))continue;let o=r.parentNode;if(!o)continue;let s=r.nextSibling;if(r.remove(),!r.content)continue;let i=[...r.content.childNodes];for(let a of i)o.insertBefore(a,s);be(this,i)}}G(e){e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.T)||this.Re.N(e)||this.Ce.N(e)||this.ve.N(e)||(this.Se.N(e),this.et(e),this.be(e,!0))}be(e,n){var s;let r=this.ee.ge(e,n),o=this.o._;for(let[i,a]of r.entries()){let[c,p]=a.te,f=(s=o[i])!=null?s:o[c];if(!f){console.error("directive not found:",c);continue}a.xe.forEach(m=>{this.x(f,m,i,!1,p,a.ne)})}}x(e,n,r,o,s,i){if(n.hasAttribute(this.T))return;let a=n.getAttribute(r);n.removeAttribute(r);let c=p=>{let f=p.getAttribute(Ye);return f||(p.parentElement?c(p.parentElement):null)};if(tn()){let p=c(n);if(p){this.h.v(Pn(p),()=>{this.k(e,n,a,s,i)});return}}this.k(e,n,a,s,i)}tt(e,n,r){if(e!==Lt)return!1;if($(r))return!0;let o=document.querySelector(r);if(o){let s=n.parentElement;if(!s)return!0;let i=new Comment(`teleported => '${r}'`);s.insertBefore(i,n),n.teleportedFrom=i,i.teleportedTo=n,D(i,()=>{j(n)}),o.appendChild(n)}return!0}k(e,n,r,o,s){var I;if(n.nodeType!==Node.ELEMENT_NODE||r==null||this.tt(e,n,r))return;let i=this.h.C(r,e.isLazy,e.isLazyKey,e.collectRefObj,e.once),a=[];D(n,()=>{i.stop(),f==null||f.stop();for(let x of a)x();a.length=0});let p=Fn(o,this.we),f;p&&(f=this.h.C(B(p),void 0,void 0,void 0,e.once));let m,u=()=>(m=i.value(),m),y,d=()=>f?(y=f.value()[0],y):(y=o,o),C=()=>{if(!e.onChange)return;let x=S(i.value,b=>{var ee;let L=m,X=y;(ee=e.onChange)==null||ee.call(e,n,u(),L,d(),X,s)});if(a.push(x),f){let b=S(f.value,L=>{var ee;let X=y;(ee=e.onChange)==null||ee.call(e,n,u(),X,d(),X,s)});a.push(b)}};e.once||C(),e.onBind&&a.push(e.onBind(n,i,r,o,f,s)),(I=e.onChange)==null||I.call(e,n,u(),void 0,d(),void 0,s)}};var Co=9,Ro=10,xo=13,vo=32,Ce=46,It=44,So=39,wo=34,Dt=40,Fe=41,Ut=91,Ht=93,fn=63,Oo=59,Yn=58,Ao=123,_t=125,ln=43,No=45,Zn=96,er=47,Mo=92,tr=[2,3],nr=[ln,No],cr={"-":1,"!":1,"~":1,"+":1,new:1},pr={"=":2.5,"*=":2.5,"**=":2.5,"/=":2.5,"%=":2.5,"+=":2.5,"-=":2.5,"<<=":2.5,">>=":2.5,">>>=":2.5,"&=":2.5,"^=":2.5,"|=":2.5},ze=Ln(pt({"=>":2},pr),{"||":3,"??":3,"&&":4,"|":5,"^":6,"&":7,"==":8,"!=":8,"===":8,"!==":8,"<":9,">":9,"<=":9,">=":9,in:9,"<<":10,">>":10,">>>":10,"+":11,"-":11,"*":12,"/":12,"%":12,"**":13}),fr=Object.keys(pr),Lo=new Set(fr),Bt=new Set;Bt.add("=>");fr.forEach(t=>Bt.add(t));var ko=new Set(["$","_"]),rr={true:!0,false:!1,null:null},Io="this";function mr(t){return Math.max(0,...Object.keys(t).map(e=>e.length))}var Do=mr(cr),Uo=mr(ze),Ke="Expected ",Me="Unexpected ",dn="Unclosed ",Ho=Ke+":",or=Ke+"expression",_o="missing }",Bo=Me+"object property",Po=dn+"(",sr=Ke+"comma",ir=Me+"token ",jo=Me+"period",mn=Ke+"expression after ",Vo="missing unaryOp argument",$o=dn+"[",Fo=Ke+"exponent (",qo="Variable names cannot start with a number (",zo=dn+'quote after "';var qe=t=>t>=48&&t<=57,ar=t=>ze[t]||0,un=class{constructor(e){l(this,"nt",{0:[this.rt],1:[this.ot,this.st,this.it],2:[this.at,this.pt,this.ct,this.Oe,this.ft],3:[this.lt,this.ut,this.mt]});l(this,"r");l(this,"e");this.r=e,this.e=0}get M(){return this.r.charAt(this.e)}get l(){return this.r.charCodeAt(this.e)}u(e){return this.r.charCodeAt(this.e)===e}U(e){let n=String.fromCharCode(e);return e>=65&&e<=90||e>=97&&e<=122||e>=128&&!(n in ze)||ko.has(n)}re(e){return this.U(e)||qe(e)}i(e){return new Error(`${e} at character ${this.e}`)}L(e,n,r){let o=this.nt[e];if(!o)return r;let s={node:r},i=a=>{a.call(this,s)};return n===0?o.forEach(i):o.find(i),s.node}y(){let e=this.l,n=this.r,r=this.e;for(;e===vo||e===Co||e===Ro||e===xo;)e=n.charCodeAt(++r);this.e=r}parse(){let e=this.oe();return e.length===1?e[0]:{type:0,body:e}}oe(e){let n=[];for(;this.e<this.r.length;){let r=this.l;if(r===Oo||r===It)this.e++;else{let o=this.O();if(o)n.push(o);else if(this.e<this.r.length){if(r===e)break;throw this.i(Me+'"'+this.M+'"')}}}return n}O(){var n;let e=(n=this.L(0,1))!=null?n:this.Ae();return this.y(),this.L(1,0,e)}se(){this.y();let e=this.e,n=this.r,r=n.substr(e,Uo),o=r.length;for(;o>0;){if(r in ze&&(!this.U(this.l)||e+r.length<n.length&&!this.re(n.charCodeAt(e+r.length))))return e+=o,this.e=e,r;r=r.substr(0,--o)}return!1}Ae(){let e,n,r,o,s,i,a,c;if(s=this.j(),!s||(n=this.se(),!n))return s;if(o={value:n,prec:ar(n),right_a:Bt.has(n)},i=this.j(),!i)throw this.i(mn+n);let p=[s,o,i];for(;n=this.se();){if(r=ar(n),r===0){this.e-=n.length;break}o={value:n,prec:r,right_a:Bt.has(n)},c=n;let f=m=>o.right_a&&m.right_a?r>m.prec:r<=m.prec;for(;p.length>2&&f(p[p.length-2]);)i=p.pop(),n=p.pop().value,s=p.pop(),e={type:8,operator:n,left:s,right:i},p.push(e);if(e=this.j(),!e)throw this.i(mn+c);p.push(o,e)}for(a=p.length-1,e=p[a];a>1;)e={type:8,operator:p[a-1].value,left:p[a-2],right:e},a-=2;return e}j(){let e,n,r;if(this.y(),r=this.L(2,1),r)return this.L(3,0,r);let o=this.l;if(qe(o)||o===Ce)return this.dt();if(o===So||o===wo)r=this.yt();else if(o===Ut)r=this.ht();else{for(e=this.r.substr(this.e,Do),n=e.length;n>0;){if(Object.prototype.hasOwnProperty.call(cr,e)&&(!this.U(this.l)||this.e+e.length<this.r.length&&!this.re(this.r.charCodeAt(this.e+e.length)))){this.e+=n;let s=this.j();if(!s)throw this.i(Vo);return this.L(3,0,{type:7,operator:e,argument:s})}e=e.substr(0,--n)}this.U(o)?(r=this.ie(),r.name in rr?r={type:4,value:rr[r.name],raw:r.name}:r.name===Io&&(r={type:5})):o===Dt&&(r=this.gt())}return r?(r=this.$(r),this.L(3,0,r)):this.L(3,0,!1)}$(e){this.y();let n=this.l;for(;n===Ce||n===Ut||n===Dt||n===fn;){let r;if(n===fn){if(this.r.charCodeAt(this.e+1)!==Ce)break;r=!0,this.e+=2,this.y(),n=this.l}if(this.e++,n===Ut){if(e={type:3,computed:!0,object:e,property:this.O()},this.y(),n=this.l,n!==Ht)throw this.i($o);this.e++}else n===Dt?e={type:6,arguments:this.Ne(Fe),callee:e}:(n===Ce||r)&&(r&&this.e--,this.y(),e={type:3,computed:!1,object:e,property:this.ie()});r&&(e.optional=!0),this.y(),n=this.l}return e}dt(){let e="",n;for(;qe(this.l);)e+=this.r.charAt(this.e++);if(this.u(Ce))for(e+=this.r.charAt(this.e++);qe(this.l);)e+=this.r.charAt(this.e++);if(n=this.M,n==="e"||n==="E"){for(e+=this.r.charAt(this.e++),n=this.M,(n==="+"||n==="-")&&(e+=this.r.charAt(this.e++));qe(this.l);)e+=this.r.charAt(this.e++);if(!qe(this.r.charCodeAt(this.e-1)))throw this.i(Fo+e+this.M+")")}let r=this.l;if(this.U(r))throw this.i(qo+e+this.M+")");if(r===Ce||e.length===1&&e.charCodeAt(0)===Ce)throw this.i(jo);return{type:4,value:parseFloat(e),raw:e}}yt(){let e="",n=this.e,r=this.r.charAt(this.e++),o=!1;for(;this.e<this.r.length;){let s=this.r.charAt(this.e++);if(s===r){o=!0;break}else if(s==="\\")switch(s=this.r.charAt(this.e++),s){case"n":e+=`
|
|
2
|
+
`;break;case"r":e+="\r";break;case"t":e+=" ";break;case"b":e+="\b";break;case"f":e+="\f";break;case"v":e+="\v";break;default:e+=s}else e+=s}if(!o)throw this.i(zo+e+'"');return{type:4,value:e,raw:this.r.substring(n,this.e)}}ie(){let e=this.l,n=this.e;if(this.U(e))this.e++;else throw this.i(Me+this.M);for(;this.e<this.r.length&&(e=this.l,this.re(e));)this.e++;return{type:2,name:this.r.slice(n,this.e)}}Ne(e){let n=[],r=!1,o=0;for(;this.e<this.r.length;){this.y();let s=this.l;if(s===e){if(r=!0,this.e++,e===Fe&&o&&o>=n.length)throw this.i(ir+String.fromCharCode(e));break}else if(s===It){if(this.e++,o++,o!==n.length){if(e===Fe)throw this.i(ir+",");if(e===Ht)for(let i=n.length;i<o;i++)n.push(null)}}else{if(n.length!==o&&o!==0)throw this.i(sr);{let i=this.O();if(!i||i.type===0)throw this.i(sr);n.push(i)}}}if(!r)throw this.i(Ke+String.fromCharCode(e));return n}gt(){this.e++;let e=this.oe(Fe);if(this.u(Fe))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.i(Po)}ht(){return this.e++,{type:9,elements:this.Ne(Ht)}}at(e){if(this.u(Ao)){this.e++;let n=[];for(;!isNaN(this.l);){if(this.y(),this.u(_t)){this.e++,e.node=this.$({type:10,properties:n});return}let r=this.O();if(!r)break;if(this.y(),r.type===2&&(this.u(It)||this.u(_t)))n.push({type:12,computed:!1,key:r,value:r,shorthand:!0});else if(this.u(Yn)){this.e++;let o=this.O();if(!o)throw this.i(Bo);let s=r.type===9;n.push({type:12,computed:s,key:s?r.elements[0]:r,value:o,shorthand:!1}),this.y()}else r&&n.push(r);this.u(It)&&this.e++}throw this.i(_o)}}pt(e){let n=this.l;if(nr.some(r=>r===n&&r===this.r.charCodeAt(this.e+1))){this.e+=2;let r=e.node={type:13,operator:n===ln?"++":"--",argument:this.$(this.ie()),prefix:!0};if(!r.argument||!tr.includes(r.argument.type))throw this.i(Me+r.operator)}}ut(e){if(e.node){let n=this.l;if(nr.some(r=>r===n&&r===this.r.charCodeAt(this.e+1))){if(!tr.includes(e.node.type))throw this.i(Me+e.node.operator);this.e+=2,e.node={type:13,operator:n===ln?"++":"--",argument:e.node,prefix:!1}}}}ct(e){[0,1,2].every(n=>this.r.charCodeAt(this.e+n)===Ce)&&(this.e+=3,e.node={type:14,argument:this.O()})}it(e){if(e.node&&this.u(fn)){this.e++;let n=e.node,r=this.O();if(!r)throw this.i(or);if(this.y(),this.u(Yn)){this.e++;let o=this.O();if(!o)throw this.i(or);if(e.node={type:11,test:n,consequent:r,alternate:o},n.operator&&ze[n.operator]<=.9){let s=n;for(;s.right.operator&&ze[s.right.operator]<=.9;)s=s.right;e.node.test=s.right,s.right=e.node,e.node=n}}else throw this.i(Ho)}}rt(e){if(this.y(),this.u(Dt)){let n=this.e;if(this.e++,this.y(),this.u(Fe)){this.e++;let r=this.se();if(r==="=>"){let o=this.Ae();if(!o)throw this.i(mn+r);e.node={type:15,params:null,body:o};return}}this.e=n}}ot(e){this.Me(e.node)}Me(e){e&&(Object.values(e).forEach(n=>{n&&typeof n=="object"&&this.Me(n)}),e.operator==="=>"&&(e.type=15,e.params=e.left?[e.left]:null,e.body=e.right,e.params&&e.params[0].type===1&&(e.params=e.params[0].expressions),delete e.left,delete e.right,delete e.operator))}st(e){e.node&&this.F(e.node)}F(e){Lo.has(e.operator)?(e.type=16,this.F(e.left),this.F(e.right)):e.operator||Object.values(e).forEach(n=>{n&&typeof n=="object"&&this.F(n)})}mt(e){if(!e.node)return;let n=e.node.type;(n===2||n===3)&&this.u(Zn)&&(e.node={type:17,tag:e.node,quasi:this.Oe(e)})}Oe(e){if(!this.u(Zn))return;let n={type:19,quasis:[],expressions:[]},r="",o="",s=!1,i=this.r.length,a=()=>n.quasis.push({type:18,value:{raw:o,cooked:r},tail:s});for(;this.e<i;){let c=this.r.charAt(++this.e);if(c==="`")return this.e+=1,s=!0,a(),e.node=n,n;if(c==="$"&&this.r.charAt(this.e+1)==="{"){if(this.e+=2,a(),o="",r="",n.expressions.push(...this.oe(_t)),!this.u(_t))throw this.i("unclosed ${")}else if(c==="\\")switch(o+=c,c=this.r.charAt(++this.e),o+=c,c){case"n":r+=`
|
|
3
|
+
`;break;case"r":r+="\r";break;case"t":r+=" ";break;case"b":r+="\b";break;case"f":r+="\f";break;case"v":r+="\v";break;default:r+=c}else r+=c,o+=c}throw this.i("Unclosed `")}lt(e){var o;let n=e.node;if(!n||n.operator!=="new"||!n.argument)return;if(!n.argument||![6,3].includes(n.argument.type))throw this.i("Expected new function()");e.node=n.argument;let r=e.node;for(;r.type===3||r.type===6&&((o=r==null?void 0:r.callee)==null?void 0:o.type)===3;)r=r.type===3?r.object:r.callee.object;r.type=20}ft(e){if(!this.u(er))return;let n=++this.e,r=!1;for(;this.e<this.r.length;){if(this.l===er&&!r){let o=this.r.slice(n,this.e),s="";for(;++this.e<this.r.length;){let a=this.l;if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57)s+=this.M;else break}let i;try{i=new RegExp(o,s)}catch(a){throw this.i(a.message)}return e.node={type:4,value:i,raw:this.r.slice(n-1,this.e)},e.node=this.$(e.node),e.node}this.u(Ut)?r=!0:r&&this.u(Ht)&&(r=!1),this.e+=this.u(Mo)?2:1}throw this.i("Unclosed Regex")}},lr=t=>new un(t).parse();var Ko={"=>":(t,e)=>{},"=":(t,e)=>{},"*=":(t,e)=>{},"**=":(t,e)=>{},"/=":(t,e)=>{},"%=":(t,e)=>{},"+=":(t,e)=>{},"-=":(t,e)=>{},"<<=":(t,e)=>{},">>=":(t,e)=>{},">>>=":(t,e)=>{},"&=":(t,e)=>{},"^=":(t,e)=>{},"|=":(t,e)=>{},"||":(t,e)=>t()||e(),"??":(t,e)=>{var n;return(n=t())!=null?n:e()},"&&":(t,e)=>t()&&e(),"|":(t,e)=>t|e,"^":(t,e)=>t^e,"&":(t,e)=>t&e,"==":(t,e)=>t==e,"!=":(t,e)=>t!=e,"===":(t,e)=>t===e,"!==":(t,e)=>t!==e,"<":(t,e)=>t<e,">":(t,e)=>t>e,"<=":(t,e)=>t<=e,">=":(t,e)=>t>=e,in:(t,e)=>t in e,"<<":(t,e)=>t<<e,">>":(t,e)=>t>>e,">>>":(t,e)=>t>>>e,"+":(t,e)=>t+e,"-":(t,e)=>t-e,"*":(t,e)=>t*e,"/":(t,e)=>t/e,"%":(t,e)=>t%e,"**":(t,e)=>ct(t,e)},Wo={"-":t=>-t,"+":t=>+t,"!":t=>!t,"~":t=>~t,new:t=>t},hr=t=>{if(!(t!=null&&t.some(yr)))return t;let e=[];return t.forEach(n=>yr(n)?e.push(...n):e.push(n)),e},ur=(...t)=>hr(t),yn=(t,e)=>{if(!t)return e;let n=Object.create(e!=null?e:{});return n.$event=t,n},Go={"++":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(++r),r}return++t[e]},"--":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(--r),r}return--t[e]}},Jo={"++":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(r+1),r}return t[e]++},"--":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(r-1),r}return t[e]--}},dr={"=":(t,e,n)=>{let r=t[e];return h(r)?r(n):t[e]=n},"+=":(t,e,n)=>{let r=t[e];return h(r)?r(r()+n):t[e]+=n},"-=":(t,e,n)=>{let r=t[e];return h(r)?r(r()-n):t[e]-=n},"*=":(t,e,n)=>{let r=t[e];return h(r)?r(r()*n):t[e]*=n},"/=":(t,e,n)=>{let r=t[e];return h(r)?r(r()/n):t[e]/=n},"%=":(t,e,n)=>{let r=t[e];return h(r)?r(r()%n):t[e]%=n},"**=":(t,e,n)=>{let r=t[e];return h(r)?r(ct(r(),n)):t[e]=ct(t[e],n)},"<<=":(t,e,n)=>{let r=t[e];return h(r)?r(r()<<n):t[e]<<=n},">>=":(t,e,n)=>{let r=t[e];return h(r)?r(r()>>n):t[e]>>=n},">>>=":(t,e,n)=>{let r=t[e];return h(r)?r(r()>>>n):t[e]>>>=n},"|=":(t,e,n)=>{let r=t[e];return h(r)?r(r()|n):t[e]|=n},"&=":(t,e,n)=>{let r=t[e];return h(r)?r(r()&n):t[e]&=n},"^=":(t,e,n)=>{let r=t[e];return h(r)?r(r()^n):t[e]^=n}},Pt=(t,e)=>H(t)?t.bind(e):t,hn=class{constructor(e,n,r,o,s){l(this,"m");l(this,"Le");l(this,"ke");l(this,"Ve");l(this,"A");l(this,"Ie");l(this,"De");this.m=E(e)?e:[e],this.Le=n,this.ke=r,this.Ve=o,this.De=!!s}Ue(e,n){if(n&&e in n)return n;for(let r of this.m)if(e in r)return r}2(e,n,r){let o=e.name;if(o==="$root")return this.m[this.m.length-1];if(o==="$parent")return this.m[1];if(o==="$ctx")return[...this.m];if(r&&o in r)return this.A=r[o],Pt(P(r[o]),r);for(let i of this.m)if(o in i)return this.A=i[o],Pt(P(i[o]),i);let s=this.Le;if(s&&o in s)return this.A=s[o],Pt(P(s[o]),s)}5(e,n,r){return this.m[0]}0(e,n,r){return this.Pe(n,r,ur,...e.body)}1(e,n,r){return this.R(n,r,(...o)=>o.pop(),...e.expressions)}3(e,n,r){let{obj:o,key:s}=this.ae(e,n,r),i=o==null?void 0:o[s];return this.A=i,Pt(P(i),o)}4(e,n,r){return e.value}6(e,n,r){let o=(i,...a)=>H(i)?i(...hr(a)):i,s=this.R(++n,r,o,e.callee,...e.arguments);return this.A=s,s}7(e,n,r){return this.R(n,r,Wo[e.operator],e.argument)}8(e,n,r){let o=Ko[e.operator];switch(e.operator){case"||":case"&&":case"??":return o(()=>this.g(e.left,n,r),()=>this.g(e.right,n,r))}return this.R(n,r,o,e.left,e.right)}9(e,n,r){return this.Pe(++n,r,ur,...e.elements)}10(e,n,r){let o={},s=(...i)=>{i.forEach(a=>{Object.assign(o,a)})};return this.R(++n,r,s,...e.properties),o}11(e,n,r){return this.R(n,r,o=>this.g(o?e.consequent:e.alternate,n,r),e.test)}12(e,n,r){var f;let o={},s=m=>(m==null?void 0:m.type)!==15,i=(f=this.Ve)!=null?f:()=>!1,a=n===0&&this.De,c=m=>this.Be(a,e.key,n,yn(m,r)),p=m=>this.Be(a,e.value,n,yn(m,r));if(e.shorthand){let m=e.key.name;o[m]=s(e.key)&&i(m,n)?c:c()}else if(e.computed){let m=P(c());o[m]=s(e.value)&&i(m,n)?p:p()}else{let m=e.key.type===4?e.key.value:e.key.name;o[m]=s(e.value)&&i(m,n)?()=>p:p()}return o}ae(e,n,r){let o=this.g(e.object,n,r),s=e.computed?this.g(e.property,n,r):e.property.name;return{obj:o,key:s}}13(e,n,r){let o=e.argument,s=e.operator,i=e.prefix?Go:Jo;if(o.type===2){let a=o.name,c=this.Ue(a,r);return te(c)?void 0:i[s](c,a)}if(o.type===3){let{obj:a,key:c}=this.ae(o,n,r);return i[s](a,c)}}16(e,n,r){let o=e.left,s=e.operator;if(o.type===2){let i=o.name,a=this.Ue(i,r);if(te(a))return;let c=this.g(e.right,n,r);return dr[s](a,i,c)}if(o.type===3){let{obj:i,key:a}=this.ae(o,n,r),c=this.g(e.right,n,r);return dr[s](i,a,c)}}14(e,n,r){let o=this.g(e.argument,n,r);return E(o)&&(o.s=gr),o}17(e,n,r){return this[6]({type:6,callee:e.tag,arguments:[{type:9,elements:e.quasi.quasis},...e.quasi.expressions]},n,r)}19(e,n,r){let o=(...s)=>s.reduce((i,a,c)=>i+=a+e.quasis[c+1].value.cooked,e.quasis[0].value.cooked);return this.R(n,r,o,...e.expressions)}18(e,n,r){return e.value.cooked}20(e,n,r){let o=(s,...i)=>new s(...i);return this.R(n,r,o,e.callee,...e.arguments)}15(e,n,r){return(...o)=>{let s=Object.create(r!=null?r:{}),i=e.params;if(i){let a=0;for(let c of i)s[c.name]=o[a++]}return this.g(e.body,n,s)}}g(e,n,r){let o=P(this[e.type](e,n,r));return this.Ie=e.type,o}Be(e,n,r,o){let s=this.g(n,r,o);return e&&this.He()?this.A:s}He(){let e=this.Ie;return(e===2||e===3||e===6)&&h(this.A)}eval(e,n){let{value:r,refs:o}=Tt(()=>this.g(e,-1,n)),s={value:r,refs:o};return this.He()&&(s.ref=this.A),s}R(e,n,r,...o){let s=o.map(i=>i&&this.g(i,e,n));return r(...s)}Pe(e,n,r,...o){let s=this.ke;if(!s)return this.R(e,n,r,...o);let i=o.map((a,c)=>a&&(a.type!==15&&s(c,e)?p=>this.g(a,e,yn(p,n)):this.g(a,e,n)));return r(...i)}},gr=Symbol("s"),yr=t=>(t==null?void 0:t.s)===gr,br=(t,e,n,r,o,s,i)=>new hn(e,n,r,o,i).eval(t,s);var Tr={},jt=class{constructor(e,n){l(this,"m");l(this,"o");l(this,"_e",[]);this.m=e,this.o=n}w(e){this.m=[e,...this.m]}Ye(){return this.m.map(n=>n.components).filter(n=>!!n).reverse().reduce((n,r)=>{for(let[o,s]of Object.entries(r))n[o.toUpperCase()]=s;return n},{})}C(e,n,r,o,s){var y;let i=z([]),a=[],c=()=>{for(let d of a)d();a.length=0},p={value:i,stop:c,refs:[],context:this.m[0]};if($(e))return p;let f=this.o.globalContext,m=[],u=(d,C,I,x)=>{try{let b=br(d,C,f,n,r,x,o);return I&&m.push(...b.refs),{value:b.value,refs:b.refs,ref:b.ref}}catch(b){U(6,`evaluation error: ${e}`,b)}return{value:void 0,refs:[]}};try{let d=(y=Tr[e])!=null?y:lr("["+e+"]");Tr[e]=d;let C=this.m,I=()=>{m.splice(0),c();let x=d.elements.map((b,L)=>n!=null&&n(L,-1)?{value:X=>u(b,C,!1,{$event:X}).value,refs:[]}:u(b,C,!0));if(!s)for(let b of m){let L=S(b,I);a.push(L)}i(x.map(b=>b.value)),p.refs=x.map(b=>b.ref)};I()}catch(d){U(6,`parse error: ${e}`,d)}return p}V(){return this.m}Y(e){this._e.push(this.m),this.m=e}v(e,n){try{this.Y(e),n()}finally{this.bt()}}bt(){var e;this.m=(e=this._e.pop())!=null?e:[]}};var Er="http://www.w3.org/1999/xlink",Qo={itemscope:2,allowfullscreen:2,formnovalidate:2,ismap:2,nomodule:2,novalidate:2,readonly:2,async:1,autofocus:1,autoplay:1,controls:1,default:1,defer:1,disabled:1,hidden:1,inert:1,loop:1,open:1,required:1,reversed:1,scoped:1,seamless:1,checked:1,muted:1,multiple:1,selected:1};function Xo(t){return!!t||t===""}var gn={onChange:(t,e,n,r,o,s)=>{var a;if(r){s&&s.includes("camel")&&(r=B(r)),Vt(t,r,e[0],o);return}let i=e.length;for(let c=0;c<i;++c){let p=e[c];if(E(p)){let f=(a=n==null?void 0:n[c])==null?void 0:a[0],m=p[0],u=p[1];Vt(t,m,u,f)}else if(N(p))for(let f of Object.entries(p)){let m=f[0],u=f[1],y=n==null?void 0:n[c],d=y&&m in y?m:void 0;Vt(t,m,u,d)}else{let f=n==null?void 0:n[c],m=e[c++],u=e[c];Vt(t,m,u,f)}}}},Vt=(t,e,n,r)=>{if(r&&r!==e&&t.removeAttribute(r),te(e)){U(3,name,t);return}if(!W(e)){U(6,`Attribute key is not string at ${t.outerHTML}`,e);return}if(e.startsWith("xlink:")){te(n)?t.removeAttributeNS(Er,e.slice(6,e.length)):t.setAttributeNS(Er,e,n);return}let o=e in Qo;te(n)||o&&!Xo(n)?t.removeAttribute(e):t.setAttribute(e,o?"":n)};var bn={onChange:(t,e,n)=>{let r=e.length;for(let o=0;o<r;++o){let s=e[o],i=n==null?void 0:n[o];if(E(s)){let a=s.length;for(let c=0;c<a;++c)Cr(t,s[c],i==null?void 0:i[c])}else Cr(t,s,i)}}},Cr=(t,e,n)=>{let r=t.classList,o=W(e),s=W(n);if(e&&!o){if(n&&!s)for(let i in n)i in e||r.remove(i);for(let i in e)e[i]&&r.add(i)}else o?n!==e&&(s&&r.remove(...n==null?void 0:n.split(",")),r.add(...e.split(","))):n&&s&&r.remove(...n==null?void 0:n.split(","))};var Rr={onChange:(t,e)=>{let[n,r]=e;H(r)?r(t,n):t.innerHTML=n==null?void 0:n.toString()}};function Yo(t,e){if(t.length!==e.length)return!1;let n=!0;for(let r=0;n&&r<t.length;r++)n=me(t[r],e[r]);return n}function me(t,e){if(t===e)return!0;let n=Qt(t),r=Qt(e);if(n||r)return n&&r?t.getTime()===e.getTime():!1;if(n=Qe(t),r=Qe(e),n||r)return t===e;if(n=E(t),r=E(e),n||r)return n&&r?Yo(t,e):!1;if(n=N(t),r=N(e),n||r){if(!n||!r)return!1;let o=Object.keys(t).length,s=Object.keys(e).length;if(o!==s)return!1;for(let i in t){let a=t.hasOwnProperty(i),c=e.hasOwnProperty(i);if(a&&!c||!a&&c||!me(t[i],e[i]))return!1}}return String(t)===String(e)}function $t(t,e){return t.findIndex(n=>me(n,e))}var xr=t=>{let e=parseFloat(t);return isNaN(e)?t:e};var Ft=t=>{if(!h(t))throw _(3,"pause");t(void 0,void 0,3)};var qt=t=>{if(!h(t))throw _(3,"resume");t(void 0,void 0,4)};var Sr={onChange:(t,e)=>{Zo(t,e[0])},onBind:(t,e,n,r,o,s)=>es(t,e,s)},Zo=(t,e)=>{let n=Nr(t);if(n&&wr(t))E(e)?e=$t(e,le(t))>-1:Z(e)?e=e.has(le(t)):e=is(t,e),t.checked=e;else if(n&&Or(t))t.checked=me(e,le(t));else if(n||Mr(t))Ar(t)?t.value!==(e==null?void 0:e.toString())&&(t.value=e):t.value!==e&&(t.value=e);else if(Lr(t)){let r=t.options,o=r.length,s=t.multiple;for(let i=0;i<o;i++){let a=r[i],c=le(a);if(s)E(e)?a.selected=$t(e,c)>-1:a.selected=e.has(c);else if(me(le(a),e)){t.selectedIndex!==i&&(t.selectedIndex=i);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}else U(7,t)},nt=t=>(h(t)&&(t=t()),H(t)&&(t=t()),t?W(t)?{trim:t.includes("trim"),lazy:t.includes("lazy"),number:t.includes("number"),int:t.includes("int")}:{trim:!!t.trim,lazy:!!t.lazy,number:!!t.number,int:!!t.int}:{trim:!1,lazy:!1,number:!1,int:!1}),wr=t=>t.type==="checkbox",Or=t=>t.type==="radio",Ar=t=>t.type==="number"||t.type==="range",Nr=t=>t.tagName==="INPUT",Mr=t=>t.tagName==="TEXTAREA",Lr=t=>t.tagName==="SELECT",es=(t,e,n)=>{let r=e.value,o=nt(n==null?void 0:n.join(",")),s=nt(r()[1]),i={int:o.int||o.int,lazy:o.lazy||s.lazy,number:o.number||s.number,trim:o.trim||s.trim},a=e.refs[0];if(!a)return U(8,t),()=>{};let c=Nr(t);return c&&wr(t)?ns(t,a):c&&Or(t)?as(t,a):c||Mr(t)?ts(t,i,a,r):Lr(t)?cs(t,a,r):(U(7,t),()=>{})},vr=/[.,' ·٫]/,ts=(t,e,n,r)=>{let s=e.lazy?"change":"input",i=Ar(t),a=()=>{!e.trim&&!nt(r()[1]).trim||(t.value=t.value.trim())},c=u=>{let y=u.target;y.composing=1},p=u=>{let y=u.target;y.composing&&(y.composing=0,y.dispatchEvent(new Event(s)))},f=()=>{t.removeEventListener(s,m),t.removeEventListener("change",a),t.removeEventListener("compositionstart",c),t.removeEventListener("compositionend",p),t.removeEventListener("change",p)},m=u=>{let y=u.target;if(!y||y.composing)return;let d=y.value,C=nt(r()[1]);if(i||C.number||C.int){if(C.int)d=parseInt(d);else{if(vr.test(d[d.length-1])&&d.split(vr).length===2){if(d+="0",d=parseFloat(d),isNaN(d))d="";else if(n()===d)return}d=parseFloat(d)}isNaN(d)&&(d=""),t.value=d}else C.trim&&(d=d.trim());n(d)};return t.addEventListener(s,m),t.addEventListener("change",a),t.addEventListener("compositionstart",c),t.addEventListener("compositionend",p),t.addEventListener("change",p),f},ns=(t,e)=>{let n="change",r=()=>{t.removeEventListener(n,o)},o=()=>{let s=le(t),i=t.checked,a=e();if(E(a)){let c=$t(a,s),p=c!==-1;i&&!p?a.push(s):!i&&p&&a.splice(c,1)}else Z(a)?i?a.add(s):a.delete(s):e(ss(t,i))};return t.addEventListener(n,o),r},le=t=>"_value"in t?t._value:t.value,kr="trueValue",rs="falseValue",Ir="true-value",os="false-value",ss=(t,e)=>{let n=e?kr:rs;if(n in t)return t[n];let r=e?Ir:os;return t.hasAttribute(r)?t.getAttribute(r):e},is=(t,e)=>{if(kr in t)return me(e,t.trueValue);let r=Ir;return t.hasAttribute(r)?me(e,t.getAttribute(r)):me(e,!0)},as=(t,e)=>{let n="change",r=()=>{t.removeEventListener(n,o)},o=()=>{let s=le(t);e(s)};return t.addEventListener(n,o),r},cs=(t,e,n)=>{let r="change",o=()=>{t.removeEventListener(r,s)},s=()=>{let a=nt(n()[1]).number,c=Array.prototype.filter.call(t.options,p=>p.selected).map(p=>a?xr(le(p)):le(p));if(t.multiple){let p=e();try{if(Ft(e),Z(p)){p.clear();for(let f of c)p.add(f)}else E(p)?(p.splice(0),p.push(...c)):e(c)}finally{qt(e),F(e)}}else e(c[0])};return t.addEventListener(r,s),o};var ps=["stop","prevent","capture","self","once","left","right","middle","passive"],fs=t=>{let e={};if($(t))return;let n=t.split(",");for(let r of ps)e[r]=n.includes(r);return e},En={isLazy:(t,e)=>e===-1&&t%2===0,isLazyKey:(t,e)=>e===0&&!t.endsWith("_flags"),once:!1,collectRefObj:!0,onBind:(t,e,n,r,o,s)=>{var f,m;if(o){let u=e.value(),y=P(o.value()[0]);return W(y)?Tn(t,B(y),()=>e.value()[0],(f=s==null?void 0:s.join(","))!=null?f:u[1]):()=>{}}else if(r){let u=e.value();return Tn(t,B(r),()=>e.value()[0],(m=s==null?void 0:s.join(","))!=null?m:u[1])}let i=[],a=()=>{i.forEach(u=>u())},c=e.value(),p=c.length;for(let u=0;u<p;++u){let y=c[u];if(H(y)&&(y=y()),N(y))for(let d of Object.entries(y)){let C=d[0],I=()=>{let b=e.value()[u];return H(b)&&(b=b()),b=b[C],H(b)&&(b=b()),b},x=y[C+"_flags"];i.push(Tn(t,C,I,x))}else U(2,name,t)}return a}},ms=(t,e)=>{if(t.startsWith("keydown")||t.startsWith("keyup")||t.startsWith("keypress")){e!=null||(e="");let n=t.split(".").concat(e.split(","));t=n[0];let r=n[1],o=n.includes("ctrl"),s=n.includes("shift"),i=n.includes("alt"),a=n.includes("meta"),c=p=>!(o&&!p.ctrlKey||s&&!p.shiftKey||i&&!p.altKey||a&&!p.metaKey);return r?[t,p=>c(p)?p.key.toUpperCase()===r.toUpperCase():!1]:[t,c]}return[t,n=>!0]},Tn=(t,e,n,r)=>{if($(e))return U(5,name,t),()=>{};let o=fs(r),s=o?{capture:o.capture,passive:o.passive,once:o.once}:void 0,i;[e,i]=ms(e,r);let a=f=>{if(!i(f)||!n&&e==="submit"&&(o!=null&&o.prevent))return;let m=n(f);H(m)&&(m=m(f)),H(m)&&m(f)},c=()=>{t.removeEventListener(e,p,s)},p=f=>{if(!o){a(f);return}try{if(o.left&&f.button!==1||o.middle&&f.button!==2||o.right&&f.button!==3||o.self&&f.target!==t)return;o.stop&&f.stopPropagation(),o.prevent&&f.preventDefault(),a(f)}finally{o.once&&c()}};return t.addEventListener(e,p,s),c};var Dr={onChange:(t,e,n,r,o,s)=>{if(r){s&&s.includes("camel")&&(r=B(r)),We(t,r,e[0]);return}let i=e.length;for(let a=0;a<i;++a){let c=e[a];if(E(c)){let p=c[0],f=c[1];We(t,p,f)}else if(N(c))for(let p of Object.entries(c)){let f=p[0],m=p[1];We(t,f,m)}else{let p=e[a++],f=e[a];We(t,p,f)}}}};function ls(t){return!!t||t===""}var We=(t,e,n)=>{if(te(e)){U(3,name,t);return}if(e==="innerHTML"||e==="textContent"){let s=[...t.childNodes];setTimeout(()=>s.forEach(oe),1),t[e]=n!=null?n:"";return}let r=t.tagName;if(e==="value"&&r!=="PROGRESS"&&!r.includes("-")){t._value=n;let s=r==="OPTION"?t.getAttribute("value"):t.value,i=n!=null?n:"";s!==i&&(t.value=i),n==null&&t.removeAttribute(e);return}let o=!1;if(n===""||n==null){let s=typeof t[e];s==="boolean"?n=ls(n):n==null&&s==="string"?(n="",o=!0):s==="number"&&(n=0,o=!0)}try{t[e]=n}catch(s){o||U(4,e,r,n,s)}o&&t.removeAttribute(e)};var Ur={once:!0,onBind:(t,e,n)=>{let r=e.value()[0],o=E(r),s=e.refs[0];return o?r.push(t):s?s==null||s(t):e.context[n]=t,()=>{if(o){let i=r.indexOf(t);i!==-1&&r.splice(i,1)}else s==null||s(null)}}};var Hr={onChange:(t,e)=>{let n=he(t).data,r=n._ord;kn(r)&&(r=n._ord=t.style.display),!!e[0]?t.style.display=r:t.style.display="none"}};var xn={onChange:(t,e,n)=>{let r=e.length;for(let o=0;o<r;++o){let s=e[o],i=n==null?void 0:n[o];if(E(s)){let a=s.length;for(let c=0;c<a;++c)_r(t,s[c],i==null?void 0:i[c])}else _r(t,s,i)}}},_r=(t,e,n)=>{let r=t.style,o=W(e);if(e&&!o){if(n&&!W(n))for(let s in n)e[s]==null&&Rn(r,s,"");for(let s in e)Rn(r,s,e[s])}else{let s=r.display;if(o?n!==e&&(r.cssText=e):n&&t.removeAttribute("style"),"_ord"in he(t).data)return;r.display=s}},Br=/\s*!important$/;function Rn(t,e,n){if(E(n))n.forEach(r=>{Rn(t,e,r)});else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{let r=us(t,e);Br.test(n)?t.setProperty(Pe(r),n.replace(Br,""),"important"):t[r]=n}}var Pr=["Webkit","Moz","ms"],Cn={};function us(t,e){let n=Cn[e];if(n)return n;let r=B(e);if(r!=="filter"&&r in t)return Cn[e]=r;r=et(r);for(let o=0;o<Pr.length;o++){let s=Pr[o]+r;if(s in t)return Cn[e]=s}return e}var Q=t=>ds(P(t)),ds=t=>{if(!t||!N(t))return t;if(E(t))return t.map(Q);if(Z(t)){let n=new Set;for(let r of t.keys())n.add(Q(r));return n}if(ye(t)){let n=new Map;for(let r of n)n.set(Q(r[0]),Q(r[1]));return n}let e=pt({},t);for(let n of Object.entries(e))e[n[0]]=Q(n[1]);return e};var jr={onChange:(t,e)=>{var r;let n=e[0];t.textContent=Z(n)?JSON.stringify(Q([...n])):ye(n)?JSON.stringify(Q([...n])):N(n)?JSON.stringify(Q(n)):(r=n==null?void 0:n.toString())!=null?r:""}};var Vr={onChange:(t,e)=>{We(t,"value",e[0])}};var Le=t=>(t==null?void 0:t[lt])===1;var Re=t=>{if(je(t))return t;let e;if(h(t)?(e=t,t=e()):e=z(t),t instanceof Node||t instanceof Date||t instanceof RegExp||t instanceof Promise||t instanceof Error)return e;if(e[lt]=1,E(t)){let n=t.length;for(let r=0;r<n;++r){let o=t[r];Le(o)||(t[r]=Re(o))}return e}if(!N(t))return e;for(let n of Object.entries(t)){let r=n[1];if(Le(r))continue;let o=n[0];Qe(o)||(t[o]=Re(r))}return e};var xe=class xe{constructor(e){l(this,"_",{});l(this,"f",{});l(this,"Ze",()=>Object.keys(this._).filter(e=>e.length===1||!e.startsWith(":")));l(this,"ye",new Map);l(this,"he",new Map);l(this,"forGrowThreshold",10);l(this,"globalContext");l(this,"useInterpolation",!0);if(this.setDirectives("r-"),e){this.globalContext=e;return}this.globalContext=this.xt()}static getDefault(){var e;return(e=xe.je)!=null?e:xe.je=new xe}xt(){let e={},n=globalThis;for(let r of xe.Tt.split(","))e[r]=n[r];return e.ref=Re,e.sref=z,e.flatten=Q,e}addComponent(...e){for(let n of e){if(!n.defaultName){Xe.warning("Registered component's default name is not defined",n);continue}this.ye.set(et(n.defaultName),n),this.he.set(et(n.defaultName).toLocaleUpperCase(),n)}}setDirectives(e){this._={".":Dr,":":gn,"@":En,[`${e}on`]:En,[`${e}bind`]:gn,[`${e}html`]:Rr,[`${e}text`]:jr,[`${e}show`]:Hr,[`${e}model`]:Sr,":style":xn,[`${e}bind:style`]:xn,":class":bn,[`${e}bind:class`]:bn,":ref":Ur,":value":Vr,teleport:Lt},this.f={for:`${e}for`,if:`${e}if`,else:`${e}else`,elseif:`${e}else-if`,pre:`${e}pre`,inherit:`${e}inherit`,text:`${e}text`,props:":props",propsOnce:":props-once",bind:`${e}bind`,on:`${e}on`,keyBind:":key",key:"key",is:":is",teleport:`${e}teleport`,dynamic:"_d_"}}updateDirectives(e){e(this._,this.f)}};l(xe,"je"),l(xe,"Tt","Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console");var ie=xe;var zt=(t,e)=>{if(!t)return;let n=(e!=null?e:ie.getDefault()).f;for(let r of gs(t,n.pre))hs(r,n.text)},ys=/({{[^]*?}})/g,hs=(t,e)=>{var i;let n=t.textContent;if(!n)return;let r=ys,o=n.split(r);if(o.length<=1)return;if(((i=t.parentElement)==null?void 0:i.childNodes.length)===1&&o.length===3){let a=o[1];if($(o[0])&&$(o[2])&&a.startsWith("{{")&&a.endsWith("}}")){let c=t.parentElement;c.setAttribute(e,a.substring(2,a.length-2)),c.innerText="";return}}let s=document.createDocumentFragment();for(let a of o)if(a.startsWith("{{")&&a.endsWith("}}")){let c=document.createElement("span");c.setAttribute(e,a.substring(2,a.length-2)),s.appendChild(c)}else s.appendChild(document.createTextNode(a));t.replaceWith(s)},gs=(t,e)=>{let n=[],r=o=>{var s,i;if(o.nodeType===Node.TEXT_NODE)(s=o.textContent)!=null&&s.includes("{{")&&n.push(o);else{if((i=o==null?void 0:o.hasAttribute)!=null&&i.call(o,e))return;for(let a of fe(o))r(a)}};return r(t),n};var bs="svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view",Ts=new Set(bs.toUpperCase().split(",")),Es="http://www.w3.org/2000/svg",$r=(t,e)=>{se(t)?t.content.appendChild(e):t.appendChild(e)},vn=(t,e,n,r)=>{var i;let o=t.t;if(o){let a=n&&Ts.has(o.toUpperCase())?document.createElementNS(Es,o.toLowerCase()):document.createElement(o),c=t.a;if(c)for(let f of Object.entries(c)){let m=f[0],u=f[1];m.startsWith("#")&&(u=m.substring(1),m="name"),a.setAttribute(gt(m,r),u)}let p=t.c;if(p)for(let f of p)vn(f,a,n,r);$r(e,a);return}let s=t.d;if(s){let a;switch((i=t.n)!=null?i:Node.TEXT_NODE){case Node.COMMENT_NODE:a=document.createComment(s);break;case Node.TEXT_NODE:a=document.createTextNode(s);break}if(a)$r(e,a);else throw new Error("unsupported node type.")}},ke=(t,e,n)=>{n!=null||(n=ie.getDefault());let r=document.createDocumentFragment();if(!E(t))return vn(t,r,!!e,n),r;for(let o of t)vn(o,r,!!e,n);return r};var Fr=(t,e={selector:"#app"},n)=>{Qn(t)&&(t=t.context);let r=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!r||!Oe(r))throw _(0);n||(n=ie.getDefault());let o=()=>{for(let a of[...r.childNodes])j(a)},s=a=>{for(let c of a)r.appendChild(c)};if(e.html){let a=document.createRange().createContextualFragment(e.html);o(),s(a.childNodes),e.element=a}else if(e.json){let a=ke(e.json,e.isSVG,n);o(),s(a.childNodes)}return n.useInterpolation&&zt(r,n),new Sn(t,r,n).x(),D(r,()=>{Ee(t)}),At(t),{context:t,unmount:()=>{j(r)},unbind:()=>{oe(r)}}},Sn=class{constructor(e,n,r){l(this,"Et");l(this,"$e");l(this,"o");l(this,"h");l(this,"p");this.Et=e,this.$e=n,this.o=r,this.h=new jt([e],r),this.p=new kt(this.h)}x(){this.p.G(this.$e)}};var Ge=t=>{if(E(t))return t.map(o=>Ge(o));let e={};if(t.tagName)e.t=t.tagName;else return t.nodeType===Node.COMMENT_NODE&&(e.n=Node.COMMENT_NODE),t.textContent&&(e.d=t.textContent),e;let n=t.getAttributeNames();n.length>0&&(e.a=Object.fromEntries(n.map(o=>[o,t.getAttribute(o)])));let r=fe(t);return r.length>0&&(e.c=[...r].map(o=>Ge(o))),e};var qr=(t,e,n={})=>{var s,i,a,c;let r=!1;if(e.element){let p=e.element;p.remove(),e.element=p}else if(e.selector){let p=document.querySelector(e.selector);if(!p)throw _(1,name);p.remove(),e.element=p}else if(e.html){let p=document.createRange().createContextualFragment(e.html);e.element=p}else e.json&&(e.element=ke(e.json,e.isSVG,n.config),r=!0);e.element||(e.element=document.createDocumentFragment()),((s=n.useInterpolation)==null||s)&&zt(e.element);let o=e.element;if(!r&&(((a=e.isSVG)!=null?a:Ze(o)&&((i=o.hasAttribute)!=null&&i.call(o,"isSVG")))||Ze(o)&&o.querySelector("[isSVG]"))){let p=e.element.content,f=p?[...p.childNodes]:[...o.childNodes],m=Ge(f);e.element=ke(m,!0,n.config)}return{context:t,template:e.element,inheritAttrs:(c=n.inheritAttrs)!=null?c:!0,props:n.props,defaultName:n.defaultName}};var zr=t=>{let e,n={},r=(...o)=>{if(o.length<=2&&0 in o)throw _(4);return e&&!n.isStopped?e(...o):(e=Cs(t,n),e(...o))};return r[J]=1,Te(r,!0),r.stop=()=>{var o,s;return(s=(o=n.ref)==null?void 0:o.stop)==null?void 0:s.call(o)},G(()=>r.stop(),!0),r},Cs=(t,e)=>{var s;let n=(s=e.ref)!=null?s:z(null);e.ref=n,e.isStopped=!1;let r=0,o=Ae(()=>{if(r>0){o(),e.isStopped=!0,F(n);return}n(t()),++r});return n.stop=o,n};var Kr=(t,e)=>{let n={},r,o=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return r&&!n.isStopped?r(...s):(r=Rs(t,e,n),r(...s))};return o[J]=1,Te(o,!0),o.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},G(()=>o.stop(),!0),o},Rs=(t,e,n)=>{var a;let r=(a=n.ref)!=null?a:z(null);n.ref=r,n.isStopped=!1;let o=0,s=c=>{if(o>0){r.stop(),n.isStopped=!0,F(r);return}r(e(...t.map(p=>p()))),++o},i=[];for(let c of t){let p=S(c,s);i.push(p)}return s(null),r.stop=()=>{i.forEach(c=>{c()})},r};var Wr=(t,e)=>{let n={},r,o=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return r&&!n.isStopped?r(...s):(r=xs(t,e,n),r(...s))};return o[J]=1,Te(o,!0),o.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},G(()=>o.stop(),!0),o},xs=(t,e,n)=>{var s;let r=(s=n.ref)!=null?s:z(null);n.ref=r,n.isStopped=!1;let o=0;return r.stop=S(t,i=>{if(o>0){r.stop(),n.isStopped=!0,F(r);return}r(e(i)),++o},!0),r};var Gr=t=>(t[ut]=1,t);var Jr=(t,e)=>{if(!e)throw new Error("persist requires a string key.");let r=Le(t)?Re:a=>a,o=()=>localStorage.setItem(e,JSON.stringify(Q(t()))),s=localStorage.getItem(e);s!=null?t(r(JSON.parse(s))):o();let i=Ae(o);return G(()=>i,!0),t};var wn=(t,...e)=>{let n="";return e.length===0?t.join():(t.forEach((r,o)=>{n+=r+e[o]}),n)},Qr=wn;var Xr=(t,e,n)=>{let r=[],o=()=>{e(t.map(i=>i()))};for(let i of t)r.push(S(i,o));n&&o();let s=()=>{for(let i of r)i()};return G(s,!0),s};var Yr=t=>{if(!h(t))throw _(3,"observe");return t(void 0,void 0,2)};var Zr=t=>{On();try{t()}finally{An()}},On=()=>{Ne.set||(Ne.set=new Set)},An=()=>{let t=Ne.set;if(t){delete Ne.set;for(let e of t)try{F(e)}catch(n){console.error(n)}}};var eo=t=>{var e;(e=we())==null||e.onMounted.push(t)};
|
package/dist/regor.es2015.esm.js
CHANGED
|
@@ -1171,7 +1171,7 @@ var _ForBinder = class _ForBinder {
|
|
|
1171
1171
|
return;
|
|
1172
1172
|
const keys = (matches[1] + ((_a = matches[2]) != null ? _a : "")).split(",").map((key) => key.trim());
|
|
1173
1173
|
const indexOfIndex = keys.length > 1 ? keys.length - 1 : -1;
|
|
1174
|
-
const index = indexOfIndex !== -1 && ((_b = keys[indexOfIndex]) == null ? void 0 : _b.startsWith("#")) ? keys[indexOfIndex] : "";
|
|
1174
|
+
const index = indexOfIndex !== -1 && (keys[indexOfIndex] === "index" || ((_b = keys[indexOfIndex]) == null ? void 0 : _b.startsWith("#"))) ? keys[indexOfIndex] : "";
|
|
1175
1175
|
if (index)
|
|
1176
1176
|
keys.splice(indexOfIndex, 1);
|
|
1177
1177
|
const list = matches[3];
|
|
@@ -1197,7 +1197,7 @@ var _ForBinder = class _ForBinder {
|
|
|
1197
1197
|
}
|
|
1198
1198
|
const result = { ctx, index: sref(-1) };
|
|
1199
1199
|
if (index) {
|
|
1200
|
-
result.index = ctx[index.substring(1)] = sref(i);
|
|
1200
|
+
result.index = ctx[index.startsWith("#") ? index.substring(1) : index] = sref(i);
|
|
1201
1201
|
}
|
|
1202
1202
|
return result;
|
|
1203
1203
|
}
|
|
@@ -4045,7 +4045,7 @@ var handleInputAndTextArea = (el, flags, modelRef, parsedValue) => {
|
|
|
4045
4045
|
const eventType = isLazy ? "change" : "input";
|
|
4046
4046
|
const isNumber = isNumberInput(el);
|
|
4047
4047
|
const trimmer = () => {
|
|
4048
|
-
if (!flags.trim && !getFlags(parsedValue()[1]))
|
|
4048
|
+
if (!flags.trim && !getFlags(parsedValue()[1]).trim)
|
|
4049
4049
|
return;
|
|
4050
4050
|
el.value = el.value.trim();
|
|
4051
4051
|
};
|
|
@@ -4771,7 +4771,9 @@ var _RegorConfig = class _RegorConfig {
|
|
|
4771
4771
|
[`${prefix}show`]: showDirective,
|
|
4772
4772
|
[`${prefix}model`]: modelDirective,
|
|
4773
4773
|
":style": styleDirective,
|
|
4774
|
+
[`${prefix}bind:style`]: styleDirective,
|
|
4774
4775
|
":class": classDirective,
|
|
4776
|
+
[`${prefix}bind:class`]: classDirective,
|
|
4775
4777
|
":ref": refDirective,
|
|
4776
4778
|
":value": valueDirective,
|
|
4777
4779
|
teleport: teleportDirective
|