regor 1.0.7 → 1.0.8
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 +8 -6
- package/dist/regor.d.ts +8 -13
- package/dist/regor.es2015.cjs.js +45 -28
- package/dist/regor.es2015.cjs.prod.js +3 -3
- package/dist/regor.es2015.esm.js +45 -28
- package/dist/regor.es2015.esm.prod.js +3 -3
- package/dist/regor.es2015.iife.js +45 -28
- package/dist/regor.es2015.iife.prod.js +3 -3
- package/dist/regor.es2019.cjs.js +45 -28
- package/dist/regor.es2019.cjs.prod.js +3 -3
- package/dist/regor.es2019.esm.js +45 -28
- package/dist/regor.es2019.esm.prod.js +3 -3
- package/dist/regor.es2019.iife.js +45 -28
- package/dist/regor.es2019.iife.prod.js +3 -3
- package/dist/regor.es2022.cjs.js +45 -28
- package/dist/regor.es2022.cjs.prod.js +3 -3
- package/dist/regor.es2022.esm.js +45 -28
- package/dist/regor.es2022.esm.prod.js +3 -3
- package/dist/regor.es2022.iife.js +45 -28
- package/dist/regor.es2022.iife.prod.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,17 +62,19 @@ interface MyComponent {
|
|
|
62
62
|
message: Ref<string>
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
const template = html`<button @click="count++">
|
|
66
|
+
{{ message }} {{ count }}
|
|
67
|
+
</button>`
|
|
68
|
+
|
|
69
|
+
const props = ['message']
|
|
70
|
+
|
|
65
71
|
const myComponent = createComponent<MyComponent>(
|
|
66
72
|
(head) => ({
|
|
67
73
|
message: head.props.message,
|
|
68
74
|
count: ref(0),
|
|
69
75
|
}),
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
props: ['message'],
|
|
75
|
-
},
|
|
76
|
+
template,
|
|
77
|
+
props,
|
|
76
78
|
)
|
|
77
79
|
|
|
78
80
|
createApp({
|
package/dist/regor.d.ts
CHANGED
|
@@ -118,16 +118,7 @@ export interface JSONTemplate {
|
|
|
118
118
|
/** node type if node is COMMENT_NODE */
|
|
119
119
|
n?: number;
|
|
120
120
|
}
|
|
121
|
-
|
|
122
|
-
* Represents a template configuration for rendering a component or an app.
|
|
123
|
-
* If used with 'createApp':
|
|
124
|
-
* - Define either 'selector' or 'element' to specify the mounting point.
|
|
125
|
-
* - Optionally, 'html' or 'json' can be defined to override the inner HTML of the mounting point.
|
|
126
|
-
* - If neither 'html' nor 'json' template is defined, the mounting point's inner HTML remains unchanged.
|
|
127
|
-
* If used with 'createComponent':
|
|
128
|
-
* - Define only one option: 'selector', 'element', 'html', or 'json'. The single option defines the component's HTML template.
|
|
129
|
-
*/
|
|
130
|
-
export interface Template {
|
|
121
|
+
interface TemplateOptions {
|
|
131
122
|
/**
|
|
132
123
|
* If used with 'createApp', specifies the target root element for mounting the application.
|
|
133
124
|
* If used with 'createComponent', identifies the component template using a selector.
|
|
@@ -143,7 +134,7 @@ export interface Template {
|
|
|
143
134
|
* If used with 'createApp', HTML template string that will replace the content of the root element defined by 'selector' or 'element'.
|
|
144
135
|
* If used with 'createComponent', this template populates the content of the component.
|
|
145
136
|
*/
|
|
146
|
-
|
|
137
|
+
template?: string;
|
|
147
138
|
/**
|
|
148
139
|
* JSON-based template representation, enabling rendering within secure contexts.
|
|
149
140
|
* Can be a single JSONTemplate object or an array of JSONTemplate objects.
|
|
@@ -217,8 +208,8 @@ export interface Scope<TRegorContext> {
|
|
|
217
208
|
unmount: () => void;
|
|
218
209
|
[ScopeSymbol]: true;
|
|
219
210
|
}
|
|
220
|
-
export declare const createApp: <TRegorContext extends IRegorContext>(context: TRegorContext | Scope<TRegorContext>,
|
|
221
|
-
export declare const createComponent: <TProps = Record<any, any>>(context: (head: ComponentHead<TProps>) => IRegorContext,
|
|
211
|
+
export declare const createApp: <TRegorContext extends IRegorContext>(context: TRegorContext | Scope<TRegorContext>, templateOptions?: TemplateOptions | string, config?: RegorConfig) => App<TRegorContext>;
|
|
212
|
+
export declare const createComponent: <TProps = Record<any, any>>(context: (head: ComponentHead<TProps>) => IRegorContext, templateOptions: TemplateOptions | string, options?: CreateComponentOptions | string[]) => Component<TProps>;
|
|
222
213
|
export declare const toFragment: (json: JSONTemplate | JSONTemplate[], isSVG?: boolean, config?: RegorConfig) => DocumentFragment;
|
|
223
214
|
export declare const toJsonTemplate: (node: Element | Element[]) => JSONTemplate | JSONTemplate[];
|
|
224
215
|
export declare const addUnbinder: (node: Node, unbinder: Unbinder) => void;
|
|
@@ -304,4 +295,8 @@ export declare const warningHandler: {
|
|
|
304
295
|
};
|
|
305
296
|
};
|
|
306
297
|
|
|
298
|
+
export {
|
|
299
|
+
TemplateOptions as Template,
|
|
300
|
+
};
|
|
301
|
+
|
|
307
302
|
export {};
|
package/dist/regor.es2015.cjs.js
CHANGED
|
@@ -5012,10 +5012,12 @@ var toFragment = (json, isSVG, config) => {
|
|
|
5012
5012
|
};
|
|
5013
5013
|
|
|
5014
5014
|
// src/app/createApp.ts
|
|
5015
|
-
var createApp = (context,
|
|
5015
|
+
var createApp = (context, templateOptions = { selector: "#app" }, config) => {
|
|
5016
|
+
if (isString(templateOptions))
|
|
5017
|
+
templateOptions = { selector: "#app", template: templateOptions };
|
|
5016
5018
|
if (isScope(context))
|
|
5017
5019
|
context = context.context;
|
|
5018
|
-
const root =
|
|
5020
|
+
const root = templateOptions.element ? templateOptions.element : templateOptions.selector ? document.querySelector(templateOptions.selector) : null;
|
|
5019
5021
|
if (!root || !isElement(root))
|
|
5020
5022
|
throw getError(0 /* AppRootElementMissing */);
|
|
5021
5023
|
if (!config)
|
|
@@ -5030,13 +5032,17 @@ var createApp = (context, template = { selector: "#app" }, config) => {
|
|
|
5030
5032
|
root.appendChild(child);
|
|
5031
5033
|
}
|
|
5032
5034
|
};
|
|
5033
|
-
if (template
|
|
5034
|
-
const element = document.createRange().createContextualFragment(template
|
|
5035
|
+
if (templateOptions.template) {
|
|
5036
|
+
const element = document.createRange().createContextualFragment(templateOptions.template);
|
|
5035
5037
|
cleanRoot();
|
|
5036
5038
|
appendChildren(element.childNodes);
|
|
5037
|
-
|
|
5038
|
-
} else if (
|
|
5039
|
-
const element = toFragment(
|
|
5039
|
+
templateOptions.element = element;
|
|
5040
|
+
} else if (templateOptions.json) {
|
|
5041
|
+
const element = toFragment(
|
|
5042
|
+
templateOptions.json,
|
|
5043
|
+
templateOptions.isSVG,
|
|
5044
|
+
config
|
|
5045
|
+
);
|
|
5040
5046
|
cleanRoot();
|
|
5041
5047
|
appendChildren(element.childNodes);
|
|
5042
5048
|
}
|
|
@@ -5107,40 +5113,51 @@ var toJsonTemplate = (node) => {
|
|
|
5107
5113
|
};
|
|
5108
5114
|
|
|
5109
5115
|
// src/app/createComponent.ts
|
|
5110
|
-
var createComponent = (context,
|
|
5116
|
+
var createComponent = (context, templateOptions, options = {}) => {
|
|
5111
5117
|
var _a, _b, _c, _d;
|
|
5118
|
+
if (isArray(options))
|
|
5119
|
+
options = { props: options };
|
|
5120
|
+
if (isString(templateOptions))
|
|
5121
|
+
templateOptions = { template: templateOptions };
|
|
5112
5122
|
let svgHandled = false;
|
|
5113
|
-
if (
|
|
5114
|
-
const element2 =
|
|
5123
|
+
if (templateOptions.element) {
|
|
5124
|
+
const element2 = templateOptions.element;
|
|
5115
5125
|
element2.remove();
|
|
5116
|
-
|
|
5117
|
-
} else if (
|
|
5118
|
-
const element2 = document.querySelector(
|
|
5126
|
+
templateOptions.element = element2;
|
|
5127
|
+
} else if (templateOptions.selector) {
|
|
5128
|
+
const element2 = document.querySelector(templateOptions.selector);
|
|
5119
5129
|
if (!element2)
|
|
5120
|
-
throw getError(
|
|
5130
|
+
throw getError(
|
|
5131
|
+
1 /* ComponentTemplateNotFound */,
|
|
5132
|
+
templateOptions.selector
|
|
5133
|
+
);
|
|
5121
5134
|
element2.remove();
|
|
5122
|
-
|
|
5123
|
-
} else if (template
|
|
5124
|
-
const element2 = document.createRange().createContextualFragment(template
|
|
5125
|
-
|
|
5126
|
-
} else if (
|
|
5127
|
-
|
|
5135
|
+
templateOptions.element = element2;
|
|
5136
|
+
} else if (templateOptions.template) {
|
|
5137
|
+
const element2 = document.createRange().createContextualFragment(templateOptions.template);
|
|
5138
|
+
templateOptions.element = element2;
|
|
5139
|
+
} else if (templateOptions.json) {
|
|
5140
|
+
templateOptions.element = toFragment(
|
|
5141
|
+
templateOptions.json,
|
|
5142
|
+
templateOptions.isSVG,
|
|
5143
|
+
options.config
|
|
5144
|
+
);
|
|
5128
5145
|
svgHandled = true;
|
|
5129
5146
|
}
|
|
5130
|
-
if (!
|
|
5131
|
-
|
|
5147
|
+
if (!templateOptions.element)
|
|
5148
|
+
templateOptions.element = document.createDocumentFragment();
|
|
5132
5149
|
if ((_a = options.useInterpolation) != null ? _a : true)
|
|
5133
|
-
interpolate(
|
|
5134
|
-
const element =
|
|
5135
|
-
if (!svgHandled && (((_c =
|
|
5136
|
-
const content =
|
|
5150
|
+
interpolate(templateOptions.element);
|
|
5151
|
+
const element = templateOptions.element;
|
|
5152
|
+
if (!svgHandled && (((_c = templateOptions.isSVG) != null ? _c : isHTMLElement(element) && ((_b = element.hasAttribute) == null ? void 0 : _b.call(element, "isSVG"))) || isHTMLElement(element) && !!element.querySelector("[isSVG]"))) {
|
|
5153
|
+
const content = templateOptions.element.content;
|
|
5137
5154
|
const nodes = content ? [...content.childNodes] : [...element.childNodes];
|
|
5138
5155
|
const json = toJsonTemplate(nodes);
|
|
5139
|
-
|
|
5156
|
+
templateOptions.element = toFragment(json, true, options.config);
|
|
5140
5157
|
}
|
|
5141
5158
|
return {
|
|
5142
5159
|
context,
|
|
5143
|
-
template:
|
|
5160
|
+
template: templateOptions.element,
|
|
5144
5161
|
inheritAttrs: (_d = options.inheritAttrs) != null ? _d : true,
|
|
5145
5162
|
props: options.props,
|
|
5146
5163
|
defaultName: options.defaultName
|
|
@@ -1,3 +1,3 @@
|
|
|
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 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={}))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 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:()=>An,entangle:()=>Ot,flatten:()=>X,getBindData:()=>he,html:()=>wn,isDeepRef:()=>Le,isRaw:()=>je,isRef:()=>h,markRaw:()=>Gr,observe:()=>S,observeMany:()=>Xr,observerCount:()=>Yr,onMounted:()=>eo,onUnmounted:()=>J,pause:()=>Ft,persist:()=>Jr,raw:()=>Qr,ref:()=>Re,removeNode:()=>V,resume:()=>qt,silence:()=>bt,sref:()=>K,startBatch:()=>On,toFragment:()=>ke,toJsonTemplate:()=>Ge,trigger:()=>q,unbind:()=>oe,unref:()=>P,useScope:()=>wt,warningHandler:()=>Xe,watchEffect:()=>Ae});module.exports=po(vs);var H=t=>typeof t=="function",G=t=>typeof t=="string",kn=t=>typeof t=="undefined",te=t=>t==null||typeof t=="undefined",F=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 In={0:"createApp can't find root element. You must define either a valid `selector` or an `element`. Example: createApp({}, {selector: '#app', html: '...'})",1:t=>`Component template cannot be found. selector: ${t} .`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:t=>`${t} requires ref source argument`,4:"computed 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 J=(t,e)=>{var n;(n=we(e))==null||n.onUnmounted.push(t)};var lt=Symbol("ref"),Q=Symbol("sref"),ut=Symbol("raw");var h=t=>(t==null?void 0:t[Q])===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 J(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 V=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&&(G(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.l.if,this.q=Be(e.o.l.if),this.K=e.o.l.else,this.z=e.o.l.elseif,this.b=e.o.l.for,this.T=e.o.l.pre}qe(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.qe(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=>{V(p)}),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:()=>{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 I of d)!b&&I.isTrue()?(I.isMounted||(I.mount(),I.isMounted=!0),b=!0):(I.unmount(),I.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)!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,ce=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let r=n.nextSibling;V(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.l.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.l.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),J(()=>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 q=(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)q(s,e,!0);else if(ye(o))for(let s of o)q(s[0],e,!0),q(s[1],e,!0);if(N(o))for(let s in o)q(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[Q];for(let c of p)q(c);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={},K=t=>{if(h(t)||je(t))return t;let e={auto:!0,_value:t},n=p=>N(p)?Q 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[Q];c||(p[Q]=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):(qn(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[Q]=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 Ke(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.S,this.E.push(e),this.Q(e)}ze(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}le(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)}We(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.l.for,this.Z=Be(this.b),this.T=e.o.l.pre}N(e){let n=e.hasAttribute(this.b),r=ge(e,this.Z);for(let o of r)this.Ge(o);return n}W(e){return e[an]?!0:(e[an]=!0,ge(e,this.Z).forEach(n=>n[an]=!0),!1)}Ge(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.Je(e,n)}fe(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))}Je(e,n){var it;let r=this.Qe(n);if(!(r!=null&&r.list)){U(1,this.b,n,e);return}let o=this.p.o.l.key,s=this.p.o.l.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=>{V(v)}),e.remove();let y=new Comment(`__end__ ${m}`);f.insertBefore(y,u.nextSibling);let d=this.p,C=d.h,k=C.V(),x=(v,A,z)=>{let w=r.createContext(A,v),Y=tt.Ke(w.index,A);return C.v(k,()=>{C.w(w.ctx);let re=z.previousSibling,Ie=[];for(let g of c){let M=g.cloneNode(!0);f.insertBefore(M,z),Ie.push(M)}for(be(d,Ie),re=re.nextSibling;re!==z;)Y.items.push(re),re=re.nextSibling}),Y},b=(v,A)=>{let z=O.I(v).items,w=z[z.length-1].nextSibling;for(let Y of z)V(Y);O.Y(v,x(v,A,w))},I=(v,A)=>{O.w(x(v,A,y))},j=v=>{for(let A of O.I(v).items)V(A)},ee=v=>{let A=O.S;for(let z=v;z<A;++z)O.I(z).index(z)},Je=v=>{let A=O.S;H(v)&&(v=v());let z=P(v[0]);if(E(z)&&z.length===0){ce(u,y),O.le(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.fe(v[0])){let $=()=>{if(w<A){let W=O.I(w++);if(p(W.value,T))return;let R=O.We(a(T));if(R>=w&&R-w<10){if(--w,Y=Math.min(Y,w),j(w),O.ce(w),--A,R>w+1)for(let L=w;L<R-1&&L<A&&!p(O.I(w).value,T);)++L,j(w),O.ce(w),--A;$();return}g()?(O.ze(w-1,x(w,T,O.I(w-1).items[0])),Y=Math.min(Y,w-1),++A):b(w-1,T)}else I(w++,T)};$()}let M=w;for(A=O.S;w<A;)j(w++);O.le(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.fe(ot()[0]))O.w(x(st++,v,y));D(u,rt),Kt()}Qe(e){var p,c;let n=vt.Xe.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&&(r[o]==="index"||(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 k of r)u[k]=y[C++]}else for(let C of r)u[C]=y[C];let d={ctx:u,index:K(-1)};return s&&(d.index=u[s.startsWith("#")?s.substring(1):s]=K(m)),d}}}};l(vt,"Xe",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\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.l.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=>{V(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,()=>{var I;let x=p()[0];if(N(x)&&(x.name?x=x.name:x=(I=Object.entries(c.me()).filter(j=>j[1]===x)[0])==null?void 0:I[0]),!G(x)||F(x)){ce(s,i);return}if(m.name===x)return;ce(s,i);let b=document.createElement(x);for(let j of e.getAttributeNames())j!==this.D&&b.setAttribute(j,e.getAttribute(j));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 k=S(p,y);d.push(k)}};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],p=i[1],c=o[a];c!==p&&(h(c)?c(p):o[a]=p)}},!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],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,"de");l(this,"emit",(e,n)=>{this.de.dispatchEvent(new CustomEvent(e,{detail:n}))});this.props=e,this.de=n,this.ctx=r,this.start=o,this.end=s}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)V(e),e=e.nextSibling;Ee(this)}};var pn=Symbol("scope"),wt=t=>{try{Dn();let e=t();Yt(e);let n={context:e,unmount:()=>Ee(e),[pn]:1};return n[pn]=1,n}finally{Un()}},Qn=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 Xn={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,"ye");this.p=e,this.ye=e.o.l.inherit}N(e){this.Ye(e)}Ye(e){var f;let n=this.p,r=n.h,o=n.o.he,s=n.o.ge,i=r.me(),a=[...o.keys(),...Object.keys(i),...[...o.keys()].map(Pe),...[...Object.keys(i)].map(Pe)].join(",");if(F(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],k=C!=null?C:s.get(d);if(!k)continue;let x=k.template;if(!x)continue;let b=m.parentElement;if(!b)continue;let I=new Comment(" begin component: "+m.tagName),j=new Comment(" end component: "+m.tagName);b.insertBefore(I,m),m.remove();let ee=n.o.l.props,Je=n.o.l.propsOnce,Kt=n.o.l.bind,rt=(g,M)=>{let T={},$=g.hasAttribute(ee),W=g.hasAttribute(Je);return r.v(M,()=>{r.w(T),$&&n.x(Gn,g,ee),W&&n.x(Jn,g,Je);let R=k.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 L=n.ee.be(g,!1);for(let[ve,ae]of L.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 $;let g=rt(m,ue),M=new $e(g,m,ue,I,j),T=wt(()=>{var W;return(W=k.context(M))!=null?W:{}}).context;if(M.autoProps){for(let[W,R]of Object.entries(g))if(W in T){let L=T[W];if(L===R)continue;M.entangle&&h(L)&&h(R)?D(I,Ot(R,L)):h(L)?L(R):T[W]=P(R)}else T[W]=R;($=M.onAutoPropsAssigned)==null||$.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;F(T)&&(T=g.getAttributeNames().filter(R=>R.startsWith("#"))[0],F(T)?T="default":T=T.substring(1));let $=m.querySelector(`template[name='${T}'], template[\\#${T}]`);!$&&T==="default"&&($=m.querySelector("template:not([name])"),$&&$.getAttributeNames().filter(R=>R.startsWith("#")).length>0&&($=null));let W=R=>{st.disableSwitch||r.v(ue,()=>{r.w(de);let L=rt(g,r.V());r.v(ue,()=>{r.w(L);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($){let R=[...fe($)];for(let L of R)M.insertBefore(L,g);W(R)}else{if(T!=="default"){for(let L of[...fe(g)])M.insertBefore(L,g);return}let R=[...fe(m)].filter(L=>!se(L));for(let L of R)M.insertBefore(L,g);W(R)}},z=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),z(O[g])})(),b.insertBefore(j,y);let Y=()=>{if(!k.inheritAttrs)return;let g=O.filter(T=>T.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(T=>T.hasAttribute(this.ye)));let M=g[0];if(M)for(let T of m.getAttributeNames()){if(T===ee||T===Je)continue;let $=m.getAttribute(T);if(T==="class")M.classList.add(...$.split(" "));else if(T==="style"){let W=M.style,R=m.style;for(let L of R)W.setProperty(L,R.getPropertyValue(L))}else M.setAttribute(gt(T,n.o),$)}},re=()=>{for(let g of m.getAttributeNames())!g.startsWith("@")&&!g.startsWith(n.o.l.on)&&m.removeAttribute(g)},Ie=()=>{Y(),re(),r.w(de),n.Te(m,!1),de.$emit=st.emit,be(n,O),D(m,()=>{Ee(de)}),D(I,()=>{oe(m)}),At(de)};r.v(ue,Ie)}}};var cn=class{constructor(e){l(this,"xe");l(this,"te",[]);l(this,"ne",[]);l(this,"Ee",[]);this.xe=e,this.C()}C(){let e=this.xe,n=e.startsWith(".");n&&(e=":"+e.slice(1));let r=e.indexOf("."),o=this.te=(r<0?e:e.substring(0,r)).split(/[:@]/);if(F(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,"Re");this.p=e,this.Re=e.o.Ze()}be(e,n){let r=new Map;if(!Ze(e))return r;let o=this.Re,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).Ee.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,"Ce");l(this,"ve");l(this,"Se");l(this,"we");l(this,"ee");l(this,"o");l(this,"T");l(this,"Oe");this.h=e,this.o=e.o,this.ve=new xt(this),this.Ce=new ht(this),this.Se=new St(this),this.we=new Nt(this),this.ee=new Mt(this),this.T=this.o.l.pre,this.Oe=this.o.l.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.Ce.N(e)||this.ve.N(e)||this.Se.N(e)||(this.we.N(e),this.et(e),this.Te(e,!0))}Te(e,n){var s;let r=this.ee.be(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.Ee.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(Pn(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(F(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,()=>{V(n)}),o.appendChild(n)}return!0}k(e,n,r,o,s){var k;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=Fn(o,this.Oe),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 I=m,j=y;(ee=e.onChange)==null||ee.call(e,n,u(),I,d(),j,s)});if(a.push(x),f){let b=S(f.value,I=>{var ee;let j=y;(ee=e.onChange)==null||ee.call(e,n,u(),j,d(),j,s)});a.push(b)}};e.once||C(),e.onBind&&a.push(e.onBind(n,i,r,o,f,s)),(k=e.onChange)==null||k.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],pr={"-":1,"!":1,"~":1,"+":1,new:1},cr={"=":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(ct({"=>":2},cr),{"||":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(cr),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(pr),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.Ae,this.lt],3:[this.ft,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 f(){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.f,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.f;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.Ne();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.f)||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}Ne(){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:ar(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=ar(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.f;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(pr,e)&&(!this.U(this.f)||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.F(r),this.L(3,0,r)):this.L(3,0,!1)}F(e){this.y();let n=this.f;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.f}if(this.e++,n===Ut){if(e={type:3,computed:!0,object:e,property:this.O()},this.y(),n=this.f,n!==Ht)throw this.i($o);this.e++}else n===Dt?e={type:6,arguments:this.Me(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.f}return e}dt(){let e="",n;for(;qe(this.f);)e+=this.r.charAt(this.e++);if(this.u(Ce))for(e+=this.r.charAt(this.e++);qe(this.f);)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.f);)e+=this.r.charAt(this.e++);if(!qe(this.r.charCodeAt(this.e-1)))throw this.i(Fo+e+this.M+")")}let r=this.f;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.
|
|
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 `")}ft(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}lt(e){if(!this.u(er))return;let n=++this.e,r=!1;for(;this.e<this.r.length;){if(this.f===er&&!r){let o=this.r.slice(n,this.e),s="";for(;++this.e<this.r.length;){let a=this.f;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")}},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)=>pt(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(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,"ke");l(this,"Ve");l(this,"Ie");l(this,"A");l(this,"De");l(this,"Ue");this.m=E(e)?e:[e],this.ke=n,this.Ve=r,this.Ie=o,this.Ue=!!s}Pe(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.ke;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.Be(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.Be(++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.Ie)!=null?f:()=>!1,a=n===0&&this.Ue,p=m=>this.He(a,e.key,n,yn(m,r)),c=m=>this.He(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.Pe(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.Pe(i,r);if(te(a))return;let p=this.g(e.right,n,r);return dr[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 dr[s](i,a,p)}}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,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.De=e.type,o}He(e,n,r,o){let s=this.g(n,r,o);return e&&this._e()?this.A:s}_e(){let e=this.De;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._e()&&(s.ref=this.A),s}R(e,n,r,...o){let s=o.map(i=>i&&this.g(i,e,n));return r(...s)}Be(e,n,r,...o){let s=this.Ve;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)}},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,"je",[]);this.m=e,this.o=n}w(e){this.m=[e,...this.m]}me(){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=K([]),a=[],p=()=>{for(let d of a)d();a.length=0},c={value:i,stop:p,refs:[],context:this.m[0]};if(F(e))return c;let f=this.o.globalContext,m=[],u=(d,C,k,x)=>{try{let b=br(d,C,f,n,r,x,o);return k&&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,k=()=>{m.splice(0),p();let x=d.elements.map((b,I)=>n!=null&&n(I,-1)?{value:j=>u(b,C,!1,{$event:j}).value,refs:[]}:u(b,C,!0));if(!s)for(let b of m){let I=S(b,k);a.push(I)}i(x.map(b=>b.value)),c.refs=x.map(b=>b.ref)};k()}catch(d){U(6,`parse error: ${e}`,d)}return c}V(){return this.m}Y(e){this.je.push(this.m),this.m=e}v(e,n){try{this.Y(e),n()}finally{this.bt()}}bt(){var e;this.m=(e=this.je.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 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(!G(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 p=0;p<a;++p)Cr(t,s[p],i==null?void 0:i[p])}else Cr(t,s,i)}}},Cr=(t,e,n)=>{let r=t.classList,o=G(e),s=G(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),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 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],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?G(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 p=Nr(t);return p&&wr(t)?ns(t,a):p&&Or(t)?as(t,a):p||Mr(t)?ts(t,i,a,r):Lr(t)?ps(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())},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(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",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,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},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?xr(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),q(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(F(t))return;let n=t.split(",");for(let r of cs)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 G(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())},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],k=()=>{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,k,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]},Tn=(t,e,n,r)=>{if(F(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 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 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 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 p=0;p<a;++p)_r(t,s[p],i==null?void 0:i[p])}else _r(t,s,i)}}},_r=(t,e,n)=>{let r=t.style,o=G(e);if(e&&!o){if(n&&!G(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 X=t=>ds(P(t)),ds=t=>{if(!t||!N(t))return t;if(E(t))return t.map(X);if(Z(t)){let n=new Set;for(let r of t.keys())n.add(X(r));return n}if(ye(t)){let n=new Map;for(let r of n)n.set(X(r[0]),X(r[1]));return n}let e=ct({},t);for(let n of Object.entries(e))e[n[0]]=X(n[1]);return e};var jr={onChange:(t,e)=>{var r;let n=e[0];t.textContent=Z(n)?JSON.stringify(X([...n])):ye(n)?JSON.stringify(X([...n])):N(n)?JSON.stringify(X(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=K(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,"l",{});l(this,"Ze",()=>Object.keys(this._).filter(e=>e.length===1||!e.startsWith(":")));l(this,"he",new Map);l(this,"ge",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.Fe)!=null?e:xe.Fe=new xe}xt(){let e={},n=globalThis;for(let r of xe.Tt.split(","))e[r]=n[r];return e.ref=Re,e.sref=K,e.flatten=X,e}addComponent(...e){for(let n of e){if(!n.defaultName){Xe.warning("Registered component's default name is not defined",n);continue}this.he.set(et(n.defaultName),n),this.ge.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.l={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.l)}};l(xe,"Fe"),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()).l;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(F(o[0])&&F(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)},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),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)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])V(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 Sn(t,r,n).x(),D(r,()=>{Ee(t)}),At(t),{context:t,unmount:()=>{V(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,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,e.selector);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[Q]=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)},J(()=>r.stop(),!0),r},Cs=(t,e)=>{var s;let n=(s=e.ref)!=null?s:K(null);e.ref=n,e.isStopped=!1;let r=0,o=Ae(()=>{if(r>0){o(),e.isStopped=!0,q(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[Q]=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)},J(()=>o.stop(),!0),o},Rs=(t,e,n)=>{var a;let r=(a=n.ref)!=null?a:K(null);n.ref=r,n.isStopped=!1;let o=0,s=p=>{if(o>0){r.stop(),n.isStopped=!0,q(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[Q]=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)},J(()=>o.stop(),!0),o},xs=(t,e,n)=>{var s;let r=(s=n.ref)!=null?s:K(null);n.ref=r,n.isStopped=!1;let o=0;return r.stop=S(t,i=>{if(o>0){r.stop(),n.isStopped=!0,q(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(X(t()))),s=localStorage.getItem(e);s!=null?t(r(JSON.parse(s))):o();let i=Ae(o);return J(()=>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 J(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{q(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:()=>On,entangle:()=>At,flatten:()=>X,getBindData:()=>he,html:()=>wn,isDeepRef:()=>Le,isRaw:()=>je,isRef:()=>h,markRaw:()=>Gr,observe:()=>S,observeMany:()=>Xr,observerCount:()=>Yr,onMounted:()=>eo,onUnmounted:()=>J,pause:()=>Ft,persist:()=>Jr,raw:()=>Qr,ref:()=>Re,removeNode:()=>$,resume:()=>qt,silence:()=>bt,sref:()=>W,startBatch:()=>An,toFragment:()=>ke,toJsonTemplate:()=>Ge,trigger:()=>z,unbind:()=>oe,unref:()=>j,useScope:()=>wt,warningHandler:()=>Xe,watchEffect:()=>Oe});module.exports=co(vs);var H=t=>typeof t=="function",_=t=>typeof t=="string",kn=t=>typeof t=="undefined",te=t=>t==null||typeof t=="undefined",q=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:"createApp can't find root element. You must define either a valid `selector` or an `element`. Example: createApp({}, {selector: '#app', html: '...'})",1:t=>`Component template cannot be found. selector: ${t} .`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:t=>`${t} requires ref source argument`,4:"computed is readonly."},B=(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 B(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 J=(t,e)=>{var n;(n=we(e))==null||n.onUnmounted.push(t)};var lt=Symbol("ref"),Q=Symbol("sref"),ut=Symbol("raw");var h=t=>(t==null?void 0:t[Q])===1;var S=(t,e,n)=>{if(!h(t))throw B(3,"observe");n&&e(t());let o=t(void 0,void 0,0,e);return J(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 $=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&&(_(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=>Ae(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}qe(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.qe(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=>{$(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 I of d)!b&&I.isTrue()?(I.isMounted||(I.mount(),I.isMounted=!0),b=!0):(I.unmount(),I.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,Ae=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;$(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,P=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))},Oe=t=>{if(!t)return()=>{};let e={stop:()=>{}};return yo(t,e),J(()=>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(),Oe(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 z=(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)z(s,e,!0);else if(ye(o))for(let s of o)z(s[0],e,!0),z(s[1],e,!0);if(N(o))for(let s in o)z(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[Q];for(let p of c)z(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={},W=t=>{if(h(t)||je(t))return t;let e={auto:!0,_value:t},n=c=>N(c)?Q 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[Q];p||(c[Q]=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[Q]=1,Te(a,!1),r&&i(t),a};var j=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 Ke(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.S,this.E.push(e),this.Q(e)}ze(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)}We(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.Ge(o);return n}W(e){return e[an]?!0:(e[an]=!0,ge(e,this.Z).forEach(n=>n[an]=!0),!1)}Ge(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.Je(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))}Je(e,n){var it;let r=this.Qe(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 O;return j((O=j(v))==null?void 0:O[i])}:v=>v,c=(v,O)=>a(v)===a(O),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=>{$(v)}),e.remove();let y=new Comment(`__end__ ${m}`);f.insertBefore(y,u.nextSibling);let d=this.p,C=d.h,k=C.V(),x=(v,O,K)=>{let w=r.createContext(O,v),Y=tt.Ke(w.index,O);return C.v(k,()=>{C.w(w.ctx);let re=K.previousSibling,Ie=[];for(let g of p){let M=g.cloneNode(!0);f.insertBefore(M,K),Ie.push(M)}for(be(d,Ie),re=re.nextSibling;re!==K;)Y.items.push(re),re=re.nextSibling}),Y},b=(v,O)=>{let K=A.I(v).items,w=K[K.length-1].nextSibling;for(let Y of K)$(Y);A.Y(v,x(v,O,w))},I=(v,O)=>{A.w(x(v,O,y))},V=v=>{for(let O of A.I(v).items)$(O)},ee=v=>{let O=A.S;for(let K=v;K<O;++K)A.I(K).index(K)},Je=v=>{let O=A.S;H(v)&&(v=v());let K=j(v[0]);if(E(K)&&K.length===0){pe(u,y),A.fe(0);return}let w=0,Y=Number.MAX_SAFE_INTEGER,re=O,Ie=this.p.o.forGrowThreshold,g=()=>A.S<re+Ie;for(let T of this.le(v[0])){let F=()=>{if(w<O){let G=A.I(w++);if(c(G.value,T))return;let R=A.We(a(T));if(R>=w&&R-w<10){if(--w,Y=Math.min(Y,w),V(w),A.ce(w),--O,R>w+1)for(let L=w;L<R-1&&L<O&&!c(A.I(w).value,T);)++L,V(w),A.ce(w),--O;F();return}g()?(A.ze(w-1,x(w,T,A.I(w-1).items[0])),Y=Math.min(Y,w-1),++O):b(w-1,T)}else I(w++,T)};F()}let M=w;for(O=A.S;w<O;)V(w++);A.fe(M),ee(Y)},Kt=()=>{de=S(ot,Je)},rt=()=>{ue.stop(),de()},ue=C.C(r.list),ot=ue.value,de,st=0,A=new tt(a);for(let v of this.le(ot()[0]))A.w(x(st++,v,y));D(u,rt),Kt()}Qe(e){var c,p;let n=vt.Xe.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=j(f);if(!a&&r.length===1)u[r[0]]=f;else if(E(y)){let C=0;for(let k of r)u[k]=y[C++]}else for(let C of r)u[C]=y[C];let d={ctx:u,index:W(-1)};return s&&(d.index=u[s.startsWith("#")?s.substring(1):s]=W(m)),d}}}};l(vt,"Xe",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\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=>{$(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,()=>{var I;let x=c()[0];if(N(x)&&(x.name?x=x.name:x=(I=Object.entries(p.me()).filter(V=>V[1]===x)[0])==null?void 0:I[0]),!_(x)||q(x)){pe(s,i);return}if(m.name===x)return;pe(s,i);let b=document.createElement(x);for(let V of e.getAttributeNames())V!==this.D&&b.setAttribute(V,e.getAttribute(V));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 k=S(c,y);d.push(k)}};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,"de");l(this,"emit",(e,n)=>{this.de.dispatchEvent(new CustomEvent(e,{detail:n}))});this.props=e,this.de=n,this.ctx=r,this.start=o,this.end=s}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)$(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 At=(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 Ot=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=P(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,"ye");this.p=e,this.ye=e.o.f.inherit}N(e){this.Ye(e)}Ye(e){var f;let n=this.p,r=n.h,o=n.o.he,s=n.o.ge,i=r.me(),a=[...o.keys(),...Object.keys(i),...[...o.keys()].map(Pe),...[...Object.keys(i)].map(Pe)].join(",");if(q(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=P(m.tagName).toUpperCase(),C=i[d],k=C!=null?C:s.get(d);if(!k)continue;let x=k.template;if(!x)continue;let b=m.parentElement;if(!b)continue;let I=new Comment(" begin component: "+m.tagName),V=new Comment(" end component: "+m.tagName);b.insertBefore(I,m),m.remove();let ee=n.o.f.props,Je=n.o.f.propsOnce,Kt=n.o.f.bind,rt=(g,M)=>{let T={},F=g.hasAttribute(ee),G=g.hasAttribute(Je);return r.v(M,()=>{r.w(T),F&&n.x(Gn,g,ee),G&&n.x(Jn,g,Je);let R=k.props;if(!R||R.length===0)return;R=R.map(P);for(let ve of R.concat(R.map(Pe))){let ae=g.getAttribute(ve);ae!==null&&(T[P(ve)]=ae,g.removeAttribute(ve))}let L=n.ee.be(g,!1);for(let[ve,ae]of L.entries()){let[Se,Wt]=ae.te;Wt&&R.includes(P(Wt))&&(Se!=="."&&Se!==":"&&Se!==Kt||n.x(Xn,g,ve,!0,Wt,ae.ne))}}),T},ue=[...r.V()],ot=()=>{var F;let g=rt(m,ue),M=new $e(g,m,ue,I,V),T=wt(()=>{var G;return(G=k.context(M))!=null?G:{}}).context;if(M.autoProps){for(let[G,R]of Object.entries(g))if(G in T){let L=T[G];if(L===R)continue;M.entangle&&h(L)&&h(R)?D(I,At(R,L)):h(L)?L(R):T[G]=j(R)}else T[G]=R;(F=M.onAutoPropsAssigned)==null||F.call(M)}return{componentCtx:T,head:M}},{componentCtx:de,head:st}=ot(),A=[...fe(x)],it=A.length,v=m.childNodes.length===0,O=g=>{let M=g.parentElement;if(v){for(let R of[...g.childNodes])M.insertBefore(R,g);return}let T=g.name;q(T)&&(T=g.getAttributeNames().filter(R=>R.startsWith("#"))[0],q(T)?T="default":T=T.substring(1));let F=m.querySelector(`template[name='${T}'], template[\\#${T}]`);!F&&T==="default"&&(F=m.querySelector("template:not([name])"),F&&F.getAttributeNames().filter(R=>R.startsWith("#")).length>0&&(F=null));let G=R=>{st.disableSwitch||r.v(ue,()=>{r.w(de);let L=rt(g,r.V());r.v(ue,()=>{r.w(L);let ve=r.V(),ae=Bn(ve);for(let Se of R)Ae(Se)&&(Se.setAttribute(Ye,ae),Zt(ae),D(Se,()=>{en(ae)}))})})};if(F){let R=[...fe(F)];for(let L of R)M.insertBefore(L,g);G(R)}else{if(T!=="default"){for(let L of[...fe(g)])M.insertBefore(L,g);return}let R=[...fe(m)].filter(L=>!se(L));for(let L of R)M.insertBefore(L,g);G(R)}},K=g=>{if(!Ae(g))return;let M=g.querySelectorAll("slot");if($n(g)){O(g),g.remove();return}for(let T of M)O(T),T.remove()};(()=>{for(let g=0;g<it;++g)A[g]=A[g].cloneNode(!0),u.insertBefore(A[g],y),K(A[g])})(),b.insertBefore(V,y);let Y=()=>{if(!k.inheritAttrs)return;let g=A.filter(T=>T.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(T=>T.hasAttribute(this.ye)));let M=g[0];if(M)for(let T of m.getAttributeNames()){if(T===ee||T===Je)continue;let F=m.getAttribute(T);if(T==="class")M.classList.add(...F.split(" "));else if(T==="style"){let G=M.style,R=m.style;for(let L of R)G.setProperty(L,R.getPropertyValue(L))}else M.setAttribute(gt(T,n.o),F)}},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.Te(m,!1),de.$emit=st.emit,be(n,A),D(m,()=>{Ee(de)}),D(I,()=>{oe(m)}),Ot(de)};r.v(ue,Ie)}}};var pn=class{constructor(e){l(this,"xe");l(this,"te",[]);l(this,"ne",[]);l(this,"Ee",[]);this.xe=e,this.C()}C(){let e=this.xe,n=e.startsWith(".");n&&(e=":"+e.slice(1));let r=e.indexOf("."),o=this.te=(r<0?e:e.substring(0,r)).split(/[:@]/);if(q(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]=P(o[i])}s.includes("prop")&&(o[0]=".")}}},Mt=class{constructor(e){l(this,"p");l(this,"Re");this.p=e,this.Re=e.o.Ze()}be(e,n){let r=new Map;if(!Ze(e))return r;let o=this.Re,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).Ee.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,"Ce");l(this,"ve");l(this,"Se");l(this,"we");l(this,"ee");l(this,"o");l(this,"T");l(this,"Ae");this.h=e,this.o=e.o,this.ve=new xt(this),this.Ce=new ht(this),this.Se=new St(this),this.we=new Nt(this),this.ee=new Mt(this),this.T=this.o.f.pre,this.Ae=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.Ce.N(e)||this.ve.N(e)||this.Se.N(e)||(this.we.N(e),this.et(e),this.Te(e,!0))}Te(e,n){var s;let r=this.ee.be(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.Ee.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(q(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,()=>{$(n)}),o.appendChild(n)}return!0}k(e,n,r,o,s){var k;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.Ae),f;p&&(f=this.h.C(P(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 I=m,V=y;(ee=e.onChange)==null||ee.call(e,n,u(),I,d(),V,s)});if(a.push(x),f){let b=S(f.value,I=>{var ee;let V=y;(ee=e.onChange)==null||ee.call(e,n,u(),V,d(),V,s)});a.push(b)}};e.once||C(),e.onBind&&a.push(e.onBind(n,i,r,o,f,s)),(k=e.onChange)==null||k.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,Ao=59,Yn=58,Oo=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===Ao||r===It)this.e++;else{let o=this.A();if(o)n.push(o);else if(this.e<this.r.length){if(r===e)break;throw this.i(Me+'"'+this.M+'"')}}}return n}A(){var n;let e=(n=this.L(0,1))!=null?n:this.Ne();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}Ne(){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.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.A()},this.y(),n=this.l,n!==Ht)throw this.i($o);this.e++}else n===Dt?e={type:6,arguments:this.Me(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)}}Me(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.A();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.Me(Ht)}}at(e){if(this.u(Oo)){this.e++;let n=[];for(;!isNaN(this.l);){if(this.y(),this.u(_t)){this.e++,e.node=this.F({type:10,properties:n});return}let r=this.A();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.A();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.F(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.A()})}it(e){if(e.node&&this.u(fn)){this.e++;let n=e.node,r=this.A();if(!r)throw this.i(or);if(this.y(),this.u(Yn)){this.e++;let o=this.A();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.Ne();if(!o)throw this.i(mn+r);e.node={type:15,params:null,body:o};return}}this.e=n}}ot(e){this.Le(e.node)}Le(e){e&&(Object.values(e).forEach(n=>{n&&typeof n=="object"&&this.Le(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.$(e.node)}$(e){Lo.has(e.operator)?(e.type=16,this.$(e.left),this.$(e.right)):e.operator||Object.values(e).forEach(n=>{n&&typeof n=="object"&&this.$(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.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")}},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,"ke");l(this,"Ve");l(this,"Ie");l(this,"O");l(this,"De");l(this,"Ue");this.m=E(e)?e:[e],this.ke=n,this.Ve=r,this.Ie=o,this.Ue=!!s}Pe(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.O=r[o],Pt(j(r[o]),r);for(let i of this.m)if(o in i)return this.O=i[o],Pt(j(i[o]),i);let s=this.ke;if(s&&o in s)return this.O=s[o],Pt(j(s[o]),s)}5(e,n,r){return this.m[0]}0(e,n,r){return this.Be(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.O=i,Pt(j(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.O=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.Be(++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.Ie)!=null?f:()=>!1,a=n===0&&this.Ue,c=m=>this.He(a,e.key,n,yn(m,r)),p=m=>this.He(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=j(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.Pe(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.Pe(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=j(this[e.type](e,n,r));return this.De=e.type,o}He(e,n,r,o){let s=this.g(n,r,o);return e&&this._e()?this.O:s}_e(){let e=this.De;return(e===2||e===3||e===6)&&h(this.O)}eval(e,n){let{value:r,refs:o}=Tt(()=>this.g(e,-1,n)),s={value:r,refs:o};return this._e()&&(s.ref=this.O),s}R(e,n,r,...o){let s=o.map(i=>i&&this.g(i,e,n));return r(...s)}Be(e,n,r,...o){let s=this.Ve;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,"je",[]);this.m=e,this.o=n}w(e){this.m=[e,...this.m]}me(){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=W([]),a=[],c=()=>{for(let d of a)d();a.length=0},p={value:i,stop:c,refs:[],context:this.m[0]};if(q(e))return p;let f=this.o.globalContext,m=[],u=(d,C,k,x)=>{try{let b=br(d,C,f,n,r,x,o);return k&&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,k=()=>{m.splice(0),c();let x=d.elements.map((b,I)=>n!=null&&n(I,-1)?{value:V=>u(b,C,!1,{$event:V}).value,refs:[]}:u(b,C,!0));if(!s)for(let b of m){let I=S(b,k);a.push(I)}i(x.map(b=>b.value)),p.refs=x.map(b=>b.ref)};k()}catch(d){U(6,`parse error: ${e}`,d)}return p}V(){return this.m}Y(e){this.je.push(this.m),this.m=e}v(e,n){try{this.Y(e),n()}finally{this.bt()}}bt(){var e;this.m=(e=this.je.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=P(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(!_(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=_(e),s=_(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 B(3,"pause");t(void 0,void 0,3)};var qt=t=>{if(!h(t))throw B(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&&Ar(t))t.checked=me(e,le(t));else if(n||Mr(t))Or(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?_(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",Ar=t=>t.type==="radio",Or=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&&Ar(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=Or(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),z(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(q(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=j(o.value()[0]);return _(y)?Tn(t,P(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,P(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],k=()=>{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,k,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(q(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=P(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=_(e);if(e&&!o){if(n&&!_(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=P(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 X=t=>ds(j(t)),ds=t=>{if(!t||!N(t))return t;if(E(t))return t.map(X);if(Z(t)){let n=new Set;for(let r of t.keys())n.add(X(r));return n}if(ye(t)){let n=new Map;for(let r of n)n.set(X(r[0]),X(r[1]));return n}let e=pt({},t);for(let n of Object.entries(e))e[n[0]]=X(n[1]);return e};var jr={onChange:(t,e)=>{var r;let n=e[0];t.textContent=Z(n)?JSON.stringify(X([...n])):ye(n)?JSON.stringify(X([...n])):N(n)?JSON.stringify(X(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=W(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,"he",new Map);l(this,"ge",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.Fe)!=null?e:xe.Fe=new xe}xt(){let e={},n=globalThis;for(let r of xe.Tt.split(","))e[r]=n[r];return e.ref=Re,e.sref=W,e.flatten=X,e}addComponent(...e){for(let n of e){if(!n.defaultName){Xe.warning("Registered component's default name is not defined",n);continue}this.he.set(et(n.defaultName),n),this.ge.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,"Fe"),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(q(o[0])&&q(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)=>{_(e)&&(e={selector:"#app",template:e}),Qn(t)&&(t=t.context);let r=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!r||!Ae(r))throw B(0);n||(n=ie.getDefault());let o=()=>{for(let a of[...r.childNodes])$(a)},s=a=>{for(let c of a)r.appendChild(c)};if(e.template){let a=document.createRange().createContextualFragment(e.template);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)}),Ot(t),{context:t,unmount:()=>{$(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;E(n)&&(n={props:n}),_(e)&&(e={template:e});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 B(1,e.selector);p.remove(),e.element=p}else if(e.template){let p=document.createRange().createContextualFragment(e.template);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 B(4);return e&&!n.isStopped?e(...o):(e=Cs(t,n),e(...o))};return r[Q]=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)},J(()=>r.stop(),!0),r},Cs=(t,e)=>{var s;let n=(s=e.ref)!=null?s:W(null);e.ref=n,e.isStopped=!1;let r=0,o=Oe(()=>{if(r>0){o(),e.isStopped=!0,z(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 B(4);return r&&!n.isStopped?r(...s):(r=Rs(t,e,n),r(...s))};return o[Q]=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)},J(()=>o.stop(),!0),o},Rs=(t,e,n)=>{var a;let r=(a=n.ref)!=null?a:W(null);n.ref=r,n.isStopped=!1;let o=0,s=c=>{if(o>0){r.stop(),n.isStopped=!0,z(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 B(4);return r&&!n.isStopped?r(...s):(r=xs(t,e,n),r(...s))};return o[Q]=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)},J(()=>o.stop(),!0),o},xs=(t,e,n)=>{var s;let r=(s=n.ref)!=null?s:W(null);n.ref=r,n.isStopped=!1;let o=0;return r.stop=S(t,i=>{if(o>0){r.stop(),n.isStopped=!0,z(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(X(t()))),s=localStorage.getItem(e);s!=null?t(r(JSON.parse(s))):o();let i=Oe(o);return J(()=>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 J(s,!0),s};var Yr=t=>{if(!h(t))throw B(3,"observe");return t(void 0,void 0,2)};var Zr=t=>{An();try{t()}finally{On()}},An=()=>{Ne.set||(Ne.set=new Set)},On=()=>{let t=Ne.set;if(t){delete Ne.set;for(let e of t)try{z(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
|
@@ -4949,10 +4949,12 @@ var toFragment = (json, isSVG, config) => {
|
|
|
4949
4949
|
};
|
|
4950
4950
|
|
|
4951
4951
|
// src/app/createApp.ts
|
|
4952
|
-
var createApp = (context,
|
|
4952
|
+
var createApp = (context, templateOptions = { selector: "#app" }, config) => {
|
|
4953
|
+
if (isString(templateOptions))
|
|
4954
|
+
templateOptions = { selector: "#app", template: templateOptions };
|
|
4953
4955
|
if (isScope(context))
|
|
4954
4956
|
context = context.context;
|
|
4955
|
-
const root =
|
|
4957
|
+
const root = templateOptions.element ? templateOptions.element : templateOptions.selector ? document.querySelector(templateOptions.selector) : null;
|
|
4956
4958
|
if (!root || !isElement(root))
|
|
4957
4959
|
throw getError(0 /* AppRootElementMissing */);
|
|
4958
4960
|
if (!config)
|
|
@@ -4967,13 +4969,17 @@ var createApp = (context, template = { selector: "#app" }, config) => {
|
|
|
4967
4969
|
root.appendChild(child);
|
|
4968
4970
|
}
|
|
4969
4971
|
};
|
|
4970
|
-
if (template
|
|
4971
|
-
const element = document.createRange().createContextualFragment(template
|
|
4972
|
+
if (templateOptions.template) {
|
|
4973
|
+
const element = document.createRange().createContextualFragment(templateOptions.template);
|
|
4972
4974
|
cleanRoot();
|
|
4973
4975
|
appendChildren(element.childNodes);
|
|
4974
|
-
|
|
4975
|
-
} else if (
|
|
4976
|
-
const element = toFragment(
|
|
4976
|
+
templateOptions.element = element;
|
|
4977
|
+
} else if (templateOptions.json) {
|
|
4978
|
+
const element = toFragment(
|
|
4979
|
+
templateOptions.json,
|
|
4980
|
+
templateOptions.isSVG,
|
|
4981
|
+
config
|
|
4982
|
+
);
|
|
4977
4983
|
cleanRoot();
|
|
4978
4984
|
appendChildren(element.childNodes);
|
|
4979
4985
|
}
|
|
@@ -5044,40 +5050,51 @@ var toJsonTemplate = (node) => {
|
|
|
5044
5050
|
};
|
|
5045
5051
|
|
|
5046
5052
|
// src/app/createComponent.ts
|
|
5047
|
-
var createComponent = (context,
|
|
5053
|
+
var createComponent = (context, templateOptions, options = {}) => {
|
|
5048
5054
|
var _a, _b, _c, _d;
|
|
5055
|
+
if (isArray(options))
|
|
5056
|
+
options = { props: options };
|
|
5057
|
+
if (isString(templateOptions))
|
|
5058
|
+
templateOptions = { template: templateOptions };
|
|
5049
5059
|
let svgHandled = false;
|
|
5050
|
-
if (
|
|
5051
|
-
const element2 =
|
|
5060
|
+
if (templateOptions.element) {
|
|
5061
|
+
const element2 = templateOptions.element;
|
|
5052
5062
|
element2.remove();
|
|
5053
|
-
|
|
5054
|
-
} else if (
|
|
5055
|
-
const element2 = document.querySelector(
|
|
5063
|
+
templateOptions.element = element2;
|
|
5064
|
+
} else if (templateOptions.selector) {
|
|
5065
|
+
const element2 = document.querySelector(templateOptions.selector);
|
|
5056
5066
|
if (!element2)
|
|
5057
|
-
throw getError(
|
|
5067
|
+
throw getError(
|
|
5068
|
+
1 /* ComponentTemplateNotFound */,
|
|
5069
|
+
templateOptions.selector
|
|
5070
|
+
);
|
|
5058
5071
|
element2.remove();
|
|
5059
|
-
|
|
5060
|
-
} else if (template
|
|
5061
|
-
const element2 = document.createRange().createContextualFragment(template
|
|
5062
|
-
|
|
5063
|
-
} else if (
|
|
5064
|
-
|
|
5072
|
+
templateOptions.element = element2;
|
|
5073
|
+
} else if (templateOptions.template) {
|
|
5074
|
+
const element2 = document.createRange().createContextualFragment(templateOptions.template);
|
|
5075
|
+
templateOptions.element = element2;
|
|
5076
|
+
} else if (templateOptions.json) {
|
|
5077
|
+
templateOptions.element = toFragment(
|
|
5078
|
+
templateOptions.json,
|
|
5079
|
+
templateOptions.isSVG,
|
|
5080
|
+
options.config
|
|
5081
|
+
);
|
|
5065
5082
|
svgHandled = true;
|
|
5066
5083
|
}
|
|
5067
|
-
if (!
|
|
5068
|
-
|
|
5084
|
+
if (!templateOptions.element)
|
|
5085
|
+
templateOptions.element = document.createDocumentFragment();
|
|
5069
5086
|
if ((_a = options.useInterpolation) != null ? _a : true)
|
|
5070
|
-
interpolate(
|
|
5071
|
-
const element =
|
|
5072
|
-
if (!svgHandled && (((_c =
|
|
5073
|
-
const content =
|
|
5087
|
+
interpolate(templateOptions.element);
|
|
5088
|
+
const element = templateOptions.element;
|
|
5089
|
+
if (!svgHandled && (((_c = templateOptions.isSVG) != null ? _c : isHTMLElement(element) && ((_b = element.hasAttribute) == null ? void 0 : _b.call(element, "isSVG"))) || isHTMLElement(element) && !!element.querySelector("[isSVG]"))) {
|
|
5090
|
+
const content = templateOptions.element.content;
|
|
5074
5091
|
const nodes = content ? [...content.childNodes] : [...element.childNodes];
|
|
5075
5092
|
const json = toJsonTemplate(nodes);
|
|
5076
|
-
|
|
5093
|
+
templateOptions.element = toFragment(json, true, options.config);
|
|
5077
5094
|
}
|
|
5078
5095
|
return {
|
|
5079
5096
|
context,
|
|
5080
|
-
template:
|
|
5097
|
+
template: templateOptions.element,
|
|
5081
5098
|
inheritAttrs: (_d = options.inheritAttrs) != null ? _d : true,
|
|
5082
5099
|
props: options.props,
|
|
5083
5100
|
defaultName: options.defaultName
|