@ulu/frontend-vue 0.1.0-beta.5 → 0.1.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/dist/{breakpoints-DVO2G7-7.js → breakpoints-SWofnYUx.js} +1 -1
- package/dist/frontend-vue.js +1 -1
- package/dist/{index-BPVCOXRL.js → index-CtdKSn3_.js} +326 -338
- package/lib/components/collapsible/UluAccordion.vue +1 -1
- package/lib/components/collapsible/UluModal.vue +4 -5
- package/lib/components/collapsible/UluOverflowPopover.vue +1 -1
- package/lib/components/elements/UluAlert.vue +1 -2
- package/lib/components/elements/UluButton.vue +2 -2
- package/lib/components/elements/UluExternalLink.vue +1 -2
- package/lib/components/elements/UluIcon.vue +6 -11
- package/lib/components/elements/UluTag.vue +1 -1
- package/lib/components/layout/UluTitleRail.vue +2 -4
- package/lib/components/navigation/UluBreadcrumb.vue +1 -2
- package/lib/components/navigation/UluMenu.vue +1 -1
- package/lib/plugins/core/index.js +5 -5
- package/lib/plugins/toast/UluToast.vue +1 -1
- package/package.json +13 -4
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { reactive as Pt, ref as
|
|
2
|
-
import { inline as Vt, offset as Dt, flip as
|
|
1
|
+
import { reactive as Pt, ref as j, computed as R, resolveDirective as Mt, createElementBlock as d, openBlock as l, Fragment as T, withDirectives as W, createElementVNode as f, unref as x, normalizeClass as h, renderSlot as m, withKeys as Bt, normalizeStyle as U, createCommentVNode as y, nextTick as Lt, toRef as ws, toDisplayString as p, createBlock as b, Teleport as De, resolveDynamicComponent as I, mergeProps as Y, inject as Ss, watchEffect as ks, defineAsyncComponent as Cs, markRaw as ne, normalizeProps as M, toRefs as Ts, toValue as Re, resolveComponent as S, withModifiers as As, createVNode as k, useSlots as $s, renderList as C, TransitionGroup as Os, withCtx as v, createTextVNode as w, vShow as We, onMounted as xs, onUnmounted as Rs, guardReactiveProps as H, vModelCheckbox as Ht, vModelText as Us, vModelSelect as Is, Transition as nt, createSlots as se } from "vue";
|
|
2
|
+
import { inline as Vt, offset as Dt, flip as Wt, shift as Nt, arrow as Xt, useFloating as Yt, autoUpdate as Kt } from "@floating-ui/vue";
|
|
3
3
|
import { Disclosure as zs, DisclosureButton as Es, DisclosurePanel as js, Tab as Fs, TabGroup as Ps, TabList as Ms, TabPanel as Bs, TabPanels as Ls } from "@headlessui/vue";
|
|
4
|
-
import { RouterLink as
|
|
4
|
+
import { RouterLink as Ne } from "vue-router";
|
|
5
5
|
import Hs from "gsap";
|
|
6
6
|
import Vs from "fuse.js";
|
|
7
7
|
const ot = {
|
|
8
8
|
fontAwesomeStatic: !1,
|
|
9
9
|
iconComponent: null,
|
|
10
10
|
iconPropResolver: (e) => ({ icon: e }),
|
|
11
|
-
|
|
11
|
+
iconsByType: {
|
|
12
12
|
danger: "fas fa-triangle-exclamation",
|
|
13
13
|
warning: "fas fa-circle-exclamation",
|
|
14
14
|
info: "fas fa-circle-info",
|
|
@@ -25,7 +25,7 @@ const ot = {
|
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
27
|
function Jd(e, s = {}) {
|
|
28
|
-
const t = Pt({ ...ot }), {
|
|
28
|
+
const t = Pt({ ...ot }), { iconsByType: n, ...i } = s || {};
|
|
29
29
|
i && Object.assign(t, i);
|
|
30
30
|
const o = {
|
|
31
31
|
// Methods to interact with settings
|
|
@@ -51,13 +51,13 @@ function Jd(e, s = {}) {
|
|
|
51
51
|
t[r] = a;
|
|
52
52
|
},
|
|
53
53
|
getIcon(r) {
|
|
54
|
-
const a = t.
|
|
54
|
+
const a = t.iconsByType;
|
|
55
55
|
if (!a[r])
|
|
56
56
|
throw new Error(`Icon type "${r}" not found!`);
|
|
57
57
|
return a[r];
|
|
58
58
|
},
|
|
59
59
|
setIcon(r, a) {
|
|
60
|
-
t.
|
|
60
|
+
t.iconsByType[r] = a;
|
|
61
61
|
}
|
|
62
62
|
};
|
|
63
63
|
if (n)
|
|
@@ -65,7 +65,7 @@ function Jd(e, s = {}) {
|
|
|
65
65
|
o.setIcon(r, a);
|
|
66
66
|
e.provide("uluCore", o), e.config.globalProperties.$uluCore = o;
|
|
67
67
|
}
|
|
68
|
-
const
|
|
68
|
+
const ve = {
|
|
69
69
|
/**
|
|
70
70
|
* Default Plugin Options
|
|
71
71
|
* @type {Object}
|
|
@@ -172,18 +172,18 @@ const be = {
|
|
|
172
172
|
*/
|
|
173
173
|
onReady: null
|
|
174
174
|
}
|
|
175
|
-
},
|
|
176
|
-
plugin: { ...
|
|
177
|
-
popover: { ...
|
|
178
|
-
tooltip: { ...
|
|
179
|
-
}, Xe =
|
|
175
|
+
}, K = {
|
|
176
|
+
plugin: { ...ve.plugin },
|
|
177
|
+
popover: { ...ve.popover },
|
|
178
|
+
tooltip: { ...ve.tooltip, ...ve.popover }
|
|
179
|
+
}, Xe = j(!1), Ye = j(null);
|
|
180
180
|
function Ds(e = {}) {
|
|
181
|
-
return Object.assign(
|
|
182
|
-
}
|
|
183
|
-
function Ns(e) {
|
|
184
|
-
return Object.assign({}, Y.tooltip, e);
|
|
181
|
+
return Object.assign(K.popover, e.popover), Object.assign(K.tooltip, e.tooltip), Object.assign(K.plugin, e.plugin), K;
|
|
185
182
|
}
|
|
186
183
|
function Ws(e) {
|
|
184
|
+
return Object.assign({}, K.tooltip, e);
|
|
185
|
+
}
|
|
186
|
+
function Ns(e) {
|
|
187
187
|
Xe.value = !0, Ye.value = e;
|
|
188
188
|
}
|
|
189
189
|
function Xs() {
|
|
@@ -209,7 +209,7 @@ function it(e, s) {
|
|
|
209
209
|
let n = null;
|
|
210
210
|
const i = () => {
|
|
211
211
|
n || (n = setTimeout(() => {
|
|
212
|
-
|
|
212
|
+
Ns(t), clearTimeout(n);
|
|
213
213
|
}, t.delay));
|
|
214
214
|
}, o = () => {
|
|
215
215
|
n && (clearTimeout(n), n = null), Xs();
|
|
@@ -234,7 +234,7 @@ function Ks(e, s) {
|
|
|
234
234
|
const { value: t } = s;
|
|
235
235
|
let n;
|
|
236
236
|
if (!(t === !1 || t === null))
|
|
237
|
-
return typeof t == "object" ? n = t : n = { content: t },
|
|
237
|
+
return typeof t == "object" ? n = t : n = { content: t }, Ws(Object.assign({}, { trigger: e }, n));
|
|
238
238
|
}
|
|
239
239
|
let Gs = 0;
|
|
240
240
|
function qs() {
|
|
@@ -274,11 +274,11 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
274
274
|
},
|
|
275
275
|
emits: ["toggle"],
|
|
276
276
|
setup(e, { emit: s }) {
|
|
277
|
-
const t = s, n = e, i = qs(), o = Object.assign({},
|
|
277
|
+
const t = s, n = e, i = qs(), o = Object.assign({}, K.popover, n.config), r = j(n.startOpen || !1), a = j(null), c = j(null), u = j(null), g = [
|
|
278
278
|
...o.inline ? [Vt()] : [],
|
|
279
279
|
...o.offset ? [Dt(o.offset)] : [],
|
|
280
|
-
Nt(),
|
|
281
280
|
Wt(),
|
|
281
|
+
Nt(),
|
|
282
282
|
...o.arrow ? [Xt({ element: u })] : []
|
|
283
283
|
], A = {
|
|
284
284
|
placement: o.placement,
|
|
@@ -286,20 +286,20 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
286
286
|
middleware: g
|
|
287
287
|
}, {
|
|
288
288
|
floatingStyles: z,
|
|
289
|
-
placement:
|
|
290
|
-
middlewareData:
|
|
291
|
-
update:
|
|
289
|
+
placement: F,
|
|
290
|
+
middlewareData: E,
|
|
291
|
+
update: L,
|
|
292
292
|
isPositioned: ys
|
|
293
293
|
} = Yt(a, c, A), ps = R(() => {
|
|
294
|
-
const P =
|
|
294
|
+
const P = E.value?.arrow;
|
|
295
295
|
return P ? {
|
|
296
296
|
position: "absolute",
|
|
297
297
|
left: P?.x != null ? `${P.x}px` : "",
|
|
298
298
|
top: P?.y != null ? `${P.y}px` : ""
|
|
299
299
|
} : null;
|
|
300
300
|
});
|
|
301
|
-
o.onReady && o.onReady({ update:
|
|
302
|
-
const
|
|
301
|
+
o.onReady && o.onReady({ update: L, isPositioned: ys });
|
|
302
|
+
const bs = () => {
|
|
303
303
|
pe(!r.value);
|
|
304
304
|
}, pe = (P) => {
|
|
305
305
|
r.value = P;
|
|
@@ -307,15 +307,15 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
307
307
|
trigger: x(a),
|
|
308
308
|
content: x(c),
|
|
309
309
|
isOpen: x(r)
|
|
310
|
-
},
|
|
310
|
+
}, be = { isOpen: ee.isOpen };
|
|
311
311
|
Lt(() => {
|
|
312
|
-
r.value ? (
|
|
313
|
-
|
|
314
|
-
}, 0)) : (tt(), n.directFocus(ee), t("toggle",
|
|
312
|
+
r.value ? (L(), window.setTimeout(() => {
|
|
313
|
+
vs(), n.directFocus(ee), t("toggle", be);
|
|
314
|
+
}, 0)) : (tt(), n.directFocus(ee), t("toggle", be));
|
|
315
315
|
});
|
|
316
316
|
};
|
|
317
317
|
let Q;
|
|
318
|
-
const
|
|
318
|
+
const vs = () => {
|
|
319
319
|
n.clickOutsideCloses && (Q && tt(), Q = (P) => {
|
|
320
320
|
c.value.contains(P.target) || pe(!1);
|
|
321
321
|
}, document.addEventListener("click", Q));
|
|
@@ -323,13 +323,13 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
323
323
|
Q && (document.removeEventListener("click", Q), Q = null);
|
|
324
324
|
}, st = () => pe(!1);
|
|
325
325
|
return (P, ee) => {
|
|
326
|
-
const
|
|
326
|
+
const be = Mt("ulu-tooltip");
|
|
327
327
|
return l(), d(T, null, [
|
|
328
|
-
|
|
328
|
+
W((l(), d("button", {
|
|
329
329
|
type: "button",
|
|
330
330
|
ref_key: "trigger",
|
|
331
331
|
ref: a,
|
|
332
|
-
onClick:
|
|
332
|
+
onClick: bs,
|
|
333
333
|
disabled: e.disabled,
|
|
334
334
|
class: h([
|
|
335
335
|
{ [e.activeClass]: r.value },
|
|
@@ -341,7 +341,7 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
341
341
|
}, [
|
|
342
342
|
m(P.$slots, "trigger", { isOpen: r.value })
|
|
343
343
|
], 10, Zs)), [
|
|
344
|
-
[
|
|
344
|
+
[be, e.tooltip ? e.tooltip : null]
|
|
345
345
|
]),
|
|
346
346
|
f("span", {
|
|
347
347
|
class: h(["popover", [
|
|
@@ -357,8 +357,8 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
357
357
|
"aria-hidden": r.value ? "false" : "true",
|
|
358
358
|
id: x(i),
|
|
359
359
|
style: U(x(z)),
|
|
360
|
-
"data-placement": x(
|
|
361
|
-
onKeydown: ee[0] || (ee[0] = Bt((
|
|
360
|
+
"data-placement": x(F),
|
|
361
|
+
onKeydown: ee[0] || (ee[0] = Bt((Nd) => pe(!1), ["esc"])),
|
|
362
362
|
tabindex: "-1"
|
|
363
363
|
}, [
|
|
364
364
|
f("span", Qs, [
|
|
@@ -388,11 +388,11 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
388
388
|
config: Object
|
|
389
389
|
},
|
|
390
390
|
setup(e) {
|
|
391
|
-
const s = ws(e.config.trigger), t =
|
|
391
|
+
const s = ws(e.config.trigger), t = j(null), n = j(null), i = [
|
|
392
392
|
...e.config.inline ? [Vt()] : [],
|
|
393
393
|
...e.config.offset ? [Dt(e.config.offset)] : [],
|
|
394
|
-
Nt(),
|
|
395
394
|
Wt(),
|
|
395
|
+
Nt(),
|
|
396
396
|
...e.config.arrow ? [Xt({ element: n })] : []
|
|
397
397
|
], o = {
|
|
398
398
|
placement: e.config.placement,
|
|
@@ -412,7 +412,7 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
412
412
|
top: z?.y != null ? `${z.y}px` : ""
|
|
413
413
|
} : null;
|
|
414
414
|
});
|
|
415
|
-
return e.config.onReady && e.config.onReady({ update: u, isPositioned: g }), (z,
|
|
415
|
+
return e.config.onReady && e.config.onReady({ update: u, isPositioned: g }), (z, F) => (l(), d("span", {
|
|
416
416
|
class: h(["popover popover--tooltip is-active", e.config.class]),
|
|
417
417
|
ref_key: "content",
|
|
418
418
|
ref: t,
|
|
@@ -437,10 +437,10 @@ const Zs = ["disabled", "aria-expanded", "aria-controls", "aria-label"], Js = ["
|
|
|
437
437
|
}, rn = {
|
|
438
438
|
__name: "UluTooltipDisplay",
|
|
439
439
|
setup(e) {
|
|
440
|
-
return (s, t) => (l(),
|
|
441
|
-
to: x(
|
|
440
|
+
return (s, t) => (l(), b(De, {
|
|
441
|
+
to: x(K).plugin.tooltipTeleportTo
|
|
442
442
|
}, [
|
|
443
|
-
x(Xe) ? (l(),
|
|
443
|
+
x(Xe) ? (l(), b(on, {
|
|
444
444
|
key: 0,
|
|
445
445
|
config: x(Ye)
|
|
446
446
|
}, null, 8, ["config"])) : y("", !0)
|
|
@@ -497,7 +497,7 @@ const _ = (e, s) => {
|
|
|
497
497
|
}
|
|
498
498
|
};
|
|
499
499
|
function an(e, s, t, n, i, o) {
|
|
500
|
-
return o.currentModal ? (l(),
|
|
500
|
+
return o.currentModal ? (l(), b(I(o.currentModal.component), Y({ key: 0 }, o.currentProps, {
|
|
501
501
|
modelValue: i.open,
|
|
502
502
|
"onUpdate:modelValue": s[0] || (s[0] = (r) => i.open = r),
|
|
503
503
|
onVnodeMounted: o.modalMounted,
|
|
@@ -525,47 +525,43 @@ function un() {
|
|
|
525
525
|
const B = {
|
|
526
526
|
__name: "UluIcon",
|
|
527
527
|
props: {
|
|
528
|
-
/**
|
|
529
|
-
* Semantic type of icon to use, will be resolved from settings
|
|
530
|
-
*/
|
|
531
|
-
type: String,
|
|
532
528
|
/**
|
|
533
529
|
* Icon definition can be string (fa classes), or array or object (any prop format FaIcon accepts)
|
|
534
530
|
* - This will override the 'type' prop if both are provided
|
|
535
531
|
*/
|
|
536
|
-
|
|
532
|
+
icon: [String, Array, Object, Boolean]
|
|
537
533
|
},
|
|
538
534
|
setup(e) {
|
|
539
|
-
const s = Ss("uluCore"), t =
|
|
535
|
+
const s = Ss("uluCore"), t = j(null), { getIconProps: n, getClassesFromDefinition: i } = un();
|
|
540
536
|
let o;
|
|
541
537
|
const r = e, a = R(() => s.getSetting("fontAwesomeStatic")), c = R(() => s.getSetting("iconComponent")), u = R(() => s.getSetting("iconPropResolver")), g = R(() => {
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
if (r.type)
|
|
538
|
+
const { icon: E } = r;
|
|
539
|
+
if (typeof E == "string" && E.startsWith("type:"))
|
|
545
540
|
try {
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
541
|
+
const L = E.substring(5);
|
|
542
|
+
return s.getIcon(L);
|
|
543
|
+
} catch (L) {
|
|
544
|
+
return console.warn(L), null;
|
|
549
545
|
}
|
|
550
|
-
return
|
|
551
|
-
}), A = R(() => !c.value || !g.value ? null : u.value(g.value)), z = R(() => n(g.value)),
|
|
546
|
+
return E;
|
|
547
|
+
}), A = R(() => !c.value || !g.value ? null : u.value(g.value)), z = R(() => n(g.value)), F = R(() => i(g.value));
|
|
552
548
|
return ks(async () => {
|
|
553
549
|
if (!a.value && g.value) {
|
|
554
550
|
if (t.value === null)
|
|
555
551
|
if (o)
|
|
556
552
|
t.value = ne(o.FontAwesomeIcon);
|
|
557
553
|
else {
|
|
558
|
-
const
|
|
559
|
-
const
|
|
560
|
-
return o =
|
|
554
|
+
const E = Cs(async () => {
|
|
555
|
+
const L = await import("./index.es-HlG3u0J5.js");
|
|
556
|
+
return o = L, L.FontAwesomeIcon;
|
|
561
557
|
});
|
|
562
|
-
t.value = ne(
|
|
558
|
+
t.value = ne(E);
|
|
563
559
|
}
|
|
564
560
|
} else
|
|
565
561
|
t.value = null;
|
|
566
|
-
}), (
|
|
562
|
+
}), (E, L) => c.value ? (l(), b(I(c.value), M(Y({ key: 0 }, A.value)), null, 16)) : !a.value && t.value && g.value ? (l(), b(I(t.value), M(Y({ key: 1 }, z.value)), null, 16)) : a.value && g.value ? (l(), d("span", {
|
|
567
563
|
key: 2,
|
|
568
|
-
class: h(
|
|
564
|
+
class: h(F.value),
|
|
569
565
|
"aria-hidden": "true"
|
|
570
566
|
}, null, 2)) : y("", !0);
|
|
571
567
|
}
|
|
@@ -587,7 +583,7 @@ function Fe(e) {
|
|
|
587
583
|
Object.prototype.hasOwnProperty.call(e, t) && e[t] && t && s.add(t);
|
|
588
584
|
return s;
|
|
589
585
|
}
|
|
590
|
-
function
|
|
586
|
+
function q({ props: e, baseClass: s, internal: t = {} }) {
|
|
591
587
|
const { modifiers: n } = Ts(e);
|
|
592
588
|
return { resolvedModifiers: R(() => {
|
|
593
589
|
const o = Re(s), r = Fe(Re(n)), a = Fe(Re(t));
|
|
@@ -924,7 +920,7 @@ class Ge {
|
|
|
924
920
|
}
|
|
925
921
|
}
|
|
926
922
|
let Ue = 0;
|
|
927
|
-
const
|
|
923
|
+
const bn = {
|
|
928
924
|
name: "UluModal",
|
|
929
925
|
components: {
|
|
930
926
|
UluIcon: B
|
|
@@ -1048,7 +1044,7 @@ const vn = {
|
|
|
1048
1044
|
if (!a || !c) return;
|
|
1049
1045
|
const u = ["left", "right", "center"];
|
|
1050
1046
|
return u.includes(c) ? !0 : (console.warn(`Passed invalid position for resize (${c}), use ${u.join(", ")}`), !1);
|
|
1051
|
-
}), i = R(() => e.position === "center" ? "resizeBoth" : "resizeHorizontal"), o = R(() => ({
|
|
1047
|
+
}), i = R(() => e.position === "center" ? "type:resizeBoth" : "type:resizeHorizontal"), o = R(() => ({
|
|
1052
1048
|
[e.position]: e.position,
|
|
1053
1049
|
resize: e.allowResize,
|
|
1054
1050
|
"no-resize": !e.allowResize,
|
|
@@ -1058,7 +1054,7 @@ const vn = {
|
|
|
1058
1054
|
"no-min-height": e.noMinHeight,
|
|
1059
1055
|
"non-modal": e.nonModal,
|
|
1060
1056
|
"resizer-active": n.value
|
|
1061
|
-
})), { resolvedModifiers: r } =
|
|
1057
|
+
})), { resolvedModifiers: r } = q({
|
|
1062
1058
|
props: e,
|
|
1063
1059
|
baseClass: "modal",
|
|
1064
1060
|
internal: o
|
|
@@ -1153,7 +1149,7 @@ const vn = {
|
|
|
1153
1149
|
const { container: e } = this.$refs;
|
|
1154
1150
|
e && e.open && e.close(), this.destroyPreventScroll(), this.destroyResizer();
|
|
1155
1151
|
}
|
|
1156
|
-
},
|
|
1152
|
+
}, vn = ["aria-labelledby", "aria-describedby"], wn = ["id"], Sn = { class: "modal__title-text" }, kn = {
|
|
1157
1153
|
key: 2,
|
|
1158
1154
|
class: "modal__resizer",
|
|
1159
1155
|
ref: "resizer",
|
|
@@ -1161,7 +1157,7 @@ const vn = {
|
|
|
1161
1157
|
};
|
|
1162
1158
|
function Cn(e, s, t, n, i, o) {
|
|
1163
1159
|
const r = S("UluIcon");
|
|
1164
|
-
return l(),
|
|
1160
|
+
return l(), b(De, {
|
|
1165
1161
|
to: t.teleport === !1 ? null : t.teleport,
|
|
1166
1162
|
disabled: t.teleport === !1
|
|
1167
1163
|
}, [
|
|
@@ -1185,11 +1181,11 @@ function Cn(e, s, t, n, i, o) {
|
|
|
1185
1181
|
id: i.titleId
|
|
1186
1182
|
}, [
|
|
1187
1183
|
m(e.$slots, "title", { close: o.close }, () => [
|
|
1188
|
-
t.titleIcon ? (l(),
|
|
1184
|
+
t.titleIcon ? (l(), b(r, {
|
|
1189
1185
|
key: 0,
|
|
1190
1186
|
class: "modal__title-icon",
|
|
1191
|
-
|
|
1192
|
-
}, null, 8, ["
|
|
1187
|
+
icon: t.titleIcon
|
|
1188
|
+
}, null, 8, ["icon"])) : y("", !0),
|
|
1193
1189
|
f("span", Sn, p(t.title), 1)
|
|
1194
1190
|
])
|
|
1195
1191
|
], 10, wn),
|
|
@@ -1202,9 +1198,8 @@ function Cn(e, s, t, n, i, o) {
|
|
|
1202
1198
|
m(e.$slots, "closeIcon", {}, () => [
|
|
1203
1199
|
k(r, {
|
|
1204
1200
|
class: "modal__close-icon",
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
}, null, 8, ["definition"])
|
|
1201
|
+
icon: t.closeIcon || "type:close"
|
|
1202
|
+
}, null, 8, ["icon"])
|
|
1208
1203
|
])
|
|
1209
1204
|
])
|
|
1210
1205
|
], 2)) : y("", !0),
|
|
@@ -1223,15 +1218,14 @@ function Cn(e, s, t, n, i, o) {
|
|
|
1223
1218
|
m(e.$slots, "resizerIcon", {}, () => [
|
|
1224
1219
|
k(r, {
|
|
1225
1220
|
class: "modal__resizer-icon",
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
}, null, 8, ["type", "definition"])
|
|
1221
|
+
icon: t.resizerIcon || n.resizerIconType
|
|
1222
|
+
}, null, 8, ["icon"])
|
|
1229
1223
|
])
|
|
1230
1224
|
], 512)) : y("", !0)
|
|
1231
|
-
], 46,
|
|
1225
|
+
], 46, vn)
|
|
1232
1226
|
], 8, ["to", "disabled"]);
|
|
1233
1227
|
}
|
|
1234
|
-
const Tn = /* @__PURE__ */ _(
|
|
1228
|
+
const Tn = /* @__PURE__ */ _(bn, [["render", Cn]]), ue = [], An = j({
|
|
1235
1229
|
/**
|
|
1236
1230
|
* Holds active component options (including component, and options)
|
|
1237
1231
|
*/
|
|
@@ -1343,7 +1337,7 @@ function Un(e, s, t, n, i, o) {
|
|
|
1343
1337
|
class: h(["toast__icon", t.classes.icon])
|
|
1344
1338
|
}, [
|
|
1345
1339
|
m(e.$slots, "icon", { toast: t.toast }, () => [
|
|
1346
|
-
t.toast.icon ? (l(),
|
|
1340
|
+
t.toast.icon ? (l(), b(r, {
|
|
1347
1341
|
key: 0,
|
|
1348
1342
|
icon: t.toast.icon
|
|
1349
1343
|
}, null, 8, ["icon"])) : y("", !0)
|
|
@@ -1385,7 +1379,7 @@ function Un(e, s, t, n, i, o) {
|
|
|
1385
1379
|
class: h(["toast__close", t.classes.closeButton]),
|
|
1386
1380
|
onClick: s[0] || (s[0] = (...c) => t.toast.close && t.toast.close(...c))
|
|
1387
1381
|
}, [
|
|
1388
|
-
k(a, {
|
|
1382
|
+
k(a, { icon: "type:close" })
|
|
1389
1383
|
], 2)
|
|
1390
1384
|
], 2);
|
|
1391
1385
|
}
|
|
@@ -1416,7 +1410,7 @@ const qt = /* @__PURE__ */ _(xn, [["render", Un]]), ct = {
|
|
|
1416
1410
|
}
|
|
1417
1411
|
}, { assign: Ie } = Object;
|
|
1418
1412
|
let In = 0;
|
|
1419
|
-
const
|
|
1413
|
+
const X = Pt({
|
|
1420
1414
|
toasts: [],
|
|
1421
1415
|
/**
|
|
1422
1416
|
* Saveable
|
|
@@ -1445,8 +1439,8 @@ const W = Pt({
|
|
|
1445
1439
|
* @returns Toast object (to be used to remove)
|
|
1446
1440
|
*/
|
|
1447
1441
|
add(e) {
|
|
1448
|
-
const s =
|
|
1449
|
-
return
|
|
1442
|
+
const s = X.createToast(e);
|
|
1443
|
+
return X.toasts.unshift(s), s.duration && setTimeout(() => {
|
|
1450
1444
|
this.remove(s.uid);
|
|
1451
1445
|
}, s.duration), s;
|
|
1452
1446
|
},
|
|
@@ -1455,19 +1449,19 @@ const W = Pt({
|
|
|
1455
1449
|
* @param {Object} toast Toast uid
|
|
1456
1450
|
*/
|
|
1457
1451
|
remove(e) {
|
|
1458
|
-
const s =
|
|
1459
|
-
s > -1 &&
|
|
1452
|
+
const s = X.toasts.findIndex((t) => t.uid === e);
|
|
1453
|
+
s > -1 && X.toasts.splice(s, 1);
|
|
1460
1454
|
},
|
|
1461
1455
|
/**
|
|
1462
1456
|
* Remove all toasts
|
|
1463
1457
|
*/
|
|
1464
1458
|
removeAll() {
|
|
1465
|
-
|
|
1459
|
+
X.toasts = [];
|
|
1466
1460
|
}
|
|
1467
1461
|
}, zn = {
|
|
1468
1462
|
name: "UluTooltipDisplay",
|
|
1469
1463
|
data() {
|
|
1470
|
-
const { toasts: e, pluginOptions: s } =
|
|
1464
|
+
const { toasts: e, pluginOptions: s } = X;
|
|
1471
1465
|
return { toasts: e, pluginOptions: s };
|
|
1472
1466
|
},
|
|
1473
1467
|
computed: {
|
|
@@ -1478,7 +1472,7 @@ const W = Pt({
|
|
|
1478
1472
|
}
|
|
1479
1473
|
};
|
|
1480
1474
|
function En(e, s, t, n, i, o) {
|
|
1481
|
-
return l(),
|
|
1475
|
+
return l(), b(De, {
|
|
1482
1476
|
to: i.pluginOptions.teleportTo
|
|
1483
1477
|
}, [
|
|
1484
1478
|
k(Os, {
|
|
@@ -1486,8 +1480,8 @@ function En(e, s, t, n, i, o) {
|
|
|
1486
1480
|
name: "toast",
|
|
1487
1481
|
tag: "div"
|
|
1488
1482
|
}, {
|
|
1489
|
-
default:
|
|
1490
|
-
(l(!0), d(T, null, C(i.toasts, (r) => (l(),
|
|
1483
|
+
default: v(() => [
|
|
1484
|
+
(l(!0), d(T, null, C(i.toasts, (r) => (l(), b(I(r.component), {
|
|
1491
1485
|
key: r.uid,
|
|
1492
1486
|
toast: r
|
|
1493
1487
|
}, null, 8, ["toast"]))), 128))
|
|
@@ -1498,8 +1492,8 @@ function En(e, s, t, n, i, o) {
|
|
|
1498
1492
|
}
|
|
1499
1493
|
const jn = /* @__PURE__ */ _(zn, [["render", En]]);
|
|
1500
1494
|
function tf(e, s = {}) {
|
|
1501
|
-
const t =
|
|
1502
|
-
|
|
1495
|
+
const t = X.setPluginOptions(s?.plugin);
|
|
1496
|
+
X.setToastOptions(s?.toast), e.component(t.componentName, qt), e.component(t.componentNameDisplay, jn), e.config.globalProperties.$uluToast = Me, e.provide("uluToast", Me);
|
|
1503
1497
|
}
|
|
1504
1498
|
const Fn = {
|
|
1505
1499
|
/**
|
|
@@ -1518,13 +1512,13 @@ const Fn = {
|
|
|
1518
1512
|
}
|
|
1519
1513
|
};
|
|
1520
1514
|
function Pn(e) {
|
|
1521
|
-
const s = Object.assign({}, Fn, e), t =
|
|
1515
|
+
const s = Object.assign({}, Fn, e), t = j(null), n = j(s.initialValue), i = j(null);
|
|
1522
1516
|
return (async () => {
|
|
1523
1517
|
if (!Gt()) return;
|
|
1524
1518
|
await new Promise((g) => {
|
|
1525
1519
|
document.readyState === "loading" ? document.addEventListener("DOMContentLoaded", () => g()) : g();
|
|
1526
1520
|
});
|
|
1527
|
-
const r = await import("./breakpoints-
|
|
1521
|
+
const r = await import("./breakpoints-SWofnYUx.js"), { BreakpointManager: a } = r, c = ne(new a(s.plugin));
|
|
1528
1522
|
t.value = ne(c);
|
|
1529
1523
|
const u = () => {
|
|
1530
1524
|
n.value = c.active, i.value = c.resizeDirection;
|
|
@@ -1543,7 +1537,7 @@ const Mn = {
|
|
|
1543
1537
|
managerOptions: {}
|
|
1544
1538
|
};
|
|
1545
1539
|
function sf(e, s) {
|
|
1546
|
-
const t =
|
|
1540
|
+
const t = j(!1), n = Object.assign({}, Mn, s), { breakpointMobile: i } = n, { onReady: o } = n.managerOptions, r = {
|
|
1547
1541
|
onReady(A) {
|
|
1548
1542
|
A.at(i).max({
|
|
1549
1543
|
on() {
|
|
@@ -1600,9 +1594,9 @@ const nf = {
|
|
|
1600
1594
|
modifiers: [String, Array]
|
|
1601
1595
|
},
|
|
1602
1596
|
setup(e) {
|
|
1603
|
-
const s = e, { resolvedModifiers: t } =
|
|
1604
|
-
return (n, i) => (l(),
|
|
1605
|
-
default:
|
|
1597
|
+
const s = e, { resolvedModifiers: t } = q({ props: s, baseClass: "button" });
|
|
1598
|
+
return (n, i) => (l(), b(x(zs), { defaultOpen: e.defaultOpen }, {
|
|
1599
|
+
default: v(({ open: o }) => [
|
|
1606
1600
|
f("div", {
|
|
1607
1601
|
class: h(["accordion", [
|
|
1608
1602
|
{ [e.activeClass]: o },
|
|
@@ -1616,10 +1610,10 @@ const nf = {
|
|
|
1616
1610
|
e.classes.summary
|
|
1617
1611
|
]])
|
|
1618
1612
|
}, {
|
|
1619
|
-
default:
|
|
1613
|
+
default: v(() => [
|
|
1620
1614
|
m(n.$slots, "summary", { open: o }, () => [
|
|
1621
|
-
(l(),
|
|
1622
|
-
default:
|
|
1615
|
+
(l(), b(I(e.summaryTextElement), null, {
|
|
1616
|
+
default: v(() => [
|
|
1623
1617
|
w(p(e.summaryText), 1)
|
|
1624
1618
|
]),
|
|
1625
1619
|
_: 1
|
|
@@ -1630,9 +1624,9 @@ const nf = {
|
|
|
1630
1624
|
class: h(["accordion__icon", e.classes.icon])
|
|
1631
1625
|
}, [
|
|
1632
1626
|
k(B, {
|
|
1633
|
-
|
|
1627
|
+
icon: o ? "type:collapse" : "type:expand",
|
|
1634
1628
|
style: { display: "inline" }
|
|
1635
|
-
}, null, 8, ["
|
|
1629
|
+
}, null, 8, ["icon"])
|
|
1636
1630
|
], 2)
|
|
1637
1631
|
])
|
|
1638
1632
|
]),
|
|
@@ -1641,7 +1635,7 @@ const nf = {
|
|
|
1641
1635
|
k(x(js), {
|
|
1642
1636
|
class: h(["accordion__content", e.classes.content])
|
|
1643
1637
|
}, {
|
|
1644
|
-
default:
|
|
1638
|
+
default: v(() => [
|
|
1645
1639
|
m(n.$slots, "default", { open: o })
|
|
1646
1640
|
]),
|
|
1647
1641
|
_: 2
|
|
@@ -1803,7 +1797,7 @@ const Ln = {
|
|
|
1803
1797
|
}
|
|
1804
1798
|
}
|
|
1805
1799
|
}, Hn = ["id", "aria-controls", "aria-expanded"], Vn = ["id", "aria-hidden", "aria-labelledby"], Dn = { class: "CollapsibleRegion__content-inner" };
|
|
1806
|
-
function
|
|
1800
|
+
function Wn(e, s, t, n, i, o) {
|
|
1807
1801
|
return l(), d("div", {
|
|
1808
1802
|
class: h(["CollapsibleRegion", {
|
|
1809
1803
|
"CollapsibleRegion--open": i.isOpen,
|
|
@@ -1823,7 +1817,7 @@ function Nn(e, s, t, n, i, o) {
|
|
|
1823
1817
|
w(p(t.title), 1)
|
|
1824
1818
|
])
|
|
1825
1819
|
], 8, Hn),
|
|
1826
|
-
|
|
1820
|
+
W(f("div", {
|
|
1827
1821
|
class: "CollapsibleRegion__content",
|
|
1828
1822
|
tabindex: "-1",
|
|
1829
1823
|
ref: "content",
|
|
@@ -1836,11 +1830,11 @@ function Nn(e, s, t, n, i, o) {
|
|
|
1836
1830
|
m(e.$slots, "default")
|
|
1837
1831
|
])
|
|
1838
1832
|
], 12, Vn), [
|
|
1839
|
-
[
|
|
1833
|
+
[We, !i.isHidden]
|
|
1840
1834
|
])
|
|
1841
1835
|
], 34);
|
|
1842
1836
|
}
|
|
1843
|
-
const
|
|
1837
|
+
const Nn = /* @__PURE__ */ _(Ln, [["render", Wn]]), Xn = {
|
|
1844
1838
|
name: "UluTag",
|
|
1845
1839
|
components: {
|
|
1846
1840
|
UluIcon: B
|
|
@@ -1866,7 +1860,7 @@ const Wn = /* @__PURE__ */ _(Ln, [["render", Nn]]), Xn = {
|
|
|
1866
1860
|
modifiers: [String, Array]
|
|
1867
1861
|
},
|
|
1868
1862
|
setup(e) {
|
|
1869
|
-
const { resolvedModifiers: s } =
|
|
1863
|
+
const { resolvedModifiers: s } = q({ props: e, baseClass: "tag" });
|
|
1870
1864
|
return { resolvedModifiers: s };
|
|
1871
1865
|
}
|
|
1872
1866
|
};
|
|
@@ -1882,10 +1876,10 @@ function Yn(e, s, t, n, i, o) {
|
|
|
1882
1876
|
n.resolvedModifiers
|
|
1883
1877
|
]])
|
|
1884
1878
|
}, [
|
|
1885
|
-
t.icon ? (l(),
|
|
1879
|
+
t.icon ? (l(), b(r, {
|
|
1886
1880
|
key: 0,
|
|
1887
|
-
|
|
1888
|
-
}, null, 8, ["
|
|
1881
|
+
icon: t.icon
|
|
1882
|
+
}, null, 8, ["icon"])) : y("", !0),
|
|
1889
1883
|
m(e.$slots, "default", {}, () => [
|
|
1890
1884
|
w(p(t.text), 1)
|
|
1891
1885
|
])
|
|
@@ -1950,7 +1944,7 @@ function qn(e, s, t, n, i, o) {
|
|
|
1950
1944
|
key: A,
|
|
1951
1945
|
class: h([t.classes.item, g?.classes?.item])
|
|
1952
1946
|
}, [
|
|
1953
|
-
|
|
1947
|
+
W((l(), b(I(g.to || g.path ? "router-link" : g.click ? "button" : "a"), Y({ ref_for: !0 }, {
|
|
1954
1948
|
...g.to || g.path ? { to: g.to || g.path } : {},
|
|
1955
1949
|
...g.href ? { href: g.href || "#" } : {}
|
|
1956
1950
|
}, {
|
|
@@ -1963,20 +1957,20 @@ function qn(e, s, t, n, i, o) {
|
|
|
1963
1957
|
"aria-label": t.iconOnly ? g.title : null,
|
|
1964
1958
|
id: g.id
|
|
1965
1959
|
}), {
|
|
1966
|
-
default:
|
|
1960
|
+
default: v(() => [
|
|
1967
1961
|
m(e.$slots, "default", {
|
|
1968
1962
|
item: g,
|
|
1969
1963
|
index: A
|
|
1970
1964
|
}, () => [
|
|
1971
|
-
g.icon ? (l(),
|
|
1965
|
+
g.icon ? (l(), b(r, {
|
|
1972
1966
|
key: 0,
|
|
1973
|
-
|
|
1967
|
+
icon: g.icon,
|
|
1974
1968
|
class: h([t.classes.linkIcon, g?.classes?.linkIcon])
|
|
1975
|
-
}, null, 8, ["
|
|
1969
|
+
}, null, 8, ["icon", "class"])) : y("", !0),
|
|
1976
1970
|
f("span", {
|
|
1977
1971
|
class: h([t.classes.linkText, g?.classes?.linkText])
|
|
1978
1972
|
}, p(g.title), 3),
|
|
1979
|
-
g.tag ? (l(),
|
|
1973
|
+
g.tag ? (l(), b(a, Y({
|
|
1980
1974
|
key: 1,
|
|
1981
1975
|
ref_for: !0
|
|
1982
1976
|
}, g.tag), null, 16)) : y("", !0)
|
|
@@ -1986,7 +1980,7 @@ function qn(e, s, t, n, i, o) {
|
|
|
1986
1980
|
}, 1040, ["onClick", "class", "activeClass", "exactActiveClass", "aria-label", "id"])), [
|
|
1987
1981
|
[u, t.iconOnly ? g.title : g.tooltip || null]
|
|
1988
1982
|
]),
|
|
1989
|
-
!t.noChildren && g?.children?.length ? (l(),
|
|
1983
|
+
!t.noChildren && g?.children?.length ? (l(), b(c, {
|
|
1990
1984
|
key: 0,
|
|
1991
1985
|
iconOnly: t.iconOnly,
|
|
1992
1986
|
classes: t.classes,
|
|
@@ -2069,17 +2063,17 @@ const Qn = /* @__PURE__ */ _(Zn, [["render", Jn]]), eo = {
|
|
|
2069
2063
|
};
|
|
2070
2064
|
function to(e, s, t, n, i, o) {
|
|
2071
2065
|
const r = S("UluMenuStack"), a = S("UluPopover");
|
|
2072
|
-
return l(),
|
|
2073
|
-
trigger:
|
|
2066
|
+
return l(), b(a, { classes: t.popoverClasses }, {
|
|
2067
|
+
trigger: v(({ isOpen: c }) => [
|
|
2074
2068
|
m(e.$slots, "default", { isOpen: c })
|
|
2075
2069
|
]),
|
|
2076
|
-
content:
|
|
2070
|
+
content: v(() => [
|
|
2077
2071
|
k(r, { items: t.items }, null, 8, ["items"])
|
|
2078
2072
|
]),
|
|
2079
2073
|
_: 3
|
|
2080
2074
|
}, 8, ["classes"]);
|
|
2081
2075
|
}
|
|
2082
|
-
const of = /* @__PURE__ */ _(eo, [["render", to]]), qe =
|
|
2076
|
+
const of = /* @__PURE__ */ _(eo, [["render", to]]), qe = j(!1), Ce = {
|
|
2083
2077
|
start: [],
|
|
2084
2078
|
end: []
|
|
2085
2079
|
};
|
|
@@ -2116,7 +2110,7 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2116
2110
|
triggerIcon: String
|
|
2117
2111
|
},
|
|
2118
2112
|
setup(e) {
|
|
2119
|
-
const { resizing: s, onResizeEnd: t } = no(), n =
|
|
2113
|
+
const { resizing: s, onResizeEnd: t } = no(), n = j(null), i = j(!1), o = () => {
|
|
2120
2114
|
Lt(() => {
|
|
2121
2115
|
const a = n.value;
|
|
2122
2116
|
i.value = a.offsetWidth < a.scrollWidth;
|
|
@@ -2130,18 +2124,17 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2130
2124
|
}, [
|
|
2131
2125
|
m(a.$slots, "default")
|
|
2132
2126
|
], 512),
|
|
2133
|
-
i.value && !x(s) ? (l(),
|
|
2127
|
+
i.value && !x(s) ? (l(), b(Ke, {
|
|
2134
2128
|
key: 0,
|
|
2135
2129
|
triggerAlt: "Show Full Text",
|
|
2136
2130
|
size: "large"
|
|
2137
2131
|
}, {
|
|
2138
|
-
trigger:
|
|
2132
|
+
trigger: v(() => [
|
|
2139
2133
|
k(B, {
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
}, null, 8, ["definition"])
|
|
2134
|
+
icon: e.triggerIcon || "type:ellipsis"
|
|
2135
|
+
}, null, 8, ["icon"])
|
|
2143
2136
|
]),
|
|
2144
|
-
content:
|
|
2137
|
+
content: v(() => [
|
|
2145
2138
|
f("div", io, [
|
|
2146
2139
|
m(a.$slots, "default")
|
|
2147
2140
|
])
|
|
@@ -2153,9 +2146,9 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2153
2146
|
}, lf = {
|
|
2154
2147
|
__name: "UluTab",
|
|
2155
2148
|
setup(e) {
|
|
2156
|
-
return (s, t) => (l(),
|
|
2157
|
-
default:
|
|
2158
|
-
m(s.$slots, "default", M(
|
|
2149
|
+
return (s, t) => (l(), b(x(Fs), null, {
|
|
2150
|
+
default: v((n) => [
|
|
2151
|
+
m(s.$slots, "default", M(H(n)))
|
|
2159
2152
|
]),
|
|
2160
2153
|
_: 3
|
|
2161
2154
|
}));
|
|
@@ -2175,17 +2168,17 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2175
2168
|
vertical: Boolean
|
|
2176
2169
|
},
|
|
2177
2170
|
setup(e) {
|
|
2178
|
-
return (s, t) => (l(),
|
|
2171
|
+
return (s, t) => (l(), b(x(Ps), {
|
|
2179
2172
|
defaultIndex: e.defaultIndex,
|
|
2180
2173
|
vertical: e.vertical
|
|
2181
2174
|
}, {
|
|
2182
|
-
default:
|
|
2175
|
+
default: v((n) => [
|
|
2183
2176
|
f("div", {
|
|
2184
2177
|
class: h(["tabs", {
|
|
2185
2178
|
"tabs--vertical": e.vertical
|
|
2186
2179
|
}])
|
|
2187
2180
|
}, [
|
|
2188
|
-
m(s.$slots, "default", M(
|
|
2181
|
+
m(s.$slots, "default", M(H(n)))
|
|
2189
2182
|
], 2)
|
|
2190
2183
|
]),
|
|
2191
2184
|
_: 3
|
|
@@ -2194,8 +2187,8 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2194
2187
|
}), cf = {
|
|
2195
2188
|
__name: "UluTabList",
|
|
2196
2189
|
setup(e) {
|
|
2197
|
-
return (s, t) => (l(),
|
|
2198
|
-
default:
|
|
2190
|
+
return (s, t) => (l(), b(x(Ms), { class: "tabs__tablist" }, {
|
|
2191
|
+
default: v(() => [
|
|
2199
2192
|
m(s.$slots, "default")
|
|
2200
2193
|
]),
|
|
2201
2194
|
_: 3
|
|
@@ -2204,9 +2197,9 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2204
2197
|
}, uf = {
|
|
2205
2198
|
__name: "UluTabPanel",
|
|
2206
2199
|
setup(e) {
|
|
2207
|
-
return (s, t) => (l(),
|
|
2208
|
-
default:
|
|
2209
|
-
m(s.$slots, "default", M(
|
|
2200
|
+
return (s, t) => (l(), b(x(Bs), null, {
|
|
2201
|
+
default: v((n) => [
|
|
2202
|
+
m(s.$slots, "default", M(H(n)))
|
|
2210
2203
|
]),
|
|
2211
2204
|
_: 3
|
|
2212
2205
|
}));
|
|
@@ -2214,9 +2207,9 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2214
2207
|
}, df = {
|
|
2215
2208
|
__name: "UluTabPanels",
|
|
2216
2209
|
setup(e) {
|
|
2217
|
-
return (s, t) => (l(),
|
|
2218
|
-
default:
|
|
2219
|
-
m(s.$slots, "default", M(
|
|
2210
|
+
return (s, t) => (l(), b(x(Ls), null, {
|
|
2211
|
+
default: v((n) => [
|
|
2212
|
+
m(s.$slots, "default", M(H(n)))
|
|
2220
2213
|
]),
|
|
2221
2214
|
_: 3
|
|
2222
2215
|
}));
|
|
@@ -2302,7 +2295,7 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2302
2295
|
modifiers: [String, Array]
|
|
2303
2296
|
},
|
|
2304
2297
|
setup(e) {
|
|
2305
|
-
const { resolvedModifiers: s } =
|
|
2298
|
+
const { resolvedModifiers: s } = q({ props: e, baseClass: "button" });
|
|
2306
2299
|
return { resolvedModifiers: s };
|
|
2307
2300
|
},
|
|
2308
2301
|
computed: {
|
|
@@ -2315,7 +2308,7 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2315
2308
|
return s && e.push(`button--${s}`), e;
|
|
2316
2309
|
},
|
|
2317
2310
|
element() {
|
|
2318
|
-
return this.to ?
|
|
2311
|
+
return this.to ? Ne : this.href ? "a" : "button";
|
|
2319
2312
|
},
|
|
2320
2313
|
attrs() {
|
|
2321
2314
|
const { to: e, href: s, download: t, target: n } = this, i = e ? { to: e } : s ? { href: s } : {};
|
|
@@ -2325,7 +2318,7 @@ const oo = { class: "layout-flex-baseline" }, io = { class: "type-word-break" },
|
|
|
2325
2318
|
}, lo = { key: 1 };
|
|
2326
2319
|
function ao(e, s, t, n, i, o) {
|
|
2327
2320
|
const r = S("UluIcon");
|
|
2328
|
-
return l(),
|
|
2321
|
+
return l(), b(I(o.element), Y({
|
|
2329
2322
|
class: ["button", [
|
|
2330
2323
|
{
|
|
2331
2324
|
"button--transparent": t.transparent,
|
|
@@ -2341,23 +2334,23 @@ function ao(e, s, t, n, i, o) {
|
|
|
2341
2334
|
n.resolvedModifiers
|
|
2342
2335
|
]]
|
|
2343
2336
|
}, o.attrs, { "aria-label": o.resolvedAriaLabel }), {
|
|
2344
|
-
default:
|
|
2337
|
+
default: v(() => [
|
|
2345
2338
|
m(e.$slots, "before"),
|
|
2346
|
-
t.icon && (t.iconBefore || t.iconOnly) ? (l(),
|
|
2339
|
+
t.icon && (t.iconBefore || t.iconOnly) ? (l(), b(r, {
|
|
2347
2340
|
key: 0,
|
|
2348
|
-
|
|
2341
|
+
icon: t.icon,
|
|
2349
2342
|
class: "button__icon"
|
|
2350
|
-
}, null, 8, ["
|
|
2343
|
+
}, null, 8, ["icon"])) : y("", !0),
|
|
2351
2344
|
(e.$slots.default || t.text) && !t.iconOnly ? (l(), d("span", lo, [
|
|
2352
2345
|
m(e.$slots, "default", {}, () => [
|
|
2353
2346
|
w(p(t.text), 1)
|
|
2354
2347
|
])
|
|
2355
2348
|
])) : y("", !0),
|
|
2356
|
-
t.icon && !t.iconBefore && !t.iconOnly ? (l(),
|
|
2349
|
+
t.icon && !t.iconBefore && !t.iconOnly ? (l(), b(r, {
|
|
2357
2350
|
key: 2,
|
|
2358
|
-
|
|
2351
|
+
icon: t.icon,
|
|
2359
2352
|
class: "button__icon"
|
|
2360
|
-
}, null, 8, ["
|
|
2353
|
+
}, null, 8, ["icon"])) : y("", !0),
|
|
2361
2354
|
m(e.$slots, "after")
|
|
2362
2355
|
]),
|
|
2363
2356
|
_: 3
|
|
@@ -2399,7 +2392,7 @@ const co = /* @__PURE__ */ _(ro, [["render", ao]]), uo = {
|
|
|
2399
2392
|
modifiers: [String, Array]
|
|
2400
2393
|
},
|
|
2401
2394
|
setup(e) {
|
|
2402
|
-
const { resolvedModifiers: s } =
|
|
2395
|
+
const { resolvedModifiers: s } = q({
|
|
2403
2396
|
props: e,
|
|
2404
2397
|
baseClass: "callout",
|
|
2405
2398
|
internal: R(() => ({
|
|
@@ -2421,9 +2414,8 @@ function go(e, s, t, n, i, o) {
|
|
|
2421
2414
|
f("div", fo, [
|
|
2422
2415
|
k(r, {
|
|
2423
2416
|
class: h(["type-large margin-right-small", `color-${t.type}`]),
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
}, null, 8, ["class", "type", "definition"]),
|
|
2417
|
+
icon: t.icon || `type:${t.type}`
|
|
2418
|
+
}, null, 8, ["class", "icon"]),
|
|
2427
2419
|
f("div", ho, [
|
|
2428
2420
|
f("div", null, [
|
|
2429
2421
|
m(e.$slots, "title", {}, () => [
|
|
@@ -2460,15 +2452,15 @@ const ff = /* @__PURE__ */ _(uo, [["render", go]]), _o = {
|
|
|
2460
2452
|
},
|
|
2461
2453
|
element() {
|
|
2462
2454
|
const { click: e, to: s, href: t } = this;
|
|
2463
|
-
return e ? "button" : s ?
|
|
2455
|
+
return e ? "button" : s ? Ne : t ? "a" : "span";
|
|
2464
2456
|
}
|
|
2465
2457
|
}
|
|
2466
2458
|
}, yo = ["aria-hidden"], po = {
|
|
2467
2459
|
key: 2,
|
|
2468
2460
|
class: "hidden-visually"
|
|
2469
2461
|
};
|
|
2470
|
-
function
|
|
2471
|
-
return l(),
|
|
2462
|
+
function bo(e, s, t, n, i, o) {
|
|
2463
|
+
return l(), b(I(o.element), {
|
|
2472
2464
|
class: h(["badge", [
|
|
2473
2465
|
t.size ? `badge--${t.size}` : null,
|
|
2474
2466
|
t.type ? `badge--${t.type}` : null,
|
|
@@ -2478,7 +2470,7 @@ function vo(e, s, t, n, i, o) {
|
|
|
2478
2470
|
href: t.href,
|
|
2479
2471
|
onClick: t.click
|
|
2480
2472
|
}, {
|
|
2481
|
-
default:
|
|
2473
|
+
default: v(() => [
|
|
2482
2474
|
f("span", {
|
|
2483
2475
|
class: h(["badge__inner", { "skeleton__background-color": t.skeleton }])
|
|
2484
2476
|
}, [
|
|
@@ -2492,10 +2484,10 @@ function vo(e, s, t, n, i, o) {
|
|
|
2492
2484
|
_: 3
|
|
2493
2485
|
}, 8, ["class", "to", "href", "onClick"]);
|
|
2494
2486
|
}
|
|
2495
|
-
const
|
|
2487
|
+
const vo = /* @__PURE__ */ _(_o, [["render", bo]]), wo = {
|
|
2496
2488
|
name: "UluBadgeStack",
|
|
2497
2489
|
components: {
|
|
2498
|
-
UluBadge:
|
|
2490
|
+
UluBadge: vo
|
|
2499
2491
|
},
|
|
2500
2492
|
props: {
|
|
2501
2493
|
/**
|
|
@@ -2511,7 +2503,7 @@ function ko(e, s, t, n, i, o) {
|
|
|
2511
2503
|
class: "badge-stack__item",
|
|
2512
2504
|
key: c
|
|
2513
2505
|
}, [
|
|
2514
|
-
k(r,
|
|
2506
|
+
k(r, Y({ ref_for: !0 }, a), null, 16)
|
|
2515
2507
|
]))), 128))
|
|
2516
2508
|
]);
|
|
2517
2509
|
}
|
|
@@ -2529,7 +2521,7 @@ const hf = /* @__PURE__ */ _(wo, [["render", ko]]), Co = {
|
|
|
2529
2521
|
modifiers: [String, Array]
|
|
2530
2522
|
},
|
|
2531
2523
|
setup(e) {
|
|
2532
|
-
const { resolvedModifiers: s } =
|
|
2524
|
+
const { resolvedModifiers: s } = q({ props: e, baseClass: "callout" });
|
|
2533
2525
|
return { resolvedModifiers: s };
|
|
2534
2526
|
}
|
|
2535
2527
|
};
|
|
@@ -2663,13 +2655,13 @@ const mf = /* @__PURE__ */ _(Co, [["render", To]]), dt = (e, s) => {
|
|
|
2663
2655
|
};
|
|
2664
2656
|
},
|
|
2665
2657
|
setup(e) {
|
|
2666
|
-
const { resolvedModifiers: s } =
|
|
2658
|
+
const { resolvedModifiers: s } = q({ props: e, baseClass: "card" });
|
|
2667
2659
|
return { resolvedModifiers: s };
|
|
2668
2660
|
},
|
|
2669
2661
|
computed: {
|
|
2670
2662
|
resolvedElement() {
|
|
2671
2663
|
const { cardElement: e, to: s, href: t } = this;
|
|
2672
|
-
return s ?
|
|
2664
|
+
return s ? Ne : t ? "a" : e;
|
|
2673
2665
|
}
|
|
2674
2666
|
},
|
|
2675
2667
|
methods: {
|
|
@@ -2693,7 +2685,7 @@ const mf = /* @__PURE__ */ _(Co, [["render", To]]), dt = (e, s) => {
|
|
|
2693
2685
|
};
|
|
2694
2686
|
function zo(e, s, t, n, i, o) {
|
|
2695
2687
|
const r = S("router-link");
|
|
2696
|
-
return l(),
|
|
2688
|
+
return l(), b(I(o.resolvedElement), {
|
|
2697
2689
|
class: h(["card", [
|
|
2698
2690
|
{
|
|
2699
2691
|
"card--horizontal": t.horizontal || t.horizontalCenter,
|
|
@@ -2710,20 +2702,20 @@ function zo(e, s, t, n, i, o) {
|
|
|
2710
2702
|
href: t.href,
|
|
2711
2703
|
"data-ulu-proxy-click-init": i.proxyClickEnabled
|
|
2712
2704
|
}, {
|
|
2713
|
-
default:
|
|
2705
|
+
default: v(() => [
|
|
2714
2706
|
f("div", $o, [
|
|
2715
2707
|
f("div", Oo, [
|
|
2716
|
-
(l(),
|
|
2708
|
+
(l(), b(I(t.titleElement), {
|
|
2717
2709
|
class: h(["card__title", t.classes.title])
|
|
2718
2710
|
}, {
|
|
2719
|
-
default:
|
|
2720
|
-
t.titleTo ? (l(),
|
|
2711
|
+
default: v(() => [
|
|
2712
|
+
t.titleTo ? (l(), b(r, {
|
|
2721
2713
|
key: 0,
|
|
2722
2714
|
class: "card__title-link",
|
|
2723
2715
|
to: t.titleTo,
|
|
2724
2716
|
ref: "link"
|
|
2725
2717
|
}, {
|
|
2726
|
-
default:
|
|
2718
|
+
default: v(() => [
|
|
2727
2719
|
m(e.$slots, "title", {}, () => [
|
|
2728
2720
|
w(p(t.title), 1)
|
|
2729
2721
|
])
|
|
@@ -2861,9 +2853,8 @@ function Bo(e, s, t, n, i, o) {
|
|
|
2861
2853
|
]),
|
|
2862
2854
|
k(r, {
|
|
2863
2855
|
class: "external-link__icon margin-left-small-x display-inline",
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
}, null, 8, ["definition"])
|
|
2856
|
+
icon: t.icon || "type:externalLink"
|
|
2857
|
+
}, null, 8, ["icon"])
|
|
2867
2858
|
], 8, Po);
|
|
2868
2859
|
}
|
|
2869
2860
|
const yf = /* @__PURE__ */ _(Fo, [["render", Bo]]), Lo = {
|
|
@@ -2922,7 +2913,7 @@ const yf = /* @__PURE__ */ _(Fo, [["render", Bo]]), Lo = {
|
|
|
2922
2913
|
}
|
|
2923
2914
|
};
|
|
2924
2915
|
function Ho(e, s, t, n, i, o) {
|
|
2925
|
-
return l(),
|
|
2916
|
+
return l(), b(I(o.listElement), {
|
|
2926
2917
|
class: h([
|
|
2927
2918
|
{
|
|
2928
2919
|
"list-ordered": t.ordered,
|
|
@@ -2938,7 +2929,7 @@ function Ho(e, s, t, n, i, o) {
|
|
|
2938
2929
|
reversed: t.reversed,
|
|
2939
2930
|
start: t.start
|
|
2940
2931
|
}, {
|
|
2941
|
-
default:
|
|
2932
|
+
default: v(() => [
|
|
2942
2933
|
(l(!0), d(T, null, C(t.items, (r, a) => (l(), d("li", {
|
|
2943
2934
|
key: a,
|
|
2944
2935
|
class: h(t.classes.listItem)
|
|
@@ -2955,12 +2946,12 @@ function Ho(e, s, t, n, i, o) {
|
|
|
2955
2946
|
}, 8, ["class", "style", "reversed", "start"]);
|
|
2956
2947
|
}
|
|
2957
2948
|
const pf = /* @__PURE__ */ _(Lo, [["render", Ho]]), Vo = {}, Do = { id: "main-content" };
|
|
2958
|
-
function
|
|
2949
|
+
function Wo(e, s) {
|
|
2959
2950
|
return l(), d("main", Do, [
|
|
2960
2951
|
m(e.$slots, "default")
|
|
2961
2952
|
]);
|
|
2962
2953
|
}
|
|
2963
|
-
const
|
|
2954
|
+
const bf = /* @__PURE__ */ _(Vo, [["render", Wo]]), No = {
|
|
2964
2955
|
name: "UluSpokeSpinner",
|
|
2965
2956
|
props: {
|
|
2966
2957
|
/**
|
|
@@ -2995,7 +2986,7 @@ function Xo(e, s, t, n, i, o) {
|
|
|
2995
2986
|
], -1)
|
|
2996
2987
|
]), 2);
|
|
2997
2988
|
}
|
|
2998
|
-
const
|
|
2989
|
+
const vf = /* @__PURE__ */ _(No, [["render", Xo]]), Yo = {
|
|
2999
2990
|
name: "UluCheckboxMenu",
|
|
3000
2991
|
props: {
|
|
3001
2992
|
options: Array
|
|
@@ -3013,7 +3004,7 @@ function Jo(e, s, t, n, i, o) {
|
|
|
3013
3004
|
key: a
|
|
3014
3005
|
}, [
|
|
3015
3006
|
f("div", Go, [
|
|
3016
|
-
|
|
3007
|
+
W(f("input", {
|
|
3017
3008
|
type: "checkbox",
|
|
3018
3009
|
id: o.getId(a),
|
|
3019
3010
|
"onUpdate:modelValue": (c) => r.checked = c
|
|
@@ -3102,7 +3093,7 @@ function ci(e, s, t, n, i, o) {
|
|
|
3102
3093
|
w(p(t.label), 1)
|
|
3103
3094
|
])
|
|
3104
3095
|
], 10, li),
|
|
3105
|
-
f("input",
|
|
3096
|
+
f("input", Y({
|
|
3106
3097
|
type: "file",
|
|
3107
3098
|
onChange: s[0] || (s[0] = (...r) => o.onChangeFile && o.onChangeFile(...r)),
|
|
3108
3099
|
multiple: t.multiple,
|
|
@@ -3125,11 +3116,11 @@ function di(e, s, t, n, i, o) {
|
|
|
3125
3116
|
"site-form__warning": t.warning
|
|
3126
3117
|
}])
|
|
3127
3118
|
}, [
|
|
3128
|
-
t.error ? (l(),
|
|
3119
|
+
t.error ? (l(), b(r, {
|
|
3129
3120
|
key: 0,
|
|
3130
3121
|
icon: e.$site.getIcon("error")
|
|
3131
3122
|
}, null, 8, ["icon"])) : y("", !0),
|
|
3132
|
-
t.warning ? (l(),
|
|
3123
|
+
t.warning ? (l(), b(r, {
|
|
3133
3124
|
key: 1,
|
|
3134
3125
|
icon: e.$site.getIcon("warning")
|
|
3135
3126
|
}, null, 8, ["icon"])) : y("", !0),
|
|
@@ -3179,8 +3170,8 @@ function pi(e, s, t, n, i, o) {
|
|
|
3179
3170
|
]);
|
|
3180
3171
|
}
|
|
3181
3172
|
const Tf = /* @__PURE__ */ _(hi, [["render", pi]]);
|
|
3182
|
-
let
|
|
3183
|
-
const
|
|
3173
|
+
let bi = 0;
|
|
3174
|
+
const vi = {
|
|
3184
3175
|
name: "FormText",
|
|
3185
3176
|
props: {
|
|
3186
3177
|
label: String,
|
|
@@ -3189,7 +3180,7 @@ const bi = {
|
|
|
3189
3180
|
},
|
|
3190
3181
|
data() {
|
|
3191
3182
|
return {
|
|
3192
|
-
id: `text-input-id-${++
|
|
3183
|
+
id: `text-input-id-${++bi}`
|
|
3193
3184
|
};
|
|
3194
3185
|
}
|
|
3195
3186
|
}, wi = { class: "site-form__item site-form__item--text" }, Si = ["for"], ki = ["value", "id"];
|
|
@@ -3211,7 +3202,7 @@ function Ci(e, s, t, n, i, o) {
|
|
|
3211
3202
|
}, null, 40, ki)
|
|
3212
3203
|
]);
|
|
3213
3204
|
}
|
|
3214
|
-
const Af = /* @__PURE__ */ _(
|
|
3205
|
+
const Af = /* @__PURE__ */ _(vi, [["render", Ci]]), Ti = {
|
|
3215
3206
|
name: "SearchForm",
|
|
3216
3207
|
props: {
|
|
3217
3208
|
placeholder: {
|
|
@@ -3297,7 +3288,6 @@ const xf = /* @__PURE__ */ _(ji, [["render", Fi]]), Pi = {
|
|
|
3297
3288
|
type: String,
|
|
3298
3289
|
default: "baseline"
|
|
3299
3290
|
},
|
|
3300
|
-
iconType: String,
|
|
3301
3291
|
classes: {
|
|
3302
3292
|
type: Object,
|
|
3303
3293
|
default: () => ({
|
|
@@ -3321,17 +3311,16 @@ function Li(e, s, t, n, i, o) {
|
|
|
3321
3311
|
f("div", {
|
|
3322
3312
|
class: h(["rail__item rail__item--title", t.classes.itemTitle])
|
|
3323
3313
|
}, [
|
|
3324
|
-
(l(),
|
|
3314
|
+
(l(), b(I(t.titleElement), {
|
|
3325
3315
|
class: h(["layout-flex type-max-width-small no-margin", t.classes.title]),
|
|
3326
3316
|
style: U({ alignItems: t.iconAlign })
|
|
3327
3317
|
}, {
|
|
3328
|
-
default:
|
|
3329
|
-
t.icon
|
|
3318
|
+
default: v(() => [
|
|
3319
|
+
t.icon ? (l(), b(r, {
|
|
3330
3320
|
key: 0,
|
|
3331
3321
|
class: h(t.classes.icon),
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
}, null, 8, ["class", "type", "definition"])) : y("", !0),
|
|
3322
|
+
icon: t.icon
|
|
3323
|
+
}, null, 8, ["class", "icon"])) : y("", !0),
|
|
3335
3324
|
m(e.$slots, "default", {}, () => [
|
|
3336
3325
|
w(p(t.title), 1)
|
|
3337
3326
|
])
|
|
@@ -3397,7 +3386,7 @@ function Vi(e, s, t, n, i, o) {
|
|
|
3397
3386
|
class: h(t.classes.link),
|
|
3398
3387
|
"aria-current": c.current ? "page" : null
|
|
3399
3388
|
}, {
|
|
3400
|
-
default:
|
|
3389
|
+
default: v(() => [
|
|
3401
3390
|
m(e.$slots, "default", { item: c }, () => [
|
|
3402
3391
|
w(p(c.title), 1)
|
|
3403
3392
|
])
|
|
@@ -3407,9 +3396,8 @@ function Vi(e, s, t, n, i, o) {
|
|
|
3407
3396
|
u < t.items.length - 1 ? m(e.$slots, "separator", { key: 0 }, () => [
|
|
3408
3397
|
k(a, {
|
|
3409
3398
|
class: h(t.classes.separator),
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
}, null, 8, ["class", "definition"])
|
|
3399
|
+
icon: t.separatorIcon || "type:pathSeparator"
|
|
3400
|
+
}, null, 8, ["class", "icon"])
|
|
3413
3401
|
]) : y("", !0)
|
|
3414
3402
|
], 2))), 128))
|
|
3415
3403
|
], 2)
|
|
@@ -3439,7 +3427,7 @@ const Uf = /* @__PURE__ */ _(Hi, [["render", Vi]]), Di = {
|
|
|
3439
3427
|
rule: Boolean
|
|
3440
3428
|
}
|
|
3441
3429
|
};
|
|
3442
|
-
function
|
|
3430
|
+
function Wi(e, s, t, n, i, o) {
|
|
3443
3431
|
const r = S("UluMenu");
|
|
3444
3432
|
return l(), d("nav", {
|
|
3445
3433
|
class: h(["nav-strip", {
|
|
@@ -3459,14 +3447,14 @@ function Ni(e, s, t, n, i, o) {
|
|
|
3459
3447
|
}, null, 8, ["items"])
|
|
3460
3448
|
], 2);
|
|
3461
3449
|
}
|
|
3462
|
-
const If = /* @__PURE__ */ _(Di, [["render",
|
|
3450
|
+
const If = /* @__PURE__ */ _(Di, [["render", Wi]]), Ni = {}, Xi = {
|
|
3463
3451
|
class: "site-skip-link hidden-visually-focusable",
|
|
3464
3452
|
href: "#main-content"
|
|
3465
3453
|
};
|
|
3466
3454
|
function Yi(e, s) {
|
|
3467
3455
|
return l(), d("a", Xi, " Skip to main content ");
|
|
3468
3456
|
}
|
|
3469
|
-
const zf = /* @__PURE__ */ _(
|
|
3457
|
+
const zf = /* @__PURE__ */ _(Ni, [["render", Yi]]), Ki = {
|
|
3470
3458
|
name: "UluCondText",
|
|
3471
3459
|
props: {
|
|
3472
3460
|
/**
|
|
@@ -3483,8 +3471,8 @@ const zf = /* @__PURE__ */ _(Wi, [["render", Yi]]), Ki = {
|
|
|
3483
3471
|
}
|
|
3484
3472
|
};
|
|
3485
3473
|
function Gi(e, s, t, n, i, o) {
|
|
3486
|
-
return t.text != null ? (l(),
|
|
3487
|
-
default:
|
|
3474
|
+
return t.text != null ? (l(), b(I(t.element), { key: 0 }, {
|
|
3475
|
+
default: v(() => [
|
|
3488
3476
|
w(p(t.text), 1)
|
|
3489
3477
|
]),
|
|
3490
3478
|
_: 1
|
|
@@ -3497,7 +3485,7 @@ function Ji(e, s) {
|
|
|
3497
3485
|
const jf = /* @__PURE__ */ _(qi, [["render", Ji]]), Qi = {};
|
|
3498
3486
|
function er(e, s) {
|
|
3499
3487
|
const t = S("router-view");
|
|
3500
|
-
return l(),
|
|
3488
|
+
return l(), b(t);
|
|
3501
3489
|
}
|
|
3502
3490
|
const Ff = /* @__PURE__ */ _(Qi, [["render", er]]);
|
|
3503
3491
|
function fe(e = 0, s = 100) {
|
|
@@ -3564,8 +3552,8 @@ const Pf = /* @__PURE__ */ _(tr, [["render", nr]]), or = {
|
|
|
3564
3552
|
}
|
|
3565
3553
|
};
|
|
3566
3554
|
function ir(e, s, t, n, i, o) {
|
|
3567
|
-
return l(!0), d(T, null, C(parseInt(t.amount), (r) => (l(),
|
|
3568
|
-
default:
|
|
3555
|
+
return l(!0), d(T, null, C(parseInt(t.amount), (r) => (l(), b(I(t.element), { key: r }, {
|
|
3556
|
+
default: v(() => s[0] || (s[0] = [
|
|
3569
3557
|
w(" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed semper erat tincidunt tellus vestibulum dictum. Fusce vel augue commodo, egestas diam sed, accumsan leo. Maecenas congue nec nisl et ullamcorper. Maecenas tincidunt, tortor et viverra eleifend, enim leo vestibulum ipsum, quis placerat mi nisi nec ex. Vivamus a justo volutpat, scelerisque elit eget, lacinia ex. Phasellus dapibus sollicitudin tortor, vitae suscipit nunc condimentum ut. Cras suscipit feugiat nibh nec consectetur. Phasellus vitae quam blandit, cursus metus ut, placerat mi. Sed tempor lacus non est interdum imperdiet nec quis metus. Praesent vel eleifend diam. Donec tincidunt eget purus sed posuere. ")
|
|
3570
3558
|
])),
|
|
3571
3559
|
_: 2,
|
|
@@ -3700,7 +3688,7 @@ const Lf = /* @__PURE__ */ _(ar, [["render", cr]]), ur = {
|
|
|
3700
3688
|
key: 0,
|
|
3701
3689
|
class: "progress-bar__value progress-bar__value--deficit color-status is-danger"
|
|
3702
3690
|
}, pr = { class: "progress-bar__value progress-bar__value--total" };
|
|
3703
|
-
function
|
|
3691
|
+
function br(e, s, t, n, i, o) {
|
|
3704
3692
|
const r = S("StatusIcon");
|
|
3705
3693
|
return l(), d("div", {
|
|
3706
3694
|
class: h(["progress-bar", {
|
|
@@ -3750,8 +3738,8 @@ function vr(e, s, t, n, i, o) {
|
|
|
3750
3738
|
])
|
|
3751
3739
|
], 2);
|
|
3752
3740
|
}
|
|
3753
|
-
const Hf = /* @__PURE__ */ _(ur, [["render",
|
|
3754
|
-
let
|
|
3741
|
+
const Hf = /* @__PURE__ */ _(ur, [["render", br]]);
|
|
3742
|
+
let vr = 0;
|
|
3755
3743
|
const wr = {
|
|
3756
3744
|
name: "ProgressDonut",
|
|
3757
3745
|
props: {
|
|
@@ -3773,7 +3761,7 @@ const wr = {
|
|
|
3773
3761
|
},
|
|
3774
3762
|
data() {
|
|
3775
3763
|
return {
|
|
3776
|
-
uid: `progress-donut-${++
|
|
3764
|
+
uid: `progress-donut-${++vr}`
|
|
3777
3765
|
};
|
|
3778
3766
|
},
|
|
3779
3767
|
watch: {
|
|
@@ -3863,7 +3851,7 @@ function Ir(e, s, t, n, i, o) {
|
|
|
3863
3851
|
class: h(["UluFacets__facet", t.classFacet]),
|
|
3864
3852
|
key: r.uid
|
|
3865
3853
|
}, [
|
|
3866
|
-
|
|
3854
|
+
W(f("input", {
|
|
3867
3855
|
class: "UluFacets__facet-checkbox",
|
|
3868
3856
|
id: o.facetCheckboxId(r),
|
|
3869
3857
|
type: "checkbox",
|
|
@@ -3918,7 +3906,7 @@ function Br(e, s, t, n, i, o) {
|
|
|
3918
3906
|
}, s[1] || (s[1] = [
|
|
3919
3907
|
f("strong", null, "Search", -1)
|
|
3920
3908
|
]), 10, Pr),
|
|
3921
|
-
|
|
3909
|
+
W(f("input", {
|
|
3922
3910
|
id: i.id,
|
|
3923
3911
|
class: h(t.classes.searchInput),
|
|
3924
3912
|
"onUpdate:modelValue": s[0] || (s[0] = (r) => o.localValue = r),
|
|
@@ -3940,7 +3928,7 @@ const ht = (e) => {
|
|
|
3940
3928
|
}, Vr = {
|
|
3941
3929
|
name: "UluFacets",
|
|
3942
3930
|
components: {
|
|
3943
|
-
UluCollapsibleRegion:
|
|
3931
|
+
UluCollapsibleRegion: Nn,
|
|
3944
3932
|
UluFacetsList: zr,
|
|
3945
3933
|
UluFacetsSearch: Lr
|
|
3946
3934
|
},
|
|
@@ -4112,7 +4100,7 @@ const ht = (e) => {
|
|
|
4112
4100
|
this.filtersHidden = !this.filtersHidden;
|
|
4113
4101
|
}
|
|
4114
4102
|
}
|
|
4115
|
-
}, Dr = { class: "UluFacets" },
|
|
4103
|
+
}, Dr = { class: "UluFacets" }, Wr = ["aria-controls", "aria-expanded"], Nr = ["for"], Xr = ["id"], Yr = ["value"], Kr = { class: "UluFacets__body" }, Gr = ["id"], qr = {
|
|
4116
4104
|
key: 1,
|
|
4117
4105
|
class: "UluFacets__empty"
|
|
4118
4106
|
};
|
|
@@ -4138,7 +4126,7 @@ function Zr(e, s, t, n, i, o) {
|
|
|
4138
4126
|
m(e.$slots, "buttonFilterToggle", { hidden: i.filtersHidden }, () => [
|
|
4139
4127
|
w(p(i.filtersHidden ? "Show" : "Hide") + " Filters ", 1)
|
|
4140
4128
|
])
|
|
4141
|
-
], 10,
|
|
4129
|
+
], 10, Wr),
|
|
4142
4130
|
o.selectedFacets.length ? (l(), d("button", {
|
|
4143
4131
|
key: 0,
|
|
4144
4132
|
onClick: s[1] || (s[1] = (...u) => o.clearFilters && o.clearFilters(...u)),
|
|
@@ -4155,8 +4143,8 @@ function Zr(e, s, t, n, i, o) {
|
|
|
4155
4143
|
f("label", {
|
|
4156
4144
|
for: i.sortId,
|
|
4157
4145
|
class: h(t.classes.sortFormLabel)
|
|
4158
|
-
}, "Sort:", 10,
|
|
4159
|
-
|
|
4146
|
+
}, "Sort:", 10, Nr),
|
|
4147
|
+
W(f("select", {
|
|
4160
4148
|
"onUpdate:modelValue": s[2] || (s[2] = (u) => i.selectedSort = u),
|
|
4161
4149
|
id: i.sortId,
|
|
4162
4150
|
class: h(t.classes.sortFormSelect)
|
|
@@ -4176,8 +4164,8 @@ function Zr(e, s, t, n, i, o) {
|
|
|
4176
4164
|
name: "UluFacetsFade",
|
|
4177
4165
|
mode: "out-in"
|
|
4178
4166
|
}, {
|
|
4179
|
-
default:
|
|
4180
|
-
|
|
4167
|
+
default: v(() => [
|
|
4168
|
+
W(f("div", {
|
|
4181
4169
|
class: h(["UluFacets__filters", { "UluFacets__filters--hidden": i.filtersHidden }]),
|
|
4182
4170
|
id: i.filterId
|
|
4183
4171
|
}, [
|
|
@@ -4188,7 +4176,7 @@ function Zr(e, s, t, n, i, o) {
|
|
|
4188
4176
|
modelValue: i.searchValue,
|
|
4189
4177
|
"onUpdate:modelValue": s[3] || (s[3] = (u) => i.searchValue = u)
|
|
4190
4178
|
}, null, 8, ["classes", "initialValue", "placeholder", "modelValue"]),
|
|
4191
|
-
(l(!0), d(T, null, C(i.facets, (u) => (l(),
|
|
4179
|
+
(l(!0), d(T, null, C(i.facets, (u) => (l(), b(c, {
|
|
4192
4180
|
class: h(["UluFacets__group", t.classes.group]),
|
|
4193
4181
|
classToggle: ["UluFacets__group-toggle", t.classes.groupToggle],
|
|
4194
4182
|
classContent: ["UluFacets__group-content", t.classes.groupContent],
|
|
@@ -4199,7 +4187,7 @@ function Zr(e, s, t, n, i, o) {
|
|
|
4199
4187
|
closeOnEscape: !1,
|
|
4200
4188
|
transitionHeight: !0
|
|
4201
4189
|
}, {
|
|
4202
|
-
toggle:
|
|
4190
|
+
toggle: v(({ isOpen: g }) => [
|
|
4203
4191
|
m(e.$slots, "groupToggle", {
|
|
4204
4192
|
group: u,
|
|
4205
4193
|
isOpen: g
|
|
@@ -4207,23 +4195,23 @@ function Zr(e, s, t, n, i, o) {
|
|
|
4207
4195
|
w(p(u.name), 1)
|
|
4208
4196
|
])
|
|
4209
4197
|
]),
|
|
4210
|
-
default:
|
|
4198
|
+
default: v(() => [
|
|
4211
4199
|
k(a, {
|
|
4212
4200
|
children: u.children.slice(0, t.maxVisible),
|
|
4213
4201
|
groupUid: u.uid,
|
|
4214
4202
|
classFacet: t.classes.facet
|
|
4215
4203
|
}, null, 8, ["children", "groupUid", "classFacet"]),
|
|
4216
|
-
u.children.length > t.maxVisible ? (l(),
|
|
4204
|
+
u.children.length > t.maxVisible ? (l(), b(c, {
|
|
4217
4205
|
key: 0,
|
|
4218
4206
|
class: h(["UluFacets__more-facets", t.classes.moreFacets]),
|
|
4219
4207
|
clickOutsideCloses: !1,
|
|
4220
4208
|
closeOnEscape: !1,
|
|
4221
4209
|
transitionHeight: !0
|
|
4222
4210
|
}, {
|
|
4223
|
-
toggle:
|
|
4211
|
+
toggle: v(({ isOpen: g }) => [
|
|
4224
4212
|
w(p(g ? "- Less" : "+ More"), 1)
|
|
4225
4213
|
]),
|
|
4226
|
-
default:
|
|
4214
|
+
default: v(() => [
|
|
4227
4215
|
k(a, {
|
|
4228
4216
|
children: u.children.slice(t.maxVisible),
|
|
4229
4217
|
groupUid: u.uid,
|
|
@@ -4236,7 +4224,7 @@ function Zr(e, s, t, n, i, o) {
|
|
|
4236
4224
|
_: 2
|
|
4237
4225
|
}, 1032, ["class", "classToggle", "classContent", "group", "startOpen"]))), 128))
|
|
4238
4226
|
], 10, Gr), [
|
|
4239
|
-
[
|
|
4227
|
+
[We, !i.filtersHidden]
|
|
4240
4228
|
])
|
|
4241
4229
|
]),
|
|
4242
4230
|
_: 3
|
|
@@ -4245,7 +4233,7 @@ function Zr(e, s, t, n, i, o) {
|
|
|
4245
4233
|
name: "UluFacetsFade",
|
|
4246
4234
|
mode: "out-in"
|
|
4247
4235
|
}, {
|
|
4248
|
-
default:
|
|
4236
|
+
default: v(() => [
|
|
4249
4237
|
i.resultsVisible && o.filteredItems.length ? (l(), d("ul", {
|
|
4250
4238
|
class: h(["UluFacets__results", t.classes.results]),
|
|
4251
4239
|
key: i.filterIteration
|
|
@@ -4334,9 +4322,9 @@ const Df = /* @__PURE__ */ _(Vr, [["render", Zr]]), Jt = Symbol(), Qt = Symbol()
|
|
|
4334
4322
|
let i = 0;
|
|
4335
4323
|
const o = (r) => {
|
|
4336
4324
|
r.forEach(({ target: a, isIntersecting: c }) => {
|
|
4337
|
-
const u = this.getSectionIndex(a), g = a.offsetTop, A = s[u], z = u === 0 && i > g,
|
|
4325
|
+
const u = this.getSectionIndex(a), g = a.offsetTop, A = s[u], z = u === 0 && i > g, F = u === s.length - 1 && i < g;
|
|
4338
4326
|
A && this.$nextTick(() => {
|
|
4339
|
-
c ? (t(A), A.active = !0) : (z && !n ||
|
|
4327
|
+
c ? (t(A), A.active = !0) : (z && !n || F && A.active) && t(), this.$emit("sectionChange", {
|
|
4340
4328
|
section: A,
|
|
4341
4329
|
sections: s,
|
|
4342
4330
|
active: c
|
|
@@ -4380,7 +4368,7 @@ function el(e, s, t, n, i, o) {
|
|
|
4380
4368
|
m(e.$slots, "default")
|
|
4381
4369
|
]);
|
|
4382
4370
|
}
|
|
4383
|
-
const
|
|
4371
|
+
const Wf = /* @__PURE__ */ _(Jr, [["render", el]]), tl = {
|
|
4384
4372
|
name: "ScrollAnchorsNav",
|
|
4385
4373
|
inject: {
|
|
4386
4374
|
sections: { from: Ae }
|
|
@@ -4393,11 +4381,11 @@ const Nf = /* @__PURE__ */ _(Jr, [["render", el]]), tl = {
|
|
|
4393
4381
|
}
|
|
4394
4382
|
}, sl = ["href"];
|
|
4395
4383
|
function nl(e, s, t, n, i, o) {
|
|
4396
|
-
return o.sections.length ? (l(),
|
|
4384
|
+
return o.sections.length ? (l(), b(I(t.element), {
|
|
4397
4385
|
key: 0,
|
|
4398
4386
|
class: "scroll-anchors__nav"
|
|
4399
4387
|
}, {
|
|
4400
|
-
default:
|
|
4388
|
+
default: v(() => [
|
|
4401
4389
|
f("ul", null, [
|
|
4402
4390
|
(l(!0), d(T, null, C(o.sections, (r, a) => (l(), d("li", {
|
|
4403
4391
|
key: a,
|
|
@@ -4413,7 +4401,7 @@ function nl(e, s, t, n, i, o) {
|
|
|
4413
4401
|
_: 1
|
|
4414
4402
|
})) : y("", !0);
|
|
4415
4403
|
}
|
|
4416
|
-
const
|
|
4404
|
+
const Nf = /* @__PURE__ */ _(tl, [["render", nl]]);
|
|
4417
4405
|
function es(e) {
|
|
4418
4406
|
requestAnimationFrame(() => {
|
|
4419
4407
|
const s = new MessageChannel();
|
|
@@ -4470,11 +4458,11 @@ const ol = {
|
|
|
4470
4458
|
}
|
|
4471
4459
|
}, il = { class: "scroll-anchors__rail" }, rl = ["href"];
|
|
4472
4460
|
function ll(e, s, t, n, i, o) {
|
|
4473
|
-
return o.sections.length ? (l(),
|
|
4461
|
+
return o.sections.length ? (l(), b(I(t.element), {
|
|
4474
4462
|
key: 0,
|
|
4475
4463
|
class: "scroll-anchors__nav scroll-anchors__nav--animated"
|
|
4476
4464
|
}, {
|
|
4477
|
-
default:
|
|
4465
|
+
default: v(() => [
|
|
4478
4466
|
f("ul", il, [
|
|
4479
4467
|
(l(!0), d(T, null, C(o.sections, (r, a) => (l(), d("li", {
|
|
4480
4468
|
key: a,
|
|
@@ -4553,11 +4541,11 @@ function cl(e, s, t, n, i, o) {
|
|
|
4553
4541
|
class: h([t.wrapperClass, { [t.activeClass]: t.activeClass && o.section?.active }]),
|
|
4554
4542
|
ref: "element"
|
|
4555
4543
|
}, [
|
|
4556
|
-
(l(),
|
|
4544
|
+
(l(), b(I(t.titleElement), {
|
|
4557
4545
|
class: h(t.titleClass),
|
|
4558
4546
|
id: i.titleId
|
|
4559
4547
|
}, {
|
|
4560
|
-
default:
|
|
4548
|
+
default: v(() => [
|
|
4561
4549
|
w(p(t.title), 1)
|
|
4562
4550
|
]),
|
|
4563
4551
|
_: 1
|
|
@@ -4573,7 +4561,7 @@ const Yf = /* @__PURE__ */ _(al, [["render", cl]]), ul = {
|
|
|
4573
4561
|
};
|
|
4574
4562
|
function dl(e, s, t, n, i, o) {
|
|
4575
4563
|
const r = S("SkeletonTextInline");
|
|
4576
|
-
return t.when ? (l(),
|
|
4564
|
+
return t.when ? (l(), b(r, {
|
|
4577
4565
|
key: 1,
|
|
4578
4566
|
class: "skeleton"
|
|
4579
4567
|
})) : m(e.$slots, "default", { key: 0 });
|
|
@@ -4643,13 +4631,13 @@ function pl(e, s, t, n, i, o) {
|
|
|
4643
4631
|
})
|
|
4644
4632
|
]);
|
|
4645
4633
|
}
|
|
4646
|
-
const Zf = /* @__PURE__ */ _(_l, [["render", pl]]),
|
|
4634
|
+
const Zf = /* @__PURE__ */ _(_l, [["render", pl]]), bl = {
|
|
4647
4635
|
name: "SkeletonTextInline"
|
|
4648
|
-
},
|
|
4636
|
+
}, vl = { class: "skeleton__text skeleton__text--inline" };
|
|
4649
4637
|
function wl(e, s, t, n, i, o) {
|
|
4650
|
-
return l(), d("span",
|
|
4638
|
+
return l(), d("span", vl);
|
|
4651
4639
|
}
|
|
4652
|
-
const Jf = /* @__PURE__ */ _(
|
|
4640
|
+
const Jf = /* @__PURE__ */ _(bl, [["render", wl]]), Sl = {
|
|
4653
4641
|
name: "SlideShow",
|
|
4654
4642
|
props: {
|
|
4655
4643
|
/**
|
|
@@ -4962,25 +4950,25 @@ const Pl = /* @__PURE__ */ _(Sl, [["render", Fl]]), Ml = {
|
|
|
4962
4950
|
}, Bl = ["src", "alt"], Ll = { class: "slideshow__image-actions" }, Hl = ["src", "alt"];
|
|
4963
4951
|
function Vl(e, s, t, n, i, o) {
|
|
4964
4952
|
const r = S("AppButton"), a = S("UluSlideShow");
|
|
4965
|
-
return l(),
|
|
4953
|
+
return l(), b(a, {
|
|
4966
4954
|
class: "slideshow--images",
|
|
4967
4955
|
items: t.images,
|
|
4968
4956
|
onSlideChange: o.slideChange
|
|
4969
4957
|
}, {
|
|
4970
|
-
slide:
|
|
4958
|
+
slide: v(({ item: c }) => [
|
|
4971
4959
|
f("img", {
|
|
4972
4960
|
src: c.src,
|
|
4973
4961
|
alt: c.alt
|
|
4974
4962
|
}, null, 8, Bl),
|
|
4975
4963
|
f("div", Ll, [
|
|
4976
|
-
t.selectButton ? (l(),
|
|
4964
|
+
t.selectButton ? (l(), b(r, {
|
|
4977
4965
|
key: 0,
|
|
4978
4966
|
class: "type-small",
|
|
4979
4967
|
icon: "plus",
|
|
4980
4968
|
small: "",
|
|
4981
4969
|
iconBefore: ""
|
|
4982
4970
|
}, {
|
|
4983
|
-
default:
|
|
4971
|
+
default: v(() => s[0] || (s[0] = [
|
|
4984
4972
|
w(" Select ")
|
|
4985
4973
|
])),
|
|
4986
4974
|
_: 1,
|
|
@@ -4988,7 +4976,7 @@ function Vl(e, s, t, n, i, o) {
|
|
|
4988
4976
|
})) : y("", !0)
|
|
4989
4977
|
])
|
|
4990
4978
|
]),
|
|
4991
|
-
nav:
|
|
4979
|
+
nav: v(({ index: c }) => [
|
|
4992
4980
|
f("img", {
|
|
4993
4981
|
src: t.images[c].src,
|
|
4994
4982
|
alt: `View image ${c}`
|
|
@@ -5010,14 +4998,14 @@ const Qf = /* @__PURE__ */ _(Ml, [["render", Vl]]), Dl = {
|
|
|
5010
4998
|
console.log("slide mounted");
|
|
5011
4999
|
}
|
|
5012
5000
|
};
|
|
5013
|
-
function
|
|
5001
|
+
function Wl(e, s, t, n, i, o) {
|
|
5014
5002
|
return l(), d("li", {
|
|
5015
5003
|
class: h(["slideshow__slide", { "is-active": t.active }])
|
|
5016
5004
|
}, [
|
|
5017
5005
|
m(e.$slots, "default")
|
|
5018
5006
|
], 2);
|
|
5019
5007
|
}
|
|
5020
|
-
const eh = /* @__PURE__ */ _(Dl, [["render",
|
|
5008
|
+
const eh = /* @__PURE__ */ _(Dl, [["render", Wl]]), Nl = {
|
|
5021
5009
|
name: "UluTableStickyRows",
|
|
5022
5010
|
props: {
|
|
5023
5011
|
rows: Array,
|
|
@@ -5044,7 +5032,7 @@ function Kl(e, s, t, n, i, o) {
|
|
|
5044
5032
|
height: r.height
|
|
5045
5033
|
})
|
|
5046
5034
|
}, [
|
|
5047
|
-
(l(!0), d(T, null, C(t.rowColumns, (c, u) => (l(),
|
|
5035
|
+
(l(!0), d(T, null, C(t.rowColumns, (c, u) => (l(), b(I(c.rowHeader ? "th" : "td"), {
|
|
5048
5036
|
id: t.optionalAttr(t.isActual && c.rowHeader && c.getRowHeaderId(a)),
|
|
5049
5037
|
scope: t.optionalAttr(t.isActual && c.rowHeader && "row"),
|
|
5050
5038
|
key: `bc-${u}`,
|
|
@@ -5054,7 +5042,7 @@ function Kl(e, s, t, n, i, o) {
|
|
|
5054
5042
|
width: t.columnWidth
|
|
5055
5043
|
})
|
|
5056
5044
|
}, {
|
|
5057
|
-
default:
|
|
5045
|
+
default: v(() => [
|
|
5058
5046
|
e.$slots[c.slot] ? m(e.$slots, c.slot, {
|
|
5059
5047
|
key: 0,
|
|
5060
5048
|
row: r.data,
|
|
@@ -5074,7 +5062,7 @@ function Kl(e, s, t, n, i, o) {
|
|
|
5074
5062
|
}, 1032, ["id", "scope", "headers", "class", "style"]))), 128))
|
|
5075
5063
|
], 14, Xl))), 128);
|
|
5076
5064
|
}
|
|
5077
|
-
const Gl = /* @__PURE__ */ _(
|
|
5065
|
+
const Gl = /* @__PURE__ */ _(Nl, [["render", Kl]]), ql = {
|
|
5078
5066
|
name: "UluTableStickyTable",
|
|
5079
5067
|
components: {
|
|
5080
5068
|
UluTableStickyRows: Gl
|
|
@@ -5203,7 +5191,7 @@ function la(e, s, t, n, i, o) {
|
|
|
5203
5191
|
ref_for: !0,
|
|
5204
5192
|
ref: (A) => o.addHeaderRef(u, A)
|
|
5205
5193
|
}, [
|
|
5206
|
-
u.sortable ? (l(),
|
|
5194
|
+
u.sortable ? (l(), b(I(t.isActual ? "button" : "div"), {
|
|
5207
5195
|
key: 0,
|
|
5208
5196
|
class: h(["table-sticky__sort-button", {
|
|
5209
5197
|
"table-sticky__sort-button--focused": u.sortFocused
|
|
@@ -5213,7 +5201,7 @@ function la(e, s, t, n, i, o) {
|
|
|
5213
5201
|
onBlur: (A) => o.handleSortFocus(u, !1),
|
|
5214
5202
|
"aria-pressed": u.sortApplied ? "true" : "false"
|
|
5215
5203
|
}, {
|
|
5216
|
-
default:
|
|
5204
|
+
default: v(() => [
|
|
5217
5205
|
e.$slots[u.slotHeader] ? m(e.$slots, u.slotHeader, {
|
|
5218
5206
|
key: 0,
|
|
5219
5207
|
isActual: t.isActual,
|
|
@@ -5264,8 +5252,8 @@ function la(e, s, t, n, i, o) {
|
|
|
5264
5252
|
}, se({ _: 2 }, [
|
|
5265
5253
|
C(e.$slots, (a, c) => ({
|
|
5266
5254
|
name: c,
|
|
5267
|
-
fn:
|
|
5268
|
-
m(e.$slots, c, M(
|
|
5255
|
+
fn: v((u) => [
|
|
5256
|
+
m(e.$slots, c, M(H(u)))
|
|
5269
5257
|
])
|
|
5270
5258
|
}))
|
|
5271
5259
|
]), 1032, ["rows", "rowColumns", "optionalAttr", "resolveClasses", "getCellHeaders", "isActual", "columnWidth", "classes", "value"])
|
|
@@ -5285,8 +5273,8 @@ function la(e, s, t, n, i, o) {
|
|
|
5285
5273
|
}, se({ _: 2 }, [
|
|
5286
5274
|
C(e.$slots, (a, c) => ({
|
|
5287
5275
|
name: c,
|
|
5288
|
-
fn:
|
|
5289
|
-
m(e.$slots, c, M(
|
|
5276
|
+
fn: v((u) => [
|
|
5277
|
+
m(e.$slots, c, M(H(u)))
|
|
5290
5278
|
])
|
|
5291
5279
|
}))
|
|
5292
5280
|
]), 1032, ["rows", "rowColumns", "optionalAttr", "resolveClasses", "getCellHeaders", "isActual", "columnWidth", "classes", "value"])
|
|
@@ -5347,10 +5335,10 @@ function ya(e) {
|
|
|
5347
5335
|
function pa(e) {
|
|
5348
5336
|
return this.__data__.get(e);
|
|
5349
5337
|
}
|
|
5350
|
-
function
|
|
5338
|
+
function ba(e) {
|
|
5351
5339
|
return this.__data__.has(e);
|
|
5352
5340
|
}
|
|
5353
|
-
var ss = typeof global == "object" && global && global.Object === Object && global,
|
|
5341
|
+
var ss = typeof global == "object" && global && global.Object === Object && global, va = typeof self == "object" && self && self.Object === Object && self, V = ss || va || Function("return this")(), oe = V.Symbol, ns = Object.prototype, wa = ns.hasOwnProperty, Sa = ns.toString, ae = oe ? oe.toStringTag : void 0;
|
|
5354
5342
|
function ka(e) {
|
|
5355
5343
|
var s = wa.call(e, ae), t = e[ae];
|
|
5356
5344
|
try {
|
|
@@ -5380,7 +5368,7 @@ function os(e) {
|
|
|
5380
5368
|
var s = _e(e);
|
|
5381
5369
|
return s == Ra || s == Ua || s == xa || s == Ia;
|
|
5382
5370
|
}
|
|
5383
|
-
var ze =
|
|
5371
|
+
var ze = V["__core-js_shared__"], gt = function() {
|
|
5384
5372
|
var e = /[^.]+$/.exec(ze && ze.keys && ze.keys.IE_PROTO || "");
|
|
5385
5373
|
return e ? "Symbol(src)_1." + e : "";
|
|
5386
5374
|
}();
|
|
@@ -5388,7 +5376,7 @@ function za(e) {
|
|
|
5388
5376
|
return !!gt && gt in e;
|
|
5389
5377
|
}
|
|
5390
5378
|
var Ea = Function.prototype, ja = Ea.toString;
|
|
5391
|
-
function
|
|
5379
|
+
function Z(e) {
|
|
5392
5380
|
if (e != null) {
|
|
5393
5381
|
try {
|
|
5394
5382
|
return ja.call(e);
|
|
@@ -5408,17 +5396,17 @@ function Da(e) {
|
|
|
5408
5396
|
if (!Oe(e) || za(e))
|
|
5409
5397
|
return !1;
|
|
5410
5398
|
var s = os(e) ? Va : Pa;
|
|
5411
|
-
return s.test(
|
|
5399
|
+
return s.test(Z(e));
|
|
5412
5400
|
}
|
|
5413
|
-
function
|
|
5401
|
+
function Wa(e, s) {
|
|
5414
5402
|
return e?.[s];
|
|
5415
5403
|
}
|
|
5416
|
-
function
|
|
5417
|
-
var t =
|
|
5404
|
+
function J(e, s) {
|
|
5405
|
+
var t = Wa(e, s);
|
|
5418
5406
|
return Da(t) ? t : void 0;
|
|
5419
5407
|
}
|
|
5420
|
-
var me =
|
|
5421
|
-
function
|
|
5408
|
+
var me = J(V, "Map"), ge = J(Object, "create");
|
|
5409
|
+
function Na() {
|
|
5422
5410
|
this.__data__ = ge ? ge(null) : {}, this.size = 0;
|
|
5423
5411
|
}
|
|
5424
5412
|
function Xa(e) {
|
|
@@ -5444,23 +5432,23 @@ function tc(e, s) {
|
|
|
5444
5432
|
var t = this.__data__;
|
|
5445
5433
|
return this.size += this.has(e) ? 0 : 1, t[e] = ge && s === void 0 ? ec : s, this;
|
|
5446
5434
|
}
|
|
5447
|
-
function
|
|
5435
|
+
function G(e) {
|
|
5448
5436
|
var s = -1, t = e == null ? 0 : e.length;
|
|
5449
5437
|
for (this.clear(); ++s < t; ) {
|
|
5450
5438
|
var n = e[s];
|
|
5451
5439
|
this.set(n[0], n[1]);
|
|
5452
5440
|
}
|
|
5453
5441
|
}
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
5458
|
-
|
|
5442
|
+
G.prototype.clear = Na;
|
|
5443
|
+
G.prototype.delete = Xa;
|
|
5444
|
+
G.prototype.get = qa;
|
|
5445
|
+
G.prototype.has = Qa;
|
|
5446
|
+
G.prototype.set = tc;
|
|
5459
5447
|
function sc() {
|
|
5460
5448
|
this.size = 0, this.__data__ = {
|
|
5461
|
-
hash: new
|
|
5449
|
+
hash: new G(),
|
|
5462
5450
|
map: new (me || N)(),
|
|
5463
|
-
string: new
|
|
5451
|
+
string: new G()
|
|
5464
5452
|
};
|
|
5465
5453
|
}
|
|
5466
5454
|
function nc(e) {
|
|
@@ -5515,7 +5503,7 @@ function le(e) {
|
|
|
5515
5503
|
le.prototype.clear = _a;
|
|
5516
5504
|
le.prototype.delete = ya;
|
|
5517
5505
|
le.prototype.get = pa;
|
|
5518
|
-
le.prototype.has =
|
|
5506
|
+
le.prototype.has = ba;
|
|
5519
5507
|
le.prototype.set = cc;
|
|
5520
5508
|
function uc(e, s) {
|
|
5521
5509
|
for (var t = -1, n = e == null ? 0 : e.length; ++t < n && s(e[t], t, e) !== !1; )
|
|
@@ -5524,7 +5512,7 @@ function uc(e, s) {
|
|
|
5524
5512
|
}
|
|
5525
5513
|
var _t = function() {
|
|
5526
5514
|
try {
|
|
5527
|
-
var e =
|
|
5515
|
+
var e = J(Object, "defineProperty");
|
|
5528
5516
|
return e({}, "", {}), e;
|
|
5529
5517
|
} catch {
|
|
5530
5518
|
}
|
|
@@ -5554,15 +5542,15 @@ var _c = "[object Arguments]";
|
|
|
5554
5542
|
function yt(e) {
|
|
5555
5543
|
return ye(e) && _e(e) == _c;
|
|
5556
5544
|
}
|
|
5557
|
-
var is = Object.prototype, yc = is.hasOwnProperty, pc = is.propertyIsEnumerable,
|
|
5545
|
+
var is = Object.prototype, yc = is.hasOwnProperty, pc = is.propertyIsEnumerable, bc = yt(/* @__PURE__ */ function() {
|
|
5558
5546
|
return arguments;
|
|
5559
5547
|
}()) ? yt : function(e) {
|
|
5560
5548
|
return ye(e) && yc.call(e, "callee") && !pc.call(e, "callee");
|
|
5561
5549
|
}, Je = Array.isArray;
|
|
5562
|
-
function
|
|
5550
|
+
function vc() {
|
|
5563
5551
|
return !1;
|
|
5564
5552
|
}
|
|
5565
|
-
var rs = typeof exports == "object" && exports && !exports.nodeType && exports, pt = rs && typeof module == "object" && module && !module.nodeType && module, wc = pt && pt.exports === rs,
|
|
5553
|
+
var rs = typeof exports == "object" && exports && !exports.nodeType && exports, pt = rs && typeof module == "object" && module && !module.nodeType && module, wc = pt && pt.exports === rs, bt = wc ? V.Buffer : void 0, Sc = bt ? bt.isBuffer : void 0, ls = Sc || vc, kc = 9007199254740991, Cc = /^(?:0|[1-9]\d*)$/;
|
|
5566
5554
|
function Tc(e, s) {
|
|
5567
5555
|
var t = typeof e;
|
|
5568
5556
|
return s = s ?? kc, !!s && (t == "number" || t != "symbol" && Cc.test(e)) && e > -1 && e % 1 == 0 && e < s;
|
|
@@ -5571,8 +5559,8 @@ var Ac = 9007199254740991;
|
|
|
5571
5559
|
function as(e) {
|
|
5572
5560
|
return typeof e == "number" && e > -1 && e % 1 == 0 && e <= Ac;
|
|
5573
5561
|
}
|
|
5574
|
-
var $c = "[object Arguments]", Oc = "[object Array]", xc = "[object Boolean]", Rc = "[object Date]", Uc = "[object Error]", Ic = "[object Function]", zc = "[object Map]", Ec = "[object Number]", jc = "[object Object]", Fc = "[object RegExp]", Pc = "[object Set]", Mc = "[object String]", Bc = "[object WeakMap]", Lc = "[object ArrayBuffer]", Hc = "[object DataView]", Vc = "[object Float32Array]", Dc = "[object Float64Array]",
|
|
5575
|
-
O[Vc] = O[Dc] = O[
|
|
5562
|
+
var $c = "[object Arguments]", Oc = "[object Array]", xc = "[object Boolean]", Rc = "[object Date]", Uc = "[object Error]", Ic = "[object Function]", zc = "[object Map]", Ec = "[object Number]", jc = "[object Object]", Fc = "[object RegExp]", Pc = "[object Set]", Mc = "[object String]", Bc = "[object WeakMap]", Lc = "[object ArrayBuffer]", Hc = "[object DataView]", Vc = "[object Float32Array]", Dc = "[object Float64Array]", Wc = "[object Int8Array]", Nc = "[object Int16Array]", Xc = "[object Int32Array]", Yc = "[object Uint8Array]", Kc = "[object Uint8ClampedArray]", Gc = "[object Uint16Array]", qc = "[object Uint32Array]", O = {};
|
|
5563
|
+
O[Vc] = O[Dc] = O[Wc] = O[Nc] = O[Xc] = O[Yc] = O[Kc] = O[Gc] = O[qc] = !0;
|
|
5576
5564
|
O[$c] = O[Oc] = O[Lc] = O[xc] = O[Hc] = O[Rc] = O[Uc] = O[Ic] = O[zc] = O[Ec] = O[jc] = O[Fc] = O[Pc] = O[Mc] = O[Bc] = !1;
|
|
5577
5565
|
function Zc(e) {
|
|
5578
5566
|
return ye(e) && as(e.length) && !!O[_e(e)];
|
|
@@ -5588,9 +5576,9 @@ var cs = typeof exports == "object" && exports && !exports.nodeType && exports,
|
|
|
5588
5576
|
return e || Ee && Ee.binding && Ee.binding("util");
|
|
5589
5577
|
} catch {
|
|
5590
5578
|
}
|
|
5591
|
-
}(),
|
|
5579
|
+
}(), vt = ie && ie.isTypedArray, Qc = vt ? Qe(vt) : Zc, eu = Object.prototype, tu = eu.hasOwnProperty;
|
|
5592
5580
|
function su(e, s) {
|
|
5593
|
-
var t = Je(e), n = !t &&
|
|
5581
|
+
var t = Je(e), n = !t && bc(e), i = !t && !n && ls(e), o = !t && !n && !i && Qc(e), r = t || n || i || o, a = r ? gc(e.length, String) : [], c = a.length;
|
|
5594
5582
|
for (var u in e)
|
|
5595
5583
|
tu.call(e, u) && !(r && // Safari 9 has enumerable `arguments.length` in strict mode.
|
|
5596
5584
|
(u == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
|
|
@@ -5624,7 +5612,7 @@ function au(e) {
|
|
|
5624
5612
|
function cu(e) {
|
|
5625
5613
|
return au(e) ? su(e) : lu(e);
|
|
5626
5614
|
}
|
|
5627
|
-
var fs = typeof exports == "object" && exports && !exports.nodeType && exports, wt = fs && typeof module == "object" && module && !module.nodeType && module, uu = wt && wt.exports === fs, St = uu ?
|
|
5615
|
+
var fs = typeof exports == "object" && exports && !exports.nodeType && exports, wt = fs && typeof module == "object" && module && !module.nodeType && module, uu = wt && wt.exports === fs, St = uu ? V.Buffer : void 0;
|
|
5628
5616
|
St && St.allocUnsafe;
|
|
5629
5617
|
function du(e, s) {
|
|
5630
5618
|
return e.slice();
|
|
@@ -5650,16 +5638,16 @@ function yu(e, s) {
|
|
|
5650
5638
|
return e;
|
|
5651
5639
|
}
|
|
5652
5640
|
var pu = ds(Object.getPrototypeOf, Object);
|
|
5653
|
-
function
|
|
5641
|
+
function bu(e, s, t) {
|
|
5654
5642
|
var n = s(e);
|
|
5655
5643
|
return Je(e) ? n : yu(n, t(e));
|
|
5656
5644
|
}
|
|
5657
|
-
function
|
|
5658
|
-
return
|
|
5645
|
+
function vu(e) {
|
|
5646
|
+
return bu(e, cu, _u);
|
|
5659
5647
|
}
|
|
5660
|
-
var Be =
|
|
5661
|
-
(Be &&
|
|
5662
|
-
var s = _e(e), t = s == wu ? e.constructor : void 0, n = t ?
|
|
5648
|
+
var Be = J(V, "DataView"), Le = J(V, "Promise"), He = J(V, "Set"), Ve = J(V, "WeakMap"), Ct = "[object Map]", wu = "[object Object]", Tt = "[object Promise]", At = "[object Set]", $t = "[object WeakMap]", Ot = "[object DataView]", Su = Z(Be), ku = Z(me), Cu = Z(Le), Tu = Z(He), Au = Z(Ve), D = _e;
|
|
5649
|
+
(Be && D(new Be(new ArrayBuffer(1))) != Ot || me && D(new me()) != Ct || Le && D(Le.resolve()) != Tt || He && D(new He()) != At || Ve && D(new Ve()) != $t) && (D = function(e) {
|
|
5650
|
+
var s = _e(e), t = s == wu ? e.constructor : void 0, n = t ? Z(t) : "";
|
|
5663
5651
|
if (n)
|
|
5664
5652
|
switch (n) {
|
|
5665
5653
|
case Su:
|
|
@@ -5680,7 +5668,7 @@ function xu(e) {
|
|
|
5680
5668
|
var s = e.length, t = new e.constructor(s);
|
|
5681
5669
|
return s && typeof e[0] == "string" && Ou.call(e, "index") && (t.index = e.index, t.input = e.input), t;
|
|
5682
5670
|
}
|
|
5683
|
-
var xt =
|
|
5671
|
+
var xt = V.Uint8Array;
|
|
5684
5672
|
function et(e) {
|
|
5685
5673
|
var s = new e.constructor(e.byteLength);
|
|
5686
5674
|
return new xt(s).set(new xt(e)), s;
|
|
@@ -5702,7 +5690,7 @@ function Eu(e, s) {
|
|
|
5702
5690
|
var t = et(e.buffer);
|
|
5703
5691
|
return new e.constructor(t, e.byteOffset, e.length);
|
|
5704
5692
|
}
|
|
5705
|
-
var ju = "[object Boolean]", Fu = "[object Date]", Pu = "[object Map]", Mu = "[object Number]", Bu = "[object RegExp]", Lu = "[object Set]", Hu = "[object String]", Vu = "[object Symbol]", Du = "[object ArrayBuffer]",
|
|
5693
|
+
var ju = "[object Boolean]", Fu = "[object Date]", Pu = "[object Map]", Mu = "[object Number]", Bu = "[object RegExp]", Lu = "[object Set]", Hu = "[object String]", Vu = "[object Symbol]", Du = "[object ArrayBuffer]", Wu = "[object DataView]", Nu = "[object Float32Array]", Xu = "[object Float64Array]", Yu = "[object Int8Array]", Ku = "[object Int16Array]", Gu = "[object Int32Array]", qu = "[object Uint8Array]", Zu = "[object Uint8ClampedArray]", Ju = "[object Uint16Array]", Qu = "[object Uint32Array]";
|
|
5706
5694
|
function ed(e, s, t) {
|
|
5707
5695
|
var n = e.constructor;
|
|
5708
5696
|
switch (s) {
|
|
@@ -5711,9 +5699,9 @@ function ed(e, s, t) {
|
|
|
5711
5699
|
case ju:
|
|
5712
5700
|
case Fu:
|
|
5713
5701
|
return new n(+e);
|
|
5714
|
-
case Nu:
|
|
5715
|
-
return Ru(e);
|
|
5716
5702
|
case Wu:
|
|
5703
|
+
return Ru(e);
|
|
5704
|
+
case Nu:
|
|
5717
5705
|
case Xu:
|
|
5718
5706
|
case Yu:
|
|
5719
5707
|
case Ku:
|
|
@@ -5754,15 +5742,15 @@ function sd(e) {
|
|
|
5754
5742
|
}
|
|
5755
5743
|
var nd = "[object Map]";
|
|
5756
5744
|
function od(e) {
|
|
5757
|
-
return ye(e) &&
|
|
5745
|
+
return ye(e) && D(e) == nd;
|
|
5758
5746
|
}
|
|
5759
5747
|
var zt = ie && ie.isMap, id = zt ? Qe(zt) : od, rd = "[object Set]";
|
|
5760
5748
|
function ld(e) {
|
|
5761
|
-
return ye(e) &&
|
|
5749
|
+
return ye(e) && D(e) == rd;
|
|
5762
5750
|
}
|
|
5763
|
-
var Et = ie && ie.isSet, ad = Et ? Qe(Et) : ld, hs = "[object Arguments]", cd = "[object Array]", ud = "[object Boolean]", dd = "[object Date]", fd = "[object Error]", ms = "[object Function]", hd = "[object GeneratorFunction]", md = "[object Map]", gd = "[object Number]", gs = "[object Object]", _d = "[object RegExp]", yd = "[object Set]", pd = "[object String]",
|
|
5764
|
-
$[hs] = $[cd] = $[wd] = $[Sd] = $[ud] = $[dd] = $[kd] = $[Cd] = $[Td] = $[Ad] = $[$d] = $[md] = $[gd] = $[gs] = $[_d] = $[yd] = $[pd] = $[
|
|
5765
|
-
$[fd] = $[ms] = $[
|
|
5751
|
+
var Et = ie && ie.isSet, ad = Et ? Qe(Et) : ld, hs = "[object Arguments]", cd = "[object Array]", ud = "[object Boolean]", dd = "[object Date]", fd = "[object Error]", ms = "[object Function]", hd = "[object GeneratorFunction]", md = "[object Map]", gd = "[object Number]", gs = "[object Object]", _d = "[object RegExp]", yd = "[object Set]", pd = "[object String]", bd = "[object Symbol]", vd = "[object WeakMap]", wd = "[object ArrayBuffer]", Sd = "[object DataView]", kd = "[object Float32Array]", Cd = "[object Float64Array]", Td = "[object Int8Array]", Ad = "[object Int16Array]", $d = "[object Int32Array]", Od = "[object Uint8Array]", xd = "[object Uint8ClampedArray]", Rd = "[object Uint16Array]", Ud = "[object Uint32Array]", $ = {};
|
|
5752
|
+
$[hs] = $[cd] = $[wd] = $[Sd] = $[ud] = $[dd] = $[kd] = $[Cd] = $[Td] = $[Ad] = $[$d] = $[md] = $[gd] = $[gs] = $[_d] = $[yd] = $[pd] = $[bd] = $[Od] = $[xd] = $[Rd] = $[Ud] = !0;
|
|
5753
|
+
$[fd] = $[ms] = $[vd] = !1;
|
|
5766
5754
|
function ke(e, s, t, n, i, o) {
|
|
5767
5755
|
var r;
|
|
5768
5756
|
if (r !== void 0)
|
|
@@ -5773,7 +5761,7 @@ function ke(e, s, t, n, i, o) {
|
|
|
5773
5761
|
if (a)
|
|
5774
5762
|
r = xu(e);
|
|
5775
5763
|
else {
|
|
5776
|
-
var c =
|
|
5764
|
+
var c = D(e), u = c == ms || c == hd;
|
|
5777
5765
|
if (ls(e))
|
|
5778
5766
|
return du(e);
|
|
5779
5767
|
if (c == gs || c == hs || u && !i)
|
|
@@ -5788,14 +5776,14 @@ function ke(e, s, t, n, i, o) {
|
|
|
5788
5776
|
var g = o.get(e);
|
|
5789
5777
|
if (g)
|
|
5790
5778
|
return g;
|
|
5791
|
-
o.set(e, r), ad(e) ? e.forEach(function(
|
|
5792
|
-
r.add(ke(
|
|
5793
|
-
}) : id(e) && e.forEach(function(
|
|
5794
|
-
r.set(
|
|
5779
|
+
o.set(e, r), ad(e) ? e.forEach(function(F) {
|
|
5780
|
+
r.add(ke(F, s, t, F, e, o));
|
|
5781
|
+
}) : id(e) && e.forEach(function(F, E) {
|
|
5782
|
+
r.set(E, ke(F, s, t, E, e, o));
|
|
5795
5783
|
});
|
|
5796
|
-
var A =
|
|
5797
|
-
return uc(z || e, function(
|
|
5798
|
-
z && (
|
|
5784
|
+
var A = vu, z = a ? void 0 : A(e);
|
|
5785
|
+
return uc(z || e, function(F, E) {
|
|
5786
|
+
z && (E = F, F = e[E]), mc(r, E, ke(F, s, t, E, e, o));
|
|
5799
5787
|
}), r;
|
|
5800
5788
|
}
|
|
5801
5789
|
var Id = 1, zd = 4;
|
|
@@ -6215,7 +6203,7 @@ const jd = {
|
|
|
6215
6203
|
ref: "display",
|
|
6216
6204
|
class: "table-sticky__display"
|
|
6217
6205
|
};
|
|
6218
|
-
function
|
|
6206
|
+
function Wd(e, s, t, n, i, o) {
|
|
6219
6207
|
const r = S("UluTableStickyTable");
|
|
6220
6208
|
return l(), d("div", {
|
|
6221
6209
|
class: h(["table-sticky", {
|
|
@@ -6244,15 +6232,15 @@ function Nd(e, s, t, n, i, o) {
|
|
|
6244
6232
|
}, se({ _: 2 }, [
|
|
6245
6233
|
C(e.$slots, (a, c) => ({
|
|
6246
6234
|
name: c,
|
|
6247
|
-
fn:
|
|
6248
|
-
m(e.$slots, c, M(
|
|
6235
|
+
fn: v((u) => [
|
|
6236
|
+
m(e.$slots, c, M(H(u)))
|
|
6249
6237
|
])
|
|
6250
6238
|
}))
|
|
6251
6239
|
]), 1032, ["classes", "caption", "resolveClasses", "getColumnTitle", "idPrefix", "headerRows", "style", "onColumnSorted"])
|
|
6252
6240
|
])
|
|
6253
6241
|
]),
|
|
6254
6242
|
f("div", Md, [
|
|
6255
|
-
t.firstColumnSticky ? (l(),
|
|
6243
|
+
t.firstColumnSticky ? (l(), b(r, {
|
|
6256
6244
|
key: 0,
|
|
6257
6245
|
ref: "firstColumnHeader",
|
|
6258
6246
|
class: "table-sticky__table table-sticky__table--first-column-header",
|
|
@@ -6270,14 +6258,14 @@ function Nd(e, s, t, n, i, o) {
|
|
|
6270
6258
|
}, se({ _: 2 }, [
|
|
6271
6259
|
C(e.$slots, (a, c) => ({
|
|
6272
6260
|
name: c,
|
|
6273
|
-
fn:
|
|
6274
|
-
m(e.$slots, c, M(
|
|
6261
|
+
fn: v((u) => [
|
|
6262
|
+
m(e.$slots, c, M(H(u)))
|
|
6275
6263
|
])
|
|
6276
6264
|
}))
|
|
6277
6265
|
]), 1032, ["classes", "caption", "resolveClasses", "getColumnTitle", "idPrefix", "headerRows", "style", "onColumnSorted"])) : y("", !0)
|
|
6278
6266
|
]),
|
|
6279
6267
|
f("div", Bd, [
|
|
6280
|
-
|
|
6268
|
+
W(f("div", {
|
|
6281
6269
|
class: h(["table-sticky__controls", o.resolveClasses(t.classes.controls)]),
|
|
6282
6270
|
ref: "controls"
|
|
6283
6271
|
}, [
|
|
@@ -6287,7 +6275,7 @@ function Nd(e, s, t, n, i, o) {
|
|
|
6287
6275
|
scrollRight: o.scrollRight,
|
|
6288
6276
|
canScrollLeft: i.canScrollLeft,
|
|
6289
6277
|
canScrollRight: i.canScrollRight
|
|
6290
|
-
}) : t.controlsComponent ? (l(),
|
|
6278
|
+
}) : t.controlsComponent ? (l(), b(I(t.controlsComponent), {
|
|
6291
6279
|
key: 1,
|
|
6292
6280
|
scrollLeft: o.scrollLeft,
|
|
6293
6281
|
scrollRight: o.scrollRight,
|
|
@@ -6316,7 +6304,7 @@ function Nd(e, s, t, n, i, o) {
|
|
|
6316
6304
|
], 10, Vd)
|
|
6317
6305
|
]))
|
|
6318
6306
|
], 2), [
|
|
6319
|
-
[
|
|
6307
|
+
[We, o.controlsShown]
|
|
6320
6308
|
])
|
|
6321
6309
|
]),
|
|
6322
6310
|
f("div", Dd, [
|
|
@@ -6341,13 +6329,13 @@ function Nd(e, s, t, n, i, o) {
|
|
|
6341
6329
|
}, se({ _: 2 }, [
|
|
6342
6330
|
C(e.$slots, (a, c) => ({
|
|
6343
6331
|
name: c,
|
|
6344
|
-
fn:
|
|
6345
|
-
m(e.$slots, c, M(
|
|
6332
|
+
fn: v((u) => [
|
|
6333
|
+
m(e.$slots, c, M(H(u)))
|
|
6346
6334
|
])
|
|
6347
6335
|
}))
|
|
6348
6336
|
]), 1032, ["classes", "resolveClasses", "headerRows", "rows", "footerRows", "rowColumns", "caption", "idPrefix", "getRowValue", "getColumnTitle", "onVnodeMounted", "onActualHeaderRemoved", "onActualHeaderAdded", "onColumnSorted"])
|
|
6349
6337
|
], 512),
|
|
6350
|
-
t.firstColumnSticky ? (l(),
|
|
6338
|
+
t.firstColumnSticky ? (l(), b(r, {
|
|
6351
6339
|
key: 0,
|
|
6352
6340
|
ref: "firstColumn",
|
|
6353
6341
|
class: "table-sticky__table table-sticky__table--first-column",
|
|
@@ -6370,19 +6358,19 @@ function Nd(e, s, t, n, i, o) {
|
|
|
6370
6358
|
}, se({ _: 2 }, [
|
|
6371
6359
|
C(e.$slots, (a, c) => ({
|
|
6372
6360
|
name: c,
|
|
6373
|
-
fn:
|
|
6374
|
-
m(e.$slots, c, M(
|
|
6361
|
+
fn: v((u) => [
|
|
6362
|
+
m(e.$slots, c, M(H(u)))
|
|
6375
6363
|
])
|
|
6376
6364
|
}))
|
|
6377
6365
|
]), 1032, ["classes", "resolveClasses", "caption", "headerRows", "columnWidth", "rows", "footerRows", "rowColumns", "idPrefix", "getRowValue", "getColumnTitle", "style", "onColumnSorted"])) : y("", !0)
|
|
6378
6366
|
], 2);
|
|
6379
6367
|
}
|
|
6380
|
-
const th = /* @__PURE__ */ _(jd, [["render",
|
|
6368
|
+
const th = /* @__PURE__ */ _(jd, [["render", Wd]]);
|
|
6381
6369
|
export {
|
|
6382
6370
|
Lf as $,
|
|
6383
6371
|
pf as A,
|
|
6384
|
-
|
|
6385
|
-
|
|
6372
|
+
bf as B,
|
|
6373
|
+
vf as C,
|
|
6386
6374
|
Kn as D,
|
|
6387
6375
|
wf as E,
|
|
6388
6376
|
Sf as F,
|
|
@@ -6400,7 +6388,7 @@ export {
|
|
|
6400
6388
|
If as R,
|
|
6401
6389
|
zf as S,
|
|
6402
6390
|
Ef as T,
|
|
6403
|
-
|
|
6391
|
+
Nn as U,
|
|
6404
6392
|
jf as V,
|
|
6405
6393
|
Ff as W,
|
|
6406
6394
|
Pf as X,
|
|
@@ -6413,8 +6401,8 @@ export {
|
|
|
6413
6401
|
Df as a2,
|
|
6414
6402
|
Lr as a3,
|
|
6415
6403
|
zr as a4,
|
|
6416
|
-
|
|
6417
|
-
|
|
6404
|
+
Wf as a5,
|
|
6405
|
+
Nf as a6,
|
|
6418
6406
|
Xf as a7,
|
|
6419
6407
|
Yf as a8,
|
|
6420
6408
|
Kf as a9,
|
|
@@ -6428,7 +6416,7 @@ export {
|
|
|
6428
6416
|
Gl as ah,
|
|
6429
6417
|
aa as ai,
|
|
6430
6418
|
un as aj,
|
|
6431
|
-
|
|
6419
|
+
q as ak,
|
|
6432
6420
|
no as al,
|
|
6433
6421
|
Pn as am,
|
|
6434
6422
|
Qd as b,
|
|
@@ -6448,7 +6436,7 @@ export {
|
|
|
6448
6436
|
df as p,
|
|
6449
6437
|
ff as q,
|
|
6450
6438
|
Gf as r,
|
|
6451
|
-
|
|
6439
|
+
vo as s,
|
|
6452
6440
|
hf as t,
|
|
6453
6441
|
co as u,
|
|
6454
6442
|
mf as v,
|