@ebrains/vue 0.0.1-alpha.0

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/index.mjs ADDED
@@ -0,0 +1,2365 @@
1
+ /**
2
+ * @vue/shared v3.5.11
3
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
+ * @license MIT
5
+ **/
6
+ /*! #__NO_SIDE_EFFECTS__ */
7
+ // @__NO_SIDE_EFFECTS__
8
+ function gn(e) {
9
+ const t = /* @__PURE__ */ Object.create(null);
10
+ for (const n of e.split(",")) t[n] = 1;
11
+ return (n) => n in t;
12
+ }
13
+ const A = process.env.NODE_ENV !== "production" ? Object.freeze({}) : {};
14
+ process.env.NODE_ENV !== "production" && Object.freeze([]);
15
+ const se = () => {
16
+ }, _n = (e) => e.charCodeAt(0) === 111 && e.charCodeAt(1) === 110 && // uppercase letter
17
+ (e.charCodeAt(2) > 122 || e.charCodeAt(2) < 97), V = Object.assign, mn = Object.prototype.hasOwnProperty, N = (e, t) => mn.call(e, t), v = Array.isArray, oe = (e) => Le(e) === "[object Map]", vn = (e) => Le(e) === "[object Set]", O = (e) => typeof e == "function", F = (e) => typeof e == "string", me = (e) => typeof e == "symbol", D = (e) => e !== null && typeof e == "object", En = (e) => (D(e) || O(e)) && O(e.then) && O(e.catch), bn = Object.prototype.toString, Le = (e) => bn.call(e), Vt = (e) => Le(e).slice(8, -1), wn = (e) => Le(e) === "[object Object]", nt = (e) => F(e) && e !== "NaN" && e[0] !== "-" && "" + parseInt(e, 10) === e, Nn = (e) => {
18
+ const t = /* @__PURE__ */ Object.create(null);
19
+ return (n) => t[n] || (t[n] = e(n));
20
+ }, On = Nn((e) => e.charAt(0).toUpperCase() + e.slice(1)), Y = (e, t) => !Object.is(e, t), Sn = (e, t, n, r = !1) => {
21
+ Object.defineProperty(e, t, {
22
+ configurable: !0,
23
+ enumerable: !1,
24
+ writable: r,
25
+ value: n
26
+ });
27
+ };
28
+ let _t;
29
+ const Pt = () => _t || (_t = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : typeof global < "u" ? global : {});
30
+ function rt(e) {
31
+ if (v(e)) {
32
+ const t = {};
33
+ for (let n = 0; n < e.length; n++) {
34
+ const r = e[n], s = F(r) ? Rn(r) : rt(r);
35
+ if (s)
36
+ for (const o in s)
37
+ t[o] = s[o];
38
+ }
39
+ return t;
40
+ } else if (F(e) || D(e))
41
+ return e;
42
+ }
43
+ const yn = /;(?![^(]*\))/g, xn = /:([^]+)/, Dn = /\/\*[^]*?\*\//g;
44
+ function Rn(e) {
45
+ const t = {};
46
+ return e.replace(Dn, "").split(yn).forEach((n) => {
47
+ if (n) {
48
+ const r = n.split(xn);
49
+ r.length > 1 && (t[r[0].trim()] = r[1].trim());
50
+ }
51
+ }), t;
52
+ }
53
+ function st(e) {
54
+ let t = "";
55
+ if (F(e))
56
+ t = e;
57
+ else if (v(e))
58
+ for (let n = 0; n < e.length; n++) {
59
+ const r = st(e[n]);
60
+ r && (t += r + " ");
61
+ }
62
+ else if (D(e))
63
+ for (const n in e)
64
+ e[n] && (t += n + " ");
65
+ return t.trim();
66
+ }
67
+ /**
68
+ * @vue/reactivity v3.5.11
69
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
70
+ * @license MIT
71
+ **/
72
+ function k(e, ...t) {
73
+ console.warn(`[Vue warn] ${e}`, ...t);
74
+ }
75
+ let _;
76
+ const We = /* @__PURE__ */ new WeakSet();
77
+ class Cn {
78
+ constructor(t) {
79
+ this.fn = t, this.deps = void 0, this.depsTail = void 0, this.flags = 5, this.next = void 0, this.cleanup = void 0, this.scheduler = void 0;
80
+ }
81
+ pause() {
82
+ this.flags |= 64;
83
+ }
84
+ resume() {
85
+ this.flags & 64 && (this.flags &= -65, We.has(this) && (We.delete(this), this.trigger()));
86
+ }
87
+ /**
88
+ * @internal
89
+ */
90
+ notify() {
91
+ this.flags & 2 && !(this.flags & 32) || this.flags & 8 || Tn(this);
92
+ }
93
+ run() {
94
+ if (!(this.flags & 1))
95
+ return this.fn();
96
+ this.flags |= 2, mt(this), At(this);
97
+ const t = _, n = L;
98
+ _ = this, L = !0;
99
+ try {
100
+ return this.fn();
101
+ } finally {
102
+ process.env.NODE_ENV !== "production" && _ !== this && k(
103
+ "Active effect was not restored correctly - this is likely a Vue internal bug."
104
+ ), Mt(this), _ = t, L = n, this.flags &= -3;
105
+ }
106
+ }
107
+ stop() {
108
+ if (this.flags & 1) {
109
+ for (let t = this.deps; t; t = t.nextDep)
110
+ ct(t);
111
+ this.deps = this.depsTail = void 0, mt(this), this.onStop && this.onStop(), this.flags &= -2;
112
+ }
113
+ }
114
+ trigger() {
115
+ this.flags & 64 ? We.add(this) : this.scheduler ? this.scheduler() : this.runIfDirty();
116
+ }
117
+ /**
118
+ * @internal
119
+ */
120
+ runIfDirty() {
121
+ Ge(this) && this.run();
122
+ }
123
+ get dirty() {
124
+ return Ge(this);
125
+ }
126
+ }
127
+ let It = 0, de, pe;
128
+ function Tn(e, t = !1) {
129
+ if (e.flags |= 8, t) {
130
+ e.next = pe, pe = e;
131
+ return;
132
+ }
133
+ e.next = de, de = e;
134
+ }
135
+ function ot() {
136
+ It++;
137
+ }
138
+ function it() {
139
+ if (--It > 0)
140
+ return;
141
+ if (pe) {
142
+ let t = pe;
143
+ for (pe = void 0; t; ) {
144
+ const n = t.next;
145
+ t.next = void 0, t.flags &= -9, t = n;
146
+ }
147
+ }
148
+ let e;
149
+ for (; de; ) {
150
+ let t = de;
151
+ for (de = void 0; t; ) {
152
+ const n = t.next;
153
+ if (t.next = void 0, t.flags &= -9, t.flags & 1)
154
+ try {
155
+ t.trigger();
156
+ } catch (r) {
157
+ e || (e = r);
158
+ }
159
+ t = n;
160
+ }
161
+ }
162
+ if (e) throw e;
163
+ }
164
+ function At(e) {
165
+ for (let t = e.deps; t; t = t.nextDep)
166
+ t.version = -1, t.prevActiveLink = t.dep.activeLink, t.dep.activeLink = t;
167
+ }
168
+ function Mt(e) {
169
+ let t, n = e.depsTail, r = n;
170
+ for (; r; ) {
171
+ const s = r.prevDep;
172
+ r.version === -1 ? (r === n && (n = s), ct(r), Pn(r)) : t = r, r.dep.activeLink = r.prevActiveLink, r.prevActiveLink = void 0, r = s;
173
+ }
174
+ e.deps = t, e.depsTail = n;
175
+ }
176
+ function Ge(e) {
177
+ for (let t = e.deps; t; t = t.nextDep)
178
+ if (t.dep.version !== t.version || t.dep.computed && (Vn(t.dep.computed) || t.dep.version !== t.version))
179
+ return !0;
180
+ return !!e._dirty;
181
+ }
182
+ function Vn(e) {
183
+ if (e.flags & 4 && !(e.flags & 16) || (e.flags &= -17, e.globalVersion === Ce))
184
+ return;
185
+ e.globalVersion = Ce;
186
+ const t = e.dep;
187
+ if (e.flags |= 2, t.version > 0 && !e.isSSR && e.deps && !Ge(e)) {
188
+ e.flags &= -3;
189
+ return;
190
+ }
191
+ const n = _, r = L;
192
+ _ = e, L = !0;
193
+ try {
194
+ At(e);
195
+ const s = e.fn(e._value);
196
+ (t.version === 0 || Y(s, e._value)) && (e._value = s, t.version++);
197
+ } catch (s) {
198
+ throw t.version++, s;
199
+ } finally {
200
+ _ = n, L = r, Mt(e), e.flags &= -3;
201
+ }
202
+ }
203
+ function ct(e, t = !1) {
204
+ const { dep: n, prevSub: r, nextSub: s } = e;
205
+ if (r && (r.nextSub = s, e.prevSub = void 0), s && (s.prevSub = r, e.nextSub = void 0), n.subs === e && (n.subs = r), process.env.NODE_ENV !== "production" && n.subsHead === e && (n.subsHead = s), !n.subs && n.computed) {
206
+ n.computed.flags &= -5;
207
+ for (let o = n.computed.deps; o; o = o.nextDep)
208
+ ct(o, !0);
209
+ }
210
+ !t && !--n.sc && n.map && n.map.delete(n.key);
211
+ }
212
+ function Pn(e) {
213
+ const { prevDep: t, nextDep: n } = e;
214
+ t && (t.nextDep = n, e.prevDep = void 0), n && (n.prevDep = t, e.nextDep = void 0);
215
+ }
216
+ let L = !0;
217
+ const $t = [];
218
+ function Fe() {
219
+ $t.push(L), L = !1;
220
+ }
221
+ function He() {
222
+ const e = $t.pop();
223
+ L = e === void 0 ? !0 : e;
224
+ }
225
+ function mt(e) {
226
+ const { cleanup: t } = e;
227
+ if (e.cleanup = void 0, t) {
228
+ const n = _;
229
+ _ = void 0;
230
+ try {
231
+ t();
232
+ } finally {
233
+ _ = n;
234
+ }
235
+ }
236
+ }
237
+ let Ce = 0;
238
+ class In {
239
+ constructor(t, n) {
240
+ this.sub = t, this.dep = n, this.version = n.version, this.nextDep = this.prevDep = this.nextSub = this.prevSub = this.prevActiveLink = void 0;
241
+ }
242
+ }
243
+ class Lt {
244
+ constructor(t) {
245
+ this.computed = t, this.version = 0, this.activeLink = void 0, this.subs = void 0, this.map = void 0, this.key = void 0, this.sc = 0, process.env.NODE_ENV !== "production" && (this.subsHead = void 0);
246
+ }
247
+ track(t) {
248
+ if (!_ || !L || _ === this.computed)
249
+ return;
250
+ let n = this.activeLink;
251
+ if (n === void 0 || n.sub !== _)
252
+ n = this.activeLink = new In(_, this), _.deps ? (n.prevDep = _.depsTail, _.depsTail.nextDep = n, _.depsTail = n) : _.deps = _.depsTail = n, Ft(n);
253
+ else if (n.version === -1 && (n.version = this.version, n.nextDep)) {
254
+ const r = n.nextDep;
255
+ r.prevDep = n.prevDep, n.prevDep && (n.prevDep.nextDep = r), n.prevDep = _.depsTail, n.nextDep = void 0, _.depsTail.nextDep = n, _.depsTail = n, _.deps === n && (_.deps = r);
256
+ }
257
+ return process.env.NODE_ENV !== "production" && _.onTrack && _.onTrack(
258
+ V(
259
+ {
260
+ effect: _
261
+ },
262
+ t
263
+ )
264
+ ), n;
265
+ }
266
+ trigger(t) {
267
+ this.version++, Ce++, this.notify(t);
268
+ }
269
+ notify(t) {
270
+ ot();
271
+ try {
272
+ if (process.env.NODE_ENV !== "production")
273
+ for (let n = this.subsHead; n; n = n.nextSub)
274
+ n.sub.onTrigger && !(n.sub.flags & 8) && n.sub.onTrigger(
275
+ V(
276
+ {
277
+ effect: n.sub
278
+ },
279
+ t
280
+ )
281
+ );
282
+ for (let n = this.subs; n; n = n.prevSub)
283
+ n.sub.notify() && n.sub.dep.notify();
284
+ } finally {
285
+ it();
286
+ }
287
+ }
288
+ }
289
+ function Ft(e) {
290
+ if (e.dep.sc++, e.sub.flags & 4) {
291
+ const t = e.dep.computed;
292
+ if (t && !e.dep.subs) {
293
+ t.flags |= 20;
294
+ for (let r = t.deps; r; r = r.nextDep)
295
+ Ft(r);
296
+ }
297
+ const n = e.dep.subs;
298
+ n !== e && (e.prevSub = n, n && (n.nextSub = e)), process.env.NODE_ENV !== "production" && e.dep.subsHead === void 0 && (e.dep.subsHead = e), e.dep.subs = e;
299
+ }
300
+ }
301
+ const Xe = /* @__PURE__ */ new WeakMap(), X = Symbol(
302
+ process.env.NODE_ENV !== "production" ? "Object iterate" : ""
303
+ ), Qe = Symbol(
304
+ process.env.NODE_ENV !== "production" ? "Map keys iterate" : ""
305
+ ), ge = Symbol(
306
+ process.env.NODE_ENV !== "production" ? "Array iterate" : ""
307
+ );
308
+ function S(e, t, n) {
309
+ if (L && _) {
310
+ let r = Xe.get(e);
311
+ r || Xe.set(e, r = /* @__PURE__ */ new Map());
312
+ let s = r.get(n);
313
+ s || (r.set(n, s = new Lt()), s.map = r, s.key = n), process.env.NODE_ENV !== "production" ? s.track({
314
+ target: e,
315
+ type: t,
316
+ key: n
317
+ }) : s.track();
318
+ }
319
+ }
320
+ function J(e, t, n, r, s, o) {
321
+ const i = Xe.get(e);
322
+ if (!i) {
323
+ Ce++;
324
+ return;
325
+ }
326
+ const a = (l) => {
327
+ l && (process.env.NODE_ENV !== "production" ? l.trigger({
328
+ target: e,
329
+ type: t,
330
+ key: n,
331
+ newValue: r,
332
+ oldValue: s,
333
+ oldTarget: o
334
+ }) : l.trigger());
335
+ };
336
+ if (ot(), t === "clear")
337
+ i.forEach(a);
338
+ else {
339
+ const l = v(e), d = l && nt(n);
340
+ if (l && n === "length") {
341
+ const g = Number(r);
342
+ i.forEach((c, u) => {
343
+ (u === "length" || u === ge || !me(u) && u >= g) && a(c);
344
+ });
345
+ } else
346
+ switch (n !== void 0 && a(i.get(n)), d && a(i.get(ge)), t) {
347
+ case "add":
348
+ l ? d && a(i.get("length")) : (a(i.get(X)), oe(e) && a(i.get(Qe)));
349
+ break;
350
+ case "delete":
351
+ l || (a(i.get(X)), oe(e) && a(i.get(Qe)));
352
+ break;
353
+ case "set":
354
+ oe(e) && a(i.get(X));
355
+ break;
356
+ }
357
+ }
358
+ it();
359
+ }
360
+ function ee(e) {
361
+ const t = h(e);
362
+ return t === e ? t : (S(t, "iterate", ge), C(e) ? t : t.map(x));
363
+ }
364
+ function at(e) {
365
+ return S(e = h(e), "iterate", ge), e;
366
+ }
367
+ const An = {
368
+ __proto__: null,
369
+ [Symbol.iterator]() {
370
+ return Ke(this, Symbol.iterator, x);
371
+ },
372
+ concat(...e) {
373
+ return ee(this).concat(
374
+ ...e.map((t) => v(t) ? ee(t) : t)
375
+ );
376
+ },
377
+ entries() {
378
+ return Ke(this, "entries", (e) => (e[1] = x(e[1]), e));
379
+ },
380
+ every(e, t) {
381
+ return j(this, "every", e, t, void 0, arguments);
382
+ },
383
+ filter(e, t) {
384
+ return j(this, "filter", e, t, (n) => n.map(x), arguments);
385
+ },
386
+ find(e, t) {
387
+ return j(this, "find", e, t, x, arguments);
388
+ },
389
+ findIndex(e, t) {
390
+ return j(this, "findIndex", e, t, void 0, arguments);
391
+ },
392
+ findLast(e, t) {
393
+ return j(this, "findLast", e, t, x, arguments);
394
+ },
395
+ findLastIndex(e, t) {
396
+ return j(this, "findLastIndex", e, t, void 0, arguments);
397
+ },
398
+ // flat, flatMap could benefit from ARRAY_ITERATE but are not straight-forward to implement
399
+ forEach(e, t) {
400
+ return j(this, "forEach", e, t, void 0, arguments);
401
+ },
402
+ includes(...e) {
403
+ return ze(this, "includes", e);
404
+ },
405
+ indexOf(...e) {
406
+ return ze(this, "indexOf", e);
407
+ },
408
+ join(e) {
409
+ return ee(this).join(e);
410
+ },
411
+ // keys() iterator only reads `length`, no optimisation required
412
+ lastIndexOf(...e) {
413
+ return ze(this, "lastIndexOf", e);
414
+ },
415
+ map(e, t) {
416
+ return j(this, "map", e, t, void 0, arguments);
417
+ },
418
+ pop() {
419
+ return ae(this, "pop");
420
+ },
421
+ push(...e) {
422
+ return ae(this, "push", e);
423
+ },
424
+ reduce(e, ...t) {
425
+ return vt(this, "reduce", e, t);
426
+ },
427
+ reduceRight(e, ...t) {
428
+ return vt(this, "reduceRight", e, t);
429
+ },
430
+ shift() {
431
+ return ae(this, "shift");
432
+ },
433
+ // slice could use ARRAY_ITERATE but also seems to beg for range tracking
434
+ some(e, t) {
435
+ return j(this, "some", e, t, void 0, arguments);
436
+ },
437
+ splice(...e) {
438
+ return ae(this, "splice", e);
439
+ },
440
+ toReversed() {
441
+ return ee(this).toReversed();
442
+ },
443
+ toSorted(e) {
444
+ return ee(this).toSorted(e);
445
+ },
446
+ toSpliced(...e) {
447
+ return ee(this).toSpliced(...e);
448
+ },
449
+ unshift(...e) {
450
+ return ae(this, "unshift", e);
451
+ },
452
+ values() {
453
+ return Ke(this, "values", x);
454
+ }
455
+ };
456
+ function Ke(e, t, n) {
457
+ const r = at(e), s = r[t]();
458
+ return r !== e && !C(e) && (s._next = s.next, s.next = () => {
459
+ const o = s._next();
460
+ return o.value && (o.value = n(o.value)), o;
461
+ }), s;
462
+ }
463
+ const Mn = Array.prototype;
464
+ function j(e, t, n, r, s, o) {
465
+ const i = at(e), a = i !== e && !C(e), l = i[t];
466
+ if (l !== Mn[t]) {
467
+ const c = l.apply(e, o);
468
+ return a ? x(c) : c;
469
+ }
470
+ let d = n;
471
+ i !== e && (a ? d = function(c, u) {
472
+ return n.call(this, x(c), u, e);
473
+ } : n.length > 2 && (d = function(c, u) {
474
+ return n.call(this, c, u, e);
475
+ }));
476
+ const g = l.call(i, d, r);
477
+ return a && s ? s(g) : g;
478
+ }
479
+ function vt(e, t, n, r) {
480
+ const s = at(e);
481
+ let o = n;
482
+ return s !== e && (C(e) ? n.length > 3 && (o = function(i, a, l) {
483
+ return n.call(this, i, a, l, e);
484
+ }) : o = function(i, a, l) {
485
+ return n.call(this, i, x(a), l, e);
486
+ }), s[t](o, ...r);
487
+ }
488
+ function ze(e, t, n) {
489
+ const r = h(e);
490
+ S(r, "iterate", ge);
491
+ const s = r[t](...n);
492
+ return (s === -1 || s === !1) && Te(n[0]) ? (n[0] = h(n[0]), r[t](...n)) : s;
493
+ }
494
+ function ae(e, t, n = []) {
495
+ Fe(), ot();
496
+ const r = h(e)[t].apply(e, n);
497
+ return it(), He(), r;
498
+ }
499
+ const $n = /* @__PURE__ */ gn("__proto__,__v_isRef,__isVue"), Ht = new Set(
500
+ /* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((e) => e !== "arguments" && e !== "caller").map((e) => Symbol[e]).filter(me)
501
+ );
502
+ function Ln(e) {
503
+ me(e) || (e = String(e));
504
+ const t = h(this);
505
+ return S(t, "has", e), t.hasOwnProperty(e);
506
+ }
507
+ class jt {
508
+ constructor(t = !1, n = !1) {
509
+ this._isReadonly = t, this._isShallow = n;
510
+ }
511
+ get(t, n, r) {
512
+ const s = this._isReadonly, o = this._isShallow;
513
+ if (n === "__v_isReactive")
514
+ return !s;
515
+ if (n === "__v_isReadonly")
516
+ return s;
517
+ if (n === "__v_isShallow")
518
+ return o;
519
+ if (n === "__v_raw")
520
+ return r === (s ? o ? Bt : zt : o ? Gn : Kt).get(t) || // receiver is not the reactive proxy, but has the same prototype
521
+ // this means the receiver is a user proxy of the reactive proxy
522
+ Object.getPrototypeOf(t) === Object.getPrototypeOf(r) ? t : void 0;
523
+ const i = v(t);
524
+ if (!s) {
525
+ let l;
526
+ if (i && (l = An[n]))
527
+ return l;
528
+ if (n === "hasOwnProperty")
529
+ return Ln;
530
+ }
531
+ const a = Reflect.get(
532
+ t,
533
+ n,
534
+ // if this is a proxy wrapping a ref, return methods using the raw ref
535
+ // as receiver so that we don't have to call `toRaw` on the ref in all
536
+ // its class methods
537
+ R(t) ? t : r
538
+ );
539
+ return (me(n) ? Ht.has(n) : $n(n)) || (s || S(t, "get", n), o) ? a : R(a) ? i && nt(n) ? a : a.value : D(a) ? s ? Yt(a) : Jt(a) : a;
540
+ }
541
+ }
542
+ class Fn extends jt {
543
+ constructor(t = !1) {
544
+ super(!1, t);
545
+ }
546
+ set(t, n, r, s) {
547
+ let o = t[n];
548
+ if (!this._isShallow) {
549
+ const l = W(o);
550
+ if (!C(r) && !W(r) && (o = h(o), r = h(r)), !v(t) && R(o) && !R(r))
551
+ return l ? !1 : (o.value = r, !0);
552
+ }
553
+ const i = v(t) && nt(n) ? Number(n) < t.length : N(t, n), a = Reflect.set(
554
+ t,
555
+ n,
556
+ r,
557
+ R(t) ? t : s
558
+ );
559
+ return t === h(s) && (i ? Y(r, o) && J(t, "set", n, r, o) : J(t, "add", n, r)), a;
560
+ }
561
+ deleteProperty(t, n) {
562
+ const r = N(t, n), s = t[n], o = Reflect.deleteProperty(t, n);
563
+ return o && r && J(t, "delete", n, void 0, s), o;
564
+ }
565
+ has(t, n) {
566
+ const r = Reflect.has(t, n);
567
+ return (!me(n) || !Ht.has(n)) && S(t, "has", n), r;
568
+ }
569
+ ownKeys(t) {
570
+ return S(
571
+ t,
572
+ "iterate",
573
+ v(t) ? "length" : X
574
+ ), Reflect.ownKeys(t);
575
+ }
576
+ }
577
+ class Ut extends jt {
578
+ constructor(t = !1) {
579
+ super(!0, t);
580
+ }
581
+ set(t, n) {
582
+ return process.env.NODE_ENV !== "production" && k(
583
+ `Set operation on key "${String(n)}" failed: target is readonly.`,
584
+ t
585
+ ), !0;
586
+ }
587
+ deleteProperty(t, n) {
588
+ return process.env.NODE_ENV !== "production" && k(
589
+ `Delete operation on key "${String(n)}" failed: target is readonly.`,
590
+ t
591
+ ), !0;
592
+ }
593
+ }
594
+ const Hn = /* @__PURE__ */ new Fn(), jn = /* @__PURE__ */ new Ut(), Un = /* @__PURE__ */ new Ut(!0), lt = (e) => e, je = (e) => Reflect.getPrototypeOf(e);
595
+ function be(e, t, n = !1, r = !1) {
596
+ e = e.__v_raw;
597
+ const s = h(e), o = h(t);
598
+ n || (Y(t, o) && S(s, "get", t), S(s, "get", o));
599
+ const { has: i } = je(s), a = r ? lt : n ? dt : x;
600
+ if (i.call(s, t))
601
+ return a(e.get(t));
602
+ if (i.call(s, o))
603
+ return a(e.get(o));
604
+ e !== s && e.get(t);
605
+ }
606
+ function we(e, t = !1) {
607
+ const n = this.__v_raw, r = h(n), s = h(e);
608
+ return t || (Y(e, s) && S(r, "has", e), S(r, "has", s)), e === s ? n.has(e) : n.has(e) || n.has(s);
609
+ }
610
+ function Ne(e, t = !1) {
611
+ return e = e.__v_raw, !t && S(h(e), "iterate", X), Reflect.get(e, "size", e);
612
+ }
613
+ function Et(e, t = !1) {
614
+ !t && !C(e) && !W(e) && (e = h(e));
615
+ const n = h(this);
616
+ return je(n).has.call(n, e) || (n.add(e), J(n, "add", e, e)), this;
617
+ }
618
+ function bt(e, t, n = !1) {
619
+ !n && !C(t) && !W(t) && (t = h(t));
620
+ const r = h(this), { has: s, get: o } = je(r);
621
+ let i = s.call(r, e);
622
+ i ? process.env.NODE_ENV !== "production" && Wt(r, s, e) : (e = h(e), i = s.call(r, e));
623
+ const a = o.call(r, e);
624
+ return r.set(e, t), i ? Y(t, a) && J(r, "set", e, t, a) : J(r, "add", e, t), this;
625
+ }
626
+ function wt(e) {
627
+ const t = h(this), { has: n, get: r } = je(t);
628
+ let s = n.call(t, e);
629
+ s ? process.env.NODE_ENV !== "production" && Wt(t, n, e) : (e = h(e), s = n.call(t, e));
630
+ const o = r ? r.call(t, e) : void 0, i = t.delete(e);
631
+ return s && J(t, "delete", e, void 0, o), i;
632
+ }
633
+ function Nt() {
634
+ const e = h(this), t = e.size !== 0, n = process.env.NODE_ENV !== "production" ? oe(e) ? new Map(e) : new Set(e) : void 0, r = e.clear();
635
+ return t && J(e, "clear", void 0, void 0, n), r;
636
+ }
637
+ function Oe(e, t) {
638
+ return function(r, s) {
639
+ const o = this, i = o.__v_raw, a = h(i), l = t ? lt : e ? dt : x;
640
+ return !e && S(a, "iterate", X), i.forEach((d, g) => r.call(s, l(d), l(g), o));
641
+ };
642
+ }
643
+ function Se(e, t, n) {
644
+ return function(...r) {
645
+ const s = this.__v_raw, o = h(s), i = oe(o), a = e === "entries" || e === Symbol.iterator && i, l = e === "keys" && i, d = s[e](...r), g = n ? lt : t ? dt : x;
646
+ return !t && S(
647
+ o,
648
+ "iterate",
649
+ l ? Qe : X
650
+ ), {
651
+ // iterator protocol
652
+ next() {
653
+ const { value: c, done: u } = d.next();
654
+ return u ? { value: c, done: u } : {
655
+ value: a ? [g(c[0]), g(c[1])] : g(c),
656
+ done: u
657
+ };
658
+ },
659
+ // iterable protocol
660
+ [Symbol.iterator]() {
661
+ return this;
662
+ }
663
+ };
664
+ };
665
+ }
666
+ function K(e) {
667
+ return function(...t) {
668
+ if (process.env.NODE_ENV !== "production") {
669
+ const n = t[0] ? `on key "${t[0]}" ` : "";
670
+ k(
671
+ `${On(e)} operation ${n}failed: target is readonly.`,
672
+ h(this)
673
+ );
674
+ }
675
+ return e === "delete" ? !1 : e === "clear" ? void 0 : this;
676
+ };
677
+ }
678
+ function Wn() {
679
+ const e = {
680
+ get(o) {
681
+ return be(this, o);
682
+ },
683
+ get size() {
684
+ return Ne(this);
685
+ },
686
+ has: we,
687
+ add: Et,
688
+ set: bt,
689
+ delete: wt,
690
+ clear: Nt,
691
+ forEach: Oe(!1, !1)
692
+ }, t = {
693
+ get(o) {
694
+ return be(this, o, !1, !0);
695
+ },
696
+ get size() {
697
+ return Ne(this);
698
+ },
699
+ has: we,
700
+ add(o) {
701
+ return Et.call(this, o, !0);
702
+ },
703
+ set(o, i) {
704
+ return bt.call(this, o, i, !0);
705
+ },
706
+ delete: wt,
707
+ clear: Nt,
708
+ forEach: Oe(!1, !0)
709
+ }, n = {
710
+ get(o) {
711
+ return be(this, o, !0);
712
+ },
713
+ get size() {
714
+ return Ne(this, !0);
715
+ },
716
+ has(o) {
717
+ return we.call(this, o, !0);
718
+ },
719
+ add: K("add"),
720
+ set: K("set"),
721
+ delete: K("delete"),
722
+ clear: K("clear"),
723
+ forEach: Oe(!0, !1)
724
+ }, r = {
725
+ get(o) {
726
+ return be(this, o, !0, !0);
727
+ },
728
+ get size() {
729
+ return Ne(this, !0);
730
+ },
731
+ has(o) {
732
+ return we.call(this, o, !0);
733
+ },
734
+ add: K("add"),
735
+ set: K("set"),
736
+ delete: K("delete"),
737
+ clear: K("clear"),
738
+ forEach: Oe(!0, !0)
739
+ };
740
+ return [
741
+ "keys",
742
+ "values",
743
+ "entries",
744
+ Symbol.iterator
745
+ ].forEach((o) => {
746
+ e[o] = Se(o, !1, !1), n[o] = Se(o, !0, !1), t[o] = Se(o, !1, !0), r[o] = Se(
747
+ o,
748
+ !0,
749
+ !0
750
+ );
751
+ }), [
752
+ e,
753
+ n,
754
+ t,
755
+ r
756
+ ];
757
+ }
758
+ const [
759
+ Kn,
760
+ zn,
761
+ Bn,
762
+ Jn
763
+ ] = /* @__PURE__ */ Wn();
764
+ function ut(e, t) {
765
+ const n = t ? e ? Jn : Bn : e ? zn : Kn;
766
+ return (r, s, o) => s === "__v_isReactive" ? !e : s === "__v_isReadonly" ? e : s === "__v_raw" ? r : Reflect.get(
767
+ N(n, s) && s in r ? n : r,
768
+ s,
769
+ o
770
+ );
771
+ }
772
+ const Yn = {
773
+ get: /* @__PURE__ */ ut(!1, !1)
774
+ }, kn = {
775
+ get: /* @__PURE__ */ ut(!0, !1)
776
+ }, qn = {
777
+ get: /* @__PURE__ */ ut(!0, !0)
778
+ };
779
+ function Wt(e, t, n) {
780
+ const r = h(n);
781
+ if (r !== n && t.call(e, r)) {
782
+ const s = Vt(e);
783
+ k(
784
+ `Reactive ${s} contains both the raw and reactive versions of the same object${s === "Map" ? " as keys" : ""}, which can lead to inconsistencies. Avoid differentiating between the raw and reactive versions of an object and only use the reactive version if possible.`
785
+ );
786
+ }
787
+ }
788
+ const Kt = /* @__PURE__ */ new WeakMap(), Gn = /* @__PURE__ */ new WeakMap(), zt = /* @__PURE__ */ new WeakMap(), Bt = /* @__PURE__ */ new WeakMap();
789
+ function Xn(e) {
790
+ switch (e) {
791
+ case "Object":
792
+ case "Array":
793
+ return 1;
794
+ case "Map":
795
+ case "Set":
796
+ case "WeakMap":
797
+ case "WeakSet":
798
+ return 2;
799
+ default:
800
+ return 0;
801
+ }
802
+ }
803
+ function Qn(e) {
804
+ return e.__v_skip || !Object.isExtensible(e) ? 0 : Xn(Vt(e));
805
+ }
806
+ function Jt(e) {
807
+ return W(e) ? e : ft(
808
+ e,
809
+ !1,
810
+ Hn,
811
+ Yn,
812
+ Kt
813
+ );
814
+ }
815
+ function Yt(e) {
816
+ return ft(
817
+ e,
818
+ !0,
819
+ jn,
820
+ kn,
821
+ zt
822
+ );
823
+ }
824
+ function ye(e) {
825
+ return ft(
826
+ e,
827
+ !0,
828
+ Un,
829
+ qn,
830
+ Bt
831
+ );
832
+ }
833
+ function ft(e, t, n, r, s) {
834
+ if (!D(e))
835
+ return process.env.NODE_ENV !== "production" && k(
836
+ `value cannot be made ${t ? "readonly" : "reactive"}: ${String(
837
+ e
838
+ )}`
839
+ ), e;
840
+ if (e.__v_raw && !(t && e.__v_isReactive))
841
+ return e;
842
+ const o = s.get(e);
843
+ if (o)
844
+ return o;
845
+ const i = Qn(e);
846
+ if (i === 0)
847
+ return e;
848
+ const a = new Proxy(
849
+ e,
850
+ i === 2 ? r : n
851
+ );
852
+ return s.set(e, a), a;
853
+ }
854
+ function ie(e) {
855
+ return W(e) ? ie(e.__v_raw) : !!(e && e.__v_isReactive);
856
+ }
857
+ function W(e) {
858
+ return !!(e && e.__v_isReadonly);
859
+ }
860
+ function C(e) {
861
+ return !!(e && e.__v_isShallow);
862
+ }
863
+ function Te(e) {
864
+ return e ? !!e.__v_raw : !1;
865
+ }
866
+ function h(e) {
867
+ const t = e && e.__v_raw;
868
+ return t ? h(t) : e;
869
+ }
870
+ function Zn(e) {
871
+ return !N(e, "__v_skip") && Object.isExtensible(e) && Sn(e, "__v_skip", !0), e;
872
+ }
873
+ const x = (e) => D(e) ? Jt(e) : e, dt = (e) => D(e) ? Yt(e) : e;
874
+ function R(e) {
875
+ return e ? e.__v_isRef === !0 : !1;
876
+ }
877
+ function er(e) {
878
+ return tr(e, !1);
879
+ }
880
+ function tr(e, t) {
881
+ return R(e) ? e : new nr(e, t);
882
+ }
883
+ class nr {
884
+ constructor(t, n) {
885
+ this.dep = new Lt(), this.__v_isRef = !0, this.__v_isShallow = !1, this._rawValue = n ? t : h(t), this._value = n ? t : x(t), this.__v_isShallow = n;
886
+ }
887
+ get value() {
888
+ return process.env.NODE_ENV !== "production" ? this.dep.track({
889
+ target: this,
890
+ type: "get",
891
+ key: "value"
892
+ }) : this.dep.track(), this._value;
893
+ }
894
+ set value(t) {
895
+ const n = this._rawValue, r = this.__v_isShallow || C(t) || W(t);
896
+ t = r ? t : h(t), Y(t, n) && (this._rawValue = t, this._value = r ? t : x(t), process.env.NODE_ENV !== "production" ? this.dep.trigger({
897
+ target: this,
898
+ type: "set",
899
+ key: "value",
900
+ newValue: t,
901
+ oldValue: n
902
+ }) : this.dep.trigger());
903
+ }
904
+ }
905
+ function rr(e) {
906
+ return R(e) ? e.value : e;
907
+ }
908
+ const sr = {
909
+ get: (e, t, n) => t === "__v_raw" ? e : rr(Reflect.get(e, t, n)),
910
+ set: (e, t, n, r) => {
911
+ const s = e[t];
912
+ return R(s) && !R(n) ? (s.value = n, !0) : Reflect.set(e, t, n, r);
913
+ }
914
+ };
915
+ function or(e) {
916
+ return ie(e) ? e : new Proxy(e, sr);
917
+ }
918
+ const xe = {}, Ve = /* @__PURE__ */ new WeakMap();
919
+ let G;
920
+ function ir(e, t = !1, n = G) {
921
+ if (n) {
922
+ let r = Ve.get(n);
923
+ r || Ve.set(n, r = []), r.push(e);
924
+ } else process.env.NODE_ENV !== "production" && !t && k(
925
+ "onWatcherCleanup() was called when there was no active watcher to associate with."
926
+ );
927
+ }
928
+ function cr(e, t, n = A) {
929
+ const { immediate: r, deep: s, once: o, scheduler: i, augmentJob: a, call: l } = n, d = (f) => {
930
+ (n.onWarn || k)(
931
+ "Invalid watch source: ",
932
+ f,
933
+ "A watch source can only be a getter/effect function, a ref, a reactive object, or an array of these types."
934
+ );
935
+ }, g = (f) => s ? f : C(f) || s === !1 || s === 0 ? B(f, 1) : B(f);
936
+ let c, u, m, w, P = !1, q = !1;
937
+ if (R(e) ? (u = () => e.value, P = C(e)) : ie(e) ? (u = () => g(e), P = !0) : v(e) ? (q = !0, P = e.some((f) => ie(f) || C(f)), u = () => e.map((f) => {
938
+ if (R(f))
939
+ return f.value;
940
+ if (ie(f))
941
+ return g(f);
942
+ if (O(f))
943
+ return l ? l(f, 2) : f();
944
+ process.env.NODE_ENV !== "production" && d(f);
945
+ })) : O(e) ? t ? u = l ? () => l(e, 2) : e : u = () => {
946
+ if (m) {
947
+ Fe();
948
+ try {
949
+ m();
950
+ } finally {
951
+ He();
952
+ }
953
+ }
954
+ const f = G;
955
+ G = c;
956
+ try {
957
+ return l ? l(e, 3, [w]) : e(w);
958
+ } finally {
959
+ G = f;
960
+ }
961
+ } : (u = se, process.env.NODE_ENV !== "production" && d(e)), t && s) {
962
+ const f = u, E = s === !0 ? 1 / 0 : s;
963
+ u = () => B(f(), E);
964
+ }
965
+ const I = () => {
966
+ c.stop();
967
+ };
968
+ if (o && t) {
969
+ const f = t;
970
+ t = (...E) => {
971
+ f(...E), I();
972
+ };
973
+ }
974
+ let $ = q ? new Array(e.length).fill(xe) : xe;
975
+ const T = (f) => {
976
+ if (!(!(c.flags & 1) || !c.dirty && !f))
977
+ if (t) {
978
+ const E = c.run();
979
+ if (s || P || (q ? E.some((Z, Ee) => Y(Z, $[Ee])) : Y(E, $))) {
980
+ m && m();
981
+ const Z = G;
982
+ G = c;
983
+ try {
984
+ const Ee = [
985
+ E,
986
+ // pass undefined as the old value when it's changed for the first time
987
+ $ === xe ? void 0 : q && $[0] === xe ? [] : $,
988
+ w
989
+ ];
990
+ l ? l(t, 3, Ee) : (
991
+ // @ts-expect-error
992
+ t(...Ee)
993
+ ), $ = E;
994
+ } finally {
995
+ G = Z;
996
+ }
997
+ }
998
+ } else
999
+ c.run();
1000
+ };
1001
+ return a && a(T), c = new Cn(u), c.scheduler = i ? () => i(T, !1) : T, w = (f) => ir(f, !1, c), m = c.onStop = () => {
1002
+ const f = Ve.get(c);
1003
+ if (f) {
1004
+ if (l)
1005
+ l(f, 4);
1006
+ else
1007
+ for (const E of f) E();
1008
+ Ve.delete(c);
1009
+ }
1010
+ }, process.env.NODE_ENV !== "production" && (c.onTrack = n.onTrack, c.onTrigger = n.onTrigger), t ? r ? T(!0) : $ = c.run() : i ? i(T.bind(null, !0), !0) : c.run(), I.pause = c.pause.bind(c), I.resume = c.resume.bind(c), I.stop = I, I;
1011
+ }
1012
+ function B(e, t = 1 / 0, n) {
1013
+ if (t <= 0 || !D(e) || e.__v_skip || (n = n || /* @__PURE__ */ new Set(), n.has(e)))
1014
+ return e;
1015
+ if (n.add(e), t--, R(e))
1016
+ B(e.value, t, n);
1017
+ else if (v(e))
1018
+ for (let r = 0; r < e.length; r++)
1019
+ B(e[r], t, n);
1020
+ else if (vn(e) || oe(e))
1021
+ e.forEach((r) => {
1022
+ B(r, t, n);
1023
+ });
1024
+ else if (wn(e)) {
1025
+ for (const r in e)
1026
+ B(e[r], t, n);
1027
+ for (const r of Object.getOwnPropertySymbols(e))
1028
+ Object.prototype.propertyIsEnumerable.call(e, r) && B(e[r], t, n);
1029
+ }
1030
+ return e;
1031
+ }
1032
+ /**
1033
+ * @vue/runtime-core v3.5.11
1034
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
1035
+ * @license MIT
1036
+ **/
1037
+ const Q = [];
1038
+ function ar(e) {
1039
+ Q.push(e);
1040
+ }
1041
+ function lr() {
1042
+ Q.pop();
1043
+ }
1044
+ let Be = !1;
1045
+ function b(e, ...t) {
1046
+ if (Be) return;
1047
+ Be = !0, Fe();
1048
+ const n = Q.length ? Q[Q.length - 1].component : null, r = n && n.appContext.config.warnHandler, s = ur();
1049
+ if (r)
1050
+ Ue(
1051
+ r,
1052
+ n,
1053
+ 11,
1054
+ [
1055
+ // eslint-disable-next-line no-restricted-syntax
1056
+ e + t.map((o) => {
1057
+ var i, a;
1058
+ return (a = (i = o.toString) == null ? void 0 : i.call(o)) != null ? a : JSON.stringify(o);
1059
+ }).join(""),
1060
+ n && n.proxy,
1061
+ s.map(
1062
+ ({ vnode: o }) => `at <${pn(n, o.type)}>`
1063
+ ).join(`
1064
+ `),
1065
+ s
1066
+ ]
1067
+ );
1068
+ else {
1069
+ const o = [`[Vue warn]: ${e}`, ...t];
1070
+ s.length && o.push(`
1071
+ `, ...fr(s)), console.warn(...o);
1072
+ }
1073
+ He(), Be = !1;
1074
+ }
1075
+ function ur() {
1076
+ let e = Q[Q.length - 1];
1077
+ if (!e)
1078
+ return [];
1079
+ const t = [];
1080
+ for (; e; ) {
1081
+ const n = t[0];
1082
+ n && n.vnode === e ? n.recurseCount++ : t.push({
1083
+ vnode: e,
1084
+ recurseCount: 0
1085
+ });
1086
+ const r = e.component && e.component.parent;
1087
+ e = r && r.vnode;
1088
+ }
1089
+ return t;
1090
+ }
1091
+ function fr(e) {
1092
+ const t = [];
1093
+ return e.forEach((n, r) => {
1094
+ t.push(...r === 0 ? [] : [`
1095
+ `], ...dr(n));
1096
+ }), t;
1097
+ }
1098
+ function dr({ vnode: e, recurseCount: t }) {
1099
+ const n = t > 0 ? `... (${t} recursive calls)` : "", r = e.component ? e.component.parent == null : !1, s = ` at <${pn(
1100
+ e.component,
1101
+ e.type,
1102
+ r
1103
+ )}`, o = ">" + n;
1104
+ return e.props ? [s, ...pr(e.props), o] : [s + o];
1105
+ }
1106
+ function pr(e) {
1107
+ const t = [], n = Object.keys(e);
1108
+ return n.slice(0, 3).forEach((r) => {
1109
+ t.push(...kt(r, e[r]));
1110
+ }), n.length > 3 && t.push(" ..."), t;
1111
+ }
1112
+ function kt(e, t, n) {
1113
+ return F(t) ? (t = JSON.stringify(t), n ? t : [`${e}=${t}`]) : typeof t == "number" || typeof t == "boolean" || t == null ? n ? t : [`${e}=${t}`] : R(t) ? (t = kt(e, h(t.value), !0), n ? t : [`${e}=Ref<`, t, ">"]) : O(t) ? [`${e}=fn${t.name ? `<${t.name}>` : ""}`] : (t = h(t), n ? t : [`${e}=`, t]);
1114
+ }
1115
+ const qt = {
1116
+ sp: "serverPrefetch hook",
1117
+ bc: "beforeCreate hook",
1118
+ c: "created hook",
1119
+ bm: "beforeMount hook",
1120
+ m: "mounted hook",
1121
+ bu: "beforeUpdate hook",
1122
+ u: "updated",
1123
+ bum: "beforeUnmount hook",
1124
+ um: "unmounted hook",
1125
+ a: "activated hook",
1126
+ da: "deactivated hook",
1127
+ ec: "errorCaptured hook",
1128
+ rtc: "renderTracked hook",
1129
+ rtg: "renderTriggered hook",
1130
+ 0: "setup function",
1131
+ 1: "render function",
1132
+ 2: "watcher getter",
1133
+ 3: "watcher callback",
1134
+ 4: "watcher cleanup function",
1135
+ 5: "native event handler",
1136
+ 6: "component event handler",
1137
+ 7: "vnode hook",
1138
+ 8: "directive hook",
1139
+ 9: "transition hook",
1140
+ 10: "app errorHandler",
1141
+ 11: "app warnHandler",
1142
+ 12: "ref function",
1143
+ 13: "async component loader",
1144
+ 14: "scheduler flush",
1145
+ 15: "component update",
1146
+ 16: "app unmount cleanup function"
1147
+ };
1148
+ function Ue(e, t, n, r) {
1149
+ try {
1150
+ return r ? e(...r) : e();
1151
+ } catch (s) {
1152
+ pt(s, t, n);
1153
+ }
1154
+ }
1155
+ function Gt(e, t, n, r) {
1156
+ if (O(e)) {
1157
+ const s = Ue(e, t, n, r);
1158
+ return s && En(s) && s.catch((o) => {
1159
+ pt(o, t, n);
1160
+ }), s;
1161
+ }
1162
+ if (v(e)) {
1163
+ const s = [];
1164
+ for (let o = 0; o < e.length; o++)
1165
+ s.push(Gt(e[o], t, n, r));
1166
+ return s;
1167
+ } else process.env.NODE_ENV !== "production" && b(
1168
+ `Invalid value type passed to callWithAsyncErrorHandling(): ${typeof e}`
1169
+ );
1170
+ }
1171
+ function pt(e, t, n, r = !0) {
1172
+ const s = t ? t.vnode : null, { errorHandler: o, throwUnhandledErrorInProduction: i } = t && t.appContext.config || A;
1173
+ if (t) {
1174
+ let a = t.parent;
1175
+ const l = t.proxy, d = process.env.NODE_ENV !== "production" ? qt[n] : `https://vuejs.org/error-reference/#runtime-${n}`;
1176
+ for (; a; ) {
1177
+ const g = a.ec;
1178
+ if (g) {
1179
+ for (let c = 0; c < g.length; c++)
1180
+ if (g[c](e, l, d) === !1)
1181
+ return;
1182
+ }
1183
+ a = a.parent;
1184
+ }
1185
+ if (o) {
1186
+ Fe(), Ue(o, null, 10, [
1187
+ e,
1188
+ l,
1189
+ d
1190
+ ]), He();
1191
+ return;
1192
+ }
1193
+ }
1194
+ hr(e, n, s, r, i);
1195
+ }
1196
+ function hr(e, t, n, r = !0, s = !1) {
1197
+ if (process.env.NODE_ENV !== "production") {
1198
+ const o = qt[t];
1199
+ if (n && ar(n), b(`Unhandled error${o ? ` during execution of ${o}` : ""}`), n && lr(), r)
1200
+ throw e;
1201
+ console.error(e);
1202
+ } else {
1203
+ if (s)
1204
+ throw e;
1205
+ console.error(e);
1206
+ }
1207
+ }
1208
+ const M = [];
1209
+ let U = -1;
1210
+ const ce = [];
1211
+ let z = null, te = 0;
1212
+ const Xt = /* @__PURE__ */ Promise.resolve();
1213
+ let Pe = null;
1214
+ const gr = 100;
1215
+ function _r(e) {
1216
+ const t = Pe || Xt;
1217
+ return e ? t.then(this ? e.bind(this) : e) : t;
1218
+ }
1219
+ function mr(e) {
1220
+ let t = U + 1, n = M.length;
1221
+ for (; t < n; ) {
1222
+ const r = t + n >>> 1, s = M[r], o = _e(s);
1223
+ o < e || o === e && s.flags & 2 ? t = r + 1 : n = r;
1224
+ }
1225
+ return t;
1226
+ }
1227
+ function ht(e) {
1228
+ if (!(e.flags & 1)) {
1229
+ const t = _e(e), n = M[M.length - 1];
1230
+ !n || // fast path when the job id is larger than the tail
1231
+ !(e.flags & 2) && t >= _e(n) ? M.push(e) : M.splice(mr(t), 0, e), e.flags |= 1, Qt();
1232
+ }
1233
+ }
1234
+ function Qt() {
1235
+ Pe || (Pe = Xt.then(en));
1236
+ }
1237
+ function Zt(e) {
1238
+ v(e) ? ce.push(...e) : z && e.id === -1 ? z.splice(te + 1, 0, e) : e.flags & 1 || (ce.push(e), e.flags |= 1), Qt();
1239
+ }
1240
+ function vr(e) {
1241
+ if (ce.length) {
1242
+ const t = [...new Set(ce)].sort(
1243
+ (n, r) => _e(n) - _e(r)
1244
+ );
1245
+ if (ce.length = 0, z) {
1246
+ z.push(...t);
1247
+ return;
1248
+ }
1249
+ for (z = t, process.env.NODE_ENV !== "production" && (e = e || /* @__PURE__ */ new Map()), te = 0; te < z.length; te++) {
1250
+ const n = z[te];
1251
+ process.env.NODE_ENV !== "production" && tn(e, n) || (n.flags & 4 && (n.flags &= -2), n.flags & 8 || n(), n.flags &= -2);
1252
+ }
1253
+ z = null, te = 0;
1254
+ }
1255
+ }
1256
+ const _e = (e) => e.id == null ? e.flags & 2 ? -1 : 1 / 0 : e.id;
1257
+ function en(e) {
1258
+ process.env.NODE_ENV !== "production" && (e = e || /* @__PURE__ */ new Map());
1259
+ const t = process.env.NODE_ENV !== "production" ? (n) => tn(e, n) : se;
1260
+ try {
1261
+ for (U = 0; U < M.length; U++) {
1262
+ const n = M[U];
1263
+ if (n && !(n.flags & 8)) {
1264
+ if (process.env.NODE_ENV !== "production" && t(n))
1265
+ continue;
1266
+ n.flags & 4 && (n.flags &= -2), Ue(
1267
+ n,
1268
+ n.i,
1269
+ n.i ? 15 : 14
1270
+ ), n.flags & 4 || (n.flags &= -2);
1271
+ }
1272
+ }
1273
+ } finally {
1274
+ for (; U < M.length; U++) {
1275
+ const n = M[U];
1276
+ n && (n.flags &= -2);
1277
+ }
1278
+ U = -1, M.length = 0, vr(e), Pe = null, (M.length || ce.length) && en(e);
1279
+ }
1280
+ }
1281
+ function tn(e, t) {
1282
+ const n = e.get(t) || 0;
1283
+ if (n > gr) {
1284
+ const r = t.i, s = r && dn(r.type);
1285
+ return pt(
1286
+ `Maximum recursive updates exceeded${s ? ` in component <${s}>` : ""}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.`,
1287
+ null,
1288
+ 10
1289
+ ), !0;
1290
+ }
1291
+ return e.set(t, n + 1), !1;
1292
+ }
1293
+ const Je = /* @__PURE__ */ new Map();
1294
+ process.env.NODE_ENV !== "production" && (Pt().__VUE_HMR_RUNTIME__ = {
1295
+ createRecord: Ye(Er),
1296
+ rerender: Ye(br),
1297
+ reload: Ye(wr)
1298
+ });
1299
+ const Ie = /* @__PURE__ */ new Map();
1300
+ function Er(e, t) {
1301
+ return Ie.has(e) ? !1 : (Ie.set(e, {
1302
+ initialDef: Ae(t),
1303
+ instances: /* @__PURE__ */ new Set()
1304
+ }), !0);
1305
+ }
1306
+ function Ae(e) {
1307
+ return hn(e) ? e.__vccOpts : e;
1308
+ }
1309
+ function br(e, t) {
1310
+ const n = Ie.get(e);
1311
+ n && (n.initialDef.render = t, [...n.instances].forEach((r) => {
1312
+ t && (r.render = t, Ae(r.type).render = t), r.renderCache = [], r.update();
1313
+ }));
1314
+ }
1315
+ function wr(e, t) {
1316
+ const n = Ie.get(e);
1317
+ if (!n) return;
1318
+ t = Ae(t), Ot(n.initialDef, t);
1319
+ const r = [...n.instances];
1320
+ for (let s = 0; s < r.length; s++) {
1321
+ const o = r[s], i = Ae(o.type);
1322
+ let a = Je.get(i);
1323
+ a || (i !== n.initialDef && Ot(i, t), Je.set(i, a = /* @__PURE__ */ new Set())), a.add(o), o.appContext.propsCache.delete(o.type), o.appContext.emitsCache.delete(o.type), o.appContext.optionsCache.delete(o.type), o.ceReload ? (a.add(o), o.ceReload(t.styles), a.delete(o)) : o.parent ? ht(() => {
1324
+ o.parent.update(), a.delete(o);
1325
+ }) : o.appContext.reload ? o.appContext.reload() : typeof window < "u" ? window.location.reload() : console.warn(
1326
+ "[HMR] Root or manually mounted instance modified. Full reload required."
1327
+ ), o.root.ce && o !== o.root && o.root.ce._removeChildStyle(i);
1328
+ }
1329
+ Zt(() => {
1330
+ Je.clear();
1331
+ });
1332
+ }
1333
+ function Ot(e, t) {
1334
+ V(e, t);
1335
+ for (const n in e)
1336
+ n !== "__file" && !(n in t) && delete e[n];
1337
+ }
1338
+ function Ye(e) {
1339
+ return (t, n) => {
1340
+ try {
1341
+ return e(t, n);
1342
+ } catch (r) {
1343
+ console.error(r), console.warn(
1344
+ "[HMR] Something went wrong during Vue component hot-reload. Full reload required."
1345
+ );
1346
+ }
1347
+ };
1348
+ }
1349
+ let ne, De = [];
1350
+ function nn(e, t) {
1351
+ var n, r;
1352
+ ne = e, ne ? (ne.enabled = !0, De.forEach(({ event: s, args: o }) => ne.emit(s, ...o)), De = []) : /* handle late devtools injection - only do this if we are in an actual */ /* browser environment to avoid the timer handle stalling test runner exit */ /* (#4815) */ typeof window < "u" && // some envs mock window but not fully
1353
+ window.HTMLElement && // also exclude jsdom
1354
+ // eslint-disable-next-line no-restricted-syntax
1355
+ !((r = (n = window.navigator) == null ? void 0 : n.userAgent) != null && r.includes("jsdom")) ? ((t.__VUE_DEVTOOLS_HOOK_REPLAY__ = t.__VUE_DEVTOOLS_HOOK_REPLAY__ || []).push((o) => {
1356
+ nn(o, t);
1357
+ }), setTimeout(() => {
1358
+ ne || (t.__VUE_DEVTOOLS_HOOK_REPLAY__ = null, De = []);
1359
+ }, 3e3)) : De = [];
1360
+ }
1361
+ let H = null, Nr = null;
1362
+ const Or = (e) => e.__isTeleport;
1363
+ function rn(e, t) {
1364
+ e.shapeFlag & 6 && e.component ? (e.transition = t, rn(e.component.subTree, t)) : e.shapeFlag & 128 ? (e.ssContent.transition = t.clone(e.ssContent), e.ssFallback.transition = t.clone(e.ssFallback)) : e.transition = t;
1365
+ }
1366
+ /*! #__NO_SIDE_EFFECTS__ */
1367
+ // @__NO_SIDE_EFFECTS__
1368
+ function Sr(e, t) {
1369
+ return O(e) ? (
1370
+ // #8236: extend call and options.name access are considered side-effects
1371
+ // by Rollup, so we have to wrap it in a pure-annotated IIFE.
1372
+ V({ name: e.name }, t, { setup: e })
1373
+ ) : e;
1374
+ }
1375
+ const yr = Symbol.for("v-ndc"), Ze = (e) => e ? Xr(e) ? Qr(e) : Ze(e.parent) : null, he = (
1376
+ // Move PURE marker to new line to workaround compiler discarding it
1377
+ // due to type annotation
1378
+ /* @__PURE__ */ V(/* @__PURE__ */ Object.create(null), {
1379
+ $: (e) => e,
1380
+ $el: (e) => e.vnode.el,
1381
+ $data: (e) => e.data,
1382
+ $props: (e) => process.env.NODE_ENV !== "production" ? ye(e.props) : e.props,
1383
+ $attrs: (e) => process.env.NODE_ENV !== "production" ? ye(e.attrs) : e.attrs,
1384
+ $slots: (e) => process.env.NODE_ENV !== "production" ? ye(e.slots) : e.slots,
1385
+ $refs: (e) => process.env.NODE_ENV !== "production" ? ye(e.refs) : e.refs,
1386
+ $parent: (e) => Ze(e.parent),
1387
+ $root: (e) => Ze(e.root),
1388
+ $host: (e) => e.ce,
1389
+ $emit: (e) => e.emit,
1390
+ $options: (e) => Rr(e),
1391
+ $forceUpdate: (e) => e.f || (e.f = () => {
1392
+ ht(e.update);
1393
+ }),
1394
+ $nextTick: (e) => e.n || (e.n = _r.bind(e.proxy)),
1395
+ $watch: (e) => Fr.bind(e)
1396
+ })
1397
+ ), xr = (e) => e === "_" || e === "$", ke = (e, t) => e !== A && !e.__isScriptSetup && N(e, t), Dr = {
1398
+ get({ _: e }, t) {
1399
+ if (t === "__v_skip")
1400
+ return !0;
1401
+ const { ctx: n, setupState: r, data: s, props: o, accessCache: i, type: a, appContext: l } = e;
1402
+ if (process.env.NODE_ENV !== "production" && t === "__isVue")
1403
+ return !0;
1404
+ let d;
1405
+ if (t[0] !== "$") {
1406
+ const m = i[t];
1407
+ if (m !== void 0)
1408
+ switch (m) {
1409
+ case 1:
1410
+ return r[t];
1411
+ case 2:
1412
+ return s[t];
1413
+ case 4:
1414
+ return n[t];
1415
+ case 3:
1416
+ return o[t];
1417
+ }
1418
+ else {
1419
+ if (ke(r, t))
1420
+ return i[t] = 1, r[t];
1421
+ if (s !== A && N(s, t))
1422
+ return i[t] = 2, s[t];
1423
+ if (
1424
+ // only cache other properties when instance has declared (thus stable)
1425
+ // props
1426
+ (d = e.propsOptions[0]) && N(d, t)
1427
+ )
1428
+ return i[t] = 3, o[t];
1429
+ if (n !== A && N(n, t))
1430
+ return i[t] = 4, n[t];
1431
+ i[t] = 0;
1432
+ }
1433
+ }
1434
+ const g = he[t];
1435
+ let c, u;
1436
+ if (g)
1437
+ return t === "$attrs" ? (S(e.attrs, "get", ""), process.env.NODE_ENV !== "production" && void 0) : process.env.NODE_ENV !== "production" && t === "$slots" && S(e, "get", t), g(e);
1438
+ if (
1439
+ // css module (injected by vue-loader)
1440
+ (c = a.__cssModules) && (c = c[t])
1441
+ )
1442
+ return c;
1443
+ if (n !== A && N(n, t))
1444
+ return i[t] = 4, n[t];
1445
+ if (
1446
+ // global properties
1447
+ u = l.config.globalProperties, N(u, t)
1448
+ )
1449
+ return u[t];
1450
+ process.env.NODE_ENV !== "production" && H && (!F(t) || // #1091 avoid internal isRef/isVNode checks on component instance leading
1451
+ // to infinite warning loop
1452
+ t.indexOf("__v") !== 0) && (s !== A && xr(t[0]) && N(s, t) ? b(
1453
+ `Property ${JSON.stringify(
1454
+ t
1455
+ )} must be accessed via $data because it starts with a reserved character ("$" or "_") and is not proxied on the render context.`
1456
+ ) : e === H && b(
1457
+ `Property ${JSON.stringify(t)} was accessed during render but is not defined on instance.`
1458
+ ));
1459
+ },
1460
+ set({ _: e }, t, n) {
1461
+ const { data: r, setupState: s, ctx: o } = e;
1462
+ return ke(s, t) ? (s[t] = n, !0) : process.env.NODE_ENV !== "production" && s.__isScriptSetup && N(s, t) ? (b(`Cannot mutate <script setup> binding "${t}" from Options API.`), !1) : r !== A && N(r, t) ? (r[t] = n, !0) : N(e.props, t) ? (process.env.NODE_ENV !== "production" && b(`Attempting to mutate prop "${t}". Props are readonly.`), !1) : t[0] === "$" && t.slice(1) in e ? (process.env.NODE_ENV !== "production" && b(
1463
+ `Attempting to mutate public property "${t}". Properties starting with $ are reserved and readonly.`
1464
+ ), !1) : (process.env.NODE_ENV !== "production" && t in e.appContext.config.globalProperties ? Object.defineProperty(o, t, {
1465
+ enumerable: !0,
1466
+ configurable: !0,
1467
+ value: n
1468
+ }) : o[t] = n, !0);
1469
+ },
1470
+ has({
1471
+ _: { data: e, setupState: t, accessCache: n, ctx: r, appContext: s, propsOptions: o }
1472
+ }, i) {
1473
+ let a;
1474
+ return !!n[i] || e !== A && N(e, i) || ke(t, i) || (a = o[0]) && N(a, i) || N(r, i) || N(he, i) || N(s.config.globalProperties, i);
1475
+ },
1476
+ defineProperty(e, t, n) {
1477
+ return n.get != null ? e._.accessCache[t] = 0 : N(n, "value") && this.set(e, t, n.value, null), Reflect.defineProperty(e, t, n);
1478
+ }
1479
+ };
1480
+ process.env.NODE_ENV !== "production" && (Dr.ownKeys = (e) => (b(
1481
+ "Avoid app logic that relies on enumerating keys on a component instance. The keys will be empty in production mode to avoid performance overhead."
1482
+ ), Reflect.ownKeys(e)));
1483
+ function St(e) {
1484
+ return v(e) ? e.reduce(
1485
+ (t, n) => (t[n] = null, t),
1486
+ {}
1487
+ ) : e;
1488
+ }
1489
+ function Rr(e) {
1490
+ const t = e.type, { mixins: n, extends: r } = t, {
1491
+ mixins: s,
1492
+ optionsCache: o,
1493
+ config: { optionMergeStrategies: i }
1494
+ } = e.appContext, a = o.get(t);
1495
+ let l;
1496
+ return a ? l = a : !s.length && !n && !r ? l = t : (l = {}, s.length && s.forEach(
1497
+ (d) => Me(l, d, i, !0)
1498
+ ), Me(l, t, i)), D(t) && o.set(t, l), l;
1499
+ }
1500
+ function Me(e, t, n, r = !1) {
1501
+ const { mixins: s, extends: o } = t;
1502
+ o && Me(e, o, n, !0), s && s.forEach(
1503
+ (i) => Me(e, i, n, !0)
1504
+ );
1505
+ for (const i in t)
1506
+ if (r && i === "expose")
1507
+ process.env.NODE_ENV !== "production" && b(
1508
+ '"expose" option is ignored when declared in mixins or extends. It should only be declared in the base component itself.'
1509
+ );
1510
+ else {
1511
+ const a = Cr[i] || n && n[i];
1512
+ e[i] = a ? a(e[i], t[i]) : t[i];
1513
+ }
1514
+ return e;
1515
+ }
1516
+ const Cr = {
1517
+ data: yt,
1518
+ props: Dt,
1519
+ emits: Dt,
1520
+ // objects
1521
+ methods: le,
1522
+ computed: le,
1523
+ // lifecycle
1524
+ beforeCreate: y,
1525
+ created: y,
1526
+ beforeMount: y,
1527
+ mounted: y,
1528
+ beforeUpdate: y,
1529
+ updated: y,
1530
+ beforeDestroy: y,
1531
+ beforeUnmount: y,
1532
+ destroyed: y,
1533
+ unmounted: y,
1534
+ activated: y,
1535
+ deactivated: y,
1536
+ errorCaptured: y,
1537
+ serverPrefetch: y,
1538
+ // assets
1539
+ components: le,
1540
+ directives: le,
1541
+ // watch
1542
+ watch: Vr,
1543
+ // provide / inject
1544
+ provide: yt,
1545
+ inject: Tr
1546
+ };
1547
+ function yt(e, t) {
1548
+ return t ? e ? function() {
1549
+ return V(
1550
+ O(e) ? e.call(this, this) : e,
1551
+ O(t) ? t.call(this, this) : t
1552
+ );
1553
+ } : t : e;
1554
+ }
1555
+ function Tr(e, t) {
1556
+ return le(xt(e), xt(t));
1557
+ }
1558
+ function xt(e) {
1559
+ if (v(e)) {
1560
+ const t = {};
1561
+ for (let n = 0; n < e.length; n++)
1562
+ t[e[n]] = e[n];
1563
+ return t;
1564
+ }
1565
+ return e;
1566
+ }
1567
+ function y(e, t) {
1568
+ return e ? [...new Set([].concat(e, t))] : t;
1569
+ }
1570
+ function le(e, t) {
1571
+ return e ? V(/* @__PURE__ */ Object.create(null), e, t) : t;
1572
+ }
1573
+ function Dt(e, t) {
1574
+ return e ? v(e) && v(t) ? [.../* @__PURE__ */ new Set([...e, ...t])] : V(
1575
+ /* @__PURE__ */ Object.create(null),
1576
+ St(e),
1577
+ St(t ?? {})
1578
+ ) : t;
1579
+ }
1580
+ function Vr(e, t) {
1581
+ if (!e) return t;
1582
+ if (!t) return e;
1583
+ const n = V(/* @__PURE__ */ Object.create(null), e);
1584
+ for (const r in t)
1585
+ n[r] = y(e[r], t[r]);
1586
+ return n;
1587
+ }
1588
+ let Pr = null;
1589
+ function sn(e, t, n = !1) {
1590
+ const r = ve || H;
1591
+ if (r || Pr) {
1592
+ const s = r ? r.parent == null ? r.vnode.appContext && r.vnode.appContext.provides : r.parent.provides : void 0;
1593
+ if (s && e in s)
1594
+ return s[e];
1595
+ if (arguments.length > 1)
1596
+ return n && O(t) ? t.call(r && r.proxy) : t;
1597
+ process.env.NODE_ENV !== "production" && b(`injection "${String(e)}" not found.`);
1598
+ } else process.env.NODE_ENV !== "production" && b("inject() can only be used inside setup() or functional components.");
1599
+ }
1600
+ const Ir = {}, on = (e) => Object.getPrototypeOf(e) === Ir, Ar = Ur, Mr = Symbol.for("v-scx"), $r = () => {
1601
+ {
1602
+ const e = sn(Mr);
1603
+ return e || process.env.NODE_ENV !== "production" && b(
1604
+ "Server rendering context not provided. Make sure to only call useSSRContext() conditionally in the server build."
1605
+ ), e;
1606
+ }
1607
+ };
1608
+ function Lr(e, t, n = A) {
1609
+ const { immediate: r, deep: s, flush: o, once: i } = n;
1610
+ process.env.NODE_ENV !== "production" && !t && (r !== void 0 && b(
1611
+ 'watch() "immediate" option is only respected when using the watch(source, callback, options?) signature.'
1612
+ ), s !== void 0 && b(
1613
+ 'watch() "deep" option is only respected when using the watch(source, callback, options?) signature.'
1614
+ ), i !== void 0 && b(
1615
+ 'watch() "once" option is only respected when using the watch(source, callback, options?) signature.'
1616
+ ));
1617
+ const a = V({}, n);
1618
+ process.env.NODE_ENV !== "production" && (a.onWarn = b);
1619
+ let l;
1620
+ if (fn)
1621
+ if (o === "sync") {
1622
+ const u = $r();
1623
+ l = u.__watcherHandles || (u.__watcherHandles = []);
1624
+ } else if (!t || r)
1625
+ a.once = !0;
1626
+ else {
1627
+ const u = () => {
1628
+ };
1629
+ return u.stop = se, u.resume = se, u.pause = se, u;
1630
+ }
1631
+ const d = ve;
1632
+ a.call = (u, m, w) => Gt(u, d, m, w);
1633
+ let g = !1;
1634
+ o === "post" ? a.scheduler = (u) => {
1635
+ Ar(u, d && d.suspense);
1636
+ } : o !== "sync" && (g = !0, a.scheduler = (u, m) => {
1637
+ m ? u() : ht(u);
1638
+ }), a.augmentJob = (u) => {
1639
+ t && (u.flags |= 4), g && (u.flags |= 2, d && (u.id = d.uid, u.i = d));
1640
+ };
1641
+ const c = cr(e, t, a);
1642
+ return l && l.push(c), c;
1643
+ }
1644
+ function Fr(e, t, n) {
1645
+ const r = this.proxy, s = F(e) ? e.includes(".") ? Hr(r, e) : () => r[e] : e.bind(r, r);
1646
+ let o;
1647
+ O(t) ? o = t : (o = t.handler, n = t);
1648
+ const i = Gr(this), a = Lr(s, o.bind(r), n);
1649
+ return i(), a;
1650
+ }
1651
+ function Hr(e, t) {
1652
+ const n = t.split(".");
1653
+ return () => {
1654
+ let r = e;
1655
+ for (let s = 0; s < n.length && r; s++)
1656
+ r = r[n[s]];
1657
+ return r;
1658
+ };
1659
+ }
1660
+ const jr = (e) => e.__isSuspense;
1661
+ function Ur(e, t) {
1662
+ t && t.pendingBranch ? v(e) ? t.effects.push(...e) : t.effects.push(e) : Zt(e);
1663
+ }
1664
+ const cn = Symbol.for("v-fgt"), Wr = Symbol.for("v-txt"), Kr = Symbol.for("v-cmt");
1665
+ let re = null;
1666
+ function et(e) {
1667
+ return e ? e.__v_isVNode === !0 : !1;
1668
+ }
1669
+ const zr = (...e) => ln(
1670
+ ...e
1671
+ ), an = ({ key: e }) => e ?? null, Re = ({
1672
+ ref: e,
1673
+ ref_key: t,
1674
+ ref_for: n
1675
+ }) => (typeof e == "number" && (e = "" + e), e != null ? F(e) || R(e) || O(e) ? { i: H, r: e, k: t, f: !!n } : e : null);
1676
+ function Br(e, t = null, n = null, r = 0, s = null, o = e === cn ? 0 : 1, i = !1, a = !1) {
1677
+ const l = {
1678
+ __v_isVNode: !0,
1679
+ __v_skip: !0,
1680
+ type: e,
1681
+ props: t,
1682
+ key: t && an(t),
1683
+ ref: t && Re(t),
1684
+ scopeId: Nr,
1685
+ slotScopeIds: null,
1686
+ children: n,
1687
+ component: null,
1688
+ suspense: null,
1689
+ ssContent: null,
1690
+ ssFallback: null,
1691
+ dirs: null,
1692
+ transition: null,
1693
+ el: null,
1694
+ anchor: null,
1695
+ target: null,
1696
+ targetStart: null,
1697
+ targetAnchor: null,
1698
+ staticCount: 0,
1699
+ shapeFlag: o,
1700
+ patchFlag: r,
1701
+ dynamicProps: s,
1702
+ dynamicChildren: null,
1703
+ appContext: null,
1704
+ ctx: H
1705
+ };
1706
+ return a ? (gt(l, n), o & 128 && e.normalize(l)) : n && (l.shapeFlag |= F(n) ? 8 : 16), process.env.NODE_ENV !== "production" && l.key !== l.key && b("VNode created with invalid key (NaN). VNode type:", l.type), // avoid a block node from tracking itself
1707
+ !i && // has current parent block
1708
+ re && // presence of a patch flag indicates this node needs patching on updates.
1709
+ // component nodes also should always be patched, because even if the
1710
+ // component doesn't need to update, it needs to persist the instance on to
1711
+ // the next vnode so that it can be properly unmounted later.
1712
+ (l.patchFlag > 0 || o & 6) && // the EVENTS flag is only for hydration and if it is the only flag, the
1713
+ // vnode should not be considered dynamic due to handler caching.
1714
+ l.patchFlag !== 32 && re.push(l), l;
1715
+ }
1716
+ const ue = process.env.NODE_ENV !== "production" ? zr : ln;
1717
+ function ln(e, t = null, n = null, r = 0, s = null, o = !1) {
1718
+ if ((!e || e === yr) && (process.env.NODE_ENV !== "production" && !e && b(`Invalid vnode type when creating vnode: ${e}.`), e = Kr), et(e)) {
1719
+ const a = $e(
1720
+ e,
1721
+ t,
1722
+ !0
1723
+ /* mergeRef: true */
1724
+ );
1725
+ return n && gt(a, n), !o && re && (a.shapeFlag & 6 ? re[re.indexOf(e)] = a : re.push(a)), a.patchFlag = -2, a;
1726
+ }
1727
+ if (hn(e) && (e = e.__vccOpts), t) {
1728
+ t = Jr(t);
1729
+ let { class: a, style: l } = t;
1730
+ a && !F(a) && (t.class = st(a)), D(l) && (Te(l) && !v(l) && (l = V({}, l)), t.style = rt(l));
1731
+ }
1732
+ const i = F(e) ? 1 : jr(e) ? 128 : Or(e) ? 64 : D(e) ? 4 : O(e) ? 2 : 0;
1733
+ return process.env.NODE_ENV !== "production" && i & 4 && Te(e) && (e = h(e), b(
1734
+ "Vue received a Component that was made a reactive object. This can lead to unnecessary performance overhead and should be avoided by marking the component with `markRaw` or using `shallowRef` instead of `ref`.",
1735
+ `
1736
+ Component that was made reactive: `,
1737
+ e
1738
+ )), Br(
1739
+ e,
1740
+ t,
1741
+ n,
1742
+ r,
1743
+ s,
1744
+ i,
1745
+ o,
1746
+ !0
1747
+ );
1748
+ }
1749
+ function Jr(e) {
1750
+ return e ? Te(e) || on(e) ? V({}, e) : e : null;
1751
+ }
1752
+ function $e(e, t, n = !1, r = !1) {
1753
+ const { props: s, ref: o, patchFlag: i, children: a, transition: l } = e, d = t ? kr(s || {}, t) : s, g = {
1754
+ __v_isVNode: !0,
1755
+ __v_skip: !0,
1756
+ type: e.type,
1757
+ props: d,
1758
+ key: d && an(d),
1759
+ ref: t && t.ref ? (
1760
+ // #2078 in the case of <component :is="vnode" ref="extra"/>
1761
+ // if the vnode itself already has a ref, cloneVNode will need to merge
1762
+ // the refs so the single vnode can be set on multiple refs
1763
+ n && o ? v(o) ? o.concat(Re(t)) : [o, Re(t)] : Re(t)
1764
+ ) : o,
1765
+ scopeId: e.scopeId,
1766
+ slotScopeIds: e.slotScopeIds,
1767
+ children: process.env.NODE_ENV !== "production" && i === -1 && v(a) ? a.map(un) : a,
1768
+ target: e.target,
1769
+ targetStart: e.targetStart,
1770
+ targetAnchor: e.targetAnchor,
1771
+ staticCount: e.staticCount,
1772
+ shapeFlag: e.shapeFlag,
1773
+ // if the vnode is cloned with extra props, we can no longer assume its
1774
+ // existing patch flag to be reliable and need to add the FULL_PROPS flag.
1775
+ // note: preserve flag for fragments since they use the flag for children
1776
+ // fast paths only.
1777
+ patchFlag: t && e.type !== cn ? i === -1 ? 16 : i | 16 : i,
1778
+ dynamicProps: e.dynamicProps,
1779
+ dynamicChildren: e.dynamicChildren,
1780
+ appContext: e.appContext,
1781
+ dirs: e.dirs,
1782
+ transition: l,
1783
+ // These should technically only be non-null on mounted VNodes. However,
1784
+ // they *should* be copied for kept-alive vnodes. So we just always copy
1785
+ // them since them being non-null during a mount doesn't affect the logic as
1786
+ // they will simply be overwritten.
1787
+ component: e.component,
1788
+ suspense: e.suspense,
1789
+ ssContent: e.ssContent && $e(e.ssContent),
1790
+ ssFallback: e.ssFallback && $e(e.ssFallback),
1791
+ el: e.el,
1792
+ anchor: e.anchor,
1793
+ ctx: e.ctx,
1794
+ ce: e.ce
1795
+ };
1796
+ return l && r && rn(
1797
+ g,
1798
+ l.clone(g)
1799
+ ), g;
1800
+ }
1801
+ function un(e) {
1802
+ const t = $e(e);
1803
+ return v(e.children) && (t.children = e.children.map(un)), t;
1804
+ }
1805
+ function Yr(e = " ", t = 0) {
1806
+ return ue(Wr, null, e, t);
1807
+ }
1808
+ function gt(e, t) {
1809
+ let n = 0;
1810
+ const { shapeFlag: r } = e;
1811
+ if (t == null)
1812
+ t = null;
1813
+ else if (v(t))
1814
+ n = 16;
1815
+ else if (typeof t == "object")
1816
+ if (r & 65) {
1817
+ const s = t.default;
1818
+ s && (s._c && (s._d = !1), gt(e, s()), s._c && (s._d = !0));
1819
+ return;
1820
+ } else {
1821
+ n = 32;
1822
+ const s = t._;
1823
+ !s && !on(t) ? t._ctx = H : s === 3 && H && (H.slots._ === 1 ? t._ = 1 : (t._ = 2, e.patchFlag |= 1024));
1824
+ }
1825
+ else O(t) ? (t = { default: t, _ctx: H }, n = 32) : (t = String(t), r & 64 ? (n = 16, t = [Yr(t)]) : n = 8);
1826
+ e.children = t, e.shapeFlag |= n;
1827
+ }
1828
+ function kr(...e) {
1829
+ const t = {};
1830
+ for (let n = 0; n < e.length; n++) {
1831
+ const r = e[n];
1832
+ for (const s in r)
1833
+ if (s === "class")
1834
+ t.class !== r.class && (t.class = st([t.class, r.class]));
1835
+ else if (s === "style")
1836
+ t.style = rt([t.style, r.style]);
1837
+ else if (_n(s)) {
1838
+ const o = t[s], i = r[s];
1839
+ i && o !== i && !(v(o) && o.includes(i)) && (t[s] = o ? [].concat(o, i) : i);
1840
+ } else s !== "" && (t[s] = r[s]);
1841
+ }
1842
+ return t;
1843
+ }
1844
+ let ve = null;
1845
+ const qr = () => ve || H;
1846
+ let tt;
1847
+ {
1848
+ const e = Pt(), t = (n, r) => {
1849
+ let s;
1850
+ return (s = e[n]) || (s = e[n] = []), s.push(r), (o) => {
1851
+ s.length > 1 ? s.forEach((i) => i(o)) : s[0](o);
1852
+ };
1853
+ };
1854
+ tt = t(
1855
+ "__VUE_INSTANCE_SETTERS__",
1856
+ (n) => ve = n
1857
+ ), t(
1858
+ "__VUE_SSR_SETTERS__",
1859
+ (n) => fn = n
1860
+ );
1861
+ }
1862
+ const Gr = (e) => {
1863
+ const t = ve;
1864
+ return tt(e), e.scope.on(), () => {
1865
+ e.scope.off(), tt(t);
1866
+ };
1867
+ };
1868
+ function Xr(e) {
1869
+ return e.vnode.shapeFlag & 4;
1870
+ }
1871
+ let fn = !1;
1872
+ process.env.NODE_ENV;
1873
+ function Qr(e) {
1874
+ return e.exposed ? e.exposeProxy || (e.exposeProxy = new Proxy(or(Zn(e.exposed)), {
1875
+ get(t, n) {
1876
+ if (n in t)
1877
+ return t[n];
1878
+ if (n in he)
1879
+ return he[n](e);
1880
+ },
1881
+ has(t, n) {
1882
+ return n in t || n in he;
1883
+ }
1884
+ })) : e.proxy;
1885
+ }
1886
+ const Zr = /(?:^|[-_])(\w)/g, es = (e) => e.replace(Zr, (t) => t.toUpperCase()).replace(/[-_]/g, "");
1887
+ function dn(e, t = !0) {
1888
+ return O(e) ? e.displayName || e.name : e.name || t && e.__name;
1889
+ }
1890
+ function pn(e, t, n = !1) {
1891
+ let r = dn(t);
1892
+ if (!r && t.__file) {
1893
+ const s = t.__file.match(/([^/\\]+)\.\w+$/);
1894
+ s && (r = s[1]);
1895
+ }
1896
+ if (!r && e && e.parent) {
1897
+ const s = (o) => {
1898
+ for (const i in o)
1899
+ if (o[i] === t)
1900
+ return i;
1901
+ };
1902
+ r = s(
1903
+ e.components || e.parent.type.components
1904
+ ) || s(e.appContext.components);
1905
+ }
1906
+ return r ? es(r) : n ? "App" : "Anonymous";
1907
+ }
1908
+ function hn(e) {
1909
+ return O(e) && "__vccOpts" in e;
1910
+ }
1911
+ function ts(e, t, n) {
1912
+ const r = arguments.length;
1913
+ return r === 2 ? D(t) && !v(t) ? et(t) ? ue(e, null, [t]) : ue(e, t) : ue(e, null, t) : (r > 3 ? n = Array.prototype.slice.call(arguments, 2) : r === 3 && et(n) && (n = [n]), ue(e, t, n));
1914
+ }
1915
+ function ns() {
1916
+ if (process.env.NODE_ENV === "production" || typeof window > "u")
1917
+ return;
1918
+ const e = { style: "color:#3ba776" }, t = { style: "color:#1677ff" }, n = { style: "color:#f5222d" }, r = { style: "color:#eb2f96" }, s = {
1919
+ __vue_custom_formatter: !0,
1920
+ header(c) {
1921
+ return D(c) ? c.__isVue ? ["div", e, "VueInstance"] : R(c) ? [
1922
+ "div",
1923
+ {},
1924
+ ["span", e, g(c)],
1925
+ "<",
1926
+ // avoid debugger accessing value affecting behavior
1927
+ a("_value" in c ? c._value : c),
1928
+ ">"
1929
+ ] : ie(c) ? [
1930
+ "div",
1931
+ {},
1932
+ ["span", e, C(c) ? "ShallowReactive" : "Reactive"],
1933
+ "<",
1934
+ a(c),
1935
+ `>${W(c) ? " (readonly)" : ""}`
1936
+ ] : W(c) ? [
1937
+ "div",
1938
+ {},
1939
+ ["span", e, C(c) ? "ShallowReadonly" : "Readonly"],
1940
+ "<",
1941
+ a(c),
1942
+ ">"
1943
+ ] : null : null;
1944
+ },
1945
+ hasBody(c) {
1946
+ return c && c.__isVue;
1947
+ },
1948
+ body(c) {
1949
+ if (c && c.__isVue)
1950
+ return [
1951
+ "div",
1952
+ {},
1953
+ ...o(c.$)
1954
+ ];
1955
+ }
1956
+ };
1957
+ function o(c) {
1958
+ const u = [];
1959
+ c.type.props && c.props && u.push(i("props", h(c.props))), c.setupState !== A && u.push(i("setup", c.setupState)), c.data !== A && u.push(i("data", h(c.data)));
1960
+ const m = l(c, "computed");
1961
+ m && u.push(i("computed", m));
1962
+ const w = l(c, "inject");
1963
+ return w && u.push(i("injected", w)), u.push([
1964
+ "div",
1965
+ {},
1966
+ [
1967
+ "span",
1968
+ {
1969
+ style: r.style + ";opacity:0.66"
1970
+ },
1971
+ "$ (internal): "
1972
+ ],
1973
+ ["object", { object: c }]
1974
+ ]), u;
1975
+ }
1976
+ function i(c, u) {
1977
+ return u = V({}, u), Object.keys(u).length ? [
1978
+ "div",
1979
+ { style: "line-height:1.25em;margin-bottom:0.6em" },
1980
+ [
1981
+ "div",
1982
+ {
1983
+ style: "color:#476582"
1984
+ },
1985
+ c
1986
+ ],
1987
+ [
1988
+ "div",
1989
+ {
1990
+ style: "padding-left:1.25em"
1991
+ },
1992
+ ...Object.keys(u).map((m) => [
1993
+ "div",
1994
+ {},
1995
+ ["span", r, m + ": "],
1996
+ a(u[m], !1)
1997
+ ])
1998
+ ]
1999
+ ] : ["span", {}];
2000
+ }
2001
+ function a(c, u = !0) {
2002
+ return typeof c == "number" ? ["span", t, c] : typeof c == "string" ? ["span", n, JSON.stringify(c)] : typeof c == "boolean" ? ["span", r, c] : D(c) ? ["object", { object: u ? h(c) : c }] : ["span", n, String(c)];
2003
+ }
2004
+ function l(c, u) {
2005
+ const m = c.type;
2006
+ if (O(m))
2007
+ return;
2008
+ const w = {};
2009
+ for (const P in c.ctx)
2010
+ d(m, P, u) && (w[P] = c.ctx[P]);
2011
+ return w;
2012
+ }
2013
+ function d(c, u, m) {
2014
+ const w = c[m];
2015
+ if (v(w) && w.includes(u) || D(w) && u in w || c.extends && d(c.extends, u, m) || c.mixins && c.mixins.some((P) => d(P, u, m)))
2016
+ return !0;
2017
+ }
2018
+ function g(c) {
2019
+ return C(c) ? "ShallowRef" : c.effect ? "ComputedRef" : "Ref";
2020
+ }
2021
+ window.devtoolsFormatters ? window.devtoolsFormatters.push(s) : window.devtoolsFormatters = [s];
2022
+ }
2023
+ process.env.NODE_ENV;
2024
+ process.env.NODE_ENV;
2025
+ process.env.NODE_ENV;
2026
+ /**
2027
+ * vue v3.5.11
2028
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
2029
+ * @license MIT
2030
+ **/
2031
+ function rs() {
2032
+ ns();
2033
+ }
2034
+ process.env.NODE_ENV !== "production" && rs();
2035
+ const qe = "routerLink", Rt = "navManager", ss = "router", os = "aria", fe = Symbol(), Ct = { default: fe }, Tt = (e) => (e == null ? void 0 : e.split(" ")) || [], is = (e, t, n = []) => {
2036
+ var r;
2037
+ return [...Array.from(((r = e.value) == null ? void 0 : r.classList) || []), ...n].filter(
2038
+ (s, o, i) => !t.has(s) && i.indexOf(s) === o
2039
+ );
2040
+ }, p = (e, t, n = [], r, s) => {
2041
+ const o = /* @__PURE__ */ Sr((i, { attrs: a, slots: l, emit: d }) => {
2042
+ var q;
2043
+ i[r];
2044
+ const g = er(), c = new Set(Tt(a.class)), u = qr(), w = ((q = u == null ? void 0 : u.appContext) == null ? void 0 : q.provides[Rt]) ? sn(Rt) : void 0, P = (I) => {
2045
+ const { routerLink: $ } = i;
2046
+ if ($ !== fe)
2047
+ if (w !== void 0) {
2048
+ I.preventDefault();
2049
+ let T = { event: I };
2050
+ for (const f in i) {
2051
+ const E = i[f];
2052
+ i.hasOwnProperty(f) && f.startsWith(ss) && E !== fe && (T[f] = E);
2053
+ }
2054
+ w.navigate(T);
2055
+ } else
2056
+ console.warn("Tried to navigate, but no router was found. Make sure you have mounted Vue Router.");
2057
+ };
2058
+ return () => {
2059
+ i[r], Tt(a.class).forEach((E) => {
2060
+ c.add(E);
2061
+ });
2062
+ const I = i.onClick, $ = (E) => {
2063
+ I !== void 0 && I(E), E.defaultPrevented || P(E);
2064
+ };
2065
+ let T = {
2066
+ ref: g,
2067
+ class: is(g, c),
2068
+ onClick: $
2069
+ };
2070
+ for (const E in i) {
2071
+ const Z = i[E];
2072
+ (i.hasOwnProperty(E) && Z !== fe || E.startsWith(os)) && (T[E] = Z);
2073
+ }
2074
+ return i[qe] !== fe && (T = {
2075
+ ...T,
2076
+ href: i[qe]
2077
+ }), ts(e, T, l.default && l.default());
2078
+ };
2079
+ });
2080
+ return typeof o != "function" && (o.name = e, o.props = {
2081
+ [qe]: Ct
2082
+ }, n.forEach((i) => {
2083
+ o.props[i] = Ct;
2084
+ })), o;
2085
+ }, cs = /* @__PURE__ */ p("eds-accordion", void 0, [
2086
+ "title",
2087
+ "description",
2088
+ "switchBg",
2089
+ "expanded",
2090
+ "clampText",
2091
+ "minHeightContent",
2092
+ "accordionChange"
2093
+ ]), as = /* @__PURE__ */ p("eds-alert", void 0, [
2094
+ "message",
2095
+ "pressableLabel",
2096
+ "pressableUrl",
2097
+ "direction",
2098
+ "intent"
2099
+ ]), ls = /* @__PURE__ */ p("eds-avatar", void 0, [
2100
+ "firstName",
2101
+ "lastName",
2102
+ "picture",
2103
+ "initials",
2104
+ "color",
2105
+ "rounded",
2106
+ "initialsStrong"
2107
+ ]), us = /* @__PURE__ */ p("eds-block-break", void 0, [
2108
+ "extraClass"
2109
+ ]), fs = /* @__PURE__ */ p("eds-breadcrumb", void 0, [
2110
+ "items",
2111
+ "intent"
2112
+ ]), ds = /* @__PURE__ */ p("eds-button", void 0, [
2113
+ "label",
2114
+ "ariaLabel",
2115
+ "elementType",
2116
+ "intent",
2117
+ "loading",
2118
+ "disabled",
2119
+ "pill",
2120
+ "icon",
2121
+ "size",
2122
+ "iconPos",
2123
+ "iconSmall",
2124
+ "extraClass",
2125
+ "triggerClick"
2126
+ ]), ps = /* @__PURE__ */ p("eds-card-desc", void 0, [
2127
+ "description",
2128
+ "descClass",
2129
+ "truncate",
2130
+ "truncateLines"
2131
+ ]), hs = /* @__PURE__ */ p("eds-card-generic", void 0, [
2132
+ "cardTitle",
2133
+ "url",
2134
+ "description",
2135
+ "image",
2136
+ "avatar",
2137
+ "shortAbbreviation",
2138
+ "headingLevel",
2139
+ "tags",
2140
+ "tiny",
2141
+ "bg",
2142
+ "withHover",
2143
+ "hierarchy"
2144
+ ]), gs = /* @__PURE__ */ p("eds-card-section", void 0, [
2145
+ "cards",
2146
+ "cols"
2147
+ ]), _s = /* @__PURE__ */ p("eds-code-block", void 0, [
2148
+ "code",
2149
+ "language"
2150
+ ]), ms = /* @__PURE__ */ p("eds-dropdown", void 0, [
2151
+ "icon",
2152
+ "label",
2153
+ "rounded",
2154
+ "ariaLabel",
2155
+ "asNav",
2156
+ "dropdownPos",
2157
+ "dropdownOffset",
2158
+ "intent"
2159
+ ]), vs = /* @__PURE__ */ p("eds-footer", void 0, [
2160
+ "extraClass",
2161
+ "social",
2162
+ "hasCookiesSetUp",
2163
+ "enableScrollTop",
2164
+ "fundedBy",
2165
+ "rightsReserved",
2166
+ "cookiesPreference"
2167
+ ]), Es = /* @__PURE__ */ p("eds-form", void 0, [
2168
+ "smallAlert",
2169
+ "setFormUrl",
2170
+ "submitBtn",
2171
+ "submitBtnLabel",
2172
+ "successMessage",
2173
+ "errorMessage",
2174
+ "endpoint",
2175
+ "name",
2176
+ "fields",
2177
+ "coupleAuth",
2178
+ "formSubmitting"
2179
+ ]), bs = /* @__PURE__ */ p("eds-frame", void 0, [
2180
+ "frameLabel",
2181
+ "urlLabel",
2182
+ "errorMessage",
2183
+ "storybookUrl",
2184
+ "storyPath",
2185
+ "intent",
2186
+ "tiny",
2187
+ "size",
2188
+ "bg"
2189
+ ]), ws = /* @__PURE__ */ p("eds-fullscreen-menu", void 0, [
2190
+ "links",
2191
+ "menuLinks",
2192
+ "homeUrl",
2193
+ "inverseHeader",
2194
+ "menuClose"
2195
+ ]), Ns = /* @__PURE__ */ p("eds-header", void 0, [
2196
+ "homeUrl",
2197
+ "links",
2198
+ "inverseHeader",
2199
+ "userFeature",
2200
+ "menuEnabled",
2201
+ "keycloakUrl",
2202
+ "keycloakRealm",
2203
+ "keycloakClientId",
2204
+ "toggleMenu"
2205
+ ]), Os = /* @__PURE__ */ p("eds-icon-wrapper", void 0, [
2206
+ "icon",
2207
+ "class"
2208
+ ]), Ss = /* @__PURE__ */ p("eds-img", void 0, [
2209
+ "src",
2210
+ "alt",
2211
+ "width",
2212
+ "height",
2213
+ "srcset",
2214
+ "sizes",
2215
+ "formats",
2216
+ "lazyload",
2217
+ "withBg"
2218
+ ]), ys = /* @__PURE__ */ p("eds-input-field", void 0, [
2219
+ "name",
2220
+ "inputId",
2221
+ "placeholder",
2222
+ "disabled",
2223
+ "onChange",
2224
+ "onInput",
2225
+ "type",
2226
+ "required",
2227
+ "label",
2228
+ "hint",
2229
+ "icon",
2230
+ "link",
2231
+ "message",
2232
+ "error",
2233
+ "checked",
2234
+ "errorMessage",
2235
+ "value",
2236
+ "maxLength",
2237
+ "options"
2238
+ ]), xs = /* @__PURE__ */ p("eds-link", void 0, [
2239
+ "label",
2240
+ "intent",
2241
+ "icon",
2242
+ "iconPos",
2243
+ "iconSmall",
2244
+ "size",
2245
+ "external",
2246
+ "current",
2247
+ "download",
2248
+ "url",
2249
+ "ariaLabel",
2250
+ "disabled",
2251
+ "hideLabelOnSmallScreen",
2252
+ "extraClass"
2253
+ ]), Ds = /* @__PURE__ */ p("eds-login", void 0, [
2254
+ "keycloakUrl",
2255
+ "keycloakRealm",
2256
+ "keycloakClientId",
2257
+ "authStatusChanged"
2258
+ ]), Rs = /* @__PURE__ */ p("eds-logo", void 0, [
2259
+ "href",
2260
+ "orientation",
2261
+ "type"
2262
+ ]), Cs = /* @__PURE__ */ p("eds-matomo-notice", void 0, [
2263
+ "title",
2264
+ "description"
2265
+ ]), Ts = /* @__PURE__ */ p("eds-modal", void 0, [
2266
+ "title",
2267
+ "truncate",
2268
+ "truncateLines"
2269
+ ]), Vs = /* @__PURE__ */ p("eds-pagination", void 0, [
2270
+ "currentPage",
2271
+ "lastPage",
2272
+ "perPage",
2273
+ "total",
2274
+ "url",
2275
+ "mode",
2276
+ "prevLabel",
2277
+ "nextLabel",
2278
+ "prevUrl",
2279
+ "nextUrl"
2280
+ ]), Ps = /* @__PURE__ */ p("eds-progress-bar", void 0, [
2281
+ "value"
2282
+ ]), Is = /* @__PURE__ */ p("eds-rating", void 0, [
2283
+ "stars",
2284
+ "label",
2285
+ "textMapping",
2286
+ "ratingChange"
2287
+ ]), As = /* @__PURE__ */ p("eds-section-core", void 0, [
2288
+ "tag",
2289
+ "sectionTitle",
2290
+ "headingLevel"
2291
+ ]), Ms = /* @__PURE__ */ p("eds-section-heading", void 0, [
2292
+ "sectionTitle",
2293
+ "withContainer",
2294
+ "headingLevel",
2295
+ "tag",
2296
+ "spacingLarge"
2297
+ ]), $s = /* @__PURE__ */ p("eds-social-networks", void 0, [
2298
+ "title"
2299
+ ]), Ls = /* @__PURE__ */ p("eds-table", void 0, [
2300
+ "data",
2301
+ "endpoint",
2302
+ "config",
2303
+ "rowsPerPage",
2304
+ "paginationEnabled",
2305
+ "searchEnabled"
2306
+ ]), Fs = /* @__PURE__ */ p("eds-tabs", void 0, [
2307
+ "id",
2308
+ "navAriaLabel",
2309
+ "tabs",
2310
+ "tabChange"
2311
+ ]), Hs = /* @__PURE__ */ p("eds-tag", void 0, [
2312
+ "label",
2313
+ "intent"
2314
+ ]), js = /* @__PURE__ */ p("eds-toast", void 0, [
2315
+ "message",
2316
+ "intent",
2317
+ "duration"
2318
+ ]), Us = /* @__PURE__ */ p("eds-toast-manager"), Ws = /* @__PURE__ */ p("eds-tooltip", void 0, [
2319
+ "content",
2320
+ "position"
2321
+ ]), Ks = /* @__PURE__ */ p("eds-user", void 0, [
2322
+ "keycloakUrl",
2323
+ "keycloakRealm",
2324
+ "keycloakClientId",
2325
+ "authStatusChanged"
2326
+ ]);
2327
+ export {
2328
+ cs as EdsAccordion,
2329
+ as as EdsAlert,
2330
+ ls as EdsAvatar,
2331
+ us as EdsBlockBreak,
2332
+ fs as EdsBreadcrumb,
2333
+ ds as EdsButton,
2334
+ ps as EdsCardDesc,
2335
+ hs as EdsCardGeneric,
2336
+ gs as EdsCardSection,
2337
+ _s as EdsCodeBlock,
2338
+ ms as EdsDropdown,
2339
+ vs as EdsFooter,
2340
+ Es as EdsForm,
2341
+ bs as EdsFrame,
2342
+ ws as EdsFullscreenMenu,
2343
+ Ns as EdsHeader,
2344
+ Os as EdsIconWrapper,
2345
+ Ss as EdsImg,
2346
+ ys as EdsInputField,
2347
+ xs as EdsLink,
2348
+ Ds as EdsLogin,
2349
+ Rs as EdsLogo,
2350
+ Cs as EdsMatomoNotice,
2351
+ Ts as EdsModal,
2352
+ Vs as EdsPagination,
2353
+ Ps as EdsProgressBar,
2354
+ Is as EdsRating,
2355
+ As as EdsSectionCore,
2356
+ Ms as EdsSectionHeading,
2357
+ $s as EdsSocialNetworks,
2358
+ Ls as EdsTable,
2359
+ Fs as EdsTabs,
2360
+ Hs as EdsTag,
2361
+ js as EdsToast,
2362
+ Us as EdsToastManager,
2363
+ Ws as EdsTooltip,
2364
+ Ks as EdsUser
2365
+ };