nicklabs-ui 1.0.58 → 1.0.60
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/index.mjs
CHANGED
|
@@ -203,14 +203,14 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
203
203
|
"clear"
|
|
204
204
|
],
|
|
205
205
|
setup(e, { emit: t }) {
|
|
206
|
-
E((e) => ({
|
|
206
|
+
E((e) => ({ v446bddee: d.value }));
|
|
207
207
|
let n = t, r = i(() => e.type === "password"), a = i(() => e.type === "number"), l = x(!1), u = i(() => a.value ? "text" : r.value ? l.value ? "text" : "password" : e.type), d = i(() => {
|
|
208
208
|
let t = 12;
|
|
209
209
|
return r.value && (t += 24), e.clearable && (t += 24), `${t}px`;
|
|
210
210
|
}), f = (t) => {
|
|
211
211
|
let n = t.replace(/[^0-9]/g, "");
|
|
212
212
|
return n === "" ? "" : a.value ? String(Math.min(Math.max(Number(n), e.min), e.max)) : n;
|
|
213
|
-
}, p = (e) => !!([
|
|
213
|
+
}, p = (e) => e === "" ? "" : Number(e), m = (e) => !!([
|
|
214
214
|
"Backspace",
|
|
215
215
|
"Delete",
|
|
216
216
|
"ArrowLeft",
|
|
@@ -220,58 +220,56 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
220
220
|
"Tab",
|
|
221
221
|
"Home",
|
|
222
222
|
"End"
|
|
223
|
-
].includes(e.key) || e.ctrlKey || e.metaKey || /^[0-9]$/.test(e.key)),
|
|
223
|
+
].includes(e.key) || e.ctrlKey || e.metaKey || /^[0-9]$/.test(e.key)), g = (e) => {
|
|
224
224
|
if (n("keydown", e), a.value) {
|
|
225
225
|
if (e.key === "ArrowUp") {
|
|
226
|
-
e.preventDefault(),
|
|
226
|
+
e.preventDefault(), C();
|
|
227
227
|
return;
|
|
228
228
|
}
|
|
229
229
|
if (e.key === "ArrowDown") {
|
|
230
|
-
e.preventDefault(),
|
|
230
|
+
e.preventDefault(), S();
|
|
231
231
|
return;
|
|
232
232
|
}
|
|
233
|
-
if (!
|
|
233
|
+
if (!m(e)) {
|
|
234
234
|
e.preventDefault();
|
|
235
235
|
return;
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
|
-
},
|
|
238
|
+
}, ee = (e) => {
|
|
239
239
|
if (a.value) {
|
|
240
240
|
let t = e.target, r = f(t.value);
|
|
241
|
-
t.value !== r && (t.value = r, n("update:modelValue", r));
|
|
241
|
+
t.value !== r && (t.value = r), n("update:modelValue", p(r));
|
|
242
242
|
}
|
|
243
|
-
},
|
|
243
|
+
}, _ = (e) => {
|
|
244
244
|
n("input", e);
|
|
245
245
|
let t = e.target;
|
|
246
246
|
if (a.value) {
|
|
247
247
|
let e = f(t.value);
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
return;
|
|
251
|
-
}
|
|
248
|
+
t.value !== e && (t.value = e), n("update:modelValue", p(e));
|
|
249
|
+
return;
|
|
252
250
|
}
|
|
253
251
|
n("update:modelValue", t.value);
|
|
254
|
-
},
|
|
255
|
-
n("blur", t), a.value && e.modelValue === "" && n("update:modelValue",
|
|
256
|
-
}, v = () => {
|
|
257
|
-
e.disabled || e.readonly || (n("update:modelValue", ""), n("clear"));
|
|
252
|
+
}, v = (t) => {
|
|
253
|
+
n("blur", t), a.value && e.modelValue === "" && n("update:modelValue", e.min === -Infinity ? 0 : e.min);
|
|
258
254
|
}, b = () => {
|
|
255
|
+
e.disabled || e.readonly || (n("update:modelValue", ""), n("clear"));
|
|
256
|
+
}, S = () => {
|
|
259
257
|
if (e.disabled) return;
|
|
260
258
|
let t = e.modelValue === "" ? e.min : Number(e.modelValue), r = Math.max(t - 1, e.min);
|
|
261
259
|
if (e.min <= r && r <= e.max) {
|
|
262
|
-
n("update:modelValue",
|
|
260
|
+
n("update:modelValue", r);
|
|
263
261
|
return;
|
|
264
262
|
}
|
|
265
|
-
n("update:modelValue",
|
|
266
|
-
},
|
|
263
|
+
n("update:modelValue", e.min);
|
|
264
|
+
}, C = () => {
|
|
267
265
|
if (e.disabled) return;
|
|
268
266
|
let t = e.modelValue === "" ? e.min : Number(e.modelValue), r = Math.min(t + 1, e.max);
|
|
269
267
|
if (e.min <= r && r <= e.max) {
|
|
270
|
-
n("update:modelValue",
|
|
268
|
+
n("update:modelValue", r);
|
|
271
269
|
return;
|
|
272
270
|
}
|
|
273
|
-
n("update:modelValue",
|
|
274
|
-
},
|
|
271
|
+
n("update:modelValue", e.min);
|
|
272
|
+
}, T = () => l.value = !l.value;
|
|
275
273
|
return (t, i) => (y(), s("div", { class: h(["input", { inline: e.inline }]) }, [e.title ? (y(), s("label", le, w(e.title), 1)) : o("", !0), c("div", { class: h({
|
|
276
274
|
common: !a.value,
|
|
277
275
|
number: a.value,
|
|
@@ -283,7 +281,7 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
283
281
|
class: "tool-button",
|
|
284
282
|
type: "button",
|
|
285
283
|
disabled: e.disabled || Number(e.modelValue) <= e.min,
|
|
286
|
-
onClick:
|
|
284
|
+
onClick: S
|
|
287
285
|
}, [...i[2] ||= [c("svg", {
|
|
288
286
|
xmlns: "http://www.w3.org/2000/svg",
|
|
289
287
|
width: "16",
|
|
@@ -304,18 +302,18 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
304
302
|
maxlength: e.maxlength,
|
|
305
303
|
autocomplete: e.autocomplete,
|
|
306
304
|
onFocus: i[0] ||= (e) => n("focus", e),
|
|
307
|
-
onBlur:
|
|
308
|
-
onInput:
|
|
305
|
+
onBlur: v,
|
|
306
|
+
onInput: _,
|
|
309
307
|
onChange: i[1] ||= (e) => n("change", e),
|
|
310
|
-
onKeydown:
|
|
311
|
-
onCompositionend:
|
|
308
|
+
onKeydown: g,
|
|
309
|
+
onCompositionend: ee
|
|
312
310
|
}, null, 40, ue),
|
|
313
311
|
a.value ? (y(), s("button", {
|
|
314
312
|
key: 1,
|
|
315
313
|
class: "tool-button",
|
|
316
314
|
type: "button",
|
|
317
315
|
disabled: e.disabled || Number(e.modelValue) >= e.max,
|
|
318
|
-
onClick:
|
|
316
|
+
onClick: C
|
|
319
317
|
}, [...i[3] ||= [c("svg", {
|
|
320
318
|
xmlns: "http://www.w3.org/2000/svg",
|
|
321
319
|
width: "16",
|
|
@@ -330,7 +328,7 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
330
328
|
a.value ? o("", !0) : (y(), s("div", B, [r.value && !e.disabled ? (y(), s("button", {
|
|
331
329
|
key: 0,
|
|
332
330
|
type: "button",
|
|
333
|
-
onClick:
|
|
331
|
+
onClick: T,
|
|
334
332
|
"aria-label": "Toggle password visibility"
|
|
335
333
|
}, [l.value ? (y(), s("svg", pe, [...i[5] ||= [
|
|
336
334
|
c("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }, null, -1),
|
|
@@ -345,7 +343,7 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
345
343
|
key: 1,
|
|
346
344
|
type: "button",
|
|
347
345
|
"aria-label": "Clear input",
|
|
348
|
-
onClick:
|
|
346
|
+
onClick: b
|
|
349
347
|
}, [...i[6] ||= [c("svg", {
|
|
350
348
|
xmlns: "http://www.w3.org/2000/svg",
|
|
351
349
|
width: "16",
|
|
@@ -359,7 +357,7 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
359
357
|
}, [c("path", { d: "M18 6 6 18" }), c("path", { d: "m6 6 12 12" })], -1)]])) : o("", !0)]))
|
|
360
358
|
], 2)], 2));
|
|
361
359
|
}
|
|
362
|
-
}), [["__scopeId", "data-v-
|
|
360
|
+
}), [["__scopeId", "data-v-91e7a17e"]]), he = { class: "textarea" }, ge = ["textContent"], _e = [
|
|
363
361
|
"rows",
|
|
364
362
|
"placeholder",
|
|
365
363
|
"disabled",
|
|
@@ -790,53 +788,53 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
790
788
|
let t, n, r, i = [];
|
|
791
789
|
for (let a = 0; a < e.length;) t = X[e.charAt(a++)] << 18 | X[e.charAt(a++)] << 12 | (n = X[e.charAt(a++)]) << 6 | (r = X[e.charAt(a++)]), n === 64 ? i.push(Z(t >> 16 & 255)) : r === 64 ? i.push(Z(t >> 16 & 255, t >> 8 & 255)) : i.push(Z(t >> 16 & 255, t >> 8 & 255, t & 255));
|
|
792
790
|
return i.join("");
|
|
793
|
-
}, Ye = Y ? (e) => Fe(Buffer.from(e, "base64")) : (e) => Fe(Je(e).split("").map((e) => e.charCodeAt(0))), Xe = Y ? (e) => Buffer.from(e, "base64").toString("utf8") : je ? (e) => je.decode(Ye(e)) : (e) => qe(Je(e)),
|
|
791
|
+
}, Ye = Y ? (e) => Fe(Buffer.from(e, "base64")) : (e) => Fe(Je(e).split("").map((e) => e.charCodeAt(0))), Xe = (e) => Ye(Qe(e)), Ze = Y ? (e) => Buffer.from(e, "base64").toString("utf8") : je ? (e) => je.decode(Ye(e)) : (e) => qe(Je(e)), Qe = (e) => Le(e.replace(/[-_]/g, (e) => e == "-" ? "+" : "/")), $e = (e) => Ze(Qe(e)), et = "N_UTILS_KEY", Q = [], tt = () => {
|
|
794
792
|
let e = We(JSON.stringify(Q));
|
|
795
|
-
localStorage.setItem(
|
|
796
|
-
},
|
|
797
|
-
let e = localStorage.getItem(
|
|
793
|
+
localStorage.setItem(et, e);
|
|
794
|
+
}, nt = () => {
|
|
795
|
+
let e = localStorage.getItem(et) ?? "";
|
|
798
796
|
if (e.length == 0) return [];
|
|
799
797
|
try {
|
|
800
|
-
return JSON.parse(
|
|
798
|
+
return JSON.parse($e(e));
|
|
801
799
|
} catch {
|
|
802
800
|
return [];
|
|
803
801
|
}
|
|
804
|
-
},
|
|
802
|
+
}, rt = () => {
|
|
805
803
|
Q.clear();
|
|
806
|
-
let e =
|
|
804
|
+
let e = nt(), t = (/* @__PURE__ */ new Date()).getTime();
|
|
807
805
|
e.forEach((e) => {
|
|
808
806
|
e.expireTime && e.expireTime < t || Q.push({
|
|
809
807
|
key: e.key,
|
|
810
808
|
value: e.value,
|
|
811
809
|
expireTime: e.expireTime
|
|
812
810
|
});
|
|
813
|
-
}), Q.length > 0 &&
|
|
814
|
-
},
|
|
815
|
-
|
|
811
|
+
}), Q.length > 0 && tt();
|
|
812
|
+
}, it = (e) => (rt(), Q.some((t) => t.key == e)), at = (e, t, n) => {
|
|
813
|
+
st(e);
|
|
816
814
|
let r = {
|
|
817
815
|
key: e,
|
|
818
816
|
value: t
|
|
819
817
|
};
|
|
820
|
-
n && (r.expireTime = (/* @__PURE__ */ new Date()).getTime() + n * 1e3), Q.push(r),
|
|
821
|
-
},
|
|
822
|
-
|
|
818
|
+
n && (r.expireTime = (/* @__PURE__ */ new Date()).getTime() + n * 1e3), Q.push(r), tt();
|
|
819
|
+
}, ot = (e, t) => {
|
|
820
|
+
rt();
|
|
823
821
|
let n = Q.find((t) => t.key == e);
|
|
824
822
|
return n ? n.value : t;
|
|
825
|
-
},
|
|
826
|
-
|
|
823
|
+
}, st = (e) => {
|
|
824
|
+
rt();
|
|
827
825
|
let t = Q.findIndex((t) => t.key == e);
|
|
828
|
-
t != -1 && (Q.splice(t, 1),
|
|
829
|
-
},
|
|
830
|
-
set:
|
|
831
|
-
get:
|
|
832
|
-
has:
|
|
833
|
-
forget:
|
|
834
|
-
},
|
|
826
|
+
t != -1 && (Q.splice(t, 1), tt());
|
|
827
|
+
}, ct = {
|
|
828
|
+
set: at,
|
|
829
|
+
get: ot,
|
|
830
|
+
has: it,
|
|
831
|
+
forget: st
|
|
832
|
+
}, lt = { fullScreenToggle: (() => {
|
|
835
833
|
let e = !1;
|
|
836
834
|
return () => {
|
|
837
835
|
e ? document.exitFullscreen() : document.documentElement.requestFullscreen(), e = !e;
|
|
838
836
|
};
|
|
839
|
-
})() },
|
|
837
|
+
})() }, ut = {
|
|
840
838
|
random: (e = 5) => Array(e).fill(null).map(() => {
|
|
841
839
|
let e = Math.random() * 62;
|
|
842
840
|
return "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".charAt(e);
|
|
@@ -844,11 +842,11 @@ var I = { class: "breadcrumbs" }, L = ["onClick"], R = {
|
|
|
844
842
|
copy: (e) => {
|
|
845
843
|
navigator.clipboard.writeText(e);
|
|
846
844
|
}
|
|
847
|
-
},
|
|
848
|
-
function
|
|
849
|
-
return
|
|
845
|
+
}, dt = [];
|
|
846
|
+
function ft(e = "", t = !1, n = !1) {
|
|
847
|
+
return dt.clear(), new Promise((r, i) => {
|
|
850
848
|
let a = document.createElement("input");
|
|
851
|
-
|
|
849
|
+
dt.push(a), a.hidden = !0, a.type = "file", a.accept = e, a.multiple = t, a.onchange = async () => {
|
|
852
850
|
let e = [];
|
|
853
851
|
if (!a.files || a.files.length === 0) {
|
|
854
852
|
r(t ? [] : void 0);
|
|
@@ -871,11 +869,11 @@ function dt(e = "", t = !1, n = !1) {
|
|
|
871
869
|
}, a.click();
|
|
872
870
|
});
|
|
873
871
|
}
|
|
874
|
-
function ft(e = !1, t = !1) {
|
|
875
|
-
return dt("", e, t);
|
|
876
|
-
}
|
|
877
872
|
function pt(e = !1, t = !1) {
|
|
878
|
-
return
|
|
873
|
+
return ft("", e, t);
|
|
874
|
+
}
|
|
875
|
+
function mt(e = !1, t = !1) {
|
|
876
|
+
return ft([
|
|
879
877
|
"image/jpg",
|
|
880
878
|
"image/jpeg",
|
|
881
879
|
"image/png",
|
|
@@ -883,8 +881,8 @@ function pt(e = !1, t = !1) {
|
|
|
883
881
|
"image/bmp"
|
|
884
882
|
].join(","), e, t);
|
|
885
883
|
}
|
|
886
|
-
function
|
|
887
|
-
return
|
|
884
|
+
function ht(e = !1, t = !1) {
|
|
885
|
+
return ft([
|
|
888
886
|
".pdf",
|
|
889
887
|
"application/pdf",
|
|
890
888
|
".doc",
|
|
@@ -896,16 +894,16 @@ function mt(e = !1, t = !1) {
|
|
|
896
894
|
".md"
|
|
897
895
|
].join(","), e, t);
|
|
898
896
|
}
|
|
899
|
-
function
|
|
900
|
-
return
|
|
897
|
+
function gt(e = !1, t = !1) {
|
|
898
|
+
return ft([
|
|
901
899
|
"video/mp4",
|
|
902
900
|
"video/quicktime",
|
|
903
901
|
"video/webm",
|
|
904
902
|
"video/ogg"
|
|
905
903
|
].join(","), e, t);
|
|
906
904
|
}
|
|
907
|
-
function
|
|
908
|
-
return
|
|
905
|
+
function _t(e = !1, t = !1) {
|
|
906
|
+
return ft([
|
|
909
907
|
"audio/mp3",
|
|
910
908
|
"audio/wav",
|
|
911
909
|
"audio/ogg",
|
|
@@ -913,44 +911,48 @@ function gt(e = !1, t = !1) {
|
|
|
913
911
|
"audio/flac"
|
|
914
912
|
].join(","), e, t);
|
|
915
913
|
}
|
|
916
|
-
function
|
|
917
|
-
return
|
|
914
|
+
function vt(e = "", t = !1, n = !1) {
|
|
915
|
+
return ft(e, t, n);
|
|
918
916
|
}
|
|
919
|
-
var
|
|
920
|
-
all:
|
|
921
|
-
image:
|
|
922
|
-
documentFile:
|
|
923
|
-
video:
|
|
924
|
-
audio:
|
|
925
|
-
custom:
|
|
926
|
-
},
|
|
917
|
+
var yt = {
|
|
918
|
+
all: pt,
|
|
919
|
+
image: mt,
|
|
920
|
+
documentFile: ht,
|
|
921
|
+
video: gt,
|
|
922
|
+
audio: _t,
|
|
923
|
+
custom: vt
|
|
924
|
+
}, bt = (e) => new Promise((t, n) => {
|
|
927
925
|
let r = new FileReader();
|
|
928
926
|
r.readAsDataURL(e), r.onload = () => {
|
|
929
927
|
let e = r.result.split(";base64,");
|
|
930
928
|
e.length > 1 ? t(e[1]) : n(/* @__PURE__ */ Error("Failed to convert file to base64 string."));
|
|
931
929
|
}, r.onerror = n;
|
|
932
|
-
}),
|
|
933
|
-
convertBase64:
|
|
934
|
-
createImageUrlFromFile:
|
|
935
|
-
createImageUrlFromBlob:
|
|
930
|
+
}), xt = (e) => St(new Blob([e], { type: "xxxx" })), St = (e) => (window.URL || window.webkitURL).createObjectURL(e), Ct = {
|
|
931
|
+
convertBase64: bt,
|
|
932
|
+
createImageUrlFromFile: xt,
|
|
933
|
+
createImageUrlFromBlob: St,
|
|
936
934
|
revokeObjectUrl: (e) => {
|
|
937
935
|
(window.URL || window.webkitURL).revokeObjectURL(e);
|
|
938
936
|
}
|
|
939
|
-
},
|
|
940
|
-
|
|
937
|
+
}, wt = (e, t) => {
|
|
938
|
+
let n = document.createElement("a");
|
|
939
|
+
n.target = "_blank", t && (n.download = t), n.href = e, n.click(), n.remove();
|
|
940
|
+
}, Tt = {
|
|
941
|
+
download: wt,
|
|
942
|
+
downloadFromBase64: (e, t, n) => {
|
|
943
|
+
let r = Xe(e), i = new Blob([r.buffer], { type: t }), a = URL.createObjectURL(i);
|
|
944
|
+
wt(a, n), URL.revokeObjectURL(a);
|
|
945
|
+
},
|
|
946
|
+
openExternalLink: (e, t) => {
|
|
941
947
|
let n = document.createElement("a");
|
|
942
948
|
n.target = "_blank", t && (n.download = t), n.href = e, n.click(), n.remove();
|
|
943
|
-
},
|
|
944
|
-
openExternalLink: (e) => {
|
|
945
|
-
let t = document.createElement("a");
|
|
946
|
-
t.target = "_blank", t.href = e, t.click(), t.remove();
|
|
947
949
|
}
|
|
948
|
-
},
|
|
950
|
+
}, Et = async (e) => {
|
|
949
951
|
let t = e.includes("data:image/") ? e : `data:image/jpeg;base64,${e}`;
|
|
950
952
|
return (await fetch(t)).blob();
|
|
951
|
-
},
|
|
953
|
+
}, Dt = (e) => new Promise(async (t, n) => {
|
|
952
954
|
try {
|
|
953
|
-
let r = typeof e == "string" ? await
|
|
955
|
+
let r = typeof e == "string" ? await Et(e) : e, i = window.URL || window.webkitURL, a = i.createObjectURL(r), o = document.createElement("img");
|
|
954
956
|
o.src = a, o.onload = () => {
|
|
955
957
|
i.revokeObjectURL(a), t(o);
|
|
956
958
|
}, o.onerror = (e) => {
|
|
@@ -959,39 +961,39 @@ var vt = {
|
|
|
959
961
|
} catch (e) {
|
|
960
962
|
n(e);
|
|
961
963
|
}
|
|
962
|
-
}),
|
|
964
|
+
}), Ot = (e, t) => {
|
|
963
965
|
let n = Math.min(t / e.width, t / e.height, 1), r = n * e.width, i = n * e.height, a = document.createElement("canvas"), o = a.getContext("2d");
|
|
964
966
|
return a.width = r, a.height = i, o.drawImage(e, 0, 0, r, i), a;
|
|
965
|
-
},
|
|
967
|
+
}, kt = (e) => {
|
|
966
968
|
let t = e.toDataURL("image/jpeg", .8).split(";base64,");
|
|
967
969
|
return t.length > 1 ? t[1] : "";
|
|
968
|
-
},
|
|
970
|
+
}, At = (e) => new Promise((t, n) => {
|
|
969
971
|
e.toBlob((e) => {
|
|
970
972
|
e ? t(e) : n(/* @__PURE__ */ Error("Failed to create Blob from canvas."));
|
|
971
973
|
}, "image/jpeg", .8);
|
|
972
|
-
}),
|
|
973
|
-
thumbnailFromBlobToBase64: async (e, t) =>
|
|
974
|
-
thumbnailFromBlobToBlob: async (e, t) =>
|
|
975
|
-
thumbnailFromBase64ToBase64: async (e, t) =>
|
|
976
|
-
thumbnailFromBase64ToBlob: async (e, t) =>
|
|
977
|
-
},
|
|
974
|
+
}), jt = async (e, t) => Ot(await Dt(e), t), Mt = {
|
|
975
|
+
thumbnailFromBlobToBase64: async (e, t) => kt(await jt(e, t)),
|
|
976
|
+
thumbnailFromBlobToBlob: async (e, t) => At(await jt(e, t)),
|
|
977
|
+
thumbnailFromBase64ToBase64: async (e, t) => kt(await jt(e, t)),
|
|
978
|
+
thumbnailFromBase64ToBlob: async (e, t) => At(await jt(e, t))
|
|
979
|
+
}, Nt = () => {
|
|
978
980
|
let e = navigator.userAgent;
|
|
979
981
|
return !!/Mobile|Android|iP(hone|od)|IEMobile|BlackBerry|Kindle|Silk-Accelerated|(hpw|web)OS|Opera M(obi|ini)/.test(e);
|
|
980
|
-
},
|
|
982
|
+
}, Pt = () => {
|
|
981
983
|
let e = navigator.userAgent;
|
|
982
984
|
return !!/(tablet|ipad|playbook|silk)|(android(?!.*mobi))/i.test(e);
|
|
983
985
|
}, $ = {
|
|
984
|
-
store:
|
|
985
|
-
screen:
|
|
986
|
-
str:
|
|
987
|
-
input:
|
|
988
|
-
file:
|
|
989
|
-
link:
|
|
990
|
-
image:
|
|
986
|
+
store: ct,
|
|
987
|
+
screen: lt,
|
|
988
|
+
str: ut,
|
|
989
|
+
input: yt,
|
|
990
|
+
file: Ct,
|
|
991
|
+
link: Tt,
|
|
992
|
+
image: Mt,
|
|
991
993
|
device: {
|
|
992
|
-
isMobile:
|
|
993
|
-
isTablet:
|
|
994
|
-
isDesktop: () =>
|
|
994
|
+
isMobile: Nt,
|
|
995
|
+
isTablet: Pt,
|
|
996
|
+
isDesktop: () => Nt() == 0 && Pt() == 0
|
|
995
997
|
},
|
|
996
998
|
date: { getCalendarByDate: (e) => {
|
|
997
999
|
e.setDate(1);
|
|
@@ -1015,7 +1017,7 @@ var vt = {
|
|
|
1015
1017
|
e > 0 && window.clearTimeout(e), e = window.setTimeout(t, n);
|
|
1016
1018
|
};
|
|
1017
1019
|
})() }
|
|
1018
|
-
},
|
|
1020
|
+
}, Ft = { class: "file-select" }, It = ["textContent"], Lt = ["aria-disabled"], Rt = { class: "inner" }, zt = { class: "text" }, Bt = ["textContent"], Vt = ["textContent"], Ht = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1019
1021
|
__name: "NFileSelect",
|
|
1020
1022
|
props: {
|
|
1021
1023
|
multiple: {
|
|
@@ -1048,11 +1050,11 @@ var vt = {
|
|
|
1048
1050
|
console.log(e);
|
|
1049
1051
|
}
|
|
1050
1052
|
};
|
|
1051
|
-
return (t, n) => (y(), s("div",
|
|
1053
|
+
return (t, n) => (y(), s("div", Ft, [e.title ? (y(), s("div", {
|
|
1052
1054
|
key: 0,
|
|
1053
1055
|
class: "label",
|
|
1054
1056
|
textContent: w(e.title)
|
|
1055
|
-
}, null, 8,
|
|
1057
|
+
}, null, 8, It)) : o("", !0), c("div", {
|
|
1056
1058
|
class: h(["select", {
|
|
1057
1059
|
multiple: e.multiple,
|
|
1058
1060
|
disabled: e.disabled
|
|
@@ -1060,7 +1062,7 @@ var vt = {
|
|
|
1060
1062
|
tabindex: "0",
|
|
1061
1063
|
"aria-disabled": e.disabled ? "true" : void 0,
|
|
1062
1064
|
onClick: r
|
|
1063
|
-
}, [c("div",
|
|
1065
|
+
}, [c("div", Rt, [n[0] ||= c("span", {
|
|
1064
1066
|
class: "icon",
|
|
1065
1067
|
"aria-hidden": "true"
|
|
1066
1068
|
}, [c("svg", {
|
|
@@ -1073,47 +1075,47 @@ var vt = {
|
|
|
1073
1075
|
"stroke-linejoin": "round",
|
|
1074
1076
|
"stroke-width": "2",
|
|
1075
1077
|
d: "M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12"
|
|
1076
|
-
})])], -1), c("div",
|
|
1078
|
+
})])], -1), c("div", zt, [c("p", {
|
|
1077
1079
|
class: "label",
|
|
1078
1080
|
textContent: w(e.label)
|
|
1079
|
-
}, null, 8,
|
|
1081
|
+
}, null, 8, Bt), c("p", {
|
|
1080
1082
|
class: "hint",
|
|
1081
1083
|
textContent: w(e.hint)
|
|
1082
|
-
}, null, 8,
|
|
1084
|
+
}, null, 8, Vt)])])], 10, Lt)]));
|
|
1083
1085
|
}
|
|
1084
|
-
}), [["__scopeId", "data-v-ef36f4d5"]]),
|
|
1085
|
-
function
|
|
1086
|
+
}), [["__scopeId", "data-v-ef36f4d5"]]), Ut = x(!1), Wt = (e, t) => e.children?.some((e) => e.route === t) ?? !1, Gt = (e, t) => e.route === t;
|
|
1087
|
+
function Kt(e = "default") {
|
|
1086
1088
|
let t = `NSidebar:${e}:expanded`, n = b($.store.get(t, {}));
|
|
1087
|
-
|
|
1089
|
+
Ut.value = $.store.get("NSidebar:expanded", !1);
|
|
1088
1090
|
let r = (e) => !!n[e];
|
|
1089
1091
|
return {
|
|
1090
1092
|
isMenuExpanded: r,
|
|
1091
1093
|
toggleMenu: (e) => {
|
|
1092
1094
|
n[e] = !r(e), $.store.set(t, n);
|
|
1093
1095
|
},
|
|
1094
|
-
isSidebarExpanded: () =>
|
|
1096
|
+
isSidebarExpanded: () => Ut.value,
|
|
1095
1097
|
toggleSidebar: () => {
|
|
1096
|
-
|
|
1098
|
+
Ut.value = !Ut.value, $.store.set("NSidebar:expanded", Ut.value);
|
|
1097
1099
|
},
|
|
1098
1100
|
setMenuActiveResolver: (e) => {
|
|
1099
|
-
|
|
1101
|
+
Wt = e;
|
|
1100
1102
|
},
|
|
1101
1103
|
setItemActiveResolver: (e) => {
|
|
1102
|
-
|
|
1104
|
+
Gt = e;
|
|
1103
1105
|
},
|
|
1104
|
-
resolveMenuActive:
|
|
1105
|
-
resolveItemActive:
|
|
1106
|
+
resolveMenuActive: Wt,
|
|
1107
|
+
resolveItemActive: Gt
|
|
1106
1108
|
};
|
|
1107
1109
|
}
|
|
1108
1110
|
//#endregion
|
|
1109
1111
|
//#region src/layouts/NHeroSection.vue?vue&type=script&setup=true&lang.ts
|
|
1110
|
-
var
|
|
1112
|
+
var qt = { class: "hero-section-container" }, Jt = { class: "hero-section" }, Yt = { class: "header" }, Xt = ["innerHTML"], Zt = { class: "body" }, Qt = { class: "title-section" }, $t = { class: "title" }, en = { key: 0 }, tn = {
|
|
1111
1113
|
key: 1,
|
|
1112
1114
|
class: "description"
|
|
1113
|
-
},
|
|
1115
|
+
}, nn = {
|
|
1114
1116
|
key: 0,
|
|
1115
1117
|
class: "toolbar"
|
|
1116
|
-
},
|
|
1118
|
+
}, rn = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1117
1119
|
__name: "NHeroSection",
|
|
1118
1120
|
props: {
|
|
1119
1121
|
icon: { default: "" },
|
|
@@ -1121,11 +1123,11 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1121
1123
|
description: { default: "" }
|
|
1122
1124
|
},
|
|
1123
1125
|
setup(e) {
|
|
1124
|
-
let t =
|
|
1125
|
-
return (n, r) => (y(), s("div",
|
|
1126
|
+
let t = Kt();
|
|
1127
|
+
return (n, r) => (y(), s("div", qt, [c("div", Jt, [
|
|
1126
1128
|
r[2] ||= c("div", { class: "effect-background-left" }, null, -1),
|
|
1127
1129
|
r[3] ||= c("div", { class: "effect-background-right" }, null, -1),
|
|
1128
|
-
c("div",
|
|
1130
|
+
c("div", Yt, [f(M, {
|
|
1129
1131
|
class: "sidebar-toggle-button",
|
|
1130
1132
|
padding: "8px",
|
|
1131
1133
|
intent: "none",
|
|
@@ -1153,14 +1155,14 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1153
1155
|
key: 0,
|
|
1154
1156
|
class: "icon-bg",
|
|
1155
1157
|
innerHTML: e.icon
|
|
1156
|
-
}, null, 8,
|
|
1157
|
-
c("div",
|
|
1158
|
+
}, null, 8, Xt)) : o("", !0),
|
|
1159
|
+
c("div", Zt, [c("div", Qt, [c("div", $t, [e.title ? (y(), s("h1", en, w(e.title), 1)) : o("", !0), n.$slots.description || e.description ? (y(), s("div", tn, [C(n.$slots, "description", {}, () => [d(w(e.description), 1)], !0)])) : o("", !0)])]), n.$slots.toolbar ? (y(), s("div", nn, [C(n.$slots, "toolbar", {}, void 0, !0)])) : o("", !0)])
|
|
1158
1160
|
])]));
|
|
1159
1161
|
}
|
|
1160
|
-
}), [["__scopeId", "data-v-
|
|
1162
|
+
}), [["__scopeId", "data-v-7b75e1ca"]]), an = { class: "content-container" }, on = {
|
|
1161
1163
|
key: 0,
|
|
1162
1164
|
class: "nav-tabs"
|
|
1163
|
-
},
|
|
1165
|
+
}, sn = ["textContent", "onClick"], cn = { class: "tab-content" }, ln = { class: "footer" }, un = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1164
1166
|
__name: "NForm",
|
|
1165
1167
|
props: {
|
|
1166
1168
|
model: { default: () => ({}) },
|
|
@@ -1185,7 +1187,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1185
1187
|
}, m = () => {
|
|
1186
1188
|
t.disabled || r("reset");
|
|
1187
1189
|
};
|
|
1188
|
-
return (n, i) => (y(), s("div",
|
|
1190
|
+
return (n, i) => (y(), s("div", an, [C(n.$slots, "heroSection", {}, () => [f(rn, {
|
|
1189
1191
|
icon: t.icon,
|
|
1190
1192
|
title: t.title,
|
|
1191
1193
|
description: t.description
|
|
@@ -1204,19 +1206,19 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1204
1206
|
onSubmit: O(p, ["prevent"]),
|
|
1205
1207
|
onReset: O(m, ["prevent"])
|
|
1206
1208
|
}, [
|
|
1207
|
-
t.tabs.length > 0 ? (y(), s("div",
|
|
1209
|
+
t.tabs.length > 0 ? (y(), s("div", on, [(y(!0), s(e, null, S(t.tabs, (e, t) => (y(), s("button", {
|
|
1208
1210
|
key: `${e}${t}`,
|
|
1209
1211
|
class: h(["nav-link", { active: d.value === t }]),
|
|
1210
1212
|
textContent: w(e),
|
|
1211
1213
|
onClick: () => {
|
|
1212
1214
|
u.value = t, T($).store.set(a, t), r("update:modelValue", t);
|
|
1213
1215
|
}
|
|
1214
|
-
}, null, 10,
|
|
1215
|
-
c("div",
|
|
1216
|
-
c("div",
|
|
1216
|
+
}, null, 10, sn))), 128))])) : o("", !0),
|
|
1217
|
+
c("div", cn, [t.tabs.length > 0 ? (y(!0), s(e, { key: 0 }, S(t.tabs, (t, r) => (y(), s(e, null, [d.value === r ? C(n.$slots, `tab${r}`, { key: 0 }, void 0, !0) : o("", !0)], 64))), 256)) : o("", !0), t.tabs.length == 0 && n.$slots.tab0 ? C(n.$slots, "tab0", { key: 1 }, void 0, !0) : o("", !0)]),
|
|
1218
|
+
c("div", ln, [C(n.$slots, "footer", {}, void 0, !0)])
|
|
1217
1219
|
], 32)]));
|
|
1218
1220
|
}
|
|
1219
|
-
}), [["__scopeId", "data-v-fc11e625"]]),
|
|
1221
|
+
}), [["__scopeId", "data-v-fc11e625"]]), dn = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1220
1222
|
__name: "NCard",
|
|
1221
1223
|
props: {
|
|
1222
1224
|
size: { default: "md" },
|
|
@@ -1228,13 +1230,13 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1228
1230
|
[`radius-${e.radius}`]: !0
|
|
1229
1231
|
}]) }, [C(t.$slots, "default", {}, void 0, !0)], 2));
|
|
1230
1232
|
}
|
|
1231
|
-
}), [["__scopeId", "data-v-56a18223"]]),
|
|
1233
|
+
}), [["__scopeId", "data-v-56a18223"]]), fn = {
|
|
1232
1234
|
key: 0,
|
|
1233
1235
|
class: "paginate"
|
|
1234
|
-
},
|
|
1236
|
+
}, pn = { class: "summary" }, mn = { class: "pages" }, hn = {
|
|
1235
1237
|
key: 1,
|
|
1236
1238
|
class: "separator"
|
|
1237
|
-
},
|
|
1239
|
+
}, gn = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1238
1240
|
__name: "NPaginate",
|
|
1239
1241
|
props: {
|
|
1240
1242
|
totalItems: {},
|
|
@@ -1270,7 +1272,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1270
1272
|
let t = Math.min(Math.max(1, e), u.value);
|
|
1271
1273
|
l.value !== t && (l.value = t, r("onPageChange", l.value));
|
|
1272
1274
|
}
|
|
1273
|
-
return (n, r) => t.totalItems > 0 ? (y(), s("div",
|
|
1275
|
+
return (n, r) => t.totalItems > 0 ? (y(), s("div", fn, [c("span", pn, "第 " + w(l.value) + " / " + w(u.value) + " 頁,共 " + w(t.totalItems) + " 筆", 1), c("div", mn, [
|
|
1274
1276
|
f(M, {
|
|
1275
1277
|
variant: "outline",
|
|
1276
1278
|
padding: "",
|
|
@@ -1307,7 +1309,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1307
1309
|
"variant",
|
|
1308
1310
|
"intent",
|
|
1309
1311
|
"onClick"
|
|
1310
|
-
])) : (y(), s("span",
|
|
1312
|
+
])) : (y(), s("span", hn, "…"))], 64))), 128)),
|
|
1311
1313
|
f(M, {
|
|
1312
1314
|
variant: "outline",
|
|
1313
1315
|
padding: "",
|
|
@@ -1331,13 +1333,13 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1331
1333
|
}, 8, ["disabled"])
|
|
1332
1334
|
])])) : o("", !0);
|
|
1333
1335
|
}
|
|
1334
|
-
}), [["__scopeId", "data-v-a191a116"]]),
|
|
1336
|
+
}), [["__scopeId", "data-v-a191a116"]]), _n = ["innerHTML"], vn = { class: "title" }, yn = {
|
|
1335
1337
|
key: 1,
|
|
1336
1338
|
class: "description"
|
|
1337
|
-
},
|
|
1339
|
+
}, bn = {
|
|
1338
1340
|
key: 2,
|
|
1339
1341
|
class: "action"
|
|
1340
|
-
},
|
|
1342
|
+
}, xn = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1341
1343
|
__name: "NEmpty",
|
|
1342
1344
|
props: {
|
|
1343
1345
|
title: { default: "目前沒有資料" },
|
|
@@ -1351,37 +1353,37 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1351
1353
|
key: 0,
|
|
1352
1354
|
class: "icon",
|
|
1353
1355
|
innerHTML: e.icon
|
|
1354
|
-
}, null, 8,
|
|
1355
|
-
c("p",
|
|
1356
|
-
e.description ? (y(), s("p",
|
|
1357
|
-
t.$slots.default ? (y(), s("div",
|
|
1356
|
+
}, null, 8, _n)) : o("", !0),
|
|
1357
|
+
c("p", vn, w(e.title), 1),
|
|
1358
|
+
e.description ? (y(), s("p", yn, w(e.description), 1)) : o("", !0),
|
|
1359
|
+
t.$slots.default ? (y(), s("div", bn, [C(t.$slots, "default", {}, void 0, !0)])) : o("", !0)
|
|
1358
1360
|
], 2));
|
|
1359
1361
|
}
|
|
1360
|
-
}), [["__scopeId", "data-v-b9482c23"]]),
|
|
1362
|
+
}), [["__scopeId", "data-v-b9482c23"]]), Sn = {
|
|
1361
1363
|
key: 0,
|
|
1362
1364
|
class: "loading-fullscreen"
|
|
1363
|
-
},
|
|
1365
|
+
}, Cn = { class: "content" }, wn = {
|
|
1364
1366
|
key: 0,
|
|
1365
1367
|
class: "title"
|
|
1366
|
-
},
|
|
1368
|
+
}, Tn = {
|
|
1367
1369
|
key: 1,
|
|
1368
1370
|
class: "loading-wrapper"
|
|
1369
|
-
},
|
|
1371
|
+
}, En = {
|
|
1370
1372
|
key: 0,
|
|
1371
1373
|
class: "overlay"
|
|
1372
|
-
},
|
|
1374
|
+
}, Dn = { class: "content" }, On = {
|
|
1373
1375
|
key: 0,
|
|
1374
1376
|
class: "title"
|
|
1375
|
-
},
|
|
1377
|
+
}, kn = {
|
|
1376
1378
|
key: 0,
|
|
1377
1379
|
class: "loading-inline"
|
|
1378
|
-
},
|
|
1380
|
+
}, An = {
|
|
1379
1381
|
key: 0,
|
|
1380
1382
|
class: "title"
|
|
1381
|
-
},
|
|
1383
|
+
}, jn = {
|
|
1382
1384
|
key: 0,
|
|
1383
1385
|
class: "title"
|
|
1384
|
-
},
|
|
1386
|
+
}, Mn = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1385
1387
|
__name: "NLoading",
|
|
1386
1388
|
props: {
|
|
1387
1389
|
loading: {
|
|
@@ -1404,42 +1406,42 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1404
1406
|
key: 0,
|
|
1405
1407
|
to: "body"
|
|
1406
1408
|
}, [f(n, { name: "fade" }, {
|
|
1407
|
-
default: D(() => [r.loading ? (y(), s("div",
|
|
1409
|
+
default: D(() => [r.loading ? (y(), s("div", Sn, [c("div", Cn, [l[0] ||= c("div", { class: "spinner" }, [c("svg", { viewBox: "0 0 50 50" }, [c("circle", {
|
|
1408
1410
|
cx: "25",
|
|
1409
1411
|
cy: "25",
|
|
1410
1412
|
r: "20",
|
|
1411
1413
|
fill: "none",
|
|
1412
1414
|
"stroke-width": "4"
|
|
1413
|
-
})])], -1), r.title ? (y(), s("p",
|
|
1415
|
+
})])], -1), r.title ? (y(), s("p", wn, w(r.title), 1)) : o("", !0)])])) : o("", !0)]),
|
|
1414
1416
|
_: 1
|
|
1415
|
-
})])) : r.overlay ? (y(), s("div",
|
|
1416
|
-
default: D(() => [r.loading ? (y(), s("div",
|
|
1417
|
+
})])) : r.overlay ? (y(), s("div", Tn, [C(i.$slots, "default", {}, void 0, !0), f(n, { name: "fade" }, {
|
|
1418
|
+
default: D(() => [r.loading ? (y(), s("div", En, [c("div", Dn, [l[1] ||= c("div", { class: "spinner" }, [c("svg", { viewBox: "0 0 50 50" }, [c("circle", {
|
|
1417
1419
|
cx: "25",
|
|
1418
1420
|
cy: "25",
|
|
1419
1421
|
r: "20",
|
|
1420
1422
|
fill: "none",
|
|
1421
1423
|
"stroke-width": "4"
|
|
1422
|
-
})])], -1), r.title ? (y(), s("p",
|
|
1424
|
+
})])], -1), r.title ? (y(), s("p", On, w(r.title), 1)) : o("", !0)])])) : o("", !0)]),
|
|
1423
1425
|
_: 1
|
|
1424
|
-
})])) : (y(), s(e, { key: 2 }, [r.loading ? (y(), s("div",
|
|
1426
|
+
})])) : (y(), s(e, { key: 2 }, [r.loading ? (y(), s("div", kn, [r.variant === "spinner" ? (y(), s(e, { key: 0 }, [l[2] ||= c("div", { class: "spinner" }, [c("svg", { viewBox: "0 0 50 50" }, [c("circle", {
|
|
1425
1427
|
cx: "25",
|
|
1426
1428
|
cy: "25",
|
|
1427
1429
|
r: "20",
|
|
1428
1430
|
fill: "none",
|
|
1429
1431
|
"stroke-width": "4"
|
|
1430
|
-
})])], -1), r.title ? (y(), s("p",
|
|
1432
|
+
})])], -1), r.title ? (y(), s("p", An, w(r.title), 1)) : o("", !0)], 64)) : o("", !0), r.variant === "dots" ? (y(), s(e, { key: 1 }, [l[3] ||= c("div", { class: "dots" }, [
|
|
1431
1433
|
c("span"),
|
|
1432
1434
|
c("span"),
|
|
1433
1435
|
c("span")
|
|
1434
|
-
], -1), r.title ? (y(), s("p",
|
|
1436
|
+
], -1), r.title ? (y(), s("p", jn, w(r.title), 1)) : o("", !0)], 64)) : o("", !0)])) : C(i.$slots, "default", { key: 1 }, void 0, !0)], 64));
|
|
1435
1437
|
}
|
|
1436
|
-
}), [["__scopeId", "data-v-f3aa02fe"]]),
|
|
1438
|
+
}), [["__scopeId", "data-v-f3aa02fe"]]), Nn = { class: "table-scroll" }, Pn = {
|
|
1437
1439
|
key: 0,
|
|
1438
1440
|
class: "batch"
|
|
1439
|
-
},
|
|
1441
|
+
}, Fn = ["onClick"], In = { class: "th-content" }, Ln = {
|
|
1440
1442
|
key: 0,
|
|
1441
1443
|
class: "sort-icon"
|
|
1442
|
-
},
|
|
1444
|
+
}, Rn = {
|
|
1443
1445
|
key: 0,
|
|
1444
1446
|
viewBox: "0 0 24 24",
|
|
1445
1447
|
fill: "none",
|
|
@@ -1447,7 +1449,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1447
1449
|
"stroke-width": "2",
|
|
1448
1450
|
"stroke-linecap": "round",
|
|
1449
1451
|
"stroke-linejoin": "round"
|
|
1450
|
-
},
|
|
1452
|
+
}, zn = {
|
|
1451
1453
|
key: 1,
|
|
1452
1454
|
viewBox: "0 0 24 24",
|
|
1453
1455
|
fill: "none",
|
|
@@ -1455,7 +1457,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1455
1457
|
"stroke-width": "2",
|
|
1456
1458
|
"stroke-linecap": "round",
|
|
1457
1459
|
"stroke-linejoin": "round"
|
|
1458
|
-
},
|
|
1460
|
+
}, Bn = {
|
|
1459
1461
|
key: 2,
|
|
1460
1462
|
viewBox: "0 0 24 24",
|
|
1461
1463
|
fill: "none",
|
|
@@ -1463,13 +1465,13 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1463
1465
|
"stroke-width": "2",
|
|
1464
1466
|
"stroke-linecap": "round",
|
|
1465
1467
|
"stroke-linejoin": "round"
|
|
1466
|
-
},
|
|
1468
|
+
}, Vn = {
|
|
1467
1469
|
key: 1,
|
|
1468
1470
|
class: "actions"
|
|
1469
|
-
},
|
|
1471
|
+
}, Hn = { key: 0 }, Un = ["onClick"], Wn = {
|
|
1470
1472
|
key: 0,
|
|
1471
1473
|
class: "actions"
|
|
1472
|
-
},
|
|
1474
|
+
}, Gn = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1473
1475
|
__name: "NTable",
|
|
1474
1476
|
props: {
|
|
1475
1477
|
columns: { default: () => [] },
|
|
@@ -1498,37 +1500,37 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1498
1500
|
}), a = (e) => {
|
|
1499
1501
|
e.sortable && (i.value.key === e.key ? i.value.order = i.value.order === "asc" ? "desc" : "asc" : (i.value.key = e.key, i.value.order = "asc"), r("sort", { ...i.value }));
|
|
1500
1502
|
};
|
|
1501
|
-
return (n, l) => (y(), s("div", { class: h(["table", [{ bordered: t.bordered }, { hoverable: t.hoverable }]]) }, [f(
|
|
1503
|
+
return (n, l) => (y(), s("div", { class: h(["table", [{ bordered: t.bordered }, { hoverable: t.hoverable }]]) }, [f(Mn, {
|
|
1502
1504
|
loading: t.loading,
|
|
1503
1505
|
overlay: ""
|
|
1504
1506
|
}, {
|
|
1505
|
-
default: D(() => [c("div",
|
|
1506
|
-
n.$slots.batch ? (y(), s("th",
|
|
1507
|
+
default: D(() => [c("div", Nn, [c("table", null, [c("thead", null, [c("tr", null, [
|
|
1508
|
+
n.$slots.batch ? (y(), s("th", Pn, [C(n.$slots, "batch", {}, void 0, !0)])) : o("", !0),
|
|
1507
1509
|
(y(!0), s(e, null, S(t.columns, (e) => (y(), s("th", {
|
|
1508
1510
|
key: e.key,
|
|
1509
1511
|
class: h({ sortable: e.sortable }),
|
|
1510
1512
|
onClick: (t) => a(e)
|
|
1511
|
-
}, [c("span",
|
|
1512
|
-
n.$slots.actions ? (y(), s("th",
|
|
1513
|
-
])]), !t.loading && t.items.length > 0 ? (y(), s("tbody",
|
|
1513
|
+
}, [c("span", In, [d(w(e.label) + " ", 1), e.sortable ? (y(), s("span", Ln, [i.value.key !== e.key || i.value.order === null ? (y(), s("svg", Rn, [...l[0] ||= [c("path", { d: "M8 9l4-4 4 4" }, null, -1), c("path", { d: "M16 15l-4 4-4-4" }, null, -1)]])) : i.value.order === "asc" ? (y(), s("svg", zn, [...l[1] ||= [c("path", { d: "M8 15l4-6 4 6" }, null, -1)]])) : (y(), s("svg", Bn, [...l[2] ||= [c("path", { d: "M8 9l4 6 4-6" }, null, -1)]]))])) : o("", !0)])], 10, Fn))), 128)),
|
|
1514
|
+
n.$slots.actions ? (y(), s("th", Vn, [C(n.$slots, "actions-header", {}, () => [l[3] ||= d("操作", -1)], !0)])) : o("", !0)
|
|
1515
|
+
])]), !t.loading && t.items.length > 0 ? (y(), s("tbody", Hn, [(y(!0), s(e, null, S(t.items, (e, i) => (y(), s("tr", {
|
|
1514
1516
|
key: e[t.itemKey] ?? i,
|
|
1515
1517
|
onClick: (t) => r("click", e)
|
|
1516
1518
|
}, [C(n.$slots, "item", {
|
|
1517
1519
|
index: i,
|
|
1518
1520
|
item: e,
|
|
1519
1521
|
column: t.columns[i]
|
|
1520
|
-
}, void 0, !0), n.$slots.actions ? (y(), s("td",
|
|
1522
|
+
}, void 0, !0), n.$slots.actions ? (y(), s("td", Wn, [C(n.$slots, "actions", {
|
|
1521
1523
|
index: i,
|
|
1522
1524
|
item: e,
|
|
1523
1525
|
column: t.columns[i]
|
|
1524
|
-
}, void 0, !0)])) : o("", !0)], 8,
|
|
1526
|
+
}, void 0, !0)])) : o("", !0)], 8, Un))), 128))])) : o("", !0)])])]),
|
|
1525
1527
|
_: 3
|
|
1526
|
-
}, 8, ["loading"]), t.items.length === 0 ? C(n.$slots, "empty", { key: 0 }, () => [f(
|
|
1528
|
+
}, 8, ["loading"]), t.items.length === 0 ? C(n.$slots, "empty", { key: 0 }, () => [f(xn, {
|
|
1527
1529
|
title: t.emptyTitle,
|
|
1528
1530
|
description: t.emptyDescription
|
|
1529
1531
|
}, null, 8, ["title", "description"])], !0) : o("", !0)], 2));
|
|
1530
1532
|
}
|
|
1531
|
-
}), [["__scopeId", "data-v-77619033"]]),
|
|
1533
|
+
}), [["__scopeId", "data-v-77619033"]]), Kn = { class: "content-container" }, qn = { key: 0 }, Jn = { class: "actions" }, Yn = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1532
1534
|
__name: "NList",
|
|
1533
1535
|
props: {
|
|
1534
1536
|
title: { default: "" },
|
|
@@ -1598,7 +1600,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1598
1600
|
function ee() {
|
|
1599
1601
|
r.value.clear();
|
|
1600
1602
|
}
|
|
1601
|
-
return (t, r) => (y(), s("div",
|
|
1603
|
+
return (t, r) => (y(), s("div", Kn, [C(t.$slots, "heroSection", {}, () => [f(rn, {
|
|
1602
1604
|
icon: "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\">\n <path d=\"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2\"></path>\n <circle cx=\"12\" cy=\"7\" r=\"4\"></circle>\n </svg>",
|
|
1603
1605
|
title: e.title,
|
|
1604
1606
|
description: e.description
|
|
@@ -1694,11 +1696,11 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1694
1696
|
})) : o("", !0)
|
|
1695
1697
|
]),
|
|
1696
1698
|
key: "0"
|
|
1697
|
-
} : void 0]), 1032, ["title", "description"])], !0), f(
|
|
1699
|
+
} : void 0]), 1032, ["title", "description"])], !0), f(dn, {
|
|
1698
1700
|
size: "none",
|
|
1699
1701
|
radius: "xl"
|
|
1700
1702
|
}, {
|
|
1701
|
-
default: D(() => [f(
|
|
1703
|
+
default: D(() => [f(Gn, {
|
|
1702
1704
|
columns: e.columns,
|
|
1703
1705
|
items: e.items,
|
|
1704
1706
|
hoverable: "",
|
|
@@ -1721,7 +1723,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1721
1723
|
} : void 0,
|
|
1722
1724
|
t.$slots.item ? {
|
|
1723
1725
|
name: "item",
|
|
1724
|
-
fn: D(({ item: n, column: r, index: i }) => [e.batchDeletable ? (y(), s("td",
|
|
1726
|
+
fn: D(({ item: n, column: r, index: i }) => [e.batchDeletable ? (y(), s("td", qn, [f(H, {
|
|
1725
1727
|
onClick: O((e) => h(n), ["stop"]),
|
|
1726
1728
|
"model-value": p(n.id)
|
|
1727
1729
|
}, null, 8, ["onClick", "model-value"])])) : o("", !0), C(t.$slots, "item", {
|
|
@@ -1736,7 +1738,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1736
1738
|
fn: D(({ item: r, index: i }) => [C(t.$slots, "actions", {
|
|
1737
1739
|
item: r,
|
|
1738
1740
|
index: i
|
|
1739
|
-
}, () => [c("div",
|
|
1741
|
+
}, () => [c("div", Jn, [e.updatable ? (y(), a(M, {
|
|
1740
1742
|
key: 0,
|
|
1741
1743
|
variant: "outline",
|
|
1742
1744
|
onClick: O(() => n("update", r), ["stop"])
|
|
@@ -1766,7 +1768,7 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1766
1768
|
"empty-icon",
|
|
1767
1769
|
"empty-title",
|
|
1768
1770
|
"empty-description"
|
|
1769
|
-
]), e.items.length > 0 ? (y(), a(
|
|
1771
|
+
]), e.items.length > 0 ? (y(), a(gn, {
|
|
1770
1772
|
key: 0,
|
|
1771
1773
|
"total-items": e.totalItems,
|
|
1772
1774
|
"current-page": e.currentPage,
|
|
@@ -1782,11 +1784,11 @@ var Gt = { class: "hero-section-container" }, Kt = { class: "hero-section" }, qt
|
|
|
1782
1784
|
_: 3
|
|
1783
1785
|
})]));
|
|
1784
1786
|
}
|
|
1785
|
-
}), [["__scopeId", "data-v-66c8acf7"]]),
|
|
1786
|
-
function
|
|
1787
|
+
}), [["__scopeId", "data-v-66c8acf7"]]), Xn = 0, Zn = b([]);
|
|
1788
|
+
function Qn() {
|
|
1787
1789
|
let e = function(e, n = {}) {
|
|
1788
|
-
let r = ++
|
|
1789
|
-
|
|
1790
|
+
let r = ++Xn, i = n.duration ?? 4e3;
|
|
1791
|
+
Zn.push({
|
|
1790
1792
|
id: r,
|
|
1791
1793
|
description: e,
|
|
1792
1794
|
status: n.status ?? "info",
|
|
@@ -1808,31 +1810,31 @@ function Xn() {
|
|
|
1808
1810
|
status: "info"
|
|
1809
1811
|
});
|
|
1810
1812
|
function t(e) {
|
|
1811
|
-
let t =
|
|
1812
|
-
t !== -1 &&
|
|
1813
|
+
let t = Zn.findIndex((t) => t.id === e);
|
|
1814
|
+
t !== -1 && Zn.splice(t, 1);
|
|
1813
1815
|
}
|
|
1814
1816
|
return {
|
|
1815
|
-
toasts:
|
|
1817
|
+
toasts: Zn,
|
|
1816
1818
|
toast: e,
|
|
1817
1819
|
removeToast: t
|
|
1818
1820
|
};
|
|
1819
1821
|
}
|
|
1820
1822
|
//#endregion
|
|
1821
1823
|
//#region src/components/NToast.vue?vue&type=script&setup=true&lang.ts
|
|
1822
|
-
var
|
|
1824
|
+
var $n = { class: "icon-wrap" }, er = ["innerHTML"], tr = {
|
|
1823
1825
|
key: 0,
|
|
1824
1826
|
class: "arc-timer",
|
|
1825
1827
|
viewBox: "0 0 36 36",
|
|
1826
1828
|
width: "36",
|
|
1827
1829
|
height: "36",
|
|
1828
1830
|
"shape-rendering": "geometricPrecision"
|
|
1829
|
-
},
|
|
1831
|
+
}, nr = { class: "body" }, rr = {
|
|
1830
1832
|
key: 0,
|
|
1831
1833
|
class: "title"
|
|
1832
|
-
},
|
|
1834
|
+
}, ir = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1833
1835
|
__name: "NToast",
|
|
1834
1836
|
setup(n) {
|
|
1835
|
-
let { toasts: i } =
|
|
1837
|
+
let { toasts: i } = Qn(), l = {
|
|
1836
1838
|
success: "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\n <path d=\"M20 6 9 17l-5-5\"/>\n </svg>",
|
|
1837
1839
|
danger: "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\n <circle cx=\"12\" cy=\"12\" r=\"10\"/>\n <path d=\"m15 9-6 6\"/>\n <path d=\"m9 9 6 6\"/>\n </svg>",
|
|
1838
1840
|
warning: "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\n <path d=\"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3\"/>\n <path d=\"M12 9v4\"/>\n <path d=\"M12 17h.01\"/>\n </svg>",
|
|
@@ -1846,10 +1848,10 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
1846
1848
|
default: D(() => [(y(!0), s(e, null, S(T(i), (e) => (y(), s("div", {
|
|
1847
1849
|
key: e.id,
|
|
1848
1850
|
class: h(["toast", [`${e.status}`]])
|
|
1849
|
-
}, [c("div",
|
|
1851
|
+
}, [c("div", $n, [c("div", {
|
|
1850
1852
|
class: "icon",
|
|
1851
1853
|
innerHTML: l[e.status]
|
|
1852
|
-
}, null, 8,
|
|
1854
|
+
}, null, 8, er), e.duration > 0 ? (y(), s("svg", tr, [u[0] ||= c("circle", {
|
|
1853
1855
|
class: "arc-track",
|
|
1854
1856
|
cx: "18",
|
|
1855
1857
|
cy: "18",
|
|
@@ -1861,17 +1863,17 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
1861
1863
|
r: "16",
|
|
1862
1864
|
transform: "rotate(-90 18 18)",
|
|
1863
1865
|
style: g({ animationDuration: `${e.duration}ms` })
|
|
1864
|
-
}, null, 4)])) : o("", !0)]), c("div",
|
|
1866
|
+
}, null, 4)])) : o("", !0)]), c("div", nr, [e.title ? (y(), s("p", rr, w(e.title), 1)) : o("", !0), e.description ? (y(), s("p", {
|
|
1865
1867
|
key: 1,
|
|
1866
1868
|
class: h(e.title ? "description" : "title")
|
|
1867
1869
|
}, w(e.description), 3)) : o("", !0)])], 2))), 128))]),
|
|
1868
1870
|
_: 1
|
|
1869
1871
|
})]));
|
|
1870
1872
|
}
|
|
1871
|
-
}), [["__scopeId", "data-v-53892c5f"]]),
|
|
1873
|
+
}), [["__scopeId", "data-v-53892c5f"]]), ar = { class: "code" }, or = {
|
|
1872
1874
|
key: 0,
|
|
1873
1875
|
class: "header"
|
|
1874
|
-
},
|
|
1876
|
+
}, sr = { class: "language-label" }, cr = {
|
|
1875
1877
|
key: 0,
|
|
1876
1878
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1877
1879
|
width: "14",
|
|
@@ -1882,7 +1884,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
1882
1884
|
"stroke-width": "2",
|
|
1883
1885
|
"stroke-linecap": "round",
|
|
1884
1886
|
"stroke-linejoin": "round"
|
|
1885
|
-
},
|
|
1887
|
+
}, lr = {
|
|
1886
1888
|
key: 1,
|
|
1887
1889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1888
1890
|
width: "14",
|
|
@@ -1893,10 +1895,10 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
1893
1895
|
"stroke-width": "2",
|
|
1894
1896
|
"stroke-linecap": "round",
|
|
1895
1897
|
"stroke-linejoin": "round"
|
|
1896
|
-
},
|
|
1898
|
+
}, ur = { class: "code-body" }, dr = {
|
|
1897
1899
|
key: 0,
|
|
1898
1900
|
class: "gutter"
|
|
1899
|
-
},
|
|
1901
|
+
}, fr = ["textContent"], pr = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1900
1902
|
__name: "NCode",
|
|
1901
1903
|
props: {
|
|
1902
1904
|
code: {},
|
|
@@ -1915,28 +1917,28 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
1915
1917
|
}, 2e3);
|
|
1916
1918
|
} catch {}
|
|
1917
1919
|
}
|
|
1918
|
-
return (i, l) => (y(), s("div",
|
|
1920
|
+
return (i, l) => (y(), s("div", ar, [(t.language, y(), s("div", or, [c("span", sr, w(t.language || "code"), 1), c("button", {
|
|
1919
1921
|
class: h(["copy-btn", { copied: n.value }]),
|
|
1920
1922
|
onClick: a
|
|
1921
|
-
}, [n.value ? (y(), s("svg",
|
|
1923
|
+
}, [n.value ? (y(), s("svg", lr, [...l[1] ||= [c("polyline", { points: "20 6 9 17 4 12" }, null, -1)]])) : (y(), s("svg", cr, [...l[0] ||= [c("rect", {
|
|
1922
1924
|
x: "9",
|
|
1923
1925
|
y: "9",
|
|
1924
1926
|
width: "13",
|
|
1925
1927
|
height: "13",
|
|
1926
1928
|
rx: "2",
|
|
1927
1929
|
ry: "2"
|
|
1928
|
-
}, null, -1), c("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" }, null, -1)]])), c("span", null, w(n.value ? "Copied!" : "Copy"), 1)], 2)])), c("div",
|
|
1930
|
+
}, null, -1), c("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" }, null, -1)]])), c("span", null, w(n.value ? "Copied!" : "Copy"), 1)], 2)])), c("div", ur, [t.showLineNumbers ? (y(), s("div", dr, [(y(!0), s(e, null, S(r.value, (e, t) => (y(), s("span", {
|
|
1929
1931
|
key: t,
|
|
1930
1932
|
class: "line-number"
|
|
1931
1933
|
}, w(t + 1), 1))), 128))])) : o("", !0), c("pre", {
|
|
1932
1934
|
class: "code-content",
|
|
1933
1935
|
textContent: w(t.code.trim())
|
|
1934
|
-
}, null, 8,
|
|
1936
|
+
}, null, 8, fr)])]));
|
|
1935
1937
|
}
|
|
1936
|
-
}), [["__scopeId", "data-v-6fed5425"]]),
|
|
1938
|
+
}), [["__scopeId", "data-v-6fed5425"]]), mr = {
|
|
1937
1939
|
key: 0,
|
|
1938
1940
|
class: "label"
|
|
1939
|
-
},
|
|
1941
|
+
}, hr = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1940
1942
|
__name: "NSwitch",
|
|
1941
1943
|
props: {
|
|
1942
1944
|
modelValue: {
|
|
@@ -1961,7 +1963,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
1961
1963
|
let e = !n.modelValue;
|
|
1962
1964
|
r("update:modelValue", e), r("change", e);
|
|
1963
1965
|
};
|
|
1964
|
-
return (t, n) => (y(), s("div", { class: h(["switch-wrapper", { inline: e.inline }]) }, [e.title ? (y(), s("label",
|
|
1966
|
+
return (t, n) => (y(), s("div", { class: h(["switch-wrapper", { inline: e.inline }]) }, [e.title ? (y(), s("label", mr, w(e.title), 1)) : o("", !0), c("div", {
|
|
1965
1967
|
class: h(["switch", [
|
|
1966
1968
|
`size-${e.size}`,
|
|
1967
1969
|
{ checked: a.value },
|
|
@@ -1970,7 +1972,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
1970
1972
|
onClick: l
|
|
1971
1973
|
}, [...n[0] ||= [c("div", { class: "inner" }, [c("div", { class: "handle" })], -1)]], 2)], 2));
|
|
1972
1974
|
}
|
|
1973
|
-
}), [["__scopeId", "data-v-efa08615"]]),
|
|
1975
|
+
}), [["__scopeId", "data-v-efa08615"]]), gr = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
1974
1976
|
__name: "NTag",
|
|
1975
1977
|
props: {
|
|
1976
1978
|
intent: { default: "none" },
|
|
@@ -2019,49 +2021,49 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2019
2021
|
y2: "18"
|
|
2020
2022
|
})], -1)]])) : o("", !0)], 2));
|
|
2021
2023
|
}
|
|
2022
|
-
}), [["__scopeId", "data-v-55e5be0f"]]),
|
|
2024
|
+
}), [["__scopeId", "data-v-55e5be0f"]]), _r = {
|
|
2023
2025
|
key: 0,
|
|
2024
2026
|
class: "label"
|
|
2025
|
-
},
|
|
2027
|
+
}, vr = {
|
|
2026
2028
|
key: 0,
|
|
2027
2029
|
class: "picker-dropdown"
|
|
2028
|
-
},
|
|
2030
|
+
}, yr = { class: "picker-header" }, br = { class: "header-nav" }, xr = { class: "header-nav" }, Sr = { class: "picker-body" }, Cr = { class: "weekday-grid" }, wr = { class: "day-grid" }, Tr = {
|
|
2029
2031
|
key: 1,
|
|
2030
2032
|
class: "year-grid"
|
|
2031
|
-
},
|
|
2033
|
+
}, Er = {
|
|
2032
2034
|
key: 0,
|
|
2033
2035
|
class: "time-section"
|
|
2034
|
-
},
|
|
2036
|
+
}, Dr = { class: "time-sliders" }, Or = {
|
|
2035
2037
|
key: 0,
|
|
2036
2038
|
class: "time-row"
|
|
2037
|
-
},
|
|
2039
|
+
}, kr = ["value"], Ar = { class: "time-val" }, jr = {
|
|
2038
2040
|
key: 1,
|
|
2039
2041
|
class: "time-row"
|
|
2040
|
-
},
|
|
2042
|
+
}, Mr = ["value"], Nr = { class: "time-val" }, Pr = { class: "mobile-sheet" }, Fr = { class: "picker-header" }, Ir = { class: "header-nav" }, Lr = { class: "header-nav" }, Rr = { class: "picker-body" }, zr = { class: "weekday-grid" }, Br = { class: "day-grid" }, Vr = {
|
|
2041
2043
|
key: 1,
|
|
2042
2044
|
class: "year-grid"
|
|
2043
|
-
},
|
|
2045
|
+
}, Hr = {
|
|
2044
2046
|
key: 0,
|
|
2045
2047
|
class: "time-section"
|
|
2046
|
-
},
|
|
2048
|
+
}, Ur = { class: "time-sliders" }, Wr = {
|
|
2047
2049
|
key: 0,
|
|
2048
2050
|
class: "time-row"
|
|
2049
|
-
},
|
|
2051
|
+
}, Gr = ["value"], Kr = { class: "time-val" }, qr = {
|
|
2050
2052
|
key: 1,
|
|
2051
2053
|
class: "time-row"
|
|
2052
|
-
},
|
|
2054
|
+
}, Jr = ["value"], Yr = { class: "time-val" }, Xr = { class: "range-modal" }, Zr = { class: "range-body" }, Qr = {
|
|
2053
2055
|
key: 0,
|
|
2054
2056
|
class: "range-sep"
|
|
2055
|
-
},
|
|
2057
|
+
}, $r = { class: "range-cal" }, ei = { class: "picker-header" }, ti = { class: "header-nav" }, ni = {
|
|
2056
2058
|
key: 1,
|
|
2057
2059
|
class: "header-nav-placeholder"
|
|
2058
|
-
},
|
|
2060
|
+
}, ri = { class: "header-title no-click" }, ii = { class: "header-nav" }, ai = {
|
|
2059
2061
|
key: 1,
|
|
2060
2062
|
class: "header-nav-placeholder"
|
|
2061
|
-
},
|
|
2063
|
+
}, oi = { class: "weekday-grid" }, si = { class: "day-grid range-day-grid" }, ci = ["onClick", "onMouseenter"], li = { class: "range-footer" }, ui = { class: "range-display" }, di = { class: "mobile-sheet" }, fi = {
|
|
2062
2064
|
class: "picker-header",
|
|
2063
2065
|
style: { "margin-top": "8px" }
|
|
2064
|
-
},
|
|
2066
|
+
}, pi = { class: "header-nav" }, mi = { class: "header-title no-click" }, hi = { class: "header-nav" }, gi = { class: "weekday-grid" }, _i = { class: "day-grid range-day-grid" }, vi = ["onClick"], yi = { class: "range-footer" }, bi = { class: "range-display" }, xi = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
2065
2067
|
__name: "NDatePicker",
|
|
2066
2068
|
props: {
|
|
2067
2069
|
modelValue: { default: "" },
|
|
@@ -2346,7 +2348,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2346
2348
|
ref: C,
|
|
2347
2349
|
class: "datepicker"
|
|
2348
2350
|
}, [
|
|
2349
|
-
t.title ? (y(), s("label",
|
|
2351
|
+
t.title ? (y(), s("label", _r, w(t.title), 1)) : o("", !0),
|
|
2350
2352
|
c("div", { class: h(["date-picker", {
|
|
2351
2353
|
open: b.value && !t.range && !T.value,
|
|
2352
2354
|
disabled: t.disabled
|
|
@@ -2373,9 +2375,9 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2373
2375
|
}, [c("path", { d: "M18 6 6 18" }), c("path", { d: "m6 6 12 12" })], -1)]]),
|
|
2374
2376
|
_: 1
|
|
2375
2377
|
})) : o("", !0)]), f(n, { name: "fade" }, {
|
|
2376
|
-
default: D(() => [b.value && !t.range && !T.value ? (y(), s("div",
|
|
2377
|
-
c("div",
|
|
2378
|
-
c("div",
|
|
2378
|
+
default: D(() => [b.value && !t.range && !T.value ? (y(), s("div", vr, [
|
|
2379
|
+
c("div", yr, [
|
|
2380
|
+
c("div", br, [f(M, {
|
|
2379
2381
|
variant: "ghost",
|
|
2380
2382
|
square: "",
|
|
2381
2383
|
onClick: i[0] ||= (e) => Ce(-1)
|
|
@@ -2415,7 +2417,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2415
2417
|
class: "header-title",
|
|
2416
2418
|
onClick: He
|
|
2417
2419
|
}, [P.value === "date" ? (y(), s(e, { key: 0 }, [d(w(re[ue.value]) + " " + w(z.value), 1)], 64)) : (y(), s(e, { key: 1 }, [d(w(B.value[0]) + " - " + w(B.value[B.value.length - 1]), 1)], 64))]),
|
|
2418
|
-
c("div",
|
|
2420
|
+
c("div", xr, [P.value === "date" ? (y(), a(M, {
|
|
2419
2421
|
key: 0,
|
|
2420
2422
|
variant: "ghost",
|
|
2421
2423
|
square: "",
|
|
@@ -2452,10 +2454,10 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2452
2454
|
_: 1
|
|
2453
2455
|
})])
|
|
2454
2456
|
]),
|
|
2455
|
-
c("div",
|
|
2457
|
+
c("div", Sr, [P.value === "date" ? (y(), s(e, { key: 0 }, [c("div", Cr, [(y(), s(e, null, S(k, (e) => c("span", {
|
|
2456
2458
|
key: e,
|
|
2457
2459
|
class: "weekday"
|
|
2458
|
-
}, w(e), 1)), 64))]), c("div",
|
|
2460
|
+
}, w(e), 1)), 64))]), c("div", wr, [(y(!0), s(e, null, S(fe.value, (e, t) => (y(), a(M, {
|
|
2459
2461
|
key: t,
|
|
2460
2462
|
variant: ve(e) ? "solid" : _e(e) ? "mute" : "ghost",
|
|
2461
2463
|
intent: ve(e) || _e(e) ? "primary" : "none",
|
|
@@ -2470,7 +2472,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2470
2472
|
"intent",
|
|
2471
2473
|
"class",
|
|
2472
2474
|
"onClick"
|
|
2473
|
-
]))), 128))])], 64)) : (y(), s("div",
|
|
2475
|
+
]))), 128))])], 64)) : (y(), s("div", Tr, [(y(!0), s(e, null, S(B.value, (e) => (y(), a(M, {
|
|
2474
2476
|
key: e,
|
|
2475
2477
|
variant: e === z.value ? "solid" : "ghost",
|
|
2476
2478
|
intent: e === z.value ? "primary" : "none",
|
|
@@ -2484,7 +2486,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2484
2486
|
"intent",
|
|
2485
2487
|
"onClick"
|
|
2486
2488
|
]))), 128))]))]),
|
|
2487
|
-
v.value && P.value === "date" ? (y(), s("div",
|
|
2489
|
+
v.value && P.value === "date" ? (y(), s("div", Er, [c("div", Dr, [m.value ? (y(), s("div", Or, [
|
|
2488
2490
|
i[27] ||= c("span", { class: "time-label" }, "時", -1),
|
|
2489
2491
|
f(M, {
|
|
2490
2492
|
variant: "ghost",
|
|
@@ -2515,7 +2517,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2515
2517
|
max: "23",
|
|
2516
2518
|
value: L.value,
|
|
2517
2519
|
onInput: i[5] ||= (e) => Te(e, "H")
|
|
2518
|
-
}, null, 40,
|
|
2520
|
+
}, null, 40, kr),
|
|
2519
2521
|
f(M, {
|
|
2520
2522
|
variant: "ghost",
|
|
2521
2523
|
square: "",
|
|
@@ -2538,8 +2540,8 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2538
2540
|
}, [c("path", { d: "m9 18 6-6-6-6" })], -1)]]),
|
|
2539
2541
|
_: 1
|
|
2540
2542
|
}),
|
|
2541
|
-
c("span",
|
|
2542
|
-
])) : o("", !0), g.value ? (y(), s("div",
|
|
2543
|
+
c("span", Ar, w(N(L.value)), 1)
|
|
2544
|
+
])) : o("", !0), g.value ? (y(), s("div", jr, [
|
|
2543
2545
|
i[30] ||= c("span", { class: "time-label" }, "分", -1),
|
|
2544
2546
|
f(M, {
|
|
2545
2547
|
variant: "ghost",
|
|
@@ -2570,7 +2572,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2570
2572
|
max: "59",
|
|
2571
2573
|
value: R.value,
|
|
2572
2574
|
onInput: i[8] ||= (e) => Te(e, "m")
|
|
2573
|
-
}, null, 40,
|
|
2575
|
+
}, null, 40, Mr),
|
|
2574
2576
|
f(M, {
|
|
2575
2577
|
variant: "ghost",
|
|
2576
2578
|
square: "",
|
|
@@ -2593,7 +2595,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2593
2595
|
}, [c("path", { d: "m9 18 6-6-6-6" })], -1)]]),
|
|
2594
2596
|
_: 1
|
|
2595
2597
|
}),
|
|
2596
|
-
c("span",
|
|
2598
|
+
c("span", Nr, w(N(R.value)), 1)
|
|
2597
2599
|
])) : o("", !0)])])) : o("", !0)
|
|
2598
2600
|
])) : o("", !0)]),
|
|
2599
2601
|
_: 1
|
|
@@ -2603,10 +2605,10 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2603
2605
|
key: 0,
|
|
2604
2606
|
class: "mobile-overlay",
|
|
2605
2607
|
onClick: O(Ve, ["self"])
|
|
2606
|
-
}, [c("div",
|
|
2608
|
+
}, [c("div", Pr, [
|
|
2607
2609
|
i[41] ||= c("div", { class: "sheet-handle" }, null, -1),
|
|
2608
|
-
c("div",
|
|
2609
|
-
c("div",
|
|
2610
|
+
c("div", Fr, [
|
|
2611
|
+
c("div", Ir, [f(M, {
|
|
2610
2612
|
variant: "ghost",
|
|
2611
2613
|
square: "",
|
|
2612
2614
|
onClick: i[10] ||= (e) => Ce(-1)
|
|
@@ -2646,7 +2648,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2646
2648
|
class: "header-title",
|
|
2647
2649
|
onClick: He
|
|
2648
2650
|
}, [P.value === "date" ? (y(), s(e, { key: 0 }, [d(w(re[ue.value]) + " " + w(z.value), 1)], 64)) : (y(), s(e, { key: 1 }, [d(w(B.value[0]) + " - " + w(B.value[B.value.length - 1]), 1)], 64))]),
|
|
2649
|
-
c("div",
|
|
2651
|
+
c("div", Lr, [P.value === "date" ? (y(), a(M, {
|
|
2650
2652
|
key: 0,
|
|
2651
2653
|
variant: "ghost",
|
|
2652
2654
|
square: "",
|
|
@@ -2683,10 +2685,10 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2683
2685
|
_: 1
|
|
2684
2686
|
})])
|
|
2685
2687
|
]),
|
|
2686
|
-
c("div",
|
|
2688
|
+
c("div", Rr, [P.value === "date" ? (y(), s(e, { key: 0 }, [c("div", zr, [(y(), s(e, null, S(k, (e) => c("span", {
|
|
2687
2689
|
key: e,
|
|
2688
2690
|
class: "weekday"
|
|
2689
|
-
}, w(e), 1)), 64))]), c("div",
|
|
2691
|
+
}, w(e), 1)), 64))]), c("div", Br, [(y(!0), s(e, null, S(fe.value, (e, t) => (y(), a(M, {
|
|
2690
2692
|
key: t,
|
|
2691
2693
|
variant: ve(e) ? "solid" : _e(e) ? "mute" : "ghost",
|
|
2692
2694
|
intent: ve(e) || _e(e) ? "primary" : "none",
|
|
@@ -2701,7 +2703,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2701
2703
|
"intent",
|
|
2702
2704
|
"class",
|
|
2703
2705
|
"onClick"
|
|
2704
|
-
]))), 128))])], 64)) : (y(), s("div",
|
|
2706
|
+
]))), 128))])], 64)) : (y(), s("div", Vr, [(y(!0), s(e, null, S(B.value, (e) => (y(), a(M, {
|
|
2705
2707
|
key: e,
|
|
2706
2708
|
variant: e === z.value ? "solid" : "ghost",
|
|
2707
2709
|
intent: e === z.value ? "primary" : "none",
|
|
@@ -2715,7 +2717,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2715
2717
|
"intent",
|
|
2716
2718
|
"onClick"
|
|
2717
2719
|
]))), 128))]))]),
|
|
2718
|
-
v.value && P.value === "date" ? (y(), s("div",
|
|
2720
|
+
v.value && P.value === "date" ? (y(), s("div", Hr, [c("div", Ur, [m.value ? (y(), s("div", Wr, [
|
|
2719
2721
|
i[37] ||= c("span", { class: "time-label" }, "時", -1),
|
|
2720
2722
|
f(M, {
|
|
2721
2723
|
variant: "ghost",
|
|
@@ -2746,7 +2748,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2746
2748
|
max: "23",
|
|
2747
2749
|
value: L.value,
|
|
2748
2750
|
onInput: i[15] ||= (e) => Te(e, "H")
|
|
2749
|
-
}, null, 40,
|
|
2751
|
+
}, null, 40, Gr),
|
|
2750
2752
|
f(M, {
|
|
2751
2753
|
variant: "ghost",
|
|
2752
2754
|
square: "",
|
|
@@ -2769,8 +2771,8 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2769
2771
|
}, [c("path", { d: "m9 18 6-6-6-6" })], -1)]]),
|
|
2770
2772
|
_: 1
|
|
2771
2773
|
}),
|
|
2772
|
-
c("span",
|
|
2773
|
-
])) : o("", !0), g.value ? (y(), s("div",
|
|
2774
|
+
c("span", Kr, w(N(L.value)), 1)
|
|
2775
|
+
])) : o("", !0), g.value ? (y(), s("div", qr, [
|
|
2774
2776
|
i[40] ||= c("span", { class: "time-label" }, "分", -1),
|
|
2775
2777
|
f(M, {
|
|
2776
2778
|
variant: "ghost",
|
|
@@ -2801,7 +2803,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2801
2803
|
max: "59",
|
|
2802
2804
|
value: R.value,
|
|
2803
2805
|
onInput: i[18] ||= (e) => Te(e, "m")
|
|
2804
|
-
}, null, 40,
|
|
2806
|
+
}, null, 40, Jr),
|
|
2805
2807
|
f(M, {
|
|
2806
2808
|
variant: "ghost",
|
|
2807
2809
|
square: "",
|
|
@@ -2824,7 +2826,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2824
2826
|
}, [c("path", { d: "m9 18 6-6-6-6" })], -1)]]),
|
|
2825
2827
|
_: 1
|
|
2826
2828
|
}),
|
|
2827
|
-
c("span",
|
|
2829
|
+
c("span", Yr, w(N(R.value)), 1)
|
|
2828
2830
|
])) : o("", !0)])])) : o("", !0)
|
|
2829
2831
|
])])) : o("", !0)]),
|
|
2830
2832
|
_: 1
|
|
@@ -2834,11 +2836,11 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2834
2836
|
key: 0,
|
|
2835
2837
|
class: "range-overlay",
|
|
2836
2838
|
onClick: O(Ve, ["self"])
|
|
2837
|
-
}, [c("div",
|
|
2839
|
+
}, [c("div", Xr, [
|
|
2838
2840
|
i[46] ||= c("p", { class: "range-modal-title" }, "選擇日期範圍", -1),
|
|
2839
|
-
c("div",
|
|
2840
|
-
c("div",
|
|
2841
|
-
c("div",
|
|
2841
|
+
c("div", Zr, [(y(!0), s(e, null, S(Y.value, (t) => (y(), s(e, { key: t.isLeft ? "left" : "right" }, [t.isLeft ? o("", !0) : (y(), s("div", Qr)), c("div", $r, [
|
|
2842
|
+
c("div", ei, [
|
|
2843
|
+
c("div", ti, [t.isLeft ? (y(), a(M, {
|
|
2842
2844
|
key: 0,
|
|
2843
2845
|
variant: "ghost",
|
|
2844
2846
|
square: "",
|
|
@@ -2856,9 +2858,9 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2856
2858
|
"stroke-linejoin": "round"
|
|
2857
2859
|
}, [c("path", { d: "m15 18-6-6 6-6" })], -1)]]),
|
|
2858
2860
|
_: 1
|
|
2859
|
-
})) : (y(), s("div",
|
|
2860
|
-
c("div",
|
|
2861
|
-
c("div",
|
|
2861
|
+
})) : (y(), s("div", ni))]),
|
|
2862
|
+
c("div", ri, w(re[t.month]) + " " + w(t.year), 1),
|
|
2863
|
+
c("div", ii, [t.isLeft ? (y(), s("div", ai)) : (y(), a(M, {
|
|
2862
2864
|
key: 0,
|
|
2863
2865
|
variant: "ghost",
|
|
2864
2866
|
square: "",
|
|
@@ -2878,18 +2880,18 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2878
2880
|
_: 1
|
|
2879
2881
|
}))])
|
|
2880
2882
|
]),
|
|
2881
|
-
c("div",
|
|
2883
|
+
c("div", oi, [(y(), s(e, null, S(k, (e) => c("span", {
|
|
2882
2884
|
key: e,
|
|
2883
2885
|
class: "weekday"
|
|
2884
2886
|
}, w(e), 1)), 64))]),
|
|
2885
|
-
c("div",
|
|
2887
|
+
c("div", si, [(y(!0), s(e, null, S(t.days, (e, t) => (y(), s("div", {
|
|
2886
2888
|
key: t,
|
|
2887
2889
|
class: h(["range-day", Re(e)]),
|
|
2888
2890
|
onClick: (t) => Le(e),
|
|
2889
2891
|
onMouseenter: (t) => J.value = e
|
|
2890
|
-
}, w(e.day), 43,
|
|
2892
|
+
}, w(e.day), 43, ci))), 128))])
|
|
2891
2893
|
])], 64))), 128))]),
|
|
2892
|
-
c("div",
|
|
2894
|
+
c("div", li, [c("div", ui, [
|
|
2893
2895
|
c("span", { class: h(["range-val", { "is-empty": !X.value }]) }, w(X.value || "開始日期"), 3),
|
|
2894
2896
|
i[44] ||= c("span", { class: "range-arrow" }, "→", -1),
|
|
2895
2897
|
c("span", { class: h(["range-val", { "is-empty": !Pe.value }]) }, w(Pe.value || "結束日期"), 3)
|
|
@@ -2911,11 +2913,11 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2911
2913
|
key: 0,
|
|
2912
2914
|
class: "mobile-overlay",
|
|
2913
2915
|
onClick: O(Ve, ["self"])
|
|
2914
|
-
}, [c("div",
|
|
2916
|
+
}, [c("div", di, [
|
|
2915
2917
|
i[51] ||= c("div", { class: "sheet-handle" }, null, -1),
|
|
2916
2918
|
i[52] ||= c("p", { class: "range-modal-title" }, "選擇日期範圍", -1),
|
|
2917
|
-
c("div",
|
|
2918
|
-
c("div",
|
|
2919
|
+
c("div", fi, [
|
|
2920
|
+
c("div", pi, [f(M, {
|
|
2919
2921
|
variant: "ghost",
|
|
2920
2922
|
square: "",
|
|
2921
2923
|
onClick: Fe
|
|
@@ -2933,8 +2935,8 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2933
2935
|
}, [c("path", { d: "m15 18-6-6 6-6" })], -1)]]),
|
|
2934
2936
|
_: 1
|
|
2935
2937
|
})]),
|
|
2936
|
-
c("div",
|
|
2937
|
-
c("div",
|
|
2938
|
+
c("div", mi, w(re[W.value]) + " " + w(U.value), 1),
|
|
2939
|
+
c("div", hi, [f(M, {
|
|
2938
2940
|
variant: "ghost",
|
|
2939
2941
|
square: "",
|
|
2940
2942
|
onClick: Ie
|
|
@@ -2953,16 +2955,16 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2953
2955
|
_: 1
|
|
2954
2956
|
})])
|
|
2955
2957
|
]),
|
|
2956
|
-
c("div",
|
|
2958
|
+
c("div", gi, [(y(), s(e, null, S(k, (e) => c("span", {
|
|
2957
2959
|
key: e,
|
|
2958
2960
|
class: "weekday"
|
|
2959
2961
|
}, w(e), 1)), 64))]),
|
|
2960
|
-
c("div",
|
|
2962
|
+
c("div", _i, [(y(!0), s(e, null, S(ke.value, (e, t) => (y(), s("div", {
|
|
2961
2963
|
key: t,
|
|
2962
2964
|
class: h(["range-day", Re(e)]),
|
|
2963
2965
|
onClick: (t) => Le(e)
|
|
2964
|
-
}, w(e.day), 11,
|
|
2965
|
-
c("div",
|
|
2966
|
+
}, w(e.day), 11, vi))), 128))]),
|
|
2967
|
+
c("div", yi, [c("div", bi, [
|
|
2966
2968
|
c("span", { class: h(["range-val", { "is-empty": !X.value }]) }, w(X.value || "開始日期"), 3),
|
|
2967
2969
|
i[49] ||= c("span", { class: "range-arrow" }, "→", -1),
|
|
2968
2970
|
c("span", { class: h(["range-val", { "is-empty": !Pe.value }]) }, w(Pe.value || "結束日期"), 3)
|
|
@@ -2981,7 +2983,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
2981
2983
|
})
|
|
2982
2984
|
], 512));
|
|
2983
2985
|
}
|
|
2984
|
-
}), [["__scopeId", "data-v-9f942c6b"]]),
|
|
2986
|
+
}), [["__scopeId", "data-v-9f942c6b"]]), Si = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
2985
2987
|
__name: "NTooltip",
|
|
2986
2988
|
props: {
|
|
2987
2989
|
content: { default: "" },
|
|
@@ -3016,10 +3018,10 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
3016
3018
|
_: 3
|
|
3017
3019
|
})], 32));
|
|
3018
3020
|
}
|
|
3019
|
-
}), [["__scopeId", "data-v-7a53ca0a"]]),
|
|
3021
|
+
}), [["__scopeId", "data-v-7a53ca0a"]]), Ci = { class: "modal-header" }, wi = { class: "modal-title" }, Ti = { class: "modal-content" }, Ei = {
|
|
3020
3022
|
key: 0,
|
|
3021
3023
|
class: "modal-footer"
|
|
3022
|
-
},
|
|
3024
|
+
}, Di = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
3023
3025
|
__name: "NModal",
|
|
3024
3026
|
props: {
|
|
3025
3027
|
show: {
|
|
@@ -3063,7 +3065,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
3063
3065
|
class: "modal-container",
|
|
3064
3066
|
style: g({ width: e.width })
|
|
3065
3067
|
}, [
|
|
3066
|
-
c("header",
|
|
3068
|
+
c("header", Ci, [c("h3", wi, w(e.title), 1), e.showClose ? (y(), s("button", {
|
|
3067
3069
|
key: 0,
|
|
3068
3070
|
class: "close-btn",
|
|
3069
3071
|
onClick: l
|
|
@@ -3075,16 +3077,16 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
3075
3077
|
fill: "currentColor",
|
|
3076
3078
|
d: "M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12L19 6.41Z"
|
|
3077
3079
|
})], -1)]])) : o("", !0)]),
|
|
3078
|
-
c("main",
|
|
3079
|
-
r.$slots.footer ? (y(), s("footer",
|
|
3080
|
+
c("main", Ti, [C(r.$slots, "default", {}, void 0, !0)]),
|
|
3081
|
+
r.$slots.footer ? (y(), s("footer", Ei, [C(r.$slots, "footer", {}, void 0, !0)])) : o("", !0)
|
|
3080
3082
|
], 4)], 4)) : o("", !0)]),
|
|
3081
3083
|
_: 3
|
|
3082
3084
|
})]));
|
|
3083
3085
|
}
|
|
3084
|
-
}), [["__scopeId", "data-v-ee2fac3c"]]),
|
|
3086
|
+
}), [["__scopeId", "data-v-ee2fac3c"]]), Oi = { class: "drawer-header" }, ki = { class: "drawer-title" }, Ai = { class: "drawer-body" }, ji = {
|
|
3085
3087
|
key: 0,
|
|
3086
3088
|
class: "drawer-footer"
|
|
3087
|
-
},
|
|
3089
|
+
}, Mi = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
3088
3090
|
__name: "NDrawer",
|
|
3089
3091
|
props: {
|
|
3090
3092
|
show: {
|
|
@@ -3129,7 +3131,7 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
3129
3131
|
class: h(["drawer-container", [`placement-${e.placement}`]]),
|
|
3130
3132
|
style: g({ width: e.width })
|
|
3131
3133
|
}, [
|
|
3132
|
-
c("header",
|
|
3134
|
+
c("header", Oi, [c("h3", ki, [C(r.$slots, "title", {}, () => [d(w(e.title), 1)], !0)]), e.showClose ? (y(), s("button", {
|
|
3133
3135
|
key: 0,
|
|
3134
3136
|
class: "close-btn",
|
|
3135
3137
|
onClick: l
|
|
@@ -3141,18 +3143,18 @@ var Zn = { class: "icon-wrap" }, Qn = ["innerHTML"], $n = {
|
|
|
3141
3143
|
fill: "currentColor",
|
|
3142
3144
|
d: "M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12L19 6.41Z"
|
|
3143
3145
|
})], -1)]])) : o("", !0)]),
|
|
3144
|
-
c("main",
|
|
3145
|
-
r.$slots.footer ? (y(), s("footer",
|
|
3146
|
+
c("main", Ai, [C(r.$slots, "default", {}, void 0, !0)]),
|
|
3147
|
+
r.$slots.footer ? (y(), s("footer", ji, [C(r.$slots, "footer", {}, void 0, !0)])) : o("", !0)
|
|
3146
3148
|
], 6)], 4)) : o("", !0)]),
|
|
3147
3149
|
_: 3
|
|
3148
3150
|
})]));
|
|
3149
3151
|
}
|
|
3150
|
-
}), [["__scopeId", "data-v-f8c0a0bb"]]),
|
|
3151
|
-
function
|
|
3152
|
+
}), [["__scopeId", "data-v-f8c0a0bb"]]), Ni = 0, Pi = b([]);
|
|
3153
|
+
function Fi() {
|
|
3152
3154
|
let e = function(e, t = {}) {
|
|
3153
|
-
let n = ++
|
|
3155
|
+
let n = ++Ni;
|
|
3154
3156
|
return new Promise((r) => {
|
|
3155
|
-
|
|
3157
|
+
Pi.push({
|
|
3156
3158
|
id: n,
|
|
3157
3159
|
type: "alert",
|
|
3158
3160
|
message: e,
|
|
@@ -3178,8 +3180,8 @@ function Ni() {
|
|
|
3178
3180
|
});
|
|
3179
3181
|
function t(e, t = {}) {
|
|
3180
3182
|
return new Promise((n) => {
|
|
3181
|
-
let r = ++
|
|
3182
|
-
|
|
3183
|
+
let r = ++Ni;
|
|
3184
|
+
Pi.push({
|
|
3183
3185
|
id: r,
|
|
3184
3186
|
type: "confirm",
|
|
3185
3187
|
message: e,
|
|
@@ -3192,10 +3194,10 @@ function Ni() {
|
|
|
3192
3194
|
});
|
|
3193
3195
|
}
|
|
3194
3196
|
function n() {
|
|
3195
|
-
for (;
|
|
3197
|
+
for (; Pi.length > 0;) Pi.shift().resolve(!1);
|
|
3196
3198
|
}
|
|
3197
3199
|
return {
|
|
3198
|
-
alerts:
|
|
3200
|
+
alerts: Pi,
|
|
3199
3201
|
alert: e,
|
|
3200
3202
|
confirm: t,
|
|
3201
3203
|
clearAlerts: n
|
|
@@ -3203,13 +3205,13 @@ function Ni() {
|
|
|
3203
3205
|
}
|
|
3204
3206
|
//#endregion
|
|
3205
3207
|
//#region src/components/NAlert.vue?vue&type=script&setup=true&lang.ts
|
|
3206
|
-
var
|
|
3208
|
+
var Ii = { class: "cards-wrapper" }, Li = ["innerHTML"], Ri = { class: "card-body" }, zi = {
|
|
3207
3209
|
key: 0,
|
|
3208
3210
|
class: "card-title"
|
|
3209
|
-
},
|
|
3211
|
+
}, Bi = { class: "card-message" }, Vi = { class: "card-footer" }, Hi = ["onClick"], Ui = ["onClick"], Wi = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
3210
3212
|
__name: "NAlert",
|
|
3211
3213
|
setup(n) {
|
|
3212
|
-
let { alerts: r, clearAlerts: i } =
|
|
3214
|
+
let { alerts: r, clearAlerts: i } = Fi(), l = {
|
|
3213
3215
|
success: "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"72\" height=\"72\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M8 12l3 3 5-6\"/></svg>",
|
|
3214
3216
|
warning: "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"72\" height=\"72\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3\"/><path d=\"M12 9v4\"/><path d=\"M12 17h.01\"/></svg>",
|
|
3215
3217
|
danger: "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"72\" height=\"72\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m15 9-6 6\"/><path d=\"m9 9 6 6\"/></svg>",
|
|
@@ -3246,7 +3248,7 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3246
3248
|
}
|
|
3247
3249
|
return _(() => document.addEventListener("keydown", m)), v(() => {
|
|
3248
3250
|
document.removeEventListener("keydown", m), i();
|
|
3249
|
-
}), (n, i) => (y(), a(t, { to: "body" }, [c("div", { class: h(["backdrop", { open: T(r).length > 0 }]) }, null, 2), c("div", { class: h(["alert-stack", { open: T(r).length > 0 }]) }, [c("div",
|
|
3251
|
+
}), (n, i) => (y(), a(t, { to: "body" }, [c("div", { class: h(["backdrop", { open: T(r).length > 0 }]) }, null, 2), c("div", { class: h(["alert-stack", { open: T(r).length > 0 }]) }, [c("div", Ii, [(y(!0), s(e, null, S(T(r), (e, t) => (y(), s("div", {
|
|
3250
3252
|
key: e.id,
|
|
3251
3253
|
class: h(["alert-card", `status-${e.status}`]),
|
|
3252
3254
|
style: g(d(t))
|
|
@@ -3254,25 +3256,25 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3254
3256
|
c("div", {
|
|
3255
3257
|
class: "card-icon",
|
|
3256
3258
|
innerHTML: u(e)
|
|
3257
|
-
}, null, 8,
|
|
3258
|
-
c("div",
|
|
3259
|
-
c("div",
|
|
3259
|
+
}, null, 8, Li),
|
|
3260
|
+
c("div", Ri, [e.title ? (y(), s("p", zi, w(e.title), 1)) : o("", !0), c("p", Bi, w(e.message), 1)]),
|
|
3261
|
+
c("div", Vi, [e.type === "confirm" ? (y(), s("button", {
|
|
3260
3262
|
key: 0,
|
|
3261
3263
|
class: "btn btn-cancel",
|
|
3262
3264
|
onClick: (t) => p(e)
|
|
3263
|
-
}, w(e.cancelText), 9,
|
|
3265
|
+
}, w(e.cancelText), 9, Hi)) : o("", !0), c("button", {
|
|
3264
3266
|
class: h(["btn btn-confirm", `btn-${e.status}`]),
|
|
3265
3267
|
onClick: (t) => f(e)
|
|
3266
|
-
}, w(e.confirmText), 11,
|
|
3268
|
+
}, w(e.confirmText), 11, Ui)])
|
|
3267
3269
|
], 6))), 128))])], 2)]));
|
|
3268
3270
|
}
|
|
3269
|
-
}), [["__scopeId", "data-v-20105bbb"]]),
|
|
3271
|
+
}), [["__scopeId", "data-v-20105bbb"]]), Gi = { class: "header" }, Ki = { class: "brand-logo" }, qi = { class: "logo-text" }, Ji = { class: "logo-icon" }, Yi = { class: "nav" }, Xi = ["onClick"], Zi = ["innerHTML"], Qi = { class: "nav-list" }, $i = ["href", "onClick"], ea = ["innerHTML"], ta = { class: "nav-text" }, na = ["href", "onClick"], ra = { class: "title no-children" }, ia = ["innerHTML"], aa = { class: "user-capsule" }, oa = { class: "user-avatar" }, sa = ["src"], ca = {
|
|
3270
3272
|
key: 1,
|
|
3271
3273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3272
3274
|
width: "36",
|
|
3273
3275
|
height: "36",
|
|
3274
3276
|
viewBox: "0 0 36 36"
|
|
3275
|
-
},
|
|
3277
|
+
}, la = { class: "user-info" }, ua = { class: "user-name-row" }, da = { class: "user-name" }, fa = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
3276
3278
|
__name: "NSidebar",
|
|
3277
3279
|
props: {
|
|
3278
3280
|
title: { default: "" },
|
|
@@ -3291,7 +3293,7 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3291
3293
|
"navigate"
|
|
3292
3294
|
],
|
|
3293
3295
|
setup(n, { emit: r }) {
|
|
3294
|
-
let { isMenuExpanded: i, toggleMenu: o, resolveMenuActive: l, resolveItemActive: d } =
|
|
3296
|
+
let { isMenuExpanded: i, toggleMenu: o, resolveMenuActive: l, resolveItemActive: d } = Kt(), p = x(!1), m = r, g = (e) => {
|
|
3295
3297
|
n.currentPath !== e.route && m("navigate", e);
|
|
3296
3298
|
}, ee = (e) => {
|
|
3297
3299
|
!e.route || n.currentPath === e.route || m("navigate", {
|
|
@@ -3325,8 +3327,8 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3325
3327
|
class: "content",
|
|
3326
3328
|
onMouseenter: _[2] ||= (e) => p.value = !0
|
|
3327
3329
|
}, [
|
|
3328
|
-
C(r.$slots, "header", {}, () => [c("div",
|
|
3329
|
-
c("div",
|
|
3330
|
+
C(r.$slots, "header", {}, () => [c("div", Gi, [c("div", Ki, [c("span", qi, w(n.title), 1), c("span", Ji, w(n.title.substring(0, 1).toUpperCase()), 1)])])], !0),
|
|
3331
|
+
c("div", Yi, [(y(!0), s(e, null, S(n.menus, (t) => (y(), s(e, null, [t.children?.length ? (y(), s("div", {
|
|
3330
3332
|
key: 0,
|
|
3331
3333
|
class: h(["menu", {
|
|
3332
3334
|
open: T(i)(t.title),
|
|
@@ -3335,7 +3337,7 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3335
3337
|
}, [c("div", {
|
|
3336
3338
|
class: "title",
|
|
3337
3339
|
onClick: (e) => T(o)(t.title)
|
|
3338
|
-
}, [c("div", null, [c("div", { innerHTML: t.icon }, null, 8,
|
|
3340
|
+
}, [c("div", null, [c("div", { innerHTML: t.icon }, null, 8, Zi), c("span", null, w(t.title), 1)]), _[6] ||= c("svg", {
|
|
3339
3341
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3340
3342
|
width: "14",
|
|
3341
3343
|
height: "14",
|
|
@@ -3346,23 +3348,23 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3346
3348
|
"stroke-linecap": "round",
|
|
3347
3349
|
"stroke-linejoin": "round",
|
|
3348
3350
|
class: "icon"
|
|
3349
|
-
}, [c("path", { d: "m9 18 6-6-6-6" })], -1)], 8,
|
|
3351
|
+
}, [c("path", { d: "m9 18 6-6-6-6" })], -1)], 8, Xi), c("div", Qi, [c("div", null, [(y(!0), s(e, null, S(t.children, (e) => (y(), s("a", {
|
|
3350
3352
|
href: e.route,
|
|
3351
3353
|
onClick: O((t) => g(e), ["prevent"])
|
|
3352
|
-
}, [c("div", { class: h(["nav-item", { active: T(d)(e, n.currentPath) }]) }, [c("div", { innerHTML: e.icon }, null, 8,
|
|
3354
|
+
}, [c("div", { class: h(["nav-item", { active: T(d)(e, n.currentPath) }]) }, [c("div", { innerHTML: e.icon }, null, 8, ea), c("span", ta, w(e.title), 1)], 2)], 8, $i))), 256))])])], 2)) : (y(), s("div", {
|
|
3353
3355
|
key: 1,
|
|
3354
3356
|
class: h(["menu", { active: t.route === n.currentPath }])
|
|
3355
3357
|
}, [c("a", {
|
|
3356
3358
|
href: t.route,
|
|
3357
3359
|
onClick: O((e) => ee(t), ["prevent"])
|
|
3358
|
-
}, [c("div",
|
|
3359
|
-
c("div",
|
|
3360
|
-
c("div",
|
|
3360
|
+
}, [c("div", ra, [c("div", null, [c("div", { innerHTML: t.icon }, null, 8, ia), c("span", null, w(t.title), 1)])])], 8, na)], 2))], 64))), 256))]),
|
|
3361
|
+
c("div", aa, [C(r.$slots, "user", {}, () => [
|
|
3362
|
+
c("div", oa, [n.userAvatarUrl ? (y(), s("img", {
|
|
3361
3363
|
key: 0,
|
|
3362
3364
|
src: n.userAvatarUrl,
|
|
3363
3365
|
alt: "User Avatar"
|
|
3364
|
-
}, null, 8,
|
|
3365
|
-
c("div",
|
|
3366
|
+
}, null, 8, sa)) : (y(), s("svg", ca, [..._[7] ||= [u("<defs data-v-2c73c218><clipPath id=\"avatarClip\" data-v-2c73c218><circle cx=\"18\" cy=\"18\" r=\"18\" data-v-2c73c218></circle></clipPath></defs><circle cx=\"18\" cy=\"18\" r=\"18\" fill=\"#dbeafe\" data-v-2c73c218></circle><g clip-path=\"url(#avatarClip)\" data-v-2c73c218><circle cx=\"18\" cy=\"14\" r=\"6\" fill=\"#2563eb\" data-v-2c73c218></circle><path d=\"M6,34 Q6,24 18,24 Q30,24 30,34\" fill=\"#2563eb\" data-v-2c73c218></path></g>", 3)]]))]),
|
|
3367
|
+
c("div", la, [c("div", ua, [c("span", da, w(n.userName), 1)])]),
|
|
3366
3368
|
f(M, {
|
|
3367
3369
|
class: "logout-btn",
|
|
3368
3370
|
intent: "error",
|
|
@@ -3401,10 +3403,11 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3401
3403
|
}, null, 2)]))
|
|
3402
3404
|
], 34));
|
|
3403
3405
|
}
|
|
3404
|
-
}), [["__scopeId", "data-v-
|
|
3406
|
+
}), [["__scopeId", "data-v-2c73c218"]]), pa = { class: "layout" }, ma = { class: "main-content" }, ha = { class: "copyright" }, ga = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
3405
3407
|
__name: "NLayout",
|
|
3406
3408
|
props: {
|
|
3407
|
-
title: { default: "" },
|
|
3409
|
+
title: { default: "NICKLABS" },
|
|
3410
|
+
userName: { default: "ADMINISTRATOR" },
|
|
3408
3411
|
isShowSidebar: {
|
|
3409
3412
|
type: Boolean,
|
|
3410
3413
|
default: !0
|
|
@@ -3415,10 +3418,11 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3415
3418
|
},
|
|
3416
3419
|
emits: ["logout", "navigate"],
|
|
3417
3420
|
setup(e, { emit: t }) {
|
|
3418
|
-
let n =
|
|
3419
|
-
return (t, i) => (y(), s("div",
|
|
3421
|
+
let n = Kt(), r = t;
|
|
3422
|
+
return (t, i) => (y(), s("div", pa, [e.isShowSidebar ? (y(), a(fa, {
|
|
3420
3423
|
key: 0,
|
|
3421
3424
|
title: e.title,
|
|
3425
|
+
userName: e.userName,
|
|
3422
3426
|
isOpen: T(n).isSidebarExpanded(),
|
|
3423
3427
|
"onUpdate:isOpen": i[0] ||= (e) => T(n).toggleSidebar(),
|
|
3424
3428
|
menus: e.menus,
|
|
@@ -3427,21 +3431,22 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3427
3431
|
onNavigate: i[2] ||= (e) => r("navigate", e)
|
|
3428
3432
|
}, null, 8, [
|
|
3429
3433
|
"title",
|
|
3434
|
+
"userName",
|
|
3430
3435
|
"isOpen",
|
|
3431
3436
|
"menus",
|
|
3432
3437
|
"currentPath"
|
|
3433
|
-
])) : o("", !0), c("main",
|
|
3438
|
+
])) : o("", !0), c("main", ma, [C(t.$slots, "default", {}, void 0, !0), c("div", ha, w(e.copyright), 1)])]));
|
|
3434
3439
|
}
|
|
3435
|
-
}), [["__scopeId", "data-v-
|
|
3440
|
+
}), [["__scopeId", "data-v-41b1eb44"]]), _a = { class: "topbar" }, va = { class: "topbar-left" }, ya = { class: "topbar-right" }, ba = {
|
|
3436
3441
|
key: 0,
|
|
3437
3442
|
class: "pill"
|
|
3438
|
-
},
|
|
3443
|
+
}, xa = {
|
|
3439
3444
|
key: 0,
|
|
3440
3445
|
class: "name"
|
|
3441
|
-
},
|
|
3446
|
+
}, Sa = {
|
|
3442
3447
|
key: 1,
|
|
3443
3448
|
class: "separator"
|
|
3444
|
-
},
|
|
3449
|
+
}, Ca = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
3445
3450
|
__name: "NNavigation",
|
|
3446
3451
|
props: {
|
|
3447
3452
|
isShowSidebar: {
|
|
@@ -3466,7 +3471,7 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3466
3471
|
let n = t, r = () => {
|
|
3467
3472
|
document.fullscreenElement ? document.exitFullscreen?.() : document.documentElement.requestFullscreen();
|
|
3468
3473
|
};
|
|
3469
|
-
return (t, i) => (y(), s("header",
|
|
3474
|
+
return (t, i) => (y(), s("header", _a, [c("div", va, [e.isShowSidebar ? (y(), a(M, {
|
|
3470
3475
|
key: 0,
|
|
3471
3476
|
onClick: i[0] ||= (e) => n("toggleSidebar"),
|
|
3472
3477
|
padding: "8px"
|
|
@@ -3509,9 +3514,9 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3509
3514
|
c("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
3510
3515
|
], -1)]]),
|
|
3511
3516
|
_: 1
|
|
3512
|
-
})) : o("", !0)]), c("div",
|
|
3513
|
-
e.isShowUser ? (y(), s("span",
|
|
3514
|
-
e.isShowUser && e.isShowLogoutButton ? (y(), s("div",
|
|
3517
|
+
})) : o("", !0)]), c("div", ya, [e.isShowUser || e.isShowLogoutButton ? (y(), s("div", ba, [
|
|
3518
|
+
e.isShowUser ? (y(), s("span", xa, "Nick")) : o("", !0),
|
|
3519
|
+
e.isShowUser && e.isShowLogoutButton ? (y(), s("div", Sa)) : o("", !0),
|
|
3515
3520
|
e.isShowLogoutButton ? (y(), a(M, {
|
|
3516
3521
|
key: 2,
|
|
3517
3522
|
variant: "mute",
|
|
@@ -3537,10 +3542,10 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3537
3542
|
})) : o("", !0)
|
|
3538
3543
|
])) : o("", !0)])]));
|
|
3539
3544
|
}
|
|
3540
|
-
}), [["__scopeId", "data-v-f38a4beb"]]),
|
|
3545
|
+
}), [["__scopeId", "data-v-f38a4beb"]]), wa = { class: "brand" }, Ta = ["src", "alt"], Ea = {
|
|
3541
3546
|
key: 1,
|
|
3542
3547
|
class: "icon"
|
|
3543
|
-
},
|
|
3548
|
+
}, Da = { key: 2 }, Oa = { key: 3 }, ka = /* @__PURE__ */ j(/* @__PURE__ */ p({
|
|
3544
3549
|
__name: "NLoginLayout",
|
|
3545
3550
|
props: {
|
|
3546
3551
|
backgroundImage: { default: "" },
|
|
@@ -3553,20 +3558,20 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3553
3558
|
return (n, r) => (y(), s("div", {
|
|
3554
3559
|
class: "login-wrapper",
|
|
3555
3560
|
style: g({ "--login-bg": e.backgroundImage ? `url('${e.backgroundImage}')` : "var(--bg-gradient)" })
|
|
3556
|
-
}, [f(
|
|
3561
|
+
}, [f(dn, {
|
|
3557
3562
|
size: "lg",
|
|
3558
3563
|
radius: "xl",
|
|
3559
3564
|
class: "card"
|
|
3560
3565
|
}, {
|
|
3561
|
-
default: D(() => [c("div",
|
|
3566
|
+
default: D(() => [c("div", wa, [
|
|
3562
3567
|
t.value ? (y(), s("img", {
|
|
3563
3568
|
key: 0,
|
|
3564
3569
|
class: "logo-img",
|
|
3565
3570
|
src: e.logo,
|
|
3566
3571
|
alt: e.title
|
|
3567
|
-
}, null, 8,
|
|
3568
|
-
e.title ? (y(), s("h1",
|
|
3569
|
-
e.description ? (y(), s("p",
|
|
3572
|
+
}, null, 8, Ta)) : (y(), s("div", Ea, w(e.logo), 1)),
|
|
3573
|
+
e.title ? (y(), s("h1", Da, w(e.title), 1)) : o("", !0),
|
|
3574
|
+
e.description ? (y(), s("p", Oa, w(e.description), 1)) : o("", !0)
|
|
3570
3575
|
]), C(n.$slots, "default", {}, void 0, !0)]),
|
|
3571
3576
|
_: 3
|
|
3572
3577
|
})], 4));
|
|
@@ -3574,7 +3579,7 @@ var Pi = { class: "cards-wrapper" }, Fi = ["innerHTML"], Ii = { class: "card-bod
|
|
|
3574
3579
|
}), [["__scopeId", "data-v-f0866bc5"]]);
|
|
3575
3580
|
//#endregion
|
|
3576
3581
|
//#region src/composables/useRouteModal.ts
|
|
3577
|
-
function
|
|
3582
|
+
function Aa(e) {
|
|
3578
3583
|
let t = i(() => {
|
|
3579
3584
|
let t = A();
|
|
3580
3585
|
return t ? t.currentRoute.value.matched.some((t) => t.name === e.routeName) : !1;
|
|
@@ -3598,7 +3603,7 @@ function Oa(e) {
|
|
|
3598
3603
|
}
|
|
3599
3604
|
//#endregion
|
|
3600
3605
|
//#region src/composables/useDisclosure.ts
|
|
3601
|
-
function
|
|
3606
|
+
function ja() {
|
|
3602
3607
|
let e = x(!1);
|
|
3603
3608
|
function t() {
|
|
3604
3609
|
e.value = !0;
|
|
@@ -3614,37 +3619,37 @@ function ka() {
|
|
|
3614
3619
|
}
|
|
3615
3620
|
//#endregion
|
|
3616
3621
|
//#region src/index.ts
|
|
3617
|
-
var
|
|
3622
|
+
var Ma = {
|
|
3618
3623
|
NButton: M,
|
|
3619
3624
|
NBreadcrumb: ce,
|
|
3620
3625
|
NInput: me,
|
|
3621
3626
|
NTextarea: ye,
|
|
3622
3627
|
NCheckbox: H,
|
|
3623
3628
|
NSelect: Ae,
|
|
3624
|
-
NFileSelect:
|
|
3625
|
-
NForm:
|
|
3626
|
-
NList:
|
|
3627
|
-
NEmpty:
|
|
3628
|
-
NToast:
|
|
3629
|
-
NLoading:
|
|
3630
|
-
NCode:
|
|
3631
|
-
NSwitch:
|
|
3632
|
-
NTag:
|
|
3633
|
-
NDatePicker:
|
|
3634
|
-
NTooltip:
|
|
3635
|
-
NModal:
|
|
3636
|
-
NDrawer:
|
|
3637
|
-
NAlert:
|
|
3638
|
-
NTable:
|
|
3639
|
-
NLayout:
|
|
3640
|
-
NNavigation:
|
|
3641
|
-
NSidebar:
|
|
3642
|
-
NCard:
|
|
3643
|
-
NLoginLayout:
|
|
3644
|
-
},
|
|
3645
|
-
Object.entries(
|
|
3629
|
+
NFileSelect: Ht,
|
|
3630
|
+
NForm: un,
|
|
3631
|
+
NList: Yn,
|
|
3632
|
+
NEmpty: xn,
|
|
3633
|
+
NToast: ir,
|
|
3634
|
+
NLoading: Mn,
|
|
3635
|
+
NCode: pr,
|
|
3636
|
+
NSwitch: hr,
|
|
3637
|
+
NTag: gr,
|
|
3638
|
+
NDatePicker: xi,
|
|
3639
|
+
NTooltip: Si,
|
|
3640
|
+
NModal: Di,
|
|
3641
|
+
NDrawer: Mi,
|
|
3642
|
+
NAlert: Wi,
|
|
3643
|
+
NTable: Gn,
|
|
3644
|
+
NLayout: ga,
|
|
3645
|
+
NNavigation: Ca,
|
|
3646
|
+
NSidebar: fa,
|
|
3647
|
+
NCard: dn,
|
|
3648
|
+
NLoginLayout: ka
|
|
3649
|
+
}, Na = { install(e, t = {}) {
|
|
3650
|
+
Object.entries(Ma).forEach(([t, n]) => {
|
|
3646
3651
|
e.component(t, n);
|
|
3647
3652
|
}), t.router && ie(t.router);
|
|
3648
3653
|
} };
|
|
3649
3654
|
//#endregion
|
|
3650
|
-
export {
|
|
3655
|
+
export { Wi as NAlert, M as NButton, dn as NCard, H as NCheckbox, pr as NCode, xi as NDatePicker, Mi as NDrawer, xn as NEmpty, Ht as NFileSelect, un as NForm, me as NInput, ga as NLayout, Yn as NList, Mn as NLoading, ka as NLoginLayout, Di as NModal, Ca as NNavigation, Ae as NSelect, fa as NSidebar, hr as NSwitch, Gn as NTable, gr as NTag, ye as NTextarea, ir as NToast, Si as NTooltip, Na as NickLabsUI, Fi as useAlert, F as useBreadcrumb, ja as useDisclosure, Aa as useRouteModal, Kt as useSidebarManager, Qn as useToast };
|