@jasonshimmy/custom-elements-runtime 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
- (function(O,we){typeof exports=="object"&&typeof module<"u"?we(exports):typeof define=="function"&&define.amd?define(["exports"],we):(O=typeof globalThis<"u"?globalThis:O||self,we(O.CustomElementsRuntime={}))})(this,(function(O){"use strict";var we=typeof document<"u"?document.currentScript:null;const pn={BASE_URL:"/",DEV:!1,MODE:"production",PROD:!0,SSR:!1};let Ce=!1;try{const e=globalThis.process;e&&e.env?Ce=e.env.NODE_ENV!=="production":typeof{url:typeof document>"u"&&typeof location>"u"?require("url").pathToFileURL(__filename).href:typeof document>"u"?location.href:we&&we.tagName.toUpperCase()==="SCRIPT"&&we.src||new URL("custom-elements-runtime.umd.js",document.baseURI).href}<"u"&&pn?Ce=!1:Ce=typeof window<"u"}catch{Ce=!0}function F(e,...t){Ce&&console.error(e,...t)}function te(e,...t){Ce&&console.warn(e,...t)}class hn{pendingUpdates=new Map;isFlushScheduled=!1;schedule(t,n){const r=n||t;this.pendingUpdates.set(r,t),this.isFlushScheduled||(this.isFlushScheduled=!0,typeof globalThis.process<"u"&&globalThis.process.env?.NODE_ENV==="test"||typeof window<"u"&&(window.__vitest__||window.Cypress)?this.flush():queueMicrotask(()=>this.flush()))}flush(){const t=this.pendingUpdates;this.pendingUpdates=new Map,this.isFlushScheduled=!1;for(const n of t.values())try{n()}catch(r){F("Error in batched update:",r)}}get pendingCount(){return this.pendingUpdates.size}}const gn=new hn;function Ee(e,t){gn.schedule(e,t)}const jt=new WeakSet;class mn{static cache=new WeakMap;static arrayHandlerCache=new WeakMap;static objectHandlerCache=new WeakMap;static getOrCreateProxy(t,n,r=!1){const i=this.cache.get(t);if(i)return i;const o=r?this.getOrCreateArrayHandler(n):this.getOrCreateObjectHandler(n),s=new Proxy(t,o);try{Lt.markAsProxy(s)}catch{}return this.cache.set(t,s),s}static getOrCreateArrayHandler(t){if(!this.arrayHandlerCache.has(t)){const n={get:(r,i,o)=>{const s=Reflect.get(r,i,o);return typeof s=="function"&&typeof i=="string"&&["push","pop","shift","unshift","splice","sort","reverse","fill","copyWithin"].includes(i)?function(...a){const l=s.apply(r,a);return t.triggerUpdate(),l}:s},set:(r,i,o)=>(r[i]=t.makeReactiveValue(o),t.triggerUpdate(),!0),deleteProperty:(r,i)=>(delete r[i],t.triggerUpdate(),!0)};this.arrayHandlerCache.set(t,n)}return this.arrayHandlerCache.get(t)}static getOrCreateObjectHandler(t){if(!this.objectHandlerCache.has(t)){const n={get:(r,i,o)=>Reflect.get(r,i,o),set:(r,i,o)=>(r[i]=t.makeReactiveValue(o),t.triggerUpdate(),!0),deleteProperty:(r,i)=>(delete r[i],t.triggerUpdate(),!0)};this.objectHandlerCache.set(t,n)}return this.objectHandlerCache.get(t)}static hasProxy(t){return this.cache.has(t)}static clear(){this.cache=new WeakMap,this.arrayHandlerCache=new WeakMap,this.objectHandlerCache=new WeakMap}static getStats(){return{hasCachedProxies:this.cache instanceof WeakMap}}}class Lt{static contextCache=new WeakMap;static createReactiveProxy(t,n,r){try{if(jt.has(t))return t}catch{}const i=Array.isArray(t);let o=this.contextCache.get(n);o||(o=new WeakMap,this.contextCache.set(n,o));let s=o.get(r);return s||(s={triggerUpdate:n,makeReactiveValue:r},o.set(r,s)),mn.getOrCreateProxy(t,s,i)}static markAsProxy(t){if(t)try{jt.add(t)}catch{}}}class yn{currentComponent=null;componentData=new Map;stateStorage=new Map;trackingDisabled=!1;setCurrentComponent(t,n){if(this.currentComponent=t,!this.componentData.has(t))this.componentData.set(t,{dependencies:new Set,renderFn:n,stateIndex:0,lastWarnTime:0});else{const r=this.componentData.get(t);r.renderFn=n,r.stateIndex=0}}clearCurrentComponent(){this.currentComponent=null}disableTracking(){this.trackingDisabled=!0}enableTracking(){this.trackingDisabled=!1}isRenderingComponent(){return this.currentComponent!==null}shouldEmitRenderWarning(){if(!this.currentComponent)return!0;const t=this.componentData.get(this.currentComponent);if(!t)return!0;const n=Date.now();return n-t.lastWarnTime<1e3?!1:(t.lastWarnTime=n,!0)}withoutTracking(t){const n=this.trackingDisabled;this.trackingDisabled=!0;try{return t()}finally{this.trackingDisabled=n}}getOrCreateState(t){if(!this.currentComponent)return new Ue(t);const n=this.componentData.get(this.currentComponent);if(!n)return new Ue(t);const r=`${this.currentComponent}:${n.stateIndex++}`;let i=this.stateStorage.get(r);return i||(i=new Ue(t),this.stateStorage.set(r,i)),i}trackDependency(t){if(this.trackingDisabled||!this.currentComponent)return;const n=this.componentData.get(this.currentComponent);n&&(n.dependencies.add(t),t.addDependent(this.currentComponent))}triggerUpdate(t){const n=t.getDependents();for(const r of n){const i=this.componentData.get(r);i&&Ee(i.renderFn,r)}}cleanup(t){const n=this.componentData.get(t);if(n){for(const i of n.dependencies)i.removeDependent(t);this.componentData.delete(t)}const r=t+":";for(const i of this.stateStorage.keys())i.startsWith(r)&&this.stateStorage.delete(i)}}const ne=new yn;class Ue{_value;dependents=new Set;constructor(t){this._value=this.makeReactive(t);try{const n=Symbol.for("@cer/ReactiveState");Object.defineProperty(this,n,{value:!0,enumerable:!1,configurable:!1})}catch{}}get value(){return ne.trackDependency(this),this._value}set value(t){ne.isRenderingComponent()&&ne.shouldEmitRenderWarning()&&te(`🚨 State modification detected during render! This can cause infinite loops.
1
+ (function(O,we){typeof exports=="object"&&typeof module<"u"?we(exports):typeof define=="function"&&define.amd?define(["exports"],we):(O=typeof globalThis<"u"?globalThis:O||self,we(O.CustomElementsRuntime={}))})(this,(function(O){"use strict";var we=typeof document<"u"?document.currentScript:null;const yn={BASE_URL:"/",DEV:!1,MODE:"production",PROD:!0,SSR:!1};let Ce=!1;try{const e=globalThis.process;e&&e.env?Ce=e.env.NODE_ENV!=="production":typeof{url:typeof document>"u"&&typeof location>"u"?require("url").pathToFileURL(__filename).href:typeof document>"u"?location.href:we&&we.tagName.toUpperCase()==="SCRIPT"&&we.src||new URL("custom-elements-runtime.umd.js",document.baseURI).href}<"u"&&yn?Ce=!1:Ce=typeof window<"u"}catch{Ce=!0}function F(e,...t){Ce&&console.error(e,...t)}function K(e,...t){Ce&&console.warn(e,...t)}class bn{pendingUpdates=new Map;isFlushScheduled=!1;schedule(t,n){const r=n||t;this.pendingUpdates.set(r,t),this.isFlushScheduled||(this.isFlushScheduled=!0,typeof globalThis.process<"u"&&globalThis.process.env?.NODE_ENV==="test"||typeof window<"u"&&(window.__vitest__||window.Cypress)?this.flush():queueMicrotask(()=>this.flush()))}flush(){const t=this.pendingUpdates;this.pendingUpdates=new Map,this.isFlushScheduled=!1;for(const n of t.values())try{n()}catch(r){F("Error in batched update:",r)}}get pendingCount(){return this.pendingUpdates.size}}const vn=new bn;function Ee(e,t){vn.schedule(e,t)}const Mt=new WeakSet;class wn{static cache=new WeakMap;static arrayHandlerCache=new WeakMap;static objectHandlerCache=new WeakMap;static getOrCreateProxy(t,n,r=!1){const i=this.cache.get(t);if(i)return i;const o=r?this.getOrCreateArrayHandler(n):this.getOrCreateObjectHandler(n),s=new Proxy(t,o);try{Rt.markAsProxy(s)}catch{}return this.cache.set(t,s),s}static getOrCreateArrayHandler(t){if(!this.arrayHandlerCache.has(t)){const n={get:(r,i,o)=>{const s=Reflect.get(r,i,o);return typeof s=="function"&&typeof i=="string"&&["push","pop","shift","unshift","splice","sort","reverse","fill","copyWithin"].includes(i)?function(...a){const l=s.apply(r,a);return t.triggerUpdate(),l}:s},set:(r,i,o)=>(r[i]=t.makeReactiveValue(o),t.triggerUpdate(),!0),deleteProperty:(r,i)=>(delete r[i],t.triggerUpdate(),!0)};this.arrayHandlerCache.set(t,n)}return this.arrayHandlerCache.get(t)}static getOrCreateObjectHandler(t){if(!this.objectHandlerCache.has(t)){const n={get:(r,i,o)=>Reflect.get(r,i,o),set:(r,i,o)=>(r[i]=t.makeReactiveValue(o),t.triggerUpdate(),!0),deleteProperty:(r,i)=>(delete r[i],t.triggerUpdate(),!0)};this.objectHandlerCache.set(t,n)}return this.objectHandlerCache.get(t)}static hasProxy(t){return this.cache.has(t)}static clear(){this.cache=new WeakMap,this.arrayHandlerCache=new WeakMap,this.objectHandlerCache=new WeakMap}static getStats(){return{hasCachedProxies:this.cache instanceof WeakMap}}}class Rt{static contextCache=new WeakMap;static createReactiveProxy(t,n,r){try{if(Mt.has(t))return t}catch{}const i=Array.isArray(t);let o=this.contextCache.get(n);o||(o=new WeakMap,this.contextCache.set(n,o));let s=o.get(r);return s||(s={triggerUpdate:n,makeReactiveValue:r},o.set(r,s)),wn.getOrCreateProxy(t,s,i)}static markAsProxy(t){if(t)try{Mt.add(t)}catch{}}}class kn{currentComponent=null;componentData=new Map;stateStorage=new Map;trackingDisabled=!1;setCurrentComponent(t,n){if(this.currentComponent=t,!this.componentData.has(t))this.componentData.set(t,{dependencies:new Set,renderFn:n,stateIndex:0,lastWarnTime:0});else{const r=this.componentData.get(t);r.renderFn=n,r.stateIndex=0}}clearCurrentComponent(){this.currentComponent=null}disableTracking(){this.trackingDisabled=!0}enableTracking(){this.trackingDisabled=!1}isRenderingComponent(){return this.currentComponent!==null}shouldEmitRenderWarning(){if(!this.currentComponent)return!0;const t=this.componentData.get(this.currentComponent);if(!t)return!0;const n=Date.now();return n-t.lastWarnTime<1e3?!1:(t.lastWarnTime=n,!0)}withoutTracking(t){const n=this.trackingDisabled;this.trackingDisabled=!0;try{return t()}finally{this.trackingDisabled=n}}getOrCreateState(t){if(!this.currentComponent)return new Ue(t);const n=this.componentData.get(this.currentComponent);if(!n)return new Ue(t);const r=`${this.currentComponent}:${n.stateIndex++}`;let i=this.stateStorage.get(r);return i||(i=new Ue(t),this.stateStorage.set(r,i)),i}trackDependency(t){if(this.trackingDisabled||!this.currentComponent)return;const n=this.componentData.get(this.currentComponent);n&&(n.dependencies.add(t),t.addDependent(this.currentComponent))}triggerUpdate(t){const n=t.getDependents();for(const r of n){const i=this.componentData.get(r);i&&Ee(i.renderFn,r)}}cleanup(t){const n=this.componentData.get(t);if(n){for(const i of n.dependencies)i.removeDependent(t);this.componentData.delete(t)}const r=t+":";for(const i of this.stateStorage.keys())i.startsWith(r)&&this.stateStorage.delete(i)}}const te=new kn;class Ue{_value;dependents=new Set;constructor(t){this._value=this.makeReactive(t);try{const n=Symbol.for("@cer/ReactiveState");Object.defineProperty(this,n,{value:!0,enumerable:!1,configurable:!1})}catch{}}get value(){return te.trackDependency(this),this._value}set value(t){te.isRenderingComponent()&&te.shouldEmitRenderWarning()&&K(`🚨 State modification detected during render! This can cause infinite loops.
2
2
  • Move state updates to event handlers
3
3
  • Use useEffect/watch for side effects
4
- • Ensure computed properties don't modify state`),this._value=this.makeReactive(t),ne.triggerUpdate(this)}addDependent(t){this.dependents.add(t)}removeDependent(t){this.dependents.delete(t)}getDependents(){return this.dependents}makeReactive(t){return t===null||typeof t!="object"||t instanceof Node||t instanceof Element||t instanceof HTMLElement?t:Lt.createReactiveProxy(t,()=>ne.triggerUpdate(this),n=>this.makeReactive(n))}}function it(e){return ne.getOrCreateState(e===void 0?null:e)}function D(e){if(!e||typeof e!="object")return!1;try{const t=Symbol.for("@cer/ReactiveState");return!!e[t]}catch{return!1}}function ge(e){const t=new Ue(e());return{get value(){return ne.trackDependency(t),e()}}}function bn(e,t,n={}){let r=e();n.immediate&&t(r,r);const i=`watch-${Math.random().toString(36).substr(2,9)}`,o=()=>{ne.setCurrentComponent(i,o);const s=e();ne.clearCurrentComponent(),s!==r&&(t(s,r),r=s)};return ne.setCurrentComponent(i,o),e(),ne.clearCurrentComponent(),()=>{ne.cleanup(i)}}const N=e=>{try{e()}catch{}},qe=new Map,Ke=new Map,Ve=new Map,ot=500;let Ot,Pt,Mt=!1,Nt=!1,Rt;const vn=!!(globalThis.process&&globalThis.process.versions&&globalThis.process.versions.node);function oe(e){if(qe.has(e))return qe.get(e);const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();return qe.size<ot&&qe.set(e,t),t}function st(e){if(Ke.has(e))return Ke.get(e);const t=e.replace(/-([a-z])/g,(n,r)=>r.toUpperCase());return Ke.size<ot&&Ke.set(e,t),t}function Ge(e){if(typeof e=="string"){if(Ve.has(e))return Ve.get(e);const t=e.replace(/[&<>"']/g,n=>({"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"})[n]);return t!==e&&Ve.size<ot&&Ve.set(e,t),t}return e}function ce(e){if(!e)return"";const t=String(e);if(typeof document<"u"&&typeof document.createElement=="function"){const c=t.replace(/</g,"").replace(/>/g,""),a=Rt||(Rt=document.createElement("div"));try{ce._el=a}catch{}return a.innerHTML=c,(a.textContent||"").replace(new RegExp("","g"),"<").replace(new RegExp("","g"),">")}const n={lt:"<",gt:">",amp:"&",quot:'"',apos:"'",nbsp:" "},r=Ot??ce._namedMap;let i=r;if(!i&&vn)try{const o=globalThis.require;if(typeof o=="function"){const s=["@jasonshimmy/custom-elements-runtime/entities.json","../../entities.json","../../../entities.json","../entities.json","./entities.json"];for(const c of s)try{const a=o(c);if(a){i=a;break}}catch{}}}catch{}if(!i){i=n,Mt=!0;try{ce._usedFallback=!0}catch{}const o=ce._namedMapLoader??Pt;o&&o().then(s=>{Ot=s;try{ce._namedMap=s}catch{}}).catch(()=>{})}if((Mt||ce._usedFallback)&&!(Nt||ce._warnedFallback)){Nt=!0;try{ce._warnedFallback=!0}catch{}try{te("decodeEntities: using small SSR fallback entity map. Register the full entities.json via registerEntityMap(entities) on the server to enable full HTML5 named-entity decoding.")}catch{}}return t.replace(/&(#x?[0-9a-fA-F]+|[a-zA-Z]+);/g,(o,s)=>{if(s.charCodeAt(0)===35){const l=(s.charAt(1)||"").toLowerCase()==="x"?parseInt(s.slice(2),16):parseInt(s.slice(1),10);return Number.isNaN(l)?`&${s};`:String.fromCodePoint(l)}const c=i[s]??(r&&r[s]);return c!==void 0?c:`&${s};`})}async function Dt(){const e=["@jasonshimmy","custom-elements-runtime","entities.json"].join("/");try{const t=await import(e);return t&&(t.default||t)}catch{try{const t=[e,"./entities.json","../../entities.json","../../../entities.json"];for(const n of t)try{const r=await import(n);if(r)return r&&(r.default||r)}catch{}return{lt:"<",gt:">",amp:"&",quot:'"',apos:"'",nbsp:" "}}catch{return{lt:"<",gt:">",amp:"&",quot:'"',apos:"'",nbsp:" "}}}}Pt=Dt,ce._namedMapLoader=Dt;function wn(e){const t=String(e);return{__unsafeHTML:t,__rawHTML:t}}function Ht(e){return!!e&&(typeof e.__unsafeHTML=="string"||typeof e.__rawHTML=="string")}function J(e,t){if(typeof t=="string"){const n=t.split(".").reduce((r,i)=>r?.[i],e);return D(n)?n.value:n}return t}function Ze(e,t,n){const r=String(t).split("."),i=r.pop();if(!i)return;const o=r.reduce((s,c)=>(s[c]==null&&(s[c]={}),s[c]),e);D(o[i])?o[i].value=n:o[i]=n}function kn(e){try{if(e&&typeof e=="object"){if(D(e))return e.value;if("value"in e){const t=e.value;return t==null||typeof t=="string"||typeof t=="number"||typeof t=="boolean"?t:e}}}catch{}return e}function X(e){const t=kn(e);if(t==null)return null;const n=typeof t;return n==="string"||n==="number"||n==="boolean"?String(t):null}function Ft(e){if(!e||typeof e!="string")return!1;if(e==="class"||e.endsWith("Class"))return!0;if(e.includes("-"))try{if(e.split("-").some(n=>n==="class"))return!0}catch{}return!1}function xn(e,t,n){if(n)for(const[r,i]of Object.entries(n)){let o,s={};if(Array.isArray(i)?(o=i[0],s=i[1]||{}):o=i,t.set(r,{callback:o,options:s,oldValue:J(e,r)}),s.immediate)try{const c=J(e,r);o(c,void 0,e)}catch(c){F(`Error in immediate watcher for "${r}":`,c)}}}function $n(e,t,n,r){const i=(s,c)=>{if(s===c)return!0;if(typeof s!=typeof c||typeof s!="object"||s===null||c===null)return!1;if(Array.isArray(s)&&Array.isArray(c))return s.length!==c.length?!1:s.every((m,y)=>i(m,c[y]));const a=Object.keys(s),l=Object.keys(c);return a.length!==l.length?!1:a.every(m=>i(s[m],c[m]))},o=t.get(n);if(o&&!i(r,o.oldValue))try{o.callback(r,o.oldValue,e),o.oldValue=r}catch(s){F(`Error in watcher for "${n}":`,s)}for(const[s,c]of t.entries())if(c.options.deep&&n.startsWith(s+"."))try{const a=J(e,s);i(a,c.oldValue)||(c.callback(a,c.oldValue,e),c.oldValue=a)}catch(a){F(`Error in deep watcher for "${s}":`,a)}}function It(e,t){return t===Boolean?e===""||e==="true":t===Number?Number(e):e}function Cn(e,t,n){if(t)for(const r in t){const i=t[r],o=oe(r),s=e.getAttribute(o);if(i.type===Function&&typeof e[r]=="function")n[r]=e[r];else if(s!==null)n[r]=It(s,i.type);else if(typeof e[r]<"u")try{const c=e[r];i.type===Boolean&&typeof c=="boolean"||i.type===Number&&typeof c=="number"||i.type===Function&&typeof c=="function"?n[r]=c:n[r]=It(String(c),i.type)}catch{n[r]=e[r]}else"default"in i&&i.default!==void 0&&(n[r]=i.default)}}function En(e,t,n){if(!t.props){try{const r=n&&n._hookCallbacks&&n._hookCallbacks.props||{},i=Array.from(new Set([...Object.keys(e),...Object.keys(r)]));for(const o of i){if(typeof o!="string"||o.startsWith("_"))continue;const s=Object.getOwnPropertyDescriptor(n,o);if(!(!Object.prototype.hasOwnProperty.call(r,o)&&s&&(s.get||s.set||!s.configurable)))try{Object.defineProperty(n,o,{enumerable:!0,configurable:!0,get(){try{const a=oe(o),l=e.getAttribute(a);if(l!==null)return l;const m=e[o];let y;return D(m)||m&&typeof m=="object"&&"value"in m&&!(m instanceof Node)?y=m.value:y=m,y}catch{return e[o]}}})}catch{}}}catch{}return}Cn(e,t.props,n)}function _n(e,t,n,r){e.onConnected&&!n&&(e.onConnected(t),r(!0))}function An(e,t,n,r,i,o,s,c){e.onDisconnected&&e.onDisconnected(t),n.forEach(a=>a()),r(),i(),o(!1),s(null),c(!1)}function Sn(e,t,n,r,i){e.onAttributeChanged&&e.onAttributeChanged(t,n,r,i)}class Tn{static cache=new Map;static maxCacheSize=1e3;static dangerousPatterns=[/constructor/i,/prototype/i,/__proto__/i,/function/i,/eval/i,/import/i,/require/i,/window/i,/document/i,/global/i,/process/i,/setTimeout/i,/setInterval/i,/fetch/i,/XMLHttpRequest/i];static evaluate(t,n){const r=this.cache.get(t);if(r){if(!r.isSecure){te("Blocked cached dangerous expression:",t);return}return r.evaluator(n)}const i=this.createEvaluator(t);if(this.cache.size>=this.maxCacheSize){const o=this.cache.keys().next().value;o&&this.cache.delete(o)}if(this.cache.set(t,i),!i.isSecure){te("Blocked dangerous expression:",t);return}return i.evaluator(n)}static createEvaluator(t){if(this.hasDangerousPatterns(t))return{evaluator:()=>{},isSecure:!1};if(t.length>1e3)return{evaluator:()=>{},isSecure:!1};try{return{evaluator:this.createSafeEvaluator(t),isSecure:!0}}catch(n){return te("Failed to create evaluator for expression:",t,n),{evaluator:()=>{},isSecure:!1}}}static hasDangerousPatterns(t){return this.dangerousPatterns.some(n=>n.test(t))}static createSafeEvaluator(t){const n=t.trim();if(n.startsWith("{")&&n.endsWith("}"))return this.createObjectEvaluator(t);if(/^ctx\.[a-zA-Z0-9_\.]+$/.test(t.trim())){const r=t.trim().slice(4);return i=>J(i,r)}return t.includes("ctx")||/[+\-*/%<>=&|?:\[\]]/.test(t)?this.createSimpleEvaluator(t):r=>J(r,t)}static createObjectEvaluator(t){const n=t.trim().slice(1,-1),r=this.parseObjectProperties(n);return i=>{const o={};for(const{key:s,value:c}of r)try{if(c.startsWith("ctx.")){const a=c.slice(4);o[s]=J(i,a)}else o[s]=this.evaluateSimpleValue(c,i)}catch{o[s]=void 0}return o}}static parseObjectProperties(t){const n=[],r=t.split(",");for(const i of r){const o=i.indexOf(":");if(o===-1)continue;const s=i.slice(0,o).trim(),c=i.slice(o+1).trim(),a=s.replace(/^['"]|['"]$/g,"");n.push({key:a,value:c})}return n}static createSimpleEvaluator(t){return n=>{try{let r=t;const i=[];r=r.replace(/("[^"\\]*(?:\\.[^"\\]*)*"|'[^'\\]*(?:\\.[^'\\]*)*')/g,y=>`<<#${i.push(y)-1}#>>`);const o=r.match(/ctx\.[\w.]+/g)||[];for(const y of o){const p=y.slice(4),v=J(n,p);if(v===void 0)return;const f=i.push(JSON.stringify(v))-1;r=r.replace(new RegExp(y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g"),`<<#${f}#>>`)}const s=/\b[a-zA-Z_][a-zA-Z0-9_]*(?:\.[a-zA-Z_][a-zA-Z0-9_]*)+\b/g,c=r.match(s)||[];for(const y of c){if(y.startsWith("ctx."))continue;const p=J(n,y);if(p===void 0)return;const v=i.push(JSON.stringify(p))-1;r=r.replace(new RegExp(y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g"),`<<#${v}#>>`)}const a=/\b([a-zA-Z_][a-zA-Z0-9_]*)\b/g;let l;const m=new Set;for(;(l=a.exec(r))!==null;){const y=l[1];if(["true","false","null","undefined"].includes(y)||/^[0-9]+$/.test(y)||y==="ctx"||m.has(y))continue;m.add(y);const p=J(n,y);if(p===void 0)return;const v=JSON.stringify(p),f=i.push(v)-1;y.includes(".")?r=r.replace(new RegExp(y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g"),`<<#${f}#>>`):r=r.replace(new RegExp("\\b"+y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")+"\\b","g"),`<<#${f}#>>`)}r=r.replace(/<<#(\d+)#>>/g,(y,p)=>i[Number(p)]);try{return this.evaluateBasicExpression(r)}catch{return}}catch{return}}}static evaluateBasicExpression(t){const n=this.tokenize(t);let r=0;function i(){return n[r]}function o(u){const g=n[r++];if(u&&!g)throw new Error(`Unexpected token EOF, expected ${u}`);if(u&&g&&g.type!==u&&g.value!==u)throw new Error(`Unexpected token ${g.type}/${g.value}, expected ${u}`);return g}function s(){return c()}function c(){let u=a();if(i()&&i().value==="?"){o("?");const g=s();o(":");const w=s();return u?g:w}return u}function a(){let u=l();for(;i()&&i().value==="||";){o("OP");const g=l();u=u||g}return u}function l(){let u=m();for(;i()&&i().value==="&&";){o("OP");const g=m();u=u&&g}return u}function m(){let u=y();for(;i()&&["==","!=","===","!=="].includes(i().value);){const g=o("OP").value,w=y();switch(g){case"==":u=u==w;break;case"!=":u=u!=w;break;case"===":u=u===w;break;case"!==":u=u!==w;break}}return u}function y(){let u=p();for(;i()&&[">","<",">=","<="].includes(i().value);){const g=o("OP").value,w=p();switch(g){case">":u=u>w;break;case"<":u=u<w;break;case">=":u=u>=w;break;case"<=":u=u<=w;break}}return u}function p(){let u=v();for(;i()&&(i().value==="+"||i().value==="-");){const g=o("OP").value,w=v();u=g==="+"?u+w:u-w}return u}function v(){let u=f();for(;i()&&(i().value==="*"||i().value==="/"||i().value==="%");){const g=o("OP").value,w=f();switch(g){case"*":u=u*w;break;case"/":u=u/w;break;case"%":u=u%w;break}}return u}function f(){return i()&&i().value==="!"?(o("OP"),!f()):i()&&i().value==="-"?(o("OP"),-f()):h()}function h(){const u=i();if(u){if(u.type==="NUMBER")return o("NUMBER"),Number(u.value);if(u.type==="STRING")return o("STRING"),u.value.slice(1,-1);if(u.type==="IDENT")return o("IDENT"),u.value==="true"?!0:u.value==="false"?!1:u.value==="null"?null:void 0;if(u.value==="["){o("PUNC");const g=[];for(;i()&&i().value!=="]";)g.push(s()),i()&&i().value===","&&o("PUNC");return o("PUNC"),g}if(u.value==="("){o("PUNC");const g=s();return o("PUNC"),g}throw new Error("Unexpected token in expression")}}return s()}static tokenize(t){const n=[],r=/\s*(=>|===|!==|==|!=|>=|<=|\|\||&&|[()?:,\[\]]|\+|-|\*|\/|%|>|<|!|\d+\.?\d*|"[^"]*"|'[^']*'|[a-zA-Z_][a-zA-Z0-9_]*|\S)\s*/g;let i;for(;(i=r.exec(t))!==null;){const o=i[1];o&&(/^\d/.test(o)?n.push({type:"NUMBER",value:o}):/^"/.test(o)||/^'/.test(o)?n.push({type:"STRING",value:o}):/^[a-zA-Z_]/.test(o)?n.push({type:"IDENT",value:o}):/^[()?:,\[\]]$/.test(o)?n.push({type:"PUNC",value:o}):n.push({type:"OP",value:o}))}return n}static evaluateSimpleValue(t,n){if(t==="true")return!0;if(t==="false")return!1;if(!isNaN(Number(t)))return Number(t);if(t.startsWith("ctx.")){const r=t.slice(4);return J(n,r)}return t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'")?t.slice(1,-1):t}static clearCache(){this.cache.clear()}static getCacheSize(){return this.cache.size}}class le{static cleanupFunctions=new WeakMap;static addListener(t,n,r,i){t.addEventListener(n,r,i);const s={event:n,handler:r,wrapper:r,options:i,cleanup:()=>t.removeEventListener(n,r,i),addedAt:Date.now()};this.cleanupFunctions.has(t)||this.cleanupFunctions.set(t,[]);const c=this.cleanupFunctions.get(t);c.push(s),c.__metaList=c}static removeListener(t,n,r,i){t.removeEventListener(n,r,i);const o=this.cleanupFunctions.get(t);if(o)for(let s=0;s<o.length;s++){const c=o[s];if(c.event===n&&c.handler===r){o.splice(s,1),o.length===0&&this.cleanupFunctions.delete(t);return}}}static cleanup(t){const n=this.cleanupFunctions.get(t);n&&(n.forEach(r=>{try{r.cleanup()}catch{}}),this.cleanupFunctions.delete(t))}static cleanupAll(){this.cleanupFunctions=new WeakMap}static hasListeners(t){const n=this.cleanupFunctions.get(t);return!!(n&&n.length>0)}static getListenerCount(t){const n=this.cleanupFunctions.get(t);return n?n.length:0}static getListenerInfo(t){const n=this.cleanupFunctions.get(t);return n?n.map(r=>({event:r.event,handler:r.handler,wrapper:r.wrapper,options:r.options})):[]}}function Je(e,t){return Array.isArray(e)&&Array.isArray(t)?JSON.stringify([...e].sort())!==JSON.stringify([...t].sort()):e!==t}function Wt(e,t,n,r,i){if(e)if(i&&typeof t.value=="object"&&t.value!==null){const o={...t.value};o[i]=n,t.value=o}else t.value=n;else{const o=r._state||r;Ze(o,t,n)}}function Xe(e,t,n,r){if(e._requestRender&&e._requestRender(),e._triggerWatchers){const i=t?"reactiveState":n;e._triggerWatchers(i,r)}}function jn(e,t,n){const r=`update:${oe(t)}`,i=`update:${t}`,o=new CustomEvent(r,{detail:n,bubbles:!0,composed:!0}),s=new CustomEvent(i,{detail:n,bubbles:!0,composed:!0});e.dispatchEvent(o),e.dispatchEvent(s)}function Bt(e,t,n,r){const i=n;N(()=>{e[t]=i}),N(()=>{const o=oe(t);if(typeof i=="boolean"){const s=X(i);s!==null?e.setAttribute(o,s):e.removeAttribute?.(o)}else if(i!=null&&(typeof i=="string"||typeof i=="number"))e.setAttribute(o,String(i));else{const s=X(i);s!==null?e.setAttribute(o,s):e.removeAttribute?.(o)}}),N(()=>{e._applyProps?.(e._cfg)}),N(()=>{e._requestRender?.()})}function Ln(e,t,n,r){if(e){const o=t.value;return r&&typeof o=="object"&&o!==null?o[r]:o}const i=n._state||n;return J(i,t)}function _e(e){return e?e.split(/\s+/).filter(Boolean):[]}function Ae(e,t){if(t.length===0)return;const n=t.filter(r=>r&&!e.classList.contains(r));n.length>0&&e.classList.add(...n)}function Se(e,t){if(t.length===0)return;const n=t.filter(Boolean);n.length>0&&e.classList.remove(...n)}let at=!1;async function On(e,t,n=10){if(!at){if(!e.isConnected){te("⚠️ Element not connected to DOM, skipping style wait");return}for(let r=0;r<n;r++){const i=window.getComputedStyle(e),o=i.transform&&i.transform!=="",s=i.opacity&&i.opacity!=="";if(o||s){at=!0;return}await new Promise(c=>requestAnimationFrame(()=>c(void 0)))}at=!0,te("⚠️ Styles did not load in time for transition, continuing anyway")}}function Pn(e){const t=window.getComputedStyle(e),n=t.transitionDuration||"0s",r=t.transitionDelay||"0s",i=o=>{const s=parseFloat(o);return o.includes("ms")?s:s*1e3};return i(n)+i(r)}function zt(e,t){return new Promise(n=>{const r=t??Pn(e);if(r<=0){n();return}let i=!1;const o=()=>{i||(i=!0,e.removeEventListener("transitionend",s),e.removeEventListener("transitioncancel",s),n())},s=()=>o();e.addEventListener("transitionend",s),e.addEventListener("transitioncancel",s),setTimeout(o,r+50)})}async function Ne(e,t){const{classes:n,hooks:r,css:i,duration:o}=t;if(r?.onBeforeEnter)try{r.onBeforeEnter(e)}catch(f){F("Transition onBeforeEnter error:",f)}if(!i)return r?.onEnter?new Promise(f=>{r.onEnter(e,()=>{if(r?.onAfterEnter)try{r.onAfterEnter(e)}catch(h){F("Transition onAfterEnter error:",h)}f()})}):void 0;const s=_e(n?.enterFrom),c=_e(n?.enterActive),a=_e(n?.enterTo);Ae(e,s),e.offsetHeight,Ae(e,c),e.offsetHeight;let l;if(r?.onEnter){const f=new Promise(h=>{l=h});try{r.onEnter(e,()=>{l&&l()})}catch(h){F("Transition onEnter error:",h)}l&&await f}await new Promise(f=>requestAnimationFrame(()=>f(void 0))),e.offsetHeight;const m=window.getComputedStyle(e),y=m.transform,p=m.opacity;Se(e,s),y&&y!=="none"&&(e.style.transform=y),p&&p!==""&&(e.style.opacity=p),e.offsetHeight,await new Promise(f=>requestAnimationFrame(()=>f(void 0))),e.style.transform="",e.style.opacity="",Ae(e,a),e.offsetHeight,await new Promise(f=>requestAnimationFrame(()=>f(void 0)));let v;if(typeof o=="number"?v=o:o&&typeof o=="object"&&"enter"in o&&(v=o.enter),await zt(e,v),Se(e,c),r?.onAfterEnter)try{r.onAfterEnter(e)}catch(f){F("Transition onAfterEnter error:",f)}}async function ct(e,t){const{classes:n,hooks:r,css:i,duration:o}=t;if(r?.onBeforeLeave)try{r.onBeforeLeave(e)}catch(y){F("Transition onBeforeLeave error:",y)}if(!i)return r?.onLeave?new Promise(y=>{r.onLeave(e,()=>{if(r?.onAfterLeave)try{r.onAfterLeave(e)}catch(p){F("Transition onAfterLeave error:",p)}y()})}):void 0;const s=_e(n?.leaveFrom),c=_e(n?.leaveActive),a=_e(n?.leaveTo);Ae(e,s),e.offsetHeight,Ae(e,c);let l;if(r?.onLeave){const y=new Promise(p=>{l=p});try{r.onLeave(e,()=>{l&&l()})}catch(p){F("Transition onLeave error:",p)}l&&await y}await new Promise(y=>requestAnimationFrame(()=>y(void 0))),await On(e,[...s,...c]),Se(e,s),Ae(e,a);let m;if(typeof o=="number"?m=o:o&&typeof o=="object"&&"leave"in o&&(m=o.leave),await zt(e,m),Se(e,c),Se(e,a),Se(e,s),r?.onAfterLeave)try{r.onAfterLeave(e)}catch(y){F("Transition onAfterLeave error:",y)}}const Ut=new WeakMap,qt=new WeakMap;function Ye(e){if(!e)return;const t=Ut.get(e);if(t!==void 0)return t;try{const n=e;if(n&&n.key!=null)return n.key}catch{}if(e instanceof Element){const n=e.getAttribute("data-anchor-key");if(n)return n}}function re(e,t){try{Ut.set(e,t)}catch{}try{e.key=t}catch{}try{if(e instanceof Element){const n=X(t);n!==null&&e.setAttribute("data-anchor-key",n)}}catch{}}function Mn(e){if(!e)return;const t=qt.get(e);if(t!==void 0)return t;try{const n=e;if(n&&n._transitionGroup!=null)return n._transitionGroup}catch{}}function Nn(e,t){try{qt.set(e,t)}catch{}try{e._transitionGroup=t}catch{}}function se(e){return e instanceof HTMLInputElement||e instanceof HTMLSelectElement||e instanceof HTMLTextAreaElement||e instanceof HTMLButtonElement}function Te(e){return e===""?!0:typeof e=="string"?e==="false"?!1:e==="true"?!0:e!=="":e&&typeof e=="object"?D(e)||"value"in e?!!e.value:!1:!!e}function ke(e,t){if(!t||!(e instanceof HTMLElement))return;le.cleanup(e);for(const r in t)t[r]===e&&delete t[r];const n=e.childNodes;for(let r=0;r<n.length;r++)ke(n[r],t)}function Re(e,t,n){if(typeof e=="string")return;const r=e.props?.reactiveRef??(e.props?.props&&e.props.props.reactiveRef),i=e.props?.ref??(e.props?.props&&e.props.props.ref);r?r.value=t:i&&n&&(n[i]=t)}function Rn(e,t,n,r,i,o,s,c){if(!o)return;const a=t.includes("lazy"),l=t.includes("trim"),m=t.includes("number"),y=e&&typeof e=="object"&&"value"in e&&typeof e.value<"u",p=()=>{if(y){const x=e.value;return c&&s&&(s instanceof HTMLInputElement||s instanceof HTMLTextAreaElement||s instanceof HTMLSelectElement)&&typeof x=="object"&&x!==null?x[c]:x}return J(o._state||o,e)},v=p();let f="text";s instanceof HTMLInputElement?f=r?.type||s.type||"text":s instanceof HTMLSelectElement?f="select":s instanceof HTMLTextAreaElement&&(f="textarea");const h=s instanceof HTMLInputElement||s instanceof HTMLTextAreaElement||s instanceof HTMLSelectElement,u=h?f==="checkbox"||f==="radio"?"checked":"value":c??"modelValue";if(f==="checkbox")if(Array.isArray(v))n[u]=v.includes(String(s?.getAttribute("value")??r?.value??""));else{const x=s?.getAttribute("true-value")??!0;n[u]=v===x}else if(f==="radio")n[u]=v===(r?.value??"");else if(f==="select")if(s&&s.hasAttribute("multiple")&&s instanceof HTMLSelectElement){const x=Array.isArray(v)?v.map(String):[];setTimeout(()=>{Array.from(s.options).forEach(S=>{S.selected=x.includes(S.value)})},0),n[u]=Array.isArray(v)?v:[]}else n[u]=v;else{!h&&y?n[u]=e:n[u]=v;try{const x=oe(u);r&&(r[x]=v)}catch{}}const g=a||f==="checkbox"||f==="radio"||f==="select"?"change":"input",w=x=>{if(x.isComposing||i._isComposing)return;const S=typeof globalThis.process<"u"&&globalThis.process.env?.NODE_ENV==="test"||typeof window<"u"&&window.__vitest__;if(x.isTrusted===!1&&!S)return;const C=x.target;if(!C||C._modelUpdating)return;let _=C.value;if(f==="checkbox"){const $=p();if(Array.isArray($)){const b=C.getAttribute("value")??"",A=Array.from($);if(C.checked)A.includes(b)||A.push(b);else{const P=A.indexOf(b);P>-1&&A.splice(P,1)}_=A}else{const b=C.getAttribute("true-value")??!0,A=C.getAttribute("false-value")??!1;_=C.checked?b:A}}else if(f==="radio")_=C.getAttribute("value")??C.value;else if(f==="select"&&C.multiple)_=Array.from(C.selectedOptions).map($=>$.value);else if(l&&typeof _=="string"&&(_=_.trim()),m){const $=Number(_);isNaN($)||(_=$)}const k=p();if(Je(_,k)){C._modelUpdating=!0;try{Wt(y,e,_,o,c),Xe(o,y,e,_),C&&jn(C,u,_)}finally{setTimeout(()=>C._modelUpdating=!1,0)}}};if(h){if(i[g]){const x=i[g];s&&le.removeListener(s,g,x)}i[g]=w}else{const x=`update:${oe(u)}`,S=`update:${u}`;if(i[x]){const C=i[x];s&&le.removeListener(s,x,C)}if(i[S]){const C=i[S];s&&le.removeListener(s,S,C)}if(i[x]=C=>{const _=C.detail!==void 0?C.detail:C.target?.value,k=Ln(y,e,o,c);if(Je(_,k)){Wt(y,e,_,o,c),Xe(o,y,e,_);const $=C.target;$&&Bt($,u,y?e:_,y)}},y&&typeof e.value=="object"&&e.value!==null){let C=[];try{C=Reflect.ownKeys(e.value)}catch{C=Object.keys(e.value)}const _=C.filter(k=>typeof k=="string"&&!String(k).startsWith("_")&&k!=="constructor");for(const k of _){const T=`update:${oe(k)}`,$=`update:${k}`;i[T]||(i[T]=b=>{const A=b.detail!==void 0?b.detail:b.target?.value,P=y?e.value[k]:J(o._state||o,e);if(!Je(A,P))return;if(y){const M={...e.value};M[k]=A,e.value=M}else Ze(o._state||o,e,A);Xe(o,y,e,A);const E=b.currentTarget||s||b.target;E&&Bt(E,u,y?e:A,y)},i[$]=i[T])}}i[S]=i[x]}(f==="text"||f==="textarea")&&(i.compositionstart=()=>i._isComposing=!0,i.compositionend=x=>{i._isComposing=!1;const S=x.target;S&&setTimeout(()=>{const C=S.value,_=o._state||o,k=J(_,e);let T=C;if(l&&(T=T.trim()),m){const b=Number(T);isNaN(b)||(T=b)}if(Je(T,k)){S._modelUpdating=!0;try{Ze(_,e,T),Xe(o,y,e,T)}finally{setTimeout(()=>S._modelUpdating=!1,0)}}},0)})}function Kt(e){const t=e.slice(2);return t?t.charAt(0).toLowerCase()+t.slice(1):""}function Dn(e,t,n,r,i){if(typeof e=="object"&&e!==null)for(const[o,s]of Object.entries(e))if(o.startsWith("data-")||o.startsWith("aria-")||o==="class")n[o]=s;else if(o==="disabled"&&i&&se(i)){const c=s&&typeof s=="object"&&"value"in s;(()=>{try{return D(s)}catch{return!1}})()||c?t[o]=s:n[o]=s}else t[o]=s;else if(typeof e=="string"){if(!r)return;try{const o=De(e,r);if(typeof o=="object"&&o!==null){for(const[s,c]of Object.entries(o))if(s.startsWith("data-")||s.startsWith("aria-")||s==="class")n[s]=c;else if(s==="disabled"&&i&&se(i)){const a=c&&typeof c=="object"&&"value"in c;(()=>{try{return D(c)}catch{return!1}})()||a?t[s]=c:n[s]=c}else t[s]=c;return}else{n[e]=o;return}}catch{const o=J(r,e);n[e]=o}}}function Hn(e,t,n){let r;if(typeof e=="string"){if(!n)return;r=De(e,n)}else r=e;const i=t.style||"";let o=i;if(r){if(i){const s=i.split(";").map(a=>a.trim()).filter(Boolean),c=s.findIndex(a=>a.startsWith("display:"));c>=0&&s[c]==="display: none"&&(s.splice(c,1),o=s.length>0?s.join("; ")+";":"")}}else if(i){const s=i.split(";").filter(Boolean),c=s.findIndex(a=>a.trim().startsWith("display:"));c>=0?s[c]="display: none":s.push("display: none"),o=s.join("; ")}else o="display: none";o!==i&&(o?t.style=o:delete t.style)}function De(e,t){return Tn.evaluate(e,t)}function Fn(e,t,n){let r;if(typeof e=="string"){if(!n)return;r=De(e,n)}else r=e;try{if(r&&typeof r=="object"){if(D(r))r=r.value;else if("value"in r&&typeof r.value<"u"){const c=r.value;c instanceof Node||(r=c)}}}catch{}let i=[];if(typeof r=="string")i=[r];else if(Array.isArray(r))i=r.filter(Boolean);else if(typeof r=="object"&&r!==null)for(const[c,a]of Object.entries(r))a&&i.push(c);const o=t.class||"",s=i.join(" ");t.class=o?`${o} ${s}`.trim():s}function lt(e){if(e===!0||e===!1)return!0;if(e==null)return!1;if(typeof e==="string")return e===""||e==="true"||e==="false";try{if(e&&typeof e=="object"&&"value"in e){const n=e.value,r=typeof n;return r==="boolean"?!0:r==="string"?n===""||n==="true"||n==="false":!1}}catch{}return!1}function In(e,t,n){let r;if(typeof e=="string"){if(!n)return;r=De(e,n)}else r=e;let i="";if(typeof r=="string")i=r;else if(r&&typeof r=="object"){const s=[];for(const[c,a]of Object.entries(r))if(a!=null&&a!==""){const l=c.replace(/[A-Z]/g,p=>`-${p.toLowerCase()}`),m=["width","height","top","right","bottom","left","margin","margin-top","margin-right","margin-bottom","margin-left","padding","padding-top","padding-right","padding-bottom","padding-left","font-size","line-height","border-width","border-radius","min-width","max-width","min-height","max-height"];let y=String(a);typeof a=="number"&&m.includes(l)&&(y=`${a}px`),s.push(`${l}: ${y}`)}i=s.join("; ")+(s.length>0?";":"")}const o=t.style||"";t.style=o+(o&&!o.endsWith(";")?"; ":"")+i}function Wn(e,t,n){let r=e;typeof e=="string"&&n&&(r=De(e,n)),D(r)?t.reactiveRef=r:t.ref=r}function Vt(e,t,n,r){const i={},o={...r||{}},s={};for(const[c,a]of Object.entries(e)){const{value:l,modifiers:m,arg:y}=a;if(c==="model"||c.startsWith("model:")){const p=c.split(":"),v=p.length>1?p[1]:y;Rn(l,m,i,o,s,t,n,v);continue}switch(c){case"bind":Dn(l,i,o,t,n);break;case"show":Hn(l,o,t);break;case"class":Fn(l,o,t);break;case"style":In(l,o,t);break;case"ref":Wn(l,i,t);break}}try{if(Object.prototype.hasOwnProperty.call(i,"disabled")&&n&&se(n)){const a=i.disabled,l=a&&typeof a=="object"&&"value"in a;let m=!1;try{m=D(a)}catch{m=!1}if(!l&&!m)try{o.disabled=a,delete i.disabled;const y=globalThis;y.__VDOM_DISABLED_PROMOTIONS||(y.__VDOM_DISABLED_PROMOTIONS=[]),y.__VDOM_DISABLED_PROMOTIONS.push({phase:"bind-directive:postfix-move",location:"attrs",key:"disabled",value:a,time:Date.now(),stack:new Error().stack})}catch{}}}catch{}return{props:i,attrs:o,listeners:s}}function ut(e,t){if(Array.isArray(e)){const o=new Set;return e.map(s=>{if(!s||typeof s!="object")return s;let c=s.props?.key??s.key;if(!c){const y=s.tag||"node",v=[s.props?.attrs?.id,s.props?.attrs?.name,s.props?.attrs?.["data-key"],s.props?.props?.id,s.props?.props?.name,s.props?.props?.dataKey,s.props?.props?.["data-key"]].find(f=>f!=null)??"";c=v?`${t}:${y}:${v}`:`${t}:${y}`}let a=c,l=1;for(;o.has(a);)a=`${c}#${l++}`;o.add(a);let m=s.children;return Array.isArray(m)&&(m=ut(m,a)),{...s,key:a,children:m}})}const n=e;let r=n.props?.key??n.key??t,i=n.children;return Array.isArray(i)&&(i=ut(i,r)),{...n,key:r,children:i}}function Gt(e,t,n,r){const i=n.directives??{},o=Vt(i,r,e,n.attrs),s={...t.props,...n.props,...o.props},c={...t.attrs,...n.attrs,...o.attrs},a=t.props??{},l=s,m=n?.isCustomElement??t?.isCustomElement??!1;let y=!1;for(const f in{...a,...l}){const h=a[f],d=l[f];let u=h,g=d;if(N(()=>{(D(h)||h&&typeof h=="object"&&"value"in h)&&(u=h.value)}),N(()=>{(D(d)||d&&typeof d=="object"&&"value"in d)&&(g=d.value)}),!(h===d&&u===g))if(y=!0,f==="value"&&(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement||e instanceof HTMLSelectElement)){const w=typeof d=="object"&&d!==null&&D(d)||d&&typeof d=="object"&&"value"in d?d.value:d;e.value!==w&&(e.value=w??"")}else if(f==="checked"&&e instanceof HTMLInputElement){const w=typeof d=="object"&&d!==null&&D(d)||d&&typeof d=="object"&&"value"in d?d.value:d;e.checked=!!w}else if(f.startsWith("on")&&typeof d=="function"){const w=Kt(f);typeof h=="function"&&le.removeListener(e,w,h),le.addListener(e,w,d);try{if(w&&w.startsWith("update:")){const x=w.split(":",2)[1],S=l[x];let C=[];try{if(D(S)){const k=S.value;C=k&&typeof k=="object"?Object.keys(k):[]}else S&&typeof S=="object"&&(C=Object.keys(S))}catch{C=[]}const _=C.filter(k=>typeof k=="string"&&!k.startsWith("_")&&k!=="constructor");for(const k of _){const T=`update:${k}`,$=b=>{const A=b.detail!==void 0?b.detail:b.target?.value,j={...D(S)?S.value||{}:l[x]||{},[k]:A};N(()=>{d({detail:j})})};N(()=>{le.addListener(e,T,$)})}}}catch{}}else if(d==null)e.removeAttribute(f);else{const w=n?.isCustomElement??t?.isCustomElement??!1;if(w||f in e)try{e[f]=d,f==="disabled"&&d===!1&&!w&&se(e)&&e.removeAttribute("disabled")}catch{}else d===!1&&e.removeAttribute(f)}}for(const[f,h]of Object.entries(o.listeners||{})){le.addListener(e,f,h);try{const d=e&&e.parentElement;d&&d!==e&&le.addListener(d,f,h)}catch{}}const p=t.attrs??{},v=c;for(const f in{...p,...v}){const h=p[f],d=v[f];let u=h,g=d;if(D(h)&&(u=h.value),D(d)&&(g=d.value),u!==g)if(y=!0,g==null||g===!1)N(()=>{e.removeAttribute(f)}),f==="value"&&(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement?N(()=>{e.value=""}):e instanceof HTMLSelectElement?N(()=>{e.value=""}):e instanceof HTMLProgressElement&&N(()=>{e.value=0})),f==="checked"&&e instanceof HTMLInputElement&&N(()=>{e.checked=!1}),f==="disabled"&&se(e)&&N(()=>{e.disabled=!1});else{if(f==="value"){if(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement){N(()=>{e.value=g??""});continue}else if(e instanceof HTMLSelectElement){N(()=>{e.value=g??""});continue}else if(e instanceof HTMLProgressElement){N(()=>{e.value=Number(g)});continue}}if(f==="checked"&&e instanceof HTMLInputElement){N(()=>{e.checked=!!g});continue}if(f==="style"){const x=X(g);x!==null&&e.setAttribute(f,x);continue}if(f==="disabled"&&se(e)){N(()=>{e.disabled=Te(g)}),Te(g)?N(()=>{e.setAttribute(f,"")}):N(()=>{e.removeAttribute(f)});continue}const w=e.namespaceURI==="http://www.w3.org/2000/svg";if(m&&!w&&f.includes("-"))if(Ft(f)){const x=X(d??g);if(x!==null)try{e.setAttribute(f,x)}catch{}}else{const x=st(f);try{D(d)?e[x]=d:e[x]=g}catch{const C=X(d??g);C!==null&&e.setAttribute(f,C)}}else if(!w&&f in e)try{D(d)?e[f]=d:e[f]=g}catch{const S=X(g);S!==null&&e.setAttribute(f,S)}else{const x=X(g);x!==null&&e.setAttribute(f,x)}}}try{if(se(e)){const f=s.disabled;let h;try{const u=Object.prototype.hasOwnProperty.call(o.props||{},"disabled"),g=f&&typeof f=="object"&&"value"in f;let w=!1;N(()=>{w=!!D(f)});const x=lt(f);w||g||u||x?h=f:h=c.disabled}catch{h=c.disabled}const d=Te(h);N(()=>{e.disabled=d}),N(d?()=>{e.setAttribute("disabled","")}:()=>{e.removeAttribute("disabled")})}}catch{}m&&y&&(N(()=>{e._applyProps?.(e._cfg)}),N(()=>{typeof e.requestRender=="function"?e.requestRender():typeof e._render=="function"&&e._render(e._cfg)}))}function ie(e,t,n){if(typeof e=="string")return document.createTextNode(e);if(e.tag==="#text"){const p=document.createTextNode(typeof e.children=="string"?e.children:"");return e.key!=null&&re(p,e.key),p}if(e.tag==="#raw"){const p=typeof e.children=="string"?e.children:"";return document.createRange().createContextualFragment(p)}if(e.tag==="#anchor"){const p=e,v=Array.isArray(p.children)?p.children:[],f=document.createTextNode(""),h=document.createTextNode("");p.key!=null&&(re(f,`${p.key}:start`),re(h,`${p.key}:end`)),p._startNode=f,p._endNode=h;const d=document.createDocumentFragment();d.appendChild(f);for(const u of v){const g=ie(u,t);if(p.key!=null&&g instanceof Element&&!g.hasAttribute("data-anchor-key")){const w=u;w&&typeof w=="object"&&w.key!=null||re(g,p.key)}d.appendChild(g)}return d.appendChild(h),d}const r=document.createElement(e.tag);e.key!=null&&re(r,e.key),e.props&&e.props._transitionGroup&&Nn(r,e.props._transitionGroup);const{props:i={},attrs:o={},directives:s={}}=e.props??{},c=Vt(s,t,r,o),a={...i,...c.props},l={...o,...c.attrs};try{const p=(l&&l.class)??(a&&a.class)??(e.props&&e.props.attrs&&e.props.attrs.class)??(e.props&&e.props.props&&e.props.props.class),v=X(p);if(v!==null){const f=String(v).trim();f&&r.setAttribute("class",f)}}catch{}try{if(a.disabled!==void 0&&r&&se(r)){const p=a.disabled,v=p&&typeof p=="object"&&"value"in p;let f=!1;try{f=D(p)}catch{f=!1}!v&&!f&&N(()=>{l.disabled=p,delete a.disabled})}}catch{}const m=r.namespaceURI==="http://www.w3.org/2000/svg";for(const p in l){const v=l[p];if(typeof p!="string"||/\[object Object\]/.test(p))continue;const f=typeof v=="object"&&v!==null&&D(v)||v&&typeof v=="object"&&"value"in v?v.value:v;if(typeof f=="boolean")f?r.setAttribute(p,""):N(()=>{r.removeAttribute(p)});else if(f!=null){if(p==="disabled"&&se(r)){const h=a.disabled,d=lt(h)?h:f,u=Te(d);N(()=>{r.disabled=u}),N(u?()=>{r.setAttribute(p,"")}:()=>{r.removeAttribute(p)});continue}if(!m&&p==="value"&&(r instanceof HTMLInputElement||r instanceof HTMLTextAreaElement||r instanceof HTMLSelectElement||r instanceof HTMLProgressElement))try{r instanceof HTMLProgressElement?r.value=Number(f):r.value=f??""}catch{const d=X(f);d!==null&&r.setAttribute(p,d)}else if(!m&&p==="checked"&&r instanceof HTMLInputElement)try{r.checked=!!f}catch{const d=X(f);d!==null&&r.setAttribute(p,d)}else if(!m&&p in r)try{r[p]=f,p==="disabled"&&f===!1&&se(r)&&r.removeAttribute("disabled")}catch{const d=X(f);d!==null&&r.setAttribute(p,d)}else if((e.props?.isCustomElement??!1)&&!m&&p.includes("-")){const d=st(p);try{r[d]=f}catch{const g=X(f);g!==null&&r.setAttribute(p,g)}}else{const d=X(f);d!==null&&r.setAttribute(p,d)}}}for(const p in a){const v=a[p];if(!(typeof p!="string"||/\[object Object\]/.test(p)))if(p==="value"&&(r instanceof HTMLInputElement||r instanceof HTMLTextAreaElement||r instanceof HTMLSelectElement)){const f=typeof v=="object"&&v!==null&&typeof v.value<"u"?v.value:v;N(()=>{r.value=f??""})}else if(p.startsWith("on")&&typeof v=="function"){const f=Kt(p),h=f.includes(":")?(()=>{const d=f.split(":"),u=d[1];if(u.includes("-")){const g=u.split("-").map((w,x)=>x===0?w:w.charAt(0).toUpperCase()+w.slice(1)).join("");return`${d[0]}:${g}`}else{const g=u.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();return`${d[0]}:${g}`}})():f;c.listeners&&(c.listeners[f]||c.listeners[h])||le.addListener(r,f,v)}else{if(p.startsWith("on")&&v===void 0)continue;if(v==null||v===!1)r.removeAttribute(p);else{const f=e.props?.isCustomElement??!1,h=typeof v=="object"&&v!==null&&D(v)?v:typeof v=="object"&&v!==null&&typeof v.value<"u"?v.value:v;if(p==="class"||p==="style"){try{const d=X(h);d!==null&&r.setAttribute(p,d)}catch{}continue}if(f||p in r)try{const d=typeof v=="object"&&v!==null&&D(v)?v:typeof v=="object"&&v!==null&&typeof v.value<"u"?v.value:v;if(p==="disabled"&&se(r)){const u=a.disabled!==void 0?a.disabled:d,g=Te(u);N(()=>{r.disabled=g}),N(g?()=>{r.setAttribute(p,"")}:()=>{r.removeAttribute(p)});continue}try{if(typeof r[p]=="boolean"){let g=d;typeof d=="string"?d==="false"?g=!1:d==="true"?g=!0:g=!!d&&d!=="":g=!!d,r[p]=g}else r[p]=d}catch{r[p]=d}}catch{}}}}for(const[p,v]of Object.entries(c.listeners||{}))le.addListener(r,p,v);const y={...e,props:{...e.props,...c.props}};Re(y,r,n);try{if(typeof r._applyProps=="function")try{r._applyProps(r._cfg)}catch{}typeof r.requestRender=="function"?r.requestRender():typeof r._render=="function"&&r._render(r._cfg)}catch{}if(Array.isArray(e.children))for(const p of e.children)r.appendChild(ie(p,t,n));else typeof e.children=="string"&&(r.textContent=e.children);try{if(r instanceof HTMLSelectElement&&l&&l.hasOwnProperty("value"))try{r.value=l.value??""}catch{}}catch{}try{if(se(r)){const p=a.disabled,v=l.disabled,f=p&&typeof p=="object"&&"value"in p;let h=!1;try{h=!!D(p)}catch{h=!1}const u=h||f||lt(p)?p:v,g=Te(u);N(()=>{r.disabled=g}),N(g?()=>{r.setAttribute("disabled","")}:()=>{r.removeAttribute("disabled")})}}catch{}return r}function Bn(e,t,n,r,i){if(typeof n=="string"){e.textContent!==n&&(e.textContent=n);return}if(!Array.isArray(n))return;const o=e.childNodes,s=[];for(let h=0;h<o.length;h++)s.push(o[h]);const c=Array.isArray(t)?t:[],a=Mn(e);if(a){const h=w=>typeof w=="string"&&w.startsWith("each-")?w.substring(5):w,d=[],u=[];for(const w of n)if(w&&w.tag==="#anchor"){const x=Array.isArray(w.children)?w.children:[];for(const S of x){const C=h(S.key||w.key||"unknown");d.push({...S,key:C})}}else w&&d.push({...w,key:h(w.key)});for(const w of c)if(w&&w.tag==="#anchor"){const x=Array.isArray(w.children)?w.children:[];for(const S of x){const C=h(S.key||w.key||"unknown");u.push({...S,key:C})}}else w&&u.push({...w,key:h(w.key)});if(d.some(w=>w&&w.key!=null)||u.some(w=>w&&w.key!=null)){const w=new Map,x=new Map;for(const $ of u)if($&&$.key!=null){const b=String($.key);w.set(b,$)}for(let $=0;$<s.length;$++){const b=s[$];let A=Ye(b);if(A=h(A),A!=null&&b instanceof Element&&b.nodeType===Node.ELEMENT_NODE){let P=typeof A=="string"&&A.includes(":")?A.substring(0,A.lastIndexOf(":")):A;P=String(P),x.set(P,b)}}const S=new Set,C=new Map,_=s.length>0;if(a.moveClass&&_)for(let $=0;$<s.length;$++){const b=s[$];if(b instanceof HTMLElement&&b.parentElement){const A=b.getBoundingClientRect();C.set(b,A)}}const k=[];for(const $ of d){let b=$.key;if(b==null)continue;b=String(b);const A=w.get(b);let P=x.get(b);if(P&&A){const j=He(P,A,$,r);S.add(P);const E=String(b);re(j,E),k.push({node:j,key:b,newVNode:$,oldVNode:A,isNew:!1})}else{P=ie($,r),re(P,b),e.appendChild(P);const j=_||a.appear===!0;P instanceof HTMLElement&&j&&Ne(P,a).catch(E=>{F("Enter transition error:",E)}),k.push({node:P,key:b,newVNode:$,isNew:!0})}}const T=[];for(let $=0;$<s.length;$++){const b=s[$],A=Ye(b);if(!S.has(b)&&A!=null&&b instanceof HTMLElement){const j=ct(b,a).then(()=>{e.contains(b)&&e.removeChild(b)}).catch(E=>{F("Leave transition error:",E),e.contains(b)&&e.removeChild(b)});T.push(j)}}if(T.length===0){let $=e.firstChild;for(const{node:b}of k)b!==$&&e.insertBefore(b,$),$=b.nextSibling;if(a.moveClass&&C.size>0){const b=[];for(const{node:A,isNew:P}of k)if(!P&&A instanceof HTMLElement){const j=C.get(A);if(j){const E=A.getBoundingClientRect(),M=j.left-E.left,R=j.top-E.top;if(M!==0||R!==0){const ee=a.moveClass.split(/\s+/).filter(I=>I);b.push({node:A,deltaX:M,deltaY:R,moveClasses:ee})}}}if(b.length>0){for(const{node:A,deltaX:P,deltaY:j}of b)A.style.transform=`translate(${P}px, ${j}px)`,A.style.transitionProperty="none";e.offsetHeight,requestAnimationFrame(()=>{requestAnimationFrame(()=>{for(const{node:A,moveClasses:P}of b)for(const j of P)A.classList.add(j);requestAnimationFrame(()=>{const A=a.moveClass||"",P=A.match(/duration-(\d+)/),j=P?`${P[1]}ms`:"300ms",E=A.match(/ease-(out|in|in-out|linear)/),M=E?`ease-${E[1]}`:"ease-out";for(const{node:R}of b)R.style.transition=`transform ${j} ${M}`;requestAnimationFrame(()=>{for(const{node:R,moveClasses:ee}of b){R.style.removeProperty("transform");const I=()=>{for(const K of ee)R.classList.remove(K);R.style.removeProperty("transition"),R.removeEventListener("transitionend",I),R.removeEventListener("transitioncancel",I)};R.addEventListener("transitionend",I,{once:!0}),R.addEventListener("transitioncancel",I,{once:!0})}})})})})}}}return}}const l=new Map;for(const h of c)h&&h.key!=null&&l.set(h.key,h);const m=new Map;for(let h=0;h<s.length;h++){const d=s[h],u=Ye(d);u!=null&&m.set(u,d)}const y=new Set;let p=e.firstChild;function v(h,d){let u=h;for(;u&&(y.add(u),u!==d);)u=u.nextSibling}function f(h,d,u,g,w,x=!0){const S=[];let C=h.nextSibling;for(;C&&C!==d;)S.push(C),C=C.nextSibling;const _=Array.isArray(u)?u:[];if(g.some(T=>T&&T.key!=null)||_.some(T=>T&&T.key!=null)){const T=new Map,$=new Map;for(const j of _)j&&j.key!=null&&T.set(j.key,j);for(const j of S){const E=Ye(j);E!=null&&$.set(E,j)}const b=w&&w.state==="visible"&&_.length===0&&g.length>0,A=new Set;let P=h.nextSibling;for(const j of g){let E;if(j.key!=null&&$.has(j.key)){const M=T.get(j.key);E=He($.get(j.key),M,j,r),A.add(E),w&&E instanceof HTMLElement&&b&&w.appear&&Ne(E,w).catch(R=>{F("Transition enter error (appear):",R)}),E!==P&&e.contains(E)&&e.insertBefore(E,P)}else E=ie(j,r),e.insertBefore(E,P),A.add(E),w&&E instanceof HTMLElement&&x&&Ne(E,w).catch(M=>{F("Transition enter error:",M)});P=E.nextSibling}for(const j of S)!A.has(j)&&e.contains(j)&&(w&&j instanceof HTMLElement&&x?ct(j,w).then(()=>{e.contains(j)&&e.removeChild(j)}).catch(E=>{F("Transition leave error:",E),e.contains(j)&&e.removeChild(j)}):e.removeChild(j))}else{const T=Math.min(_.length,g.length);for(let $=0;$<T;$++){const b=_[$],A=g[$],P=He(S[$],b,A,r);P!==S[$]&&(e.insertBefore(P,S[$]),e.removeChild(S[$]))}for(let $=T;$<g.length;$++){const b=ie(g[$],r);e.insertBefore(b,d),w&&b instanceof HTMLElement&&x&&Ne(b,w).catch(A=>{F("Transition enter error:",A)})}for(let $=T;$<S.length;$++){const b=S[$];w&&b instanceof HTMLElement&&x?ct(b,w).then(()=>{e.contains(b)&&e.removeChild(b)}).catch(A=>{F("Transition leave error:",A),e.contains(b)&&e.removeChild(b)}):e.removeChild(b)}}}for(const h of n){let d;if(h.tag==="#anchor"){const u=h.key,g=`${u}:start`,w=`${u}:end`;let x=m.get(g),S=m.get(w);const C=Array.isArray(h.children)?h.children:[];if(x||(x=document.createTextNode(""),re(x,g)),S||(S=document.createTextNode(""),re(S,w)),h._startNode=x,h._endNode=S,!e.contains(x)||!e.contains(S)){e.insertBefore(x,p);const _=h._transition,T=!(_&&_.state==="visible"&&C.length>0)||_.appear;for(const $ of C){const b=ie($,r);e.insertBefore(b,p),_&&b instanceof HTMLElement&&T&&Ne(b,_).catch(A=>{F("Transition enter error:",A)})}e.insertBefore(S,p)}else{const _=h._transition,T=l.get(u)?._transition,$=T&&T.state!==_?.state,b=_&&_.state==="visible"&&C.length>0&&!$,A=$||!b||_?.appear===!0;f(x,S,l.get(u)?.children,C,_,A)}v(x,S),p=S.nextSibling;continue}if(h.key!=null&&m.has(h.key)){const u=l.get(h.key);d=He(m.get(h.key),u,h,r,i),y.add(d),d!==p&&e.contains(d)&&(p&&!e.contains(p)&&(p=null),e.insertBefore(d,p))}else d=ie(h,r,i),p&&!e.contains(p)&&(p=null),e.insertBefore(d,p),y.add(d);p=d.nextSibling}for(let h=0;h<s.length;h++){const d=s[h];!y.has(d)&&e.contains(d)&&(ke(d,i),e.removeChild(d))}}function He(e,t,n,r,i){if(t&&typeof t!="string"&&t.props?.ref&&i&&ke(e,i),t===n)return e;if(typeof n=="string"){if(e.nodeType===Node.TEXT_NODE)return e.textContent!==n&&(e.textContent=n),e;{const s=document.createTextNode(n);return e.parentNode?.replaceChild(s,e),s}}if(n&&typeof n!="string"&&n.tag==="#anchor"){const s=n,c=Array.isArray(s.children)?s.children:[],a=s._startNode??document.createTextNode(""),l=s._endNode??document.createTextNode("");s.key!=null&&(re(a,`${s.key}:start`),re(l,`${s.key}:end`)),s._startNode=a,s._endNode=l;const m=document.createDocumentFragment();m.appendChild(a);for(const y of c){const p=ie(y,r);m.appendChild(p)}return m.appendChild(l),e.parentNode?.replaceChild(m,e),a}if(!n){ke(e,i);const s=document.createComment("removed");return e.parentNode?.replaceChild(s,e),s}if(!t||typeof t=="string"){ke(e,i);const s=ie(n,r,i);return Re(n,s,i),e.parentNode?.replaceChild(s,e),s}if(n.tag==="#anchor"){const s=Array.isArray(n.children)?n.children:[],c=n._startNode??document.createTextNode(""),a=n._endNode??document.createTextNode("");n.key!=null&&(re(c,`${n.key}:start`),re(a,`${n.key}:end`)),n._startNode=c,n._endNode=a;const l=document.createDocumentFragment();l.appendChild(c);for(const m of s)l.appendChild(ie(m,r));return l.appendChild(a),e.parentNode?.replaceChild(l,e),c}if(typeof t!="string"&&typeof n!="string"&&t.tag===n.tag&&t.key===n.key){const s=e;return Gt(s,t.props||{},n.props||{},r),Bn(s,t.children,n.children,r,i),Re(n,s,i),s}if(typeof t!="string"&&typeof n!="string"&&t.tag===n.tag&&(t.tag&&String(t.tag).includes("-")||n.props&&n.props.isCustomElement||t.props&&t.props.isCustomElement))try{const c=e;return Gt(c,t.props||{},n.props||{},r),Re(n,c,i),c}catch{}ke(e,i);const o=ie(n,r,i);return Re(n,o,i),e.parentNode?.replaceChild(o,e),o}function zn(e,t,n,r){let i;Array.isArray(t)?t.length===1?(i=t[0],i&&typeof i=="object"&&i.key==null&&(i={...i,key:"__root__"})):i={tag:"div",key:"__root__",children:t}:(i=t,i&&typeof i=="object"&&i.key==null&&(i={...i,key:"__root__"})),i&&typeof i=="object"&&i.tag==="#anchor"&&(i={tag:"div",key:"__anchor_root__",props:{attrs:{"data-anchor-block-root":"",key:"__anchor_root__"}},children:[i]}),i=ut(i,String(i.key??"root"));const o=e._prevVNode??null,s=e._prevDom??e.firstChild??null;let c;o&&s?typeof o!="string"&&typeof i!="string"&&o.tag===i.tag&&o.key===i.key?c=He(s,o,i,n,r):(c=ie(i,n,r),e.replaceChild(c,s)):(c=ie(i,n,r),e.firstChild?e.replaceChild(c,e.firstChild):e.appendChild(c));const a=[];for(let l=0;l<e.childNodes.length;l++){const m=e.childNodes[l];m!==c&&m.nodeName!=="STYLE"&&(ke(m,r),a.push(m))}a.forEach(l=>e.removeChild(l)),e._prevVNode=i,e._prevDom=c}function Qe(e){if(typeof e=="string")return Ge(e);if(e.tag==="#text")return typeof e.children=="string"?Ge(e.children):"";if(e.tag==="#anchor")return(Array.isArray(e.children)?e.children.filter(Boolean):[]).map(Qe).join("");if(e.tag==="#raw")return typeof e.children=="string"?e.children:"";let t="";e.props&&e.props.attrs&&(t=Object.entries(e.props.attrs).map(([r,i])=>` ${r}="${Ge(String(i))}"`).join(""));const n=Array.isArray(e.children)?e.children.filter(Boolean).map(Qe).join(""):typeof e.children=="string"?Ge(e.children):e.children?Qe(e.children):"";return`<${e.tag}${t}>${n}</${e.tag}>`}function Zt(e,...t){let n="";for(let r=0;r<e.length;r++)n+=e[r],r<t.length&&(n+=t[r]);return n}function Jt(e){return e.replace(/\/\*[\s\S]*?\*\//g,"").replace(/\s+/g," ").replace(/\s*([{}:;,>+~])\s*/g,"$1").replace(/;}/g,"}").trim()}let et=null;function Xt(){return et||(et=new CSSStyleSheet,et.replaceSync(Jt(qn))),et}function Un(e){return e.replace(/url\s*\(\s*['"]?javascript:[^)]*\)/gi,"").replace(/<script[\s\S]*?>[\s\S]*?<\/script>/gi,"").replace(/expression\s*\([^)]*\)/gi,"")}const qn=Zt`
4
+ • Ensure computed properties don't modify state`),this._value=this.makeReactive(t),te.triggerUpdate(this)}addDependent(t){this.dependents.add(t)}removeDependent(t){this.dependents.delete(t)}getDependents(){return this.dependents}makeReactive(t){return t===null||typeof t!="object"||t instanceof Node||t instanceof Element||t instanceof HTMLElement?t:Rt.createReactiveProxy(t,()=>te.triggerUpdate(this),n=>this.makeReactive(n))}}function ot(e){return te.getOrCreateState(e===void 0?null:e)}function N(e){if(!e||typeof e!="object")return!1;try{const t=Symbol.for("@cer/ReactiveState");return!!e[t]}catch{return!1}}function pe(e){const t=new Ue(e());return{get value(){return te.trackDependency(t),e()}}}function xn(e,t,n={}){let r=e();n.immediate&&t(r,r);const i=`watch-${Math.random().toString(36).substr(2,9)}`,o=()=>{te.setCurrentComponent(i,o);const s=e();te.clearCurrentComponent(),s!==r&&(t(s,r),r=s)};return te.setCurrentComponent(i,o),e(),te.clearCurrentComponent(),()=>{te.cleanup(i)}}const M=e=>{try{e()}catch{}},qe=new Map,Ke=new Map,Ve=new Map,st=500;let Nt,Dt,Ht=!1,Ft=!1,It;const $n=!!(globalThis.process&&globalThis.process.versions&&globalThis.process.versions.node);function ie(e){if(qe.has(e))return qe.get(e);const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();return qe.size<st&&qe.set(e,t),t}function at(e){if(Ke.has(e))return Ke.get(e);const t=e.replace(/-([a-z])/g,(n,r)=>r.toUpperCase());return Ke.size<st&&Ke.set(e,t),t}function Ge(e){if(typeof e=="string"){if(Ve.has(e))return Ve.get(e);const t=e.replace(/[&<>"']/g,n=>({"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"})[n]);return t!==e&&Ve.size<st&&Ve.set(e,t),t}return e}function ae(e){if(!e)return"";const t=String(e);if(typeof document<"u"&&typeof document.createElement=="function"){const c=t.replace(/</g,"").replace(/>/g,""),a=It||(It=document.createElement("div"));try{ae._el=a}catch{}return a.innerHTML=c,(a.textContent||"").replace(new RegExp("","g"),"<").replace(new RegExp("","g"),">")}const n={lt:"<",gt:">",amp:"&",quot:'"',apos:"'",nbsp:" "},r=Nt??ae._namedMap;let i=r;if(!i&&$n)try{const o=globalThis.require;if(typeof o=="function"){const s=["@jasonshimmy/custom-elements-runtime/entities.json","../../entities.json","../../../entities.json","../entities.json","./entities.json"];for(const c of s)try{const a=o(c);if(a){i=a;break}}catch{}}}catch{}if(!i){i=n,Ht=!0;try{ae._usedFallback=!0}catch{}const o=ae._namedMapLoader??Dt;o&&o().then(s=>{Nt=s;try{ae._namedMap=s}catch{}}).catch(()=>{})}if((Ht||ae._usedFallback)&&!(Ft||ae._warnedFallback)){Ft=!0;try{ae._warnedFallback=!0}catch{}try{K("decodeEntities: using small SSR fallback entity map. Register the full entities.json via registerEntityMap(entities) on the server to enable full HTML5 named-entity decoding.")}catch{}}return t.replace(/&(#x?[0-9a-fA-F]+|[a-zA-Z]+);/g,(o,s)=>{if(s.charCodeAt(0)===35){const l=(s.charAt(1)||"").toLowerCase()==="x"?parseInt(s.slice(2),16):parseInt(s.slice(1),10);return Number.isNaN(l)?`&${s};`:String.fromCodePoint(l)}const c=i[s]??(r&&r[s]);return c!==void 0?c:`&${s};`})}async function Wt(){const e=["@jasonshimmy","custom-elements-runtime","entities.json"].join("/");try{const t=await import(e);return t&&(t.default||t)}catch{try{const t=[e,"./entities.json","../../entities.json","../../../entities.json"];for(const n of t)try{const r=await import(n);if(r)return r&&(r.default||r)}catch{}return{lt:"<",gt:">",amp:"&",quot:'"',apos:"'",nbsp:" "}}catch{return{lt:"<",gt:">",amp:"&",quot:'"',apos:"'",nbsp:" "}}}}Dt=Wt,ae._namedMapLoader=Wt;function Cn(e){const t=String(e);return{__unsafeHTML:t,__rawHTML:t}}function Bt(e){return!!e&&(typeof e.__unsafeHTML=="string"||typeof e.__rawHTML=="string")}function X(e,t){if(typeof t=="string"){const n=t.split(".").reduce((r,i)=>r?.[i],e);return N(n)?n.value:n}return t}function Ze(e,t,n){const r=String(t).split("."),i=r.pop();if(!i)return;const o=r.reduce((s,c)=>(s[c]==null&&(s[c]={}),s[c]),e);N(o[i])?o[i].value=n:o[i]=n}function En(e){try{if(e&&typeof e=="object"){if(N(e))return e.value;if("value"in e){const t=e.value;return t==null||typeof t=="string"||typeof t=="number"||typeof t=="boolean"?t:e}}}catch{}return e}function Y(e){const t=En(e);if(t==null)return null;const n=typeof t;return n==="string"||n==="number"||n==="boolean"?String(t):null}function zt(e){if(!e||typeof e!="string")return!1;if(e==="class"||e.endsWith("Class"))return!0;if(e.includes("-"))try{if(e.split("-").some(n=>n==="class"))return!0}catch{}return!1}function _n(e,t,n){if(n)for(const[r,i]of Object.entries(n)){let o,s={};if(Array.isArray(i)?(o=i[0],s=i[1]||{}):o=i,t.set(r,{callback:o,options:s,oldValue:X(e,r)}),s.immediate)try{const c=X(e,r);o(c,void 0,e)}catch(c){F(`Error in immediate watcher for "${r}":`,c)}}}function Sn(e,t,n,r){const i=(s,c)=>{if(s===c)return!0;if(typeof s!=typeof c||typeof s!="object"||s===null||c===null)return!1;if(Array.isArray(s)&&Array.isArray(c))return s.length!==c.length?!1:s.every((m,y)=>i(m,c[y]));const a=Object.keys(s),l=Object.keys(c);return a.length!==l.length?!1:a.every(m=>i(s[m],c[m]))},o=t.get(n);if(o&&!i(r,o.oldValue))try{o.callback(r,o.oldValue,e),o.oldValue=r}catch(s){F(`Error in watcher for "${n}":`,s)}for(const[s,c]of t.entries())if(c.options.deep&&n.startsWith(s+"."))try{const a=X(e,s);i(a,c.oldValue)||(c.callback(a,c.oldValue,e),c.oldValue=a)}catch(a){F(`Error in deep watcher for "${s}":`,a)}}function ct(e,t){return t===Boolean?e===""||e==="true":t===Number?Number(e):e}function An(e,t,n){if(t)for(const r in t){const i=t[r],o=ie(r),s=e.getAttribute(o);if(i.type===Function&&typeof e[r]=="function")n[r]=e[r];else if(s!==null)n[r]=ct(s,i.type);else if(typeof e[r]<"u")try{const c=e[r];if(i.type===String&&c&&typeof c=="object")try{n[r]=ct(String(c),i.type)}catch{n[r]=c}else i.type===Boolean&&typeof c=="boolean"||i.type===Number&&typeof c=="number"||i.type===Function&&typeof c=="function"?n[r]=c:n[r]=ct(String(c),i.type)}catch{n[r]=e[r]}else"default"in i&&i.default!==void 0&&(n[r]=i.default)}}function Tn(e,t,n){if(!t.props){try{const r=n&&n._hookCallbacks&&n._hookCallbacks.props||{},i=Array.from(new Set([...Object.keys(e),...Object.keys(r)]));for(const o of i){if(typeof o!="string"||o.startsWith("_"))continue;const s=Object.getOwnPropertyDescriptor(n,o);if(!(!Object.prototype.hasOwnProperty.call(r,o)&&s&&(s.get||s.set||!s.configurable)))try{Object.defineProperty(n,o,{enumerable:!0,configurable:!0,get(){try{const a=ie(o),l=e.getAttribute(a);if(l!==null)return l;const m=e[o];let y;return N(m)||m&&typeof m=="object"&&"value"in m&&!(m instanceof Node)?y=m.value:y=m,y}catch{return e[o]}}})}catch{}}}catch{}return}An(e,t.props,n)}function jn(e,t,n,r){e.onConnected&&!n&&(e.onConnected(t),r(!0))}function Ln(e,t,n,r,i,o,s,c){e.onDisconnected&&e.onDisconnected(t),n.forEach(a=>a()),r(),i(),o(!1),s(null),c(!1)}function On(e,t,n,r,i){e.onAttributeChanged&&e.onAttributeChanged(t,n,r,i)}class Pn{static cache=new Map;static maxCacheSize=1e3;static dangerousPatterns=[/constructor/i,/prototype/i,/__proto__/i,/function/i,/eval/i,/import/i,/require/i,/window/i,/document/i,/global/i,/process/i,/setTimeout/i,/setInterval/i,/fetch/i,/XMLHttpRequest/i];static evaluate(t,n){const r=this.cache.get(t);if(r){if(!r.isSecure){K("Blocked cached dangerous expression:",t);return}return r.evaluator(n)}const i=this.createEvaluator(t);if(this.cache.size>=this.maxCacheSize){const o=this.cache.keys().next().value;o&&this.cache.delete(o)}if(this.cache.set(t,i),!i.isSecure){K("Blocked dangerous expression:",t);return}return i.evaluator(n)}static createEvaluator(t){if(this.hasDangerousPatterns(t))return{evaluator:()=>{},isSecure:!1};if(t.length>1e3)return{evaluator:()=>{},isSecure:!1};try{return{evaluator:this.createSafeEvaluator(t),isSecure:!0}}catch(n){return K("Failed to create evaluator for expression:",t,n),{evaluator:()=>{},isSecure:!1}}}static hasDangerousPatterns(t){return this.dangerousPatterns.some(n=>n.test(t))}static createSafeEvaluator(t){const n=t.trim();if(n.startsWith("{")&&n.endsWith("}"))return this.createObjectEvaluator(t);if(/^ctx\.[a-zA-Z0-9_\.]+$/.test(t.trim())){const r=t.trim().slice(4);return i=>X(i,r)}return t.includes("ctx")||/[+\-*/%<>=&|?:\[\]]/.test(t)?this.createSimpleEvaluator(t):r=>X(r,t)}static createObjectEvaluator(t){const n=t.trim().slice(1,-1),r=this.parseObjectProperties(n);return i=>{const o={};for(const{key:s,value:c}of r)try{if(c.startsWith("ctx.")){const a=c.slice(4);o[s]=X(i,a)}else o[s]=this.evaluateSimpleValue(c,i)}catch{o[s]=void 0}return o}}static parseObjectProperties(t){const n=[],r=t.split(",");for(const i of r){const o=i.indexOf(":");if(o===-1)continue;const s=i.slice(0,o).trim(),c=i.slice(o+1).trim(),a=s.replace(/^['"]|['"]$/g,"");n.push({key:a,value:c})}return n}static createSimpleEvaluator(t){return n=>{try{let r=t;const i=[];r=r.replace(/("[^"\\]*(?:\\.[^"\\]*)*"|'[^'\\]*(?:\\.[^'\\]*)*')/g,y=>`<<#${i.push(y)-1}#>>`);const o=r.match(/ctx\.[\w.]+/g)||[];for(const y of o){const p=y.slice(4),v=X(n,p);if(v===void 0)return;const f=i.push(JSON.stringify(v))-1;r=r.replace(new RegExp(y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g"),`<<#${f}#>>`)}const s=/\b[a-zA-Z_][a-zA-Z0-9_]*(?:\.[a-zA-Z_][a-zA-Z0-9_]*)+\b/g,c=r.match(s)||[];for(const y of c){if(y.startsWith("ctx."))continue;const p=X(n,y);if(p===void 0)return;const v=i.push(JSON.stringify(p))-1;r=r.replace(new RegExp(y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g"),`<<#${v}#>>`)}const a=/\b([a-zA-Z_][a-zA-Z0-9_]*)\b/g;let l;const m=new Set;for(;(l=a.exec(r))!==null;){const y=l[1];if(["true","false","null","undefined"].includes(y)||/^[0-9]+$/.test(y)||y==="ctx"||m.has(y))continue;m.add(y);const p=X(n,y);if(p===void 0)return;const v=JSON.stringify(p),f=i.push(v)-1;y.includes(".")?r=r.replace(new RegExp(y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g"),`<<#${f}#>>`):r=r.replace(new RegExp("\\b"+y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")+"\\b","g"),`<<#${f}#>>`)}r=r.replace(/<<#(\d+)#>>/g,(y,p)=>i[Number(p)]);try{return this.evaluateBasicExpression(r)}catch{return}}catch{return}}}static evaluateBasicExpression(t){const n=this.tokenize(t);let r=0;function i(){return n[r]}function o(u){const g=n[r++];if(u&&!g)throw new Error(`Unexpected token EOF, expected ${u}`);if(u&&g&&g.type!==u&&g.value!==u)throw new Error(`Unexpected token ${g.type}/${g.value}, expected ${u}`);return g}function s(){return c()}function c(){let u=a();if(i()&&i().value==="?"){o("?");const g=s();o(":");const w=s();return u?g:w}return u}function a(){let u=l();for(;i()&&i().value==="||";){o("OP");const g=l();u=u||g}return u}function l(){let u=m();for(;i()&&i().value==="&&";){o("OP");const g=m();u=u&&g}return u}function m(){let u=y();for(;i()&&["==","!=","===","!=="].includes(i().value);){const g=o("OP").value,w=y();switch(g){case"==":u=u==w;break;case"!=":u=u!=w;break;case"===":u=u===w;break;case"!==":u=u!==w;break}}return u}function y(){let u=p();for(;i()&&[">","<",">=","<="].includes(i().value);){const g=o("OP").value,w=p();switch(g){case">":u=u>w;break;case"<":u=u<w;break;case">=":u=u>=w;break;case"<=":u=u<=w;break}}return u}function p(){let u=v();for(;i()&&(i().value==="+"||i().value==="-");){const g=o("OP").value,w=v();u=g==="+"?u+w:u-w}return u}function v(){let u=f();for(;i()&&(i().value==="*"||i().value==="/"||i().value==="%");){const g=o("OP").value,w=f();switch(g){case"*":u=u*w;break;case"/":u=u/w;break;case"%":u=u%w;break}}return u}function f(){return i()&&i().value==="!"?(o("OP"),!f()):i()&&i().value==="-"?(o("OP"),-f()):h()}function h(){const u=i();if(u){if(u.type==="NUMBER")return o("NUMBER"),Number(u.value);if(u.type==="STRING")return o("STRING"),u.value.slice(1,-1);if(u.type==="IDENT")return o("IDENT"),u.value==="true"?!0:u.value==="false"?!1:u.value==="null"?null:void 0;if(u.value==="["){o("PUNC");const g=[];for(;i()&&i().value!=="]";)g.push(s()),i()&&i().value===","&&o("PUNC");return o("PUNC"),g}if(u.value==="("){o("PUNC");const g=s();return o("PUNC"),g}throw new Error("Unexpected token in expression")}}return s()}static tokenize(t){const n=[],r=/\s*(=>|===|!==|==|!=|>=|<=|\|\||&&|[()?:,\[\]]|\+|-|\*|\/|%|>|<|!|\d+\.?\d*|"[^"]*"|'[^']*'|[a-zA-Z_][a-zA-Z0-9_]*|\S)\s*/g;let i;for(;(i=r.exec(t))!==null;){const o=i[1];o&&(/^\d/.test(o)?n.push({type:"NUMBER",value:o}):/^"/.test(o)||/^'/.test(o)?n.push({type:"STRING",value:o}):/^[a-zA-Z_]/.test(o)?n.push({type:"IDENT",value:o}):/^[()?:,\[\]]$/.test(o)?n.push({type:"PUNC",value:o}):n.push({type:"OP",value:o}))}return n}static evaluateSimpleValue(t,n){if(t==="true")return!0;if(t==="false")return!1;if(!isNaN(Number(t)))return Number(t);if(t.startsWith("ctx.")){const r=t.slice(4);return X(n,r)}return t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'")?t.slice(1,-1):t}static clearCache(){this.cache.clear()}static getCacheSize(){return this.cache.size}}class ce{static cleanupFunctions=new WeakMap;static addListener(t,n,r,i){t.addEventListener(n,r,i);const s={event:n,handler:r,wrapper:r,options:i,cleanup:()=>t.removeEventListener(n,r,i),addedAt:Date.now()};this.cleanupFunctions.has(t)||this.cleanupFunctions.set(t,[]);const c=this.cleanupFunctions.get(t);c.push(s),c.__metaList=c}static removeListener(t,n,r,i){t.removeEventListener(n,r,i);const o=this.cleanupFunctions.get(t);if(o)for(let s=0;s<o.length;s++){const c=o[s];if(c.event===n&&c.handler===r){o.splice(s,1),o.length===0&&this.cleanupFunctions.delete(t);return}}}static cleanup(t){const n=this.cleanupFunctions.get(t);n&&(n.forEach(r=>{try{r.cleanup()}catch{}}),this.cleanupFunctions.delete(t))}static cleanupAll(){this.cleanupFunctions=new WeakMap}static hasListeners(t){const n=this.cleanupFunctions.get(t);return!!(n&&n.length>0)}static getListenerCount(t){const n=this.cleanupFunctions.get(t);return n?n.length:0}static getListenerInfo(t){const n=this.cleanupFunctions.get(t);return n?n.map(r=>({event:r.event,handler:r.handler,wrapper:r.wrapper,options:r.options})):[]}}function Je(e,t){return Array.isArray(e)&&Array.isArray(t)?JSON.stringify([...e].sort())!==JSON.stringify([...t].sort()):e!==t}function Ut(e,t,n,r,i){if(e)if(i&&typeof t.value=="object"&&t.value!==null){const o={...t.value};o[i]=n,t.value=o}else t.value=n;else{const o=r._state||r;Ze(o,t,n)}}function Xe(e,t,n,r){if(e._requestRender&&e._requestRender(),e._triggerWatchers){const i=t?"reactiveState":n;e._triggerWatchers(i,r)}}function Mn(e,t,n){const r=`update:${ie(t)}`,i=`update:${t}`,o=new CustomEvent(r,{detail:n,bubbles:!0,composed:!0}),s=new CustomEvent(i,{detail:n,bubbles:!0,composed:!0});e.dispatchEvent(o),e.dispatchEvent(s)}function qt(e,t,n,r){const i=n;M(()=>{e[t]=i}),M(()=>{const o=ie(t);if(typeof i=="boolean"){const s=Y(i);s!==null?e.setAttribute(o,s):e.removeAttribute?.(o)}else if(i!=null&&(typeof i=="string"||typeof i=="number"))e.setAttribute(o,String(i));else{const s=Y(i);s!==null?e.setAttribute(o,s):e.removeAttribute?.(o)}}),M(()=>{e._applyProps?.(e._cfg)}),M(()=>{e._requestRender?.()})}function Rn(e,t,n,r){if(e){const o=t.value;return r&&typeof o=="object"&&o!==null?o[r]:o}const i=n._state||n;return X(i,t)}function _e(e){return e?e.split(/\s+/).filter(Boolean):[]}function Se(e,t){if(t.length===0)return;const n=t.filter(r=>r&&!e.classList.contains(r));n.length>0&&e.classList.add(...n)}function Ae(e,t){if(t.length===0)return;const n=t.filter(Boolean);n.length>0&&e.classList.remove(...n)}let lt=!1;async function Nn(e,t,n=10){if(!lt){if(!e.isConnected){K("⚠️ Element not connected to DOM, skipping style wait");return}for(let r=0;r<n;r++){const i=window.getComputedStyle(e),o=i.transform&&i.transform!=="",s=i.opacity&&i.opacity!=="";if(o||s){lt=!0;return}await new Promise(c=>requestAnimationFrame(()=>c(void 0)))}lt=!0,K("⚠️ Styles did not load in time for transition, continuing anyway")}}function Dn(e){const t=window.getComputedStyle(e),n=t.transitionDuration||"0s",r=t.transitionDelay||"0s",i=o=>{const s=parseFloat(o);return o.includes("ms")?s:s*1e3};return i(n)+i(r)}function Kt(e,t){return new Promise(n=>{const r=t??Dn(e);if(r<=0){n();return}let i=!1;const o=()=>{i||(i=!0,e.removeEventListener("transitionend",s),e.removeEventListener("transitioncancel",s),n())},s=()=>o();e.addEventListener("transitionend",s),e.addEventListener("transitioncancel",s),setTimeout(o,r+50)})}async function Re(e,t){const{classes:n,hooks:r,css:i,duration:o}=t;if(r?.onBeforeEnter)try{r.onBeforeEnter(e)}catch(f){F("Transition onBeforeEnter error:",f)}if(!i)return r?.onEnter?new Promise(f=>{r.onEnter(e,()=>{if(r?.onAfterEnter)try{r.onAfterEnter(e)}catch(h){F("Transition onAfterEnter error:",h)}f()})}):void 0;const s=_e(n?.enterFrom),c=_e(n?.enterActive),a=_e(n?.enterTo);Se(e,s),e.offsetHeight,Se(e,c),e.offsetHeight;let l;if(r?.onEnter){const f=new Promise(h=>{l=h});try{r.onEnter(e,()=>{l&&l()})}catch(h){F("Transition onEnter error:",h)}l&&await f}await new Promise(f=>requestAnimationFrame(()=>f(void 0))),e.offsetHeight;const m=window.getComputedStyle(e),y=m.transform,p=m.opacity;Ae(e,s),y&&y!=="none"&&(e.style.transform=y),p&&p!==""&&(e.style.opacity=p),e.offsetHeight,await new Promise(f=>requestAnimationFrame(()=>f(void 0))),e.style.transform="",e.style.opacity="",Se(e,a),e.offsetHeight,await new Promise(f=>requestAnimationFrame(()=>f(void 0)));let v;if(typeof o=="number"?v=o:o&&typeof o=="object"&&"enter"in o&&(v=o.enter),await Kt(e,v),Ae(e,c),r?.onAfterEnter)try{r.onAfterEnter(e)}catch(f){F("Transition onAfterEnter error:",f)}}async function ut(e,t){const{classes:n,hooks:r,css:i,duration:o}=t;if(r?.onBeforeLeave)try{r.onBeforeLeave(e)}catch(y){F("Transition onBeforeLeave error:",y)}if(!i)return r?.onLeave?new Promise(y=>{r.onLeave(e,()=>{if(r?.onAfterLeave)try{r.onAfterLeave(e)}catch(p){F("Transition onAfterLeave error:",p)}y()})}):void 0;const s=_e(n?.leaveFrom),c=_e(n?.leaveActive),a=_e(n?.leaveTo);Se(e,s),e.offsetHeight,Se(e,c);let l;if(r?.onLeave){const y=new Promise(p=>{l=p});try{r.onLeave(e,()=>{l&&l()})}catch(p){F("Transition onLeave error:",p)}l&&await y}await new Promise(y=>requestAnimationFrame(()=>y(void 0))),await Nn(e,[...s,...c]),Ae(e,s),Se(e,a);let m;if(typeof o=="number"?m=o:o&&typeof o=="object"&&"leave"in o&&(m=o.leave),await Kt(e,m),Ae(e,c),Ae(e,a),Ae(e,s),r?.onAfterLeave)try{r.onAfterLeave(e)}catch(y){F("Transition onAfterLeave error:",y)}}const Vt=new WeakMap,Gt=new WeakMap;function Ye(e){if(!e)return;const t=Vt.get(e);if(t!==void 0)return t;try{const n=e;if(n&&n.key!=null)return n.key}catch{}if(e instanceof Element){const n=e.getAttribute("data-anchor-key");if(n)return n}}function ne(e,t){try{Vt.set(e,t)}catch{}try{e.key=t}catch{}try{if(e instanceof Element){const n=Y(t);n!==null&&e.setAttribute("data-anchor-key",n)}}catch{}}function Hn(e){if(!e)return;const t=Gt.get(e);if(t!==void 0)return t;try{const n=e;if(n&&n._transitionGroup!=null)return n._transitionGroup}catch{}}function Fn(e,t){try{Gt.set(e,t)}catch{}try{e._transitionGroup=t}catch{}}function oe(e){return e instanceof HTMLInputElement||e instanceof HTMLSelectElement||e instanceof HTMLTextAreaElement||e instanceof HTMLButtonElement}function Te(e){return e===""?!0:typeof e=="string"?e==="false"?!1:e==="true"?!0:e!=="":e&&typeof e=="object"?N(e)||"value"in e?!!e.value:!1:!!e}function ke(e,t){if(!t||!(e instanceof HTMLElement))return;ce.cleanup(e);for(const r in t)t[r]===e&&delete t[r];const n=e.childNodes;for(let r=0;r<n.length;r++)ke(n[r],t)}function Ne(e,t,n){if(typeof e=="string")return;const r=e.props?.reactiveRef??(e.props?.props&&e.props.props.reactiveRef),i=e.props?.ref??(e.props?.props&&e.props.props.ref);r?r.value=t:i&&n&&(n[i]=t)}function In(e,t,n,r,i,o,s,c){if(!o)return;const a=t.includes("lazy"),l=t.includes("trim"),m=t.includes("number"),y=e&&typeof e=="object"&&"value"in e&&typeof e.value<"u",p=()=>{if(y){const x=e.value;return c&&s&&(s instanceof HTMLInputElement||s instanceof HTMLTextAreaElement||s instanceof HTMLSelectElement)&&typeof x=="object"&&x!==null?x[c]:x}return X(o._state||o,e)},v=p();let f="text";s instanceof HTMLInputElement?f=r?.type||s.type||"text":s instanceof HTMLSelectElement?f="select":s instanceof HTMLTextAreaElement&&(f="textarea");const h=s instanceof HTMLInputElement||s instanceof HTMLTextAreaElement||s instanceof HTMLSelectElement,u=h?f==="checkbox"||f==="radio"?"checked":"value":c??"modelValue";if(f==="checkbox")if(Array.isArray(v))n[u]=v.includes(String(s?.getAttribute("value")??r?.value??""));else{const x=s?.getAttribute("true-value")??!0;n[u]=v===x}else if(f==="radio")n[u]=v===(r?.value??"");else if(f==="select")if(s&&s.hasAttribute("multiple")&&s instanceof HTMLSelectElement){const x=Array.isArray(v)?v.map(String):[];setTimeout(()=>{Array.from(s.options).forEach(S=>{S.selected=x.includes(S.value)})},0),n[u]=Array.isArray(v)?v:[]}else n[u]=v;else{!h&&y?n[u]=e:n[u]=v;try{const x=ie(u);r&&(r[x]=v)}catch{}}const g=a||f==="checkbox"||f==="radio"||f==="select"?"change":"input",w=x=>{if(x.isComposing||i._isComposing)return;const S=typeof globalThis.process<"u"&&globalThis.process.env?.NODE_ENV==="test"||typeof window<"u"&&window.__vitest__;if(x.isTrusted===!1&&!S)return;const C=x.target;if(!C||C._modelUpdating)return;let _=C.value;if(f==="checkbox"){const $=p();if(Array.isArray($)){const b=C.getAttribute("value")??"",E=Array.from($);if(C.checked)E.includes(b)||E.push(b);else{const P=E.indexOf(b);P>-1&&E.splice(P,1)}_=E}else{const b=C.getAttribute("true-value")??!0,E=C.getAttribute("false-value")??!1;_=C.checked?b:E}}else if(f==="radio")_=C.getAttribute("value")??C.value;else if(f==="select"&&C.multiple)_=Array.from(C.selectedOptions).map($=>$.value);else if(l&&typeof _=="string"&&(_=_.trim()),m){const $=Number(_);isNaN($)||(_=$)}const k=p();if(Je(_,k)){C._modelUpdating=!0;try{Ut(y,e,_,o,c),Xe(o,y,e,_),C&&Mn(C,u,_)}finally{setTimeout(()=>C._modelUpdating=!1,0)}}};if(h){if(i[g]){const x=i[g];s&&ce.removeListener(s,g,x)}i[g]=w}else{const x=`update:${ie(u)}`,S=`update:${u}`;if(i[x]){const C=i[x];s&&ce.removeListener(s,x,C)}if(i[S]){const C=i[S];s&&ce.removeListener(s,S,C)}if(i[x]=C=>{const _=C.detail!==void 0?C.detail:C.target?.value,k=Rn(y,e,o,c);if(Je(_,k)){Ut(y,e,_,o,c),Xe(o,y,e,_);const $=C.target;$&&qt($,u,y?e:_,y)}},y&&typeof e.value=="object"&&e.value!==null){let C=[];try{C=Reflect.ownKeys(e.value)}catch{C=Object.keys(e.value)}const _=C.filter(k=>typeof k=="string"&&!String(k).startsWith("_")&&k!=="constructor");for(const k of _){const T=`update:${ie(k)}`,$=`update:${k}`;i[T]||(i[T]=b=>{const E=b.detail!==void 0?b.detail:b.target?.value,P=y?e.value[k]:X(o._state||o,e);if(!Je(E,P))return;if(y){const R={...e.value};R[k]=E,e.value=R}else Ze(o._state||o,e,E);Xe(o,y,e,E);const A=b.currentTarget||s||b.target;A&&qt(A,u,y?e:E,y)},i[$]=i[T])}}i[S]=i[x]}(f==="text"||f==="textarea")&&(i.compositionstart=()=>i._isComposing=!0,i.compositionend=x=>{i._isComposing=!1;const S=x.target;S&&setTimeout(()=>{const C=S.value,_=o._state||o,k=X(_,e);let T=C;if(l&&(T=T.trim()),m){const b=Number(T);isNaN(b)||(T=b)}if(Je(T,k)){S._modelUpdating=!0;try{Ze(_,e,T),Xe(o,y,e,T)}finally{setTimeout(()=>S._modelUpdating=!1,0)}}},0)})}function Zt(e){const t=e.slice(2);return t?t.charAt(0).toLowerCase()+t.slice(1):""}function Wn(e,t,n,r,i){if(typeof e=="object"&&e!==null)for(const[o,s]of Object.entries(e))if(o.startsWith("data-")||o.startsWith("aria-")||o==="class")n[o]=s;else if(o==="disabled"&&i&&oe(i)){const c=s&&typeof s=="object"&&"value"in s;(()=>{try{return N(s)}catch{return!1}})()||c?t[o]=s:n[o]=s}else t[o]=s;else if(typeof e=="string"){if(!r)return;try{const o=De(e,r);if(typeof o=="object"&&o!==null){for(const[s,c]of Object.entries(o))if(s.startsWith("data-")||s.startsWith("aria-")||s==="class")n[s]=c;else if(s==="disabled"&&i&&oe(i)){const a=c&&typeof c=="object"&&"value"in c;(()=>{try{return N(c)}catch{return!1}})()||a?t[s]=c:n[s]=c}else t[s]=c;return}else{n[e]=o;return}}catch{const o=X(r,e);n[e]=o}}}function Bn(e,t,n){let r;if(typeof e=="string"){if(!n)return;r=De(e,n)}else r=e;const i=t.style||"";let o=i;if(r){if(i){const s=i.split(";").map(a=>a.trim()).filter(Boolean),c=s.findIndex(a=>a.startsWith("display:"));c>=0&&s[c]==="display: none"&&(s.splice(c,1),o=s.length>0?s.join("; ")+";":"")}}else if(i){const s=i.split(";").filter(Boolean),c=s.findIndex(a=>a.trim().startsWith("display:"));c>=0?s[c]="display: none":s.push("display: none"),o=s.join("; ")}else o="display: none";o!==i&&(o?t.style=o:delete t.style)}function De(e,t){return Pn.evaluate(e,t)}function zn(e,t,n){let r;if(typeof e=="string"){if(!n)return;r=De(e,n)}else r=e;try{if(r&&typeof r=="object"){if(N(r))r=r.value;else if("value"in r&&typeof r.value<"u"){const c=r.value;c instanceof Node||(r=c)}}}catch{}let i=[];if(typeof r=="string")i=[r];else if(Array.isArray(r))i=r.filter(Boolean);else if(typeof r=="object"&&r!==null)for(const[c,a]of Object.entries(r))a&&i.push(c);const o=t.class||"",s=i.join(" ");t.class=o?`${o} ${s}`.trim():s}function ft(e){if(e===!0||e===!1)return!0;if(e==null)return!1;if(typeof e==="string")return e===""||e==="true"||e==="false";try{if(e&&typeof e=="object"&&"value"in e){const n=e.value,r=typeof n;return r==="boolean"?!0:r==="string"?n===""||n==="true"||n==="false":!1}}catch{}return!1}function Un(e,t,n){let r;if(typeof e=="string"){if(!n)return;r=De(e,n)}else r=e;let i="";if(typeof r=="string")i=r;else if(r&&typeof r=="object"){const s=[];for(const[c,a]of Object.entries(r))if(a!=null&&a!==""){const l=c.replace(/[A-Z]/g,p=>`-${p.toLowerCase()}`),m=["width","height","top","right","bottom","left","margin","margin-top","margin-right","margin-bottom","margin-left","padding","padding-top","padding-right","padding-bottom","padding-left","font-size","line-height","border-width","border-radius","min-width","max-width","min-height","max-height"];let y=String(a);typeof a=="number"&&m.includes(l)&&(y=`${a}px`),s.push(`${l}: ${y}`)}i=s.join("; ")+(s.length>0?";":"")}const o=t.style||"";t.style=o+(o&&!o.endsWith(";")?"; ":"")+i}function qn(e,t,n){let r=e;typeof e=="string"&&n&&(r=De(e,n)),N(r)?t.reactiveRef=r:t.ref=r}function Jt(e,t,n,r){const i={},o={...r||{}},s={};for(const[c,a]of Object.entries(e)){const{value:l,modifiers:m,arg:y}=a;if(c==="model"||c.startsWith("model:")){const p=c.split(":"),v=p.length>1?p[1]:y;In(l,m,i,o,s,t,n,v);continue}switch(c){case"bind":Wn(l,i,o,t,n);break;case"show":Bn(l,o,t);break;case"class":zn(l,o,t);break;case"style":Un(l,o,t);break;case"ref":qn(l,i,t);break}}try{if(Object.prototype.hasOwnProperty.call(i,"disabled")&&n&&oe(n)){const a=i.disabled,l=a&&typeof a=="object"&&"value"in a;let m=!1;try{m=N(a)}catch{m=!1}if(!l&&!m)try{o.disabled=a,delete i.disabled;const y=globalThis;y.__VDOM_DISABLED_PROMOTIONS||(y.__VDOM_DISABLED_PROMOTIONS=[]),y.__VDOM_DISABLED_PROMOTIONS.push({phase:"bind-directive:postfix-move",location:"attrs",key:"disabled",value:a,time:Date.now(),stack:new Error().stack})}catch{}}}catch{}return{props:i,attrs:o,listeners:s}}function dt(e,t){if(Array.isArray(e)){const o=new Set;return e.map(s=>{if(!s||typeof s!="object")return s;let c=s.props?.key??s.key;if(!c){const y=s.tag||"node",v=[s.props?.attrs?.id,s.props?.attrs?.name,s.props?.attrs?.["data-key"],s.props?.props?.id,s.props?.props?.name,s.props?.props?.dataKey,s.props?.props?.["data-key"]].find(f=>f!=null)??"";c=v?`${t}:${y}:${v}`:`${t}:${y}`}let a=c,l=1;for(;o.has(a);)a=`${c}#${l++}`;o.add(a);let m=s.children;return Array.isArray(m)&&(m=dt(m,a)),{...s,key:a,children:m}})}const n=e;let r=n.props?.key??n.key??t,i=n.children;return Array.isArray(i)&&(i=dt(i,r)),{...n,key:r,children:i}}function Xt(e,t,n,r){const i=n.directives??{},o=Jt(i,r,e,n.attrs),s={...t.props,...n.props,...o.props},c={...t.attrs,...n.attrs,...o.attrs},a=t.props??{},l=s,m=n?.isCustomElement??t?.isCustomElement??!1;let y=!1;for(const f in{...a,...l}){const h=a[f],d=l[f];let u=h,g=d;if(M(()=>{(N(h)||h&&typeof h=="object"&&"value"in h)&&(u=h.value)}),M(()=>{(N(d)||d&&typeof d=="object"&&"value"in d)&&(g=d.value)}),!(h===d&&u===g))if(y=!0,f==="value"&&(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement||e instanceof HTMLSelectElement)){const w=typeof d=="object"&&d!==null&&N(d)||d&&typeof d=="object"&&"value"in d?d.value:d;e.value!==w&&(e.value=w??"")}else if(f==="checked"&&e instanceof HTMLInputElement){const w=typeof d=="object"&&d!==null&&N(d)||d&&typeof d=="object"&&"value"in d?d.value:d;e.checked=!!w}else if(f.startsWith("on")&&typeof d=="function"){const w=Zt(f);typeof h=="function"&&ce.removeListener(e,w,h),ce.addListener(e,w,d);try{if(w&&w.startsWith("update:")){const x=w.split(":",2)[1],S=l[x];let C=[];try{if(N(S)){const k=S.value;C=k&&typeof k=="object"?Object.keys(k):[]}else S&&typeof S=="object"&&(C=Object.keys(S))}catch{C=[]}const _=C.filter(k=>typeof k=="string"&&!k.startsWith("_")&&k!=="constructor");for(const k of _){const T=`update:${k}`,$=b=>{const E=b.detail!==void 0?b.detail:b.target?.value,j={...N(S)?S.value||{}:l[x]||{},[k]:E};M(()=>{d({detail:j})})};M(()=>{ce.addListener(e,T,$)})}}}catch{}}else if(d==null)e.removeAttribute(f);else{const w=n?.isCustomElement??t?.isCustomElement??!1;if(w||f in e)try{e[f]=d,f==="disabled"&&d===!1&&!w&&oe(e)&&e.removeAttribute("disabled")}catch{}else d===!1&&e.removeAttribute(f)}}for(const[f,h]of Object.entries(o.listeners||{})){ce.addListener(e,f,h);try{const d=e&&e.parentElement;d&&d!==e&&ce.addListener(d,f,h)}catch{}}const p=t.attrs??{},v=c;for(const f in{...p,...v}){const h=p[f],d=v[f];let u=h,g=d;if(N(h)&&(u=h.value),N(d)&&(g=d.value),u!==g)if(y=!0,g==null||g===!1)M(()=>{e.removeAttribute(f)}),f==="value"&&(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement?M(()=>{e.value=""}):e instanceof HTMLSelectElement?M(()=>{e.value=""}):e instanceof HTMLProgressElement&&M(()=>{e.value=0})),f==="checked"&&e instanceof HTMLInputElement&&M(()=>{e.checked=!1}),f==="disabled"&&oe(e)&&M(()=>{e.disabled=!1});else{if(f==="value"){if(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement){M(()=>{e.value=g??""});continue}else if(e instanceof HTMLSelectElement){M(()=>{e.value=g??""});continue}else if(e instanceof HTMLProgressElement){M(()=>{e.value=Number(g)});continue}}if(f==="checked"&&e instanceof HTMLInputElement){M(()=>{e.checked=!!g});continue}if(f==="style"){const x=Y(g);x!==null&&e.setAttribute(f,x);continue}if(f==="disabled"&&oe(e)){M(()=>{e.disabled=Te(g)}),Te(g)?M(()=>{e.setAttribute(f,"")}):M(()=>{e.removeAttribute(f)});continue}const w=e.namespaceURI==="http://www.w3.org/2000/svg";if(m&&!w&&f.includes("-"))if(zt(f)){const x=Y(d??g);if(x!==null)try{e.setAttribute(f,x)}catch{}}else{const x=at(f);try{N(d)?e[x]=d:e[x]=g}catch{const C=Y(d??g);C!==null&&e.setAttribute(f,C)}}else if(!w&&f in e)try{N(d)?e[f]=d:e[f]=g}catch{const S=Y(g);S!==null&&e.setAttribute(f,S)}else{const x=Y(g);x!==null&&e.setAttribute(f,x)}}}try{if(oe(e)){const f=s.disabled;let h;try{const u=Object.prototype.hasOwnProperty.call(o.props||{},"disabled"),g=f&&typeof f=="object"&&"value"in f;let w=!1;M(()=>{w=!!N(f)});const x=ft(f);w||g||u||x?h=f:h=c.disabled}catch{h=c.disabled}const d=Te(h);M(()=>{e.disabled=d}),M(d?()=>{e.setAttribute("disabled","")}:()=>{e.removeAttribute("disabled")})}}catch{}m&&y&&(M(()=>{e._applyProps?.(e._cfg)}),M(()=>{typeof e.requestRender=="function"?e.requestRender():typeof e._render=="function"&&e._render(e._cfg)}))}function re(e,t,n){if(typeof e=="string")return document.createTextNode(e);if(e.tag==="#text"){const p=document.createTextNode(typeof e.children=="string"?e.children:"");return e.key!=null&&ne(p,e.key),p}if(e.tag==="#raw"){const p=typeof e.children=="string"?e.children:"";return document.createRange().createContextualFragment(p)}if(e.tag==="#anchor"){const p=e,v=Array.isArray(p.children)?p.children:[],f=document.createTextNode(""),h=document.createTextNode("");p.key!=null&&(ne(f,`${p.key}:start`),ne(h,`${p.key}:end`)),p._startNode=f,p._endNode=h;const d=document.createDocumentFragment();d.appendChild(f);for(const u of v){const g=re(u,t);if(p.key!=null&&g instanceof Element&&!g.hasAttribute("data-anchor-key")){const w=u;w&&typeof w=="object"&&w.key!=null||ne(g,p.key)}d.appendChild(g)}return d.appendChild(h),d}const r=document.createElement(e.tag);e.key!=null&&ne(r,e.key),e.props&&e.props._transitionGroup&&Fn(r,e.props._transitionGroup);const{props:i={},attrs:o={},directives:s={}}=e.props??{},c=Jt(s,t,r,o),a={...i,...c.props},l={...o,...c.attrs};try{const p=(l&&l.class)??(a&&a.class)??(e.props&&e.props.attrs&&e.props.attrs.class)??(e.props&&e.props.props&&e.props.props.class),v=Y(p);if(v!==null){const f=String(v).trim();f&&r.setAttribute("class",f)}}catch{}try{if(a.disabled!==void 0&&r&&oe(r)){const p=a.disabled,v=p&&typeof p=="object"&&"value"in p;let f=!1;try{f=N(p)}catch{f=!1}!v&&!f&&M(()=>{l.disabled=p,delete a.disabled})}}catch{}const m=r.namespaceURI==="http://www.w3.org/2000/svg";for(const p in l){const v=l[p];if(typeof p!="string"||/\[object Object\]/.test(p))continue;const f=typeof v=="object"&&v!==null&&N(v)||v&&typeof v=="object"&&"value"in v?v.value:v;if(typeof f=="boolean")f?r.setAttribute(p,""):M(()=>{r.removeAttribute(p)});else if(f!=null){if(p==="disabled"&&oe(r)){const h=a.disabled,d=ft(h)?h:f,u=Te(d);M(()=>{r.disabled=u}),M(u?()=>{r.setAttribute(p,"")}:()=>{r.removeAttribute(p)});continue}if(!m&&p==="value"&&(r instanceof HTMLInputElement||r instanceof HTMLTextAreaElement||r instanceof HTMLSelectElement||r instanceof HTMLProgressElement))try{r instanceof HTMLProgressElement?r.value=Number(f):r.value=f??""}catch{const d=Y(f);d!==null&&r.setAttribute(p,d)}else if(!m&&p==="checked"&&r instanceof HTMLInputElement)try{r.checked=!!f}catch{const d=Y(f);d!==null&&r.setAttribute(p,d)}else if(!m&&p in r)try{r[p]=f,p==="disabled"&&f===!1&&oe(r)&&r.removeAttribute("disabled")}catch{const d=Y(f);d!==null&&r.setAttribute(p,d)}else if((e.props?.isCustomElement??!1)&&!m&&p.includes("-")){const d=at(p);try{r[d]=f}catch{const g=Y(f);g!==null&&r.setAttribute(p,g)}}else{const d=Y(f);d!==null&&r.setAttribute(p,d)}}}for(const p in a){const v=a[p];if(!(typeof p!="string"||/\[object Object\]/.test(p)))if(p==="value"&&(r instanceof HTMLInputElement||r instanceof HTMLTextAreaElement||r instanceof HTMLSelectElement)){const f=typeof v=="object"&&v!==null&&typeof v.value<"u"?v.value:v;M(()=>{r.value=f??""})}else if(p.startsWith("on")&&typeof v=="function"){const f=Zt(p),h=f.includes(":")?(()=>{const d=f.split(":"),u=d[1];if(u.includes("-")){const g=u.split("-").map((w,x)=>x===0?w:w.charAt(0).toUpperCase()+w.slice(1)).join("");return`${d[0]}:${g}`}else{const g=u.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();return`${d[0]}:${g}`}})():f;c.listeners&&(c.listeners[f]||c.listeners[h])||ce.addListener(r,f,v)}else{if(p.startsWith("on")&&v===void 0)continue;if(v==null||v===!1)r.removeAttribute(p);else{const f=e.props?.isCustomElement??!1,h=typeof v=="object"&&v!==null&&N(v)?v:typeof v=="object"&&v!==null&&typeof v.value<"u"?v.value:v;if(p==="class"||p==="style"){try{const d=Y(h);d!==null&&r.setAttribute(p,d)}catch{}continue}if(f||p in r)try{const d=typeof v=="object"&&v!==null&&N(v)?v:typeof v=="object"&&v!==null&&typeof v.value<"u"?v.value:v;if(p==="disabled"&&oe(r)){const u=a.disabled!==void 0?a.disabled:d,g=Te(u);M(()=>{r.disabled=g}),M(g?()=>{r.setAttribute(p,"")}:()=>{r.removeAttribute(p)});continue}try{if(typeof r[p]=="boolean"){let g=d;typeof d=="string"?d==="false"?g=!1:d==="true"?g=!0:g=!!d&&d!=="":g=!!d,r[p]=g}else r[p]=d}catch{r[p]=d}}catch{}}}}for(const[p,v]of Object.entries(c.listeners||{}))ce.addListener(r,p,v);const y={...e,props:{...e.props,...c.props}};Ne(y,r,n);try{if(typeof r._applyProps=="function")try{r._applyProps(r._cfg)}catch{}typeof r.requestRender=="function"?r.requestRender():typeof r._render=="function"&&r._render(r._cfg)}catch{}if(Array.isArray(e.children))for(const p of e.children)r.appendChild(re(p,t,n));else typeof e.children=="string"&&(r.textContent=e.children);try{if(r instanceof HTMLSelectElement&&l&&l.hasOwnProperty("value"))try{r.value=l.value??""}catch{}}catch{}try{if(oe(r)){const p=a.disabled,v=l.disabled,f=p&&typeof p=="object"&&"value"in p;let h=!1;try{h=!!N(p)}catch{h=!1}const u=h||f||ft(p)?p:v,g=Te(u);M(()=>{r.disabled=g}),M(g?()=>{r.setAttribute("disabled","")}:()=>{r.removeAttribute("disabled")})}}catch{}return r}function Kn(e,t,n,r,i){if(typeof n=="string"){e.textContent!==n&&(e.textContent=n);return}if(!Array.isArray(n))return;const o=e.childNodes,s=[];for(let h=0;h<o.length;h++)s.push(o[h]);const c=Array.isArray(t)?t:[],a=Hn(e);if(a){const h=w=>typeof w=="string"&&w.startsWith("each-")?w.substring(5):w,d=[],u=[];for(const w of n)if(w&&w.tag==="#anchor"){const x=Array.isArray(w.children)?w.children:[];for(const S of x){const C=h(S.key||w.key||"unknown");d.push({...S,key:C})}}else w&&d.push({...w,key:h(w.key)});for(const w of c)if(w&&w.tag==="#anchor"){const x=Array.isArray(w.children)?w.children:[];for(const S of x){const C=h(S.key||w.key||"unknown");u.push({...S,key:C})}}else w&&u.push({...w,key:h(w.key)});if(d.some(w=>w&&w.key!=null)||u.some(w=>w&&w.key!=null)){const w=new Map,x=new Map;for(const $ of u)if($&&$.key!=null){const b=String($.key);w.set(b,$)}for(let $=0;$<s.length;$++){const b=s[$];let E=Ye(b);if(E=h(E),E!=null&&b instanceof Element&&b.nodeType===Node.ELEMENT_NODE){let P=typeof E=="string"&&E.includes(":")?E.substring(0,E.lastIndexOf(":")):E;P=String(P),x.set(P,b)}}const S=new Set,C=new Map,_=s.length>0;if(a.moveClass&&_)for(let $=0;$<s.length;$++){const b=s[$];if(b instanceof HTMLElement&&b.parentElement){const E=b.getBoundingClientRect();C.set(b,E)}}const k=[];for(const $ of d){let b=$.key;if(b==null)continue;b=String(b);const E=w.get(b);let P=x.get(b);if(P&&E){const j=He(P,E,$,r);S.add(P);const A=String(b);ne(j,A),k.push({node:j,key:b,newVNode:$,oldVNode:E,isNew:!1})}else{P=re($,r),ne(P,b),e.appendChild(P);const j=_||a.appear===!0;P instanceof HTMLElement&&j&&Re(P,a).catch(A=>{F("Enter transition error:",A)}),k.push({node:P,key:b,newVNode:$,isNew:!0})}}const T=[];for(let $=0;$<s.length;$++){const b=s[$],E=Ye(b);if(!S.has(b)&&E!=null&&b instanceof HTMLElement){const j=ut(b,a).then(()=>{e.contains(b)&&e.removeChild(b)}).catch(A=>{F("Leave transition error:",A),e.contains(b)&&e.removeChild(b)});T.push(j)}}if(T.length===0){let $=e.firstChild;for(const{node:b}of k)b!==$&&e.insertBefore(b,$),$=b.nextSibling;if(a.moveClass&&C.size>0){const b=[];for(const{node:E,isNew:P}of k)if(!P&&E instanceof HTMLElement){const j=C.get(E);if(j){const A=E.getBoundingClientRect(),R=j.left-A.left,D=j.top-A.top;if(R!==0||D!==0){const he=a.moveClass.split(/\s+/).filter(J=>J);b.push({node:E,deltaX:R,deltaY:D,moveClasses:he})}}}if(b.length>0){for(const{node:E,deltaX:P,deltaY:j}of b)E.style.transform=`translate(${P}px, ${j}px)`,E.style.transitionProperty="none";e.offsetHeight,requestAnimationFrame(()=>{requestAnimationFrame(()=>{for(const{node:E,moveClasses:P}of b)for(const j of P)E.classList.add(j);requestAnimationFrame(()=>{const E=a.moveClass||"",P=E.match(/duration-(\d+)/),j=P?`${P[1]}ms`:"300ms",A=E.match(/ease-(out|in|in-out|linear)/),R=A?`ease-${A[1]}`:"ease-out";for(const{node:D}of b)D.style.transition=`transform ${j} ${R}`;requestAnimationFrame(()=>{for(const{node:D,moveClasses:he}of b){D.style.removeProperty("transform");const J=()=>{for(const V of he)D.classList.remove(V);D.style.removeProperty("transition"),D.removeEventListener("transitionend",J),D.removeEventListener("transitioncancel",J)};D.addEventListener("transitionend",J,{once:!0}),D.addEventListener("transitioncancel",J,{once:!0})}})})})})}}}return}}const l=new Map;for(const h of c)h&&h.key!=null&&l.set(h.key,h);const m=new Map;for(let h=0;h<s.length;h++){const d=s[h],u=Ye(d);u!=null&&m.set(u,d)}const y=new Set;let p=e.firstChild;function v(h,d){let u=h;for(;u&&(y.add(u),u!==d);)u=u.nextSibling}function f(h,d,u,g,w,x=!0){const S=[];let C=h.nextSibling;for(;C&&C!==d;)S.push(C),C=C.nextSibling;const _=Array.isArray(u)?u:[];if(g.some(T=>T&&T.key!=null)||_.some(T=>T&&T.key!=null)){const T=new Map,$=new Map;for(const j of _)j&&j.key!=null&&T.set(j.key,j);for(const j of S){const A=Ye(j);A!=null&&$.set(A,j)}const b=w&&w.state==="visible"&&_.length===0&&g.length>0,E=new Set;let P=h.nextSibling;for(const j of g){let A;if(j.key!=null&&$.has(j.key)){const R=T.get(j.key);A=He($.get(j.key),R,j,r),E.add(A),w&&A instanceof HTMLElement&&b&&w.appear&&Re(A,w).catch(D=>{F("Transition enter error (appear):",D)}),A!==P&&e.contains(A)&&e.insertBefore(A,P)}else A=re(j,r),e.insertBefore(A,P),E.add(A),w&&A instanceof HTMLElement&&x&&Re(A,w).catch(R=>{F("Transition enter error:",R)});P=A.nextSibling}for(const j of S)!E.has(j)&&e.contains(j)&&(w&&j instanceof HTMLElement&&x?ut(j,w).then(()=>{e.contains(j)&&e.removeChild(j)}).catch(A=>{F("Transition leave error:",A),e.contains(j)&&e.removeChild(j)}):e.removeChild(j))}else{const T=Math.min(_.length,g.length);for(let $=0;$<T;$++){const b=_[$],E=g[$],P=He(S[$],b,E,r);P!==S[$]&&(e.insertBefore(P,S[$]),e.removeChild(S[$]))}for(let $=T;$<g.length;$++){const b=re(g[$],r);e.insertBefore(b,d),w&&b instanceof HTMLElement&&x&&Re(b,w).catch(E=>{F("Transition enter error:",E)})}for(let $=T;$<S.length;$++){const b=S[$];w&&b instanceof HTMLElement&&x?ut(b,w).then(()=>{e.contains(b)&&e.removeChild(b)}).catch(E=>{F("Transition leave error:",E),e.contains(b)&&e.removeChild(b)}):e.removeChild(b)}}}for(const h of n){let d;if(h.tag==="#anchor"){const u=h.key,g=`${u}:start`,w=`${u}:end`;let x=m.get(g),S=m.get(w);const C=Array.isArray(h.children)?h.children:[];if(x||(x=document.createTextNode(""),ne(x,g)),S||(S=document.createTextNode(""),ne(S,w)),h._startNode=x,h._endNode=S,!e.contains(x)||!e.contains(S)){e.insertBefore(x,p);const _=h._transition,T=!(_&&_.state==="visible"&&C.length>0)||_.appear;for(const $ of C){const b=re($,r);e.insertBefore(b,p),_&&b instanceof HTMLElement&&T&&Re(b,_).catch(E=>{F("Transition enter error:",E)})}e.insertBefore(S,p)}else{const _=h._transition,T=l.get(u)?._transition,$=T&&T.state!==_?.state,b=_&&_.state==="visible"&&C.length>0&&!$,E=$||!b||_?.appear===!0;f(x,S,l.get(u)?.children,C,_,E)}v(x,S),p=S.nextSibling;continue}if(h.key!=null&&m.has(h.key)){const u=l.get(h.key);d=He(m.get(h.key),u,h,r,i),y.add(d),d!==p&&e.contains(d)&&(p&&!e.contains(p)&&(p=null),e.insertBefore(d,p))}else d=re(h,r,i),p&&!e.contains(p)&&(p=null),e.insertBefore(d,p),y.add(d);p=d.nextSibling}for(let h=0;h<s.length;h++){const d=s[h];!y.has(d)&&e.contains(d)&&(ke(d,i),e.removeChild(d))}}function He(e,t,n,r,i){if(t&&typeof t!="string"&&t.props?.ref&&i&&ke(e,i),t===n)return e;if(typeof n=="string"){if(e.nodeType===Node.TEXT_NODE)return e.textContent!==n&&(e.textContent=n),e;{const s=document.createTextNode(n);return e.parentNode?.replaceChild(s,e),s}}if(n&&typeof n!="string"&&n.tag==="#anchor"){const s=n,c=Array.isArray(s.children)?s.children:[],a=s._startNode??document.createTextNode(""),l=s._endNode??document.createTextNode("");s.key!=null&&(ne(a,`${s.key}:start`),ne(l,`${s.key}:end`)),s._startNode=a,s._endNode=l;const m=document.createDocumentFragment();m.appendChild(a);for(const y of c){const p=re(y,r);m.appendChild(p)}return m.appendChild(l),e.parentNode?.replaceChild(m,e),a}if(!n){ke(e,i);const s=document.createComment("removed");return e.parentNode?.replaceChild(s,e),s}if(!t||typeof t=="string"){ke(e,i);const s=re(n,r,i);return Ne(n,s,i),e.parentNode?.replaceChild(s,e),s}if(n.tag==="#anchor"){const s=Array.isArray(n.children)?n.children:[],c=n._startNode??document.createTextNode(""),a=n._endNode??document.createTextNode("");n.key!=null&&(ne(c,`${n.key}:start`),ne(a,`${n.key}:end`)),n._startNode=c,n._endNode=a;const l=document.createDocumentFragment();l.appendChild(c);for(const m of s)l.appendChild(re(m,r));return l.appendChild(a),e.parentNode?.replaceChild(l,e),c}if(typeof t!="string"&&typeof n!="string"&&t.tag===n.tag&&t.key===n.key){const s=e;return Xt(s,t.props||{},n.props||{},r),Kn(s,t.children,n.children,r,i),Ne(n,s,i),s}if(typeof t!="string"&&typeof n!="string"&&t.tag===n.tag&&(t.tag&&String(t.tag).includes("-")||n.props&&n.props.isCustomElement||t.props&&t.props.isCustomElement))try{const c=e;return Xt(c,t.props||{},n.props||{},r),Ne(n,c,i),c}catch{}ke(e,i);const o=re(n,r,i);return Ne(n,o,i),e.parentNode?.replaceChild(o,e),o}function Vn(e,t,n,r){let i;Array.isArray(t)?t.length===1?(i=t[0],i&&typeof i=="object"&&i.key==null&&(i={...i,key:"__root__"})):i={tag:"div",key:"__root__",children:t}:(i=t,i&&typeof i=="object"&&i.key==null&&(i={...i,key:"__root__"})),i&&typeof i=="object"&&i.tag==="#anchor"&&(i={tag:"div",key:"__anchor_root__",props:{attrs:{"data-anchor-block-root":"",key:"__anchor_root__"}},children:[i]}),i=dt(i,String(i.key??"root"));const o=e._prevVNode??null,s=e._prevDom??e.firstChild??null;let c;o&&s?typeof o!="string"&&typeof i!="string"&&o.tag===i.tag&&o.key===i.key?c=He(s,o,i,n,r):(c=re(i,n,r),e.replaceChild(c,s)):(c=re(i,n,r),e.firstChild?e.replaceChild(c,e.firstChild):e.appendChild(c));const a=[];for(let l=0;l<e.childNodes.length;l++){const m=e.childNodes[l];m!==c&&m.nodeName!=="STYLE"&&(ke(m,r),a.push(m))}a.forEach(l=>e.removeChild(l)),e._prevVNode=i,e._prevDom=c}function Qe(e){if(typeof e=="string")return Ge(e);if(e.tag==="#text")return typeof e.children=="string"?Ge(e.children):"";if(e.tag==="#anchor")return(Array.isArray(e.children)?e.children.filter(Boolean):[]).map(Qe).join("");if(e.tag==="#raw")return typeof e.children=="string"?e.children:"";let t="";e.props&&e.props.attrs&&(t=Object.entries(e.props.attrs).map(([r,i])=>` ${r}="${Ge(String(i))}"`).join(""));const n=Array.isArray(e.children)?e.children.filter(Boolean).map(Qe).join(""):typeof e.children=="string"?Ge(e.children):e.children?Qe(e.children):"";return`<${e.tag}${t}>${n}</${e.tag}>`}function Yt(e,...t){let n="";for(let r=0;r<e.length;r++)n+=e[r],r<t.length&&(n+=t[r]);return n}function Qt(e){return e.replace(/\/\*[\s\S]*?\*\//g,"").replace(/\s+/g," ").replace(/\s*([{}:;,>+~])\s*/g,"$1").replace(/;}/g,"}").trim()}let et=null;function en(){return et||(et=new CSSStyleSheet,et.replaceSync(Qt(Zn))),et}function Gn(e){return e.replace(/url\s*\(\s*['"]?javascript:[^)]*\)/gi,"").replace(/<script[\s\S]*?>[\s\S]*?<\/script>/gi,"").replace(/expression\s*\([^)]*\)/gi,"")}const Zn=Yt`
5
5
  :host,
6
6
  *,
7
7
  ::before,
@@ -114,7 +114,7 @@
114
114
  [hidden] {
115
115
  display: none;
116
116
  }
117
- `,Yt=Object.fromEntries(Object.entries({neutral:{50:"#fafafa",100:"#f4f4f5",200:"#e4e4e7",300:"#d4d4d8",400:"#9f9fa9",500:"#71717b",600:"#52525c",700:"#3f3f46",800:"#27272a",900:"#18181b",950:"#09090b"},primary:{50:"#eff6ff",100:"#dbeafe",200:"#bfdbfe",300:"#93c5fd",400:"#60a5fa",500:"#3b82f6",600:"#2563eb",700:"#1d4ed8",800:"#1e40af",900:"#1e3a8a",950:"#172554"},secondary:{50:"#eef2ff",100:"#e0e7ff",200:"#c7d2fe",300:"#a5b4fc",400:"#818cf8",500:"#6366f1",600:"#4f46e5",700:"#4338ca",800:"#3730a3",900:"#312e81",950:"#1e1b4b"},success:{50:"#f0fdf4",100:"#dcfce7",200:"#bbf7d0",300:"#86efac",400:"#4ade80",500:"#22c55e",600:"#16a34a",700:"#15803d",800:"#166534",900:"#14532d",950:"#052e16"},info:{50:"#f0f9ff",100:"#e0f2fe",200:"#bae6fd",300:"#7dd3fc",400:"#38bdf8",500:"#0ea5e9",600:"#0284c7",700:"#0369a1",800:"#075985",900:"#0c4a6e",950:"#082f49"},warning:{50:"#fffbeb",100:"#fef3c7",200:"#fde68a",300:"#fcd34d",400:"#fbbf24",500:"#f59e0b",600:"#d97706",700:"#b45309",800:"#92400e",900:"#78350f",950:"#451a03"},error:{50:"#fef2f2",100:"#fee2e2",200:"#fecaca",300:"#fca5a5",400:"#f87171",500:"#ef4444",600:"#dc2626",700:"#b91c1c",800:"#991b1b",900:"#7f1d1d",950:"#450a0a"},white:{DEFAULT:"#ffffff"},black:{DEFAULT:"#000000"},transparent:{DEFAULT:"transparent"},current:{DEFAULT:"currentColor"}}).map(([e,t])=>[e,Object.fromEntries(Object.entries(t).map(([n,r])=>[n,`var(--color-${e}${n==="DEFAULT"?"":`-${n}`}, ${r})`]))])),me="0.25rem",Kn={"3xs":64,"2xs":72,xs:80,sm:96,md:112,lg:128,xl:144,"2xl":168,"3xl":192,"4xl":224,"5xl":256,"6xl":288,"7xl":320},ft={m:["margin"],mx:["margin-inline"],my:["margin-block"],mt:["margin-top"],mr:["margin-right"],mb:["margin-bottom"],ml:["margin-left"],p:["padding"],px:["padding-inline"],py:["padding-block"],pt:["padding-top"],pr:["padding-right"],pb:["padding-bottom"],pl:["padding-left"],inset:["inset"],"inset-x":["inset-inline"],"inset-y":["inset-block"],h:["height"],w:["width"],"min-h":["min-height"],"min-w":["min-width"],"max-h":["max-height"],"max-w":["max-width"],top:["top"],bottom:["bottom"],left:["left"],right:["right"],gap:["gap"],"gap-x":["column-gap"],"gap-y":["row-gap"]},dt=(()=>{const e={};e["@container"]="container-type:inline-size;",["block","inline","inline-block","flex","inline-flex","grid","inline-grid","table","table-cell","table-row","hidden"].forEach(a=>{e[a]=a==="hidden"?"display:none;":`display:${a};`}),["absolute","relative","fixed","sticky","static"].forEach(a=>{e[a]=`position:${a};`}),Object.assign(e,{"items-center":"align-items:center;","items-start":"align-items:flex-start;","items-end":"align-items:flex-end;","items-baseline":"align-items:baseline;","items-stretch":"align-items:stretch;","justify-center":"justify-content:center;","justify-start":"justify-content:flex-start;","justify-between":"justify-content:space-between;","justify-around":"justify-content:space-around;","justify-evenly":"justify-content:space-evenly;","justify-end":"justify-content:flex-end;","flex-wrap":"flex-wrap:wrap;","flex-nowrap":"flex-wrap:nowrap;","flex-wrap-reverse":"flex-wrap:wrap-reverse;","content-center":"align-content:center;","content-start":"align-content:flex-start;","content-end":"align-content:flex-end;","content-between":"align-content:space-between;","content-around":"align-content:space-around;","content-evenly":"align-content:space-evenly;","content-stretch":"align-content:stretch;","self-auto":"align-self:auto;","self-start":"align-self:flex-start;","self-end":"align-self:flex-end;","self-center":"align-self:center;","self-stretch":"align-self:stretch;","flex-col":"flex-direction:column;","flex-row":"flex-direction:row;","flex-col-reverse":"flex-direction:column-reverse;","flex-row-reverse":"flex-direction:row-reverse;","flex-1":"flex:1 1 0%;","flex-auto":"flex:1 1 auto;","flex-initial":"flex:0 1 auto;","flex-none":"flex:0 0 auto;",grow:"flex-grow:1;",shrink:"flex-shrink:1;","grow-0":"flex-grow:0;","shrink-0":"flex-shrink:0;"});for(let a=1;a<=12;a++)e[`grid-cols-${a}`]=`grid-template-columns:repeat(${a},minmax(0,1fr));`,e[`grid-rows-${a}`]=`grid-template-rows:repeat(${a},minmax(0,1fr));`,e[`col-span-${a}`]=`grid-column:span ${a} / span ${a};`,e[`row-span-${a}`]=`grid-row:span ${a} / span ${a};`,e[`col-start-${a}`]=`grid-column-start:${a};`,e[`col-end-${a}`]=`grid-column-end:${a};`,e[`row-start-${a}`]=`grid-row-start:${a};`,e[`row-end-${a}`]=`grid-row-end:${a};`;Object.assign(e,{"grid-cols-none":"grid-template-columns:none;","grid-rows-none":"grid-template-rows:none;","col-span-full":"grid-column:1 / -1;","row-span-full":"grid-row:1 / -1;","auto-cols-auto":"grid-auto-columns:auto;","auto-cols-min":"grid-auto-columns:min-content;","auto-cols-max":"grid-auto-columns:max-content;","auto-cols-fr":"grid-auto-columns:1fr;","auto-rows-auto":"grid-auto-rows:auto;","auto-rows-min":"grid-auto-rows:min-content;","auto-rows-max":"grid-auto-rows:max-content;","auto-rows-fr":"grid-auto-rows:1fr;","grid-flow-row":"grid-auto-flow:row;","grid-flow-col":"grid-auto-flow:column;","grid-flow-row-dense":"grid-auto-flow:row dense;","grid-flow-col-dense":"grid-auto-flow:column dense;"}),Object.assign(e,{"text-left":"text-align:left;","text-center":"text-align:center;","text-right":"text-align:right;","text-justify":"text-align:justify;","font-thin":"font-weight:100;","font-extralight":"font-weight:200;","font-light":"font-weight:300;","font-normal":"font-weight:400;","font-medium":"font-weight:500;","font-semibold":"font-weight:600;","font-bold":"font-weight:700;","font-extrabold":"font-weight:800;","font-black":"font-weight:900;",italic:"font-style:italic;","not-italic":"font-style:normal;",uppercase:"text-transform:uppercase;",lowercase:"text-transform:lowercase;",capitalize:"text-transform:capitalize;","normal-case":"text-transform:none;",underline:"text-decoration-line:underline;",overline:"text-decoration-line:overline;","line-through":"text-decoration-line:line-through;","no-underline":"text-decoration-line:none;",truncate:"overflow:hidden;text-overflow:ellipsis;white-space:nowrap;","whitespace-normal":"white-space:normal;","whitespace-nowrap":"white-space:nowrap;","whitespace-pre":"white-space:pre;","whitespace-pre-line":"white-space:pre-line;","whitespace-pre-wrap":"white-space:pre-wrap;","break-normal":"overflow-wrap:normal;word-break:normal;","break-words":"overflow-wrap:break-word;","break-all":"word-break:break-all;"}),[["text-xs","0.75rem","1"],["text-sm","0.875rem","1.25"],["text-base","1rem","1.5"],["text-lg","1.125rem","1.75"],["text-xl","1.25rem","1.75"],["text-2xl","1.5rem","2"],["text-3xl","1.875rem","2.25"],["text-4xl","2.25rem","2.5"],["text-5xl","3rem","1"],["text-6xl","3.75rem","1"],["text-7xl","4.5rem","1"],["text-8xl","6rem","1"],["text-9xl","8rem","1"]].forEach(([a,l,m])=>{e[a]=`font-size:${l};line-height:var(--ce-line-height,${m});`}),[["tracking-tighter","-0.05em"],["tracking-tight","-0.025em"],["tracking-normal","0em"],["tracking-wide","0.025em"],["tracking-wider","0.05em"],["tracking-widest","0.1em"]].forEach(([a,l])=>{e[a]=`letter-spacing:${l};`}),[["leading-3","0.75rem"],["leading-4","1rem"],["leading-5","1.25rem"],["leading-6","1.5rem"],["leading-7","1.75rem"],["leading-8","2rem"],["leading-9","2.25rem"],["leading-10","2.5rem"],["leading-none","1"],["leading-tight","1.25"],["leading-snug","1.375"],["leading-normal","1.5"],["leading-relaxed","1.625"],["leading-loose","2"]].forEach(([a,l])=>{e[a]=`line-height:${l};--ce-line-height:${l};line-height:var(--ce-line-height,${l});`});const o=[0,1,2,4,6,8];for(const a of o){const l=`${a}px`;e[`border-${a}`]=`border-width:${l};`,e[`border-t-${a}`]=`border-top-width:${l};`,e[`border-r-${a}`]=`border-right-width:${l};`,e[`border-b-${a}`]=`border-bottom-width:${l};`,e[`border-l-${a}`]=`border-left-width:${l};`,e[`border-x-${a}`]=`border-left-width:${l};border-right-width:${l};`,e[`border-y-${a}`]=`border-top-width:${l};border-bottom-width:${l};`}Object.assign(e,{"font-sans":"font-family:var(--font-sans, ui-sans-serif,system-ui,sans-serif);","font-serif":"font-family:var(--font-serif, ui-serif,Georgia,serif);","font-mono":"font-family:var(--font-mono, ui-monospace,SFMono-Regular,monospace);",border:"border-width:1px;","border-t":"border-top-width:1px;","border-r":"border-right-width:1px;","border-b":"border-bottom-width:1px;","border-l":"border-left-width:1px;","border-x":"border-left-width:1px;border-right-width:1px;","border-y":"border-top-width:1px;border-bottom-width:1px;","border-solid":"border-style:solid;","border-dashed":"border-style:dashed;","border-dotted":"border-style:dotted;","border-double":"border-style:double;","border-none":"border-style:none;"});const s={none:0,xs:2,sm:4,md:6,lg:8,xl:12,"2xl":16,"3xl":24,"4xl":32,full:9999};for(const[a,l]of Object.entries(s)){const m=l===9999?"9999px":`${l/16}rem`;e[`rounded-${a}`]=`border-radius:${m};`,e[`rounded-t-${a}`]=`border-top-left-radius:${m};border-top-right-radius:${m};`,e[`rounded-r-${a}`]=`border-top-right-radius:${m};border-bottom-right-radius:${m};`,e[`rounded-b-${a}`]=`border-bottom-left-radius:${m};border-bottom-right-radius:${m};`,e[`rounded-l-${a}`]=`border-top-left-radius:${m};border-bottom-left-radius:${m};`,e[`rounded-tl-${a}`]=`border-top-left-radius:${m};`,e[`rounded-tr-${a}`]=`border-top-right-radius:${m};`,e[`rounded-br-${a}`]=`border-bottom-right-radius:${m};`,e[`rounded-bl-${a}`]=`border-bottom-left-radius:${m};`}Object.assign(e,{"shadow-none":"--ce-shadow-color:rgb(0 0 0 / 0);box-shadow:0 0 var(--ce-shadow-color, #0000);","shadow-xs":"--ce-shadow-color:rgb(0 0 0 / 0.05);box-shadow:0 1px 2px 0 var(--ce-shadow-color, rgb(0 0 0 / 0.05));","shadow-sm":"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 1px 3px 0 var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 1px 2px -1px var(--ce-shadow-color, rgb(0 0 0 / 0.1));",shadow:"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 1px 3px 0 var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 1px 2px -1px var(--ce-shadow-color, rgb(0 0 0 / 0.1));","shadow-md":"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 4px 6px -1px var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 2px 4px -2px var(--ce-shadow-color, rgb(0 0 0 / 0.1));","shadow-lg":"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 10px 15px -3px var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 4px 6px -4px var(--ce-shadow-color, rgb(0 0 0 / 0.1));","shadow-xl":"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 20px 25px -5px var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 8px 10px -6px var(--ce-shadow-color, rgb(0 0 0 / 0.1));","shadow-2xl":"--ce-shadow-color:rgb(0 0 0 / 0.25);box-shadow:0 25px 50px -12px var(--ce-shadow-color, rgb(0 0 0 / 0.25));","shadow-inner":"box-shadow:inset 0 2px 4px 0 rgb(0 0 0 / 0.05);"}),Object.assign(e,{rounded:"border-radius:0.25rem;"}),Object.assign(e,{"overflow-auto":"overflow:auto;","overflow-hidden":"overflow:hidden;","overflow-visible":"overflow:visible;","overflow-scroll":"overflow:scroll;","overflow-x-auto":"overflow-x:auto;","overflow-x-hidden":"overflow-x:hidden;","overflow-x-visible":"overflow-x:visible;","overflow-x-scroll":"overflow-x:scroll;","overflow-y-auto":"overflow-y:auto;","overflow-y-hidden":"overflow-y:hidden;","overflow-y-visible":"overflow-y:visible;","overflow-y-scroll":"overflow-y:scroll;"});const c=["auto","default","pointer","wait","text","move","help","not-allowed","grab","grabbing"];for(const a of c)e[`cursor-${a}`]=`cursor:${a};`;for(const a of[0,10,20,30,40,50])e[`z-${a}`]=`z-index:${a};`;Object.assign(e,{"sr-only":"position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0;","not-sr-only":"position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal;","pointer-events-none":"pointer-events:none;","pointer-events-auto":"pointer-events:auto;",visible:"visibility:visible;",invisible:"visibility:hidden;"}),Object.assign(e,{"w-full":"width:100%;","w-screen":"width:100dvw;","h-full":"height:100%;","h-screen":"height:100dvh;","max-w-full":"max-width:100%;","max-h-full":"max-height:100%;","max-w-screen":"max-width:100dvw;","max-h-screen":"max-height:100dvh;","min-w-0":"min-width:0;","min-h-0":"min-height:0;","min-w-full":"min-width:100%;","min-h-full":"min-height:100%;","min-w-screen":"min-width:100dvw;","min-h-screen":"min-height:100dvh;","w-auto":"width:auto;","h-auto":"height:auto;","w-fit":"width:fit-content;","h-fit":"height:fit-content;","w-min":"width:min-content;","h-min":"height:min-content;","w-max":"width:max-content;","h-max":"height:max-content;","m-auto":"margin:auto;","mx-auto":"margin-inline:auto;","my-auto":"margin-block:auto;"});for(const[a,l]of Object.entries(Kn))e[`max-w-${a}`]=`max-width:calc(${me} * ${l});`,e[`min-w-${a}`]=`min-width:calc(${me} * ${l});`,e[`w-${a}`]=`width:calc(${me} * ${l});`,e[`max-h-${a}`]=`max-height:calc(${me} * ${l});`,e[`min-h-${a}`]=`min-height:calc(${me} * ${l});`,e[`h-${a}`]=`height:calc(${me} * ${l});`;Object.assign(e,{transition:"transition-property:all;transition-duration:150ms;transition-timing-function:ease-in-out;","transition-none":"transition-property:none;","transition-all":"transition-property:all;","transition-colors":"transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;","transition-shadow":"transition-property:box-shadow;","transition-opacity":"transition-property:opacity;","transition-transform":"transition-property:transform;","ease-linear":"transition-timing-function:linear;","ease-in":"transition-timing-function:ease-in;","ease-out":"transition-timing-function:ease-out;","ease-in-out":"transition-timing-function:ease-in-out;","duration-75":"transition-duration:75ms;","duration-100":"transition-duration:100ms;","duration-150":"transition-duration:150ms;","duration-200":"transition-duration:200ms;","duration-300":"transition-duration:300ms;","duration-500":"transition-duration:500ms;","duration-700":"transition-duration:700ms;","duration-1000":"transition-duration:1000ms;"}),Object.assign(e,{"scale-0":"transform:scale(0);","scale-50":"transform:scale(0.5);","scale-75":"transform:scale(0.75);","scale-90":"transform:scale(0.9);","scale-95":"transform:scale(0.95);","scale-100":"transform:scale(1);","scale-105":"transform:scale(1.05);","scale-110":"transform:scale(1.1);","scale-125":"transform:scale(1.25);","scale-150":"transform:scale(1.5);","rotate-0":"transform:rotate(0deg);","rotate-1":"transform:rotate(1deg);","rotate-2":"transform:rotate(2deg);","rotate-3":"transform:rotate(3deg);","rotate-6":"transform:rotate(6deg);","rotate-12":"transform:rotate(12deg);","rotate-45":"transform:rotate(45deg);","rotate-90":"transform:rotate(90deg);","rotate-180":"transform:rotate(180deg);","-rotate-1":"transform:rotate(-1deg);","-rotate-2":"transform:rotate(-2deg);","-rotate-3":"transform:rotate(-3deg);","-rotate-6":"transform:rotate(-6deg);","-rotate-12":"transform:rotate(-12deg);","-rotate-45":"transform:rotate(-45deg);","-rotate-90":"transform:rotate(-90deg);","-rotate-180":"transform:rotate(-180deg);"}),Object.assign(e,{"aspect-auto":"aspect-ratio:auto;","aspect-square":"aspect-ratio:1 / 1;","aspect-video":"aspect-ratio:16 / 9;"}),Object.assign(e,{"object-contain":"object-fit:contain;","object-cover":"object-fit:cover;","object-fill":"object-fit:fill;","object-none":"object-fit:none;","object-scale-down":"object-fit:scale-down;","object-bottom":"object-position:bottom;","object-center":"object-position:center;","object-left":"object-position:left;","object-left-bottom":"object-position:left bottom;","object-left-top":"object-position:left top;","object-right":"object-position:right;","object-right-bottom":"object-position:right bottom;","object-right-top":"object-position:right top;","object-top":"object-position:top;"});for(let a=1;a<=6;a++)e[`line-clamp-${a}`]=`display:-webkit-box;-webkit-line-clamp:${a};-webkit-box-orient:vertical;overflow:hidden;`;e["line-clamp-none"]="overflow:visible;display:block;-webkit-box-orient:horizontal;-webkit-line-clamp:none;";for(let a=1;a<=12;a++)e[`order-${a}`]=`order:${a};`;e["order-first"]="order:-9999;",e["order-last"]="order:9999;",e["order-none"]="order:0;";for(let a=0;a<=12;a++)a<=1||(e[`grow-${a}`]=`flex-grow:${a};`,e[`shrink-${a}`]=`flex-shrink:${a};`);return Object.assign(e,{"bg-linear-to-t":"background-image:linear-gradient(to top, var(--ce-gradient-stops));","bg-linear-to-tr":"background-image:linear-gradient(to top right, var(--ce-gradient-stops));","bg-linear-to-r":"background-image:linear-gradient(to right, var(--ce-gradient-stops));","bg-linear-to-br":"background-image:linear-gradient(to bottom right, var(--ce-gradient-stops));","bg-linear-to-b":"background-image:linear-gradient(to bottom, var(--ce-gradient-stops));","bg-linear-to-bl":"background-image:linear-gradient(to bottom left, var(--ce-gradient-stops));","bg-linear-to-l":"background-image:linear-gradient(to left, var(--ce-gradient-stops));","bg-linear-to-tl":"background-image:linear-gradient(to top left, var(--ce-gradient-stops));","bg-radial":"background-image:radial-gradient(ellipse at center, var(--ce-gradient-stops));","bg-radial-at-t":"background-image:radial-gradient(ellipse at top, var(--ce-gradient-stops));","bg-radial-at-tr":"background-image:radial-gradient(ellipse at top right, var(--ce-gradient-stops));","bg-radial-at-r":"background-image:radial-gradient(ellipse at right, var(--ce-gradient-stops));","bg-radial-at-br":"background-image:radial-gradient(ellipse at bottom right, var(--ce-gradient-stops));","bg-radial-at-b":"background-image:radial-gradient(ellipse at bottom, var(--ce-gradient-stops));","bg-radial-at-bl":"background-image:radial-gradient(ellipse at bottom left, var(--ce-gradient-stops));","bg-radial-at-l":"background-image:radial-gradient(ellipse at left, var(--ce-gradient-stops));","bg-radial-at-tl":"background-image:radial-gradient(ellipse at top left, var(--ce-gradient-stops));","bg-radial-circle":"background-image:radial-gradient(circle at center, var(--ce-gradient-stops));","bg-radial-circle-at-t":"background-image:radial-gradient(circle at top, var(--ce-gradient-stops));","bg-radial-circle-at-tr":"background-image:radial-gradient(circle at top right, var(--ce-gradient-stops));","bg-radial-circle-at-r":"background-image:radial-gradient(circle at right, var(--ce-gradient-stops));","bg-radial-circle-at-br":"background-image:radial-gradient(circle at bottom right, var(--ce-gradient-stops));","bg-radial-circle-at-b":"background-image:radial-gradient(circle at bottom, var(--ce-gradient-stops));","bg-radial-circle-at-bl":"background-image:radial-gradient(circle at bottom left, var(--ce-gradient-stops));","bg-radial-circle-at-l":"background-image:radial-gradient(circle at left, var(--ce-gradient-stops));","bg-radial-circle-at-tl":"background-image:radial-gradient(circle at top left, var(--ce-gradient-stops));","bg-conic":"background-image:conic-gradient(from 0deg at center, var(--ce-gradient-stops));","bg-conic-at-t":"background-image:conic-gradient(from 0deg at top, var(--ce-gradient-stops));","bg-conic-at-tr":"background-image:conic-gradient(from 0deg at top right, var(--ce-gradient-stops));","bg-conic-at-r":"background-image:conic-gradient(from 0deg at right, var(--ce-gradient-stops));","bg-conic-at-br":"background-image:conic-gradient(from 0deg at bottom right, var(--ce-gradient-stops));","bg-conic-at-b":"background-image:conic-gradient(from 0deg at bottom, var(--ce-gradient-stops));","bg-conic-at-bl":"background-image:conic-gradient(from 0deg at bottom left, var(--ce-gradient-stops));","bg-conic-at-l":"background-image:conic-gradient(from 0deg at left, var(--ce-gradient-stops));","bg-conic-at-tl":"background-image:conic-gradient(from 0deg at top left, var(--ce-gradient-stops));"}),e})();function ae(e,t){let n=0;for(let r=0;r<e.length;r++){const i=e[r];if(i==="["||i==="(")n++;else if((i==="]"||i===")")&&n>0)n--;else if(n===0&&(i===">"||i==="+"||i==="~"||i===" "))return e.slice(0,r)+t+e.slice(r)}return e+t}const Vn={before:(e,t)=>`${e}::before{${t}}`,after:(e,t)=>`${e}::after{${t}}`,hover:(e,t)=>`${ae(e,":hover")}{${t}}`,focus:(e,t)=>`${ae(e,":focus")}{${t}}`,active:(e,t)=>`${ae(e,":active")}{${t}}`,disabled:(e,t)=>`${ae(e,":disabled")}{${t}}`,visited:(e,t)=>`${ae(e,":visited")}{${t}}`,checked:(e,t)=>`${ae(e,":checked")}{${t}}`,first:(e,t)=>`${ae(e,":first-child")}{${t}}`,last:(e,t)=>`${ae(e,":last-child")}{${t}}`,odd:(e,t)=>`${ae(e,":nth-child(odd)")}{${t}}`,even:(e,t)=>`${ae(e,":nth-child(even)")}{${t}}`,"focus-within":(e,t)=>`${ae(e,":focus-within")}{${t}}`,"focus-visible":(e,t)=>`${ae(e,":focus-visible")}{${t}}`,"group-hover":(e,t)=>`.group:hover ${e}{${t}}`,"group-focus":(e,t)=>`.group:focus ${e}{${t}}`,"group-active":(e,t)=>`.group:active ${e}{${t}}`,"group-disabled":(e,t)=>`.group:disabled ${e}{${t}}`,"peer-hover":(e,t)=>`.peer:hover ~ ${e}{${t}}`,"peer-focus":(e,t)=>`.peer:focus ~ ${e}{${t}}`,"peer-checked":(e,t)=>`.peer:checked ~ ${e}{${t}}`,"peer-disabled":(e,t)=>`.peer:disabled ~ ${e}{${t}}`},pt={sm:"(min-width:640px)",md:"(min-width:768px)",lg:"(min-width:1024px)",xl:"(min-width:1280px)","2xl":"(min-width:1536px)",dark:"(prefers-color-scheme: dark)"},Qt={xs:"(min-width:20rem)",sm:"(min-width:24rem)",md:"(min-width:28rem)",lg:"(min-width:32rem)",xl:"(min-width:36rem)","2xl":"(min-width:42rem)","3xl":"(min-width:48rem)","4xl":"(min-width:56rem)","5xl":"(min-width:64rem)","6xl":"(min-width:72rem)","7xl":"(min-width:80rem)"},ht=["sm","md","lg","xl","2xl"],gt=["xs","sm","md","lg","xl","2xl","3xl","4xl","5xl","6xl","7xl"];function mt(e){const t=e.startsWith("-"),n=t?e.slice(1):e,r=n.lastIndexOf("-");if(r===-1)return null;const i=n.slice(0,r),o=n.slice(r+1);if(!ft[i])return null;if(o.includes("/")){const[a,l]=o.split("/").map(y=>parseFloat(y));if(Number.isNaN(a)||Number.isNaN(l)||l===0)return null;const m=a/l*100;return ft[i].map(y=>`${y}:${m}%;`).join("")}const s=parseFloat(o);if(Number.isNaN(s))return null;const c=t?"-":"";return ft[i].map(a=>`${a}:calc(${c}${me} * ${s});`).join("")}function yt(e){const t=e.startsWith("-"),r=(t?e.slice(1):e).match(/^space-(x|y)-(.+)$/);if(!r)return null;const[,i,o]=r,s=i==="x";if(o==="reverse")return s?"--ce-space-x-reverse:1;":"--ce-space-y-reverse:1;";if(o.includes("/")){const[m,y]=o.split("/").map(f=>parseFloat(f));if(Number.isNaN(m)||Number.isNaN(y)||y===0)return null;const p=m/y*100,v=t?"-":"";return s?`--ce-space-x-reverse:0;& > :not([hidden]) ~ :not([hidden]){margin-inline-start:calc(${v}${p}% * calc(1 - var(--ce-space-x-reverse)));margin-inline-end:calc(${v}${p}% * var(--ce-space-x-reverse));}`:`--ce-space-y-reverse:0;& > :not([hidden]) ~ :not([hidden]){margin-top:calc(${v}${p}% * calc(1 - var(--ce-space-y-reverse)));margin-bottom:calc(${v}${p}% * var(--ce-space-y-reverse));}`}const c=parseFloat(o);if(Number.isNaN(c))return null;const l=`calc(${t?"-":""}${me} * ${c})`;return s?`--ce-space-x-reverse:0;& > :not([hidden]) ~ :not([hidden]){margin-inline-start:calc(${l} * calc(1 - var(--ce-space-x-reverse)));margin-inline-end:calc(${l} * var(--ce-space-x-reverse));}`:`--ce-space-y-reverse:0;& > :not([hidden]) ~ :not([hidden]){margin-top:calc(${l} * calc(1 - var(--ce-space-y-reverse)));margin-bottom:calc(${l} * var(--ce-space-y-reverse));}`}function en(e){const t=e.replace("#",""),n=parseInt(t,16);return`${n>>16&255} ${n>>8&255} ${n&255}`}const Gn=/^(bg|text|border|decoration|shadow|outline|caret|accent|fill|stroke)-([a-z]+)-?(\d{2,3}|DEFAULT)?$/,Zn={bg:"background-color",decoration:"text-decoration-color",text:"color",border:"border-color",outline:"outline-color",caret:"caret-color",accent:"accent-color",fill:"fill",stroke:"stroke"};function Jn(e){const t=Gn.exec(e);if(!t)return null;const[,n,r,i="DEFAULT"]=t,o=Yt[r]?.[i];if(!o)return null;if(n==="shadow")return`--ce-shadow-color:${o};`;const s=Zn[n];return s?`${s}:${o};`:null}function Xn(e){const t=e.indexOf("/");if(t===-1)return{base:e};const n=e.slice(0,t),r=e.slice(t+1),i=parseInt(r,10);return isNaN(i)||i<0||i>100?{base:n}:{base:n,opacity:i/100}}function bt(e){const{base:t,opacity:n}=Xn(e),r=Jn(t);if(r&&n!==void 0){const o=/#([0-9a-f]{6})/i.exec(r);if(o){const s=en(o[0]);return r.replace(/#([0-9a-f]{6})/i,`rgb(${s} / ${n})`)}}if(r)return r;const i=tt(t);if(i&&n!==void 0){const o=/#([0-9a-f]{6})/i.exec(i);if(o){const s=en(o[0]);return i.replace(/#([0-9a-f]{6})/i,`rgb(${s} / ${n})`)}}return i}function vt(e){const t=/^(from|to|via)-([a-z]+)-?(\d{2,3}|DEFAULT)?$/.exec(e);if(!t)return null;const[,n,r,i="DEFAULT"]=t,o=Yt[r]?.[i];if(!o)return null;switch(n){case"from":return`--ce-gradient-from:${o} var(--ce-gradient-from-position);--ce-gradient-to:rgb(255 255 255 / 0) var(--ce-gradient-to-position);--ce-gradient-stops:var(--ce-gradient-from), var(--ce-gradient-to);`;case"to":return`--ce-gradient-to:${o} var(--ce-gradient-to-position);`;case"via":return`--ce-gradient-to:rgb(255 255 255 / 0) var(--ce-gradient-to-position);--ce-gradient-stops:var(--ce-gradient-from), ${o} var(--ce-gradient-via-position), var(--ce-gradient-to);`;default:return null}}function wt(e){const t=/^opacity-(\d{1,3})$/.exec(e);if(!t)return null;const n=parseInt(t[1],10);return n<0||n>100?null:`opacity:${n/100};`}function tt(e){if(e.startsWith("[")&&e.endsWith("]")&&!e.includes("-[")){const s=e.slice(1,-1).trim(),c=s.indexOf(":");if(c===-1)return null;const a=s.slice(0,c).trim();let l=s.slice(c+1).trim();return/^[a-zA-Z][a-zA-Z0-9-]*$/.test(a)?(l=l.replace(/_/g," "),l=l.replace(/url\('\s*([^']*?)\s*'\)/g,'url("$1")'),l=l.replace(/^'([^']*)'$/g,'"$1"'),`${a}:${l};`):null}const t=e.indexOf("-[");if(t<=0||!e.endsWith("]"))return null;const n=e.slice(0,t);let r=e.slice(t+2,-1).replace(/_/g," ");const i={bg:"background-color",shadow:"box-shadow",p:"padding",px:"padding-inline",py:"padding-block",m:"margin",mx:"margin-inline",my:"margin-block",w:"width",h:"height","min-w":"min-width","max-w":"max-width","min-h":"min-height","max-h":"max-height","border-t":"border-top-width","border-b":"border-bottom-width","border-l":"border-left-width","border-r":"border-right-width","border-x":"border-inline-width","border-y":"border-block-width","grid-cols":"grid-template-columns","grid-rows":"grid-template-rows",transition:"transition-property",ease:"transition-timing-function",delay:"transition-delay",duration:"transition-duration",list:"list-style",break:"word-break",flex:"flex-direction",items:"align-items",justify:"justify-content",content:"align-content",self:"align-self",basis:"flex-basis",tracking:"letter-spacing",leading:"line-height",z:"z-index",opacity:"opacity"};if(n==="text")return/^\d*\.?\d+(px|rem|em|%|vh|vw|ch|ex)$/.test(r)?`font-size:${r};`:`color:${r};`;if(n==="rotate")return`transform:rotate(${r});`;if(n==="scale")return`transform:scale(${r});`;if(n==="translate-x")return`transform:translateX(${r});`;if(n==="translate-y")return`transform:translateY(${r});`;const o=i[n]??n.replace(/_/g,"-");return o&&r?`${o}:${r};`:null}function Yn(e){if(e.startsWith("[")&&e.endsWith("]")){const n=e.slice(1,-1);return n.includes("&")?n:e}const t=e.indexOf("-[");if(t>0&&e.endsWith("]")){const n=e.slice(t+2,-1).replace(/_/g,"-");return n.includes("&")?n:e.replace(/_/g,"-")}return null}function tn(e){return e.replace(/([!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~])/g,"\\$1")}function Qn(e){const t=/class\s*=\s*(['"])([\s\S]*?)\1/g,n=[];let r;for(;r=t.exec(e);){const i=r[2].split(/\s+/).filter(Boolean);i.length&&n.push(...i)}return n}const Fe=new Map,er=16,nn=1e3;function rn(e){const t=Date.now(),n=Fe.get(e);if(n&&t-n.timestamp<er)return n.css;const r=Qn(e);if(!r.length)return"";const i=new Set(r),o=[[],[],[],[]],s={},c=(h,d=!1)=>{const u=d?`dark|${h}`:h;if(u in s)return s[u];const g=y(h,d);return s[u]=g,g},a=h=>{const d=h.some(w=>ht.includes(w)),u=h.some(w=>w.startsWith("@")&&(gt.includes(w.slice(1))||w.match(/^@\[.+\]$/))),g=h.includes("dark");return h.length?!d&&!g&&!u?1:g&&(d||u)?3:2:0},l=h=>{const d=[];let u="",g=0;for(let w=0;w<h.length;w++){const x=h[w];x==="["||x==="("?g++:(x==="]"||x===")")&&g--,x===":"&&g===0?(d.push(u),u=""):u+=x}return u&&d.push(u),d},m={hover:":hover",focus:":focus",active:":active",visited:":visited",disabled:":disabled",checked:":checked",first:":first-child",last:":last-child",odd:":nth-child(odd)",even:":nth-child(even)","focus-within":":focus-within","focus-visible":":focus-visible"},y=(h,d=!1)=>{const u=l(h);let g="",w=!1;for(const L of u){let z=L;if(z.startsWith("!")&&(w=!0,z=z.slice(1)),dt[z]||mt(z)||yt(z)||wt(z)||bt(z)||vt(z)||tt(z)){g=L;break}}if(!g)return null;const x=g.replace(/^!/,""),S=dt[x]??mt(x)??yt(x)??wt(x)??bt(x)??vt(x)??tt(x);if(!S)return null;const C=u.indexOf(g);let _=C>=0?u.slice(0,C):[];d&&(_=_.filter(L=>L!=="dark"));const k=`.${tn(h)}`,T=w?S.replace(/;/g," !important;"):S,$="__SUBJECT__";let b=$;const A=[];for(const L of _)L.startsWith("group-")?(b=`.group:${L.slice(6)} ${b}`,A.push(L)):L.startsWith("peer-")&&(b=b.replace($,`.peer:${L.slice(5)}~${$}`),A.push(L));_=_.filter(L=>!A.includes(L));const P=[],j=[];let E=null;for(const L of _){if(L==="dark"||ht.includes(L)||L.startsWith("@")&&(gt.includes(L.slice(1))||L.match(/^@\[.+\]$/)))continue;const z=Yn(L);if(z){E=z;continue}const Z=m[L];if(Z){E?j.push(Z):P.push(Z);continue}const U=Vn[L];typeof U=="function"&&(b=U(b,T).split("{")[0])}const M=P.join(""),R=j.join("");function ee(L,z){if(!z)return L;let Z=0,U=0;if(L.length&&(L[0]===">"||L[0]==="+"||L[0]==="~"||L[0]===" ")){let V=1;for(;V<L.length&&L[V]===" ";)V++;for(;V<L.length;V++){const Y=L[V];if(Y==="["?Z++:Y==="]"&&Z>0?Z--:Y==="("?U++:Y===")"&&U>0&&U--,Z===0&&U===0&&(L[V]===">"||L[V]==="+"||L[V]==="~"||L[V]===" "))return L.slice(0,V)+z+L.slice(V)}return L+z}for(let V=0;V<L.length;V++){const Y=L[V];if(Y==="["?Z++:Y==="]"&&Z>0?Z--:Y==="("?U++:Y===")"&&U>0&&U--,Z===0&&U===0&&(Y===">"||Y==="+"||Y==="~"||Y===" "))return L.slice(0,V)+z+L.slice(V)}return L+z}if(E)if(E.includes("&")){const L=E.indexOf("&"),z=E.slice(0,L),Z=E.slice(L+1),U=$+M;if(P.length===0)b=b.replace($,z+U+R+Z);else{const V=ee(Z,R);b=b.replace($,z+U+V)}}else b=b.replace($,`${E}${$+M}`),R&&(b=b.replace($,`${$}${R}`));else b=b.replace($,$+M+R);b=b.replace(new RegExp($,"g"),k);let I=`${b}{${T}}`;const K=_.filter(L=>ht.includes(L)),H=_.filter(L=>L.startsWith("@")&&(gt.includes(L.slice(1))||L.match(/^@\[.+\]$/))),G=K.length?K[K.length-1]:null,fe=H.length?H[H.length-1]:null,Me=_.includes("dark");let B="",pe="";if(Me&&G?B=`@media (prefers-color-scheme: dark) and ${pt[G]}`:Me?B="@media (prefers-color-scheme: dark)":G&&(B=`@media ${pt[G]}`),fe)if(fe.startsWith("@[")&&fe.endsWith("]")){const L=fe.slice(2,-1);if(!/^-?\d*\.?\d+(px|rem|em|%|vh|vw|ch|ex|cm|mm|in|pt|pc)$/.test(L))return null;pe=`@container (min-width:${L})`}else{const L=fe.slice(1);pe=`@container ${Qt[L]||`(min-width:${L})`}`}return B&&pe?I=`${B}${pe}{${I}}`:B?I=`${B}{${I}}`:pe&&(I=`${pe}{${I}}`),I};for(const h of i){const d=l(h),u=d.find(C=>dt[C.replace(/^!/,"")]||mt(C.replace(/^!/,""))||yt(C.replace(/^!/,""))||wt(C.replace(/^!/,""))||bt(C.replace(/^!/,""))||vt(C.replace(/^!/,""))||tt(C.replace(/^!/,"")));if(!u)continue;const g=d.indexOf(u),w=g>=0?d.slice(0,g):[],x=a(w),S=c(h);S&&o[x].push(S)}const p=/^(from|via|to)-[a-z]+-?\d{2,3}?$/;for(const h of i)if(p.test(h)){if(o.flat().join("").includes(`.${tn(h)}`))continue;const u=c(h);u&&o[0].push(u)}const v=h=>h.sort((d,u)=>{const g=k=>{const T={sm:640,md:768,lg:1024,xl:1280,"2xl":1536};for(const[$,b]of Object.entries(T))if(k.includes(`@media ${pt[$]}`))return b;return-1},w=k=>{const T={xs:320,sm:384,md:448,lg:512,xl:576,"2xl":672,"3xl":768,"4xl":896,"5xl":1024,"6xl":1152,"7xl":1280};for(const[$,b]of Object.entries(T))if(k.includes(`@container ${Qt[$]}`))return b;if(k.includes("@container (min-width:")){const $=/@container \(min-width:(\d+(?:\.\d+)?)(px|rem|em)/.exec(k);if($){const b=parseFloat($[1]),A=$[2];return A==="rem"||A==="em"?b*16:b}}return-1},x=g(d),S=g(u),C=w(d),_=w(u);return x>=0&&S>=0&&x!==S?x-S:C>=0&&_>=0&&C!==_?C-_:0});o[2]=v(o[2]),o[3]=v(o[3]);const f=o.flat().join("");return Fe.size>=nn&&Array.from(Fe.keys()).slice(0,Math.floor(nn/2)).forEach(d=>Fe.delete(d)),Fe.set(e,{css:f,timestamp:t}),f}function Ie(e,t){const n="when-block";return q(typeof t=="function"?e?t():[]:e?t:[],n)}function tr(e,t){return e.map((n,r)=>{const i=typeof n=="object"?n?.key??n?.id??`idx-${r}`:String(n);return q(t(n,r),`each-${i}`)})}function on(){const e=[];return{when(t,n){return e.push([t,n]),this},otherwise(t){return e.push([!0,t]),this},done(){return nr(...e)}}}function nr(...e){for(let t=0;t<e.length;t++){const[n,r]=e[t];if(n){const i=typeof r=="function"?r():r;return[q(i,`whenChain-branch-${t}`)]}}return[q([],"whenChain-empty")]}function q(e,t){const n=e?Array.isArray(e)?e.filter(r=>r!=null):[e].filter(r=>r!=null):[];return{tag:"#anchor",key:t,children:n}}const je={fade:{enterFrom:"opacity-0",enterActive:"transition-opacity duration-300 ease-out",enterTo:"opacity-100",leaveFrom:"opacity-100",leaveActive:"transition-opacity duration-200 ease-in",leaveTo:"opacity-0"},"slide-right":{enterFrom:"translate-x-[100%] opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"translate-x-[0%] opacity-100",leaveFrom:"translate-x-[0%] opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"translate-x-[100%] opacity-0"},"slide-left":{enterFrom:"translate-x-[-100%] opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"translate-x-[0%] opacity-100",leaveFrom:"translate-x-[0%] opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"translate-x-[-100%] opacity-0"},"slide-up":{enterFrom:"translate-y-[100%] opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"translate-y-[0%] opacity-100",leaveFrom:"translate-y-[0%] opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"translate-y-[100%] opacity-0"},"slide-down":{enterFrom:"translate-y-[-100%] opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"translate-y-[0%] opacity-100",leaveFrom:"translate-y-[0%] opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"translate-y-[-100%] opacity-0"},scale:{enterFrom:"scale-95 opacity-0",enterActive:"transition-all duration-200 ease-out",enterTo:"scale-100 opacity-100",leaveFrom:"scale-100 opacity-100",leaveActive:"transition-all duration-150 ease-in",leaveTo:"scale-95 opacity-0"},"scale-down":{enterFrom:"scale-105 opacity-0",enterActive:"transition-all duration-200 ease-out",enterTo:"scale-100 opacity-100",leaveFrom:"scale-100 opacity-100",leaveActive:"transition-all duration-150 ease-in",leaveTo:"scale-105 opacity-0"},bounce:{enterFrom:"scale-0 opacity-0",enterActive:"transition-all duration-500 ease-out",enterTo:"scale-100 opacity-100",leaveFrom:"scale-100 opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"scale-0 opacity-0"},zoom:{enterFrom:"scale-0 opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"scale-100 opacity-100",leaveFrom:"scale-100 opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"scale-0 opacity-0"},flip:{enterFrom:"rotate-[90deg] opacity-0",enterActive:"transition-all duration-400 ease-out",enterTo:"rotate-[0deg] opacity-100",leaveFrom:"rotate-[0deg] opacity-100",leaveActive:"transition-all duration-300 ease-in",leaveTo:"rotate-[90deg] opacity-0"}};function rr(e,t){const{preset:n,show:r,mode:i="default",duration:o,appear:s=!1,css:c=!0,name:a,enterFrom:l,enterActive:m,enterTo:y,leaveFrom:p,leaveActive:v,leaveTo:f,onBeforeEnter:h,onEnter:d,onAfterEnter:u,onEnterCancelled:g,onBeforeLeave:w,onLeave:x,onAfterLeave:S,onLeaveCancelled:C}=e;let _;n&&je[n]?(_={...je[n]},l&&(_.enterFrom=l),m&&(_.enterActive=m),y&&(_.enterTo=y),p&&(_.leaveFrom=p),v&&(_.leaveActive=v),f&&(_.leaveTo=f)):_={enterFrom:l,enterActive:m,enterTo:y,leaveFrom:p,leaveActive:v,leaveTo:f};const k=a||(n?`transition-${n}`:"transition"),T=q(r?t:[],k);return T._transition={name:k,classes:_,mode:i,duration:o,appear:s,css:c,state:r?"visible":"hidden",hooks:{onBeforeEnter:h,onEnter:d,onAfterEnter:u,onEnterCancelled:g,onBeforeLeave:w,onLeave:x,onAfterLeave:S,onLeaveCancelled:C}},T}function ir(e,t){const{tag:n="div",moveClass:r="transition-transform duration-300",preset:i,show:o=!0,mode:s="default",duration:c,appear:a=!1,css:l=!0,name:m,class:y,style:p,enterFrom:v,enterActive:f,enterTo:h,leaveFrom:d,leaveActive:u,leaveTo:g,onBeforeEnter:w,onEnter:x,onAfterEnter:S,onEnterCancelled:C,onBeforeLeave:_,onLeave:k,onAfterLeave:T,onLeaveCancelled:$}=e;let b;i&&je[i]?(b={...je[i]},v&&(b.enterFrom=v),f&&(b.enterActive=f),h&&(b.enterTo=h),d&&(b.leaveFrom=d),u&&(b.leaveActive=u),g&&(b.leaveTo=g)):b={enterFrom:v,enterActive:f,enterTo:h,leaveFrom:d,leaveActive:u,leaveTo:g};const A=m||(i?`transition-group-${i}`:"transition-group"),P=[];for(const j of o?t:[])if(j&&typeof j=="object"&&j.tag==="#anchor"){const E=Array.isArray(j.children)?j.children:[];for(const M of E)if(M&&typeof M=="object"){const R={...M,key:j.key||M.key,props:{...M.props,_anchorKey:j.key}};P.push(R)}else P.push(M)}else P.push(j);return{tag:n,children:P,key:A,props:{attrs:{...y?{class:y}:{},...p?{style:p}:{}},_transitionGroup:{name:A,classes:b,moveClass:r,mode:s,duration:c,appear:a,css:l,hooks:{onBeforeEnter:w,onEnter:x,onAfterEnter:S,onEnterCancelled:C,onBeforeLeave:_,onLeave:k,onAfterLeave:T,onLeaveCancelled:$}}}}}function or(e){return{...e}}let nt=null;function rt(){if(!nt){const e=[];Object.values(je).forEach(r=>{r.enterFrom&&e.push(r.enterFrom),r.enterActive&&e.push(r.enterActive),r.enterTo&&e.push(r.enterTo),r.leaveFrom&&e.push(r.leaveFrom),r.leaveActive&&e.push(r.leaveActive),r.leaveTo&&e.push(r.leaveTo)});const t=`<div class="${e.join(" ")}"></div>`,n=rn(t);nt=new CSSStyleSheet,nt.replaceSync(n)}return nt}function sr(){rt()}sr();const We=[];function ar(e,t,n,r,i,o,s,c){if(e){We.push(n);try{const a=t.render(n);if(a instanceof Promise){o(!0),a.then(l=>{o(!1),s(null),sn(e,l,n,r,i),c(e.innerHTML)}).catch(l=>{o(!1),s(l)});return}sn(e,a,n,r,i),c(e.innerHTML)}finally{We.pop()}}}function sn(e,t,n,r,i){e&&(zn(e,Array.isArray(t)?t:[t],n,r),i(e.innerHTML))}function cr(e,t,n,r,i,o,s){if(o!==null&&clearTimeout(o),Date.now()-t<16){if(i(n+1),n===15)te(`⚠️ Component is re-rendering rapidly. This might indicate:
117
+ `,tn=Object.fromEntries(Object.entries({neutral:{50:"#fafafa",100:"#f4f4f5",200:"#e4e4e7",300:"#d4d4d8",400:"#9f9fa9",500:"#71717b",600:"#52525c",700:"#3f3f46",800:"#27272a",900:"#18181b",950:"#09090b"},primary:{50:"#eff6ff",100:"#dbeafe",200:"#bfdbfe",300:"#93c5fd",400:"#60a5fa",500:"#3b82f6",600:"#2563eb",700:"#1d4ed8",800:"#1e40af",900:"#1e3a8a",950:"#172554"},secondary:{50:"#eef2ff",100:"#e0e7ff",200:"#c7d2fe",300:"#a5b4fc",400:"#818cf8",500:"#6366f1",600:"#4f46e5",700:"#4338ca",800:"#3730a3",900:"#312e81",950:"#1e1b4b"},success:{50:"#f0fdf4",100:"#dcfce7",200:"#bbf7d0",300:"#86efac",400:"#4ade80",500:"#22c55e",600:"#16a34a",700:"#15803d",800:"#166534",900:"#14532d",950:"#052e16"},info:{50:"#f0f9ff",100:"#e0f2fe",200:"#bae6fd",300:"#7dd3fc",400:"#38bdf8",500:"#0ea5e9",600:"#0284c7",700:"#0369a1",800:"#075985",900:"#0c4a6e",950:"#082f49"},warning:{50:"#fffbeb",100:"#fef3c7",200:"#fde68a",300:"#fcd34d",400:"#fbbf24",500:"#f59e0b",600:"#d97706",700:"#b45309",800:"#92400e",900:"#78350f",950:"#451a03"},error:{50:"#fef2f2",100:"#fee2e2",200:"#fecaca",300:"#fca5a5",400:"#f87171",500:"#ef4444",600:"#dc2626",700:"#b91c1c",800:"#991b1b",900:"#7f1d1d",950:"#450a0a"},white:{DEFAULT:"#ffffff"},black:{DEFAULT:"#000000"},transparent:{DEFAULT:"transparent"},current:{DEFAULT:"currentColor"}}).map(([e,t])=>[e,Object.fromEntries(Object.entries(t).map(([n,r])=>[n,`var(--color-${e}${n==="DEFAULT"?"":`-${n}`}, ${r})`]))])),ge="0.25rem",Jn={"3xs":64,"2xs":72,xs:80,sm:96,md:112,lg:128,xl:144,"2xl":168,"3xl":192,"4xl":224,"5xl":256,"6xl":288,"7xl":320},pt={m:["margin"],mx:["margin-inline"],my:["margin-block"],mt:["margin-top"],mr:["margin-right"],mb:["margin-bottom"],ml:["margin-left"],p:["padding"],px:["padding-inline"],py:["padding-block"],pt:["padding-top"],pr:["padding-right"],pb:["padding-bottom"],pl:["padding-left"],inset:["inset"],"inset-x":["inset-inline"],"inset-y":["inset-block"],h:["height"],w:["width"],"min-h":["min-height"],"min-w":["min-width"],"max-h":["max-height"],"max-w":["max-width"],top:["top"],bottom:["bottom"],left:["left"],right:["right"],gap:["gap"],"gap-x":["column-gap"],"gap-y":["row-gap"]},ht=(()=>{const e={};e["@container"]="container-type:inline-size;",["block","inline","inline-block","flex","inline-flex","grid","inline-grid","table","table-cell","table-row","hidden"].forEach(a=>{e[a]=a==="hidden"?"display:none;":`display:${a};`}),["absolute","relative","fixed","sticky","static"].forEach(a=>{e[a]=`position:${a};`}),Object.assign(e,{"items-center":"align-items:center;","items-start":"align-items:flex-start;","items-end":"align-items:flex-end;","items-baseline":"align-items:baseline;","items-stretch":"align-items:stretch;","justify-center":"justify-content:center;","justify-start":"justify-content:flex-start;","justify-between":"justify-content:space-between;","justify-around":"justify-content:space-around;","justify-evenly":"justify-content:space-evenly;","justify-end":"justify-content:flex-end;","flex-wrap":"flex-wrap:wrap;","flex-nowrap":"flex-wrap:nowrap;","flex-wrap-reverse":"flex-wrap:wrap-reverse;","content-center":"align-content:center;","content-start":"align-content:flex-start;","content-end":"align-content:flex-end;","content-between":"align-content:space-between;","content-around":"align-content:space-around;","content-evenly":"align-content:space-evenly;","content-stretch":"align-content:stretch;","self-auto":"align-self:auto;","self-start":"align-self:flex-start;","self-end":"align-self:flex-end;","self-center":"align-self:center;","self-stretch":"align-self:stretch;","flex-col":"flex-direction:column;","flex-row":"flex-direction:row;","flex-col-reverse":"flex-direction:column-reverse;","flex-row-reverse":"flex-direction:row-reverse;","flex-1":"flex:1 1 0%;","flex-auto":"flex:1 1 auto;","flex-initial":"flex:0 1 auto;","flex-none":"flex:0 0 auto;",grow:"flex-grow:1;",shrink:"flex-shrink:1;","grow-0":"flex-grow:0;","shrink-0":"flex-shrink:0;"});for(let a=1;a<=12;a++)e[`grid-cols-${a}`]=`grid-template-columns:repeat(${a},minmax(0,1fr));`,e[`grid-rows-${a}`]=`grid-template-rows:repeat(${a},minmax(0,1fr));`,e[`col-span-${a}`]=`grid-column:span ${a} / span ${a};`,e[`row-span-${a}`]=`grid-row:span ${a} / span ${a};`,e[`col-start-${a}`]=`grid-column-start:${a};`,e[`col-end-${a}`]=`grid-column-end:${a};`,e[`row-start-${a}`]=`grid-row-start:${a};`,e[`row-end-${a}`]=`grid-row-end:${a};`;Object.assign(e,{"grid-cols-none":"grid-template-columns:none;","grid-rows-none":"grid-template-rows:none;","col-span-full":"grid-column:1 / -1;","row-span-full":"grid-row:1 / -1;","auto-cols-auto":"grid-auto-columns:auto;","auto-cols-min":"grid-auto-columns:min-content;","auto-cols-max":"grid-auto-columns:max-content;","auto-cols-fr":"grid-auto-columns:1fr;","auto-rows-auto":"grid-auto-rows:auto;","auto-rows-min":"grid-auto-rows:min-content;","auto-rows-max":"grid-auto-rows:max-content;","auto-rows-fr":"grid-auto-rows:1fr;","grid-flow-row":"grid-auto-flow:row;","grid-flow-col":"grid-auto-flow:column;","grid-flow-row-dense":"grid-auto-flow:row dense;","grid-flow-col-dense":"grid-auto-flow:column dense;"}),Object.assign(e,{"text-left":"text-align:left;","text-center":"text-align:center;","text-right":"text-align:right;","text-justify":"text-align:justify;","font-thin":"font-weight:100;","font-extralight":"font-weight:200;","font-light":"font-weight:300;","font-normal":"font-weight:400;","font-medium":"font-weight:500;","font-semibold":"font-weight:600;","font-bold":"font-weight:700;","font-extrabold":"font-weight:800;","font-black":"font-weight:900;",italic:"font-style:italic;","not-italic":"font-style:normal;",uppercase:"text-transform:uppercase;",lowercase:"text-transform:lowercase;",capitalize:"text-transform:capitalize;","normal-case":"text-transform:none;",underline:"text-decoration-line:underline;",overline:"text-decoration-line:overline;","line-through":"text-decoration-line:line-through;","no-underline":"text-decoration-line:none;",truncate:"overflow:hidden;text-overflow:ellipsis;white-space:nowrap;","whitespace-normal":"white-space:normal;","whitespace-nowrap":"white-space:nowrap;","whitespace-pre":"white-space:pre;","whitespace-pre-line":"white-space:pre-line;","whitespace-pre-wrap":"white-space:pre-wrap;","break-normal":"overflow-wrap:normal;word-break:normal;","break-words":"overflow-wrap:break-word;","break-all":"word-break:break-all;"}),[["text-xs","0.75rem","1"],["text-sm","0.875rem","1.25"],["text-base","1rem","1.5"],["text-lg","1.125rem","1.75"],["text-xl","1.25rem","1.75"],["text-2xl","1.5rem","2"],["text-3xl","1.875rem","2.25"],["text-4xl","2.25rem","2.5"],["text-5xl","3rem","1"],["text-6xl","3.75rem","1"],["text-7xl","4.5rem","1"],["text-8xl","6rem","1"],["text-9xl","8rem","1"]].forEach(([a,l,m])=>{e[a]=`font-size:${l};line-height:var(--ce-line-height,${m});`}),[["tracking-tighter","-0.05em"],["tracking-tight","-0.025em"],["tracking-normal","0em"],["tracking-wide","0.025em"],["tracking-wider","0.05em"],["tracking-widest","0.1em"]].forEach(([a,l])=>{e[a]=`letter-spacing:${l};`}),[["leading-3","0.75rem"],["leading-4","1rem"],["leading-5","1.25rem"],["leading-6","1.5rem"],["leading-7","1.75rem"],["leading-8","2rem"],["leading-9","2.25rem"],["leading-10","2.5rem"],["leading-none","1"],["leading-tight","1.25"],["leading-snug","1.375"],["leading-normal","1.5"],["leading-relaxed","1.625"],["leading-loose","2"]].forEach(([a,l])=>{e[a]=`line-height:${l};--ce-line-height:${l};line-height:var(--ce-line-height,${l});`});const o=[0,1,2,4,6,8];for(const a of o){const l=`${a}px`;e[`border-${a}`]=`border-width:${l};`,e[`border-t-${a}`]=`border-top-width:${l};`,e[`border-r-${a}`]=`border-right-width:${l};`,e[`border-b-${a}`]=`border-bottom-width:${l};`,e[`border-l-${a}`]=`border-left-width:${l};`,e[`border-x-${a}`]=`border-left-width:${l};border-right-width:${l};`,e[`border-y-${a}`]=`border-top-width:${l};border-bottom-width:${l};`}Object.assign(e,{"font-sans":"font-family:var(--font-sans, ui-sans-serif,system-ui,sans-serif);","font-serif":"font-family:var(--font-serif, ui-serif,Georgia,serif);","font-mono":"font-family:var(--font-mono, ui-monospace,SFMono-Regular,monospace);",border:"border-width:1px;","border-t":"border-top-width:1px;","border-r":"border-right-width:1px;","border-b":"border-bottom-width:1px;","border-l":"border-left-width:1px;","border-x":"border-left-width:1px;border-right-width:1px;","border-y":"border-top-width:1px;border-bottom-width:1px;","border-solid":"border-style:solid;","border-dashed":"border-style:dashed;","border-dotted":"border-style:dotted;","border-double":"border-style:double;","border-none":"border-style:none;"});const s={none:0,xs:2,sm:4,md:6,lg:8,xl:12,"2xl":16,"3xl":24,"4xl":32,full:9999};for(const[a,l]of Object.entries(s)){const m=l===9999?"9999px":`${l/16}rem`;e[`rounded-${a}`]=`border-radius:${m};`,e[`rounded-t-${a}`]=`border-top-left-radius:${m};border-top-right-radius:${m};`,e[`rounded-r-${a}`]=`border-top-right-radius:${m};border-bottom-right-radius:${m};`,e[`rounded-b-${a}`]=`border-bottom-left-radius:${m};border-bottom-right-radius:${m};`,e[`rounded-l-${a}`]=`border-top-left-radius:${m};border-bottom-left-radius:${m};`,e[`rounded-tl-${a}`]=`border-top-left-radius:${m};`,e[`rounded-tr-${a}`]=`border-top-right-radius:${m};`,e[`rounded-br-${a}`]=`border-bottom-right-radius:${m};`,e[`rounded-bl-${a}`]=`border-bottom-left-radius:${m};`}Object.assign(e,{"shadow-none":"--ce-shadow-color:rgb(0 0 0 / 0);box-shadow:0 0 var(--ce-shadow-color, #0000);","shadow-xs":"--ce-shadow-color:rgb(0 0 0 / 0.05);box-shadow:0 1px 2px 0 var(--ce-shadow-color, rgb(0 0 0 / 0.05));","shadow-sm":"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 1px 3px 0 var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 1px 2px -1px var(--ce-shadow-color, rgb(0 0 0 / 0.1));",shadow:"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 1px 3px 0 var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 1px 2px -1px var(--ce-shadow-color, rgb(0 0 0 / 0.1));","shadow-md":"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 4px 6px -1px var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 2px 4px -2px var(--ce-shadow-color, rgb(0 0 0 / 0.1));","shadow-lg":"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 10px 15px -3px var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 4px 6px -4px var(--ce-shadow-color, rgb(0 0 0 / 0.1));","shadow-xl":"--ce-shadow-color:rgb(0 0 0 / 0.1);box-shadow:0 20px 25px -5px var(--ce-shadow-color, rgb(0 0 0 / 0.1)),0 8px 10px -6px var(--ce-shadow-color, rgb(0 0 0 / 0.1));","shadow-2xl":"--ce-shadow-color:rgb(0 0 0 / 0.25);box-shadow:0 25px 50px -12px var(--ce-shadow-color, rgb(0 0 0 / 0.25));","shadow-inner":"box-shadow:inset 0 2px 4px 0 rgb(0 0 0 / 0.05);"}),Object.assign(e,{rounded:"border-radius:0.25rem;"}),Object.assign(e,{"overflow-auto":"overflow:auto;","overflow-hidden":"overflow:hidden;","overflow-visible":"overflow:visible;","overflow-scroll":"overflow:scroll;","overflow-x-auto":"overflow-x:auto;","overflow-x-hidden":"overflow-x:hidden;","overflow-x-visible":"overflow-x:visible;","overflow-x-scroll":"overflow-x:scroll;","overflow-y-auto":"overflow-y:auto;","overflow-y-hidden":"overflow-y:hidden;","overflow-y-visible":"overflow-y:visible;","overflow-y-scroll":"overflow-y:scroll;"});const c=["auto","default","pointer","wait","text","move","help","not-allowed","grab","grabbing"];for(const a of c)e[`cursor-${a}`]=`cursor:${a};`;for(const a of[0,10,20,30,40,50])e[`z-${a}`]=`z-index:${a};`;Object.assign(e,{"sr-only":"position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0;","not-sr-only":"position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal;","pointer-events-none":"pointer-events:none;","pointer-events-auto":"pointer-events:auto;",visible:"visibility:visible;",invisible:"visibility:hidden;"}),Object.assign(e,{"w-full":"width:100%;","w-screen":"width:100dvw;","h-full":"height:100%;","h-screen":"height:100dvh;","max-w-full":"max-width:100%;","max-h-full":"max-height:100%;","max-w-screen":"max-width:100dvw;","max-h-screen":"max-height:100dvh;","min-w-0":"min-width:0;","min-h-0":"min-height:0;","min-w-full":"min-width:100%;","min-h-full":"min-height:100%;","min-w-screen":"min-width:100dvw;","min-h-screen":"min-height:100dvh;","w-auto":"width:auto;","h-auto":"height:auto;","w-fit":"width:fit-content;","h-fit":"height:fit-content;","w-min":"width:min-content;","h-min":"height:min-content;","w-max":"width:max-content;","h-max":"height:max-content;","m-auto":"margin:auto;","mx-auto":"margin-inline:auto;","my-auto":"margin-block:auto;"});for(const[a,l]of Object.entries(Jn))e[`max-w-${a}`]=`max-width:calc(${ge} * ${l});`,e[`min-w-${a}`]=`min-width:calc(${ge} * ${l});`,e[`w-${a}`]=`width:calc(${ge} * ${l});`,e[`max-h-${a}`]=`max-height:calc(${ge} * ${l});`,e[`min-h-${a}`]=`min-height:calc(${ge} * ${l});`,e[`h-${a}`]=`height:calc(${ge} * ${l});`;Object.assign(e,{transition:"transition-property:all;transition-duration:150ms;transition-timing-function:ease-in-out;","transition-none":"transition-property:none;","transition-all":"transition-property:all;","transition-colors":"transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;","transition-shadow":"transition-property:box-shadow;","transition-opacity":"transition-property:opacity;","transition-transform":"transition-property:transform;","ease-linear":"transition-timing-function:linear;","ease-in":"transition-timing-function:ease-in;","ease-out":"transition-timing-function:ease-out;","ease-in-out":"transition-timing-function:ease-in-out;","duration-75":"transition-duration:75ms;","duration-100":"transition-duration:100ms;","duration-150":"transition-duration:150ms;","duration-200":"transition-duration:200ms;","duration-300":"transition-duration:300ms;","duration-500":"transition-duration:500ms;","duration-700":"transition-duration:700ms;","duration-1000":"transition-duration:1000ms;"}),Object.assign(e,{"scale-0":"transform:scale(0);","scale-50":"transform:scale(0.5);","scale-75":"transform:scale(0.75);","scale-90":"transform:scale(0.9);","scale-95":"transform:scale(0.95);","scale-100":"transform:scale(1);","scale-105":"transform:scale(1.05);","scale-110":"transform:scale(1.1);","scale-125":"transform:scale(1.25);","scale-150":"transform:scale(1.5);","rotate-0":"transform:rotate(0deg);","rotate-1":"transform:rotate(1deg);","rotate-2":"transform:rotate(2deg);","rotate-3":"transform:rotate(3deg);","rotate-6":"transform:rotate(6deg);","rotate-12":"transform:rotate(12deg);","rotate-45":"transform:rotate(45deg);","rotate-90":"transform:rotate(90deg);","rotate-180":"transform:rotate(180deg);","-rotate-1":"transform:rotate(-1deg);","-rotate-2":"transform:rotate(-2deg);","-rotate-3":"transform:rotate(-3deg);","-rotate-6":"transform:rotate(-6deg);","-rotate-12":"transform:rotate(-12deg);","-rotate-45":"transform:rotate(-45deg);","-rotate-90":"transform:rotate(-90deg);","-rotate-180":"transform:rotate(-180deg);"}),Object.assign(e,{"aspect-auto":"aspect-ratio:auto;","aspect-square":"aspect-ratio:1 / 1;","aspect-video":"aspect-ratio:16 / 9;"}),Object.assign(e,{"object-contain":"object-fit:contain;","object-cover":"object-fit:cover;","object-fill":"object-fit:fill;","object-none":"object-fit:none;","object-scale-down":"object-fit:scale-down;","object-bottom":"object-position:bottom;","object-center":"object-position:center;","object-left":"object-position:left;","object-left-bottom":"object-position:left bottom;","object-left-top":"object-position:left top;","object-right":"object-position:right;","object-right-bottom":"object-position:right bottom;","object-right-top":"object-position:right top;","object-top":"object-position:top;"});for(let a=1;a<=6;a++)e[`line-clamp-${a}`]=`display:-webkit-box;-webkit-line-clamp:${a};-webkit-box-orient:vertical;overflow:hidden;`;e["line-clamp-none"]="overflow:visible;display:block;-webkit-box-orient:horizontal;-webkit-line-clamp:none;";for(let a=1;a<=12;a++)e[`order-${a}`]=`order:${a};`;e["order-first"]="order:-9999;",e["order-last"]="order:9999;",e["order-none"]="order:0;";for(let a=0;a<=12;a++)a<=1||(e[`grow-${a}`]=`flex-grow:${a};`,e[`shrink-${a}`]=`flex-shrink:${a};`);return Object.assign(e,{"bg-linear-to-t":"background-image:linear-gradient(to top, var(--ce-gradient-stops));","bg-linear-to-tr":"background-image:linear-gradient(to top right, var(--ce-gradient-stops));","bg-linear-to-r":"background-image:linear-gradient(to right, var(--ce-gradient-stops));","bg-linear-to-br":"background-image:linear-gradient(to bottom right, var(--ce-gradient-stops));","bg-linear-to-b":"background-image:linear-gradient(to bottom, var(--ce-gradient-stops));","bg-linear-to-bl":"background-image:linear-gradient(to bottom left, var(--ce-gradient-stops));","bg-linear-to-l":"background-image:linear-gradient(to left, var(--ce-gradient-stops));","bg-linear-to-tl":"background-image:linear-gradient(to top left, var(--ce-gradient-stops));","bg-radial":"background-image:radial-gradient(ellipse at center, var(--ce-gradient-stops));","bg-radial-at-t":"background-image:radial-gradient(ellipse at top, var(--ce-gradient-stops));","bg-radial-at-tr":"background-image:radial-gradient(ellipse at top right, var(--ce-gradient-stops));","bg-radial-at-r":"background-image:radial-gradient(ellipse at right, var(--ce-gradient-stops));","bg-radial-at-br":"background-image:radial-gradient(ellipse at bottom right, var(--ce-gradient-stops));","bg-radial-at-b":"background-image:radial-gradient(ellipse at bottom, var(--ce-gradient-stops));","bg-radial-at-bl":"background-image:radial-gradient(ellipse at bottom left, var(--ce-gradient-stops));","bg-radial-at-l":"background-image:radial-gradient(ellipse at left, var(--ce-gradient-stops));","bg-radial-at-tl":"background-image:radial-gradient(ellipse at top left, var(--ce-gradient-stops));","bg-radial-circle":"background-image:radial-gradient(circle at center, var(--ce-gradient-stops));","bg-radial-circle-at-t":"background-image:radial-gradient(circle at top, var(--ce-gradient-stops));","bg-radial-circle-at-tr":"background-image:radial-gradient(circle at top right, var(--ce-gradient-stops));","bg-radial-circle-at-r":"background-image:radial-gradient(circle at right, var(--ce-gradient-stops));","bg-radial-circle-at-br":"background-image:radial-gradient(circle at bottom right, var(--ce-gradient-stops));","bg-radial-circle-at-b":"background-image:radial-gradient(circle at bottom, var(--ce-gradient-stops));","bg-radial-circle-at-bl":"background-image:radial-gradient(circle at bottom left, var(--ce-gradient-stops));","bg-radial-circle-at-l":"background-image:radial-gradient(circle at left, var(--ce-gradient-stops));","bg-radial-circle-at-tl":"background-image:radial-gradient(circle at top left, var(--ce-gradient-stops));","bg-conic":"background-image:conic-gradient(from 0deg at center, var(--ce-gradient-stops));","bg-conic-at-t":"background-image:conic-gradient(from 0deg at top, var(--ce-gradient-stops));","bg-conic-at-tr":"background-image:conic-gradient(from 0deg at top right, var(--ce-gradient-stops));","bg-conic-at-r":"background-image:conic-gradient(from 0deg at right, var(--ce-gradient-stops));","bg-conic-at-br":"background-image:conic-gradient(from 0deg at bottom right, var(--ce-gradient-stops));","bg-conic-at-b":"background-image:conic-gradient(from 0deg at bottom, var(--ce-gradient-stops));","bg-conic-at-bl":"background-image:conic-gradient(from 0deg at bottom left, var(--ce-gradient-stops));","bg-conic-at-l":"background-image:conic-gradient(from 0deg at left, var(--ce-gradient-stops));","bg-conic-at-tl":"background-image:conic-gradient(from 0deg at top left, var(--ce-gradient-stops));"}),e})();function se(e,t){let n=0;for(let r=0;r<e.length;r++){const i=e[r];if(i==="["||i==="(")n++;else if((i==="]"||i===")")&&n>0)n--;else if(n===0&&(i===">"||i==="+"||i==="~"||i===" "))return e.slice(0,r)+t+e.slice(r)}return e+t}const Xn={before:(e,t)=>`${e}::before{${t}}`,after:(e,t)=>`${e}::after{${t}}`,hover:(e,t)=>`${se(e,":hover")}{${t}}`,focus:(e,t)=>`${se(e,":focus")}{${t}}`,active:(e,t)=>`${se(e,":active")}{${t}}`,disabled:(e,t)=>`${se(e,":disabled")}{${t}}`,visited:(e,t)=>`${se(e,":visited")}{${t}}`,checked:(e,t)=>`${se(e,":checked")}{${t}}`,first:(e,t)=>`${se(e,":first-child")}{${t}}`,last:(e,t)=>`${se(e,":last-child")}{${t}}`,odd:(e,t)=>`${se(e,":nth-child(odd)")}{${t}}`,even:(e,t)=>`${se(e,":nth-child(even)")}{${t}}`,"focus-within":(e,t)=>`${se(e,":focus-within")}{${t}}`,"focus-visible":(e,t)=>`${se(e,":focus-visible")}{${t}}`,"group-hover":(e,t)=>`.group:hover ${e}{${t}}`,"group-focus":(e,t)=>`.group:focus ${e}{${t}}`,"group-active":(e,t)=>`.group:active ${e}{${t}}`,"group-disabled":(e,t)=>`.group:disabled ${e}{${t}}`,"peer-hover":(e,t)=>`.peer:hover ~ ${e}{${t}}`,"peer-focus":(e,t)=>`.peer:focus ~ ${e}{${t}}`,"peer-checked":(e,t)=>`.peer:checked ~ ${e}{${t}}`,"peer-disabled":(e,t)=>`.peer:disabled ~ ${e}{${t}}`},gt={sm:"(min-width:640px)",md:"(min-width:768px)",lg:"(min-width:1024px)",xl:"(min-width:1280px)","2xl":"(min-width:1536px)",dark:"(prefers-color-scheme: dark)"},nn={xs:"(min-width:20rem)",sm:"(min-width:24rem)",md:"(min-width:28rem)",lg:"(min-width:32rem)",xl:"(min-width:36rem)","2xl":"(min-width:42rem)","3xl":"(min-width:48rem)","4xl":"(min-width:56rem)","5xl":"(min-width:64rem)","6xl":"(min-width:72rem)","7xl":"(min-width:80rem)"},mt=["sm","md","lg","xl","2xl"],yt=["xs","sm","md","lg","xl","2xl","3xl","4xl","5xl","6xl","7xl"];function bt(e){const t=e.startsWith("-"),n=t?e.slice(1):e,r=n.lastIndexOf("-");if(r===-1)return null;const i=n.slice(0,r),o=n.slice(r+1);if(!pt[i])return null;if(o.includes("/")){const[a,l]=o.split("/").map(y=>parseFloat(y));if(Number.isNaN(a)||Number.isNaN(l)||l===0)return null;const m=a/l*100;return pt[i].map(y=>`${y}:${m}%;`).join("")}const s=parseFloat(o);if(Number.isNaN(s))return null;const c=t?"-":"";return pt[i].map(a=>`${a}:calc(${c}${ge} * ${s});`).join("")}function vt(e){const t=e.startsWith("-"),r=(t?e.slice(1):e).match(/^space-(x|y)-(.+)$/);if(!r)return null;const[,i,o]=r,s=i==="x";if(o==="reverse")return s?"--ce-space-x-reverse:1;":"--ce-space-y-reverse:1;";if(o.includes("/")){const[m,y]=o.split("/").map(f=>parseFloat(f));if(Number.isNaN(m)||Number.isNaN(y)||y===0)return null;const p=m/y*100,v=t?"-":"";return s?`--ce-space-x-reverse:0;& > :not([hidden]) ~ :not([hidden]){margin-inline-start:calc(${v}${p}% * calc(1 - var(--ce-space-x-reverse)));margin-inline-end:calc(${v}${p}% * var(--ce-space-x-reverse));}`:`--ce-space-y-reverse:0;& > :not([hidden]) ~ :not([hidden]){margin-top:calc(${v}${p}% * calc(1 - var(--ce-space-y-reverse)));margin-bottom:calc(${v}${p}% * var(--ce-space-y-reverse));}`}const c=parseFloat(o);if(Number.isNaN(c))return null;const l=`calc(${t?"-":""}${ge} * ${c})`;return s?`--ce-space-x-reverse:0;& > :not([hidden]) ~ :not([hidden]){margin-inline-start:calc(${l} * calc(1 - var(--ce-space-x-reverse)));margin-inline-end:calc(${l} * var(--ce-space-x-reverse));}`:`--ce-space-y-reverse:0;& > :not([hidden]) ~ :not([hidden]){margin-top:calc(${l} * calc(1 - var(--ce-space-y-reverse)));margin-bottom:calc(${l} * var(--ce-space-y-reverse));}`}function rn(e){const t=e.replace("#",""),n=parseInt(t,16);return`${n>>16&255} ${n>>8&255} ${n&255}`}const Yn=/^(bg|text|border|decoration|shadow|outline|caret|accent|fill|stroke)-([a-z]+)-?(\d{2,3}|DEFAULT)?$/,Qn={bg:"background-color",decoration:"text-decoration-color",text:"color",border:"border-color",outline:"outline-color",caret:"caret-color",accent:"accent-color",fill:"fill",stroke:"stroke"};function er(e){const t=Yn.exec(e);if(!t)return null;const[,n,r,i="DEFAULT"]=t,o=tn[r]?.[i];if(!o)return null;if(n==="shadow")return`--ce-shadow-color:${o};`;const s=Qn[n];return s?`${s}:${o};`:null}function tr(e){const t=e.indexOf("/");if(t===-1)return{base:e};const n=e.slice(0,t),r=e.slice(t+1),i=parseInt(r,10);return isNaN(i)||i<0||i>100?{base:n}:{base:n,opacity:i/100}}function wt(e){const{base:t,opacity:n}=tr(e),r=er(t);if(r&&n!==void 0){const o=/#([0-9a-f]{6})/i.exec(r);if(o){const s=rn(o[0]);return r.replace(/#([0-9a-f]{6})/i,`rgb(${s} / ${n})`)}}if(r)return r;const i=tt(t);if(i&&n!==void 0){const o=/#([0-9a-f]{6})/i.exec(i);if(o){const s=rn(o[0]);return i.replace(/#([0-9a-f]{6})/i,`rgb(${s} / ${n})`)}}return i}function kt(e){const t=/^(from|to|via)-([a-z]+)-?(\d{2,3}|DEFAULT)?$/.exec(e);if(!t)return null;const[,n,r,i="DEFAULT"]=t,o=tn[r]?.[i];if(!o)return null;switch(n){case"from":return`--ce-gradient-from:${o} var(--ce-gradient-from-position);--ce-gradient-to:rgb(255 255 255 / 0) var(--ce-gradient-to-position);--ce-gradient-stops:var(--ce-gradient-from), var(--ce-gradient-to);`;case"to":return`--ce-gradient-to:${o} var(--ce-gradient-to-position);`;case"via":return`--ce-gradient-to:rgb(255 255 255 / 0) var(--ce-gradient-to-position);--ce-gradient-stops:var(--ce-gradient-from), ${o} var(--ce-gradient-via-position), var(--ce-gradient-to);`;default:return null}}function xt(e){const t=/^opacity-(\d{1,3})$/.exec(e);if(!t)return null;const n=parseInt(t[1],10);return n<0||n>100?null:`opacity:${n/100};`}function tt(e){if(e.startsWith("[")&&e.endsWith("]")&&!e.includes("-[")){const s=e.slice(1,-1).trim(),c=s.indexOf(":");if(c===-1)return null;const a=s.slice(0,c).trim();let l=s.slice(c+1).trim();return/^[a-zA-Z][a-zA-Z0-9-]*$/.test(a)?(l=l.replace(/_/g," "),l=l.replace(/url\('\s*([^']*?)\s*'\)/g,'url("$1")'),l=l.replace(/^'([^']*)'$/g,'"$1"'),`${a}:${l};`):null}const t=e.indexOf("-[");if(t<=0||!e.endsWith("]"))return null;const n=e.slice(0,t);let r=e.slice(t+2,-1).replace(/_/g," ");const i={bg:"background-color",shadow:"box-shadow",p:"padding",px:"padding-inline",py:"padding-block",m:"margin",mx:"margin-inline",my:"margin-block",w:"width",h:"height","min-w":"min-width","max-w":"max-width","min-h":"min-height","max-h":"max-height","border-t":"border-top-width","border-b":"border-bottom-width","border-l":"border-left-width","border-r":"border-right-width","border-x":"border-inline-width","border-y":"border-block-width","grid-cols":"grid-template-columns","grid-rows":"grid-template-rows",transition:"transition-property",ease:"transition-timing-function",delay:"transition-delay",duration:"transition-duration",list:"list-style",break:"word-break",flex:"flex-direction",items:"align-items",justify:"justify-content",content:"align-content",self:"align-self",basis:"flex-basis",tracking:"letter-spacing",leading:"line-height",z:"z-index",opacity:"opacity"};if(n==="text")return/^\d*\.?\d+(px|rem|em|%|vh|vw|ch|ex)$/.test(r)?`font-size:${r};`:`color:${r};`;if(n==="rotate")return`transform:rotate(${r});`;if(n==="scale")return`transform:scale(${r});`;if(n==="translate-x")return`transform:translateX(${r});`;if(n==="translate-y")return`transform:translateY(${r});`;const o=i[n]??n.replace(/_/g,"-");return o&&r?`${o}:${r};`:null}function nr(e){if(e.startsWith("[")&&e.endsWith("]")){const n=e.slice(1,-1);return n.includes("&")?n:e}const t=e.indexOf("-[");if(t>0&&e.endsWith("]")){const n=e.slice(t+2,-1).replace(/_/g,"-");return n.includes("&")?n:e.replace(/_/g,"-")}return null}function on(e){return e.replace(/([!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~])/g,"\\$1")}function rr(e){const t=/class\s*=\s*(['"])([\s\S]*?)\1/g,n=[];let r;for(;r=t.exec(e);){const i=r[2].split(/\s+/).filter(Boolean);i.length&&n.push(...i)}return n}const Fe=new Map,ir=16,sn=1e3;function an(e){const t=Date.now(),n=Fe.get(e);if(n&&t-n.timestamp<ir)return n.css;const r=rr(e);if(!r.length)return"";const i=new Set(r),o=[[],[],[],[]],s={},c=(h,d=!1)=>{const u=d?`dark|${h}`:h;if(u in s)return s[u];const g=y(h,d);return s[u]=g,g},a=h=>{const d=h.some(w=>mt.includes(w)),u=h.some(w=>w.startsWith("@")&&(yt.includes(w.slice(1))||w.match(/^@\[.+\]$/))),g=h.includes("dark");return h.length?!d&&!g&&!u?1:g&&(d||u)?3:2:0},l=h=>{const d=[];let u="",g=0;for(let w=0;w<h.length;w++){const x=h[w];x==="["||x==="("?g++:(x==="]"||x===")")&&g--,x===":"&&g===0?(d.push(u),u=""):u+=x}return u&&d.push(u),d},m={hover:":hover",focus:":focus",active:":active",visited:":visited",disabled:":disabled",checked:":checked",first:":first-child",last:":last-child",odd:":nth-child(odd)",even:":nth-child(even)","focus-within":":focus-within","focus-visible":":focus-visible"},y=(h,d=!1)=>{const u=l(h);let g="",w=!1;for(const L of u){let B=L;if(B.startsWith("!")&&(w=!0,B=B.slice(1)),ht[B]||bt(B)||vt(B)||xt(B)||wt(B)||kt(B)||tt(B)){g=L;break}}if(!g)return null;const x=g.replace(/^!/,""),S=ht[x]??bt(x)??vt(x)??xt(x)??wt(x)??kt(x)??tt(x);if(!S)return null;const C=u.indexOf(g);let _=C>=0?u.slice(0,C):[];d&&(_=_.filter(L=>L!=="dark"));const k=`.${on(h)}`,T=w?S.replace(/;/g," !important;"):S,$="__SUBJECT__";let b=$;const E=[];for(const L of _)L.startsWith("group-")?(b=`.group:${L.slice(6)} ${b}`,E.push(L)):L.startsWith("peer-")&&(b=b.replace($,`.peer:${L.slice(5)}~${$}`),E.push(L));_=_.filter(L=>!E.includes(L));const P=[],j=[];let A=null;for(const L of _){if(L==="dark"||mt.includes(L)||L.startsWith("@")&&(yt.includes(L.slice(1))||L.match(/^@\[.+\]$/)))continue;const B=nr(L);if(B){A=B;continue}const Z=m[L];if(Z){A?j.push(Z):P.push(Z);continue}const z=Xn[L];typeof z=="function"&&(b=z(b,T).split("{")[0])}const R=P.join(""),D=j.join("");function he(L,B){if(!B)return L;let Z=0,z=0;if(L.length&&(L[0]===">"||L[0]==="+"||L[0]==="~"||L[0]===" ")){let q=1;for(;q<L.length&&L[q]===" ";)q++;for(;q<L.length;q++){const Q=L[q];if(Q==="["?Z++:Q==="]"&&Z>0?Z--:Q==="("?z++:Q===")"&&z>0&&z--,Z===0&&z===0&&(L[q]===">"||L[q]==="+"||L[q]==="~"||L[q]===" "))return L.slice(0,q)+B+L.slice(q)}return L+B}for(let q=0;q<L.length;q++){const Q=L[q];if(Q==="["?Z++:Q==="]"&&Z>0?Z--:Q==="("?z++:Q===")"&&z>0&&z--,Z===0&&z===0&&(Q===">"||Q==="+"||Q==="~"||Q===" "))return L.slice(0,q)+B+L.slice(q)}return L+B}if(A)if(A.includes("&")){const L=A.indexOf("&"),B=A.slice(0,L),Z=A.slice(L+1),z=$+R;if(P.length===0)b=b.replace($,B+z+D+Z);else{const q=he(Z,D);b=b.replace($,B+z+q)}}else b=b.replace($,`${A}${$+R}`),D&&(b=b.replace($,`${$}${D}`));else b=b.replace($,$+R+D);b=b.replace(new RegExp($,"g"),k);let J=`${b}{${T}}`;const V=_.filter(L=>mt.includes(L)),H=_.filter(L=>L.startsWith("@")&&(yt.includes(L.slice(1))||L.match(/^@\[.+\]$/))),G=V.length?V[V.length-1]:null,le=H.length?H[H.length-1]:null,Me=_.includes("dark");let W="",fe="";if(Me&&G?W=`@media (prefers-color-scheme: dark) and ${gt[G]}`:Me?W="@media (prefers-color-scheme: dark)":G&&(W=`@media ${gt[G]}`),le)if(le.startsWith("@[")&&le.endsWith("]")){const L=le.slice(2,-1);if(!/^-?\d*\.?\d+(px|rem|em|%|vh|vw|ch|ex|cm|mm|in|pt|pc)$/.test(L))return null;fe=`@container (min-width:${L})`}else{const L=le.slice(1);fe=`@container ${nn[L]||`(min-width:${L})`}`}return W&&fe?J=`${W}${fe}{${J}}`:W?J=`${W}{${J}}`:fe&&(J=`${fe}{${J}}`),J};for(const h of i){const d=l(h),u=d.find(C=>ht[C.replace(/^!/,"")]||bt(C.replace(/^!/,""))||vt(C.replace(/^!/,""))||xt(C.replace(/^!/,""))||wt(C.replace(/^!/,""))||kt(C.replace(/^!/,""))||tt(C.replace(/^!/,"")));if(!u)continue;const g=d.indexOf(u),w=g>=0?d.slice(0,g):[],x=a(w),S=c(h);S&&o[x].push(S)}const p=/^(from|via|to)-[a-z]+-?\d{2,3}?$/;for(const h of i)if(p.test(h)){if(o.flat().join("").includes(`.${on(h)}`))continue;const u=c(h);u&&o[0].push(u)}const v=h=>h.sort((d,u)=>{const g=k=>{const T={sm:640,md:768,lg:1024,xl:1280,"2xl":1536};for(const[$,b]of Object.entries(T))if(k.includes(`@media ${gt[$]}`))return b;return-1},w=k=>{const T={xs:320,sm:384,md:448,lg:512,xl:576,"2xl":672,"3xl":768,"4xl":896,"5xl":1024,"6xl":1152,"7xl":1280};for(const[$,b]of Object.entries(T))if(k.includes(`@container ${nn[$]}`))return b;if(k.includes("@container (min-width:")){const $=/@container \(min-width:(\d+(?:\.\d+)?)(px|rem|em)/.exec(k);if($){const b=parseFloat($[1]),E=$[2];return E==="rem"||E==="em"?b*16:b}}return-1},x=g(d),S=g(u),C=w(d),_=w(u);return x>=0&&S>=0&&x!==S?x-S:C>=0&&_>=0&&C!==_?C-_:0});o[2]=v(o[2]),o[3]=v(o[3]);const f=o.flat().join("");return Fe.size>=sn&&Array.from(Fe.keys()).slice(0,Math.floor(sn/2)).forEach(d=>Fe.delete(d)),Fe.set(e,{css:f,timestamp:t}),f}function Ie(e,t){const n="when-block";return U(typeof t=="function"?e?t():[]:e?t:[],n)}function or(e,t){return e.map((n,r)=>{const i=typeof n=="object"?n?.key??n?.id??`idx-${r}`:String(n);return U(t(n,r),`each-${i}`)})}function cn(){const e=[];return{when(t,n){return e.push([t,n]),this},otherwise(t){return e.push([!0,t]),this},done(){return sr(...e)}}}function sr(...e){for(let t=0;t<e.length;t++){const[n,r]=e[t];if(n){const i=typeof r=="function"?r():r;return[U(i,`whenChain-branch-${t}`)]}}return[U([],"whenChain-empty")]}function U(e,t){const n=e?Array.isArray(e)?e.filter(r=>r!=null):[e].filter(r=>r!=null):[];return{tag:"#anchor",key:t,children:n}}const je={fade:{enterFrom:"opacity-0",enterActive:"transition-opacity duration-300 ease-out",enterTo:"opacity-100",leaveFrom:"opacity-100",leaveActive:"transition-opacity duration-200 ease-in",leaveTo:"opacity-0"},"slide-right":{enterFrom:"translate-x-[100%] opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"translate-x-[0%] opacity-100",leaveFrom:"translate-x-[0%] opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"translate-x-[100%] opacity-0"},"slide-left":{enterFrom:"translate-x-[-100%] opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"translate-x-[0%] opacity-100",leaveFrom:"translate-x-[0%] opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"translate-x-[-100%] opacity-0"},"slide-up":{enterFrom:"translate-y-[100%] opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"translate-y-[0%] opacity-100",leaveFrom:"translate-y-[0%] opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"translate-y-[100%] opacity-0"},"slide-down":{enterFrom:"translate-y-[-100%] opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"translate-y-[0%] opacity-100",leaveFrom:"translate-y-[0%] opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"translate-y-[-100%] opacity-0"},scale:{enterFrom:"scale-95 opacity-0",enterActive:"transition-all duration-200 ease-out",enterTo:"scale-100 opacity-100",leaveFrom:"scale-100 opacity-100",leaveActive:"transition-all duration-150 ease-in",leaveTo:"scale-95 opacity-0"},"scale-down":{enterFrom:"scale-105 opacity-0",enterActive:"transition-all duration-200 ease-out",enterTo:"scale-100 opacity-100",leaveFrom:"scale-100 opacity-100",leaveActive:"transition-all duration-150 ease-in",leaveTo:"scale-105 opacity-0"},bounce:{enterFrom:"scale-0 opacity-0",enterActive:"transition-all duration-500 ease-out",enterTo:"scale-100 opacity-100",leaveFrom:"scale-100 opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"scale-0 opacity-0"},zoom:{enterFrom:"scale-0 opacity-0",enterActive:"transition-all duration-300 ease-out",enterTo:"scale-100 opacity-100",leaveFrom:"scale-100 opacity-100",leaveActive:"transition-all duration-200 ease-in",leaveTo:"scale-0 opacity-0"},flip:{enterFrom:"rotate-[90deg] opacity-0",enterActive:"transition-all duration-400 ease-out",enterTo:"rotate-[0deg] opacity-100",leaveFrom:"rotate-[0deg] opacity-100",leaveActive:"transition-all duration-300 ease-in",leaveTo:"rotate-[90deg] opacity-0"}};function ar(e,t){const{preset:n,show:r,mode:i="default",duration:o,appear:s=!1,css:c=!0,name:a,enterFrom:l,enterActive:m,enterTo:y,leaveFrom:p,leaveActive:v,leaveTo:f,onBeforeEnter:h,onEnter:d,onAfterEnter:u,onEnterCancelled:g,onBeforeLeave:w,onLeave:x,onAfterLeave:S,onLeaveCancelled:C}=e;let _;n&&je[n]?(_={...je[n]},l&&(_.enterFrom=l),m&&(_.enterActive=m),y&&(_.enterTo=y),p&&(_.leaveFrom=p),v&&(_.leaveActive=v),f&&(_.leaveTo=f)):_={enterFrom:l,enterActive:m,enterTo:y,leaveFrom:p,leaveActive:v,leaveTo:f};const k=a||(n?`transition-${n}`:"transition"),T=U(r?t:[],k);return T._transition={name:k,classes:_,mode:i,duration:o,appear:s,css:c,state:r?"visible":"hidden",hooks:{onBeforeEnter:h,onEnter:d,onAfterEnter:u,onEnterCancelled:g,onBeforeLeave:w,onLeave:x,onAfterLeave:S,onLeaveCancelled:C}},T}function cr(e,t){const{tag:n="div",moveClass:r="transition-transform duration-300",preset:i,show:o=!0,mode:s="default",duration:c,appear:a=!1,css:l=!0,name:m,class:y,style:p,enterFrom:v,enterActive:f,enterTo:h,leaveFrom:d,leaveActive:u,leaveTo:g,onBeforeEnter:w,onEnter:x,onAfterEnter:S,onEnterCancelled:C,onBeforeLeave:_,onLeave:k,onAfterLeave:T,onLeaveCancelled:$}=e;let b;i&&je[i]?(b={...je[i]},v&&(b.enterFrom=v),f&&(b.enterActive=f),h&&(b.enterTo=h),d&&(b.leaveFrom=d),u&&(b.leaveActive=u),g&&(b.leaveTo=g)):b={enterFrom:v,enterActive:f,enterTo:h,leaveFrom:d,leaveActive:u,leaveTo:g};const E=m||(i?`transition-group-${i}`:"transition-group"),P=[];for(const j of o?t:[])if(j&&typeof j=="object"&&j.tag==="#anchor"){const A=Array.isArray(j.children)?j.children:[];for(const R of A)if(R&&typeof R=="object"){const D={...R,key:j.key||R.key,props:{...R.props,_anchorKey:j.key}};P.push(D)}else P.push(R)}else P.push(j);return{tag:n,children:P,key:E,props:{attrs:{...y?{class:y}:{},...p?{style:p}:{}},_transitionGroup:{name:E,classes:b,moveClass:r,mode:s,duration:c,appear:a,css:l,hooks:{onBeforeEnter:w,onEnter:x,onAfterEnter:S,onEnterCancelled:C,onBeforeLeave:_,onLeave:k,onAfterLeave:T,onLeaveCancelled:$}}}}}function lr(e){return{...e}}let nt=null;function rt(){if(!nt){const e=[];Object.values(je).forEach(r=>{r.enterFrom&&e.push(r.enterFrom),r.enterActive&&e.push(r.enterActive),r.enterTo&&e.push(r.enterTo),r.leaveFrom&&e.push(r.leaveFrom),r.leaveActive&&e.push(r.leaveActive),r.leaveTo&&e.push(r.leaveTo)});const t=`<div class="${e.join(" ")}"></div>`,n=an(t);nt=new CSSStyleSheet,nt.replaceSync(n)}return nt}function ur(){rt()}ur();const We=[];function fr(e,t,n,r,i,o,s,c){if(e){We.push(n);try{const a=t.render(n);if(a instanceof Promise){o(!0),a.then(l=>{o(!1),s(null),ln(e,l,n,r,i),c(e.innerHTML)}).catch(l=>{o(!1),s(l)});return}ln(e,a,n,r,i),c(e.innerHTML)}finally{We.pop()}}}function ln(e,t,n,r,i){e&&(Vn(e,Array.isArray(t)?t:[t],n,r),i(e.innerHTML))}function dr(e,t,n,r,i,o,s){if(o!==null&&clearTimeout(o),Date.now()-t<16){if(i(n+1),n===15)K(`⚠️ Component is re-rendering rapidly. This might indicate:
118
118
  Common causes:
119
119
  • Event handler calling a function immediately: @click="\${fn()}" should be @click="\${fn}"
120
120
  • State modification during render
@@ -122,32 +122,35 @@
122
122
  Component rendering will be throttled to prevent browser freeze.`);else if(n>20){F(`🛑 Infinite loop detected in component render:
123
123
  • This might be caused by state updates during render
124
124
  • Ensure all state modifications are done in event handlers or effects
125
- Stopping runaway component render to prevent browser freeze`),s(null);return}}else i(0);const l=setTimeout(()=>{r(Date.now()),e(),s(null)},n>10?100:0);s(l)}function lr(e,t,n,r,i){if(!e)return;let o=n||"";try{if(e){const y=Array.from(e.querySelectorAll("*"));for(const p of y)try{const v=p.lastHtmlStringForJitCSS;v&&typeof v=="string"&&v.trim()&&(o+=`
126
- `+v)}catch{}}}catch{}const s=rn(o);if((!s||s.trim()==="")&&!t._computedStyle){i(null),e.adoptedStyleSheets=[Xt(),rt()];return}let c="";t._computedStyle&&(c=t._computedStyle);let a=Un(`${c}
125
+ Stopping runaway component render to prevent browser freeze`),s(null);return}}else i(0);const l=setTimeout(()=>{r(Date.now()),e(),s(null)},n>10?100:0);s(l)}function pr(e,t,n,r,i){if(!e)return;let o=n||"";try{if(e){const y=Array.from(e.querySelectorAll("*"));for(const p of y)try{const v=p.lastHtmlStringForJitCSS;v&&typeof v=="string"&&v.trim()&&(o+=`
126
+ `+v)}catch{}}}catch{}const s=an(o);if((!s||s.trim()==="")&&!t._computedStyle){i(null),e.adoptedStyleSheets=[en(),rt()];return}let c="";t._computedStyle&&(c=t._computedStyle);let a=Gn(`${c}
127
127
  ${s}
128
- `);a=Jt(a);let l=r;l||(l=new CSSStyleSheet),(l.cssRules.length===0||l.cssRules.length>0&&Array.from(l.cssRules).map(y=>y.cssText).join("")!==a)&&l.replaceSync(a),e.adoptedStyleSheets=[Xt(),rt(),l],i(l)}let W=null;function an(e){W=e}function kt(){W=null}function ur(){if(!W)throw new Error("useEmit must be called during component render");const e=W.emit;return(t,n)=>e(t,n)}function Le(e){e._hookCallbacks||Object.defineProperty(e,"_hookCallbacks",{value:{},writable:!0,enumerable:!1,configurable:!1})}function xt(e){if(!W)throw new Error("useOnConnected must be called during component render");Le(W),W._hookCallbacks.onConnected=e}function fr(e){if(!W)throw new Error("useOnDisconnected must be called during component render");Le(W),W._hookCallbacks.onDisconnected=e}function dr(e){if(!W)throw new Error("useOnAttributeChanged must be called during component render");Le(W),W._hookCallbacks.onAttributeChanged=e}function pr(e){if(!W)throw new Error("useOnError must be called during component render");Le(W),W._hookCallbacks.onError=e}function cn(e){if(!W)throw new Error("useProps must be called during component render");Le(W),W._hookCallbacks.props={...W._hookCallbacks.props||{},...e};const t=W;try{const r=Object.keys(e||{});for(const i of r){if(typeof i!="string"||i.startsWith("_"))continue;const o=Object.getOwnPropertyDescriptor(t,i);if(!(o&&!o.configurable))try{let c=Object.prototype.hasOwnProperty.call(t,i)?t[i]:void 0;Object.defineProperty(t,i,{configurable:!0,enumerable:!0,get(){try{const a=t&&t._host;if(a){const l=oe(i),m=a.getAttribute(l);if(m!==null){const y=typeof e[i];return y==="boolean"?m===""||m==="true":y==="number"?Number(m):m}if(typeof a[i]<"u"){const y=a[i];return D(y)||y&&typeof y=="object"&&"value"in y&&!(y instanceof Node)?y.value:typeof e[i]==="boolean"&&typeof y=="string"?y===""||y==="true":y}}}catch{}return c},set(a){c=a}})}catch{}}}catch{}return new Proxy({},{get(r,i){if(typeof i!="string")return;const o=e[i];try{const c=t&&t._host;if(c){if(c instanceof HTMLElement||typeof c.getAttribute=="function"&&typeof c.hasAttribute=="function"){const l=i.replace(/([A-Z])/g,"-$1").toLowerCase(),m=c.getAttribute(l);if(m!==null)return typeof o=="boolean"?m===""||m==="true":typeof o=="number"?Number(m):m}const a=c[i];if(typeof a<"u"&&a!=="")return typeof o=="boolean"&&o===!1&&a===""?o:D(a)||a&&typeof a=="object"&&"value"in a&&!(a instanceof Node)?a.value:typeof o=="boolean"&&typeof a=="string"?a==="true"||a!==""&&a!=="false":typeof o=="number"&&typeof a=="string"&&!Number.isNaN(Number(a))?Number(a):a}}catch{}const s=t[i];return typeof o=="boolean"&&s===""?o===!1?o:!0:D(s)||s&&typeof s=="object"&&"value"in s&&!(s instanceof Node)?s.value:s!=null&&s!==""?typeof o=="boolean"&&typeof s=="string"?s==="true":typeof o=="number"&&typeof s=="string"&&!Number.isNaN(Number(s))?Number(s):s:o},has(r,i){return typeof i=="string"&&(i in t||i in e)},ownKeys(){return Array.from(new Set([...Object.keys(e),...Object.keys(t||{})]))},getOwnPropertyDescriptor(){return{configurable:!0,enumerable:!0}}})}function hr(e){if(!W)throw new Error("useStyle must be called during component render");Le(W);try{const t=e();Object.defineProperty(W,"_computedStyle",{value:t,writable:!0,enumerable:!1,configurable:!0})}catch(t){te("Error in useStyle callback:",t),Object.defineProperty(W,"_computedStyle",{value:"",writable:!0,enumerable:!1,configurable:!0})}}const Oe=new Map,ln=Symbol.for("cer.registry");if(typeof window<"u"){const e=globalThis;e[ln]||(e[ln]=Oe)}function gr(e,t){if(!t.render)throw new Error("Component must have a render function");return typeof window>"u"?class{constructor(){}}:class extends HTMLElement{context;_refs={};_listeners=[];_watchers=new Map;_renderTimeoutId=null;_mounted=!1;_hasError=!1;_initializing=!0;_componentId;_styleSheet=null;_lastHtmlStringForJitCSS="";get lastHtmlStringForJitCSS(){return this._lastHtmlStringForJitCSS}get isLoading(){return this._templateLoading}get lastError(){return this._templateError}_cfg;_lastRenderTime=0;_renderCount=0;_templateLoading=!1;_templateError=null;constructor(){super(),this.attachShadow({mode:"open"}),this._cfg=Oe.get(e)||t,this._componentId=`${e}-${Math.random().toString(36).substr(2,9)}`;const n=this._initContext(t),r=(o,s,c)=>{Object.defineProperty(o,s,{value:c,writable:!1,enumerable:!1,configurable:!1})};r(n,"refs",this._refs),r(n,"requestRender",()=>this.requestRender()),r(n,"_requestRender",()=>this._requestRender()),r(n,"_componentId",this._componentId),r(n,"_triggerWatchers",(o,s)=>this._triggerWatchers(o,s)),this.context=n,N(()=>{r(n,"_host",this)}),r(this.context,"emit",(o,s,c)=>{const a={detail:s,bubbles:!0,composed:!0,...c||{}},l=new CustomEvent(o,a);this.dispatchEvent(l);const m=o.indexOf(":");if(m>0){const y=o.substring(0,m),p=o.substring(m+1),v=p.includes("-")?`${y}:${p.split("-").map((f,h)=>h===0?f:f.charAt(0).toUpperCase()+f.slice(1)).join("")}`:`${y}:${p.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase()}`;v!==o&&N(()=>{this.dispatchEvent(new CustomEvent(v,a))})}return!l.defaultPrevented});const i=Oe.get(e)||t;for(const o in i){const s=i[o];typeof s=="function"&&(this.context[o]=(...c)=>s(...c,this.context))}if(i.props)for(const o in i.props){let s=this[o];Object.defineProperty(this,o,{get(){return s},set(c){const a=s;s=c,this.context[o]=c,this._initializing||(this._applyProps(i),a!==c&&this._requestRender())},enumerable:!0,configurable:!0})}this._initializing=!1,this._initWatchers(i),this._applyProps(i),this._render(i)}connectedCallback(){this._runLogicWithinErrorBoundary(t,()=>{this._applyProps(t),this._requestRender(),_n(t,this.context,this._mounted,n=>{this._mounted=n})})}disconnectedCallback(){this._runLogicWithinErrorBoundary(t,()=>{An(t,this.context,this._listeners,()=>{this._listeners=[]},()=>{this._watchers.clear()},n=>{this._templateLoading=n},n=>{this._templateError=n},n=>{this._mounted=n})})}attributeChangedCallback(n,r,i){this._runLogicWithinErrorBoundary(t,()=>{this._applyProps(t),r!==i&&this._requestRender(),Sn(t,n,r,i,this.context)})}static get observedAttributes(){return t.props?Object.keys(t.props).map(oe):[]}_render(n){this._runLogicWithinErrorBoundary(n,()=>{ar(this.shadowRoot,n,this.context,this._refs,r=>{this._lastHtmlStringForJitCSS=r,typeof this.onHtmlStringUpdate=="function"&&this.onHtmlStringUpdate(r)},r=>{this._templateLoading=r,typeof this.onLoadingStateChange=="function"&&this.onLoadingStateChange(r)},r=>{this._templateError=r,typeof this.onErrorStateChange=="function"&&this.onErrorStateChange(r)},r=>this._applyStyle(n,r))})}requestRender(){this._requestRender()}_requestRender(){this._runLogicWithinErrorBoundary(this._cfg,()=>{Ee(()=>{cr(()=>this._render(this._cfg),this._lastRenderTime,this._renderCount,n=>{this._lastRenderTime=n},n=>{this._renderCount=n},this._renderTimeoutId,n=>{this._renderTimeoutId=n})},this._componentId)})}_applyStyle(n,r){this._runLogicWithinErrorBoundary(n,()=>{lr(this.shadowRoot,this.context,r,this._styleSheet,i=>{this._styleSheet=i})})}_runLogicWithinErrorBoundary(n,r){this._hasError&&(this._hasError=!1);try{r()}catch(i){this._hasError=!0;try{const o=n&&n.tag||this.tagName?.toLowerCase?.()||"<unknown>",s=this._componentId||"<unknown-id>",c={};if(n&&n.props)for(const a of Object.keys(n.props))try{const l=this.context[a];l instanceof Node?c[a]=`[DOM Node: ${l.nodeName}]`:typeof l=="object"&&l!==null?c[a]=Object.keys(l).length>5?`[object(${Object.keys(l).length} keys)]`:l:c[a]=l}catch{c[a]="[unreadable]"}F(`Error rendering component <${o}> (id=${s}):`,i),F("Component props snapshot:",c),te("Common causes: accessing properties of null/undefined inside template interpolations; expensive or throwing expressions inside templates that evaluate eagerly. Fixes: use optional chaining (obj?.prop), guard with ternary, or use the runtime lazy overload: when(cond, () => html`...`).")}catch{}n.onError&&n.onError(i,this.context)}}_initContext(n){try{let r=function(o,s=""){if(Array.isArray(o))return new Proxy(o,{get(c,a,l){const m=Reflect.get(c,a,l);return typeof m=="function"&&typeof a=="string"&&["push","pop","shift","unshift","splice","sort","reverse"].includes(a)?function(...p){const v=m.apply(c,p);if(!i._initializing){const f=s||"root";i._triggerWatchers(f,c),Ee(()=>i._render(n),i._componentId)}return v}:m},set(c,a,l){if(c[a]=l,!i._initializing){const m=s?`${s}.${String(a)}`:String(a);i._triggerWatchers(m,l),Ee(()=>i._render(n),i._componentId)}return!0},deleteProperty(c,a){if(delete c[a],!i._initializing){const l=s?`${s}.${String(a)}`:String(a);i._triggerWatchers(l,void 0),Ee(()=>i._render(n),i._componentId)}return!0}});if(o&&typeof o=="object"){if(D(o))return o;for(const c in o){const a=s?`${s}.${c}`:c;o[c]=r(o[c],a)}return new Proxy(o,{set(c,a,l){const m=s?`${s}.${String(a)}`:String(a);return c[a]=r(l,m),i._initializing||(i._triggerWatchers(m,c[a]),Ee(()=>i._render(n),i._componentId)),!0},get(c,a,l){return Reflect.get(c,a,l)}})}return o};const i=this;return r({...n.props?Object.fromEntries(Object.entries(n.props).map(([o,s])=>[o,s.default])):{}})}catch{return{}}}_initWatchers(n){this._runLogicWithinErrorBoundary(n,()=>{xn(this.context,this._watchers,{})})}_triggerWatchers(n,r){$n(this.context,this._watchers,n,r)}_applyProps(n){this._runLogicWithinErrorBoundary(n,()=>{try{En(this,n,this.context)}catch(r){this._hasError=!0,n.onError&&n.onError(r,this.context)}})}}}function $t(e,t){let n=oe(e);n.includes("-")||(n=`cer-${n}`);let r={};const i={props:{},onConnected:o=>{r.onConnected&&r.onConnected()},onDisconnected:o=>{r.onDisconnected&&r.onDisconnected()},onAttributeChanged:(o,s,c,a)=>{r.onAttributeChanged&&r.onAttributeChanged(o,s,c)},onError:(o,s)=>{r.onError&&o&&r.onError(o)},render:o=>{const s=o._componentId||`${n}-${Math.random().toString(36).substr(2,9)}`;ne.setCurrentComponent(s,()=>{o.requestRender&&o.requestRender()});try{an(o);let c;try{c=t()}catch(a){try{const l=o?._hookCallbacks;if(l&&typeof l.onError=="function")try{l.onError(a)}catch{}}catch{}throw a}if(o._hookCallbacks){const a=o._hookCallbacks;if(a.onConnected&&(r.onConnected=a.onConnected),a.onDisconnected&&(r.onDisconnected=a.onDisconnected),a.onAttributeChanged&&(r.onAttributeChanged=a.onAttributeChanged),a.onError&&(r.onError=a.onError),a.style&&(o._styleCallback=a.style),a.props){const l=a.props;i.props=Object.fromEntries(Object.entries(l).map(([m,y])=>[m,{type:typeof y=="boolean"?Boolean:typeof y=="number"?Number:typeof y=="string"?String:Function,default:y}])),Oe.set(n,i)}}return c}finally{kt(),ne.clearCurrentComponent()}}};if(Oe.set(n,i),typeof window<"u"){try{const o={_hookCallbacks:{},requestRender:()=>{}};an(o);try{t()}catch(s){try{const c=o?._hookCallbacks;if(c&&typeof c.onError=="function")try{c.onError(s)}catch{}F(`Error during component discovery render <${n}>:`,s),te("Error occurred during initial component discovery render. Consider guarding expensive expressions or using lazy factories for directives like when().")}catch{}throw kt(),s}if(kt(),o._hookCallbacks?.props){const s=o._hookCallbacks.props;i.props=Object.fromEntries(Object.entries(s).map(([c,a])=>[c,{type:typeof a=="boolean"?Boolean:typeof a=="number"?Number:typeof a=="string"?String:Function,default:a}])),Oe.set(n,i)}}catch{}customElements.get(n)||customElements.define(n,gr(n,i))}}class mr{map=new Map;maxSize;constructor(t){this.maxSize=t}get(t){const n=this.map.get(t);if(n!==void 0)return this.map.delete(t),this.map.set(t,n),n}set(t,n){if(this.map.delete(t),this.map.set(t,n),this.map.size>this.maxSize){const r=this.map.keys().next().value;r!==void 0&&this.map.delete(r)}}has(t){return this.map.has(t)}clear(){this.map.clear()}}const Ct=new mr(500);function yr(e,t){if(e==null){te(`⚠️ Event handler for '@${t}' is ${e}. This will prevent the event from working. Use a function reference instead: @${t}="\${functionName}"`);return}typeof e!="function"&&te(`🚨 Potential infinite loop detected! Event handler for '@${t}' appears to be the result of a function call (${typeof e}) instead of a function reference. Change @${t}="\${functionName()}" to @${t}="\${functionName}" to pass the function reference instead of calling it immediately.`),e===void 0&&typeof e!="function"&&te(`💡 Tip: If your event handler function returns undefined, make sure you're passing the function reference, not calling it. Use @${t}="\${fn}" not @${t}="\${fn()}"`)}function ye(e,t={},n,r){const i=r??t.key;return{tag:e,key:i,props:t,children:n}}function Be(e){return!!e&&typeof e=="object"&&(e.type==="AnchorBlock"||e.tag==="#anchor")}function ze(e){return typeof e=="object"&&e!==null&&"tag"in e&&!Be(e)}function br(e,t){return e.key!=null?e:{...e,key:t}}function vr(e,t=[],n={}){const r={},i={},o={},s=[],c=/([:@#]?)([a-zA-Z0-9-:\.]+)(?:=("([^"\\]*(\\.[^"\\]*)*)"|'([^'\\]*(\\.[^'\\]*)*)'))?/g;let a;for(;a=c.exec(e);){const l=a[1],m=a[2],y=(a[4]||a[6])??"",p=a[3]===void 0&&a[6]===void 0,v=y.match(/^{{(\d+)}}$/);let f=p?!0:v?t[Number(v[1])]??null:y;v||(f==="true"?f=!0:f==="false"?f=!1:f==="null"?f=null:isNaN(Number(f))||(f=Number(f)));const h=["model","bind","show","class","style","ref","when"];if(l===":"){const[d,u]=m.split(":"),[g,...w]=d.split(".");if(h.includes(g)){const x=[...w],S=g==="model"&&u?`model:${u}`:g;o[S]={value:f,modifiers:x,arg:u}}else if(m==="disabled"){let x=f;x&&D(x)&&(x=x.value);const S=typeof x;if(x===""||S==="boolean"||S==="string"&&(x==="true"||x==="false")||x==null||S==="number")r[m]=x;else{let k=f;k&&D(k)&&(k=k.value),i[m]=k}s.push(m)}else{let x=f;x&&D(x)&&(x=x.value),i[m]=x,s.push(m)}}else if(l==="@"){const[d,...u]=m.split("."),g=u;yr(f,d);const w=typeof f=="function"?f:typeof n[f]=="function"?n[f]:void 0;if(w){const x=C=>{if(g.includes("prevent")&&C.preventDefault(),g.includes("stop")&&C.stopPropagation(),!(g.includes("self")&&C.target!==C.currentTarget))return g.includes("once")&&C.currentTarget?.removeEventListener(d,x),w(C)},S="on"+d.charAt(0).toUpperCase()+d.slice(1);r[S]=x}}else m==="ref"?r.ref=f:i[m]=f}return{props:r,attrs:i,directives:o,bound:s}}function Et(e){if(!ze(e)||Be(e))return e;const t=e.props?.directives;if(t&&t.when){const n=t.when.value,r=D(n)?n.value:n,{when:i,...o}=t,s={...e.props};Object.keys(o).length>0?s.directives=o:delete s.directives;const c={...e,props:s};return Array.isArray(c.children)&&(c.children=c.children.map(l=>typeof l=="object"&&l!==null?Et(l):l)),{tag:"#anchor",key:e.key!=null?`when-${e.key}`:`when-${e.tag}`,children:r?[c]:[]}}if(Array.isArray(e.children)){const n=e.children.map(r=>typeof r=="object"&&r!==null?Et(r):r);return{...e,children:n}}return e}function wr(e,t,n){const r=We.length>0?We[We.length-1]:void 0,i=n??r,o=!n&&t.length===0,s=o?e.join("<!--TEMPLATE_DELIM-->"):null;if(o&&s){const k=Ct.get(s);if(k)return k}function c(k,T){return ye("#text",{},k,T)}function a(k,T){const $=typeof k=="string"?ce(k):k;return ye("#text",{},$,T)}let l="";for(let k=0;k<e.length;k++)l+=e[k],k<t.length&&(l+=`{{${k}}}`);const m=/<!--[\s\S]*?-->|<\/?([a-zA-Z0-9-]+)((?:\s+[^\s=>/]+(?:\s*=\s*(?:"(?:\\.|[^"])*"|'(?:\\.|[^'])*'|[^\s>]+))?)*)\s*\/?>|{{(\d+)}}|([^<]+)/g,y=[];let p,v=[],f=null,h={},d,u=0,g=[];function w(k){!k||typeof k!="object"||Be(k)||(k.props||k.attrs?(k.props&&(h.props||(h.props={}),Object.assign(h.props,k.props)),k.attrs&&(h.attrs||(h.attrs={}),Object.keys(k.attrs).forEach(T=>{if(T==="style"&&h.attrs.style){const $=h.attrs.style.replace(/;?\s*$/,""),b=k.attrs.style.replace(/^;?\s*/,"");h.attrs.style=$+"; "+b}else if(T==="class"&&h.attrs.class){const $=h.attrs.class.trim().split(/\s+/).filter(Boolean),b=k.attrs.class.trim().split(/\s+/).filter(Boolean),A=[...new Set([...$,...b])];h.attrs.class=A.join(" ")}else h.attrs[T]=k.attrs[T]}))):(h.props||(h.props={}),Object.assign(h.props,k)))}function x(k,T){const $=f?v:g;if(Be(k)){const b=k.key??T;let A=k.children;$.push({...k,key:b,children:A});return}if(ze(k)){$.push(br(k,void 0));return}if(Array.isArray(k)){if(k.length===0)return;for(let b=0;b<k.length;b++){const A=k[b];Be(A)||ze(A)||Array.isArray(A)?x(A,`${T}-${b}`):A!==null&&typeof A=="object"?Ht(A)?$.push(ye("#raw",{},A.__rawHTML,`${T}-${b}`)):w(A):$.push(c(String(A),`${T}-${b}`))}return}if(k!==null&&typeof k=="object"){if(Ht(k)){const b=k.__rawHTML??"";$.push(ye("#raw",{},b,T));return}w(k);return}$.push(c(String(k),T))}const S=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]);for(;p=m.exec(l);)if(!(p[0].startsWith("<!--")&&p[0].endsWith("-->"))){if(p[1]){const k=p[1],T=p[0][1]==="/",$=p[0][p[0].length-2]==="/"||S.has(k),{props:b,attrs:A,directives:P,bound:j}=vr(p[2]||"",t,i),E={props:{},attrs:{}};for(const M in b)E.props[M]=b[M];for(const M in A)E.attrs[M]=A[M];try{if(k==="router-link"){const M=[],R=ee=>{try{let I=E.attrs&&E.attrs[ee];I&&D(I)&&(I=I.value),typeof I=="string"&&I.trim()&&M.push(...I.trim().split(/\s+/))}catch{}};if(R("class"),R("activeClass"),R("exactActiveClass"),M.length>0){const ee=E.attrs&&E.attrs.class||"",I=typeof ee=="string"&&ee.trim()?ee.trim().split(/\s+/):[],K=Array.from(new Set([...I,...M]));E.attrs.class=K.join(" ")}}}catch{}E.attrs&&Object.prototype.hasOwnProperty.call(E.attrs,"key")&&!(E.props&&Object.prototype.hasOwnProperty.call(E.props,"key"))&&N(()=>{E.props.key=E.attrs.key});try{const M={input:["value","checked","readonly","required","placeholder","maxlength","minlength"],textarea:["value","readonly","required","placeholder","maxlength","minlength"],select:["value","required","multiple"],option:["selected","value"],video:["muted","autoplay","controls","loop","playsinline"],audio:["muted","autoplay","controls","loop"],img:["src","alt","width","height"],button:["type","name","value","autofocus","form"]},R=k.toLowerCase(),ee=M[R]??[];if(E.attrs){for(const K of ee)if(j&&j.includes(K)&&K in E.attrs&&!(E.props&&K in E.props)){let H=E.attrs[K];if(H&&D(H))H=H.value,E.props[K]=H,delete E.attrs[K];else{const G=typeof H;K==="disabled"?(H===""||G==="boolean"||G==="string"&&(H==="true"||H==="false")||H==null||G==="number")&&(E.props[K]=H,delete E.attrs[K]):(H===""||G==="string"||G==="number"||G==="boolean"||H==null)&&(E.props[K]=H,delete E.attrs[K])}}}if((k.includes("-")||!!i?.__customElements?.has?.(k))&&(E.isCustomElement=!0,j&&E.attrs)){const K=new Set(["id","name","data-key","key"]);for(const H of j)if(H in E.attrs&&!(E.props&&H in E.props)){const G=H.includes("-")?st(H):H;let fe=E.attrs[H];if(E.props[G]=fe,K.has(H)||Ft(H))try{const B=X(E.attrs[H]);B===null?delete E.attrs[H]:E.attrs[H]=B}catch{delete E.attrs[H]}else delete E.attrs[H]}}}catch{}if(P&&Object.keys(P).some(M=>M==="model"||M.startsWith("model:")))try{const M=Symbol.for("cer.registry"),R=globalThis[M],ee=!!(R&&typeof R.has=="function"&&R.has(k)),I=!!(i&&(i.__customElements instanceof Set&&i.__customElements.has(k)||Array.isArray(i.__isCustomElements)&&i.__isCustomElements.includes(k)));if(!!(k.includes("-")||I||ee))for(const G of Object.keys(P)){if(G!=="model"&&!G.startsWith("model:"))continue;const fe=P[G],Me=fe.arg??(G.includes(":")?G.split(":",2)[1]:void 0),B=fe.value,pe=Me??"modelValue",L=J,z=Ze,Z=i?i._state||i:void 0;let U;typeof B=="string"&&i?U=L(Z,B):U=B,E.props[pe]=U;try{const ve=oe(pe);E.attrs||(E.attrs={}),U!=null&&(typeof U=="string"||typeof U=="number"||typeof U=="boolean")&&(E.attrs[ve]=U)}catch{}E.isCustomElement=!0;const Y=`update:${oe(pe)}`.replace(/-([a-z])/g,(ve,he)=>he.toUpperCase()),Fr="on"+Y.charAt(0).toUpperCase()+Y.slice(1);E.props[Fr]=function(ve){const he=ve.detail!==void 0?ve.detail:ve.target?ve.target.value:void 0;if(Z)if(B&&D(B)){const $e=B.value;(Array.isArray(he)&&Array.isArray($e)?JSON.stringify([...he].sort())!==JSON.stringify([...$e].sort()):he!==$e)&&(B.value=he,i?.requestRender?i.requestRender():i?._requestRender&&i._requestRender())}else{const $e=L(Z,typeof B=="string"?B:String(B));(Array.isArray(he)&&Array.isArray($e)?JSON.stringify([...he].sort())!==JSON.stringify([...$e].sort()):he!==$e)&&(z(Z,typeof B=="string"?B:String(B),he),i?.requestRender?i.requestRender():i?._requestRender&&i._requestRender())}},delete P[G]}}catch{}if(Object.keys(P).length>0&&(E.directives={...P}),T){const M=ye(f,h,v.length===1&&ze(v[0])&&v[0].tag==="#text"?typeof v[0].children=="string"?v[0].children:"":v.length?v:void 0,d),R=y.pop();R?(f=R.tag,h=R.props,d=R.key,v=R.children,v.push(M)):(g.push(M),f=null,h={},d=void 0,v=[])}else $?f?v.push(ye(k,E,void 0,void 0)):g.push(ye(k,E,void 0,void 0)):(f&&y.push({tag:f,props:h,children:v,key:d}),f=k,h=E,v=[])}else if(typeof p[3]<"u"){const k=Number(p[3]),T=t[k],$=`interp-${k}`;x(T,$)}else if(p[4]){const k=p[4],T=f?v:g,$=k.split(/({{\d+}})/);for(const b of $){if(!b)continue;const A=b.match(/^{{(\d+)}}$/);if(A){const P=Number(A[1]),j=t[P],E=`interp-${P}`;x(j,E)}else{const P=`text-${u++}`;T.push(a(b,P))}}}}const _=g.filter(k=>ze(k)&&k.tag==="#text"?typeof k.children=="string"&&k.children.trim()!=="":!0).map(k=>Et(k));if(_.length===1){const k=_[0];return o&&s&&Ct.set(s,k),k}else if(_.length>1){const k=_;return o&&s&&Ct.set(s,k),k}return ye("div",{},"","fallback-root")}function be(e,...t){const n=t[t.length-1],r=typeof n=="object"&&n&&!Array.isArray(n)?n:void 0;return wr(e,t,r)}function kr(e,t){return Ie(!e,t)}function xr(e,t){const n=!e||e.length===0;return Ie(n,t)}function $r(e,t){const n=!!(e&&e.length>0);return Ie(n,t)}function Cr(e,t,n){const r=[];return e.forEach((i,o)=>{t(i,o)&&r.push({item:i,originalIndex:o})}),r.map(({item:i,originalIndex:o},s)=>{const c=typeof i=="object"&&i!=null?i?.key??i?.id??`filtered-${o}`:`filtered-${o}`;return q(n(i,o,s),`each-where-${c}`)})}function Er(e,t){const n=e?.length??0;return n===0&&t.empty?q(t.empty,"switch-length-empty"):n===1&&t.one?q(t.one(e[0]),"switch-length-one"):t.exactly?.[n]?q(t.exactly[n](e),`switch-length-${n}`):n>1&&t.many?q(t.many(e),"switch-length-many"):q([],"switch-length-fallback")}function _r(e,t,n){const r=new Map;return e.forEach(i=>{const o=t(i);r.has(o)||r.set(o,[]),r.get(o).push(i)}),Array.from(r.entries()).map(([i,o],s)=>q(n(i,o,s),`each-group-${i}`))}function Ar(e,t,n,r){const i=n*t,o=Math.min(i+t,e.length);return e.slice(i,o).map((c,a)=>{const l=i+a,m=typeof c=="object"&&c!=null?c?.key??c?.id??`page-${l}`:`page-${l}`;return q(r(c,l,a),`each-page-${m}`)})}function Sr(e,t){return e.loading&&t.loading?q(t.loading,"promise-loading"):e.error&&t.error?q(t.error(e.error),"promise-error"):e.data!==void 0&&t.success?q(t.success(e.data),"promise-success"):t.idle?q(t.idle,"promise-idle"):q([],"promise-fallback")}function Q(e,t){const n=typeof window<"u"&&window.matchMedia?.(e)?.matches;return Ie(!!n,t)}const de={sm:"(min-width:640px)",md:"(min-width:768px)",lg:"(min-width:1024px)",xl:"(min-width:1280px)","2xl":"(min-width:1536px)",dark:"(prefers-color-scheme: dark)"},_t=["sm","md","lg","xl","2xl"],un={sm:e=>Q(de.sm,e),md:e=>Q(de.md,e),lg:e=>Q(de.lg,e),xl:e=>Q(de.xl,e),"2xl":e=>Q(de["2xl"],e),dark:e=>Q(de.dark,e),light:e=>Q("(prefers-color-scheme: light)",e),touch:e=>Q("(hover: none) and (pointer: coarse)",e),mouse:e=>Q("(hover: hover) and (pointer: fine)",e),reducedMotion:e=>Q("(prefers-reduced-motion: reduce)",e),highContrast:e=>Q("(prefers-contrast: high)",e),portrait:e=>Q("(orientation: portrait)",e),landscape:e=>Q("(orientation: landscape)",e)};function Tr(e,t){const n=[];e.includes("dark")?n.push(de.dark):e.includes("light")&&n.push("(prefers-color-scheme: light)");const r=e.filter(s=>_t.includes(s)),i=r[r.length-1];i&&i in de&&n.push(de[i]);const o=n.length>0?n.join(" and "):"all";return Q(o,t)}function jr(e){const t=[];return e.base&&t.push(q(e.base,"responsive-base")),_t.forEach(n=>{const r=e[n];r&&t.push(un[n](r))}),t}function Lr(e){const t=[];let n=null;return{case(r,i){const o=typeof r=="function"?r:s=>s===r;return t.push({condition:o,content:i}),this},when(r,i){return t.push({condition:r,content:i}),this},otherwise(r){return n=r,this},done(){for(let r=0;r<t.length;r++){const{condition:i,content:o}=t[r];if(i(e))return q(o,`switch-case-${r}`)}return q(n||[],"switch-otherwise")}}}class xe extends EventTarget{handlers={};static instance;eventCounters=new Map;static getInstance(){return xe.instance||(xe.instance=new xe),xe.instance}emit(t,n){const r=Date.now(),i=this.eventCounters.get(t);if(!i||r-i.window>1e3)this.eventCounters.set(t,{count:1,window:r});else if(i.count++,i.count>50&&i.count>100)return;this.dispatchEvent(new CustomEvent(t,{detail:n,bubbles:!1,cancelable:!0}));const o=this.handlers[t];o&&o.forEach(s=>{try{s(n)}catch(c){F(`Error in global event handler for "${t}":`,c)}})}on(t,n){return this.handlers[t]||(this.handlers[t]=new Set),this.handlers[t].add(n),()=>this.off(t,n)}off(t,n){const r=this.handlers[t];r&&r.delete(n)}offAll(t){delete this.handlers[t]}listen(t,n,r){return this.addEventListener(t,n,r),()=>this.removeEventListener(t,n)}once(t,n){return new Promise(r=>{const i=this.on(t,o=>{i(),n(o),r(o)})})}getActiveEvents(){return Object.keys(this.handlers).filter(t=>this.handlers[t]&&this.handlers[t].size>0)}clear(){this.handlers={}}getHandlerCount(t){return this.handlers[t]?.size||0}getEventStats(){const t={};for(const[n,r]of this.eventCounters.entries())t[n]={count:r.count,handlersCount:this.getHandlerCount(n)};return t}resetEventCounters(){this.eventCounters.clear()}}const Pe=xe.getInstance(),Or=(e,t)=>Pe.emit(e,t),Pr=(e,t)=>Pe.on(e,t),Mr=(e,t)=>Pe.off(e,t),Nr=(e,t)=>Pe.once(e,t),Rr=(e,t,n)=>Pe.listen(e,t,n);function At(e){let t={...e};const n=[];function r(c){n.push(c),c(t)}function i(){return t}function o(c){const a=typeof c=="function"?c(t):c;t={...t,...a},s()}function s(){n.forEach(c=>c(t))}return{subscribe:r,getState:i,setState:o}}const St=e=>e?typeof URLSearchParams>"u"?{}:Object.fromEntries(new URLSearchParams(e)):{},ue=(e,t)=>{for(const n of e){const r=[],i=n.path.replace(/:[^/]+/g,c=>(r.push(c.slice(1)),"([^/]+)")),o=new RegExp(`^${i}$`),s=t.match(o);if(s){const c={};return r.forEach((a,l)=>{c[a]=s[l+1]}),{route:n,params:c}}}return{route:null,params:{}}},Tt={};async function fn(e){if(e.component)return e.component;if(e.load){if(Tt[e.path])return Tt[e.path];try{const t=await e.load();return Tt[e.path]=t.default,t.default}catch{throw new Error(`Failed to load component for route: ${e.path}`)}}throw new Error(`No component or loader defined for route: ${e.path}`)}function dn(e){const{routes:t,base:n="",initialUrl:r}=e;let i,o,s,c,a,l,m;const y=async(h,d)=>{const u=t.find(g=>ue([g],h.path).route!==null);if(u?.beforeEnter)try{const g=await u.beforeEnter(h,d);return typeof g=="string"?(await f(g,!0),!1):g!==!1}catch(g){return F("beforeEnter error",g),!1}return!0},p=async(h,d)=>{const u=t.find(g=>ue([g],h.path).route!==null);if(u?.onEnter)try{const g=await u.onEnter(h,d);return typeof g=="string"?(await f(g,!0),!1):g!==!1}catch(g){return F("onEnter error",g),!1}return!0},v=(h,d)=>{const u=t.find(g=>ue([g],h.path).route!==null);if(u?.afterEnter)try{u.afterEnter(h,d)}catch(g){F("afterEnter error",g)}},f=async(h,d=!1)=>{try{const u={path:h.replace(n,"")||"/",query:{}},g=ue(t,u.path);if(!g)throw new Error(`No route found for ${u.path}`);const w=s.getState(),x={path:u.path,params:g.params,query:u.query};if(!await y(x,w)||!await p(x,w))return;typeof window<"u"&&typeof document<"u"&&(d?window.history.replaceState({},"",n+h):window.history.pushState({},"",n+h)),s.setState(x),v(x,w)}catch(u){F("Navigation error:",u)}};if(typeof window<"u"&&typeof document<"u"&&typeof r>"u"){i=()=>{const d=new URL(window.location.href),u=d.pathname.replace(n,"")||"/",g=St(d.search);return{path:u,query:g}},o=i();const h=ue(t,o.path);s=At({path:o.path,params:h.params,query:o.query}),c=async(d=!1)=>{const u=i();await f(u.path,d)},window.addEventListener("popstate",()=>c(!0)),a=d=>f(d,!1),l=d=>f(d,!0),m=()=>window.history.back()}else{i=()=>{const u=new URL(r||"/","http://localhost"),g=u.pathname.replace(n,"")||"/",w=St(u.search);return{path:g,query:w}},o=i();const h=ue(t,o.path);s=At({path:o.path,params:h.params,query:o.query}),c=async()=>{const u=i();await d(u.path)};const d=async u=>{try{const g={path:u.replace(n,"")||"/",query:{}},w=ue(t,g.path);if(!w)throw new Error(`No route found for ${g.path}`);const x=s.getState(),S={path:g.path,params:w.params,query:g.query},C=t.find(_=>ue([_],S.path).route!==null);if(C?.beforeEnter)try{const _=await C.beforeEnter(S,x);if(typeof _=="string"){await d(_);return}if(_===!1)return}catch{return}if(C?.onEnter)try{const _=await C.onEnter(S,x);if(typeof _=="string"){await d(_);return}if(_===!1)return}catch{return}if(s.setState(S),C?.afterEnter)try{C.afterEnter(S,x)}catch{}}catch{}};a=async u=>d(u),l=async u=>d(u),m=()=>{}}return{store:s,push:a,replace:l,back:m,subscribe:s.subscribe,matchRoute:h=>ue(t,h),getCurrent:()=>s.getState(),resolveRouteComponent:fn}}function Dr(e,t){return ue(e,t)}function Hr(e){const t=dn(e);return $t("router-view",()=>{if(!t)return be`<div>Router not initialized.</div>`;const n=it(t.getCurrent());xt(()=>{try{t&&typeof t.subscribe=="function"&&t.subscribe(i=>{try{n.value=i}catch{}})}catch{}});const r=t.matchRoute(n.value.path);return!r||!r.route?be`<div>Not found</div>`:t.resolveRouteComponent(r.route).then(i=>{if(typeof i=="string")return{tag:i,props:{},children:[]};if(typeof i=="function"){const o=i();return(o instanceof Promise?o:Promise.resolve(o)).then(c=>typeof c=="string"?{tag:c,props:{},children:[]}:c)}return be`<div>Invalid route component</div>`}).catch(()=>be`<div>Invalid route component</div>`)}),$t("router-link",()=>{const n=cn({to:"",tag:"a",replace:!1,exact:!1,activeClass:"active",exactActiveClass:"exact-active",ariaCurrentValue:"page",disabled:!1,external:!1,class:"",style:""}),r=it(t.getCurrent());xt(()=>{try{t&&typeof t.subscribe=="function"&&t.subscribe(f=>{try{r.value=f}catch{}})}catch{}});const i=ge(()=>r.value.path===n.to),o=ge(()=>n.exact?i.value:r.value&&typeof r.value.path=="string"?r.value.path.startsWith(n.to):!1),s=ge(()=>i.value?`aria-current="${n.ariaCurrentValue}"`:""),c=(n.class||"").split(/\s+/).filter(Boolean),a={};for(const f of c)a[f]=!0;const l=ge(()=>({...a,[n.activeClass||"active"]:o.value,[n.exactActiveClass||"exact-active"]:i.value})),m=ge(()=>n.tag==="button"),y=ge(()=>n.disabled?m.value?'disabled aria-disabled="true" tabindex="-1"':'aria-disabled="true" tabindex="-1"':""),p=ge(()=>n.external&&(n.tag==="a"||!n.tag)?'target="_blank" rel="noopener noreferrer"':""),v=f=>{if(n.disabled){f.preventDefault();return}n.external&&(n.tag==="a"||!n.tag)||(f.preventDefault(),n.replace?t.replace(n.to):t.push(n.to))};return be`
129
- ${on().when(m.value,be`
128
+ `);a=Qt(a);let l=r;l||(l=new CSSStyleSheet),(l.cssRules.length===0||l.cssRules.length>0&&Array.from(l.cssRules).map(y=>y.cssText).join("")!==a)&&l.replaceSync(a),e.adoptedStyleSheets=[en(),rt(),l],i(l)}let I=null;function un(e){I=e}function $t(){I=null}function hr(){if(!I)throw new Error("useEmit must be called during component render");const e=I.emit;return(t,n)=>e(t,n)}function Le(e){e._hookCallbacks||Object.defineProperty(e,"_hookCallbacks",{value:{},writable:!0,enumerable:!1,configurable:!1})}function Ct(e){if(!I)throw new Error("useOnConnected must be called during component render");Le(I),I._hookCallbacks.onConnected=e}function Et(e){if(!I)throw new Error("useOnDisconnected must be called during component render");Le(I),I._hookCallbacks.onDisconnected=e}function gr(e){if(!I)throw new Error("useOnAttributeChanged must be called during component render");Le(I),I._hookCallbacks.onAttributeChanged=e}function mr(e){if(!I)throw new Error("useOnError must be called during component render");Le(I),I._hookCallbacks.onError=e}function fn(e){if(!I)throw new Error("useProps must be called during component render");Le(I),I._hookCallbacks.props={...I._hookCallbacks.props||{},...e};const t=I;try{const r=Object.keys(e||{});for(const i of r){if(typeof i!="string"||i.startsWith("_"))continue;const o=Object.getOwnPropertyDescriptor(t,i);if(!(o&&!o.configurable))try{let c=Object.prototype.hasOwnProperty.call(t,i)?t[i]:void 0;Object.defineProperty(t,i,{configurable:!0,enumerable:!0,get(){try{const a=t&&t._host;if(a){const l=ie(i),m=a.getAttribute(l);if(m!==null){const y=typeof e[i];return y==="boolean"?m===""||m==="true":y==="number"?Number(m):m}if(typeof a[i]<"u"){const y=a[i];if(N(y)||y&&typeof y=="object"&&"value"in y&&!(y instanceof Node))return y.value;const p=typeof e[i];if(!(p==="string"&&y&&typeof y=="object"))return p==="boolean"&&typeof y=="string"?y===""||y==="true":y}}}catch{}return c},set(a){c=a}})}catch{}}}catch{}return new Proxy({},{get(r,i){if(typeof i!="string")return;const o=e[i];try{const c=t&&t._host;if(c){if(c instanceof HTMLElement||typeof c.getAttribute=="function"&&typeof c.hasAttribute=="function"){const l=i.replace(/([A-Z])/g,"-$1").toLowerCase(),m=c.getAttribute(l);if(m!==null)return typeof o=="boolean"?m===""||m==="true":typeof o=="number"?Number(m):m}const a=c[i];if(typeof a<"u"&&a!==""){const l=a&&typeof a=="object"&&"value"in a&&!(a instanceof Node);if(!(typeof o=="string"&&a&&typeof a=="object"&&!l&&!N(a)))return typeof o=="boolean"&&o===!1&&a===""?o:N(a)||l?a.value:typeof o=="boolean"&&typeof a=="string"?a==="true"||a!==""&&a!=="false":typeof o=="number"&&typeof a=="string"&&!Number.isNaN(Number(a))?Number(a):a}}}catch{}const s=t[i];return typeof o=="boolean"&&s===""?o===!1?o:!0:N(s)||s&&typeof s=="object"&&"value"in s&&!(s instanceof Node)?s.value:s!=null&&s!==""?typeof o=="boolean"&&typeof s=="string"?s==="true":typeof o=="number"&&typeof s=="string"&&!Number.isNaN(Number(s))?Number(s):s:o},has(r,i){return typeof i=="string"&&(i in t||i in e)},ownKeys(){return Array.from(new Set([...Object.keys(e),...Object.keys(t||{})]))},getOwnPropertyDescriptor(){return{configurable:!0,enumerable:!0}}})}function dn(e){if(!I)throw new Error("useStyle must be called during component render");Le(I);try{const t=e();Object.defineProperty(I,"_computedStyle",{value:t,writable:!0,enumerable:!1,configurable:!0})}catch(t){K("Error in useStyle callback:",t),Object.defineProperty(I,"_computedStyle",{value:"",writable:!0,enumerable:!1,configurable:!0})}}const Oe=new Map,pn=Symbol.for("cer.registry");if(typeof window<"u"){const e=globalThis;e[pn]||(e[pn]=Oe)}function yr(e,t){if(!t.render)throw new Error("Component must have a render function");return typeof window>"u"?class{constructor(){}}:class extends HTMLElement{context;_refs={};_listeners=[];_watchers=new Map;_renderTimeoutId=null;_mounted=!1;_hasError=!1;_initializing=!0;_componentId;_styleSheet=null;_lastHtmlStringForJitCSS="";get lastHtmlStringForJitCSS(){return this._lastHtmlStringForJitCSS}get isLoading(){return this._templateLoading}get lastError(){return this._templateError}_cfg;_lastRenderTime=0;_renderCount=0;_templateLoading=!1;_templateError=null;constructor(){super(),this.attachShadow({mode:"open"}),this._cfg=Oe.get(e)||t,this._componentId=`${e}-${Math.random().toString(36).substr(2,9)}`;const n=this._initContext(t),r=(o,s,c)=>{Object.defineProperty(o,s,{value:c,writable:!1,enumerable:!1,configurable:!1})};r(n,"refs",this._refs),r(n,"requestRender",()=>this.requestRender()),r(n,"_requestRender",()=>this._requestRender()),r(n,"_componentId",this._componentId),r(n,"_triggerWatchers",(o,s)=>this._triggerWatchers(o,s)),this.context=n,M(()=>{r(n,"_host",this)}),r(this.context,"emit",(o,s,c)=>{const a={detail:s,bubbles:!0,composed:!0,...c||{}},l=new CustomEvent(o,a);this.dispatchEvent(l);const m=o.indexOf(":");if(m>0){const y=o.substring(0,m),p=o.substring(m+1),v=p.includes("-")?`${y}:${p.split("-").map((f,h)=>h===0?f:f.charAt(0).toUpperCase()+f.slice(1)).join("")}`:`${y}:${p.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase()}`;v!==o&&M(()=>{this.dispatchEvent(new CustomEvent(v,a))})}return!l.defaultPrevented});const i=Oe.get(e)||t;for(const o in i){const s=i[o];typeof s=="function"&&(this.context[o]=(...c)=>s(...c,this.context))}if(i.props)for(const o in i.props){let s=this[o];Object.defineProperty(this,o,{get(){return s},set(c){const a=s;s=c,this.context[o]=c,this._initializing||(this._applyProps(i),a!==c&&this._requestRender())},enumerable:!0,configurable:!0})}this._initializing=!1,this._initWatchers(i),this._applyProps(i),this._render(i)}connectedCallback(){this._runLogicWithinErrorBoundary(t,()=>{this._applyProps(t),this._requestRender(),jn(t,this.context,this._mounted,n=>{this._mounted=n})})}disconnectedCallback(){this._runLogicWithinErrorBoundary(t,()=>{Ln(t,this.context,this._listeners,()=>{this._listeners=[]},()=>{this._watchers.clear()},n=>{this._templateLoading=n},n=>{this._templateError=n},n=>{this._mounted=n})})}attributeChangedCallback(n,r,i){this._runLogicWithinErrorBoundary(t,()=>{this._applyProps(t),r!==i&&this._requestRender(),On(t,n,r,i,this.context)})}static get observedAttributes(){return t.props?Object.keys(t.props).map(ie):[]}_render(n){this._runLogicWithinErrorBoundary(n,()=>{fr(this.shadowRoot,n,this.context,this._refs,r=>{this._lastHtmlStringForJitCSS=r,typeof this.onHtmlStringUpdate=="function"&&this.onHtmlStringUpdate(r)},r=>{this._templateLoading=r,typeof this.onLoadingStateChange=="function"&&this.onLoadingStateChange(r)},r=>{this._templateError=r,typeof this.onErrorStateChange=="function"&&this.onErrorStateChange(r)},r=>this._applyStyle(n,r))})}requestRender(){this._requestRender()}_requestRender(){this._runLogicWithinErrorBoundary(this._cfg,()=>{Ee(()=>{dr(()=>this._render(this._cfg),this._lastRenderTime,this._renderCount,n=>{this._lastRenderTime=n},n=>{this._renderCount=n},this._renderTimeoutId,n=>{this._renderTimeoutId=n})},this._componentId)})}_applyStyle(n,r){this._runLogicWithinErrorBoundary(n,()=>{pr(this.shadowRoot,this.context,r,this._styleSheet,i=>{this._styleSheet=i})})}_runLogicWithinErrorBoundary(n,r){this._hasError&&(this._hasError=!1);try{r()}catch(i){this._hasError=!0;try{const o=n&&n.tag||this.tagName?.toLowerCase?.()||"<unknown>",s=this._componentId||"<unknown-id>",c={};if(n&&n.props)for(const a of Object.keys(n.props))try{const l=this.context[a];l instanceof Node?c[a]=`[DOM Node: ${l.nodeName}]`:typeof l=="object"&&l!==null?c[a]=Object.keys(l).length>5?`[object(${Object.keys(l).length} keys)]`:l:c[a]=l}catch{c[a]="[unreadable]"}F(`Error rendering component <${o}> (id=${s}):`,i),F("Component props snapshot:",c),K("Common causes: accessing properties of null/undefined inside template interpolations; expensive or throwing expressions inside templates that evaluate eagerly. Fixes: use optional chaining (obj?.prop), guard with ternary, or use the runtime lazy overload: when(cond, () => html`...`).")}catch{}n.onError&&n.onError(i,this.context)}}_initContext(n){try{let r=function(o,s=""){if(Array.isArray(o))return new Proxy(o,{get(c,a,l){const m=Reflect.get(c,a,l);return typeof m=="function"&&typeof a=="string"&&["push","pop","shift","unshift","splice","sort","reverse"].includes(a)?function(...p){const v=m.apply(c,p);if(!i._initializing){const f=s||"root";i._triggerWatchers(f,c),Ee(()=>i._render(n),i._componentId)}return v}:m},set(c,a,l){if(c[a]=l,!i._initializing){const m=s?`${s}.${String(a)}`:String(a);i._triggerWatchers(m,l),Ee(()=>i._render(n),i._componentId)}return!0},deleteProperty(c,a){if(delete c[a],!i._initializing){const l=s?`${s}.${String(a)}`:String(a);i._triggerWatchers(l,void 0),Ee(()=>i._render(n),i._componentId)}return!0}});if(o&&typeof o=="object"){if(N(o))return o;for(const c in o){const a=s?`${s}.${c}`:c;o[c]=r(o[c],a)}return new Proxy(o,{set(c,a,l){const m=s?`${s}.${String(a)}`:String(a);return c[a]=r(l,m),i._initializing||(i._triggerWatchers(m,c[a]),Ee(()=>i._render(n),i._componentId)),!0},get(c,a,l){return Reflect.get(c,a,l)}})}return o};const i=this;return r({...n.props?Object.fromEntries(Object.entries(n.props).map(([o,s])=>[o,s.default])):{}})}catch{return{}}}_initWatchers(n){this._runLogicWithinErrorBoundary(n,()=>{_n(this.context,this._watchers,{})})}_triggerWatchers(n,r){Sn(this.context,this._watchers,n,r)}_applyProps(n){this._runLogicWithinErrorBoundary(n,()=>{try{Tn(this,n,this.context)}catch(r){this._hasError=!0,n.onError&&n.onError(r,this.context)}})}}}function _t(e,t){let n=ie(e);n.includes("-")||(n=`cer-${n}`);let r={};const i={props:{},onConnected:o=>{r.onConnected&&r.onConnected()},onDisconnected:o=>{r.onDisconnected&&r.onDisconnected()},onAttributeChanged:(o,s,c,a)=>{r.onAttributeChanged&&r.onAttributeChanged(o,s,c)},onError:(o,s)=>{r.onError&&o&&r.onError(o)},render:o=>{const s=o._componentId||`${n}-${Math.random().toString(36).substr(2,9)}`;te.setCurrentComponent(s,()=>{o.requestRender&&o.requestRender()});try{un(o);let c;try{c=t()}catch(a){try{const l=o?._hookCallbacks;if(l&&typeof l.onError=="function")try{l.onError(a)}catch{}}catch{}throw a}if(o._hookCallbacks){const a=o._hookCallbacks;if(a.onConnected&&(r.onConnected=a.onConnected),a.onDisconnected&&(r.onDisconnected=a.onDisconnected),a.onAttributeChanged&&(r.onAttributeChanged=a.onAttributeChanged),a.onError&&(r.onError=a.onError),a.style&&(o._styleCallback=a.style),a.props){const l=a.props;i.props=Object.fromEntries(Object.entries(l).map(([m,y])=>[m,{type:typeof y=="boolean"?Boolean:typeof y=="number"?Number:typeof y=="string"?String:Function,default:y}])),Oe.set(n,i)}}return c}finally{$t(),te.clearCurrentComponent()}}};if(Oe.set(n,i),typeof window<"u"){try{const o={_hookCallbacks:{},requestRender:()=>{}};un(o);try{t()}catch(s){try{const c=o?._hookCallbacks;if(c&&typeof c.onError=="function")try{c.onError(s)}catch{}F(`Error during component discovery render <${n}>:`,s),K("Error occurred during initial component discovery render. Consider guarding expensive expressions or using lazy factories for directives like when().")}catch{}throw $t(),s}if($t(),o._hookCallbacks?.props){const s=o._hookCallbacks.props;i.props=Object.fromEntries(Object.entries(s).map(([c,a])=>[c,{type:typeof a=="boolean"?Boolean:typeof a=="number"?Number:typeof a=="string"?String:Function,default:a}])),Oe.set(n,i)}}catch{}customElements.get(n)||customElements.define(n,yr(n,i))}}class br{map=new Map;maxSize;constructor(t){this.maxSize=t}get(t){const n=this.map.get(t);if(n!==void 0)return this.map.delete(t),this.map.set(t,n),n}set(t,n){if(this.map.delete(t),this.map.set(t,n),this.map.size>this.maxSize){const r=this.map.keys().next().value;r!==void 0&&this.map.delete(r)}}has(t){return this.map.has(t)}clear(){this.map.clear()}}const St=new br(500);function vr(e,t){if(e==null){K(`⚠️ Event handler for '@${t}' is ${e}. This will prevent the event from working. Use a function reference instead: @${t}="\${functionName}"`);return}typeof e!="function"&&K(`🚨 Potential infinite loop detected! Event handler for '@${t}' appears to be the result of a function call (${typeof e}) instead of a function reference. Change @${t}="\${functionName()}" to @${t}="\${functionName}" to pass the function reference instead of calling it immediately.`),e===void 0&&typeof e!="function"&&K(`💡 Tip: If your event handler function returns undefined, make sure you're passing the function reference, not calling it. Use @${t}="\${fn}" not @${t}="\${fn()}"`)}function me(e,t={},n,r){const i=r??t.key;return{tag:e,key:i,props:t,children:n}}function Be(e){return!!e&&typeof e=="object"&&(e.type==="AnchorBlock"||e.tag==="#anchor")}function ze(e){return typeof e=="object"&&e!==null&&"tag"in e&&!Be(e)}function wr(e,t){return e.key!=null?e:{...e,key:t}}function kr(e,t=[],n={}){const r={},i={},o={},s=[],c=/([:@#]?)([a-zA-Z0-9-:\.]+)(?:=("([^"\\]*(\\.[^"\\]*)*)"|'([^'\\]*(\\.[^'\\]*)*)'))?/g;let a;for(;a=c.exec(e);){const l=a[1],m=a[2],y=(a[4]||a[6])??"",p=a[3]===void 0&&a[6]===void 0,v=y.match(/^{{(\d+)}}$/);let f=p?!0:v?t[Number(v[1])]??null:y;v||(f==="true"?f=!0:f==="false"?f=!1:f==="null"?f=null:isNaN(Number(f))||(f=Number(f)));const h=["model","bind","show","class","style","ref","when"];if(l===":"){const[d,u]=m.split(":"),[g,...w]=d.split(".");if(h.includes(g)){const x=[...w],S=g==="model"&&u?`model:${u}`:g;o[S]={value:f,modifiers:x,arg:u}}else if(m==="disabled"){let x=f;x&&N(x)&&(x=x.value);const S=typeof x;if(x===""||S==="boolean"||S==="string"&&(x==="true"||x==="false")||x==null||S==="number")r[m]=x;else{let k=f;k&&N(k)&&(k=k.value),i[m]=k}s.push(m)}else{let x=f;x&&N(x)&&(x=x.value),i[m]=x,s.push(m)}}else if(l==="@"){const[d,...u]=m.split("."),g=u;vr(f,d);const w=typeof f=="function"?f:typeof n[f]=="function"?n[f]:void 0;if(w){const x=C=>{if(g.includes("prevent")&&C.preventDefault(),g.includes("stop")&&C.stopPropagation(),!(g.includes("self")&&C.target!==C.currentTarget))return g.includes("once")&&C.currentTarget?.removeEventListener(d,x),w(C)},S="on"+d.charAt(0).toUpperCase()+d.slice(1);r[S]=x}}else m==="ref"?r.ref=f:i[m]=f}return{props:r,attrs:i,directives:o,bound:s}}function At(e){if(!ze(e)||Be(e))return e;const t=e.props?.directives;if(t&&t.when){const n=t.when.value,r=N(n)?n.value:n,{when:i,...o}=t,s={...e.props};Object.keys(o).length>0?s.directives=o:delete s.directives;const c={...e,props:s};return Array.isArray(c.children)&&(c.children=c.children.map(l=>typeof l=="object"&&l!==null?At(l):l)),{tag:"#anchor",key:e.key!=null?`when-${e.key}`:`when-${e.tag}`,children:r?[c]:[]}}if(Array.isArray(e.children)){const n=e.children.map(r=>typeof r=="object"&&r!==null?At(r):r);return{...e,children:n}}return e}function xr(e,t,n){const r=We.length>0?We[We.length-1]:void 0,i=n??r,o=!n&&t.length===0,s=o?e.join("<!--TEMPLATE_DELIM-->"):null;if(o&&s){const k=St.get(s);if(k)return k}function c(k,T){return me("#text",{},k,T)}function a(k,T){const $=typeof k=="string"?ae(k):k;return me("#text",{},$,T)}let l="";for(let k=0;k<e.length;k++)l+=e[k],k<t.length&&(l+=`{{${k}}}`);const m=/<!--[\s\S]*?-->|<\/?([a-zA-Z0-9-]+)((?:\s+[^\s=>/]+(?:\s*=\s*(?:"(?:\\.|[^"])*"|'(?:\\.|[^'])*'|[^\s>]+))?)*)\s*\/?>|{{(\d+)}}|([^<]+)/g,y=[];let p,v=[],f=null,h={},d,u=0,g=[];function w(k){!k||typeof k!="object"||Be(k)||(k.props||k.attrs?(k.props&&(h.props||(h.props={}),Object.assign(h.props,k.props)),k.attrs&&(h.attrs||(h.attrs={}),Object.keys(k.attrs).forEach(T=>{if(T==="style"&&h.attrs.style){const $=h.attrs.style.replace(/;?\s*$/,""),b=k.attrs.style.replace(/^;?\s*/,"");h.attrs.style=$+"; "+b}else if(T==="class"&&h.attrs.class){const $=h.attrs.class.trim().split(/\s+/).filter(Boolean),b=k.attrs.class.trim().split(/\s+/).filter(Boolean),E=[...new Set([...$,...b])];h.attrs.class=E.join(" ")}else h.attrs[T]=k.attrs[T]}))):(h.props||(h.props={}),Object.assign(h.props,k)))}function x(k,T){const $=f?v:g;if(Be(k)){const b=k.key??T;let E=k.children;$.push({...k,key:b,children:E});return}if(ze(k)){$.push(wr(k,void 0));return}if(Array.isArray(k)){if(k.length===0)return;for(let b=0;b<k.length;b++){const E=k[b];Be(E)||ze(E)||Array.isArray(E)?x(E,`${T}-${b}`):E!==null&&typeof E=="object"?Bt(E)?$.push(me("#raw",{},E.__rawHTML,`${T}-${b}`)):w(E):$.push(c(String(E),`${T}-${b}`))}return}if(k!==null&&typeof k=="object"){if(Bt(k)){const b=k.__rawHTML??"";$.push(me("#raw",{},b,T));return}w(k);return}$.push(c(String(k),T))}const S=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]);for(;p=m.exec(l);)if(!(p[0].startsWith("<!--")&&p[0].endsWith("-->"))){if(p[1]){const k=p[1],T=p[0][1]==="/",$=p[0][p[0].length-2]==="/"||S.has(k),{props:b,attrs:E,directives:P,bound:j}=kr(p[2]||"",t,i),A={props:{},attrs:{}};for(const R in b)A.props[R]=b[R];for(const R in E)A.attrs[R]=E[R];A.attrs&&Object.prototype.hasOwnProperty.call(A.attrs,"key")&&!(A.props&&Object.prototype.hasOwnProperty.call(A.props,"key"))&&M(()=>{A.props.key=A.attrs.key});try{const R={input:["value","checked","readonly","required","placeholder","maxlength","minlength"],textarea:["value","readonly","required","placeholder","maxlength","minlength"],select:["value","required","multiple"],option:["selected","value"],video:["muted","autoplay","controls","loop","playsinline"],audio:["muted","autoplay","controls","loop"],img:["src","alt","width","height"],button:["type","name","value","autofocus","form"]},D=k.toLowerCase(),he=R[D]??[];if(A.attrs){for(const V of he)if(j&&j.includes(V)&&V in A.attrs&&!(A.props&&V in A.props)){let H=A.attrs[V];if(H&&N(H))H=H.value,A.props[V]=H,delete A.attrs[V];else{const G=typeof H;V==="disabled"?(H===""||G==="boolean"||G==="string"&&(H==="true"||H==="false")||H==null||G==="number")&&(A.props[V]=H,delete A.attrs[V]):(H===""||G==="string"||G==="number"||G==="boolean"||H==null)&&(A.props[V]=H,delete A.attrs[V])}}}if((k.includes("-")||!!i?.__customElements?.has?.(k))&&(A.isCustomElement=!0,j&&A.attrs)){const V=new Set(["id","name","data-key","key"]);for(const H of j)if(H in A.attrs&&!(A.props&&H in A.props)){const G=H.includes("-")?at(H):H;let le=A.attrs[H];if(A.props[G]=le,V.has(H)||zt(H))try{const W=Y(A.attrs[H]);W===null?delete A.attrs[H]:A.attrs[H]=W}catch{delete A.attrs[H]}else delete A.attrs[H]}}}catch{}if(P&&Object.keys(P).some(R=>R==="model"||R.startsWith("model:")))try{const R=Symbol.for("cer.registry"),D=globalThis[R],he=!!(D&&typeof D.has=="function"&&D.has(k)),J=!!(i&&(i.__customElements instanceof Set&&i.__customElements.has(k)||Array.isArray(i.__isCustomElements)&&i.__isCustomElements.includes(k)));if(!!(k.includes("-")||J||he))for(const G of Object.keys(P)){if(G!=="model"&&!G.startsWith("model:"))continue;const le=P[G],Me=le.arg??(G.includes(":")?G.split(":",2)[1]:void 0),W=le.value,fe=Me??"modelValue",L=X,B=Ze,Z=i?i._state||i:void 0;let z;typeof W=="string"&&i?z=L(Z,W):z=W,A.props[fe]=z;try{const ve=ie(fe);A.attrs||(A.attrs={}),z!=null&&(typeof z=="string"||typeof z=="number"||typeof z=="boolean")&&(A.attrs[ve]=z)}catch{}A.isCustomElement=!0;const Q=`update:${ie(fe)}`.replace(/-([a-z])/g,(ve,de)=>de.toUpperCase()),Wr="on"+Q.charAt(0).toUpperCase()+Q.slice(1);A.props[Wr]=function(ve){const de=ve.detail!==void 0?ve.detail:ve.target?ve.target.value:void 0;if(Z)if(W&&N(W)){const $e=W.value;(Array.isArray(de)&&Array.isArray($e)?JSON.stringify([...de].sort())!==JSON.stringify([...$e].sort()):de!==$e)&&(W.value=de,i?.requestRender?i.requestRender():i?._requestRender&&i._requestRender())}else{const $e=L(Z,typeof W=="string"?W:String(W));(Array.isArray(de)&&Array.isArray($e)?JSON.stringify([...de].sort())!==JSON.stringify([...$e].sort()):de!==$e)&&(B(Z,typeof W=="string"?W:String(W),de),i?.requestRender?i.requestRender():i?._requestRender&&i._requestRender())}},delete P[G]}}catch{}if(Object.keys(P).length>0&&(A.directives={...P}),T){const R=me(f,h,v.length===1&&ze(v[0])&&v[0].tag==="#text"?typeof v[0].children=="string"?v[0].children:"":v.length?v:void 0,d),D=y.pop();D?(f=D.tag,h=D.props,d=D.key,v=D.children,v.push(R)):(g.push(R),f=null,h={},d=void 0,v=[])}else $?f?v.push(me(k,A,void 0,void 0)):g.push(me(k,A,void 0,void 0)):(f&&y.push({tag:f,props:h,children:v,key:d}),f=k,h=A,v=[])}else if(typeof p[3]<"u"){const k=Number(p[3]),T=t[k],$=`interp-${k}`;x(T,$)}else if(p[4]){const k=p[4],T=f?v:g,$=k.split(/({{\d+}})/);for(const b of $){if(!b)continue;const E=b.match(/^{{(\d+)}}$/);if(E){const P=Number(E[1]),j=t[P],A=`interp-${P}`;x(j,A)}else{const P=`text-${u++}`;T.push(a(b,P))}}}}const _=g.filter(k=>ze(k)&&k.tag==="#text"?typeof k.children=="string"&&k.children.trim()!=="":!0).map(k=>At(k));if(_.length===1){const k=_[0];return o&&s&&St.set(s,k),k}else if(_.length>1){const k=_;return o&&s&&St.set(s,k),k}return me("div",{},"","fallback-root")}function ye(e,...t){const n=t[t.length-1],r=typeof n=="object"&&n&&!Array.isArray(n)?n:void 0;return xr(e,t,r)}function $r(e,t){return Ie(!e,t)}function Cr(e,t){const n=!e||e.length===0;return Ie(n,t)}function Er(e,t){const n=!!(e&&e.length>0);return Ie(n,t)}function _r(e,t,n){const r=[];return e.forEach((i,o)=>{t(i,o)&&r.push({item:i,originalIndex:o})}),r.map(({item:i,originalIndex:o},s)=>{const c=typeof i=="object"&&i!=null?i?.key??i?.id??`filtered-${o}`:`filtered-${o}`;return U(n(i,o,s),`each-where-${c}`)})}function Sr(e,t){const n=e?.length??0;return n===0&&t.empty?U(t.empty,"switch-length-empty"):n===1&&t.one?U(t.one(e[0]),"switch-length-one"):t.exactly?.[n]?U(t.exactly[n](e),`switch-length-${n}`):n>1&&t.many?U(t.many(e),"switch-length-many"):U([],"switch-length-fallback")}function Ar(e,t,n){const r=new Map;return e.forEach(i=>{const o=t(i);r.has(o)||r.set(o,[]),r.get(o).push(i)}),Array.from(r.entries()).map(([i,o],s)=>U(n(i,o,s),`each-group-${i}`))}function Tr(e,t,n,r){const i=n*t,o=Math.min(i+t,e.length);return e.slice(i,o).map((c,a)=>{const l=i+a,m=typeof c=="object"&&c!=null?c?.key??c?.id??`page-${l}`:`page-${l}`;return U(r(c,l,a),`each-page-${m}`)})}function jr(e,t){return e.loading&&t.loading?U(t.loading,"promise-loading"):e.error&&t.error?U(t.error(e.error),"promise-error"):e.data!==void 0&&t.success?U(t.success(e.data),"promise-success"):t.idle?U(t.idle,"promise-idle"):U([],"promise-fallback")}function ee(e,t){const n=typeof window<"u"&&window.matchMedia?.(e)?.matches;return Ie(!!n,t)}const ue={sm:"(min-width:640px)",md:"(min-width:768px)",lg:"(min-width:1024px)",xl:"(min-width:1280px)","2xl":"(min-width:1536px)",dark:"(prefers-color-scheme: dark)"},Tt=["sm","md","lg","xl","2xl"],hn={sm:e=>ee(ue.sm,e),md:e=>ee(ue.md,e),lg:e=>ee(ue.lg,e),xl:e=>ee(ue.xl,e),"2xl":e=>ee(ue["2xl"],e),dark:e=>ee(ue.dark,e),light:e=>ee("(prefers-color-scheme: light)",e),touch:e=>ee("(hover: none) and (pointer: coarse)",e),mouse:e=>ee("(hover: hover) and (pointer: fine)",e),reducedMotion:e=>ee("(prefers-reduced-motion: reduce)",e),highContrast:e=>ee("(prefers-contrast: high)",e),portrait:e=>ee("(orientation: portrait)",e),landscape:e=>ee("(orientation: landscape)",e)};function Lr(e,t){const n=[];e.includes("dark")?n.push(ue.dark):e.includes("light")&&n.push("(prefers-color-scheme: light)");const r=e.filter(s=>Tt.includes(s)),i=r[r.length-1];i&&i in ue&&n.push(ue[i]);const o=n.length>0?n.join(" and "):"all";return ee(o,t)}function Or(e){const t=[];return e.base&&t.push(U(e.base,"responsive-base")),Tt.forEach(n=>{const r=e[n];r&&t.push(hn[n](r))}),t}function Pr(e){const t=[];let n=null;return{case(r,i){const o=typeof r=="function"?r:s=>s===r;return t.push({condition:o,content:i}),this},when(r,i){return t.push({condition:r,content:i}),this},otherwise(r){return n=r,this},done(){for(let r=0;r<t.length;r++){const{condition:i,content:o}=t[r];if(i(e))return U(o,`switch-case-${r}`)}return U(n||[],"switch-otherwise")}}}class xe extends EventTarget{handlers={};static instance;eventCounters=new Map;static getInstance(){return xe.instance||(xe.instance=new xe),xe.instance}emit(t,n){const r=Date.now(),i=this.eventCounters.get(t);if(!i||r-i.window>1e3)this.eventCounters.set(t,{count:1,window:r});else if(i.count++,i.count>50&&i.count>100)return;this.dispatchEvent(new CustomEvent(t,{detail:n,bubbles:!1,cancelable:!0}));const o=this.handlers[t];o&&o.forEach(s=>{try{s(n)}catch(c){F(`Error in global event handler for "${t}":`,c)}})}on(t,n){return this.handlers[t]||(this.handlers[t]=new Set),this.handlers[t].add(n),()=>this.off(t,n)}off(t,n){const r=this.handlers[t];r&&r.delete(n)}offAll(t){delete this.handlers[t]}listen(t,n,r){return this.addEventListener(t,n,r),()=>this.removeEventListener(t,n)}once(t,n){return new Promise(r=>{const i=this.on(t,o=>{i(),n(o),r(o)})})}getActiveEvents(){return Object.keys(this.handlers).filter(t=>this.handlers[t]&&this.handlers[t].size>0)}clear(){this.handlers={}}getHandlerCount(t){return this.handlers[t]?.size||0}getEventStats(){const t={};for(const[n,r]of this.eventCounters.entries())t[n]={count:r.count,handlersCount:this.getHandlerCount(n)};return t}resetEventCounters(){this.eventCounters.clear()}}const Pe=xe.getInstance(),Mr=(e,t)=>Pe.emit(e,t),Rr=(e,t)=>Pe.on(e,t),Nr=(e,t)=>Pe.off(e,t),Dr=(e,t)=>Pe.once(e,t),Hr=(e,t,n)=>Pe.listen(e,t,n);function jt(e){let t={...e};const n=[];function r(c){return n.push(c),c(t),()=>{const a=n.indexOf(c);a!==-1&&n.splice(a,1)}}function i(){return t}function o(c){const a=typeof c=="function"?c(t):c;t={...t,...a},s()}function s(){n.forEach(c=>c(t))}return{subscribe:r,getState:i,setState:o}}const Lt=e=>e?typeof URLSearchParams>"u"?{}:Object.fromEntries(new URLSearchParams(e)):{},be=(e,t)=>{for(const n of e){const r=[],i=n.path.replace(/:[^/]+/g,c=>(r.push(c.slice(1)),"([^/]+)")),o=new RegExp(`^${i}$`),s=t.match(o);if(s){const c={};return r.forEach((a,l)=>{c[a]=s[l+1]}),{route:n,params:c}}}return{route:null,params:{}}};function it(e,t){for(const n of e)if(be([n],t).route!==null)return n;return null}const Ot={};async function gn(e){if(e.component)return e.component;if(e.load){if(Ot[e.path])return Ot[e.path];try{const t=await e.load();return Ot[e.path]=t.default,t.default}catch{throw new Error(`Failed to load component for route: ${e.path}`)}}throw new Error(`No component or loader defined for route: ${e.path}`)}function mn(e){const{routes:t,base:n="",initialUrl:r}=e;let i,o,s,c,a,l,m;const y=async(h,d)=>{const u=it(t,h.path);if(!u||!u.beforeEnter)return!0;try{const g=await u.beforeEnter(h,d);return typeof g=="string"?(await f(g,!0),!1):g!==!1}catch(g){return F("beforeEnter error",g),!1}},p=async(h,d)=>{const u=it(t,h.path);if(!u||!u.onEnter)return!0;try{const g=await u.onEnter(h,d);return typeof g=="string"?(await f(g,!0),!1):g!==!1}catch(g){return F("onEnter error",g),!1}},v=(h,d)=>{const u=it(t,h.path);if(!(!u||!u.afterEnter))try{u.afterEnter(h,d)}catch(g){F("afterEnter error",g)}},f=async(h,d=!1)=>{try{const u={path:h.replace(n,"")||"/",query:{}},g=be(t,u.path);if(!g)throw new Error(`No route found for ${u.path}`);const w=s.getState(),x={path:u.path,params:g.params,query:u.query};if(!await y(x,w)||!await p(x,w))return;typeof window<"u"&&typeof document<"u"&&(d?window.history.replaceState({},"",n+h):window.history.pushState({},"",n+h)),s.setState(x),v(x,w)}catch(u){F("Navigation error:",u)}};if(typeof window<"u"&&typeof document<"u"&&typeof r>"u"){i=()=>{const d=new URL(window.location.href),u=d.pathname.replace(n,"")||"/",g=Lt(d.search);return{path:u,query:g}},o=i();const h=be(t,o.path);s=jt({path:o.path,params:h.params,query:o.query}),c=async(d=!1)=>{const u=i();await f(u.path,d)},window.addEventListener("popstate",()=>c(!0)),a=d=>f(d,!1),l=d=>f(d,!0),m=()=>window.history.back()}else{i=()=>{const u=new URL(r||"/","http://localhost"),g=u.pathname.replace(n,"")||"/",w=Lt(u.search);return{path:g,query:w}},o=i();const h=be(t,o.path);s=jt({path:o.path,params:h.params,query:o.query}),c=async()=>{const u=i();await d(u.path)};const d=async u=>{try{const g={path:u.replace(n,"")||"/",query:{}},w=be(t,g.path);if(!w)throw new Error(`No route found for ${g.path}`);const x=s.getState(),S={path:g.path,params:w.params,query:g.query},C=it(t,S.path);if(C?.beforeEnter)try{const _=await C.beforeEnter(S,x);if(typeof _=="string"){await d(_);return}if(_===!1)return}catch{return}if(C?.onEnter)try{const _=await C.onEnter(S,x);if(typeof _=="string"){await d(_);return}if(_===!1)return}catch{return}if(s.setState(S),C?.afterEnter)try{C.afterEnter(S,x)}catch{}}catch{}};a=async u=>d(u),l=async u=>d(u),m=()=>{}}return{store:s,push:a,replace:l,back:m,subscribe:s.subscribe,matchRoute:h=>be(t,h),getCurrent:()=>s.getState(),resolveRouteComponent:gn}}function Fr(e,t){return be(e,t)}let Pt=null;function Ir(e){const t=mn(e);return Pt=t,_t("router-view",()=>{const n=Pt||t;if(!n)return ye`<div>Router not initialized.</div>`;const r=ot(n.getCurrent());let i;Ct(()=>{try{n&&typeof n.subscribe=="function"&&(i=n.subscribe(s=>{try{r.value=s}catch(c){K("router-view subscription update failed",c)}}))}catch(s){K("router-view subscribe failed",s)}}),Et(()=>{if(typeof i=="function")try{i()}catch(s){K("router-view unsubscribe failed",s)}});const o=n.matchRoute(r.value.path);return!o||!o.route?ye`<div>Not found</div>`:n.resolveRouteComponent(o.route).then(s=>{if(typeof s=="string")return{tag:s,props:{},children:[]};if(typeof s=="function"){const c=s();return(c instanceof Promise?c:Promise.resolve(c)).then(l=>typeof l=="string"?{tag:l,props:{},children:[]}:l)}return ye`<div>Invalid route component</div>`}).catch(()=>ye`<div>Invalid route component</div>`)}),_t("router-link",()=>{const n=fn({to:"",tag:"a",replace:!1,exact:!1,activeClass:"active",exactActiveClass:"exact-active",ariaCurrentValue:"page",disabled:!1,external:!1,linkClass:"",linkStyle:""}),r=Pt||t,i=ot(r.getCurrent());let o;dn(()=>"a,button{display:inline-block;}"+n.linkStyle),Ct(()=>{try{r&&typeof r.subscribe=="function"&&(o=r.subscribe(h=>{try{i.value=h}catch(d){K("router-link subscription update failed",d)}}))}catch(h){K("router-link subscribe failed",h)}}),Et(()=>{if(typeof o=="function")try{o()}catch(h){K("router-link unsubscribe failed",h)}});const s=pe(()=>i.value.path===n.to),c=pe(()=>n.exact?s.value:i.value&&typeof i.value.path=="string"?i.value.path.startsWith(n.to):!1),a=pe(()=>{const d=(n.linkClass||"").split(/\s+/).filter(Boolean),u={};for(const g of d)u[g]=!0;return u}),l=pe(()=>({...a.value,[n.activeClass||"active"]:c.value,[n.exactActiveClass||"exact-active"]:s.value})),m=pe(()=>n.tag==="button"),y=pe(()=>s.value?n.ariaCurrentValue:""),p=pe(()=>!!n.disabled),v=pe(()=>!!n.external&&(n.tag==="a"||!n.tag)),f=h=>{if(n.disabled){h.preventDefault();return}n.external&&(n.tag==="a"||!n.tag)||(h.preventDefault(),n.replace?r.replace(n.to):r.push(n.to))};return ye`
129
+ ${cn().when(m.value,ye`
130
130
  <button
131
131
  part="button"
132
132
  :class="${l.value}"
133
- ${s.value}
134
- ${y.value}
135
- ${p.value}
136
- @click="${v}"
133
+ aria-current="${y.value}"
134
+ disabled="${p.value?"":null}"
135
+ aria-disabled="${p.value?"true":null}"
136
+ tabindex="${p.value?"-1":null}"
137
+ @click="${f}"
137
138
  >
138
139
  <slot></slot>
139
140
  </button>
140
- `).otherwise(be`
141
+ `).otherwise(ye`
141
142
  <a
142
143
  part="link"
143
144
  href="${n.to}"
144
145
  :class="${l.value}"
145
- ${s.value}
146
- ${y.value}
147
- ${p.value}
148
- @click="${v}"
146
+ aria-current="${y.value}"
147
+ aria-disabled="${p.value?"true":null}"
148
+ tabindex="${p.value?"-1":null}"
149
+ target="${v.value?"_blank":null}"
150
+ rel="${v.value?"noopener noreferrer":null}"
151
+ @click="${f}"
149
152
  ><slot></slot
150
153
  ></a>
151
154
  `).done()}
152
- `}),t}O.GlobalEventBus=xe,O.Transition=rr,O.TransitionGroup=ir,O.anchorBlock=q,O.component=$t,O.computed=ge,O.createStore=At,O.createTransitionPreset=or,O.css=Zt,O.decodeEntities=ce,O.each=tr,O.eachGroup=_r,O.eachPage=Ar,O.eachWhere=Cr,O.emit=Or,O.eventBus=Pe,O.getTransitionStyleSheet=rt,O.html=be,O.initRouter=Hr,O.listen=Rr,O.match=on,O.matchRoute=ue,O.matchRouteSSR=Dr,O.mediaVariants=de,O.off=Mr,O.on=Pr,O.once=Nr,O.parseQuery=St,O.ref=it,O.renderToString=Qe,O.resolveRouteComponent=fn,O.responsive=un,O.responsiveOrder=_t,O.responsiveSwitch=jr,O.switchOn=Lr,O.switchOnLength=Er,O.switchOnPromise=Sr,O.transitionPresets=je,O.unless=kr,O.unsafeHTML=wn,O.useEmit=ur,O.useOnAttributeChanged=dr,O.useOnConnected=xt,O.useOnDisconnected=fr,O.useOnError=pr,O.useProps=cn,O.useRouter=dn,O.useStyle=hr,O.watch=bn,O.when=Ie,O.whenEmpty=xr,O.whenMedia=Q,O.whenNotEmpty=$r,O.whenVariants=Tr,Object.defineProperty(O,Symbol.toStringTag,{value:"Module"})}));
155
+ `}),t}O.GlobalEventBus=xe,O.Transition=ar,O.TransitionGroup=cr,O.anchorBlock=U,O.component=_t,O.computed=pe,O.createStore=jt,O.createTransitionPreset=lr,O.css=Yt,O.decodeEntities=ae,O.each=or,O.eachGroup=Ar,O.eachPage=Tr,O.eachWhere=_r,O.emit=Mr,O.eventBus=Pe,O.getTransitionStyleSheet=rt,O.html=ye,O.initRouter=Ir,O.listen=Hr,O.match=cn,O.matchRoute=be,O.matchRouteSSR=Fr,O.mediaVariants=ue,O.off=Nr,O.on=Rr,O.once=Dr,O.parseQuery=Lt,O.ref=ot,O.renderToString=Qe,O.resolveRouteComponent=gn,O.responsive=hn,O.responsiveOrder=Tt,O.responsiveSwitch=Or,O.switchOn=Pr,O.switchOnLength=Sr,O.switchOnPromise=jr,O.transitionPresets=je,O.unless=$r,O.unsafeHTML=Cn,O.useEmit=hr,O.useOnAttributeChanged=gr,O.useOnConnected=Ct,O.useOnDisconnected=Et,O.useOnError=mr,O.useProps=fn,O.useRouter=mn,O.useStyle=dn,O.watch=xn,O.when=Ie,O.whenEmpty=Cr,O.whenMedia=ee,O.whenNotEmpty=Er,O.whenVariants=Lr,Object.defineProperty(O,Symbol.toStringTag,{value:"Module"})}));
153
156
  //# sourceMappingURL=custom-elements-runtime.umd.js.map