bootstrap-vue-next 0.9.2 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bootstrap-vue-next.mjs +272 -264
- package/dist/bootstrap-vue-next.mjs.map +1 -1
- package/dist/bootstrap-vue-next.umd.js +1 -1
- package/dist/bootstrap-vue-next.umd.js.map +1 -1
- package/dist/src/components/BDropdown/BDropdown.vue.d.ts +11 -0
- package/package.json +8 -3
- package/src/components/BDropdown/BDropdown.vue +3 -0
- package/src/composables/useCountdown.ts +10 -4
- package/src/directives/BPopover.ts +7 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var Nn = Object.defineProperty;
|
|
2
2
|
var zn = (e, t, a) => t in e ? Nn(e, t, { enumerable: !0, configurable: !0, writable: !0, value: a }) : e[t] = a;
|
|
3
3
|
var Pe = (e, t, a) => (zn(e, typeof t != "symbol" ? t + "" : t, a), a);
|
|
4
|
-
import { unref as C, computed as i, ref as z, shallowRef as La, watch as
|
|
4
|
+
import { unref as C, computed as i, ref as z, shallowRef as La, watch as re, getCurrentScope as eo, onScopeDispose as to, shallowReadonly as ct, watchEffect as xt, readonly as _e, effectScope as ao, isRef as lo, toRef as ke, customRef as Rn, getCurrentInstance as ra, onMounted as We, nextTick as Te, reactive as yt, defineComponent as L, h as de, Teleport as xa, toValue as Na, onActivated as Hn, onBeforeUnmount as oo, openBlock as m, createElementBlock as A, Fragment as ve, createElementVNode as Y, renderSlot as T, normalizeProps as $e, guardReactiveProps as Oe, createVNode as Be, withCtx as M, mergeProps as te, normalizeClass as R, normalizeStyle as De, createTextVNode as ue, toDisplayString as Q, createCommentVNode as Z, createApp as Mn, provide as Ue, createBlock as H, resolveDynamicComponent as oe, inject as Ee, toHandlers as Dn, Transition as jn, useSlots as Ie, resolveComponent as no, withModifiers as it, renderList as we, withKeys as Vt, TransitionGroup as qn, withDirectives as st, vShow as ia, isReactive as Gn, onUnmounted as Wn, useAttrs as so, vModelCheckbox as Un, vModelRadio as Xn, vModelSelect as Kn, createSlots as ro } from "vue";
|
|
5
5
|
const Jn = (e) => typeof e == "boolean" || e === "" || e === "true" || e === "false", io = (e) => typeof e == "boolean" ? e : e === "" ? !0 : e === "true";
|
|
6
6
|
class Ye {
|
|
7
7
|
constructor(t, a = {}) {
|
|
@@ -51,7 +51,7 @@ class Ye {
|
|
|
51
51
|
};
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
|
-
class
|
|
54
|
+
class Nt extends Ye {
|
|
55
55
|
constructor(a, l = {}) {
|
|
56
56
|
super(a, l);
|
|
57
57
|
Pe(this, "trigger", null);
|
|
@@ -80,11 +80,11 @@ class uo extends Ye {
|
|
|
80
80
|
};
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
|
-
const
|
|
83
|
+
const ya = (e) => e !== null && typeof e == "object", co = (e) => /^[0-9]*\.?[0-9]+$/.test(String(e)), Yn = (e) => Object.prototype.toString.call(e) === "[object Object]", fo = /_/g, vo = /([a-z])([A-Z])/g, Zn = /(\s|^)(\w)/g, Qn = /(\s|^)(\w)/, Ut = /\s+/, es = /^#/, ts = /^#[A-Za-z]+[\w\-:.]*$/, as = /-u-.+/, ls = /[-/\\^$*+?.()|[\]{}]/g, os = /[\s\uFEFF\xA0]+/g, Jt = (e, t = 2) => typeof e == "string" ? e : e == null ? "" : Array.isArray(e) || Yn(e) && e.toString === Object.prototype.toString ? JSON.stringify(e, null, t) : String(e), al = (e) => e.replace(fo, " ").replace(vo, (t, a, l) => `${a} ${l}`).replace(Qn, (t, a, l) => a + l.toUpperCase()), ll = (e) => e.replace(fo, " ").replace(vo, (t, a, l) => `${a} ${l}`).replace(Zn, (t, a, l) => a + l.toUpperCase()), ns = (e) => {
|
|
84
84
|
const t = e.trim();
|
|
85
85
|
return t.charAt(0).toUpperCase() + t.slice(1);
|
|
86
|
-
}, ss = (e) => e.replace(ls, "\\$&"), rs = (e) => ss(e).replace(os, "\\s"),
|
|
87
|
-
const t =
|
|
86
|
+
}, ss = (e) => e.replace(ls, "\\$&"), rs = (e) => ss(e).replace(os, "\\s"), ma = (e) => `\\${e}`, is = (e) => {
|
|
87
|
+
const t = Jt(e), { length: a } = t, l = t.charCodeAt(0);
|
|
88
88
|
return t.split("").reduce((o, n, r) => {
|
|
89
89
|
const s = t.charCodeAt(r);
|
|
90
90
|
return s === 0 ? `${o}�` : (
|
|
@@ -93,18 +93,18 @@ const ba = (e) => e !== null && typeof e == "object", co = (e) => /^[0-9]*\.?[0-
|
|
|
93
93
|
s >= 1 && s <= 31 || // ... is the first character and is in the range [0-9] (U+0030 to U+0039) OR ...
|
|
94
94
|
r === 0 && s >= 48 && s <= 57 || // ... is the second character and is in the range [0-9] (U+0030 to U+0039)
|
|
95
95
|
// and the first character is a `-` (U+002D) ...
|
|
96
|
-
r === 1 && s >= 48 && s <= 57 && l === 45 ? o +
|
|
96
|
+
r === 1 && s >= 48 && s <= 57 && l === 45 ? o + ma(`${s.toString(16)} `) : (
|
|
97
97
|
// ... is the first character AND ...
|
|
98
98
|
r === 0 && // ... is a `-` (U+002D) AND ...
|
|
99
99
|
s === 45 && // ... there is no second character ...
|
|
100
|
-
a === 1 ? o +
|
|
100
|
+
a === 1 ? o + ma(n) : (
|
|
101
101
|
// ... is greater than or equal to U+0080 OR ...
|
|
102
102
|
s >= 128 || // ... is `-` (U+002D) OR ...
|
|
103
103
|
s === 45 || // ... is `_` (U+005F) OR ...
|
|
104
104
|
s === 95 || // ... is in the range [0-9] (U+0030 to U+0039) OR ...
|
|
105
105
|
s >= 48 && s <= 57 || // ... is in the range [A-Z] (U+0041 to U+005A) OR ...
|
|
106
106
|
s >= 65 && s <= 90 || // ... is in the range [a-z] (U+0061 to U+007A) ...
|
|
107
|
-
s >= 97 && s <= 122 ? o + n : o +
|
|
107
|
+
s >= 97 && s <= 122 ? o + n : o + ma(n)
|
|
108
108
|
)
|
|
109
109
|
)
|
|
110
110
|
);
|
|
@@ -162,7 +162,7 @@ const Ra = typeof window < "u", fs = typeof document < "u", vs = typeof navigato
|
|
|
162
162
|
t && Ze(e) && e.setAttribute(t, a);
|
|
163
163
|
}, ks = (e, t) => {
|
|
164
164
|
t && Ze(e) && e.removeAttribute(t);
|
|
165
|
-
}, Cs = (e, t) =>
|
|
165
|
+
}, Cs = (e, t) => Jt(e).toLowerCase() === Jt(t).toLowerCase(), Mt = Ra ? window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.msRequestAnimationFrame || window.oRequestAnimationFrame || // Fallback, but not a true polyfill
|
|
166
166
|
// Only needed for Opera Mini
|
|
167
167
|
((e) => setTimeout(e, 16)) : (e) => setTimeout(e, 0), bo = (e, t) => Ze(e) ? ms.call(e, t) : !1, Ts = (ze == null ? void 0 : ze.closest) || function(e) {
|
|
168
168
|
let t = this;
|
|
@@ -179,10 +179,10 @@ const Ra = typeof window < "u", fs = typeof document < "u", vs = typeof navigato
|
|
|
179
179
|
return null;
|
|
180
180
|
const l = Ts.call(t, e);
|
|
181
181
|
return a ? l : l === t ? null : l;
|
|
182
|
-
},
|
|
182
|
+
}, ha = (e) => {
|
|
183
183
|
const t = window.getComputedStyle(e), a = t.transitionDelay.split(",")[0] || "", l = t.transitionDuration.split(",")[0] || "", o = Number(a.slice(0, -1)) * 1e3, n = Number(l.slice(0, -1)) * 1e3;
|
|
184
184
|
return o + n;
|
|
185
|
-
},
|
|
185
|
+
}, ua = (e, t, a) => t.concat(["sm", "md", "lg", "xl", "xxl"]).reduce((l, o) => (l[e ? `${e}${o.charAt(0).toUpperCase() + o.slice(1)}` : o] = a, l), /* @__PURE__ */ Object.create(null)), yo = (e, t, a, l = a) => Object.keys(t).reduce((o, n) => (e[n] && o.push(
|
|
186
186
|
[l, n.replace(a, ""), e[n]].filter((r) => r && typeof r != "boolean").join("-").toLowerCase()
|
|
187
187
|
), o), []), at = (e = "") => `__BVID__${Math.random().toString().slice(2, 8)}___BV_${e}__`, Pt = (e) => !!(e.href || e.to), He = (e, t = {}, a = {}) => {
|
|
188
188
|
const l = [e];
|
|
@@ -198,10 +198,10 @@ const Ra = typeof window < "u", fs = typeof document < "u", vs = typeof navigato
|
|
|
198
198
|
}, Ct = (e, t = NaN) => {
|
|
199
199
|
const a = Number.parseFloat(e.toString());
|
|
200
200
|
return Number.isNaN(a) ? t : a;
|
|
201
|
-
},
|
|
201
|
+
}, zt = (e, t) => Object.keys(e).filter((a) => !t.includes(a)).reduce((a, l) => ({ ...a, [l]: e[l] }), {}), Yt = (e) => Array.isArray(e) ? e.map((t) => Yt(t)) : e instanceof Date ? new Date(e.getTime()) : e && typeof e == "object" ? Object.getOwnPropertyNames(e).reduce((t, a) => (Object.defineProperty(t, a, Object.getOwnPropertyDescriptor(e, a) ?? {}), t[a] = Yt(e[a]), t), Object.create(Object.getPrototypeOf(e))) : e, Ba = (e) => new Promise((t) => t(Yt(e))), rl = (e, t) => t + (e ? ns(e) : ""), Da = (e, t) => (Array.isArray(t) ? t.slice() : Object.keys(t)).reduce(
|
|
202
202
|
(a, l) => (a[l] = e[l], a),
|
|
203
203
|
{}
|
|
204
|
-
),
|
|
204
|
+
), da = (e, t) => e === !0 || e === "true" || e === "" ? "true" : e === "grammar" || e === "spelling" ? e : t === !1 ? "true" : e === !1 || e === "false" ? "false" : void 0, ho = Symbol("carousel"), Bo = Symbol("tabs"), So = Symbol("progress"), wo = Symbol("listGroup"), $o = Symbol("avatarGroup"), _o = Symbol("accordion"), ko = Symbol("checkboxGroup"), Co = Symbol("radioGroup"), ja = Symbol("collapse"), To = Symbol("collapse"), qa = Symbol("navbar"), Sa = (e, t) => ((e == null ? void 0 : e()) ?? []).reduce((a, l) => (typeof l.type == "symbol" ? a = a.concat(l.children) : a.push(l), a), []).filter((a) => {
|
|
205
205
|
var l;
|
|
206
206
|
return ((l = a.type) == null ? void 0 : l.__name) === t;
|
|
207
207
|
});
|
|
@@ -269,9 +269,9 @@ async function Ot(e, t) {
|
|
|
269
269
|
const { x: l, y: o, platform: n, rects: r, elements: s, strategy: u } = e, { boundary: c = "clippingAncestors", rootBoundary: v = "viewport", elementContext: p = "floating", altBoundary: f = !1, padding: g = 0 } = t, y = Wa(g), S = s[f ? p === "floating" ? "reference" : "floating" : p], w = ht(await n.getClippingRect({ element: (a = await (n.isElement == null ? void 0 : n.isElement(S))) == null || a ? S : S.contextElement || await (n.getDocumentElement == null ? void 0 : n.getDocumentElement(s.floating)), boundary: c, rootBoundary: v, strategy: u })), h = p === "floating" ? { ...r.floating, x: l, y: o } : r.reference, B = await (n.getOffsetParent == null ? void 0 : n.getOffsetParent(s.floating)), b = await (n.isElement == null ? void 0 : n.isElement(B)) && await (n.getScale == null ? void 0 : n.getScale(B)) || { x: 1, y: 1 }, k = ht(n.convertOffsetParentRelativeRectToViewportRelativeRect ? await n.convertOffsetParentRelativeRectToViewportRelativeRect({ rect: h, offsetParent: B, strategy: u }) : h);
|
|
270
270
|
return { top: (w.top - k.top + y.top) / b.y, bottom: (k.bottom - w.bottom + y.bottom) / b.y, left: (w.left - k.left + y.left) / b.x, right: (k.right - w.right + y.right) / b.x };
|
|
271
271
|
}
|
|
272
|
-
const
|
|
273
|
-
function
|
|
274
|
-
return
|
|
272
|
+
const Zt = Math.min, Qt = Math.max;
|
|
273
|
+
function wa(e, t, a) {
|
|
274
|
+
return Qt(e, Zt(t, a));
|
|
275
275
|
}
|
|
276
276
|
const Ps = (e) => ({ name: "arrow", options: e, async fn(t) {
|
|
277
277
|
const { element: a, padding: l = 0 } = e || {}, { x: o, y: n, placement: r, rects: s, platform: u, elements: c } = t;
|
|
@@ -280,27 +280,27 @@ const Ps = (e) => ({ name: "arrow", options: e, async fn(t) {
|
|
|
280
280
|
const v = Wa(l), p = { x: o, y: n }, f = wt(r), g = Ga(f), y = await u.getDimensions(a), S = f === "y", w = S ? "top" : "left", h = S ? "bottom" : "right", B = S ? "clientHeight" : "clientWidth", b = s.reference[g] + s.reference[f] - p[f] - s.floating[g], k = p[f] - s.reference[f], P = await (u.getOffsetParent == null ? void 0 : u.getOffsetParent(a));
|
|
281
281
|
let _ = P ? P[B] : 0;
|
|
282
282
|
_ && await (u.isElement == null ? void 0 : u.isElement(P)) || (_ = c.floating[B] || s.floating[g]);
|
|
283
|
-
const E = b / 2 - k / 2, F = v[w], I = _ - y[g] - v[h], $ = _ / 2 - y[g] / 2 + E, O =
|
|
283
|
+
const E = b / 2 - k / 2, F = v[w], I = _ - y[g] - v[h], $ = _ / 2 - y[g] / 2 + E, O = wa(F, $, I), x = Je(r) != null && $ != O && s.reference[g] / 2 - ($ < F ? v[w] : v[h]) - y[g] / 2 < 0;
|
|
284
284
|
return { [f]: p[f] - (x ? $ < F ? F - $ : I - $ : 0), data: { [f]: O, centerOffset: $ - O } };
|
|
285
285
|
} }), Ao = ["top", "right", "bottom", "left"], ul = Ao.reduce((e, t) => e.concat(t, t + "-start", t + "-end"), []), Os = { left: "right", right: "left", bottom: "top", top: "bottom" };
|
|
286
|
-
function
|
|
286
|
+
function ea(e) {
|
|
287
287
|
return e.replace(/left|right|bottom|top/g, (t) => Os[t]);
|
|
288
288
|
}
|
|
289
289
|
function Vo(e, t, a) {
|
|
290
290
|
a === void 0 && (a = !1);
|
|
291
291
|
const l = Je(e), o = wt(e), n = Ga(o);
|
|
292
292
|
let r = o === "x" ? l === (a ? "end" : "start") ? "right" : "left" : l === "start" ? "bottom" : "top";
|
|
293
|
-
return t.reference[n] > t.floating[n] && (r =
|
|
293
|
+
return t.reference[n] > t.floating[n] && (r = ea(r)), { main: r, cross: ea(r) };
|
|
294
294
|
}
|
|
295
295
|
const Es = { start: "end", end: "start" };
|
|
296
|
-
function
|
|
296
|
+
function Xt(e) {
|
|
297
297
|
return e.replace(/start|end/g, (t) => Es[t]);
|
|
298
298
|
}
|
|
299
299
|
const Fs = function(e) {
|
|
300
300
|
return e === void 0 && (e = {}), { name: "autoPlacement", options: e, async fn(t) {
|
|
301
301
|
var a, l, o;
|
|
302
302
|
const { rects: n, middlewareData: r, placement: s, platform: u, elements: c } = t, { crossAxis: v = !1, alignment: p, allowedPlacements: f = ul, autoAlignment: g = !0, ...y } = e, S = p !== void 0 || f === ul ? function($, O, x) {
|
|
303
|
-
return ($ ? [...x.filter((N) => Je(N) === $), ...x.filter((N) => Je(N) !== $)] : x.filter((N) => je(N) === N)).filter((N) => !$ || Je(N) === $ || !!O &&
|
|
303
|
+
return ($ ? [...x.filter((N) => Je(N) === $), ...x.filter((N) => Je(N) !== $)] : x.filter((N) => je(N) === N)).filter((N) => !$ || Je(N) === $ || !!O && Xt(N) !== N);
|
|
304
304
|
}(p || null, g, f) : f, w = await Ot(t, y), h = ((a = r.autoPlacement) == null ? void 0 : a.index) || 0, B = S[h];
|
|
305
305
|
if (B == null)
|
|
306
306
|
return {};
|
|
@@ -319,9 +319,9 @@ const Fs = function(e) {
|
|
|
319
319
|
}, Po = function(e) {
|
|
320
320
|
return e === void 0 && (e = {}), { name: "flip", options: e, async fn(t) {
|
|
321
321
|
var a;
|
|
322
|
-
const { placement: l, middlewareData: o, rects: n, initialPlacement: r, platform: s, elements: u } = t, { mainAxis: c = !0, crossAxis: v = !0, fallbackPlacements: p, fallbackStrategy: f = "bestFit", fallbackAxisSideDirection: g = "none", flipAlignment: y = !0, ...S } = e, w = je(l), h = je(r) === r, B = await (s.isRTL == null ? void 0 : s.isRTL(u.floating)), b = p || (h || !y ? [
|
|
323
|
-
const x =
|
|
324
|
-
return [
|
|
322
|
+
const { placement: l, middlewareData: o, rects: n, initialPlacement: r, platform: s, elements: u } = t, { mainAxis: c = !0, crossAxis: v = !0, fallbackPlacements: p, fallbackStrategy: f = "bestFit", fallbackAxisSideDirection: g = "none", flipAlignment: y = !0, ...S } = e, w = je(l), h = je(r) === r, B = await (s.isRTL == null ? void 0 : s.isRTL(u.floating)), b = p || (h || !y ? [ea(r)] : function(O) {
|
|
323
|
+
const x = ea(O);
|
|
324
|
+
return [Xt(O), x, Xt(x)];
|
|
325
325
|
}(r));
|
|
326
326
|
p || g === "none" || b.push(...function(O, x, N, le) {
|
|
327
327
|
const W = Je(O);
|
|
@@ -338,7 +338,7 @@ const Fs = function(e) {
|
|
|
338
338
|
return [];
|
|
339
339
|
}
|
|
340
340
|
}(je(O), N === "start", le);
|
|
341
|
-
return W && (q = q.map((ee) => ee + "-" + W), x && (q = q.concat(q.map(
|
|
341
|
+
return W && (q = q.map((ee) => ee + "-" + W), x && (q = q.concat(q.map(Xt)))), q;
|
|
342
342
|
}(r, y, g, B));
|
|
343
343
|
const k = [r, ...b], P = await Ot(t, S), _ = [];
|
|
344
344
|
let E = ((a = o.flip) == null ? void 0 : a.overflows) || [];
|
|
@@ -393,8 +393,8 @@ const Is = function(e) {
|
|
|
393
393
|
} };
|
|
394
394
|
};
|
|
395
395
|
function fl(e) {
|
|
396
|
-
const t =
|
|
397
|
-
return { x: t, y: a, width:
|
|
396
|
+
const t = Zt(...e.map((l) => l.left)), a = Zt(...e.map((l) => l.top));
|
|
397
|
+
return { x: t, y: a, width: Qt(...e.map((l) => l.right)) - t, height: Qt(...e.map((l) => l.bottom)) - a };
|
|
398
398
|
}
|
|
399
399
|
const Ls = function(e) {
|
|
400
400
|
return e === void 0 && (e = {}), { name: "inline", options: e, async fn(t) {
|
|
@@ -414,7 +414,7 @@ const Ls = function(e) {
|
|
|
414
414
|
const P = p[0], _ = p[p.length - 1], E = je(a) === "top", F = P.top, I = _.bottom, $ = E ? P.left : _.left, O = E ? P.right : _.right;
|
|
415
415
|
return { top: F, bottom: I, left: $, right: O, width: O - $, height: I - F, x: $, y: F };
|
|
416
416
|
}
|
|
417
|
-
const S = je(a) === "left", w =
|
|
417
|
+
const S = je(a) === "left", w = Qt(...p.map((P) => P.right)), h = Zt(...p.map((P) => P.left)), B = p.filter((P) => S ? P.left === h : P.right === w), b = B[0].top, k = B[B.length - 1].bottom;
|
|
418
418
|
return { top: b, bottom: k, left: h, right: w, width: w - h, height: k - b, x: h, y: b };
|
|
419
419
|
}
|
|
420
420
|
return f;
|
|
@@ -443,11 +443,11 @@ const Eo = function(e) {
|
|
|
443
443
|
let g = c[p], y = c[f];
|
|
444
444
|
if (n) {
|
|
445
445
|
const w = p === "y" ? "bottom" : "right";
|
|
446
|
-
g =
|
|
446
|
+
g = wa(g + v[p === "y" ? "top" : "left"], g, g - v[w]);
|
|
447
447
|
}
|
|
448
448
|
if (r) {
|
|
449
449
|
const w = f === "y" ? "bottom" : "right";
|
|
450
|
-
y =
|
|
450
|
+
y = wa(y + v[f === "y" ? "top" : "left"], y, y - v[w]);
|
|
451
451
|
}
|
|
452
452
|
const S = s.fn({ ...t, [p]: g, [f]: y });
|
|
453
453
|
return { ...S, data: { x: S.x - a, y: S.y - l } };
|
|
@@ -466,12 +466,12 @@ function Fo(e) {
|
|
|
466
466
|
function nt(e) {
|
|
467
467
|
return Fo(e) ? (e.nodeName || "").toLowerCase() : "";
|
|
468
468
|
}
|
|
469
|
-
let
|
|
469
|
+
let Dt;
|
|
470
470
|
function Io() {
|
|
471
|
-
if (
|
|
472
|
-
return
|
|
471
|
+
if (Dt)
|
|
472
|
+
return Dt;
|
|
473
473
|
const e = navigator.userAgentData;
|
|
474
|
-
return e && Array.isArray(e.brands) ? (
|
|
474
|
+
return e && Array.isArray(e.brands) ? (Dt = e.brands.map((t) => t.brand + "/" + t.version).join(" "), Dt) : navigator.userAgent;
|
|
475
475
|
}
|
|
476
476
|
function Ge(e) {
|
|
477
477
|
return e instanceof Le(e).HTMLElement;
|
|
@@ -489,24 +489,24 @@ function Et(e) {
|
|
|
489
489
|
function Ns(e) {
|
|
490
490
|
return ["table", "td", "th"].includes(nt(e));
|
|
491
491
|
}
|
|
492
|
-
function
|
|
492
|
+
function $a(e) {
|
|
493
493
|
const t = /firefox/i.test(Io()), a = qe(e), l = a.backdropFilter || a.WebkitBackdropFilter;
|
|
494
494
|
return a.transform !== "none" || a.perspective !== "none" || !!l && l !== "none" || t && a.willChange === "filter" || t && !!a.filter && a.filter !== "none" || ["transform", "perspective"].some((o) => a.willChange.includes(o)) || ["paint", "layout", "strict", "content"].some((o) => {
|
|
495
495
|
const n = a.contain;
|
|
496
496
|
return n != null && n.includes(o);
|
|
497
497
|
});
|
|
498
498
|
}
|
|
499
|
-
function
|
|
499
|
+
function _a() {
|
|
500
500
|
return /^((?!chrome|android).)*safari/i.test(Io());
|
|
501
501
|
}
|
|
502
|
-
function
|
|
502
|
+
function ca(e) {
|
|
503
503
|
return ["html", "body", "#document"].includes(nt(e));
|
|
504
504
|
}
|
|
505
|
-
const pl = Math.min, Tt = Math.max,
|
|
505
|
+
const pl = Math.min, Tt = Math.max, ta = Math.round;
|
|
506
506
|
function Lo(e) {
|
|
507
507
|
const t = qe(e);
|
|
508
508
|
let a = parseFloat(t.width) || 0, l = parseFloat(t.height) || 0;
|
|
509
|
-
const o = Ge(e), n = o ? e.offsetWidth : a, r = o ? e.offsetHeight : l, s =
|
|
509
|
+
const o = Ge(e), n = o ? e.offsetWidth : a, r = o ? e.offsetHeight : l, s = ta(a) !== n || ta(l) !== r;
|
|
510
510
|
return s && (a = n, l = r), { width: a, height: l, fallback: s };
|
|
511
511
|
}
|
|
512
512
|
function xo(e) {
|
|
@@ -518,7 +518,7 @@ function bt(e) {
|
|
|
518
518
|
if (!Ge(t))
|
|
519
519
|
return No;
|
|
520
520
|
const a = t.getBoundingClientRect(), { width: l, height: o, fallback: n } = Lo(t);
|
|
521
|
-
let r = (n ?
|
|
521
|
+
let r = (n ? ta(a.width) : a.width) / l, s = (n ? ta(a.height) : a.height) / o;
|
|
522
522
|
return r && Number.isFinite(r) || (r = 1), s && Number.isFinite(s) || (s = 1), { x: r, y: s };
|
|
523
523
|
}
|
|
524
524
|
function ut(e, t, a, l) {
|
|
@@ -527,7 +527,7 @@ function ut(e, t, a, l) {
|
|
|
527
527
|
const r = e.getBoundingClientRect(), s = xo(e);
|
|
528
528
|
let u = No;
|
|
529
529
|
t && (l ? xe(l) && (u = bt(l)) : u = bt(e));
|
|
530
|
-
const c = s ? Le(s) : window, v =
|
|
530
|
+
const c = s ? Le(s) : window, v = _a() && a;
|
|
531
531
|
let p = (r.left + (v && ((o = c.visualViewport) == null ? void 0 : o.offsetLeft) || 0)) / u.x, f = (r.top + (v && ((n = c.visualViewport) == null ? void 0 : n.offsetTop) || 0)) / u.y, g = r.width / u.x, y = r.height / u.y;
|
|
532
532
|
if (s) {
|
|
533
533
|
const S = Le(s), w = l && xe(l) ? Le(l) : l;
|
|
@@ -542,11 +542,11 @@ function ut(e, t, a, l) {
|
|
|
542
542
|
function ot(e) {
|
|
543
543
|
return ((Fo(e) ? e.ownerDocument : e.document) || window.document).documentElement;
|
|
544
544
|
}
|
|
545
|
-
function
|
|
545
|
+
function fa(e) {
|
|
546
546
|
return xe(e) ? { scrollLeft: e.scrollLeft, scrollTop: e.scrollTop } : { scrollLeft: e.pageXOffset, scrollTop: e.pageYOffset };
|
|
547
547
|
}
|
|
548
548
|
function zo(e) {
|
|
549
|
-
return ut(ot(e)).left +
|
|
549
|
+
return ut(ot(e)).left + fa(e).scrollLeft;
|
|
550
550
|
}
|
|
551
551
|
function Bt(e) {
|
|
552
552
|
if (nt(e) === "html")
|
|
@@ -556,7 +556,7 @@ function Bt(e) {
|
|
|
556
556
|
}
|
|
557
557
|
function Ro(e) {
|
|
558
558
|
const t = Bt(e);
|
|
559
|
-
return
|
|
559
|
+
return ca(t) ? t.ownerDocument.body : Ge(t) && Et(t) ? t : Ro(t);
|
|
560
560
|
}
|
|
561
561
|
function At(e, t) {
|
|
562
562
|
var a;
|
|
@@ -572,14 +572,14 @@ function ml(e, t, a) {
|
|
|
572
572
|
let p = c.clientWidth, f = c.clientHeight, g = 0, y = 0;
|
|
573
573
|
if (v) {
|
|
574
574
|
p = v.width, f = v.height;
|
|
575
|
-
const S =
|
|
575
|
+
const S = _a();
|
|
576
576
|
(!S || S && s === "fixed") && (g = v.offsetLeft, y = v.offsetTop);
|
|
577
577
|
}
|
|
578
578
|
return { width: p, height: f, x: g, y };
|
|
579
579
|
}(e, a);
|
|
580
580
|
else if (t === "document")
|
|
581
581
|
l = function(r) {
|
|
582
|
-
const s = ot(r), u =
|
|
582
|
+
const s = ot(r), u = fa(r), c = r.ownerDocument.body, v = Tt(s.scrollWidth, s.clientWidth, c.scrollWidth, c.clientWidth), p = Tt(s.scrollHeight, s.clientHeight, c.scrollHeight, c.clientHeight);
|
|
583
583
|
let f = -u.scrollLeft + zo(r);
|
|
584
584
|
const g = -u.scrollTop;
|
|
585
585
|
return qe(c).direction === "rtl" && (f += Tt(s.clientWidth, c.clientWidth) - v), { width: v, height: p, x: f, y: g };
|
|
@@ -591,7 +591,7 @@ function ml(e, t, a) {
|
|
|
591
591
|
}(t, a);
|
|
592
592
|
else {
|
|
593
593
|
const r = { ...t };
|
|
594
|
-
if (
|
|
594
|
+
if (_a()) {
|
|
595
595
|
var o, n;
|
|
596
596
|
const s = Le(e);
|
|
597
597
|
r.x -= ((o = s.visualViewport) == null ? void 0 : o.offsetLeft) || 0, r.y -= ((n = s.visualViewport) == null ? void 0 : n.offsetTop) || 0;
|
|
@@ -602,7 +602,7 @@ function ml(e, t, a) {
|
|
|
602
602
|
}
|
|
603
603
|
function Ho(e, t) {
|
|
604
604
|
const a = Bt(e);
|
|
605
|
-
return !(a === t || !xe(a) ||
|
|
605
|
+
return !(a === t || !xe(a) || ca(a)) && (qe(a).position === "fixed" || Ho(a, t));
|
|
606
606
|
}
|
|
607
607
|
function gl(e, t) {
|
|
608
608
|
return Ge(e) && qe(e).position !== "fixed" ? t ? t(e) : e.offsetParent : null;
|
|
@@ -614,10 +614,10 @@ function bl(e, t) {
|
|
|
614
614
|
let l = gl(e, t);
|
|
615
615
|
for (; l && Ns(l) && qe(l).position === "static"; )
|
|
616
616
|
l = gl(l, t);
|
|
617
|
-
return l && (nt(l) === "html" || nt(l) === "body" && qe(l).position === "static" &&
|
|
617
|
+
return l && (nt(l) === "html" || nt(l) === "body" && qe(l).position === "static" && !$a(l)) ? a : l || function(o) {
|
|
618
618
|
let n = Bt(o);
|
|
619
|
-
for (; Ge(n) && !
|
|
620
|
-
if (
|
|
619
|
+
for (; Ge(n) && !ca(n); ) {
|
|
620
|
+
if ($a(n))
|
|
621
621
|
return n;
|
|
622
622
|
n = Bt(n);
|
|
623
623
|
}
|
|
@@ -629,7 +629,7 @@ function zs(e, t, a) {
|
|
|
629
629
|
let r = { scrollLeft: 0, scrollTop: 0 };
|
|
630
630
|
const s = { x: 0, y: 0 };
|
|
631
631
|
if (l || !l && a !== "fixed")
|
|
632
|
-
if ((nt(t) !== "body" || Et(o)) && (r =
|
|
632
|
+
if ((nt(t) !== "body" || Et(o)) && (r = fa(t)), Ge(t)) {
|
|
633
633
|
const u = ut(t, !0);
|
|
634
634
|
s.x = u.x + t.clientLeft, s.y = u.y + t.clientTop;
|
|
635
635
|
} else
|
|
@@ -645,8 +645,8 @@ const Rs = { getClippingRect: function(e) {
|
|
|
645
645
|
let f = At(c).filter((w) => xe(w) && nt(w) !== "body"), g = null;
|
|
646
646
|
const y = qe(c).position === "fixed";
|
|
647
647
|
let S = y ? Bt(c) : c;
|
|
648
|
-
for (; xe(S) && !
|
|
649
|
-
const w = qe(S), h =
|
|
648
|
+
for (; xe(S) && !ca(S); ) {
|
|
649
|
+
const w = qe(S), h = $a(S);
|
|
650
650
|
h || w.position !== "fixed" || (g = null), (y ? !h && !g : !h && w.position === "static" && g && ["absolute", "fixed"].includes(g.position) || Et(S) && !h && Ho(c, S)) ? f = f.filter((B) => B !== S) : g = w, S = Bt(S);
|
|
651
651
|
}
|
|
652
652
|
return v.set(c, f), f;
|
|
@@ -662,7 +662,7 @@ const Rs = { getClippingRect: function(e) {
|
|
|
662
662
|
return t;
|
|
663
663
|
let r = { scrollLeft: 0, scrollTop: 0 }, s = { x: 1, y: 1 };
|
|
664
664
|
const u = { x: 0, y: 0 };
|
|
665
|
-
if ((o || !o && l !== "fixed") && ((nt(a) !== "body" || Et(n)) && (r =
|
|
665
|
+
if ((o || !o && l !== "fixed") && ((nt(a) !== "body" || Et(n)) && (r = fa(a)), Ge(a))) {
|
|
666
666
|
const c = ut(a);
|
|
667
667
|
s = bt(a), u.x = c.x + a.clientLeft, u.y = c.y + a.clientTop;
|
|
668
668
|
}
|
|
@@ -700,7 +700,7 @@ const Ms = (e, t, a) => {
|
|
|
700
700
|
const l = /* @__PURE__ */ new Map(), o = { platform: Rs, ...a }, n = { ...o.platform, _c: l };
|
|
701
701
|
return Vs(e, t, { ...o, platform: n });
|
|
702
702
|
};
|
|
703
|
-
function
|
|
703
|
+
function ka(e) {
|
|
704
704
|
var t;
|
|
705
705
|
return (t = e == null ? void 0 : e.$el) != null ? t : e;
|
|
706
706
|
}
|
|
@@ -709,7 +709,7 @@ function Ds(e) {
|
|
|
709
709
|
name: "arrow",
|
|
710
710
|
options: e,
|
|
711
711
|
fn(t) {
|
|
712
|
-
const a =
|
|
712
|
+
const a = ka(C(e.element));
|
|
713
713
|
return a == null ? {} : Ps({
|
|
714
714
|
element: a,
|
|
715
715
|
padding: e.padding
|
|
@@ -738,7 +738,7 @@ function Do(e, t, a) {
|
|
|
738
738
|
}), u = i(() => {
|
|
739
739
|
var E;
|
|
740
740
|
return (E = C(a.transform)) != null ? E : !0;
|
|
741
|
-
}), c = i(() =>
|
|
741
|
+
}), c = i(() => ka(e.value)), v = i(() => ka(t.value)), p = z(0), f = z(0), g = z(s.value), y = z(r.value), S = La({}), w = z(!1), h = i(() => {
|
|
742
742
|
const E = {
|
|
743
743
|
position: g.value,
|
|
744
744
|
left: "0",
|
|
@@ -785,11 +785,11 @@ function Do(e, t, a) {
|
|
|
785
785
|
function _() {
|
|
786
786
|
o.value || (w.value = !1);
|
|
787
787
|
}
|
|
788
|
-
return
|
|
788
|
+
return re([n, r, s], b, {
|
|
789
789
|
flush: "sync"
|
|
790
|
-
}),
|
|
790
|
+
}), re([c, v], P, {
|
|
791
791
|
flush: "sync"
|
|
792
|
-
}),
|
|
792
|
+
}), re(o, _, {
|
|
793
793
|
flush: "sync"
|
|
794
794
|
}), eo() && to(k), {
|
|
795
795
|
x: ct(p),
|
|
@@ -875,7 +875,7 @@ var Xs = Object.defineProperty, Ks = Object.defineProperties, Js = Object.getOwn
|
|
|
875
875
|
function jo(e, t) {
|
|
876
876
|
var a;
|
|
877
877
|
const l = La();
|
|
878
|
-
return
|
|
878
|
+
return xt(() => {
|
|
879
879
|
l.value = e();
|
|
880
880
|
}, er(Qs({}, t), {
|
|
881
881
|
flush: (a = t == null ? void 0 : t.flush) != null ? a : "sync"
|
|
@@ -896,14 +896,14 @@ function ar(e) {
|
|
|
896
896
|
};
|
|
897
897
|
return (...n) => (t += 1, a || (l = ao(!0), a = l.run(() => e(...n))), Ft(o), a);
|
|
898
898
|
}
|
|
899
|
-
function
|
|
899
|
+
function Rt(e) {
|
|
900
900
|
return typeof e == "function" ? e() : C(e);
|
|
901
901
|
}
|
|
902
|
-
const
|
|
902
|
+
const aa = typeof window < "u", lr = (e) => typeof e < "u", It = () => {
|
|
903
903
|
}, or = /* @__PURE__ */ nr();
|
|
904
904
|
function nr() {
|
|
905
905
|
var e;
|
|
906
|
-
return
|
|
906
|
+
return aa && ((e = window == null ? void 0 : window.navigator) == null ? void 0 : e.userAgent) && /* @__PURE__ */ /iP(ad|hone|od)/.test(window.navigator.userAgent);
|
|
907
907
|
}
|
|
908
908
|
function sr(e, t) {
|
|
909
909
|
function a(...l) {
|
|
@@ -934,7 +934,7 @@ function Go(...e) {
|
|
|
934
934
|
return typeof t == "function" ? _e(Rn(() => ({ get: t, set: It }))) : z(t);
|
|
935
935
|
}
|
|
936
936
|
function ir(e, t = !0) {
|
|
937
|
-
|
|
937
|
+
ra() ? We(e) : t ? e() : Te(e);
|
|
938
938
|
}
|
|
939
939
|
function ur(e = 0, t = {}) {
|
|
940
940
|
const a = z(e), {
|
|
@@ -957,12 +957,12 @@ function Wo(e, t = 1e3, a = {}) {
|
|
|
957
957
|
r.value = !1, s();
|
|
958
958
|
}
|
|
959
959
|
function c() {
|
|
960
|
-
const v =
|
|
960
|
+
const v = Rt(t);
|
|
961
961
|
v <= 0 || (r.value = !0, o && e(), s(), n = setInterval(e, v));
|
|
962
962
|
}
|
|
963
|
-
if (l &&
|
|
964
|
-
const v =
|
|
965
|
-
r.value &&
|
|
963
|
+
if (l && aa && c(), lo(t) || typeof t == "function") {
|
|
964
|
+
const v = re(t, () => {
|
|
965
|
+
r.value && aa && c();
|
|
966
966
|
});
|
|
967
967
|
Ft(v);
|
|
968
968
|
}
|
|
@@ -979,7 +979,7 @@ function gt(e, t = {}) {
|
|
|
979
979
|
nanToZero: o
|
|
980
980
|
} = t;
|
|
981
981
|
return i(() => {
|
|
982
|
-
let n =
|
|
982
|
+
let n = Rt(e);
|
|
983
983
|
return typeof n == "string" && (n = Number[a](n, l)), o && isNaN(n) && (n = 0), n;
|
|
984
984
|
});
|
|
985
985
|
}
|
|
@@ -998,7 +998,7 @@ function vr(e, t, a = {}) {
|
|
|
998
998
|
} = l, n = fr(l, [
|
|
999
999
|
"eventFilter"
|
|
1000
1000
|
]);
|
|
1001
|
-
return
|
|
1001
|
+
return re(
|
|
1002
1002
|
e,
|
|
1003
1003
|
sr(
|
|
1004
1004
|
o,
|
|
@@ -1007,19 +1007,19 @@ function vr(e, t, a = {}) {
|
|
|
1007
1007
|
n
|
|
1008
1008
|
);
|
|
1009
1009
|
}
|
|
1010
|
-
var pr = Object.defineProperty, mr = Object.defineProperties, gr = Object.getOwnPropertyDescriptors,
|
|
1010
|
+
var pr = Object.defineProperty, mr = Object.defineProperties, gr = Object.getOwnPropertyDescriptors, la = Object.getOwnPropertySymbols, Uo = Object.prototype.hasOwnProperty, Xo = Object.prototype.propertyIsEnumerable, wl = (e, t, a) => t in e ? pr(e, t, { enumerable: !0, configurable: !0, writable: !0, value: a }) : e[t] = a, br = (e, t) => {
|
|
1011
1011
|
for (var a in t || (t = {}))
|
|
1012
1012
|
Uo.call(t, a) && wl(e, a, t[a]);
|
|
1013
|
-
if (
|
|
1014
|
-
for (var a of
|
|
1013
|
+
if (la)
|
|
1014
|
+
for (var a of la(t))
|
|
1015
1015
|
Xo.call(t, a) && wl(e, a, t[a]);
|
|
1016
1016
|
return e;
|
|
1017
1017
|
}, yr = (e, t) => mr(e, gr(t)), hr = (e, t) => {
|
|
1018
1018
|
var a = {};
|
|
1019
1019
|
for (var l in e)
|
|
1020
1020
|
Uo.call(e, l) && t.indexOf(l) < 0 && (a[l] = e[l]);
|
|
1021
|
-
if (e != null &&
|
|
1022
|
-
for (var l of
|
|
1021
|
+
if (e != null && la)
|
|
1022
|
+
for (var l of la(e))
|
|
1023
1023
|
t.indexOf(l) < 0 && Xo.call(e, l) && (a[l] = e[l]);
|
|
1024
1024
|
return a;
|
|
1025
1025
|
};
|
|
@@ -1039,10 +1039,10 @@ function Br(e, t, a = {}) {
|
|
|
1039
1039
|
}
|
|
1040
1040
|
function et(e) {
|
|
1041
1041
|
var t;
|
|
1042
|
-
const a =
|
|
1042
|
+
const a = Rt(e);
|
|
1043
1043
|
return (t = a == null ? void 0 : a.$el) != null ? t : a;
|
|
1044
1044
|
}
|
|
1045
|
-
const tt =
|
|
1045
|
+
const tt = aa ? window : void 0;
|
|
1046
1046
|
function Ce(...e) {
|
|
1047
1047
|
let t, a, l, o;
|
|
1048
1048
|
if (typeof e[0] == "string" || Array.isArray(e[0]) ? ([a, l, o] = e, t = tt) : [t, a, l, o] = e, !t)
|
|
@@ -1050,8 +1050,8 @@ function Ce(...e) {
|
|
|
1050
1050
|
Array.isArray(a) || (a = [a]), Array.isArray(l) || (l = [l]);
|
|
1051
1051
|
const n = [], r = () => {
|
|
1052
1052
|
n.forEach((v) => v()), n.length = 0;
|
|
1053
|
-
}, s = (v, p, f, g) => (v.addEventListener(p, f, g), () => v.removeEventListener(p, f, g)), u =
|
|
1054
|
-
() => [et(t),
|
|
1053
|
+
}, s = (v, p, f, g) => (v.addEventListener(p, f, g), () => v.removeEventListener(p, f, g)), u = re(
|
|
1054
|
+
() => [et(t), Rt(o)],
|
|
1055
1055
|
([v, p]) => {
|
|
1056
1056
|
r(), v && n.push(
|
|
1057
1057
|
...a.flatMap((f) => l.map((g) => s(v, f, g, p)))
|
|
@@ -1102,7 +1102,7 @@ function Ko(e, t, a = {}) {
|
|
|
1102
1102
|
}
|
|
1103
1103
|
function Sr() {
|
|
1104
1104
|
const e = z(!1);
|
|
1105
|
-
return
|
|
1105
|
+
return ra() && We(() => {
|
|
1106
1106
|
e.value = !0;
|
|
1107
1107
|
}), e;
|
|
1108
1108
|
}
|
|
@@ -1118,14 +1118,14 @@ function $r(e, t = {}) {
|
|
|
1118
1118
|
}, s = () => {
|
|
1119
1119
|
l.value && (r(), o = a.matchMedia(Go(e).value), n.value = !!(o != null && o.matches), o && ("addEventListener" in o ? o.addEventListener("change", s) : o.addListener(s)));
|
|
1120
1120
|
};
|
|
1121
|
-
return
|
|
1121
|
+
return xt(s), Ft(() => r()), n;
|
|
1122
1122
|
}
|
|
1123
1123
|
function _r(e) {
|
|
1124
1124
|
return JSON.parse(JSON.stringify(e));
|
|
1125
1125
|
}
|
|
1126
|
-
const
|
|
1126
|
+
const jt = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {}, qt = "__vueuse_ssr_handlers__", kr = /* @__PURE__ */ Cr();
|
|
1127
1127
|
function Cr() {
|
|
1128
|
-
return
|
|
1128
|
+
return qt in jt || (jt[qt] = jt[qt] || {}), jt[qt];
|
|
1129
1129
|
}
|
|
1130
1130
|
function Ua(e, t) {
|
|
1131
1131
|
return kr[e] || t;
|
|
@@ -1201,7 +1201,7 @@ function Er(e, t, a, l = {}) {
|
|
|
1201
1201
|
}
|
|
1202
1202
|
if (!a)
|
|
1203
1203
|
return y;
|
|
1204
|
-
const S =
|
|
1204
|
+
const S = Rt(t), w = Tr(S), h = (o = l.serializer) != null ? o : Or[w], { pause: B, resume: b } = Br(
|
|
1205
1205
|
y,
|
|
1206
1206
|
() => k(y.value),
|
|
1207
1207
|
{ flush: n, deep: r, eventFilter: f }
|
|
@@ -1311,7 +1311,7 @@ function zr(e = {}) {
|
|
|
1311
1311
|
function B(k) {
|
|
1312
1312
|
e.onChanged ? e.onChanged(k, h) : h(k);
|
|
1313
1313
|
}
|
|
1314
|
-
|
|
1314
|
+
re(S, B, { flush: "post", immediate: !0 }), ir(() => B(S.value));
|
|
1315
1315
|
const b = i({
|
|
1316
1316
|
get() {
|
|
1317
1317
|
return c ? y.value : S.value;
|
|
@@ -1336,7 +1336,7 @@ function Me(e, t = {}) {
|
|
|
1336
1336
|
!r && l.value ? (s = o.value) == null || s.blur() : r && !l.value && ((u = o.value) == null || u.focus());
|
|
1337
1337
|
}
|
|
1338
1338
|
});
|
|
1339
|
-
return
|
|
1339
|
+
return re(
|
|
1340
1340
|
o,
|
|
1341
1341
|
() => {
|
|
1342
1342
|
n.value = a;
|
|
@@ -1383,7 +1383,7 @@ function Pl(e, t = {}) {
|
|
|
1383
1383
|
} = t, { x: o, y: n, sourceType: r } = Hr(t), s = z(e ?? (l == null ? void 0 : l.document.body)), u = z(0), c = z(0), v = z(0), p = z(0), f = z(0), g = z(0), y = z(!0);
|
|
1384
1384
|
let S = () => {
|
|
1385
1385
|
};
|
|
1386
|
-
return l && (S =
|
|
1386
|
+
return l && (S = re(
|
|
1387
1387
|
[s, o, n],
|
|
1388
1388
|
() => {
|
|
1389
1389
|
const w = et(s);
|
|
@@ -1482,7 +1482,7 @@ function Ve(e, t, a, l = {}) {
|
|
|
1482
1482
|
deep: v = !1,
|
|
1483
1483
|
defaultValue: p,
|
|
1484
1484
|
shouldEmit: f
|
|
1485
|
-
} = l, g =
|
|
1485
|
+
} = l, g = ra(), y = a || (g == null ? void 0 : g.emit) || ((o = g == null ? void 0 : g.$emit) == null ? void 0 : o.bind(g)) || ((r = (n = g == null ? void 0 : g.proxy) == null ? void 0 : n.$emit) == null ? void 0 : r.bind(g == null ? void 0 : g.proxy));
|
|
1486
1486
|
let S = c;
|
|
1487
1487
|
t || (t = "modelValue"), S = c || S || `update:${t.toString()}`;
|
|
1488
1488
|
const w = (b) => s ? typeof s == "function" ? s(b) : _r(b) : b, h = () => lr(e[t]) ? w(e[t]) : p, B = (b) => {
|
|
@@ -1490,10 +1490,10 @@ function Ve(e, t, a, l = {}) {
|
|
|
1490
1490
|
};
|
|
1491
1491
|
if (u) {
|
|
1492
1492
|
const b = h(), k = z(b);
|
|
1493
|
-
return
|
|
1493
|
+
return re(
|
|
1494
1494
|
() => e[t],
|
|
1495
1495
|
(P) => k.value = w(P)
|
|
1496
|
-
),
|
|
1496
|
+
), re(
|
|
1497
1497
|
k,
|
|
1498
1498
|
(P) => {
|
|
1499
1499
|
(P !== e[t] || v) && B(P);
|
|
@@ -1532,7 +1532,7 @@ const Xa = L({
|
|
|
1532
1532
|
return e.skip ? (l = t.default) == null ? void 0 : l.call(t) : e.tag === "Teleport" ? de(xa, { to: e.to }, [(o = t.default) == null ? void 0 : o.call(t)]) : de(e.tag, { ...a }, [(n = t.default) == null ? void 0 : n.call(t)]);
|
|
1533
1533
|
};
|
|
1534
1534
|
}
|
|
1535
|
-
}),
|
|
1535
|
+
}), Ht = (e) => jo(() => {
|
|
1536
1536
|
const t = Na(e);
|
|
1537
1537
|
return t ? `justify-content-${t}` : "";
|
|
1538
1538
|
});
|
|
@@ -1569,8 +1569,10 @@ const Jo = tr(() => {
|
|
|
1569
1569
|
}, g = () => {
|
|
1570
1570
|
n.value = !1, r.value = s.value;
|
|
1571
1571
|
};
|
|
1572
|
-
|
|
1572
|
+
xt(() => {
|
|
1573
1573
|
r.value > s.value && (r.value = s.value), r.value === s.value && c();
|
|
1574
|
+
}), re([o, l], () => {
|
|
1575
|
+
g(), f();
|
|
1574
1576
|
});
|
|
1575
1577
|
const y = () => {
|
|
1576
1578
|
p.value !== !1 && (n.value = !0, c());
|
|
@@ -1613,7 +1615,7 @@ const Jo = tr(() => {
|
|
|
1613
1615
|
}, en = (e) => {
|
|
1614
1616
|
const t = ke(e);
|
|
1615
1617
|
return i(() => ({
|
|
1616
|
-
"aria-invalid":
|
|
1618
|
+
"aria-invalid": da(t.value.ariaInvalid, t.value.state),
|
|
1617
1619
|
"aria-required": t.value.required === !0 ? !0 : void 0
|
|
1618
1620
|
}));
|
|
1619
1621
|
}, tn = (e) => {
|
|
@@ -1664,7 +1666,7 @@ const Jo = tr(() => {
|
|
|
1664
1666
|
});
|
|
1665
1667
|
});
|
|
1666
1668
|
const p = i(
|
|
1667
|
-
() =>
|
|
1669
|
+
() => da(e.ariaInvalid, r.value)
|
|
1668
1670
|
), f = (h) => {
|
|
1669
1671
|
const { value: B } = h.target, b = u(B, h);
|
|
1670
1672
|
if (b === !1 || h.defaultPrevented) {
|
|
@@ -1697,7 +1699,7 @@ const Jo = tr(() => {
|
|
|
1697
1699
|
var h;
|
|
1698
1700
|
e.disabled || (h = a.value) == null || h.blur();
|
|
1699
1701
|
};
|
|
1700
|
-
return
|
|
1702
|
+
return re(
|
|
1701
1703
|
() => e.modelValue,
|
|
1702
1704
|
(h) => {
|
|
1703
1705
|
a.value && (a.value.value = l && o ? l : h, l = null, o = !0);
|
|
@@ -1719,7 +1721,7 @@ const Jo = tr(() => {
|
|
|
1719
1721
|
return e[t];
|
|
1720
1722
|
const a = t.split(".");
|
|
1721
1723
|
return vt(e[a[0]], a.splice(1).join("."));
|
|
1722
|
-
},
|
|
1724
|
+
}, ga = (e, t = null, a, l) => {
|
|
1723
1725
|
if (Object.prototype.toString.call(e) === "[object Object]") {
|
|
1724
1726
|
const o = vt(e, l.valueField), n = vt(e, l.textField), r = vt(e, l.htmlField), s = vt(e, l.disabledField), u = e[l.optionsField] || null;
|
|
1725
1727
|
return u !== null ? {
|
|
@@ -1737,27 +1739,27 @@ const Jo = tr(() => {
|
|
|
1737
1739
|
text: String(e),
|
|
1738
1740
|
disabled: !1
|
|
1739
1741
|
};
|
|
1740
|
-
}, Ka = (e, t, a) => Array.isArray(e) ? e.map((l) =>
|
|
1742
|
+
}, Ka = (e, t, a) => Array.isArray(e) ? e.map((l) => ga(l, null, t, a)) : Object.prototype.toString.call(e) === "[object Object]" ? (console.warn(
|
|
1741
1743
|
`[BootstrapVue warn]: ${t} - Setting prop "options" to an object is deprecated. Use the array format instead.`
|
|
1742
1744
|
), Object.keys(e).map((l) => {
|
|
1743
1745
|
const o = e[l];
|
|
1744
1746
|
switch (typeof o) {
|
|
1745
1747
|
case "object":
|
|
1746
|
-
return
|
|
1748
|
+
return ga(o.text, String(o.value), t, a);
|
|
1747
1749
|
default:
|
|
1748
|
-
return
|
|
1750
|
+
return ga(o, String(l), t, a);
|
|
1749
1751
|
}
|
|
1750
|
-
})) : [], Ae = (e, t) => i(() => Na(e) || at(t)),
|
|
1752
|
+
})) : [], Ae = (e, t) => i(() => Na(e) || at(t)), ba = "modal-open", Gr = ar(() => {
|
|
1751
1753
|
const { count: e, inc: t, dec: a } = ur(), l = Ua("updateHTMLAttrs", (o, n, r) => {
|
|
1752
1754
|
const s = typeof o == "string" ? window == null ? void 0 : window.document.querySelector(o) : et(o);
|
|
1753
|
-
s && (n === "class" ? s.classList.toggle(
|
|
1755
|
+
s && (n === "class" ? s.classList.toggle(ba, r === ba) : s.setAttribute(n, r));
|
|
1754
1756
|
});
|
|
1755
|
-
return
|
|
1756
|
-
l("body", "class", o > 0 ?
|
|
1757
|
+
return re(e, (o) => {
|
|
1758
|
+
l("body", "class", o > 0 ? ba : "");
|
|
1757
1759
|
}), { inc: t, dec: a };
|
|
1758
1760
|
}), Wr = (e) => {
|
|
1759
1761
|
const { inc: t, dec: a } = Gr();
|
|
1760
|
-
|
|
1762
|
+
re(
|
|
1761
1763
|
e,
|
|
1762
1764
|
(l, o) => {
|
|
1763
1765
|
l ? t() : o && !l && a();
|
|
@@ -1797,9 +1799,9 @@ const Jo = tr(() => {
|
|
|
1797
1799
|
emits: ["show", "shown", "hide", "hidden", "hide-prevented", "show-prevented", "update:modelValue"],
|
|
1798
1800
|
setup(e, { emit: t }) {
|
|
1799
1801
|
const a = e, l = d(() => a.modelValue), o = z(l.value), n = z(l.value);
|
|
1800
|
-
|
|
1802
|
+
xt(() => {
|
|
1801
1803
|
t("update:modelValue", o.value);
|
|
1802
|
-
}),
|
|
1804
|
+
}), re(l, () => {
|
|
1803
1805
|
l.value !== o.value && (l.value ? j() : ne(new Event("update:modelValue")));
|
|
1804
1806
|
});
|
|
1805
1807
|
const r = Ae(() => a.id, "popover"), s = d(() => a.click), u = d(() => a.manual), c = d(() => a.noShift), v = d(() => a.noFlip), p = d(() => a.noFade), f = d(() => a.noAutoClose), g = d(() => a.hide), y = d(() => a.realtime), S = d(() => a.inline), w = d(() => a.tooltip), h = d(() => a.html), B = z(!1), b = z(null), k = z(null), P = z(null), _ = z(null), E = z(null), F = (K) => {
|
|
@@ -1838,7 +1840,7 @@ const Jo = tr(() => {
|
|
|
1838
1840
|
strategy: a.strategy,
|
|
1839
1841
|
whileElementsMounted: (...K) => Hs(...K, { animationFrame: y.value })
|
|
1840
1842
|
}), me = z({ position: "absolute" });
|
|
1841
|
-
|
|
1843
|
+
re(fe, () => {
|
|
1842
1844
|
var K;
|
|
1843
1845
|
if (g.value === !0 && ((K = fe.value.hide) != null && K.referenceHidden ? B.value = !0 : B.value = !1), fe.value.arrow) {
|
|
1844
1846
|
const { x: ce, y: V } = fe.value.arrow;
|
|
@@ -1864,10 +1866,10 @@ const Jo = tr(() => {
|
|
|
1864
1866
|
[`bs-${K}-${Yr(be.value)}`]: be.value !== void 0
|
|
1865
1867
|
}
|
|
1866
1868
|
];
|
|
1867
|
-
}), { isOutside: G } = Pl(b), { isOutside: J } = Pl(_),
|
|
1869
|
+
}), { isOutside: G } = Pl(b), { isOutside: J } = Pl(_), ie = (K) => {
|
|
1868
1870
|
const ce = K ?? new Event("click");
|
|
1869
1871
|
o.value ? ne(ce) : j();
|
|
1870
|
-
}, D = (K, ce = {}) => new
|
|
1872
|
+
}, D = (K, ce = {}) => new Nt(K, {
|
|
1871
1873
|
cancelable: !1,
|
|
1872
1874
|
target: b.value || null,
|
|
1873
1875
|
relatedTarget: null,
|
|
@@ -1906,7 +1908,7 @@ const Jo = tr(() => {
|
|
|
1906
1908
|
() => {
|
|
1907
1909
|
n.value = !1;
|
|
1908
1910
|
},
|
|
1909
|
-
b.value ?
|
|
1911
|
+
b.value ? ha(b.value) : 150
|
|
1910
1912
|
), t("hidden", D("hidden"));
|
|
1911
1913
|
})) : setTimeout(() => {
|
|
1912
1914
|
ne(K);
|
|
@@ -1924,9 +1926,9 @@ const Jo = tr(() => {
|
|
|
1924
1926
|
ce ? k.value = ce : console.warn("Reference element not found", a.reference);
|
|
1925
1927
|
} else
|
|
1926
1928
|
k.value = _.value;
|
|
1927
|
-
!_.value || u.value || Ha && (s.value && _.value.addEventListener("click",
|
|
1929
|
+
!_.value || u.value || Ha && (s.value && _.value.addEventListener("click", ie), !s.value && _.value.addEventListener("pointerenter", j), !s.value && _.value.addEventListener("pointerleave", ne), !s.value && _.value.addEventListener("focus", j), !s.value && _.value.addEventListener("blur", ne));
|
|
1928
1930
|
}, Se = () => {
|
|
1929
|
-
_.value && (_.value.removeEventListener("click",
|
|
1931
|
+
_.value && (_.value.removeEventListener("click", ie), _.value.removeEventListener("pointerenter", j), _.value.removeEventListener("pointerleave", ne), _.value.removeEventListener("focus", j), _.value.removeEventListener("blur", ne));
|
|
1930
1932
|
};
|
|
1931
1933
|
return Ko(
|
|
1932
1934
|
b,
|
|
@@ -1934,7 +1936,7 @@ const Jo = tr(() => {
|
|
|
1934
1936
|
o.value && s.value && !f.value && !u.value && ne(new Event("clickOutside"));
|
|
1935
1937
|
},
|
|
1936
1938
|
{ ignore: [_] }
|
|
1937
|
-
),
|
|
1939
|
+
), re(
|
|
1938
1940
|
() => [a.click, a.target, a.reference],
|
|
1939
1941
|
() => {
|
|
1940
1942
|
Se(), ye();
|
|
@@ -1944,7 +1946,7 @@ const Jo = tr(() => {
|
|
|
1944
1946
|
ref_key: "placeholder",
|
|
1945
1947
|
ref: E
|
|
1946
1948
|
}, null, 512),
|
|
1947
|
-
T(K.$slots, "target", $e(Oe({ show: j, hide: ne, toggle:
|
|
1949
|
+
T(K.$slots, "target", $e(Oe({ show: j, hide: ne, toggle: ie, showState: o.value }))),
|
|
1948
1950
|
Be(Xa, {
|
|
1949
1951
|
tag: "Teleport",
|
|
1950
1952
|
to: K.container,
|
|
@@ -2027,8 +2029,8 @@ const Jo = tr(() => {
|
|
|
2027
2029
|
default:
|
|
2028
2030
|
return t;
|
|
2029
2031
|
}
|
|
2030
|
-
},
|
|
2031
|
-
if (!
|
|
2032
|
+
}, Lt = (e) => typeof e != "object" || e.active !== !1, oa = (e, t) => {
|
|
2033
|
+
if (!Lt(e))
|
|
2032
2034
|
return {};
|
|
2033
2035
|
const l = typeof e > "u" || typeof e == "object" && !e.title && !e.content, o = t.getAttribute("title") || t.getAttribute("data-original-title");
|
|
2034
2036
|
return l ? o ? (t.removeAttribute("title"), t.setAttribute("data-original-title", o), {
|
|
@@ -2041,7 +2043,7 @@ const Jo = tr(() => {
|
|
|
2041
2043
|
title: e != null && e.title ? mt(e == null ? void 0 : e.title, pt) : void 0,
|
|
2042
2044
|
content: e != null && e.content ? mt(e == null ? void 0 : e.content, pt) : void 0
|
|
2043
2045
|
};
|
|
2044
|
-
},
|
|
2046
|
+
}, na = (e, t) => ({
|
|
2045
2047
|
target: () => t,
|
|
2046
2048
|
modelValue: e.modifiers.show,
|
|
2047
2049
|
inline: e.modifiers.inline,
|
|
@@ -2105,7 +2107,7 @@ const Jo = tr(() => {
|
|
|
2105
2107
|
},
|
|
2106
2108
|
emits: ["show", "shown", "hide", "hidden", "hide-prevented", "show-prevented", "update:modelValue"],
|
|
2107
2109
|
setup(e, { expose: t, emit: a }) {
|
|
2108
|
-
const l = e, o = (P, _ = {}) => new
|
|
2110
|
+
const l = e, o = (P, _ = {}) => new Nt(P, {
|
|
2109
2111
|
cancelable: !1,
|
|
2110
2112
|
target: f.value || null,
|
|
2111
2113
|
relatedTarget: null,
|
|
@@ -2134,7 +2136,7 @@ const Jo = tr(() => {
|
|
|
2134
2136
|
Te(() => {
|
|
2135
2137
|
f.value !== null && (u.value ? f.value.style.width = `${f.value.scrollWidth}px` : f.value.style.height = `${f.value.scrollHeight}px`, setTimeout(() => {
|
|
2136
2138
|
g.value = !1, a("shown", o("shown")), f.value !== null && (f.value.style.height = "", f.value.style.width = "");
|
|
2137
|
-
},
|
|
2139
|
+
}, ha(f.value)));
|
|
2138
2140
|
});
|
|
2139
2141
|
}, k = () => {
|
|
2140
2142
|
const P = o("hide", { cancelable: !0 });
|
|
@@ -2145,10 +2147,10 @@ const Jo = tr(() => {
|
|
|
2145
2147
|
f.value !== null && (u.value ? f.value.style.width = `${f.value.scrollWidth}px` : f.value.style.height = `${f.value.scrollHeight}px`, f.value.offsetHeight, g.value = !0, Te(() => {
|
|
2146
2148
|
f.value !== null && (f.value.style.height = "", f.value.style.width = "", setTimeout(() => {
|
|
2147
2149
|
y.value = !1, g.value = !1, a("hidden", o("hidden"));
|
|
2148
|
-
},
|
|
2150
|
+
}, ha(f.value)));
|
|
2149
2151
|
}));
|
|
2150
2152
|
};
|
|
2151
|
-
return
|
|
2153
|
+
return re([n, y], () => {
|
|
2152
2154
|
if (r.value === !0) {
|
|
2153
2155
|
if (y.value)
|
|
2154
2156
|
return;
|
|
@@ -2160,7 +2162,7 @@ const Jo = tr(() => {
|
|
|
2160
2162
|
f.value !== null && !r.value && s.value && Te(() => {
|
|
2161
2163
|
n.value = !0;
|
|
2162
2164
|
});
|
|
2163
|
-
}), v.value && (n.value = !0, y.value = !0),
|
|
2165
|
+
}), v.value && (n.value = !0, y.value = !0), re(v, (P) => {
|
|
2164
2166
|
P ? h() : w();
|
|
2165
2167
|
}), Ce(f, "bv-toggle", () => {
|
|
2166
2168
|
n.value = !r.value;
|
|
@@ -2220,10 +2222,10 @@ const Jo = tr(() => {
|
|
|
2220
2222
|
}, o = Ve(a, "modelValue", t, { passive: !0 }), n = Ee(_o, null), r = Ae(() => a.id, "accordion_item");
|
|
2221
2223
|
return We(() => {
|
|
2222
2224
|
o.value && !(n != null && n.free.value) && (n == null || n.setOpenItem(r.value)), !o.value && (n == null ? void 0 : n.openItem.value) === r.value && (o.value = !0);
|
|
2223
|
-
}),
|
|
2225
|
+
}), re(
|
|
2224
2226
|
() => n == null ? void 0 : n.openItem.value,
|
|
2225
2227
|
() => o.value = (n == null ? void 0 : n.openItem.value) === r.value && !(n != null && n.free.value)
|
|
2226
|
-
),
|
|
2228
|
+
), re(o, () => {
|
|
2227
2229
|
o.value && !(n != null && n.free.value) && (n == null || n.setOpenItem(r.value));
|
|
2228
2230
|
}), (s, u) => (m(), A("div", ei, [
|
|
2229
2231
|
Be(sn, te({
|
|
@@ -2337,7 +2339,7 @@ const Jo = tr(() => {
|
|
|
2337
2339
|
}), ni = {
|
|
2338
2340
|
key: 0,
|
|
2339
2341
|
class: "visually-hidden"
|
|
2340
|
-
},
|
|
2342
|
+
}, va = /* @__PURE__ */ L({
|
|
2341
2343
|
__name: "BSpinner",
|
|
2342
2344
|
props: {
|
|
2343
2345
|
label: { default: void 0 },
|
|
@@ -2395,7 +2397,7 @@ const Jo = tr(() => {
|
|
|
2395
2397
|
const l = d(() => e.active), o = d(() => e.append), n = d(() => e.disabled), r = d(() => e.replace), s = Ee(ja, null), u = Ee(qa, null), c = () => {
|
|
2396
2398
|
var h;
|
|
2397
2399
|
u !== null && ((h = s == null ? void 0 : s.close) == null || h.call(s));
|
|
2398
|
-
}, v =
|
|
2400
|
+
}, v = ra(), p = z(null), f = i(() => {
|
|
2399
2401
|
const h = e.routerComponentName.split("-").map((b) => b.charAt(0).toUpperCase() + b.slice(1)).join("");
|
|
2400
2402
|
return !((v == null ? void 0 : v.appContext.app.component(h)) !== void 0) || n.value || !e.to ? "a" : e.routerComponentName;
|
|
2401
2403
|
}), g = i(() => {
|
|
@@ -2480,7 +2482,7 @@ function ri(e, t, a, l, o, n) {
|
|
|
2480
2482
|
}
|
|
2481
2483
|
const Ne = /* @__PURE__ */ Xe(si, [["render", ri]]), ii = L({
|
|
2482
2484
|
slots: Object,
|
|
2483
|
-
components: { BLink: Ne, BSpinner:
|
|
2485
|
+
components: { BLink: Ne, BSpinner: va },
|
|
2484
2486
|
props: {
|
|
2485
2487
|
...dt,
|
|
2486
2488
|
active: { type: [Boolean, String], default: !1 },
|
|
@@ -2614,7 +2616,7 @@ const St = /* @__PURE__ */ Xe(ii, [["render", ui]]), di = ["onMouseenter"], ci =
|
|
|
2614
2616
|
variant: l.closeVariant,
|
|
2615
2617
|
type: "button"
|
|
2616
2618
|
}));
|
|
2617
|
-
|
|
2619
|
+
xt(() => a("close-countdown", k.value));
|
|
2618
2620
|
const E = () => {
|
|
2619
2621
|
typeof n.value == "boolean" ? n.value = !1 : (n.value = 0, B()), a("closed");
|
|
2620
2622
|
}, F = () => {
|
|
@@ -2812,7 +2814,7 @@ const St = /* @__PURE__ */ Xe(ii, [["render", ui]]), di = ["onMouseenter"], ci =
|
|
|
2812
2814
|
_: 3
|
|
2813
2815
|
}));
|
|
2814
2816
|
}
|
|
2815
|
-
}), Ol =
|
|
2817
|
+
}), Ol = zt(dt, ["event", "routerTag"]), bi = L({
|
|
2816
2818
|
slots: Object,
|
|
2817
2819
|
components: { BLink: Ne },
|
|
2818
2820
|
props: {
|
|
@@ -2855,7 +2857,7 @@ function yi(e, t, a, l, o, n) {
|
|
|
2855
2857
|
_: 3
|
|
2856
2858
|
}, 16, ["class"]);
|
|
2857
2859
|
}
|
|
2858
|
-
const hi = /* @__PURE__ */ Xe(bi, [["render", yi]]), El =
|
|
2860
|
+
const hi = /* @__PURE__ */ Xe(bi, [["render", yi]]), El = zt(dt, ["event", "routerTag"]), Bi = L({
|
|
2859
2861
|
slots: Object,
|
|
2860
2862
|
components: { BLink: Ne },
|
|
2861
2863
|
props: {
|
|
@@ -3039,7 +3041,7 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3039
3041
|
)}`;
|
|
3040
3042
|
return (b, k) => (m(), A("img", te({ class: h.value }, S.value), null, 16));
|
|
3041
3043
|
}
|
|
3042
|
-
}),
|
|
3044
|
+
}), sa = /* @__PURE__ */ L({
|
|
3043
3045
|
__name: "BCardImg",
|
|
3044
3046
|
props: {
|
|
3045
3047
|
alt: { default: void 0 },
|
|
@@ -3325,7 +3327,7 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3325
3327
|
}, {
|
|
3326
3328
|
default: M(() => [
|
|
3327
3329
|
C(l) ? Z("", !0) : T(y.$slots, "img", { key: 0 }, () => [
|
|
3328
|
-
y.imgSrc ? (m(), H(
|
|
3330
|
+
y.imgSrc ? (m(), H(sa, $e(te({ key: 0 }, g.value)), null, 16)) : Z("", !0)
|
|
3329
3331
|
]),
|
|
3330
3332
|
y.header || s.value || y.headerHtml ? (m(), H(dn, te({ key: 1 }, v.value, { class: y.headerClass }), {
|
|
3331
3333
|
default: M(() => [
|
|
@@ -3354,7 +3356,7 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3354
3356
|
_: 3
|
|
3355
3357
|
}, 16, ["class"])) : Z("", !0),
|
|
3356
3358
|
C(l) ? T(y.$slots, "img", { key: 5 }, () => [
|
|
3357
|
-
y.imgSrc ? (m(), H(
|
|
3359
|
+
y.imgSrc ? (m(), H(sa, $e(te({ key: 0 }, g.value)), null, 16)) : Z("", !0)
|
|
3358
3360
|
]) : Z("", !0)
|
|
3359
3361
|
]),
|
|
3360
3362
|
_: 3
|
|
@@ -3447,13 +3449,13 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3447
3449
|
{ immediate: _.value === "carousel" }
|
|
3448
3450
|
), O = i(
|
|
3449
3451
|
() => _.value === !0 && h.value === !0 || _.value === "carousel"
|
|
3450
|
-
), x = i(() =>
|
|
3452
|
+
), x = i(() => Sa(o.default, "BCarouselSlide")), N = i(() => [
|
|
3451
3453
|
"carousel",
|
|
3452
3454
|
"slide",
|
|
3453
3455
|
"pointer-event",
|
|
3454
3456
|
{ "carousel-fade": v.value }
|
|
3455
3457
|
]), le = (J) => {
|
|
3456
|
-
var
|
|
3458
|
+
var ie;
|
|
3457
3459
|
return new uo(J, {
|
|
3458
3460
|
componentId: n.value,
|
|
3459
3461
|
cancelable: !1,
|
|
@@ -3461,7 +3463,7 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3461
3463
|
direction: B.value ? "right" : "left",
|
|
3462
3464
|
from: P.value,
|
|
3463
3465
|
to: r.value,
|
|
3464
|
-
relatedTarget: ((
|
|
3466
|
+
relatedTarget: ((ie = b.value) == null ? void 0 : ie.children[r.value]) ?? null
|
|
3465
3467
|
});
|
|
3466
3468
|
}, W = (J) => {
|
|
3467
3469
|
if (w.value !== !0) {
|
|
@@ -3511,7 +3513,7 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3511
3513
|
}, G = () => {
|
|
3512
3514
|
a("slid", le("slid")), w.value = !1;
|
|
3513
3515
|
};
|
|
3514
|
-
return
|
|
3516
|
+
return re(
|
|
3515
3517
|
() => l.ride,
|
|
3516
3518
|
() => {
|
|
3517
3519
|
h.value = !1;
|
|
@@ -3520,14 +3522,14 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3520
3522
|
background: _e(ke(l, "background")),
|
|
3521
3523
|
width: _e(ke(l, "imgWidth")),
|
|
3522
3524
|
height: _e(ke(l, "imgHeight"))
|
|
3523
|
-
}), (J,
|
|
3525
|
+
}), (J, ie) => (m(), A("div", {
|
|
3524
3526
|
id: C(n),
|
|
3525
3527
|
ref_key: "target",
|
|
3526
3528
|
ref: k,
|
|
3527
3529
|
class: R(N.value),
|
|
3528
3530
|
onKeydown: [
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
+
ie[0] || (ie[0] = Vt((D) => fe(q), ["left"])),
|
|
3532
|
+
ie[1] || (ie[1] = Vt((D) => fe(ee), ["right"]))
|
|
3531
3533
|
],
|
|
3532
3534
|
onMouseenter: it(be, ["stop"]),
|
|
3533
3535
|
onMouseleave: it(he, ["stop"])
|
|
@@ -3563,7 +3565,7 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3563
3565
|
key: j,
|
|
3564
3566
|
class: R({ active: j === C(r) && w.value === !1 })
|
|
3565
3567
|
}, null, 8, ["class"])), [
|
|
3566
|
-
[
|
|
3568
|
+
[ia, j === C(r)]
|
|
3567
3569
|
])), 128))
|
|
3568
3570
|
]),
|
|
3569
3571
|
_: 1
|
|
@@ -3668,7 +3670,7 @@ const rn = /* @__PURE__ */ Xe(Bi, [["render", Si]]), wi = { "aria-label": "bread
|
|
|
3668
3670
|
}, 8, ["class"])) : Z("", !0)
|
|
3669
3671
|
], 4));
|
|
3670
3672
|
}
|
|
3671
|
-
}), Fl =
|
|
3673
|
+
}), Fl = ua("", [], { type: [Boolean, String, Number], default: !1 }), Il = ua("offset", [""], { type: [String, Number], default: null }), Ll = ua("order", [""], { type: [String, Number], default: null }), Gi = L({
|
|
3672
3674
|
name: "BCol",
|
|
3673
3675
|
slots: Object,
|
|
3674
3676
|
props: {
|
|
@@ -3864,12 +3866,12 @@ const Ji = {
|
|
|
3864
3866
|
Math.max(lt(e.delay, 0), Nl)
|
|
3865
3867
|
)
|
|
3866
3868
|
), B = () => {
|
|
3867
|
-
u.value && (y = S = 0, w(), v.value = !0,
|
|
3869
|
+
u.value && (y = S = 0, w(), v.value = !0, Mt(() => {
|
|
3868
3870
|
p.value = !1;
|
|
3869
3871
|
}));
|
|
3870
3872
|
}, b = () => {
|
|
3871
3873
|
w(), t("update:modelValue", !0), y = S = 0, v.value = !1, Te(() => {
|
|
3872
|
-
|
|
3874
|
+
Mt(() => {
|
|
3873
3875
|
p.value = !0;
|
|
3874
3876
|
});
|
|
3875
3877
|
});
|
|
@@ -3881,7 +3883,7 @@ const Ji = {
|
|
|
3881
3883
|
}, P = () => {
|
|
3882
3884
|
(!o.value || s.value || !S) && (S = y = 0), _();
|
|
3883
3885
|
};
|
|
3884
|
-
|
|
3886
|
+
re(u, (x) => {
|
|
3885
3887
|
x ? b() : B();
|
|
3886
3888
|
});
|
|
3887
3889
|
const _ = () => {
|
|
@@ -3899,14 +3901,14 @@ const Ji = {
|
|
|
3899
3901
|
w(), o.value && t("destroyed", e.id);
|
|
3900
3902
|
}), We(() => {
|
|
3901
3903
|
Te(() => {
|
|
3902
|
-
u.value &&
|
|
3904
|
+
u.value && Mt(() => {
|
|
3903
3905
|
b();
|
|
3904
3906
|
});
|
|
3905
3907
|
});
|
|
3906
3908
|
});
|
|
3907
3909
|
const O = () => {
|
|
3908
3910
|
Te(() => {
|
|
3909
|
-
|
|
3911
|
+
Mt(() => {
|
|
3910
3912
|
B();
|
|
3911
3913
|
});
|
|
3912
3914
|
});
|
|
@@ -4061,6 +4063,7 @@ const Ji = {
|
|
|
4061
4063
|
inheritAttrs: !1,
|
|
4062
4064
|
__name: "BDropdown",
|
|
4063
4065
|
props: {
|
|
4066
|
+
ariaLabel: { default: void 0 },
|
|
4064
4067
|
id: { default: void 0 },
|
|
4065
4068
|
menuClass: { default: void 0 },
|
|
4066
4069
|
size: { default: "md" },
|
|
@@ -4137,6 +4140,7 @@ const Ji = {
|
|
|
4137
4140
|
"dropdown-menu-dark": u.value
|
|
4138
4141
|
}
|
|
4139
4142
|
]), he = i(() => ({
|
|
4143
|
+
"aria-label": l.ariaLabel,
|
|
4140
4144
|
"aria-expanded": S.value ? void 0 : r.value,
|
|
4141
4145
|
"aria-haspopup": S.value ? void 0 : "menu",
|
|
4142
4146
|
href: S.value ? l.splitHref : void 0,
|
|
@@ -4163,18 +4167,18 @@ const Ji = {
|
|
|
4163
4167
|
r.value && (l.autoClose === !0 || l.autoClose === "inside") && (n.value = !r.value);
|
|
4164
4168
|
}, J = () => {
|
|
4165
4169
|
n.value = !1;
|
|
4166
|
-
},
|
|
4170
|
+
}, ie = () => {
|
|
4167
4171
|
n.value = !0;
|
|
4168
4172
|
}, D = () => {
|
|
4169
4173
|
n.value = !r.value;
|
|
4170
4174
|
};
|
|
4171
|
-
return
|
|
4175
|
+
return re(r, q), t({
|
|
4172
4176
|
close: J,
|
|
4173
|
-
open:
|
|
4177
|
+
open: ie,
|
|
4174
4178
|
toggle: D
|
|
4175
4179
|
}), Ue(To, {
|
|
4176
4180
|
id: o,
|
|
4177
|
-
open:
|
|
4181
|
+
open: ie,
|
|
4178
4182
|
close: J,
|
|
4179
4183
|
toggle: D,
|
|
4180
4184
|
visible: r,
|
|
@@ -4242,7 +4246,7 @@ const Ji = {
|
|
|
4242
4246
|
}, [
|
|
4243
4247
|
T(j.$slots, "default")
|
|
4244
4248
|
], 14, eu)), [
|
|
4245
|
-
[
|
|
4249
|
+
[ia, C(b) || C(r)]
|
|
4246
4250
|
]) : Z("", !0)
|
|
4247
4251
|
], 64));
|
|
4248
4252
|
}
|
|
@@ -4498,7 +4502,7 @@ const Ji = {
|
|
|
4498
4502
|
_: 3
|
|
4499
4503
|
}, 16, ["class"]));
|
|
4500
4504
|
}
|
|
4501
|
-
}),
|
|
4505
|
+
}), Kt = /* @__PURE__ */ L({
|
|
4502
4506
|
__name: "BFormRow",
|
|
4503
4507
|
props: {
|
|
4504
4508
|
tag: { default: "div" }
|
|
@@ -4612,7 +4616,7 @@ const Ji = {
|
|
|
4612
4616
|
});
|
|
4613
4617
|
}
|
|
4614
4618
|
});
|
|
4615
|
-
|
|
4619
|
+
re(o, ($) => {
|
|
4616
4620
|
if (w !== null) {
|
|
4617
4621
|
if ($ === !1) {
|
|
4618
4622
|
w.remove(a.value);
|
|
@@ -4786,7 +4790,7 @@ const Ji = {
|
|
|
4786
4790
|
], 16, $u));
|
|
4787
4791
|
}
|
|
4788
4792
|
}), wn = ["input", "select", "textarea"], Tu = wn.map((e) => `${e}:not([disabled])`).join(), Au = [...wn, "a", "button", "label"], Vu = "label", Pu = "invalid-feedback", Ou = "valid-feedback", Eu = "description", Fu = "default", Iu = L({
|
|
4789
|
-
components: { BCol: kt, BFormInvalidFeedback: Va, BFormRow:
|
|
4793
|
+
components: { BCol: kt, BFormInvalidFeedback: Va, BFormRow: Kt, BFormText: Pa, BFormValidFeedback: Oa },
|
|
4790
4794
|
props: {
|
|
4791
4795
|
contentCols: { type: [Boolean, String, Number], default: void 0 },
|
|
4792
4796
|
contentColsLg: { type: [Boolean, String, Number], default: void 0 },
|
|
@@ -4831,7 +4835,7 @@ const Ji = {
|
|
|
4831
4835
|
if (Ha && e.labelFor) {
|
|
4832
4836
|
const F = go(`#${is(e.labelFor)}`, f);
|
|
4833
4837
|
if (F) {
|
|
4834
|
-
const I = "aria-describedby", $ = (_ || "").split(
|
|
4838
|
+
const I = "aria-describedby", $ = (_ || "").split(Ut), O = (E || "").split(Ut), x = (Ma(F, I) || "").split(Ut).filter((N) => !O.includes(N)).concat($).filter((N, le, W) => W.indexOf(N) === le).filter((N) => N).join(" ").trim();
|
|
4835
4839
|
x ? _s(F, I, x) : ks(F, I);
|
|
4836
4840
|
}
|
|
4837
4841
|
}
|
|
@@ -4850,9 +4854,9 @@ const Ji = {
|
|
|
4850
4854
|
const _ = B.value;
|
|
4851
4855
|
return _ === !0 ? "is-valid" : _ === !1 ? "is-invalid" : null;
|
|
4852
4856
|
}), k = i(
|
|
4853
|
-
() =>
|
|
4857
|
+
() => da(t.ariaInvalid, o.value)
|
|
4854
4858
|
);
|
|
4855
|
-
return
|
|
4859
|
+
return re(
|
|
4856
4860
|
() => u,
|
|
4857
4861
|
(_, E) => {
|
|
4858
4862
|
_ !== E && g(_, E);
|
|
@@ -4999,10 +5003,10 @@ const Ji = {
|
|
|
4999
5003
|
// as the legend is no longer a direct child of fieldset
|
|
5000
5004
|
"aria-labelledby": l && this.isHorizontal ? r : null
|
|
5001
5005
|
};
|
|
5002
|
-
return this.isHorizontal && !l ? de(
|
|
5006
|
+
return this.isHorizontal && !l ? de(Kt, b, { default: () => [o, B] }) : de(
|
|
5003
5007
|
l ? "fieldset" : "div",
|
|
5004
5008
|
b,
|
|
5005
|
-
this.isHorizontal && l ? [de(
|
|
5009
|
+
this.isHorizontal && l ? [de(Kt, null, { default: () => [o, B] })] : this.isHorizontal || !this.floatingBoolean ? [o, B] : [B]
|
|
5006
5010
|
);
|
|
5007
5011
|
}
|
|
5008
5012
|
}), zl = [
|
|
@@ -5132,12 +5136,12 @@ const zu = /* @__PURE__ */ Xe(Lu, [["render", Nu]]), Ru = ["id", "checked", "dis
|
|
|
5132
5136
|
});
|
|
5133
5137
|
}
|
|
5134
5138
|
});
|
|
5135
|
-
|
|
5139
|
+
re(
|
|
5136
5140
|
() => y == null ? void 0 : y.modelValue.value,
|
|
5137
5141
|
(F) => {
|
|
5138
5142
|
JSON.stringify(F) === JSON.stringify(a.value) !== !0 && (h.value = !1);
|
|
5139
5143
|
}
|
|
5140
|
-
),
|
|
5144
|
+
), re(o, (F) => {
|
|
5141
5145
|
y === null || F === !1 || y.set(a.value);
|
|
5142
5146
|
});
|
|
5143
5147
|
const B = i(
|
|
@@ -5375,7 +5379,7 @@ const zu = /* @__PURE__ */ Xe(Lu, [["render", Nu]]), Ru = ["id", "checked", "dis
|
|
|
5375
5379
|
})), g = i(
|
|
5376
5380
|
() => a.selectSize || u.value ? a.selectSize : void 0
|
|
5377
5381
|
), y = i(
|
|
5378
|
-
() =>
|
|
5382
|
+
() => da(a.ariaInvalid, v.value)
|
|
5379
5383
|
), S = i(() => Ka(a.options, "BFormSelect", a)), w = i({
|
|
5380
5384
|
get: () => l.value,
|
|
5381
5385
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
@@ -5567,7 +5571,7 @@ const zu = /* @__PURE__ */ Xe(Lu, [["render", Nu]]), Ru = ["id", "checked", "dis
|
|
|
5567
5571
|
limit: a.limit,
|
|
5568
5572
|
noTagRemove: v.value,
|
|
5569
5573
|
placeholder: a.placeholder,
|
|
5570
|
-
removeTag:
|
|
5574
|
+
removeTag: ie,
|
|
5571
5575
|
required: f.value,
|
|
5572
5576
|
separator: a.separator,
|
|
5573
5577
|
size: a.size,
|
|
@@ -5578,7 +5582,7 @@ const zu = /* @__PURE__ */ Xe(Lu, [["render", Nu]]), Ru = ["id", "checked", "dis
|
|
|
5578
5582
|
tagVariant: a.tagVariant,
|
|
5579
5583
|
tags: B.value
|
|
5580
5584
|
}));
|
|
5581
|
-
|
|
5585
|
+
re(l, (D) => {
|
|
5582
5586
|
B.value = D;
|
|
5583
5587
|
});
|
|
5584
5588
|
const q = (D) => {
|
|
@@ -5610,7 +5614,7 @@ const zu = /* @__PURE__ */ Xe(Lu, [["render", Nu]]), Ru = ["id", "checked", "dis
|
|
|
5610
5614
|
J(b.value);
|
|
5611
5615
|
return;
|
|
5612
5616
|
}
|
|
5613
|
-
(D.key === "Backspace" || D.key === "Delete") && p.value && b.value === "" && k.value && B.value.length > 0 ?
|
|
5617
|
+
(D.key === "Backspace" || D.key === "Delete") && p.value && b.value === "" && k.value && B.value.length > 0 ? ie(B.value[B.value.length - 1]) : k.value = !0;
|
|
5614
5618
|
}, ge = i(() => {
|
|
5615
5619
|
if (a.separator)
|
|
5616
5620
|
return typeof a.separator == "string" ? a.separator : a.separator.join("");
|
|
@@ -5628,7 +5632,7 @@ const zu = /* @__PURE__ */ Xe(Lu, [["render", Nu]]), Ru = ["id", "checked", "dis
|
|
|
5628
5632
|
}
|
|
5629
5633
|
const ye = [...l.value, ...ne];
|
|
5630
5634
|
b.value = "", k.value = !0, l.value = ye, t("input", ye), w.value = !0;
|
|
5631
|
-
},
|
|
5635
|
+
}, ie = (D) => {
|
|
5632
5636
|
const j = B.value.indexOf((D == null ? void 0 : D.toString()) ?? "");
|
|
5633
5637
|
_.value = B.value.splice(j, 1).toString(), l.value = B.value;
|
|
5634
5638
|
};
|
|
@@ -5660,14 +5664,14 @@ const zu = /* @__PURE__ */ Xe(Lu, [["render", Nu]]), Ru = ["id", "checked", "dis
|
|
|
5660
5664
|
id: `${C(o)}tag_list__`,
|
|
5661
5665
|
class: "b-form-tags-list list-unstyled mb-0 d-flex flex-wrap align-items-center"
|
|
5662
5666
|
}, [
|
|
5663
|
-
(m(!0), A(ve, null, we(B.value, (ne, ye) => T(D.$slots, "tag", $e(te({ key: ye }, { tag: ne, tagClass: D.tagClass, tagVariant: D.tagVariant, tagPills: C(y), removeTag:
|
|
5667
|
+
(m(!0), A(ve, null, we(B.value, (ne, ye) => T(D.$slots, "tag", $e(te({ key: ye }, { tag: ne, tagClass: D.tagClass, tagVariant: D.tagVariant, tagPills: C(y), removeTag: ie })), () => [
|
|
5664
5668
|
(m(), H(kn, {
|
|
5665
5669
|
key: ne,
|
|
5666
5670
|
class: R(D.tagClass),
|
|
5667
5671
|
tag: "li",
|
|
5668
5672
|
variant: D.tagVariant,
|
|
5669
5673
|
pill: D.tagPills,
|
|
5670
|
-
onRemove:
|
|
5674
|
+
onRemove: ie
|
|
5671
5675
|
}, {
|
|
5672
5676
|
default: M(() => [
|
|
5673
5677
|
ue(Q(ne), 1)
|
|
@@ -6056,7 +6060,7 @@ const vd = /* @__PURE__ */ Xe(dd, [["render", fd]]), pd = {
|
|
|
6056
6060
|
[`border-${l.headerBorderVariant}`]: l.headerBorderVariant !== null,
|
|
6057
6061
|
[`text-${l.headerTextVariant}`]: l.headerTextVariant !== null
|
|
6058
6062
|
}
|
|
6059
|
-
]),
|
|
6063
|
+
]), ie = i(() => [
|
|
6060
6064
|
l.footerClass,
|
|
6061
6065
|
{
|
|
6062
6066
|
[`bg-${l.footerBgVariant}`]: l.footerBgVariant !== null,
|
|
@@ -6068,7 +6072,7 @@ const vd = /* @__PURE__ */ Xe(dd, [["render", fd]]), pd = {
|
|
|
6068
6072
|
{
|
|
6069
6073
|
["visually-hidden"]: E.value
|
|
6070
6074
|
}
|
|
6071
|
-
]), j = i(() => c.value || s.value), ne = i(() => k.value || s.value), ye = (ae, se = {}) => new
|
|
6075
|
+
]), j = i(() => c.value || s.value), ne = i(() => k.value || s.value), ye = (ae, se = {}) => new Nt(ae, {
|
|
6072
6076
|
cancelable: !1,
|
|
6073
6077
|
target: I.value || null,
|
|
6074
6078
|
relatedTarget: null,
|
|
@@ -6177,7 +6181,7 @@ const vd = /* @__PURE__ */ Xe(dd, [["render", fd]]), pd = {
|
|
|
6177
6181
|
], 10, Cd),
|
|
6178
6182
|
C(f) ? Z("", !0) : (m(), A("div", {
|
|
6179
6183
|
key: 1,
|
|
6180
|
-
class: R(["modal-footer",
|
|
6184
|
+
class: R(["modal-footer", ie.value])
|
|
6181
6185
|
}, [
|
|
6182
6186
|
T(ae.$slots, "footer", {}, () => [
|
|
6183
6187
|
T(ae.$slots, "cancel", {}, () => [
|
|
@@ -6222,7 +6226,7 @@ const vd = /* @__PURE__ */ Xe(dd, [["render", fd]]), pd = {
|
|
|
6222
6226
|
})
|
|
6223
6227
|
], !0)
|
|
6224
6228
|
], 16, kd), [
|
|
6225
|
-
[
|
|
6229
|
+
[ia, C(S)]
|
|
6226
6230
|
])
|
|
6227
6231
|
]),
|
|
6228
6232
|
_: 3
|
|
@@ -6244,7 +6248,7 @@ const Ad = /* @__PURE__ */ Xe(Td, [["__scopeId", "data-v-d76b2ec7"]]), Vd = /* @
|
|
|
6244
6248
|
vertical: { type: [String, Boolean], default: !1 }
|
|
6245
6249
|
},
|
|
6246
6250
|
setup(e) {
|
|
6247
|
-
const t = e, a = d(() => t.cardHeader), l = d(() => t.fill), o = d(() => t.justified), n = d(() => t.pills), r = d(() => t.small), s = d(() => t.tabs), u = d(() => t.vertical), c =
|
|
6251
|
+
const t = e, a = d(() => t.cardHeader), l = d(() => t.fill), o = d(() => t.justified), n = d(() => t.pills), r = d(() => t.small), s = d(() => t.tabs), u = d(() => t.vertical), c = Ht(() => t.align), v = i(() => ({
|
|
6248
6252
|
"nav-tabs": s.value,
|
|
6249
6253
|
"nav-pills": n.value && !s.value,
|
|
6250
6254
|
"card-header-tabs": !u.value && a.value && s.value,
|
|
@@ -6296,7 +6300,7 @@ const Ad = /* @__PURE__ */ Xe(Td, [["__scopeId", "data-v-d76b2ec7"]]), Vd = /* @
|
|
|
6296
6300
|
slots: Object,
|
|
6297
6301
|
components: { BLink: Ne },
|
|
6298
6302
|
props: {
|
|
6299
|
-
...
|
|
6303
|
+
...zt(dt, ["event", "routerTag"])
|
|
6300
6304
|
},
|
|
6301
6305
|
setup(e) {
|
|
6302
6306
|
return { disabledBoolean: d(() => e.disabled) };
|
|
@@ -6348,7 +6352,7 @@ const Id = /* @__PURE__ */ Xe(Od, [["render", Fd]]), Ld = { class: "nav-item dro
|
|
|
6348
6352
|
const a = e, l = Ve(a, "modelValue", t), o = d(l), n = i({
|
|
6349
6353
|
get: () => o.value,
|
|
6350
6354
|
set: (s) => l.value = s
|
|
6351
|
-
}), r = i(() =>
|
|
6355
|
+
}), r = i(() => zt(a, ["modelValue"]));
|
|
6352
6356
|
return (s, u) => (m(), A("li", Ld, [
|
|
6353
6357
|
Be(hn, te({
|
|
6354
6358
|
modelValue: n.value,
|
|
@@ -6423,7 +6427,7 @@ const Id = /* @__PURE__ */ Xe(Od, [["render", Fd]]), Ld = { class: "nav-item dro
|
|
|
6423
6427
|
_: 3
|
|
6424
6428
|
}, 8, ["class", "role"]));
|
|
6425
6429
|
}
|
|
6426
|
-
}), Rl =
|
|
6430
|
+
}), Rl = zt(dt, ["event", "routerTag"]), Hd = L({
|
|
6427
6431
|
slots: Object,
|
|
6428
6432
|
components: {
|
|
6429
6433
|
BLink: Ne
|
|
@@ -6462,7 +6466,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6462
6466
|
tag: { default: "ul" }
|
|
6463
6467
|
},
|
|
6464
6468
|
setup(e) {
|
|
6465
|
-
const t = e, a = d(() => t.fill), l = d(() => t.justified), o = d(() => t.small), n =
|
|
6469
|
+
const t = e, a = d(() => t.fill), l = d(() => t.justified), o = d(() => t.small), n = Ht(() => t.align), r = i(() => ({
|
|
6466
6470
|
"nav-fill": a.value,
|
|
6467
6471
|
"nav-justified": l.value,
|
|
6468
6472
|
[n.value]: t.align !== void 0,
|
|
@@ -6482,7 +6486,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6482
6486
|
Hl(e, t.value);
|
|
6483
6487
|
}
|
|
6484
6488
|
}, el = (e, t) => {
|
|
6485
|
-
const { modifiers: a, arg: l, value: o } = e, n = Object.keys(a || {}), r = typeof o == "string" ? o.split(
|
|
6489
|
+
const { modifiers: a, arg: l, value: o } = e, n = Object.keys(a || {}), r = typeof o == "string" ? o.split(Ut) : o;
|
|
6486
6490
|
if (Cs(t.tagName, "a")) {
|
|
6487
6491
|
const s = Ma(t, "href") || "";
|
|
6488
6492
|
ts.test(s) && n.push(s.replace(es, ""));
|
|
@@ -6509,17 +6513,21 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6509
6513
|
}
|
|
6510
6514
|
}, Wd = {
|
|
6511
6515
|
mounted(e, t) {
|
|
6512
|
-
|
|
6516
|
+
if (!Lt(t.value))
|
|
6517
|
+
return;
|
|
6518
|
+
const l = oa(t.value, e);
|
|
6513
6519
|
e.$__state = z({
|
|
6514
|
-
...
|
|
6515
|
-
...
|
|
6520
|
+
...na(t, e),
|
|
6521
|
+
...l
|
|
6516
6522
|
}), on(e, t);
|
|
6517
6523
|
},
|
|
6518
6524
|
updated(e, t) {
|
|
6519
|
-
|
|
6525
|
+
if (!Lt(t.value))
|
|
6526
|
+
return;
|
|
6527
|
+
const l = oa(t.value, e);
|
|
6520
6528
|
e.$__state && (e.$__state.value = {
|
|
6521
|
-
...
|
|
6522
|
-
...
|
|
6529
|
+
...na(t, e),
|
|
6530
|
+
...l
|
|
6523
6531
|
});
|
|
6524
6532
|
},
|
|
6525
6533
|
beforeUnmount(e) {
|
|
@@ -6527,17 +6535,17 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6527
6535
|
}
|
|
6528
6536
|
}, Ud = {
|
|
6529
6537
|
mounted(e, t) {
|
|
6530
|
-
const a =
|
|
6538
|
+
const a = Lt(t.value), l = oa(t.value, e);
|
|
6531
6539
|
e.$__state = z({
|
|
6532
|
-
...
|
|
6540
|
+
...na(t, e),
|
|
6533
6541
|
title: l.title ?? l.content ?? "",
|
|
6534
6542
|
tooltip: a
|
|
6535
6543
|
}), on(e, t);
|
|
6536
6544
|
},
|
|
6537
6545
|
updated(e, t) {
|
|
6538
|
-
const a =
|
|
6546
|
+
const a = Lt(t.value), l = oa(t.value, e);
|
|
6539
6547
|
e.$__state && (e.$__state.value = {
|
|
6540
|
-
...
|
|
6548
|
+
...na(t, e),
|
|
6541
6549
|
title: l.title ?? l.content ?? "",
|
|
6542
6550
|
tooltip: a
|
|
6543
6551
|
});
|
|
@@ -6655,7 +6663,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6655
6663
|
style: De(B.value)
|
|
6656
6664
|
}, [
|
|
6657
6665
|
T(b.$slots, "overlay", $e(Oe(g.value)), () => [
|
|
6658
|
-
C(n) ? Z("", !0) : (m(), H(
|
|
6666
|
+
C(n) ? Z("", !0) : (m(), H(va, $e(te({ key: 0 }, g.value)), null, 16))
|
|
6659
6667
|
])
|
|
6660
6668
|
], 4)
|
|
6661
6669
|
]),
|
|
@@ -6712,7 +6720,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6712
6720
|
{
|
|
6713
6721
|
show: n.value && h.value === !0
|
|
6714
6722
|
}
|
|
6715
|
-
]), E = (W, q = {}) => new
|
|
6723
|
+
]), E = (W, q = {}) => new Nt(W, {
|
|
6716
6724
|
cancelable: !1,
|
|
6717
6725
|
target: S.value || null,
|
|
6718
6726
|
relatedTarget: null,
|
|
@@ -6800,7 +6808,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6800
6808
|
])) : Z("", !0)
|
|
6801
6809
|
], 64)) : Z("", !0)
|
|
6802
6810
|
], 16), [
|
|
6803
|
-
[
|
|
6811
|
+
[ia, C(o)]
|
|
6804
6812
|
])
|
|
6805
6813
|
]),
|
|
6806
6814
|
_: 3
|
|
@@ -6857,7 +6865,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6857
6865
|
setup(e, { emit: t, slots: a }) {
|
|
6858
6866
|
const l = Ve(e, "modelValue", t), o = d(() => e.disabled), n = d(() => e.firstNumber), r = d(() => e.hideEllipsis), s = d(() => e.hideGotoEndButtons), u = d(() => e.lastNumber), c = d(() => e.pills), v = i(
|
|
6859
6867
|
() => e.align === "fill" ? "start" : e.align
|
|
6860
|
-
), p =
|
|
6868
|
+
), p = Ht(v), f = i(
|
|
6861
6869
|
() => Math.ceil(Dl(e.totalRows) / Ml(e.perPage))
|
|
6862
6870
|
), g = i(() => {
|
|
6863
6871
|
let _;
|
|
@@ -6888,10 +6896,10 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6888
6896
|
});
|
|
6889
6897
|
t("page-click", I, E), !I.defaultPrevented && (l.value = E);
|
|
6890
6898
|
}, b = i(() => e.size ? `pagination-${e.size}` : ""), k = i(() => c.value ? "b-pagination-pills" : "");
|
|
6891
|
-
|
|
6899
|
+
re(l, (_) => {
|
|
6892
6900
|
const E = ic(_, f.value);
|
|
6893
6901
|
E !== l.value && (l.value = E);
|
|
6894
|
-
}),
|
|
6902
|
+
}), re(h, (_, E) => {
|
|
6895
6903
|
_ != null && (E.pageSize !== _.pageSize && E.totalRows === _.totalRows || E.numberOfPages !== _.numberOfPages && l.value > E.numberOfPages) && (l.value = 1);
|
|
6896
6904
|
});
|
|
6897
6905
|
const P = i(() => {
|
|
@@ -6902,7 +6910,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6902
6910
|
});
|
|
6903
6911
|
return () => {
|
|
6904
6912
|
const _ = [], E = P.value.map((q) => q.number), F = (q) => q === l.value, I = l.value < 1, $ = e.align === "fill", O = (q, ee, fe, be, he, me) => {
|
|
6905
|
-
const ge = o.value || F(me) || I || q < 1 || q > f.value, G = q < 1 ? 1 : q > f.value ? f.value : q, J = { disabled: ge, page: G, index: G - 1 },
|
|
6913
|
+
const ge = o.value || F(me) || I || q < 1 || q > f.value, G = q < 1 ? 1 : q > f.value ? f.value : q, J = { disabled: ge, page: G, index: G - 1 }, ie = He(fe, J, a) || be || "";
|
|
6906
6914
|
return de(
|
|
6907
6915
|
"li",
|
|
6908
6916
|
{
|
|
@@ -6931,7 +6939,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
6931
6939
|
ge || B(D, G);
|
|
6932
6940
|
}
|
|
6933
6941
|
},
|
|
6934
|
-
|
|
6942
|
+
ie
|
|
6935
6943
|
)
|
|
6936
6944
|
);
|
|
6937
6945
|
}, x = (q) => de(
|
|
@@ -7174,7 +7182,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
7174
7182
|
name: "img",
|
|
7175
7183
|
fn: M(() => [
|
|
7176
7184
|
T(v.$slots, "img", {}, () => [
|
|
7177
|
-
Be(
|
|
7185
|
+
Be(sa, $e(Oe(c.value)), null, 16)
|
|
7178
7186
|
])
|
|
7179
7187
|
]),
|
|
7180
7188
|
key: "0"
|
|
@@ -7430,7 +7438,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
7430
7438
|
])
|
|
7431
7439
|
], 4));
|
|
7432
7440
|
}
|
|
7433
|
-
}), jl =
|
|
7441
|
+
}), jl = ua("cols", [""], { type: [String, Number], default: null }), mc = L({
|
|
7434
7442
|
name: "BRow",
|
|
7435
7443
|
slots: Object,
|
|
7436
7444
|
props: {
|
|
@@ -7444,7 +7452,7 @@ const Dd = /* @__PURE__ */ Xe(Hd, [["render", Md]]), jd = /* @__PURE__ */ L({
|
|
|
7444
7452
|
...jl
|
|
7445
7453
|
},
|
|
7446
7454
|
setup(e) {
|
|
7447
|
-
const t = d(() => e.noGutters), a =
|
|
7455
|
+
const t = d(() => e.noGutters), a = Ht(() => e.alignH), l = i(() => yo(e, jl, "cols", "row-cols"));
|
|
7448
7456
|
return {
|
|
7449
7457
|
computedClasses: i(() => [
|
|
7450
7458
|
l.value,
|
|
@@ -7486,15 +7494,15 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7486
7494
|
"ur",
|
|
7487
7495
|
"yi"
|
|
7488
7496
|
].map((e) => e.toLowerCase()), yc = (e) => {
|
|
7489
|
-
const t =
|
|
7497
|
+
const t = Jt(e).toLowerCase().replace(as, "").split("-"), a = t.slice(0, 2).join("-"), [l] = t;
|
|
7490
7498
|
return ql.includes(a) || ql.includes(l);
|
|
7491
|
-
}, hc = (e) => ps ?
|
|
7499
|
+
}, hc = (e) => ps ? ya(e) ? e : { capture: !!e || !1 } : !!(ya(e) ? e.capture : e), Bc = (e, t, a, l) => {
|
|
7492
7500
|
e && e.addEventListener && e.addEventListener(t, a, hc(l));
|
|
7493
7501
|
}, Sc = (e, t, a, l) => {
|
|
7494
7502
|
e && e.removeEventListener && e.removeEventListener(t, a, l);
|
|
7495
7503
|
}, Gl = (e, t) => {
|
|
7496
7504
|
(e ? Bc : Sc)(...t);
|
|
7497
|
-
},
|
|
7505
|
+
}, Gt = (e, { preventDefault: t = !0, propagation: a = !0, immediatePropagation: l = !1 } = {}) => {
|
|
7498
7506
|
t && e.preventDefault(), a && e.stopPropagation(), l && e.stopImmediatePropagation();
|
|
7499
7507
|
}, Fa = "ArrowDown", Fn = "End", In = "Home", Ln = "PageDown", xn = "PageUp", Ia = "ArrowUp", Wl = 1, Ul = 100, Xl = 1, Kl = 500, Jl = 100, Yl = 10, Zl = 4, Ql = [Ia, Fa, In, Fn, xn, Ln], wc = L({
|
|
7500
7508
|
props: {
|
|
@@ -7552,8 +7560,8 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7552
7560
|
});
|
|
7553
7561
|
let u, c, v = !1;
|
|
7554
7562
|
const p = i(() => Ct(e.step, Xl)), f = i(() => Ct(e.min, Wl)), g = i(() => {
|
|
7555
|
-
const G = Ct(e.max, Ul), J = p.value,
|
|
7556
|
-
return Math.floor((G -
|
|
7563
|
+
const G = Ct(e.max, Ul), J = p.value, ie = f.value;
|
|
7564
|
+
return Math.floor((G - ie) / J) * J + ie;
|
|
7557
7565
|
}), y = i(() => {
|
|
7558
7566
|
const G = lt(e.repeatDelay, 0);
|
|
7559
7567
|
return G > 0 ? G : Kl;
|
|
@@ -7610,27 +7618,27 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7610
7618
|
})), x = (G) => {
|
|
7611
7619
|
let { value: J } = s;
|
|
7612
7620
|
if (!e.disabled && J !== null) {
|
|
7613
|
-
const
|
|
7614
|
-
J = Math.round((J - D) /
|
|
7621
|
+
const ie = p.value * G, D = f.value, j = g.value, ne = b.value, { wrap: ye } = e;
|
|
7622
|
+
J = Math.round((J - D) / ie) * ie + D + ie, J = Math.round(J * ne) / ne, s.value = J > j ? ye ? D : j : J < D ? ye ? j : D : J;
|
|
7615
7623
|
}
|
|
7616
7624
|
}, N = (G = 1) => {
|
|
7617
7625
|
s.value === null ? s.value = f.value : x(1 * G);
|
|
7618
7626
|
}, le = (G = 1) => {
|
|
7619
7627
|
s.value === null ? s.value = e.wrap ? g.value : f.value : x(-1 * G);
|
|
7620
7628
|
}, W = (G) => {
|
|
7621
|
-
const { code: J, altKey:
|
|
7622
|
-
if (!(e.disabled || e.readonly ||
|
|
7623
|
-
if (
|
|
7629
|
+
const { code: J, altKey: ie, ctrlKey: D, metaKey: j } = G;
|
|
7630
|
+
if (!(e.disabled || e.readonly || ie || D || j) && Ql.includes(J)) {
|
|
7631
|
+
if (Gt(G, { propagation: !1 }), v)
|
|
7624
7632
|
return;
|
|
7625
7633
|
me(), [Ia, Fa].includes(J) ? (v = !0, J === Ia ? ee(G, N) : J === Fa && ee(G, le)) : J === xn ? N(h.value) : J === Ln ? le(h.value) : J === In ? s.value = f.value : J === Fn && (s.value = g.value);
|
|
7626
7634
|
}
|
|
7627
7635
|
}, q = (G) => {
|
|
7628
|
-
const { code: J, altKey:
|
|
7629
|
-
e.disabled || e.readonly ||
|
|
7636
|
+
const { code: J, altKey: ie, ctrlKey: D, metaKey: j } = G;
|
|
7637
|
+
e.disabled || e.readonly || ie || D || j || Ql.includes(J) && (Gt(G, { propagation: !1 }), me(), v = !1, n());
|
|
7630
7638
|
}, ee = (G, J) => {
|
|
7631
|
-
const { type:
|
|
7639
|
+
const { type: ie } = G || {};
|
|
7632
7640
|
if (!e.disabled && !e.readonly) {
|
|
7633
|
-
if (fe(G) &&
|
|
7641
|
+
if (fe(G) && ie === "mousedown" && G.button)
|
|
7634
7642
|
return;
|
|
7635
7643
|
me(), J(1);
|
|
7636
7644
|
const D = w.value, j = h.value, ne = y.value, ye = S.value;
|
|
@@ -7646,7 +7654,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7646
7654
|
return G.type === "mouseup" || G.type === "mousedown";
|
|
7647
7655
|
}
|
|
7648
7656
|
const be = (G) => {
|
|
7649
|
-
fe(G) && G.type === "mouseup" && G.button || (
|
|
7657
|
+
fe(G) && G.type === "mouseup" && G.button || (Gt(G, { propagation: !1 }), me(), he(!1), n());
|
|
7650
7658
|
}, he = (G) => {
|
|
7651
7659
|
try {
|
|
7652
7660
|
Gl(G, [document.body, "mouseup", be, !1]), Gl(G, [document.body, "touchend", be, !1]);
|
|
@@ -7655,12 +7663,12 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7655
7663
|
}
|
|
7656
7664
|
}, me = () => {
|
|
7657
7665
|
clearTimeout(u), clearInterval(c), u = void 0, c = void 0;
|
|
7658
|
-
}, ge = (G, J,
|
|
7659
|
-
const Se = de(
|
|
7666
|
+
}, ge = (G, J, ie, D, j, ne, ye) => {
|
|
7667
|
+
const Se = de(ie, {
|
|
7660
7668
|
props: { scale: l.value ? 1.5 : 1.25 },
|
|
7661
7669
|
attrs: { "aria-hidden": !0 }
|
|
7662
7670
|
}), K = { hasFocus: l.value }, ce = (V) => {
|
|
7663
|
-
!e.disabled && !e.readonly && (
|
|
7671
|
+
!e.disabled && !e.readonly && (Gt(V, { propagation: !1 }), he(!0), ee(V, G));
|
|
7664
7672
|
};
|
|
7665
7673
|
return de(
|
|
7666
7674
|
"button",
|
|
@@ -7721,8 +7729,8 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7721
7729
|
"ArrowDown",
|
|
7722
7730
|
!1,
|
|
7723
7731
|
"decrement"
|
|
7724
|
-
),
|
|
7725
|
-
e.name && !e.disabled &&
|
|
7732
|
+
), ie = [];
|
|
7733
|
+
e.name && !e.disabled && ie.push(
|
|
7726
7734
|
de("input", {
|
|
7727
7735
|
type: "hidden",
|
|
7728
7736
|
name: e.name,
|
|
@@ -7781,7 +7789,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7781
7789
|
// 'focus': onFocusBlur, //TODO
|
|
7782
7790
|
// 'blur': onFocusBlur, //TODO
|
|
7783
7791
|
},
|
|
7784
|
-
e.vertical ? [G,
|
|
7792
|
+
e.vertical ? [G, ie, D, J] : [J, ie, D, G]
|
|
7785
7793
|
);
|
|
7786
7794
|
};
|
|
7787
7795
|
}
|
|
@@ -7800,7 +7808,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7800
7808
|
'[role="button"]',
|
|
7801
7809
|
'[role="button"] *',
|
|
7802
7810
|
"[tabindex]:not(.disabled):not([disabled])"
|
|
7803
|
-
].join(","),
|
|
7811
|
+
].join(","), Wt = (e) => {
|
|
7804
7812
|
if (!e || !e.target)
|
|
7805
7813
|
return !1;
|
|
7806
7814
|
const t = e.target;
|
|
@@ -7819,9 +7827,9 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7819
7827
|
const e = (c, v) => {
|
|
7820
7828
|
const p = [];
|
|
7821
7829
|
return !(c != null && c.length) && (v != null && v.length) ? (Object.keys(v[0]).forEach((f) => p.push({ key: f, label: al(f) })), p) : (Array.isArray(c) && c.forEach((f) => {
|
|
7822
|
-
typeof f == "string" ? p.push({ key: f, label: al(f) }) :
|
|
7830
|
+
typeof f == "string" ? p.push({ key: f, label: al(f) }) : ya(f) && f.key && typeof f.key == "string" && p.push({ ...f });
|
|
7823
7831
|
}), p);
|
|
7824
|
-
}, t = z([]), a = (c, v, p, f) => (t.value =
|
|
7832
|
+
}, t = z([]), a = (c, v, p, f) => (t.value = Yt(v), "isFilterableTable" in f && f.isFilterableTable.value === !0 && p.filter && (t.value = n(t.value, p.filter, p.filterable)), "isSortable" in f && f.isSortable.value === !0 && (t.value = o(
|
|
7825
7833
|
c,
|
|
7826
7834
|
t.value,
|
|
7827
7835
|
{
|
|
@@ -7851,7 +7859,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7851
7859
|
internalItems: t,
|
|
7852
7860
|
updateInternalItems: async (c) => {
|
|
7853
7861
|
try {
|
|
7854
|
-
return t.value = await
|
|
7862
|
+
return t.value = await Ba(c), t.value;
|
|
7855
7863
|
} catch {
|
|
7856
7864
|
return;
|
|
7857
7865
|
}
|
|
@@ -7923,7 +7931,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7923
7931
|
await G();
|
|
7924
7932
|
return;
|
|
7925
7933
|
}
|
|
7926
|
-
const U = await
|
|
7934
|
+
const U = await Ba(V);
|
|
7927
7935
|
a("filtered", U);
|
|
7928
7936
|
};
|
|
7929
7937
|
const B = z(/* @__PURE__ */ new Set([])), b = i(() => B.value.size > 0), k = i(() => ({
|
|
@@ -7984,8 +7992,8 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
7984
7992
|
}, ge = (V, U, pe = !1, X = !1) => {
|
|
7985
7993
|
if (c.value) {
|
|
7986
7994
|
if (pe && l.selectMode === "range" && B.value.size > 0) {
|
|
7987
|
-
const ae = Array.from(B.value).pop(), se = N.value.findIndex((rt) => rt === ae), Qe = Math.min(se, U),
|
|
7988
|
-
N.value.slice(Qe,
|
|
7995
|
+
const ae = Array.from(B.value).pop(), se = N.value.findIndex((rt) => rt === ae), Qe = Math.min(se, U), pa = Math.max(se, U);
|
|
7996
|
+
N.value.slice(Qe, pa + 1).forEach((rt) => {
|
|
7989
7997
|
B.value.has(rt) || (B.value.add(rt), a("rowSelected", rt));
|
|
7990
7998
|
});
|
|
7991
7999
|
} else
|
|
@@ -8025,7 +8033,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8025
8033
|
}
|
|
8026
8034
|
}, J = (V) => {
|
|
8027
8035
|
V._showDetails = !V._showDetails;
|
|
8028
|
-
},
|
|
8036
|
+
}, ie = (V) => [
|
|
8029
8037
|
V.class,
|
|
8030
8038
|
V.thClass,
|
|
8031
8039
|
{
|
|
@@ -8069,33 +8077,33 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8069
8077
|
}, ce = async (V, U, pe) => {
|
|
8070
8078
|
if (U === pe)
|
|
8071
8079
|
return;
|
|
8072
|
-
const X = (rt) => l.noProvider && l.noProvider.includes(rt), ae = !["currentPage", "perPage"].includes(V), se = ["currentPage", "perPage"].includes(V) && (X("paging") || y.value === !0), Qe = ["filter"].includes(V) && (X("filtering") || w.value === !0),
|
|
8073
|
-
se || Qe ||
|
|
8080
|
+
const X = (rt) => l.noProvider && l.noProvider.includes(rt), ae = !["currentPage", "perPage"].includes(V), se = ["currentPage", "perPage"].includes(V) && (X("paging") || y.value === !0), Qe = ["filter"].includes(V) && (X("filtering") || w.value === !0), pa = ["sortBy", "sortDesc"].includes(V) && (X("sorting") || S.value === !0);
|
|
8081
|
+
se || Qe || pa || (await G(), ae && n.notifyFilteredItems());
|
|
8074
8082
|
};
|
|
8075
|
-
return
|
|
8083
|
+
return re(
|
|
8076
8084
|
() => l.filter,
|
|
8077
8085
|
(V, U) => {
|
|
8078
|
-
V === U || I.value || V ||
|
|
8086
|
+
V === U || I.value || V || Ba(l.items).then((pe) => a("filtered", pe));
|
|
8079
8087
|
}
|
|
8080
|
-
),
|
|
8088
|
+
), re(
|
|
8081
8089
|
h,
|
|
8082
8090
|
() => h.value !== f.value && a("update:busy", h.value)
|
|
8083
|
-
),
|
|
8091
|
+
), re(
|
|
8084
8092
|
f,
|
|
8085
8093
|
() => h.value !== f.value && (h.value = f.value)
|
|
8086
|
-
),
|
|
8094
|
+
), re(
|
|
8087
8095
|
() => l.filter,
|
|
8088
8096
|
(V, U) => ce("filter", V, U)
|
|
8089
|
-
),
|
|
8097
|
+
), re(
|
|
8090
8098
|
() => l.currentPage,
|
|
8091
8099
|
(V, U) => ce("currentPage", V, U)
|
|
8092
|
-
),
|
|
8100
|
+
), re(
|
|
8093
8101
|
() => l.perPage,
|
|
8094
8102
|
(V, U) => ce("perPage", V, U)
|
|
8095
|
-
),
|
|
8103
|
+
), re(
|
|
8096
8104
|
() => l.sortBy,
|
|
8097
8105
|
(V, U) => ce("sortBy", V, U)
|
|
8098
|
-
),
|
|
8106
|
+
), re(
|
|
8099
8107
|
() => l.sortDesc,
|
|
8100
8108
|
(V, U) => ce("sortDesc", V, U)
|
|
8101
8109
|
), We(() => {
|
|
@@ -8126,7 +8134,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8126
8134
|
(m(!0), A(ve, null, we(_.value, (X) => (m(), A("th", te({
|
|
8127
8135
|
key: X.key,
|
|
8128
8136
|
scope: "col",
|
|
8129
|
-
class:
|
|
8137
|
+
class: ie(X),
|
|
8130
8138
|
title: X.headerTitle,
|
|
8131
8139
|
abbr: X.headerAbbr,
|
|
8132
8140
|
style: X.thStyle
|
|
@@ -8179,10 +8187,10 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8179
8187
|
(m(!0), A(ve, null, we(N.value, (X, ae) => (m(), A(ve, { key: ae }, [
|
|
8180
8188
|
Y("tr", {
|
|
8181
8189
|
class: R(j(X)),
|
|
8182
|
-
onClick: (se) => !C(
|
|
8183
|
-
onDblclick: (se) => !C(
|
|
8184
|
-
onMouseenter: (se) => !C(
|
|
8185
|
-
onMouseleave: (se) => !C(
|
|
8190
|
+
onClick: (se) => !C(Wt)(se) && q(X, ae, se),
|
|
8191
|
+
onDblclick: (se) => !C(Wt)(se) && ee(X, ae, se),
|
|
8192
|
+
onMouseenter: (se) => !C(Wt)(se) && fe(X, ae, se),
|
|
8193
|
+
onMouseleave: (se) => !C(Wt)(se) && be(X, ae, se)
|
|
8186
8194
|
}, [
|
|
8187
8195
|
$.value ? (m(), A("td", {
|
|
8188
8196
|
key: 0,
|
|
@@ -8235,7 +8243,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8235
8243
|
Y("td", { colspan: E.value }, [
|
|
8236
8244
|
T(V.$slots, "table-busy", {}, () => [
|
|
8237
8245
|
Y("div", Fc, [
|
|
8238
|
-
Be(
|
|
8246
|
+
Be(va, { class: "align-middle" }),
|
|
8239
8247
|
Ic
|
|
8240
8248
|
])
|
|
8241
8249
|
])
|
|
@@ -8417,7 +8425,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8417
8425
|
const g = s.value && u.value && r.value;
|
|
8418
8426
|
return c.value || !s.value || g;
|
|
8419
8427
|
}), p = z(l.value);
|
|
8420
|
-
|
|
8428
|
+
re(l, (g) => {
|
|
8421
8429
|
setTimeout(() => {
|
|
8422
8430
|
p.value = g;
|
|
8423
8431
|
}, 0);
|
|
@@ -8427,7 +8435,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8427
8435
|
show: p.value,
|
|
8428
8436
|
"card-body": (a == null ? void 0 : a.card.value) && t.noBody === !1
|
|
8429
8437
|
}));
|
|
8430
|
-
return
|
|
8438
|
+
return re(v, (g) => {
|
|
8431
8439
|
g && !r.value && (r.value = !0);
|
|
8432
8440
|
}), (g, y) => (m(), H(oe(g.tag), {
|
|
8433
8441
|
id: g.id,
|
|
@@ -8472,13 +8480,13 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8472
8480
|
S.value = $, b.value.length > 0 && $ >= 0 && $ < b.value.length ? w.value = b.value[$].buttonId : w.value = "", l.value = $;
|
|
8473
8481
|
}
|
|
8474
8482
|
}), B = z([]);
|
|
8475
|
-
|
|
8483
|
+
re(
|
|
8476
8484
|
() => {
|
|
8477
8485
|
var $;
|
|
8478
8486
|
return ($ = o.default) == null ? void 0 : $.call(o);
|
|
8479
8487
|
},
|
|
8480
8488
|
() => {
|
|
8481
|
-
B.value = o.default === void 0 ? [] :
|
|
8489
|
+
B.value = o.default === void 0 ? [] : Sa(o.default, "BTab").map(($, O) => {
|
|
8482
8490
|
$.props || ($.props = {});
|
|
8483
8491
|
const x = $.props["button-id"] || at("tab"), N = $.props.id || at(), le = $.props["title-item-class"], W = $.props["title-link-attributes"];
|
|
8484
8492
|
return {
|
|
@@ -8491,7 +8499,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8491
8499
|
titleLinkAttributes: W,
|
|
8492
8500
|
onClick: $.props.onClick,
|
|
8493
8501
|
tab: $,
|
|
8494
|
-
tabComponent: () =>
|
|
8502
|
+
tabComponent: () => Sa(o.default, "BTab")[O]
|
|
8495
8503
|
};
|
|
8496
8504
|
});
|
|
8497
8505
|
},
|
|
@@ -8524,7 +8532,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8524
8532
|
), k = i(() => !(b != null && b.value && b.value.length > 0)), P = i(() => ({
|
|
8525
8533
|
"d-flex": y.value,
|
|
8526
8534
|
"align-items-start": y.value
|
|
8527
|
-
})), _ =
|
|
8535
|
+
})), _ = Ht(() => a.align), E = i(() => ({
|
|
8528
8536
|
"nav-pills": f.value,
|
|
8529
8537
|
"flex-column me-3": y.value,
|
|
8530
8538
|
[_.value]: a.align !== void 0,
|
|
@@ -8544,7 +8552,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8544
8552
|
var x;
|
|
8545
8553
|
F(O), O >= 0 && !b.value[O].disabled && ((x = b.value[O]) != null && x.onClick) && typeof b.value[O].onClick == "function" && b.value[O].onClick($);
|
|
8546
8554
|
};
|
|
8547
|
-
return F(S.value),
|
|
8555
|
+
return F(S.value), re(l, ($, O) => {
|
|
8548
8556
|
if ($ === O)
|
|
8549
8557
|
return;
|
|
8550
8558
|
if ($ = Math.max($, -1), O = Math.max(O, -1), b.value.length <= 0) {
|
|
@@ -8565,7 +8573,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8565
8573
|
return;
|
|
8566
8574
|
}
|
|
8567
8575
|
F(N);
|
|
8568
|
-
}),
|
|
8576
|
+
}), re(b, () => {
|
|
8569
8577
|
let $ = b.value.map((O) => O.active && !O.disabled).lastIndexOf(!0);
|
|
8570
8578
|
$ < 0 && (h.value >= b.value.length ? $ = b.value.map((O) => !O.disabled).lastIndexOf(!0) : b.value[h.value] && !b.value[h.value].disabled && ($ = h.value)), $ < 0 && ($ = b.value.map((O) => !O.disabled).indexOf(!0)), b.value.forEach((O, x) => O.active = x === $), F($);
|
|
8571
8579
|
}), We(() => {
|
|
@@ -8684,7 +8692,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8684
8692
|
BCardFooter: pn,
|
|
8685
8693
|
BCardGroup: Pi,
|
|
8686
8694
|
BCardHeader: dn,
|
|
8687
|
-
BCardImg:
|
|
8695
|
+
BCardImg: sa,
|
|
8688
8696
|
BCardSubtitle: fn,
|
|
8689
8697
|
BCardText: Oi,
|
|
8690
8698
|
BCardTitle: cn,
|
|
@@ -8711,7 +8719,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8711
8719
|
BFormInvalidFeedback: Va,
|
|
8712
8720
|
BFormRadio: $n,
|
|
8713
8721
|
BFormRadioGroup: qu,
|
|
8714
|
-
BFormRow:
|
|
8722
|
+
BFormRow: Kt,
|
|
8715
8723
|
BFormSelect: Xu,
|
|
8716
8724
|
BFormSelectOption: Za,
|
|
8717
8725
|
BFormSelectOptionGroup: _n,
|
|
@@ -8752,7 +8760,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8752
8760
|
BProgress: pc,
|
|
8753
8761
|
BProgressBar: En,
|
|
8754
8762
|
BRow: bc,
|
|
8755
|
-
BSpinner:
|
|
8763
|
+
BSpinner: va,
|
|
8756
8764
|
BTab: Qc,
|
|
8757
8765
|
BTable: Dc,
|
|
8758
8766
|
BTableSimple: tl,
|
|
@@ -8784,7 +8792,7 @@ const bc = /* @__PURE__ */ Xe(mc, [["render", gc]]), ql = [
|
|
|
8784
8792
|
__proto__: null,
|
|
8785
8793
|
BvCarouselEvent: uo,
|
|
8786
8794
|
BvEvent: Ye,
|
|
8787
|
-
BvTriggerableEvent:
|
|
8795
|
+
BvTriggerableEvent: Nt
|
|
8788
8796
|
}, Symbol.toStringTag, { value: "Module" })), df = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
8789
8797
|
__proto__: null
|
|
8790
8798
|
}, Symbol.toStringTag, { value: "Module" })), cf = {
|
|
@@ -8815,7 +8823,7 @@ export {
|
|
|
8815
8823
|
pn as BCardFooter,
|
|
8816
8824
|
Pi as BCardGroup,
|
|
8817
8825
|
dn as BCardHeader,
|
|
8818
|
-
|
|
8826
|
+
sa as BCardImg,
|
|
8819
8827
|
fn as BCardSubtitle,
|
|
8820
8828
|
Oi as BCardText,
|
|
8821
8829
|
cn as BCardTitle,
|
|
@@ -8842,7 +8850,7 @@ export {
|
|
|
8842
8850
|
Va as BFormInvalidFeedback,
|
|
8843
8851
|
$n as BFormRadio,
|
|
8844
8852
|
qu as BFormRadioGroup,
|
|
8845
|
-
|
|
8853
|
+
Kt as BFormRow,
|
|
8846
8854
|
Xu as BFormSelect,
|
|
8847
8855
|
Za as BFormSelectOption,
|
|
8848
8856
|
_n as BFormSelectOptionGroup,
|
|
@@ -8883,7 +8891,7 @@ export {
|
|
|
8883
8891
|
pc as BProgress,
|
|
8884
8892
|
En as BProgressBar,
|
|
8885
8893
|
bc as BRow,
|
|
8886
|
-
|
|
8894
|
+
va as BSpinner,
|
|
8887
8895
|
Qc as BTab,
|
|
8888
8896
|
Dc as BTable,
|
|
8889
8897
|
tl as BTableSimple,
|
|
@@ -8903,7 +8911,7 @@ export {
|
|
|
8903
8911
|
cf as BootstrapVueNext,
|
|
8904
8912
|
uo as BvCarouselEvent,
|
|
8905
8913
|
Ye as BvEvent,
|
|
8906
|
-
|
|
8914
|
+
Nt as BvTriggerableEvent,
|
|
8907
8915
|
lf as Components,
|
|
8908
8916
|
rf as Composables,
|
|
8909
8917
|
of as Directives,
|