@fluixi/dom 1.0.0-alpha.79 → 1.0.0-alpha.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/cdn/dom-client.cjs +1 -1
- package/dist/cdn/dom-client.global.js +1 -1
- package/dist/cdn/dom-client.mjs +1 -1
- package/dist/cdn/dom.cjs +1 -1
- package/dist/cdn/dom.global.js +1 -1
- package/dist/cdn/dom.mjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/lib/dom/dynamic-element.cjs +1 -1
- package/dist/lib/dom/dynamic-element.mjs +1 -1
- package/dist/lib/dom/hydration.cjs +1 -1
- package/dist/lib/dom/hydration.mjs +1 -1
- package/dist/lib/dom/index.cjs +1 -1
- package/dist/lib/dom/index.mjs +1 -1
- package/dist/lib/dom/integration.cjs +1 -1
- package/dist/lib/dom/integration.d.ts.map +1 -1
- package/dist/lib/dom/integration.js +23 -4
- package/dist/lib/dom/integration.mjs +1 -1
- package/dist/lib/dom/island.cjs +1 -1
- package/dist/lib/dom/island.mjs +1 -1
- package/dist/lib/dom/runtime.cjs +1 -1
- package/dist/lib/dom/runtime.mjs +1 -1
- package/dist/lib/dom/utils.d.ts +23 -23
- package/dist/lib/dom/utils.js +23 -23
- package/dist/lib/dom/versions.cjs +1 -1
- package/dist/lib/dom/versions.d.ts +2 -2
- package/dist/lib/dom/versions.d.ts.map +1 -1
- package/dist/lib/dom/versions.js +4 -4
- package/dist/lib/dom/versions.mjs +1 -1
- package/dist/lib/index.cjs +1 -1
- package/dist/lib/index.mjs +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/dist/version.generated.cjs +1 -1
- package/dist/version.generated.d.ts +1 -1
- package/dist/version.generated.js +1 -1
- package/dist/version.generated.mjs +1 -1
- package/package.json +3 -3
package/dist/lib/dom/utils.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @fileoverview DOM utilities for Fluixi
|
|
3
|
-
* @module fluixi/dom
|
|
3
|
+
* @module @fluixi/core/dom
|
|
4
4
|
*
|
|
5
5
|
* This module provides utilities for DOM manipulation and queries.
|
|
6
6
|
*/
|
|
@@ -182,7 +182,7 @@ export const JSX_PROPERTIES = new Set([
|
|
|
182
182
|
*
|
|
183
183
|
* @example
|
|
184
184
|
* ```typescript
|
|
185
|
-
* import { query } from 'fluixi/dom';
|
|
185
|
+
* import { query } from '@fluixi/core/dom';
|
|
186
186
|
*
|
|
187
187
|
* const button = query<HTMLButtonElement>('#my-button');
|
|
188
188
|
* button?.click();
|
|
@@ -201,7 +201,7 @@ export function query(selector, root = document) {
|
|
|
201
201
|
*
|
|
202
202
|
* @example
|
|
203
203
|
* ```typescript
|
|
204
|
-
* import { queryAll } from 'fluixi/dom';
|
|
204
|
+
* import { queryAll } from '@fluixi/core/dom';
|
|
205
205
|
*
|
|
206
206
|
* const buttons = queryAll<HTMLButtonElement>('button');
|
|
207
207
|
* buttons.forEach(btn => btn.disabled = true);
|
|
@@ -220,7 +220,7 @@ export function queryAll(selector, root = document) {
|
|
|
220
220
|
*
|
|
221
221
|
* @example
|
|
222
222
|
* ```typescript
|
|
223
|
-
* import { closest } from 'fluixi/dom';
|
|
223
|
+
* import { closest } from '@fluixi/core/dom';
|
|
224
224
|
*
|
|
225
225
|
* const form = closest<HTMLFormElement>(button, 'form');
|
|
226
226
|
* form?.submit();
|
|
@@ -237,7 +237,7 @@ export function closest(element, selector) {
|
|
|
237
237
|
*
|
|
238
238
|
* @example
|
|
239
239
|
* ```typescript
|
|
240
|
-
* import { addClass } from 'fluixi/dom';
|
|
240
|
+
* import { addClass } from '@fluixi/core/dom';
|
|
241
241
|
*
|
|
242
242
|
* addClass(element, 'active', 'visible');
|
|
243
243
|
* ```
|
|
@@ -253,7 +253,7 @@ export function addClass(element, ...classes) {
|
|
|
253
253
|
*
|
|
254
254
|
* @example
|
|
255
255
|
* ```typescript
|
|
256
|
-
* import { removeClass } from 'fluixi/dom';
|
|
256
|
+
* import { removeClass } from '@fluixi/core/dom';
|
|
257
257
|
*
|
|
258
258
|
* removeClass(element, 'active', 'visible');
|
|
259
259
|
* ```
|
|
@@ -269,7 +269,7 @@ export function removeClass(element, ...classes) {
|
|
|
269
269
|
*
|
|
270
270
|
* @example
|
|
271
271
|
* ```typescript
|
|
272
|
-
* import { toggleClass } from 'fluixi/dom';
|
|
272
|
+
* import { toggleClass } from '@fluixi/core/dom';
|
|
273
273
|
*
|
|
274
274
|
* toggleClass(element, 'active');
|
|
275
275
|
* ```
|
|
@@ -286,7 +286,7 @@ export function toggleClass(element, ...classes) {
|
|
|
286
286
|
*
|
|
287
287
|
* @example
|
|
288
288
|
* ```typescript
|
|
289
|
-
* import { hasClass } from 'fluixi/dom';
|
|
289
|
+
* import { hasClass } from '@fluixi/core/dom';
|
|
290
290
|
*
|
|
291
291
|
* if (hasClass(element, 'active')) {
|
|
292
292
|
* console.log('Element is active');
|
|
@@ -305,7 +305,7 @@ export function hasClass(element, className) {
|
|
|
305
305
|
*
|
|
306
306
|
* @example
|
|
307
307
|
* ```typescript
|
|
308
|
-
* import { setAttribute } from 'fluixi/dom';
|
|
308
|
+
* import { setAttribute } from '@fluixi/core/dom';
|
|
309
309
|
*
|
|
310
310
|
* setAttribute(input, 'disabled', true);
|
|
311
311
|
* setAttribute(div, 'data-id', '123');
|
|
@@ -357,7 +357,7 @@ export function setAttribute(element, name, value, isSVG = false) {
|
|
|
357
357
|
*
|
|
358
358
|
* @example
|
|
359
359
|
* ```typescript
|
|
360
|
-
* import { getAttribute } from 'fluixi/dom';
|
|
360
|
+
* import { getAttribute } from '@fluixi/core/dom';
|
|
361
361
|
*
|
|
362
362
|
* const id = getAttribute(div, 'data-id');
|
|
363
363
|
* ```
|
|
@@ -373,7 +373,7 @@ export function getAttribute(element, name) {
|
|
|
373
373
|
*
|
|
374
374
|
* @example
|
|
375
375
|
* ```typescript
|
|
376
|
-
* import { removeAttribute } from 'fluixi/dom';
|
|
376
|
+
* import { removeAttribute } from '@fluixi/core/dom';
|
|
377
377
|
*
|
|
378
378
|
* removeAttribute(input, 'disabled');
|
|
379
379
|
* ```
|
|
@@ -389,7 +389,7 @@ export function removeAttribute(element, name) {
|
|
|
389
389
|
*
|
|
390
390
|
* @example
|
|
391
391
|
* ```typescript
|
|
392
|
-
* import { setStyles } from 'fluixi/dom';
|
|
392
|
+
* import { setStyles } from '@fluixi/core/dom';
|
|
393
393
|
*
|
|
394
394
|
* setStyles(div, {
|
|
395
395
|
* backgroundColor: 'red',
|
|
@@ -410,7 +410,7 @@ export function setStyles(element, styles) {
|
|
|
410
410
|
*
|
|
411
411
|
* @example
|
|
412
412
|
* ```typescript
|
|
413
|
-
* import { getStyle } from 'fluixi/dom';
|
|
413
|
+
* import { getStyle } from '@fluixi/core/dom';
|
|
414
414
|
*
|
|
415
415
|
* const color = getStyle(div, 'backgroundColor');
|
|
416
416
|
* ```
|
|
@@ -429,7 +429,7 @@ export function getStyle(element, property) {
|
|
|
429
429
|
*
|
|
430
430
|
* @example
|
|
431
431
|
* ```typescript
|
|
432
|
-
* import { createElement } from 'fluixi/dom';
|
|
432
|
+
* import { createElement } from '@fluixi/core/dom';
|
|
433
433
|
*
|
|
434
434
|
* const button = createElement('button',
|
|
435
435
|
* { class: 'btn', disabled: true },
|
|
@@ -471,7 +471,7 @@ export function createElement(tagName, attributes = {}, ...children) {
|
|
|
471
471
|
*
|
|
472
472
|
* @example
|
|
473
473
|
* ```typescript
|
|
474
|
-
* import { removeChildren } from 'fluixi/dom';
|
|
474
|
+
* import { removeChildren } from '@fluixi/core/dom';
|
|
475
475
|
*
|
|
476
476
|
* removeChildren(container);
|
|
477
477
|
* ```
|
|
@@ -489,7 +489,7 @@ export function removeChildren(element) {
|
|
|
489
489
|
*
|
|
490
490
|
* @example
|
|
491
491
|
* ```typescript
|
|
492
|
-
* import { appendChildren } from 'fluixi/dom';
|
|
492
|
+
* import { appendChildren } from '@fluixi/core/dom';
|
|
493
493
|
*
|
|
494
494
|
* appendChildren(container,
|
|
495
495
|
* createElement('div', {}, 'Child 1'),
|
|
@@ -516,7 +516,7 @@ export function appendChildren(parent, ...children) {
|
|
|
516
516
|
*
|
|
517
517
|
* @example
|
|
518
518
|
* ```typescript
|
|
519
|
-
* import { isVisible } from 'fluixi/dom';
|
|
519
|
+
* import { isVisible } from '@fluixi/core/dom';
|
|
520
520
|
*
|
|
521
521
|
* if (isVisible(element)) {
|
|
522
522
|
* console.log('Element is in viewport');
|
|
@@ -538,7 +538,7 @@ export function isVisible(element) {
|
|
|
538
538
|
*
|
|
539
539
|
* @example
|
|
540
540
|
* ```typescript
|
|
541
|
-
* import { scrollIntoView } from 'fluixi/dom';
|
|
541
|
+
* import { scrollIntoView } from '@fluixi/core/dom';
|
|
542
542
|
*
|
|
543
543
|
* scrollIntoView(element, { behavior: 'smooth', block: 'center' });
|
|
544
544
|
* ```
|
|
@@ -554,7 +554,7 @@ export function scrollIntoView(element, options = { behavior: 'smooth', block: '
|
|
|
554
554
|
*
|
|
555
555
|
* @example
|
|
556
556
|
* ```typescript
|
|
557
|
-
* import { getOffset } from 'fluixi/dom';
|
|
557
|
+
* import { getOffset } from '@fluixi/core/dom';
|
|
558
558
|
*
|
|
559
559
|
* const { top, left } = getOffset(element);
|
|
560
560
|
* ```
|
|
@@ -578,7 +578,7 @@ export function getOffset(element) {
|
|
|
578
578
|
*
|
|
579
579
|
* @example
|
|
580
580
|
* ```typescript
|
|
581
|
-
* import { delegate } from 'fluixi/dom';
|
|
581
|
+
* import { delegate } from '@fluixi/core/dom';
|
|
582
582
|
*
|
|
583
583
|
* const cleanup = delegate(list, 'click', '.item', (event, target) => {
|
|
584
584
|
* console.log('Clicked item:', target);
|
|
@@ -606,7 +606,7 @@ export function delegate(parent, eventName, selector, handler) {
|
|
|
606
606
|
*
|
|
607
607
|
* @example
|
|
608
608
|
* ```typescript
|
|
609
|
-
* import { waitForElement } from 'fluixi/dom';
|
|
609
|
+
* import { waitForElement } from '@fluixi/core/dom';
|
|
610
610
|
*
|
|
611
611
|
* const element = await waitForElement('#dynamic-content');
|
|
612
612
|
* ```
|
|
@@ -646,7 +646,7 @@ export function waitForElement(selector, timeout = 5000) {
|
|
|
646
646
|
*
|
|
647
647
|
* @example
|
|
648
648
|
* ```typescript
|
|
649
|
-
* import { observeIntersection } from 'fluixi/dom';
|
|
649
|
+
* import { observeIntersection } from '@fluixi/core/dom';
|
|
650
650
|
*
|
|
651
651
|
* const cleanup = observeIntersection(element, (isIntersecting) => {
|
|
652
652
|
* console.log('Element visible:', isIntersecting);
|
|
@@ -673,7 +673,7 @@ export function observeIntersection(element, callback, options = {}) {
|
|
|
673
673
|
*
|
|
674
674
|
* @example
|
|
675
675
|
* ```typescript
|
|
676
|
-
* import { observeResize } from 'fluixi/dom';
|
|
676
|
+
* import { observeResize } from '@fluixi/core/dom';
|
|
677
677
|
*
|
|
678
678
|
* const cleanup = observeResize(element, (entry) => {
|
|
679
679
|
* console.log('New size:', entry.contentRect.width, entry.contentRect.height);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var t=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var f=Object.prototype.hasOwnProperty;var u=(e,o)=>{for(var s in o)t(e,s,{get:o[s],enumerable:!0})},m=(e,o,s,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let r of d(o))!f.call(e,r)&&r!==s&&t(e,r,{get:()=>o[r],enumerable:!(n=c(o,r))||n.enumerable});return e};var p=e=>m(t({},"__esModule",{value:!0}),e);var V={};u(V,{registerCoreVersion:()=>x,stampVersions:()=>v,versions:()=>i,warnOnVersionSkew:()=>g});module.exports=p(V);var a="1.0.0-alpha.
|
|
1
|
+
"use strict";var t=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var f=Object.prototype.hasOwnProperty;var u=(e,o)=>{for(var s in o)t(e,s,{get:o[s],enumerable:!0})},m=(e,o,s,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let r of d(o))!f.call(e,r)&&r!==s&&t(e,r,{get:()=>o[r],enumerable:!(n=c(o,r))||n.enumerable});return e};var p=e=>m(t({},"__esModule",{value:!0}),e);var V={};u(V,{registerCoreVersion:()=>x,stampVersions:()=>v,versions:()=>i,warnOnVersionSkew:()=>g});module.exports=p(V);var a="1.0.0-alpha.80";var l=require("@fluixi/reactive/version"),i={dom:a,reactive:l.VERSION};function x(e){i.core=e}function v(e){i.core&&e.setAttribute("fluixi",i.core),e.setAttribute("fx-dom",i.dom),e.setAttribute("fx-reactive",i.reactive),typeof globalThis<"u"&&(globalThis.Fluixi=i)}function g(){let e=[i.core,i.dom,i.reactive].filter(o=>o!==void 0);new Set(e).size<=1||console.warn(`[fluixi] package versions disagree — core ${i.core??"(absent)"}, dom ${i.dom}, reactive ${i.reactive}. These ship as one release, so a mismatch usually means a stale lockfile or two copies resolved side by side. Reinstall, or check for duplicates with \`pnpm why @fluixi/dom\`.`)}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** The versions of the packages this app is running. */
|
|
2
2
|
export interface FluixiVersions {
|
|
3
|
-
/** Absent when the app does not use
|
|
3
|
+
/** Absent when the app does not use `@fluixi/core` — dom and reactive can run alone. */
|
|
4
4
|
core?: string;
|
|
5
5
|
dom: string;
|
|
6
6
|
reactive: string;
|
|
@@ -10,7 +10,7 @@ declare global {
|
|
|
10
10
|
var Fluixi: FluixiVersions | undefined;
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
|
-
* Record the
|
|
13
|
+
* Record the `@fluixi/core` version, called by core when it is loaded.
|
|
14
14
|
*
|
|
15
15
|
* Inverted rather than imported, because core sits above this package.
|
|
16
16
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../src/lib/dom/versions.ts"],"names":[],"mappings":"AAmBA,wDAAwD;AACxD,MAAM,WAAW,cAAc;IAC7B,
|
|
1
|
+
{"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../src/lib/dom/versions.ts"],"names":[],"mappings":"AAmBA,wDAAwD;AACxD,MAAM,WAAW,cAAc;IAC7B,wFAAwF;IACxF,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,QAAQ,EAAE,cAAiD,CAAC;AAEzE,OAAO,CAAC,MAAM,CAAC;IAEb,IAAI,MAAM,EAAE,cAAc,GAAG,SAAS,CAAC;CACxC;AAED;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAEzD;AAED;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,SAAS,EAAE,OAAO,GAAG,IAAI,CAMtD;AAED;;;;;;GAMG;AACH,wBAAgB,iBAAiB,IAAI,IAAI,CAYxC"}
|
package/dist/lib/dom/versions.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Which build of each package is actually running.
|
|
3
3
|
*
|
|
4
|
-
* This used to live in
|
|
5
|
-
* reach the DOM through either entry point —
|
|
4
|
+
* This used to live in `@fluixi/core`, stamped only by *its* `render`. But an app can
|
|
5
|
+
* reach the DOM through either entry point — `@fluixi/core`'s `render`, or this package's
|
|
6
6
|
* `render`/`hydrate` by way of `startClient` — and only the first stamped anything. An app
|
|
7
7
|
* that hydrated (the docs site, every SSR app) therefore had no version attributes at all,
|
|
8
8
|
* which is exactly the case where a bug report needs them most.
|
|
9
9
|
*
|
|
10
10
|
* So the stamping sits at the bottom instead, where both paths pass through.
|
|
11
11
|
*
|
|
12
|
-
* The core version cannot be imported here:
|
|
12
|
+
* The core version cannot be imported here: `@fluixi/core` depends on this package, not
|
|
13
13
|
* the other way round, and reversing that would be a cycle. Core registers its own version
|
|
14
14
|
* on import instead, and whichever render runs stamps whatever has been registered. That
|
|
15
15
|
* keeps the dependency direction intact and still gets all three onto the element.
|
|
@@ -18,7 +18,7 @@ import { VERSION as DOM } from '../../version.generated.js';
|
|
|
18
18
|
import { VERSION as REACTIVE } from '@fluixi/reactive/version';
|
|
19
19
|
export const versions = { dom: DOM, reactive: REACTIVE };
|
|
20
20
|
/**
|
|
21
|
-
* Record the
|
|
21
|
+
* Record the `@fluixi/core` version, called by core when it is loaded.
|
|
22
22
|
*
|
|
23
23
|
* Inverted rather than imported, because core sits above this package.
|
|
24
24
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var o="1.0.0-alpha.
|
|
1
|
+
var o="1.0.0-alpha.80";import{VERSION as s}from"@fluixi/reactive/version";var e={dom:o,reactive:s};function l(i){e.core=i}function c(i){e.core&&i.setAttribute("fluixi",e.core),i.setAttribute("fx-dom",e.dom),i.setAttribute("fx-reactive",e.reactive),typeof globalThis<"u"&&(globalThis.Fluixi=e)}function d(){let i=[e.core,e.dom,e.reactive].filter(r=>r!==void 0);new Set(i).size<=1||console.warn(`[fluixi] package versions disagree — core ${e.core??"(absent)"}, dom ${e.dom}, reactive ${e.reactive}. These ship as one release, so a mismatch usually means a stale lockfile or two copies resolved side by side. Reinstall, or check for duplicates with \`pnpm why @fluixi/dom\`.`)}export{l as registerCoreVersion,c as stampVersions,e as versions,d as warnOnVersionSkew};
|
package/dist/lib/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var Oe=Object.defineProperty;var xn=Object.getOwnPropertyDescriptor;var Tn=Object.getOwnPropertyNames;var bn=Object.prototype.hasOwnProperty;var En=(e,t)=>{for(var n in t)Oe(e,n,{get:t[n],enumerable:!0})},wn=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of Tn(t))!bn.call(e,o)&&o!==n&&Oe(e,o,{get:()=>t[o],enumerable:!(r=xn(t,o))||r.enumerable});return e};var Nn=e=>wn(Oe({},"__esModule",{value:!0}),e);var ao={};En(ao,{ClientOnly:()=>et,Dynamic:()=>Qt,ErrorBoundary:()=>nn,FX_DATA_ID:()=>B,For:()=>Gt,Index:()=>Jt,Island:()=>jt,JSX_PROPERTIES:()=>le,Match:()=>Yt,NoSsr:()=>tn,Portal:()=>en,SVG_ELEMENTS:()=>Mn,SVG_NAMESPACE:()=>F,Show:()=>zt,Switch:()=>Zt,VOID_ELEMENTS:()=>Rn,addClass:()=>kn,addDelegatedEventListener:()=>Lt,addNativeEventListener:()=>He,appendChildren:()=>Hn,applyElementProp:()=>ae,applyProps:()=>Ue,applyUse:()=>Ve,asComponent:()=>lr,asContext:()=>ar,asOutlet:()=>ir,asProvider:()=>sr,asRoute:()=>or,asRouter:()=>nr,asRoutes:()=>rr,asSuspense:()=>cr,bindPair:()=>_r,captureHydrationCursor:()=>Rt,checkRenderType:()=>ur,classMap:()=>on,cleanChildren:()=>k,cloneTemplate:()=>Ot,closest:()=>Ln,createComponent:()=>ze,createDynamicElement:()=>Xr,createElement:()=>jn,createNativeElement:()=>Fe,createPortal:()=>Lr,createRequestContext:()=>W,createTemplate:()=>kt,delegate:()=>Bn,delegateEvents:()=>je,escapeFxJson:()=>ie,escapeHTML:()=>Or,fnName:()=>Nr,generateID:()=>yr,getAttribute:()=>$n,getGlobal:()=>tr,getLitEventName:()=>An,getLocals:()=>Je,getOffset:()=>Un,getRequestContext:()=>R,getRequestEvent:()=>he,getRequestLocals:()=>xe,getServerData:()=>se,getStableElementId:()=>pr,getStyle:()=>qn,handleRef:()=>oe,hasClass:()=>_n,holeContent:()=>wr,holeEnd:()=>Er,holeScope:()=>br,html:()=>Ht,hydrate:()=>Ne,hydrateAdvancePast:()=>V,hydrateIslands:()=>Ft,indexArray:()=>K.indexArray,initializeIntegration:()=>qr,insert:()=>C,insertExpression:()=>Q,intergartionInitialized:()=>jr,isAccessor:()=>Dr,isComponent:()=>N,isContext:()=>Nt,isCustomElement:()=>ft,isDOMNode:()=>Qn,isDelegatedEvent:()=>hr,isDomElement:()=>ce,isDomNode:()=>$,isDomText:()=>ue,isEventHandler:()=>vn,isFunction:()=>xr,isIntegrationInitialized:()=>Fr,isJSXTemplate:()=>Zn,isLitTemplateResult:()=>pt,isNativeElement:()=>kr,isOutlet:()=>Et,isPromise:()=>Z,isProvider:()=>wt,isReactElement:()=>Jn,isRoute:()=>bt,isRouter:()=>xt,isRoutes:()=>Tt,isSVGElement:()=>Be,isServer:()=>g,isSuspense:()=>St,isTemplateFactory:()=>Yn,isVisible:()=>Vn,iterateFn:()=>Sr,keyArray:()=>K.keyArray,makeArrayFlat:()=>Dt,mapArray:()=>K.mapArray,mergeProps:()=>Mr,observeIntersection:()=>zn,observeResize:()=>Gn,query:()=>De,queryAll:()=>Pn,registerCreateComponent:()=>Ir,registerGlobal:()=>er,removeAttribute:()=>In,removeChildren:()=>Fn,removeClass:()=>On,removeDelegatedEventListener:()=>qe,render:()=>Ke,renderToString:()=>lt,renderToStringAsync:()=>ut,resetIntegration:()=>Hr,runHydrationAt:()=>Y,runWithRequestContext:()=>U,runWithoutHydration:()=>Mt,scrollIntoView:()=>Wn,serializeNode:()=>v,serializeResourceData:()=>Pe,setAttribute:()=>E,setClassList:()=>ne,setClassName:()=>te,setDataRedactor:()=>ct,setDynamicAttribute:()=>pe,setDynamicBoolAttribute:()=>We,setDynamicProperty:()=>ye,setProperty:()=>ee,setRequestStore:()=>Xe,setServerMode:()=>_,setStyle:()=>re,setStyles:()=>dt,shouldSetAsProperty:()=>Cn,splitProps:()=>Pr,spread:()=>Rr,styleMap:()=>an,svg:()=>Vt,templateNode:()=>Tr,toAttributeName:()=>Sn,toggleClass:()=>Dn,waitForElement:()=>Kn});module.exports=Nn(ao);function Sn(e){return e.startsWith("aria-")||e.startsWith("data-")?e:/[A-Z]/.test(e)?e.replace(/([A-Z])/g,"-$1").toLowerCase():e}function vn(e){return e.startsWith("@")||e.startsWith("on")&&e.length>2}function An(e){return e.startsWith("@")?e.slice(1):e.startsWith("on")?e.slice(2).toLowerCase():e}function Cn(e,t){let n=new Set(["checked","value","selected","disabled","readonly","required","multiple","open","contenteditable","draggable","spellcheck"]),r={input:new Set(["value","checked","indeterminate"]),textarea:new Set(["value"]),select:new Set(["value"]),option:new Set(["selected","value"]),audio:new Set(["volume","currentTime","paused"]),video:new Set(["volume","currentTime","paused"]),img:new Set(["src","srcset"]),iframe:new Set(["src"]),a:new Set(["href"])};return n.has(t)||r[e]&&r[e].has(t)}var Rn=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),Mn=new Set(["svg","g","path","circle","rect","line","polyline","polygon","ellipse","text","tspan","use","defs","symbol","mask","clipPath","pattern","linearGradient","radialGradient","stop","filter","feGaussianBlur","feOffset","feMerge","feMergeNode","foreignObject"]),F="http://www.w3.org/2000/svg";function ft(e){return e.localName.includes("-")}function ae(e,t,n,r=!1){if(n==null){e.removeAttribute(t);return}if(ft(e)){e[t]=n;return}E(e,t,n,r)}var le=new Set(["className","value","checked","selected","innerHTML","innerText","textContent","indeterminate","htmlFor"]);function De(e,t=document){return t.querySelector(e)}function Pn(e,t=document){return Array.from(t.querySelectorAll(e))}function Ln(e,t){return e.closest(t)}function kn(e,...t){e.classList.add(...t)}function On(e,...t){e.classList.remove(...t)}function Dn(e,...t){t.forEach(n=>e.classList.toggle(n))}function _n(e,t){return e.classList.contains(t)}function E(e,t,n,r=!1){if(n==null||n===!1){e.removeAttribute(t);return}if(n===!0){e.setAttribute(t,"");return}if(typeof n=="object"){e.setAttribute(t,JSON.stringify(n));return}e.setAttribute(t,String(n))}function $n(e,t){return e.getAttribute(t)}function In(e,t){e.removeAttribute(t)}function dt(e,t){Object.assign(e.style,t)}function qn(e,t){return window.getComputedStyle(e).getPropertyValue(t)}function jn(e,t={},...n){let r=document.createElement(e);return Object.entries(t).forEach(([o,i])=>{if(o==="class"||o==="className")r.className=i;else if(o==="style"&&typeof i=="object")dt(r,i);else if(o.startsWith("on")&&typeof i=="function"){let s=o.slice(2).toLowerCase();r.addEventListener(s,i)}else E(r,o,i)}),n.forEach(o=>{typeof o=="string"?r.appendChild(document.createTextNode(o)):r.appendChild(o)}),r}function Fn(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function Hn(e,...t){t.forEach(n=>{typeof n=="string"?e.appendChild(document.createTextNode(n)):e.appendChild(n)})}function Vn(e){let t=e.getBoundingClientRect();return t.top>=0&&t.left>=0&&t.bottom<=window.innerHeight&&t.right<=window.innerWidth}function Wn(e,t={behavior:"smooth",block:"nearest"}){e.scrollIntoView(t)}function Un(e){let t=e.getBoundingClientRect();return{top:t.top+window.pageYOffset,left:t.left+window.pageXOffset}}function Bn(e,t,n,r){let o=i=>{let s=i.target.closest(n);s&&e.contains(s)&&r(i,s)};return e.addEventListener(t,o),()=>{e.removeEventListener(t,o)}}function Kn(e,t=5e3){return new Promise((n,r)=>{let o=De(e);if(o){n(o);return}let i=new MutationObserver(()=>{let a=De(e);a&&(i.disconnect(),clearTimeout(s),n(a))});i.observe(document.body,{childList:!0,subtree:!0});let s=setTimeout(()=>{i.disconnect(),r(new Error(`Element ${e} not found within ${t}ms`))},t)})}function zn(e,t,n={}){let r=new IntersectionObserver(o=>{o.forEach(i=>{t(i.isIntersecting)})},n);return r.observe(e),()=>{r.disconnect()}}function Gn(e,t){let n=new ResizeObserver(r=>{r.forEach(t)});return n.observe(e),()=>{n.disconnect()}}var Xn=typeof Symbol=="function"&&Symbol.for?Symbol.for("react.element"):60103;function Jn(e){return typeof e=="object"&&e!==null&&e.$$typeof===Xn}function pt(e){return e&&typeof e=="object"&&e.strings&&Array.isArray(e.strings)&&e.values&&Array.isArray(e.values)}function Yn(e){if(typeof e!="function")return!1;try{let t=e();return pt(t)}catch{return!1}}function Zn(e){return typeof e=="object"&&e!==null&&(e.$$typeof==="template"||typeof e.type=="function")}function Qn(e){return e instanceof Node}function er(e,t,n="Fluixi"){typeof globalThis<"u"&&(typeof globalThis[n]>"u"&&(globalThis[n]={}),typeof globalThis[n][e]>"u"&&(globalThis[n][e]=t))}function tr(e,t,n="Fluixi"){return typeof globalThis<"u"&&typeof globalThis[n]<"u"&&typeof globalThis[n][e]<"u"?globalThis[n][e]:t}var x=require("@fluixi/reactive/signal");var yt="1.0.0-alpha.79";var mt=require("@fluixi/reactive/version"),w={dom:yt,reactive:mt.VERSION};function gt(e){w.core&&e.setAttribute("fluixi",w.core),e.setAttribute("fx-dom",w.dom),e.setAttribute("fx-reactive",w.reactive),typeof globalThis<"u"&&(globalThis.Fluixi=w)}function ht(){let e=[w.core,w.dom,w.reactive].filter(t=>t!==void 0);new Set(e).size<=1||console.warn(`[fluixi] package versions disagree — core ${w.core??"(absent)"}, dom ${w.dom}, reactive ${w.reactive}. These ship as one release, so a mismatch usually means a stale lockfile or two copies resolved side by side. Reinstall, or check for duplicates with \`pnpm why @fluixi/dom\`.`)}function nr(e){return Object.defineProperty(e,Symbol.for("fluixi-router"),{value:!0,enumerable:!0}),e}function rr(e){return Object.defineProperty(e,Symbol.for("fluixi-routes"),{value:!0,enumerable:!0}),e}function or(e){return Object.defineProperty(e,Symbol.for("fluixi-route"),{value:!0,enumerable:!0}),e}function ir(e){return typeof e!="function"||Object.defineProperty(e,Symbol.for("fluixi-outlet"),{value:!0,enumerable:!0}),e}function sr(e){return Object.defineProperty(e,Symbol.for("fluixi-provider"),{value:!0,enumerable:!0}),e}function ar(e){return Object.defineProperty(e,Symbol.for("fluixi-context"),{value:!0,enumerable:!0}),e}function lr(e){return typeof e!="function"||Object.defineProperty(e,Symbol.for("fluixi-component"),{value:!0,enumerable:!0}),e}function cr(e){return Object.defineProperty(e,Symbol.for("fluixi-suspense"),{value:!0,enumerable:!0}),e}function xt(e){return typeof e=="function"&&e[Symbol.for("fluixi-router")]===!0}function Tt(e){return typeof e=="function"&&e[Symbol.for("fluixi-routes")]===!0}function bt(e){return typeof e=="function"&&e[Symbol.for("fluixi-route")]===!0}function Et(e){return typeof e=="function"&&e[Symbol.for("fluixi-outlet")]===!0}function wt(e){return typeof e=="function"&&e[Symbol.for("fluixi-provider")]===!0}function Nt(e){return typeof e=="function"&&e[Symbol.for("fluixi-context")]===!0}function N(e){return typeof e=="function"&&e[Symbol.for("fluixi-component")]===!0}function St(e){return typeof e=="function"&&e[Symbol.for("fluixi-suspense")]===!0}function ur(e){return xt(e)?{type:"router",value:e}:bt(e)?{type:"route",value:e}:Tt(e)?{type:"routes",value:e}:Et(e)?{type:"outlet",value:e}:N(e)?{type:"component",value:e}:St(e)?{type:"suspense",value:e}:wt(e)?{type:"provider",value:e}:Nt(e)?{type:"context",value:e}:{type:"none",value:e}}var d=require("@fluixi/reactive/signal");var g=typeof document>"u";function _(e){g=e}var J=Symbol.for("fluixi.server-node"),_e=null;function vt(e){_e=e}function H(){if(!_e)throw new Error("[fluixi] server render ran before @fluixi/dom/server loaded");return _e}function $(e){return e!=null&&e[J]===!0?!0:typeof Node<"u"&&e instanceof Node}function ce(e){return e!=null&&e[J]===!0?e.nodeType===1:typeof Element<"u"&&e instanceof Element}function ue(e){return e!=null&&e[J]===!0?e.nodeType===3:typeof Text<"u"&&e instanceof Text}var u={active:!1,cursor:null,parents:[]},At=null;function Ct(e){At=e}function fe(){return At}function $e(e,t){return u.active&&t.parentNode===e}function Ie(e){let t=u.parents.lastIndexOf(e);t!==-1&&(u.parents.length=t),u.cursor=e.nextSibling}function Rt(){return u.active?u.cursor:null}function Y(e,t){if(!e||e.parentNode==null)return t();let n=u.active,r=u.cursor,o=u.parents;u.active=!0,u.cursor=e,u.parents=[];try{return t()}finally{u.active=n,u.cursor=r,u.parents=o}}function Mt(e){if(!u.active)return e();let t=u.cursor,n=u.parents;u.active=!1,u.parents=[];try{return e()}finally{u.active=!0,u.cursor=t,u.parents=n}}function V(e){if(!u.active||e==null)return;let t=Array.isArray(e)?e[e.length-1]:e;t&&typeof t.nodeType=="number"&&Ie(t)}function fr(e){let t=[];for(;e&&e.nodeType===1;){let n=e.tagName.toLowerCase();if(e.id){n+=`#${e.id}`,t.unshift(n);break}e.getAttribute("data-id")&&(n+=`[data-id="${e.getAttribute("data-id")}"]`);let r=0,o=e;for(;o=o.previousElementSibling;)o.tagName===e.tagName&&r++;n+=`:nth-of-type(${r+1})`,t.unshift(n),e=e.parentElement}return t.join(">")}function dr(e){let t=0;for(let n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return`el_${Math.abs(t)}`}function pr(e){return dr(fr(e))}var yr=()=>"xxyxxxxxxy-4xx8".replace(/[xy]/g,function(e){let t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)}),mr={};var Pt=new Map,de=new Set,me=new Set(["scroll","focus","blur","load","error","resize","mouseenter","mouseleave","pointerenter","pointerleave","gotpointercapture","lostpointercapture"]);function je(e){if(!g)for(let t of e)de.has(t)||me.has(t)||(de.add(t),document.addEventListener(t,gr))}function gr(e){let t=`$$${e.type}`,n=e.composedPath&&e.composedPath()[0]||e.target;for(;n;){let r=n[t];if(r&&!n.disabled&&(r(e),e.cancelBubble))return;n=n.host&&n.host!==n&&n.host instanceof Element?n.host:n.parentNode}}function Lt(e,t,n){if(e[`$$${t}`]=n,me.has(t)){let r=`__fx_${t}`;if(!e[r]){let o=i=>{e[`$$${t}`]?.(i)};e.addEventListener(t,o),e[r]=o}return}de.has(t)||je([t])}function qe(e,t){delete e[`$$${t}`];let n=`__fx_${t}`,r=e[n];r&&(e.removeEventListener(t,r),delete e[n])}function hr(e){return!me.has(e)}function xr(e){return typeof e=="function"}function O(e,t=!1){if(g)return H().createText(e);if(u.active&&!t){let n=fe()?.hydrateText(e);if(n)return n}return document.createTextNode(e)}function Fe(e,t=!1){if(g)return H().createElement(e,t);if(u.active){let n=fe()?.hydrateElement(e);if(n)return n}return t?document.createElementNS(F,e):document.createElement(e)}function kt(e,t=!1){let n=Pt.get(e);if(n)return n;let r=document.createElement("template");return t?r.innerHTML=`<svg>${e}</svg>`:r.innerHTML=e,Pt.set(e,r),r}function Tr(e,t,n=!1,r=!1){if(g){let o=H();return n?o.parseTemplate(e,r):o.createRaw(e)}if(u.active){let o=fe()?.hydrateStatic(t);if(o)return o}return Ot(kt(e,r),r).firstChild}function br(e,t){if(!u.active)return t();let n=Y(e.nextSibling,t);if(typeof n=="function"){let r=n;return((...o)=>u.active?Y(e.nextSibling,()=>r(...o)):r(...o))}return n}function Er(e){for(let t=e.nextSibling;t;t=t.nextSibling)if(t.nodeType===8&&t.data==="fx/")return t;throw new Error("[fluixi] template hole is missing its closing marker")}function wr(e,t){let n=[];for(let r=e.nextSibling;r&&r!==t;r=r.nextSibling)n.push(r);return n}function Ot(e,t=!1){let n=e.content.cloneNode(!0);return t?n.firstChild:n}function Dt(e){return Array.isArray(e)?e.length===2&&e[1]===" "?Array.isArray(e[0])?Dt(e[0]):(typeof e[0]=="function",e[0]):e.length===1&&typeof e[0]=="function"?e[0]:e:e}function Nr(e){return typeof e!="function"?null:e._name||e.name||"anonymous"}function Sr(e){if((0,x.isSignal)(e)||N(e)||typeof e!="function")return e;let t=e();for(;typeof t=="function"&&!(0,x.isSignal)(t)&&!N(t);)t=t();return t}var L=0,vr=200;function Ar(e,t,n,r,o){let i=r,s=new Map;return(0,d.createRenderEffect)(()=>{let a;if(N(e)&&!(0,x.isSignal)(e)){if(!s.has(e)){L++;try{let l=e();s.set(e,l)}finally{L--}}for(a=s.get(e);typeof a=="function"&&(0,x.isSignal)(a);)a=a()}else for(a=e();typeof a=="function"&&(0,x.isSignal)(a);)a=a();{let l=0;for(;typeof a=="function"&&l++<50;)if(N(a)){if(!s.has(a)){let c=a;L++;try{let f=c();s.set(c,f)}finally{L--}}a=s.get(a)}else if((0,x.isSignal)(a))a=a();else if(a=a(),typeof a!="function"||!(0,x.isSignal)(a)&&!N(a))break}L++;try{i=Q(t,a,n,i,s),o(i)}finally{L--}})}function C(e,t,n,r){if(L>vr)return console.error("[insert] Exceeded max call depth — possible infinite loop."),()=>null;n!==void 0&&!n&&(n=O("",!0),e.appendChild(n));let o=r??null,i=l=>Array.isArray(l)&&l.some(c=>typeof c=="function"),s=l=>typeof l=="function"?l:()=>l;if(typeof t!="function"&&!i(t)){L++;try{o=Q(e,t,n,o)}finally{L--}return()=>o}let a=Ar(s(t),e,n,o,l=>{o=l});return()=>(a?.(),o)}function Q(e,t,n,r,o){if(t==null||typeof t=="boolean")return k(e,r,n);if(typeof t=="function")for(;typeof t=="function";)t=t();if(t==null||typeof t=="boolean")return k(e,r,n);if(Z(t)){let s=O("",!0);return Array.isArray(r)?r.length>0?(e.replaceChild(s,r[0]),k(e,r.slice(1),n)):T(e,s,n):r?e.replaceChild(s,r):T(e,s,n),t.then(a=>{s.parentNode===e&&Q(e,a,s.nextSibling,s)}).catch(a=>{console.error("Error resolving promise in insertExpression:",a)}),s}let i=typeof t;if(i==="string"||i==="number"){if(i==="number"&&(t=String(t)),Array.isArray(r)){if(r.length===0){let a=O(t);return T(e,a,n),a}if(r.length===1&&r[0].nodeType===3)return r[0].data=t,r;r=k(e,r,n)}if(r&&ue(r))return r.data=t,r;let s=O(t);return r&&r.parentNode===e?e.replaceChild(s,r):$e(e,s)||T(e,s,n),s}if($(t))return $e(e,t)?(Ie(t),t):Array.isArray(r)?(r.length===0?T(e,t,n):r[0].parentNode===e?(e.replaceChild(t,r[0]),k(e,r.slice(1),n)):T(e,t,n),t):(r?r!==t&&(r.parentNode===e?e.replaceChild(t,r):T(e,t,n)):T(e,t,n),t);if(Array.isArray(t)){let s=[],a=Array.isArray(r)?r:r?[r]:[],l=[];P(t,s,e,n,!0,o,l);let c=Cr(e,a,s,n);for(let f of l){let p=C(e,f.sig,f.marker);(0,d.onCleanup)(()=>{k(e,p()),f.marker.parentNode===e&&e.removeChild(f.marker)})}return c}if(i==="object"&&t!==null&&typeof t=="object"){let s=t;if("type"in s&&"props"in s){let a=s;if(typeof a.type=="function"){let l=a.type(a.props||{});return Q(e,l,n,r)}}}return k(e,r,n)}function P(e,t,n,r,o=!0,i,s){for(let a=0;a<e.length;a++){let l=e[a];if(!(l==null||typeof l=="boolean")){for(;typeof l=="function"&&!Z(l)&&!(0,x.isSignal)(l)&&!N(l)&&(l=l(),!(l==null||typeof l=="boolean")););if(!(l==null||typeof l=="boolean")){if(typeof l=="function"){let c;for(N(l)&&!(0,x.isSignal)(l)?(i||(i=new Map),i.has(l)||i.set(l,l()),c=i.get(l)):c=l();typeof c=="function"&&!Z(c)&&!(0,x.isSignal)(c)&&!N(c);)i||(i=new Map),i.has(c)||i.set(c,c()),c=i.get(c);if(c==null||typeof c=="boolean")continue;if(typeof c=="function"){if((0,x.isSignal)(c)){if(s){let p=O("",!0);t.push(p),s.push({marker:p,sig:c});continue}let f=c();for(;typeof f=="function"&&(0,x.isSignal)(f);)f=f();if(f==null||typeof f=="boolean")continue;Array.isArray(f)?P(f,t,n,r,o,i):P([f],t,n,r,o,i);continue}continue}Array.isArray(c)?P(c,t,n,r,o,i,s):P([c],t,n,r,o,i,s);continue}if(Z(l)){let c=O("",!0);t.push(c),l.then(f=>{if(c.parentNode){let p=[];if(P([f],p,c.parentNode,void 0,!1,i),p.length>0){c.parentNode.replaceChild(p[0],c);for(let y=1;y<p.length;y++)c.parentNode?.insertBefore(p[y],p[y-1].nextSibling)}}}).catch(f=>console.error("Error resolving promise in array:",f));continue}if(Array.isArray(l)){P(l,t,n,r,o,i,s);continue}if($(l)){t.push(l);continue}if(typeof l=="object"&&l!==null&&"type"in l&&"props"in l){let c=l;if(typeof c.type=="function"){let f=c.type(c.props||{});Array.isArray(f)?P(f,t,n,r,!1,i):P([f],t,n,r,!1,i);continue}}if(typeof l=="string"||typeof l=="number"){let c=String(l);if(c.trim()===""&&c!==" ")continue;t.push(O(c));continue}t.push(O(String(l)))}}}}function Cr(e,t,n,r){for(let p=0;p<n.length;p++){let y=n[p].parentNode;y!==null&&y!==e&&y.nodeType!==11&&(n=n.slice(),n[p]=n[p].cloneNode(!0))}let o=n.length,i=t.length,s=o,a=0,l=0,c=i>0?t[i-1].nextSibling??void 0:r,f=null;for(;a<i||l<s;){if(t[a]===n[l]){a++,l++;continue}for(;i>a&&s>l&&t[i-1]===n[s-1];)i--,s--;if(i===a){let p=s<o?l?n[l-1].nextSibling??void 0:n[s-l]:c;for(;l<s;)T(e,n[l++],p)}else if(s===l)for(;a<i;)(!f||!f.has(t[a]))&&t[a].parentNode===e&&e.removeChild(t[a]),a++;else if(t[a]===n[s-1]&&n[l]===t[i-1]){let p=t[--i].nextSibling;T(e,n[l++],t[a++].nextSibling),T(e,n[--s],p),t[i]=t[a-1]}else{if(!f){f=new Map;let y=l;for(;y<s;)f.set(n[y],y++)}let p=f.get(t[a]);if(p!=null)if(l<p&&p<s){let y=a,m=1;for(;++y<i&&y<s&&!(!f.has(t[y])||f.get(t[y])!==p+m);)m++;if(m>p-l){let Le=t[a];for(;l<p;)T(e,n[l++],Le)}else t[a].parentNode===e?e.replaceChild(n[l++],t[a++]):(T(e,n[l++],c),a++)}else a++;else t[a].parentNode===e&&e.removeChild(t[a]),a++}}return n}function k(e,t,n){if(t)if(Array.isArray(t))for(let r=0;r<t.length;r++)t[r].parentNode===e&&e.removeChild(t[r]);else t.parentNode===e&&e.removeChild(t);return null}function T(e,t,n){u.active&&t.parentNode===e||(n&&n.parentNode===e?e.insertBefore(t,n):e.appendChild(t))}function ee(e,t,n){n==null?delete e[t]:e[t]=n}function He(e,t,n){let r=n,o;return Array.isArray(n)&&(r=n[0],o=n[1]),typeof r!="function"?()=>{}:(e.addEventListener(t,r,o),()=>e.removeEventListener(t,r,o))}function Ve(e,t){let n=(r,o)=>{typeof r=="function"&&r(e,o??(()=>{}))};if(typeof t=="function"){n(t);return}if(Array.isArray(t)){if(typeof t[0]=="function"){n(t[0],t[1]);return}for(let r of t)Array.isArray(r)?n(r[0],r[1]):n(r)}}function pe(e,t,n,r=!1){return typeof n!="function"?(E(e,t,n,r),()=>{}):(0,d.createRenderEffect)(()=>{let o=typeof n=="function"?n():n;E(e,t,o,r)})}function ye(e,t,n){return typeof n!="function"?(ee(e,t,n),()=>{}):(0,d.createRenderEffect)(()=>{let r=typeof n=="function"?n():n;ee(e,t,r)})}function We(e,t,n){return typeof n!="function"?(E(e,t,!!n),()=>{}):(0,d.createRenderEffect)(()=>{let r=n();E(e,t,!!r)})}function te(e,t){if(t==null){e.removeAttribute("class");return}if(typeof t=="function"){(0,d.createRenderEffect)(()=>te(e,t()));return}if(typeof t=="string"){e.setAttribute("class",t);return}if(Array.isArray(t)){e.setAttribute("class",t.filter(Boolean).join(" "));return}if(typeof t=="object"){let n=Object.keys(t).filter(r=>{let o=t[r];return typeof o=="function"?o():!!o}).join(" ");e.setAttribute("class",n);return}e.setAttribute("class",String(t))}function ne(e,t,n){if(!(!t||typeof t!="object"))for(let r in t){let o=t[r],i=r.split(/\s+/).filter(Boolean);if(typeof o=="function"&&n)n.push((0,d.createRenderEffect)(()=>{let s=!!o();for(let a of i)e.classList.toggle(a,s)}));else{let s=!!(typeof o=="function"?o():o);for(let a of i)e.classList.toggle(a,s)}}}function re(e,t){let n=t;for(;typeof n=="function";)n=n();if(n==null){e.removeAttribute("style");return}if(typeof n=="string"){e.style.cssText=n;return}if(typeof n=="object")for(let r in n){let o=n[r];o==null?e.style[r]="":e.style[r]=o}}function Rr(e){let{element:t,props:n,prevProps:r=mr,isSVG:o=!1,skipChildren:i=!1}=e;if(!t||!ce(t))return console.error("[spread] Error: element is not a DOM Element!"),()=>{};if(!n)return console.warn("[spread] Warning: props is undefined!"),()=>{};let s=o||t.namespaceURI===F,a=[];for(let l in n){if(i&&l==="children")continue;let c=n[l],f=r[l];if(c===f)continue;if(l==="ref"){oe(c,t);continue}if(l==="use"){Ve(t,c);continue}if(l.startsWith("on:")){a.push(He(t,l.slice(3),c));continue}if(l.startsWith("prop:")){a.push(ye(t,l.slice(5),c));continue}if(l.startsWith("attr:")){a.push(pe(t,l.slice(5),c,s));continue}if(l.startsWith("bool:")){a.push(We(t,l.slice(5),c));continue}if(l==="class"||l==="className"){typeof c=="function"?a.push((0,d.createRenderEffect)(()=>te(t,c()))):te(t,c);continue}if(l==="classList"){typeof c=="function"?a.push((0,d.createRenderEffect)(()=>ne(t,c()))):ne(t,c,a);continue}if(l==="style"){typeof c=="function"?a.push((0,d.createRenderEffect)(()=>re(t,c()))):re(t,c);continue}if(l.startsWith("on")){let y=l.slice(2).toLowerCase();f&&qe(t,y),c&&Lt(t,y,c);continue}let p=le.has(l)||!s&&l in t;typeof c=="function"?a.push(p?ye(t,l,c):pe(t,l,c,s)):a.push((0,d.createRenderEffect)(()=>p?ee(t,l,n[l]):E(t,l,n[l],s)))}for(let l in r)if(!(l in n))if(l.startsWith("on")){let c=l.slice(2).toLowerCase();qe(t,c)}else le.has(l)?ee(t,l,null):t.removeAttribute(l);return()=>{a.forEach(l=>l())}}function Ue(e,t,n=!1){for(let r in t){let o=t[r];if(r==="ref"){oe(o,e);continue}if(r!=="children"){if(r==="use"){Ve(e,o);continue}if(r.startsWith("on:")){He(e,r.slice(3),o);continue}if(r.startsWith("prop:")){ye(e,r.slice(5),o);continue}if(r.startsWith("attr:")){pe(e,r.slice(5),o,n);continue}if(r.startsWith("bool:")){We(e,r.slice(5),o);continue}if(r.startsWith("on")&&r.length>2){let i=r.slice(2).toLowerCase();if(typeof o=="function")if(me.has(i)){e[`$$${i}`]=o;let s=`__fx_${i}`;if(!e[s]){let a=l=>{e[`$$${i}`]?.(l)};e.addEventListener(i,a),e[s]=a}}else e[`$$${i}`]=o,de.has(i)||je([i]);continue}if(r==="class"||r==="className"){te(e,o);continue}if(r==="classList"){typeof o=="function"?(0,d.createRenderEffect)(()=>ne(e,o())):ne(e,o);continue}if(r==="style"){typeof o=="function"?(0,d.createRenderEffect)(()=>re(e,o())):re(e,o);continue}if(r==="innerHTML"){if(typeof o=="function"){let i=(0,d.createEffect)(()=>{let s=o();for(;typeof s=="function";)s=s();e.innerHTML=s});(0,d.onCleanup)(()=>i())}else e.innerHTML=o;continue}if(r==="value"&&(e.tagName==="INPUT"||e.tagName==="TEXTAREA")){if(typeof o=="function"){let i=(0,d.createEffect)(()=>{let s=o();for(;typeof s=="function"&&s.length===0;)s=s();document.activeElement!==e&&(e.value=s??"")});(0,d.onCleanup)(()=>{i()})}else(0,d.createRenderEffect)(()=>{document.activeElement!==e&&(e.value=t[r]??"")});continue}if(r==="checked"&&e.tagName==="INPUT"){if(typeof o=="function"){let i=(0,d.createEffect)(()=>{let s=o();for(;typeof s=="function"&&s.length===0;)s=s();document.activeElement!==e&&(e.checked=s??"")});(0,d.onCleanup)(()=>{i()})}else(0,d.createRenderEffect)(()=>{document.activeElement!==e&&(e.checked=t[r]??"")});continue}if(r==="value"&&e.tagName==="SELECT"){if(typeof o=="function"){let i=!0,s=(0,d.createEffect)(()=>{let a=o();for(;typeof a=="function"&&a.length===0;)a=a();i?(i=!1,queueMicrotask(()=>{e.value=a??""})):e.value=a??""});(0,d.onCleanup)(()=>{s()})}else{let i=!0;(0,d.createRenderEffect)(()=>{let s=t[r];i?(i=!1,queueMicrotask(()=>{e.value=s??""})):e.value=s??""})}continue}if(typeof o=="function"){let i=(0,d.createEffect)(()=>{let s=o();for(;typeof s=="function"&&s.length===0;)s=s();ae(e,r,s,n)});(0,d.onCleanup)(()=>{i()})}else(0,d.createRenderEffect)(()=>ae(e,r,t[r],n))}}}function Mr(...e){let t=r=>{for(let o=e.length-1;o>=0;o--){let i=e[o];if(i&&r in i&&i[r]!==void 0)return i[r]}},n=r=>{for(let o of e)if(o&&r in o)return!0;return!1};return new Proxy({},{get:(r,o)=>t(o),has:(r,o)=>n(o),ownKeys:()=>{let r=new Set;for(let o of e)if(o)for(let i of Reflect.ownKeys(o))r.add(i);return[...r]},getOwnPropertyDescriptor:(r,o)=>n(o)?{enumerable:!0,configurable:!0,get:()=>t(o)}:void 0})}function Pr(e,...t){let n=new Set;for(let s of t)for(let a of s)n.add(a);let r=s=>({enumerable:!0,configurable:!0,get:()=>e[s]}),o=t.map(s=>{let a=new Set(s);return new Proxy({},{get:(l,c)=>a.has(c)?e[c]:void 0,has:(l,c)=>a.has(c)&&c in e,ownKeys:()=>Array.from(a).filter(l=>l in e),getOwnPropertyDescriptor:(l,c)=>a.has(c)&&c in e?r(c):void 0})}),i=new Proxy({},{get:(s,a)=>n.has(a)?void 0:e[a],has:(s,a)=>!n.has(a)&&a in e,ownKeys:()=>Reflect.ownKeys(e).filter(s=>!n.has(s)),getOwnPropertyDescriptor:(s,a)=>!n.has(a)&&a in e?r(a):void 0});return[...o,i]}function oe(e,t){if(e){if($(e)){let n=t,r=e;if(!n)return;typeof n=="function"?n(r):typeof n=="object"&&"current"in n&&(n.current=r);return}typeof e=="function"?e(t):typeof e=="object"&&"current"in e&&(e.current=t)}}function Lr(e,t,n){let r=t||document.body,o=(0,d.readChildren)(()=>e),i=[];return(0,d.batch)(()=>{let s=(0,d.createRenderEffect)(()=>{let a=o();Array.isArray(a)?(a.forEach(l=>r.appendChild(l)),i.push(()=>{a.forEach(l=>{l.parentNode===r&&r.removeChild(l)})})):$(a)&&(r.appendChild(a),i.push(()=>{a.parentNode===r&&r.removeChild(a)}))});i.push(s),(0,d.onCleanup)(()=>{i.forEach(a=>a())})}),null}function kr(e){return typeof e=="string"&&e.toLowerCase()===e}function Be(e){return e==="svg"||e==="path"||e==="circle"||e==="rect"||e==="line"||e==="polygon"||e==="polyline"||e==="ellipse"||e==="g"||e==="defs"||e==="clipPath"||e==="text"}function Or(e){return e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function Z(e){return e!=null&&(typeof e=="object"||typeof e=="function")&&typeof e.then=="function"||e instanceof Promise}function Dr(e){return typeof e=="function"&&e.length===0&&(0,x.isSignal)(e)}function Ke(e,t,n){if(!t)throw new Error("Container element is required");let r,o,i=[];return(0,d.createRoot)(s=>{(0,d.batch)(()=>{u.active||(t.textContent=""),gt(t),ht(),C(t,e)}),o=s}),()=>{o?.(),r?.(),i.forEach(s=>s()),t.textContent=""}}function _r(e){if(Array.isArray(e))return e;if(typeof e=="function"&&typeof e.set=="function")return[e,e.set];throw new TypeError("[fluixi] bind: needs a signal — either `signal(…)` or the `[get, set]` pair from `createSignal(…)`.")}var $r="__fx_dom_create_component__",I=globalThis[$r]??={fn:null};function Ir(e){I.fn=e}function qr(e={}){let t=e.signalSystem?.createComponent;t&&(I.fn=t)}function ze(e,t){return I.fn?I.fn(e,t):(()=>e(t))}var jr=()=>I.fn!==null,Fr=()=>I.fn!==null;function Hr(){I.fn=null}var ge,$t={getStore:()=>ge,run(e,t){let n=ge;ge=e;try{return t()}finally{ge=n}}},Ge=$t;function Xe(e){Ge=e??$t}function W(e={}){e.locals||(e.locals=e.request?xe(e.request):{});let t=0,n=0,r=null,o=new Map,i=new Map;return{event:e,routeData:new Map,matchedRoute:new Map,nextId:()=>`s${t++}`,nextResourceId:()=>{if(r===null)return`r${n++}`;let s=o.get(r)??0;return o.set(r,s+1),`${r}:r${s}`},nextIslandNamespace:s=>{let a=i.get(s)??0;return i.set(s,a+1),`${s}#${a}`},withResourceScope(s,a){let l=r;r=s;try{return a()}finally{r=l}},pending:new Set,data:new Map}}function U(e,t){return Ge.run(e,t)}function R(){return Ge.getStore()}function he(){return R()?.event}function Je(){let e=he();return e?(e.locals||(e.locals={}),e.locals):{}}var _t=new WeakMap;function xe(e){let t=_t.get(e);return t||(t={},_t.set(e,t)),t}var Te=require("@fluixi/reactive/signal");var B="__FX_DATA__";function ie(e){return e.replace(/[<>&\u2028\u2029]/g,t=>"\\u"+t.charCodeAt(0).toString(16).padStart(4,"0"))}var Ye;function se(){let e=globalThis.__FX_DATA__;if(e)return e;if(Ye!==void 0)return Ye;let t=null;if(typeof document<"u"){let n=document.getElementById(B)?.textContent;if(n)try{t=JSON.parse(n)}catch{t=null}}return Ye=t}function be(){for(;;){for(;u.cursor&&u.cursor.nodeType===3&&u.cursor.data==="";)u.cursor=u.cursor.nextSibling;if(u.cursor!=null||!u.parents.length)return;u.cursor=u.parents.pop().nextSibling}}var Vr=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),Ee=typeof process<"u"&&process.env&&!1;function we(e,t){let n=t.nodeType===1?`<${t.tagName.toLowerCase()}>`:t.nodeType===3?`text ${JSON.stringify((t.nodeValue??"").slice(0,24))}`:t.nodeType===8?"comment":"node";console.warn(`[fluixi] hydration mismatch: expected ${e} but the server DOM has ${n}. Server and client rendered different markup; recreating this node on the client. Check for non-deterministic render (Date.now(), Math.random(), browser-only branches, untransported data).`)}function Wr(e){be();let t=u.cursor;return t&&t.nodeType===1&&t.tagName.toLowerCase()===e.toLowerCase()?(Vr.has(e.toLowerCase())?u.cursor=t.nextSibling:(u.parents.push(t),u.cursor=t.firstChild),t):(Ee&&t&&we(`<${e}>`,t),null)}function Ur(e){be();let t=u.cursor;return t&&t.nodeType===1&&t.tagName.toLowerCase()===e.toLowerCase()?(u.cursor=t.nextSibling,t):(Ee&&t&&we(`<${e}> (static)`,t),null)}function Br(e){if(e===""){let n=u.cursor;return n&&n.nodeType===3&&n.data!==""?(u.cursor=n.nextSibling,n.data="",n):null}be();let t=u.cursor;return t&&t.nodeType===3?(u.cursor=t.nextSibling,t.nodeValue!==e&&(t.nodeValue=e),t):(Ee&&t&&we(`text ${JSON.stringify(e.slice(0,24))}`,t),null)}function Kr(e){be();let t=u.cursor;return t&&t.nodeType===8&&t.data===e?(u.cursor=t.nextSibling,t):(Ee&&t&&we(`marker <!--${e.slice(0,24)}-->`,t),null)}var It=!1;function zr(){It||(It=!0,Ct({hydrateElement:Wr,hydrateText:Br,hydrateMarker:Kr,hydrateStatic:Ur}))}function Ne(e,t,n){zr(),u.active=!0,u.cursor=t.firstChild,u.parents=[];let r=se(),o=n?.resourceNamespace,i=0;(0,Te.setResourceIdSource)(()=>o?`${o}:r${i++}`:`r${i++}`),(0,Te.setServerDataGetter)(r?s=>s in r?{value:r[s]}:void 0:null);try{return Ke(e,t)}finally{u.active=!1,u.cursor=null,u.parents=[]}}var Ze="fluixi-island";function jt(e){let{component:t,props:n={},name:r}=e,o=Fe(Ze),i=r??t.name??"Island";E(o,"name",i),E(o,"props",JSON.stringify(n??{}));let s=g?R():void 0;if(s){let a=s.nextIslandNamespace(i);C(o,()=>s.withResourceScope(a,()=>t(n)))}else C(o,()=>t(n));return o}var qt=!1;function Gr(){if(qt||typeof document>"u")return;qt=!0;let e=document.createElement("style");e.textContent=`${Ze}{display:contents}`,document.head.appendChild(e)}function Ft(e){if(typeof document>"u")return;Gr();let t=document.querySelectorAll(Ze),n=new Map;t.forEach(r=>{let o=r.getAttribute("name")??"",i=n.get(o)??0;n.set(o,i+1);let s=e[o];if(!s){typeof process>"u"&&console.warn(`[fluixi] island "${o}" has no component in the registry — left static.`);return}let a={};try{a=JSON.parse(r.getAttribute("props")||"{}")}catch{}Ne(()=>s(a),r,{resourceNamespace:`${o}#${i}`})})}function Ht(e,...t){throw new Error("html`` was not compiled — enable the lit format: fluixi({ format: 'lit' }).")}function Vt(e,...t){throw new Error("svg`` was not compiled — enable the lit format: fluixi({ format: 'lit' }).")}var Wt=require("@fluixi/reactive/signal");function Xr(e,t={}){if(typeof e=="function")return ze(e,t);if(typeof e!="string"||e.length===0)return null;let n=Be(e);if(g)return H().createElement(e,n);let r=n?document.createElementNS(F,e):document.createElement(e);return Ue(r,t,n),Jr(r,t),r}function Jr(e,t){if(!t||t.children===void 0)return;let n=(0,Wt.readChildren)(()=>t.children),r=o=>{C(e,o,typeof o=="function"?null:void 0)};Array.isArray(n)?n.forEach(r):r(n)}var h=require("@fluixi/reactive/signal");function Ut(e){return typeof e=="function"?e:(()=>e)}function D(e){return()=>{let t=e();return typeof t=="function"?t():t}}function Bt(e){return e!=null&&e!==!1}function Kt(e){return!e||typeof e!="object"?!1:!!(typeof e._$litType$<"u"||typeof e._$litDirective$<"u"||Array.isArray(e.strings)&&Array.isArray(e.values))}function zt(e){let t=D(()=>e.when),n=(0,h.createMemo)(t,void 0),r=(0,h.createMemo)(n,void 0),o=(0,h.getOwner)(),i=null,s=null,a=l=>{l!==s&&(i&&(0,h.disposeScope)(i),i=(0,h.createChildOwner)(o),s=l)};return(0,h.createMemo)(()=>{let l=r();return a(l?"when":"fallback"),(0,h.runWithOwner)(i,()=>{if(l){let c=e.children;return typeof c=="function"&&!Kt(c)?typeof n=="function"?(0,h.untrack)(()=>(0,h.untrack)(n)?c(n()):e.fallback):c(n):c}return e.fallback});return e.fallback??null},void 0,{name:"show"})}var Se=require("@fluixi/reactive/signal");function Gt(e){let t=D(()=>e.each),n=()=>e.fallback??null,r=(o,i)=>{let s=e.children,a=Array.isArray(s)?s.map(l=>typeof l=="function"?l(o,i):l):typeof s=="function"?s(o,i):s;return V(a),a};return e.by?(0,Se.keyArray)(t,e.by,(o,i)=>r(o,i),{fallback:n}):(0,Se.mapArray)(t,(o,i)=>r(o,i),{fallback:n})}var Xt=require("@fluixi/reactive/signal");function Jt(e){let t=D(()=>e.each);return(0,Xt.indexArray)(t,(n,r)=>{let o=e.children(n,r);return V(o),o},{fallback:()=>e.fallback??null})}var K=require("@fluixi/reactive/signal");var S=require("@fluixi/reactive/signal");var Qe=Symbol("match");function Yt(e){return{[Qe]:!0,when:D(()=>e.when),get children(){return e.children}}}function Zt(e){let t=Array.isArray(e.children)?e.children:[e.children],n=(0,S.getOwner)(),r=null,o=-1,i=s=>{s!==o&&(r&&(0,S.disposeScope)(r),r=(0,S.createChildOwner)(n),o=s)};return(0,S.createMemo)(()=>{for(let s=0;s<t.length;s+=1){let l=t[s],c=0;for(;typeof l=="function"&&!l[Qe]&&c++<10;)l=l();if(!l||typeof l!="object"||l[Qe]!==!0)continue;let f=l.when();if(Bt(f))return i(s),(0,S.runWithOwner)(r,()=>typeof l.children=="function"?l.children(f):l.children)}return i(-2),(0,S.runWithOwner)(r,()=>e.fallback??null)})}var M=require("@fluixi/reactive/signal");function Qt(e){let t=Ut(e.component),{component:n,...r}=e,o=(0,M.getOwner)(),i=null,s;return(0,M.createMemo)(()=>{let a=t();return a!==s&&(i&&(0,M.disposeScope)(i),i=(0,M.createChildOwner)(o),s=a),a==null?null:typeof a=="string"?{tag:a,props:r}:(0,M.runWithOwner)(i,()=>a(r))})}var ve=require("@fluixi/reactive/signal");function en(e){let t=()=>e.mount?typeof e.mount=="function"?e.mount():e.mount:document.body,n,r;return(0,ve.createRoot)(o=>{n=o,r=document.createElement("div"),r.style.display="contents",t().appendChild(r),C(r,e.children)&&oe(e.ref,r)}),(0,ve.onCleanup)(()=>{n(),r.remove()}),null}var Ae=require("@fluixi/reactive/signal");function et(e){if(g)return e.fallback??null;let t=u.active,[n,r]=(0,Ae.createSignal)(!t);return t&&queueMicrotask(()=>r(!0)),(0,Ae.createMemo)(()=>n()?e.children:e.fallback??null,void 0,{name:"client-only"})}var tn=et;var Ce=require("@fluixi/reactive/signal");function nn(e){let[t,n]=(0,Ce.createSignal)(null),r=()=>n(null);return(0,Ce.createMemo)(()=>{let o=t();if(o!==null)return typeof e.fallback=="function"?e.fallback(o,r):e.fallback;try{return typeof e.children=="function"?e.children():e.children}catch(i){return n(i),typeof e.fallback=="function"?e.fallback(i,r):e.fallback}})}var rn=require("@fluixi/reactive/signal");function on(e){return(0,rn.createMemo)(()=>{let t=typeof e=="function"?e():e,n=[];for(let[r,o]of Object.entries(t)){if(!r)continue;(typeof o=="function"?o():o)&&n.push(r)}return n.join(" ")})}var sn=require("@fluixi/reactive/signal");function Yr(e){return e.startsWith("--")?e:e.replace(/[A-Z]/g,t=>`-${t.toLowerCase()}`)}function an(e){return(0,sn.createMemo)(()=>{let t=typeof e=="function"?e():e,n=[];for(let[r,o]of Object.entries(t)){if(!r)continue;let i=typeof o=="function"?o():o;i!=null&&n.push(`${Yr(r)}: ${i}`)}return n.join("; ")})}var Me=1,rt=3,ot=8,ln;ln=J;var z=class{constructor(){this[ln]=!0;this.parentNode=null;this.childNodes=[]}get firstChild(){return this.childNodes[0]??null}get lastChild(){return this.childNodes[this.childNodes.length-1]??null}get nextSibling(){let t=this.parentNode;if(!t)return null;let n=t.childNodes.indexOf(this);return n>=0?t.childNodes[n+1]??null:null}get previousSibling(){let t=this.parentNode;if(!t)return null;let n=t.childNodes.indexOf(this);return n>0?t.childNodes[n-1]??null:null}get parentElement(){return this.parentNode}appendChild(t){return t.parentNode&&t.parentNode.removeChild(t),t.parentNode=this,this.childNodes.push(t),t}insertBefore(t,n){if(n==null)return this.appendChild(t);t.parentNode&&t.parentNode.removeChild(t);let r=this.childNodes.indexOf(n);return t.parentNode=this,r<0?this.childNodes.push(t):this.childNodes.splice(r,0,t),t}removeChild(t){let n=this.childNodes.indexOf(t);return n>=0&&this.childNodes.splice(n,1),t.parentNode=null,t}replaceChild(t,n){let r=this.childNodes.indexOf(n);return r>=0&&(t.parentNode&&t.parentNode.removeChild(t),t.parentNode=this,this.childNodes[r]=t,n.parentNode=null),n}addEventListener(){}removeEventListener(){}},q=class e extends z{constructor(n){super();this.nodeType=rt;this.data=n}get nodeValue(){return this.data}set nodeValue(n){this.data=n==null?"":String(n)}get textContent(){return this.data}set textContent(n){this.data=n==null?"":String(n)}cloneNode(){return new e(this.data)}},Re=class e extends z{constructor(n){super();this.nodeType=Me;this.rawOuterHTML=n}get textContent(){return this.rawOuterHTML.replace(/<[^>]*>/g,"")}cloneNode(){return new e(this.rawOuterHTML)}},G=class e extends z{constructor(n){super();this.nodeType=ot;this.data=n}get nodeValue(){return this.data}set nodeValue(n){this.data=n==null?"":String(n)}cloneNode(){return new e(this.data)}},tt=class{constructor(){this.cssText=""}setProperty(t,n){this[t]=n}removeProperty(t){delete this[t]}},nt=class{constructor(t){this.el=t}list(){let t=this.el.getAttribute("class");return t?t.split(/\s+/).filter(Boolean):[]}write(t){t.length?this.el.setAttribute("class",t.join(" ")):this.el.removeAttribute("class")}add(...t){let n=this.list();for(let r of t)n.includes(r)||n.push(r);this.write(n)}remove(...t){this.write(this.list().filter(n=>!t.includes(n)))}contains(t){return this.list().includes(t)}toggle(t,n){let r=this.contains(t),o=n===void 0?!r:n;return o?this.add(t):this.remove(t),o}},j=class e extends z{constructor(n,r=!1){super();this.nodeType=Me;this.attributes=new Map;this.style=new tt;this.classList=new nt(this);this.rawHTML=null;this.localName=n.toLowerCase(),this.tagName=r?n:n.toUpperCase(),this.isSVG=r,this.namespaceURI=r?"http://www.w3.org/2000/svg":null}setAttribute(n,r){this.attributes.set(n,String(r))}removeAttribute(n){this.attributes.delete(n)}getAttribute(n){return this.attributes.has(n)?this.attributes.get(n):null}hasAttribute(n){return this.attributes.has(n)}get id(){return this.getAttribute("id")??""}set id(n){n==null?this.removeAttribute("id"):this.setAttribute("id",n)}get className(){return this.getAttribute("class")??""}set className(n){n==null?this.removeAttribute("class"):this.setAttribute("class",n)}get htmlFor(){return this.getAttribute("for")??""}set htmlFor(n){n==null?this.removeAttribute("for"):this.setAttribute("for",n)}set value(n){n==null?this.removeAttribute("value"):this.setAttribute("value",String(n))}set checked(n){n?this.setAttribute("checked",""):this.removeAttribute("checked")}set selected(n){n?this.setAttribute("selected",""):this.removeAttribute("selected")}set indeterminate(n){}get textContent(){return this.childNodes.map(n=>n.textContent??"").join("")}set textContent(n){for(let r of this.childNodes)r.parentNode=null;this.childNodes=[],this.rawHTML=null,n!=null&&n!==""&&this.appendChild(new q(String(n)))}set innerText(n){this.textContent=n}set innerHTML(n){for(let r of this.childNodes)r.parentNode=null;this.childNodes=[],this.rawHTML=n==null?"":String(n)}cloneNode(n=!1){let r=new e(this.localName,this.isSVG);if(r.attributes=new Map(this.attributes),r.style.cssText=this.style.cssText,r.rawHTML=this.rawHTML,n)for(let o of this.childNodes)r.appendChild(o.cloneNode(!0));return r}};var Zr=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),un=/&/g,fn=/</g,dn=/>/g,Qr=/"/g;function it(e){return e.replace(un,"&").replace(fn,"<").replace(dn,">")}function cn(e){return e.replace(un,"&").replace(Qr,""").replace(fn,"<").replace(dn,">")}function eo(e){return e.startsWith("--")?e:e.replace(/[A-Z]/g,t=>"-"+t.toLowerCase())}function to(e){if(!e)return"";let t=[];e.cssText&&t.push(e.cssText.trim().replace(/;\s*$/,""));for(let n of Object.keys(e)){if(n==="cssText")continue;let r=e[n];r==null||r===""||t.push(`${eo(n)}: ${r}`)}return t.join("; ")}function no(e){let t="",n=to(e.style);for(let[r,o]of e.attributes)r==="style"&&n||(t+=` ${r}="${cn(o)}"`);if(n){let r=e.attributes.get("style"),o=r?`${r.replace(/;\s*$/,"")}; ${n}`:n;t+=` style="${cn(o)}"`}return t}function v(e){if(e==null||e===!1||e===!0)return"";if(typeof e=="string")return it(e);if(typeof e=="number")return it(String(e));if(typeof e=="function")return v(e());if(Array.isArray(e))return e.map(v).join("");if(typeof e.rawOuterHTML=="string")return e.rawOuterHTML;switch(e.nodeType){case rt:return it(e.data??"");case ot:return`<!--${e.data??""}-->`;case Me:{let t=e.localName,n=`<${t}${no(e)}>`;if(Zr.has(t))return n;let r=e.rawHTML!=null?e.rawHTML:(e.childNodes??[]).map(v).join("");return`${n}${r}</${t}>`}}return Array.isArray(e.childNodes)?e.childNodes.map(v).join(""):""}var at=require("@fluixi/reactive/signal"),b=require("@fluixi/reactive/signal");var ro=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),oo={amp:"&",lt:"<",gt:">",quot:'"',"#39":"'"};function pn(e){return e.replace(/&(#?\w+);/g,(t,n)=>oo[n]??t)}var A=class extends Error{};function yn(e,t=!1){let n=0,r=[],o=[],i=c=>{let f=o[o.length-1];f?f.appendChild(c):r.push(c)};for(;n<e.length;){let c=e.indexOf("<",n);if(c===-1){a(e.slice(n));break}if(c>n&&a(e.slice(n,c)),e.startsWith("<!--",c)){let f=e.indexOf("-->",c);if(f===-1)throw new A(`unterminated comment at ${c}`);i(new G(e.slice(c+4,f))),n=f+3;continue}if(e[c+1]==="/"){let f=e.indexOf(">",c);if(f===-1)throw new A(`unterminated closing tag at ${c}`);let p=e.slice(c+2,f).trim().toLowerCase(),y=o.pop();if(!y||y.localName!==p)throw new A(`</${p}> does not close <${y?.localName??"nothing"}>`);n=f+1;continue}n=l(c)}if(o.length>0)throw new A(`unclosed <${o[o.length-1].localName}>`);let s=r[0];if(r.length!==1||!(s instanceof j))throw new A(`expected exactly one root element, got ${r.length}`);return s;function a(c){c!==""&&i(new q(pn(c)))}function l(c){let f=/[\s/>]/.exec(e.slice(c+1));if(!f)throw new A(`unterminated tag at ${c}`);let p=e.slice(c+1,c+1+f.index).toLowerCase(),y=new j(p,t),m=c+1+f.index;for(;m<e.length;){for(;m<e.length&&/\s/.test(e[m]);)m++;if(e[m]===">"){m++;break}if(e[m]==="/"&&e[m+1]===">"){m+=2;break}let Le=m;for(;m<e.length&&!/[\s=/>]/.test(e[m]);)m++;let X=e.slice(Le,m);if(X==="")throw new A(`malformed attribute at ${m}`);if(e[m]==="="){if(e[m+1]!=='"')throw new A(`attribute ${X} must have a double-quoted value`);let ke=e.indexOf('"',m+2);if(ke===-1)throw new A(`unterminated value for ${X}`);y.setAttribute(X,pn(e.slice(m+2,ke))),m=ke+1}else y.setAttribute(X,"")}return i(y),ro.has(p)||o.push(y),m}}var mn=!1;function hn(){mn||(mn=!0,vt({createElement:(e,t)=>new j(e,t),createText:e=>new q(e),createRaw:e=>new Re(e),parseTemplate:(e,t)=>yn(e,t),createComment:e=>new G(e)}))}function lt(e,t={}){let n=g;hn(),_(!0);let r=W(t.event);try{return U(r,()=>(0,at.createRoot)(o=>{try{let i=typeof e=="function"?e():e;return v(i)}finally{o()}}))}finally{_(n)}}var gn=!1;function io(){gn||(gn=!0,(0,b.setResourceTracker)(e=>{R()?.pending.add(e)}),(0,b.setResourceIdSource)(()=>R()?.nextResourceId()??""),(0,b.setResourceDataSink)((e,t)=>{e&&R()?.data.set(e,t)}))}var st=null;function ct(e){st=e}function Pe(e){if(e.data.size===0)return"";let t={};for(let[r,o]of e.data){let i=o;if(st)try{i=st(o,r)}catch{continue}i!==void 0&&(typeof i=="function"||typeof i=="symbol"||(t[r]=i))}if(Object.keys(t).length===0)return"";let n=ie(JSON.stringify(t));return n==="{}"?"":`<script type="application/json" id="${B}">${n}<\/script>`}var so=50;async function ut(e,t={}){let n=g;hn(),_(!0),io();let r=W(t.event);try{return await U(r,async()=>{t.preload&&await t.preload(t.event);let o,i=null,s=()=>{};(0,at.createRoot)(f=>{s=f,i=(0,b.getOwner)(),o=typeof e=="function"?e():e});let a=()=>{try{(0,b.runWithOwner)(i,()=>v(o))}catch{}};a();let l=0;for(;r.pending.size>0&&l++<so;){let f=Array.from(r.pending);r.pending.clear(),await Promise.allSettled(f),await(0,b.flush)(),a()}let c=(0,b.runWithOwner)(i,()=>v(o))+Pe(r);return s(),c})}finally{_(n)}}
|
|
1
|
+
"use strict";var De=Object.defineProperty;var bn=Object.getOwnPropertyDescriptor;var En=Object.getOwnPropertyNames;var wn=Object.prototype.hasOwnProperty;var Nn=(e,t)=>{for(var n in t)De(e,n,{get:t[n],enumerable:!0})},Sn=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of En(t))!wn.call(e,o)&&o!==n&&De(e,o,{get:()=>t[o],enumerable:!(r=bn(t,o))||r.enumerable});return e};var vn=e=>Sn(De({},"__esModule",{value:!0}),e);var lo={};Nn(lo,{ClientOnly:()=>nt,Dynamic:()=>tn,ErrorBoundary:()=>on,FX_DATA_ID:()=>B,For:()=>Jt,Index:()=>Zt,Island:()=>Ht,JSX_PROPERTIES:()=>le,Match:()=>Qt,NoSsr:()=>rn,Portal:()=>nn,SVG_ELEMENTS:()=>kn,SVG_NAMESPACE:()=>F,Show:()=>Xt,Switch:()=>en,VOID_ELEMENTS:()=>Pn,addClass:()=>Dn,addDelegatedEventListener:()=>Ot,addNativeEventListener:()=>We,appendChildren:()=>Wn,applyElementProp:()=>ae,applyProps:()=>Ke,applyUse:()=>Ue,asComponent:()=>$e,asContext:()=>cr,asOutlet:()=>ar,asProvider:()=>lr,asRoute:()=>sr,asRouter:()=>or,asRoutes:()=>ir,asSuspense:()=>ur,bindPair:()=>$r,captureHydrationCursor:()=>Pt,checkRenderType:()=>fr,classMap:()=>an,cleanChildren:()=>L,cloneTemplate:()=>_t,closest:()=>On,createComponent:()=>Xe,createDynamicElement:()=>Jr,createElement:()=>Hn,createNativeElement:()=>Ve,createPortal:()=>Lr,createRequestContext:()=>W,createTemplate:()=>Dt,delegate:()=>zn,delegateEvents:()=>He,escapeFxJson:()=>ie,escapeHTML:()=>Dr,fnName:()=>Sr,generateID:()=>mr,getAttribute:()=>qn,getGlobal:()=>rr,getLitEventName:()=>Rn,getLocals:()=>Ze,getOffset:()=>Kn,getRequestContext:()=>R,getRequestEvent:()=>xe,getRequestLocals:()=>Te,getServerData:()=>se,getStableElementId:()=>yr,getStyle:()=>Fn,handleRef:()=>oe,hasClass:()=>In,holeContent:()=>Nr,holeEnd:()=>wr,holeScope:()=>Er,html:()=>Wt,hydrate:()=>Se,hydrateAdvancePast:()=>V,hydrateIslands:()=>Vt,indexArray:()=>K.indexArray,initializeIntegration:()=>jr,insert:()=>C,insertExpression:()=>Q,intergartionInitialized:()=>Fr,isAccessor:()=>_r,isComponent:()=>N,isContext:()=>vt,isCustomElement:()=>pt,isDOMNode:()=>tr,isDelegatedEvent:()=>xr,isDomElement:()=>ce,isDomNode:()=>$,isDomText:()=>ue,isEventHandler:()=>Cn,isFunction:()=>Tr,isIntegrationInitialized:()=>Hr,isJSXTemplate:()=>er,isLitTemplateResult:()=>mt,isNativeElement:()=>Or,isOutlet:()=>Nt,isPromise:()=>Z,isProvider:()=>St,isReactElement:()=>Zn,isRoute:()=>wt,isRouter:()=>bt,isRoutes:()=>Et,isSVGElement:()=>ze,isServer:()=>g,isSuspense:()=>At,isTemplateFactory:()=>Qn,isVisible:()=>Un,iterateFn:()=>vr,keyArray:()=>K.keyArray,makeArrayFlat:()=>$t,mapArray:()=>K.mapArray,mergeProps:()=>Pr,observeIntersection:()=>Xn,observeResize:()=>Jn,query:()=>_e,queryAll:()=>Ln,registerCreateComponent:()=>qr,registerGlobal:()=>nr,removeAttribute:()=>jn,removeChildren:()=>Vn,removeClass:()=>_n,removeDelegatedEventListener:()=>Fe,render:()=>Ge,renderToString:()=>ut,renderToStringAsync:()=>dt,resetIntegration:()=>Vr,runHydrationAt:()=>Y,runWithRequestContext:()=>U,runWithoutHydration:()=>kt,scrollIntoView:()=>Bn,serializeNode:()=>v,serializeResourceData:()=>ke,setAttribute:()=>E,setClassList:()=>ne,setClassName:()=>te,setDataRedactor:()=>ft,setDynamicAttribute:()=>pe,setDynamicBoolAttribute:()=>Be,setDynamicProperty:()=>ye,setProperty:()=>ee,setRequestStore:()=>Ye,setServerMode:()=>_,setStyle:()=>re,setStyles:()=>yt,shouldSetAsProperty:()=>Mn,splitProps:()=>kr,spread:()=>Mr,styleMap:()=>cn,svg:()=>Ut,templateNode:()=>br,toAttributeName:()=>An,toggleClass:()=>$n,waitForElement:()=>Gn});module.exports=vn(lo);function An(e){return e.startsWith("aria-")||e.startsWith("data-")?e:/[A-Z]/.test(e)?e.replace(/([A-Z])/g,"-$1").toLowerCase():e}function Cn(e){return e.startsWith("@")||e.startsWith("on")&&e.length>2}function Rn(e){return e.startsWith("@")?e.slice(1):e.startsWith("on")?e.slice(2).toLowerCase():e}function Mn(e,t){let n=new Set(["checked","value","selected","disabled","readonly","required","multiple","open","contenteditable","draggable","spellcheck"]),r={input:new Set(["value","checked","indeterminate"]),textarea:new Set(["value"]),select:new Set(["value"]),option:new Set(["selected","value"]),audio:new Set(["volume","currentTime","paused"]),video:new Set(["volume","currentTime","paused"]),img:new Set(["src","srcset"]),iframe:new Set(["src"]),a:new Set(["href"])};return n.has(t)||r[e]&&r[e].has(t)}var Pn=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),kn=new Set(["svg","g","path","circle","rect","line","polyline","polygon","ellipse","text","tspan","use","defs","symbol","mask","clipPath","pattern","linearGradient","radialGradient","stop","filter","feGaussianBlur","feOffset","feMerge","feMergeNode","foreignObject"]),F="http://www.w3.org/2000/svg";function pt(e){return e.localName.includes("-")}function ae(e,t,n,r=!1){if(n==null){e.removeAttribute(t);return}if(pt(e)){e[t]=n;return}E(e,t,n,r)}var le=new Set(["className","value","checked","selected","innerHTML","innerText","textContent","indeterminate","htmlFor"]);function _e(e,t=document){return t.querySelector(e)}function Ln(e,t=document){return Array.from(t.querySelectorAll(e))}function On(e,t){return e.closest(t)}function Dn(e,...t){e.classList.add(...t)}function _n(e,...t){e.classList.remove(...t)}function $n(e,...t){t.forEach(n=>e.classList.toggle(n))}function In(e,t){return e.classList.contains(t)}function E(e,t,n,r=!1){if(n==null||n===!1){e.removeAttribute(t);return}if(n===!0){e.setAttribute(t,"");return}if(typeof n=="object"){e.setAttribute(t,JSON.stringify(n));return}e.setAttribute(t,String(n))}function qn(e,t){return e.getAttribute(t)}function jn(e,t){e.removeAttribute(t)}function yt(e,t){Object.assign(e.style,t)}function Fn(e,t){return window.getComputedStyle(e).getPropertyValue(t)}function Hn(e,t={},...n){let r=document.createElement(e);return Object.entries(t).forEach(([o,i])=>{if(o==="class"||o==="className")r.className=i;else if(o==="style"&&typeof i=="object")yt(r,i);else if(o.startsWith("on")&&typeof i=="function"){let s=o.slice(2).toLowerCase();r.addEventListener(s,i)}else E(r,o,i)}),n.forEach(o=>{typeof o=="string"?r.appendChild(document.createTextNode(o)):r.appendChild(o)}),r}function Vn(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function Wn(e,...t){t.forEach(n=>{typeof n=="string"?e.appendChild(document.createTextNode(n)):e.appendChild(n)})}function Un(e){let t=e.getBoundingClientRect();return t.top>=0&&t.left>=0&&t.bottom<=window.innerHeight&&t.right<=window.innerWidth}function Bn(e,t={behavior:"smooth",block:"nearest"}){e.scrollIntoView(t)}function Kn(e){let t=e.getBoundingClientRect();return{top:t.top+window.pageYOffset,left:t.left+window.pageXOffset}}function zn(e,t,n,r){let o=i=>{let s=i.target.closest(n);s&&e.contains(s)&&r(i,s)};return e.addEventListener(t,o),()=>{e.removeEventListener(t,o)}}function Gn(e,t=5e3){return new Promise((n,r)=>{let o=_e(e);if(o){n(o);return}let i=new MutationObserver(()=>{let a=_e(e);a&&(i.disconnect(),clearTimeout(s),n(a))});i.observe(document.body,{childList:!0,subtree:!0});let s=setTimeout(()=>{i.disconnect(),r(new Error(`Element ${e} not found within ${t}ms`))},t)})}function Xn(e,t,n={}){let r=new IntersectionObserver(o=>{o.forEach(i=>{t(i.isIntersecting)})},n);return r.observe(e),()=>{r.disconnect()}}function Jn(e,t){let n=new ResizeObserver(r=>{r.forEach(t)});return n.observe(e),()=>{n.disconnect()}}var Yn=typeof Symbol=="function"&&Symbol.for?Symbol.for("react.element"):60103;function Zn(e){return typeof e=="object"&&e!==null&&e.$$typeof===Yn}function mt(e){return e&&typeof e=="object"&&e.strings&&Array.isArray(e.strings)&&e.values&&Array.isArray(e.values)}function Qn(e){if(typeof e!="function")return!1;try{let t=e();return mt(t)}catch{return!1}}function er(e){return typeof e=="object"&&e!==null&&(e.$$typeof==="template"||typeof e.type=="function")}function tr(e){return e instanceof Node}function nr(e,t,n="Fluixi"){typeof globalThis<"u"&&(typeof globalThis[n]>"u"&&(globalThis[n]={}),typeof globalThis[n][e]>"u"&&(globalThis[n][e]=t))}function rr(e,t,n="Fluixi"){return typeof globalThis<"u"&&typeof globalThis[n]<"u"&&typeof globalThis[n][e]<"u"?globalThis[n][e]:t}var x=require("@fluixi/reactive/signal");var gt="1.0.0-alpha.80";var ht=require("@fluixi/reactive/version"),w={dom:gt,reactive:ht.VERSION};function xt(e){w.core&&e.setAttribute("fluixi",w.core),e.setAttribute("fx-dom",w.dom),e.setAttribute("fx-reactive",w.reactive),typeof globalThis<"u"&&(globalThis.Fluixi=w)}function Tt(){let e=[w.core,w.dom,w.reactive].filter(t=>t!==void 0);new Set(e).size<=1||console.warn(`[fluixi] package versions disagree — core ${w.core??"(absent)"}, dom ${w.dom}, reactive ${w.reactive}. These ship as one release, so a mismatch usually means a stale lockfile or two copies resolved side by side. Reinstall, or check for duplicates with \`pnpm why @fluixi/dom\`.`)}function or(e){return Object.defineProperty(e,Symbol.for("fluixi-router"),{value:!0,enumerable:!0}),e}function ir(e){return Object.defineProperty(e,Symbol.for("fluixi-routes"),{value:!0,enumerable:!0}),e}function sr(e){return Object.defineProperty(e,Symbol.for("fluixi-route"),{value:!0,enumerable:!0}),e}function ar(e){return typeof e!="function"||Object.defineProperty(e,Symbol.for("fluixi-outlet"),{value:!0,enumerable:!0}),e}function lr(e){return Object.defineProperty(e,Symbol.for("fluixi-provider"),{value:!0,enumerable:!0}),e}function cr(e){return Object.defineProperty(e,Symbol.for("fluixi-context"),{value:!0,enumerable:!0}),e}function $e(e){return typeof e!="function"||Object.defineProperty(e,Symbol.for("fluixi-component"),{value:!0,enumerable:!0}),e}function ur(e){return Object.defineProperty(e,Symbol.for("fluixi-suspense"),{value:!0,enumerable:!0}),e}function bt(e){return typeof e=="function"&&e[Symbol.for("fluixi-router")]===!0}function Et(e){return typeof e=="function"&&e[Symbol.for("fluixi-routes")]===!0}function wt(e){return typeof e=="function"&&e[Symbol.for("fluixi-route")]===!0}function Nt(e){return typeof e=="function"&&e[Symbol.for("fluixi-outlet")]===!0}function St(e){return typeof e=="function"&&e[Symbol.for("fluixi-provider")]===!0}function vt(e){return typeof e=="function"&&e[Symbol.for("fluixi-context")]===!0}function N(e){return typeof e=="function"&&e[Symbol.for("fluixi-component")]===!0}function At(e){return typeof e=="function"&&e[Symbol.for("fluixi-suspense")]===!0}function fr(e){return bt(e)?{type:"router",value:e}:wt(e)?{type:"route",value:e}:Et(e)?{type:"routes",value:e}:Nt(e)?{type:"outlet",value:e}:N(e)?{type:"component",value:e}:At(e)?{type:"suspense",value:e}:St(e)?{type:"provider",value:e}:vt(e)?{type:"context",value:e}:{type:"none",value:e}}var d=require("@fluixi/reactive/signal");var g=typeof document>"u";function _(e){g=e}var J=Symbol.for("fluixi.server-node"),Ie=null;function Ct(e){Ie=e}function H(){if(!Ie)throw new Error("[fluixi] server render ran before @fluixi/dom/server loaded");return Ie}function $(e){return e!=null&&e[J]===!0?!0:typeof Node<"u"&&e instanceof Node}function ce(e){return e!=null&&e[J]===!0?e.nodeType===1:typeof Element<"u"&&e instanceof Element}function ue(e){return e!=null&&e[J]===!0?e.nodeType===3:typeof Text<"u"&&e instanceof Text}var u={active:!1,cursor:null,parents:[]},Rt=null;function Mt(e){Rt=e}function fe(){return Rt}function qe(e,t){return u.active&&t.parentNode===e}function je(e){let t=u.parents.lastIndexOf(e);t!==-1&&(u.parents.length=t),u.cursor=e.nextSibling}function Pt(){return u.active?u.cursor:null}function Y(e,t){if(!e||e.parentNode==null)return t();let n=u.active,r=u.cursor,o=u.parents;u.active=!0,u.cursor=e,u.parents=[];try{return t()}finally{u.active=n,u.cursor=r,u.parents=o}}function kt(e){if(!u.active)return e();let t=u.cursor,n=u.parents;u.active=!1,u.parents=[];try{return e()}finally{u.active=!0,u.cursor=t,u.parents=n}}function V(e){if(!u.active||e==null)return;let t=Array.isArray(e)?e[e.length-1]:e;t&&typeof t.nodeType=="number"&&je(t)}function dr(e){let t=[];for(;e&&e.nodeType===1;){let n=e.tagName.toLowerCase();if(e.id){n+=`#${e.id}`,t.unshift(n);break}e.getAttribute("data-id")&&(n+=`[data-id="${e.getAttribute("data-id")}"]`);let r=0,o=e;for(;o=o.previousElementSibling;)o.tagName===e.tagName&&r++;n+=`:nth-of-type(${r+1})`,t.unshift(n),e=e.parentElement}return t.join(">")}function pr(e){let t=0;for(let n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return`el_${Math.abs(t)}`}function yr(e){return pr(dr(e))}var mr=()=>"xxyxxxxxxy-4xx8".replace(/[xy]/g,function(e){let t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)}),gr={};var Lt=new Map,de=new Set,me=new Set(["scroll","focus","blur","load","error","resize","mouseenter","mouseleave","pointerenter","pointerleave","gotpointercapture","lostpointercapture"]);function He(e){if(!g)for(let t of e)de.has(t)||me.has(t)||(de.add(t),document.addEventListener(t,hr))}function hr(e){let t=`$$${e.type}`,n=e.composedPath&&e.composedPath()[0]||e.target;for(;n;){let r=n[t];if(r&&!n.disabled&&(r(e),e.cancelBubble))return;n=n.host&&n.host!==n&&n.host instanceof Element?n.host:n.parentNode}}function Ot(e,t,n){if(e[`$$${t}`]=n,me.has(t)){let r=`__fx_${t}`;if(!e[r]){let o=i=>{e[`$$${t}`]?.(i)};e.addEventListener(t,o),e[r]=o}return}de.has(t)||He([t])}function Fe(e,t){delete e[`$$${t}`];let n=`__fx_${t}`,r=e[n];r&&(e.removeEventListener(t,r),delete e[n])}function xr(e){return!me.has(e)}function Tr(e){return typeof e=="function"}function O(e,t=!1){if(g)return H().createText(e);if(u.active&&!t){let n=fe()?.hydrateText(e);if(n)return n}return document.createTextNode(e)}function Ve(e,t=!1){if(g)return H().createElement(e,t);if(u.active){let n=fe()?.hydrateElement(e);if(n)return n}return t?document.createElementNS(F,e):document.createElement(e)}function Dt(e,t=!1){let n=Lt.get(e);if(n)return n;let r=document.createElement("template");return t?r.innerHTML=`<svg>${e}</svg>`:r.innerHTML=e,Lt.set(e,r),r}function br(e,t,n=!1,r=!1){if(g){let o=H();return n?o.parseTemplate(e,r):o.createRaw(e)}if(u.active){let o=fe()?.hydrateStatic(t);if(o)return o}return _t(Dt(e,r),r).firstChild}function Er(e,t){if(!u.active)return t();let n=Y(e.nextSibling,t);if(typeof n=="function"){let r=n;return((...o)=>u.active?Y(e.nextSibling,()=>r(...o)):r(...o))}return n}function wr(e){for(let t=e.nextSibling;t;t=t.nextSibling)if(t.nodeType===8&&t.data==="fx/")return t;throw new Error("[fluixi] template hole is missing its closing marker")}function Nr(e,t){let n=[];for(let r=e.nextSibling;r&&r!==t;r=r.nextSibling)n.push(r);return n}function _t(e,t=!1){let n=e.content.cloneNode(!0);return t?n.firstChild:n}function $t(e){return Array.isArray(e)?e.length===2&&e[1]===" "?Array.isArray(e[0])?$t(e[0]):(typeof e[0]=="function",e[0]):e.length===1&&typeof e[0]=="function"?e[0]:e:e}function Sr(e){return typeof e!="function"?null:e._name||e.name||"anonymous"}function vr(e){if((0,x.isSignal)(e)||N(e)||typeof e!="function")return e;let t=e();for(;typeof t=="function"&&!(0,x.isSignal)(t)&&!N(t);)t=t();return t}var k=0,Ar=200;function Cr(e,t,n,r,o){let i=r,s=new Map;return(0,d.createRenderEffect)(()=>{let a;if(N(e)&&!(0,x.isSignal)(e)){if(!s.has(e)){k++;try{let l=e();s.set(e,l)}finally{k--}}for(a=s.get(e);typeof a=="function"&&(0,x.isSignal)(a);)a=a()}else for(a=e();typeof a=="function"&&(0,x.isSignal)(a);)a=a();{let l=0;for(;typeof a=="function"&&l++<50;)if(N(a)){if(!s.has(a)){let c=a;k++;try{let f=c();s.set(c,f)}finally{k--}}a=s.get(a)}else if((0,x.isSignal)(a))a=a();else if(a=a(),typeof a!="function"||!(0,x.isSignal)(a)&&!N(a))break}k++;try{i=Q(t,a,n,i,s),o(i)}finally{k--}})}function C(e,t,n,r){if(k>Ar)return console.error("[insert] Exceeded max call depth — possible infinite loop."),()=>null;n!==void 0&&!n&&(n=O("",!0),e.appendChild(n));let o=r??null,i=l=>Array.isArray(l)&&l.some(c=>typeof c=="function"),s=l=>typeof l=="function"?l:()=>l;if(typeof t!="function"&&!i(t)){k++;try{o=Q(e,t,n,o)}finally{k--}return()=>o}let a=Cr(s(t),e,n,o,l=>{o=l});return()=>(a?.(),o)}function Q(e,t,n,r,o){if(t==null||typeof t=="boolean")return L(e,r,n);if(typeof t=="function")for(;typeof t=="function";)t=t();if(t==null||typeof t=="boolean")return L(e,r,n);if(Z(t)){let s=O("",!0);return Array.isArray(r)?r.length>0?(e.replaceChild(s,r[0]),L(e,r.slice(1),n)):T(e,s,n):r?e.replaceChild(s,r):T(e,s,n),t.then(a=>{s.parentNode===e&&Q(e,a,s.nextSibling,s)}).catch(a=>{console.error("Error resolving promise in insertExpression:",a)}),s}let i=typeof t;if(i==="string"||i==="number"){if(i==="number"&&(t=String(t)),Array.isArray(r)){if(r.length===0){let a=O(t);return T(e,a,n),a}if(r.length===1&&r[0].nodeType===3)return r[0].data=t,r;r=L(e,r,n)}if(r&&ue(r))return r.data=t,r;let s=O(t);return r&&r.parentNode===e?e.replaceChild(s,r):qe(e,s)||T(e,s,n),s}if($(t))return qe(e,t)?(je(t),t):Array.isArray(r)?(r.length===0?T(e,t,n):r[0].parentNode===e?(e.replaceChild(t,r[0]),L(e,r.slice(1),n)):T(e,t,n),t):(r?r!==t&&(r.parentNode===e?e.replaceChild(t,r):T(e,t,n)):T(e,t,n),t);if(Array.isArray(t)){let s=[],a=Array.isArray(r)?r:r?[r]:[],l=[];P(t,s,e,n,!0,o,l);let c=Rr(e,a,s,n);for(let f of l){let p=C(e,f.sig,f.marker);(0,d.onCleanup)(()=>{L(e,p()),f.marker.parentNode===e&&e.removeChild(f.marker)})}return c}if(i==="object"&&t!==null&&typeof t=="object"){let s=t;if("type"in s&&"props"in s){let a=s;if(typeof a.type=="function"){let l=a.type(a.props||{});return Q(e,l,n,r)}}}return L(e,r,n)}function P(e,t,n,r,o=!0,i,s){for(let a=0;a<e.length;a++){let l=e[a];if(!(l==null||typeof l=="boolean")){for(;typeof l=="function"&&!Z(l)&&!(0,x.isSignal)(l)&&!N(l)&&(l=l(),!(l==null||typeof l=="boolean")););if(!(l==null||typeof l=="boolean")){if(typeof l=="function"){let c;for(N(l)&&!(0,x.isSignal)(l)?(i||(i=new Map),i.has(l)||i.set(l,l()),c=i.get(l)):c=l();typeof c=="function"&&!Z(c)&&!(0,x.isSignal)(c)&&!N(c);)i||(i=new Map),i.has(c)||i.set(c,c()),c=i.get(c);if(c==null||typeof c=="boolean")continue;if(typeof c=="function"){if((0,x.isSignal)(c)){if(s){let p=O("",!0);t.push(p),s.push({marker:p,sig:c});continue}let f=c();for(;typeof f=="function"&&(0,x.isSignal)(f);)f=f();if(f==null||typeof f=="boolean")continue;Array.isArray(f)?P(f,t,n,r,o,i):P([f],t,n,r,o,i);continue}continue}Array.isArray(c)?P(c,t,n,r,o,i,s):P([c],t,n,r,o,i,s);continue}if(Z(l)){let c=O("",!0);t.push(c),l.then(f=>{if(c.parentNode){let p=[];if(P([f],p,c.parentNode,void 0,!1,i),p.length>0){c.parentNode.replaceChild(p[0],c);for(let y=1;y<p.length;y++)c.parentNode?.insertBefore(p[y],p[y-1].nextSibling)}}}).catch(f=>console.error("Error resolving promise in array:",f));continue}if(Array.isArray(l)){P(l,t,n,r,o,i,s);continue}if($(l)){t.push(l);continue}if(typeof l=="object"&&l!==null&&"type"in l&&"props"in l){let c=l;if(typeof c.type=="function"){let f=c.type(c.props||{});Array.isArray(f)?P(f,t,n,r,!1,i):P([f],t,n,r,!1,i);continue}}if(typeof l=="string"||typeof l=="number"){let c=String(l);if(c.trim()===""&&c!==" ")continue;t.push(O(c));continue}t.push(O(String(l)))}}}}function Rr(e,t,n,r){for(let p=0;p<n.length;p++){let y=n[p].parentNode;y!==null&&y!==e&&y.nodeType!==11&&(n=n.slice(),n[p]=n[p].cloneNode(!0))}let o=n.length,i=t.length,s=o,a=0,l=0,c=i>0?t[i-1].nextSibling??void 0:r,f=null;for(;a<i||l<s;){if(t[a]===n[l]){a++,l++;continue}for(;i>a&&s>l&&t[i-1]===n[s-1];)i--,s--;if(i===a){let p=s<o?l?n[l-1].nextSibling??void 0:n[s-l]:c;for(;l<s;)T(e,n[l++],p)}else if(s===l)for(;a<i;)(!f||!f.has(t[a]))&&t[a].parentNode===e&&e.removeChild(t[a]),a++;else if(t[a]===n[s-1]&&n[l]===t[i-1]){let p=t[--i].nextSibling;T(e,n[l++],t[a++].nextSibling),T(e,n[--s],p),t[i]=t[a-1]}else{if(!f){f=new Map;let y=l;for(;y<s;)f.set(n[y],y++)}let p=f.get(t[a]);if(p!=null)if(l<p&&p<s){let y=a,m=1;for(;++y<i&&y<s&&!(!f.has(t[y])||f.get(t[y])!==p+m);)m++;if(m>p-l){let Le=t[a];for(;l<p;)T(e,n[l++],Le)}else t[a].parentNode===e?e.replaceChild(n[l++],t[a++]):(T(e,n[l++],c),a++)}else a++;else t[a].parentNode===e&&e.removeChild(t[a]),a++}}return n}function L(e,t,n){if(t)if(Array.isArray(t))for(let r=0;r<t.length;r++)t[r].parentNode===e&&e.removeChild(t[r]);else t.parentNode===e&&e.removeChild(t);return null}function T(e,t,n){u.active&&t.parentNode===e||(n&&n.parentNode===e?e.insertBefore(t,n):e.appendChild(t))}function ee(e,t,n){n==null?delete e[t]:e[t]=n}function We(e,t,n){let r=n,o;return Array.isArray(n)&&(r=n[0],o=n[1]),typeof r!="function"?()=>{}:(e.addEventListener(t,r,o),()=>e.removeEventListener(t,r,o))}function Ue(e,t){let n=(r,o)=>{typeof r=="function"&&r(e,o??(()=>{}))};if(typeof t=="function"){n(t);return}if(Array.isArray(t)){if(typeof t[0]=="function"){n(t[0],t[1]);return}for(let r of t)Array.isArray(r)?n(r[0],r[1]):n(r)}}function pe(e,t,n,r=!1){return typeof n!="function"?(E(e,t,n,r),()=>{}):(0,d.createRenderEffect)(()=>{let o=typeof n=="function"?n():n;E(e,t,o,r)})}function ye(e,t,n){return typeof n!="function"?(ee(e,t,n),()=>{}):(0,d.createRenderEffect)(()=>{let r=typeof n=="function"?n():n;ee(e,t,r)})}function Be(e,t,n){return typeof n!="function"?(E(e,t,!!n),()=>{}):(0,d.createRenderEffect)(()=>{let r=n();E(e,t,!!r)})}function te(e,t){if(t==null){e.removeAttribute("class");return}if(typeof t=="function"){(0,d.createRenderEffect)(()=>te(e,t()));return}if(typeof t=="string"){e.setAttribute("class",t);return}if(Array.isArray(t)){e.setAttribute("class",t.filter(Boolean).join(" "));return}if(typeof t=="object"){let n=Object.keys(t).filter(r=>{let o=t[r];return typeof o=="function"?o():!!o}).join(" ");e.setAttribute("class",n);return}e.setAttribute("class",String(t))}function ne(e,t,n){if(!(!t||typeof t!="object"))for(let r in t){let o=t[r],i=r.split(/\s+/).filter(Boolean);if(typeof o=="function"&&n)n.push((0,d.createRenderEffect)(()=>{let s=!!o();for(let a of i)e.classList.toggle(a,s)}));else{let s=!!(typeof o=="function"?o():o);for(let a of i)e.classList.toggle(a,s)}}}function re(e,t){let n=t;for(;typeof n=="function";)n=n();if(n==null){e.removeAttribute("style");return}if(typeof n=="string"){e.style.cssText=n;return}if(typeof n=="object")for(let r in n){let o=n[r];o==null?e.style[r]="":e.style[r]=o}}function Mr(e){let{element:t,props:n,prevProps:r=gr,isSVG:o=!1,skipChildren:i=!1}=e;if(!t||!ce(t))return console.error("[spread] Error: element is not a DOM Element!"),()=>{};if(!n)return console.warn("[spread] Warning: props is undefined!"),()=>{};let s=o||t.namespaceURI===F,a=[];for(let l in n){if(i&&l==="children")continue;let c=n[l],f=r[l];if(c===f)continue;if(l==="ref"){oe(c,t);continue}if(l==="use"){Ue(t,c);continue}if(l.startsWith("on:")){a.push(We(t,l.slice(3),c));continue}if(l.startsWith("prop:")){a.push(ye(t,l.slice(5),c));continue}if(l.startsWith("attr:")){a.push(pe(t,l.slice(5),c,s));continue}if(l.startsWith("bool:")){a.push(Be(t,l.slice(5),c));continue}if(l==="class"||l==="className"){typeof c=="function"?a.push((0,d.createRenderEffect)(()=>te(t,c()))):te(t,c);continue}if(l==="classList"){typeof c=="function"?a.push((0,d.createRenderEffect)(()=>ne(t,c()))):ne(t,c,a);continue}if(l==="style"){typeof c=="function"?a.push((0,d.createRenderEffect)(()=>re(t,c()))):re(t,c);continue}if(l.startsWith("on")){let y=l.slice(2).toLowerCase();f&&Fe(t,y),c&&Ot(t,y,c);continue}let p=le.has(l)||!s&&l in t;typeof c=="function"?a.push(p?ye(t,l,c):pe(t,l,c,s)):a.push((0,d.createRenderEffect)(()=>p?ee(t,l,n[l]):E(t,l,n[l],s)))}for(let l in r)if(!(l in n))if(l.startsWith("on")){let c=l.slice(2).toLowerCase();Fe(t,c)}else le.has(l)?ee(t,l,null):t.removeAttribute(l);return()=>{a.forEach(l=>l())}}function Ke(e,t,n=!1){for(let r in t){let o=t[r];if(r==="ref"){oe(o,e);continue}if(r!=="children"){if(r==="use"){Ue(e,o);continue}if(r.startsWith("on:")){We(e,r.slice(3),o);continue}if(r.startsWith("prop:")){ye(e,r.slice(5),o);continue}if(r.startsWith("attr:")){pe(e,r.slice(5),o,n);continue}if(r.startsWith("bool:")){Be(e,r.slice(5),o);continue}if(r.startsWith("on")&&r.length>2){let i=r.slice(2).toLowerCase();if(typeof o=="function")if(me.has(i)){e[`$$${i}`]=o;let s=`__fx_${i}`;if(!e[s]){let a=l=>{e[`$$${i}`]?.(l)};e.addEventListener(i,a),e[s]=a}}else e[`$$${i}`]=o,de.has(i)||He([i]);continue}if(r==="class"||r==="className"){te(e,o);continue}if(r==="classList"){typeof o=="function"?(0,d.createRenderEffect)(()=>ne(e,o())):ne(e,o);continue}if(r==="style"){typeof o=="function"?(0,d.createRenderEffect)(()=>re(e,o())):re(e,o);continue}if(r==="innerHTML"){if(typeof o=="function"){let i=(0,d.createEffect)(()=>{let s=o();for(;typeof s=="function";)s=s();e.innerHTML=s});(0,d.onCleanup)(()=>i())}else e.innerHTML=o;continue}if(r==="value"&&(e.tagName==="INPUT"||e.tagName==="TEXTAREA")){if(typeof o=="function"){let i=(0,d.createEffect)(()=>{let s=o();for(;typeof s=="function"&&s.length===0;)s=s();document.activeElement!==e&&(e.value=s??"")});(0,d.onCleanup)(()=>{i()})}else(0,d.createRenderEffect)(()=>{document.activeElement!==e&&(e.value=t[r]??"")});continue}if(r==="checked"&&e.tagName==="INPUT"){if(typeof o=="function"){let i=(0,d.createEffect)(()=>{let s=o();for(;typeof s=="function"&&s.length===0;)s=s();document.activeElement!==e&&(e.checked=s??"")});(0,d.onCleanup)(()=>{i()})}else(0,d.createRenderEffect)(()=>{document.activeElement!==e&&(e.checked=t[r]??"")});continue}if(r==="value"&&e.tagName==="SELECT"){if(typeof o=="function"){let i=!0,s=(0,d.createEffect)(()=>{let a=o();for(;typeof a=="function"&&a.length===0;)a=a();i?(i=!1,queueMicrotask(()=>{e.value=a??""})):e.value=a??""});(0,d.onCleanup)(()=>{s()})}else{let i=!0;(0,d.createRenderEffect)(()=>{let s=t[r];i?(i=!1,queueMicrotask(()=>{e.value=s??""})):e.value=s??""})}continue}if(typeof o=="function"){let i=(0,d.createEffect)(()=>{let s=o();for(;typeof s=="function"&&s.length===0;)s=s();ae(e,r,s,n)});(0,d.onCleanup)(()=>{i()})}else(0,d.createRenderEffect)(()=>ae(e,r,t[r],n))}}}function Pr(...e){let t=r=>{for(let o=e.length-1;o>=0;o--){let i=e[o];if(i&&r in i&&i[r]!==void 0)return i[r]}},n=r=>{for(let o of e)if(o&&r in o)return!0;return!1};return new Proxy({},{get:(r,o)=>t(o),has:(r,o)=>n(o),ownKeys:()=>{let r=new Set;for(let o of e)if(o)for(let i of Reflect.ownKeys(o))r.add(i);return[...r]},getOwnPropertyDescriptor:(r,o)=>n(o)?{enumerable:!0,configurable:!0,get:()=>t(o)}:void 0})}function kr(e,...t){let n=new Set;for(let s of t)for(let a of s)n.add(a);let r=s=>({enumerable:!0,configurable:!0,get:()=>e[s]}),o=t.map(s=>{let a=new Set(s);return new Proxy({},{get:(l,c)=>a.has(c)?e[c]:void 0,has:(l,c)=>a.has(c)&&c in e,ownKeys:()=>Array.from(a).filter(l=>l in e),getOwnPropertyDescriptor:(l,c)=>a.has(c)&&c in e?r(c):void 0})}),i=new Proxy({},{get:(s,a)=>n.has(a)?void 0:e[a],has:(s,a)=>!n.has(a)&&a in e,ownKeys:()=>Reflect.ownKeys(e).filter(s=>!n.has(s)),getOwnPropertyDescriptor:(s,a)=>!n.has(a)&&a in e?r(a):void 0});return[...o,i]}function oe(e,t){if(e){if($(e)){let n=t,r=e;if(!n)return;typeof n=="function"?n(r):typeof n=="object"&&"current"in n&&(n.current=r);return}typeof e=="function"?e(t):typeof e=="object"&&"current"in e&&(e.current=t)}}function Lr(e,t,n){let r=t||document.body,o=(0,d.readChildren)(()=>e),i=[];return(0,d.batch)(()=>{let s=(0,d.createRenderEffect)(()=>{let a=o();Array.isArray(a)?(a.forEach(l=>r.appendChild(l)),i.push(()=>{a.forEach(l=>{l.parentNode===r&&r.removeChild(l)})})):$(a)&&(r.appendChild(a),i.push(()=>{a.parentNode===r&&r.removeChild(a)}))});i.push(s),(0,d.onCleanup)(()=>{i.forEach(a=>a())})}),null}function Or(e){return typeof e=="string"&&e.toLowerCase()===e}function ze(e){return e==="svg"||e==="path"||e==="circle"||e==="rect"||e==="line"||e==="polygon"||e==="polyline"||e==="ellipse"||e==="g"||e==="defs"||e==="clipPath"||e==="text"}function Dr(e){return e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function Z(e){return e!=null&&(typeof e=="object"||typeof e=="function")&&typeof e.then=="function"||e instanceof Promise}function _r(e){return typeof e=="function"&&e.length===0&&(0,x.isSignal)(e)}function Ge(e,t,n){if(!t)throw new Error("Container element is required");let r,o,i=[];return(0,d.createRoot)(s=>{(0,d.batch)(()=>{u.active||(t.textContent=""),xt(t),Tt(),C(t,e)}),o=s}),()=>{o?.(),r?.(),i.forEach(s=>s()),t.textContent=""}}function $r(e){if(Array.isArray(e))return e;if(typeof e=="function"&&typeof e.set=="function")return[e,e.set];throw new TypeError("[fluixi] bind: needs a signal — either `signal(…)` or the `[get, set]` pair from `createSignal(…)`.")}var ge=require("@fluixi/reactive");var Ir="__fx_dom_create_component__",I=globalThis[Ir]??={fn:null};function qr(e){I.fn=e}function jr(e={}){let t=e.signalSystem?.createComponent;t&&(I.fn=t)}function Xe(e,t){if(I.fn)return I.fn(e,t);let n=typeof e=="function"?(0,ge.untrack)(()=>e(t)):e;if(n!=null&&(typeof n=="function"||typeof n=="object")&&!(0,ge.isSignal)(n)){try{n.$name=e?.name}catch{}return $e(n)}return n}var Fr=()=>I.fn!==null,Hr=()=>I.fn!==null;function Vr(){I.fn=null}var he,qt={getStore:()=>he,run(e,t){let n=he;he=e;try{return t()}finally{he=n}}},Je=qt;function Ye(e){Je=e??qt}function W(e={}){e.locals||(e.locals=e.request?Te(e.request):{});let t=0,n=0,r=null,o=new Map,i=new Map;return{event:e,routeData:new Map,matchedRoute:new Map,nextId:()=>`s${t++}`,nextResourceId:()=>{if(r===null)return`r${n++}`;let s=o.get(r)??0;return o.set(r,s+1),`${r}:r${s}`},nextIslandNamespace:s=>{let a=i.get(s)??0;return i.set(s,a+1),`${s}#${a}`},withResourceScope(s,a){let l=r;r=s;try{return a()}finally{r=l}},pending:new Set,data:new Map}}function U(e,t){return Je.run(e,t)}function R(){return Je.getStore()}function xe(){return R()?.event}function Ze(){let e=xe();return e?(e.locals||(e.locals={}),e.locals):{}}var It=new WeakMap;function Te(e){let t=It.get(e);return t||(t={},It.set(e,t)),t}var be=require("@fluixi/reactive/signal");var B="__FX_DATA__";function ie(e){return e.replace(/[<>&\u2028\u2029]/g,t=>"\\u"+t.charCodeAt(0).toString(16).padStart(4,"0"))}var Qe;function se(){let e=globalThis.__FX_DATA__;if(e)return e;if(Qe!==void 0)return Qe;let t=null;if(typeof document<"u"){let n=document.getElementById(B)?.textContent;if(n)try{t=JSON.parse(n)}catch{t=null}}return Qe=t}function Ee(){for(;;){for(;u.cursor&&u.cursor.nodeType===3&&u.cursor.data==="";)u.cursor=u.cursor.nextSibling;if(u.cursor!=null||!u.parents.length)return;u.cursor=u.parents.pop().nextSibling}}var Wr=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),we=typeof process<"u"&&process.env&&!1;function Ne(e,t){let n=t.nodeType===1?`<${t.tagName.toLowerCase()}>`:t.nodeType===3?`text ${JSON.stringify((t.nodeValue??"").slice(0,24))}`:t.nodeType===8?"comment":"node";console.warn(`[fluixi] hydration mismatch: expected ${e} but the server DOM has ${n}. Server and client rendered different markup; recreating this node on the client. Check for non-deterministic render (Date.now(), Math.random(), browser-only branches, untransported data).`)}function Ur(e){Ee();let t=u.cursor;return t&&t.nodeType===1&&t.tagName.toLowerCase()===e.toLowerCase()?(Wr.has(e.toLowerCase())?u.cursor=t.nextSibling:(u.parents.push(t),u.cursor=t.firstChild),t):(we&&t&&Ne(`<${e}>`,t),null)}function Br(e){Ee();let t=u.cursor;return t&&t.nodeType===1&&t.tagName.toLowerCase()===e.toLowerCase()?(u.cursor=t.nextSibling,t):(we&&t&&Ne(`<${e}> (static)`,t),null)}function Kr(e){if(e===""){let n=u.cursor;return n&&n.nodeType===3&&n.data!==""?(u.cursor=n.nextSibling,n.data="",n):null}Ee();let t=u.cursor;return t&&t.nodeType===3?(u.cursor=t.nextSibling,t.nodeValue!==e&&(t.nodeValue=e),t):(we&&t&&Ne(`text ${JSON.stringify(e.slice(0,24))}`,t),null)}function zr(e){Ee();let t=u.cursor;return t&&t.nodeType===8&&t.data===e?(u.cursor=t.nextSibling,t):(we&&t&&Ne(`marker <!--${e.slice(0,24)}-->`,t),null)}var jt=!1;function Gr(){jt||(jt=!0,Mt({hydrateElement:Ur,hydrateText:Kr,hydrateMarker:zr,hydrateStatic:Br}))}function Se(e,t,n){Gr(),u.active=!0,u.cursor=t.firstChild,u.parents=[];let r=se(),o=n?.resourceNamespace,i=0;(0,be.setResourceIdSource)(()=>o?`${o}:r${i++}`:`r${i++}`),(0,be.setServerDataGetter)(r?s=>s in r?{value:r[s]}:void 0:null);try{return Ge(e,t)}finally{u.active=!1,u.cursor=null,u.parents=[]}}var et="fluixi-island";function Ht(e){let{component:t,props:n={},name:r}=e,o=Ve(et),i=r??t.name??"Island";E(o,"name",i),E(o,"props",JSON.stringify(n??{}));let s=g?R():void 0;if(s){let a=s.nextIslandNamespace(i);C(o,()=>s.withResourceScope(a,()=>t(n)))}else C(o,()=>t(n));return o}var Ft=!1;function Xr(){if(Ft||typeof document>"u")return;Ft=!0;let e=document.createElement("style");e.textContent=`${et}{display:contents}`,document.head.appendChild(e)}function Vt(e){if(typeof document>"u")return;Xr();let t=document.querySelectorAll(et),n=new Map;t.forEach(r=>{let o=r.getAttribute("name")??"",i=n.get(o)??0;n.set(o,i+1);let s=e[o];if(!s){typeof process>"u"&&console.warn(`[fluixi] island "${o}" has no component in the registry — left static.`);return}let a={};try{a=JSON.parse(r.getAttribute("props")||"{}")}catch{}Se(()=>s(a),r,{resourceNamespace:`${o}#${i}`})})}function Wt(e,...t){throw new Error("html`` was not compiled — enable the lit format: fluixi({ format: 'lit' }).")}function Ut(e,...t){throw new Error("svg`` was not compiled — enable the lit format: fluixi({ format: 'lit' }).")}var Bt=require("@fluixi/reactive/signal");function Jr(e,t={}){if(typeof e=="function")return Xe(e,t);if(typeof e!="string"||e.length===0)return null;let n=ze(e);if(g)return H().createElement(e,n);let r=n?document.createElementNS(F,e):document.createElement(e);return Ke(r,t,n),Yr(r,t),r}function Yr(e,t){if(!t||t.children===void 0)return;let n=(0,Bt.readChildren)(()=>t.children),r=o=>{C(e,o,typeof o=="function"?null:void 0)};Array.isArray(n)?n.forEach(r):r(n)}var h=require("@fluixi/reactive/signal");function Kt(e){return typeof e=="function"?e:(()=>e)}function D(e){return()=>{let t=e();return typeof t=="function"?t():t}}function zt(e){return e!=null&&e!==!1}function Gt(e){return!e||typeof e!="object"?!1:!!(typeof e._$litType$<"u"||typeof e._$litDirective$<"u"||Array.isArray(e.strings)&&Array.isArray(e.values))}function Xt(e){let t=D(()=>e.when),n=(0,h.createMemo)(t,void 0),r=(0,h.createMemo)(n,void 0),o=(0,h.getOwner)(),i=null,s=null,a=l=>{l!==s&&(i&&(0,h.disposeScope)(i),i=(0,h.createChildOwner)(o),s=l)};return(0,h.createMemo)(()=>{let l=r();return a(l?"when":"fallback"),(0,h.runWithOwner)(i,()=>{if(l){let c=e.children;return typeof c=="function"&&!Gt(c)?typeof n=="function"?(0,h.untrack)(()=>(0,h.untrack)(n)?c(n()):e.fallback):c(n):c}return e.fallback});return e.fallback??null},void 0,{name:"show"})}var ve=require("@fluixi/reactive/signal");function Jt(e){let t=D(()=>e.each),n=()=>e.fallback??null,r=(o,i)=>{let s=e.children,a=Array.isArray(s)?s.map(l=>typeof l=="function"?l(o,i):l):typeof s=="function"?s(o,i):s;return V(a),a};return e.by?(0,ve.keyArray)(t,e.by,(o,i)=>r(o,i),{fallback:n}):(0,ve.mapArray)(t,(o,i)=>r(o,i),{fallback:n})}var Yt=require("@fluixi/reactive/signal");function Zt(e){let t=D(()=>e.each);return(0,Yt.indexArray)(t,(n,r)=>{let o=e.children(n,r);return V(o),o},{fallback:()=>e.fallback??null})}var K=require("@fluixi/reactive/signal");var S=require("@fluixi/reactive/signal");var tt=Symbol("match");function Qt(e){return{[tt]:!0,when:D(()=>e.when),get children(){return e.children}}}function en(e){let t=Array.isArray(e.children)?e.children:[e.children],n=(0,S.getOwner)(),r=null,o=-1,i=s=>{s!==o&&(r&&(0,S.disposeScope)(r),r=(0,S.createChildOwner)(n),o=s)};return(0,S.createMemo)(()=>{for(let s=0;s<t.length;s+=1){let l=t[s],c=0;for(;typeof l=="function"&&!l[tt]&&c++<10;)l=l();if(!l||typeof l!="object"||l[tt]!==!0)continue;let f=l.when();if(zt(f))return i(s),(0,S.runWithOwner)(r,()=>typeof l.children=="function"?l.children(f):l.children)}return i(-2),(0,S.runWithOwner)(r,()=>e.fallback??null)})}var M=require("@fluixi/reactive/signal");function tn(e){let t=Kt(e.component),{component:n,...r}=e,o=(0,M.getOwner)(),i=null,s;return(0,M.createMemo)(()=>{let a=t();return a!==s&&(i&&(0,M.disposeScope)(i),i=(0,M.createChildOwner)(o),s=a),a==null?null:typeof a=="string"?{tag:a,props:r}:(0,M.runWithOwner)(i,()=>a(r))})}var Ae=require("@fluixi/reactive/signal");function nn(e){let t=()=>e.mount?typeof e.mount=="function"?e.mount():e.mount:document.body,n,r;return(0,Ae.createRoot)(o=>{n=o,r=document.createElement("div"),r.style.display="contents",t().appendChild(r),C(r,e.children)&&oe(e.ref,r)}),(0,Ae.onCleanup)(()=>{n(),r.remove()}),null}var Ce=require("@fluixi/reactive/signal");function nt(e){if(g)return e.fallback??null;let t=u.active,[n,r]=(0,Ce.createSignal)(!t);return t&&queueMicrotask(()=>r(!0)),(0,Ce.createMemo)(()=>n()?e.children:e.fallback??null,void 0,{name:"client-only"})}var rn=nt;var Re=require("@fluixi/reactive/signal");function on(e){let[t,n]=(0,Re.createSignal)(null),r=()=>n(null);return(0,Re.createMemo)(()=>{let o=t();if(o!==null)return typeof e.fallback=="function"?e.fallback(o,r):e.fallback;try{return typeof e.children=="function"?e.children():e.children}catch(i){return n(i),typeof e.fallback=="function"?e.fallback(i,r):e.fallback}})}var sn=require("@fluixi/reactive/signal");function an(e){return(0,sn.createMemo)(()=>{let t=typeof e=="function"?e():e,n=[];for(let[r,o]of Object.entries(t)){if(!r)continue;(typeof o=="function"?o():o)&&n.push(r)}return n.join(" ")})}var ln=require("@fluixi/reactive/signal");function Zr(e){return e.startsWith("--")?e:e.replace(/[A-Z]/g,t=>`-${t.toLowerCase()}`)}function cn(e){return(0,ln.createMemo)(()=>{let t=typeof e=="function"?e():e,n=[];for(let[r,o]of Object.entries(t)){if(!r)continue;let i=typeof o=="function"?o():o;i!=null&&n.push(`${Zr(r)}: ${i}`)}return n.join("; ")})}var Pe=1,it=3,st=8,un;un=J;var z=class{constructor(){this[un]=!0;this.parentNode=null;this.childNodes=[]}get firstChild(){return this.childNodes[0]??null}get lastChild(){return this.childNodes[this.childNodes.length-1]??null}get nextSibling(){let t=this.parentNode;if(!t)return null;let n=t.childNodes.indexOf(this);return n>=0?t.childNodes[n+1]??null:null}get previousSibling(){let t=this.parentNode;if(!t)return null;let n=t.childNodes.indexOf(this);return n>0?t.childNodes[n-1]??null:null}get parentElement(){return this.parentNode}appendChild(t){return t.parentNode&&t.parentNode.removeChild(t),t.parentNode=this,this.childNodes.push(t),t}insertBefore(t,n){if(n==null)return this.appendChild(t);t.parentNode&&t.parentNode.removeChild(t);let r=this.childNodes.indexOf(n);return t.parentNode=this,r<0?this.childNodes.push(t):this.childNodes.splice(r,0,t),t}removeChild(t){let n=this.childNodes.indexOf(t);return n>=0&&this.childNodes.splice(n,1),t.parentNode=null,t}replaceChild(t,n){let r=this.childNodes.indexOf(n);return r>=0&&(t.parentNode&&t.parentNode.removeChild(t),t.parentNode=this,this.childNodes[r]=t,n.parentNode=null),n}addEventListener(){}removeEventListener(){}},q=class e extends z{constructor(n){super();this.nodeType=it;this.data=n}get nodeValue(){return this.data}set nodeValue(n){this.data=n==null?"":String(n)}get textContent(){return this.data}set textContent(n){this.data=n==null?"":String(n)}cloneNode(){return new e(this.data)}},Me=class e extends z{constructor(n){super();this.nodeType=Pe;this.rawOuterHTML=n}get textContent(){return this.rawOuterHTML.replace(/<[^>]*>/g,"")}cloneNode(){return new e(this.rawOuterHTML)}},G=class e extends z{constructor(n){super();this.nodeType=st;this.data=n}get nodeValue(){return this.data}set nodeValue(n){this.data=n==null?"":String(n)}cloneNode(){return new e(this.data)}},rt=class{constructor(){this.cssText=""}setProperty(t,n){this[t]=n}removeProperty(t){delete this[t]}},ot=class{constructor(t){this.el=t}list(){let t=this.el.getAttribute("class");return t?t.split(/\s+/).filter(Boolean):[]}write(t){t.length?this.el.setAttribute("class",t.join(" ")):this.el.removeAttribute("class")}add(...t){let n=this.list();for(let r of t)n.includes(r)||n.push(r);this.write(n)}remove(...t){this.write(this.list().filter(n=>!t.includes(n)))}contains(t){return this.list().includes(t)}toggle(t,n){let r=this.contains(t),o=n===void 0?!r:n;return o?this.add(t):this.remove(t),o}},j=class e extends z{constructor(n,r=!1){super();this.nodeType=Pe;this.attributes=new Map;this.style=new rt;this.classList=new ot(this);this.rawHTML=null;this.localName=n.toLowerCase(),this.tagName=r?n:n.toUpperCase(),this.isSVG=r,this.namespaceURI=r?"http://www.w3.org/2000/svg":null}setAttribute(n,r){this.attributes.set(n,String(r))}removeAttribute(n){this.attributes.delete(n)}getAttribute(n){return this.attributes.has(n)?this.attributes.get(n):null}hasAttribute(n){return this.attributes.has(n)}get id(){return this.getAttribute("id")??""}set id(n){n==null?this.removeAttribute("id"):this.setAttribute("id",n)}get className(){return this.getAttribute("class")??""}set className(n){n==null?this.removeAttribute("class"):this.setAttribute("class",n)}get htmlFor(){return this.getAttribute("for")??""}set htmlFor(n){n==null?this.removeAttribute("for"):this.setAttribute("for",n)}set value(n){n==null?this.removeAttribute("value"):this.setAttribute("value",String(n))}set checked(n){n?this.setAttribute("checked",""):this.removeAttribute("checked")}set selected(n){n?this.setAttribute("selected",""):this.removeAttribute("selected")}set indeterminate(n){}get textContent(){return this.childNodes.map(n=>n.textContent??"").join("")}set textContent(n){for(let r of this.childNodes)r.parentNode=null;this.childNodes=[],this.rawHTML=null,n!=null&&n!==""&&this.appendChild(new q(String(n)))}set innerText(n){this.textContent=n}set innerHTML(n){for(let r of this.childNodes)r.parentNode=null;this.childNodes=[],this.rawHTML=n==null?"":String(n)}cloneNode(n=!1){let r=new e(this.localName,this.isSVG);if(r.attributes=new Map(this.attributes),r.style.cssText=this.style.cssText,r.rawHTML=this.rawHTML,n)for(let o of this.childNodes)r.appendChild(o.cloneNode(!0));return r}};var Qr=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),dn=/&/g,pn=/</g,yn=/>/g,eo=/"/g;function at(e){return e.replace(dn,"&").replace(pn,"<").replace(yn,">")}function fn(e){return e.replace(dn,"&").replace(eo,""").replace(pn,"<").replace(yn,">")}function to(e){return e.startsWith("--")?e:e.replace(/[A-Z]/g,t=>"-"+t.toLowerCase())}function no(e){if(!e)return"";let t=[];e.cssText&&t.push(e.cssText.trim().replace(/;\s*$/,""));for(let n of Object.keys(e)){if(n==="cssText")continue;let r=e[n];r==null||r===""||t.push(`${to(n)}: ${r}`)}return t.join("; ")}function ro(e){let t="",n=no(e.style);for(let[r,o]of e.attributes)r==="style"&&n||(t+=` ${r}="${fn(o)}"`);if(n){let r=e.attributes.get("style"),o=r?`${r.replace(/;\s*$/,"")}; ${n}`:n;t+=` style="${fn(o)}"`}return t}function v(e){if(e==null||e===!1||e===!0)return"";if(typeof e=="string")return at(e);if(typeof e=="number")return at(String(e));if(typeof e=="function")return v(e());if(Array.isArray(e))return e.map(v).join("");if(typeof e.rawOuterHTML=="string")return e.rawOuterHTML;switch(e.nodeType){case it:return at(e.data??"");case st:return`<!--${e.data??""}-->`;case Pe:{let t=e.localName,n=`<${t}${ro(e)}>`;if(Qr.has(t))return n;let r=e.rawHTML!=null?e.rawHTML:(e.childNodes??[]).map(v).join("");return`${n}${r}</${t}>`}}return Array.isArray(e.childNodes)?e.childNodes.map(v).join(""):""}var ct=require("@fluixi/reactive/signal"),b=require("@fluixi/reactive/signal");var oo=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),io={amp:"&",lt:"<",gt:">",quot:'"',"#39":"'"};function mn(e){return e.replace(/&(#?\w+);/g,(t,n)=>io[n]??t)}var A=class extends Error{};function gn(e,t=!1){let n=0,r=[],o=[],i=c=>{let f=o[o.length-1];f?f.appendChild(c):r.push(c)};for(;n<e.length;){let c=e.indexOf("<",n);if(c===-1){a(e.slice(n));break}if(c>n&&a(e.slice(n,c)),e.startsWith("<!--",c)){let f=e.indexOf("-->",c);if(f===-1)throw new A(`unterminated comment at ${c}`);i(new G(e.slice(c+4,f))),n=f+3;continue}if(e[c+1]==="/"){let f=e.indexOf(">",c);if(f===-1)throw new A(`unterminated closing tag at ${c}`);let p=e.slice(c+2,f).trim().toLowerCase(),y=o.pop();if(!y||y.localName!==p)throw new A(`</${p}> does not close <${y?.localName??"nothing"}>`);n=f+1;continue}n=l(c)}if(o.length>0)throw new A(`unclosed <${o[o.length-1].localName}>`);let s=r[0];if(r.length!==1||!(s instanceof j))throw new A(`expected exactly one root element, got ${r.length}`);return s;function a(c){c!==""&&i(new q(mn(c)))}function l(c){let f=/[\s/>]/.exec(e.slice(c+1));if(!f)throw new A(`unterminated tag at ${c}`);let p=e.slice(c+1,c+1+f.index).toLowerCase(),y=new j(p,t),m=c+1+f.index;for(;m<e.length;){for(;m<e.length&&/\s/.test(e[m]);)m++;if(e[m]===">"){m++;break}if(e[m]==="/"&&e[m+1]===">"){m+=2;break}let Le=m;for(;m<e.length&&!/[\s=/>]/.test(e[m]);)m++;let X=e.slice(Le,m);if(X==="")throw new A(`malformed attribute at ${m}`);if(e[m]==="="){if(e[m+1]!=='"')throw new A(`attribute ${X} must have a double-quoted value`);let Oe=e.indexOf('"',m+2);if(Oe===-1)throw new A(`unterminated value for ${X}`);y.setAttribute(X,mn(e.slice(m+2,Oe))),m=Oe+1}else y.setAttribute(X,"")}return i(y),oo.has(p)||o.push(y),m}}var hn=!1;function Tn(){hn||(hn=!0,Ct({createElement:(e,t)=>new j(e,t),createText:e=>new q(e),createRaw:e=>new Me(e),parseTemplate:(e,t)=>gn(e,t),createComment:e=>new G(e)}))}function ut(e,t={}){let n=g;Tn(),_(!0);let r=W(t.event);try{return U(r,()=>(0,ct.createRoot)(o=>{try{let i=typeof e=="function"?e():e;return v(i)}finally{o()}}))}finally{_(n)}}var xn=!1;function so(){xn||(xn=!0,(0,b.setResourceTracker)(e=>{R()?.pending.add(e)}),(0,b.setResourceIdSource)(()=>R()?.nextResourceId()??""),(0,b.setResourceDataSink)((e,t)=>{e&&R()?.data.set(e,t)}))}var lt=null;function ft(e){lt=e}function ke(e){if(e.data.size===0)return"";let t={};for(let[r,o]of e.data){let i=o;if(lt)try{i=lt(o,r)}catch{continue}i!==void 0&&(typeof i=="function"||typeof i=="symbol"||(t[r]=i))}if(Object.keys(t).length===0)return"";let n=ie(JSON.stringify(t));return n==="{}"?"":`<script type="application/json" id="${B}">${n}<\/script>`}var ao=50;async function dt(e,t={}){let n=g;Tn(),_(!0),so();let r=W(t.event);try{return await U(r,async()=>{t.preload&&await t.preload(t.event);let o,i=null,s=()=>{};(0,ct.createRoot)(f=>{s=f,i=(0,b.getOwner)(),o=typeof e=="function"?e():e});let a=()=>{try{(0,b.runWithOwner)(i,()=>v(o))}catch{}};a();let l=0;for(;r.pending.size>0&&l++<ao;){let f=Array.from(r.pending);r.pending.clear(),await Promise.allSettled(f),await(0,b.flush)(),a()}let c=(0,b.runWithOwner)(i,()=>v(o))+ke(r);return s(),c})}finally{_(n)}}
|