@prefabs.tech/vue3-ui 0.31.0 → 0.32.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.
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { defineComponent as j, ref as P, useSlots as
|
|
1
|
+
import { defineComponent as j, ref as P, useSlots as Fe, unref as J, openBlock as c, createElementBlock as h, normalizeClass as F, Fragment as Z, renderList as ge, createElementVNode as p, createBlock as N, resolveDynamicComponent as ye, toDisplayString as B, createVNode as ve, Transition as On, withCtx as W, createCommentVNode as S, computed as Y, renderSlot as _, createTextVNode as ee, onMounted as Qe, nextTick as Oe, watch as Xe, getCurrentScope as Xn, onScopeDispose as Un, getCurrentInstance as Et, hasInjectionContext as xn, inject as Kn, toValue as xe, shallowRef as Ut, watchEffect as Tn, mergeProps as le, onBeforeUnmount as Ln, normalizeStyle as We, createSlots as Qn, withDirectives as on, vShow as an, resolveComponent as Mn, h as Pt, withModifiers as Jn } from "vue";
|
|
2
2
|
const eo = ["aria-orientation"], to = ["data-expanded"], no = ["aria-expanded", "onClick"], oo = {
|
|
3
3
|
key: 0,
|
|
4
4
|
class: "pane",
|
|
5
5
|
role: "region"
|
|
6
6
|
}, io = {
|
|
7
7
|
name: "Accordion"
|
|
8
|
-
},
|
|
8
|
+
}, Ha = /* @__PURE__ */ j({
|
|
9
9
|
...io,
|
|
10
10
|
props: {
|
|
11
11
|
activeIcon: {
|
|
@@ -35,13 +35,13 @@ const eo = ["aria-orientation"], to = ["data-expanded"], no = ["aria-expanded",
|
|
|
35
35
|
setup(e) {
|
|
36
36
|
const t = e, o = P(t.defaultIndex), n = (l) => {
|
|
37
37
|
o.value = !t.canSelfCollapse || o.value !== l ? l : -1;
|
|
38
|
-
}, i =
|
|
39
|
-
return (l, r) =>
|
|
38
|
+
}, i = Fe(), a = i?.default ? i.default().filter((l) => l?.props?.title) : null;
|
|
39
|
+
return (l, r) => J(a) ? (c(), h("div", {
|
|
40
40
|
key: 0,
|
|
41
41
|
class: F(["accordion", t.direction]),
|
|
42
42
|
"aria-orientation": t.direction
|
|
43
43
|
}, [
|
|
44
|
-
(c(!0), h(Z, null, ge(
|
|
44
|
+
(c(!0), h(Z, null, ge(J(a), (s, u) => (c(), h("section", {
|
|
45
45
|
key: u,
|
|
46
46
|
"data-expanded": u === o.value
|
|
47
47
|
}, [
|
|
@@ -81,18 +81,9 @@ const eo = ["aria-orientation"], to = ["data-expanded"], no = ["aria-expanded",
|
|
|
81
81
|
], 10, eo)) : S("", !0);
|
|
82
82
|
}
|
|
83
83
|
}), ao = {
|
|
84
|
-
key: 0,
|
|
85
|
-
class: "icon-left"
|
|
86
|
-
}, lo = {
|
|
87
|
-
key: 1,
|
|
88
|
-
class: "label"
|
|
89
|
-
}, ro = {
|
|
90
|
-
key: 2,
|
|
91
|
-
class: "icon-right"
|
|
92
|
-
}, so = {
|
|
93
84
|
name: "BadgeComponent"
|
|
94
|
-
},
|
|
95
|
-
...
|
|
85
|
+
}, lo = /* @__PURE__ */ j({
|
|
86
|
+
...ao,
|
|
96
87
|
props: {
|
|
97
88
|
iconLeft: {
|
|
98
89
|
default: null,
|
|
@@ -121,51 +112,55 @@ const eo = ["aria-orientation"], to = ["data-expanded"], no = ["aria-expanded",
|
|
|
121
112
|
}
|
|
122
113
|
},
|
|
123
114
|
setup(e) {
|
|
124
|
-
const t = e, o =
|
|
125
|
-
|
|
126
|
-
|
|
115
|
+
const t = e, o = Y(() => [
|
|
116
|
+
"badge",
|
|
117
|
+
{ rounded: t.rounded },
|
|
118
|
+
t.severity
|
|
119
|
+
]);
|
|
120
|
+
return (n, i) => (c(), h("span", {
|
|
121
|
+
class: F(o.value)
|
|
127
122
|
}, [
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
])
|
|
123
|
+
_(n.$slots, "iconLeft", {}, () => [
|
|
124
|
+
e.iconLeft ? (c(), h("i", {
|
|
125
|
+
key: 0,
|
|
126
|
+
class: F(e.iconLeft)
|
|
127
|
+
}, null, 2)) : S("", !0)
|
|
128
|
+
]),
|
|
129
|
+
e.label ? (c(), h(Z, { key: 0 }, [
|
|
130
|
+
ee(B(e.label), 1)
|
|
131
|
+
], 64)) : S("", !0),
|
|
132
|
+
_(n.$slots, "iconRight", {}, () => [
|
|
133
|
+
e.iconRight ? (c(), h("i", {
|
|
134
|
+
key: 0,
|
|
135
|
+
class: F(e.iconRight)
|
|
136
|
+
}, null, 2)) : S("", !0)
|
|
137
|
+
])
|
|
143
138
|
], 2));
|
|
144
139
|
}
|
|
145
|
-
}),
|
|
140
|
+
}), ro = {
|
|
146
141
|
name: "LoadingIcon"
|
|
147
142
|
}, Ot = (e, t) => {
|
|
148
143
|
const o = e.__vccOpts || e;
|
|
149
144
|
for (const [n, i] of t)
|
|
150
145
|
o[n] = i;
|
|
151
146
|
return o;
|
|
152
|
-
},
|
|
153
|
-
function
|
|
154
|
-
return c(), h("div",
|
|
147
|
+
}, so = { class: "loading" };
|
|
148
|
+
function uo(e, t, o, n, i, a) {
|
|
149
|
+
return c(), h("div", so, "Loading");
|
|
155
150
|
}
|
|
156
|
-
const xt = /* @__PURE__ */ Ot(
|
|
151
|
+
const xt = /* @__PURE__ */ Ot(ro, [["render", uo], ["__scopeId", "data-v-220b78f3"]]), co = {
|
|
157
152
|
key: 0,
|
|
158
153
|
class: "icon-left"
|
|
159
|
-
},
|
|
154
|
+
}, fo = {
|
|
160
155
|
key: 1,
|
|
161
156
|
class: "label"
|
|
162
|
-
},
|
|
157
|
+
}, ho = {
|
|
163
158
|
key: 2,
|
|
164
159
|
class: "icon-right"
|
|
165
|
-
},
|
|
160
|
+
}, po = {
|
|
166
161
|
name: "ButtonElement"
|
|
167
162
|
}, he = /* @__PURE__ */ j({
|
|
168
|
-
...
|
|
163
|
+
...po,
|
|
169
164
|
props: {
|
|
170
165
|
ariaLabel: {
|
|
171
166
|
default: "button",
|
|
@@ -228,7 +223,7 @@ const xt = /* @__PURE__ */ Ot(co, [["render", ho], ["__scopeId", "data-v-4c97cef
|
|
|
228
223
|
},
|
|
229
224
|
emits: ["click"],
|
|
230
225
|
setup(e, { emit: t }) {
|
|
231
|
-
const o = t, n = e, i =
|
|
226
|
+
const o = t, n = e, i = Fe(), a = Y(() => [
|
|
232
227
|
"button",
|
|
233
228
|
n.severity,
|
|
234
229
|
n.size,
|
|
@@ -251,19 +246,19 @@ const xt = /* @__PURE__ */ Ot(co, [["render", ho], ["__scopeId", "data-v-4c97cef
|
|
|
251
246
|
onClick: f[0] || (f[0] = (d) => !e.to && s())
|
|
252
247
|
}, {
|
|
253
248
|
default: W(() => [
|
|
254
|
-
e.iconLeft ||
|
|
249
|
+
e.iconLeft || J(i).iconLeft ? (c(), h("span", co, [
|
|
255
250
|
_(u.$slots, "iconLeft", {}, () => [
|
|
256
251
|
p("i", {
|
|
257
252
|
class: F(e.iconLeft)
|
|
258
253
|
}, null, 2)
|
|
259
254
|
])
|
|
260
255
|
])) : S("", !0),
|
|
261
|
-
u.$slots.label || e.label ? (c(), h("div",
|
|
256
|
+
u.$slots.label || e.label ? (c(), h("div", fo, [
|
|
262
257
|
_(u.$slots, "label", {}, () => [
|
|
263
258
|
p("span", null, B(e.label), 1)
|
|
264
259
|
])
|
|
265
260
|
])) : S("", !0),
|
|
266
|
-
e.iconRight ||
|
|
261
|
+
e.iconRight || J(i).iconRight ? (c(), h("span", ho, [
|
|
267
262
|
_(u.$slots, "iconRight", {}, () => [
|
|
268
263
|
p("i", {
|
|
269
264
|
class: F(e.iconRight)
|
|
@@ -278,16 +273,16 @@ const xt = /* @__PURE__ */ Ot(co, [["render", ho], ["__scopeId", "data-v-4c97cef
|
|
|
278
273
|
_: 3
|
|
279
274
|
}, 8, ["aria-label", "class", "disabled", "href", "role", "title"]));
|
|
280
275
|
}
|
|
281
|
-
}),
|
|
276
|
+
}), go = { class: "card" }, vo = {
|
|
282
277
|
key: 0,
|
|
283
278
|
class: "card-header"
|
|
284
|
-
},
|
|
279
|
+
}, mo = { class: "card-title" }, bo = { class: "card-body" }, Co = {
|
|
285
280
|
key: 1,
|
|
286
281
|
class: "card-footer"
|
|
287
|
-
},
|
|
282
|
+
}, yo = {
|
|
288
283
|
name: "Card"
|
|
289
|
-
},
|
|
290
|
-
...
|
|
284
|
+
}, wo = /* @__PURE__ */ j({
|
|
285
|
+
...yo,
|
|
291
286
|
props: {
|
|
292
287
|
title: {
|
|
293
288
|
type: String,
|
|
@@ -295,24 +290,24 @@ const xt = /* @__PURE__ */ Ot(co, [["render", ho], ["__scopeId", "data-v-4c97cef
|
|
|
295
290
|
}
|
|
296
291
|
},
|
|
297
292
|
setup(e) {
|
|
298
|
-
return (t, o) => (c(), h("div",
|
|
299
|
-
t.$slots.header || e.title ? (c(), h("header",
|
|
293
|
+
return (t, o) => (c(), h("div", go, [
|
|
294
|
+
t.$slots.header || e.title ? (c(), h("header", vo, [
|
|
300
295
|
_(t.$slots, "header", {}, () => [
|
|
301
|
-
p("h3",
|
|
296
|
+
p("h3", mo, B(e.title), 1)
|
|
302
297
|
])
|
|
303
298
|
])) : S("", !0),
|
|
304
|
-
p("div",
|
|
299
|
+
p("div", bo, [
|
|
305
300
|
_(t.$slots, "default")
|
|
306
301
|
]),
|
|
307
|
-
t.$slots.footer ? (c(), h("footer",
|
|
302
|
+
t.$slots.footer ? (c(), h("footer", Co, [
|
|
308
303
|
_(t.$slots, "footer")
|
|
309
304
|
])) : S("", !0)
|
|
310
305
|
]));
|
|
311
306
|
}
|
|
312
|
-
}),
|
|
307
|
+
}), So = ["disabled"], ko = { class: "label" }, $o = {
|
|
313
308
|
name: "LoadingButton"
|
|
314
|
-
},
|
|
315
|
-
|
|
309
|
+
}, Do = /* @__PURE__ */ j({
|
|
310
|
+
...$o,
|
|
316
311
|
props: {
|
|
317
312
|
disabled: {
|
|
318
313
|
type: Boolean,
|
|
@@ -334,23 +329,23 @@ const xt = /* @__PURE__ */ Ot(co, [["render", ho], ["__scopeId", "data-v-4c97cef
|
|
|
334
329
|
class: F(["loading-button", { loading: e.loading }]),
|
|
335
330
|
onClick: o[0] || (o[0] = (n) => t.$emit("click"))
|
|
336
331
|
}, [
|
|
337
|
-
p("div",
|
|
332
|
+
p("div", ko, [
|
|
338
333
|
p("span", null, B(e.label), 1)
|
|
339
334
|
]),
|
|
340
335
|
e.loading ? (c(), N(xt, { key: 0 })) : S("", !0)
|
|
341
|
-
], 10,
|
|
336
|
+
], 10, So));
|
|
342
337
|
}
|
|
343
|
-
}),
|
|
338
|
+
}), Eo = /* @__PURE__ */ Ot(Do, [["__scopeId", "data-v-3fdbc7b3"]]), Oo = {
|
|
344
339
|
name: "SubPane"
|
|
345
|
-
},
|
|
346
|
-
function
|
|
347
|
-
return c(), h("div",
|
|
340
|
+
}, xo = { class: "sub-pane" };
|
|
341
|
+
function To(e, t, o, n, i, a) {
|
|
342
|
+
return c(), h("div", xo);
|
|
348
343
|
}
|
|
349
|
-
const
|
|
350
|
-
function
|
|
344
|
+
const Ga = /* @__PURE__ */ Ot(Oo, [["render", To], ["__scopeId", "data-v-bf8003ec"]]);
|
|
345
|
+
function Lo(e) {
|
|
351
346
|
return Xn() ? (Un(e), !0) : !1;
|
|
352
347
|
}
|
|
353
|
-
const _t = /* @__PURE__ */ new WeakMap(),
|
|
348
|
+
const _t = /* @__PURE__ */ new WeakMap(), Mo = (...e) => {
|
|
354
349
|
var t;
|
|
355
350
|
const o = e[0], n = (t = Et()) == null ? void 0 : t.proxy;
|
|
356
351
|
if (n == null && !xn())
|
|
@@ -358,25 +353,25 @@ const _t = /* @__PURE__ */ new WeakMap(), Ao = (...e) => {
|
|
|
358
353
|
return n && _t.has(n) && o in _t.get(n) ? _t.get(n)[o] : Kn(...e);
|
|
359
354
|
}, Bn = typeof window < "u" && typeof document < "u";
|
|
360
355
|
typeof WorkerGlobalScope < "u" && globalThis instanceof WorkerGlobalScope;
|
|
361
|
-
const
|
|
362
|
-
},
|
|
363
|
-
function
|
|
356
|
+
const Bo = Object.prototype.toString, Io = (e) => Bo.call(e) === "[object Object]", Ze = () => {
|
|
357
|
+
}, Ao = /* @__PURE__ */ Po();
|
|
358
|
+
function Po() {
|
|
364
359
|
var e, t;
|
|
365
360
|
return Bn && ((e = window?.navigator) == null ? void 0 : e.userAgent) && (/iP(?:ad|hone|od)/.test(window.navigator.userAgent) || ((t = window?.navigator) == null ? void 0 : t.maxTouchPoints) > 2 && /iPad|Macintosh/.test(window?.navigator.userAgent));
|
|
366
361
|
}
|
|
367
362
|
function cn(e) {
|
|
368
363
|
return e.endsWith("rem") ? Number.parseFloat(e) * 16 : Number.parseFloat(e);
|
|
369
364
|
}
|
|
370
|
-
function
|
|
365
|
+
function _o(e) {
|
|
371
366
|
return Et();
|
|
372
367
|
}
|
|
373
368
|
function Nt(e) {
|
|
374
369
|
return Array.isArray(e) ? e : [e];
|
|
375
370
|
}
|
|
376
|
-
function
|
|
377
|
-
|
|
371
|
+
function No(e, t = !0, o) {
|
|
372
|
+
_o() ? Qe(e, o) : t ? e() : Oe(e);
|
|
378
373
|
}
|
|
379
|
-
function
|
|
374
|
+
function Fo(e, t, o) {
|
|
380
375
|
return Xe(
|
|
381
376
|
e,
|
|
382
377
|
t,
|
|
@@ -392,19 +387,19 @@ function et(e) {
|
|
|
392
387
|
const o = xe(e);
|
|
393
388
|
return (t = o?.$el) != null ? t : o;
|
|
394
389
|
}
|
|
395
|
-
function
|
|
390
|
+
function Pe(...e) {
|
|
396
391
|
const t = [], o = () => {
|
|
397
392
|
t.forEach((r) => r()), t.length = 0;
|
|
398
393
|
}, n = (r, s, u, f) => (r.addEventListener(s, u, f), () => r.removeEventListener(s, u, f)), i = Y(() => {
|
|
399
394
|
const r = Nt(xe(e[0])).filter((s) => s != null);
|
|
400
395
|
return r.every((s) => typeof s != "string") ? r : void 0;
|
|
401
|
-
}), a =
|
|
396
|
+
}), a = Fo(
|
|
402
397
|
() => {
|
|
403
398
|
var r, s;
|
|
404
399
|
return [
|
|
405
400
|
(s = (r = i.value) == null ? void 0 : r.map((u) => et(u))) != null ? s : [Tt].filter((u) => u != null),
|
|
406
401
|
Nt(xe(i.value ? e[1] : e[0])),
|
|
407
|
-
Nt(
|
|
402
|
+
Nt(J(i.value ? e[2] : e[1])),
|
|
408
403
|
// @ts-expect-error - TypeScript gets the correct types, but somehow still complains
|
|
409
404
|
xe(i.value ? e[3] : e[2])
|
|
410
405
|
];
|
|
@@ -412,7 +407,7 @@ function _e(...e) {
|
|
|
412
407
|
([r, s, u, f]) => {
|
|
413
408
|
if (o(), !r?.length || !s?.length || !u?.length)
|
|
414
409
|
return;
|
|
415
|
-
const d =
|
|
410
|
+
const d = Io(f) ? { ...f } : f;
|
|
416
411
|
t.push(
|
|
417
412
|
...r.flatMap(
|
|
418
413
|
(v) => s.flatMap(
|
|
@@ -425,17 +420,17 @@ function _e(...e) {
|
|
|
425
420
|
), l = () => {
|
|
426
421
|
a(), o();
|
|
427
422
|
};
|
|
428
|
-
return
|
|
423
|
+
return Lo(o), l;
|
|
429
424
|
}
|
|
430
425
|
let dn = !1;
|
|
431
426
|
function ln(e, t, o = {}) {
|
|
432
427
|
const { window: n = Tt, ignore: i = [], capture: a = !0, detectIframe: l = !1, controls: r = !1 } = o;
|
|
433
428
|
if (!n)
|
|
434
429
|
return r ? { stop: Ze, cancel: Ze, trigger: Ze } : Ze;
|
|
435
|
-
if (
|
|
430
|
+
if (Ao && !dn) {
|
|
436
431
|
dn = !0;
|
|
437
432
|
const D = { passive: !0 };
|
|
438
|
-
Array.from(n.document.body.children).forEach((O) =>
|
|
433
|
+
Array.from(n.document.body.children).forEach((O) => Pe(O, "click", Ze, D)), Pe(n.document.documentElement, "click", Ze, D);
|
|
439
434
|
}
|
|
440
435
|
let s = !0;
|
|
441
436
|
const u = (D) => xe(i).some((O) => {
|
|
@@ -466,16 +461,16 @@ function ln(e, t, o = {}) {
|
|
|
466
461
|
};
|
|
467
462
|
let E = !1;
|
|
468
463
|
const $ = [
|
|
469
|
-
|
|
464
|
+
Pe(n, "click", (D) => {
|
|
470
465
|
E || (E = !0, setTimeout(() => {
|
|
471
466
|
E = !1;
|
|
472
467
|
}, 0), v(D));
|
|
473
468
|
}, { passive: !0, capture: a }),
|
|
474
|
-
|
|
469
|
+
Pe(n, "pointerdown", (D) => {
|
|
475
470
|
const O = et(e);
|
|
476
471
|
s = !u(D) && !!(O && !D.composedPath().includes(O));
|
|
477
472
|
}, { passive: !0 }),
|
|
478
|
-
l &&
|
|
473
|
+
l && Pe(n, "blur", (D) => {
|
|
479
474
|
setTimeout(() => {
|
|
480
475
|
var O;
|
|
481
476
|
const b = et(e);
|
|
@@ -493,23 +488,23 @@ function ln(e, t, o = {}) {
|
|
|
493
488
|
}
|
|
494
489
|
} : M;
|
|
495
490
|
}
|
|
496
|
-
function
|
|
491
|
+
function Vo() {
|
|
497
492
|
const e = Ut(!1), t = Et();
|
|
498
493
|
return t && Qe(() => {
|
|
499
494
|
e.value = !0;
|
|
500
495
|
}, t), e;
|
|
501
496
|
}
|
|
502
|
-
function
|
|
503
|
-
const t =
|
|
497
|
+
function jo(e) {
|
|
498
|
+
const t = Vo();
|
|
504
499
|
return Y(() => (t.value, !!e()));
|
|
505
500
|
}
|
|
506
|
-
const
|
|
507
|
-
function
|
|
508
|
-
const e = xn() ?
|
|
501
|
+
const zo = /* @__PURE__ */ Symbol("vueuse-ssr-width");
|
|
502
|
+
function Ro() {
|
|
503
|
+
const e = xn() ? Mo(zo, null) : null;
|
|
509
504
|
return typeof e == "number" ? e : void 0;
|
|
510
505
|
}
|
|
511
|
-
function
|
|
512
|
-
const { window: o = Tt, ssrWidth: n =
|
|
506
|
+
function Zo(e, t = {}) {
|
|
507
|
+
const { window: o = Tt, ssrWidth: n = Ro() } = t, i = jo(() => o && "matchMedia" in o && typeof o.matchMedia == "function"), a = P(typeof n == "number"), l = Ut(), r = Ut(!1), s = (u) => {
|
|
513
508
|
r.value = u.matches;
|
|
514
509
|
};
|
|
515
510
|
return Tn(() => {
|
|
@@ -524,7 +519,7 @@ function qo(e, t = {}) {
|
|
|
524
519
|
return;
|
|
525
520
|
}
|
|
526
521
|
i.value && (l.value = o.matchMedia(xe(e)), r.value = l.value.matches);
|
|
527
|
-
}),
|
|
522
|
+
}), Pe(l, "change", s, { passive: !0 }), Y(() => r.value);
|
|
528
523
|
}
|
|
529
524
|
function Lt(e = {}) {
|
|
530
525
|
const {
|
|
@@ -543,18 +538,18 @@ function Lt(e = {}) {
|
|
|
543
538
|
r.value = Math.round(d * E), s.value = Math.round(v * E);
|
|
544
539
|
} else a ? (r.value = t.innerWidth, s.value = t.innerHeight) : (r.value = t.document.documentElement.clientWidth, s.value = t.document.documentElement.clientHeight);
|
|
545
540
|
};
|
|
546
|
-
u(),
|
|
541
|
+
u(), No(u);
|
|
547
542
|
const f = { passive: !0 };
|
|
548
|
-
if (
|
|
549
|
-
const d =
|
|
543
|
+
if (Pe("resize", u, f), t && l === "visual" && t.visualViewport && Pe(t.visualViewport, "resize", u, f), i) {
|
|
544
|
+
const d = Zo("(orientation: portrait)");
|
|
550
545
|
Xe(d, () => u());
|
|
551
546
|
}
|
|
552
547
|
return { width: r, height: s };
|
|
553
548
|
}
|
|
554
|
-
const
|
|
549
|
+
const Ho = { class: "dialog-header" }, Go = { class: "title" }, qo = { class: "dialog-content" }, Wo = { class: "dialog-footer" }, Yo = {
|
|
555
550
|
name: "ConfirmationModal"
|
|
556
551
|
}, fn = /* @__PURE__ */ j({
|
|
557
|
-
...
|
|
552
|
+
...Yo,
|
|
558
553
|
props: {
|
|
559
554
|
acceptButtonOptions: {
|
|
560
555
|
default: () => ({}),
|
|
@@ -612,9 +607,9 @@ const Wo = { class: "dialog-header" }, Yo = { class: "title" }, Xo = { class: "d
|
|
|
612
607
|
ref: a,
|
|
613
608
|
class: "dialog-container"
|
|
614
609
|
}, [
|
|
615
|
-
p("div",
|
|
610
|
+
p("div", Ho, [
|
|
616
611
|
_(s.$slots, "header", {}, () => [
|
|
617
|
-
p("span",
|
|
612
|
+
p("span", Go, B(e.header), 1)
|
|
618
613
|
]),
|
|
619
614
|
e.closable ? _(s.$slots, "closeIcon", { key: 0 }, () => [
|
|
620
615
|
e.closable ? (c(), N(he, {
|
|
@@ -629,7 +624,7 @@ const Wo = { class: "dialog-header" }, Yo = { class: "title" }, Xo = { class: "d
|
|
|
629
624
|
}, null, 8, ["icon-left"])) : S("", !0)
|
|
630
625
|
]) : S("", !0)
|
|
631
626
|
]),
|
|
632
|
-
p("p",
|
|
627
|
+
p("p", qo, [
|
|
633
628
|
_(s.$slots, "icon", {}, () => [
|
|
634
629
|
e.icon ? (c(), h("i", {
|
|
635
630
|
key: 0,
|
|
@@ -637,18 +632,18 @@ const Wo = { class: "dialog-header" }, Yo = { class: "title" }, Xo = { class: "d
|
|
|
637
632
|
}, null, 2)) : S("", !0)
|
|
638
633
|
]),
|
|
639
634
|
_(s.$slots, "message", {}, () => [
|
|
640
|
-
|
|
635
|
+
ee(B(e.message), 1)
|
|
641
636
|
])
|
|
642
637
|
]),
|
|
643
|
-
p("div",
|
|
638
|
+
p("div", Wo, [
|
|
644
639
|
_(s.$slots, "footer", {}, () => [
|
|
645
|
-
ve(he,
|
|
640
|
+
ve(he, le(e.cancelButtonOptions, {
|
|
646
641
|
label: e.cancelButtonOptions?.label ?? "No",
|
|
647
642
|
severity: e.cancelButtonOptions?.severity ?? "secondary",
|
|
648
643
|
variant: e.cancelButtonOptions?.variant ?? "outlined",
|
|
649
644
|
onClick: u[1] || (u[1] = (f) => r())
|
|
650
645
|
}), null, 16, ["label", "severity", "variant"]),
|
|
651
|
-
ve(he,
|
|
646
|
+
ve(he, le(e.acceptButtonOptions, {
|
|
652
647
|
label: e.acceptButtonOptions?.label ?? "Yes",
|
|
653
648
|
onClick: u[2] || (u[2] = (f) => l())
|
|
654
649
|
}), null, 16, ["label"])
|
|
@@ -657,10 +652,10 @@ const Wo = { class: "dialog-header" }, Yo = { class: "title" }, Xo = { class: "d
|
|
|
657
652
|
], 512)
|
|
658
653
|
], 512));
|
|
659
654
|
}
|
|
660
|
-
}),
|
|
655
|
+
}), Xo = { class: "label" }, Uo = { class: "value" }, Ko = {
|
|
661
656
|
name: "DataElement"
|
|
662
|
-
},
|
|
663
|
-
...
|
|
657
|
+
}, qa = /* @__PURE__ */ j({
|
|
658
|
+
...Ko,
|
|
664
659
|
props: {
|
|
665
660
|
caption: {
|
|
666
661
|
type: String,
|
|
@@ -689,22 +684,22 @@ const Wo = { class: "dialog-header" }, Yo = { class: "title" }, Xo = { class: "d
|
|
|
689
684
|
`direction-${e.direction}`
|
|
690
685
|
])
|
|
691
686
|
}, [
|
|
692
|
-
p("div",
|
|
687
|
+
p("div", Xo, [
|
|
693
688
|
_(t.$slots, "caption", {}, () => [
|
|
694
|
-
|
|
689
|
+
ee(B(e.caption), 1)
|
|
695
690
|
])
|
|
696
691
|
]),
|
|
697
|
-
p("div",
|
|
692
|
+
p("div", Uo, [
|
|
698
693
|
_(t.$slots, "value", {}, () => [
|
|
699
|
-
|
|
694
|
+
ee(B(e.value), 1)
|
|
700
695
|
])
|
|
701
696
|
])
|
|
702
697
|
], 2));
|
|
703
698
|
}
|
|
704
|
-
}),
|
|
699
|
+
}), Qo = ["data-aria-orientation"], Jo = {
|
|
705
700
|
name: "DividerElement"
|
|
706
|
-
},
|
|
707
|
-
...
|
|
701
|
+
}, Wa = /* @__PURE__ */ j({
|
|
702
|
+
...Jo,
|
|
708
703
|
props: {
|
|
709
704
|
orientation: {
|
|
710
705
|
default: "horizontal",
|
|
@@ -717,18 +712,18 @@ const Wo = { class: "dialog-header" }, Yo = { class: "title" }, Xo = { class: "d
|
|
|
717
712
|
"data-aria-orientation": e.orientation,
|
|
718
713
|
class: "divider",
|
|
719
714
|
role: "separator"
|
|
720
|
-
}, null, 8,
|
|
715
|
+
}, null, 8, Qo));
|
|
721
716
|
}
|
|
722
717
|
}), In = {
|
|
723
718
|
year: "numeric",
|
|
724
719
|
month: "short",
|
|
725
720
|
day: "numeric"
|
|
726
|
-
},
|
|
721
|
+
}, ei = {
|
|
727
722
|
...In,
|
|
728
723
|
hour: "numeric",
|
|
729
724
|
minute: "numeric",
|
|
730
725
|
hour12: !0
|
|
731
|
-
},
|
|
726
|
+
}, ti = (e, t, o) => {
|
|
732
727
|
if (!e)
|
|
733
728
|
return null;
|
|
734
729
|
const n = { ...In, ...o }, i = new Date(e).toLocaleDateString(
|
|
@@ -736,15 +731,15 @@ const Wo = { class: "dialog-header" }, Yo = { class: "title" }, Xo = { class: "d
|
|
|
736
731
|
n
|
|
737
732
|
);
|
|
738
733
|
return i === "Invalid Date" ? null : i;
|
|
739
|
-
},
|
|
734
|
+
}, ni = (e, t, o) => {
|
|
740
735
|
if (!e)
|
|
741
736
|
return null;
|
|
742
|
-
const n = { ...
|
|
737
|
+
const n = { ...ei, ...o }, i = new Date(e).toLocaleDateString(
|
|
743
738
|
t || "en-GB",
|
|
744
739
|
n
|
|
745
740
|
);
|
|
746
741
|
return i === "Invalid Date" ? null : i.replace(",", "");
|
|
747
|
-
},
|
|
742
|
+
}, Ya = (e) => {
|
|
748
743
|
const t = Math.floor(e / 60).toString(), o = (e % 60).toString().padStart(2, "0");
|
|
749
744
|
return `${t}:${o}`;
|
|
750
745
|
}, An = (e) => {
|
|
@@ -765,9 +760,9 @@ const Wo = { class: "dialog-header" }, Yo = { class: "title" }, Xo = { class: "d
|
|
|
765
760
|
(["auto", "scroll"].includes(n.overflow) || ["auto", "scroll"].includes(n.overflowX) || ["auto", "scroll"].includes(n.overflowY)) && t.push(o), o = o.parentElement;
|
|
766
761
|
}
|
|
767
762
|
return t;
|
|
768
|
-
},
|
|
763
|
+
}, oi = (e) => e === "sessionStorage" ? sessionStorage : localStorage;
|
|
769
764
|
let Ft = null;
|
|
770
|
-
function
|
|
765
|
+
function ii(e, t) {
|
|
771
766
|
const o = P();
|
|
772
767
|
return new Promise((n) => {
|
|
773
768
|
Xe(
|
|
@@ -781,10 +776,10 @@ function ri(e, t) {
|
|
|
781
776
|
);
|
|
782
777
|
});
|
|
783
778
|
}
|
|
784
|
-
const
|
|
779
|
+
const ai = ["aria-expanded", "aria-label"], li = {
|
|
785
780
|
name: "Popup"
|
|
786
|
-
},
|
|
787
|
-
...
|
|
781
|
+
}, ri = /* @__PURE__ */ j({
|
|
782
|
+
...li,
|
|
788
783
|
props: {
|
|
789
784
|
ariaLabel: {
|
|
790
785
|
default: "popup",
|
|
@@ -801,7 +796,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
801
796
|
},
|
|
802
797
|
emits: ["onClickOutside"],
|
|
803
798
|
setup(e, { expose: t, emit: o }) {
|
|
804
|
-
const n = e, i = o, a =
|
|
799
|
+
const n = e, i = o, a = Fe(), l = P(null), r = P(null), s = P(null), u = P(!1), f = P("bottom"), d = P({ top: "0", left: "0" }), v = P([]), { width: E, height: $ } = Lt(), M = Y(() => !!a.content);
|
|
805
800
|
Ln(() => {
|
|
806
801
|
window.removeEventListener("scroll", O), window.removeEventListener("resize", O);
|
|
807
802
|
for (const { element: b, listener: C } of v.value)
|
|
@@ -829,10 +824,10 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
829
824
|
return;
|
|
830
825
|
const b = s.value.getBoundingClientRect(), C = r.value.getBoundingClientRect();
|
|
831
826
|
let g = 0, k = 0;
|
|
832
|
-
const w = n.position || An(b), R = E.value - b.right < 100, oe = $.value - (b.bottom + C.height + n.offset) >= 0,
|
|
827
|
+
const w = n.position || An(b), R = E.value - b.right < 100, oe = $.value - (b.bottom + C.height + n.offset) >= 0, X = b.top - C.height - n.offset >= 0;
|
|
833
828
|
switch (w) {
|
|
834
829
|
case "top": {
|
|
835
|
-
g =
|
|
830
|
+
g = X ? b.top - C.height - n.offset : b.bottom + n.offset, k = R ? b.right - C.width : b.left;
|
|
836
831
|
break;
|
|
837
832
|
}
|
|
838
833
|
case "bottom": {
|
|
@@ -880,7 +875,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
880
875
|
onClick: D
|
|
881
876
|
}, [
|
|
882
877
|
_(b.$slots, "default")
|
|
883
|
-
], 8,
|
|
878
|
+
], 8, ai),
|
|
884
879
|
u.value && M.value ? (c(), h("div", {
|
|
885
880
|
key: 0,
|
|
886
881
|
ref_key: "dzangolabVueUIPopupContent",
|
|
@@ -892,7 +887,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
892
887
|
], 6)) : S("", !0)
|
|
893
888
|
], 512));
|
|
894
889
|
}
|
|
895
|
-
}),
|
|
890
|
+
}), si = ["aria-label"], ui = {
|
|
896
891
|
key: 1,
|
|
897
892
|
fill: "#0f0f0f",
|
|
898
893
|
height: "1.5rem",
|
|
@@ -902,10 +897,10 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
902
897
|
xmlns: "http://www.w3.org/2000/svg",
|
|
903
898
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
904
899
|
viewBox: "0 0 1792 1792"
|
|
905
|
-
},
|
|
900
|
+
}, ci = ["aria-label"], di = ["aria-disabled", "onClick"], fi = { class: "menu-item" }, hi = {
|
|
906
901
|
name: "Dropdown"
|
|
907
|
-
},
|
|
908
|
-
...
|
|
902
|
+
}, pi = /* @__PURE__ */ j({
|
|
903
|
+
...hi,
|
|
909
904
|
props: {
|
|
910
905
|
icon: {
|
|
911
906
|
default: void 0,
|
|
@@ -927,7 +922,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
927
922
|
), l = (r) => {
|
|
928
923
|
r.disabled || (n("select", r), i.value.isVisible = !1);
|
|
929
924
|
};
|
|
930
|
-
return (r, s) => (c(), N(
|
|
925
|
+
return (r, s) => (c(), N(ri, {
|
|
931
926
|
ref_key: "popup",
|
|
932
927
|
ref: i,
|
|
933
928
|
class: "dropdown-menu",
|
|
@@ -951,16 +946,16 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
951
946
|
tabindex: "0",
|
|
952
947
|
onClick: (f) => l(u)
|
|
953
948
|
}, [
|
|
954
|
-
p("span",
|
|
949
|
+
p("span", fi, [
|
|
955
950
|
_(r.$slots, "`icon-${menuItem.key}`", {}, () => [
|
|
956
951
|
p("i", {
|
|
957
952
|
class: F(u.icon)
|
|
958
953
|
}, null, 2)
|
|
959
954
|
]),
|
|
960
|
-
|
|
955
|
+
ee(" " + B(u.label), 1)
|
|
961
956
|
])
|
|
962
|
-
], 10,
|
|
963
|
-
], 8,
|
|
957
|
+
], 10, di))), 128))
|
|
958
|
+
], 8, ci)
|
|
964
959
|
]),
|
|
965
960
|
default: W(() => [
|
|
966
961
|
p("div", {
|
|
@@ -990,7 +985,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
990
985
|
})
|
|
991
986
|
])
|
|
992
987
|
], -1))
|
|
993
|
-
], 64)) : (c(), h("svg",
|
|
988
|
+
], 64)) : (c(), h("svg", ui, [...s[1] || (s[1] = [
|
|
994
989
|
p("g", { "stroke-width": "0" }, null, -1),
|
|
995
990
|
p("g", {
|
|
996
991
|
"stroke-linecap": "round",
|
|
@@ -1015,15 +1010,15 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1015
1010
|
], -1)
|
|
1016
1011
|
])]))
|
|
1017
1012
|
])
|
|
1018
|
-
], 10,
|
|
1013
|
+
], 10, si)
|
|
1019
1014
|
]),
|
|
1020
1015
|
_: 3
|
|
1021
1016
|
}, 512));
|
|
1022
1017
|
}
|
|
1023
|
-
}),
|
|
1018
|
+
}), gi = { class: "error" }, vi = { class: "code" }, mi = {
|
|
1024
1019
|
name: "Error"
|
|
1025
1020
|
}, hn = /* @__PURE__ */ j({
|
|
1026
|
-
...
|
|
1021
|
+
...mi,
|
|
1027
1022
|
props: {
|
|
1028
1023
|
error: {
|
|
1029
1024
|
required: !0,
|
|
@@ -1031,15 +1026,15 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1031
1026
|
}
|
|
1032
1027
|
},
|
|
1033
1028
|
setup(e) {
|
|
1034
|
-
return (t, o) => (c(), h("p",
|
|
1035
|
-
|
|
1036
|
-
p("span",
|
|
1029
|
+
return (t, o) => (c(), h("p", gi, [
|
|
1030
|
+
ee(B(e.error.message) + " ", 1),
|
|
1031
|
+
p("span", vi, "(" + B(e.error.code) + ")", 1)
|
|
1037
1032
|
]));
|
|
1038
1033
|
}
|
|
1039
|
-
}),
|
|
1034
|
+
}), bi = { class: "errors" }, Ci = { key: 1 }, yi = {
|
|
1040
1035
|
name: "Errors"
|
|
1041
|
-
},
|
|
1042
|
-
...
|
|
1036
|
+
}, Xa = /* @__PURE__ */ j({
|
|
1037
|
+
...yi,
|
|
1043
1038
|
props: {
|
|
1044
1039
|
errors: {
|
|
1045
1040
|
required: !0,
|
|
@@ -1047,21 +1042,21 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1047
1042
|
}
|
|
1048
1043
|
},
|
|
1049
1044
|
setup(e) {
|
|
1050
|
-
return (t, o) => (c(), h("div",
|
|
1045
|
+
return (t, o) => (c(), h("div", bi, [
|
|
1051
1046
|
e.errors.length === 1 ? (c(), N(hn, {
|
|
1052
1047
|
key: 0,
|
|
1053
1048
|
error: e.errors[0]
|
|
1054
|
-
}, null, 8, ["error"])) : (c(), h("ul",
|
|
1049
|
+
}, null, 8, ["error"])) : (c(), h("ul", Ci, [
|
|
1055
1050
|
(c(!0), h(Z, null, ge(e.errors, (n, i) => (c(), h("li", { key: i }, [
|
|
1056
1051
|
ve(hn, { error: n }, null, 8, ["error"])
|
|
1057
1052
|
]))), 128))
|
|
1058
1053
|
]))
|
|
1059
1054
|
]));
|
|
1060
1055
|
}
|
|
1061
|
-
}),
|
|
1056
|
+
}), wi = { class: "confirmation-file-actions" }, Si = {
|
|
1062
1057
|
name: "ConfirmationFileActions"
|
|
1063
|
-
},
|
|
1064
|
-
...
|
|
1058
|
+
}, ki = /* @__PURE__ */ j({
|
|
1059
|
+
...Si,
|
|
1065
1060
|
props: {
|
|
1066
1061
|
archiveConfirmationHeader: {
|
|
1067
1062
|
default: "Archive file?",
|
|
@@ -1089,17 +1084,17 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1089
1084
|
"on:confirmDelete"
|
|
1090
1085
|
],
|
|
1091
1086
|
setup(e) {
|
|
1092
|
-
return (t, o) => (c(), h("div",
|
|
1087
|
+
return (t, o) => (c(), h("div", wi, [
|
|
1093
1088
|
e.showArchiveConfirmation ? (c(), N(fn, {
|
|
1094
1089
|
key: 0,
|
|
1095
1090
|
"onOn:close": o[0] || (o[0] = (n) => t.$emit("on:closeArchive")),
|
|
1096
1091
|
"onOn:confirm": o[1] || (o[1] = (n) => t.$emit("on:confirmArchive"))
|
|
1097
1092
|
}, {
|
|
1098
1093
|
header: W(() => [
|
|
1099
|
-
|
|
1094
|
+
ee(B(e.archiveConfirmationHeader), 1)
|
|
1100
1095
|
]),
|
|
1101
1096
|
message: W(() => [
|
|
1102
|
-
|
|
1097
|
+
ee(B(e.archiveConfirmationMessage), 1)
|
|
1103
1098
|
]),
|
|
1104
1099
|
_: 1
|
|
1105
1100
|
})) : S("", !0),
|
|
@@ -1109,55 +1104,55 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1109
1104
|
"onOn:confirm": o[3] || (o[3] = (n) => t.$emit("on:confirmDelete"))
|
|
1110
1105
|
}, {
|
|
1111
1106
|
header: W(() => [
|
|
1112
|
-
|
|
1107
|
+
ee(B(e.deleteConfirmationHeader), 1)
|
|
1113
1108
|
]),
|
|
1114
1109
|
message: W(() => [
|
|
1115
|
-
|
|
1110
|
+
ee(B(e.deleteConfirmationMessage), 1)
|
|
1116
1111
|
]),
|
|
1117
1112
|
_: 1
|
|
1118
1113
|
})) : S("", !0)
|
|
1119
1114
|
]));
|
|
1120
1115
|
}
|
|
1121
|
-
}),
|
|
1116
|
+
}), $i = { class: "file-thumbnail-details-wrapper" }, Di = {
|
|
1122
1117
|
key: 0,
|
|
1123
1118
|
class: "file-thumbnail"
|
|
1124
|
-
},
|
|
1119
|
+
}, Ei = { class: "details-wrapper" }, Oi = { class: "name-description-details-wrapper" }, xi = {
|
|
1125
1120
|
key: 0,
|
|
1126
1121
|
class: "name"
|
|
1127
|
-
},
|
|
1122
|
+
}, Ti = {
|
|
1128
1123
|
key: 1,
|
|
1129
1124
|
class: "file-size"
|
|
1130
|
-
},
|
|
1125
|
+
}, Li = {
|
|
1131
1126
|
key: 0,
|
|
1132
1127
|
class: "description-wrapper-details"
|
|
1133
|
-
},
|
|
1128
|
+
}, Mi = {
|
|
1134
1129
|
key: 0,
|
|
1135
1130
|
class: "file-upload-download-details-wrapper"
|
|
1136
|
-
},
|
|
1131
|
+
}, Bi = {
|
|
1137
1132
|
key: 0,
|
|
1138
1133
|
class: "file-upload-details"
|
|
1139
|
-
},
|
|
1134
|
+
}, Ii = {
|
|
1140
1135
|
key: 0,
|
|
1141
1136
|
class: "uploaded-by"
|
|
1142
|
-
},
|
|
1137
|
+
}, Ai = {
|
|
1143
1138
|
key: 1,
|
|
1144
1139
|
class: "uploaded-at"
|
|
1145
|
-
},
|
|
1140
|
+
}, Pi = {
|
|
1146
1141
|
key: 1,
|
|
1147
1142
|
class: "file-download-details"
|
|
1148
|
-
},
|
|
1143
|
+
}, _i = {
|
|
1149
1144
|
key: 0,
|
|
1150
1145
|
class: "download-count"
|
|
1151
|
-
},
|
|
1146
|
+
}, Ni = {
|
|
1152
1147
|
key: 1,
|
|
1153
1148
|
class: "last-downloaded-at"
|
|
1154
|
-
},
|
|
1149
|
+
}, Fi = {
|
|
1155
1150
|
key: 0,
|
|
1156
1151
|
class: "file-actions"
|
|
1157
|
-
},
|
|
1152
|
+
}, Vi = {
|
|
1158
1153
|
name: "FileCard"
|
|
1159
|
-
},
|
|
1160
|
-
...
|
|
1154
|
+
}, ji = /* @__PURE__ */ j({
|
|
1155
|
+
...Vi,
|
|
1161
1156
|
props: {
|
|
1162
1157
|
actionButtonsVisibility: {
|
|
1163
1158
|
default: () => ({
|
|
@@ -1257,10 +1252,10 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1257
1252
|
}, u = () => {
|
|
1258
1253
|
r("delete"), a.value = !1;
|
|
1259
1254
|
};
|
|
1260
|
-
return (f, d) => (c(), N(
|
|
1255
|
+
return (f, d) => (c(), N(wo, { class: "file-card" }, {
|
|
1261
1256
|
default: W(() => [
|
|
1262
|
-
p("div",
|
|
1263
|
-
e.showThumbnail || f.$slots.thumbnail ? (c(), h("div",
|
|
1257
|
+
p("div", $i, [
|
|
1258
|
+
e.showThumbnail || f.$slots.thumbnail ? (c(), h("div", Di, [
|
|
1264
1259
|
_(f.$slots, "thumbnail", {}, () => [
|
|
1265
1260
|
d[8] || (d[8] = p("svg", {
|
|
1266
1261
|
fill: "none",
|
|
@@ -1278,15 +1273,15 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1278
1273
|
], -1))
|
|
1279
1274
|
])
|
|
1280
1275
|
])) : S("", !0),
|
|
1281
|
-
p("div",
|
|
1282
|
-
p("div",
|
|
1276
|
+
p("div", Ei, [
|
|
1277
|
+
p("div", Oi, [
|
|
1283
1278
|
p("div", null, [
|
|
1284
|
-
e.visibilityDetail.originalFileName ? (c(), h("span",
|
|
1285
|
-
(e.file.size ?? 0) > 0 && e.visibilityDetail.size > 0 ? (c(), h("span",
|
|
1279
|
+
e.visibilityDetail.originalFileName ? (c(), h("span", xi, B(e.file.originalFileName), 1)) : S("", !0),
|
|
1280
|
+
(e.file.size ?? 0) > 0 && e.visibilityDetail.size > 0 ? (c(), h("span", Ti, " (" + B(e.file.size) + ") ", 1)) : S("", !0)
|
|
1286
1281
|
]),
|
|
1287
|
-
e.file.description && e.visibilityDetail.description ? (c(), h("div",
|
|
1282
|
+
e.file.description && e.visibilityDetail.description ? (c(), h("div", Li, [
|
|
1288
1283
|
p("span", null, B(e.file.description), 1),
|
|
1289
|
-
e.allowEditDescription ? (c(), N(he,
|
|
1284
|
+
e.allowEditDescription ? (c(), N(he, le({ key: 0 }, e.editDescriptionButtonProps, {
|
|
1290
1285
|
size: "small",
|
|
1291
1286
|
variant: "outlined",
|
|
1292
1287
|
onClick: d[0] || (d[0] = (v) => f.$emit("click:editDescription"))
|
|
@@ -1308,32 +1303,32 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1308
1303
|
}, 16)) : S("", !0)
|
|
1309
1304
|
])) : S("", !0)
|
|
1310
1305
|
]),
|
|
1311
|
-
e.visibilityDetail.uploadedAt || e.visibilityDetail.uploadedBy || e.visibilityDetail.lastDownloadedAt || e.visibilityDetail.downloadCount ? (c(), h("div",
|
|
1312
|
-
e.visibilityDetail.uploadedAt || e.visibilityDetail.uploadedBy ? (c(), h("div",
|
|
1313
|
-
e.visibilityDetail.uploadedBy ? (c(), h("div",
|
|
1306
|
+
e.visibilityDetail.uploadedAt || e.visibilityDetail.uploadedBy || e.visibilityDetail.lastDownloadedAt || e.visibilityDetail.downloadCount ? (c(), h("div", Mi, [
|
|
1307
|
+
e.visibilityDetail.uploadedAt || e.visibilityDetail.uploadedBy ? (c(), h("div", Bi, [
|
|
1308
|
+
e.visibilityDetail.uploadedBy ? (c(), h("div", Ii, [
|
|
1314
1309
|
p("span", null, B(e.messages?.uploadedByHeader || "Uploaded by"), 1),
|
|
1315
1310
|
p("span", null, B(l(e.file)), 1)
|
|
1316
1311
|
])) : S("", !0),
|
|
1317
|
-
e.visibilityDetail.uploadedAt ? (c(), h("div",
|
|
1312
|
+
e.visibilityDetail.uploadedAt ? (c(), h("div", Ai, [
|
|
1318
1313
|
p("span", null, B(e.messages?.uploadedAtHeader || "Uploaded at"), 1),
|
|
1319
|
-
p("span", null, B(
|
|
1314
|
+
p("span", null, B(J(ni)(e.file.uploadedAt, e.locale)), 1)
|
|
1320
1315
|
])) : S("", !0)
|
|
1321
1316
|
])) : S("", !0),
|
|
1322
|
-
e.visibilityDetail.downloadCount || e.visibilityDetail.lastDownloadedAt ? (c(), h("div",
|
|
1323
|
-
e.visibilityDetail.downloadCount ? (c(), h("div",
|
|
1317
|
+
e.visibilityDetail.downloadCount || e.visibilityDetail.lastDownloadedAt ? (c(), h("div", Pi, [
|
|
1318
|
+
e.visibilityDetail.downloadCount ? (c(), h("div", _i, [
|
|
1324
1319
|
p("span", null, B(e.messages?.downloadCountHeader || "Downloads:"), 1),
|
|
1325
1320
|
p("span", null, B(e.file.downloadCount), 1)
|
|
1326
1321
|
])) : S("", !0),
|
|
1327
|
-
e.visibilityDetail.lastDownloadedAt ? (c(), h("div",
|
|
1322
|
+
e.visibilityDetail.lastDownloadedAt ? (c(), h("div", Ni, [
|
|
1328
1323
|
p("span", null, B(e.messages?.lastDownloadedAtHeader || "Last download:"), 1),
|
|
1329
|
-
p("span", null, B(
|
|
1324
|
+
p("span", null, B(J(ti)(Number(e.file.lastDownloadedAt), e.locale)), 1)
|
|
1330
1325
|
])) : S("", !0)
|
|
1331
1326
|
])) : S("", !0)
|
|
1332
1327
|
])) : S("", !0)
|
|
1333
1328
|
])
|
|
1334
1329
|
]),
|
|
1335
|
-
e.visibilityDetail.actions ? (c(), h("div",
|
|
1336
|
-
e.actionButtonsVisibility.archive ? (c(), N(he,
|
|
1330
|
+
e.visibilityDetail.actions ? (c(), h("div", Fi, [
|
|
1331
|
+
e.actionButtonsVisibility.archive ? (c(), N(he, le({ key: 0 }, e.archiveButtonProps, {
|
|
1337
1332
|
label: e.messages?.archiveAction || "Archive",
|
|
1338
1333
|
size: "small",
|
|
1339
1334
|
onClick: d[1] || (d[1] = (v) => i.value = !0)
|
|
@@ -1355,7 +1350,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1355
1350
|
])]),
|
|
1356
1351
|
_: 1
|
|
1357
1352
|
}, 16, ["label"])) : S("", !0),
|
|
1358
|
-
e.actionButtonsVisibility.delete ? (c(), N(he,
|
|
1353
|
+
e.actionButtonsVisibility.delete ? (c(), N(he, le({ key: 1 }, e.deleteButtonProps, {
|
|
1359
1354
|
label: e.messages?.deleteAction || "Delete",
|
|
1360
1355
|
size: "small",
|
|
1361
1356
|
onClick: d[2] || (d[2] = (v) => a.value = !0)
|
|
@@ -1377,7 +1372,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1377
1372
|
])]),
|
|
1378
1373
|
_: 1
|
|
1379
1374
|
}, 16, ["label"])) : S("", !0),
|
|
1380
|
-
e.actionButtonsVisibility.download ? (c(), N(he,
|
|
1375
|
+
e.actionButtonsVisibility.download ? (c(), N(he, le({ key: 2 }, e.downloadButtonProps, {
|
|
1381
1376
|
label: e.messages?.downloadAction || "Download",
|
|
1382
1377
|
size: "small",
|
|
1383
1378
|
onClick: d[3] || (d[3] = (v) => r("download"))
|
|
@@ -1400,7 +1395,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1400
1395
|
])]),
|
|
1401
1396
|
_: 1
|
|
1402
1397
|
}, 16, ["label"])) : S("", !0),
|
|
1403
|
-
e.actionButtonsVisibility.share ? (c(), N(he,
|
|
1398
|
+
e.actionButtonsVisibility.share ? (c(), N(he, le({ key: 3 }, e.shareButtonProps, {
|
|
1404
1399
|
label: e.messages?.shareAction || "Share",
|
|
1405
1400
|
size: "small",
|
|
1406
1401
|
onClick: d[4] || (d[4] = (v) => r("share"))
|
|
@@ -1421,7 +1416,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1421
1416
|
])]),
|
|
1422
1417
|
_: 1
|
|
1423
1418
|
}, 16, ["label"])) : S("", !0),
|
|
1424
|
-
e.actionButtonsVisibility.view ? (c(), N(he,
|
|
1419
|
+
e.actionButtonsVisibility.view ? (c(), N(he, le({ key: 4 }, e.viewButtonProps, {
|
|
1425
1420
|
label: e.messages?.viewAction || "View",
|
|
1426
1421
|
size: "small",
|
|
1427
1422
|
onClick: d[5] || (d[5] = (v) => r("view"))
|
|
@@ -1450,7 +1445,7 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1450
1445
|
])]),
|
|
1451
1446
|
_: 1
|
|
1452
1447
|
}, 16, ["label"])) : S("", !0),
|
|
1453
|
-
ve(
|
|
1448
|
+
ve(ki, {
|
|
1454
1449
|
"archive-confirmation-header": e.messages?.archiveConfirmationHeader,
|
|
1455
1450
|
"archive-confirmation-message": e.messages?.archiveConfirmationMessage,
|
|
1456
1451
|
"delete-confirmation-header": e.messages?.deleteConfirmationHeader,
|
|
@@ -1467,10 +1462,10 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1467
1462
|
_: 3
|
|
1468
1463
|
}));
|
|
1469
1464
|
}
|
|
1470
|
-
}),
|
|
1465
|
+
}), zi = { class: "file-list-wrapper" }, Ri = {
|
|
1471
1466
|
name: "FilesList"
|
|
1472
|
-
},
|
|
1473
|
-
...
|
|
1467
|
+
}, Ua = /* @__PURE__ */ j({
|
|
1468
|
+
...Ri,
|
|
1474
1469
|
props: {
|
|
1475
1470
|
actionButtonsVisibility: {
|
|
1476
1471
|
default: () => ({
|
|
@@ -1565,8 +1560,8 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1565
1560
|
}
|
|
1566
1561
|
}
|
|
1567
1562
|
};
|
|
1568
|
-
return (i, a) => (c(), h("div",
|
|
1569
|
-
(c(!0), h(Z, null, ge(e.files, (l) => (c(), N(
|
|
1563
|
+
return (i, a) => (c(), h("div", zi, [
|
|
1564
|
+
(c(!0), h(Z, null, ge(e.files, (l) => (c(), N(ji, {
|
|
1570
1565
|
key: l.originalFileName,
|
|
1571
1566
|
"action-buttons-visibility": e.actionButtonsVisibility,
|
|
1572
1567
|
"allow-edit-description": e.actionButtonsVisibility?.edit,
|
|
@@ -1598,10 +1593,11 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1598
1593
|
]), 1032, ["action-buttons-visibility", "allow-edit-description", "archive-button-props", "delete-button-props", "download-button-props", "edit-description-button-props", "file", "locale", "messages", "share-button-props", "show-thumbnail", "view-button-props", "visibility-detail", "onClick:editDescription", "onOn:archive", "onOn:delete", "onOn:download", "onOn:share", "onOn:view"]))), 128))
|
|
1599
1594
|
]));
|
|
1600
1595
|
}
|
|
1601
|
-
}),
|
|
1596
|
+
}), Zi = { class: "field debounce-input" }, Hi = ["aria-label", "disabled", "placeholder", "type", "value"], Gi = {
|
|
1602
1597
|
name: "DebouncedInput"
|
|
1603
|
-
},
|
|
1604
|
-
...
|
|
1598
|
+
}, Ka = /* @__PURE__ */ j({
|
|
1599
|
+
...Gi,
|
|
1600
|
+
inheritAttrs: !1,
|
|
1605
1601
|
props: {
|
|
1606
1602
|
ariaLabel: {
|
|
1607
1603
|
default: "input",
|
|
@@ -1636,12 +1632,12 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1636
1632
|
setup(e, { emit: t }) {
|
|
1637
1633
|
const o = e, n = t, i = (a) => {
|
|
1638
1634
|
const l = a.target.value;
|
|
1639
|
-
|
|
1635
|
+
ii(l, o.debounceTime).then(() => {
|
|
1640
1636
|
n("update:modelValue", l);
|
|
1641
1637
|
});
|
|
1642
1638
|
};
|
|
1643
|
-
return (a, l) => (c(), h("div",
|
|
1644
|
-
p("input", {
|
|
1639
|
+
return (a, l) => (c(), h("div", Zi, [
|
|
1640
|
+
p("input", le(a.$attrs, {
|
|
1645
1641
|
"aria-label": e.ariaLabel ?? e.placeholder,
|
|
1646
1642
|
disabled: e.disabled,
|
|
1647
1643
|
placeholder: e.placeholder,
|
|
@@ -1649,24 +1645,24 @@ const si = ["aria-expanded", "aria-label"], ui = {
|
|
|
1649
1645
|
value: e.modelValue,
|
|
1650
1646
|
class: "input-field",
|
|
1651
1647
|
onInput: i
|
|
1652
|
-
}, null,
|
|
1648
|
+
}), null, 16, Hi)
|
|
1653
1649
|
]));
|
|
1654
1650
|
}
|
|
1655
|
-
}),
|
|
1651
|
+
}), qi = {
|
|
1656
1652
|
name: "GridContainer"
|
|
1657
|
-
},
|
|
1658
|
-
function
|
|
1659
|
-
return c(), h("div",
|
|
1653
|
+
}, Wi = { class: "grid-container" };
|
|
1654
|
+
function Yi(e, t, o, n, i, a) {
|
|
1655
|
+
return c(), h("div", Wi, [
|
|
1660
1656
|
_(e.$slots, "default")
|
|
1661
1657
|
]);
|
|
1662
1658
|
}
|
|
1663
|
-
const
|
|
1659
|
+
const Qa = /* @__PURE__ */ Ot(qi, [["render", Yi]]), Xi = {
|
|
1664
1660
|
key: 0,
|
|
1665
1661
|
class: "loading-page"
|
|
1666
|
-
},
|
|
1662
|
+
}, Ui = {
|
|
1667
1663
|
name: "LoadingPage"
|
|
1668
|
-
},
|
|
1669
|
-
...
|
|
1664
|
+
}, Ki = /* @__PURE__ */ j({
|
|
1665
|
+
...Ui,
|
|
1670
1666
|
props: {
|
|
1671
1667
|
loading: {
|
|
1672
1668
|
default: !1,
|
|
@@ -1674,14 +1670,14 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1674
1670
|
}
|
|
1675
1671
|
},
|
|
1676
1672
|
setup(e) {
|
|
1677
|
-
return (t, o) => e.loading ? (c(), h("div",
|
|
1673
|
+
return (t, o) => e.loading ? (c(), h("div", Xi, [
|
|
1678
1674
|
ve(xt, { class: "loading-icon" })
|
|
1679
1675
|
])) : S("", !0);
|
|
1680
1676
|
}
|
|
1681
|
-
}),
|
|
1677
|
+
}), Qi = { class: "message-content" }, Ji = { key: 1 }, e2 = {
|
|
1682
1678
|
name: "Message"
|
|
1683
|
-
},
|
|
1684
|
-
...
|
|
1679
|
+
}, Ja = /* @__PURE__ */ j({
|
|
1680
|
+
...e2,
|
|
1685
1681
|
props: {
|
|
1686
1682
|
enableClose: {
|
|
1687
1683
|
default: !0,
|
|
@@ -1707,30 +1703,30 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1707
1703
|
},
|
|
1708
1704
|
emits: ["close"],
|
|
1709
1705
|
setup(e, { emit: t }) {
|
|
1710
|
-
const o = t, n =
|
|
1706
|
+
const o = t, n = Fe(), i = P(!0), a = () => {
|
|
1711
1707
|
i.value = !1, o("close");
|
|
1712
1708
|
};
|
|
1713
1709
|
return (l, r) => on((c(), h("div", {
|
|
1714
1710
|
class: F(["message", e.severity])
|
|
1715
1711
|
}, [
|
|
1716
|
-
e.icon ||
|
|
1712
|
+
e.icon || J(n).icon || e.showIcon ? (c(), h("span", {
|
|
1717
1713
|
key: 0,
|
|
1718
|
-
class: F(["icon", { default: !e.icon && !
|
|
1714
|
+
class: F(["icon", { default: !e.icon && !J(n).icon && e.showIcon }])
|
|
1719
1715
|
}, [
|
|
1720
|
-
(e.icon ||
|
|
1716
|
+
(e.icon || J(n).icon) && e.showIcon ? _(l.$slots, "icon", { key: 0 }, () => [
|
|
1721
1717
|
p("i", {
|
|
1722
1718
|
class: F(e.icon)
|
|
1723
1719
|
}, null, 2)
|
|
1724
1720
|
]) : S("", !0)
|
|
1725
1721
|
], 2)) : S("", !0),
|
|
1726
|
-
p("div",
|
|
1722
|
+
p("div", Qi, [
|
|
1727
1723
|
_(l.$slots, "default", {}, () => [
|
|
1728
|
-
Array.isArray(e.message) ? e.message.length > 0 ? (c(), h("ul",
|
|
1724
|
+
Array.isArray(e.message) ? e.message.length > 0 ? (c(), h("ul", Ji, [
|
|
1729
1725
|
(c(!0), h(Z, null, ge(e.message, (s, u) => (c(), h("li", {
|
|
1730
1726
|
key: `message-${u}`
|
|
1731
1727
|
}, B(s), 1))), 128))
|
|
1732
1728
|
])) : S("", !0) : (c(), h(Z, { key: 0 }, [
|
|
1733
|
-
|
|
1729
|
+
ee(B(e.message), 1)
|
|
1734
1730
|
], 64))
|
|
1735
1731
|
])
|
|
1736
1732
|
]),
|
|
@@ -1743,19 +1739,19 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1743
1739
|
[an, i.value]
|
|
1744
1740
|
]);
|
|
1745
1741
|
}
|
|
1746
|
-
}),
|
|
1742
|
+
}), t2 = { class: "modal overlay" }, n2 = { class: "header" }, o2 = {
|
|
1747
1743
|
key: 0,
|
|
1748
1744
|
role: "heading"
|
|
1749
|
-
},
|
|
1745
|
+
}, i2 = {
|
|
1750
1746
|
key: 0,
|
|
1751
1747
|
class: "content"
|
|
1752
|
-
},
|
|
1748
|
+
}, a2 = {
|
|
1753
1749
|
key: 1,
|
|
1754
1750
|
class: "footer"
|
|
1755
|
-
},
|
|
1751
|
+
}, l2 = {
|
|
1756
1752
|
name: "Modal"
|
|
1757
|
-
},
|
|
1758
|
-
...
|
|
1753
|
+
}, e0 = /* @__PURE__ */ j({
|
|
1754
|
+
...l2,
|
|
1759
1755
|
props: {
|
|
1760
1756
|
dismissOnClickOut: {
|
|
1761
1757
|
default: !1,
|
|
@@ -1777,22 +1773,22 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1777
1773
|
},
|
|
1778
1774
|
emits: ["on:close"],
|
|
1779
1775
|
setup(e, { emit: t }) {
|
|
1780
|
-
const o = P(), n = t, i = e, a =
|
|
1776
|
+
const o = P(), n = t, i = e, a = Fe();
|
|
1781
1777
|
ln(o, (r) => {
|
|
1782
1778
|
i.dismissOnClickOut && l();
|
|
1783
1779
|
});
|
|
1784
1780
|
const l = () => {
|
|
1785
1781
|
n("on:close");
|
|
1786
1782
|
};
|
|
1787
|
-
return (r, s) => on((c(), h("div",
|
|
1783
|
+
return (r, s) => on((c(), h("div", t2, [
|
|
1788
1784
|
p("div", {
|
|
1789
1785
|
ref_key: "dzangolabVueModal",
|
|
1790
1786
|
ref: o,
|
|
1791
1787
|
class: F(["dialog", e.size, { active: e.show }])
|
|
1792
1788
|
}, [
|
|
1793
|
-
p("div",
|
|
1789
|
+
p("div", n2, [
|
|
1794
1790
|
_(r.$slots, "header", {}, () => [
|
|
1795
|
-
e.title ? (c(), h("span",
|
|
1791
|
+
e.title ? (c(), h("span", o2, B(e.title), 1)) : S("", !0)
|
|
1796
1792
|
]),
|
|
1797
1793
|
(c(), h("svg", {
|
|
1798
1794
|
"aria-label": "close modal",
|
|
@@ -1809,10 +1805,10 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1809
1805
|
}, null, -1)
|
|
1810
1806
|
])]))
|
|
1811
1807
|
]),
|
|
1812
|
-
|
|
1808
|
+
J(a).default ? (c(), h("div", i2, [
|
|
1813
1809
|
_(r.$slots, "default")
|
|
1814
1810
|
])) : S("", !0),
|
|
1815
|
-
|
|
1811
|
+
J(a).footer ? (c(), h("div", a2, [
|
|
1816
1812
|
_(r.$slots, "footer")
|
|
1817
1813
|
])) : S("", !0)
|
|
1818
1814
|
], 2)
|
|
@@ -1820,13 +1816,13 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1820
1816
|
[an, e.show]
|
|
1821
1817
|
]);
|
|
1822
1818
|
}
|
|
1823
|
-
}),
|
|
1819
|
+
}), r2 = ["data-centered"], s2 = { class: "page-header" }, u2 = { class: "page-title-wrapper" }, c2 = { class: "title" }, d2 = {
|
|
1824
1820
|
key: 0,
|
|
1825
1821
|
class: "title-tag"
|
|
1826
|
-
},
|
|
1822
|
+
}, f2 = { key: 0 }, h2 = { class: "page-toolbar" }, p2 = { class: "page-content" }, g2 = {
|
|
1827
1823
|
name: "Page"
|
|
1828
|
-
},
|
|
1829
|
-
...
|
|
1824
|
+
}, v2 = /* @__PURE__ */ j({
|
|
1825
|
+
...g2,
|
|
1830
1826
|
props: {
|
|
1831
1827
|
centered: Boolean,
|
|
1832
1828
|
loading: Boolean,
|
|
@@ -1865,37 +1861,37 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1865
1861
|
class: "page",
|
|
1866
1862
|
"data-centered": e.centered
|
|
1867
1863
|
}, [
|
|
1868
|
-
p("div",
|
|
1869
|
-
p("div",
|
|
1870
|
-
p("div",
|
|
1864
|
+
p("div", s2, [
|
|
1865
|
+
p("div", u2, [
|
|
1866
|
+
p("div", c2, [
|
|
1871
1867
|
e.title ? (c(), N(ye(e.titleElement), { key: 0 }, {
|
|
1872
1868
|
default: W(() => [
|
|
1873
|
-
|
|
1869
|
+
ee(B(e.title), 1)
|
|
1874
1870
|
]),
|
|
1875
1871
|
_: 1
|
|
1876
1872
|
})) : S("", !0),
|
|
1877
1873
|
_(s.$slots, "titleTag", {}, () => [
|
|
1878
|
-
e.titleTag ? (c(), h("span",
|
|
1879
|
-
ve(
|
|
1874
|
+
e.titleTag ? (c(), h("span", d2, [
|
|
1875
|
+
ve(lo, { label: e.titleTag }, null, 8, ["label"])
|
|
1880
1876
|
])) : S("", !0)
|
|
1881
1877
|
])
|
|
1882
1878
|
]),
|
|
1883
1879
|
_(s.$slots, "subtitle", {}, () => [
|
|
1884
|
-
e.subtitle ? (c(), h("small",
|
|
1880
|
+
e.subtitle ? (c(), h("small", f2, B(e.subtitle), 1)) : S("", !0)
|
|
1885
1881
|
])
|
|
1886
1882
|
]),
|
|
1887
|
-
p("div",
|
|
1883
|
+
p("div", h2, [
|
|
1888
1884
|
_(s.$slots, "toolbar", {}, () => [
|
|
1889
1885
|
l.value?.length && !a.value ? (c(), h(Z, { key: 0 }, [
|
|
1890
|
-
l.value?.length > 1 ? (c(), N(
|
|
1886
|
+
l.value?.length > 1 ? (c(), N(pi, {
|
|
1891
1887
|
key: 0,
|
|
1892
1888
|
menu: l.value,
|
|
1893
1889
|
onSelect: u[0] || (u[0] = (f) => r(f))
|
|
1894
|
-
}, null, 8, ["menu"])) : (c(), N(he,
|
|
1890
|
+
}, null, 8, ["menu"])) : (c(), N(he, le({ key: 1 }, l.value[0], {
|
|
1895
1891
|
"icon-left": String(l.value[0]?.icon ?? l.value[0]?.iconLeft),
|
|
1896
1892
|
onClick: u[1] || (u[1] = (f) => r(l.value[0]))
|
|
1897
1893
|
}), null, 16, ["icon-left"]))
|
|
1898
|
-
], 64)) : l.value?.length ? (c(!0), h(Z, { key: 1 }, ge(l.value, (f, d) => (c(), N(he,
|
|
1894
|
+
], 64)) : l.value?.length ? (c(!0), h(Z, { key: 1 }, ge(l.value, (f, d) => (c(), N(he, le({ ref_for: !0 }, f, {
|
|
1899
1895
|
key: `${f?.label}-${d}`,
|
|
1900
1896
|
"icon-left": String(f?.icon ?? f?.iconLeft),
|
|
1901
1897
|
onClick: (v) => r(f)
|
|
@@ -1903,16 +1899,16 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1903
1899
|
])
|
|
1904
1900
|
])
|
|
1905
1901
|
]),
|
|
1906
|
-
p("div",
|
|
1902
|
+
p("div", p2, [
|
|
1907
1903
|
_(s.$slots, "default"),
|
|
1908
|
-
ve(
|
|
1904
|
+
ve(Ki, { loading: e.loading }, null, 8, ["loading"])
|
|
1909
1905
|
])
|
|
1910
|
-
], 8,
|
|
1906
|
+
], 8, r2));
|
|
1911
1907
|
}
|
|
1912
|
-
}),
|
|
1908
|
+
}), m2 = { class: "menu" }, b2 = ["onClick"], C2 = {
|
|
1913
1909
|
name: "ResponsiveMenu"
|
|
1914
|
-
},
|
|
1915
|
-
...
|
|
1910
|
+
}, t0 = /* @__PURE__ */ j({
|
|
1911
|
+
...C2,
|
|
1916
1912
|
props: {
|
|
1917
1913
|
routes: {
|
|
1918
1914
|
required: !0,
|
|
@@ -1928,7 +1924,7 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1928
1924
|
setup(e) {
|
|
1929
1925
|
return (t, o) => {
|
|
1930
1926
|
const n = Mn("router-link");
|
|
1931
|
-
return c(), h("nav",
|
|
1927
|
+
return c(), h("nav", m2, [
|
|
1932
1928
|
p("ul", null, [
|
|
1933
1929
|
(c(!0), h(Z, null, ge(e.routes, (i, a) => (c(), h("li", {
|
|
1934
1930
|
key: a,
|
|
@@ -1939,27 +1935,27 @@ const t0 = /* @__PURE__ */ Ot(Xi, [["render", Ki]]), Qi = {
|
|
|
1939
1935
|
to: { name: i.route }
|
|
1940
1936
|
}, {
|
|
1941
1937
|
default: W(() => [
|
|
1942
|
-
|
|
1938
|
+
ee(B(i.name), 1)
|
|
1943
1939
|
]),
|
|
1944
1940
|
_: 2
|
|
1945
1941
|
}, 1032, ["to"])
|
|
1946
|
-
], 10,
|
|
1942
|
+
], 10, b2))), 128))
|
|
1947
1943
|
])
|
|
1948
1944
|
]);
|
|
1949
1945
|
};
|
|
1950
1946
|
}
|
|
1951
1947
|
});
|
|
1952
|
-
function
|
|
1948
|
+
function y2() {
|
|
1953
1949
|
return typeof window < "u" ? window.console : global.console;
|
|
1954
1950
|
}
|
|
1955
|
-
const
|
|
1956
|
-
function
|
|
1951
|
+
const w2 = y2();
|
|
1952
|
+
function S2(e) {
|
|
1957
1953
|
const t = /* @__PURE__ */ Object.create(null);
|
|
1958
1954
|
return function(n) {
|
|
1959
1955
|
return t[n] || (t[n] = e(n));
|
|
1960
1956
|
};
|
|
1961
1957
|
}
|
|
1962
|
-
const
|
|
1958
|
+
const k2 = /-(\w)/g, pn = S2((e) => e.replace(k2, (t, o) => o ? o.toUpperCase() : ""));
|
|
1963
1959
|
function Vt(e) {
|
|
1964
1960
|
e.parentElement !== null && e.parentElement.removeChild(e);
|
|
1965
1961
|
}
|
|
@@ -1981,7 +1977,7 @@ function Ee(e) {
|
|
|
1981
1977
|
for (var t = 1; t < arguments.length; t++) {
|
|
1982
1978
|
var o = arguments[t] != null ? arguments[t] : {};
|
|
1983
1979
|
t % 2 ? vn(Object(o), !0).forEach(function(n) {
|
|
1984
|
-
|
|
1980
|
+
$2(e, n, o[n]);
|
|
1985
1981
|
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(o)) : vn(Object(o)).forEach(function(n) {
|
|
1986
1982
|
Object.defineProperty(e, n, Object.getOwnPropertyDescriptor(o, n));
|
|
1987
1983
|
});
|
|
@@ -1996,7 +1992,7 @@ function vt(e) {
|
|
|
1996
1992
|
return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
|
|
1997
1993
|
}, vt(e);
|
|
1998
1994
|
}
|
|
1999
|
-
function
|
|
1995
|
+
function $2(e, t, o) {
|
|
2000
1996
|
return t in e ? Object.defineProperty(e, t, {
|
|
2001
1997
|
value: o,
|
|
2002
1998
|
enumerable: !0,
|
|
@@ -2014,16 +2010,16 @@ function Le() {
|
|
|
2014
2010
|
return e;
|
|
2015
2011
|
}, Le.apply(this, arguments);
|
|
2016
2012
|
}
|
|
2017
|
-
function
|
|
2013
|
+
function D2(e, t) {
|
|
2018
2014
|
if (e == null) return {};
|
|
2019
2015
|
var o = {}, n = Object.keys(e), i, a;
|
|
2020
2016
|
for (a = 0; a < n.length; a++)
|
|
2021
2017
|
i = n[a], !(t.indexOf(i) >= 0) && (o[i] = e[i]);
|
|
2022
2018
|
return o;
|
|
2023
2019
|
}
|
|
2024
|
-
function
|
|
2020
|
+
function E2(e, t) {
|
|
2025
2021
|
if (e == null) return {};
|
|
2026
|
-
var o =
|
|
2022
|
+
var o = D2(e, t), n, i;
|
|
2027
2023
|
if (Object.getOwnPropertySymbols) {
|
|
2028
2024
|
var a = Object.getOwnPropertySymbols(e);
|
|
2029
2025
|
for (i = 0; i < a.length; i++)
|
|
@@ -2031,20 +2027,20 @@ function T2(e, t) {
|
|
|
2031
2027
|
}
|
|
2032
2028
|
return o;
|
|
2033
2029
|
}
|
|
2034
|
-
var
|
|
2030
|
+
var O2 = "1.14.0";
|
|
2035
2031
|
function Te(e) {
|
|
2036
2032
|
if (typeof window < "u" && window.navigator)
|
|
2037
2033
|
return !!/* @__PURE__ */ navigator.userAgent.match(e);
|
|
2038
2034
|
}
|
|
2039
|
-
var
|
|
2035
|
+
var Me = Te(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i), ut = Te(/Edge/i), mn = Te(/firefox/i), it = Te(/safari/i) && !Te(/chrome/i) && !Te(/android/i), _n = Te(/iP(ad|od|hone)/i), x2 = Te(/chrome/i) && Te(/android/i), Nn = {
|
|
2040
2036
|
capture: !1,
|
|
2041
2037
|
passive: !1
|
|
2042
2038
|
};
|
|
2043
2039
|
function z(e, t, o) {
|
|
2044
|
-
e.addEventListener(t, o, !
|
|
2040
|
+
e.addEventListener(t, o, !Me && Nn);
|
|
2045
2041
|
}
|
|
2046
2042
|
function V(e, t, o) {
|
|
2047
|
-
e.removeEventListener(t, o, !
|
|
2043
|
+
e.removeEventListener(t, o, !Me && Nn);
|
|
2048
2044
|
}
|
|
2049
2045
|
function wt(e, t) {
|
|
2050
2046
|
if (t) {
|
|
@@ -2062,7 +2058,7 @@ function wt(e, t) {
|
|
|
2062
2058
|
return !1;
|
|
2063
2059
|
}
|
|
2064
2060
|
}
|
|
2065
|
-
function
|
|
2061
|
+
function T2(e) {
|
|
2066
2062
|
return e.host && e !== document && e.host.nodeType ? e.host : e.parentNode;
|
|
2067
2063
|
}
|
|
2068
2064
|
function $e(e, t, o, n) {
|
|
@@ -2072,7 +2068,7 @@ function $e(e, t, o, n) {
|
|
|
2072
2068
|
if (t != null && (t[0] === ">" ? e.parentNode === o && wt(e, t) : wt(e, t)) || n && e === o)
|
|
2073
2069
|
return e;
|
|
2074
2070
|
if (e === o) break;
|
|
2075
|
-
} while (e =
|
|
2071
|
+
} while (e = T2(e));
|
|
2076
2072
|
}
|
|
2077
2073
|
return null;
|
|
2078
2074
|
}
|
|
@@ -2120,10 +2116,10 @@ function De() {
|
|
|
2120
2116
|
var e = document.scrollingElement;
|
|
2121
2117
|
return e || document.documentElement;
|
|
2122
2118
|
}
|
|
2123
|
-
function
|
|
2119
|
+
function Q(e, t, o, n, i) {
|
|
2124
2120
|
if (!(!e.getBoundingClientRect && e !== window)) {
|
|
2125
2121
|
var a, l, r, s, u, f, d;
|
|
2126
|
-
if (e !== window && e.parentNode && e !== De() ? (a = e.getBoundingClientRect(), l = a.top, r = a.left, s = a.bottom, u = a.right, f = a.height, d = a.width) : (l = 0, r = 0, s = window.innerHeight, u = window.innerWidth, f = window.innerHeight, d = window.innerWidth), (t || o) && e !== window && (i = i || e.parentNode, !
|
|
2122
|
+
if (e !== window && e.parentNode && e !== De() ? (a = e.getBoundingClientRect(), l = a.top, r = a.left, s = a.bottom, u = a.right, f = a.height, d = a.width) : (l = 0, r = 0, s = window.innerHeight, u = window.innerWidth, f = window.innerHeight, d = window.innerWidth), (t || o) && e !== window && (i = i || e.parentNode, !Me))
|
|
2127
2123
|
do
|
|
2128
2124
|
if (i && i.getBoundingClientRect && (T(i, "transform") !== "none" || o && T(i, "position") !== "static")) {
|
|
2129
2125
|
var v = i.getBoundingClientRect();
|
|
@@ -2146,11 +2142,11 @@ function J(e, t, o, n, i) {
|
|
|
2146
2142
|
}
|
|
2147
2143
|
}
|
|
2148
2144
|
function Cn(e, t, o) {
|
|
2149
|
-
for (var n =
|
|
2150
|
-
var a =
|
|
2145
|
+
for (var n = Ne(e, !0), i = Q(e)[t]; n; ) {
|
|
2146
|
+
var a = Q(n)[o], l = void 0;
|
|
2151
2147
|
if (l = i >= a, !l) return n;
|
|
2152
2148
|
if (n === De()) break;
|
|
2153
|
-
n =
|
|
2149
|
+
n = Ne(n, !1);
|
|
2154
2150
|
}
|
|
2155
2151
|
return !1;
|
|
2156
2152
|
}
|
|
@@ -2187,7 +2183,7 @@ function yn(e) {
|
|
|
2187
2183
|
} while (e !== n && (e = e.parentNode));
|
|
2188
2184
|
return [t, o];
|
|
2189
2185
|
}
|
|
2190
|
-
function
|
|
2186
|
+
function L2(e, t) {
|
|
2191
2187
|
for (var o in e)
|
|
2192
2188
|
if (e.hasOwnProperty(o)) {
|
|
2193
2189
|
for (var n in t)
|
|
@@ -2195,7 +2191,7 @@ function I2(e, t) {
|
|
|
2195
2191
|
}
|
|
2196
2192
|
return -1;
|
|
2197
2193
|
}
|
|
2198
|
-
function
|
|
2194
|
+
function Ne(e, t) {
|
|
2199
2195
|
if (!e || !e.getBoundingClientRect) return De();
|
|
2200
2196
|
var o = e, n = !1;
|
|
2201
2197
|
do
|
|
@@ -2210,7 +2206,7 @@ function Fe(e, t) {
|
|
|
2210
2206
|
while (o = o.parentNode);
|
|
2211
2207
|
return De();
|
|
2212
2208
|
}
|
|
2213
|
-
function
|
|
2209
|
+
function M2(e, t) {
|
|
2214
2210
|
if (e && t)
|
|
2215
2211
|
for (var o in t)
|
|
2216
2212
|
t.hasOwnProperty(o) && (e[o] = t[o]);
|
|
@@ -2230,7 +2226,7 @@ function Vn(e, t) {
|
|
|
2230
2226
|
}
|
|
2231
2227
|
};
|
|
2232
2228
|
}
|
|
2233
|
-
function
|
|
2229
|
+
function B2() {
|
|
2234
2230
|
clearTimeout(at), at = void 0;
|
|
2235
2231
|
}
|
|
2236
2232
|
function jn(e, t, o) {
|
|
@@ -2241,7 +2237,7 @@ function zn(e) {
|
|
|
2241
2237
|
return t && t.dom ? t.dom(e).cloneNode(!0) : o ? o(e).clone(!0)[0] : e.cloneNode(!0);
|
|
2242
2238
|
}
|
|
2243
2239
|
var pe = "Sortable" + (/* @__PURE__ */ new Date()).getTime();
|
|
2244
|
-
function
|
|
2240
|
+
function I2() {
|
|
2245
2241
|
var e = [], t;
|
|
2246
2242
|
return {
|
|
2247
2243
|
captureAnimationState: function() {
|
|
@@ -2251,7 +2247,7 @@ function _2() {
|
|
|
2251
2247
|
if (!(T(i, "display") === "none" || i === L.ghost)) {
|
|
2252
2248
|
e.push({
|
|
2253
2249
|
target: i,
|
|
2254
|
-
rect:
|
|
2250
|
+
rect: Q(i)
|
|
2255
2251
|
});
|
|
2256
2252
|
var a = Ee({}, e[e.length - 1].rect);
|
|
2257
2253
|
if (i.thisAnimationDuration) {
|
|
@@ -2267,7 +2263,7 @@ function _2() {
|
|
|
2267
2263
|
e.push(n);
|
|
2268
2264
|
},
|
|
2269
2265
|
removeAnimationState: function(n) {
|
|
2270
|
-
e.splice(
|
|
2266
|
+
e.splice(L2(e, {
|
|
2271
2267
|
target: n
|
|
2272
2268
|
}), 1);
|
|
2273
2269
|
},
|
|
@@ -2279,9 +2275,9 @@ function _2() {
|
|
|
2279
2275
|
}
|
|
2280
2276
|
var a = !1, l = 0;
|
|
2281
2277
|
e.forEach(function(r) {
|
|
2282
|
-
var s = 0, u = r.target, f = u.fromRect, d =
|
|
2278
|
+
var s = 0, u = r.target, f = u.fromRect, d = Q(u), v = u.prevFromRect, E = u.prevToRect, $ = r.rect, M = Ue(u, !0);
|
|
2283
2279
|
M && (d.top -= M.f, d.left -= M.e), u.toRect = d, u.thisAnimationDuration && jt(v, d) && !jt(f, d) && // Make sure animatingRect is on line between toRect & fromRect
|
|
2284
|
-
($.top - d.top) / ($.left - d.left) === (f.top - d.top) / (f.left - d.left) && (s =
|
|
2280
|
+
($.top - d.top) / ($.left - d.left) === (f.top - d.top) / (f.left - d.left) && (s = P2($, v, E, i.options)), jt(d, f) || (u.prevFromRect = f, u.prevToRect = d, s || (s = i.options.animation), i.animate(u, $, d, s)), s && (a = !0, l = Math.max(l, s), clearTimeout(u.animationResetTimer), u.animationResetTimer = setTimeout(function() {
|
|
2285
2281
|
u.animationTime = 0, u.prevFromRect = null, u.fromRect = null, u.prevToRect = null, u.thisAnimationDuration = null;
|
|
2286
2282
|
}, s), u.thisAnimationDuration = s);
|
|
2287
2283
|
}), clearTimeout(t), a ? t = setTimeout(function() {
|
|
@@ -2292,17 +2288,17 @@ function _2() {
|
|
|
2292
2288
|
if (l) {
|
|
2293
2289
|
T(n, "transition", ""), T(n, "transform", "");
|
|
2294
2290
|
var r = Ue(this.el), s = r && r.a, u = r && r.d, f = (i.left - a.left) / (s || 1), d = (i.top - a.top) / (u || 1);
|
|
2295
|
-
n.animatingX = !!f, n.animatingY = !!d, T(n, "transform", "translate3d(" + f + "px," + d + "px,0)"), this.forRepaintDummy =
|
|
2291
|
+
n.animatingX = !!f, n.animatingY = !!d, T(n, "transform", "translate3d(" + f + "px," + d + "px,0)"), this.forRepaintDummy = A2(n), T(n, "transition", "transform " + l + "ms" + (this.options.easing ? " " + this.options.easing : "")), T(n, "transform", "translate3d(0,0,0)"), typeof n.animated == "number" && clearTimeout(n.animated), n.animated = setTimeout(function() {
|
|
2296
2292
|
T(n, "transition", ""), T(n, "transform", ""), n.animated = !1, n.animatingX = !1, n.animatingY = !1;
|
|
2297
2293
|
}, l);
|
|
2298
2294
|
}
|
|
2299
2295
|
}
|
|
2300
2296
|
};
|
|
2301
2297
|
}
|
|
2302
|
-
function
|
|
2298
|
+
function A2(e) {
|
|
2303
2299
|
return e.offsetWidth;
|
|
2304
2300
|
}
|
|
2305
|
-
function
|
|
2301
|
+
function P2(e, t, o, n) {
|
|
2306
2302
|
return Math.sqrt(Math.pow(t.top - e.top, 2) + Math.pow(t.left - e.left, 2)) / Math.sqrt(Math.pow(t.top - o.top, 2) + Math.pow(t.left - o.left, 2)) * n.animation;
|
|
2307
2303
|
}
|
|
2308
2304
|
var He = [], zt = {
|
|
@@ -2357,11 +2353,11 @@ var He = [], zt = {
|
|
|
2357
2353
|
}), i;
|
|
2358
2354
|
}
|
|
2359
2355
|
};
|
|
2360
|
-
function
|
|
2356
|
+
function _2(e) {
|
|
2361
2357
|
var t = e.sortable, o = e.rootEl, n = e.name, i = e.targetEl, a = e.cloneEl, l = e.toEl, r = e.fromEl, s = e.oldIndex, u = e.newIndex, f = e.oldDraggableIndex, d = e.newDraggableIndex, v = e.originalEvent, E = e.putSortable, $ = e.extraEventProperties;
|
|
2362
2358
|
if (t = t || o && o[pe], !!t) {
|
|
2363
2359
|
var M, D = t.options, O = "on" + n.charAt(0).toUpperCase() + n.substr(1);
|
|
2364
|
-
window.CustomEvent && !
|
|
2360
|
+
window.CustomEvent && !Me && !ut ? M = new CustomEvent(n, {
|
|
2365
2361
|
bubbles: !0,
|
|
2366
2362
|
cancelable: !0
|
|
2367
2363
|
}) : (M = document.createEvent("Event"), M.initEvent(n, !0, !0)), M.to = l || o, M.from = r || o, M.item = i || o, M.clone = a, M.oldIndex = s, M.newIndex = u, M.oldDraggableIndex = f, M.newDraggableIndex = d, M.originalEvent = v, M.pullMode = E ? E.lastPutMode : void 0;
|
|
@@ -2371,8 +2367,8 @@ function V2(e) {
|
|
|
2371
2367
|
o && o.dispatchEvent(M), D[O] && D[O].call(t, M);
|
|
2372
2368
|
}
|
|
2373
2369
|
}
|
|
2374
|
-
var
|
|
2375
|
-
var n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, i = n.evt, a =
|
|
2370
|
+
var N2 = ["evt"], se = function(t, o) {
|
|
2371
|
+
var n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, i = n.evt, a = E2(n, N2);
|
|
2376
2372
|
ct.pluginEvent.bind(L)(t, o, Ee({
|
|
2377
2373
|
dragEl: m,
|
|
2378
2374
|
parentEl: G,
|
|
@@ -2381,25 +2377,25 @@ var j2 = ["evt"], se = function(t, o) {
|
|
|
2381
2377
|
nextEl: Re,
|
|
2382
2378
|
lastDownEl: mt,
|
|
2383
2379
|
cloneEl: q,
|
|
2384
|
-
cloneHidden:
|
|
2380
|
+
cloneHidden: _e,
|
|
2385
2381
|
dragStarted: tt,
|
|
2386
|
-
putSortable:
|
|
2382
|
+
putSortable: ne,
|
|
2387
2383
|
activeSortable: L.active,
|
|
2388
2384
|
originalEvent: i,
|
|
2389
2385
|
oldIndex: Ye,
|
|
2390
2386
|
oldDraggableIndex: lt,
|
|
2391
2387
|
newIndex: fe,
|
|
2392
|
-
newDraggableIndex:
|
|
2388
|
+
newDraggableIndex: Ae,
|
|
2393
2389
|
hideGhostForTarget: Gn,
|
|
2394
2390
|
unhideGhostForTarget: qn,
|
|
2395
2391
|
cloneNowHidden: function() {
|
|
2396
|
-
|
|
2392
|
+
_e = !0;
|
|
2397
2393
|
},
|
|
2398
2394
|
cloneNowShown: function() {
|
|
2399
|
-
|
|
2395
|
+
_e = !1;
|
|
2400
2396
|
},
|
|
2401
2397
|
dispatchSortableEvent: function(r) {
|
|
2402
|
-
|
|
2398
|
+
re({
|
|
2403
2399
|
sortable: o,
|
|
2404
2400
|
name: r,
|
|
2405
2401
|
originalEvent: i
|
|
@@ -2407,27 +2403,27 @@ var j2 = ["evt"], se = function(t, o) {
|
|
|
2407
2403
|
}
|
|
2408
2404
|
}, a));
|
|
2409
2405
|
};
|
|
2410
|
-
function
|
|
2411
|
-
|
|
2412
|
-
putSortable:
|
|
2406
|
+
function re(e) {
|
|
2407
|
+
_2(Ee({
|
|
2408
|
+
putSortable: ne,
|
|
2413
2409
|
cloneEl: q,
|
|
2414
2410
|
targetEl: m,
|
|
2415
2411
|
rootEl: H,
|
|
2416
2412
|
oldIndex: Ye,
|
|
2417
2413
|
oldDraggableIndex: lt,
|
|
2418
2414
|
newIndex: fe,
|
|
2419
|
-
newDraggableIndex:
|
|
2415
|
+
newDraggableIndex: Ae
|
|
2420
2416
|
}, e));
|
|
2421
2417
|
}
|
|
2422
|
-
var m, G, I, H, Re, mt, q,
|
|
2418
|
+
var m, G, I, H, Re, mt, q, _e, Ye, fe, lt, Ae, ft, ne, qe = !1, St = !1, kt = [], je, Se, Rt, Zt, wn, Sn, tt, Ge, rt, st = !1, ht = !1, bt, ae, Ht = [], Kt = !1, $t = [], Mt = typeof document < "u", pt = _n, kn = ut || Me ? "cssFloat" : "float", F2 = Mt && !x2 && !_n && "draggable" in document.createElement("div"), Rn = (function() {
|
|
2423
2419
|
if (Mt) {
|
|
2424
|
-
if (
|
|
2420
|
+
if (Me)
|
|
2425
2421
|
return !1;
|
|
2426
2422
|
var e = document.createElement("x");
|
|
2427
2423
|
return e.style.cssText = "pointer-events:auto", e.style.pointerEvents === "auto";
|
|
2428
2424
|
}
|
|
2429
2425
|
})(), Zn = function(t, o) {
|
|
2430
|
-
var n = T(t), i = parseInt(n.width) - parseInt(n.paddingLeft) - parseInt(n.paddingRight) - parseInt(n.borderLeftWidth) - parseInt(n.borderRightWidth), a = Ke(t, 0, o), l = Ke(t, 1, o), r = a && T(a), s = l && T(l), u = r && parseInt(r.marginLeft) + parseInt(r.marginRight) +
|
|
2426
|
+
var n = T(t), i = parseInt(n.width) - parseInt(n.paddingLeft) - parseInt(n.paddingRight) - parseInt(n.borderLeftWidth) - parseInt(n.borderRightWidth), a = Ke(t, 0, o), l = Ke(t, 1, o), r = a && T(a), s = l && T(l), u = r && parseInt(r.marginLeft) + parseInt(r.marginRight) + Q(a).width, f = s && parseInt(s.marginLeft) + parseInt(s.marginRight) + Q(l).width;
|
|
2431
2427
|
if (n.display === "flex")
|
|
2432
2428
|
return n.flexDirection === "column" || n.flexDirection === "column-reverse" ? "vertical" : "horizontal";
|
|
2433
2429
|
if (n.display === "grid")
|
|
@@ -2437,15 +2433,15 @@ var m, G, I, H, Re, mt, q, Ne, Ye, fe, lt, Pe, ft, te, qe = !1, St = !1, kt = []
|
|
|
2437
2433
|
return l && (s.clear === "both" || s.clear === d) ? "vertical" : "horizontal";
|
|
2438
2434
|
}
|
|
2439
2435
|
return a && (r.display === "block" || r.display === "flex" || r.display === "table" || r.display === "grid" || u >= i && n[kn] === "none" || l && n[kn] === "none" && u + f > i) ? "vertical" : "horizontal";
|
|
2440
|
-
},
|
|
2436
|
+
}, V2 = function(t, o, n) {
|
|
2441
2437
|
var i = n ? t.left : t.top, a = n ? t.right : t.bottom, l = n ? t.width : t.height, r = n ? o.left : o.top, s = n ? o.right : o.bottom, u = n ? o.width : o.height;
|
|
2442
2438
|
return i === r || a === s || i + l / 2 === r + u / 2;
|
|
2443
|
-
},
|
|
2439
|
+
}, j2 = function(t, o) {
|
|
2444
2440
|
var n;
|
|
2445
2441
|
return kt.some(function(i) {
|
|
2446
2442
|
var a = i[pe].options.emptyInsertThreshold;
|
|
2447
2443
|
if (!(!a || rn(i))) {
|
|
2448
|
-
var l =
|
|
2444
|
+
var l = Q(i), r = t >= l.left - a && t <= l.right + a, s = o >= l.top - a && o <= l.bottom + a;
|
|
2449
2445
|
if (r && s)
|
|
2450
2446
|
return n = i;
|
|
2451
2447
|
}
|
|
@@ -2482,7 +2478,7 @@ Mt && document.addEventListener("click", function(e) {
|
|
|
2482
2478
|
var ze = function(t) {
|
|
2483
2479
|
if (m) {
|
|
2484
2480
|
t = t.touches ? t.touches[0] : t;
|
|
2485
|
-
var o =
|
|
2481
|
+
var o = j2(t.clientX, t.clientY);
|
|
2486
2482
|
if (o) {
|
|
2487
2483
|
var n = {};
|
|
2488
2484
|
for (var i in t)
|
|
@@ -2490,7 +2486,7 @@ var ze = function(t) {
|
|
|
2490
2486
|
n.target = n.rootEl = o, n.preventDefault = void 0, n.stopPropagation = void 0, o[pe]._onDragOver(n);
|
|
2491
2487
|
}
|
|
2492
2488
|
}
|
|
2493
|
-
},
|
|
2489
|
+
}, z2 = function(t) {
|
|
2494
2490
|
m && m.parentNode[pe]._isOutsideThisEl(t.target);
|
|
2495
2491
|
};
|
|
2496
2492
|
function L(e, t) {
|
|
@@ -2548,7 +2544,7 @@ function L(e, t) {
|
|
|
2548
2544
|
Hn(t);
|
|
2549
2545
|
for (var i in this)
|
|
2550
2546
|
i.charAt(0) === "_" && typeof this[i] == "function" && (this[i] = this[i].bind(this));
|
|
2551
|
-
this.nativeDraggable = t.forceFallback ? !1 :
|
|
2547
|
+
this.nativeDraggable = t.forceFallback ? !1 : F2, this.nativeDraggable && (this.options.touchStartThreshold = 1), t.supportPointer ? z(e, "pointerdown", this._onTapStart) : (z(e, "mousedown", this._onTapStart), z(e, "touchstart", this._onTapStart)), this.nativeDraggable && (z(e, "dragover", this), z(e, "dragenter", this)), kt.push(this.el), t.store && t.store.get && this.sort(t.store.get(this) || []), Le(this, I2());
|
|
2552
2548
|
}
|
|
2553
2549
|
L.prototype = /** @lends Sortable.prototype */
|
|
2554
2550
|
{
|
|
@@ -2562,10 +2558,10 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2562
2558
|
_onTapStart: function(t) {
|
|
2563
2559
|
if (t.cancelable) {
|
|
2564
2560
|
var o = this, n = this.el, i = this.options, a = i.preventOnFilter, l = t.type, r = t.touches && t.touches[0] || t.pointerType && t.pointerType === "touch" && t, s = (r || t).target, u = t.target.shadowRoot && (t.path && t.path[0] || t.composedPath && t.composedPath()[0]) || s, f = i.filter;
|
|
2565
|
-
if (
|
|
2561
|
+
if (X2(n), !m && !(/mousedown|pointerdown/.test(l) && t.button !== 0 || i.disabled) && !u.isContentEditable && !(!this.nativeDraggable && it && s && s.tagName.toUpperCase() === "SELECT") && (s = $e(s, i.draggable, n, !1), !(s && s.animated) && mt !== s)) {
|
|
2566
2562
|
if (Ye = Ce(s), lt = Ce(s, i.draggable), typeof f == "function") {
|
|
2567
2563
|
if (f.call(this, t, s, this)) {
|
|
2568
|
-
|
|
2564
|
+
re({
|
|
2569
2565
|
sortable: o,
|
|
2570
2566
|
rootEl: u,
|
|
2571
2567
|
name: "filter",
|
|
@@ -2579,7 +2575,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2579
2575
|
}
|
|
2580
2576
|
} else if (f && (f = f.split(",").some(function(d) {
|
|
2581
2577
|
if (d = $e(u, d.trim(), n, !1), d)
|
|
2582
|
-
return
|
|
2578
|
+
return re({
|
|
2583
2579
|
sortable: o,
|
|
2584
2580
|
rootEl: d,
|
|
2585
2581
|
name: "filter",
|
|
@@ -2600,7 +2596,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2600
2596
|
_prepareDragStart: function(t, o, n) {
|
|
2601
2597
|
var i = this, a = i.el, l = i.options, r = a.ownerDocument, s;
|
|
2602
2598
|
if (n && !m && n.parentNode === a) {
|
|
2603
|
-
var u =
|
|
2599
|
+
var u = Q(n);
|
|
2604
2600
|
if (H = a, m = n, G = m.parentNode, Re = m.nextSibling, mt = n, ft = l.group, L.dragged = m, je = {
|
|
2605
2601
|
target: m,
|
|
2606
2602
|
clientX: (o || t).clientX,
|
|
@@ -2612,7 +2608,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2612
2608
|
i._onDrop();
|
|
2613
2609
|
return;
|
|
2614
2610
|
}
|
|
2615
|
-
i._disableDelayedDragEvents(), !mn && i.nativeDraggable && (m.draggable = !0), i._triggerDragStart(t, o),
|
|
2611
|
+
i._disableDelayedDragEvents(), !mn && i.nativeDraggable && (m.draggable = !0), i._triggerDragStart(t, o), re({
|
|
2616
2612
|
sortable: i,
|
|
2617
2613
|
name: "choose",
|
|
2618
2614
|
originalEvent: t
|
|
@@ -2621,7 +2617,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2621
2617
|
Fn(m, f.trim(), Gt);
|
|
2622
2618
|
}), z(r, "dragover", ze), z(r, "mousemove", ze), z(r, "touchmove", ze), z(r, "mouseup", i._onDrop), z(r, "touchend", i._onDrop), z(r, "touchcancel", i._onDrop), mn && this.nativeDraggable && (this.options.touchStartThreshold = 4, m.draggable = !0), se("delayStart", this, {
|
|
2623
2619
|
evt: t
|
|
2624
|
-
}), l.delay && (!l.delayOnTouchOnly || o) && (!this.nativeDraggable || !(ut ||
|
|
2620
|
+
}), l.delay && (!l.delayOnTouchOnly || o) && (!this.nativeDraggable || !(ut || Me))) {
|
|
2625
2621
|
if (L.eventCanceled) {
|
|
2626
2622
|
this._onDrop();
|
|
2627
2623
|
return;
|
|
@@ -2655,9 +2651,9 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2655
2651
|
if (qe = !1, H && m) {
|
|
2656
2652
|
se("dragStarted", this, {
|
|
2657
2653
|
evt: o
|
|
2658
|
-
}), this.nativeDraggable && z(document, "dragover",
|
|
2654
|
+
}), this.nativeDraggable && z(document, "dragover", z2);
|
|
2659
2655
|
var n = this.options;
|
|
2660
|
-
!t && de(m, n.dragClass, !1), de(m, n.ghostClass, !0), L.active = this, t && this._appendGhost(),
|
|
2656
|
+
!t && de(m, n.dragClass, !1), de(m, n.ghostClass, !0), L.active = this, t && this._appendGhost(), re({
|
|
2661
2657
|
sortable: this,
|
|
2662
2658
|
name: "start",
|
|
2663
2659
|
originalEvent: o
|
|
@@ -2712,7 +2708,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2712
2708
|
},
|
|
2713
2709
|
_appendGhost: function() {
|
|
2714
2710
|
if (!I) {
|
|
2715
|
-
var t = this.options.fallbackOnBody ? document.body : H, o =
|
|
2711
|
+
var t = this.options.fallbackOnBody ? document.body : H, o = Q(m, !0, pt, !0, t), n = this.options;
|
|
2716
2712
|
if (pt) {
|
|
2717
2713
|
for (ae = t; T(ae, "position") === "static" && T(ae, "transform") === "none" && ae !== document; )
|
|
2718
2714
|
ae = ae.parentNode;
|
|
@@ -2730,7 +2726,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2730
2726
|
return;
|
|
2731
2727
|
}
|
|
2732
2728
|
se("setupClone", this), L.eventCanceled || (q = zn(m), q.draggable = !1, q.style["will-change"] = "", this._hideClone(), de(q, this.options.chosenClass, !1), L.clone = q), n.cloneId = Ct(function() {
|
|
2733
|
-
se("clone", n), !L.eventCanceled && (n.options.removeCloneOnHide || H.insertBefore(q, m), n._hideClone(),
|
|
2729
|
+
se("clone", n), !L.eventCanceled && (n.options.removeCloneOnHide || H.insertBefore(q, m), n._hideClone(), re({
|
|
2734
2730
|
sortable: n,
|
|
2735
2731
|
name: "clone"
|
|
2736
2732
|
}));
|
|
@@ -2738,10 +2734,10 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2738
2734
|
},
|
|
2739
2735
|
// Returns true - if no further action is needed (either inserted or another condition)
|
|
2740
2736
|
_onDragOver: function(t) {
|
|
2741
|
-
var o = this.el, n = t.target, i, a, l, r = this.options, s = r.group, u = L.active, f = ft === s, d = r.sort, v =
|
|
2737
|
+
var o = this.el, n = t.target, i, a, l, r = this.options, s = r.group, u = L.active, f = ft === s, d = r.sort, v = ne || u, E, $ = this, M = !1;
|
|
2742
2738
|
if (Kt) return;
|
|
2743
|
-
function D(
|
|
2744
|
-
se(
|
|
2739
|
+
function D(Ie, Bt) {
|
|
2740
|
+
se(Ie, $, Ee({
|
|
2745
2741
|
evt: t,
|
|
2746
2742
|
isOwner: f,
|
|
2747
2743
|
axis: E ? "vertical" : "horizontal",
|
|
@@ -2753,7 +2749,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2753
2749
|
target: n,
|
|
2754
2750
|
completed: b,
|
|
2755
2751
|
onMove: function(Je, It) {
|
|
2756
|
-
return gt(H, o, m, i, Je,
|
|
2752
|
+
return gt(H, o, m, i, Je, Q(Je), t, It);
|
|
2757
2753
|
},
|
|
2758
2754
|
changed: C
|
|
2759
2755
|
}, Bt));
|
|
@@ -2761,46 +2757,46 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2761
2757
|
function O() {
|
|
2762
2758
|
D("dragOverAnimationCapture"), $.captureAnimationState(), $ !== v && v.captureAnimationState();
|
|
2763
2759
|
}
|
|
2764
|
-
function b(
|
|
2760
|
+
function b(Ie) {
|
|
2765
2761
|
return D("dragOverCompleted", {
|
|
2766
|
-
insertion:
|
|
2767
|
-
}),
|
|
2762
|
+
insertion: Ie
|
|
2763
|
+
}), Ie && (f ? u._hideClone() : u._showClone($), $ !== v && (de(m, ne ? ne.options.ghostClass : u.options.ghostClass, !1), de(m, r.ghostClass, !0)), ne !== $ && $ !== L.active ? ne = $ : $ === L.active && ne && (ne = null), v === $ && ($._ignoreWhileAnimating = n), $.animateAll(function() {
|
|
2768
2764
|
D("dragOverAnimationComplete"), $._ignoreWhileAnimating = null;
|
|
2769
|
-
}), $ !== v && (v.animateAll(), v._ignoreWhileAnimating = null)), (n === m && !m.animated || n === o && !n.animated) && (Ge = null), !r.dragoverBubble && !t.rootEl && n !== document && (m.parentNode[pe]._isOutsideThisEl(t.target), !
|
|
2765
|
+
}), $ !== v && (v.animateAll(), v._ignoreWhileAnimating = null)), (n === m && !m.animated || n === o && !n.animated) && (Ge = null), !r.dragoverBubble && !t.rootEl && n !== document && (m.parentNode[pe]._isOutsideThisEl(t.target), !Ie && ze(t)), !r.dragoverBubble && t.stopPropagation && t.stopPropagation(), M = !0;
|
|
2770
2766
|
}
|
|
2771
2767
|
function C() {
|
|
2772
|
-
fe = Ce(m),
|
|
2768
|
+
fe = Ce(m), Ae = Ce(m, r.draggable), re({
|
|
2773
2769
|
sortable: $,
|
|
2774
2770
|
name: "change",
|
|
2775
2771
|
toEl: o,
|
|
2776
2772
|
newIndex: fe,
|
|
2777
|
-
newDraggableIndex:
|
|
2773
|
+
newDraggableIndex: Ae,
|
|
2778
2774
|
originalEvent: t
|
|
2779
2775
|
});
|
|
2780
2776
|
}
|
|
2781
2777
|
if (t.preventDefault !== void 0 && t.cancelable && t.preventDefault(), n = $e(n, r.draggable, o, !0), D("dragOver"), L.eventCanceled) return M;
|
|
2782
2778
|
if (m.contains(t.target) || n.animated && n.animatingX && n.animatingY || $._ignoreWhileAnimating === n)
|
|
2783
2779
|
return b(!1);
|
|
2784
|
-
if (St = !1, u && !r.disabled && (f ? d || (l = G !== H) :
|
|
2785
|
-
if (E = this._getDirection(t, n) === "vertical", i =
|
|
2780
|
+
if (St = !1, u && !r.disabled && (f ? d || (l = G !== H) : ne === this || (this.lastPutMode = ft.checkPull(this, u, m, t)) && s.checkPut(this, u, m, t))) {
|
|
2781
|
+
if (E = this._getDirection(t, n) === "vertical", i = Q(m), D("dragOverValid"), L.eventCanceled) return M;
|
|
2786
2782
|
if (l)
|
|
2787
2783
|
return G = H, O(), this._hideClone(), D("revert"), L.eventCanceled || (Re ? H.insertBefore(m, Re) : H.appendChild(m)), b(!0);
|
|
2788
2784
|
var g = rn(o, r.draggable);
|
|
2789
|
-
if (!g ||
|
|
2785
|
+
if (!g || G2(t, E, this) && !g.animated) {
|
|
2790
2786
|
if (g === m)
|
|
2791
2787
|
return b(!1);
|
|
2792
|
-
if (g && o === t.target && (n = g), n && (a =
|
|
2788
|
+
if (g && o === t.target && (n = g), n && (a = Q(n)), gt(H, o, m, i, n, a, t, !!n) !== !1)
|
|
2793
2789
|
return O(), o.appendChild(m), G = o, C(), b(!0);
|
|
2794
|
-
} else if (g &&
|
|
2790
|
+
} else if (g && H2(t, E, this)) {
|
|
2795
2791
|
var k = Ke(o, 0, r, !0);
|
|
2796
2792
|
if (k === m)
|
|
2797
2793
|
return b(!1);
|
|
2798
|
-
if (n = k, a =
|
|
2794
|
+
if (n = k, a = Q(n), gt(H, o, m, i, n, a, t, !1) !== !1)
|
|
2799
2795
|
return O(), o.insertBefore(m, k), G = o, C(), b(!0);
|
|
2800
2796
|
} else if (n.parentNode === o) {
|
|
2801
|
-
a =
|
|
2802
|
-
var w = 0, R, oe = m.parentNode !== o,
|
|
2803
|
-
Ge !== n && (R = a[ue], st = !1, ht = !
|
|
2797
|
+
a = Q(n);
|
|
2798
|
+
var w = 0, R, oe = m.parentNode !== o, X = !V2(m.animated && m.toRect || i, n.animated && n.toRect || a, E), ue = E ? "top" : "left", ie = Cn(n, "top", "top") || Cn(m, "top", "top"), me = ie ? ie.scrollTop : void 0;
|
|
2799
|
+
Ge !== n && (R = a[ue], st = !1, ht = !X && r.invertSwap || oe), w = q2(t, n, a, E, X ? 1 : r.swapThreshold, r.invertedSwapThreshold == null ? r.swapThreshold : r.invertedSwapThreshold, ht, Ge === n);
|
|
2804
2800
|
var ce;
|
|
2805
2801
|
if (w !== 0) {
|
|
2806
2802
|
var be = Ce(m);
|
|
@@ -2811,11 +2807,11 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2811
2807
|
if (w === 0 || ce === n)
|
|
2812
2808
|
return b(!1);
|
|
2813
2809
|
Ge = n, rt = w;
|
|
2814
|
-
var
|
|
2810
|
+
var Be = n.nextElementSibling, we = !1;
|
|
2815
2811
|
we = w === 1;
|
|
2816
2812
|
var Ve = gt(H, o, m, i, n, a, t, we);
|
|
2817
2813
|
if (Ve !== !1)
|
|
2818
|
-
return (Ve === 1 || Ve === -1) && (we = Ve === 1), Kt = !0, setTimeout(
|
|
2814
|
+
return (Ve === 1 || Ve === -1) && (we = Ve === 1), Kt = !0, setTimeout(Z2, 30), O(), we && !Be ? o.appendChild(m) : n.parentNode.insertBefore(m, we ? Be : n), ie && jn(ie, 0, me - ie.scrollTop), G = m.parentNode, R !== void 0 && !ht && (bt = Math.abs(R - Q(n)[ue])), C(), b(!0);
|
|
2819
2815
|
}
|
|
2820
2816
|
if (o.contains(m))
|
|
2821
2817
|
return b(!1);
|
|
@@ -2832,52 +2828,52 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2832
2828
|
},
|
|
2833
2829
|
_onDrop: function(t) {
|
|
2834
2830
|
var o = this.el, n = this.options;
|
|
2835
|
-
if (fe = Ce(m),
|
|
2831
|
+
if (fe = Ce(m), Ae = Ce(m, n.draggable), se("drop", this, {
|
|
2836
2832
|
evt: t
|
|
2837
|
-
}), G = m && m.parentNode, fe = Ce(m),
|
|
2833
|
+
}), G = m && m.parentNode, fe = Ce(m), Ae = Ce(m, n.draggable), L.eventCanceled) {
|
|
2838
2834
|
this._nulling();
|
|
2839
2835
|
return;
|
|
2840
2836
|
}
|
|
2841
|
-
qe = !1, ht = !1, st = !1, clearInterval(this._loopId), clearTimeout(this._dragStartTimer), Qt(this.cloneId), Qt(this._dragStartId), this.nativeDraggable && (V(document, "drop", this), V(o, "dragstart", this._onDragStart)), this._offMoveEvents(), this._offUpEvents(), it && T(document.body, "user-select", ""), T(m, "transform", ""), t && (tt && (t.cancelable && t.preventDefault(), !n.dropBubble && t.stopPropagation()), I && I.parentNode && I.parentNode.removeChild(I), (H === G ||
|
|
2837
|
+
qe = !1, ht = !1, st = !1, clearInterval(this._loopId), clearTimeout(this._dragStartTimer), Qt(this.cloneId), Qt(this._dragStartId), this.nativeDraggable && (V(document, "drop", this), V(o, "dragstart", this._onDragStart)), this._offMoveEvents(), this._offUpEvents(), it && T(document.body, "user-select", ""), T(m, "transform", ""), t && (tt && (t.cancelable && t.preventDefault(), !n.dropBubble && t.stopPropagation()), I && I.parentNode && I.parentNode.removeChild(I), (H === G || ne && ne.lastPutMode !== "clone") && q && q.parentNode && q.parentNode.removeChild(q), m && (this.nativeDraggable && V(m, "dragend", this), Gt(m), m.style["will-change"] = "", tt && !qe && de(m, ne ? ne.options.ghostClass : this.options.ghostClass, !1), de(m, this.options.chosenClass, !1), re({
|
|
2842
2838
|
sortable: this,
|
|
2843
2839
|
name: "unchoose",
|
|
2844
2840
|
toEl: G,
|
|
2845
2841
|
newIndex: null,
|
|
2846
2842
|
newDraggableIndex: null,
|
|
2847
2843
|
originalEvent: t
|
|
2848
|
-
}), H !== G ? (fe >= 0 && (
|
|
2844
|
+
}), H !== G ? (fe >= 0 && (re({
|
|
2849
2845
|
rootEl: G,
|
|
2850
2846
|
name: "add",
|
|
2851
2847
|
toEl: G,
|
|
2852
2848
|
fromEl: H,
|
|
2853
2849
|
originalEvent: t
|
|
2854
|
-
}),
|
|
2850
|
+
}), re({
|
|
2855
2851
|
sortable: this,
|
|
2856
2852
|
name: "remove",
|
|
2857
2853
|
toEl: G,
|
|
2858
2854
|
originalEvent: t
|
|
2859
|
-
}),
|
|
2855
|
+
}), re({
|
|
2860
2856
|
rootEl: G,
|
|
2861
2857
|
name: "sort",
|
|
2862
2858
|
toEl: G,
|
|
2863
2859
|
fromEl: H,
|
|
2864
2860
|
originalEvent: t
|
|
2865
|
-
}),
|
|
2861
|
+
}), re({
|
|
2866
2862
|
sortable: this,
|
|
2867
2863
|
name: "sort",
|
|
2868
2864
|
toEl: G,
|
|
2869
2865
|
originalEvent: t
|
|
2870
|
-
})),
|
|
2866
|
+
})), ne && ne.save()) : fe !== Ye && fe >= 0 && (re({
|
|
2871
2867
|
sortable: this,
|
|
2872
2868
|
name: "update",
|
|
2873
2869
|
toEl: G,
|
|
2874
2870
|
originalEvent: t
|
|
2875
|
-
}),
|
|
2871
|
+
}), re({
|
|
2876
2872
|
sortable: this,
|
|
2877
2873
|
name: "sort",
|
|
2878
2874
|
toEl: G,
|
|
2879
2875
|
originalEvent: t
|
|
2880
|
-
})), L.active && ((fe == null || fe === -1) && (fe = Ye,
|
|
2876
|
+
})), L.active && ((fe == null || fe === -1) && (fe = Ye, Ae = lt), re({
|
|
2881
2877
|
sortable: this,
|
|
2882
2878
|
name: "end",
|
|
2883
2879
|
toEl: G,
|
|
@@ -2885,7 +2881,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2885
2881
|
}), this.save()))), this._nulling();
|
|
2886
2882
|
},
|
|
2887
2883
|
_nulling: function() {
|
|
2888
|
-
se("nulling", this), H = m = G = I = Re = q = mt =
|
|
2884
|
+
se("nulling", this), H = m = G = I = Re = q = mt = _e = je = Se = tt = fe = Ae = Ye = lt = Ge = rt = ne = ft = L.dragged = L.ghost = L.clone = L.active = null, $t.forEach(function(t) {
|
|
2889
2885
|
t.checked = !0;
|
|
2890
2886
|
}), $t.length = Rt = Zt = 0;
|
|
2891
2887
|
},
|
|
@@ -2897,7 +2893,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2897
2893
|
break;
|
|
2898
2894
|
case "dragenter":
|
|
2899
2895
|
case "dragover":
|
|
2900
|
-
m && (this._onDragOver(t),
|
|
2896
|
+
m && (this._onDragOver(t), R2(t));
|
|
2901
2897
|
break;
|
|
2902
2898
|
case "selectstart":
|
|
2903
2899
|
t.preventDefault();
|
|
@@ -2910,7 +2906,7 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2910
2906
|
*/
|
|
2911
2907
|
toArray: function() {
|
|
2912
2908
|
for (var t = [], o, n = this.el.children, i = 0, a = n.length, l = this.options; i < a; i++)
|
|
2913
|
-
o = n[i], $e(o, l.draggable, this.el, !1) && t.push(o.getAttribute(l.dataIdAttr) ||
|
|
2909
|
+
o = n[i], $e(o, l.draggable, this.el, !1) && t.push(o.getAttribute(l.dataIdAttr) || Y2(o));
|
|
2914
2910
|
return t;
|
|
2915
2911
|
},
|
|
2916
2912
|
/**
|
|
@@ -2966,9 +2962,9 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2966
2962
|
}), this._onDrop(), this._disableDelayedDragEvents(), kt.splice(kt.indexOf(this.el), 1), this.el = t = null;
|
|
2967
2963
|
},
|
|
2968
2964
|
_hideClone: function() {
|
|
2969
|
-
if (!
|
|
2965
|
+
if (!_e) {
|
|
2970
2966
|
if (se("hideClone", this), L.eventCanceled) return;
|
|
2971
|
-
T(q, "display", "none"), this.options.removeCloneOnHide && q.parentNode && q.parentNode.removeChild(q),
|
|
2967
|
+
T(q, "display", "none"), this.options.removeCloneOnHide && q.parentNode && q.parentNode.removeChild(q), _e = !0;
|
|
2972
2968
|
}
|
|
2973
2969
|
},
|
|
2974
2970
|
_showClone: function(t) {
|
|
@@ -2976,37 +2972,37 @@ L.prototype = /** @lends Sortable.prototype */
|
|
|
2976
2972
|
this._hideClone();
|
|
2977
2973
|
return;
|
|
2978
2974
|
}
|
|
2979
|
-
if (
|
|
2975
|
+
if (_e) {
|
|
2980
2976
|
if (se("showClone", this), L.eventCanceled) return;
|
|
2981
|
-
m.parentNode == H && !this.options.group.revertClone ? H.insertBefore(q, m) : Re ? H.insertBefore(q, Re) : H.appendChild(q), this.options.group.revertClone && this.animate(m, q), T(q, "display", ""),
|
|
2977
|
+
m.parentNode == H && !this.options.group.revertClone ? H.insertBefore(q, m) : Re ? H.insertBefore(q, Re) : H.appendChild(q), this.options.group.revertClone && this.animate(m, q), T(q, "display", ""), _e = !1;
|
|
2982
2978
|
}
|
|
2983
2979
|
}
|
|
2984
2980
|
};
|
|
2985
|
-
function
|
|
2981
|
+
function R2(e) {
|
|
2986
2982
|
e.dataTransfer && (e.dataTransfer.dropEffect = "move"), e.cancelable && e.preventDefault();
|
|
2987
2983
|
}
|
|
2988
2984
|
function gt(e, t, o, n, i, a, l, r) {
|
|
2989
2985
|
var s, u = e[pe], f = u.options.onMove, d;
|
|
2990
|
-
return window.CustomEvent && !
|
|
2986
|
+
return window.CustomEvent && !Me && !ut ? s = new CustomEvent("move", {
|
|
2991
2987
|
bubbles: !0,
|
|
2992
2988
|
cancelable: !0
|
|
2993
|
-
}) : (s = document.createEvent("Event"), s.initEvent("move", !0, !0)), s.to = t, s.from = e, s.dragged = o, s.draggedRect = n, s.related = i || t, s.relatedRect = a ||
|
|
2989
|
+
}) : (s = document.createEvent("Event"), s.initEvent("move", !0, !0)), s.to = t, s.from = e, s.dragged = o, s.draggedRect = n, s.related = i || t, s.relatedRect = a || Q(t), s.willInsertAfter = r, s.originalEvent = l, e.dispatchEvent(s), f && (d = f.call(u, s, l)), d;
|
|
2994
2990
|
}
|
|
2995
2991
|
function Gt(e) {
|
|
2996
2992
|
e.draggable = !1;
|
|
2997
2993
|
}
|
|
2998
|
-
function
|
|
2994
|
+
function Z2() {
|
|
2999
2995
|
Kt = !1;
|
|
3000
2996
|
}
|
|
3001
|
-
function
|
|
3002
|
-
var n =
|
|
2997
|
+
function H2(e, t, o) {
|
|
2998
|
+
var n = Q(Ke(o.el, 0, o.options, !0)), i = 10;
|
|
3003
2999
|
return t ? e.clientX < n.left - i || e.clientY < n.top && e.clientX < n.right : e.clientY < n.top - i || e.clientY < n.bottom && e.clientX < n.left;
|
|
3004
3000
|
}
|
|
3005
|
-
function
|
|
3006
|
-
var n =
|
|
3001
|
+
function G2(e, t, o) {
|
|
3002
|
+
var n = Q(rn(o.el, o.options.draggable)), i = 10;
|
|
3007
3003
|
return t ? e.clientX > n.right + i || e.clientX <= n.right && e.clientY > n.bottom && e.clientX >= n.left : e.clientX > n.right && e.clientY > n.top || e.clientX <= n.right && e.clientY > n.bottom + i;
|
|
3008
3004
|
}
|
|
3009
|
-
function
|
|
3005
|
+
function q2(e, t, o, n, i, a, l, r) {
|
|
3010
3006
|
var s = n ? e.clientY : e.clientX, u = n ? o.height : o.width, f = n ? o.top : o.left, d = n ? o.bottom : o.right, v = !1;
|
|
3011
3007
|
if (!l) {
|
|
3012
3008
|
if (r && bt < u * i) {
|
|
@@ -3015,19 +3011,19 @@ function X2(e, t, o, n, i, a, l, r) {
|
|
|
3015
3011
|
else if (rt === 1 ? s < f + bt : s > d - bt)
|
|
3016
3012
|
return -rt;
|
|
3017
3013
|
} else if (s > f + u * (1 - i) / 2 && s < d - u * (1 - i) / 2)
|
|
3018
|
-
return
|
|
3014
|
+
return W2(t);
|
|
3019
3015
|
}
|
|
3020
3016
|
return v = v || l, v && (s < f + u * a / 2 || s > d - u * a / 2) ? s > f + u / 2 ? 1 : -1 : 0;
|
|
3021
3017
|
}
|
|
3022
|
-
function
|
|
3018
|
+
function W2(e) {
|
|
3023
3019
|
return Ce(m) < Ce(e) ? 1 : -1;
|
|
3024
3020
|
}
|
|
3025
|
-
function
|
|
3021
|
+
function Y2(e) {
|
|
3026
3022
|
for (var t = e.tagName + e.className + e.src + e.href + e.textContent, o = t.length, n = 0; o--; )
|
|
3027
3023
|
n += t.charCodeAt(o);
|
|
3028
3024
|
return n.toString(36);
|
|
3029
3025
|
}
|
|
3030
|
-
function
|
|
3026
|
+
function X2(e) {
|
|
3031
3027
|
$t.length = 0;
|
|
3032
3028
|
for (var t = e.getElementsByTagName("input"), o = t.length; o--; ) {
|
|
3033
3029
|
var n = t[o];
|
|
@@ -3051,7 +3047,7 @@ L.utils = {
|
|
|
3051
3047
|
is: function(t, o) {
|
|
3052
3048
|
return !!$e(t, o, t, !1);
|
|
3053
3049
|
},
|
|
3054
|
-
extend:
|
|
3050
|
+
extend: M2,
|
|
3055
3051
|
throttle: Vn,
|
|
3056
3052
|
closest: $e,
|
|
3057
3053
|
toggleClass: de,
|
|
@@ -3077,9 +3073,9 @@ L.mount = function() {
|
|
|
3077
3073
|
L.create = function(e, t) {
|
|
3078
3074
|
return new L(e, t);
|
|
3079
3075
|
};
|
|
3080
|
-
L.version =
|
|
3081
|
-
var
|
|
3082
|
-
function
|
|
3076
|
+
L.version = O2;
|
|
3077
|
+
var K = [], nt, Jt, en = !1, qt, Wt, Dt, ot;
|
|
3078
|
+
function U2() {
|
|
3083
3079
|
function e() {
|
|
3084
3080
|
this.defaults = {
|
|
3085
3081
|
scroll: !0,
|
|
@@ -3101,29 +3097,29 @@ function J2() {
|
|
|
3101
3097
|
!this.options.dragOverBubble && !n.rootEl && this._handleAutoScroll(n);
|
|
3102
3098
|
},
|
|
3103
3099
|
drop: function() {
|
|
3104
|
-
this.sortable.nativeDraggable ? V(document, "dragover", this._handleAutoScroll) : (V(document, "pointermove", this._handleFallbackAutoScroll), V(document, "touchmove", this._handleFallbackAutoScroll), V(document, "mousemove", this._handleFallbackAutoScroll)), $n(), yt(),
|
|
3100
|
+
this.sortable.nativeDraggable ? V(document, "dragover", this._handleAutoScroll) : (V(document, "pointermove", this._handleFallbackAutoScroll), V(document, "touchmove", this._handleFallbackAutoScroll), V(document, "mousemove", this._handleFallbackAutoScroll)), $n(), yt(), B2();
|
|
3105
3101
|
},
|
|
3106
3102
|
nulling: function() {
|
|
3107
|
-
Dt = Jt = nt = en = ot = qt = Wt = null,
|
|
3103
|
+
Dt = Jt = nt = en = ot = qt = Wt = null, K.length = 0;
|
|
3108
3104
|
},
|
|
3109
3105
|
_handleFallbackAutoScroll: function(o) {
|
|
3110
3106
|
this._handleAutoScroll(o, !0);
|
|
3111
3107
|
},
|
|
3112
3108
|
_handleAutoScroll: function(o, n) {
|
|
3113
3109
|
var i = this, a = (o.touches ? o.touches[0] : o).clientX, l = (o.touches ? o.touches[0] : o).clientY, r = document.elementFromPoint(a, l);
|
|
3114
|
-
if (Dt = o, n || this.options.forceAutoScrollFallback || ut ||
|
|
3110
|
+
if (Dt = o, n || this.options.forceAutoScrollFallback || ut || Me || it) {
|
|
3115
3111
|
Yt(o, this.options, r, n);
|
|
3116
|
-
var s =
|
|
3112
|
+
var s = Ne(r, !0);
|
|
3117
3113
|
en && (!ot || a !== qt || l !== Wt) && (ot && $n(), ot = setInterval(function() {
|
|
3118
|
-
var u =
|
|
3114
|
+
var u = Ne(document.elementFromPoint(a, l), !0);
|
|
3119
3115
|
u !== s && (s = u, yt()), Yt(o, i.options, u, n);
|
|
3120
3116
|
}, 10), qt = a, Wt = l);
|
|
3121
3117
|
} else {
|
|
3122
|
-
if (!this.options.bubbleScroll ||
|
|
3118
|
+
if (!this.options.bubbleScroll || Ne(r, !0) === De()) {
|
|
3123
3119
|
yt();
|
|
3124
3120
|
return;
|
|
3125
3121
|
}
|
|
3126
|
-
Yt(o, this.options,
|
|
3122
|
+
Yt(o, this.options, Ne(r, !1), !1);
|
|
3127
3123
|
}
|
|
3128
3124
|
}
|
|
3129
3125
|
}, Le(e, {
|
|
@@ -3132,9 +3128,9 @@ function J2() {
|
|
|
3132
3128
|
});
|
|
3133
3129
|
}
|
|
3134
3130
|
function yt() {
|
|
3135
|
-
|
|
3131
|
+
K.forEach(function(e) {
|
|
3136
3132
|
clearInterval(e.pid);
|
|
3137
|
-
}),
|
|
3133
|
+
}), K = [];
|
|
3138
3134
|
}
|
|
3139
3135
|
function $n() {
|
|
3140
3136
|
clearInterval(ot);
|
|
@@ -3142,23 +3138,23 @@ function $n() {
|
|
|
3142
3138
|
var Yt = Vn(function(e, t, o, n) {
|
|
3143
3139
|
if (t.scroll) {
|
|
3144
3140
|
var i = (e.touches ? e.touches[0] : e).clientX, a = (e.touches ? e.touches[0] : e).clientY, l = t.scrollSensitivity, r = t.scrollSpeed, s = De(), u = !1, f;
|
|
3145
|
-
Jt !== o && (Jt = o, yt(), nt = t.scroll, f = t.scrollFn, nt === !0 && (nt =
|
|
3141
|
+
Jt !== o && (Jt = o, yt(), nt = t.scroll, f = t.scrollFn, nt === !0 && (nt = Ne(o, !0)));
|
|
3146
3142
|
var d = 0, v = nt;
|
|
3147
3143
|
do {
|
|
3148
|
-
var E = v, $ =
|
|
3149
|
-
E === s ? (k = C < R && (
|
|
3144
|
+
var E = v, $ = Q(E), M = $.top, D = $.bottom, O = $.left, b = $.right, C = $.width, g = $.height, k = void 0, w = void 0, R = E.scrollWidth, oe = E.scrollHeight, X = T(E), ue = E.scrollLeft, ie = E.scrollTop;
|
|
3145
|
+
E === s ? (k = C < R && (X.overflowX === "auto" || X.overflowX === "scroll" || X.overflowX === "visible"), w = g < oe && (X.overflowY === "auto" || X.overflowY === "scroll" || X.overflowY === "visible")) : (k = C < R && (X.overflowX === "auto" || X.overflowX === "scroll"), w = g < oe && (X.overflowY === "auto" || X.overflowY === "scroll"));
|
|
3150
3146
|
var me = k && (Math.abs(b - i) <= l && ue + C < R) - (Math.abs(O - i) <= l && !!ue), ce = w && (Math.abs(D - a) <= l && ie + g < oe) - (Math.abs(M - a) <= l && !!ie);
|
|
3151
|
-
if (!
|
|
3147
|
+
if (!K[d])
|
|
3152
3148
|
for (var be = 0; be <= d; be++)
|
|
3153
|
-
|
|
3154
|
-
(
|
|
3149
|
+
K[be] || (K[be] = {});
|
|
3150
|
+
(K[d].vx != me || K[d].vy != ce || K[d].el !== E) && (K[d].el = E, K[d].vx = me, K[d].vy = ce, clearInterval(K[d].pid), (me != 0 || ce != 0) && (u = !0, K[d].pid = setInterval(function() {
|
|
3155
3151
|
n && this.layer === 0 && L.active._onTouchMove(Dt);
|
|
3156
|
-
var
|
|
3157
|
-
typeof f == "function" && f.call(L.dragged.parentNode[pe], we,
|
|
3152
|
+
var Be = K[this.layer].vy ? K[this.layer].vy * r : 0, we = K[this.layer].vx ? K[this.layer].vx * r : 0;
|
|
3153
|
+
typeof f == "function" && f.call(L.dragged.parentNode[pe], we, Be, e, Dt, K[this.layer].el) !== "continue" || jn(K[this.layer].el, we, Be);
|
|
3158
3154
|
}.bind({
|
|
3159
3155
|
layer: d
|
|
3160
3156
|
}), 24))), d++;
|
|
3161
|
-
} while (t.bubbleScroll && v !== s && (v =
|
|
3157
|
+
} while (t.bubbleScroll && v !== s && (v = Ne(v, !1)));
|
|
3162
3158
|
en = u;
|
|
3163
3159
|
}
|
|
3164
3160
|
}, 30), Wn = function(t) {
|
|
@@ -3204,32 +3200,32 @@ un.prototype = {
|
|
|
3204
3200
|
Le(un, {
|
|
3205
3201
|
pluginName: "removeOnSpill"
|
|
3206
3202
|
});
|
|
3207
|
-
L.mount(new
|
|
3203
|
+
L.mount(new U2());
|
|
3208
3204
|
L.mount(un, sn);
|
|
3209
|
-
function
|
|
3205
|
+
function K2(e, t) {
|
|
3210
3206
|
return Object.values(e).indexOf(t);
|
|
3211
3207
|
}
|
|
3212
|
-
function
|
|
3208
|
+
function Q2(e, t, o, n) {
|
|
3213
3209
|
if (!e)
|
|
3214
3210
|
return [];
|
|
3215
3211
|
const i = Object.values(e), a = t.length - n;
|
|
3216
3212
|
return [...t].map((r, s) => s >= a ? i.length : i.indexOf(r));
|
|
3217
3213
|
}
|
|
3218
|
-
function
|
|
3214
|
+
function J2(e) {
|
|
3219
3215
|
return ["transition-group", "TransitionGroup"].includes(e);
|
|
3220
3216
|
}
|
|
3221
3217
|
function Dn(e) {
|
|
3222
3218
|
if (!e || e.length !== 1)
|
|
3223
3219
|
return !1;
|
|
3224
3220
|
const [{ type: t }] = e;
|
|
3225
|
-
return t ?
|
|
3221
|
+
return t ? J2(t.name) : !1;
|
|
3226
3222
|
}
|
|
3227
|
-
function
|
|
3223
|
+
function ea(e, t) {
|
|
3228
3224
|
return t ? { ...t.props, ...t.attrs } : e;
|
|
3229
3225
|
}
|
|
3230
|
-
const tn = ["Start", "Add", "Remove", "Update", "End"], nn = ["Choose", "Unchoose", "Sort", "Filter", "Clone"],
|
|
3226
|
+
const tn = ["Start", "Add", "Remove", "Update", "End"], nn = ["Choose", "Unchoose", "Sort", "Filter", "Clone"], ta = ["Move", ...tn, ...nn].map((e) => "on" + e);
|
|
3231
3227
|
let Xt = null;
|
|
3232
|
-
const
|
|
3228
|
+
const na = j({
|
|
3233
3229
|
name: "VueDraggableNext",
|
|
3234
3230
|
inheritAttrs: !1,
|
|
3235
3231
|
props: {
|
|
@@ -3286,17 +3282,17 @@ const aa = j({
|
|
|
3286
3282
|
if (f.value)
|
|
3287
3283
|
for (const x in y) {
|
|
3288
3284
|
const A = pn(x);
|
|
3289
|
-
|
|
3285
|
+
ta.indexOf(A) === -1 && f.value.option(A, y[x]);
|
|
3290
3286
|
}
|
|
3291
3287
|
}
|
|
3292
3288
|
function M() {
|
|
3293
3289
|
return v?.proxy?.$el.children || [];
|
|
3294
3290
|
}
|
|
3295
3291
|
async function D() {
|
|
3296
|
-
await Oe(), s.value =
|
|
3292
|
+
await Oe(), s.value = Q2(M(), v?.proxy?.$el.children || [], i.value, r.value);
|
|
3297
3293
|
}
|
|
3298
3294
|
function O(y) {
|
|
3299
|
-
const x =
|
|
3295
|
+
const x = K2(M() || [], y);
|
|
3300
3296
|
if (x === -1)
|
|
3301
3297
|
return null;
|
|
3302
3298
|
const A = d.value ? d.value[x] : null;
|
|
@@ -3317,7 +3313,7 @@ const aa = j({
|
|
|
3317
3313
|
C((A) => A.splice(...y));
|
|
3318
3314
|
}
|
|
3319
3315
|
function k(y, x) {
|
|
3320
|
-
C((
|
|
3316
|
+
C((te) => te.splice(x, 0, te.splice(y, 1)[0]));
|
|
3321
3317
|
}
|
|
3322
3318
|
function w(y) {
|
|
3323
3319
|
const x = s.value, A = x.length;
|
|
@@ -3334,7 +3330,7 @@ const aa = j({
|
|
|
3334
3330
|
const A = R();
|
|
3335
3331
|
A && (A.children = [], A.kept = void 0);
|
|
3336
3332
|
}
|
|
3337
|
-
function
|
|
3333
|
+
function X(y) {
|
|
3338
3334
|
D(), u.value = O(y.item), u.value && (y.item._underlying_vm_ = e.clone(u.value.element), Xt = y.item);
|
|
3339
3335
|
}
|
|
3340
3336
|
function ue(y) {
|
|
@@ -3368,60 +3364,60 @@ const aa = j({
|
|
|
3368
3364
|
function be(y) {
|
|
3369
3365
|
return y.__draggable_component__;
|
|
3370
3366
|
}
|
|
3371
|
-
function
|
|
3367
|
+
function Be({ to: y, related: x }) {
|
|
3372
3368
|
const A = be(y);
|
|
3373
3369
|
if (!A)
|
|
3374
3370
|
return { component: A };
|
|
3375
|
-
const
|
|
3376
|
-
if (y !== x &&
|
|
3371
|
+
const te = A.realList, U = { list: te, component: A };
|
|
3372
|
+
if (y !== x && te && A.getUnderlyingVm) {
|
|
3377
3373
|
const ke = A.getUnderlyingVm(x);
|
|
3378
3374
|
if (ke)
|
|
3379
|
-
return Object.assign(ke,
|
|
3375
|
+
return Object.assign(ke, U);
|
|
3380
3376
|
}
|
|
3381
|
-
return
|
|
3377
|
+
return U;
|
|
3382
3378
|
}
|
|
3383
3379
|
function we(y, x) {
|
|
3384
3380
|
const A = [...x.to.children].filter((At) => At.style.display !== "none");
|
|
3385
3381
|
if (A.length === 0)
|
|
3386
3382
|
return 0;
|
|
3387
|
-
const
|
|
3388
|
-
return A.indexOf(Xt) !== -1 || !x.willInsertAfter ?
|
|
3383
|
+
const te = A.indexOf(x.related), U = y.component.getVmIndex(te);
|
|
3384
|
+
return A.indexOf(Xt) !== -1 || !x.willInsertAfter ? U : U + 1;
|
|
3389
3385
|
}
|
|
3390
3386
|
const Ve = () => {
|
|
3391
3387
|
const y = {};
|
|
3392
|
-
tn.forEach((
|
|
3393
|
-
y["on" +
|
|
3394
|
-
}), nn.forEach((
|
|
3395
|
-
y["on" +
|
|
3388
|
+
tn.forEach((U) => {
|
|
3389
|
+
y["on" + U] = Bt(U);
|
|
3390
|
+
}), nn.forEach((U) => {
|
|
3391
|
+
y["on" + U] = Ie.bind(null, U);
|
|
3396
3392
|
});
|
|
3397
|
-
const x = Object.keys(n).reduce((
|
|
3398
|
-
onMove: (
|
|
3393
|
+
const x = Object.keys(n).reduce((U, ke) => (U[pn(ke)] = n[ke], U), {}), A = Object.assign({}, x, y, {
|
|
3394
|
+
onMove: (U, ke) => dt(U, ke)
|
|
3399
3395
|
});
|
|
3400
3396
|
"draggable" in A || (A.draggable = ">*");
|
|
3401
|
-
const
|
|
3402
|
-
|
|
3397
|
+
const te = v?.proxy?.$el.nodeType === 1 ? v.proxy.$el : v?.proxy?.$el.parentElement || null;
|
|
3398
|
+
te && (f.value = new L(te, A), te.__draggable_component__ = v?.proxy, D());
|
|
3403
3399
|
};
|
|
3404
|
-
function
|
|
3400
|
+
function Ie(y, x) {
|
|
3405
3401
|
Oe(() => t(y.toLowerCase(), x));
|
|
3406
3402
|
}
|
|
3407
3403
|
function Bt(y) {
|
|
3408
3404
|
return (x) => {
|
|
3409
3405
|
if (d.value !== null) {
|
|
3410
|
-
const A = "onDrag" + y,
|
|
3411
|
-
|
|
3406
|
+
const A = "onDrag" + y, te = It[A];
|
|
3407
|
+
te && te(x);
|
|
3412
3408
|
}
|
|
3413
|
-
|
|
3409
|
+
Ie(y, x);
|
|
3414
3410
|
};
|
|
3415
3411
|
}
|
|
3416
3412
|
function dt(y, x) {
|
|
3417
3413
|
const A = e.move;
|
|
3418
3414
|
if (!A || !d.value)
|
|
3419
3415
|
return !0;
|
|
3420
|
-
const
|
|
3421
|
-
|
|
3416
|
+
const te = Be(y), U = u.value, ke = we(te, y);
|
|
3417
|
+
U && Object.assign(U, { futureIndex: ke });
|
|
3422
3418
|
const At = Object.assign({}, y, {
|
|
3423
|
-
relatedContext:
|
|
3424
|
-
draggedContext:
|
|
3419
|
+
relatedContext: te,
|
|
3420
|
+
draggedContext: U
|
|
3425
3421
|
});
|
|
3426
3422
|
return A(At, x);
|
|
3427
3423
|
}
|
|
@@ -3429,7 +3425,7 @@ const aa = j({
|
|
|
3429
3425
|
D(), Xt = null;
|
|
3430
3426
|
}
|
|
3431
3427
|
const It = {
|
|
3432
|
-
onDragStart:
|
|
3428
|
+
onDragStart: X,
|
|
3433
3429
|
onDragAdd: ue,
|
|
3434
3430
|
onDragRemove: ie,
|
|
3435
3431
|
onDragUpdate: me,
|
|
@@ -3438,7 +3434,7 @@ const aa = j({
|
|
|
3438
3434
|
};
|
|
3439
3435
|
return Qe(() => {
|
|
3440
3436
|
Ve();
|
|
3441
|
-
}), e.list !== null && e.modelValue !== null &&
|
|
3437
|
+
}), e.list !== null && e.modelValue !== null && w2.error("list props are mutually exclusive! Please set one."), {
|
|
3442
3438
|
getTag: E,
|
|
3443
3439
|
realList: d,
|
|
3444
3440
|
visibleIndexes: s,
|
|
@@ -3457,7 +3453,7 @@ const aa = j({
|
|
|
3457
3453
|
getVmIndex: w,
|
|
3458
3454
|
getComponent: R,
|
|
3459
3455
|
resetTransitionData: oe,
|
|
3460
|
-
onDragStart:
|
|
3456
|
+
onDragStart: X,
|
|
3461
3457
|
onDragAdd: ue,
|
|
3462
3458
|
onDragRemove: ie,
|
|
3463
3459
|
onDragUpdate: me,
|
|
@@ -3467,14 +3463,14 @@ const aa = j({
|
|
|
3467
3463
|
mounted: Ve,
|
|
3468
3464
|
context: u,
|
|
3469
3465
|
sortableInstance: f,
|
|
3470
|
-
getRelatedContextFromMoveEvent:
|
|
3466
|
+
getRelatedContextFromMoveEvent: Be,
|
|
3471
3467
|
getTargetedComponent: be,
|
|
3472
3468
|
computeFutureIndex: we
|
|
3473
3469
|
// ... other exposed functions as needed
|
|
3474
3470
|
};
|
|
3475
3471
|
},
|
|
3476
3472
|
render() {
|
|
3477
|
-
const e = this.getTag(), t =
|
|
3473
|
+
const e = this.getTag(), t = ea(this.$attrs, this.componentData);
|
|
3478
3474
|
if (typeof e == "string") {
|
|
3479
3475
|
const n = this.$slots.default && typeof this.$slots.default == "function" ? this.$slots.default() : null;
|
|
3480
3476
|
return n ? (this.transitionMode = Dn(n), Pt(e, t, n)) : Pt(e, t, []);
|
|
@@ -3486,10 +3482,10 @@ const aa = j({
|
|
|
3486
3482
|
}
|
|
3487
3483
|
return Pt(e, t, o);
|
|
3488
3484
|
}
|
|
3489
|
-
}),
|
|
3485
|
+
}), oa = { class: "flex m-10" }, ia = { class: "sortable-list" }, aa = {
|
|
3490
3486
|
name: "SortableList"
|
|
3491
|
-
},
|
|
3492
|
-
...
|
|
3487
|
+
}, n0 = /* @__PURE__ */ j({
|
|
3488
|
+
...aa,
|
|
3493
3489
|
props: {
|
|
3494
3490
|
list: {
|
|
3495
3491
|
required: !0,
|
|
@@ -3501,9 +3497,9 @@ const aa = j({
|
|
|
3501
3497
|
const o = t, n = (i) => {
|
|
3502
3498
|
o("onDrag", i);
|
|
3503
3499
|
};
|
|
3504
|
-
return (i, a) => (c(), h("div",
|
|
3505
|
-
p("ul",
|
|
3506
|
-
ve(
|
|
3500
|
+
return (i, a) => (c(), h("div", oa, [
|
|
3501
|
+
p("ul", ia, [
|
|
3502
|
+
ve(J(na), {
|
|
3507
3503
|
list: e.list,
|
|
3508
3504
|
onChange: a[0] || (a[0] = (l) => n(e.list))
|
|
3509
3505
|
}, {
|
|
@@ -3530,7 +3526,7 @@ const aa = j({
|
|
|
3530
3526
|
], -1)),
|
|
3531
3527
|
p("div", null, [
|
|
3532
3528
|
l.render ? (c(), N(ye(l.render(l.data)), { key: 0 })) : (c(), h(Z, { key: 1 }, [
|
|
3533
|
-
|
|
3529
|
+
ee(B(l.data), 1)
|
|
3534
3530
|
], 64))
|
|
3535
3531
|
])
|
|
3536
3532
|
]))), 128))
|
|
@@ -3540,10 +3536,10 @@ const aa = j({
|
|
|
3540
3536
|
])
|
|
3541
3537
|
]));
|
|
3542
3538
|
}
|
|
3543
|
-
}),
|
|
3539
|
+
}), la = ["disabled"], ra = ["src", "alt"], sa = {
|
|
3544
3540
|
name: "SSOButton"
|
|
3545
3541
|
}, Yn = /* @__PURE__ */ j({
|
|
3546
|
-
...
|
|
3542
|
+
...sa,
|
|
3547
3543
|
props: {
|
|
3548
3544
|
alignCenter: Boolean,
|
|
3549
3545
|
alternativeText: {
|
|
@@ -3587,14 +3583,14 @@ const aa = j({
|
|
|
3587
3583
|
p("img", {
|
|
3588
3584
|
src: e.imageSource,
|
|
3589
3585
|
alt: e.alternativeText
|
|
3590
|
-
}, null, 8,
|
|
3586
|
+
}, null, 8, ra),
|
|
3591
3587
|
p("span", null, B(e.title), 1)
|
|
3592
|
-
], 10,
|
|
3588
|
+
], 10, la));
|
|
3593
3589
|
}
|
|
3594
|
-
}), fa = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20width='2084'%20height='2084'%3e%3cpath%20d='M0%200%20C1.15764862%200.00060425%202.31529724%200.0012085%203.50802612%200.00183105%20C85.98260722%200.11720669%20167.94255485%209.87604579%20248.125%2029.1875%20C248.86457947%2029.36476624%20249.60415894%2029.54203247%20250.3661499%2029.72467041%20C334.62230969%2049.9574737%20416.80768306%2081.42007316%20533.125%20145.1875%20C534.02105957%20145.70908691%20534.91711914%20146.23067383%20535.84033203%20146.76806641%20C550.04886476%20155.0696507%20563.74211052%20164.13646225%20577.4375%20173.25%20C578.32679199%20173.8407431%20579.21608398%20174.43148621%20580.13232422%20175.04013062%20C591.69483528%20182.73135096%20603.0720229%20190.63196121%20614.27706909%20198.8354187%20C616.67050493%20200.58663127%20619.07390043%20202.32397661%20621.4765625%20204.0625%20C630.31030376%20210.50445197%20638.91838886%20217.148823%20647.35546875%20224.1015625%20C650.93712446%20227.05029675%20654.58513462%20229.90587171%20658.25%20232.75%20C664.80446613%20237.85872335%20671.10574818%20243.23251579%20677.37939453%20248.68017578%20C679.10687975%20250.17185322%20680.84590215%20251.64870526%20682.58984375%20253.12109375%20C689.5490538%20259.00754793%20696.29865442%20265.06950894%20702.93237305%20271.32104492%20C706.02875784%20274.23828319%20709.1375661%20277.11327067%20712.375%20279.875%20C716.13510937%20283.10378956%20719.58790586%20286.62314338%20723.06616211%20290.14794922%20C725.6075653%20292.71084883%20728.18211543%20295.16942847%20730.9375%20297.5%20C739.34322101%20304.69001756%20747.21573722%20312.7580678%20754.35546875%20321.19921875%20C756.67272617%20323.80293625%20759.14521445%20326.24047964%20761.625%20328.6875%20C765.32908948%20332.34742653%20768.87787767%20336.07693794%20772.2578125%20340.0390625%20C774.15320841%20342.21995738%20776.1052652%20344.34205746%20778.07080078%20346.4597168%20C782.90200954%20351.66642948%20787.48561882%20356.99917793%20791.94140625%20362.53515625%20C794.11897068%20365.18017637%20796.37818763%20367.71962525%20798.6875%20370.25%20C802.24142208%20374.1587026%20805.5852216%20378.17351283%20808.8515625%20382.32421875%20C810.55603659%20384.47091893%20812.27757011%20386.59447521%20814.0234375%20388.70703125%20C821.23010316%20397.44393263%20828.06132486%20406.39389068%20834.73046875%20415.546875%20C837.30174324%20419.07576257%20839.91615421%20422.56735039%20842.56005859%20426.04199219%20C855.57684339%20443.17700697%20867.54995923%20461.05622605%20879.125%20479.1875%20C879.62451172%20479.96512695%20880.12402344%20480.74275391%20880.63867188%20481.54394531%20C897.58381654%20507.93121546%20913.09593508%20535.18898842%20927.46484375%20563.05859375%20C929.00770036%20566.04920309%20930.5667459%20569.02569169%20932.19140625%20571.97265625%20C939.19339133%20584.70486712%20945.14022162%20597.95559111%20951.125%20611.1875%20C951.41070862%20611.81843567%20951.69641724%20612.44937134%20951.99078369%20613.09942627%20C984.41326204%20684.79659167%201008.53753875%20760.05556022%201037.8125%20926.75%20C1037.95767059%20928.00706253%201037.95767059%20928.00706253%201038.10577393%20929.28952026%20C1042.18612959%20965.02273189%201043.64357089%201000.92112464%201043.51611328%201036.86474609%20C1043.49902324%201041.71699519%201043.50922796%201046.56874997%201043.52643585%201051.42098236%20C1043.58875603%201072.22474355%201043.121671%201092.92627467%201041.7421875%201113.6875%20C1041.68073925%201114.61345474%201041.619291%201115.53940948%201041.55598068%201116.49342346%20C1035.0007366%201213.08026312%201014.38267632%201308.16853%20966.125%201439.1875%20C965.74018463%201440.10187836%20965.74018463%201440.10187836%20965.34759521%201441.034729%20C949.45738809%201478.73766744%20932.25383656%201516.09689741%20911.67675781%201551.49414062%20C910.07835791%201554.26845588%20908.51530634%201557.06017358%20906.9609375%201559.859375%20C895.54802769%201580.39389385%20882.94822692%201600.0776952%20869.9375%201619.625%20C869.44011322%201620.37300873%20868.94272644%201621.12101746%20868.43026733%201621.89169312%20C858.68653626%201636.525895%20848.74118479%201651.01255917%20838%201664.9375%20C837.32259766%201665.82091064%20836.64519531%201666.70432129%20835.94726562%201667.61450195%20C834.61307186%201669.35362798%20833.27752794%201671.09171932%20831.94042969%201672.82861328%20C830.34444691%201674.90236067%20828.75291154%201676.97937968%20827.1640625%201679.05859375%20C822.23462047%201685.50301824%20817.23152617%201691.88240063%20812.125%201698.1875%20C811.44050781%201699.03570313%20810.75601562%201699.88390625%20810.05078125%201700.7578125%20C804.87991842%201707.12623602%20799.5782563%201713.37313801%20794.22265625%201719.5859375%20C792.19755881%201721.93532976%20790.1847527%201724.2942514%20788.18359375%201726.6640625%20C781.38039056%201734.70287081%20774.30783235%201742.44088746%20767.07495117%201750.09399414%20C765.68090087%201751.59067391%20764.30252896%201753.10201885%20762.93481445%201754.62280273%20C754.62146255%201763.84397622%20745.8602102%201772.6040054%20737.07202148%201781.37084961%20C734.4290134%201784.0084693%20731.79143019%201786.6514299%20729.15429688%201789.29492188%20C727.45344575%201790.9951126%20725.75228466%201792.69499331%20724.05078125%201794.39453125%20C723.27350174%201795.17383499%20722.49622223%201795.95313873%20721.69538879%201796.75605774%20C717.55441138%201800.87950727%20713.33600026%201804.84794915%20708.89880371%201808.65180969%20C705.95478417%201811.20062738%20703.14452257%201813.89078831%20700.3125%201816.5625%20C695.28811299%201821.26903274%20690.13516609%201825.71608064%20684.7578125%201830.01953125%20C682.01530846%201832.27782463%20679.4156241%201834.64531334%20676.8125%201837.0625%20C672.28436424%201841.22556682%20667.58986729%201845.04964306%20662.72802734%201848.80688477%20C658.76816735%201851.87383515%20654.89260927%201855.02304957%20651.04980469%201858.23535156%20C642.11958177%201865.69578282%20632.89061882%201872.64530815%20623.47070312%201879.47265625%20C621.25005402%201881.09607833%20619.05139889%201882.74445617%20616.859375%201884.40625%20C601.99002628%201895.6324397%20586.41223305%201905.80978513%20570.85534668%201916.04760742%20C568.60118411%201917.5325718%20566.3516835%201919.0245461%20564.1015625%201920.515625%20C544.67940459%201933.3113726%20524.47697034%201944.94533071%20504.125%201956.1875%20C502.63226562%201957.01217773%20502.63226562%201957.01217773%20501.109375%201957.85351562%20C425.12550951%201999.65428426%20344.00442425%202031.25797004%20139.19140625%202076.15625%20C138.04930191%202076.3149482%20138.04930191%202076.3149482%20136.88412476%202076.47685242%20C133.5828542%202076.92098977%20130.46476193%202077.1875%20127.125%202077.1875%20C127.125%201840.5775%20127.125%201603.9675%20127.125%201360.1875%20C220.185%201360.1875%20313.245%201360.1875%20409.125%201360.1875%20C409.455%201357.2175%20409.785%201354.2475%20410.125%201351.1875%20C410.51943974%201348.75034978%20410.94040505%201346.31734207%20411.38798523%201343.88938904%20C411.51213267%201343.21104765%20411.63628011%201342.53270626%20411.7641896%201341.83380908%20C412.17662934%201339.58452582%20412.59355551%201337.33609905%20413.01049805%201335.08764648%20C413.31060355%201333.45620854%20413.61042778%201331.82471884%20413.90999508%201330.19318199%20C414.7269403%201325.74827455%20415.54779155%201321.30409627%20416.3692956%201316.86002946%20C417.24572562%201312.11485646%20418.11843243%201307.36899873%20418.99154663%201302.62321472%20C420.48537353%201294.50627273%20421.9814042%201286.38973962%20423.47903442%201278.27349854%20C425.81168262%201265.63190818%20428.14049765%201252.98961352%20430.46850586%201240.34716797%20C431.24634234%201236.12322799%20432.02419399%201231.8992908%20432.80204773%201227.675354%20C432.994336%201226.63115295%20433.18662427%201225.5869519%20433.38473946%201224.5111084%20C434.5517232%201218.17414514%20435.71909736%201211.83725394%20436.88678104%201205.50041962%20C441.55237596%201180.18084381%20446.20685276%201154.85928396%20450.83816981%201129.53341508%20C451.36915395%201126.62995752%20451.90032052%201123.72653335%20452.43148345%201120.82310849%20C454.7135128%201108.34887001%20456.99400124%201095.87435226%20459.2702446%201083.39905643%20C460.11947451%201078.74719247%20460.97040771%201074.09564133%20461.82182693%201069.44417763%20C462.20864513%201067.32864122%20462.59468226%201065.21296182%20462.97986984%201063.09712791%20C463.49512112%201060.26702672%20464.01297143%201057.43741349%20464.53149414%201054.60791016%20C464.7546708%201053.37627467%20464.7546708%201053.37627467%20464.98235607%201052.11975765%20C465.54550464%201049.05918558%20466.13944488%201046.14416537%20467.125%201043.1875%20C354.925%201043.1875%20242.725%201043.1875%20127.125%201043.1875%20C127.125%20820.4875%20127.125%20820.4875%20166.125%20767.1875%20C166.7334375%20766.33671875%20167.341875%20765.4859375%20167.96875%20764.609375%20C199.0356318%20723.45938244%20248.58254326%20706.8968135%20297.84375%20699.99609375%20C322.20646732%20696.77183572%20346.69767153%20695.99322627%20371.25%20696.0625%20C372.24480377%20696.0640509%20373.23960754%20696.06560181%20374.26455688%20696.06719971%20C403.35847437%20696.11952535%20432.44731149%20696.57260512%20461.5%20698.1875%20C462.25566254%20698.22929382%20463.01132507%20698.27108765%20463.78988647%20698.31414795%20C470.62665266%20698.70012868%20477.33423541%20699.21739077%20484.125%20700.1875%20C484.125%20605.1475%20484.125%20510.1075%20484.125%20412.1875%20C481.485%20411.8575%20478.845%20411.5275%20476.125%20411.1875%20C473.70350389%20410.74024359%20471.28672476%20410.26678913%20468.875%20409.76953125%20C467.46953422%20409.4842065%20466.06392837%20409.19957106%20464.65820312%20408.91552734%20C463.922229%20408.76637878%20463.18625488%20408.61723022%20462.42797852%20408.46356201%20C418.7251371%20399.6667031%20374.4681051%20394.56312206%20330.0625%20390.9375%20C329.04600372%20390.85441589%20328.02950745%20390.77133179%20326.98220825%20390.68572998%20C320.36555577%20390.15035922%20313.7468795%20389.65356543%20307.125%20389.1875%20C306.36406036%20389.13201996%20305.60312073%20389.07653992%20304.81912231%20389.01937866%20C288.301523%20387.84651093%20271.73733416%20387.98693467%20255.1875%20388%20C254.05323767%20388.00040031%20254.05323767%20388.00040031%20252.89606094%20388.00080872%20C229.91924016%20388.01099063%20207.02914183%20388.18285444%20184.125%20390.1875%20C183.00738281%20390.28224609%20183.00738281%20390.28224609%20181.8671875%20390.37890625%20C114.16045062%20396.12440306%2047.41054353%20409.25726526%20-14.875%20437.1875%20C-16.27419678%20437.81374268%20-16.27419678%20437.81374268%20-17.70166016%20438.45263672%20C-44.8755615%20450.73179164%20-70.7002496%20466.38909731%20-93.875%20485.1875%20C-94.78636719%20485.90808594%20-95.69773437%20486.62867188%20-96.63671875%20487.37109375%20C-114.16450229%20501.39832137%20-131.13485733%20517.41657747%20-144.875%20535.1875%20C-145.78582026%20536.30083746%20-146.70012221%20537.41133222%20-147.6171875%20538.51953125%20C-202.325014%20604.95432352%20-228.49253665%20690.27902932%20-246.625%20832.0625%20C-246.68425659%20832.8826358%20-246.74351318%20833.70277161%20-246.80456543%20834.54776001%20C-248.70329112%20861.39656802%20-249.05219436%20888.25161023%20-249.17891693%20915.15448761%20C-249.198928%20919.23179463%20-249.22365365%20923.30906858%20-249.2479248%20927.38635254%20C-249.31571778%20939.21587622%20-249.37618676%20951.04544096%20-249.4375%20962.875%20C-249.581875%20989.378125%20-249.72625%201015.88125%20-249.875%201043.1875%20C-320.825%201043.1875%20-391.775%201043.1875%20-464.875%201043.1875%20C-464.875%201147.7975%20-464.875%201252.4075%20-464.875%201360.1875%20C-393.925%201360.1875%20-322.975%201360.1875%20-249.875%201360.1875%20C-249.875%201589.2075%20-249.875%201818.2275%20-249.875%202054.1875%20C-270.62367633%202049.57668304%20-270.62367633%202049.57668304%20-277.3359375%202047.59375%20C-278.12266342%202047.36577728%20-278.90938934%202047.13780457%20-279.71995544%202046.90292358%20C-282.23215489%202046.17167304%20-284.74129526%202045.43064444%20-287.25%202044.6875%20C-288.12707611%202044.42938538%20-289.00415222%202044.17127075%20-289.9078064%202043.90533447%20C-307.71271842%202038.65736425%20-325.33810391%202032.92982037%20-342.88323975%202026.8737793%20C-344.78762714%202026.21760512%20-346.69382179%202025.56668313%20-348.60009766%202024.91601562%20C-386.39071379%202011.98422192%20-423.03805933%201995.76788599%20-458.875%201978.1875%20C-460.08801596%201977.59464997%20-461.30107048%201977.00187885%20-462.51416016%201976.40917969%20C-478.32368152%201968.67434904%20-493.85789195%201960.60770523%20-509.09521484%201951.78466797%20C-511.96370924%201950.13653075%20-514.8478377%201948.51946121%20-517.73828125%201946.91015625%20C-529.19760797%201940.52415668%20-540.40320532%201933.86804094%20-551.42675781%201926.75732422%20C-554.02158841%201925.09350683%20-556.63012701%201923.45302978%20-559.2421875%201921.81640625%20C-570.92292696%201914.48148611%20-582.3192026%201906.8345234%20-593.55371094%201898.83398438%20C-595.74838809%201897.2773055%20-597.95339131%201895.73697652%20-600.1640625%201894.203125%20C-610.85023778%201886.77100591%20-621.20735707%201878.93827558%20-631.52050781%201870.99853516%20C-633.58006511%201869.41435888%20-635.64392053%201867.83613925%20-637.7109375%201866.26171875%20C-647.39068031%201858.87917139%20-656.7664934%201851.16037524%20-666.03686523%201843.27368164%20C-669.46521372%201840.36174562%20-672.93465337%201837.50993757%20-676.4375%201834.6875%20C-681.51539439%201830.55708445%20-686.32063853%201826.17918232%20-691.1171875%201821.73046875%20C-693.27840548%201819.73761761%20-695.45846969%201817.79042215%20-697.6875%201815.875%20C-707.03725713%201807.75496041%20-715.97948201%201799.16676038%20-724.67578125%201790.35546875%20C-727.32888836%201787.74006121%20-730.11690846%201785.32121245%20-732.94140625%201782.89453125%20C-737.6422449%201778.74449794%20-741.99477244%201774.2690599%20-746.0625%201769.5%20C-749.31932797%201765.70411085%20-752.82135682%201762.20154687%20-756.375%201758.6875%20C-760.41419926%201754.68856796%20-764.33221615%201750.66891397%20-768.01171875%201746.33203125%20C-770.01595855%201744.02526469%20-772.08841257%201741.79447697%20-774.17431641%201739.56176758%20C-779.24905932%201734.12926079%20-784.08240797%201728.59009671%20-788.73828125%201722.7890625%20C-790.83382494%201720.23763271%20-793.01463155%201717.80423227%20-795.25%201715.375%20C-799.23008466%201711.00241564%20-802.88847497%201706.44580709%20-806.50952148%201701.77758789%20C-809.51028782%201697.91192218%20-812.56461153%201694.09842864%20-815.66894531%201690.31542969%20C-827.35908879%201676.06915264%20-838.17666647%201661.18693681%20-848.875%201646.1875%20C-849.71417969%201645.0121167%20-849.71417969%201645.0121167%20-850.5703125%201643.81298828%20C-860.04321275%201630.50929475%20-869.07734538%201616.94618682%20-877.875%201603.1875%20C-878.4952002%201602.21796387%20-879.11540039%201601.24842773%20-879.75439453%201600.24951172%20C-894.48377963%201577.14060668%20-908.02989957%201553.38947828%20-920.875%201529.1875%20C-921.41946777%201528.1670459%20-921.96393555%201527.1465918%20-922.52490234%201526.09521484%20C-950.92205251%201472.73772329%20-973.77638387%201416.81788606%20-992.20300293%201359.27978516%20C-992.84281907%201357.28769639%20-993.48916038%201355.2978585%20-994.13769531%201353.30859375%20C-1021.07962966%201270.16357352%20-1034.75061722%201183.25969817%20-1039.875%201096.1875%20C-1039.98303955%201094.41971191%20-1039.98303955%201094.41971191%20-1040.09326172%201092.61621094%20C-1045.63647387%20997.60231986%20-1035.95069819%20900.80955586%20-988.55480957%20714.24517822%20C-987.91148971%20712.29794869%20-987.27345606%20710.34897503%20-986.63574219%20708.39990234%20C-972.198078%20664.45683716%20-953.94499844%20621.94702594%20-933.50244141%20580.48925781%20C-931.92365217%20577.28620566%20-930.35774073%20574.07710499%20-928.79296875%20570.8671875%20C-922.47719203%20557.98975189%20-915.66417948%20545.46930097%20-908.50732422%20533.04199219%20C-906.88104815%20530.19807658%20-905.28202374%20527.34055521%20-903.69140625%20524.4765625%20C-886.12900281%20492.89821761%20-866.14484941%20462.40194511%20-844.875%20433.1875%20C-844.04911377%20432.04933838%20-844.04911377%20432.04933838%20-843.20654297%20430.88818359%20C-836.06130995%20421.05881457%20-828.7732954%20411.3658484%20-821.20166016%20401.86132812%20C-819.83665981%20400.13912673%20-818.48504984%20398.40715176%20-817.13671875%20396.671875%20C-812.17288962%20390.29043596%20-807.11257707%20384.01899817%20-801.859375%20377.87304688%20C-798.97588109%20374.499359%20-796.15862156%20371.08223817%20-793.375%20367.625%20C-789.24809794%20362.55142507%20-784.87397442%20357.75008858%20-780.4296875%20352.95703125%20C-778.37386278%20350.72831607%20-776.35883043%20348.47982081%20-774.375%20346.1875%20C-770.15531164%20341.33087754%20-765.80192045%20336.59811629%20-761.43359375%20331.87548828%20C-760.40256762%20330.75886631%20-759.37387963%20329.64008046%20-758.34765625%20328.51904297%20C-749.45659923%20318.81038563%20-740.23533473%20309.44175692%20-730.9375%20300.125%20C-730.35145996%20299.53637177%20-729.76541992%20298.94774353%20-729.16162109%20298.34127808%20C-717.61447074%20286.75390994%20-717.61447074%20286.75390994%20-711.50756836%20281.60571289%20C-709.70928757%20280.04354553%20-708.04247572%20278.38787503%20-706.375%20276.6875%20C-703.40764677%20273.67336418%20-700.30154708%20270.88832667%20-697.09765625%20268.12890625%20C-694.54523117%20265.89945939%20-692.05612486%20263.60748618%20-689.5625%20261.3125%20C-685.09977168%20257.24209944%20-680.51242%20253.38573091%20-675.8125%20249.59375%20C-672.51145806%20246.889705%20-669.28754385%20244.10617139%20-666.0625%20241.3125%20C-659.73423409%20235.85005238%20-653.2238193%20230.66076967%20-646.61621094%20225.54199219%20C-644.88545643%20224.19563408%20-643.16395475%20222.83833893%20-641.4453125%20221.4765625%20C-633.37371493%20215.0832974%20-625.20347731%20208.83326471%20-616.92724609%20202.70703125%20C-615.59760536%20201.72253399%20-614.26969096%20200.73569917%20-612.94384766%20199.74609375%20C-591.09427344%20183.46841045%20-568.10643973%20168.4136987%20-544.875%20154.1875%20C-544.10043457%20153.71231934%20-543.32586914%20153.23713867%20-542.52783203%20152.74755859%20C-529.15844276%20144.57334691%20-515.5714239%20136.79891975%20-501.875%20129.1875%20C-500.9586377%20128.67638672%20-500.04227539%20128.16527344%20-499.09814453%20127.63867188%20C-471.10385829%20112.0735903%20-442.34223185%2097.74699667%20-412.875%2085.1875%20C-412.1618866%2084.88326111%20-411.44877319%2084.57902222%20-410.71405029%2084.26556396%20C-385.762709%2073.64318405%20-360.52997695%2063.97343221%20-334.875%2055.1875%20C-334.15306458%2054.93997986%20-333.43112915%2054.69245972%20-332.68731689%2054.43743896%20C-249.37478965%2025.95429945%20-162.18869196%208.98545156%200%200%20Z%20'%20fill='%23FFFFFF'%20transform='translate(1040.875,-0.1875)'/%3e%3c/svg%3e", ha = {
|
|
3590
|
+
}), ua = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20width='2084'%20height='2084'%3e%3cpath%20d='M0%200%20C1.15764862%200.00060425%202.31529724%200.0012085%203.50802612%200.00183105%20C85.98260722%200.11720669%20167.94255485%209.87604579%20248.125%2029.1875%20C248.86457947%2029.36476624%20249.60415894%2029.54203247%20250.3661499%2029.72467041%20C334.62230969%2049.9574737%20416.80768306%2081.42007316%20533.125%20145.1875%20C534.02105957%20145.70908691%20534.91711914%20146.23067383%20535.84033203%20146.76806641%20C550.04886476%20155.0696507%20563.74211052%20164.13646225%20577.4375%20173.25%20C578.32679199%20173.8407431%20579.21608398%20174.43148621%20580.13232422%20175.04013062%20C591.69483528%20182.73135096%20603.0720229%20190.63196121%20614.27706909%20198.8354187%20C616.67050493%20200.58663127%20619.07390043%20202.32397661%20621.4765625%20204.0625%20C630.31030376%20210.50445197%20638.91838886%20217.148823%20647.35546875%20224.1015625%20C650.93712446%20227.05029675%20654.58513462%20229.90587171%20658.25%20232.75%20C664.80446613%20237.85872335%20671.10574818%20243.23251579%20677.37939453%20248.68017578%20C679.10687975%20250.17185322%20680.84590215%20251.64870526%20682.58984375%20253.12109375%20C689.5490538%20259.00754793%20696.29865442%20265.06950894%20702.93237305%20271.32104492%20C706.02875784%20274.23828319%20709.1375661%20277.11327067%20712.375%20279.875%20C716.13510937%20283.10378956%20719.58790586%20286.62314338%20723.06616211%20290.14794922%20C725.6075653%20292.71084883%20728.18211543%20295.16942847%20730.9375%20297.5%20C739.34322101%20304.69001756%20747.21573722%20312.7580678%20754.35546875%20321.19921875%20C756.67272617%20323.80293625%20759.14521445%20326.24047964%20761.625%20328.6875%20C765.32908948%20332.34742653%20768.87787767%20336.07693794%20772.2578125%20340.0390625%20C774.15320841%20342.21995738%20776.1052652%20344.34205746%20778.07080078%20346.4597168%20C782.90200954%20351.66642948%20787.48561882%20356.99917793%20791.94140625%20362.53515625%20C794.11897068%20365.18017637%20796.37818763%20367.71962525%20798.6875%20370.25%20C802.24142208%20374.1587026%20805.5852216%20378.17351283%20808.8515625%20382.32421875%20C810.55603659%20384.47091893%20812.27757011%20386.59447521%20814.0234375%20388.70703125%20C821.23010316%20397.44393263%20828.06132486%20406.39389068%20834.73046875%20415.546875%20C837.30174324%20419.07576257%20839.91615421%20422.56735039%20842.56005859%20426.04199219%20C855.57684339%20443.17700697%20867.54995923%20461.05622605%20879.125%20479.1875%20C879.62451172%20479.96512695%20880.12402344%20480.74275391%20880.63867188%20481.54394531%20C897.58381654%20507.93121546%20913.09593508%20535.18898842%20927.46484375%20563.05859375%20C929.00770036%20566.04920309%20930.5667459%20569.02569169%20932.19140625%20571.97265625%20C939.19339133%20584.70486712%20945.14022162%20597.95559111%20951.125%20611.1875%20C951.41070862%20611.81843567%20951.69641724%20612.44937134%20951.99078369%20613.09942627%20C984.41326204%20684.79659167%201008.53753875%20760.05556022%201037.8125%20926.75%20C1037.95767059%20928.00706253%201037.95767059%20928.00706253%201038.10577393%20929.28952026%20C1042.18612959%20965.02273189%201043.64357089%201000.92112464%201043.51611328%201036.86474609%20C1043.49902324%201041.71699519%201043.50922796%201046.56874997%201043.52643585%201051.42098236%20C1043.58875603%201072.22474355%201043.121671%201092.92627467%201041.7421875%201113.6875%20C1041.68073925%201114.61345474%201041.619291%201115.53940948%201041.55598068%201116.49342346%20C1035.0007366%201213.08026312%201014.38267632%201308.16853%20966.125%201439.1875%20C965.74018463%201440.10187836%20965.74018463%201440.10187836%20965.34759521%201441.034729%20C949.45738809%201478.73766744%20932.25383656%201516.09689741%20911.67675781%201551.49414062%20C910.07835791%201554.26845588%20908.51530634%201557.06017358%20906.9609375%201559.859375%20C895.54802769%201580.39389385%20882.94822692%201600.0776952%20869.9375%201619.625%20C869.44011322%201620.37300873%20868.94272644%201621.12101746%20868.43026733%201621.89169312%20C858.68653626%201636.525895%20848.74118479%201651.01255917%20838%201664.9375%20C837.32259766%201665.82091064%20836.64519531%201666.70432129%20835.94726562%201667.61450195%20C834.61307186%201669.35362798%20833.27752794%201671.09171932%20831.94042969%201672.82861328%20C830.34444691%201674.90236067%20828.75291154%201676.97937968%20827.1640625%201679.05859375%20C822.23462047%201685.50301824%20817.23152617%201691.88240063%20812.125%201698.1875%20C811.44050781%201699.03570313%20810.75601562%201699.88390625%20810.05078125%201700.7578125%20C804.87991842%201707.12623602%20799.5782563%201713.37313801%20794.22265625%201719.5859375%20C792.19755881%201721.93532976%20790.1847527%201724.2942514%20788.18359375%201726.6640625%20C781.38039056%201734.70287081%20774.30783235%201742.44088746%20767.07495117%201750.09399414%20C765.68090087%201751.59067391%20764.30252896%201753.10201885%20762.93481445%201754.62280273%20C754.62146255%201763.84397622%20745.8602102%201772.6040054%20737.07202148%201781.37084961%20C734.4290134%201784.0084693%20731.79143019%201786.6514299%20729.15429688%201789.29492188%20C727.45344575%201790.9951126%20725.75228466%201792.69499331%20724.05078125%201794.39453125%20C723.27350174%201795.17383499%20722.49622223%201795.95313873%20721.69538879%201796.75605774%20C717.55441138%201800.87950727%20713.33600026%201804.84794915%20708.89880371%201808.65180969%20C705.95478417%201811.20062738%20703.14452257%201813.89078831%20700.3125%201816.5625%20C695.28811299%201821.26903274%20690.13516609%201825.71608064%20684.7578125%201830.01953125%20C682.01530846%201832.27782463%20679.4156241%201834.64531334%20676.8125%201837.0625%20C672.28436424%201841.22556682%20667.58986729%201845.04964306%20662.72802734%201848.80688477%20C658.76816735%201851.87383515%20654.89260927%201855.02304957%20651.04980469%201858.23535156%20C642.11958177%201865.69578282%20632.89061882%201872.64530815%20623.47070312%201879.47265625%20C621.25005402%201881.09607833%20619.05139889%201882.74445617%20616.859375%201884.40625%20C601.99002628%201895.6324397%20586.41223305%201905.80978513%20570.85534668%201916.04760742%20C568.60118411%201917.5325718%20566.3516835%201919.0245461%20564.1015625%201920.515625%20C544.67940459%201933.3113726%20524.47697034%201944.94533071%20504.125%201956.1875%20C502.63226562%201957.01217773%20502.63226562%201957.01217773%20501.109375%201957.85351562%20C425.12550951%201999.65428426%20344.00442425%202031.25797004%20139.19140625%202076.15625%20C138.04930191%202076.3149482%20138.04930191%202076.3149482%20136.88412476%202076.47685242%20C133.5828542%202076.92098977%20130.46476193%202077.1875%20127.125%202077.1875%20C127.125%201840.5775%20127.125%201603.9675%20127.125%201360.1875%20C220.185%201360.1875%20313.245%201360.1875%20409.125%201360.1875%20C409.455%201357.2175%20409.785%201354.2475%20410.125%201351.1875%20C410.51943974%201348.75034978%20410.94040505%201346.31734207%20411.38798523%201343.88938904%20C411.51213267%201343.21104765%20411.63628011%201342.53270626%20411.7641896%201341.83380908%20C412.17662934%201339.58452582%20412.59355551%201337.33609905%20413.01049805%201335.08764648%20C413.31060355%201333.45620854%20413.61042778%201331.82471884%20413.90999508%201330.19318199%20C414.7269403%201325.74827455%20415.54779155%201321.30409627%20416.3692956%201316.86002946%20C417.24572562%201312.11485646%20418.11843243%201307.36899873%20418.99154663%201302.62321472%20C420.48537353%201294.50627273%20421.9814042%201286.38973962%20423.47903442%201278.27349854%20C425.81168262%201265.63190818%20428.14049765%201252.98961352%20430.46850586%201240.34716797%20C431.24634234%201236.12322799%20432.02419399%201231.8992908%20432.80204773%201227.675354%20C432.994336%201226.63115295%20433.18662427%201225.5869519%20433.38473946%201224.5111084%20C434.5517232%201218.17414514%20435.71909736%201211.83725394%20436.88678104%201205.50041962%20C441.55237596%201180.18084381%20446.20685276%201154.85928396%20450.83816981%201129.53341508%20C451.36915395%201126.62995752%20451.90032052%201123.72653335%20452.43148345%201120.82310849%20C454.7135128%201108.34887001%20456.99400124%201095.87435226%20459.2702446%201083.39905643%20C460.11947451%201078.74719247%20460.97040771%201074.09564133%20461.82182693%201069.44417763%20C462.20864513%201067.32864122%20462.59468226%201065.21296182%20462.97986984%201063.09712791%20C463.49512112%201060.26702672%20464.01297143%201057.43741349%20464.53149414%201054.60791016%20C464.7546708%201053.37627467%20464.7546708%201053.37627467%20464.98235607%201052.11975765%20C465.54550464%201049.05918558%20466.13944488%201046.14416537%20467.125%201043.1875%20C354.925%201043.1875%20242.725%201043.1875%20127.125%201043.1875%20C127.125%20820.4875%20127.125%20820.4875%20166.125%20767.1875%20C166.7334375%20766.33671875%20167.341875%20765.4859375%20167.96875%20764.609375%20C199.0356318%20723.45938244%20248.58254326%20706.8968135%20297.84375%20699.99609375%20C322.20646732%20696.77183572%20346.69767153%20695.99322627%20371.25%20696.0625%20C372.24480377%20696.0640509%20373.23960754%20696.06560181%20374.26455688%20696.06719971%20C403.35847437%20696.11952535%20432.44731149%20696.57260512%20461.5%20698.1875%20C462.25566254%20698.22929382%20463.01132507%20698.27108765%20463.78988647%20698.31414795%20C470.62665266%20698.70012868%20477.33423541%20699.21739077%20484.125%20700.1875%20C484.125%20605.1475%20484.125%20510.1075%20484.125%20412.1875%20C481.485%20411.8575%20478.845%20411.5275%20476.125%20411.1875%20C473.70350389%20410.74024359%20471.28672476%20410.26678913%20468.875%20409.76953125%20C467.46953422%20409.4842065%20466.06392837%20409.19957106%20464.65820312%20408.91552734%20C463.922229%20408.76637878%20463.18625488%20408.61723022%20462.42797852%20408.46356201%20C418.7251371%20399.6667031%20374.4681051%20394.56312206%20330.0625%20390.9375%20C329.04600372%20390.85441589%20328.02950745%20390.77133179%20326.98220825%20390.68572998%20C320.36555577%20390.15035922%20313.7468795%20389.65356543%20307.125%20389.1875%20C306.36406036%20389.13201996%20305.60312073%20389.07653992%20304.81912231%20389.01937866%20C288.301523%20387.84651093%20271.73733416%20387.98693467%20255.1875%20388%20C254.05323767%20388.00040031%20254.05323767%20388.00040031%20252.89606094%20388.00080872%20C229.91924016%20388.01099063%20207.02914183%20388.18285444%20184.125%20390.1875%20C183.00738281%20390.28224609%20183.00738281%20390.28224609%20181.8671875%20390.37890625%20C114.16045062%20396.12440306%2047.41054353%20409.25726526%20-14.875%20437.1875%20C-16.27419678%20437.81374268%20-16.27419678%20437.81374268%20-17.70166016%20438.45263672%20C-44.8755615%20450.73179164%20-70.7002496%20466.38909731%20-93.875%20485.1875%20C-94.78636719%20485.90808594%20-95.69773437%20486.62867188%20-96.63671875%20487.37109375%20C-114.16450229%20501.39832137%20-131.13485733%20517.41657747%20-144.875%20535.1875%20C-145.78582026%20536.30083746%20-146.70012221%20537.41133222%20-147.6171875%20538.51953125%20C-202.325014%20604.95432352%20-228.49253665%20690.27902932%20-246.625%20832.0625%20C-246.68425659%20832.8826358%20-246.74351318%20833.70277161%20-246.80456543%20834.54776001%20C-248.70329112%20861.39656802%20-249.05219436%20888.25161023%20-249.17891693%20915.15448761%20C-249.198928%20919.23179463%20-249.22365365%20923.30906858%20-249.2479248%20927.38635254%20C-249.31571778%20939.21587622%20-249.37618676%20951.04544096%20-249.4375%20962.875%20C-249.581875%20989.378125%20-249.72625%201015.88125%20-249.875%201043.1875%20C-320.825%201043.1875%20-391.775%201043.1875%20-464.875%201043.1875%20C-464.875%201147.7975%20-464.875%201252.4075%20-464.875%201360.1875%20C-393.925%201360.1875%20-322.975%201360.1875%20-249.875%201360.1875%20C-249.875%201589.2075%20-249.875%201818.2275%20-249.875%202054.1875%20C-270.62367633%202049.57668304%20-270.62367633%202049.57668304%20-277.3359375%202047.59375%20C-278.12266342%202047.36577728%20-278.90938934%202047.13780457%20-279.71995544%202046.90292358%20C-282.23215489%202046.17167304%20-284.74129526%202045.43064444%20-287.25%202044.6875%20C-288.12707611%202044.42938538%20-289.00415222%202044.17127075%20-289.9078064%202043.90533447%20C-307.71271842%202038.65736425%20-325.33810391%202032.92982037%20-342.88323975%202026.8737793%20C-344.78762714%202026.21760512%20-346.69382179%202025.56668313%20-348.60009766%202024.91601562%20C-386.39071379%202011.98422192%20-423.03805933%201995.76788599%20-458.875%201978.1875%20C-460.08801596%201977.59464997%20-461.30107048%201977.00187885%20-462.51416016%201976.40917969%20C-478.32368152%201968.67434904%20-493.85789195%201960.60770523%20-509.09521484%201951.78466797%20C-511.96370924%201950.13653075%20-514.8478377%201948.51946121%20-517.73828125%201946.91015625%20C-529.19760797%201940.52415668%20-540.40320532%201933.86804094%20-551.42675781%201926.75732422%20C-554.02158841%201925.09350683%20-556.63012701%201923.45302978%20-559.2421875%201921.81640625%20C-570.92292696%201914.48148611%20-582.3192026%201906.8345234%20-593.55371094%201898.83398438%20C-595.74838809%201897.2773055%20-597.95339131%201895.73697652%20-600.1640625%201894.203125%20C-610.85023778%201886.77100591%20-621.20735707%201878.93827558%20-631.52050781%201870.99853516%20C-633.58006511%201869.41435888%20-635.64392053%201867.83613925%20-637.7109375%201866.26171875%20C-647.39068031%201858.87917139%20-656.7664934%201851.16037524%20-666.03686523%201843.27368164%20C-669.46521372%201840.36174562%20-672.93465337%201837.50993757%20-676.4375%201834.6875%20C-681.51539439%201830.55708445%20-686.32063853%201826.17918232%20-691.1171875%201821.73046875%20C-693.27840548%201819.73761761%20-695.45846969%201817.79042215%20-697.6875%201815.875%20C-707.03725713%201807.75496041%20-715.97948201%201799.16676038%20-724.67578125%201790.35546875%20C-727.32888836%201787.74006121%20-730.11690846%201785.32121245%20-732.94140625%201782.89453125%20C-737.6422449%201778.74449794%20-741.99477244%201774.2690599%20-746.0625%201769.5%20C-749.31932797%201765.70411085%20-752.82135682%201762.20154687%20-756.375%201758.6875%20C-760.41419926%201754.68856796%20-764.33221615%201750.66891397%20-768.01171875%201746.33203125%20C-770.01595855%201744.02526469%20-772.08841257%201741.79447697%20-774.17431641%201739.56176758%20C-779.24905932%201734.12926079%20-784.08240797%201728.59009671%20-788.73828125%201722.7890625%20C-790.83382494%201720.23763271%20-793.01463155%201717.80423227%20-795.25%201715.375%20C-799.23008466%201711.00241564%20-802.88847497%201706.44580709%20-806.50952148%201701.77758789%20C-809.51028782%201697.91192218%20-812.56461153%201694.09842864%20-815.66894531%201690.31542969%20C-827.35908879%201676.06915264%20-838.17666647%201661.18693681%20-848.875%201646.1875%20C-849.71417969%201645.0121167%20-849.71417969%201645.0121167%20-850.5703125%201643.81298828%20C-860.04321275%201630.50929475%20-869.07734538%201616.94618682%20-877.875%201603.1875%20C-878.4952002%201602.21796387%20-879.11540039%201601.24842773%20-879.75439453%201600.24951172%20C-894.48377963%201577.14060668%20-908.02989957%201553.38947828%20-920.875%201529.1875%20C-921.41946777%201528.1670459%20-921.96393555%201527.1465918%20-922.52490234%201526.09521484%20C-950.92205251%201472.73772329%20-973.77638387%201416.81788606%20-992.20300293%201359.27978516%20C-992.84281907%201357.28769639%20-993.48916038%201355.2978585%20-994.13769531%201353.30859375%20C-1021.07962966%201270.16357352%20-1034.75061722%201183.25969817%20-1039.875%201096.1875%20C-1039.98303955%201094.41971191%20-1039.98303955%201094.41971191%20-1040.09326172%201092.61621094%20C-1045.63647387%20997.60231986%20-1035.95069819%20900.80955586%20-988.55480957%20714.24517822%20C-987.91148971%20712.29794869%20-987.27345606%20710.34897503%20-986.63574219%20708.39990234%20C-972.198078%20664.45683716%20-953.94499844%20621.94702594%20-933.50244141%20580.48925781%20C-931.92365217%20577.28620566%20-930.35774073%20574.07710499%20-928.79296875%20570.8671875%20C-922.47719203%20557.98975189%20-915.66417948%20545.46930097%20-908.50732422%20533.04199219%20C-906.88104815%20530.19807658%20-905.28202374%20527.34055521%20-903.69140625%20524.4765625%20C-886.12900281%20492.89821761%20-866.14484941%20462.40194511%20-844.875%20433.1875%20C-844.04911377%20432.04933838%20-844.04911377%20432.04933838%20-843.20654297%20430.88818359%20C-836.06130995%20421.05881457%20-828.7732954%20411.3658484%20-821.20166016%20401.86132812%20C-819.83665981%20400.13912673%20-818.48504984%20398.40715176%20-817.13671875%20396.671875%20C-812.17288962%20390.29043596%20-807.11257707%20384.01899817%20-801.859375%20377.87304688%20C-798.97588109%20374.499359%20-796.15862156%20371.08223817%20-793.375%20367.625%20C-789.24809794%20362.55142507%20-784.87397442%20357.75008858%20-780.4296875%20352.95703125%20C-778.37386278%20350.72831607%20-776.35883043%20348.47982081%20-774.375%20346.1875%20C-770.15531164%20341.33087754%20-765.80192045%20336.59811629%20-761.43359375%20331.87548828%20C-760.40256762%20330.75886631%20-759.37387963%20329.64008046%20-758.34765625%20328.51904297%20C-749.45659923%20318.81038563%20-740.23533473%20309.44175692%20-730.9375%20300.125%20C-730.35145996%20299.53637177%20-729.76541992%20298.94774353%20-729.16162109%20298.34127808%20C-717.61447074%20286.75390994%20-717.61447074%20286.75390994%20-711.50756836%20281.60571289%20C-709.70928757%20280.04354553%20-708.04247572%20278.38787503%20-706.375%20276.6875%20C-703.40764677%20273.67336418%20-700.30154708%20270.88832667%20-697.09765625%20268.12890625%20C-694.54523117%20265.89945939%20-692.05612486%20263.60748618%20-689.5625%20261.3125%20C-685.09977168%20257.24209944%20-680.51242%20253.38573091%20-675.8125%20249.59375%20C-672.51145806%20246.889705%20-669.28754385%20244.10617139%20-666.0625%20241.3125%20C-659.73423409%20235.85005238%20-653.2238193%20230.66076967%20-646.61621094%20225.54199219%20C-644.88545643%20224.19563408%20-643.16395475%20222.83833893%20-641.4453125%20221.4765625%20C-633.37371493%20215.0832974%20-625.20347731%20208.83326471%20-616.92724609%20202.70703125%20C-615.59760536%20201.72253399%20-614.26969096%20200.73569917%20-612.94384766%20199.74609375%20C-591.09427344%20183.46841045%20-568.10643973%20168.4136987%20-544.875%20154.1875%20C-544.10043457%20153.71231934%20-543.32586914%20153.23713867%20-542.52783203%20152.74755859%20C-529.15844276%20144.57334691%20-515.5714239%20136.79891975%20-501.875%20129.1875%20C-500.9586377%20128.67638672%20-500.04227539%20128.16527344%20-499.09814453%20127.63867188%20C-471.10385829%20112.0735903%20-442.34223185%2097.74699667%20-412.875%2085.1875%20C-412.1618866%2084.88326111%20-411.44877319%2084.57902222%20-410.71405029%2084.26556396%20C-385.762709%2073.64318405%20-360.52997695%2063.97343221%20-334.875%2055.1875%20C-334.15306458%2054.93997986%20-333.43112915%2054.69245972%20-332.68731689%2054.43743896%20C-249.37478965%2025.95429945%20-162.18869196%208.98545156%200%200%20Z%20'%20fill='%23FFFFFF'%20transform='translate(1040.875,-0.1875)'/%3e%3c/svg%3e", ca = {
|
|
3595
3591
|
name: "FacebookSignInButton"
|
|
3596
|
-
},
|
|
3597
|
-
...
|
|
3592
|
+
}, o0 = /* @__PURE__ */ j({
|
|
3593
|
+
...ca,
|
|
3598
3594
|
props: {
|
|
3599
3595
|
baseButtonOptions: {
|
|
3600
3596
|
default: () => ({}),
|
|
@@ -3615,19 +3611,19 @@ const aa = j({
|
|
|
3615
3611
|
},
|
|
3616
3612
|
emits: ["click"],
|
|
3617
3613
|
setup(e) {
|
|
3618
|
-
return (t, o) => (c(), N(Yn,
|
|
3614
|
+
return (t, o) => (c(), N(Yn, le(e.baseButtonOptions, {
|
|
3619
3615
|
disabled: e.disabled,
|
|
3620
|
-
"image-source":
|
|
3616
|
+
"image-source": J(ua),
|
|
3621
3617
|
loading: e.loading,
|
|
3622
3618
|
title: e.title,
|
|
3623
3619
|
class: "facebook",
|
|
3624
3620
|
onClick: o[0] || (o[0] = (n) => t.$emit("click"))
|
|
3625
3621
|
}), null, 16, ["disabled", "image-source", "loading", "title"]));
|
|
3626
3622
|
}
|
|
3627
|
-
}),
|
|
3623
|
+
}), da = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20width='46px'%20height='46px'%20viewBox='0%200%2046%2046'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20xmlns:sketch='http://www.bohemiancoding.com/sketch/ns'%3e%3c!--%20Generator:%20Sketch%203.3.3%20(12081)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3ctitle%3ebtn_google_light_normal_ios%3c/title%3e%3cdesc%3eCreated%20with%20Sketch.%3c/desc%3e%3cdefs%3e%3cfilter%20x='-50%25'%20y='-50%25'%20width='200%25'%20height='200%25'%20filterUnits='objectBoundingBox'%20id='filter-1'%3e%3cfeOffset%20dx='0'%20dy='1'%20in='SourceAlpha'%20result='shadowOffsetOuter1'%3e%3c/feOffset%3e%3cfeGaussianBlur%20stdDeviation='0.5'%20in='shadowOffsetOuter1'%20result='shadowBlurOuter1'%3e%3c/feGaussianBlur%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.168%200'%20in='shadowBlurOuter1'%20type='matrix'%20result='shadowMatrixOuter1'%3e%3c/feColorMatrix%3e%3cfeOffset%20dx='0'%20dy='0'%20in='SourceAlpha'%20result='shadowOffsetOuter2'%3e%3c/feOffset%3e%3cfeGaussianBlur%20stdDeviation='0.5'%20in='shadowOffsetOuter2'%20result='shadowBlurOuter2'%3e%3c/feGaussianBlur%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.084%200'%20in='shadowBlurOuter2'%20type='matrix'%20result='shadowMatrixOuter2'%3e%3c/feColorMatrix%3e%3cfeMerge%3e%3cfeMergeNode%20in='shadowMatrixOuter1'%3e%3c/feMergeNode%3e%3cfeMergeNode%20in='shadowMatrixOuter2'%3e%3c/feMergeNode%3e%3cfeMergeNode%20in='SourceGraphic'%3e%3c/feMergeNode%3e%3c/feMerge%3e%3c/filter%3e%3crect%20id='path-2'%20x='0'%20y='0'%20width='40'%20height='40'%20rx='2'%3e%3c/rect%3e%3c/defs%3e%3cg%20id='Google-Button'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%20sketch:type='MSPage'%3e%3cg%20id='9-PATCH'%20sketch:type='MSArtboardGroup'%20transform='translate(-608.000000,%20-160.000000)'%3e%3c/g%3e%3cg%20id='btn_google_light_normal'%20sketch:type='MSArtboardGroup'%20transform='translate(-1.000000,%20-1.000000)'%3e%3cg%20id='button'%20sketch:type='MSLayerGroup'%20transform='translate(4.000000,%204.000000)'%20filter='url(%23filter-1)'%3e%3cg%20id='button-bg'%3e%3cuse%20fill='%23FFFFFF'%20fill-rule='evenodd'%20sketch:type='MSShapeGroup'%20xlink:href='%23path-2'%3e%3c/use%3e%3cuse%20fill='none'%20xlink:href='%23path-2'%3e%3c/use%3e%3cuse%20fill='none'%20xlink:href='%23path-2'%3e%3c/use%3e%3cuse%20fill='none'%20xlink:href='%23path-2'%3e%3c/use%3e%3c/g%3e%3c/g%3e%3cg%20id='logo_googleg_48dp'%20sketch:type='MSLayerGroup'%20transform='translate(15.000000,%2015.000000)'%3e%3cpath%20d='M17.64,9.20454545%20C17.64,8.56636364%2017.5827273,7.95272727%2017.4763636,7.36363636%20L9,7.36363636%20L9,10.845%20L13.8436364,10.845%20C13.635,11.97%2013.0009091,12.9231818%2012.0477273,13.5613636%20L12.0477273,15.8195455%20L14.9563636,15.8195455%20C16.6581818,14.2527273%2017.64,11.9454545%2017.64,9.20454545%20L17.64,9.20454545%20Z'%20id='Shape'%20fill='%234285F4'%20sketch:type='MSShapeGroup'%3e%3c/path%3e%3cpath%20d='M9,18%20C11.43,18%2013.4672727,17.1940909%2014.9563636,15.8195455%20L12.0477273,13.5613636%20C11.2418182,14.1013636%2010.2109091,14.4204545%209,14.4204545%20C6.65590909,14.4204545%204.67181818,12.8372727%203.96409091,10.71%20L0.957272727,10.71%20L0.957272727,13.0418182%20C2.43818182,15.9831818%205.48181818,18%209,18%20L9,18%20Z'%20id='Shape'%20fill='%2334A853'%20sketch:type='MSShapeGroup'%3e%3c/path%3e%3cpath%20d='M3.96409091,10.71%20C3.78409091,10.17%203.68181818,9.59318182%203.68181818,9%20C3.68181818,8.40681818%203.78409091,7.83%203.96409091,7.29%20L3.96409091,4.95818182%20L0.957272727,4.95818182%20C0.347727273,6.17318182%200,7.54772727%200,9%20C0,10.4522727%200.347727273,11.8268182%200.957272727,13.0418182%20L3.96409091,10.71%20L3.96409091,10.71%20Z'%20id='Shape'%20fill='%23FBBC05'%20sketch:type='MSShapeGroup'%3e%3c/path%3e%3cpath%20d='M9,3.57954545%20C10.3213636,3.57954545%2011.5077273,4.03363636%2012.4404545,4.92545455%20L15.0218182,2.34409091%20C13.4631818,0.891818182%2011.4259091,0%209,0%20C5.48181818,0%202.43818182,2.01681818%200.957272727,4.95818182%20L3.96409091,7.29%20C4.67181818,5.16272727%206.65590909,3.57954545%209,3.57954545%20L9,3.57954545%20Z'%20id='Shape'%20fill='%23EA4335'%20sketch:type='MSShapeGroup'%3e%3c/path%3e%3cpath%20d='M0,0%20L18,0%20L18,18%20L0,18%20L0,0%20Z'%20id='Shape'%20sketch:type='MSShapeGroup'%3e%3c/path%3e%3c/g%3e%3cg%20id='handles_square'%20sketch:type='MSLayerGroup'%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e", fa = {
|
|
3628
3624
|
name: "GoogleSignInButton"
|
|
3629
|
-
},
|
|
3630
|
-
...
|
|
3625
|
+
}, i0 = /* @__PURE__ */ j({
|
|
3626
|
+
...fa,
|
|
3631
3627
|
props: {
|
|
3632
3628
|
baseButtonOptions: {
|
|
3633
3629
|
default: () => ({}),
|
|
@@ -3648,25 +3644,25 @@ const aa = j({
|
|
|
3648
3644
|
},
|
|
3649
3645
|
emits: ["click"],
|
|
3650
3646
|
setup(e) {
|
|
3651
|
-
return (t, o) => (c(), N(Yn,
|
|
3647
|
+
return (t, o) => (c(), N(Yn, le(e.baseButtonOptions, {
|
|
3652
3648
|
disabled: e.disabled,
|
|
3653
|
-
"image-source":
|
|
3649
|
+
"image-source": J(da),
|
|
3654
3650
|
loading: e.loading,
|
|
3655
3651
|
title: e.title,
|
|
3656
3652
|
class: "google",
|
|
3657
3653
|
onClick: o[0] || (o[0] = (n) => t.$emit("click"))
|
|
3658
3654
|
}), null, 16, ["disabled", "image-source", "loading", "title"]));
|
|
3659
3655
|
}
|
|
3660
|
-
}),
|
|
3656
|
+
}), ha = "data:image/svg+xml,%3csvg%20fill='%23007aff'%20height='1rem'%20width='1rem'%20version='1.1'%20id='Capa_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%20490%20490'%20xml:space='preserve'%20stroke='%23007aff'%20%3e%3cg%20stroke-width='0'%3e%3c/g%3e%3cg%20stroke-linecap='round'%20stroke-linejoin='round'%20%3e%3c/g%3e%3cg%3e%3cpolygon%20points='452.253,28.326%20197.831,394.674%2029.044,256.875%200,292.469%20207.253,461.674%20490,54.528%20'%20%3e%3c/polygon%3e%3c/g%3e%3c/svg%3e", pa = { class: "content-wrapper" }, ga = {
|
|
3661
3657
|
key: 0,
|
|
3662
3658
|
class: "content"
|
|
3663
|
-
},
|
|
3659
|
+
}, va = {
|
|
3664
3660
|
key: 0,
|
|
3665
3661
|
class: "actions"
|
|
3666
|
-
},
|
|
3662
|
+
}, ma = {
|
|
3667
3663
|
name: "StepperContent"
|
|
3668
3664
|
}, En = /* @__PURE__ */ j({
|
|
3669
|
-
...
|
|
3665
|
+
...ma,
|
|
3670
3666
|
props: {
|
|
3671
3667
|
activeIndex: {
|
|
3672
3668
|
default: void 0,
|
|
@@ -3688,25 +3684,25 @@ const aa = j({
|
|
|
3688
3684
|
},
|
|
3689
3685
|
emits: ["click:next", "click:previous"],
|
|
3690
3686
|
setup(e) {
|
|
3691
|
-
return (t, o) => (c(), h("div",
|
|
3687
|
+
return (t, o) => (c(), h("div", pa, [
|
|
3692
3688
|
(c(!0), h(Z, null, ge(e.steps, (n, i) => (c(), h(Z, { key: i }, [
|
|
3693
|
-
i === e.activeIndex && n.content ? (c(), h("div",
|
|
3689
|
+
i === e.activeIndex && n.content ? (c(), h("div", ga, [
|
|
3694
3690
|
_(t.$slots, n?.step, {}, () => [
|
|
3695
3691
|
typeof n.content == "string" ? (c(), h(Z, { key: 0 }, [
|
|
3696
|
-
|
|
3692
|
+
ee(B(n.content), 1)
|
|
3697
3693
|
], 64)) : (c(), N(ye(n.content), { key: 1 }))
|
|
3698
3694
|
])
|
|
3699
3695
|
])) : S("", !0)
|
|
3700
3696
|
], 64))), 128)),
|
|
3701
|
-
e.hideButtons ? S("", !0) : (c(), h("div",
|
|
3702
|
-
ve(
|
|
3697
|
+
e.hideButtons ? S("", !0) : (c(), h("div", va, [
|
|
3698
|
+
ve(J(he), le({
|
|
3703
3699
|
disabled: e.activeIndex === 0,
|
|
3704
3700
|
label: "Previous",
|
|
3705
3701
|
variant: "outlined"
|
|
3706
3702
|
}, e.previousButtonProperties, {
|
|
3707
3703
|
onClick: o[0] || (o[0] = (n) => t.$emit("click:previous"))
|
|
3708
3704
|
}), null, 16, ["disabled"]),
|
|
3709
|
-
ve(
|
|
3705
|
+
ve(J(he), le({
|
|
3710
3706
|
label: e.activeIndex === e.steps.length - 1 ? "Finish" : "Next",
|
|
3711
3707
|
severity: e.activeIndex === e.steps.length - 1 ? "success" : "primary"
|
|
3712
3708
|
}, e.nextButtonProperties, {
|
|
@@ -3715,13 +3711,13 @@ const aa = j({
|
|
|
3715
3711
|
]))
|
|
3716
3712
|
]));
|
|
3717
3713
|
}
|
|
3718
|
-
}),
|
|
3714
|
+
}), ba = { class: "steps" }, Ca = {
|
|
3719
3715
|
key: 1,
|
|
3720
|
-
src:
|
|
3721
|
-
},
|
|
3716
|
+
src: ha
|
|
3717
|
+
}, ya = { class: "step-content-wrapper" }, wa = {
|
|
3722
3718
|
name: "Stepper"
|
|
3723
|
-
},
|
|
3724
|
-
|
|
3719
|
+
}, a0 = /* @__PURE__ */ j({
|
|
3720
|
+
...wa,
|
|
3725
3721
|
props: {
|
|
3726
3722
|
activeIndex: {
|
|
3727
3723
|
default: void 0,
|
|
@@ -3769,7 +3765,7 @@ const aa = j({
|
|
|
3769
3765
|
}), (u, f) => (c(), h("div", {
|
|
3770
3766
|
class: F(`stepper ${e.align} ${e.direction}`)
|
|
3771
3767
|
}, [
|
|
3772
|
-
p("ul",
|
|
3768
|
+
p("ul", ba, [
|
|
3773
3769
|
(c(!0), h(Z, null, ge(e.steps, (d, v) => (c(), h("li", {
|
|
3774
3770
|
key: v,
|
|
3775
3771
|
class: F([
|
|
@@ -3795,12 +3791,12 @@ const aa = j({
|
|
|
3795
3791
|
key: 0,
|
|
3796
3792
|
class: F(d?.completedStepIcon)
|
|
3797
3793
|
}, null, 2)) : (c(), N(ye(d?.completedStepIcon), { key: 1 }))
|
|
3798
|
-
], 64)) : (c(), h("img",
|
|
3794
|
+
], 64)) : (c(), h("img", Ca))
|
|
3799
3795
|
], 64)) : (c(), h(Z, { key: 1 }, [
|
|
3800
|
-
|
|
3796
|
+
ee(B(d.step || v + 1), 1)
|
|
3801
3797
|
], 64))
|
|
3802
3798
|
], 2),
|
|
3803
|
-
p("div",
|
|
3799
|
+
p("div", ya, [
|
|
3804
3800
|
d.label ? (c(), h("span", {
|
|
3805
3801
|
key: 0,
|
|
3806
3802
|
class: F([{ active: v === a.value }, "step-label"])
|
|
@@ -3844,13 +3840,13 @@ const aa = j({
|
|
|
3844
3840
|
}, 1032, ["active-index", "hide-buttons", "next-button-properties", "previous-button-properties", "steps"])) : S("", !0)
|
|
3845
3841
|
], 2));
|
|
3846
3842
|
}
|
|
3847
|
-
}),
|
|
3843
|
+
}), Sa = ["data-position"], ka = { role: "tablist" }, $a = ["data-selected"], Da = ["aria-expanded", "onClick"], Ea = ["src"], Oa = {
|
|
3848
3844
|
class: "tabbed-pane",
|
|
3849
3845
|
role: "region"
|
|
3850
|
-
},
|
|
3846
|
+
}, xa = {
|
|
3851
3847
|
name: "TabbedPanel"
|
|
3852
|
-
},
|
|
3853
|
-
...
|
|
3848
|
+
}, l0 = /* @__PURE__ */ j({
|
|
3849
|
+
...xa,
|
|
3854
3850
|
props: {
|
|
3855
3851
|
defaultIndex: {
|
|
3856
3852
|
default: 0,
|
|
@@ -3864,17 +3860,17 @@ const aa = j({
|
|
|
3864
3860
|
}
|
|
3865
3861
|
},
|
|
3866
3862
|
setup(e) {
|
|
3867
|
-
const t =
|
|
3863
|
+
const t = Fe(), o = e, n = P(o.defaultIndex), i = (r) => {
|
|
3868
3864
|
n.value = r;
|
|
3869
3865
|
}, a = t?.default ? t.default().filter((r) => r?.props?.title) : [], l = Y(() => a[n.value]);
|
|
3870
|
-
return (r, s) =>
|
|
3866
|
+
return (r, s) => J(a).length > 0 ? (c(), h("div", {
|
|
3871
3867
|
key: 0,
|
|
3872
3868
|
class: "tabbed-panel",
|
|
3873
3869
|
"data-position": o.position
|
|
3874
3870
|
}, [
|
|
3875
3871
|
p("nav", null, [
|
|
3876
|
-
p("ul",
|
|
3877
|
-
(c(!0), h(Z, null, ge(
|
|
3872
|
+
p("ul", ka, [
|
|
3873
|
+
(c(!0), h(Z, null, ge(J(a), (u, f) => (c(), h("li", {
|
|
3878
3874
|
key: f,
|
|
3879
3875
|
"data-selected": f === n.value
|
|
3880
3876
|
}, [
|
|
@@ -3884,16 +3880,16 @@ const aa = j({
|
|
|
3884
3880
|
type: "button",
|
|
3885
3881
|
onClick: (d) => i(f)
|
|
3886
3882
|
}, [
|
|
3887
|
-
_(r.$slots, "icon",
|
|
3883
|
+
_(r.$slots, "icon", le({ ref_for: !0 }, u), () => [
|
|
3888
3884
|
u?.props?.icon ? (c(), h("img", {
|
|
3889
3885
|
key: 0,
|
|
3890
3886
|
src: u?.props?.icon,
|
|
3891
3887
|
class: "icon"
|
|
3892
|
-
}, null, 8,
|
|
3888
|
+
}, null, 8, Ea)) : S("", !0)
|
|
3893
3889
|
]),
|
|
3894
3890
|
p("span", null, B(u.props?.title), 1)
|
|
3895
|
-
], 8,
|
|
3896
|
-
], 8,
|
|
3891
|
+
], 8, Da)
|
|
3892
|
+
], 8, $a))), 128))
|
|
3897
3893
|
])
|
|
3898
3894
|
]),
|
|
3899
3895
|
ve(On, {
|
|
@@ -3901,15 +3897,15 @@ const aa = j({
|
|
|
3901
3897
|
name: "expand"
|
|
3902
3898
|
}, {
|
|
3903
3899
|
default: W(() => [
|
|
3904
|
-
p("div",
|
|
3900
|
+
p("div", Oa, [
|
|
3905
3901
|
(c(), N(ye(l.value)))
|
|
3906
3902
|
])
|
|
3907
3903
|
]),
|
|
3908
3904
|
_: 1
|
|
3909
3905
|
})
|
|
3910
|
-
], 8,
|
|
3906
|
+
], 8, Sa)) : S("", !0);
|
|
3911
3907
|
}
|
|
3912
|
-
}),
|
|
3908
|
+
}), Ta = (e) => {
|
|
3913
3909
|
let t;
|
|
3914
3910
|
switch (e) {
|
|
3915
3911
|
case "top":
|
|
@@ -3928,10 +3924,10 @@ const aa = j({
|
|
|
3928
3924
|
}
|
|
3929
3925
|
}
|
|
3930
3926
|
return t;
|
|
3931
|
-
},
|
|
3927
|
+
}, La = ["id"], Ma = ["aria-orientation"], Ba = ["id", "aria-label", "aria-selected", "onClick"], Ia = ["title"], Aa = ["onClick"], Pa = { role: "tabpanel" }, _a = {
|
|
3932
3928
|
name: "TabView"
|
|
3933
|
-
},
|
|
3934
|
-
...
|
|
3929
|
+
}, r0 = /* @__PURE__ */ j({
|
|
3930
|
+
..._a,
|
|
3935
3931
|
props: {
|
|
3936
3932
|
activeKey: {
|
|
3937
3933
|
type: String,
|
|
@@ -3977,13 +3973,13 @@ const aa = j({
|
|
|
3977
3973
|
"update:visibleTabs"
|
|
3978
3974
|
],
|
|
3979
3975
|
setup(e, { expose: t, emit: o }) {
|
|
3980
|
-
const n = e, i = o, a =
|
|
3976
|
+
const n = e, i = o, a = Fe(), l = P(n.activeKey), r = P(!1), s = P(
|
|
3981
3977
|
n.visibleTabs?.length ? n.visibleTabs : n.tabs.map((g) => g.key)
|
|
3982
3978
|
), u = Y(() => d.value.find((g) => g.key === l.value)?.children || E.value.find(
|
|
3983
3979
|
(g) => typeof g == "object" && g !== null && "props" in g && g.props?.key === l.value
|
|
3984
|
-
)), f = Y(() =>
|
|
3980
|
+
)), f = Y(() => Ta(n.position)), d = Y(
|
|
3985
3981
|
() => s.value.map((g) => n.tabs.find((k) => k.key === g)).filter((g) => g !== void 0)
|
|
3986
|
-
), v = Y(() =>
|
|
3982
|
+
), v = Y(() => oi(n.persistStateStorage)), E = Y(() => (a?.default?.() ?? []).flatMap((k) => Array.isArray(k?.children) && !k?.props?.key ? k.children.filter(
|
|
3987
3983
|
(w) => typeof w == "object" && w !== null && "props" in w && w.props?.key
|
|
3988
3984
|
) : k?.props?.key ? [k] : []));
|
|
3989
3985
|
Qe(() => {
|
|
@@ -4071,7 +4067,7 @@ const aa = j({
|
|
|
4071
4067
|
}, null, 2)) : S("", !0),
|
|
4072
4068
|
p("span", {
|
|
4073
4069
|
title: w.label
|
|
4074
|
-
}, B(w.label), 9,
|
|
4070
|
+
}, B(w.label), 9, Ia),
|
|
4075
4071
|
w.closable ? (c(), h("svg", {
|
|
4076
4072
|
key: 1,
|
|
4077
4073
|
height: "24",
|
|
@@ -4084,12 +4080,12 @@ const aa = j({
|
|
|
4084
4080
|
d: "m13.06 12l4.42-4.42a.75.75 0 1 0-1.06-1.06L12 10.94L7.58 6.52a.75.75 0 0 0-1.06 1.06L10.94 12l-4.42 4.42a.75.75 0 0 0 0 1.06a.75.75 0 0 0 1.06 0L12 13.06l4.42 4.42a.75.75 0 0 0 1.06 0a.75.75 0 0 0 0-1.06Z",
|
|
4085
4081
|
fill: "currentColor"
|
|
4086
4082
|
}, null, -1)
|
|
4087
|
-
])], 8,
|
|
4088
|
-
], 10,
|
|
4089
|
-
], 8,
|
|
4090
|
-
p("div",
|
|
4083
|
+
])], 8, Aa)) : S("", !0)
|
|
4084
|
+
], 10, Ba))), 128))
|
|
4085
|
+
], 8, Ma),
|
|
4086
|
+
p("div", Pa, [
|
|
4091
4087
|
typeof u.value == "string" ? (c(), h(Z, { key: 0 }, [
|
|
4092
|
-
|
|
4088
|
+
ee(B(u.value), 1)
|
|
4093
4089
|
], 64)) : (c(), h(Z, { key: 1 }, [
|
|
4094
4090
|
e.lazy ? (c(), h(Z, { key: 1 }, [
|
|
4095
4091
|
u.value ? (c(), N(ye(u.value), { key: 0 })) : S("", !0)
|
|
@@ -4100,12 +4096,12 @@ const aa = j({
|
|
|
4100
4096
|
])), 128))
|
|
4101
4097
|
], 64))
|
|
4102
4098
|
])
|
|
4103
|
-
], 10,
|
|
4099
|
+
], 10, La));
|
|
4104
4100
|
}
|
|
4105
|
-
}),
|
|
4101
|
+
}), Na = ["aria-label"], Fa = {
|
|
4106
4102
|
name: "Tooltip"
|
|
4107
|
-
},
|
|
4108
|
-
...
|
|
4103
|
+
}, s0 = /* @__PURE__ */ j({
|
|
4104
|
+
...Fa,
|
|
4109
4105
|
props: {
|
|
4110
4106
|
ariaLabel: {
|
|
4111
4107
|
default: "tooltip",
|
|
@@ -4132,7 +4128,7 @@ const aa = j({
|
|
|
4132
4128
|
}
|
|
4133
4129
|
},
|
|
4134
4130
|
setup(e) {
|
|
4135
|
-
const t = e, o = P(null), n = P(null), i = P(null), a = P(!1), l = P(), r = P({ top: "0", left: "0" }), s = P([]), u = P(!1), f = P(null), d =
|
|
4131
|
+
const t = e, o = P(null), n = P(null), i = P(null), a = P(!1), l = P(), r = P({ top: "0", left: "0" }), s = P([]), u = P(!1), f = P(null), d = Fe(), { width: v, height: E } = Lt(), $ = Y(() => !!d.content);
|
|
4136
4132
|
Ln(() => {
|
|
4137
4133
|
window.removeEventListener("resize", O);
|
|
4138
4134
|
for (const { element: C, listener: g } of s.value)
|
|
@@ -4154,14 +4150,14 @@ const aa = j({
|
|
|
4154
4150
|
return;
|
|
4155
4151
|
const C = i.value.getBoundingClientRect(), g = n.value.getBoundingClientRect();
|
|
4156
4152
|
let k = 0, w = 0;
|
|
4157
|
-
const R = t.position || An(C), oe = C.top - g.height - t.offset >= 0,
|
|
4153
|
+
const R = t.position || An(C), oe = C.top - g.height - t.offset >= 0, X = E.value - (C.bottom + g.height + t.offset) >= 0, ue = C.left + C.width / 2 - g.width / 2, ie = C.top + C.height / 2 - g.height / 2;
|
|
4158
4154
|
switch (R) {
|
|
4159
4155
|
case "top": {
|
|
4160
4156
|
k = oe ? C.top - g.height - t.offset : C.bottom + t.offset, w = ue;
|
|
4161
4157
|
break;
|
|
4162
4158
|
}
|
|
4163
4159
|
case "bottom": {
|
|
4164
|
-
k =
|
|
4160
|
+
k = X ? C.bottom + t.offset : C.top - g.height - t.offset, w = ue;
|
|
4165
4161
|
break;
|
|
4166
4162
|
}
|
|
4167
4163
|
case "left": {
|
|
@@ -4221,12 +4217,12 @@ const aa = j({
|
|
|
4221
4217
|
}, [
|
|
4222
4218
|
_(C.$slots, "content")
|
|
4223
4219
|
], 6)) : S("", !0)
|
|
4224
|
-
], 40,
|
|
4220
|
+
], 40, Na));
|
|
4225
4221
|
}
|
|
4226
|
-
}),
|
|
4222
|
+
}), Va = ["aria-label", "href", "data-youtube-video-token"], ja = ["src", "alt", "data-aspect-ratio"], za = ["href"], Ra = {
|
|
4227
4223
|
name: "YoutubeFacade"
|
|
4228
|
-
},
|
|
4229
|
-
...
|
|
4224
|
+
}, u0 = /* @__PURE__ */ j({
|
|
4225
|
+
...Ra,
|
|
4230
4226
|
props: {
|
|
4231
4227
|
alt: {
|
|
4232
4228
|
default: null,
|
|
@@ -4285,61 +4281,61 @@ const aa = j({
|
|
|
4285
4281
|
alt: e.alt,
|
|
4286
4282
|
"data-aspect-ratio": e.aspectRatio,
|
|
4287
4283
|
style: We(`aspect-ratio: ${e.aspectRatio}`)
|
|
4288
|
-
}, null, 12,
|
|
4289
|
-
], 12,
|
|
4284
|
+
}, null, 12, ja)
|
|
4285
|
+
], 12, Va),
|
|
4290
4286
|
p("a", {
|
|
4291
4287
|
href: e.videoLink,
|
|
4292
4288
|
rel: "noreferrer",
|
|
4293
4289
|
target: "_blank"
|
|
4294
4290
|
}, [...a[0] || (a[0] = [
|
|
4295
|
-
|
|
4291
|
+
ee(" Watch On ", -1),
|
|
4296
4292
|
p("b", null, "YouTube", -1)
|
|
4297
|
-
])], 8,
|
|
4293
|
+
])], 8, za)
|
|
4298
4294
|
], 4)
|
|
4299
4295
|
], 4));
|
|
4300
4296
|
}
|
|
4301
|
-
}),
|
|
4297
|
+
}), c0 = {
|
|
4302
4298
|
install: (e) => {
|
|
4303
|
-
e.component("LoadingButton",
|
|
4299
|
+
e.component("LoadingButton", Eo), e.component("LoadingIcon", xt), e.component("Page", v2);
|
|
4304
4300
|
}
|
|
4305
4301
|
};
|
|
4306
4302
|
export {
|
|
4307
|
-
|
|
4308
|
-
|
|
4303
|
+
Ha as Accordion,
|
|
4304
|
+
lo as BadgeComponent,
|
|
4309
4305
|
he as ButtonElement,
|
|
4310
|
-
|
|
4306
|
+
wo as Card,
|
|
4311
4307
|
fn as ConfirmationModal,
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4308
|
+
qa as Data,
|
|
4309
|
+
Ka as DebouncedInput,
|
|
4310
|
+
Wa as Divider,
|
|
4311
|
+
pi as Dropdown,
|
|
4312
|
+
Xa as Errors,
|
|
4313
|
+
o0 as FacebookSignInButton,
|
|
4314
|
+
ji as FileCard,
|
|
4315
|
+
Ua as FilesList,
|
|
4316
|
+
i0 as GoogleSignInButton,
|
|
4317
|
+
Qa as GridContainer,
|
|
4318
|
+
Eo as LoadingButton,
|
|
4323
4319
|
xt as LoadingIcon,
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
|
|
4337
|
-
|
|
4338
|
-
|
|
4339
|
-
|
|
4340
|
-
|
|
4320
|
+
Ki as LoadingPage,
|
|
4321
|
+
Ja as Message,
|
|
4322
|
+
e0 as Modal,
|
|
4323
|
+
v2 as Page,
|
|
4324
|
+
ri as Popup,
|
|
4325
|
+
t0 as ResponsiveMenu,
|
|
4326
|
+
n0 as SortableList,
|
|
4327
|
+
a0 as Stepper,
|
|
4328
|
+
Ga as SubPane,
|
|
4329
|
+
r0 as TabView,
|
|
4330
|
+
l0 as TabbedPanel,
|
|
4331
|
+
s0 as Tooltip,
|
|
4332
|
+
u0 as YoutubeFacade,
|
|
4333
|
+
c0 as default,
|
|
4334
|
+
ti as formatDate,
|
|
4335
|
+
ni as formatDateTime,
|
|
4336
|
+
Ya as formatDuration,
|
|
4341
4337
|
An as getBestPosition,
|
|
4342
4338
|
Pn as getScrollableParents,
|
|
4343
|
-
|
|
4344
|
-
|
|
4339
|
+
oi as getStorage,
|
|
4340
|
+
ii as useDebouncedValue
|
|
4345
4341
|
};
|