@htmlbricks/hb-sidebar-desktop 0.71.35 → 0.71.37

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 CHANGED
@@ -1,64 +1,123 @@
1
- ## `hb-sidebar-desktop` sidebar desktop
1
+ # `hb-sidebar-desktop` (sidebar-desktop)
2
2
 
3
3
  **Category:** layout
4
- **Tags:** layout, navigation
4
+ **Tags:** layout, navigation
5
+ **Package:** `@htmlbricks/hb-sidebar-desktop`
5
6
 
6
- ### What it does
7
+ ## Overview
7
8
 
8
- Fixed-width desktop sidebar: optional company logo and title, header/footer slots, and a vertical nav list built from `hb-sidenav-link` entries with optional JSON groups. Uses Bulma (flex, spacing, `title`, `menu-label`, `has-background-light`). Parses `navlinks` and `groups` from strings; emits `pageChange` when a link selects a page.
9
+ `hb-sidebar-desktop` is a fixed-width desktop sidebar shell: optional company branding (logo URI and title), a scrollable navigation list rendered with nested **`hb-sidenav-link`** elements, optional section **groups**, an optional **language** dropdown, and a **Bulma-aligned theme** control (light, dark, or system). It is styled with Bulma tokens and Bootstrap Icons (loaded for menu icons).
9
10
 
10
- ### Custom element
11
+ The host drives the active route with **`navpage`** (page key) and supplies **`navlinks`** (and optionally **`groups`**). When the user selects a page, a child link, or a theme/language option, the component dispatches bubbling, composed custom events so the host can update routing, persist theme, and sync language.
11
12
 
12
- `hb-sidebar-desktop`
13
+ ## Dependency
13
14
 
14
- ### Attributes (snake_case; use string values in HTML)
15
+ This package expects **`hb-sidenav-link`** to be available (same version family as your bundle). Each row is a `hb-sidenav-link` with `navlink` passed as a JSON string and `navpage` mirrored from the sidebar.
15
16
 
16
- - `id`, `style` (optional): strings.
17
- - `companylogouri`, `companytitle` (optional): strings.
18
- - `groups` (optional): JSON string — `{ key; label }[]`.
19
- - `enablefooter` (optional): boolean string.
20
- - `navpage` (optional): string — active page key.
21
- - `navlinks` (optional): JSON string — `INavLink[]` for `hb-sidenav-link` (see **Navigation icons** below).
22
- - `cookielawallowdecline`, `cookielawlanguage`, `cookielawuri4more` (optional): strings for cookie banner integration.
23
- - `single_screen` (optional): `"yes"` | `"no"` | empty — layout mode flag.
17
+ ## Slots
24
18
 
25
- ### Events
19
+ | Slot | Description |
20
+ |------|-------------|
21
+ | **`test`** | Optional light-DOM content at the very top of the sidebar shell, before the padded inner column (outside brand, nav, and controls). |
22
+ | **`header`** | Optional content inside the brand title row, before the logo and company title (same row as the `header` CSS part). |
23
+ | **`footer`** | Optional footer region below the nav list and the theme/language toolbar. Rendered only when **`enablefooter`** is **`yes`** (default slot content in the implementation is placeholder text until you override it). |
26
24
 
27
- - `pageChange`: `{ page: string }`.
25
+ ## CSS parts
28
26
 
29
- ### Navigation icons (Bootstrap Icons)
27
+ | Part | Description |
28
+ |------|-------------|
29
+ | **`header`** | Top chrome in the brand title row (the surface that wraps the `header` slot and brand). |
30
30
 
