@hotelinking/ui 4.32.5 → 4.32.8
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/ui.es.js +236 -205
- package/dist/ui.umd.cjs +1 -1
- package/package.json +20 -20
package/dist/ui.es.js
CHANGED
|
@@ -3,10 +3,10 @@ import H from "dayjs";
|
|
|
3
3
|
import Y from "vue3-apexcharts";
|
|
4
4
|
const V = { name: "uiIcon" }, z = Object.assign(V, { props: { icon: { type: Function, required: true }, size: { type: String, default: "normal" }, color: { type: String, default: "primary" }, loading: { type: Boolean, default: true } }, setup: (r2) => (o2, i2) => r2.loading ? (e(), n("div", { key: 1, class: a([{ "h-4 w-4": "normal" === r2.size, "h-6 w-6": "big" === r2.size, "h-12 w-12": "huge" === r2.size, "h-20 w-20": "massive" === r2.size }, "animate-pulse rounded-full bg-gray-200 dark:bg-gray-300"]) }, null, 2)) : (e(), t(l(r2.icon), { key: 0, class: a({ "h-4 w-4": "normal" === r2.size, "h-6 w-6": "big" === r2.size, "h-12 w-12": "huge" === r2.size, "h-20 w-20": "massive" === r2.size, "text-indigo-600": "primary" === r2.color, "text-cyan-300": "secondary" === r2.color, "text-red-400": "red" === r2.color, "text-yellow-400": "yellow" === r2.color, "text-green-400": "green" === r2.color, "text-white": "white" === r2.color, "text-gray-300": "gray" === r2.color, "text-black": "black" === r2.color }) }, null, 8, ["class"])) }), q = ["disabled"], U = { key: 1, class: "animate-pulse px-4 py-2.5 text-sm rounded-md inline-flex items-center border border-transparent font-medium shadow-sm text-white focus:outline-none focus:ring-2 focus:ring-offset-2 disabled:opacity-25 bg-gray-200" }, W = i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-16" }, null, -1), K = { name: "uiButton" }, J = Object.assign(K, { props: { color: { type: String, default: "primary" }, size: { type: String, default: "normal" }, icon: { type: Function, default: () => {
|
|
5
5
|
} }, disabled: { type: Boolean, default: false }, loading: { type: Boolean, default: true } }, setup: (t2) => (l2, i2) => t2.loading ? (e(), n("button", U, [r(z, { icon: t2.icon, color: "white", class: "-ml-0.5 mr-2", loading: t2.loading }, null, 8, ["icon", "loading"]), W])) : (e(), n("button", { key: 0, disabled: t2.disabled, class: a([{ "bg-indigo-600 hover:bg-indigo-800 text-white shadow-sm": "primary" === t2.color, "bg-cyan-300 hover:bg-cyan-500 text-white shadow-sme": "secondary" === t2.color, "bg-red-400 hover:bg-red-600 text-white shadow-sm": "red" === t2.color, "bg-yellow-400 hover:bg-yellow-600 text-white shadow-sm": "yellow" === t2.color, "bg-green-400 hover:bg-green-600 text-white shadow-sm": "green" === t2.color, "bg-transparent hover:bg-indigo-800 text-indigo-800 hover:text-white": "transparent" === t2.color, "px-4 py-2 text-sm rounded-md": "normal" === t2.size, "px-2.5 py-1.5 text-xs rounded leading-none": "small" === t2.size, "px-6 py-3 text-base rounded-md": "large" === t2.size }, "inline-flex items-center border border-transparent font-medium focus:outline-none focus:ring-2 focus:ring-offset-2 disabled:opacity-25"]), type: "button" }, [r(z, { icon: t2.icon, color: "white", class: "-ml-0.5 mr-2", loading: t2.loading }, null, 8, ["icon", "loading"]), o(l2.$slots, "default")], 10, q)) }), G = { key: 0, class: "relative flex items-start" }, X = { class: "flex items-center h-5" }, Q = ["checked", "value", "disabled"], Z = { class: "ml-3 text-sm" }, ee = { class: "text-gray-500" }, te = { key: 1, class: "flex items-center animate-pulse" }, le = [i("div", { class: "w-5 h-5 rounded bg-gray-200" }, null, -1), i("div", { class: "ml-3 h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-28" }, null, -1)], ae = { name: "uiCheckbox" }, ne = Object.assign(ae, { props: { disabled: { type: Boolean, default: false }, value: { type: String }, check: { type: Boolean, default: false }, loading: { type: Boolean, default: true } }, emits: ["checkboxChanged"], setup(t2, { emit: l2 }) {
|
|
6
|
-
const a2 =
|
|
7
|
-
return (
|
|
8
|
-
|
|
9
|
-
}) }, null, 40, Q)]), i("div", Z, [i("span", ee, [o(
|
|
6
|
+
const a2 = l2, r2 = t2, u2 = s(r2.check);
|
|
7
|
+
return (l3, s2) => t2.loading ? (e(), n("div", te, le)) : (e(), n("div", G, [i("div", X, [i("input", { checked: t2.check, value: t2.value, disabled: t2.disabled, class: "focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded disabled:opacity-25", type: "checkbox", onChange: s2[0] || (s2[0] = (e2) => {
|
|
8
|
+
r2.disabled || (u2.value = !u2.value, a2("checkboxChanged", { checked: u2.value, value: r2.value }));
|
|
9
|
+
}) }, null, 40, Q)]), i("div", Z, [i("span", ee, [o(l3.$slots, "default")])])]));
|
|
10
10
|
} });
|
|
11
11
|
function re(e2, t2, ...l2) {
|
|
12
12
|
if (e2 in t2) {
|
|
@@ -316,12 +316,15 @@ function Ue(e2, t2, l2 = y(() => true)) {
|
|
|
316
316
|
return !Ae(r2, Re.Loose) && -1 !== r2.tabIndex && a3.preventDefault(), t2(a3, r2);
|
|
317
317
|
}
|
|
318
318
|
let n2 = s(null);
|
|
319
|
-
ze("
|
|
319
|
+
ze("pointerdown", (e3) => {
|
|
320
|
+
var t3, a3;
|
|
321
|
+
l2.value && (n2.value = (null == (a3 = null == (t3 = e3.composedPath) ? void 0 : t3.call(e3)) ? void 0 : a3[0]) || e3.target);
|
|
322
|
+
}, true), ze("mousedown", (e3) => {
|
|
320
323
|
var t3, a3;
|
|
321
324
|
l2.value && (n2.value = (null == (a3 = null == (t3 = e3.composedPath) ? void 0 : t3.call(e3)) ? void 0 : a3[0]) || e3.target);
|
|
322
325
|
}, true), ze("click", (e3) => {
|
|
323
326
|
n2.value && (a2(e3, () => n2.value), n2.value = null);
|
|
324
|
-
}, true), qe("blur", (e3) => a2(e3, () => window.document.activeElement instanceof HTMLIFrameElement ? window.document.activeElement : null), true);
|
|
327
|
+
}, true), ze("touchend", (e3) => a2(e3, () => e3.target instanceof HTMLElement ? e3.target : null), true), qe("blur", (e3) => a2(e3, () => window.document.activeElement instanceof HTMLIFrameElement ? window.document.activeElement : null), true);
|
|
325
328
|
}
|
|
326
329
|
var We = ((e2) => (e2[e2.None = 1] = "None", e2[e2.Focusable = 2] = "Focusable", e2[e2.Hidden = 4] = "Hidden", e2))(We || {});
|
|
327
330
|
let Ke = b({ name: "Hidden", props: { as: { type: [Object, String], default: "div" }, features: { type: Number, default: 1 } }, setup: (e2, { slots: t2, attrs: l2 }) => () => {
|
|
@@ -367,7 +370,12 @@ function tt() {
|
|
|
367
370
|
function lt() {
|
|
368
371
|
return tt() || /Android/gi.test(window.navigator.userAgent);
|
|
369
372
|
}
|
|
370
|
-
function at() {
|
|
373
|
+
function at(e2) {
|
|
374
|
+
"function" == typeof queueMicrotask ? queueMicrotask(e2) : Promise.resolve().then(e2).catch((e3) => setTimeout(() => {
|
|
375
|
+
throw e3;
|
|
376
|
+
}));
|
|
377
|
+
}
|
|
378
|
+
function nt() {
|
|
371
379
|
let e2 = [], t2 = { addEventListener: (e3, l2, a2, n2) => (e3.addEventListener(l2, a2, n2), t2.add(() => e3.removeEventListener(l2, a2, n2))), requestAnimationFrame(...e3) {
|
|
372
380
|
let l2 = requestAnimationFrame(...e3);
|
|
373
381
|
t2.add(() => cancelAnimationFrame(l2));
|
|
@@ -378,13 +386,20 @@ function at() {
|
|
|
378
386
|
}, setTimeout(...e3) {
|
|
379
387
|
let l2 = setTimeout(...e3);
|
|
380
388
|
t2.add(() => clearTimeout(l2));
|
|
389
|
+
}, microTask(...e3) {
|
|
390
|
+
let l2 = { current: true };
|
|
391
|
+
return at(() => {
|
|
392
|
+
l2.current && e3[0]();
|
|
393
|
+
}), t2.add(() => {
|
|
394
|
+
l2.current = false;
|
|
395
|
+
});
|
|
381
396
|
}, style(e3, t3, l2) {
|
|
382
397
|
let a2 = e3.style.getPropertyValue(t3);
|
|
383
398
|
return Object.assign(e3.style, { [t3]: l2 }), this.add(() => {
|
|
384
399
|
Object.assign(e3.style, { [t3]: a2 });
|
|
385
400
|
});
|
|
386
401
|
}, group(e3) {
|
|
387
|
-
let t3 =
|
|
402
|
+
let t3 = nt();
|
|
388
403
|
return e3(t3), this.add(() => t3.dispose());
|
|
389
404
|
}, add: (t3) => (e2.push(t3), () => {
|
|
390
405
|
let l2 = e2.indexOf(t3);
|
|
@@ -397,26 +412,26 @@ function at() {
|
|
|
397
412
|
} };
|
|
398
413
|
return t2;
|
|
399
414
|
}
|
|
400
|
-
function
|
|
415
|
+
function rt(e2, t2) {
|
|
401
416
|
return e2 === t2;
|
|
402
417
|
}
|
|
403
|
-
var
|
|
404
|
-
let
|
|
405
|
-
function
|
|
406
|
-
let t2 = p(
|
|
418
|
+
var ot = ((e2) => (e2[e2.Open = 0] = "Open", e2[e2.Closed = 1] = "Closed", e2))(ot || {}), it = ((e2) => (e2[e2.Single = 0] = "Single", e2[e2.Multi = 1] = "Multi", e2))(it || {}), st = ((e2) => (e2[e2.Pointer = 0] = "Pointer", e2[e2.Other = 1] = "Other", e2))(st || {});
|
|
419
|
+
let ut = Symbol("ComboboxContext");
|
|
420
|
+
function dt(e2) {
|
|
421
|
+
let t2 = p(ut, null);
|
|
407
422
|
if (null === t2) {
|
|
408
423
|
let t3 = new Error(`<${e2} /> is missing a parent <Combobox /> component.`);
|
|
409
|
-
throw Error.captureStackTrace && Error.captureStackTrace(t3,
|
|
424
|
+
throw Error.captureStackTrace && Error.captureStackTrace(t3, dt), t3;
|
|
410
425
|
}
|
|
411
426
|
return t2;
|
|
412
427
|
}
|
|
413
|
-
let
|
|
428
|
+
let ct = b({ name: "Combobox", emits: { "update:modelValue": (e2) => true }, props: { as: { type: [Object, String], default: "template" }, disabled: { type: [Boolean], default: false }, by: { type: [String, Function], default: () => rt }, modelValue: { type: [Object, String, Number, Boolean], default: void 0 }, defaultValue: { type: [Object, String, Number, Boolean], default: void 0 }, form: { type: String, optional: true }, name: { type: String, optional: true }, nullable: { type: Boolean, default: false }, multiple: { type: [Boolean], default: false } }, inheritAttrs: false, setup(e2, { slots: t2, attrs: l2, emit: a2 }) {
|
|
414
429
|
let n2 = s(1), r2 = s(null), o2 = s(null), i2 = s(null), u2 = s(null), p2 = s({ static: false, hold: false }), m2 = s([]), v2 = s(null), b2 = s(1), w2 = s(false);
|
|
415
430
|
function k2(e3 = (e4) => e4) {
|
|
416
431
|
let t3 = null !== v2.value ? m2.value[v2.value] : null, l3 = Ye(e3(m2.value.slice()), (e4) => he(e4.dataRef.domRef)), a3 = t3 ? l3.indexOf(t3) : null;
|
|
417
432
|
return -1 === a3 && (a3 = null), { options: l3, activeOptionIndex: a3 };
|
|
418
433
|
}
|
|
419
|
-
let S2 = y(() => e2.multiple ? 1 : 0), C2 = y(() => e2.nullable), [O2, D2] = Qe(y(() => void 0 ===
|
|
434
|
+
let S2 = y(() => e2.multiple ? 1 : 0), C2 = y(() => e2.nullable), [O2, D2] = Qe(y(() => e2.modelValue), (e3) => a2("update:modelValue", e3), y(() => e2.defaultValue)), M2 = y(() => void 0 === O2.value ? re(S2.value, { 1: [], 0: void 0 }) : O2.value), P2 = null, _2 = null, T2 = { comboboxState: n2, value: M2, mode: S2, compare(t3, l3) {
|
|
420
435
|
if ("string" == typeof e2.by) {
|
|
421
436
|
let a3 = e2.by;
|
|
422
437
|
return (null == t3 ? void 0 : t3[a3]) === (null == l3 ? void 0 : l3[a3]);
|
|
@@ -437,77 +452,80 @@ let dt = b({ name: "Combobox", emits: { "update:modelValue": (e2) => true }, pro
|
|
|
437
452
|
return;
|
|
438
453
|
let t3 = m2.value.findIndex((e3) => {
|
|
439
454
|
let t4 = h(e3.dataRef.value);
|
|
440
|
-
return re(S2.value, { 0: () =>
|
|
455
|
+
return re(S2.value, { 0: () => T2.compare(h(T2.value.value), h(t4)), 1: () => h(T2.value.value).some((e4) => T2.compare(h(e4), h(t4))) });
|
|
441
456
|
});
|
|
442
457
|
-1 !== t3 && (v2.value = t3), n2.value = 0;
|
|
443
458
|
}, goToOption(t3, l3, a3) {
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
459
|
+
w2.value = false, null !== P2 && cancelAnimationFrame(P2), P2 = requestAnimationFrame(() => {
|
|
460
|
+
if (e2.disabled || u2.value && !p2.value.static && 1 === n2.value)
|
|
461
|
+
return;
|
|
462
|
+
let r3 = k2();
|
|
463
|
+
if (null === r3.activeOptionIndex) {
|
|
464
|
+
let e3 = r3.options.findIndex((e4) => !e4.dataRef.disabled);
|
|
465
|
+
-1 !== e3 && (r3.activeOptionIndex = e3);
|
|
466
|
+
}
|
|
467
|
+
let o3 = be(t3 === ye.Specific ? { focus: ye.Specific, id: l3 } : { focus: t3 }, { resolveItems: () => r3.options, resolveActiveIndex: () => r3.activeOptionIndex, resolveId: (e3) => e3.id, resolveDisabled: (e3) => e3.dataRef.disabled });
|
|
468
|
+
v2.value = o3, b2.value = null != a3 ? a3 : 1, m2.value = r3.options;
|
|
469
|
+
});
|
|
453
470
|
}, selectOption(e3) {
|
|
454
471
|
let t3 = m2.value.find((t4) => t4.id === e3);
|
|
455
472
|
if (!t3)
|
|
456
473
|
return;
|
|
457
474
|
let { dataRef: l3 } = t3;
|
|
458
475
|
D2(re(S2.value, { 0: () => l3.value, 1: () => {
|
|
459
|
-
let e4 = h(
|
|
476
|
+
let e4 = h(T2.value.value).slice(), t4 = h(l3.value), a3 = e4.findIndex((e5) => T2.compare(t4, h(e5)));
|
|
460
477
|
return -1 === a3 ? e4.push(t4) : e4.splice(a3, 1), e4;
|
|
461
478
|
} }));
|
|
462
479
|
}, selectActiveOption() {
|
|
463
|
-
if (null ===
|
|
480
|
+
if (null === T2.activeOptionIndex.value)
|
|
464
481
|
return;
|
|
465
|
-
let { dataRef: e3, id: t3 } = m2.value[
|
|
482
|
+
let { dataRef: e3, id: t3 } = m2.value[T2.activeOptionIndex.value];
|
|
466
483
|
D2(re(S2.value, { 0: () => e3.value, 1: () => {
|
|
467
|
-
let t4 = h(
|
|
484
|
+
let t4 = h(T2.value.value).slice(), l3 = h(e3.value), a3 = t4.findIndex((e4) => T2.compare(l3, h(e4)));
|
|
468
485
|
return -1 === a3 ? t4.push(l3) : t4.splice(a3, 1), t4;
|
|
469
|
-
} })),
|
|
486
|
+
} })), T2.goToOption(ye.Specific, t3);
|
|
470
487
|
}, registerOption(e3, t3) {
|
|
471
|
-
|
|
488
|
+
_2 && cancelAnimationFrame(_2);
|
|
489
|
+
let l3 = { id: e3, dataRef: t3 }, a3 = k2((e4) => (e4.push(l3), e4));
|
|
472
490
|
if (null === v2.value) {
|
|
473
491
|
let e4 = t3.value.value;
|
|
474
|
-
re(S2.value, { 0: () =>
|
|
492
|
+
re(S2.value, { 0: () => T2.compare(h(T2.value.value), h(e4)), 1: () => h(T2.value.value).some((t4) => T2.compare(h(t4), h(e4))) }) && (a3.activeOptionIndex = a3.options.indexOf(l3));
|
|
475
493
|
}
|
|
476
|
-
m2.value = a3.options, v2.value = a3.activeOptionIndex, b2.value = 1, a3.options.some((e4) => !he(e4.dataRef.domRef)) && requestAnimationFrame(() => {
|
|
494
|
+
m2.value = a3.options, v2.value = a3.activeOptionIndex, b2.value = 1, a3.options.some((e4) => !he(e4.dataRef.domRef)) && (_2 = requestAnimationFrame(() => {
|
|
477
495
|
let e4 = k2();
|
|
478
496
|
m2.value = e4.options, v2.value = e4.activeOptionIndex;
|
|
479
|
-
});
|
|
497
|
+
}));
|
|
480
498
|
}, unregisterOption(e3) {
|
|
481
499
|
var t3;
|
|
482
|
-
null !==
|
|
500
|
+
null !== T2.activeOptionIndex.value && (null == (t3 = T2.options.value[T2.activeOptionIndex.value]) ? void 0 : t3.id) === e3 && (w2.value = true);
|
|
483
501
|
let l3 = k2((t4) => {
|
|
484
502
|
let l4 = t4.findIndex((t5) => t5.id === e3);
|
|
485
503
|
return -1 !== l4 && t4.splice(l4, 1), t4;
|
|
486
504
|
});
|
|
487
505
|
m2.value = l3.options, v2.value = l3.activeOptionIndex, b2.value = 1;
|
|
488
506
|
} };
|
|
489
|
-
Ue([o2, i2, u2], () =>
|
|
490
|
-
let
|
|
507
|
+
Ue([o2, i2, u2], () => T2.closeCombobox(), y(() => 0 === n2.value)), g(ut, T2), Se(y(() => re(n2.value, { 0: we.Open, 1: we.Closed })));
|
|
508
|
+
let j2 = y(() => null === T2.activeOptionIndex.value ? null : m2.value[T2.activeOptionIndex.value].dataRef.value), E2 = y(() => {
|
|
491
509
|
var e3;
|
|
492
510
|
return null == (e3 = he(o2)) ? void 0 : e3.closest("form");
|
|
493
511
|
});
|
|
494
512
|
return f(() => {
|
|
495
|
-
x([
|
|
496
|
-
if (
|
|
497
|
-
return
|
|
513
|
+
x([E2], () => {
|
|
514
|
+
if (E2.value && void 0 !== e2.defaultValue)
|
|
515
|
+
return E2.value.addEventListener("reset", t3), () => {
|
|
498
516
|
var e3;
|
|
499
|
-
null == (e3 =
|
|
517
|
+
null == (e3 = E2.value) || e3.removeEventListener("reset", t3);
|
|
500
518
|
};
|
|
501
519
|
function t3() {
|
|
502
|
-
|
|
520
|
+
T2.change(e2.defaultValue);
|
|
503
521
|
}
|
|
504
522
|
}, { immediate: true });
|
|
505
523
|
}), () => {
|
|
506
|
-
let { name: a3, disabled: r3, form: o3, ...i3 } = e2, s2 = { open: 0 === n2.value, disabled: r3, activeIndex:
|
|
507
|
-
return d(c, [...null != a3 && null !=
|
|
524
|
+
let { name: a3, disabled: r3, form: o3, ...i3 } = e2, s2 = { open: 0 === n2.value, disabled: r3, activeIndex: T2.activeOptionIndex.value, activeOption: j2.value, value: M2.value };
|
|
525
|
+
return d(c, [...null != a3 && null != M2.value ? Je({ [a3]: M2.value }).map(([e3, t3]) => d(Ke, pe({ features: We.Hidden, key: e3, as: "input", type: "hidden", hidden: true, readOnly: true, form: o3, name: e3, value: t3 }))) : [], se({ theirProps: { ...l2, ...ge(i3, ["modelValue", "defaultValue", "nullable", "multiple", "onUpdate:modelValue", "by"]) }, ourProps: {}, slot: s2, slots: t2, attrs: l2, name: "Combobox" })]);
|
|
508
526
|
};
|
|
509
|
-
} }),
|
|
510
|
-
let a2 =
|
|
527
|
+
} }), pt = b({ name: "ComboboxLabel", props: { as: { type: [Object, String], default: "label" }, id: { type: String, default: () => `headlessui-combobox-label-${me()}` } }, setup(e2, { attrs: t2, slots: l2 }) {
|
|
528
|
+
let a2 = dt("ComboboxLabel");
|
|
511
529
|
function n2() {
|
|
512
530
|
var e3;
|
|
513
531
|
null == (e3 = he(a2.inputRef)) || e3.focus({ preventScroll: true });
|
|
@@ -516,8 +534,8 @@ let dt = b({ name: "Combobox", emits: { "update:modelValue": (e2) => true }, pro
|
|
|
516
534
|
let r2 = { open: 0 === a2.comboboxState.value, disabled: a2.disabled.value }, { id: o2, ...i2 } = e2;
|
|
517
535
|
return se({ ourProps: { id: o2, ref: a2.labelRef, onClick: n2 }, theirProps: i2, slot: r2, attrs: t2, slots: l2, name: "ComboboxLabel" });
|
|
518
536
|
};
|
|
519
|
-
} }),
|
|
520
|
-
let n2 =
|
|
537
|
+
} }), gt = b({ name: "ComboboxButton", props: { as: { type: [Object, String], default: "button" }, id: { type: String, default: () => `headlessui-combobox-button-${me()}` } }, setup(e2, { attrs: t2, slots: l2, expose: a2 }) {
|
|
538
|
+
let n2 = dt("ComboboxButton");
|
|
521
539
|
function r2(e3) {
|
|
522
540
|
n2.disabled.value || (0 === n2.comboboxState.value ? n2.closeCombobox() : (e3.preventDefault(), n2.openCombobox()), v(() => {
|
|
523
541
|
var e4;
|
|
@@ -552,24 +570,37 @@ let dt = b({ name: "Combobox", emits: { "update:modelValue": (e2) => true }, pro
|
|
|
552
570
|
return () => {
|
|
553
571
|
var a3, s2;
|
|
554
572
|
let u2 = { open: 0 === n2.comboboxState.value, disabled: n2.disabled.value, value: n2.value.value }, { id: d2, ...c2 } = e2;
|
|
555
|
-
return se({ ourProps: { ref: n2.buttonRef, id: d2, type: i2.value, tabindex: "-1", "aria-haspopup": "listbox", "aria-controls": null == (a3 = he(n2.optionsRef)) ? void 0 : a3.id, "aria-expanded":
|
|
573
|
+
return se({ ourProps: { ref: n2.buttonRef, id: d2, type: i2.value, tabindex: "-1", "aria-haspopup": "listbox", "aria-controls": null == (a3 = he(n2.optionsRef)) ? void 0 : a3.id, "aria-expanded": 0 === n2.comboboxState.value, "aria-labelledby": n2.labelRef.value ? [null == (s2 = he(n2.labelRef)) ? void 0 : s2.id, d2].join(" ") : void 0, disabled: true === n2.disabled.value || void 0, onKeydown: o2, onClick: r2 }, theirProps: c2, slot: u2, attrs: t2, slots: l2, name: "ComboboxButton" });
|
|
556
574
|
};
|
|
557
|
-
} }),
|
|
558
|
-
let r2 =
|
|
575
|
+
} }), ft = b({ name: "ComboboxInput", props: { as: { type: [Object, String], default: "input" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, displayValue: { type: Function }, defaultValue: { type: String, default: void 0 }, id: { type: String, default: () => `headlessui-combobox-input-${me()}` } }, emits: { change: (e2) => true }, setup(e2, { emit: t2, attrs: l2, slots: a2, expose: n2 }) {
|
|
576
|
+
let r2 = dt("ComboboxInput"), o2 = y(() => _e(he(r2.inputRef))), i2 = { value: false };
|
|
577
|
+
function u2() {
|
|
578
|
+
r2.change(null);
|
|
579
|
+
let e3 = he(r2.optionsRef);
|
|
580
|
+
e3 && (e3.scrollTop = 0), r2.goToOption(ye.Nothing);
|
|
581
|
+
}
|
|
559
582
|
n2({ el: r2.inputRef, $el: r2.inputRef });
|
|
560
|
-
let
|
|
583
|
+
let d2 = y(() => {
|
|
561
584
|
var t3;
|
|
562
585
|
let l3 = r2.value.value;
|
|
563
586
|
return he(r2.inputRef) ? void 0 !== e2.displayValue && void 0 !== l3 ? null != (t3 = e2.displayValue(l3)) ? t3 : "" : "string" == typeof l3 ? l3 : "" : "";
|
|
564
587
|
});
|
|
565
588
|
f(() => {
|
|
566
|
-
x([
|
|
567
|
-
if (
|
|
589
|
+
x([d2, r2.comboboxState, o2], ([e3, t3], [l3, a3]) => {
|
|
590
|
+
if (i2.value)
|
|
568
591
|
return;
|
|
569
592
|
let n3 = he(r2.inputRef);
|
|
570
|
-
n3 && (0 === a3 && 1 === t3 || e3 !== l3) && (n3.value = e3)
|
|
593
|
+
n3 && ((0 === a3 && 1 === t3 || e3 !== l3) && (n3.value = e3), requestAnimationFrame(() => {
|
|
594
|
+
var e4;
|
|
595
|
+
if (i2.value || !n3 || (null == (e4 = o2.value) ? void 0 : e4.activeElement) !== n3)
|
|
596
|
+
return;
|
|
597
|
+
let { selectionStart: t4, selectionEnd: l4 } = n3;
|
|
598
|
+
0 === Math.abs((null != l4 ? l4 : 0) - (null != t4 ? t4 : 0)) && 0 === t4 && n3.setSelectionRange(n3.value.length, n3.value.length);
|
|
599
|
+
}));
|
|
571
600
|
}, { immediate: true }), x([r2.comboboxState], ([e3], [t3]) => {
|
|
572
601
|
if (0 === e3 && 1 === t3) {
|
|
602
|
+
if (i2.value)
|
|
603
|
+
return;
|
|
573
604
|
let e4 = he(r2.inputRef);
|
|
574
605
|
if (!e4)
|
|
575
606
|
return;
|
|
@@ -578,41 +609,28 @@ let dt = b({ name: "Combobox", emits: { "update:modelValue": (e2) => true }, pro
|
|
|
578
609
|
}
|
|
579
610
|
});
|
|
580
611
|
});
|
|
581
|
-
let
|
|
582
|
-
function c2() {
|
|
583
|
-
u2.value = true;
|
|
584
|
-
}
|
|
612
|
+
let c2 = s(false);
|
|
585
613
|
function p2() {
|
|
586
|
-
|
|
587
|
-
|
|
614
|
+
c2.value = true;
|
|
615
|
+
}
|
|
616
|
+
function g2() {
|
|
617
|
+
nt().nextFrame(() => {
|
|
618
|
+
c2.value = false;
|
|
588
619
|
});
|
|
589
620
|
}
|
|
590
|
-
function
|
|
591
|
-
switch (
|
|
592
|
-
case ve.Backspace:
|
|
593
|
-
case ve.Delete:
|
|
594
|
-
if (0 !== r2.mode.value || !r2.nullable.value)
|
|
595
|
-
return;
|
|
596
|
-
let t3 = e3.currentTarget;
|
|
597
|
-
requestAnimationFrame(() => {
|
|
598
|
-
if ("" === t3.value) {
|
|
599
|
-
r2.change(null);
|
|
600
|
-
let e4 = he(r2.optionsRef);
|
|
601
|
-
e4 && (e4.scrollTop = 0), r2.goToOption(ye.Nothing);
|
|
602
|
-
}
|
|
603
|
-
});
|
|
604
|
-
break;
|
|
621
|
+
function m2(e3) {
|
|
622
|
+
switch (i2.value = true, e3.key) {
|
|
605
623
|
case ve.Enter:
|
|
606
|
-
if (
|
|
624
|
+
if (i2.value = false, 0 !== r2.comboboxState.value || c2.value)
|
|
607
625
|
return;
|
|
608
626
|
if (e3.preventDefault(), e3.stopPropagation(), null === r2.activeOptionIndex.value)
|
|
609
627
|
return void r2.closeCombobox();
|
|
610
628
|
r2.selectActiveOption(), 0 === r2.mode.value && r2.closeCombobox();
|
|
611
629
|
break;
|
|
612
630
|
case ve.ArrowDown:
|
|
613
|
-
return
|
|
631
|
+
return i2.value = false, e3.preventDefault(), e3.stopPropagation(), re(r2.comboboxState.value, { 0: () => r2.goToOption(ye.Next), 1: () => r2.openCombobox() });
|
|
614
632
|
case ve.ArrowUp:
|
|
615
|
-
return
|
|
633
|
+
return i2.value = false, e3.preventDefault(), e3.stopPropagation(), re(r2.comboboxState.value, { 0: () => r2.goToOption(ye.Previous), 1: () => {
|
|
616
634
|
r2.openCombobox(), v(() => {
|
|
617
635
|
r2.value.value || r2.goToOption(ye.Last);
|
|
618
636
|
});
|
|
@@ -620,43 +638,43 @@ let dt = b({ name: "Combobox", emits: { "update:modelValue": (e2) => true }, pro
|
|
|
620
638
|
case ve.Home:
|
|
621
639
|
if (e3.shiftKey)
|
|
622
640
|
break;
|
|
623
|
-
return
|
|
641
|
+
return i2.value = false, e3.preventDefault(), e3.stopPropagation(), r2.goToOption(ye.First);
|
|
624
642
|
case ve.PageUp:
|
|
625
|
-
return
|
|
643
|
+
return i2.value = false, e3.preventDefault(), e3.stopPropagation(), r2.goToOption(ye.First);
|
|
626
644
|
case ve.End:
|
|
627
645
|
if (e3.shiftKey)
|
|
628
646
|
break;
|
|
629
|
-
return
|
|
647
|
+
return i2.value = false, e3.preventDefault(), e3.stopPropagation(), r2.goToOption(ye.Last);
|
|
630
648
|
case ve.PageDown:
|
|
631
|
-
return
|
|
649
|
+
return i2.value = false, e3.preventDefault(), e3.stopPropagation(), r2.goToOption(ye.Last);
|
|
632
650
|
case ve.Escape:
|
|
633
|
-
if (
|
|
651
|
+
if (i2.value = false, 0 !== r2.comboboxState.value)
|
|
634
652
|
return;
|
|
635
|
-
e3.preventDefault(), r2.optionsRef.value && !r2.optionsPropsRef.value.static && e3.stopPropagation(), r2.closeCombobox();
|
|
653
|
+
e3.preventDefault(), r2.optionsRef.value && !r2.optionsPropsRef.value.static && e3.stopPropagation(), r2.nullable.value && 0 === r2.mode.value && null === r2.value.value && u2(), r2.closeCombobox();
|
|
636
654
|
break;
|
|
637
655
|
case ve.Tab:
|
|
638
|
-
if (
|
|
656
|
+
if (i2.value = false, 0 !== r2.comboboxState.value)
|
|
639
657
|
return;
|
|
640
658
|
0 === r2.mode.value && r2.selectActiveOption(), r2.closeCombobox();
|
|
641
659
|
}
|
|
642
660
|
}
|
|
643
|
-
function
|
|
644
|
-
|
|
661
|
+
function b2(e3) {
|
|
662
|
+
t2("change", e3), r2.nullable.value && 0 === r2.mode.value && "" === e3.target.value && u2(), r2.openCombobox();
|
|
645
663
|
}
|
|
646
|
-
function
|
|
647
|
-
|
|
664
|
+
function h2() {
|
|
665
|
+
i2.value = false;
|
|
648
666
|
}
|
|
649
|
-
let
|
|
667
|
+
let w2 = y(() => {
|
|
650
668
|
var t3, l3, a3, n3;
|
|
651
669
|
return null != (n3 = null != (a3 = null != (l3 = e2.defaultValue) ? l3 : void 0 !== r2.defaultValue.value ? null == (t3 = e2.displayValue) ? void 0 : t3.call(e2, r2.defaultValue.value) : null) ? a3 : r2.defaultValue.value) ? n3 : "";
|
|
652
670
|
});
|
|
653
671
|
return () => {
|
|
654
672
|
var t3, n3, o3, i3, s2, u3;
|
|
655
|
-
let d3 = { open: 0 === r2.comboboxState.value }, { id:
|
|
656
|
-
return se({ ourProps: { "aria-controls": null == (t3 = r2.optionsRef.value) ? void 0 : t3.id, "aria-expanded":
|
|
673
|
+
let d3 = { open: 0 === r2.comboboxState.value }, { id: c3, displayValue: f2, onChange: v2, ...y2 } = e2;
|
|
674
|
+
return se({ ourProps: { "aria-controls": null == (t3 = r2.optionsRef.value) ? void 0 : t3.id, "aria-expanded": 0 === r2.comboboxState.value, "aria-activedescendant": null === r2.activeOptionIndex.value || null == (n3 = r2.options.value[r2.activeOptionIndex.value]) ? void 0 : n3.id, "aria-labelledby": null != (s2 = null == (o3 = he(r2.labelRef)) ? void 0 : o3.id) ? s2 : null == (i3 = he(r2.buttonRef)) ? void 0 : i3.id, "aria-autocomplete": "list", id: c3, onCompositionstart: p2, onCompositionend: g2, onKeydown: m2, onInput: b2, onBlur: h2, role: "combobox", type: null != (u3 = l2.type) ? u3 : "text", tabIndex: 0, ref: r2.inputRef, defaultValue: w2.value, disabled: true === r2.disabled.value || void 0 }, theirProps: y2, slot: d3, attrs: l2, slots: a2, features: oe.RenderStrategy | oe.Static, name: "ComboboxInput" });
|
|
657
675
|
};
|
|
658
|
-
} }),
|
|
659
|
-
let n2 =
|
|
676
|
+
} }), mt = b({ name: "ComboboxOptions", props: { as: { type: [Object, String], default: "ul" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, hold: { type: [Boolean], default: false } }, setup(e2, { attrs: t2, slots: l2, expose: a2 }) {
|
|
677
|
+
let n2 = dt("ComboboxOptions"), r2 = `headlessui-combobox-options-${me()}`;
|
|
660
678
|
a2({ el: n2.optionsRef, $el: n2.optionsRef }), m(() => {
|
|
661
679
|
n2.optionsPropsRef.value.static = e2.static;
|
|
662
680
|
}), m(() => {
|
|
@@ -670,8 +688,8 @@ let dt = b({ name: "Combobox", emits: { "update:modelValue": (e2) => true }, pro
|
|
|
670
688
|
let u2 = { open: 0 === n2.comboboxState.value };
|
|
671
689
|
return se({ ourProps: { "aria-labelledby": null != (s2 = null == (a3 = he(n2.labelRef)) ? void 0 : a3.id) ? s2 : null == (o3 = he(n2.buttonRef)) ? void 0 : o3.id, id: r2, ref: n2.optionsRef, role: "listbox", "aria-multiselectable": 1 === n2.mode.value || void 0 }, theirProps: ge(e2, ["hold"]), slot: u2, attrs: t2, slots: l2, features: oe.RenderStrategy | oe.Static, visible: i2.value, name: "ComboboxOptions" });
|
|
672
690
|
};
|
|
673
|
-
} }),
|
|
674
|
-
let n2 =
|
|
691
|
+
} }), vt = b({ name: "ComboboxOption", props: { as: { type: [Object, String], default: "li" }, value: { type: [Object, String, Number, Boolean] }, disabled: { type: Boolean, default: false } }, setup(e2, { slots: t2, attrs: l2, expose: a2 }) {
|
|
692
|
+
let n2 = dt("ComboboxOption"), r2 = `headlessui-combobox-option-${me()}`, o2 = s(null);
|
|
675
693
|
a2({ el: o2, $el: o2 });
|
|
676
694
|
let i2 = y(() => null !== n2.activeOptionIndex.value && n2.options.value[n2.activeOptionIndex.value].id === r2), u2 = y(() => re(n2.mode.value, { 0: () => n2.compare(h(n2.value.value), h(e2.value)), 1: () => h(n2.value.value).some((t3) => n2.compare(h(t3), h(e2.value))) })), d2 = y(() => ({ disabled: e2.disabled, value: e2.value, domRef: o2 }));
|
|
677
695
|
function c2(t3) {
|
|
@@ -708,17 +726,12 @@ let dt = b({ name: "Combobox", emits: { "update:modelValue": (e2) => true }, pro
|
|
|
708
726
|
return se({ ourProps: { id: r2, ref: o2, role: "option", tabIndex: true === a3 ? void 0 : -1, "aria-disabled": true === a3 || void 0, "aria-selected": u2.value, disabled: void 0, onClick: c2, onFocus: p2, onPointerenter: b2, onMouseenter: b2, onPointermove: x2, onMousemove: x2, onPointerleave: k2, onMouseleave: k2 }, theirProps: e2, slot: n3, attrs: l2, slots: t2, name: "ComboboxOption" });
|
|
709
727
|
};
|
|
710
728
|
} });
|
|
711
|
-
var
|
|
712
|
-
function
|
|
729
|
+
var yt = ((e2) => (e2[e2.Forwards = 0] = "Forwards", e2[e2.Backwards = 1] = "Backwards", e2))(yt || {});
|
|
730
|
+
function bt(e2, t2, l2, a2) {
|
|
713
731
|
Pe.isServer || m((n2) => {
|
|
714
732
|
(e2 = null != e2 ? e2 : window).addEventListener(t2, l2, a2), n2(() => e2.removeEventListener(t2, l2, a2));
|
|
715
733
|
});
|
|
716
734
|
}
|
|
717
|
-
function bt(e2) {
|
|
718
|
-
"function" == typeof queueMicrotask ? queueMicrotask(e2) : Promise.resolve().then(e2).catch((e3) => setTimeout(() => {
|
|
719
|
-
throw e3;
|
|
720
|
-
}));
|
|
721
|
-
}
|
|
722
735
|
function ht(e2) {
|
|
723
736
|
if (!e2)
|
|
724
737
|
return /* @__PURE__ */ new Set();
|
|
@@ -740,7 +753,7 @@ let wt = Object.assign(b({ name: "FocusTrap", props: { as: { type: [Object, Stri
|
|
|
740
753
|
let l3 = function(e4) {
|
|
741
754
|
let t4 = s(kt.slice());
|
|
742
755
|
return x([e4], ([e5], [l4]) => {
|
|
743
|
-
true === l4 && false === e5 ?
|
|
756
|
+
true === l4 && false === e5 ? at(() => {
|
|
744
757
|
t4.value.splice(0);
|
|
745
758
|
}) : false === l4 && true === e5 && (t4.value = kt.slice());
|
|
746
759
|
}, { flush: "post" }), () => {
|
|
@@ -764,7 +777,7 @@ let wt = Object.assign(b({ name: "FocusTrap", props: { as: { type: [Object, Stri
|
|
|
764
777
|
if (o3.every((e4, t4) => (null == i3 ? void 0 : i3[t4]) === e4) || !a3.value)
|
|
765
778
|
return;
|
|
766
779
|
let s2 = he(t3);
|
|
767
|
-
s2 &&
|
|
780
|
+
s2 && at(() => {
|
|
768
781
|
var t4, a4;
|
|
769
782
|
if (!r3.value)
|
|
770
783
|
return;
|
|
@@ -781,7 +794,7 @@ let wt = Object.assign(b({ name: "FocusTrap", props: { as: { type: [Object, Stri
|
|
|
781
794
|
}({ ownerDocument: r2, container: n2, initialFocus: y(() => e2.initialFocus) }, y(() => o2.value && Boolean(2 & e2.features)));
|
|
782
795
|
!function({ ownerDocument: e3, container: t3, containers: l3, previousActiveElement: a3 }, n3) {
|
|
783
796
|
var r3;
|
|
784
|
-
|
|
797
|
+
bt(null == (r3 = e3.value) ? void 0 : r3.defaultView, "focus", (e4) => {
|
|
785
798
|
if (!n3.value)
|
|
786
799
|
return;
|
|
787
800
|
let r4 = ht(l3);
|
|
@@ -801,9 +814,9 @@ let wt = Object.assign(b({ name: "FocusTrap", props: { as: { type: [Object, Stri
|
|
|
801
814
|
}();
|
|
802
815
|
function p2(e3) {
|
|
803
816
|
let t3 = he(n2);
|
|
804
|
-
t3 && re(u2.value, { [
|
|
817
|
+
t3 && re(u2.value, { [yt.Forwards]: () => {
|
|
805
818
|
Ve(t3, Ee.First, { skipElements: [e3.relatedTarget] });
|
|
806
|
-
}, [
|
|
819
|
+
}, [yt.Backwards]: () => {
|
|
807
820
|
Ve(t3, Ee.Last, { skipElements: [e3.relatedTarget] });
|
|
808
821
|
} });
|
|
809
822
|
}
|
|
@@ -819,7 +832,7 @@ let wt = Object.assign(b({ name: "FocusTrap", props: { as: { type: [Object, Stri
|
|
|
819
832
|
let l3 = ht(e2.containers);
|
|
820
833
|
he(n2) instanceof HTMLElement && l3.add(he(n2));
|
|
821
834
|
let a3 = t3.relatedTarget;
|
|
822
|
-
a3 instanceof HTMLElement && "true" !== a3.dataset.headlessuiFocusGuard && (St(l3, a3) || (g2.value ? Ve(he(n2), re(u2.value, { [
|
|
835
|
+
a3 instanceof HTMLElement && "true" !== a3.dataset.headlessuiFocusGuard && (St(l3, a3) || (g2.value ? Ve(he(n2), re(u2.value, { [yt.Forwards]: () => Ee.Next, [yt.Backwards]: () => Ee.Previous }) | Ee.WrapAround, { relativeTo: t3.target }) : t3.target instanceof HTMLElement && $e(t3.target)));
|
|
823
836
|
}
|
|
824
837
|
return () => {
|
|
825
838
|
let a3 = { ref: n2, onKeydown: v2, onFocusout: b2 }, { features: r3, initialFocus: o3, containers: i3, ...s2 } = e2;
|
|
@@ -959,6 +972,10 @@ function $t() {
|
|
|
959
972
|
function n2(e3) {
|
|
960
973
|
return a2.containers.flatMap((e4) => e4()).some((t3) => t3.contains(e3));
|
|
961
974
|
}
|
|
975
|
+
if ("auto" !== window.getComputedStyle(t2.documentElement).scrollBehavior) {
|
|
976
|
+
let e3 = nt();
|
|
977
|
+
e3.style(t2.documentElement, "scroll-behavior", "auto"), l2.add(() => l2.microTask(() => e3.dispose()));
|
|
978
|
+
}
|
|
962
979
|
l2.style(t2.body, "marginTop", `-${e2}px`), window.scrollTo(0, 0);
|
|
963
980
|
let r2 = null;
|
|
964
981
|
l2.addEventListener(t2, "click", (e3) => {
|
|
@@ -1004,7 +1021,7 @@ let Yt = function(e2, t2) {
|
|
|
1004
1021
|
} };
|
|
1005
1022
|
}(() => /* @__PURE__ */ new Map(), { PUSH(e2, t2) {
|
|
1006
1023
|
var l2;
|
|
1007
|
-
let a2 = null != (l2 = this.get(e2)) ? l2 : { doc: e2, count: 0, d:
|
|
1024
|
+
let a2 = null != (l2 = this.get(e2)) ? l2 : { doc: e2, count: 0, d: nt(), meta: /* @__PURE__ */ new Set() };
|
|
1008
1025
|
return a2.count++, a2.meta.add(t2), this.set(e2, a2), this;
|
|
1009
1026
|
}, POP(e2, t2) {
|
|
1010
1027
|
let l2 = this.get(e2);
|
|
@@ -1082,21 +1099,21 @@ let Wt = "DC8F892D-2EBD-447C-A4C8-A03058436FF4", Kt = b({ name: "Dialog", inheri
|
|
|
1082
1099
|
var e5;
|
|
1083
1100
|
return null == (e5 = t4.default) ? void 0 : e5.call(t4);
|
|
1084
1101
|
}) })];
|
|
1085
|
-
}(), { resolveContainers: M2, mainTreeNodeRef: P2, MainTreeNode: _2 } = function({ defaultContainers: e3 = [], portals: t3 } = {}) {
|
|
1086
|
-
let
|
|
1087
|
-
function
|
|
1088
|
-
var
|
|
1089
|
-
let
|
|
1102
|
+
}(), { resolveContainers: M2, mainTreeNodeRef: P2, MainTreeNode: _2 } = function({ defaultContainers: e3 = [], portals: t3, mainTreeNodeRef: l3 } = {}) {
|
|
1103
|
+
let a3 = s(null), n3 = _e(a3);
|
|
1104
|
+
function r3() {
|
|
1105
|
+
var l4;
|
|
1106
|
+
let r4 = [];
|
|
1090
1107
|
for (let t4 of e3)
|
|
1091
|
-
null !== t4 && (t4 instanceof HTMLElement ?
|
|
1108
|
+
null !== t4 && (t4 instanceof HTMLElement ? r4.push(t4) : "value" in t4 && t4.value instanceof HTMLElement && r4.push(t4.value));
|
|
1092
1109
|
if (null != t3 && t3.value)
|
|
1093
1110
|
for (let e4 of t3.value)
|
|
1094
|
-
|
|
1095
|
-
for (let e4 of null != (
|
|
1096
|
-
e4 !== document.body && e4 !== document.head && e4 instanceof HTMLElement && "headlessui-portal-root" !== e4.id && (e4.contains(he(
|
|
1097
|
-
return
|
|
1111
|
+
r4.push(e4);
|
|
1112
|
+
for (let e4 of null != (l4 = null == n3 ? void 0 : n3.querySelectorAll("html > *, body > *")) ? l4 : [])
|
|
1113
|
+
e4 !== document.body && e4 !== document.head && e4 instanceof HTMLElement && "headlessui-portal-root" !== e4.id && (e4.contains(he(a3)) || r4.some((t4) => e4.contains(t4)) || r4.push(e4));
|
|
1114
|
+
return r4;
|
|
1098
1115
|
}
|
|
1099
|
-
return { resolveContainers:
|
|
1116
|
+
return { resolveContainers: r3, contains: (e4) => r3().some((t4) => t4.contains(e4)), mainTreeNodeRef: a3, MainTreeNode: () => null != l3 ? null : d(Ke, { features: We.Hidden, ref: a3 }) };
|
|
1100
1117
|
}({ portals: O2, defaultContainers: [y(() => {
|
|
1101
1118
|
var e3;
|
|
1102
1119
|
return null != (e3 = F2.panelRef.value) ? e3 : h2.value;
|
|
@@ -1124,7 +1141,7 @@ let Wt = "DC8F892D-2EBD-447C-A4C8-A03058436FF4", Kt = b({ name: "Dialog", inheri
|
|
|
1124
1141
|
F2.close(), v(() => null == t3 ? void 0 : t3.focus());
|
|
1125
1142
|
}, N2);
|
|
1126
1143
|
let $2 = y(() => !(S2.value || 0 !== w2.value));
|
|
1127
|
-
|
|
1144
|
+
bt(null == (r2 = x2.value) ? void 0 : r2.defaultView, "keydown", (e3) => {
|
|
1128
1145
|
$2.value && (e3.defaultPrevented || e3.key === ve.Escape && (e3.preventDefault(), e3.stopPropagation(), F2.close()));
|
|
1129
1146
|
});
|
|
1130
1147
|
let H2 = y(() => !(j2.value || 0 !== w2.value || C2));
|
|
@@ -1198,7 +1215,7 @@ function Zt(e2) {
|
|
|
1198
1215
|
}
|
|
1199
1216
|
let el = Symbol("DisclosurePanelContext");
|
|
1200
1217
|
let tl = b({ name: "Disclosure", props: { as: { type: [Object, String], default: "template" }, defaultOpen: { type: [Boolean], default: false } }, setup(e2, { slots: t2, attrs: l2 }) {
|
|
1201
|
-
let a2 = s(e2.defaultOpen ? 0 : 1), n2 = s(null), r2 = s(null), o2 = { buttonId: s(
|
|
1218
|
+
let a2 = s(e2.defaultOpen ? 0 : 1), n2 = s(null), r2 = s(null), o2 = { buttonId: s(`headlessui-disclosure-button-${me()}`), panelId: s(`headlessui-disclosure-panel-${me()}`), disclosureState: a2, panel: n2, button: r2, toggleDisclosure() {
|
|
1202
1219
|
a2.value = re(a2.value, { 0: 1, 1: 0 });
|
|
1203
1220
|
}, closeDisclosure() {
|
|
1204
1221
|
1 !== a2.value && (a2.value = 1);
|
|
@@ -1211,14 +1228,14 @@ let tl = b({ name: "Disclosure", props: { as: { type: [Object, String], default:
|
|
|
1211
1228
|
let { defaultOpen: n3, ...r3 } = e2;
|
|
1212
1229
|
return se({ theirProps: r3, ourProps: {}, slot: { open: 0 === a2.value, close: o2.close }, slots: t2, attrs: l2, name: "Disclosure" });
|
|
1213
1230
|
};
|
|
1214
|
-
} }), ll = b({ name: "DisclosureButton", props: { as: { type: [Object, String], default: "button" }, disabled: { type: [Boolean], default: false }, id: { type: String, default:
|
|
1215
|
-
let n2 = Zt("DisclosureButton");
|
|
1231
|
+
} }), ll = b({ name: "DisclosureButton", props: { as: { type: [Object, String], default: "button" }, disabled: { type: [Boolean], default: false }, id: { type: String, default: null } }, setup(e2, { attrs: t2, slots: l2, expose: a2 }) {
|
|
1232
|
+
let n2 = Zt("DisclosureButton"), r2 = p(el, null), o2 = y(() => null !== r2 && r2.value === n2.panelId.value);
|
|
1216
1233
|
f(() => {
|
|
1217
|
-
n2.buttonId.value = e2.id;
|
|
1234
|
+
o2.value || null !== e2.id && (n2.buttonId.value = e2.id);
|
|
1218
1235
|
}), w(() => {
|
|
1219
|
-
n2.buttonId.value = null;
|
|
1236
|
+
o2.value || (n2.buttonId.value = null);
|
|
1220
1237
|
});
|
|
1221
|
-
let
|
|
1238
|
+
let i2 = s(null);
|
|
1222
1239
|
a2({ el: i2, $el: i2 }), o2.value || m(() => {
|
|
1223
1240
|
n2.button.value = i2.value;
|
|
1224
1241
|
});
|
|
@@ -1248,20 +1265,22 @@ let tl = b({ name: "Disclosure", props: { as: { type: [Object, String], default:
|
|
|
1248
1265
|
e3.preventDefault();
|
|
1249
1266
|
}
|
|
1250
1267
|
return () => {
|
|
1251
|
-
|
|
1252
|
-
|
|
1268
|
+
var a3;
|
|
1269
|
+
let r3 = { open: 0 === n2.disclosureState.value }, { id: s2, ...p2 } = e2;
|
|
1270
|
+
return se({ ourProps: o2.value ? { ref: i2, type: u2.value, onClick: d2, onKeydown: c2 } : { id: null != (a3 = n2.buttonId.value) ? a3 : s2, ref: i2, type: u2.value, "aria-expanded": 0 === n2.disclosureState.value, "aria-controls": 0 === n2.disclosureState.value || he(n2.panel) ? n2.panelId.value : void 0, disabled: !!e2.disabled || void 0, onClick: d2, onKeydown: c2, onKeyup: g2 }, theirProps: p2, slot: r3, attrs: t2, slots: l2, name: "DisclosureButton" });
|
|
1253
1271
|
};
|
|
1254
|
-
} }), al = b({ name: "DisclosurePanel", props: { as: { type: [Object, String], default: "div" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, id: { type: String, default:
|
|
1272
|
+
} }), al = b({ name: "DisclosurePanel", props: { as: { type: [Object, String], default: "div" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, id: { type: String, default: null } }, setup(e2, { attrs: t2, slots: l2, expose: a2 }) {
|
|
1255
1273
|
let n2 = Zt("DisclosurePanel");
|
|
1256
1274
|
f(() => {
|
|
1257
|
-
n2.panelId.value = e2.id;
|
|
1275
|
+
null !== e2.id && (n2.panelId.value = e2.id);
|
|
1258
1276
|
}), w(() => {
|
|
1259
1277
|
n2.panelId.value = null;
|
|
1260
1278
|
}), a2({ el: n2.panel, $el: n2.panel }), g(el, n2.panelId);
|
|
1261
1279
|
let r2 = ke(), o2 = y(() => null !== r2 ? (r2.value & we.Open) === we.Open : 0 === n2.disclosureState.value);
|
|
1262
1280
|
return () => {
|
|
1263
|
-
|
|
1264
|
-
|
|
1281
|
+
var a3;
|
|
1282
|
+
let r3 = { open: 0 === n2.disclosureState.value, close: n2.close }, { id: i2, ...s2 } = e2;
|
|
1283
|
+
return se({ ourProps: { id: null != (a3 = n2.panelId.value) ? a3 : i2, ref: n2.panel }, theirProps: s2, slot: r3, attrs: t2, slots: l2, features: oe.RenderStrategy | oe.Static, visible: o2.value, name: "DisclosurePanel" });
|
|
1265
1284
|
};
|
|
1266
1285
|
} }), nl = /([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g;
|
|
1267
1286
|
function rl(e2) {
|
|
@@ -1390,7 +1409,7 @@ let cl = b({ name: "Menu", props: { as: { type: [Object, String], default: "temp
|
|
|
1390
1409
|
return () => {
|
|
1391
1410
|
var a3;
|
|
1392
1411
|
let u2 = { open: 0 === n2.menuState.value }, { id: d2, ...c2 } = e2;
|
|
1393
|
-
return se({ ourProps: { ref: n2.buttonRef, id: d2, type: s2.value, "aria-haspopup": "menu", "aria-controls": null == (a3 = he(n2.itemsRef)) ? void 0 : a3.id, "aria-expanded":
|
|
1412
|
+
return se({ ourProps: { ref: n2.buttonRef, id: d2, type: s2.value, "aria-haspopup": "menu", "aria-controls": null == (a3 = he(n2.itemsRef)) ? void 0 : a3.id, "aria-expanded": 0 === n2.menuState.value, onKeydown: r2, onKeyup: o2, onClick: i2 }, theirProps: c2, slot: u2, attrs: t2, slots: l2, name: "MenuButton" });
|
|
1394
1413
|
};
|
|
1395
1414
|
} }), gl = b({ name: "MenuItems", props: { as: { type: [Object, String], default: "div" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, id: { type: String, default: () => `headlessui-menu-items-${me()}` } }, setup(e2, { attrs: t2, slots: l2, expose: a2 }) {
|
|
1396
1415
|
let n2 = dl("MenuItems"), r2 = s(null);
|
|
@@ -1523,12 +1542,13 @@ let bl = b({ name: "Label", props: { as: { type: [Object, String], default: "lab
|
|
|
1523
1542
|
}
|
|
1524
1543
|
function h2(e3) {
|
|
1525
1544
|
e3.key === ve.Space ? (e3.preventDefault(), u2()) : e3.key === ve.Enter && function(e4) {
|
|
1526
|
-
var t3;
|
|
1527
|
-
let
|
|
1528
|
-
if (
|
|
1529
|
-
for (let
|
|
1530
|
-
if ("INPUT" ===
|
|
1531
|
-
return void
|
|
1545
|
+
var t3, l3;
|
|
1546
|
+
let a3 = null != (t3 = null == e4 ? void 0 : e4.form) ? t3 : e4.closest("form");
|
|
1547
|
+
if (a3) {
|
|
1548
|
+
for (let t4 of a3.elements)
|
|
1549
|
+
if (t4 !== e4 && ("INPUT" === t4.tagName && "submit" === t4.type || "BUTTON" === t4.tagName && "submit" === t4.type || "INPUT" === t4.nodeName && "image" === t4.type))
|
|
1550
|
+
return void t4.click();
|
|
1551
|
+
null == (l3 = a3.requestSubmit) || l3.call(a3);
|
|
1532
1552
|
}
|
|
1533
1553
|
}(e3.currentTarget);
|
|
1534
1554
|
}
|
|
@@ -1564,7 +1584,7 @@ function Cl(e2, ...t2) {
|
|
|
1564
1584
|
}
|
|
1565
1585
|
var Ol = ((e2) => (e2.Finished = "finished", e2.Cancelled = "cancelled", e2))(Ol || {});
|
|
1566
1586
|
function Dl(e2, t2, l2, a2, n2, r2) {
|
|
1567
|
-
let o2 =
|
|
1587
|
+
let o2 = nt(), i2 = void 0 !== r2 ? function(e3) {
|
|
1568
1588
|
let t3 = { called: false };
|
|
1569
1589
|
return (...l3) => {
|
|
1570
1590
|
if (!t3.called)
|
|
@@ -1574,7 +1594,7 @@ function Dl(e2, t2, l2, a2, n2, r2) {
|
|
|
1574
1594
|
};
|
|
1575
1595
|
return Cl(e2, ...n2), Sl(e2, ...t2, ...l2), o2.nextFrame(() => {
|
|
1576
1596
|
Cl(e2, ...l2), Sl(e2, ...a2), o2.add(function(e3, t3) {
|
|
1577
|
-
let l3 =
|
|
1597
|
+
let l3 = nt();
|
|
1578
1598
|
if (!e3)
|
|
1579
1599
|
return l3.dispose;
|
|
1580
1600
|
let { transitionDuration: a3, transitionDelay: n3 } = getComputedStyle(e3), [r3, o3] = [a3, n3].map((e4) => {
|
|
@@ -1741,40 +1761,40 @@ function Ql(t2, l2) {
|
|
|
1741
1761
|
return e(), n("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", "stroke-width": "1.5", stroke: "currentColor", "aria-hidden": "true" }, [i("path", { "stroke-linecap": "round", "stroke-linejoin": "round", d: "M6 18L18 6M6 6l12 12" })]);
|
|
1742
1762
|
}
|
|
1743
1763
|
const Zl = { class: "py-1" }, ea = ["onClick"], ta = { key: 1, class: "animate-pulse px-4 py-2 bg-gray-200 rounded-md flex inline-flex items-center relative inline-block text-left" }, la = i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-28" }, null, -1), aa = { name: "uiDropdown" }, na = Object.assign(aa, { props: { items: { type: Array, required: true }, position: { type: String, default: "left" }, disabled: Boolean, label: String, loading: { type: Boolean, default: true } }, emits: ["optionSelected"], setup(l2, { emit: o2 }) {
|
|
1744
|
-
const s2 =
|
|
1745
|
-
let e2 =
|
|
1746
|
-
return e2 ? e2.name :
|
|
1764
|
+
const s2 = o2, u2 = l2, d2 = y(() => {
|
|
1765
|
+
let e2 = u2.items.find((e3) => true === e3.active);
|
|
1766
|
+
return e2 ? e2.name : u2.label;
|
|
1747
1767
|
});
|
|
1748
|
-
return (
|
|
1749
|
-
|
|
1768
|
+
return (o3, p2) => l2.loading ? (e(), n("div", ta, [la, r(C(Hl), { "aria-hidden": "true", class: "-mr-1 ml-2 h-5 w-5 text-gray-200 dark:text-gray-300" })])) : (e(), t(C(cl), { key: 0, as: "div", class: a(["relative inline-block text-left", { "opacity-25": l2.disabled }]) }, { default: D(() => [i("div", null, [r(C(pl), { class: "inline-flex justify-between w-full rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-100 focus:ring-indigo-500" }, { default: D(() => [M(P(d2.value) + " ", 1), r(C(Hl), { "aria-hidden": "true", class: "-mr-1 ml-2 h-5 w-5" })]), _: 1 })]), r(_, { "enter-active-class": "transition ease-out duration-100", "enter-from-class": "transform opacity-0 scale-95", "enter-to-class": "transform opacity-100 scale-100", "leave-active-class": "transition ease-in duration-75", "leave-from-class": "transform opacity-100 scale-100", "leave-to-class": "transform opacity-0 scale-95" }, { default: D(() => [l2.disabled ? j("", true) : (e(), t(C(gl), { key: 0, class: a([{ "right-0": "right" === l2.position, "left-0": "left" === l2.position }, "origin-top-right absolute mt-2 w-56 rounded-md shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none z-10"]) }, { default: D(() => [i("div", Zl, [(e(true), n(c, null, T(l2.items, (l3, n2) => (e(), t(C(fl), { key: n2 }, { default: D(() => [i("a", { onClick: (e2) => ((e3) => {
|
|
1769
|
+
u2.disabled || s2("optionSelected", e3.value);
|
|
1750
1770
|
})(l3), class: a([l3.active ? "bg-gray-100 text-gray-900" : "text-gray-700", "block px-4 py-2 text-sm cursor-pointer"]) }, P(l3.name), 11, ea)]), _: 2 }, 1024))), 128))])]), _: 1 }, 8, ["class"]))]), _: 1 })]), _: 1 }, 8, ["class"]));
|
|
1751
1771
|
} }), ra = { key: 0 }, oa = { class: "flex justify-between" }, ia = { key: 0, class: "block text-sm font-medium text-gray-700" }, sa = { key: 1, class: "text-[10px] text-gray-500 uppercase justify-self-end" }, ua = ["disabled", "name", "placeholder", "type"], da = { key: 2, class: "absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none" }, ca = { key: 1, class: "animate-pulse" }, pa = { key: 0, class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-2/3 md:w-1/4 mb-1.5" }, ga = i("div", { class: "animate-pulse px-4 py-3.5 bg-gray-200 rounded-md flex inline-flex items-center relative inline-block text-left w-full" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-28" })], -1), fa = { name: "uiInput" }, ma = Object.assign(fa, { props: { label: String, type: { type: String, default: "text" }, name: String, placeholder: { type: String, default: "..." }, icon: { type: Function, default: () => {
|
|
1752
1772
|
} }, disabled: Boolean, color: { type: String, default: "gray" }, value: { type: String, default: "" }, error: String, optional: String, addOn: String, rightAddOn: String, loading: { type: Boolean, default: true } }, emits: ["inputChanged", "rightAddOnClicked", "addOnClicked"], setup(t2, { emit: l2 }) {
|
|
1753
|
-
const o2 =
|
|
1754
|
-
|
|
1755
|
-
},
|
|
1756
|
-
return (l3, o3) => t2.loading ? (e(), n("div", ca, [void 0 !== t2.label ? (e(), n("div", pa)) : j("", true), ga])) : (e(), n("div", ra, [i("div", oa, [t2.label ? (e(), n("label", ia, P(t2.label), 1)) : j("", true), t2.optional ? (e(), n("span", sa, P(t2.optional), 1)) : j("", true)]), i("div", { class: a([{ "mt-1": t2.label }, "relative flex"]) }, [t2.addOn ? (e(), n("span", { key: 0, onClick: o3[0] || (o3[0] = (e2) => l3.$emit("addOnClicked")), class: "inline-flex items-center px-3 rounded-l-md border border-r-0 border-gray-300 bg-gray-50 text-gray-500 sm:text-sm cursor-pointer" }, P(t2.addOn), 1)) : j("", true), E(i("input", { "onUpdate:modelValue": o3[1] || (o3[1] = (e2) =>
|
|
1773
|
+
const o2 = l2, s2 = t2, u2 = (e2) => {
|
|
1774
|
+
o2("inputChanged", { value: e2.target.value, name: e2.target.name });
|
|
1775
|
+
}, d2 = y(() => s2.value);
|
|
1776
|
+
return (l3, o3) => t2.loading ? (e(), n("div", ca, [void 0 !== t2.label ? (e(), n("div", pa)) : j("", true), ga])) : (e(), n("div", ra, [i("div", oa, [t2.label ? (e(), n("label", ia, P(t2.label), 1)) : j("", true), t2.optional ? (e(), n("span", sa, P(t2.optional), 1)) : j("", true)]), i("div", { class: a([{ "mt-1": t2.label }, "relative flex"]) }, [t2.addOn ? (e(), n("span", { key: 0, onClick: o3[0] || (o3[0] = (e2) => l3.$emit("addOnClicked")), class: "inline-flex items-center px-3 rounded-l-md border border-r-0 border-gray-300 bg-gray-50 text-gray-500 sm:text-sm cursor-pointer" }, P(t2.addOn), 1)) : j("", true), E(i("input", { "onUpdate:modelValue": o3[1] || (o3[1] = (e2) => d2.value = e2), class: a([{ "border-gray-300": "danger" !== t2.color || "warning" !== t2.color || "success" !== t2.color, "border-red-400": "danger" === t2.color, "border-yellow-400": "warning" === t2.color, "border-green-400": "success" === t2.color, "bg-gray-100": t2.disabled, "text-black": "danger" !== t2.color || "warning" !== t2.color || "success" !== t2.color, "text-red-400": "danger" === t2.color, "text-yellow-400": "warning" === t2.color, "text-green-400": "success" === t2.color, "rounded-md": !t2.addOn || !t2.rightAddOn, "rounded-r-md": t2.addOn, "rounded-l-none": t2.addOn, "rounded-l-md": t2.rightAddOn, "rounded-r-none": t2.rightAddOn }, "shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 placeholder-gray-300"]), disabled: t2.disabled, name: t2.name, placeholder: t2.placeholder, type: t2.type, onInput: u2 }, null, 42, ua), [[L, d2.value]]), t2.rightAddOn ? (e(), n("span", { key: 1, onClick: o3[2] || (o3[2] = (e2) => l3.$emit("rightAddOnClicked")), class: "inline-flex items-center px-3 rounded-r-md border border-l-0 border-gray-300 bg-gray-50 hover:bg-gray-200 text-gray-500 sm:text-sm cursor-pointer" }, P(t2.rightAddOn), 1)) : j("", true), t2.icon ? (e(), n("div", da, [r(z, { icon: t2.icon, color: t2.color, loading: t2.loading }, null, 8, ["icon", "color", "loading"]), E(r(z, { icon: C($l), color: "green", loading: t2.loading }, null, 8, ["icon", "loading"]), [[B, "success" === t2.color]]), E(r(z, { icon: C(Ul), color: "yellow", loading: t2.loading }, null, 8, ["icon", "loading"]), [[B, "warning" === t2.color]]), E(r(z, { icon: C(Ql), color: "red", loading: t2.loading }, null, 8, ["icon", "loading"]), [[B, "danger" === t2.color]])])) : j("", true)], 2), E(i("p", { class: a([{ "text-gray-400": "danger" !== t2.color || "warning" !== t2.color || "success" !== t2.color, "text-red-400": "danger" === t2.color, "text-yellow-400": "warning" === t2.color, "text-green-400": "success" === t2.color }, "mt-2 text-xs flex flex-row items-center"]) }, P(t2.error), 3), [[B, t2.error]])]));
|
|
1757
1777
|
} }), va = { key: 0 }, ya = { class: "flex justify-between" }, ba = { key: 0, class: "block text-sm font-medium text-gray-700" }, ha = { key: 1, class: "text-[10px] text-gray-500 uppercase" }, xa = ["onDrop"], wa = { class: "space-y-1 flex flex-col items-center justify-center" }, ka = { class: "flex text-sm text-gray-600 flex flex-col sm:flex-row text-center" }, Sa = { for: "file-upload", class: "relative cursor-pointer rounded-md font-medium text-indigo-600 focus-within:outline-none focus-within:ring-2 focus-within:ring-indigo-500 focus-within:ring-offset-2 hover:text-indigo-500" }, Ca = ["accept"], Oa = { class: "pl-1" }, Da = { class: "text-xs text-gray-500 pb-4" }, Ma = { class: "mt-2 text-xs flex flex-row items-center text-red-300" }, Pa = { key: 1, class: "animate-pulse" }, _a = [i("div", { class: "flex justify-center items-center flex-col rounded-md border-2 border-dashed px-6 pt-5 pb-6 border-gray-200" }, [i("div", { class: "rounded-full h-20 w-20 bg-gray-200 mb-4" }), i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-full md:w-1/3 mb-3" }), i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-full md:w-1/4 mb-3" })], -1)], Ta = { name: "uiInputFile" }, ja = Object.assign(Ta, { props: { name: String, label: String, optional: String, placeholder: String, dragAndDrop: String, fileTypesAndSizes: String, error: String, accept: String, icon: { type: Function, default: function(t2, l2) {
|
|
1758
1778
|
return e(), n("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", "stroke-width": "1.5", stroke: "currentColor", "aria-hidden": "true" }, [i("path", { "stroke-linecap": "round", "stroke-linejoin": "round", d: "M7.5 7.5h-.75A2.25 2.25 0 004.5 9.75v7.5a2.25 2.25 0 002.25 2.25h7.5a2.25 2.25 0 002.25-2.25v-7.5a2.25 2.25 0 00-2.25-2.25h-.75m0-3l-3-3m0 0l-3 3m3-3v11.25m6-2.25h.75a2.25 2.25 0 012.25 2.25v7.5a2.25 2.25 0 01-2.25 2.25h-7.5a2.25 2.25 0 01-2.25-2.25v-.75" })]);
|
|
1759
1779
|
} }, loading: { type: Boolean, default: true } }, emits: ["filesUploaded"], setup(t2, { emit: l2 }) {
|
|
1760
|
-
const o2 =
|
|
1780
|
+
const o2 = s(""), u2 = l2, d2 = t2, c2 = (e2) => {
|
|
1761
1781
|
let t3 = e2.dataTransfer.files;
|
|
1762
|
-
|
|
1763
|
-
},
|
|
1764
|
-
|
|
1782
|
+
u2("filesUploaded", t3), d2.filename = t3[0].name;
|
|
1783
|
+
}, p2 = (e2) => {
|
|
1784
|
+
u2("filesUploaded", e2.target.files), d2.filename = e2.target.files[0].name;
|
|
1765
1785
|
};
|
|
1766
|
-
return (l3,
|
|
1767
|
-
}, ["prevent"])), onDrop: I(
|
|
1786
|
+
return (l3, s2) => t2.loading ? (e(), n("div", Pa, _a)) : (e(), n("div", va, [i("div", ya, [t2.label ? (e(), n("label", ba, P(t2.label), 1)) : j("", true), t2.optional ? (e(), n("span", ha, P(t2.optional), 1)) : j("", true)]), i("div", { class: a([[{ "mt-1": t2.label }, { "border-gray-300 hover:border-gray-400": !t2.error }, { "border-red-300 hover:border-red-400": t2.error }], "dropArea flex justify-center rounded-md border-2 border-dashed px-6 pt-5 pb-6"]), onDragover: s2[0] || (s2[0] = I(() => {
|
|
1787
|
+
}, ["prevent"])), onDrop: I(c2, ["prevent"]) }, [i("div", wa, [r(z, { icon: t2.icon, size: "massive", color: "gray", "aria-hidden": "true", class: "mb-4", loading: t2.loading }, null, 8, ["icon", "loading"]), i("div", ka, [i("label", Sa, [i("span", null, P(t2.placeholder), 1), i("input", { id: "file-upload", name: "file-upload", type: "file", class: "sr-only", accept: t2.accept, onChange: p2 }, null, 40, Ca)]), i("p", Oa, P(t2.dragAndDrop), 1)]), i("p", Da, P(t2.fileTypesAndSizes), 1), E(i("p", { class: "font-bold text-xs uppercase block p-2 bg-gray-200 rounded" }, P(o2.value), 513), [[B, "" !== o2.value]])])], 42, xa), E(i("p", Ma, [r(z, { icon: C(Xl), color: "red", class: "mr-2", loading: t2.loading }, null, 8, ["icon", "loading"]), M(P(t2.error), 1)], 512), [[B, t2.error]])]));
|
|
1768
1788
|
} }), Ea = { class: "relative mt-1" }, La = { key: 1, class: "animate-pulse px-4 py-2.5 bg-gray-200 rounded-md flex justify-between items-center w-full" }, Ba = i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2" }, null, -1), Ia = { name: "uiSelect" }, Ra = Object.assign(Ia, { props: { items: { type: Array, required: true }, label: String, select: Object, loading: { type: Boolean, default: true } }, emits: ["selectChanged"], setup(l2, { emit: o2 }) {
|
|
1769
|
-
const u2 =
|
|
1770
|
-
|
|
1789
|
+
const u2 = s(""), d2 = o2, p2 = l2, g2 = s(p2.select), f2 = y(() => "" === u2.value ? p2.items : p2.items.filter((e2) => e2.name.toLowerCase().includes(u2.value.toLowerCase()))), m2 = () => {
|
|
1790
|
+
d2("selectChanged", g2.value);
|
|
1771
1791
|
};
|
|
1772
|
-
return (o3, s2) => l2.loading ? (e(), n("div", La, [Ba, r(C(zl), { "aria-hidden": "true", class: "-mr-1 ml-2 h-5 w-5 text-gray-300 dark:text-gray-400" })])) : (e(), t(C(
|
|
1792
|
+
return (o3, s2) => l2.loading ? (e(), n("div", La, [Ba, r(C(zl), { "aria-hidden": "true", class: "-mr-1 ml-2 h-5 w-5 text-gray-300 dark:text-gray-400" })])) : (e(), t(C(ct), { key: 0, modelValue: g2.value, "onUpdate:modelValue": [s2[1] || (s2[1] = (e2) => g2.value = e2), s2[3] || (s2[3] = (e2) => m2())], as: "div", onClick: s2[2] || (s2[2] = (e2) => m2()) }, { default: D(() => [r(C(pt), { class: "block text-sm font-medium text-gray-700" }, { default: D(() => [M(P(l2.label), 1)]), _: 1 }), i("div", Ea, [r(C(ft), { "display-value": (e2) => e2 == null ? void 0 : e2.name, class: "w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-10 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm", onChange: s2[0] || (s2[0] = (e2) => u2.value = e2.target.value) }, null, 8, ["display-value"]), r(C(gt), { class: "absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none" }, { default: D(() => [r(C(zl), { "aria-hidden": "true", class: "h-5 w-5 text-gray-400" })]), _: 1 }), f2.value.length > 0 ? (e(), t(C(mt), { key: 0, class: "absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm" }, { default: D(() => [(e(true), n(c, null, T(f2.value, (l3) => (e(), t(C(vt), { key: l3.id, value: l3, as: "template" }, { default: D(({ active: t2, selected: o4 }) => [i("li", { class: a(["relative cursor-default select-none py-2 pl-3 pr-9", t2 ? "bg-indigo-600 text-white" : "text-gray-900"]) }, [i("span", { class: a(["block truncate", o4 && "font-semibold"]) }, P(l3.name), 3), o4 ? (e(), n("span", { key: 0, class: a(["absolute inset-y-0 right-0 flex items-center pr-4", t2 ? "text-white" : "text-indigo-600"]) }, [r(C($l), { "aria-hidden": "true", class: "h-5 w-5", loading: true })], 2)) : j("", true)], 2)]), _: 2 }, 1032, ["value"]))), 128))]), _: 1 })) : j("", true)])]), _: 1 }, 8, ["modelValue"]));
|
|
1773
1793
|
} }), Aa = { key: 1, class: "inline-flex items-center px-3 py-2.5 rounded text-xs font-medium leading-none animate-pulse bg-gray-200" }, Fa = [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-12" }, null, -1)], Na = { name: "uiTag" }, $a = Object.assign(Na, { props: { color: { type: String, default: "primary" }, loading: { type: Boolean, default: true } }, setup: (t2) => (l2, r2) => t2.loading ? (e(), n("div", Aa, Fa)) : (e(), n("span", { key: 0, class: a([{ "bg-indigo-100 text-indigo-800 border border-indigo-200": "primary" === t2.color, "bg-red-100 text-red-800 border border-red-200": "danger" === t2.color, "bg-yellow-100 text-yellow-800 border border-yellow-200": "warning" === t2.color, "bg-green-100 text-green-800 border border-green-200": "success" === t2.color, "bg-black text-white border border-black": "black" === t2.color, "text-black border border-gray-200 bg-white": "white" === t2.color }, "inline-flex items-center px-3 py-2 rounded text-xs font-medium leading-none"]) }, [o(l2.$slots, "default")], 2)) }), Ha = { key: 0 }, Ya = { key: 0, class: "block text-sm font-medium text-gray-700" }, Va = ["disabled", "placeholder"], za = { key: 1, class: "animate-pulse" }, qa = [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-2/3 md:w-1/4 mb-1.5" }, null, -1), i("div", { class: "h-24 bg-gray-200 rounded-lg flex inline-flex items-center relative inline-block text-left w-full" }, null, -1)], Ua = { name: "uiTextArea" }, Wa = Object.assign(Ua, { props: { label: String, placeholder: { type: String, default: "..." }, value: String, color: String, disabled: { type: Boolean, default: false }, error: String, loading: { type: Boolean, default: true } }, emits: ["inputChanged"], setup(t2, { emit: l2 }) {
|
|
1774
|
-
const o2 = (e2) => {
|
|
1775
|
-
|
|
1776
|
-
},
|
|
1777
|
-
return (l3,
|
|
1794
|
+
const o2 = l2, u2 = (e2) => {
|
|
1795
|
+
o2("inputChanged", e2.target.value);
|
|
1796
|
+
}, d2 = s(t2.value);
|
|
1797
|
+
return (l3, o3) => t2.loading ? (e(), n("div", za, qa)) : (e(), n("div", Ha, [t2.label ? (e(), n("label", Ya, P(t2.label), 1)) : j("", true), i("div", { class: a({ "mt-1": t2.label }) }, [E(i("textarea", { disabled: t2.disabled, rows: "4", "onUpdate:modelValue": o3[0] || (o3[0] = (e2) => d2.value = e2), placeholder: t2.placeholder, class: a(["shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm rounded-md", { "border-gray-300": "danger" !== t2.color || "warning" !== t2.color || "success" !== t2.color, "border-red-300": "danger" === t2.color, "border-yellow-400": "warning" === t2.color, "border-green-400": "success" === t2.color, "bg-gray-100": t2.disabled, "text-black": "danger" !== t2.color || "warning" !== t2.color || "success" !== t2.color, "text-red-300": "danger" === t2.color, "text-yellow-400": "warning" === t2.color, "text-green-400": "success" === t2.color }]), onChange: u2 }, null, 42, Va), [[R, d2.value]])], 2), E(i("p", { class: a([{ "text-gray-300": "danger" !== t2.color || "warning" !== t2.color || "success" !== t2.color, "text-red-300": "danger" === t2.color, "text-yellow-400": "warning" === t2.color, "text-green-400": "success" === t2.color }, "mt-2 text-xs flex flex-row items-center"]) }, [r(z, { icon: C(Xl), color: "red", class: "mr-2" }, null, 8, ["icon"]), M(P(t2.error), 1)], 2), [[B, t2.error]])]));
|
|
1778
1798
|
} }), Ka = { class: "text-sm font-medium text-gray-900" }, Ja = { key: 0, class: "text-sm text-gray-500 ml-2" }, Ga = { key: 1, class: "animate-pulse flex items-center" }, Xa = [i("div", { class: "relative bg-gray-200 rounded-full w-12 h-6 p-1 flex items-center" }, [i("div", { class: "rounded-full bg-gray-300 dark:bg-gray-400 h-4 w-4" })], -1), i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-16 ml-2" }, null, -1)], Qa = { name: "uiToggle" }, Za = Object.assign(Qa, { props: { item: { type: Object, required: true }, checked: { type: Boolean, default: false }, disabled: { type: Boolean, default: false }, loading: { type: Boolean, default: true } }, setup(l2) {
|
|
1779
1799
|
const o2 = s(l2.checked);
|
|
1780
1800
|
return (s2, u2) => l2.loading ? (e(), n("div", Ga, Xa)) : (e(), t(C(xl), { key: 0, as: "div", class: "flex items-center relative" }, { default: D(() => [r(C(wl), { disabled: l2.disabled, onClick: u2[0] || (u2[0] = (e2) => s2.$emit("toggleChanged", { item: l2.item, active: !o2.value })), modelValue: o2.value, "onUpdate:modelValue": u2[1] || (u2[1] = (e2) => o2.value = e2), class: a([o2.value ? "bg-indigo-600" : "bg-gray-200", "relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2"]) }, { default: D(() => [i("span", { "aria-hidden": "true", class: a([o2.value ? "translate-x-5" : "translate-x-0", l2.disabled ? "bg-gray-300" : "", "pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out"]) }, null, 2)]), _: 1 }, 8, ["disabled", "modelValue", "class"]), r(C(kl), { as: "span", class: "ml-3" }, { default: D(() => [i("span", Ka, P(l2.item.title), 1), l2.item.subtitle ? (e(), n("span", Ja, P(l2.item.subtitle), 1)) : j("", true)]), _: 1 }), l2.item.action ? (e(), n("span", { key: 0, class: "cursor-pointer text-indigo-600 hover:text-indigo-400 uppercase text-xs absolute right-0 bottom-0.5", onClick: u2[2] || (u2[2] = (e2) => s2.$emit("actionClicked", l2.item)) }, P(l2.item.action), 1)) : j("", true)]), _: 1 }));
|
|
@@ -1782,17 +1802,17 @@ const Zl = { class: "py-1" }, ea = ["onClick"], ta = { key: 1, class: "animate-p
|
|
|
1782
1802
|
var _a2;
|
|
1783
1803
|
return l2.loading ? (e(), n("div", Mn, Pn)) : (e(), n("div", { key: 0, class: "rounded-lg bg-white shadow p-6 cursor-pointer", onClick: r2[0] || (r2[0] = (e2) => a2.$emit("cardSelected", { id: l2.id, name: l2.name, type: l2.type, tags: l2.tags })) }, [i("div", kn, [i("img", { class: "w-16 h-16 rounded-full mb-4 sm:mb-0 sm:mr-4", src: l2.logo }, null, 8, Sn), i("div", null, [i("h4", Cn, P(l2.name), 1), i("p", On, P(l2.type), 1)])]), ((_a2 = l2.tags) == null ? void 0 : _a2.length) > 0 ? (e(), n("div", Dn, [(e(true), n(c, null, T(l2.tags, (a3) => (e(), t($a, { class: "mb-1 mr-1", key: a3.name, color: a3.color, loading: l2.loading }, { default: D(() => [M(P(a3.name), 1)]), _: 2 }, 1032, ["color", "loading"]))), 128))])) : j("", true)]));
|
|
1784
1804
|
} }), jn = { name: "uiFilter" }, En = Object.assign(jn, { props: { position: { type: String, default: "left" }, items: { type: Array, required: true }, label: { type: String, required: true }, loading: { type: Boolean, default: true } }, emits: ["filterSelected"], setup(l2, { emit: a2 }) {
|
|
1785
|
-
const n2 = s(l2.items);
|
|
1786
|
-
return (
|
|
1787
|
-
|
|
1805
|
+
const n2 = a2, r2 = s(l2.items);
|
|
1806
|
+
return (a3, o2) => (e(), t(na, { loading: l2.loading, onOptionSelected: o2[0] || (o2[0] = (e2) => ((e3) => {
|
|
1807
|
+
r2.value.forEach((t2) => {
|
|
1788
1808
|
t2.value !== e3 ? t2.active = false : t2.active = true;
|
|
1789
|
-
}),
|
|
1790
|
-
})(e2)), position: l2.position, items:
|
|
1809
|
+
}), n2("filterSelected", e3);
|
|
1810
|
+
})(e2)), position: l2.position, items: r2.value, label: l2.label }, null, 8, ["loading", "position", "items", "label"]));
|
|
1791
1811
|
} }), Ln = i("div", { class: "fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity" }, null, -1), Bn = { class: "fixed inset-0 z-10 overflow-y-auto" }, In = { class: "flex min-h-full items-end justify-center p-4 text-center sm:items-center sm:p-0" }, Rn = { class: "absolute top-0 right-0 hidden pt-4 pr-4 sm:block" }, An = i("span", { class: "sr-only" }, "X", -1), Fn = { class: "sm:flex sm:items-start" }, Nn = { class: "mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left sm:mr-4" }, $n = { class: "mt-4 text-gray-500 text-sm" }, Hn = { key: 0, class: "mt-8" }, Yn = ["onClick"], Vn = { name: "uiModal" }, zn = Object.assign(Vn, { props: { title: String, actions: Object, modalName: String, open: { type: Boolean, default: false }, type: { type: String, default: "default" }, loading: { type: Boolean, default: false } }, emits: ["modalAction"], setup(l2, { emit: s2 }) {
|
|
1792
|
-
const u2 = l2, d2 = (e2) => {
|
|
1793
|
-
|
|
1812
|
+
const u2 = l2, d2 = s2, p2 = (e2) => {
|
|
1813
|
+
d2("modalAction", { modal: u2.modalName, action: e2 });
|
|
1794
1814
|
};
|
|
1795
|
-
return (s3, u3) => (e(), t(C(Rl), { as: "template", show: l2.open }, { default: D(() => [r(C(Kt), { as: "div", class: "relative z-10", onClose: u3[1] || (u3[1] = (e2) =>
|
|
1815
|
+
return (s3, u3) => (e(), t(C(Rl), { as: "template", show: l2.open }, { default: D(() => [r(C(Kt), { as: "div", class: "relative z-10", onClose: u3[1] || (u3[1] = (e2) => p2("close")) }, { default: D(() => [r(C(Bl), { as: "template", enter: "ease-out duration-300", "enter-from": "opacity-0", "enter-to": "opacity-100", leave: "ease-in duration-200", "leave-from": "opacity-100", "leave-to": "opacity-0" }, { default: D(() => [Ln]), _: 1 }), i("div", Bn, [i("div", In, [r(C(Bl), { as: "template", enter: "ease-out duration-300", "enter-from": "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95", "enter-to": "opacity-100 translate-y-0 sm:scale-100", leave: "ease-in duration-200", "leave-from": "opacity-100 translate-y-0 sm:scale-100", "leave-to": "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" }, { default: D(() => [r(C(Jt), { class: "relative transform rounded-lg bg-white px-4 pb-4 pt-5 text-left shadow-xl transition-all sm:my-8 w-9/12 sm:w-full sm:max-w-lg sm:p-6" }, { default: D(() => [i("div", Rn, [i("button", { type: "button", class: "rounded-md bg-white text-gray-400 hover:text-gray-500 focus:outline-none", onClick: u3[0] || (u3[0] = (e2) => p2("close")) }, [An, r(z, { icon: C(Ql), "aria-hidden": "true", loading: l2.loading }, null, 8, ["icon", "loading"])])]), i("div", Fn, [i("div", { class: a(["mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full sm:mx-0 sm:h-10 sm:w-10", { "bg-red-100": "danger" === l2.type, "bg-green-100": "success" === l2.type, "bg-indigo-100": "default" === l2.type, "bg-yellow-100": "warning" === l2.type }]) }, [E(r(C(Ql), { class: "h-6 w-6 text-red-600", "aria-hidden": "true" }, null, 512), [[B, "danger" === l2.type]]), E(r(C($l), { class: "h-6 w-6 text-green-600", "aria-hidden": "true" }, null, 512), [[B, "success" === l2.type]]), E(r(C(Ul), { class: "h-6 w-6 text-yellow-600", "aria-hidden": "true" }, null, 512), [[B, "warning" === l2.type]]), E(r(C(Wl), { class: "h-6 w-6 text-indigo-600", "aria-hidden": "true" }, null, 512), [[B, "default" === l2.type]])], 2), i("div", Nn, [r(C(Gt), { as: "h3", class: "text-lg font-medium leading-6 text-gray-900" }, { default: D(() => [M(P(l2.title), 1)]), _: 1 }), i("div", $n, [o(s3.$slots, "default")]), l2.actions ? (e(), n("div", Hn, [(e(true), n(c, null, T(l2.actions, (t2, l3) => (e(), n("button", { key: l3, type: "button", class: "inline-flex w-full justify-center rounded-md border border-transparent bg-indigo-600 px-4 py-2 text-base font-medium text-white shadow-sm hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 mb-2 sm:mb-0 mr-2 sm:w-auto sm:text-sm", onClick: (e2) => p2(t2.value) }, P(t2.name), 9, Yn))), 128))])) : j("", true)])])]), _: 3 })]), _: 3 })])])]), _: 3 })]), _: 3 }, 8, ["show"]));
|
|
1796
1816
|
} }), qn = { class: "w-full flex flex-col items-center space-y-4 sm:items-end" }, Un = { key: 0, class: "max-w-sm w-full bg-white shadow-lg rounded-lg pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden" }, Wn = { class: "p-4" }, Kn = { class: "flex items-start" }, Jn = { class: "flex-shrink-0 mt-0.5" }, Gn = { class: "ml-3 w-0 flex-1 pt-0.5" }, Xn = { class: "font-medium text-gray-900" }, Qn = { class: "mt-1 text-sm text-gray-500" }, Zn = { class: "ml-4 flex-shrink-0 flex" }, er = i("span", { class: "sr-only" }, "Close", -1), tr = { name: "uiNotification" }, lr = Object.assign(tr, { props: { show: Boolean, type: { type: String, default: "info" }, title: String, message: String, fixed: { type: Boolean, default: true } }, setup(t2) {
|
|
1797
1817
|
const l2 = t2, o2 = y(() => l2.show);
|
|
1798
1818
|
return (l3, s2) => (e(), n("div", { "aria-live": "assertive", class: a([{ fixed: t2.fixed }, "inset-0 flex items-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start"]) }, [i("div", qn, [r(_, { "enter-active-class": "transform ease-out duration-300 transition", "enter-from-class": "translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-2", "enter-to-class": "translate-y-0 opacity-100 sm:translate-x-0", "leave-active-class": "transition ease-in duration-100", "leave-from-class": "opacity-100", "leave-to-class": "opacity-0" }, { default: D(() => [o2.value ? (e(), n("div", Un, [i("div", Wn, [i("div", Kn, [i("div", Jn, [E(r(C(Nl), { "aria-hidden": "true", class: "h-6 w-6 text-green-400" }, null, 512), [[B, "success" === t2.type]]), E(r(C(Xl), { "aria-hidden": "true", class: "h-6 w-6 text-red-400" }, null, 512), [[B, "danger" === t2.type]]), E(r(C(Ul), { "aria-hidden": "true", class: "h-6 w-6 text-yellow-400" }, null, 512), [[B, "warning" === t2.type]]), E(r(C(Jl), { "aria-hidden": "true", class: "h-6 w-6 text-indigo-600" }, null, 512), [[B, "info" === t2.type]])]), i("div", Gn, [i("p", Xn, P(t2.title), 1), i("p", Qn, P(t2.message), 1)]), i("div", Zn, [i("button", { class: "bg-white rounded-md inline-flex text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500", type: "button", onClick: s2[0] || (s2[0] = (e2) => l3.$emit("closeNotification")) }, [er, r(C(Ql), { "aria-hidden": "true", class: "h-5 w-5" })])])])])])) : j("", true)]), _: 1 })])], 2));
|
|
@@ -1897,49 +1917,57 @@ const vo = yr(Hr, [["render", function(l2, a2, o2, s2, u2, d2) {
|
|
|
1897
1917
|
const p2 = F("DateSelector"), g2 = F("Day"), f2 = F("uiButton"), m2 = F("Price"), v2 = F("SkeletonTable");
|
|
1898
1918
|
return o2.loading ? (e(), t(v2, { key: 1 })) : (e(), n("div", Yr, [i("div", Vr, [i("div", zr, [i("div", qr, [i("table", Ur, [i("tbody", Wr, [i("tr", null, [i("th", Kr, [r(p2, { selectedDate: l2.date, onDateSelected: a2[0] || (a2[0] = (e2) => d2.changeDate(e2)) }, null, 8, ["selectedDate"])]), (e(true), n(c, null, T(d2.days, (t2, l3) => (e(), n("th", { scope: "col", key: l3, class: "text-sm font-semibold text-gray-900 p-0" }, [r(g2, { class: "border-l border-gray-200 px-6 py-3", day: t2 }, null, 8, ["day"])]))), 128))]), i("tr", null, [i("th", Jr, [Gr, r(f2, { loading: o2.loading, class: "ml-4", size: "small", onClick: d2.changeCategoryBulkPrices }, { default: D(() => [M("Cambiar precios en bloque ")]), _: 1 }, 8, ["loading", "onClick"])])]), i("tr", null, [Xr, (e(true), n(c, null, T(o2.category.selectionPrices, (t2, l3) => (e(), n("td", { key: l3, class: "p-0" }, [r(m2, { onClick: (e2) => d2.changeCategorySelectionPrice(t2), class: "border-l border-gray-200 px-6 py-3 text-indigo-600 hover:text-indigo-400 font-bold cursor-pointer", price: t2, currency: o2.currency.symbol, isBasePrice: true }, null, 8, ["onClick", "price", "currency"])]))), 128))]), i("tr", null, [Qr, (e(true), n(c, null, T(o2.category.upgradePrices, (t2, l3) => (e(), n("td", { key: l3, class: "p-0" }, [r(m2, { onClick: (e2) => d2.changeCategoryUpgradePrice(t2), class: "border-l border-gray-200 px-6 py-3 text-indigo-600 hover:text-indigo-400 font-bold cursor-pointer bg-gray-100", price: t2, currency: o2.currency.symbol, isBasePrice: true }, null, 8, ["onClick", "price", "currency"])]))), 128))]), i("tr", null, [i("th", Zr, [((_a2 = l2.selectedRooms) == null ? void 0 : _a2.length) > 0 && ((_b = o2.actions) == null ? void 0 : _b.length) > 0 ? (e(), n("div", eo, [(e(true), n(c, null, T(o2.actions, (t2, a3) => (e(), n("button", { onClick: (e2) => d2.tableAction({ action: t2.id, items: l2.selectedRooms }), key: a3, type: "button", class: "inline-flex items-center rounded bg-indigo-600 hover:bg-indigo-800 px-2.5 py-1.5 text-xs font-medium text-white shadow-sm disabled:cursor-not-allowed disabled:opacity-30" }, P(t2.name), 9, to))), 128))])) : j("", true), lo])]), i("tr", null, [i("th", ao, [i("input", { type: "checkbox", class: "absolute left-4 top-1/2 -mt-2 h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-600", checked: d2.indeterminate || l2.selectedRooms.length === o2.rooms.length, indeterminate: d2.indeterminate, onChange: a2[1] || (a2[1] = (e2) => l2.selectedRooms = e2.target.checked ? o2.rooms.map((e3) => e3.name) : []) }, null, 40, no), ro]), oo, io, so]), (e(true), n(c, null, T(o2.rooms, (t2) => (e(), n("tr", { key: t2.name, class: "even:bg-gray-100" }, [i("td", uo, [l2.selectedRooms.includes(t2.name) ? (e(), n("div", co)) : j("", true), E(i("input", { type: "checkbox", class: "absolute left-4 top-1/2 -mt-2 h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-600", value: t2.name, "onUpdate:modelValue": a2[2] || (a2[2] = (e2) => l2.selectedRooms = e2) }, null, 8, po), [[N, l2.selectedRooms]]), i("span", go, P(t2.name), 1)]), i("td", fo, P(t2.building), 1), i("td", mo, P(t2.floor), 1), (e(true), n(c, null, T(t2.selectionPrices, (t3, l3) => (e(), n("td", { class: "p-0", key: l3 }, [r(m2, { onClick: (e2) => d2.changeRoomPrice(t3), class: "border-l border-gray-200 px-6 py-3 text-indigo-600 hover:text-indigo-400 cursor-pointer", price: t3, currency: o2.currency.symbol, basePrice: d2.getSelectionBasePrice(t3) }, null, 8, ["onClick", "price", "currency", "basePrice"])]))), 128))]))), 128))])])])])])]));
|
|
1899
1919
|
}]]), yo = { class: "chart-selector flex flex-row items-center justify-center" }, bo = { name: "rangeSelector" }, ho = Object.assign(bo, { props: { range: { type: String } }, emits: ["rangeSelected"], setup(t2, { emit: l2 }) {
|
|
1900
|
-
const r2 = t2;
|
|
1901
|
-
let
|
|
1902
|
-
const
|
|
1903
|
-
|
|
1920
|
+
const r2 = l2, o2 = t2;
|
|
1921
|
+
let s2 = y(() => o2.range);
|
|
1922
|
+
const u2 = (e2) => {
|
|
1923
|
+
s2.value = e2, r2("rangeSelected", e2);
|
|
1904
1924
|
};
|
|
1905
|
-
return (t3, l3) => (e(), n("ul", yo, [i("li", { class: a({ selected: "24h" === C(
|
|
1925
|
+
return (t3, l3) => (e(), n("ul", yo, [i("li", { class: a({ selected: "24h" === C(s2) }), onClick: l3[0] || (l3[0] = (e2) => u2("24h")) }, " 24H ", 2), i("li", { class: a({ selected: "7d" === C(s2) }), onClick: l3[1] || (l3[1] = (e2) => u2("7d")) }, "7D", 2), i("li", { class: a({ selected: "1m" === C(s2) }), onClick: l3[2] || (l3[2] = (e2) => u2("1m")) }, "1M", 2), i("li", { class: a({ selected: "3m" === C(s2) }), onClick: l3[3] || (l3[3] = (e2) => u2("3m")) }, "3M", 2)]));
|
|
1906
1926
|
} }), xo = { class: "chart-header flex flex-row justify-between" }, wo = { class: "text-sm font-medium text-gray-500 truncate" }, ko = { class: "chart-content" }, So = { class: "h-full w-full flex items-center justify-center flex-col" }, Co = i("p", { class: "text-xs uppercase text-gray-300 font-bold" }, "No data", -1), Oo = { class: "card chart apex-chart px-4 py-5 bg-white shadow rounded-lg overflow-hidden sm:p-6 flex grow h-80" }, Do = [i("div", { role: "status", class: "w-full animate-pulse h-full flex flex-col" }, [i("div", { class: "h-2.5 w-36 bg-gray-200 rounded-full mb-2.5" }), i("div", { class: "w-48 h-2 mb-6 bg-gray-200 rounded-full" }), i("div", { class: "flex flex-row justify-between items-baseline grow gap-x-1" }, [i("div", { class: "w-full bg-gray-200 rounded h-full" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" }), i("div", { class: "w-full bg-gray-200 rounded h-1/3" }), i("div", { class: "w-full bg-gray-200 rounded h-4/5" }), i("div", { class: "w-full bg-gray-200 rounded h-full" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" }), i("div", { class: "w-full bg-gray-200 rounded h-1/3" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" }), i("div", { class: "w-full bg-gray-200 rounded h-1/3" }), i("div", { class: "w-full bg-gray-200 rounded h-4/5" }), i("div", { class: "w-full bg-gray-200 rounded h-full" }), i("div", { class: "w-full bg-gray-200 rounded h-4/5" }), i("div", { class: "w-full bg-gray-200 rounded h-full" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" }), i("div", { class: "w-full bg-gray-200 rounded h-1/3" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" })])], -1)], Mo = { name: "uiChart" }, Po = Object.assign(Mo, { props: { title: String, id: { type: String, default: "noChartId" }, type: { type: String, default: "area" }, series: { type: Array, required: true }, options: { type: Object, required: true }, loading: { type: Boolean, default: true }, empty: { type: Boolean, default: false }, range: { type: String, default: "24h" }, horizontal: { type: Boolean, default: false }, stacked: { type: Boolean, default: false }, height: { type: Number, default: 320 } }, emits: ["selectedRange", "chartUpdated", "dataPointSelection"], setup(t2, { emit: l2 }) {
|
|
1907
|
-
const o2 = t2;
|
|
1908
|
-
let
|
|
1909
|
-
"area" ===
|
|
1910
|
-
const
|
|
1911
|
-
|
|
1927
|
+
const o2 = l2, s2 = t2;
|
|
1928
|
+
let u2 = { chart: { toolbar: { show: false }, zoom: { enabled: false } }, colors: ["#715aff", "#00ffff", "#aba9ba"], stroke: { show: true, curve: "stepline", lineCap: "butt", width: 1, dashArray: 0 }, dataLabels: { enabled: false }, markers: { strokeWidth: 0, size: 4, hover: { size: 8 } } };
|
|
1929
|
+
"area" === s2.type && (u2.tooltip = { intersect: true, shared: false });
|
|
1930
|
+
const d2 = y(() => s2.series), p2 = y(() => (u2.chart.stacked = s2.stacked, { ...u2, ...s2.options, plotOptions: { bar: { horizontal: s2.horizontal } } })), g2 = () => o2("chartUpdated"), f2 = (e2, t3, l3) => {
|
|
1931
|
+
o2("dataPointSelection", { id: s2.id, chartContext: t3, config: l3, event: e2 });
|
|
1912
1932
|
};
|
|
1913
|
-
return (l3, o3) => (e(), n(c, null, [E(i("div", { class: a(["h-[" + t2.height + "px]", "card chart apex-chart px-4 py-5 bg-white shadow rounded-lg overflow-hidden sm:p-6 flex grow"]) }, [i("div", xo, [i("div", wo, P(t2.title), 1), r(ho, { range: t2.range, onRangeSelected: o3[0] || (o3[0] = (e2) => l3.$emit("selectedRange", { range: e2, chartId: t2.id })) }, null, 8, ["range"])]), E(i("div", ko, [r(C(Y), { type: t2.type, series:
|
|
1933
|
+
return (l3, o3) => (e(), n(c, null, [E(i("div", { class: a(["h-[" + t2.height + "px]", "card chart apex-chart px-4 py-5 bg-white shadow rounded-lg overflow-hidden sm:p-6 flex grow"]) }, [i("div", xo, [i("div", wo, P(t2.title), 1), r(ho, { range: t2.range, onRangeSelected: o3[0] || (o3[0] = (e2) => l3.$emit("selectedRange", { range: e2, chartId: t2.id })) }, null, 8, ["range"])]), E(i("div", ko, [r(C(Y), { type: t2.type, series: d2.value, width: "100%", height: t2.height, options: p2.value, onUpdated: g2, onMounted: g2, onDataPointSelection: f2 }, null, 8, ["type", "series", "height", "options"])], 512), [[B, !t2.empty]]), E(i("div", So, [r(z, { icon: C(Ul), color: "gray", loading: false, size: "huge" }, null, 8, ["icon"]), Co], 512), [[B, t2.empty]])], 2), [[B, !t2.loading]]), E(i("div", Oo, Do, 512), [[B, t2.loading]])], 64));
|
|
1914
1934
|
} }), _o = { name: "uiFooter" }, To = { class: "bg-white" }, jo = [i("div", { class: "mx-auto py-6 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8" }, [i("div", { class: "mt-8 md:mt-0 md:order-1" }, [i("p", { class: "text-center text-base text-gray-400" }, "© Made by Hotelinking.")])], -1)];
|
|
1915
1935
|
const Eo = yr(_o, [["render", function(t2, l2, a2, r2, o2, i2) {
|
|
1916
1936
|
return e(), n("footer", To, jo);
|
|
1917
1937
|
}]]), Lo = i("div", { class: "spinner h-12 w-12 mb-6" }, [i("img", { src: "https://images.hotelinking.com/ui/loader.gif", alt: "loading animation" })], -1), Bo = { name: "uiLoadScreen" }, Io = Object.assign(Bo, { props: { title: String, message: String, fixed: { type: Boolean, default: true } }, setup: (t2) => (l2, r2) => (e(), n("div", { class: a([{ fixed: t2.fixed }, "load-screen h-full w-full top-0 left-0 z-50 flex flex-col items-center justify-center bg-gray-50"]) }, [Lo, E(i("h2", { class: "text-xs font-bold text-center uppercase mb-2" }, P(t2.title), 513), [[B, t2.title]]), E(i("p", { class: "text-xs text-center uppercase md:w-1/4" }, P(t2.message), 513), [[B, t2.message]])], 2)) }), Ro = { key: 0, class: "py-6 flex items-center justify-between" }, Ao = { class: "flex-1 flex justify-between sm:hidden" }, Fo = { href: "#", class: "relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50" }, No = { href: "#", class: "ml-3 relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50" }, $o = { class: "hidden sm:flex-1 sm:flex sm:items-center sm:justify-between" }, Ho = { class: "text-sm text-gray-700" }, Yo = { class: "font-bold" }, Vo = { class: "font-bold" }, zo = { class: "relative z-0 inline-flex rounded-md shadow-sm -space-x-px", "aria-label": "Pagination" }, qo = { class: "sr-only" }, Uo = ["onClick"], Wo = { class: "sr-only" }, Ko = { key: 1, class: "py-6 flex flex-row justify-between items-center animate-pulse" }, Jo = [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/5" }, null, -1), i("div", { class: "h-10 w-32 bg-gray-200 rounded dark:bg-gray-300" }, null, -1)], Go = { name: "uiPagination" }, Xo = Object.assign(Go, { props: { current: { type: Number, requires: true }, total: { type: Number, requires: true }, loading: { type: Boolean, default: true } }, emits: ["changePage"], setup(t2, { emit: l2 }) {
|
|
1918
|
-
const u2 =
|
|
1938
|
+
const u2 = l2, d2 = t2, p2 = s(3), g2 = y(() => Math.max(1, Number(d2.current) - Number(p2.value))), f2 = y(() => Math.min(Number(d2.current) + Number(p2.value), Number(d2.total))), m2 = y(() => {
|
|
1919
1939
|
let e2 = [];
|
|
1920
|
-
for (let t3 = Number(
|
|
1940
|
+
for (let t3 = Number(g2.value); t3 <= Number(f2.value); t3++)
|
|
1921
1941
|
e2.push(t3);
|
|
1922
1942
|
return e2;
|
|
1923
1943
|
});
|
|
1924
|
-
return (
|
|
1925
|
-
} }), Qo = { class: "hidden md:flex md:flex-col sticky md:inset-y-0" }, Zo = { class: "flex flex-col flex-grow overflow-y-auto" }, ei = { class: "grow flex flex-col" }, ti = { class: "flex-1 space-y-1", "aria-label": "Sidebar" }, li = { key: 0 }, ai = ["onClick"], ni = { key: 0 }, ri = { key: 1, class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2" }, oi = { key: 0, class: "flex-1" }, ii = { key: 1, class: "flex-1" }, si = [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2" }, null, -1)], ui = { key: 0 }, di = { key: 1, class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2" }, ci = { name: "uiSidebar" }, pi = Object.assign(ci, { props: { navigation: { type: Array, required: true }, loading: { type: Boolean, default: true } }, emits: ["sideBarClick"], setup: (l2, { emit: o2 }) => (s2, u2) => (e(), n("div", Qo, [i("div", Zo, [i("div", ei, [i("nav", ti, [(e(true), n(c, null, T(l2.navigation, (s3) => (e(), n(c, { key: s3.name }, [s3.children ? (e(), t(C(tl), { key: 1, as: "div", class: "space-y-1" }, { default: D(({ open: i2 }) => [r(C(ll), { class: a([s3.current ? "bg-indigo-600 text-white" : "text-gray-600 hover:bg-gray-50 hover:text-gray-900", "group w-full flex items-center pl-2 pr-1 py-2 text-left text-sm font-medium rounded-md focus:outline-none"]) }, { default: D(() => [r(z, { loading: l2.loading, icon: s3.icon, class: "mr-3 flex-shrink-0 h-6 w-6 text-gray-400 group-hover:text-gray-500", "aria-hidden": "true" }, null, 8, ["loading", "icon"]), l2.loading ? (e(), n("div", ii, si)) : (e(), n("span", oi, P(s3.name), 1)), r(C(Vl), { class: a([i2 ? "text-gray-400 rotate-90" : "text-gray-400", "ml-3 flex-shrink-0 h-3 w-3 transform group-hover:text-gray-400 transition-colors ease-in-out duration-150"]) }, null, 8, ["class"])]), _: 2 }, 1032, ["class"]), r(C(al), { class: "space-y-1" }, { default: D(() => [(e(true), n(c, null, T(s3.children, (a2) => (e(), t(C(ll), { onClick: (e2) => o2("sideBarClick", a2.id), key: a2.name, class: "group w-full flex items-center pl-11 pr-2 py-2 text-sm font-medium text-gray-600 rounded-md hover:text-gray-900 hover:bg-gray-50" }, { default: D(() => [l2.loading ? (e(), n("div", di)) : (e(), n("span", ui, P(a2.name), 1))]), _: 2 }, 1032, ["onClick"]))), 128))]), _: 2 }, 1024)]), _: 2 }, 1024)) : (e(), n("div", li, [i("button", { onClick: (e2) => o2("sideBarClick", s3.id), class: a([s3.current ? "bg-indigo-600 text-white" : "text-gray-600 hover:bg-gray-50 hover:text-gray-900", "group w-full flex items-center pl-2 py-2 text-sm font-medium rounded-md"]) }, [r(z, { loading: l2.loading, icon: s3.icon, class: a([s3.current ? "text-white" : "text-gray-400 group-hover:text-gray-500", "mr-3 flex-shrink-0 h-6 w-6"]), "aria-hidden": "true" }, null, 8, ["loading", "icon", "class"]), l2.loading ? (e(), n("div", ri)) : (e(), n("span", ni, P(s3.name), 1))], 10, ai)]))], 64))), 128))])])])])) }), gi = { key: 0 }, fi = { class: "ml-16 text-sm font-medium text-gray-500 truncate" }, mi = { class: "ml-16 flex items-baseline pb-5" }, vi = { class: "text-2xl font-semibold text-gray-900" }, yi = { class: "absolute bottom-0 inset-x-0 bg-gray-50 px-4 py-4 sm:px-6" }, bi = { class: "text-sm" }, hi = { key: 1 }, xi = { class: "relative bg-white pt-5 px-4 sm:pt-6 sm:px-6 shadow rounded-lg overflow-hidden h-full pb-6" }, wi = { class: "absolute bg-gray-200 rounded-md p-3 animate-pulse" }, ki = i("div", { class: "ml-16" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2 mb-4 animate-pulse" })], -1), Si = i("div", { class: "ml-16" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2 animate-pulse" })], -1), Ci = { name: "uiStats" }, Oi = Object.assign(Ci, { props: { item: { type: Object, required: true }, loading: { type: Boolean, default: true } }, emits: ["statClick"], setup: (l2, { emit: o2 }) => (s2, u2) => l2.loading ? (e(), n("div", hi, [i("div", xi, [i("dt", null, [i("div", wi, [r(z, { loading: l2.loading, icon: l2.item.icon, class: "h-6 w-6 text-white", "aria-hidden": "true" }, null, 8, ["loading", "icon"])]), ki, Si])])])) : (e(), n("div", gi, [i("div", { class: a(["relative bg-white pt-5 px-4 sm:pt-6 sm:px-6 shadow rounded-lg overflow-hidden h-full", { "pb-12": l2.item.showFooter }]) }, [i("dt", null, [i("div", { class: a(["absolute rounded-md p-3", { "bg-indigo-500": !l2.item.color, "bg-green-500": "success" === l2.item.color, "bg-red-500": "danger" === l2.item.color, "bg-yellow-500": "warning" === l2.item.color }]) }, [r(z, { icon: l2.item.icon, class: "h-6 w-6 text-white", "aria-hidden": "true", loading: l2.loading }, null, 8, ["icon", "loading"])], 2), i("p", fi, P(l2.item.name), 1)]), i("dd", mi, [i("p", vi, P(l2.item.stat), 1), l2.item.changeType ? (e(), n("p", { key: 0, class: a([{ "text-green-600": "increase" === l2.item.changeType, "text-red-600": "decrease" === l2.item.changeType, "text-black": "neutral" === l2.item.changeType }, "ml-2 flex items-baseline text-sm font-semibold"]) }, ["increase" === l2.item.changeType ? (e(), t(C(Fl), { key: 0, class: "self-center flex-shrink-0 h-3 w-3 text-green-500", "aria-hidden": "true" })) : j("", true), "decrease" === l2.item.changeType ? (e(), t(C(Al), { key: 1, class: "self-center flex-shrink-0 h-3 w-3 text-red-500", "aria-hidden": "true" })) : j("", true), M(" " + P(l2.item.change), 1)], 2)) : j("", true), E(i("div", yi, [i("div", bi, [i("span", { onClick: u2[0] || (u2[0] = (e2) => o2("statClick", l2.item.id)), class: "font-medium text-indigo-600 hover:text-indigo-500 cursor-pointer" }, P(l2.item.actionText), 1)])], 512), [[B, l2.item.showFooter]])])], 2)])) }), Di = { key: 0, class: "overflow-hidden bg-white shadow sm:rounded-lg" }, Mi = { class: "px-4 py-5 sm:px-6" }, Pi = { class: "text-lg font-medium leading-6 text-gray-900" }, _i = { class: "mt-1 max-w-2xl text-sm text-gray-500" }, Ti = { class: "border-t border-gray-200" }, ji = { class: "text-sm font-medium text-gray-500" }, Ei = { key: 0, class: "mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0 break-normal" }, Li = { key: 1, class: "mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0 break-normal" }, Bi = ["onClick"], Ii = { key: 3, class: "mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0 break-words" }, Ri = { key: 1, class: "overflow-hidden bg-white shadow sm:rounded-lg" }, Ai = A('<div class="px-4 py-5 sm:px-6 animate-pulse"><h3 class="text-lg font-medium leading-6 text-gray-900"><div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/4"></div></h3><p class="mt-1 max-w-2xl text-sm text-gray-500"><div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-2/5"></div></p></div>', 1), Fi = { class: "border-t border-gray-200" }, Ni = [i("dt", { class: "text-sm font-medium text-gray-500" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-12" })], -1), i("dd", { class: "mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0 break-words" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-12" })], -1)], $i = { name: "uiStripedCard" }, Hi = Object.assign($i, { props: { title: String, subtitle: String, items: Object, loading: { type: Boolean, default: true } }, emits: ["itemClicked"], setup: (l2, { emit: o2 }) => (o3, s2) => l2.loading ? (e(), n("div", Ri, [Ai, i("div", Fi, [i("dl", null, [(e(), n(c, null, T(5, (e2) => i("div", { key: e2, class: a(["px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6", [e2 % 2 == 0 ? "bg-gray-50" : "bg-white"]]) }, Ni, 2)), 64))])])])) : (e(), n("div", Di, [i("div", Mi, [i("h3", Pi, P(l2.title), 1), i("p", _i, P(l2.subtitle), 1)]), i("div", Ti, [i("dl", null, [(e(true), n(c, null, T(l2.items, (s3, u2) => (e(), n("div", { key: u2, class: a(["px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6", [u2 % 2 == 0 ? "bg-gray-50" : "bg-white"]]) }, [i("dt", ji, P(s3.title), 1), "tag" === s3.type ? (e(), n("dd", Ei, [r($a, { color: s3.color }, { default: D(() => [M(P(s3.text), 1)]), _: 2 }, 1032, ["color"])])) : "tags" === s3.type ? (e(), n("dd", Li, [(e(true), n(c, null, T(s3.tags, (a2, n2) => (e(), t($a, { loading: l2.loading, key: n2, color: a2.color, class: "mr-2 mb-2" }, { default: D(() => [M(P(a2.text), 1)]), _: 2 }, 1032, ["loading", "color"]))), 128))])) : "link" === s3.type ? (e(), n("dd", { key: 2, class: "mt-1 text-sm text-indigo-600 hover:text-indigo-400 sm:col-span-2 sm:mt-0 cursor-pointer", onClick: (e2) => o3.$emit("itemClicked", s3.emits) }, P(s3.text), 9, Bi)) : (e(), n("dd", Ii, P(s3.text), 1))], 2))), 128))])])])) }), Yi = { class: "absolute top-10 bg-indigo-600 text-white text-xs p-2 rounded z-10 font-light w-60 flex flex-row items-start" }, Vi = i("svg", { class: "absolute -top-3 left-0", xmlns: "http://www.w3.org/2000/svg", width: "27.687", height: "26.954", viewBox: "0 0 27.687 26.954" }, [i("path", { id: "Polígono_1", "data-name": "Polígono 1", d: "M10.5,0,21,19H0Z", transform: "translate(0 10.5) rotate(-30)", fill: "#4f46e5" })], -1), zi = { class: "ml-2" }, qi = { __name: "tooltip", props: { tip: { type: String, required: true } }, setup: (t2) => (l2, a2) => (e(), n("div", Yi, [Vi, i("div", null, [r(z, { icon: C(Gl), loading: false, color: "white", size: "big" }, null, 8, ["icon"])]), i("span", zi, P(t2.tip), 1)])) }, Ui = { key: 0 }, Wi = { class: "flex flex-col" }, Ki = { class: "-my-2 overflow-x-auto" }, Ji = { class: "inline-block min-w-full py-2 align-middle px-1" }, Gi = { class: "relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg" }, Xi = { key: 0, class: "absolute top-0 left-12 flex h-12 items-center space-x-3 sm:left-16 bg-white shadow rounded px-4 py-1" }, Qi = ["onClick"], Zi = { class: "min-w-full table-fixed divide-y divide-gray-300" }, es = { class: "bg-gray-50" }, ts = ["checked", "indeterminate"], ls = ["onMouseover", "onMouseleave"], as = ["onClick"], ns = { key: 2, class: "group flex items-center uppercase text-xs" }, rs = { class: "divide-y divide-gray-200 bg-white" }, os = { key: 0, class: "absolute inset-y-0 left-0 w-0.5 bg-indigo-600" }, is = ["value"], ss = ["onClick"], us = { key: 2 }, ds = { name: "uiTable" }, cs = Object.assign(ds, { props: { header: { type: Array, required: true }, items: { type: Array, required: true }, orderedBy: String, orderDirection: { type: String, default: "asc" }, actions: Array, loading: { type: Boolean, default: true } }, emits: ["tableAction", "orderBy"], setup(l2, { emit: o2 }) {
|
|
1926
|
-
const
|
|
1927
|
-
|
|
1944
|
+
return (l3, s2) => t2.loading ? (e(), n("div", Ko, Jo)) : (e(), n("div", Ro, [i("div", Ao, [i("a", Fo, [o(l3.$slots, "previous")]), i("a", No, [o(l3.$slots, "next")])]), i("div", $o, [i("div", null, [i("p", Ho, [o(l3.$slots, "showing"), M(), i("span", Yo, P(t2.current + " "), 1), o(l3.$slots, "of"), M(), i("span", Vo, P(t2.total), 1)])]), i("div", null, [i("nav", zo, [E(i("button", { onClick: s2[0] || (s2[0] = (e2) => u2("changePage", t2.current - 1)), class: "relative inline-flex items-center px-2 py-2 rounded-l-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50" }, [i("span", qo, [o(l3.$slots, "previous")]), r(C(Yl), { class: "h-5 w-5", "aria-hidden": "true" })], 512), [[B, 1 !== t2.current]]), (e(true), n(c, null, T(m2.value, (l4) => (e(), n("button", { onClick: (e2) => u2("changePage", l4), key: l4, "aria-current": "page", class: a([[l4 === t2.current ? "z-10 bg-indigo-50 border-indigo-500 text-indigo-600" : "bg-white border-gray-300 text-gray-500 hover:bg-gray-50"], "relative inline-flex items-center px-4 py-2 border text-sm font-medium"]) }, P(l4), 11, Uo))), 128)), E(i("button", { onClick: s2[1] || (s2[1] = (e2) => u2("changePage", t2.current + 1)), class: "relative inline-flex items-center px-2 py-2 rounded-r-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50" }, [i("span", Wo, [o(l3.$slots, "next")]), r(C(Vl), { class: "h-5 w-5", "aria-hidden": "true" })], 512), [[B, t2.current !== t2.total]])])])])]));
|
|
1945
|
+
} }), Qo = { class: "hidden md:flex md:flex-col sticky md:inset-y-0" }, Zo = { class: "flex flex-col flex-grow overflow-y-auto" }, ei = { class: "grow flex flex-col" }, ti = { class: "flex-1 space-y-1", "aria-label": "Sidebar" }, li = { key: 0 }, ai = ["onClick"], ni = { key: 0 }, ri = { key: 1, class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2" }, oi = { key: 0, class: "flex-1" }, ii = { key: 1, class: "flex-1" }, si = [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2" }, null, -1)], ui = { key: 0 }, di = { key: 1, class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2" }, ci = { name: "uiSidebar" }, pi = Object.assign(ci, { props: { navigation: { type: Array, required: true }, loading: { type: Boolean, default: true } }, emits: ["sideBarClick"], setup(l2, { emit: o2 }) {
|
|
1946
|
+
const s2 = o2;
|
|
1947
|
+
return (o3, u2) => (e(), n("div", Qo, [i("div", Zo, [i("div", ei, [i("nav", ti, [(e(true), n(c, null, T(l2.navigation, (o4) => (e(), n(c, { key: o4.name }, [o4.children ? (e(), t(C(tl), { key: 1, as: "div", class: "space-y-1" }, { default: D(({ open: i2 }) => [r(C(ll), { class: a([o4.current ? "bg-indigo-600 text-white" : "text-gray-600 hover:bg-gray-50 hover:text-gray-900", "group w-full flex items-center pl-2 pr-1 py-2 text-left text-sm font-medium rounded-md focus:outline-none"]) }, { default: D(() => [r(z, { loading: l2.loading, icon: o4.icon, class: "mr-3 flex-shrink-0 h-6 w-6 text-gray-400 group-hover:text-gray-500", "aria-hidden": "true" }, null, 8, ["loading", "icon"]), l2.loading ? (e(), n("div", ii, si)) : (e(), n("span", oi, P(o4.name), 1)), r(C(Vl), { class: a([i2 ? "text-gray-400 rotate-90" : "text-gray-400", "ml-3 flex-shrink-0 h-3 w-3 transform group-hover:text-gray-400 transition-colors ease-in-out duration-150"]) }, null, 8, ["class"])]), _: 2 }, 1032, ["class"]), r(C(al), { class: "space-y-1" }, { default: D(() => [(e(true), n(c, null, T(o4.children, (a2) => (e(), t(C(ll), { onClick: (e2) => s2("sideBarClick", a2.id), key: a2.name, class: "group w-full flex items-center pl-11 pr-2 py-2 text-sm font-medium text-gray-600 rounded-md hover:text-gray-900 hover:bg-gray-50" }, { default: D(() => [l2.loading ? (e(), n("div", di)) : (e(), n("span", ui, P(a2.name), 1))]), _: 2 }, 1032, ["onClick"]))), 128))]), _: 2 }, 1024)]), _: 2 }, 1024)) : (e(), n("div", li, [i("button", { onClick: (e2) => s2("sideBarClick", o4.id), class: a([o4.current ? "bg-indigo-600 text-white" : "text-gray-600 hover:bg-gray-50 hover:text-gray-900", "group w-full flex items-center pl-2 py-2 text-sm font-medium rounded-md"]) }, [r(z, { loading: l2.loading, icon: o4.icon, class: a([o4.current ? "text-white" : "text-gray-400 group-hover:text-gray-500", "mr-3 flex-shrink-0 h-6 w-6"]), "aria-hidden": "true" }, null, 8, ["loading", "icon", "class"]), l2.loading ? (e(), n("div", ri)) : (e(), n("span", ni, P(o4.name), 1))], 10, ai)]))], 64))), 128))])])])]));
|
|
1948
|
+
} }), gi = { key: 0 }, fi = { class: "ml-16 text-sm font-medium text-gray-500 truncate" }, mi = { class: "ml-16 flex items-baseline pb-5" }, vi = { class: "text-2xl font-semibold text-gray-900" }, yi = { class: "absolute bottom-0 inset-x-0 bg-gray-50 px-4 py-4 sm:px-6" }, bi = { class: "text-sm" }, hi = { key: 1 }, xi = { class: "relative bg-white pt-5 px-4 sm:pt-6 sm:px-6 shadow rounded-lg overflow-hidden h-full pb-6" }, wi = { class: "absolute bg-gray-200 rounded-md p-3 animate-pulse" }, ki = i("div", { class: "ml-16" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2 mb-4 animate-pulse" })], -1), Si = i("div", { class: "ml-16" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2 animate-pulse" })], -1), Ci = { name: "uiStats" }, Oi = Object.assign(Ci, { props: { item: { type: Object, required: true }, loading: { type: Boolean, default: true } }, emits: ["statClick"], setup(l2, { emit: o2 }) {
|
|
1949
|
+
const s2 = o2;
|
|
1950
|
+
return (o3, u2) => l2.loading ? (e(), n("div", hi, [i("div", xi, [i("dt", null, [i("div", wi, [r(z, { loading: l2.loading, icon: l2.item.icon, class: "h-6 w-6 text-white", "aria-hidden": "true" }, null, 8, ["loading", "icon"])]), ki, Si])])])) : (e(), n("div", gi, [i("div", { class: a(["relative bg-white pt-5 px-4 sm:pt-6 sm:px-6 shadow rounded-lg overflow-hidden h-full", { "pb-12": l2.item.showFooter }]) }, [i("dt", null, [i("div", { class: a(["absolute rounded-md p-3", { "bg-indigo-500": !l2.item.color, "bg-green-500": "success" === l2.item.color, "bg-red-500": "danger" === l2.item.color, "bg-yellow-500": "warning" === l2.item.color }]) }, [r(z, { icon: l2.item.icon, class: "h-6 w-6 text-white", "aria-hidden": "true", loading: l2.loading }, null, 8, ["icon", "loading"])], 2), i("p", fi, P(l2.item.name), 1)]), i("dd", mi, [i("p", vi, P(l2.item.stat), 1), l2.item.changeType ? (e(), n("p", { key: 0, class: a([{ "text-green-600": "increase" === l2.item.changeType, "text-red-600": "decrease" === l2.item.changeType, "text-black": "neutral" === l2.item.changeType }, "ml-2 flex items-baseline text-sm font-semibold"]) }, ["increase" === l2.item.changeType ? (e(), t(C(Fl), { key: 0, class: "self-center flex-shrink-0 h-3 w-3 text-green-500", "aria-hidden": "true" })) : j("", true), "decrease" === l2.item.changeType ? (e(), t(C(Al), { key: 1, class: "self-center flex-shrink-0 h-3 w-3 text-red-500", "aria-hidden": "true" })) : j("", true), M(" " + P(l2.item.change), 1)], 2)) : j("", true), E(i("div", yi, [i("div", bi, [i("span", { onClick: u2[0] || (u2[0] = (e2) => s2("statClick", l2.item.id)), class: "font-medium text-indigo-600 hover:text-indigo-500 cursor-pointer" }, P(l2.item.actionText), 1)])], 512), [[B, l2.item.showFooter]])])], 2)]));
|
|
1951
|
+
} }), Di = { key: 0, class: "overflow-hidden bg-white shadow sm:rounded-lg" }, Mi = { class: "px-4 py-5 sm:px-6" }, Pi = { class: "text-lg font-medium leading-6 text-gray-900" }, _i = { class: "mt-1 max-w-2xl text-sm text-gray-500" }, Ti = { class: "border-t border-gray-200" }, ji = { class: "text-sm font-medium text-gray-500" }, Ei = { key: 0, class: "mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0 break-normal" }, Li = { key: 1, class: "mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0 break-normal" }, Bi = ["onClick"], Ii = { key: 3, class: "mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0 break-words" }, Ri = { key: 1, class: "overflow-hidden bg-white shadow sm:rounded-lg" }, Ai = A('<div class="px-4 py-5 sm:px-6 animate-pulse"><h3 class="text-lg font-medium leading-6 text-gray-900"><div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/4"></div></h3><p class="mt-1 max-w-2xl text-sm text-gray-500"><div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-2/5"></div></p></div>', 1), Fi = { class: "border-t border-gray-200" }, Ni = [i("dt", { class: "text-sm font-medium text-gray-500" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-12" })], -1), i("dd", { class: "mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0 break-words" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-12" })], -1)], $i = { name: "uiStripedCard" }, Hi = Object.assign($i, { props: { title: String, subtitle: String, items: Object, loading: { type: Boolean, default: true } }, emits: ["itemClicked"], setup: (l2, { emit: o2 }) => (o3, s2) => l2.loading ? (e(), n("div", Ri, [Ai, i("div", Fi, [i("dl", null, [(e(), n(c, null, T(5, (e2) => i("div", { key: e2, class: a(["px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6", [e2 % 2 == 0 ? "bg-gray-50" : "bg-white"]]) }, Ni, 2)), 64))])])])) : (e(), n("div", Di, [i("div", Mi, [i("h3", Pi, P(l2.title), 1), i("p", _i, P(l2.subtitle), 1)]), i("div", Ti, [i("dl", null, [(e(true), n(c, null, T(l2.items, (s3, u2) => (e(), n("div", { key: u2, class: a(["px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6", [u2 % 2 == 0 ? "bg-gray-50" : "bg-white"]]) }, [i("dt", ji, P(s3.title), 1), "tag" === s3.type ? (e(), n("dd", Ei, [r($a, { color: s3.color }, { default: D(() => [M(P(s3.text), 1)]), _: 2 }, 1032, ["color"])])) : "tags" === s3.type ? (e(), n("dd", Li, [(e(true), n(c, null, T(s3.tags, (a2, n2) => (e(), t($a, { loading: l2.loading, key: n2, color: a2.color, class: "mr-2 mb-2" }, { default: D(() => [M(P(a2.text), 1)]), _: 2 }, 1032, ["loading", "color"]))), 128))])) : "link" === s3.type ? (e(), n("dd", { key: 2, class: "mt-1 text-sm text-indigo-600 hover:text-indigo-400 sm:col-span-2 sm:mt-0 cursor-pointer", onClick: (e2) => o3.$emit("itemClicked", s3.emits) }, P(s3.text), 9, Bi)) : (e(), n("dd", Ii, P(s3.text), 1))], 2))), 128))])])])) }), Yi = { class: "absolute top-10 bg-indigo-600 text-white text-xs p-2 rounded z-10 font-light w-60 flex flex-row items-start" }, Vi = i("svg", { class: "absolute -top-3 left-0", xmlns: "http://www.w3.org/2000/svg", width: "27.687", height: "26.954", viewBox: "0 0 27.687 26.954" }, [i("path", { id: "Polígono_1", "data-name": "Polígono 1", d: "M10.5,0,21,19H0Z", transform: "translate(0 10.5) rotate(-30)", fill: "#4f46e5" })], -1), zi = { class: "ml-2" }, qi = { __name: "tooltip", props: { tip: { type: String, required: true } }, setup: (t2) => (l2, a2) => (e(), n("div", Yi, [Vi, i("div", null, [r(z, { icon: C(Gl), loading: false, color: "white", size: "big" }, null, 8, ["icon"])]), i("span", zi, P(t2.tip), 1)])) }, Ui = { key: 0 }, Wi = { class: "flex flex-col" }, Ki = { class: "-my-2 overflow-x-auto" }, Ji = { class: "inline-block min-w-full py-2 align-middle px-1" }, Gi = { class: "relative overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg" }, Xi = { key: 0, class: "absolute top-0 left-12 flex h-12 items-center space-x-3 sm:left-16 bg-white shadow rounded px-4 py-1 z-10" }, Qi = ["onClick"], Zi = { class: "min-w-full table-fixed divide-y divide-gray-300" }, es = { class: "bg-gray-50" }, ts = ["checked", "indeterminate"], ls = ["onMouseover", "onMouseleave"], as = ["onClick"], ns = { key: 2, class: "group flex items-center uppercase text-xs" }, rs = { class: "divide-y divide-gray-200 bg-white" }, os = { key: 0, class: "absolute inset-y-0 left-0 w-0.5 bg-indigo-600" }, is = ["value"], ss = ["onClick"], us = { key: 2 }, ds = { name: "uiTable" }, cs = Object.assign(ds, { props: { header: { type: Array, required: true }, items: { type: Array, required: true }, orderedBy: String, orderDirection: { type: String, default: "asc" }, actions: Array, loading: { type: Boolean, default: true } }, emits: ["tableAction", "orderBy"], setup(l2, { emit: o2 }) {
|
|
1952
|
+
let u2 = s([]);
|
|
1928
1953
|
s(false);
|
|
1929
|
-
let
|
|
1930
|
-
const g2 = y(() =>
|
|
1931
|
-
|
|
1954
|
+
let d2 = s(void 0);
|
|
1955
|
+
const p2 = o2, g2 = l2, f2 = y(() => u2.value.length > 0 && u2.value.length < g2.items.length), m2 = (e2, t2) => {
|
|
1956
|
+
d2 !== e2 && t2 && (d2.value = e2), t2 || (d2.value = void 0);
|
|
1932
1957
|
};
|
|
1933
|
-
return (
|
|
1958
|
+
return (o3, s2) => {
|
|
1934
1959
|
var _a2, _b;
|
|
1935
|
-
return l2.loading ? (e(), t(Lr, { key: 1 })) : (e(), n("div", Ui, [i("div", Wi, [i("div", Ki, [i("div", Ji, [i("div", Gi, [((_a2 = C(
|
|
1960
|
+
return l2.loading ? (e(), t(Lr, { key: 1 })) : (e(), n("div", Ui, [i("div", Wi, [i("div", Ki, [i("div", Ji, [i("div", Gi, [((_a2 = C(u2)) == null ? void 0 : _a2.length) > 0 && ((_b = l2.actions) == null ? void 0 : _b.length) > 0 ? (e(), n("div", Xi, [(e(true), n(c, null, T(l2.actions, (t2, l3) => (e(), n("button", { onClick: (e2) => p2("tableAction", { action: t2.id, items: C(u2) }), key: l3, type: "button", class: "inline-flex items-center rounded bg-indigo-600 hover:bg-indigo-800 px-2.5 py-1.5 text-xs font-medium text-white shadow-sm disabled:cursor-not-allowed disabled:opacity-30" }, P(t2.name), 9, Qi))), 128))])) : j("", true), i("table", Zi, [i("thead", es, [i("tr", null, [i("th", { scope: "col", class: a([l2.actions ? "px-6 sm:px-8" : "px-3", "relative"]) }, [l2.actions ? (e(), n("input", { key: 0, checked: f2.value || C(u2).length === l2.items.length, indeterminate: f2.value, class: "absolute left-4 top-1/2 -mt-2 h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500", type: "checkbox", onChange: s2[0] || (s2[0] = (e2) => $(u2) ? u2.value = e2.target.checked ? l2.items.map((e3) => e3.id) : [] : u2 = e2.target.checked ? l2.items.map((e3) => e3.id) : []) }, null, 40, ts)) : j("", true)], 2), (e(true), n(c, null, T(l2.header, (o4, s3) => (e(), n("th", { key: s3, class: "py-3.5 pr-3 text-left font-semibold text-gray-900 flex-wrap relative", scope: "col", onMouseover: (e2) => m2(o4.name, true), onMouseleave: (e2) => m2(o4.name, false) }, [o4.tooltip ? E((e(), t(qi, { key: 0, tip: o4.tooltip }, null, 8, ["tip"])), [[B, C(d2) === o4.name]]) : j("", true), o4.value ? (e(), n("button", { key: 1, class: "group flex items-center uppercase text-xs relative", onClick: (e2) => p2("orderBy", { value: o4.value, orderDirection: "asc" === l2.orderDirection ? "desc" : "asc" }) }, [i("span", null, P(o4.name), 1), i("span", { class: a([[o4.value === l2.orderedBy ? "bg-indigo-600 text-white group-hover:bg-gray-300" : "text-gray-400 group-hover:visible group-focus:visible"], "ml-2 flex-none rounded group-hover:bg-indigo-200 group-hover:text-white"]) }, [r(z, { icon: "asc" === l2.orderDirection ? C(Hl) : C(ql), loading: l2.loading, color: o4.value === l2.orderedBy ? "white" : "primary" }, null, 8, ["icon", "loading", "color"])], 2)], 8, as)) : (e(), n("p", ns, [i("span", null, P(o4.name), 1)]))], 40, ls))), 128))])]), i("tbody", rs, [(e(true), n(c, null, T(l2.items, (r2, o4) => {
|
|
1936
1961
|
var _a3, _b2;
|
|
1937
|
-
return e(), n("tr", { key: r2.id, class: a([C(
|
|
1962
|
+
return e(), n("tr", { key: r2.id, class: a([C(u2).includes(r2.id) && "bg-gray-50", o4 % 2 == 0 ? void 0 : "bg-gray-50"]) }, [i("td", { class: a([((_a3 = l2.actions) == null ? void 0 : _a3.length) > 0 ? "w-2" : "w-0", "relative"]) }, [C(u2).includes(r2.id) ? (e(), n("div", os)) : j("", true), ((_b2 = l2.actions) == null ? void 0 : _b2.length) > 0 ? E((e(), n("input", { key: 1, "onUpdate:modelValue": s2[1] || (s2[1] = (e2) => $(u2) ? u2.value = e2 : u2 = e2), value: r2.id, class: "absolute left-4 top-1/2 -mt-2 h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500 flex-wrap", type: "checkbox" }, null, 8, is)), [[N, C(u2)]]) : j("", true)], 2), (e(true), n(c, null, T(r2.row, (o5, i2) => (e(), n("td", { key: i2, class: a(["whitespace-nowrap py-4 pr-3 text-sm", C(u2).includes(r2.id) ? "text-indigo-600" : "text-gray-900"]) }, ["object" == typeof o5 && "tag" === o5.type ? (e(), t($a, { key: 0, loading: l2.loading, color: o5.color }, { default: D(() => [M(P(o5.content), 1)]), _: 2 }, 1032, ["loading", "color"])) : "object" == typeof o5 && "link" === o5.type ? (e(), n("span", { key: 1, class: "text-indigo-600 hover:text-indigo-400 cursor-pointer", onClick: (e2) => p2(o5.emits, { id: r2.id, data: (r2 == null ? void 0 : r2.emitWith) || null }) }, P(o5.content), 9, ss)) : (e(), n("span", us, P(o5), 1))], 2))), 128))], 2);
|
|
1938
1963
|
}), 128))])])])])])])]));
|
|
1939
1964
|
};
|
|
1940
|
-
} }), ps = { class: "lg:hidden" }, gs = ["value"], fs = { class: "hidden lg:block" }, ms = { class: "border-b border-gray-200" }, vs = { class: "-mb-px flex space-x-8", "aria-label": "Tabs" }, ys = ["onClick", "aria-current"], bs = { name: "uiTabs" }, hs = Object.assign(bs, { props: { tabs: Array }, emits: ["tabClicked"], setup
|
|
1941
|
-
l2
|
|
1942
|
-
|
|
1965
|
+
} }), ps = { class: "lg:hidden" }, gs = ["value"], fs = { class: "hidden lg:block" }, ms = { class: "border-b border-gray-200" }, vs = { class: "-mb-px flex space-x-8", "aria-label": "Tabs" }, ys = ["onClick", "aria-current"], bs = { name: "uiTabs" }, hs = Object.assign(bs, { props: { tabs: Array }, emits: ["tabClicked"], setup(t2, { emit: l2 }) {
|
|
1966
|
+
const r2 = l2;
|
|
1967
|
+
return (l3, o2) => (e(), n("div", null, [i("div", ps, [i("select", { onChange: o2[0] || (o2[0] = (e2) => {
|
|
1968
|
+
r2("tabClicked", e2.target.value);
|
|
1969
|
+
}), id: "tabs", name: "tabs", class: "block w-full rounded-md border-gray-300 py-2 pl-3 pr-10 text-base focus:border-indigo-500 focus:outline-none focus:ring-indigo-500 sm:text-sm" }, [(e(true), n(c, null, T(t2.tabs, (t3) => (e(), n("option", { value: t3.id, key: t3.name }, P(t3.name), 9, gs))), 128))], 32)]), i("div", fs, [i("div", ms, [i("nav", vs, [(e(true), n(c, null, T(t2.tabs, (t3) => (e(), n("a", { key: t3.name, onClick: (e2) => r2("tabClicked", t3.id), class: a([t3.current ? "border-indigo-500 text-indigo-600" : "border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-200", "whitespace-nowrap flex py-4 px-1 border-b-2 font-medium text-sm cursor-pointer"]), "aria-current": t3.current ? "page" : void 0 }, [M(P(t3.name) + " ", 1), t3.count ? (e(), n("span", { key: 0, class: a([t3.current ? "bg-indigo-100 text-indigo-600" : "bg-gray-100 text-gray-900", "hidden ml-3 py-0.5 px-2.5 rounded-full text-xs font-medium md:inline-block"]) }, P(t3.count), 3)) : j("", true)], 10, ys))), 128))])])])]));
|
|
1970
|
+
} }), xs = { key: 0, class: "bg-white overflow-hidden shadow rounded-lg" }, ws = { class: "px-4 py-5 sm:px-6" }, ks = { class: "text-xl font-bold" }, Ss = { class: "px-4 py-5 sm:p-6" }, Cs = { class: "flow-root" }, Os = { class: "-mb-8", role: "list" }, Ds = { class: "relative pb-8" }, Ms = { key: 0, class: "absolute left-4 top-4 -ml-px h-full w-0.5 bg-gray-200", "aria-hidden": "true" }, Ps = { class: "relative flex space-x-3" }, _s = { class: "min-w-0 flex-1 pt-1.5 flex justify-between space-x-4 items-center" }, Ts = { class: "text-sm text-gray-500" }, js = ["onClick"], Es = { class: "text-right text-sm whitespace-nowrap text-gray-500" }, Ls = ["datetime"], Bs = { class: "bg-gray-50 px-4 py-4 sm:px-6 z-10" }, Is = { class: "text-sm" }, Rs = { class: "h-full w-full flex items-center justify-center flex-col mb-5" }, As = i("p", { class: "text-xs uppercase text-gray-300 font-bold" }, "No data", -1), Fs = { key: 1, class: "bg-white overflow-hidden shadow rounded-lg" }, Ns = i("div", { class: "px-4 py-5 sm:px-6 animate-pulse" }, [i("h1", { class: "text-xl font-bold" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/4" })])], -1), $s = { class: "px-4 py-5 sm:p-6 animate-pulse" }, Hs = { class: "flow-root" }, Ys = { class: "-mb-8", role: "list" }, Vs = { class: "relative pb-8" }, zs = { key: 0, class: "absolute left-4 top-4 -ml-px h-full w-0.5 bg-gray-200", "aria-hidden": "true" }, qs = A('<div class="relative flex space-x-3"><div><span class="h-8 w-8 rounded-full bg-gray-300 flex items-center justify-center ring-4 ring-white"></span></div><div class="min-w-0 flex-1 pt-1.5 flex justify-between space-x-4 items-center"><div><p class="text-sm text-gray-500 flex-1"><div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-full"></div></p></div><div class="text-right text-sm whitespace-nowrap text-gray-500 flex-1"><div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/4"></div></div></div></div>', 1), Us = i("div", { class: "bg-gray-50 px-4 py-4 sm:px-6 z-10 animate-pulse" }, [i("div", { class: "text-sm" }, [i("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/4" })])], -1), Ws = { name: "uiTimeline" }, Ks = Object.assign(Ws, { props: { name: { type: String, required: true }, timeline: { type: Object }, loading: { type: Boolean, default: true }, empty: { type: Boolean, default: false } }, setup: (t2) => (l2, o2) => {
|
|
1943
1971
|
const s2 = F("uiIcon");
|
|
1944
1972
|
return t2.loading ? (e(), n("div", Fs, [Ns, i("div", $s, [i("div", Hs, [i("ul", Ys, [(e(), n(c, null, T(10, (t3) => i("li", { key: l2.index }, [i("div", Vs, [10 !== t3 ? (e(), n("span", zs)) : j("", true), qs])])), 64))])])]), Us])) : (e(), n("div", xs, [i("div", ws, [i("h1", ks, P(t2.name), 1)]), E(i("div", Ss, [i("div", Cs, [i("ul", Os, [(e(true), n(c, null, T(t2.timeline.items, (o3, u2) => (e(), n("li", { key: u2 }, [i("div", Ds, [u2 !== t2.timeline.items.length - 1 ? (e(), n("span", Ms)) : j("", true), i("div", Ps, [i("div", null, [i("span", { class: a([o3.iconBackground, "h-8 w-8 rounded-full flex items-center justify-center ring-4 ring-white"]) }, [r(s2, { loading: t2.loading, icon: o3.icon, "aria-hidden": "true", class: "h-5 w-5 text-white", color: "white" }, null, 8, ["loading", "icon"])], 2)]), i("div", _s, [i("div", null, [i("p", Ts, [i("a", { onClick: (e2) => l2.$emit("timelineEventClicked", o3.linkId), class: "font-medium text-indigo-600 hover:text-indigo-800 cursor-pointer" }, P(o3.target), 9, js), M(" " + P(o3.content), 1)])]), i("div", Es, [i("time", { datetime: o3.datetime }, P(o3.date), 9, Ls)])])])])]))), 128))])])], 512), [[B, !t2.empty]]), E(i("div", Bs, [i("div", Is, [i("a", { class: "cursor-pointer font-medium text-indigo-600 hover:text-indigo-500", onClick: o2[0] || (o2[0] = (e2) => l2.$emit("timelineFooterClicked", t2.timeline.id)) }, P(t2.timeline.footerText), 1)])], 512), [[B, !t2.empty]]), E(i("div", Rs, [r(z, { icon: C(Ul), color: "gray", loading: false, size: "huge" }, null, 8, ["icon"]), As], 512), [[B, t2.empty]])]));
|
|
1945
1973
|
} }), Js = { name: "uiTopbar", props: ["navigation", "logo", "profileMenu", "brand", "accountLogo", "alerted"], components: { Disclosure: tl, DisclosureButton: ll, DisclosurePanel: al, Menu: cl, MenuButton: pl, MenuItem: fl, MenuItems: gl, Bars3Icon: function(t2, l2) {
|
|
@@ -1951,11 +1979,14 @@ const hu = yr(Js, [["render", function(l2, o2, s2, u2, d2, p2) {
|
|
|
1951
1979
|
}]]), xu = { chart: { type: "bar", toolbar: { show: false }, zoom: { enabled: false } }, colors: ["#715aff"], dataLabels: { enabled: true, formatter: function(e2, t2) {
|
|
1952
1980
|
return t2.w.globals.labels[t2.dataPointIndex] + ": " + e2;
|
|
1953
1981
|
} }, markers: { strokeWidth: 0, size: 4, hover: { size: 8 } }, plotOptions: { bar: { borderRadius: 0, horizontal: true, barHeight: "80%", isFunnel: true } } }, wu = { class: "chart-header flex flex-row justify-between" }, ku = { class: "text-sm font-medium text-gray-500 truncate" }, Su = { class: "chart-content" }, Cu = { class: "h-full w-full flex items-center justify-center flex-col" }, Ou = i("p", { class: "text-xs uppercase text-gray-300 font-bold" }, "No data", -1), Du = { class: "card chart apex-chart px-4 py-5 bg-white shadow rounded-lg overflow-hidden sm:p-6 flex grow h-80" }, Mu = [i("div", { role: "status", class: "w-full animate-pulse h-full flex flex-col" }, [i("div", { class: "h-2.5 w-36 bg-gray-200 rounded-full mb-2.5" }), i("div", { class: "w-48 h-2 mb-6 bg-gray-200 rounded-full" }), i("div", { class: "flex flex-row justify-between items-baseline grow gap-x-1" }, [i("div", { class: "w-full bg-gray-200 rounded h-full" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" }), i("div", { class: "w-full bg-gray-200 rounded h-1/3" }), i("div", { class: "w-full bg-gray-200 rounded h-4/5" }), i("div", { class: "w-full bg-gray-200 rounded h-full" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" }), i("div", { class: "w-full bg-gray-200 rounded h-1/3" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" }), i("div", { class: "w-full bg-gray-200 rounded h-1/3" }), i("div", { class: "w-full bg-gray-200 rounded h-4/5" }), i("div", { class: "w-full bg-gray-200 rounded h-full" }), i("div", { class: "w-full bg-gray-200 rounded h-4/5" }), i("div", { class: "w-full bg-gray-200 rounded h-full" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" }), i("div", { class: "w-full bg-gray-200 rounded h-1/3" }), i("div", { class: "w-full bg-gray-200 rounded h-1/2" })])], -1)], Pu = { name: "uiChart" }, _u = Object.assign(Pu, { props: { title: String, id: { type: String, default: "noChartId" }, series: { type: Object, required: true }, options: { type: Object, required: true }, loading: { type: Boolean, default: true }, empty: { type: Boolean, default: false }, range: { type: String, default: "24h" }, height: { type: Number, default: 320 } }, emits: ["selectedRange", "chartUpdated", "dataPointSelection"], setup(t2, { emit: l2 }) {
|
|
1954
|
-
const o2 =
|
|
1955
|
-
|
|
1982
|
+
const o2 = l2, s2 = t2, u2 = y(() => ({ ...s2.options, ...xu })), d2 = y(() => s2.series), p2 = () => o2("chartUpdated"), g2 = (e2, t3, l3) => {
|
|
1983
|
+
o2("dataPointSelection", { id: s2.id, chartContext: t3, config: l3, event: e2 });
|
|
1956
1984
|
};
|
|
1957
|
-
return (l3, o3) => (e(), n(c, null, [E(i("div", { class: a(["h-[" + t2.height + "px]", "card chart apex-chart px-4 py-5 bg-white shadow rounded-lg overflow-hidden sm:p-6 flex grow"]) }, [i("div", wu, [i("div", ku, P(t2.title), 1), r(ho, { range: t2.range, onRangeSelected: o3[0] || (o3[0] = (e2) => l3.$emit("selectedRange", { range: e2, chartId: t2.id })) }, null, 8, ["range"])]), E(i("div", Su, [r(C(Y), { type: l3.bar, series:
|
|
1958
|
-
} }), Tu = { class: "w-full flex flex-col items-center justify-center p-10 grow" }, ju = { class: "text-2xl mt-4 font-bold" }, Eu = { class: "buttons flex flex-row items-center justify-center mt-8 gap-x-1" }, Lu = { __name: "uiNoResults", props: { title: { type: String, required: true }, message: { type: String, required: true }, actions: { type: Array } }, emits: ["action"], setup: (l2, { emit: a2 }) => (a3, o2) => (e(), n("div", Tu, [r(z, { loading: false, icon: C(Ul), size: "massive", color: "gray" }, null, 8, ["icon"]), i("h2", ju, P(l2.title), 1), i("p", null, P(l2.message), 1), i("div", Eu, [(e(true), n(c, null, T(l2.actions, (l3, n2) => (e(), t(J, { key: n2, loading: false, onClick: (e2) => a3.$emit("action", l3.action) }, { default: D(() => [M(P(l3.text), 1)]), _: 2 }, 1032, ["onClick"]))), 128))])])) }, Bu = i("div", { class: "fixed inset-0" }, null, -1), Iu = { class: "fixed inset-0 overflow-hidden" }, Ru = { class: "absolute inset-0 overflow-hidden" }, Au = { class: "pointer-events-none fixed inset-y-0 right-0 flex max-w-full pl-10" }, Fu = { class: "flex h-full flex-col overflow-y-scroll bg-white shadow-xl" }, Nu = { class: "bg-indigo-700 px-4 py-6 sm:px-6" }, $u = { class: "flex items-center justify-between" }, Hu = { class: "ml-3 flex h-7 items-center" }, Yu = i("span", { class: "absolute -inset-2.5" }, null, -1), Vu = i("span", { class: "sr-only" }, "Close panel", -1), zu = { class: "mt-1" }, qu = { class: "text-sm text-indigo-300" }, Uu = { class: "relative flex-1 px-4 py-6 sm:px-6" }, Wu = { name: "uiRightSidebar" }, Ku = Object.assign(Wu, { props: { title: { type: String, required: true }, description: { type: String }, open: { type: Boolean, default: false } }, emits: ["closeRightBar"], setup
|
|
1985
|
+
return (l3, o3) => (e(), n(c, null, [E(i("div", { class: a(["h-[" + t2.height + "px]", "card chart apex-chart px-4 py-5 bg-white shadow rounded-lg overflow-hidden sm:p-6 flex grow"]) }, [i("div", wu, [i("div", ku, P(t2.title), 1), r(ho, { range: t2.range, onRangeSelected: o3[0] || (o3[0] = (e2) => l3.$emit("selectedRange", { range: e2, chartId: t2.id })) }, null, 8, ["range"])]), E(i("div", Su, [r(C(Y), { type: l3.bar, series: d2.value, width: "100%", height: t2.height, options: u2.value, onUpdated: p2, onMounted: p2, onDataPointSelection: g2 }, null, 8, ["type", "series", "height", "options"])], 512), [[B, !t2.empty]]), E(i("div", Cu, [r(z, { icon: C(Ul), color: "gray", loading: false, size: "huge" }, null, 8, ["icon"]), Ou], 512), [[B, t2.empty]])], 2), [[B, !t2.loading]]), E(i("div", Du, Mu, 512), [[B, t2.loading]])], 64));
|
|
1986
|
+
} }), Tu = { class: "w-full flex flex-col items-center justify-center p-10 grow" }, ju = { class: "text-2xl mt-4 font-bold" }, Eu = { class: "buttons flex flex-row items-center justify-center mt-8 gap-x-1" }, Lu = { __name: "uiNoResults", props: { title: { type: String, required: true }, message: { type: String, required: true }, actions: { type: Array } }, emits: ["action"], setup: (l2, { emit: a2 }) => (a3, o2) => (e(), n("div", Tu, [r(z, { loading: false, icon: C(Ul), size: "massive", color: "gray" }, null, 8, ["icon"]), i("h2", ju, P(l2.title), 1), i("p", null, P(l2.message), 1), i("div", Eu, [(e(true), n(c, null, T(l2.actions, (l3, n2) => (e(), t(J, { key: n2, loading: false, onClick: (e2) => a3.$emit("action", l3.action) }, { default: D(() => [M(P(l3.text), 1)]), _: 2 }, 1032, ["onClick"]))), 128))])])) }, Bu = i("div", { class: "fixed inset-0" }, null, -1), Iu = { class: "fixed inset-0 overflow-hidden" }, Ru = { class: "absolute inset-0 overflow-hidden" }, Au = { class: "pointer-events-none fixed inset-y-0 right-0 flex max-w-full pl-10" }, Fu = { class: "flex h-full flex-col overflow-y-scroll bg-white shadow-xl" }, Nu = { class: "bg-indigo-700 px-4 py-6 sm:px-6" }, $u = { class: "flex items-center justify-between" }, Hu = { class: "ml-3 flex h-7 items-center" }, Yu = i("span", { class: "absolute -inset-2.5" }, null, -1), Vu = i("span", { class: "sr-only" }, "Close panel", -1), zu = { class: "mt-1" }, qu = { class: "text-sm text-indigo-300" }, Uu = { class: "relative flex-1 px-4 py-6 sm:px-6" }, Wu = { name: "uiRightSidebar" }, Ku = Object.assign(Wu, { props: { title: { type: String, required: true }, description: { type: String }, open: { type: Boolean, default: false } }, emits: ["closeRightBar"], setup(l2, { emit: a2 }) {
|
|
1987
|
+
const n2 = a2;
|
|
1988
|
+
return (a3, s2) => (e(), t(C(Rl), { as: "template", show: l2.open }, { default: D(() => [r(C(Kt), { as: "div", class: "relative z-10", onClose: s2[1] || (s2[1] = (e2) => n2("closeRightBar")) }, { default: D(() => [Bu, i("div", Iu, [i("div", Ru, [i("div", Au, [r(C(Bl), { as: "template", enter: "transform transition ease-in-out duration-500 sm:duration-700", "enter-from": "translate-x-full", "enter-to": "translate-x-0", leave: "transform transition ease-in-out duration-500 sm:duration-700", "leave-from": "translate-x-0", "leave-to": "translate-x-full" }, { default: D(() => [r(C(Jt), { class: "pointer-events-auto w-screen max-w-md" }, { default: D(() => [i("div", Fu, [i("div", Nu, [i("div", $u, [r(C(Gt), { class: "text-base font-semibold leading-6 text-white" }, { default: D(() => [M(P(l2.title), 1)]), _: 1 }), i("div", Hu, [i("button", { type: "button", class: "relative rounded-md bg-indigo-700 text-indigo-200 hover:text-white outline-none", onClick: s2[0] || (s2[0] = (e2) => n2("closeRightBar")) }, [Yu, Vu, r(C(Ql), { class: "h-6 w-6 ring-0", "aria-hidden": "true" })])])]), i("div", zu, [i("p", qu, P(l2.description), 1)])]), i("div", Uu, [o(a3.$slots, "default")])])]), _: 3 })]), _: 3 })])])])]), _: 3 })]), _: 3 }, 8, ["show"]));
|
|
1989
|
+
} }), Ju = { uiButton: J, uiIcon: z, uiCheckbox: ne, uiDropdown: na, uiInput: ma, uiInputFile: ja, uiSelect: Ra, uiTag: $a, uiTextArea: Wa, uiToggle: Za, uiAlert: cn, uiBreadcrumbs: wn, uiCard: Tn, uiFilter: En, uiModal: zn, uiNotification: lr, uiTaskList: mr, uiPriceCalendar: vo, uiChart: Po, uiFooter: Eo, uiLoadingScreen: Io, uiPagination: Xo, uiSidebar: pi, uiStats: Oi, uiStripedCard: Hi, uiTable: cs, uiTabs: hs, uiTimeline: Ks, uiTopbar: hu, uiFunnelChartV2: _u, uiNoResults: Lu, uiRightSidebar: Ku }, Gu = { install(e2) {
|
|
1959
1990
|
Object.keys(Ju).forEach((t2) => {
|
|
1960
1991
|
e2.component(t2, Ju[t2]);
|
|
1961
1992
|
});
|