@phila/phila-ui-map-core 0.0.1-beta.2

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