31
- Each entry in `navlinks` (and each item in `subLinks`, if any) may include an optional string property `icon`. Icons use the [Bootstrap Icons](https://icons.getbootstrap.com/) web font; this component loads `bootstrap-icons.css` for the nested `hb-sidenav-link` elements.
31
+ ## Styling (Bulma CSS variables)
32
32
 
33
- **What value to pass:** pass only the **icon name** (the suffix of the official class), not the full class list.
33
+ Public theming uses **`--bulma-*`** on the host document or on ancestors; see [Bulma CSS variables](https://bulma.io/documentation/features/css-variables/). Documented variables match `extra/docs.ts` / `styleSetup`:
34
34
 
35
- - On the Bootstrap Icons site, an icon is used as `<i class="bi bi-house-door"></i>`. In `navlinks` JSON, set `"icon": "house-door"`.
36
- - Do **not** prefix with `bi` or `bi-`, and do **not** pass a full class string like `bi bi-house-door`. The child link renders `class="bi bi-{icon}"`; extra prefixes would break the class name.
35
+ | Variable | Role |
36
+ |----------|------|
37
+ | `--bulma-navbar-background-color` | Sidebar shell background (same token chain as `hb-navbar`). |
38
+ | `--bulma-scheme-main-bis` | Fallback surface when the navbar background token is unset. |
39
+ | `--bulma-text` | Default labels and menu copy. |
40
+ | `--bulma-link` | Active row accent and theme/language controls. |
41
+ | `--bulma-block-spacing` | Brand block spacing and vertical rhythm inside the shell. |
42
+ | `--bulma-border` | Section separators / hairlines. |
37
43
 
38
- **HTML example** (attribute must be a JSON string):
44
+ **Icons:** pass Bootstrap Icons **suffix only** on each `INavLink` (for example `house-door`, not `bi` or `bi-`). The component loads the Bootstrap Icons font stylesheet in the shadow tree.
45
+
46
+ ## Navigation model
47
+
48
+ ### `navlinks`
49
+
50
+ `navlinks` is an array of **`INavLink`** objects (or a **JSON string** that parses to that array). Each item includes:
51
+
52
+ - **`key`** — stable page identifier (emitted on `pageChange` and matched against **`navpage`** for selection).
53
+ - **`label`** — visible text.
54
+ - **`icon`** — optional Bootstrap Icons suffix.
55
+ - **`group`** — optional string key; used to place the item under a grouped section (see below).
56
+ - **`badge`** — optional `{ text, class?, classcolor? }`.
57
+ - **`subLinks`** — optional nested links (handled by `hb-sidenav-link`).
58
+
59
+ ### `groups`
60
+
61
+ Optional **`groups`** is `{ key: string; label: string }[]` (or a JSON string). When **`groups`** is non-empty, the sidebar renders each group’s **`label`** as a Bulma **`menu-label`**, then every **`navlinks`** item whose **`group`** equals that **`key`**.
62
+
63
+ If some **`navlinks`** entries have a **`group`** that is **not** listed in **`groups`**, the component **auto-generates** sections: it derives distinct `group` values from those links and uses the raw **`group`** string as the section heading label.
64
+
65
+ Links **without** a **`group`** are listed first, above any grouped sections.
66
+
67
+ ## Theme behavior
68
+
69
+ - **`enablethemeswitch`**: when **`yes`**, three buttons appear: light, dark, and auto (system).
70
+ - Choosing a mode updates internal state, applies **Bulma document hooks** on **`document.documentElement`** and **`document.body`** (`data-theme`, `theme-light` / `theme-dark` classes, cleared for auto), and dispatches **`themeChange`** with `{ mode: "light" | "dark" | "auto" }`.
71
+ - **`themepreference`**: when set to **`light`**, **`dark`**, or **`auto`**, the sidebar treats it as a **controlled** value and syncs hooks to match. If it is unset or invalid on mount, the component reads the current preference from the document (`data-theme` / theme classes).
72
+ - The host may ignore **`themeChange`** and only drive **`themepreference`**, or combine both (for example persist `themeChange` then set **`themepreference`**).
73
+
74
+ ## Language behavior
75
+
76
+ - **`i18nlanguages`**: array of `{ code, label }` or a **JSON string** (array of objects or of string codes; string codes use the code as the label).
77
+ - **`i18nlang`**: active BCP-47 / app language code; should match a **`code`** in **`i18nlanguages`** when you rely on the “active” state in the dropdown.
78
+ - The language dropdown appears when there is at least one parsed option. Picking an option dispatches **`languageChange`** with `{ code: string }`. The host should update **`i18nlang`** (for example on `hb-layout`) and reload copy.
79
+
80
+ The bottom toolbar (language + theme) is shown when **`enablethemeswitch`** is **`yes`** **or** there is at least one language option.
81
+
82
+ ## Custom element
39
83
 
40
84
  ```html
41
- navlinks='[{"label":"Home","key":"home","icon":"house-door"},{"label":"Settings","key":"settings","icon":"gear"}]'
85
+ <hb-sidebar-desktop …></hb-sidebar-desktop>
42
86
  ```
43
87
 
44
- **JavaScript** (property can be an array of objects):
88
+ ## Attributes and properties (snake_case)
45
89
 
46
- ```js
47
- el.navlinks = [
48
- { label: "Home", key: "home", icon: "house-door" },
49
- { label: "Settings", key: "settings", icon: "gear" },
50
- ];
51
- ```
90
+ Web component **attributes** are strings. Booleans use **`yes`** / **`no`** where noted. Objects and arrays are typically passed as **JSON strings** from HTML, or as JS properties.
91
+
92
+ | Name | Description |
93
+ |------|-------------|
94
+ | **`id`** | Optional element id. |
95
+ | **`companylogouri`** | Optional image URL for the brand logo (shown when **`companytitle`** is set and a URI is provided). |
96
+ | **`companytitle`** | Optional company or product title next to the logo. |
97
+ | **`navpage`** | Active page **`key`**; forwarded to each `hb-sidenav-link`. |
98
+ | **`navlinks`** | JSON string or array: list of **`INavLink`** entries. |
99
+ | **`groups`** | Optional JSON string or array: `{ key, label }[]` for explicit section headings and membership. |
100
+ | **`enablefooter`** | **`yes`** (default) shows the footer chrome and the **`footer`** slot; **`no`** or **`false`** hides it. |
101
+ | **`enablethemeswitch`** | **`yes`** (default) shows the theme control; **`no`** hides it (language-only toolbar still possible if languages are set). |
102
+ | **`themepreference`** | Optional controlled theme: **`light`**, **`dark`**, or **`auto`**. |
103
+ | **`i18nlang`** | Optional current language code for the selector. |
104
+ | **`i18nlanguages`** | Optional JSON string or array of `{ code, label }` (or string codes). |
105
+
106
+ The authoring **`Component`** type also includes **`style`**, **`cookielawallowdecline`**, **`cookielawlanguage`**, **`cookielawuri4more`**, and **`single_screen`** for catalog alignment. They are **not** read by the current `component.wc.svelte` implementation; treat them as reserved unless a future version wires them in.
52
107
 
53
- Grouped links and expandable rows use the same `icon` field on each object.
108
+ ## Events
54
109
 
55
- ### Usage notes
110
+ All events **`bubble`** and are **`composed`** (usable from the light DOM).
56
111
 
57
- - **Slots:** `test`, `header`, `footer`.
58
- - **CSS parts:** `header`.
59
- - Matches the navigation model used inside `hb-offcanvas` (same `navlinks` / `icon` rules).
112
+ | Event | `detail` |
113
+ |-------|----------|
114
+ | **`pageChange`** | `{ page: string }` selected nav **`key`**. |
115
+ | **`themeChange`** | `{ mode: "light" \| "dark" \| "auto" }` — user-chosen theme; host may persist and/or set **`themepreference`**. |
116
+ | **`languageChange`** | `{ code: string }` — chosen language; host should set **`i18nlang`**. |
60
117
 
61
- ### Minimal HTML example
118
+ ## Examples
119
+
120
+ ### Minimal HTML
62
121
 
63
122
  ```html
64
123
  <hb-sidebar-desktop
@@ -67,3 +126,56 @@ Grouped links and expandable rows use the same `icon` field on each object.
67
126
  navlinks='[{"label":"Home","key":"home","icon":"house-door"}]'
68
127
  ></hb-sidebar-desktop>
69
128
  ```
129
+
130
+ ### Grouped navigation (explicit `groups`)
131
+
132
+ ```html
133
+ <hb-sidebar-desktop
134
+ navpage="settings"
135
+ groups='[{"key":"admin","label":"Administration"},{"key":"stats","label":"Statistics"}]'
136
+ navlinks='[
137
+ {"label":"Home","key":"home","icon":"house-door"},
138
+ {"label":"Settings","key":"settings","icon":"gear","group":"admin"},
139
+ {"label":"Users","key":"users","icon":"people-fill","group":"admin"},
140
+ {"label":"Stats","key":"stats","icon":"graph-up","group":"stats"}
141
+ ]'
142
+ ></hb-sidebar-desktop>
143
+ ```
144
+
145
+ ### Theme + language
146
+
147
+ ```html
148
+ <hb-sidebar-desktop
149
+ navpage="home"
150
+ enablethemeswitch="yes"
151
+ themepreference="auto"
152
+ i18nlang="en"
153
+ i18nlanguages='[
154
+ {"code":"en","label":"English"},
155
+ {"code":"it","label":"Italiano"}
156
+ ]'
157
+ navlinks='[{"label":"Home","key":"home","icon":"house-door"}]'
158
+ ></hb-sidebar-desktop>
159
+ ```
160
+
161
+ ### JavaScript property API
162
+
163
+ ```js
164
+ const el = document.querySelector("hb-sidebar-desktop");
165
+ el.navlinks = [
166
+ { label: "Home", key: "home", icon: "house-door" },
167
+ { label: "Settings", key: "settings", icon: "gear", group: "admin" },
168
+ ];
169
+ el.navpage = "home";
170
+ el.addEventListener("pageChange", (e) => {
171
+ console.log(e.detail.page);
172
+ });
173
+ ```
174
+
175
+ ## Related components
176
+
177
+ Navigation shape and icon rules align with other layout shells that reuse the same **`navlinks`** / **`hb-sidenav-link`** pattern (for example mobile off-canvas navigation in **`hb-offcanvas`**).
178
+
179
+ ## License
180
+
181
+ Package metadata references **Apache-2.0** (see `LICENSE.md` in the published package when consuming from npm).
package/main.iife.js CHANGED
@@ -1,6 +1,6 @@
1
1
  (function(e){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`}),typeof window<`u`&&((window.__svelte??={}).v??=new Set).add(`5`);var t={},n=Symbol(),r=`http://www.w3.org/1999/xhtml`,i=Array.isArray,a=Array.prototype.indexOf,o=Array.prototype.includes,s=Array.from,c=Object.keys,l=Object.defineProperty,u=Object.getOwnPropertyDescriptor,d=Object.getOwnPropertyDescriptors,f=Object.prototype,p=Array.prototype,m=Object.getPrototypeOf,h=Object.isExtensible,g=()=>{};function _(e){for(var t=0;t<e.length;t++)e[t]()}function v(){var e,t;return{promise:new Promise((n,r)=>{e=n,t=r}),resolve:e,reject:t}}var y=1024,b=2048,x=4096,S=8192,ee=16384,te=32768,ne=1<<25,re=65536,ie=1<<18,ae=1<<19,oe=1<<20,se=1<<25,ce=65536,le=1<<21,ue=1<<22,de=1<<23,fe=Symbol(`$state`),pe=Symbol(`legacy props`),me=Symbol(``),he=new class extends Error{name=`StaleReactionError`;message="The reaction that called `getAbortSignal()` was re-run or destroyed"},ge=!!globalThis.document?.contentType&&globalThis.document.contentType.includes(`xml`);function _e(e){throw Error(`https://svelte.dev/e/lifecycle_outside_component`)}function ve(){throw Error(`https://svelte.dev/e/async_derived_orphan`)}function ye(e,t,n){throw Error(`https://svelte.dev/e/each_key_duplicate`)}function be(e){throw Error(`https://svelte.dev/e/effect_in_teardown`)}function xe(){throw Error(`https://svelte.dev/e/effect_in_unowned_derived`)}function Se(e){throw Error(`https://svelte.dev/e/effect_orphan`)}function Ce(){throw Error(`https://svelte.dev/e/effect_update_depth_exceeded`)}function we(){throw Error(`https://svelte.dev/e/hydration_failed`)}function Te(e){throw Error(`https://svelte.dev/e/props_invalid_value`)}function Ee(){throw Error(`https://svelte.dev/e/state_descriptors_fixed`)}function De(){throw Error(`https://svelte.dev/e/state_prototype_fixed`)}function Oe(){throw Error(`https://svelte.dev/e/state_unsafe_mutation`)}function ke(){throw Error(`https://svelte.dev/e/svelte_boundary_reset_onerror`)}function Ae(e){console.warn(`https://svelte.dev/e/hydration_mismatch`)}function je(){console.warn(`https://svelte.dev/e/svelte_boundary_reset_noop`)}var C=!1;function w(e){C=e}var T;function E(e){if(e===null)throw Ae(),t;return T=e}function Me(){return E(F(T))}function D(e){if(C){if(F(T)!==null)throw Ae(),t;T=e}}function Ne(e=1){if(C){for(var t=e,n=T;t--;)n=F(n);T=n}}function Pe(e=!0){for(var t=0,n=T;;){if(n.nodeType===8){var r=n.data;if(r===`]`){if(t===0)return n;--t}else (r===`[`||r===`[!`||r[0]===`[`&&!isNaN(Number(r.slice(1))))&&(t+=1)}var i=F(n);e&&n.remove(),n=i}}function Fe(e){if(!e||e.nodeType!==8)throw Ae(),t;return e.data}function Ie(e){return e===this.v}function Le(e,t){return e==e?e!==t||typeof e==`object`&&!!e||typeof e==`function`:t==t}function Re(e){return!Le(e,this.v)}var ze=!1,Be=!1,O=null;function Ve(e){O=e}function He(e,t=!1,n){O={p:O,i:!1,c:null,e:null,s:e,x:null,r:W,l:Be&&!t?{s:null,u:null,$:[]}:null}}function Ue(e){var t=O,n=t.e;if(n!==null){t.e=null;for(var r of n)hn(r)}return e!==void 0&&(t.x=e),t.i=!0,O=t.p,e??{}}function We(){return!Be||O!==null&&O.l===null}var Ge=[];function Ke(){var e=Ge;Ge=[],_(e)}function qe(e){if(Ge.length===0&&!ot){var t=Ge;queueMicrotask(()=>{t===Ge&&Ke()})}Ge.push(e)}function Je(){for(;Ge.length>0;)Ke()}function Ye(e){var t=W;if(t===null)return V.f|=de,e;if(!(t.f&32768)&&!(t.f&4))throw e;Xe(e,t)}function Xe(e,t){for(;t!==null;){if(t.f&128){if(!(t.f&32768))throw e;try{t.b.error(e);return}catch(t){e=t}}t=t.parent}throw e}var Ze=~(b|x|y);function k(e,t){e.f=e.f&Ze|t}function Qe(e){e.f&512||e.deps===null?k(e,y):k(e,x)}function $e(e){if(e!==null)for(let t of e)!(t.f&2)||!(t.f&65536)||(t.f^=ce,$e(t.deps))}function et(e,t,n){e.f&2048?t.add(e):e.f&4096&&n.add(e),$e(e.deps),k(e,y)}var tt=!1,nt=!1;function rt(e){var t=nt;try{return nt=!1,[e(),nt]}finally{nt=t}}var it=new Set,A=null,j=null,at=null,ot=!1,st=!1,ct=null,lt=null,ut=0,dt=1,ft=class e{id=dt++;current=new Map;previous=new Map;#e=new Set;#t=new Set;#n=new Map;#r=new Map;#i=null;#a=[];#o=new Set;#s=new Set;#c=new Map;is_fork=!1;#l=!1;#u=new Set;#d(){return this.is_fork||this.#r.size>0}#f(){for(let n of this.#u)for(let r of n.#r.keys()){for(var e=!1,t=r;t.parent!==null;){if(this.#c.has(t)){e=!0;break}t=t.parent}if(!e)return!0}return!1}skip_effect(e){this.#c.has(e)||this.#c.set(e,{d:[],m:[]})}unskip_effect(e){var t=this.#c.get(e);if(t){this.#c.delete(e);for(var n of t.d)k(n,b),this.schedule(n);for(n of t.m)k(n,x),this.schedule(n)}}#p(){if(ut++>1e3&&(it.delete(this),pt()),!this.#d()){for(let e of this.#o)this.#s.delete(e),k(e,b),this.schedule(e);for(let e of this.#s)k(e,x),this.schedule(e)}let t=this.#a;this.#a=[],this.apply();var n=ct=[],r=[],i=lt=[];for(let e of t)try{this.#m(e,n,r)}catch(t){throw bt(e),t}if(A=null,i.length>0){var a=e.ensure();for(let e of i)a.schedule(e)}if(ct=null,lt=null,this.#d()||this.#f()){this.#h(r),this.#h(n);for(let[e,t]of this.#c)yt(e,t)}else{this.#n.size===0&&it.delete(this),this.#o.clear(),this.#s.clear();for(let e of this.#e)e(this);this.#e.clear(),ht(r),ht(n),this.#i?.resolve()}var o=A;if(this.#a.length>0){let e=o??=this;e.#a.push(...this.#a.filter(t=>!e.#a.includes(t)))}o!==null&&(it.add(o),o.#p()),it.has(this)||this.#g()}#m(e,t,n){e.f^=y;for(var r=e.first;r!==null;){var i=r.f,a=(i&96)!=0;if(!(a&&i&1024||i&8192||this.#c.has(r))&&r.fn!==null){a?r.f^=y:i&4?t.push(r):ze&&i&16777224?n.push(r):Un(r)&&(i&16&&this.#s.add(r),Jn(r));var o=r.first;if(o!==null){r=o;continue}}for(;r!==null;){var s=r.next;if(s!==null){r=s;break}r=r.parent}}}#h(e){for(var t=0;t<e.length;t+=1)et(e[t],this.#o,this.#s)}capture(e,t,r=!1){t!==n&&!this.previous.has(e)&&this.previous.set(e,t),e.f&8388608||(this.current.set(e,[e.v,r]),j?.set(e,e.v))}activate(){A=this}deactivate(){A=null,j=null}flush(){try{st=!0,A=this,this.#p()}finally{ut=0,at=null,ct=null,lt=null,st=!1,A=null,j=null,Bt.clear()}}discard(){for(let e of this.#t)e(this);this.#t.clear(),it.delete(this)}#g(){for(let c of it){var e=c.id<this.id,t=[];for(let[r,[i,a]]of this.current){if(c.current.has(r)){var n=c.current.get(r)[0];if(e&&i!==n)c.current.set(r,[i,a]);else continue}t.push(r)}var r=[...c.current.keys()].filter(e=>!this.current.has(e));if(r.length===0)e&&c.discard();else if(t.length>0){c.activate();var i=new Set,a=new Map;for(var o of t)gt(o,r,i,a);if(c.#a.length>0){c.apply();for(var s of c.#a)c.#m(s,[],[]);c.#a=[]}c.deactivate()}}for(let e of it)e.#u.has(this)&&(e.#u.delete(this),e.#u.size===0&&!e.#d()&&(e.activate(),e.#p()))}increment(e,t){let n=this.#n.get(t)??0;if(this.#n.set(t,n+1),e){let e=this.#r.get(t)??0;this.#r.set(t,e+1)}}decrement(e,t,n){let r=this.#n.get(t)??0;if(r===1?this.#n.delete(t):this.#n.set(t,r-1),e){let e=this.#r.get(t)??0;e===1?this.#r.delete(t):this.#r.set(t,e-1)}this.#l||n||(this.#l=!0,qe(()=>{this.#l=!1,this.flush()}))}transfer_effects(e,t){for(let t of e)this.#o.add(t);for(let e of t)this.#s.add(e);e.clear(),t.clear()}oncommit(e){this.#e.add(e)}ondiscard(e){this.#t.add(e)}settled(){return(this.#i??=v()).promise}static ensure(){if(A===null){let t=A=new e;st||(it.add(A),ot||qe(()=>{A===t&&t.flush()}))}return A}apply(){if(!ze||!this.is_fork&&it.size===1){j=null;return}j=new Map;for(let[e,[t]]of this.current)j.set(e,t);for(let n of it)if(!(n===this||n.is_fork)){var e=!1,t=!1;if(n.id<this.id)for(let[r,[,i]]of n.current)i||(e||=this.current.has(r),t||=!this.current.has(r));if(e&&t)this.#u.add(n);else for(let[e,t]of n.previous)j.has(e)||j.set(e,t)}}schedule(e){if(at=e,e.b?.is_pending&&e.f&16777228&&!(e.f&32768)){e.b.defer_effect(e);return}for(var t=e;t.parent!==null;){t=t.parent;var n=t.f;if(ct!==null&&t===W&&(ze||(V===null||!(V.f&2))&&!tt))return;if(n&96){if(!(n&1024))return;t.f^=y}}this.#a.push(t)}};function M(e){var t=ot;ot=!0;try{var n;for(e&&(A!==null&&!A.is_fork&&A.flush(),n=e());;){if(Je(),A===null)return n;A.flush()}}finally{ot=t}}function pt(){try{Ce()}catch(e){Xe(e,at)}}var mt=null;function ht(e){var t=e.length;if(t!==0){for(var n=0;n<t;){var r=e[n++];if(!(r.f&24576)&&Un(r)&&(mt=new Set,Jn(r),r.deps===null&&r.first===null&&r.nodes===null&&r.teardown===null&&r.ac===null&&En(r),mt?.size>0)){Bt.clear();for(let e of mt){if(e.f&24576)continue;let t=[e],n=e.parent;for(;n!==null;)mt.has(n)&&(mt.delete(n),t.push(n)),n=n.parent;for(let e=t.length-1;e>=0;e--){let n=t[e];n.f&24576||Jn(n)}}mt.clear()}}mt=null}}function gt(e,t,n,r){if(!n.has(e)&&(n.add(e),e.reactions!==null))for(let i of e.reactions){let e=i.f;e&2?gt(i,t,n,r):e&4194320&&!(e&2048)&&_t(i,t,r)&&(k(i,b),vt(i))}}function _t(e,t,n){let r=n.get(e);if(r!==void 0)return r;if(e.deps!==null)for(let r of e.deps){if(o.call(t,r))return!0;if(r.f&2&&_t(r,t,n))return n.set(r,!0),!0}return n.set(e,!1),!1}function vt(e){A.schedule(e)}function yt(e,t){if(!(e.f&32&&e.f&1024)){e.f&2048?t.d.push(e):e.f&4096&&t.m.push(e),k(e,y);for(var n=e.first;n!==null;)yt(n,t),n=n.next}}function bt(e){k(e,y);for(var t=e.first;t!==null;)bt(t),t=t.next}function xt(e){let t=0,n=Ht(0),r;return()=>{fn()&&(X(n),bn(()=>(t===0&&(r=Zn(()=>e(()=>qt(n)))),t+=1,()=>{qe(()=>{--t,t===0&&(r?.(),r=void 0,qt(n))})})))}}var St=re|ae;function Ct(e,t,n,r){new wt(e,t,n,r)}var wt=class{parent;is_pending=!1;transform_error;#e;#t=C?T:null;#n;#r;#i;#a=null;#o=null;#s=null;#c=null;#l=0;#u=0;#d=!1;#f=new Set;#p=new Set;#m=null;#h=xt(()=>(this.#m=Ht(this.#l),()=>{this.#m=null}));constructor(e,t,n,r){this.#e=e,this.#n=t,this.#r=e=>{var t=W;t.b=this,t.f|=128,n(e)},this.parent=W.b,this.transform_error=r??this.parent?.transform_error??(e=>e),this.#i=xn(()=>{if(C){let e=this.#t;Me();let t=e.data===`[!`;if(e.data.startsWith(`[?`)){let t=JSON.parse(e.data.slice(2));this.#_(t)}else t?this.#v():this.#g()}else this.#y()},St),C&&(this.#e=T)}#g(){try{this.#a=z(()=>this.#r(this.#e))}catch(e){this.error(e)}}#_(e){let t=this.#n.failed;t&&(this.#s=z(()=>{t(this.#e,()=>e,()=>()=>{})}))}#v(){let e=this.#n.pending;e&&(this.is_pending=!0,this.#o=z(()=>e(this.#e)),qe(()=>{var e=this.#c=document.createDocumentFragment(),t=P();e.append(t),this.#a=this.#x(()=>z(()=>this.#r(t))),this.#u===0&&(this.#e.before(e),this.#c=null,Dn(this.#o,()=>{this.#o=null}),this.#b(A))}))}#y(){try{if(this.is_pending=this.has_pending_snippet(),this.#u=0,this.#l=0,this.#a=z(()=>{this.#r(this.#e)}),this.#u>0){var e=this.#c=document.createDocumentFragment();jn(this.#a,e);let t=this.#n.pending;this.#o=z(()=>t(this.#e))}else this.#b(A)}catch(e){this.error(e)}}#b(e){this.is_pending=!1,e.transfer_effects(this.#f,this.#p)}defer_effect(e){et(e,this.#f,this.#p)}is_rendered(){return!this.is_pending&&(!this.parent||this.parent.is_rendered())}has_pending_snippet(){return!!this.#n.pending}#x(e){var t=W,n=V,r=O;G(this.#i),U(this.#i),Ve(this.#i.ctx);try{return ft.ensure(),e()}catch(e){return Ye(e),null}finally{G(t),U(n),Ve(r)}}#S(e,t){if(!this.has_pending_snippet()){this.parent&&this.parent.#S(e,t);return}this.#u+=e,this.#u===0&&(this.#b(t),this.#o&&Dn(this.#o,()=>{this.#o=null}),this.#c&&=(this.#e.before(this.#c),null))}update_pending_count(e,t){this.#S(e,t),this.#l+=e,!(!this.#m||this.#d)&&(this.#d=!0,qe(()=>{this.#d=!1,this.#m&&Gt(this.#m,this.#l)}))}get_effect_pending(){return this.#h(),X(this.#m)}error(e){var t=this.#n.onerror;let n=this.#n.failed;if(!t&&!n)throw e;this.#a&&=(B(this.#a),null),this.#o&&=(B(this.#o),null),this.#s&&=(B(this.#s),null),C&&(E(this.#t),Ne(),E(Pe()));var r=!1,i=!1;let a=()=>{if(r){je();return}r=!0,i&&ke(),this.#s!==null&&Dn(this.#s,()=>{this.#s=null}),this.#x(()=>{this.#y()})},o=e=>{try{i=!0,t?.(e,a),i=!1}catch(e){Xe(e,this.#i&&this.#i.parent)}n&&(this.#s=this.#x(()=>{try{return z(()=>{var t=W;t.b=this,t.f|=128,n(this.#e,()=>e,()=>a)})}catch(e){return Xe(e,this.#i.parent),null}}))};qe(()=>{var t;try{t=this.transform_error(e)}catch(e){Xe(e,this.#i&&this.#i.parent);return}typeof t==`object`&&t&&typeof t.then==`function`?t.then(o,e=>Xe(e,this.#i&&this.#i.parent)):o(t)})}};function Tt(e,t,n,r){let i=We()?kt:Mt;var a=e.filter(e=>!e.settled);if(n.length===0&&a.length===0){r(t.map(i));return}var o=W,s=Et(),c=a.length===1?a[0].promise:a.length>1?Promise.all(a.map(e=>e.promise)):null;function l(e){s();try{r(e)}catch(e){o.f&16384||Xe(e,o)}Dt()}if(n.length===0){c.then(()=>l(t.map(i)));return}var u=Ot();function d(){Promise.all(n.map(e=>At(e))).then(e=>l([...t.map(i),...e])).catch(e=>Xe(e,o)).finally(()=>u())}c?c.then(()=>{s(),d(),Dt()}):d()}function Et(){var e=W,t=V,n=O,r=A;return function(i=!0){G(e),U(t),Ve(n),i&&!(e.f&16384)&&(r?.activate(),r?.apply())}}function Dt(e=!0){G(null),U(null),Ve(null),e&&A?.deactivate()}function Ot(){var e=W,t=e.b,n=A,r=t.is_rendered();return t.update_pending_count(1,n),n.increment(r,e),(i=!1)=>{t.update_pending_count(-1,n),n.decrement(r,e,i)}}function kt(e){var t=2|b,r=V!==null&&V.f&2?V:null;return W!==null&&(W.f|=ae),{ctx:O,deps:null,effects:null,equals:Ie,f:t,fn:e,reactions:null,rv:0,v:n,wv:0,parent:r??W,ac:null}}function At(e,t,r){let i=W;i===null&&ve();var a=void 0,o=Ht(n),s=!V,c=new Map;return yn(()=>{var t=W,n=v();a=n.promise;try{Promise.resolve(e()).then(n.resolve,n.reject).finally(Dt)}catch(e){n.reject(e),Dt()}var r=A;if(s){if(t.f&32768)var l=Ot();if(i.b.is_rendered())c.get(r)?.reject(he),c.delete(r);else{for(let e of c.values())e.reject(he);c.clear()}c.set(r,n)}let u=(e,n=void 0)=>{if(l&&l(n===he),!(n===he||t.f&16384)){if(r.activate(),n)o.f|=de,Gt(o,n);else{o.f&8388608&&(o.f^=de),Gt(o,e);for(let[e,t]of c){if(c.delete(e),e===r)break;t.reject(he)}}r.deactivate()}};n.promise.then(u,e=>u(null,e||`unknown`))}),pn(()=>{for(let e of c.values())e.reject(he)}),new Promise(e=>{function t(n){function r(){n===a?e(o):t(a)}n.then(r,r)}t(a)})}function jt(e){let t=kt(e);return ze||In(t),t}function Mt(e){let t=kt(e);return t.equals=Re,t}function Nt(e){var t=e.effects;if(t!==null){e.effects=null;for(var n=0;n<t.length;n+=1)B(t[n])}}function Pt(e){for(var t=e.parent;t!==null;){if(!(t.f&2))return t.f&16384?null:t;t=t.parent}return null}function Ft(e){var t,n=W;G(Pt(e));try{e.f&=~ce,Nt(e),t=Gn(e)}finally{G(n)}return t}function It(e){var t=e.v,n=Ft(e);if(!e.equals(n)&&(e.wv=Hn(),(!A?.is_fork||e.deps===null)&&(e.v=n,A?.capture(e,t,!0),e.deps===null))){k(e,y);return}Pn||(j===null?Qe(e):(fn()||A?.is_fork)&&j.set(e,n))}function Lt(e){if(e.effects!==null)for(let t of e.effects)(t.teardown||t.ac)&&(t.teardown?.(),t.ac?.abort(he),t.teardown=g,t.ac=null,qn(t,0),Cn(t))}function Rt(e){if(e.effects!==null)for(let t of e.effects)t.teardown&&Jn(t)}var zt=new Set,Bt=new Map,Vt=!1;function Ht(e,t){return{f:0,v:e,reactions:null,equals:Ie,rv:0,wv:0}}function Ut(e,t){let n=Ht(e,t);return In(n),n}function Wt(e,t=!1,n=!0){let r=Ht(e);return t||(r.equals=Re),Be&&n&&O!==null&&O.l!==null&&(O.l.s??=[]).push(r),r}function N(e,t,n=!1){return V!==null&&(!H||V.f&131072)&&We()&&V.f&4325394&&(K===null||!o.call(K,e))&&Oe(),Gt(e,n?Yt(t):t,lt)}function Gt(e,t,n=null){if(!e.equals(t)){var r=e.v;Pn?Bt.set(e,t):Bt.set(e,r),e.v=t;var i=ft.ensure();if(i.capture(e,r),e.f&2){let t=e;e.f&2048&&Ft(t),j===null&&Qe(t)}e.wv=Hn(),Jt(e,b,n),We()&&W!==null&&W.f&1024&&!(W.f&96)&&(Y===null?Ln([e]):Y.push(e)),!i.is_fork&&zt.size>0&&!Vt&&Kt()}return t}function Kt(){Vt=!1;for(let e of zt)e.f&1024&&k(e,x),Un(e)&&Jn(e);zt.clear()}function qt(e){N(e,e.v+1)}function Jt(e,t,n){var r=e.reactions;if(r!==null)for(var i=We(),a=r.length,o=0;o<a;o++){var s=r[o],c=s.f;if(!(!i&&s===W)){var l=(c&b)===0;if(l&&k(s,t),c&2){var u=s;j?.delete(u),c&65536||(c&512&&(s.f|=ce),Jt(u,x,n))}else if(l){var d=s;c&16&&mt!==null&&mt.add(d),n===null?vt(d):n.push(d)}}}}function Yt(e){if(typeof e!=`object`||!e||fe in e)return e;let t=m(e);if(t!==f&&t!==p)return e;var r=new Map,a=i(e),o=Ut(0),s=null,c=Bn,l=e=>{if(Bn===c)return e();var t=V,n=Bn;U(null),Vn(c);var r=e();return U(t),Vn(n),r};return a&&r.set(`length`,Ut(e.length,s)),new Proxy(e,{defineProperty(e,t,n){(!(`value`in n)||n.configurable===!1||n.enumerable===!1||n.writable===!1)&&Ee();var i=r.get(t);return i===void 0?l(()=>{var e=Ut(n.value,s);return r.set(t,e),e}):N(i,n.value,!0),!0},deleteProperty(e,t){var i=r.get(t);if(i===void 0){if(t in e){let e=l(()=>Ut(n,s));r.set(t,e),qt(o)}}else N(i,n),qt(o);return!0},get(t,i,a){if(i===fe)return e;var o=r.get(i),c=i in t;if(o===void 0&&(!c||u(t,i)?.writable)&&(o=l(()=>Ut(Yt(c?t[i]:n),s)),r.set(i,o)),o!==void 0){var d=X(o);return d===n?void 0:d}return Reflect.get(t,i,a)},getOwnPropertyDescriptor(e,t){var i=Reflect.getOwnPropertyDescriptor(e,t);if(i&&`value`in i){var a=r.get(t);a&&(i.value=X(a))}else if(i===void 0){var o=r.get(t),s=o?.v;if(o!==void 0&&s!==n)return{enumerable:!0,configurable:!0,value:s,writable:!0}}return i},has(e,t){if(t===fe)return!0;var i=r.get(t),a=i!==void 0&&i.v!==n||Reflect.has(e,t);return(i!==void 0||W!==null&&(!a||u(e,t)?.writable))&&(i===void 0&&(i=l(()=>Ut(a?Yt(e[t]):n,s)),r.set(t,i)),X(i)===n)?!1:a},set(e,t,i,c){var d=r.get(t),f=t in e;if(a&&t===`length`)for(var p=i;p<d.v;p+=1){var m=r.get(p+``);m===void 0?p in e&&(m=l(()=>Ut(n,s)),r.set(p+``,m)):N(m,n)}if(d===void 0)(!f||u(e,t)?.writable)&&(d=l(()=>Ut(void 0,s)),N(d,Yt(i)),r.set(t,d));else{f=d.v!==n;var h=l(()=>Yt(i));N(d,h)}var g=Reflect.getOwnPropertyDescriptor(e,t);if(g?.set&&g.set.call(c,i),!f){if(a&&typeof t==`string`){var _=r.get(`length`),v=Number(t);Number.isInteger(v)&&v>=_.v&&N(_,v+1)}qt(o)}return!0},ownKeys(e){X(o);var t=Reflect.ownKeys(e).filter(e=>{var t=r.get(e);return t===void 0||t.v!==n});for(var[i,a]of r)a.v!==n&&!(i in e)&&t.push(i);return t},setPrototypeOf(){De()}})}var Xt,Zt,Qt,$t;function en(){if(Xt===void 0){Xt=window,Zt=/Firefox/.test(navigator.userAgent);var e=Element.prototype,t=Node.prototype,n=Text.prototype;Qt=u(t,`firstChild`).get,$t=u(t,`nextSibling`).get,h(e)&&(e.__click=void 0,e.__className=void 0,e.__attributes=null,e.__style=void 0,e.__e=void 0),h(n)&&(n.__t=void 0)}}function P(e=``){return document.createTextNode(e)}function tn(e){return Qt.call(e)}function F(e){return $t.call(e)}function I(e,t){if(!C)return tn(e);var n=tn(T);if(n===null)n=T.appendChild(P());else if(t&&n.nodeType!==3){var r=P();return n?.before(r),E(r),r}return t&&sn(n),E(n),n}function nn(e,t=!1){if(!C){var n=tn(e);return n instanceof Comment&&n.data===``?F(n):n}if(t){if(T?.nodeType!==3){var r=P();return T?.before(r),E(r),r}sn(T)}return T}function L(e,t=1,n=!1){let r=C?T:e;for(var i;t--;)i=r,r=F(r);if(!C)return r;if(n){if(r?.nodeType!==3){var a=P();return r===null?i?.after(a):r.before(a),E(a),a}sn(r)}return E(r),r}function rn(e){e.textContent=``}function an(){return!ze||mt!==null?!1:(W.f&te)!==0}function on(e,t,n){let r=n?{is:n}:void 0;return document.createElementNS(t??`http://www.w3.org/1999/xhtml`,e,r)}function sn(e){if(e.nodeValue.length<65536)return;let t=e.nextSibling;for(;t!==null&&t.nodeType===3;)t.remove(),e.nodeValue+=t.nodeValue,t=e.nextSibling}function cn(e){var t=V,n=W;U(null),G(null);try{return e()}finally{U(t),G(n)}}function ln(e){W===null&&(V===null&&Se(e),xe()),Pn&&be(e)}function un(e,t){var n=t.last;n===null?t.last=t.first=e:(n.next=e,e.prev=n,t.last=e)}function dn(e,t){var n=W;n!==null&&n.f&8192&&(e|=S);var r={ctx:O,deps:null,nodes:null,f:e|b|512,first:null,fn:t,last:null,next:null,parent:n,b:n&&n.b,prev:null,teardown:null,wv:0,ac:null},i=r;if(e&4)ct===null?ft.ensure().schedule(r):ct.push(r);else if(t!==null){try{Jn(r)}catch(e){throw B(r),e}i.deps===null&&i.teardown===null&&i.nodes===null&&i.first===i.last&&!(i.f&524288)&&(i=i.first,e&16&&e&65536&&i!==null&&(i.f|=re))}if(i!==null&&(i.parent=n,n!==null&&un(i,n),V!==null&&V.f&2&&!(e&64))){var a=V;(a.effects??=[]).push(i)}return r}function fn(){return V!==null&&!H}function pn(e){let t=dn(8,null);return k(t,y),t.teardown=e,t}function mn(e){ln(`$effect`);var t=W.f;if(!V&&t&32&&!(t&32768)){var n=O;(n.e??=[]).push(e)}else return hn(e)}function hn(e){return dn(4|oe,e)}function gn(e){ft.ensure();let t=dn(64|ae,e);return()=>{B(t)}}function _n(e){ft.ensure();let t=dn(64|ae,e);return(e={})=>new Promise(n=>{e.outro?Dn(t,()=>{B(t),n(void 0)}):(B(t),n(void 0))})}function vn(e){return dn(4,e)}function yn(e){return dn(ue|ae,e)}function bn(e,t=0){return dn(8|t,e)}function R(e,t=[],n=[],r=[]){Tt(r,t,n,t=>{dn(8,()=>e(...t.map(X)))})}function xn(e,t=0){return dn(16|t,e)}function z(e){return dn(32|ae,e)}function Sn(e){var t=e.teardown;if(t!==null){let e=Pn,n=V;Fn(!0),U(null);try{t.call(null)}finally{Fn(e),U(n)}}}function Cn(e,t=!1){var n=e.first;for(e.first=e.last=null;n!==null;){let e=n.ac;e!==null&&cn(()=>{e.abort(he)});var r=n.next;n.f&64?n.parent=null:B(n,t),n=r}}function wn(e){for(var t=e.first;t!==null;){var n=t.next;t.f&32||B(t),t=n}}function B(e,t=!0){var n=!1;(t||e.f&262144)&&e.nodes!==null&&e.nodes.end!==null&&(Tn(e.nodes.start,e.nodes.end),n=!0),k(e,ne),Cn(e,t&&!n),qn(e,0);var r=e.nodes&&e.nodes.t;if(r!==null)for(let e of r)e.stop();Sn(e),e.f^=ne,e.f|=ee;var i=e.parent;i!==null&&i.first!==null&&En(e),e.next=e.prev=e.teardown=e.ctx=e.deps=e.fn=e.nodes=e.ac=e.b=null}function Tn(e,t){for(;e!==null;){var n=e===t?null:F(e);e.remove(),e=n}}function En(e){var t=e.parent,n=e.prev,r=e.next;n!==null&&(n.next=r),r!==null&&(r.prev=n),t!==null&&(t.first===e&&(t.first=r),t.last===e&&(t.last=n))}function Dn(e,t,n=!0){var r=[];On(e,r,!0);var i=()=>{n&&B(e),t&&t()},a=r.length;if(a>0){var o=()=>--a||i();for(var s of r)s.out(o)}else i()}function On(e,t,n){if(!(e.f&8192)){e.f^=S;var r=e.nodes&&e.nodes.t;if(r!==null)for(let e of r)(e.is_global||n)&&t.push(e);for(var i=e.first;i!==null;){var a=i.next,o=(i.f&65536)!=0||(i.f&32)!=0&&(e.f&16)!=0;On(i,t,o?n:!1),i=a}}}function kn(e){An(e,!0)}function An(e,t){if(e.f&8192){e.f^=S,e.f&1024||(k(e,b),ft.ensure().schedule(e));for(var n=e.first;n!==null;){var r=n.next,i=(n.f&65536)!=0||(n.f&32)!=0;An(n,i?t:!1),n=r}var a=e.nodes&&e.nodes.t;if(a!==null)for(let e of a)(e.is_global||t)&&e.in()}}function jn(e,t){if(e.nodes)for(var n=e.nodes.start,r=e.nodes.end;n!==null;){var i=n===r?null:F(n);t.append(n),n=i}}var Mn=null,Nn=!1,Pn=!1;function Fn(e){Pn=e}var V=null,H=!1;function U(e){V=e}var W=null;function G(e){W=e}var K=null;function In(e){V!==null&&(!ze||V.f&2)&&(K===null?K=[e]:K.push(e))}var q=null,J=0,Y=null;function Ln(e){Y=e}var Rn=1,zn=0,Bn=zn;function Vn(e){Bn=e}function Hn(){return++Rn}function Un(e){var t=e.f;if(t&2048)return!0;if(t&2&&(e.f&=~ce),t&4096){for(var n=e.deps,r=n.length,i=0;i<r;i++){var a=n[i];if(Un(a)&&It(a),a.wv>e.wv)return!0}t&512&&j===null&&k(e,y)}return!1}function Wn(e,t,n=!0){var r=e.reactions;if(r!==null&&!(!ze&&K!==null&&o.call(K,e)))for(var i=0;i<r.length;i++){var a=r[i];a.f&2?Wn(a,t,!1):t===a&&(n?k(a,b):a.f&1024&&k(a,x),vt(a))}}function Gn(e){var t=q,n=J,r=Y,i=V,a=K,o=O,s=H,c=Bn,l=e.f;q=null,J=0,Y=null,V=l&96?null:e,K=null,Ve(e.ctx),H=!1,Bn=++zn,e.ac!==null&&(cn(()=>{e.ac.abort(he)}),e.ac=null);try{e.f|=le;var u=e.fn,d=u();e.f|=te;var f=e.deps,p=A?.is_fork;if(q!==null){var m;if(p||qn(e,J),f!==null&&J>0)for(f.length=J+q.length,m=0;m<q.length;m++)f[J+m]=q[m];else e.deps=f=q;if(fn()&&e.f&512)for(m=J;m<f.length;m++)(f[m].reactions??=[]).push(e)}else !p&&f!==null&&J<f.length&&(qn(e,J),f.length=J);if(We()&&Y!==null&&!H&&f!==null&&!(e.f&6146))for(m=0;m<Y.length;m++)Wn(Y[m],e);if(i!==null&&i!==e){if(zn++,i.deps!==null)for(let e=0;e<n;e+=1)i.deps[e].rv=zn;if(t!==null)for(let e of t)e.rv=zn;Y!==null&&(r===null?r=Y:r.push(...Y))}return e.f&8388608&&(e.f^=de),d}catch(e){return Ye(e)}finally{e.f^=le,q=t,J=n,Y=r,V=i,K=a,Ve(o),H=s,Bn=c}}function Kn(e,t){let n=t.reactions;if(n!==null){var r=a.call(n,e);if(r!==-1){var i=n.length-1;i===0?n=t.reactions=null:(n[r]=n[i],n.pop())}}if(n===null&&t.f&2&&(q===null||!o.call(q,t))){var s=t;s.f&512&&(s.f^=512,s.f&=~ce),Qe(s),Lt(s),qn(s,0)}}function qn(e,t){var n=e.deps;if(n!==null)for(var r=t;r<n.length;r++)Kn(e,n[r])}function Jn(e){var t=e.f;if(!(t&16384)){k(e,y);var n=W,r=Nn;W=e,Nn=!0;try{t&16777232?wn(e):Cn(e),Sn(e);var i=Gn(e);e.teardown=typeof i==`function`?i:null,e.wv=Rn}finally{Nn=r,W=n}}}function X(e){var t=(e.f&2)!=0;if(Mn?.add(e),V!==null&&!H&&!(W!==null&&W.f&16384)&&(K===null||!o.call(K,e))){var n=V.deps;if(V.f&2097152)e.rv<zn&&(e.rv=zn,q===null&&n!==null&&n[J]===e?J++:q===null?q=[e]:q.push(e));else{(V.deps??=[]).push(e);var r=e.reactions;r===null?e.reactions=[V]:o.call(r,V)||r.push(V)}}if(Pn&&Bt.has(e))return Bt.get(e);if(t){var i=e;if(Pn){var a=i.v;return(!(i.f&1024)&&i.reactions!==null||Xn(i))&&(a=Ft(i)),Bt.set(i,a),a}var s=(i.f&512)==0&&!H&&V!==null&&(Nn||(V.f&512)!=0),c=(i.f&te)===0;Un(i)&&(s&&(i.f|=512),It(i)),s&&!c&&(Rt(i),Yn(i))}if(j?.has(e))return j.get(e);if(e.f&8388608)throw e.v;return e.v}function Yn(e){if(e.f|=512,e.deps!==null)for(let t of e.deps)(t.reactions??=[]).push(e),t.f&2&&!(t.f&512)&&(Rt(t),Yn(t))}function Xn(e){if(e.v===n)return!0;if(e.deps===null)return!1;for(let t of e.deps)if(Bt.has(t)||t.f&2&&Xn(t))return!0;return!1}function Zn(e){var t=H;try{return H=!0,e()}finally{H=t}}var Qn=Symbol(`events`),$n=new Set,er=new Set;function tr(e,t,n,r={}){function i(e){if(r.capture||or.call(t,e),!e.cancelBubble)return cn(()=>n?.call(this,e))}return e.startsWith(`pointer`)||e.startsWith(`touch`)||e===`wheel`?qe(()=>{t.addEventListener(e,i,r)}):t.addEventListener(e,i,r),i}function nr(e,t,n,r,i){var a={capture:r,passive:i},o=tr(e,t,n,a);(t===document.body||t===window||t===document||t instanceof HTMLMediaElement)&&pn(()=>{t.removeEventListener(e,o,a)})}function rr(e,t,n){(t[Qn]??={})[e]=n}function ir(e){for(var t=0;t<e.length;t++)$n.add(e[t]);for(var n of er)n(e)}var ar=null;function or(e){var t=this,n=t.ownerDocument,r=e.type,i=e.composedPath?.()||[],a=i[0]||e.target;ar=e;var o=0,s=ar===e&&e[Qn];if(s){var c=i.indexOf(s);if(c!==-1&&(t===document||t===window)){e[Qn]=t;return}var u=i.indexOf(t);if(u===-1)return;c<=u&&(o=c)}if(a=i[o]||e.target,a!==t){l(e,`currentTarget`,{configurable:!0,get(){return a||n}});var d=V,f=W;U(null),G(null);try{for(var p,m=[];a!==null;){var h=a.assignedSlot||a.parentNode||a.host||null;try{var g=a[Qn]?.[r];g!=null&&(!a.disabled||e.target===a)&&g.call(a,e)}catch(e){p?m.push(e):p=e}if(e.cancelBubble||h===t||h===null)break;a=h}if(p){for(let e of m)queueMicrotask(()=>{throw e});throw p}}finally{e[Qn]=t,delete e.currentTarget,U(d),G(f)}}}var sr=globalThis?.window?.trustedTypes&&globalThis.window.trustedTypes.createPolicy(`svelte-trusted-html`,{createHTML:e=>e});function cr(e){return sr?.createHTML(e)??e}function lr(e){var t=on(`template`);return t.innerHTML=cr(e.replaceAll(`<!>`,`<!---->`)),t.content}function ur(e,t){var n=W;n.nodes===null&&(n.nodes={start:e,end:t,a:null,t:null})}function Z(e,t){var n=(t&1)!=0,r=(t&2)!=0,i,a=!e.startsWith(`<!>`);return()=>{if(C)return ur(T,null),T;i===void 0&&(i=lr(a?e:`<!>`+e),n||(i=tn(i)));var t=r||Zt?document.importNode(i,!0):i.cloneNode(!0);if(n){var o=tn(t),s=t.lastChild;ur(o,s)}else ur(t,t);return t}}function dr(e=``){if(!C){var t=P(e+``);return ur(t,t),t}var n=T;return n.nodeType===3?sn(n):(n.before(n=P()),E(n)),ur(n,n),n}function fr(){if(C)return ur(T,null),T;var e=document.createDocumentFragment(),t=document.createComment(``),n=P();return e.append(t,n),ur(t,n),e}function Q(e,t){if(C){var n=W;(!(n.f&32768)||n.nodes.end===null)&&(n.nodes.end=T),Me();return}e!==null&&e.before(t)}[...`allowfullscreen.async.autofocus.autoplay.checked.controls.default.disabled.formnovalidate.indeterminate.inert.ismap.loop.multiple.muted.nomodule.novalidate.open.playsinline.readonly.required.reversed.seamless.selected.webkitdirectory.defer.disablepictureinpicture.disableremoteplayback`.split(`.`)];var pr=[`touchstart`,`touchmove`];function mr(e){return pr.includes(e)}function hr(e,t){var n=t==null?``:typeof t==`object`?`${t}`:t;n!==(e.__t??=e.nodeValue)&&(e.__t=n,e.nodeValue=`${n}`)}function gr(e,t){return yr(e,t)}function _r(e,n){en(),n.intro=n.intro??!1;let r=n.target,i=C,a=T;try{for(var o=tn(r);o&&(o.nodeType!==8||o.data!==`[`);)o=F(o);if(!o)throw t;w(!0),E(o);let i=yr(e,{...n,anchor:o});return w(!1),i}catch(i){if(i instanceof Error&&i.message.split(`
2
2
  `).some(e=>e.startsWith(`https://svelte.dev/e/`)))throw i;return i!==t&&console.warn(`Failed to hydrate: `,i),n.recover===!1&&we(),en(),rn(r),w(!1),gr(e,n)}finally{w(i),E(a)}}var vr=new Map;function yr(e,{target:n,anchor:r,props:i={},events:a,context:o,intro:c=!0,transformError:l}){en();var u=void 0,d=_n(()=>{var c=r??n.appendChild(P());Ct(c,{pending:()=>{}},n=>{He({});var r=O;if(o&&(r.c=o),a&&(i.$$events=a),C&&ur(n,null),u=e(n,i)||{},C&&(W.nodes.end=T,T===null||T.nodeType!==8||T.data!==`]`))throw Ae(),t;Ue()},l);var d=new Set,f=e=>{for(var t=0;t<e.length;t++){var r=e[t];if(!d.has(r)){d.add(r);var i=mr(r);for(let e of[n,document]){var a=vr.get(e);a===void 0&&(a=new Map,vr.set(e,a));var o=a.get(r);o===void 0?(e.addEventListener(r,or,{passive:i}),a.set(r,1)):a.set(r,o+1)}}}};return f(s($n)),er.add(f),()=>{for(var e of d)for(let r of[n,document]){var t=vr.get(r),i=t.get(e);--i==0?(r.removeEventListener(e,or),t.delete(e),t.size===0&&vr.delete(r)):t.set(e,i)}er.delete(f),c!==r&&c.parentNode?.removeChild(c)}});return br.set(u,d),u}var br=new WeakMap;function xr(e,t){let n=br.get(e);return n?(br.delete(e),n(t)):Promise.resolve()}var Sr=class{anchor;#e=new Map;#t=new Map;#n=new Map;#r=new Set;#i=!0;constructor(e,t=!0){this.anchor=e,this.#i=t}#a=e=>{if(this.#e.has(e)){var t=this.#e.get(e),n=this.#t.get(t);if(n)kn(n),this.#r.delete(t);else{var r=this.#n.get(t);r&&(this.#t.set(t,r.effect),this.#n.delete(t),r.fragment.lastChild.remove(),this.anchor.before(r.fragment),n=r.effect)}for(let[t,n]of this.#e){if(this.#e.delete(t),t===e)break;let r=this.#n.get(n);r&&(B(r.effect),this.#n.delete(n))}for(let[e,r]of this.#t){if(e===t||this.#r.has(e))continue;let i=()=>{if(Array.from(this.#e.values()).includes(e)){var t=document.createDocumentFragment();jn(r,t),t.append(P()),this.#n.set(e,{effect:r,fragment:t})}else B(r);this.#r.delete(e),this.#t.delete(e)};this.#i||!n?(this.#r.add(e),Dn(r,i,!1)):i()}}};#o=e=>{this.#e.delete(e);let t=Array.from(this.#e.values());for(let[e,n]of this.#n)t.includes(e)||(B(n.effect),this.#n.delete(e))};ensure(e,t){var n=A,r=an();if(t&&!this.#t.has(e)&&!this.#n.has(e))if(r){var i=document.createDocumentFragment(),a=P();i.append(a),this.#n.set(e,{effect:z(()=>t(a)),fragment:i})}else this.#t.set(e,z(()=>t(this.anchor)));if(this.#e.set(n,e),r){for(let[t,r]of this.#t)t===e?n.unskip_effect(r):n.skip_effect(r);for(let[t,r]of this.#n)t===e?n.unskip_effect(r.effect):n.skip_effect(r.effect);n.oncommit(this.#a),n.ondiscard(this.#o)}else C&&(this.anchor=T),this.#a(n)}};function Cr(e){O===null&&_e(`onMount`),Be&&O.l!==null?wr(O).m.push(e):mn(()=>{let t=Zn(e);if(typeof t==`function`)return t})}function wr(e){var t=e.l;return t.u??={a:[],b:[],m:[]}}function Tr(e,t,n=!1){var r;C&&(r=T,Me());var i=new Sr(e),a=n?re:0;function o(e,t){if(C){var n=Fe(r);if(e!==parseInt(n.substring(1))){var a=Pe();E(a),i.anchor=a,w(!1),i.ensure(e,t),w(!0);return}}i.ensure(e,t)}xn(()=>{var e=!1;t((t,n=0)=>{e=!0,o(n,t)}),e||o(-1,null)},a)}function Er(e,t,n){for(var r=[],i=t.length,a,o=t.length,c=0;c<i;c++){let n=t[c];Dn(n,()=>{if(a){if(a.pending.delete(n),a.done.add(n),a.pending.size===0){var t=e.outrogroups;Dr(e,s(a.done)),t.delete(a),t.size===0&&(e.outrogroups=null)}}else --o},!1)}if(o===0){var l=r.length===0&&n!==null;if(l){var u=n,d=u.parentNode;rn(d),d.append(u),e.items.clear()}Dr(e,t,!l)}else a={pending:new Set(t),done:new Set},(e.outrogroups??=new Set).add(a)}function Dr(e,t,n=!0){var r;if(e.pending.size>0){r=new Set;for(let t of e.pending.values())for(let n of t)r.add(e.items.get(n).e)}for(var i=0;i<t.length;i++){var a=t[i];r?.has(a)?(a.f|=se,jn(a,document.createDocumentFragment())):B(t[i],n)}}var Or;function kr(e,t,n,r,a,o=null){var c=e,l=new Map;if(t&4){var u=e;c=C?E(tn(u)):u.appendChild(P())}C&&Me();var d=null,f=Mt(()=>{var e=n();return i(e)?e:e==null?[]:s(e)}),p,m=new Map,h=!0;function g(e){v.effect.f&16384||(v.pending.delete(e),v.fallback=d,jr(v,p,c,t,r),d!==null&&(p.length===0?d.f&33554432?(d.f^=se,Nr(d,null,c)):kn(d):Dn(d,()=>{d=null})))}function _(e){v.pending.delete(e)}var v={effect:xn(()=>{p=X(f);var e=p.length;let i=!1;C&&Fe(c)===`[!`!=(e===0)&&(c=Pe(),E(c),w(!1),i=!0);for(var s=new Set,u=A,v=an(),y=0;y<e;y+=1){C&&T.nodeType===8&&T.data===`]`&&(c=T,i=!0,w(!1));var b=p[y],x=r(b,y),S=h?null:l.get(x);S?(S.v&&Gt(S.v,b),S.i&&Gt(S.i,y),v&&u.unskip_effect(S.e)):(S=Mr(l,h?c:Or??=P(),b,x,y,a,t,n),h||(S.e.f|=se),l.set(x,S)),s.add(x)}if(e===0&&o&&!d&&(h?d=z(()=>o(c)):(d=z(()=>o(Or??=P())),d.f|=se)),e>s.size&&ye(``,``,``),C&&e>0&&E(Pe()),!h)if(m.set(u,s),v){for(let[e,t]of l)s.has(e)||u.skip_effect(t.e);u.oncommit(g),u.ondiscard(_)}else g(u);i&&w(!0),X(f)}),flags:t,items:l,pending:m,outrogroups:null,fallback:d};h=!1,C&&(c=T)}function Ar(e){for(;e!==null&&!(e.f&32);)e=e.next;return e}function jr(e,t,n,r,i){var a=(r&8)!=0,o=t.length,c=e.items,l=Ar(e.effect.first),u,d=null,f,p=[],m=[],h,g,_,v;if(a)for(v=0;v<o;v+=1)h=t[v],g=i(h,v),_=c.get(g).e,_.f&33554432||(_.nodes?.a?.measure(),(f??=new Set).add(_));for(v=0;v<o;v+=1){if(h=t[v],g=i(h,v),_=c.get(g).e,e.outrogroups!==null)for(let t of e.outrogroups)t.pending.delete(_),t.done.delete(_);if(_.f&8192&&(kn(_),a&&(_.nodes?.a?.unfix(),(f??=new Set).delete(_))),_.f&33554432)if(_.f^=se,_===l)Nr(_,null,n);else{var y=d?d.next:l;_===e.effect.last&&(e.effect.last=_.prev),_.prev&&(_.prev.next=_.next),_.next&&(_.next.prev=_.prev),Pr(e,d,_),Pr(e,_,y),Nr(_,y,n),d=_,p=[],m=[],l=Ar(d.next);continue}if(_!==l){if(u!==void 0&&u.has(_)){if(p.length<m.length){var b=m[0],x;d=b.prev;var S=p[0],ee=p[p.length-1];for(x=0;x<p.length;x+=1)Nr(p[x],b,n);for(x=0;x<m.length;x+=1)u.delete(m[x]);Pr(e,S.prev,ee.next),Pr(e,d,S),Pr(e,ee,b),l=b,d=ee,--v,p=[],m=[]}else u.delete(_),Nr(_,l,n),Pr(e,_.prev,_.next),Pr(e,_,d===null?e.effect.first:d.next),Pr(e,d,_),d=_;continue}for(p=[],m=[];l!==null&&l!==_;)(u??=new Set).add(l),m.push(l),l=Ar(l.next);if(l===null)continue}_.f&33554432||p.push(_),d=_,l=Ar(_.next)}if(e.outrogroups!==null){for(let t of e.outrogroups)t.pending.size===0&&(Dr(e,s(t.done)),e.outrogroups?.delete(t));e.outrogroups.size===0&&(e.outrogroups=null)}if(l!==null||u!==void 0){var te=[];if(u!==void 0)for(_ of u)_.f&8192||te.push(_);for(;l!==null;)!(l.f&8192)&&l!==e.fallback&&te.push(l),l=Ar(l.next);var ne=te.length;if(ne>0){var re=r&4&&o===0?n:null;if(a){for(v=0;v<ne;v+=1)te[v].nodes?.a?.measure();for(v=0;v<ne;v+=1)te[v].nodes?.a?.fix()}Er(e,te,re)}}a&&qe(()=>{if(f!==void 0)for(_ of f)_.nodes?.a?.apply()})}function Mr(e,t,n,r,i,a,o,s){var c=o&1?o&16?Ht(n):Wt(n,!1,!1):null,l=o&2?Ht(i):null;return{v:c,i:l,e:z(()=>(a(t,c??n,l??i,s),()=>{e.delete(r)}))}}function Nr(e,t,n){if(e.nodes)for(var r=e.nodes.start,i=e.nodes.end,a=t&&!(t.f&33554432)?t.nodes.start:n;r!==null;){var o=F(r);if(a.before(r),r===i)return;r=o}}function Pr(e,t,n){t===null?e.effect.first=n:t.next=n,n===null?e.effect.last=t:n.prev=t}function Fr(e,t,n,r,i){C&&Me();var a=t.$$slots?.[n],o=!1;a===!0&&(a=t[n===`default`?`children`:n],o=!0),a===void 0?i!==null&&i(e):a(e,o?()=>r:r)}function Ir(e,t){let n=null,r=C;var i;if(C){n=T;for(var a=tn(document.head);a!==null&&(a.nodeType!==8||a.data!==e);)a=F(a);if(a===null)w(!1);else{var o=F(a);a.remove(),E(o)}}C||(i=document.head.appendChild(P()));try{xn(()=>t(i),ie|ae)}finally{r&&(w(!0),E(n))}}function Lr(e,t){vn(()=>{var n=e.getRootNode(),r=n.host?n:n.head??n.ownerDocument.head;if(!r.querySelector(`#`+t.hash)){let e=on(`style`);e.id=t.hash,e.textContent=t.code,r.appendChild(e)}})}var Rr=[...`
3
- \r\f\xA0\v`];function zr(e,t,n){var r=e==null?``:``+e;if(t&&(r=r?r+` `+t:t),n){for(var i of Object.keys(n))if(n[i])r=r?r+` `+i:i;else if(r.length)for(var a=i.length,o=0;(o=r.indexOf(i,o))>=0;){var s=o+a;(o===0||Rr.includes(r[o-1]))&&(s===r.length||Rr.includes(r[s]))?r=(o===0?``:r.substring(0,o))+r.substring(s+1):o=s}}return r===``?null:r}function Br(e,t,n,r,i,a){var o=e.__className;if(C||o!==n||o===void 0){var s=zr(n,r,a);(!C||s!==e.getAttribute(`class`))&&(s==null?e.removeAttribute(`class`):t?e.className=s:e.setAttribute(`class`,s)),e.__className=n}else if(a&&i!==a)for(var c in a){var l=!!a[c];(i==null||l!==!!i[c])&&e.classList.toggle(c,l)}return a}var Vr=Symbol(`is custom element`),Hr=Symbol(`is html`),Ur=ge?`link`:`LINK`;function $(e,t,n,r){var i=Gr(e);C&&(i[t]=e.getAttribute(t),t===`src`||t===`srcset`||t===`href`&&e.nodeName===Ur)||i[t]!==(i[t]=n)&&(t===`loading`&&(e[me]=n),n==null?e.removeAttribute(t):typeof n!=`string`&&qr(e).includes(t)?e[t]=n:e.setAttribute(t,n))}function Wr(e,t,n){var r=V,i=W;let a=C;C&&w(!1),U(null),G(null);try{t!==`style`&&(Kr.has(e.getAttribute(`is`)||e.nodeName)||!customElements||customElements.get(e.getAttribute(`is`)||e.nodeName.toLowerCase())?qr(e).includes(t):n&&typeof n==`object`)?e[t]=n:$(e,t,n==null?n:String(n))}finally{U(r),G(i),a&&w(!0)}}function Gr(e){return e.__attributes??={[Vr]:e.nodeName.includes(`-`),[Hr]:e.namespaceURI===r}}var Kr=new Map;function qr(e){var t=e.getAttribute(`is`)||e.nodeName,n=Kr.get(t);if(n)return n;Kr.set(t,n=[]);for(var r,i=e,a=Element.prototype;a!==i;){for(var o in r=d(i),r)r[o].set&&n.push(o);i=m(i)}return n}function Jr(e,t,n,r){var i=!Be||(n&2)!=0,a=(n&8)!=0,o=(n&16)!=0,s=r,c=!0,l=()=>(c&&(c=!1,s=o?Zn(r):r),s);let d;if(a){var f=fe in e||pe in e;d=u(e,t)?.set??(f&&t in e?n=>e[t]=n:void 0)}var p,m=!1;a?[p,m]=rt(()=>e[t]):p=e[t],p===void 0&&r!==void 0&&(p=l(),d&&(i&&Te(t),d(p)));var h=i?()=>{var n=e[t];return n===void 0?l():(c=!0,n)}:()=>{var n=e[t];return n!==void 0&&(s=void 0),n===void 0?s:n};if(i&&!(n&4))return h;if(d){var g=e.$$legacy;return(function(e,t){return arguments.length>0?((!i||!t||g||m)&&d(t?h():e),e):h()})}var _=!1,v=(n&1?kt:Mt)(()=>(_=!1,h()));a&&X(v);var y=W;return(function(e,t){if(arguments.length>0){let n=t?X(v):i&&a?Yt(e):e;return N(v,n),_=!0,s!==void 0&&(s=n),e}return Pn&&_||y.f&16384?v.v:X(v)})}function Yr(e){return new Xr(e)}var Xr=class{#e;#t;constructor(e){var t=new Map,n=(e,n)=>{var r=Wt(n,!1,!1);return t.set(e,r),r};let r=new Proxy({...e.props||{},$$events:{}},{get(e,r){return X(t.get(r)??n(r,Reflect.get(e,r)))},has(e,r){return r===pe?!0:(X(t.get(r)??n(r,Reflect.get(e,r))),Reflect.has(e,r))},set(e,r,i){return N(t.get(r)??n(r,i),i),Reflect.set(e,r,i)}});this.#t=(e.hydrate?_r:gr)(e.component,{target:e.target,anchor:e.anchor,props:r,context:e.context,intro:e.intro??!1,recover:e.recover,transformError:e.transformError}),!ze&&(!e?.props?.$$host||e.sync===!1)&&M(),this.#e=r.$$events;for(let e of Object.keys(this.#t))e===`$set`||e===`$destroy`||e===`$on`||l(this,e,{get(){return this.#t[e]},set(t){this.#t[e]=t},enumerable:!0});this.#t.$set=e=>{Object.assign(r,e)},this.#t.$destroy=()=>{xr(this.#t)}}$set(e){this.#t.$set(e)}$on(e,t){this.#e[e]=this.#e[e]||[];let n=(...e)=>t.call(this,...e);return this.#e[e].push(n),()=>{this.#e[e]=this.#e[e].filter(e=>e!==n)}}$destroy(){this.#t.$destroy()}},Zr;typeof HTMLElement==`function`&&(Zr=class extends HTMLElement{$$ctor;$$s;$$c;$$cn=!1;$$d={};$$r=!1;$$p_d={};$$l={};$$l_u=new Map;$$me;$$shadowRoot=null;constructor(e,t,n){super(),this.$$ctor=e,this.$$s=t,n&&(this.$$shadowRoot=this.attachShadow(n))}addEventListener(e,t,n){if(this.$$l[e]=this.$$l[e]||[],this.$$l[e].push(t),this.$$c){let n=this.$$c.$on(e,t);this.$$l_u.set(t,n)}super.addEventListener(e,t,n)}removeEventListener(e,t,n){if(super.removeEventListener(e,t,n),this.$$c){let e=this.$$l_u.get(t);e&&(e(),this.$$l_u.delete(t))}}async connectedCallback(){if(this.$$cn=!0,!this.$$c){if(await Promise.resolve(),!this.$$cn||this.$$c)return;function e(e){return t=>{let n=on(`slot`);e!==`default`&&(n.name=e),Q(t,n)}}let t={},n=$r(this);for(let r of this.$$s)r in n&&(r===`default`&&!this.$$d.children?(this.$$d.children=e(r),t.default=!0):t[r]=e(r));for(let e of this.attributes){let t=this.$$g_p(e.name);t in this.$$d||(this.$$d[t]=Qr(t,e.value,this.$$p_d,`toProp`))}for(let e in this.$$p_d)!(e in this.$$d)&&this[e]!==void 0&&(this.$$d[e]=this[e],delete this[e]);this.$$c=Yr({component:this.$$ctor,target:this.$$shadowRoot||this,props:{...this.$$d,$$slots:t,$$host:this}}),this.$$me=gn(()=>{bn(()=>{this.$$r=!0;for(let e of c(this.$$c)){if(!this.$$p_d[e]?.reflect)continue;this.$$d[e]=this.$$c[e];let t=Qr(e,this.$$d[e],this.$$p_d,`toAttribute`);t==null?this.removeAttribute(this.$$p_d[e].attribute||e):this.setAttribute(this.$$p_d[e].attribute||e,t)}this.$$r=!1})});for(let e in this.$$l)for(let t of this.$$l[e]){let n=this.$$c.$on(e,t);this.$$l_u.set(t,n)}this.$$l={}}}attributeChangedCallback(e,t,n){this.$$r||(e=this.$$g_p(e),this.$$d[e]=Qr(e,n,this.$$p_d,`toProp`),this.$$c?.$set({[e]:this.$$d[e]}))}disconnectedCallback(){this.$$cn=!1,Promise.resolve().then(()=>{!this.$$cn&&this.$$c&&(this.$$c.$destroy(),this.$$me(),this.$$c=void 0)})}$$g_p(e){return c(this.$$p_d).find(t=>this.$$p_d[t].attribute===e||!this.$$p_d[t].attribute&&t.toLowerCase()===e)||e}});function Qr(e,t,n,r){let i=n[e]?.type;if(t=i===`Boolean`&&typeof t!=`boolean`?t!=null:t,!r||!n[e])return t;if(r===`toAttribute`)switch(i){case`Object`:case`Array`:return t==null?null:JSON.stringify(t);case`Boolean`:return t?``:null;case`Number`:return t??null;default:return t}else switch(i){case`Object`:case`Array`:return t&&JSON.parse(t);case`Boolean`:return t;case`Number`:return t==null?t:+t;default:return t}}function $r(e){let t={};return e.childNodes.forEach(e=>{t[e.slot||`default`]=!0}),t}function ei(e,t,n,r,i,a){let o=class extends Zr{constructor(){super(e,n,i),this.$$p_d=t}static get observedAttributes(){return c(t).map(e=>(t[e].attribute||e).toLowerCase())}};return c(t).forEach(e=>{l(o.prototype,e,{get(){return this.$$c&&e in this.$$c?this.$$c[e]:this.$$d[e]},set(n){n=Qr(e,n,t),this.$$d[e]=n;var r=this.$$c;r&&(u(r,e)?.get?r[e]=n:r.$set({[e]:n}))}})}),r.forEach(e=>{l(o.prototype,e,{get(){return this.$$c?.[e]}})}),a&&(o=a(o)),e.element=o,o}var ti={name:`@htmlbricks/svelte-webcomponent`,private:!0,version:`0.71.35`,type:`module`,scripts:{dev:`vite --open`,build:`vite build`,"publish:wc":`node publish.ts`,"build:wc":`node build.ts`,"watch:wc":`node watch.ts`,preview:`vite preview`,check:`svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json`,"release:patch":`npm version patch && git push && git push --tags && npm run build:wc && npm run publish:wc`,"release:minor":`npm version minor && git push && git push --tags && npm run build:wc && npm run publish:wc`,"release:major":`npm version major && git push && git push --tags && npm run build:wc && npm run publish:wc`},devDependencies:{"@google-pay/button-element":`^3.2.1`,"@paypal/paypal-js":`^9.5.0`,"@sveltejs/vite-plugin-svelte":`^7.0.0`,"@tsconfig/svelte":`^5.0.8`,"@types/debounce":`^1.2.4`,"@types/node":`^24.10.1`,"@types/rgb-hex":`^3.0.0`,"chart.js":`^4.5.1`,"date-holidays":`^3.26.12`,dayjs:`^1.11.20`,"hls.js":`^1.6.15`,"html5-joystick-new":`^0.0.6`,ol:`^10.8.0`,"perfect-freehand":`^1.2.3`,prettier:`^3.8.1`,"rollup-plugin-terser":`^7.0.2`,"sass-embedded":`^1.98.0`,"simple-serverless-auth-client":`^0.0.6`,"simple-webrtc-element":`^0.0.1`,"simple-webrtc-element-whep":`^0.2.3`,"style-to-object":`^1.0.14`,svelte:`^5.55.0`,"svelte-check":`^4.4.5`,terser:`^5.46.1`,"ts-json-schema-generator":`^2.9.0`,typescript:`^6.0.2`,vite:`^8.0.3`},dependencies:{"@floating-ui/dom":`^1.7.6`,"@popperjs/core":`^2.11.8`,debounce:`^3.0.0`,"html-colors":`^0.0.6`,marked:`^17.0.5`,raphael:`^2.3.0`,"rgb-hex":`^4.1.0`,"wc-js-utils":`^0.5.4`}};function ni(e){let t=e?.repoName.split(`/`)?.[1]||e?.repoName;if(!t)throw Error(`wrong componentPath `+e?.repoName);if(!e?.version)throw Error(`wrong version `+e?.version);let n=e?.iifePath||`main.iife.js`;if(!document.getElementById(t+`-script`)&&!customElements?.get?.(t)&&!window?.customElements?.get?.(t))try{let r=document.createElement(`script`);if(r.id=t+`-script`,r.src=`https://cdn.jsdelivr.net/npm/${e.repoName}@${e.version}/${n}`,e?.local)r.src=`${e.local}`;else if(location.href.includes(`localhost:6006`)){let e=t.split(`-`)[0];r.src=`http://localhost:6006/webcomponents/${t.replace(e+`-`,``)}/${n}`}document.head.appendChild(r)}catch(e){console.warn(e)}}var ri=Z(`<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@latest/font/bootstrap-icons.css" class="svelte-127py2f"/>`),ii=Z(`<img class="hb-sidebar-brand-logo svelte-127py2f" alt=""/>`),ai=Z(`<div class="hb-sidebar-brand svelte-127py2f"><!> </div>`),oi=Z(`<hb-sidenav-link></hb-sidenav-link>`,2),si=Z(`<hb-sidenav-link></hb-sidenav-link>`,2),ci=Z(`<p class="menu-label mt-5 mb-2 svelte-127py2f"> </p> <hr class="my-2 svelte-127py2f"/> <!>`,1),li=Z(`<hb-sidenav-link></hb-sidenav-link>`,2),ui=Z(`<p class="menu-label mt-5 mb-2 svelte-127py2f"> </p> <hr class="my-2 mt-0 svelte-127py2f"/> <!>`,1),di=Z(`<button type="button" role="option"> </button>`),fi=Z(`<div class="dropdown-menu hb-sidebar-lang__menu svelte-127py2f" role="listbox" id="hb-sidebar-lang-menu"><div class="dropdown-content svelte-127py2f"></div></div>`),pi=Z(`<div class="hb-sidebar-lang hb-sidebar-theme-switch__lang svelte-127py2f"><div><div class="dropdown-trigger svelte-127py2f"><button type="button" class="button is-small hb-sidebar-lang__toggle svelte-127py2f" aria-haspopup="listbox"><span class="hb-sidebar-lang__code svelte-127py2f"> </span> <span class="icon is-small svelte-127py2f" aria-hidden="true"><i class="bi bi-chevron-down svelte-127py2f"></i></span></button></div> <!></div></div>`),mi=Z(`<div class="hb-sidebar-theme-switch__control svelte-127py2f" role="group" aria-label="Color theme"><div class="buttons has-addons are-small is-fullwidth hb-sidebar-theme-icons svelte-127py2f"><button type="button" title="Light"><span class="icon is-small svelte-127py2f" aria-hidden="true"><i class="bi bi-sun-fill svelte-127py2f"></i></span></button> <button type="button" title="Dark"><span class="icon is-small svelte-127py2f" aria-hidden="true"><i class="bi bi-moon-fill svelte-127py2f"></i></span></button> <button type="button" title="Auto"><span class="icon is-small svelte-127py2f" aria-hidden="true"><i class="bi bi-circle-half svelte-127py2f"></i></span></button></div></div>`),hi=Z(`<div class="hb-sidebar-theme-switch mt-5 svelte-127py2f" role="toolbar" aria-label="Language and appearance"><!> <!></div>`),gi=Z(`<div class="hb-sidebar-footer svelte-127py2f"><hr class="svelte-127py2f"/> <!></div>`),_i=Z(`<div id="webcomponent" class="hb-sidebar-shell svelte-127py2f"><!> <div class="p-4 is-relative hb-sidebar-inner svelte-127py2f"><h4 class="title is-5 mb-3 svelte-127py2f"><!> <!></h4> <ul class="hb-sidebar-nav-list mt-5 svelte-127py2f"><!> <!> <!></ul> <!> <!></div></div>`),vi={hash:`svelte-127py2f`,code:`@charset "UTF-8";
3
+ \r\f\xA0\v`];function zr(e,t,n){var r=e==null?``:``+e;if(t&&(r=r?r+` `+t:t),n){for(var i of Object.keys(n))if(n[i])r=r?r+` `+i:i;else if(r.length)for(var a=i.length,o=0;(o=r.indexOf(i,o))>=0;){var s=o+a;(o===0||Rr.includes(r[o-1]))&&(s===r.length||Rr.includes(r[s]))?r=(o===0?``:r.substring(0,o))+r.substring(s+1):o=s}}return r===``?null:r}function Br(e,t,n,r,i,a){var o=e.__className;if(C||o!==n||o===void 0){var s=zr(n,r,a);(!C||s!==e.getAttribute(`class`))&&(s==null?e.removeAttribute(`class`):t?e.className=s:e.setAttribute(`class`,s)),e.__className=n}else if(a&&i!==a)for(var c in a){var l=!!a[c];(i==null||l!==!!i[c])&&e.classList.toggle(c,l)}return a}var Vr=Symbol(`is custom element`),Hr=Symbol(`is html`),Ur=ge?`link`:`LINK`;function $(e,t,n,r){var i=Gr(e);C&&(i[t]=e.getAttribute(t),t===`src`||t===`srcset`||t===`href`&&e.nodeName===Ur)||i[t]!==(i[t]=n)&&(t===`loading`&&(e[me]=n),n==null?e.removeAttribute(t):typeof n!=`string`&&qr(e).includes(t)?e[t]=n:e.setAttribute(t,n))}function Wr(e,t,n){var r=V,i=W;let a=C;C&&w(!1),U(null),G(null);try{t!==`style`&&(Kr.has(e.getAttribute(`is`)||e.nodeName)||!customElements||customElements.get(e.getAttribute(`is`)||e.nodeName.toLowerCase())?qr(e).includes(t):n&&typeof n==`object`)?e[t]=n:$(e,t,n==null?n:String(n))}finally{U(r),G(i),a&&w(!0)}}function Gr(e){return e.__attributes??={[Vr]:e.nodeName.includes(`-`),[Hr]:e.namespaceURI===r}}var Kr=new Map;function qr(e){var t=e.getAttribute(`is`)||e.nodeName,n=Kr.get(t);if(n)return n;Kr.set(t,n=[]);for(var r,i=e,a=Element.prototype;a!==i;){for(var o in r=d(i),r)r[o].set&&n.push(o);i=m(i)}return n}function Jr(e,t,n,r){var i=!Be||(n&2)!=0,a=(n&8)!=0,o=(n&16)!=0,s=r,c=!0,l=()=>(c&&(c=!1,s=o?Zn(r):r),s);let d;if(a){var f=fe in e||pe in e;d=u(e,t)?.set??(f&&t in e?n=>e[t]=n:void 0)}var p,m=!1;a?[p,m]=rt(()=>e[t]):p=e[t],p===void 0&&r!==void 0&&(p=l(),d&&(i&&Te(t),d(p)));var h=i?()=>{var n=e[t];return n===void 0?l():(c=!0,n)}:()=>{var n=e[t];return n!==void 0&&(s=void 0),n===void 0?s:n};if(i&&!(n&4))return h;if(d){var g=e.$$legacy;return(function(e,t){return arguments.length>0?((!i||!t||g||m)&&d(t?h():e),e):h()})}var _=!1,v=(n&1?kt:Mt)(()=>(_=!1,h()));a&&X(v);var y=W;return(function(e,t){if(arguments.length>0){let n=t?X(v):i&&a?Yt(e):e;return N(v,n),_=!0,s!==void 0&&(s=n),e}return Pn&&_||y.f&16384?v.v:X(v)})}function Yr(e){return new Xr(e)}var Xr=class{#e;#t;constructor(e){var t=new Map,n=(e,n)=>{var r=Wt(n,!1,!1);return t.set(e,r),r};let r=new Proxy({...e.props||{},$$events:{}},{get(e,r){return X(t.get(r)??n(r,Reflect.get(e,r)))},has(e,r){return r===pe?!0:(X(t.get(r)??n(r,Reflect.get(e,r))),Reflect.has(e,r))},set(e,r,i){return N(t.get(r)??n(r,i),i),Reflect.set(e,r,i)}});this.#t=(e.hydrate?_r:gr)(e.component,{target:e.target,anchor:e.anchor,props:r,context:e.context,intro:e.intro??!1,recover:e.recover,transformError:e.transformError}),!ze&&(!e?.props?.$$host||e.sync===!1)&&M(),this.#e=r.$$events;for(let e of Object.keys(this.#t))e===`$set`||e===`$destroy`||e===`$on`||l(this,e,{get(){return this.#t[e]},set(t){this.#t[e]=t},enumerable:!0});this.#t.$set=e=>{Object.assign(r,e)},this.#t.$destroy=()=>{xr(this.#t)}}$set(e){this.#t.$set(e)}$on(e,t){this.#e[e]=this.#e[e]||[];let n=(...e)=>t.call(this,...e);return this.#e[e].push(n),()=>{this.#e[e]=this.#e[e].filter(e=>e!==n)}}$destroy(){this.#t.$destroy()}},Zr;typeof HTMLElement==`function`&&(Zr=class extends HTMLElement{$$ctor;$$s;$$c;$$cn=!1;$$d={};$$r=!1;$$p_d={};$$l={};$$l_u=new Map;$$me;$$shadowRoot=null;constructor(e,t,n){super(),this.$$ctor=e,this.$$s=t,n&&(this.$$shadowRoot=this.attachShadow(n))}addEventListener(e,t,n){if(this.$$l[e]=this.$$l[e]||[],this.$$l[e].push(t),this.$$c){let n=this.$$c.$on(e,t);this.$$l_u.set(t,n)}super.addEventListener(e,t,n)}removeEventListener(e,t,n){if(super.removeEventListener(e,t,n),this.$$c){let e=this.$$l_u.get(t);e&&(e(),this.$$l_u.delete(t))}}async connectedCallback(){if(this.$$cn=!0,!this.$$c){if(await Promise.resolve(),!this.$$cn||this.$$c)return;function e(e){return t=>{let n=on(`slot`);e!==`default`&&(n.name=e),Q(t,n)}}let t={},n=$r(this);for(let r of this.$$s)r in n&&(r===`default`&&!this.$$d.children?(this.$$d.children=e(r),t.default=!0):t[r]=e(r));for(let e of this.attributes){let t=this.$$g_p(e.name);t in this.$$d||(this.$$d[t]=Qr(t,e.value,this.$$p_d,`toProp`))}for(let e in this.$$p_d)!(e in this.$$d)&&this[e]!==void 0&&(this.$$d[e]=this[e],delete this[e]);this.$$c=Yr({component:this.$$ctor,target:this.$$shadowRoot||this,props:{...this.$$d,$$slots:t,$$host:this}}),this.$$me=gn(()=>{bn(()=>{this.$$r=!0;for(let e of c(this.$$c)){if(!this.$$p_d[e]?.reflect)continue;this.$$d[e]=this.$$c[e];let t=Qr(e,this.$$d[e],this.$$p_d,`toAttribute`);t==null?this.removeAttribute(this.$$p_d[e].attribute||e):this.setAttribute(this.$$p_d[e].attribute||e,t)}this.$$r=!1})});for(let e in this.$$l)for(let t of this.$$l[e]){let n=this.$$c.$on(e,t);this.$$l_u.set(t,n)}this.$$l={}}}attributeChangedCallback(e,t,n){this.$$r||(e=this.$$g_p(e),this.$$d[e]=Qr(e,n,this.$$p_d,`toProp`),this.$$c?.$set({[e]:this.$$d[e]}))}disconnectedCallback(){this.$$cn=!1,Promise.resolve().then(()=>{!this.$$cn&&this.$$c&&(this.$$c.$destroy(),this.$$me(),this.$$c=void 0)})}$$g_p(e){return c(this.$$p_d).find(t=>this.$$p_d[t].attribute===e||!this.$$p_d[t].attribute&&t.toLowerCase()===e)||e}});function Qr(e,t,n,r){let i=n[e]?.type;if(t=i===`Boolean`&&typeof t!=`boolean`?t!=null:t,!r||!n[e])return t;if(r===`toAttribute`)switch(i){case`Object`:case`Array`:return t==null?null:JSON.stringify(t);case`Boolean`:return t?``:null;case`Number`:return t??null;default:return t}else switch(i){case`Object`:case`Array`:return t&&JSON.parse(t);case`Boolean`:return t;case`Number`:return t==null?t:+t;default:return t}}function $r(e){let t={};return e.childNodes.forEach(e=>{t[e.slot||`default`]=!0}),t}function ei(e,t,n,r,i,a){let o=class extends Zr{constructor(){super(e,n,i),this.$$p_d=t}static get observedAttributes(){return c(t).map(e=>(t[e].attribute||e).toLowerCase())}};return c(t).forEach(e=>{l(o.prototype,e,{get(){return this.$$c&&e in this.$$c?this.$$c[e]:this.$$d[e]},set(n){n=Qr(e,n,t),this.$$d[e]=n;var r=this.$$c;r&&(u(r,e)?.get?r[e]=n:r.$set({[e]:n}))}})}),r.forEach(e=>{l(o.prototype,e,{get(){return this.$$c?.[e]}})}),a&&(o=a(o)),e.element=o,o}var ti={name:`@htmlbricks/svelte-webcomponent`,private:!0,version:`0.71.37`,type:`module`,scripts:{dev:`vite --open`,build:`vite build`,"publish:wc":`node publish.ts`,"build:wc":`node build.ts`,"watch:wc":`node watch.ts`,preview:`vite preview`,check:`svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json`,"release:patch":`npm version patch && git push && git push --tags && npm run build:wc && npm run publish:wc`,"release:minor":`npm version minor && git push && git push --tags && npm run build:wc && npm run publish:wc`,"release:major":`npm version major && git push && git push --tags && npm run build:wc && npm run publish:wc`},devDependencies:{"@google-pay/button-element":`^3.2.1`,"@paypal/paypal-js":`^9.5.0`,"@sveltejs/vite-plugin-svelte":`^7.0.0`,"@tsconfig/svelte":`^5.0.8`,"@types/debounce":`^1.2.4`,"@types/node":`^24.10.1`,"@types/rgb-hex":`^3.0.0`,"chart.js":`^4.5.1`,"date-holidays":`^3.26.12`,dayjs:`^1.11.20`,"hls.js":`^1.6.15`,"html5-joystick-new":`^0.0.6`,ol:`^10.8.0`,"perfect-freehand":`^1.2.3`,prettier:`^3.8.1`,"rollup-plugin-terser":`^7.0.2`,"sass-embedded":`^1.98.0`,"simple-serverless-auth-client":`^0.0.6`,"simple-webrtc-element":`^0.0.1`,"simple-webrtc-element-whep":`^0.2.3`,"style-to-object":`^1.0.14`,svelte:`^5.55.0`,"svelte-check":`^4.4.5`,terser:`^5.46.1`,"ts-json-schema-generator":`^2.9.0`,typescript:`^6.0.2`,vite:`^8.0.3`},dependencies:{"@floating-ui/dom":`^1.7.6`,"@popperjs/core":`^2.11.8`,debounce:`^3.0.0`,"html-colors":`^0.0.6`,marked:`^17.0.5`,raphael:`^2.3.0`,"rgb-hex":`^4.1.0`,"wc-js-utils":`^0.5.4`}};function ni(e){let t=e?.repoName.split(`/`)?.[1]||e?.repoName;if(!t)throw Error(`wrong componentPath `+e?.repoName);if(!e?.version)throw Error(`wrong version `+e?.version);let n=e?.iifePath||`main.iife.js`;if(!document.getElementById(t+`-script`)&&!customElements?.get?.(t)&&!window?.customElements?.get?.(t))try{let r=document.createElement(`script`);if(r.id=t+`-script`,r.src=`https://cdn.jsdelivr.net/npm/${e.repoName}@${e.version}/${n}`,e?.local)r.src=`${e.local}`;else if(location.href.includes(`localhost:6006`)){let e=t.split(`-`)[0];r.src=`http://localhost:6006/webcomponents/${t.replace(e+`-`,``)}/${n}`}document.head.appendChild(r)}catch(e){console.warn(e)}}var ri=Z(`<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@latest/font/bootstrap-icons.css" class="svelte-127py2f"/>`),ii=Z(`<img class="hb-sidebar-brand-logo svelte-127py2f" alt=""/>`),ai=Z(`<div class="hb-sidebar-brand svelte-127py2f"><!> </div>`),oi=Z(`<hb-sidenav-link></hb-sidenav-link>`,2),si=Z(`<hb-sidenav-link></hb-sidenav-link>`,2),ci=Z(`<p class="menu-label mt-5 mb-2 svelte-127py2f"> </p> <hr class="my-2 svelte-127py2f"/> <!>`,1),li=Z(`<hb-sidenav-link></hb-sidenav-link>`,2),ui=Z(`<p class="menu-label mt-5 mb-2 svelte-127py2f"> </p> <hr class="my-2 mt-0 svelte-127py2f"/> <!>`,1),di=Z(`<button type="button" role="option"> </button>`),fi=Z(`<div class="dropdown-menu hb-sidebar-lang__menu svelte-127py2f" role="listbox" id="hb-sidebar-lang-menu"><div class="dropdown-content svelte-127py2f"></div></div>`),pi=Z(`<div class="hb-sidebar-lang hb-sidebar-theme-switch__lang svelte-127py2f"><div><div class="dropdown-trigger svelte-127py2f"><button type="button" class="button is-small hb-sidebar-lang__toggle svelte-127py2f" aria-haspopup="listbox"><span class="hb-sidebar-lang__code svelte-127py2f"> </span> <span class="icon is-small svelte-127py2f" aria-hidden="true"><i class="bi bi-chevron-down svelte-127py2f"></i></span></button></div> <!></div></div>`),mi=Z(`<div class="hb-sidebar-theme-switch__control svelte-127py2f" role="group" aria-label="Color theme"><div class="buttons has-addons are-small is-fullwidth hb-sidebar-theme-icons svelte-127py2f"><button type="button" title="Light"><span class="icon is-small svelte-127py2f" aria-hidden="true"><i class="bi bi-sun-fill svelte-127py2f"></i></span></button> <button type="button" title="Dark"><span class="icon is-small svelte-127py2f" aria-hidden="true"><i class="bi bi-moon-fill svelte-127py2f"></i></span></button> <button type="button" title="Auto"><span class="icon is-small svelte-127py2f" aria-hidden="true"><i class="bi bi-circle-half svelte-127py2f"></i></span></button></div></div>`),hi=Z(`<div class="hb-sidebar-theme-switch mt-5 svelte-127py2f" role="toolbar" aria-label="Language and appearance"><!> <!></div>`),gi=Z(`<div class="hb-sidebar-footer svelte-127py2f"><hr class="svelte-127py2f"/> <!></div>`),_i=Z(`<div id="webcomponent" class="hb-sidebar-shell svelte-127py2f"><!> <div class="p-4 is-relative hb-sidebar-inner svelte-127py2f"><h4 class="title is-5 mb-3 svelte-127py2f"><!> <!></h4> <ul class="hb-sidebar-nav-list mt-5 svelte-127py2f"><!> <!> <!></ul> <!> <!></div></div>`),vi={hash:`svelte-127py2f`,code:`@charset "UTF-8";
4
4
  @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
5
5
  /*!
6
6
  * Bulma 1.x (Sass) for hb-sidebar-desktop — flex layout, spacing, title, menu.