@xto/form 1.6.3 → 1.6.5
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/es/index.mjs +876 -849
- package/lib/index.cjs +1 -1
- package/package.json +1 -1
package/es/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent as le, computed as V, openBlock as i, createElementBlock as d, normalizeStyle as te, normalizeClass as u, createElementVNode as r, renderSlot as se, createTextVNode as de, toDisplayString as
|
|
2
|
-
import { useNamespace as ae, useZIndex as
|
|
3
|
-
const
|
|
1
|
+
import { defineComponent as le, computed as V, openBlock as i, createElementBlock as d, normalizeStyle as te, normalizeClass as u, createElementVNode as r, renderSlot as se, createTextVNode as de, toDisplayString as N, ref as B, useSlots as Le, watch as ie, unref as n, createCommentVNode as U, withDirectives as oe, vModelDynamic as qe, createVNode as Q, vModelText as Ve, inject as xe, withModifiers as ue, provide as $e, toRef as je, onMounted as ge, onUnmounted as De, Fragment as J, renderList as _, createBlock as fe, Teleport as Ie, Transition as Pe, withCtx as He, vModelSelect as Ce, vShow as be, nextTick as Se, defineAsyncComponent as Ne, shallowRef as Ge, onBeforeUnmount as Je } from "vue";
|
|
2
|
+
import { useNamespace as ae, useZIndex as Ee } from "@xto/core";
|
|
3
|
+
const Xe = {
|
|
4
4
|
// 箭头类
|
|
5
5
|
"arrow-up": "M12 19V5m0 0l-7 7m7-7l7 7",
|
|
6
6
|
"arrow-down": "M12 5v14m0 0l7-7m-7 7l-7-7",
|
|
@@ -201,10 +201,10 @@ const Ue = {
|
|
|
201
201
|
up: "M5 15l7-7 7 7"
|
|
202
202
|
// 上箭头
|
|
203
203
|
};
|
|
204
|
-
function
|
|
205
|
-
return s in
|
|
204
|
+
function Ze(s) {
|
|
205
|
+
return s in Xe;
|
|
206
206
|
}
|
|
207
|
-
const
|
|
207
|
+
const Qe = ["aria-hidden", "aria-label"], _e = ["stroke-width"], el = ["d"], ee = /* @__PURE__ */ le({
|
|
208
208
|
name: "XIcon",
|
|
209
209
|
__name: "index",
|
|
210
210
|
props: {
|
|
@@ -224,12 +224,12 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
224
224
|
})), m = V(() => [
|
|
225
225
|
e.b(),
|
|
226
226
|
e.is("spin", a.spin)
|
|
227
|
-
]), b = V(() => a.name &&
|
|
227
|
+
]), b = V(() => a.name && Ze(a.name) ? Xe[a.name] : "");
|
|
228
228
|
return k({
|
|
229
229
|
iconSize: t,
|
|
230
230
|
iconStyle: l,
|
|
231
231
|
iconPath: b
|
|
232
|
-
}), (T,
|
|
232
|
+
}), (T, S) => (i(), d("span", {
|
|
233
233
|
class: u(m.value),
|
|
234
234
|
style: te(l.value),
|
|
235
235
|
"aria-hidden": !s.name,
|
|
@@ -247,13 +247,13 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
247
247
|
style: te(c.value),
|
|
248
248
|
"aria-hidden": "true"
|
|
249
249
|
}, [
|
|
250
|
-
r("path", { d: b.value }, null, 8,
|
|
251
|
-
], 12,
|
|
252
|
-
de(
|
|
250
|
+
r("path", { d: b.value }, null, 8, el)
|
|
251
|
+
], 12, _e)) : se(T.$slots, "default", { key: 1 }, () => [
|
|
252
|
+
de(N(s.name), 1)
|
|
253
253
|
])
|
|
254
|
-
], 14,
|
|
254
|
+
], 14, Qe));
|
|
255
255
|
}
|
|
256
|
-
}),
|
|
256
|
+
}), ll = ["type", "placeholder", "disabled", "readonly", "maxlength", "minlength"], Ja = /* @__PURE__ */ le({
|
|
257
257
|
name: "XInput",
|
|
258
258
|
__name: "index",
|
|
259
259
|
props: {
|
|
@@ -274,35 +274,35 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
274
274
|
},
|
|
275
275
|
emits: ["update:modelValue", "update:value", "input", "change", "focus", "blur", "clear"],
|
|
276
276
|
setup(s, { expose: k, emit: a }) {
|
|
277
|
-
const e = s, t = a, l = ae("input"), c =
|
|
277
|
+
const e = s, t = a, l = ae("input"), c = B(), m = B(!1), b = B(!1), T = Le(), S = V(
|
|
278
278
|
() => e.type === "password" && e.showPassword && !e.disabled
|
|
279
|
-
), D = V(() =>
|
|
279
|
+
), D = V(() => S.value ? b.value ? "text" : "password" : e.type);
|
|
280
280
|
V(() => e.modelValue !== void 0), V(() => e.value !== void 0);
|
|
281
|
-
const $ =
|
|
281
|
+
const $ = B("");
|
|
282
282
|
ie(
|
|
283
283
|
[() => e.modelValue, () => e.value],
|
|
284
|
-
([
|
|
285
|
-
const
|
|
286
|
-
|
|
284
|
+
([A, F]) => {
|
|
285
|
+
const Y = A ?? F ?? "";
|
|
286
|
+
Y !== $.value && ($.value = Y);
|
|
287
287
|
},
|
|
288
288
|
{ immediate: !0 }
|
|
289
289
|
);
|
|
290
|
-
const
|
|
291
|
-
$.value =
|
|
290
|
+
const z = (A) => {
|
|
291
|
+
$.value = A, t("update:modelValue", A), t("update:value", A), t("input", A);
|
|
292
292
|
}, I = V(() => String($.value).length), y = V(() => [
|
|
293
293
|
l.b(),
|
|
294
294
|
e.size !== "default" ? l.m(e.size) : "",
|
|
295
295
|
l.is("disabled", e.disabled),
|
|
296
296
|
l.is("focus", m.value),
|
|
297
297
|
l.is("has-prefix", e.prefixIcon || T.prefix),
|
|
298
|
-
l.is("has-suffix", e.suffixIcon || T.suffix || e.clearable ||
|
|
299
|
-
]), L = (
|
|
300
|
-
const F =
|
|
298
|
+
l.is("has-suffix", e.suffixIcon || T.suffix || e.clearable || S.value || e.showWordLimit)
|
|
299
|
+
]), L = (A) => {
|
|
300
|
+
const F = A.target.value;
|
|
301
301
|
t("change", F);
|
|
302
|
-
}, H = (
|
|
303
|
-
m.value = !0, t("focus",
|
|
304
|
-
},
|
|
305
|
-
m.value = !1, t("blur",
|
|
302
|
+
}, H = (A) => {
|
|
303
|
+
m.value = !0, t("focus", A);
|
|
304
|
+
}, O = (A) => {
|
|
305
|
+
m.value = !1, t("blur", A);
|
|
306
306
|
}, M = () => {
|
|
307
307
|
$.value = "", t("update:modelValue", ""), t("update:value", ""), t("clear");
|
|
308
308
|
}, h = () => {
|
|
@@ -310,31 +310,31 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
310
310
|
};
|
|
311
311
|
return k({
|
|
312
312
|
focus: () => {
|
|
313
|
-
var
|
|
314
|
-
(
|
|
313
|
+
var A;
|
|
314
|
+
(A = c.value) == null || A.focus();
|
|
315
315
|
},
|
|
316
316
|
blur: () => {
|
|
317
|
-
var
|
|
318
|
-
(
|
|
317
|
+
var A;
|
|
318
|
+
(A = c.value) == null || A.blur();
|
|
319
319
|
},
|
|
320
320
|
inputRef: c
|
|
321
|
-
}), (
|
|
321
|
+
}), (A, F) => (i(), d("div", {
|
|
322
322
|
class: u(y.value)
|
|
323
323
|
}, [
|
|
324
|
-
|
|
324
|
+
A.$slots.prefix || s.prefixIcon ? (i(), d("span", {
|
|
325
325
|
key: 0,
|
|
326
326
|
class: u(n(l).e("prefix"))
|
|
327
327
|
}, [
|
|
328
|
-
se(
|
|
328
|
+
se(A.$slots, "prefix", {}, () => [
|
|
329
329
|
r("span", {
|
|
330
330
|
class: u(n(l).e("icon"))
|
|
331
|
-
},
|
|
331
|
+
}, N(s.prefixIcon), 3)
|
|
332
332
|
])
|
|
333
|
-
], 2)) :
|
|
333
|
+
], 2)) : U("", !0),
|
|
334
334
|
oe(r("input", {
|
|
335
335
|
ref_key: "inputRef",
|
|
336
336
|
ref: c,
|
|
337
|
-
"onUpdate:modelValue": F[0] || (F[0] = (
|
|
337
|
+
"onUpdate:modelValue": F[0] || (F[0] = (Y) => $.value = Y),
|
|
338
338
|
type: D.value,
|
|
339
339
|
placeholder: s.placeholder,
|
|
340
340
|
disabled: s.disabled,
|
|
@@ -342,18 +342,18 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
342
342
|
maxlength: s.maxlength,
|
|
343
343
|
minlength: s.minlength,
|
|
344
344
|
class: u(n(l).e("inner")),
|
|
345
|
-
onInput: F[1] || (F[1] = (
|
|
345
|
+
onInput: F[1] || (F[1] = (Y) => z(Y.target.value)),
|
|
346
346
|
onChange: L,
|
|
347
347
|
onFocus: H,
|
|
348
|
-
onBlur:
|
|
349
|
-
}, null, 42,
|
|
350
|
-
[
|
|
348
|
+
onBlur: O
|
|
349
|
+
}, null, 42, ll), [
|
|
350
|
+
[qe, $.value]
|
|
351
351
|
]),
|
|
352
|
-
|
|
352
|
+
A.$slots.suffix || s.suffixIcon || s.clearable || S.value || s.showWordLimit ? (i(), d("span", {
|
|
353
353
|
key: 1,
|
|
354
354
|
class: u(n(l).e("suffix"))
|
|
355
355
|
}, [
|
|
356
|
-
se(
|
|
356
|
+
se(A.$slots, "suffix", {}, () => [
|
|
357
357
|
s.clearable && s.value && !s.disabled ? (i(), d("span", {
|
|
358
358
|
key: 0,
|
|
359
359
|
class: u([n(l).e("icon"), n(l).e("clear")]),
|
|
@@ -363,8 +363,8 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
363
363
|
name: "close",
|
|
364
364
|
size: 14
|
|
365
365
|
})
|
|
366
|
-
], 2)) :
|
|
367
|
-
|
|
366
|
+
], 2)) : U("", !0),
|
|
367
|
+
S.value ? (i(), d("span", {
|
|
368
368
|
key: 1,
|
|
369
369
|
class: u([n(l).e("icon"), n(l).e("password")]),
|
|
370
370
|
onClick: h
|
|
@@ -373,16 +373,16 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
373
373
|
name: b.value ? "eye-off" : "eye",
|
|
374
374
|
size: 14
|
|
375
375
|
}, null, 8, ["name"])
|
|
376
|
-
], 2)) :
|
|
376
|
+
], 2)) : U("", !0),
|
|
377
377
|
s.showWordLimit && s.maxlength ? (i(), d("span", {
|
|
378
378
|
key: 2,
|
|
379
379
|
class: u(n(l).e("count"))
|
|
380
|
-
},
|
|
380
|
+
}, N(I.value) + "/" + N(s.maxlength), 3)) : U("", !0)
|
|
381
381
|
])
|
|
382
|
-
], 2)) :
|
|
382
|
+
], 2)) : U("", !0)
|
|
383
383
|
], 2));
|
|
384
384
|
}
|
|
385
|
-
}),
|
|
385
|
+
}), al = ["disabled"], tl = ["value", "placeholder", "disabled"], nl = ["disabled"], Za = /* @__PURE__ */ le({
|
|
386
386
|
name: "XInputNumber",
|
|
387
387
|
__name: "index",
|
|
388
388
|
props: {
|
|
@@ -402,7 +402,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
402
402
|
},
|
|
403
403
|
emits: ["update:modelValue", "update:value", "change", "focus", "blur"],
|
|
404
404
|
setup(s, { expose: k, emit: a }) {
|
|
405
|
-
const e = s, t = a, l = ae("input-number"), c =
|
|
405
|
+
const e = s, t = a, l = ae("input-number"), c = B(), m = B(!1), b = B(null), T = B(e.modelValue), S = V(() => {
|
|
406
406
|
if (e.precision !== void 0)
|
|
407
407
|
return e.precision;
|
|
408
408
|
const o = D(e.step), f = e.modelValue !== void 0 && e.modelValue !== null ? D(e.modelValue) : 0;
|
|
@@ -413,15 +413,15 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
413
413
|
const f = o.toString(), g = f.indexOf(".");
|
|
414
414
|
return g === -1 ? 0 : f.length - g - 1;
|
|
415
415
|
}
|
|
416
|
-
function $(o, f =
|
|
416
|
+
function $(o, f = S.value) {
|
|
417
417
|
if (f === 0) return Math.round(o);
|
|
418
418
|
let g = o.toFixed(f);
|
|
419
419
|
return Number(g);
|
|
420
420
|
}
|
|
421
|
-
function
|
|
421
|
+
function z(o) {
|
|
422
422
|
return o > e.max ? e.max : o < e.min ? e.min : o;
|
|
423
423
|
}
|
|
424
|
-
const I = V(() => e.modelValue ?? e.value ?? void 0), y = V(() => b.value !== null ? b.value : I.value === void 0 || I.value === null ? "" : $(I.value)), L = V(() => e.disabled ? !0 : I.value === void 0 ? e.min !== -1 / 0 : I.value <= e.min), H = V(() => e.disabled ? !0 : I.value === void 0 ? e.max !== 1 / 0 : I.value >= e.max),
|
|
424
|
+
const I = V(() => e.modelValue ?? e.value ?? void 0), y = V(() => b.value !== null ? b.value : I.value === void 0 || I.value === null ? "" : $(I.value)), L = V(() => e.disabled ? !0 : I.value === void 0 ? e.min !== -1 / 0 : I.value <= e.min), H = V(() => e.disabled ? !0 : I.value === void 0 ? e.max !== 1 / 0 : I.value >= e.max), O = V(() => [
|
|
425
425
|
l.b(),
|
|
426
426
|
e.size !== "default" ? l.m(e.size) : "",
|
|
427
427
|
l.is("disabled", e.disabled),
|
|
@@ -430,12 +430,12 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
430
430
|
]);
|
|
431
431
|
function M() {
|
|
432
432
|
if (e.disabled || H.value) return;
|
|
433
|
-
const o = I.value ?? (e.min === -1 / 0 ? 0 : e.min), f = $(o + e.step), g =
|
|
433
|
+
const o = I.value ?? (e.min === -1 / 0 ? 0 : e.min), f = $(o + e.step), g = z(f);
|
|
434
434
|
v(g);
|
|
435
435
|
}
|
|
436
436
|
function h() {
|
|
437
437
|
if (e.disabled || L.value) return;
|
|
438
|
-
const o = I.value ?? (e.min === -1 / 0 ? 0 : e.min), f = $(o - e.step), g =
|
|
438
|
+
const o = I.value ?? (e.min === -1 / 0 ? 0 : e.min), f = $(o - e.step), g = z(f);
|
|
439
439
|
v(g);
|
|
440
440
|
}
|
|
441
441
|
function v(o) {
|
|
@@ -443,7 +443,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
443
443
|
if (o === void 0)
|
|
444
444
|
e.modelValue !== void 0 && t("update:modelValue", void 0), e.value !== void 0 && t("update:value", void 0), e.modelValue === void 0 && e.value === void 0 && t("update:modelValue", void 0), t("change", void 0, f);
|
|
445
445
|
else {
|
|
446
|
-
const g = $(o), X =
|
|
446
|
+
const g = $(o), X = z(g);
|
|
447
447
|
if (e.stepStrictly) {
|
|
448
448
|
const ne = Math.round((X - e.min) / e.step), K = $(e.min + ne * e.step);
|
|
449
449
|
e.modelValue !== void 0 && t("update:modelValue", K), e.value !== void 0 && t("update:value", K), e.modelValue === void 0 && e.value === void 0 && t("update:modelValue", K), t("change", K, f);
|
|
@@ -462,7 +462,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
462
462
|
if (!isNaN(X))
|
|
463
463
|
return X;
|
|
464
464
|
}
|
|
465
|
-
function
|
|
465
|
+
function A(o) {
|
|
466
466
|
const f = o.target.value;
|
|
467
467
|
b.value = f;
|
|
468
468
|
}
|
|
@@ -473,10 +473,10 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
473
473
|
}
|
|
474
474
|
t("blur", o);
|
|
475
475
|
}
|
|
476
|
-
function
|
|
476
|
+
function Y(o) {
|
|
477
477
|
m.value = !0, T.value = e.modelValue, t("focus", o);
|
|
478
478
|
}
|
|
479
|
-
function
|
|
479
|
+
function G(o) {
|
|
480
480
|
var f;
|
|
481
481
|
if (!e.disabled)
|
|
482
482
|
switch (o.key) {
|
|
@@ -511,7 +511,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
511
511
|
increase: M,
|
|
512
512
|
decrease: h
|
|
513
513
|
}), (o, f) => (i(), d("div", {
|
|
514
|
-
class: u(
|
|
514
|
+
class: u(O.value)
|
|
515
515
|
}, [
|
|
516
516
|
s.controls ? (i(), d("button", {
|
|
517
517
|
key: 0,
|
|
@@ -519,7 +519,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
519
519
|
class: u([n(l).e("decrease"), n(l).is("disabled", L.value)]),
|
|
520
520
|
disabled: L.value,
|
|
521
521
|
onClick: h
|
|
522
|
-
}, " − ", 10,
|
|
522
|
+
}, " − ", 10, al)) : U("", !0),
|
|
523
523
|
r("div", {
|
|
524
524
|
class: u(n(l).e("wrapper"))
|
|
525
525
|
}, [
|
|
@@ -532,11 +532,11 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
532
532
|
class: u(n(l).e("inner")),
|
|
533
533
|
type: "text",
|
|
534
534
|
autocomplete: "off",
|
|
535
|
-
onInput:
|
|
536
|
-
onFocus:
|
|
535
|
+
onInput: A,
|
|
536
|
+
onFocus: Y,
|
|
537
537
|
onBlur: F,
|
|
538
|
-
onKeydown:
|
|
539
|
-
}, null, 42,
|
|
538
|
+
onKeydown: G
|
|
539
|
+
}, null, 42, tl)
|
|
540
540
|
], 2),
|
|
541
541
|
s.controls ? (i(), d("button", {
|
|
542
542
|
key: 1,
|
|
@@ -544,10 +544,10 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
544
544
|
class: u([n(l).e("increase"), n(l).is("disabled", H.value)]),
|
|
545
545
|
disabled: H.value,
|
|
546
546
|
onClick: M
|
|
547
|
-
}, " + ", 10,
|
|
547
|
+
}, " + ", 10, nl)) : U("", !0)
|
|
548
548
|
], 2));
|
|
549
549
|
}
|
|
550
|
-
}),
|
|
550
|
+
}), sl = ["placeholder", "disabled", "readonly", "maxlength", "minlength", "rows"], Qa = /* @__PURE__ */ le({
|
|
551
551
|
name: "XTextarea",
|
|
552
552
|
__name: "index",
|
|
553
553
|
props: {
|
|
@@ -565,7 +565,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
565
565
|
},
|
|
566
566
|
emits: ["update:modelValue", "update:value", "input", "change", "focus", "blur"],
|
|
567
567
|
setup(s, { expose: k, emit: a }) {
|
|
568
|
-
const e = s, t = a, l = ae("textarea"), c =
|
|
568
|
+
const e = s, t = a, l = ae("textarea"), c = B(), m = B(!1), b = B("");
|
|
569
569
|
ie(
|
|
570
570
|
[() => e.modelValue, () => e.value],
|
|
571
571
|
([M, h]) => {
|
|
@@ -576,7 +576,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
576
576
|
);
|
|
577
577
|
const T = (M) => {
|
|
578
578
|
b.value = M, t("update:modelValue", M), t("update:value", M), t("input", M);
|
|
579
|
-
},
|
|
579
|
+
}, S = V(() => String(b.value).length), D = V(() => {
|
|
580
580
|
const M = {};
|
|
581
581
|
if (e.resize && (M.resize = e.resize), e.autosize && (M.minHeight = "auto", typeof e.autosize == "object")) {
|
|
582
582
|
const h = e.autosize.minRows || 1, v = e.autosize.maxRows;
|
|
@@ -587,8 +587,8 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
587
587
|
l.b(),
|
|
588
588
|
l.is("disabled", e.disabled),
|
|
589
589
|
l.is("focus", m.value),
|
|
590
|
-
l.is("exceed", e.maxlength &&
|
|
591
|
-
]),
|
|
590
|
+
l.is("exceed", e.maxlength && S.value > e.maxlength)
|
|
591
|
+
]), z = (M) => {
|
|
592
592
|
const h = M.target.value;
|
|
593
593
|
T(h), e.autosize && c.value && (c.value.style.height = "auto", c.value.style.height = `${c.value.scrollHeight}px`);
|
|
594
594
|
}, I = (M) => {
|
|
@@ -625,20 +625,20 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
625
625
|
rows: s.rows,
|
|
626
626
|
style: te(D.value),
|
|
627
627
|
class: u(n(l).e("inner")),
|
|
628
|
-
onInput:
|
|
628
|
+
onInput: z,
|
|
629
629
|
onChange: I,
|
|
630
630
|
onFocus: y,
|
|
631
631
|
onBlur: L
|
|
632
|
-
}, null, 46,
|
|
633
|
-
[
|
|
632
|
+
}, null, 46, sl), [
|
|
633
|
+
[Ve, b.value]
|
|
634
634
|
]),
|
|
635
635
|
s.showWordLimit && s.maxlength ? (i(), d("span", {
|
|
636
636
|
key: 0,
|
|
637
637
|
class: u(n(l).e("count"))
|
|
638
|
-
},
|
|
638
|
+
}, N(S.value) + "/" + N(s.maxlength), 3)) : U("", !0)
|
|
639
639
|
], 6));
|
|
640
640
|
}
|
|
641
|
-
}),
|
|
641
|
+
}), _a = /* @__PURE__ */ le({
|
|
642
642
|
name: "XSwitch",
|
|
643
643
|
__name: "index",
|
|
644
644
|
props: {
|
|
@@ -663,10 +663,10 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
663
663
|
backgroundColor: c.value ? a.activeColor : a.inactiveColor
|
|
664
664
|
})), T = () => {
|
|
665
665
|
if (a.disabled) return;
|
|
666
|
-
const
|
|
667
|
-
a.modelValue !== void 0 && e("update:modelValue",
|
|
666
|
+
const S = c.value ? a.inactiveValue : a.activeValue;
|
|
667
|
+
a.modelValue !== void 0 && e("update:modelValue", S), a.checked !== void 0 && e("update:checked", S), a.modelValue === void 0 && a.checked === void 0 && e("update:modelValue", S), e("change", S);
|
|
668
668
|
};
|
|
669
|
-
return (
|
|
669
|
+
return (S, D) => (i(), d("span", {
|
|
670
670
|
class: u(m.value),
|
|
671
671
|
onClick: T
|
|
672
672
|
}, [
|
|
@@ -674,15 +674,15 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
674
674
|
class: u(n(t).e("core")),
|
|
675
675
|
style: te(b.value)
|
|
676
676
|
}, null, 6),
|
|
677
|
-
|
|
677
|
+
S.$slots.default ? (i(), d("span", {
|
|
678
678
|
key: 0,
|
|
679
679
|
class: u(n(t).e("text"))
|
|
680
680
|
}, [
|
|
681
|
-
se(
|
|
682
|
-
], 2)) :
|
|
681
|
+
se(S.$slots, "default")
|
|
682
|
+
], 2)) : U("", !0)
|
|
683
683
|
], 2));
|
|
684
684
|
}
|
|
685
|
-
}),
|
|
685
|
+
}), ul = ["checked", "disabled", "name", "value"], et = /* @__PURE__ */ le({
|
|
686
686
|
name: "XRadio",
|
|
687
687
|
__name: "index",
|
|
688
688
|
props: {
|
|
@@ -694,16 +694,16 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
694
694
|
},
|
|
695
695
|
emits: ["update:modelValue", "change"],
|
|
696
696
|
setup(s, { emit: k }) {
|
|
697
|
-
const a = s, e = k, t = ae("radio"), l =
|
|
697
|
+
const a = s, e = k, t = ae("radio"), l = xe("radioGroup", null), c = V(() => !!l), m = V(() => c.value ? l.modelValue.value : a.modelValue), b = V(() => a.value ?? a.label), T = V(() => m.value === b.value), S = V(() => a.disabled || c.value && l.disabled), D = V(() => a.name || (c.value ? l.name : void 0)), $ = V(() => [
|
|
698
698
|
t.b(),
|
|
699
699
|
t.is("checked", T.value),
|
|
700
|
-
t.is("disabled",
|
|
701
|
-
]),
|
|
702
|
-
|
|
700
|
+
t.is("disabled", S.value)
|
|
701
|
+
]), z = () => {
|
|
702
|
+
S.value || (c.value ? l.changeValue(b.value) : (e("update:modelValue", b.value), e("change", b.value)));
|
|
703
703
|
};
|
|
704
704
|
return (I, y) => (i(), d("label", {
|
|
705
705
|
class: u($.value),
|
|
706
|
-
onClick: ue(
|
|
706
|
+
onClick: ue(z, ["prevent"])
|
|
707
707
|
}, [
|
|
708
708
|
r("span", {
|
|
709
709
|
class: u(n(t).e("input"))
|
|
@@ -711,22 +711,22 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
711
711
|
r("input", {
|
|
712
712
|
type: "radio",
|
|
713
713
|
checked: T.value,
|
|
714
|
-
disabled:
|
|
714
|
+
disabled: S.value,
|
|
715
715
|
name: D.value,
|
|
716
716
|
value: b.value
|
|
717
|
-
}, null, 8,
|
|
717
|
+
}, null, 8, ul)
|
|
718
718
|
], 2),
|
|
719
719
|
I.$slots.default || s.label ? (i(), d("span", {
|
|
720
720
|
key: 0,
|
|
721
721
|
class: u(n(t).e("label"))
|
|
722
722
|
}, [
|
|
723
723
|
se(I.$slots, "default", {}, () => [
|
|
724
|
-
de(
|
|
724
|
+
de(N(s.label), 1)
|
|
725
725
|
])
|
|
726
|
-
], 2)) :
|
|
726
|
+
], 2)) : U("", !0)
|
|
727
727
|
], 2));
|
|
728
728
|
}
|
|
729
|
-
}),
|
|
729
|
+
}), lt = /* @__PURE__ */ le({
|
|
730
730
|
name: "XRadioGroup",
|
|
731
731
|
__name: "group",
|
|
732
732
|
props: {
|
|
@@ -740,7 +740,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
740
740
|
const a = s, e = k, t = ae("radio-group"), l = (c) => {
|
|
741
741
|
a.modelValue !== void 0 && e("update:modelValue", c), a.value !== void 0 && e("update:value", c), a.modelValue === void 0 && a.value === void 0 && e("update:modelValue", c), e("change", c);
|
|
742
742
|
};
|
|
743
|
-
return
|
|
743
|
+
return $e("radioGroup", {
|
|
744
744
|
modelValue: V(() => a.modelValue ?? a.value),
|
|
745
745
|
name: a.name || `radio-group-${Date.now()}`,
|
|
746
746
|
disabled: a.disabled,
|
|
@@ -752,7 +752,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
752
752
|
se(c.$slots, "default")
|
|
753
753
|
], 2));
|
|
754
754
|
}
|
|
755
|
-
}),
|
|
755
|
+
}), ol = ["checked", "disabled", "value"], at = /* @__PURE__ */ le({
|
|
756
756
|
name: "XRadioButton",
|
|
757
757
|
__name: "button",
|
|
758
758
|
props: {
|
|
@@ -763,15 +763,15 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
763
763
|
},
|
|
764
764
|
emits: ["update:modelValue", "change"],
|
|
765
765
|
setup(s, { emit: k }) {
|
|
766
|
-
const a = s, e = ae("radio-button"), t =
|
|
766
|
+
const a = s, e = ae("radio-button"), t = xe("radioGroup", null), l = V(() => !!t), c = V(() => l.value ? t.modelValue.value : null), m = V(() => a.value ?? a.label), b = V(() => c.value === m.value), T = V(() => a.disabled || l.value && t.disabled), S = V(() => [
|
|
767
767
|
e.b(),
|
|
768
768
|
e.is("active", b.value),
|
|
769
769
|
e.is("disabled", T.value)
|
|
770
770
|
]), D = () => {
|
|
771
771
|
T.value || l.value && t.changeValue(m.value);
|
|
772
772
|
};
|
|
773
|
-
return ($,
|
|
774
|
-
class: u(
|
|
773
|
+
return ($, z) => (i(), d("label", {
|
|
774
|
+
class: u(S.value),
|
|
775
775
|
onClick: ue(D, ["prevent"])
|
|
776
776
|
}, [
|
|
777
777
|
r("input", {
|
|
@@ -780,17 +780,17 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
780
780
|
disabled: T.value,
|
|
781
781
|
value: m.value,
|
|
782
782
|
class: u(n(e).e("input"))
|
|
783
|
-
}, null, 10,
|
|
783
|
+
}, null, 10, ol),
|
|
784
784
|
r("span", {
|
|
785
785
|
class: u(n(e).e("inner"))
|
|
786
786
|
}, [
|
|
787
787
|
se($.$slots, "default", {}, () => [
|
|
788
|
-
de(
|
|
788
|
+
de(N(s.label), 1)
|
|
789
789
|
])
|
|
790
790
|
], 2)
|
|
791
791
|
], 2));
|
|
792
792
|
}
|
|
793
|
-
}),
|
|
793
|
+
}), il = ["checked", "disabled", "name", "value"], tt = /* @__PURE__ */ le({
|
|
794
794
|
name: "XCheckbox",
|
|
795
795
|
__name: "index",
|
|
796
796
|
props: {
|
|
@@ -803,14 +803,14 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
803
803
|
},
|
|
804
804
|
emits: ["update:modelValue", "change"],
|
|
805
805
|
setup(s, { emit: k }) {
|
|
806
|
-
const a = s, e = k, t = ae("checkbox"), l =
|
|
806
|
+
const a = s, e = k, t = ae("checkbox"), l = xe("checkboxGroup", null), c = V(() => !!l), m = V(() => a.value ?? a.label), b = V(() => c.value ? l.modelValue.value.includes(m.value) : Array.isArray(a.modelValue) ? a.modelValue.includes(m.value) : !!a.modelValue), T = V(() => {
|
|
807
807
|
if (a.disabled) return !0;
|
|
808
808
|
if (c.value) {
|
|
809
|
-
const $ = l.disabled,
|
|
810
|
-
return b.value &&
|
|
809
|
+
const $ = l.disabled, z = l.min > 0 && l.modelValue.value.length <= l.min, I = l.max > 0 && l.modelValue.value.length >= l.max;
|
|
810
|
+
return b.value && z || !b.value && I ? !0 : $;
|
|
811
811
|
}
|
|
812
812
|
return !1;
|
|
813
|
-
}),
|
|
813
|
+
}), S = V(() => [
|
|
814
814
|
t.b(),
|
|
815
815
|
t.is("checked", b.value),
|
|
816
816
|
t.is("disabled", T.value),
|
|
@@ -822,15 +822,15 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
822
822
|
else {
|
|
823
823
|
let $;
|
|
824
824
|
if (Array.isArray(a.modelValue)) {
|
|
825
|
-
const
|
|
826
|
-
|
|
825
|
+
const z = a.modelValue.indexOf(m.value);
|
|
826
|
+
z > -1 ? $ = [...a.modelValue.slice(0, z), ...a.modelValue.slice(z + 1)] : $ = [...a.modelValue, m.value];
|
|
827
827
|
} else
|
|
828
828
|
$ = !a.modelValue;
|
|
829
829
|
e("update:modelValue", $), e("change", $);
|
|
830
830
|
}
|
|
831
831
|
};
|
|
832
|
-
return ($,
|
|
833
|
-
class: u(
|
|
832
|
+
return ($, z) => (i(), d("label", {
|
|
833
|
+
class: u(S.value),
|
|
834
834
|
onClick: ue(D, ["prevent"])
|
|
835
835
|
}, [
|
|
836
836
|
r("span", {
|
|
@@ -842,19 +842,19 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
842
842
|
disabled: T.value,
|
|
843
843
|
name: s.name,
|
|
844
844
|
value: m.value
|
|
845
|
-
}, null, 8,
|
|
845
|
+
}, null, 8, il)
|
|
846
846
|
], 2),
|
|
847
847
|
$.$slots.default || s.label !== void 0 ? (i(), d("span", {
|
|
848
848
|
key: 0,
|
|
849
849
|
class: u(n(t).e("label"))
|
|
850
850
|
}, [
|
|
851
851
|
se($.$slots, "default", {}, () => [
|
|
852
|
-
de(
|
|
852
|
+
de(N(s.label), 1)
|
|
853
853
|
])
|
|
854
|
-
], 2)) :
|
|
854
|
+
], 2)) : U("", !0)
|
|
855
855
|
], 2));
|
|
856
856
|
}
|
|
857
|
-
}),
|
|
857
|
+
}), nt = /* @__PURE__ */ le({
|
|
858
858
|
name: "XCheckboxGroup",
|
|
859
859
|
__name: "group",
|
|
860
860
|
props: {
|
|
@@ -869,7 +869,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
869
869
|
const m = [...a.modelValue], b = m.indexOf(c);
|
|
870
870
|
b > -1 ? m.splice(b, 1) : m.push(c), e("update:modelValue", m), e("change", m);
|
|
871
871
|
};
|
|
872
|
-
return
|
|
872
|
+
return $e("checkboxGroup", {
|
|
873
873
|
modelValue: V(() => a.modelValue),
|
|
874
874
|
disabled: a.disabled,
|
|
875
875
|
min: a.min,
|
|
@@ -882,7 +882,7 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
882
882
|
se(c.$slots, "default")
|
|
883
883
|
], 2));
|
|
884
884
|
}
|
|
885
|
-
}),
|
|
885
|
+
}), st = /* @__PURE__ */ le({
|
|
886
886
|
name: "XForm",
|
|
887
887
|
__name: "index",
|
|
888
888
|
props: {
|
|
@@ -897,17 +897,17 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
897
897
|
},
|
|
898
898
|
emits: ["validate", "submit", "reset"],
|
|
899
899
|
setup(s, { expose: k, emit: a }) {
|
|
900
|
-
const e = s, t = a, l = ae("form"), c =
|
|
900
|
+
const e = s, t = a, l = ae("form"), c = B([]), m = V(() => e.layout === "inline" || e.inline), b = V(() => e.layout === "vertical" || e.labelPosition === "top"), T = V(() => [
|
|
901
901
|
l.b(),
|
|
902
902
|
l.m(`label-${b.value ? "top" : e.labelPosition}`),
|
|
903
903
|
l.is("inline", m.value),
|
|
904
904
|
l.is("vertical", b.value)
|
|
905
|
-
]),
|
|
905
|
+
]), S = V(() => ({ width: typeof e.labelWidth == "number" ? `${e.labelWidth}px` : e.labelWidth })), D = (h) => {
|
|
906
906
|
c.value.push(h);
|
|
907
907
|
}, $ = (h) => {
|
|
908
908
|
const v = c.value.indexOf(h);
|
|
909
909
|
v > -1 && c.value.splice(v, 1);
|
|
910
|
-
},
|
|
910
|
+
}, z = async () => {
|
|
911
911
|
let h = !0;
|
|
912
912
|
for (const v of c.value)
|
|
913
913
|
await v.validate() || (h = !1);
|
|
@@ -915,8 +915,8 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
915
915
|
}, I = async (h) => {
|
|
916
916
|
const v = Array.isArray(h) ? h : [h];
|
|
917
917
|
let x = !0;
|
|
918
|
-
for (const
|
|
919
|
-
v.includes(
|
|
918
|
+
for (const A of c.value)
|
|
919
|
+
v.includes(A.prop) && (await A.validate() || (x = !1));
|
|
920
920
|
return x;
|
|
921
921
|
}, y = () => {
|
|
922
922
|
c.value.forEach((h) => {
|
|
@@ -934,34 +934,34 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
934
934
|
});
|
|
935
935
|
}, H = (h) => {
|
|
936
936
|
console.log("[XForm] handleSubmit triggered", h), h.preventDefault(), t("submit");
|
|
937
|
-
},
|
|
937
|
+
}, O = (h) => {
|
|
938
938
|
console.log("[XForm] handleReset triggered", h), h.preventDefault(), y(), t("reset");
|
|
939
|
-
}, M =
|
|
940
|
-
return
|
|
939
|
+
}, M = je(e, "model");
|
|
940
|
+
return $e("form", {
|
|
941
941
|
model: M,
|
|
942
942
|
rules: e.rules,
|
|
943
943
|
labelWidth: e.labelWidth,
|
|
944
944
|
labelPosition: b.value ? "top" : e.labelPosition,
|
|
945
945
|
disabled: e.disabled,
|
|
946
946
|
size: e.size,
|
|
947
|
-
labelStyle:
|
|
947
|
+
labelStyle: S,
|
|
948
948
|
addField: D,
|
|
949
949
|
removeField: $,
|
|
950
950
|
emit: t
|
|
951
951
|
}), k({
|
|
952
|
-
validate:
|
|
952
|
+
validate: z,
|
|
953
953
|
validateField: I,
|
|
954
954
|
resetFields: y,
|
|
955
955
|
clearValidate: L
|
|
956
956
|
}), (h, v) => (i(), d("form", {
|
|
957
957
|
class: u(T.value),
|
|
958
958
|
onSubmit: H,
|
|
959
|
-
onReset:
|
|
959
|
+
onReset: O
|
|
960
960
|
}, [
|
|
961
961
|
se(h.$slots, "default")
|
|
962
962
|
], 34));
|
|
963
963
|
}
|
|
964
|
-
}),
|
|
964
|
+
}), ut = /* @__PURE__ */ le({
|
|
965
965
|
name: "XFormItem",
|
|
966
966
|
__name: "item",
|
|
967
967
|
props: {
|
|
@@ -973,34 +973,34 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
973
973
|
showMessage: { type: Boolean }
|
|
974
974
|
},
|
|
975
975
|
setup(s, { expose: k }) {
|
|
976
|
-
const a = s, e = Le(), t = ae("form-item"), l =
|
|
976
|
+
const a = s, e = Le(), t = ae("form-item"), l = xe("form", null), c = B(""), m = B(""), b = V(() => a.required ? !0 : T().some((O) => O.required)), T = () => {
|
|
977
977
|
const H = [];
|
|
978
978
|
return a.rules && H.push(...a.rules), l && a.prop && l.rules[a.prop] && H.push(...l.rules[a.prop]), H;
|
|
979
|
-
},
|
|
979
|
+
}, S = () => {
|
|
980
980
|
var H;
|
|
981
981
|
if (!(!l || !a.prop))
|
|
982
982
|
return (H = l.model.value) == null ? void 0 : H[a.prop];
|
|
983
983
|
}, D = (H) => {
|
|
984
984
|
!l || !a.prop || l.model.value && (l.model.value[a.prop] = H);
|
|
985
985
|
}, $ = async (H) => {
|
|
986
|
-
const
|
|
987
|
-
if (
|
|
986
|
+
const O = T();
|
|
987
|
+
if (O.length === 0)
|
|
988
988
|
return c.value = "valid", !0;
|
|
989
|
-
const M =
|
|
989
|
+
const M = S();
|
|
990
990
|
let h = !0, v = "";
|
|
991
|
-
for (const x of
|
|
991
|
+
for (const x of O)
|
|
992
992
|
if (!(H && x.trigger && x.trigger !== H)) {
|
|
993
993
|
if (x.required && (M == null || M === "" || Array.isArray(M) && M.length === 0)) {
|
|
994
994
|
h = !1, v = x.message || "该字段为必填项";
|
|
995
995
|
break;
|
|
996
996
|
}
|
|
997
997
|
if (x.min !== void 0 || x.max !== void 0) {
|
|
998
|
-
const
|
|
999
|
-
if (x.min !== void 0 &&
|
|
998
|
+
const A = typeof M == "string" ? M.length : 0;
|
|
999
|
+
if (x.min !== void 0 && A < x.min) {
|
|
1000
1000
|
h = !1, v = x.message || `长度不能小于 ${x.min} 个字符`;
|
|
1001
1001
|
break;
|
|
1002
1002
|
}
|
|
1003
|
-
if (x.max !== void 0 &&
|
|
1003
|
+
if (x.max !== void 0 && A > x.max) {
|
|
1004
1004
|
h = !1, v = x.message || `长度不能大于 ${x.max} 个字符`;
|
|
1005
1005
|
break;
|
|
1006
1006
|
}
|
|
@@ -1011,18 +1011,18 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
1011
1011
|
}
|
|
1012
1012
|
if (x.validator)
|
|
1013
1013
|
try {
|
|
1014
|
-
await new Promise((
|
|
1015
|
-
x.validator(x, M, (
|
|
1016
|
-
|
|
1014
|
+
await new Promise((A, F) => {
|
|
1015
|
+
x.validator(x, M, (Y) => {
|
|
1016
|
+
Y ? F(Y) : A();
|
|
1017
1017
|
});
|
|
1018
1018
|
});
|
|
1019
|
-
} catch (
|
|
1020
|
-
h = !1, v =
|
|
1019
|
+
} catch (A) {
|
|
1020
|
+
h = !1, v = A.message || x.message || "验证失败";
|
|
1021
1021
|
break;
|
|
1022
1022
|
}
|
|
1023
1023
|
}
|
|
1024
1024
|
return c.value = h ? "valid" : "invalid", m.value = v, l && a.prop && l.emit("validate", a.prop, h, v), h;
|
|
1025
|
-
},
|
|
1025
|
+
}, z = () => {
|
|
1026
1026
|
D(void 0), I();
|
|
1027
1027
|
}, I = () => {
|
|
1028
1028
|
c.value = "", m.value = "";
|
|
@@ -1035,27 +1035,27 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
1035
1035
|
const H = a.labelWidth ?? (l == null ? void 0 : l.labelWidth) ?? "100px";
|
|
1036
1036
|
return { width: typeof H == "number" ? `${H}px` : H };
|
|
1037
1037
|
});
|
|
1038
|
-
return ie(() =>
|
|
1038
|
+
return ie(() => S(), () => {
|
|
1039
1039
|
c.value === "invalid" && $("change");
|
|
1040
|
-
}),
|
|
1040
|
+
}), ge(() => {
|
|
1041
1041
|
l && a.prop && l.addField({
|
|
1042
1042
|
prop: a.prop,
|
|
1043
1043
|
validate: $,
|
|
1044
|
-
resetField:
|
|
1044
|
+
resetField: z,
|
|
1045
1045
|
clearValidate: I
|
|
1046
1046
|
});
|
|
1047
|
-
}),
|
|
1047
|
+
}), De(() => {
|
|
1048
1048
|
l && a.prop && l.removeField({
|
|
1049
1049
|
prop: a.prop,
|
|
1050
1050
|
validate: $,
|
|
1051
|
-
resetField:
|
|
1051
|
+
resetField: z,
|
|
1052
1052
|
clearValidate: I
|
|
1053
1053
|
});
|
|
1054
1054
|
}), k({
|
|
1055
1055
|
validate: $,
|
|
1056
|
-
resetField:
|
|
1056
|
+
resetField: z,
|
|
1057
1057
|
clearValidate: I
|
|
1058
|
-
}), (H,
|
|
1058
|
+
}), (H, O) => (i(), d("div", {
|
|
1059
1059
|
class: u(y.value)
|
|
1060
1060
|
}, [
|
|
1061
1061
|
s.label || n(e).label ? (i(), d("label", {
|
|
@@ -1064,9 +1064,9 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
1064
1064
|
style: te(L.value)
|
|
1065
1065
|
}, [
|
|
1066
1066
|
se(H.$slots, "label", {}, () => [
|
|
1067
|
-
de(
|
|
1067
|
+
de(N(s.label), 1)
|
|
1068
1068
|
])
|
|
1069
|
-
], 6)) :
|
|
1069
|
+
], 6)) : U("", !0),
|
|
1070
1070
|
r("div", {
|
|
1071
1071
|
class: u(n(t).e("content"))
|
|
1072
1072
|
}, [
|
|
@@ -1074,30 +1074,30 @@ const Je = ["aria-hidden", "aria-label"], Ze = ["stroke-width"], Qe = ["d"], ee
|
|
|
1074
1074
|
s.showMessage !== !1 && c.value === "invalid" ? (i(), d("div", {
|
|
1075
1075
|
key: 0,
|
|
1076
1076
|
class: u(n(t).e("error"))
|
|
1077
|
-
},
|
|
1077
|
+
}, N(m.value), 3)) : U("", !0)
|
|
1078
1078
|
], 2)
|
|
1079
1079
|
], 2));
|
|
1080
1080
|
}
|
|
1081
1081
|
});
|
|
1082
|
-
function
|
|
1082
|
+
function rl(s, k) {
|
|
1083
1083
|
return new Date(s, k + 1, 0).getDate();
|
|
1084
1084
|
}
|
|
1085
|
-
function
|
|
1085
|
+
function dl(s, k) {
|
|
1086
1086
|
return new Date(s, k, 1).getDay();
|
|
1087
1087
|
}
|
|
1088
|
-
function
|
|
1088
|
+
function pe(s, k) {
|
|
1089
1089
|
return !s || !k ? !1 : s.getFullYear() === k.getFullYear() && s.getMonth() === k.getMonth() && s.getDate() === k.getDate();
|
|
1090
1090
|
}
|
|
1091
|
-
function
|
|
1091
|
+
function cl(s, k) {
|
|
1092
1092
|
return !s || !k ? !1 : s.getFullYear() === k.getFullYear() && s.getMonth() === k.getMonth();
|
|
1093
1093
|
}
|
|
1094
|
-
function
|
|
1094
|
+
function Ue(s, k, a) {
|
|
1095
1095
|
if (!k || !a) return !1;
|
|
1096
1096
|
const e = s.getTime();
|
|
1097
1097
|
return e >= k.getTime() && e <= a.getTime();
|
|
1098
1098
|
}
|
|
1099
|
-
function
|
|
1100
|
-
const e = [], t =
|
|
1099
|
+
function vl(s, k, a = 0) {
|
|
1100
|
+
const e = [], t = rl(s, k), l = dl(s, k);
|
|
1101
1101
|
let c = new Date(s, k, 1);
|
|
1102
1102
|
const m = (l - a + 7) % 7;
|
|
1103
1103
|
c.setDate(1 - m);
|
|
@@ -1125,23 +1125,23 @@ function ve(s) {
|
|
|
1125
1125
|
}
|
|
1126
1126
|
return k;
|
|
1127
1127
|
}
|
|
1128
|
-
function
|
|
1128
|
+
function fl(s) {
|
|
1129
1129
|
const k = new Date(s);
|
|
1130
1130
|
return k.setMonth(k.getMonth() - 1), k;
|
|
1131
1131
|
}
|
|
1132
|
-
function
|
|
1132
|
+
function ml(s) {
|
|
1133
1133
|
const k = new Date(s);
|
|
1134
1134
|
return k.setMonth(k.getMonth() + 1), k;
|
|
1135
1135
|
}
|
|
1136
|
-
function
|
|
1136
|
+
function hl(s) {
|
|
1137
1137
|
const k = new Date(s);
|
|
1138
1138
|
return k.setFullYear(k.getFullYear() - 1), k;
|
|
1139
1139
|
}
|
|
1140
|
-
function
|
|
1140
|
+
function pl(s) {
|
|
1141
1141
|
const k = new Date(s);
|
|
1142
1142
|
return k.setFullYear(k.getFullYear() + 1), k;
|
|
1143
1143
|
}
|
|
1144
|
-
function
|
|
1144
|
+
function Ke(s) {
|
|
1145
1145
|
const k = Math.floor(s / 10) * 10;
|
|
1146
1146
|
return [k, k + 9];
|
|
1147
1147
|
}
|
|
@@ -1149,13 +1149,13 @@ function Be(s) {
|
|
|
1149
1149
|
const k = new Date(s);
|
|
1150
1150
|
return k.setHours(0, 0, 0, 0), k;
|
|
1151
1151
|
}
|
|
1152
|
-
function
|
|
1152
|
+
function gl(s, k, a, e) {
|
|
1153
1153
|
if (k && k(s))
|
|
1154
1154
|
return !0;
|
|
1155
1155
|
const t = Be(s).getTime();
|
|
1156
1156
|
return !!(a && t < Be(a).getTime() || e && t > Be(e).getTime());
|
|
1157
1157
|
}
|
|
1158
|
-
const
|
|
1158
|
+
const bl = [
|
|
1159
1159
|
"一月",
|
|
1160
1160
|
"二月",
|
|
1161
1161
|
"三月",
|
|
@@ -1168,7 +1168,7 @@ const pl = [
|
|
|
1168
1168
|
"十月",
|
|
1169
1169
|
"十一月",
|
|
1170
1170
|
"十二月"
|
|
1171
|
-
],
|
|
1171
|
+
], yl = ["日", "一", "二", "三", "四", "五", "六"], kl = ["onClick", "onMouseenter"], Ml = /* @__PURE__ */ le({
|
|
1172
1172
|
name: "XDateTable",
|
|
1173
1173
|
__name: "DateTable",
|
|
1174
1174
|
props: {
|
|
@@ -1186,43 +1186,43 @@ const pl = [
|
|
|
1186
1186
|
},
|
|
1187
1187
|
emits: ["pick", "range-select", "range-move", "update:viewedMonth"],
|
|
1188
1188
|
setup(s, { emit: k }) {
|
|
1189
|
-
const a = s, e = k, t = ae("date-table"), l =
|
|
1189
|
+
const a = s, e = k, t = ae("date-table"), l = B(null), c = V(() => a.viewedMonth.getFullYear()), m = V(() => a.viewedMonth.getMonth()), b = V(() => vl(c.value, m.value, 0)), T = (h) => a.modelValue ? pe(h, a.modelValue) : !1, S = (h) => pe(h, /* @__PURE__ */ new Date()), D = (h) => cl(h, a.viewedMonth), $ = (h) => {
|
|
1190
1190
|
if (a.selectionMode !== "range") return !1;
|
|
1191
|
-
const { startDate: v, endDate: x, selecting:
|
|
1192
|
-
if (
|
|
1191
|
+
const { startDate: v, endDate: x, selecting: A } = a.rangeState || {};
|
|
1192
|
+
if (A && v) {
|
|
1193
1193
|
const F = l.value;
|
|
1194
1194
|
if (F) {
|
|
1195
|
-
const
|
|
1196
|
-
return
|
|
1195
|
+
const Y = v < F ? v : F, G = v < F ? F : v;
|
|
1196
|
+
return Ue(h, Y, G);
|
|
1197
1197
|
}
|
|
1198
|
-
return
|
|
1198
|
+
return pe(h, v);
|
|
1199
1199
|
}
|
|
1200
|
-
return v && x ?
|
|
1201
|
-
},
|
|
1200
|
+
return v && x ? Ue(h, v, x) : !1;
|
|
1201
|
+
}, z = (h) => {
|
|
1202
1202
|
if (a.selectionMode !== "range") return !1;
|
|
1203
1203
|
const { startDate: v, selecting: x } = a.rangeState || {};
|
|
1204
|
-
return x && v && l.value ?
|
|
1204
|
+
return x && v && l.value ? pe(h, v < l.value ? v : l.value) : v ? pe(h, v) : !1;
|
|
1205
1205
|
}, I = (h) => {
|
|
1206
1206
|
if (a.selectionMode !== "range") return !1;
|
|
1207
1207
|
const { endDate: v, selecting: x } = a.rangeState || {};
|
|
1208
1208
|
if (x && l.value) {
|
|
1209
|
-
const { startDate:
|
|
1210
|
-
return
|
|
1209
|
+
const { startDate: A } = a.rangeState || {};
|
|
1210
|
+
return pe(h, A < l.value ? l.value : A);
|
|
1211
1211
|
}
|
|
1212
|
-
return v ?
|
|
1213
|
-
}, y = (h) =>
|
|
1212
|
+
return v ? pe(h, v) : !1;
|
|
1213
|
+
}, y = (h) => gl(h, a.disabledDate, a.minDate, a.maxDate), L = (h) => [
|
|
1214
1214
|
t.e("cell"),
|
|
1215
1215
|
t.is("selected", T(h)),
|
|
1216
|
-
t.is("today",
|
|
1216
|
+
t.is("today", S(h)),
|
|
1217
1217
|
t.is("disabled", y(h)),
|
|
1218
1218
|
t.is("in-range", $(h)),
|
|
1219
|
-
t.is("range-start",
|
|
1219
|
+
t.is("range-start", z(h)),
|
|
1220
1220
|
t.is("range-end", I(h)),
|
|
1221
1221
|
t.is("prev-month", !D(h) && h.getMonth() < m.value),
|
|
1222
1222
|
t.is("next-month", !D(h) && h.getMonth() > m.value)
|
|
1223
1223
|
], H = (h) => {
|
|
1224
1224
|
y(h) || (a.selectionMode === "range" ? e("range-select", h) : e("pick", h));
|
|
1225
|
-
},
|
|
1225
|
+
}, O = (h) => {
|
|
1226
1226
|
l.value = h;
|
|
1227
1227
|
}, M = () => {
|
|
1228
1228
|
l.value = null;
|
|
@@ -1234,30 +1234,30 @@ const pl = [
|
|
|
1234
1234
|
}, [
|
|
1235
1235
|
r("thead", null, [
|
|
1236
1236
|
r("tr", null, [
|
|
1237
|
-
(i(!0), d(J, null, _(n(
|
|
1237
|
+
(i(!0), d(J, null, _(n(yl), (x) => (i(), d("th", {
|
|
1238
1238
|
key: x,
|
|
1239
1239
|
class: u(n(t).e("header-cell"))
|
|
1240
|
-
},
|
|
1240
|
+
}, N(x), 3))), 128))
|
|
1241
1241
|
])
|
|
1242
1242
|
]),
|
|
1243
1243
|
r("tbody", null, [
|
|
1244
|
-
(i(!0), d(J, null, _(b.value, (x,
|
|
1245
|
-
(i(!0), d(J, null, _(x, (F,
|
|
1246
|
-
key:
|
|
1244
|
+
(i(!0), d(J, null, _(b.value, (x, A) => (i(), d("tr", { key: A }, [
|
|
1245
|
+
(i(!0), d(J, null, _(x, (F, Y) => (i(), d("td", {
|
|
1246
|
+
key: Y,
|
|
1247
1247
|
class: u(L(F)),
|
|
1248
|
-
onClick: (
|
|
1249
|
-
onMouseenter: (
|
|
1248
|
+
onClick: (G) => H(F),
|
|
1249
|
+
onMouseenter: (G) => O(F),
|
|
1250
1250
|
onMouseleave: M
|
|
1251
1251
|
}, [
|
|
1252
1252
|
r("span", {
|
|
1253
1253
|
class: u(n(t).e("cell-text"))
|
|
1254
|
-
},
|
|
1255
|
-
], 42,
|
|
1254
|
+
}, N(F.getDate()), 3)
|
|
1255
|
+
], 42, kl))), 128))
|
|
1256
1256
|
]))), 128))
|
|
1257
1257
|
])
|
|
1258
1258
|
], 2));
|
|
1259
1259
|
}
|
|
1260
|
-
}),
|
|
1260
|
+
}), Vl = ["onClick"], xl = /* @__PURE__ */ le({
|
|
1261
1261
|
name: "XMonthTable",
|
|
1262
1262
|
__name: "MonthTable",
|
|
1263
1263
|
props: {
|
|
@@ -1274,8 +1274,8 @@ const pl = [
|
|
|
1274
1274
|
return $.getFullYear() === a.viewedYear && $.getMonth() === D;
|
|
1275
1275
|
}, m = (D) => {
|
|
1276
1276
|
if (!a.disabledDate) return !1;
|
|
1277
|
-
const $ = new Date(a.viewedYear, D, 1),
|
|
1278
|
-
return a.disabledDate($) && a.disabledDate(
|
|
1277
|
+
const $ = new Date(a.viewedYear, D, 1), z = new Date(a.viewedYear, D + 1, 0);
|
|
1278
|
+
return a.disabledDate($) && a.disabledDate(z);
|
|
1279
1279
|
}, b = (D) => [
|
|
1280
1280
|
t.e("cell"),
|
|
1281
1281
|
t.is("selected", l(D)),
|
|
@@ -1283,7 +1283,7 @@ const pl = [
|
|
|
1283
1283
|
t.is("disabled", m(D))
|
|
1284
1284
|
], T = (D) => {
|
|
1285
1285
|
m(D) || e("pick", D);
|
|
1286
|
-
},
|
|
1286
|
+
}, S = V(() => {
|
|
1287
1287
|
const D = [];
|
|
1288
1288
|
for (let $ = 0; $ < 12; $ += 3)
|
|
1289
1289
|
D.push([$, $ + 1, $ + 2]);
|
|
@@ -1295,21 +1295,21 @@ const pl = [
|
|
|
1295
1295
|
cellpadding: "0"
|
|
1296
1296
|
}, [
|
|
1297
1297
|
r("tbody", null, [
|
|
1298
|
-
(i(!0), d(J, null, _(
|
|
1299
|
-
(i(!0), d(J, null, _(
|
|
1298
|
+
(i(!0), d(J, null, _(S.value, (z, I) => (i(), d("tr", { key: I }, [
|
|
1299
|
+
(i(!0), d(J, null, _(z, (y) => (i(), d("td", {
|
|
1300
1300
|
key: y,
|
|
1301
1301
|
class: u(b(y)),
|
|
1302
1302
|
onClick: (L) => T(y)
|
|
1303
1303
|
}, [
|
|
1304
1304
|
r("span", {
|
|
1305
1305
|
class: u(n(t).e("cell-text"))
|
|
1306
|
-
},
|
|
1307
|
-
], 10,
|
|
1306
|
+
}, N(n(bl)[y]), 3)
|
|
1307
|
+
], 10, Vl))), 128))
|
|
1308
1308
|
]))), 128))
|
|
1309
1309
|
])
|
|
1310
1310
|
], 2));
|
|
1311
1311
|
}
|
|
1312
|
-
}),
|
|
1312
|
+
}), wl = ["onClick"], Cl = /* @__PURE__ */ le({
|
|
1313
1313
|
name: "XYearTable",
|
|
1314
1314
|
__name: "YearTable",
|
|
1315
1315
|
props: {
|
|
@@ -1319,7 +1319,7 @@ const pl = [
|
|
|
1319
1319
|
},
|
|
1320
1320
|
emits: ["pick"],
|
|
1321
1321
|
setup(s, { emit: k }) {
|
|
1322
|
-
const a = s, e = k, t = ae("year-table"), l = V(() => (/* @__PURE__ */ new Date()).getFullYear()), c = V(() =>
|
|
1322
|
+
const a = s, e = k, t = ae("year-table"), l = V(() => (/* @__PURE__ */ new Date()).getFullYear()), c = V(() => Ke(a.viewedYear)), m = V(() => {
|
|
1323
1323
|
const [y] = c.value, L = [];
|
|
1324
1324
|
L.push(y - 1);
|
|
1325
1325
|
for (let H = 0; H < 10; H++)
|
|
@@ -1330,17 +1330,17 @@ const pl = [
|
|
|
1330
1330
|
for (let L = 0; L < m.value.length; L += 3)
|
|
1331
1331
|
y.push(m.value.slice(L, L + 3));
|
|
1332
1332
|
return y;
|
|
1333
|
-
}), T = (y) => a.modelValue ? a.modelValue.getFullYear() === y : !1,
|
|
1333
|
+
}), T = (y) => a.modelValue ? a.modelValue.getFullYear() === y : !1, S = (y) => y === l.value, D = (y) => {
|
|
1334
1334
|
const [L, H] = c.value;
|
|
1335
1335
|
return y >= L && y <= H;
|
|
1336
1336
|
}, $ = (y) => {
|
|
1337
1337
|
if (!a.disabledDate) return !1;
|
|
1338
1338
|
const L = new Date(y, 0, 1), H = new Date(y, 11, 31);
|
|
1339
1339
|
return a.disabledDate(L) && a.disabledDate(H);
|
|
1340
|
-
},
|
|
1340
|
+
}, z = (y) => [
|
|
1341
1341
|
t.e("cell"),
|
|
1342
1342
|
t.is("selected", T(y)),
|
|
1343
|
-
t.is("current",
|
|
1343
|
+
t.is("current", S(y)),
|
|
1344
1344
|
t.is("disabled", $(y)),
|
|
1345
1345
|
t.is("in-decade", D(y))
|
|
1346
1346
|
], I = (y) => {
|
|
@@ -1352,21 +1352,21 @@ const pl = [
|
|
|
1352
1352
|
cellpadding: "0"
|
|
1353
1353
|
}, [
|
|
1354
1354
|
r("tbody", null, [
|
|
1355
|
-
(i(!0), d(J, null, _(b.value, (H,
|
|
1355
|
+
(i(!0), d(J, null, _(b.value, (H, O) => (i(), d("tr", { key: O }, [
|
|
1356
1356
|
(i(!0), d(J, null, _(H, (M) => (i(), d("td", {
|
|
1357
1357
|
key: M,
|
|
1358
|
-
class: u(
|
|
1358
|
+
class: u(z(M)),
|
|
1359
1359
|
onClick: (h) => I(M)
|
|
1360
1360
|
}, [
|
|
1361
1361
|
r("span", {
|
|
1362
1362
|
class: u(n(t).e("cell-text"))
|
|
1363
|
-
},
|
|
1364
|
-
], 10,
|
|
1363
|
+
}, N(M), 3)
|
|
1364
|
+
], 10, wl))), 128))
|
|
1365
1365
|
]))), 128))
|
|
1366
1366
|
])
|
|
1367
1367
|
], 2));
|
|
1368
1368
|
}
|
|
1369
|
-
}),
|
|
1369
|
+
}), $l = ["placeholder", "disabled", "value"], Dl = ["placeholder", "disabled", "value"], Sl = ["placeholder", "disabled", "value"], zl = ["value"], Tl = ["value"], Hl = ["value"], ot = /* @__PURE__ */ le({
|
|
1370
1370
|
name: "XDatePicker",
|
|
1371
1371
|
__name: "index",
|
|
1372
1372
|
props: {
|
|
@@ -1389,57 +1389,57 @@ const pl = [
|
|
|
1389
1389
|
},
|
|
1390
1390
|
emits: ["update:modelValue", "update:value", "change", "focus", "blur", "clear"],
|
|
1391
1391
|
setup(s, { expose: k, emit: a }) {
|
|
1392
|
-
const e = s, t = a, l = ae("date-picker"), c =
|
|
1393
|
-
e.modelValue !== void 0 && t("update:modelValue",
|
|
1394
|
-
}, D =
|
|
1392
|
+
const e = s, t = a, l = ae("date-picker"), c = B(!1), m = B(2e3), b = B(), T = () => e.modelValue !== void 0 && e.modelValue !== null ? e.modelValue : e.value !== void 0 && e.value !== null ? e.value : null, S = (R) => {
|
|
1393
|
+
e.modelValue !== void 0 && t("update:modelValue", R), e.value !== void 0 && t("update:value", R), e.modelValue === void 0 && e.value === void 0 && t("update:modelValue", R), t("change", R);
|
|
1394
|
+
}, D = B(), $ = B(), z = B({
|
|
1395
1395
|
top: "0px",
|
|
1396
1396
|
left: "0px"
|
|
1397
|
-
}), I = () =>
|
|
1397
|
+
}), I = () => Ee().next(), y = B("date"), L = B(/* @__PURE__ */ new Date()), H = B({
|
|
1398
1398
|
hours: (/* @__PURE__ */ new Date()).getHours(),
|
|
1399
1399
|
minutes: (/* @__PURE__ */ new Date()).getMinutes(),
|
|
1400
1400
|
seconds: (/* @__PURE__ */ new Date()).getSeconds()
|
|
1401
|
-
}),
|
|
1401
|
+
}), O = B({
|
|
1402
1402
|
selecting: !1,
|
|
1403
1403
|
startDate: null,
|
|
1404
1404
|
endDate: null
|
|
1405
1405
|
}), M = V(() => {
|
|
1406
|
-
const
|
|
1407
|
-
if (!
|
|
1406
|
+
const R = T();
|
|
1407
|
+
if (!R) return null;
|
|
1408
1408
|
if (e.type === "daterange") {
|
|
1409
|
-
if (!Array.isArray(
|
|
1410
|
-
const [
|
|
1409
|
+
if (!Array.isArray(R)) return null;
|
|
1410
|
+
const [P, W] = R;
|
|
1411
1411
|
return [
|
|
1412
|
-
|
|
1412
|
+
P instanceof Date ? P : ve(P),
|
|
1413
1413
|
W instanceof Date ? W : ve(W)
|
|
1414
1414
|
];
|
|
1415
1415
|
}
|
|
1416
|
-
return
|
|
1416
|
+
return R instanceof Date ? R : ve(R);
|
|
1417
1417
|
}), h = V(() => {
|
|
1418
1418
|
if (e.type === "daterange") return "";
|
|
1419
|
-
const
|
|
1420
|
-
if (!
|
|
1421
|
-
const
|
|
1422
|
-
if (!
|
|
1419
|
+
const R = T();
|
|
1420
|
+
if (!R) return "";
|
|
1421
|
+
const P = R instanceof Date ? R : ve(R);
|
|
1422
|
+
if (!P) return "";
|
|
1423
1423
|
const W = e.showTime ? "YYYY-MM-DD HH:mm:ss" : e.format;
|
|
1424
|
-
return ce(
|
|
1424
|
+
return ce(P, W);
|
|
1425
1425
|
}), v = V(() => {
|
|
1426
|
-
const
|
|
1427
|
-
if (!
|
|
1428
|
-
const [
|
|
1429
|
-
if (!
|
|
1430
|
-
const W =
|
|
1426
|
+
const R = T();
|
|
1427
|
+
if (!R || !Array.isArray(R)) return "";
|
|
1428
|
+
const [P] = R;
|
|
1429
|
+
if (!P) return "";
|
|
1430
|
+
const W = P instanceof Date ? P : ve(P);
|
|
1431
1431
|
return W ? ce(W, e.format) : "";
|
|
1432
1432
|
}), x = V(() => {
|
|
1433
|
-
const
|
|
1434
|
-
if (!
|
|
1435
|
-
const [,
|
|
1436
|
-
if (!
|
|
1437
|
-
const W =
|
|
1433
|
+
const R = T();
|
|
1434
|
+
if (!R || !Array.isArray(R)) return "";
|
|
1435
|
+
const [, P] = R;
|
|
1436
|
+
if (!P) return "";
|
|
1437
|
+
const W = P instanceof Date ? P : ve(P);
|
|
1438
1438
|
return W ? ce(W, e.format) : "";
|
|
1439
|
-
}),
|
|
1440
|
-
const
|
|
1441
|
-
return !
|
|
1442
|
-
}), F = V(() => L.value.getFullYear()),
|
|
1439
|
+
}), A = V(() => {
|
|
1440
|
+
const R = T();
|
|
1441
|
+
return !R || Array.isArray(R) ? null : R instanceof Date ? R : ve(R);
|
|
1442
|
+
}), F = V(() => L.value.getFullYear()), Y = V(() => L.value.getMonth()), G = V(() => Ke(F.value)), p = V(() => y.value === "year" ? `${G.value[0]} 年 - ${G.value[1]} 年` : y.value === "month" ? `${F.value} 年` : `${F.value} 年 ${Y.value + 1} 月`), w = V(() => [
|
|
1443
1443
|
l.b(),
|
|
1444
1444
|
l.m(e.size),
|
|
1445
1445
|
l.is("disabled", e.disabled),
|
|
@@ -1451,117 +1451,117 @@ const pl = [
|
|
|
1451
1451
|
]), o = () => {
|
|
1452
1452
|
e.disabled || e.readonly || (c.value ? g() : f());
|
|
1453
1453
|
}, f = () => {
|
|
1454
|
-
c.value = !0, m.value = I(),
|
|
1454
|
+
c.value = !0, m.value = I(), Se(() => {
|
|
1455
1455
|
if (b.value && D.value) {
|
|
1456
|
-
const
|
|
1457
|
-
let W =
|
|
1458
|
-
|
|
1456
|
+
const R = b.value.getBoundingClientRect(), P = D.value.getBoundingClientRect();
|
|
1457
|
+
let W = R.bottom + 8, he = R.left;
|
|
1458
|
+
he + P.width > window.innerWidth && (he = window.innerWidth - P.width - 8), W + P.height > window.innerHeight && (W = R.top - P.height - 8), z.value = {
|
|
1459
1459
|
top: `${W}px`,
|
|
1460
|
-
left: `${
|
|
1460
|
+
left: `${he}px`
|
|
1461
1461
|
};
|
|
1462
1462
|
}
|
|
1463
1463
|
}), t("focus", {});
|
|
1464
1464
|
}, g = () => {
|
|
1465
1465
|
c.value = !1, y.value = "date", t("blur", {});
|
|
1466
|
-
}, X = (
|
|
1466
|
+
}, X = (R) => {
|
|
1467
1467
|
if (e.type === "date") {
|
|
1468
|
-
e.showTime && (
|
|
1469
|
-
const
|
|
1470
|
-
|
|
1468
|
+
e.showTime && (R.setHours(H.value.hours), R.setMinutes(H.value.minutes), R.setSeconds(H.value.seconds));
|
|
1469
|
+
const P = e.showTime ? "YYYY-MM-DD HH:mm:ss" : e.valueFormat, W = P ? ce(R, P) : R;
|
|
1470
|
+
S(W), e.showTime || g();
|
|
1471
1471
|
}
|
|
1472
1472
|
}, ne = () => {
|
|
1473
|
-
const
|
|
1474
|
-
if (
|
|
1475
|
-
const
|
|
1476
|
-
if (
|
|
1477
|
-
|
|
1478
|
-
const W = e.valueFormat ? ce(
|
|
1479
|
-
|
|
1473
|
+
const R = T();
|
|
1474
|
+
if (R) {
|
|
1475
|
+
const P = R instanceof Date ? R : ve(R);
|
|
1476
|
+
if (P) {
|
|
1477
|
+
P.setHours(H.value.hours), P.setMinutes(H.value.minutes), P.setSeconds(H.value.seconds);
|
|
1478
|
+
const W = e.valueFormat ? ce(P, e.valueFormat) : P;
|
|
1479
|
+
S(W);
|
|
1480
1480
|
}
|
|
1481
1481
|
} else {
|
|
1482
|
-
const
|
|
1483
|
-
|
|
1484
|
-
const W = e.valueFormat ? ce(
|
|
1485
|
-
|
|
1482
|
+
const P = /* @__PURE__ */ new Date();
|
|
1483
|
+
P.setHours(H.value.hours), P.setMinutes(H.value.minutes), P.setSeconds(H.value.seconds);
|
|
1484
|
+
const W = e.valueFormat ? ce(P, e.valueFormat) : P;
|
|
1485
|
+
S(W);
|
|
1486
1486
|
}
|
|
1487
1487
|
g();
|
|
1488
|
-
}, K = (
|
|
1489
|
-
if (!
|
|
1490
|
-
|
|
1488
|
+
}, K = (R) => {
|
|
1489
|
+
if (!O.value.selecting)
|
|
1490
|
+
O.value.selecting = !0, O.value.startDate = R, O.value.endDate = null;
|
|
1491
1491
|
else {
|
|
1492
|
-
|
|
1493
|
-
const
|
|
1494
|
-
|
|
1492
|
+
O.value.selecting = !1, O.value.startDate && R < O.value.startDate ? [O.value.startDate, O.value.endDate] = [R, O.value.startDate] : O.value.endDate = R;
|
|
1493
|
+
const P = e.valueFormat ? ce(O.value.startDate, e.valueFormat) : O.value.startDate, W = e.valueFormat ? ce(O.value.endDate, e.valueFormat) : O.value.endDate;
|
|
1494
|
+
S([P, W]), g();
|
|
1495
1495
|
}
|
|
1496
|
-
}, re = (
|
|
1497
|
-
if (L.value = new Date(F.value,
|
|
1498
|
-
const
|
|
1499
|
-
|
|
1496
|
+
}, re = (R) => {
|
|
1497
|
+
if (L.value = new Date(F.value, R, 1), e.type === "month") {
|
|
1498
|
+
const P = new Date(F.value, R, 1), W = e.valueFormat ? ce(P, e.valueFormat) : P;
|
|
1499
|
+
S(W), g();
|
|
1500
1500
|
} else
|
|
1501
1501
|
y.value = "date";
|
|
1502
|
-
}, q = (
|
|
1503
|
-
if (L.value = new Date(
|
|
1504
|
-
const
|
|
1505
|
-
|
|
1502
|
+
}, q = (R) => {
|
|
1503
|
+
if (L.value = new Date(R, Y.value, 1), e.type === "year") {
|
|
1504
|
+
const P = new Date(R, 0, 1), W = e.valueFormat ? ce(P, e.valueFormat) : P;
|
|
1505
|
+
S(W), g();
|
|
1506
1506
|
} else
|
|
1507
1507
|
y.value = "month";
|
|
1508
1508
|
}, me = () => {
|
|
1509
|
-
L.value =
|
|
1510
|
-
},
|
|
1511
|
-
L.value =
|
|
1509
|
+
L.value = fl(L.value);
|
|
1510
|
+
}, ye = () => {
|
|
1511
|
+
L.value = ml(L.value);
|
|
1512
1512
|
}, ze = () => {
|
|
1513
|
-
y.value === "year" ? L.value = new Date(F.value - 10,
|
|
1514
|
-
},
|
|
1515
|
-
y.value === "year" ? L.value = new Date(F.value + 10,
|
|
1516
|
-
},
|
|
1513
|
+
y.value === "year" ? L.value = new Date(F.value - 10, Y.value, 1) : L.value = hl(L.value);
|
|
1514
|
+
}, we = () => {
|
|
1515
|
+
y.value === "year" ? L.value = new Date(F.value + 10, Y.value, 1) : L.value = pl(L.value);
|
|
1516
|
+
}, Te = () => {
|
|
1517
1517
|
y.value = "month";
|
|
1518
1518
|
}, Re = () => {
|
|
1519
1519
|
y.value = "year";
|
|
1520
1520
|
}, E = () => {
|
|
1521
|
-
|
|
1521
|
+
S(null), t("clear"), O.value = {
|
|
1522
1522
|
selecting: !1,
|
|
1523
1523
|
startDate: null,
|
|
1524
1524
|
endDate: null
|
|
1525
1525
|
};
|
|
1526
|
-
},
|
|
1526
|
+
}, j = (R) => {
|
|
1527
1527
|
if (!b.value) return;
|
|
1528
|
-
const
|
|
1529
|
-
b.value.contains(
|
|
1528
|
+
const P = R.target;
|
|
1529
|
+
b.value.contains(P) || D.value && D.value.contains(P) || g();
|
|
1530
1530
|
};
|
|
1531
1531
|
ie(
|
|
1532
1532
|
T,
|
|
1533
|
-
(
|
|
1534
|
-
if (
|
|
1533
|
+
(R) => {
|
|
1534
|
+
if (R)
|
|
1535
1535
|
if (Array.isArray(M.value)) {
|
|
1536
|
-
const [
|
|
1537
|
-
|
|
1536
|
+
const [P] = M.value;
|
|
1537
|
+
P && (L.value = new Date(P));
|
|
1538
1538
|
} else M.value && (L.value = new Date(M.value));
|
|
1539
1539
|
},
|
|
1540
1540
|
{ immediate: !0 }
|
|
1541
|
-
), ie(c, (
|
|
1542
|
-
|
|
1541
|
+
), ie(c, (R) => {
|
|
1542
|
+
R && (y.value = "date", e.type === "daterange" && (O.value = {
|
|
1543
1543
|
selecting: !1,
|
|
1544
1544
|
startDate: Array.isArray(M.value) ? M.value[0] : null,
|
|
1545
1545
|
endDate: Array.isArray(M.value) ? M.value[1] : null
|
|
1546
1546
|
}));
|
|
1547
1547
|
});
|
|
1548
|
-
const Z = (
|
|
1549
|
-
|
|
1548
|
+
const Z = (R) => {
|
|
1549
|
+
R.key === "Escape" && g();
|
|
1550
1550
|
};
|
|
1551
|
-
return
|
|
1552
|
-
document.addEventListener("click",
|
|
1553
|
-
}),
|
|
1554
|
-
document.removeEventListener("click",
|
|
1551
|
+
return ge(() => {
|
|
1552
|
+
document.addEventListener("click", j), document.addEventListener("keydown", Z);
|
|
1553
|
+
}), De(() => {
|
|
1554
|
+
document.removeEventListener("click", j), document.removeEventListener("keydown", Z);
|
|
1555
1555
|
}), k({
|
|
1556
1556
|
focus: () => {
|
|
1557
|
-
var
|
|
1558
|
-
return (
|
|
1557
|
+
var R;
|
|
1558
|
+
return (R = $.value) == null ? void 0 : R.focus();
|
|
1559
1559
|
},
|
|
1560
1560
|
blur: () => {
|
|
1561
|
-
var
|
|
1562
|
-
return (
|
|
1561
|
+
var R;
|
|
1562
|
+
return (R = $.value) == null ? void 0 : R.blur();
|
|
1563
1563
|
}
|
|
1564
|
-
}), (
|
|
1564
|
+
}), (R, P) => (i(), d("div", {
|
|
1565
1565
|
ref_key: "pickerRef",
|
|
1566
1566
|
ref: b,
|
|
1567
1567
|
class: u(w.value)
|
|
@@ -1580,7 +1580,7 @@ const pl = [
|
|
|
1580
1580
|
readonly: !0,
|
|
1581
1581
|
value: h.value,
|
|
1582
1582
|
class: u(n(l).e("input-inner"))
|
|
1583
|
-
}, null, 10,
|
|
1583
|
+
}, null, 10, $l),
|
|
1584
1584
|
r("span", {
|
|
1585
1585
|
class: u(n(l).e("suffix"))
|
|
1586
1586
|
}, [
|
|
@@ -1615,7 +1615,7 @@ const pl = [
|
|
|
1615
1615
|
readonly: !0,
|
|
1616
1616
|
value: v.value,
|
|
1617
1617
|
class: u(n(l).e("input-inner"))
|
|
1618
|
-
}, null, 10,
|
|
1618
|
+
}, null, 10, Dl),
|
|
1619
1619
|
r("span", {
|
|
1620
1620
|
class: u(n(l).e("separator"))
|
|
1621
1621
|
}, "至", 2),
|
|
@@ -1626,7 +1626,7 @@ const pl = [
|
|
|
1626
1626
|
readonly: !0,
|
|
1627
1627
|
value: x.value,
|
|
1628
1628
|
class: u(n(l).e("input-inner"))
|
|
1629
|
-
}, null, 10,
|
|
1629
|
+
}, null, 10, Sl),
|
|
1630
1630
|
r("span", {
|
|
1631
1631
|
class: u(n(l).e("suffix"))
|
|
1632
1632
|
}, [
|
|
@@ -1657,7 +1657,7 @@ const pl = [
|
|
|
1657
1657
|
ref_key: "popperRef",
|
|
1658
1658
|
ref: D,
|
|
1659
1659
|
class: u(n(l).e("popper")),
|
|
1660
|
-
style: te({ zIndex: m.value, ...
|
|
1660
|
+
style: te({ zIndex: m.value, ...z.value })
|
|
1661
1661
|
}, [
|
|
1662
1662
|
r("div", {
|
|
1663
1663
|
class: u(n(l).e("header"))
|
|
@@ -1665,55 +1665,55 @@ const pl = [
|
|
|
1665
1665
|
r("button", {
|
|
1666
1666
|
type: "button",
|
|
1667
1667
|
class: u(n(l).e("prev-btn")),
|
|
1668
|
-
onClick:
|
|
1668
|
+
onClick: P[0] || (P[0] = (W) => y.value === "date" ? me() : ze())
|
|
1669
1669
|
}, " ‹ ", 2),
|
|
1670
1670
|
r("div", {
|
|
1671
1671
|
class: u(n(l).e("header-title"))
|
|
1672
1672
|
}, [
|
|
1673
1673
|
y.value === "year" ? (i(), d("span", {
|
|
1674
1674
|
key: 0,
|
|
1675
|
-
onClick:
|
|
1676
|
-
},
|
|
1677
|
-
r("span", { onClick: Re },
|
|
1675
|
+
onClick: P[1] || (P[1] = (W) => y.value = "month")
|
|
1676
|
+
}, N(p.value), 1)) : (i(), d(J, { key: 1 }, [
|
|
1677
|
+
r("span", { onClick: Re }, N(F.value) + " 年", 1),
|
|
1678
1678
|
y.value === "date" ? (i(), d("span", {
|
|
1679
1679
|
key: 0,
|
|
1680
|
-
onClick:
|
|
1681
|
-
},
|
|
1680
|
+
onClick: Te
|
|
1681
|
+
}, N(Y.value + 1) + " 月", 1)) : U("", !0)
|
|
1682
1682
|
], 64))
|
|
1683
1683
|
], 2),
|
|
1684
1684
|
r("button", {
|
|
1685
1685
|
type: "button",
|
|
1686
1686
|
class: u(n(l).e("next-btn")),
|
|
1687
|
-
onClick:
|
|
1687
|
+
onClick: P[2] || (P[2] = (W) => y.value === "date" ? ye() : we())
|
|
1688
1688
|
}, " › ", 2)
|
|
1689
1689
|
], 2),
|
|
1690
1690
|
r("div", {
|
|
1691
1691
|
class: u(n(l).e("content"))
|
|
1692
1692
|
}, [
|
|
1693
|
-
y.value === "date" ? (i(), fe(
|
|
1693
|
+
y.value === "date" ? (i(), fe(Ml, {
|
|
1694
1694
|
key: 0,
|
|
1695
|
-
"model-value":
|
|
1695
|
+
"model-value": A.value,
|
|
1696
1696
|
"viewed-month": L.value,
|
|
1697
1697
|
"disabled-date": s.disabledDate,
|
|
1698
1698
|
"min-date": s.minDate ? n(ve)(s.minDate) : null,
|
|
1699
1699
|
"max-date": s.maxDate ? n(ve)(s.maxDate) : null,
|
|
1700
1700
|
"selection-mode": s.type === "daterange" ? "range" : "single",
|
|
1701
|
-
"range-state":
|
|
1701
|
+
"range-state": O.value,
|
|
1702
1702
|
onPick: X,
|
|
1703
1703
|
onRangeSelect: K
|
|
1704
|
-
}, null, 8, ["model-value", "viewed-month", "disabled-date", "min-date", "max-date", "selection-mode", "range-state"])) : y.value === "month" ? (i(), fe(
|
|
1704
|
+
}, null, 8, ["model-value", "viewed-month", "disabled-date", "min-date", "max-date", "selection-mode", "range-state"])) : y.value === "month" ? (i(), fe(xl, {
|
|
1705
1705
|
key: 1,
|
|
1706
|
-
"model-value":
|
|
1706
|
+
"model-value": A.value,
|
|
1707
1707
|
"viewed-year": F.value,
|
|
1708
1708
|
"disabled-date": s.disabledDate,
|
|
1709
1709
|
onPick: re
|
|
1710
|
-
}, null, 8, ["model-value", "viewed-year", "disabled-date"])) : y.value === "year" ? (i(), fe(
|
|
1710
|
+
}, null, 8, ["model-value", "viewed-year", "disabled-date"])) : y.value === "year" ? (i(), fe(Cl, {
|
|
1711
1711
|
key: 2,
|
|
1712
|
-
"model-value":
|
|
1712
|
+
"model-value": A.value,
|
|
1713
1713
|
"viewed-year": F.value,
|
|
1714
1714
|
"disabled-date": s.disabledDate,
|
|
1715
1715
|
onPick: q
|
|
1716
|
-
}, null, 8, ["model-value", "viewed-year", "disabled-date"])) :
|
|
1716
|
+
}, null, 8, ["model-value", "viewed-year", "disabled-date"])) : U("", !0)
|
|
1717
1717
|
], 2),
|
|
1718
1718
|
s.showTime && s.type !== "daterange" ? (i(), d("div", {
|
|
1719
1719
|
key: 0,
|
|
@@ -1723,66 +1723,66 @@ const pl = [
|
|
|
1723
1723
|
class: u(n(l).e("time-item"))
|
|
1724
1724
|
}, [
|
|
1725
1725
|
oe(r("select", {
|
|
1726
|
-
"onUpdate:modelValue":
|
|
1726
|
+
"onUpdate:modelValue": P[3] || (P[3] = (W) => H.value.hours = W),
|
|
1727
1727
|
class: u(n(l).e("time-select"))
|
|
1728
1728
|
}, [
|
|
1729
1729
|
(i(), d(J, null, _(24, (W) => r("option", {
|
|
1730
1730
|
key: W,
|
|
1731
1731
|
value: W - 1
|
|
1732
|
-
},
|
|
1732
|
+
}, N(String(W - 1).padStart(2, "0")), 9, zl)), 64))
|
|
1733
1733
|
], 2), [
|
|
1734
1734
|
[
|
|
1735
|
-
|
|
1735
|
+
Ce,
|
|
1736
1736
|
H.value.hours,
|
|
1737
1737
|
void 0,
|
|
1738
1738
|
{ number: !0 }
|
|
1739
1739
|
]
|
|
1740
1740
|
]),
|
|
1741
|
-
|
|
1741
|
+
P[6] || (P[6] = r("span", null, "时", -1))
|
|
1742
1742
|
], 2),
|
|
1743
1743
|
r("div", {
|
|
1744
1744
|
class: u(n(l).e("time-item"))
|
|
1745
1745
|
}, [
|
|
1746
1746
|
oe(r("select", {
|
|
1747
|
-
"onUpdate:modelValue":
|
|
1747
|
+
"onUpdate:modelValue": P[4] || (P[4] = (W) => H.value.minutes = W),
|
|
1748
1748
|
class: u(n(l).e("time-select"))
|
|
1749
1749
|
}, [
|
|
1750
1750
|
(i(), d(J, null, _(60, (W) => r("option", {
|
|
1751
1751
|
key: W,
|
|
1752
1752
|
value: W - 1
|
|
1753
|
-
},
|
|
1753
|
+
}, N(String(W - 1).padStart(2, "0")), 9, Tl)), 64))
|
|
1754
1754
|
], 2), [
|
|
1755
1755
|
[
|
|
1756
|
-
|
|
1756
|
+
Ce,
|
|
1757
1757
|
H.value.minutes,
|
|
1758
1758
|
void 0,
|
|
1759
1759
|
{ number: !0 }
|
|
1760
1760
|
]
|
|
1761
1761
|
]),
|
|
1762
|
-
|
|
1762
|
+
P[7] || (P[7] = r("span", null, "分", -1))
|
|
1763
1763
|
], 2),
|
|
1764
1764
|
r("div", {
|
|
1765
1765
|
class: u(n(l).e("time-item"))
|
|
1766
1766
|
}, [
|
|
1767
1767
|
oe(r("select", {
|
|
1768
|
-
"onUpdate:modelValue":
|
|
1768
|
+
"onUpdate:modelValue": P[5] || (P[5] = (W) => H.value.seconds = W),
|
|
1769
1769
|
class: u(n(l).e("time-select"))
|
|
1770
1770
|
}, [
|
|
1771
1771
|
(i(), d(J, null, _(60, (W) => r("option", {
|
|
1772
1772
|
key: W,
|
|
1773
1773
|
value: W - 1
|
|
1774
|
-
},
|
|
1774
|
+
}, N(String(W - 1).padStart(2, "0")), 9, Hl)), 64))
|
|
1775
1775
|
], 2), [
|
|
1776
1776
|
[
|
|
1777
|
-
|
|
1777
|
+
Ce,
|
|
1778
1778
|
H.value.seconds,
|
|
1779
1779
|
void 0,
|
|
1780
1780
|
{ number: !0 }
|
|
1781
1781
|
]
|
|
1782
1782
|
]),
|
|
1783
|
-
|
|
1783
|
+
P[8] || (P[8] = r("span", null, "秒", -1))
|
|
1784
1784
|
], 2)
|
|
1785
|
-
], 2)) :
|
|
1785
|
+
], 2)) : U("", !0),
|
|
1786
1786
|
s.showTime && s.type !== "daterange" ? (i(), d("div", {
|
|
1787
1787
|
key: 1,
|
|
1788
1788
|
class: u(n(l).e("footer"))
|
|
@@ -1792,9 +1792,9 @@ const pl = [
|
|
|
1792
1792
|
class: u(n(l).e("confirm-btn")),
|
|
1793
1793
|
onClick: ne
|
|
1794
1794
|
}, "确定", 2)
|
|
1795
|
-
], 2)) :
|
|
1795
|
+
], 2)) : U("", !0)
|
|
1796
1796
|
], 6), [
|
|
1797
|
-
[
|
|
1797
|
+
[be, c.value]
|
|
1798
1798
|
])
|
|
1799
1799
|
]),
|
|
1800
1800
|
_: 1
|
|
@@ -1803,7 +1803,7 @@ const pl = [
|
|
|
1803
1803
|
], 2));
|
|
1804
1804
|
}
|
|
1805
1805
|
});
|
|
1806
|
-
function
|
|
1806
|
+
function ke(s, k = "HH:mm:ss") {
|
|
1807
1807
|
if (!s) return "";
|
|
1808
1808
|
const a = s.getHours(), e = s.getMinutes(), t = s.getSeconds();
|
|
1809
1809
|
return k.replace(/HH/g, String(a).padStart(2, "0")).replace(/H/g, String(a)).replace(/mm/g, String(e).padStart(2, "0")).replace(/m/g, String(e)).replace(/ss/g, String(t).padStart(2, "0")).replace(/s/g, String(t));
|
|
@@ -1824,10 +1824,10 @@ function Ae(s) {
|
|
|
1824
1824
|
const a = new Date(s);
|
|
1825
1825
|
return isNaN(a.getTime()) ? null : a;
|
|
1826
1826
|
}
|
|
1827
|
-
function
|
|
1827
|
+
function Me(s) {
|
|
1828
1828
|
return String(s).padStart(2, "0");
|
|
1829
1829
|
}
|
|
1830
|
-
const
|
|
1830
|
+
const Ll = ["onClick"], Rl = ["onClick"], Bl = ["onClick"], Al = /* @__PURE__ */ le({
|
|
1831
1831
|
name: "XTimePanel",
|
|
1832
1832
|
__name: "TimePanel",
|
|
1833
1833
|
props: {
|
|
@@ -1842,12 +1842,12 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1842
1842
|
},
|
|
1843
1843
|
emits: ["confirm", "cancel"],
|
|
1844
1844
|
setup(s, { emit: k }) {
|
|
1845
|
-
const a = s, e = k, t = ae("time-panel"), l =
|
|
1845
|
+
const a = s, e = k, t = ae("time-panel"), l = B(0), c = B(0), m = B(0), b = B(), T = B(), S = B(), D = V(() => a.format.includes("ss") || a.format.includes("s")), $ = V(() => {
|
|
1846
1846
|
const K = [], re = Math.max(1, a.hourStep);
|
|
1847
1847
|
for (let q = 0; q < 24; q += re)
|
|
1848
1848
|
K.push(q);
|
|
1849
1849
|
return K;
|
|
1850
|
-
}),
|
|
1850
|
+
}), z = V(() => {
|
|
1851
1851
|
const K = [], re = Math.max(1, a.minuteStep);
|
|
1852
1852
|
for (let q = 0; q < 60; q += re)
|
|
1853
1853
|
K.push(q);
|
|
@@ -1857,27 +1857,27 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1857
1857
|
for (let q = 0; q < 60; q += re)
|
|
1858
1858
|
K.push(q);
|
|
1859
1859
|
return K;
|
|
1860
|
-
}), y = V(() => a.disabledHours ? new Set(a.disabledHours()) : /* @__PURE__ */ new Set()), L = V(() => a.disabledMinutes ? new Set(a.disabledMinutes(l.value)) : /* @__PURE__ */ new Set()), H = V(() => a.disabledSeconds ? new Set(a.disabledSeconds(l.value, c.value)) : /* @__PURE__ */ new Set()),
|
|
1861
|
-
M(K) || (l.value = K, w(b.value,
|
|
1862
|
-
},
|
|
1863
|
-
h(K) || (c.value = K, w(T.value,
|
|
1860
|
+
}), y = V(() => a.disabledHours ? new Set(a.disabledHours()) : /* @__PURE__ */ new Set()), L = V(() => a.disabledMinutes ? new Set(a.disabledMinutes(l.value)) : /* @__PURE__ */ new Set()), H = V(() => a.disabledSeconds ? new Set(a.disabledSeconds(l.value, c.value)) : /* @__PURE__ */ new Set()), O = V(() => `${Me(l.value)}:${Me(c.value)}${D.value ? ":" + Me(m.value) : ""}`), M = (K) => y.value.has(K), h = (K) => L.value.has(K), v = (K) => H.value.has(K), x = (K) => {
|
|
1861
|
+
M(K) || (l.value = K, w(b.value, Y(K)));
|
|
1862
|
+
}, A = (K) => {
|
|
1863
|
+
h(K) || (c.value = K, w(T.value, G(K)));
|
|
1864
1864
|
}, F = (K) => {
|
|
1865
|
-
v(K) || (m.value = K, w(
|
|
1866
|
-
},
|
|
1865
|
+
v(K) || (m.value = K, w(S.value, p(K)));
|
|
1866
|
+
}, Y = (K) => $.value.indexOf(K), G = (K) => z.value.indexOf(K), p = (K) => I.value.indexOf(K), w = (K, re) => {
|
|
1867
1867
|
if (!K) return;
|
|
1868
|
-
const q = 32,
|
|
1869
|
-
K.scrollTop = Math.max(0,
|
|
1868
|
+
const q = 32, ye = re * q + 84 - 200 / 2 + q / 2;
|
|
1869
|
+
K.scrollTop = Math.max(0, ye);
|
|
1870
1870
|
}, C = () => {
|
|
1871
1871
|
if (!b.value) return;
|
|
1872
1872
|
const K = b.value.scrollTop, re = Math.round((K - 84 + 100) / 32), q = $.value[Math.max(0, Math.min(re, $.value.length - 1))];
|
|
1873
1873
|
q !== void 0 && !M(q) && (l.value = q);
|
|
1874
1874
|
}, o = () => {
|
|
1875
1875
|
if (!T.value) return;
|
|
1876
|
-
const K = T.value.scrollTop, re = Math.round((K - 84 + 100) / 32), q =
|
|
1876
|
+
const K = T.value.scrollTop, re = Math.round((K - 84 + 100) / 32), q = z.value[Math.max(0, Math.min(re, z.value.length - 1))];
|
|
1877
1877
|
q !== void 0 && !h(q) && (c.value = q);
|
|
1878
1878
|
}, f = () => {
|
|
1879
|
-
if (!
|
|
1880
|
-
const K =
|
|
1879
|
+
if (!S.value) return;
|
|
1880
|
+
const K = S.value.scrollTop, re = Math.round((K - 84 + 100) / 32), q = I.value[Math.max(0, Math.min(re, I.value.length - 1))];
|
|
1881
1881
|
q !== void 0 && !v(q) && (m.value = q);
|
|
1882
1882
|
}, g = () => {
|
|
1883
1883
|
const K = a.modelValue ? new Date(a.modelValue) : /* @__PURE__ */ new Date();
|
|
@@ -1891,8 +1891,8 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1891
1891
|
const K = /* @__PURE__ */ new Date();
|
|
1892
1892
|
l.value = K.getHours(), c.value = K.getMinutes(), m.value = K.getSeconds();
|
|
1893
1893
|
}
|
|
1894
|
-
|
|
1895
|
-
w(b.value,
|
|
1894
|
+
Se(() => {
|
|
1895
|
+
w(b.value, Y(l.value)), w(T.value, G(c.value)), D.value && w(S.value, p(m.value));
|
|
1896
1896
|
});
|
|
1897
1897
|
};
|
|
1898
1898
|
return ie(
|
|
@@ -1901,7 +1901,7 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1901
1901
|
ne();
|
|
1902
1902
|
},
|
|
1903
1903
|
{ immediate: !0 }
|
|
1904
|
-
),
|
|
1904
|
+
), ge(() => {
|
|
1905
1905
|
ne();
|
|
1906
1906
|
}), (K, re) => (i(), d("div", {
|
|
1907
1907
|
class: u(n(t).b())
|
|
@@ -1925,7 +1925,7 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1925
1925
|
key: q,
|
|
1926
1926
|
class: u([n(t).e("item"), n(t).is("selected", l.value === q), n(t).is("disabled", M(q))]),
|
|
1927
1927
|
onClick: (me) => x(q)
|
|
1928
|
-
},
|
|
1928
|
+
}, N(n(Me)(q)), 11, Ll))), 128)),
|
|
1929
1929
|
r("div", {
|
|
1930
1930
|
class: u(n(t).e("padding"))
|
|
1931
1931
|
}, null, 2)
|
|
@@ -1939,11 +1939,11 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1939
1939
|
r("div", {
|
|
1940
1940
|
class: u(n(t).e("padding"))
|
|
1941
1941
|
}, null, 2),
|
|
1942
|
-
(i(!0), d(J, null, _(
|
|
1942
|
+
(i(!0), d(J, null, _(z.value, (q) => (i(), d("div", {
|
|
1943
1943
|
key: q,
|
|
1944
1944
|
class: u([n(t).e("item"), n(t).is("selected", c.value === q), n(t).is("disabled", h(q))]),
|
|
1945
|
-
onClick: (me) =>
|
|
1946
|
-
},
|
|
1945
|
+
onClick: (me) => A(q)
|
|
1946
|
+
}, N(n(Me)(q)), 11, Rl))), 128)),
|
|
1947
1947
|
r("div", {
|
|
1948
1948
|
class: u(n(t).e("padding"))
|
|
1949
1949
|
}, null, 2)
|
|
@@ -1951,7 +1951,7 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1951
1951
|
D.value ? (i(), d("div", {
|
|
1952
1952
|
key: 0,
|
|
1953
1953
|
ref_key: "secondListRef",
|
|
1954
|
-
ref:
|
|
1954
|
+
ref: S,
|
|
1955
1955
|
class: u(n(t).e("list")),
|
|
1956
1956
|
onScroll: f
|
|
1957
1957
|
}, [
|
|
@@ -1962,18 +1962,18 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1962
1962
|
key: q,
|
|
1963
1963
|
class: u([n(t).e("item"), n(t).is("selected", m.value === q), n(t).is("disabled", v(q))]),
|
|
1964
1964
|
onClick: (me) => F(q)
|
|
1965
|
-
},
|
|
1965
|
+
}, N(n(Me)(q)), 11, Bl))), 128)),
|
|
1966
1966
|
r("div", {
|
|
1967
1967
|
class: u(n(t).e("padding"))
|
|
1968
1968
|
}, null, 2)
|
|
1969
|
-
], 34)) :
|
|
1969
|
+
], 34)) : U("", !0)
|
|
1970
1970
|
], 2),
|
|
1971
1971
|
r("div", {
|
|
1972
1972
|
class: u(n(t).e("footer"))
|
|
1973
1973
|
}, [
|
|
1974
1974
|
r("span", {
|
|
1975
1975
|
class: u(n(t).e("current-time"))
|
|
1976
|
-
},
|
|
1976
|
+
}, N(O.value), 3),
|
|
1977
1977
|
r("div", {
|
|
1978
1978
|
class: u(n(t).e("actions"))
|
|
1979
1979
|
}, [
|
|
@@ -1989,7 +1989,7 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
1989
1989
|
], 2)
|
|
1990
1990
|
], 2));
|
|
1991
1991
|
}
|
|
1992
|
-
}),
|
|
1992
|
+
}), Fl = ["placeholder", "disabled", "value"], Il = ["placeholder", "disabled", "value"], Pl = ["placeholder", "disabled", "value"], it = /* @__PURE__ */ le({
|
|
1993
1993
|
name: "XTimePicker",
|
|
1994
1994
|
__name: "index",
|
|
1995
1995
|
props: {
|
|
@@ -2013,28 +2013,28 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2013
2013
|
},
|
|
2014
2014
|
emits: ["update:modelValue", "change", "focus", "blur", "clear"],
|
|
2015
2015
|
setup(s, { expose: k, emit: a }) {
|
|
2016
|
-
const e = s, t = a, l = ae("time-picker"), c = () =>
|
|
2016
|
+
const e = s, t = a, l = ae("time-picker"), c = () => Ee().next(), m = B(!1), b = B(2e3), T = B(), S = B(), D = B(), $ = B({
|
|
2017
2017
|
top: "0px",
|
|
2018
2018
|
left: "0px"
|
|
2019
|
-
}),
|
|
2019
|
+
}), z = B({
|
|
2020
2020
|
startTime: null,
|
|
2021
2021
|
endTime: null
|
|
2022
|
-
}), I =
|
|
2022
|
+
}), I = B("start"), y = V(() => {
|
|
2023
2023
|
if (!e.modelValue) return null;
|
|
2024
2024
|
if (e.type === "timerange") {
|
|
2025
2025
|
const [f, g] = e.modelValue;
|
|
2026
2026
|
return [Ae(f), Ae(g)];
|
|
2027
2027
|
}
|
|
2028
2028
|
return Ae(e.modelValue);
|
|
2029
|
-
}), L = V(() => !y.value || Array.isArray(y.value) ? "" :
|
|
2029
|
+
}), L = V(() => !y.value || Array.isArray(y.value) ? "" : ke(y.value, e.format)), H = V(() => {
|
|
2030
2030
|
if (!Array.isArray(y.value)) return "";
|
|
2031
2031
|
const [f] = y.value;
|
|
2032
|
-
return f ?
|
|
2033
|
-
}),
|
|
2032
|
+
return f ? ke(f, e.format) : "";
|
|
2033
|
+
}), O = V(() => {
|
|
2034
2034
|
if (!Array.isArray(y.value)) return "";
|
|
2035
2035
|
const [, f] = y.value;
|
|
2036
|
-
return f ?
|
|
2037
|
-
}), M = V(() => e.type === "timerange" ? I.value === "start" ?
|
|
2036
|
+
return f ? ke(f, e.format) : "";
|
|
2037
|
+
}), M = V(() => e.type === "timerange" ? I.value === "start" ? z.value.startTime : z.value.endTime || z.value.startTime : y.value), h = V(() => [
|
|
2038
2038
|
l.b(),
|
|
2039
2039
|
l.m(e.size),
|
|
2040
2040
|
l.is("disabled", e.disabled),
|
|
@@ -2043,13 +2043,13 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2043
2043
|
l.e("input"),
|
|
2044
2044
|
l.is("focus", m.value)
|
|
2045
2045
|
]), x = () => {
|
|
2046
|
-
e.disabled || e.readonly || (m.value ?
|
|
2047
|
-
},
|
|
2046
|
+
e.disabled || e.readonly || (m.value ? Y() : F());
|
|
2047
|
+
}, A = (f) => {
|
|
2048
2048
|
e.disabled || e.readonly || (I.value = f, m.value || F());
|
|
2049
2049
|
}, F = () => {
|
|
2050
|
-
m.value = !0, b.value = c(),
|
|
2051
|
-
if (T.value &&
|
|
2052
|
-
const f = T.value.getBoundingClientRect(), g =
|
|
2050
|
+
m.value = !0, b.value = c(), Se(() => {
|
|
2051
|
+
if (T.value && S.value) {
|
|
2052
|
+
const f = T.value.getBoundingClientRect(), g = S.value.getBoundingClientRect();
|
|
2053
2053
|
let X = f.bottom + 8, ne = f.left;
|
|
2054
2054
|
ne + g.width > window.innerWidth && (ne = window.innerWidth - g.width - 8), X + g.height > window.innerHeight && (X = f.top - g.height - 8), $.value = {
|
|
2055
2055
|
top: `${X}px`,
|
|
@@ -2057,39 +2057,39 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2057
2057
|
};
|
|
2058
2058
|
}
|
|
2059
2059
|
}), t("focus", {});
|
|
2060
|
-
},
|
|
2060
|
+
}, Y = () => {
|
|
2061
2061
|
m.value = !1, t("blur", {});
|
|
2062
|
-
},
|
|
2062
|
+
}, G = (f) => {
|
|
2063
2063
|
if (e.type === "timerange")
|
|
2064
2064
|
if (I.value === "start")
|
|
2065
|
-
|
|
2065
|
+
z.value.startTime = f, I.value = "end", z.value.endTime && z.value.endTime < f && (z.value.endTime = null);
|
|
2066
2066
|
else {
|
|
2067
|
-
|
|
2068
|
-
const g = e.valueFormat ?
|
|
2069
|
-
t("update:modelValue", [g, X]), t("change", [g, X]),
|
|
2067
|
+
z.value.startTime && f < z.value.startTime ? (z.value.endTime = z.value.startTime, z.value.startTime = f) : z.value.endTime = f;
|
|
2068
|
+
const g = e.valueFormat ? ke(z.value.startTime, e.valueFormat) : z.value.startTime, X = e.valueFormat ? ke(z.value.endTime, e.valueFormat) : z.value.endTime;
|
|
2069
|
+
t("update:modelValue", [g, X]), t("change", [g, X]), Y();
|
|
2070
2070
|
}
|
|
2071
2071
|
else {
|
|
2072
|
-
const g = e.valueFormat ?
|
|
2073
|
-
t("update:modelValue", g), t("change", g),
|
|
2072
|
+
const g = e.valueFormat ? ke(f, e.valueFormat) : f;
|
|
2073
|
+
t("update:modelValue", g), t("change", g), Y();
|
|
2074
2074
|
}
|
|
2075
2075
|
}, p = () => {
|
|
2076
|
-
|
|
2076
|
+
Y();
|
|
2077
2077
|
}, w = () => {
|
|
2078
|
-
t("update:modelValue", null), t("change", null), t("clear"),
|
|
2078
|
+
t("update:modelValue", null), t("change", null), t("clear"), z.value = {
|
|
2079
2079
|
startTime: null,
|
|
2080
2080
|
endTime: null
|
|
2081
2081
|
};
|
|
2082
2082
|
}, C = (f) => {
|
|
2083
2083
|
if (!T.value) return;
|
|
2084
2084
|
const g = f.target;
|
|
2085
|
-
T.value.contains(g) ||
|
|
2085
|
+
T.value.contains(g) || S.value && S.value.contains(g) || Y();
|
|
2086
2086
|
};
|
|
2087
2087
|
ie(
|
|
2088
2088
|
() => e.modelValue,
|
|
2089
2089
|
(f) => {
|
|
2090
2090
|
if (f && e.type === "timerange") {
|
|
2091
2091
|
const [g, X] = y.value;
|
|
2092
|
-
|
|
2092
|
+
z.value = {
|
|
2093
2093
|
startTime: g,
|
|
2094
2094
|
endTime: X
|
|
2095
2095
|
};
|
|
@@ -2097,17 +2097,17 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2097
2097
|
},
|
|
2098
2098
|
{ immediate: !0 }
|
|
2099
2099
|
), ie(m, (f) => {
|
|
2100
|
-
f && e.type === "timerange" && (
|
|
2100
|
+
f && e.type === "timerange" && (z.value = {
|
|
2101
2101
|
startTime: Array.isArray(y.value) ? y.value[0] : null,
|
|
2102
2102
|
endTime: Array.isArray(y.value) ? y.value[1] : null
|
|
2103
2103
|
}, I.value = "start");
|
|
2104
2104
|
});
|
|
2105
2105
|
const o = (f) => {
|
|
2106
|
-
f.key === "Escape" &&
|
|
2106
|
+
f.key === "Escape" && Y();
|
|
2107
2107
|
};
|
|
2108
|
-
return
|
|
2108
|
+
return ge(() => {
|
|
2109
2109
|
document.addEventListener("click", C), document.addEventListener("keydown", o);
|
|
2110
|
-
}),
|
|
2110
|
+
}), De(() => {
|
|
2111
2111
|
document.removeEventListener("click", C), document.removeEventListener("keydown", o);
|
|
2112
2112
|
}), k({
|
|
2113
2113
|
focus: () => {
|
|
@@ -2137,7 +2137,7 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2137
2137
|
readonly: !0,
|
|
2138
2138
|
value: L.value,
|
|
2139
2139
|
class: u(n(l).e("input-inner"))
|
|
2140
|
-
}, null, 10,
|
|
2140
|
+
}, null, 10, Fl),
|
|
2141
2141
|
r("span", {
|
|
2142
2142
|
class: u(n(l).e("suffix"))
|
|
2143
2143
|
}, [
|
|
@@ -2172,8 +2172,8 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2172
2172
|
readonly: !0,
|
|
2173
2173
|
value: H.value,
|
|
2174
2174
|
class: u([n(l).e("input-inner"), n(l).is("active", I.value === "start")]),
|
|
2175
|
-
onClick: g[0] || (g[0] = ue((X) =>
|
|
2176
|
-
}, null, 10,
|
|
2175
|
+
onClick: g[0] || (g[0] = ue((X) => A("start"), ["stop"]))
|
|
2176
|
+
}, null, 10, Il),
|
|
2177
2177
|
r("span", {
|
|
2178
2178
|
class: u(n(l).e("separator"))
|
|
2179
2179
|
}, "至", 2),
|
|
@@ -2182,14 +2182,14 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2182
2182
|
placeholder: s.endPlaceholder,
|
|
2183
2183
|
disabled: s.disabled,
|
|
2184
2184
|
readonly: !0,
|
|
2185
|
-
value:
|
|
2185
|
+
value: O.value,
|
|
2186
2186
|
class: u([n(l).e("input-inner"), n(l).is("active", I.value === "end")]),
|
|
2187
|
-
onClick: g[1] || (g[1] = ue((X) =>
|
|
2188
|
-
}, null, 10,
|
|
2187
|
+
onClick: g[1] || (g[1] = ue((X) => A("end"), ["stop"]))
|
|
2188
|
+
}, null, 10, Pl),
|
|
2189
2189
|
r("span", {
|
|
2190
2190
|
class: u(n(l).e("suffix"))
|
|
2191
2191
|
}, [
|
|
2192
|
-
s.clearable && (H.value ||
|
|
2192
|
+
s.clearable && (H.value || O.value) && !s.disabled ? (i(), d("span", {
|
|
2193
2193
|
key: 0,
|
|
2194
2194
|
class: u(n(l).e("clear")),
|
|
2195
2195
|
onClick: ue(w, ["stop"])
|
|
@@ -2214,15 +2214,15 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2214
2214
|
default: He(() => [
|
|
2215
2215
|
oe(r("div", {
|
|
2216
2216
|
ref_key: "popperRef",
|
|
2217
|
-
ref:
|
|
2217
|
+
ref: S,
|
|
2218
2218
|
class: u(n(l).e("popper")),
|
|
2219
2219
|
style: te({ zIndex: b.value, ...$.value })
|
|
2220
2220
|
}, [
|
|
2221
2221
|
s.type === "timerange" ? (i(), d("div", {
|
|
2222
2222
|
key: 0,
|
|
2223
2223
|
class: u(n(l).e("popper-header"))
|
|
2224
|
-
},
|
|
2225
|
-
Q(
|
|
2224
|
+
}, N(I.value === "start" ? "请选择开始时间" : "请选择结束时间"), 3)) : U("", !0),
|
|
2225
|
+
Q(Al, {
|
|
2226
2226
|
"model-value": M.value,
|
|
2227
2227
|
format: s.format,
|
|
2228
2228
|
"disabled-hours": s.disabledHours,
|
|
@@ -2231,11 +2231,11 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2231
2231
|
"hour-step": s.hourStep,
|
|
2232
2232
|
"minute-step": s.minuteStep,
|
|
2233
2233
|
"second-step": s.secondStep,
|
|
2234
|
-
onConfirm:
|
|
2234
|
+
onConfirm: G,
|
|
2235
2235
|
onCancel: p
|
|
2236
2236
|
}, null, 8, ["model-value", "format", "disabled-hours", "disabled-minutes", "disabled-seconds", "hour-step", "minute-step", "second-step"])
|
|
2237
2237
|
], 6), [
|
|
2238
|
-
[
|
|
2238
|
+
[be, m.value]
|
|
2239
2239
|
])
|
|
2240
2240
|
]),
|
|
2241
2241
|
_: 1
|
|
@@ -2244,15 +2244,15 @@ const Tl = ["onClick"], Hl = ["onClick"], Ll = ["onClick"], Rl = /* @__PURE__ */
|
|
|
2244
2244
|
], 2));
|
|
2245
2245
|
}
|
|
2246
2246
|
});
|
|
2247
|
-
function
|
|
2247
|
+
function El(s, k, a) {
|
|
2248
2248
|
return a ? a(k, s) : s.toLowerCase().includes(k.toLowerCase());
|
|
2249
2249
|
}
|
|
2250
|
-
function
|
|
2250
|
+
function We(s, k, a = "value", e = "children") {
|
|
2251
2251
|
for (const t of s) {
|
|
2252
2252
|
if (t[a] === k)
|
|
2253
2253
|
return t;
|
|
2254
2254
|
if (t[e] && t[e].length > 0) {
|
|
2255
|
-
const l =
|
|
2255
|
+
const l = We(t[e], k, a, e);
|
|
2256
2256
|
if (l) return l;
|
|
2257
2257
|
}
|
|
2258
2258
|
}
|
|
@@ -2274,7 +2274,7 @@ function Fe(s, k, a = "value", e = "children") {
|
|
|
2274
2274
|
}
|
|
2275
2275
|
return l(s), t;
|
|
2276
2276
|
}
|
|
2277
|
-
function
|
|
2277
|
+
function Ol(s, k = "children") {
|
|
2278
2278
|
const a = [];
|
|
2279
2279
|
function e(t, l = 0, c = null) {
|
|
2280
2280
|
for (const m of t)
|
|
@@ -2282,7 +2282,7 @@ function Pl(s, k = "children") {
|
|
|
2282
2282
|
}
|
|
2283
2283
|
return e(s), a;
|
|
2284
2284
|
}
|
|
2285
|
-
const
|
|
2285
|
+
const Yl = ["onClick"], Nl = ["placeholder", "disabled", "readonly", "value"], Ul = ["onClick"], Xl = ["onClick"], rt = /* @__PURE__ */ le({
|
|
2286
2286
|
name: "XSelect",
|
|
2287
2287
|
__name: "index",
|
|
2288
2288
|
props: {
|
|
@@ -2311,137 +2311,164 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2311
2311
|
setup(s, { emit: k }) {
|
|
2312
2312
|
const a = le({
|
|
2313
2313
|
name: "XSelectPopperContent",
|
|
2314
|
-
setup(E, { slots:
|
|
2315
|
-
const Z =
|
|
2316
|
-
return Z &&
|
|
2317
|
-
var
|
|
2318
|
-
return (
|
|
2314
|
+
setup(E, { slots: j }) {
|
|
2315
|
+
const Z = xe("select");
|
|
2316
|
+
return Z && $e("select", Z), () => {
|
|
2317
|
+
var R;
|
|
2318
|
+
return (R = j.default) == null ? void 0 : R.call(j);
|
|
2319
2319
|
};
|
|
2320
2320
|
}
|
|
2321
|
-
}), e = s, t = k, l = ae("select"), c = Le(), m = () =>
|
|
2322
|
-
|
|
2323
|
-
|
|
2321
|
+
}), e = s, t = k, l = ae("select"), c = Le(), m = () => {
|
|
2322
|
+
const E = Ee();
|
|
2323
|
+
let j = E.current;
|
|
2324
|
+
document.querySelectorAll(
|
|
2325
|
+
".x-drawer__overlay, .x-modal__overlay, .x-select__popper, .x-dropdown__popper, .x-popover__popper"
|
|
2326
|
+
).forEach((P) => {
|
|
2327
|
+
const W = parseInt(getComputedStyle(P).zIndex, 10);
|
|
2328
|
+
!isNaN(W) && W > j && (j = W);
|
|
2329
|
+
});
|
|
2330
|
+
const R = j + 1;
|
|
2331
|
+
return E.set(R), R;
|
|
2332
|
+
}, b = B(), T = B(), S = B(), D = B(!1), $ = B(2e3), z = B(""), I = B(-1), y = B({ top: "0px", left: "0px" }), L = B([]), H = (E) => {
|
|
2333
|
+
L.value.find((j) => j.value === E.value) || L.value.push(E);
|
|
2334
|
+
}, O = V(() => e.type === "multiple" || e.mode === "multiple"), M = V(() => e.type === "cascader"), h = B([]), v = V(() => e.options && e.options.length > 0 ? e.options : L.value), x = (E) => {
|
|
2324
2335
|
t("update:modelValue", E), t("update:value", E), t("change", E);
|
|
2325
|
-
},
|
|
2336
|
+
}, A = V(() => {
|
|
2326
2337
|
const E = e.modelValue ?? e.value;
|
|
2327
|
-
return
|
|
2338
|
+
return O.value ? Array.isArray(E) ? E : [] : M.value ? Array.isArray(E) ? E : E != null && E !== "" ? [E] : [] : E != null && E !== "" ? [E] : [];
|
|
2328
2339
|
}), F = V(() => {
|
|
2329
2340
|
const E = v.value;
|
|
2330
|
-
return M.value ?
|
|
2331
|
-
}),
|
|
2332
|
-
const
|
|
2333
|
-
return
|
|
2334
|
-
})),
|
|
2341
|
+
return M.value ? Ol(E, e.childrenKey) : E.map((j) => ({ ...j, level: 0 }));
|
|
2342
|
+
}), Y = V(() => !e.filterable || !z.value ? F.value : F.value.filter((E) => {
|
|
2343
|
+
const j = E[e.labelKey] || "";
|
|
2344
|
+
return El(j, z.value, e.filterMethod);
|
|
2345
|
+
})), G = V(() => {
|
|
2335
2346
|
const E = [];
|
|
2336
|
-
for (const
|
|
2337
|
-
const Z =
|
|
2347
|
+
for (const j of A.value) {
|
|
2348
|
+
const Z = We(v.value, j, e.valueKey, e.childrenKey);
|
|
2338
2349
|
Z && E.push(Z);
|
|
2339
2350
|
}
|
|
2340
2351
|
return E;
|
|
2341
2352
|
}), p = V(() => {
|
|
2342
|
-
if (
|
|
2353
|
+
if (O.value)
|
|
2343
2354
|
return "";
|
|
2344
2355
|
if (M.value)
|
|
2345
|
-
return Fe(v.value,
|
|
2346
|
-
const E =
|
|
2356
|
+
return Fe(v.value, A.value[A.value.length - 1], e.valueKey, e.childrenKey).map((Z) => Z[e.labelKey]).join(e.separator);
|
|
2357
|
+
const E = G.value[0];
|
|
2347
2358
|
return E ? E[e.labelKey] : "";
|
|
2348
|
-
}), w = V(() =>
|
|
2359
|
+
}), w = V(() => O.value ? G.value : []), C = V(() => e.collapseTags ? w.value.slice(0, e.maxCollapseTags) : w.value), o = V(() => e.collapseTags ? Math.max(0, w.value.length - e.maxCollapseTags) : 0), f = V(() => [
|
|
2349
2360
|
l.b(),
|
|
2350
2361
|
l.m(e.size),
|
|
2351
2362
|
l.is("disabled", e.disabled),
|
|
2352
|
-
l.is("multiple",
|
|
2363
|
+
l.is("multiple", O.value),
|
|
2353
2364
|
l.is("cascader", M.value),
|
|
2354
2365
|
l.is("filterable", e.filterable),
|
|
2355
2366
|
l.is("focus", D.value)
|
|
2356
2367
|
]), g = () => {
|
|
2357
|
-
if (!b.value || !
|
|
2358
|
-
const E = b.value.getBoundingClientRect(),
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2368
|
+
if (!b.value || !S.value || !D.value) return;
|
|
2369
|
+
const E = b.value.getBoundingClientRect(), j = S.value;
|
|
2370
|
+
j.offsetHeight;
|
|
2371
|
+
const Z = j.getBoundingClientRect();
|
|
2372
|
+
let R = E.bottom + 4, P = E.left;
|
|
2373
|
+
P + Z.width > window.innerWidth && (P = window.innerWidth - Z.width - 8);
|
|
2374
|
+
let W = 274;
|
|
2375
|
+
if (R + Z.height > window.innerHeight) {
|
|
2376
|
+
const he = E.top - Z.height - 4;
|
|
2377
|
+
if (he >= 8)
|
|
2378
|
+
R = he;
|
|
2379
|
+
else {
|
|
2380
|
+
const Oe = window.innerHeight - E.bottom - 8, Ye = E.top - 8;
|
|
2381
|
+
Ye > Oe ? (R = 8, W = Math.max(120, Ye)) : W = Math.max(120, Oe);
|
|
2382
|
+
}
|
|
2383
|
+
}
|
|
2384
|
+
y.value = {
|
|
2385
|
+
top: `${R}px`,
|
|
2386
|
+
left: `${P}px`,
|
|
2387
|
+
maxHeight: `${W}px`
|
|
2363
2388
|
};
|
|
2364
2389
|
}, X = () => {
|
|
2365
|
-
e.disabled || (D.value = !0, $.value = m(),
|
|
2366
|
-
|
|
2390
|
+
e.disabled || (D.value = !0, $.value = m(), z.value = "", Se(() => {
|
|
2391
|
+
requestAnimationFrame(() => {
|
|
2392
|
+
g();
|
|
2393
|
+
});
|
|
2367
2394
|
}), t("visible-change", !0), t("focus", {}));
|
|
2368
2395
|
}, ne = () => {
|
|
2369
|
-
D.value = !1,
|
|
2396
|
+
D.value = !1, z.value = "", h.value = [], t("visible-change", !1), t("blur", {});
|
|
2370
2397
|
}, K = (E) => {
|
|
2371
2398
|
if (!E.disabled)
|
|
2372
|
-
if (
|
|
2373
|
-
const
|
|
2374
|
-
if (
|
|
2375
|
-
|
|
2399
|
+
if (O.value) {
|
|
2400
|
+
const j = [...A.value], Z = E[e.valueKey], R = j.indexOf(Z);
|
|
2401
|
+
if (R > -1)
|
|
2402
|
+
j.splice(R, 1), t("remove-tag", Z);
|
|
2376
2403
|
else {
|
|
2377
|
-
if (e.multipleLimit > 0 &&
|
|
2404
|
+
if (e.multipleLimit > 0 && j.length >= e.multipleLimit)
|
|
2378
2405
|
return;
|
|
2379
|
-
|
|
2406
|
+
j.push(Z);
|
|
2380
2407
|
}
|
|
2381
|
-
x(
|
|
2408
|
+
x(j);
|
|
2382
2409
|
} else if (M.value)
|
|
2383
2410
|
if (E.children && E.children.length > 0) {
|
|
2384
|
-
const
|
|
2385
|
-
h.value =
|
|
2411
|
+
const j = Fe(v.value, E[e.valueKey], e.valueKey, e.childrenKey);
|
|
2412
|
+
h.value = j;
|
|
2386
2413
|
} else {
|
|
2387
|
-
const Z = Fe(v.value, E[e.valueKey], e.valueKey, e.childrenKey).map((
|
|
2414
|
+
const Z = Fe(v.value, E[e.valueKey], e.valueKey, e.childrenKey).map((R) => R[e.valueKey]);
|
|
2388
2415
|
x(Z), ne();
|
|
2389
2416
|
}
|
|
2390
2417
|
else
|
|
2391
2418
|
x(E[e.valueKey]), ne();
|
|
2392
2419
|
}, re = (E) => {
|
|
2393
|
-
const
|
|
2394
|
-
x(
|
|
2420
|
+
const j = A.value.filter((Z) => Z !== E[e.valueKey]);
|
|
2421
|
+
x(j), t("remove-tag", E[e.valueKey]);
|
|
2395
2422
|
}, q = () => {
|
|
2396
|
-
const E =
|
|
2423
|
+
const E = O.value ? [] : "";
|
|
2397
2424
|
x(E), t("clear");
|
|
2398
2425
|
}, me = (E) => {
|
|
2399
|
-
|
|
2400
|
-
},
|
|
2426
|
+
z.value = E.target.value;
|
|
2427
|
+
}, ye = (E) => {
|
|
2401
2428
|
if (!b.value) return;
|
|
2402
|
-
const
|
|
2403
|
-
b.value.contains(
|
|
2429
|
+
const j = E.target, Z = S.value && S.value.contains(j);
|
|
2430
|
+
b.value.contains(j) || Z || ne();
|
|
2404
2431
|
}, ze = (E) => {
|
|
2405
2432
|
if (E.key === "Escape")
|
|
2406
2433
|
ne();
|
|
2407
2434
|
else if (E.key === "Enter" && D.value) {
|
|
2408
|
-
const
|
|
2409
|
-
|
|
2410
|
-
} else E.key === "ArrowDown" && D.value ? (E.preventDefault(), I.value = Math.min(I.value + 1,
|
|
2411
|
-
},
|
|
2435
|
+
const j = Y.value[I.value];
|
|
2436
|
+
j && K(j);
|
|
2437
|
+
} else E.key === "ArrowDown" && D.value ? (E.preventDefault(), I.value = Math.min(I.value + 1, Y.value.length - 1)) : E.key === "ArrowUp" && D.value && (E.preventDefault(), I.value = Math.max(I.value - 1, 0));
|
|
2438
|
+
}, we = (E) => A.value.includes(E[e.valueKey]), Te = (E, j) => [
|
|
2412
2439
|
l.e("option"),
|
|
2413
|
-
l.is("selected",
|
|
2440
|
+
l.is("selected", we(E)),
|
|
2414
2441
|
l.is("disabled", E.disabled === !0),
|
|
2415
|
-
l.is("hover", I.value ===
|
|
2442
|
+
l.is("hover", I.value === j),
|
|
2416
2443
|
l.is("group", !!(E.children && E.children.length > 0))
|
|
2417
2444
|
], Re = V(() => {
|
|
2418
2445
|
if (!M.value) return [];
|
|
2419
2446
|
const E = [v.value];
|
|
2420
|
-
for (const
|
|
2421
|
-
|
|
2447
|
+
for (const j of h.value)
|
|
2448
|
+
j.children && j.children.length > 0 && E.push(j.children);
|
|
2422
2449
|
return E;
|
|
2423
2450
|
});
|
|
2424
|
-
return
|
|
2425
|
-
document.addEventListener("mousedown",
|
|
2426
|
-
}),
|
|
2427
|
-
document.removeEventListener("mousedown",
|
|
2451
|
+
return ge(() => {
|
|
2452
|
+
document.addEventListener("mousedown", ye), document.addEventListener("keydown", ze);
|
|
2453
|
+
}), De(() => {
|
|
2454
|
+
document.removeEventListener("mousedown", ye), document.removeEventListener("keydown", ze), document.removeEventListener("scroll", g, !0);
|
|
2428
2455
|
}), ie(D, (E) => {
|
|
2429
2456
|
E ? document.addEventListener("scroll", g, !0) : document.removeEventListener("scroll", g, !0);
|
|
2430
|
-
}),
|
|
2431
|
-
selectedValues:
|
|
2457
|
+
}), $e("select", {
|
|
2458
|
+
selectedValues: A,
|
|
2432
2459
|
handleSelect: K,
|
|
2433
|
-
isSelected:
|
|
2460
|
+
isSelected: we,
|
|
2434
2461
|
registerOption: H
|
|
2435
|
-
}), (E,
|
|
2462
|
+
}), (E, j) => (i(), d("div", {
|
|
2436
2463
|
ref_key: "selectRef",
|
|
2437
2464
|
ref: b,
|
|
2438
2465
|
class: u(f.value)
|
|
2439
2466
|
}, [
|
|
2440
2467
|
r("div", {
|
|
2441
2468
|
class: u(n(l).e("wrapper")),
|
|
2442
|
-
onClick:
|
|
2469
|
+
onClick: j[0] || (j[0] = (Z) => D.value ? ne() : X())
|
|
2443
2470
|
}, [
|
|
2444
|
-
|
|
2471
|
+
O.value && w.value.length > 0 ? (i(), d("div", {
|
|
2445
2472
|
key: 0,
|
|
2446
2473
|
class: u(n(l).e("tags"))
|
|
2447
2474
|
}, [
|
|
@@ -2451,31 +2478,31 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2451
2478
|
}, [
|
|
2452
2479
|
r("span", {
|
|
2453
2480
|
class: u(n(l).e("tag-text"))
|
|
2454
|
-
},
|
|
2481
|
+
}, N(Z[s.labelKey]), 3),
|
|
2455
2482
|
r("span", {
|
|
2456
2483
|
class: u(n(l).e("tag-close")),
|
|
2457
|
-
onClick: ue((
|
|
2458
|
-
}, "×", 10,
|
|
2484
|
+
onClick: ue((R) => re(Z), ["stop"])
|
|
2485
|
+
}, "×", 10, Yl)
|
|
2459
2486
|
], 2))), 128)),
|
|
2460
2487
|
o.value > 0 ? (i(), d("span", {
|
|
2461
2488
|
key: 0,
|
|
2462
2489
|
class: u(n(l).e("tag-count"))
|
|
2463
|
-
}, " +" +
|
|
2464
|
-
], 2)) :
|
|
2490
|
+
}, " +" + N(o.value), 3)) : U("", !0)
|
|
2491
|
+
], 2)) : U("", !0),
|
|
2465
2492
|
r("input", {
|
|
2466
2493
|
ref_key: "inputRef",
|
|
2467
2494
|
ref: T,
|
|
2468
2495
|
class: u(n(l).e("input")),
|
|
2469
|
-
placeholder:
|
|
2496
|
+
placeholder: O.value && w.value.length > 0 ? "" : s.placeholder,
|
|
2470
2497
|
disabled: s.disabled,
|
|
2471
2498
|
readonly: !s.filterable || !D.value,
|
|
2472
|
-
value: s.filterable && D.value ?
|
|
2499
|
+
value: s.filterable && D.value ? z.value : p.value,
|
|
2473
2500
|
onInput: me
|
|
2474
|
-
}, null, 42,
|
|
2501
|
+
}, null, 42, Nl),
|
|
2475
2502
|
r("span", {
|
|
2476
2503
|
class: u(n(l).e("suffix"))
|
|
2477
2504
|
}, [
|
|
2478
|
-
s.clearable &&
|
|
2505
|
+
s.clearable && A.value.length > 0 && !s.disabled ? (i(), d("span", {
|
|
2479
2506
|
key: 0,
|
|
2480
2507
|
class: u(n(l).e("clear")),
|
|
2481
2508
|
onClick: ue(q, ["stop"])
|
|
@@ -2495,7 +2522,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2495
2522
|
default: He(() => [
|
|
2496
2523
|
oe(r("div", {
|
|
2497
2524
|
ref_key: "popperRef",
|
|
2498
|
-
ref:
|
|
2525
|
+
ref: S,
|
|
2499
2526
|
class: u([n(l).e("popper"), n(l).is("cascader", M.value)]),
|
|
2500
2527
|
style: te({ zIndex: $.value, ...y.value })
|
|
2501
2528
|
}, [
|
|
@@ -2503,29 +2530,29 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2503
2530
|
key: 0,
|
|
2504
2531
|
class: u(n(l).e("cascader-panels"))
|
|
2505
2532
|
}, [
|
|
2506
|
-
(i(!0), d(J, null, _(Re.value, (Z,
|
|
2507
|
-
key:
|
|
2533
|
+
(i(!0), d(J, null, _(Re.value, (Z, R) => (i(), d("div", {
|
|
2534
|
+
key: R,
|
|
2508
2535
|
class: u(n(l).e("cascader-panel"))
|
|
2509
2536
|
}, [
|
|
2510
|
-
(i(!0), d(J, null, _(Z, (
|
|
2511
|
-
key:
|
|
2512
|
-
class: u(
|
|
2513
|
-
onClick: ue((
|
|
2537
|
+
(i(!0), d(J, null, _(Z, (P, W) => (i(), d("div", {
|
|
2538
|
+
key: P[s.valueKey],
|
|
2539
|
+
class: u(Te(P, W)),
|
|
2540
|
+
onClick: ue((he) => K(P), ["stop", "prevent"])
|
|
2514
2541
|
}, [
|
|
2515
2542
|
r("span", {
|
|
2516
2543
|
class: u(n(l).e("option-label"))
|
|
2517
|
-
},
|
|
2518
|
-
|
|
2544
|
+
}, N(P[s.labelKey]), 3),
|
|
2545
|
+
P.children && P.children.length > 0 ? (i(), d("span", {
|
|
2519
2546
|
key: 0,
|
|
2520
2547
|
class: u(n(l).e("option-arrow"))
|
|
2521
|
-
}, "›", 2)) :
|
|
2522
|
-
], 10,
|
|
2548
|
+
}, "›", 2)) : U("", !0)
|
|
2549
|
+
], 10, Ul))), 128))
|
|
2523
2550
|
], 2))), 128))
|
|
2524
2551
|
], 2)) : (i(), d(J, { key: 1 }, [
|
|
2525
|
-
|
|
2552
|
+
Y.value.length === 0 && !n(c).default ? (i(), d("div", {
|
|
2526
2553
|
key: 0,
|
|
2527
2554
|
class: u(n(l).e("empty"))
|
|
2528
|
-
},
|
|
2555
|
+
}, N(z.value ? s.noMatchText : s.noDataText), 3)) : (i(), d(J, { key: 1 }, [
|
|
2529
2556
|
E.$slots.default ? (i(), d("div", {
|
|
2530
2557
|
key: 0,
|
|
2531
2558
|
class: u(n(l).e("options"))
|
|
@@ -2540,24 +2567,24 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2540
2567
|
key: 1,
|
|
2541
2568
|
class: u(n(l).e("options"))
|
|
2542
2569
|
}, [
|
|
2543
|
-
(i(!0), d(J, null, _(
|
|
2570
|
+
(i(!0), d(J, null, _(Y.value, (Z, R) => (i(), d("div", {
|
|
2544
2571
|
key: Z[s.valueKey],
|
|
2545
|
-
class: u(
|
|
2546
|
-
onClick: ue((
|
|
2572
|
+
class: u(Te(Z, R)),
|
|
2573
|
+
onClick: ue((P) => K(Z), ["stop", "prevent"])
|
|
2547
2574
|
}, [
|
|
2548
2575
|
r("span", {
|
|
2549
2576
|
class: u(n(l).e("option-label"))
|
|
2550
|
-
},
|
|
2551
|
-
|
|
2577
|
+
}, N(Z[s.labelKey]), 3),
|
|
2578
|
+
we(Z) ? (i(), d("span", {
|
|
2552
2579
|
key: 0,
|
|
2553
2580
|
class: u(n(l).e("option-check"))
|
|
2554
|
-
}, "✓", 2)) :
|
|
2555
|
-
], 10,
|
|
2581
|
+
}, "✓", 2)) : U("", !0)
|
|
2582
|
+
], 10, Xl))), 128))
|
|
2556
2583
|
], 2))
|
|
2557
2584
|
], 64))
|
|
2558
2585
|
], 64))
|
|
2559
2586
|
], 6), [
|
|
2560
|
-
[
|
|
2587
|
+
[be, D.value]
|
|
2561
2588
|
])
|
|
2562
2589
|
]),
|
|
2563
2590
|
_: 3
|
|
@@ -2565,7 +2592,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2565
2592
|
]))
|
|
2566
2593
|
], 2));
|
|
2567
2594
|
}
|
|
2568
|
-
}),
|
|
2595
|
+
}), dt = /* @__PURE__ */ le({
|
|
2569
2596
|
name: "XSelectOption",
|
|
2570
2597
|
__name: "Option",
|
|
2571
2598
|
props: {
|
|
@@ -2574,8 +2601,8 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2574
2601
|
disabled: { type: Boolean, default: !1 }
|
|
2575
2602
|
},
|
|
2576
2603
|
setup(s) {
|
|
2577
|
-
const k = s, a = ae("select"), e =
|
|
2578
|
-
|
|
2604
|
+
const k = s, a = ae("select"), e = xe("select");
|
|
2605
|
+
ge(() => {
|
|
2579
2606
|
e && e.registerOption && e.registerOption({
|
|
2580
2607
|
value: k.value,
|
|
2581
2608
|
label: k.label,
|
|
@@ -2599,14 +2626,14 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2599
2626
|
}, [
|
|
2600
2627
|
r("span", {
|
|
2601
2628
|
class: u(n(a).e("option-label"))
|
|
2602
|
-
},
|
|
2629
|
+
}, N(s.label), 3),
|
|
2603
2630
|
t.value ? (i(), d("span", {
|
|
2604
2631
|
key: 0,
|
|
2605
2632
|
class: u(n(a).e("option-check"))
|
|
2606
|
-
}, "✓", 2)) :
|
|
2633
|
+
}, "✓", 2)) : U("", !0)
|
|
2607
2634
|
], 2));
|
|
2608
2635
|
}
|
|
2609
|
-
}),
|
|
2636
|
+
}), Kl = ["checked", "indeterminate"], Wl = ["placeholder"], ql = ["onClick"], jl = ["checked", "disabled", "onChange"], Gl = ["disabled"], Jl = ["disabled"], Zl = ["checked", "indeterminate"], Ql = ["placeholder"], _l = ["onClick"], ea = ["checked", "disabled", "onChange"], ct = /* @__PURE__ */ le({
|
|
2610
2637
|
name: "XTransfer",
|
|
2611
2638
|
__name: "index",
|
|
2612
2639
|
props: {
|
|
@@ -2633,41 +2660,41 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2633
2660
|
}), b = V(() => {
|
|
2634
2661
|
var o;
|
|
2635
2662
|
return ((o = e.props) == null ? void 0 : o.disabled) || "disabled";
|
|
2636
|
-
}), T =
|
|
2637
|
-
const f =
|
|
2663
|
+
}), T = B(""), S = B(""), D = B([]), $ = B([]), z = (o) => o[c.value], I = (o) => o[m.value], y = (o) => o[b.value] || !1, L = V(() => e.data.filter((o) => {
|
|
2664
|
+
const f = z(o);
|
|
2638
2665
|
return e.modelValue.includes(f) ? !1 : e.filterable && T.value ? e.filterMethod ? e.filterMethod(T.value, o) : I(o).toLowerCase().includes(T.value.toLowerCase()) : !0;
|
|
2639
2666
|
})), H = V(() => {
|
|
2640
2667
|
const o = e.modelValue;
|
|
2641
2668
|
let f = e.data.filter((g) => {
|
|
2642
|
-
const X =
|
|
2669
|
+
const X = z(g);
|
|
2643
2670
|
return o.includes(X);
|
|
2644
2671
|
});
|
|
2645
|
-
return e.filterable &&
|
|
2646
|
-
}),
|
|
2672
|
+
return e.filterable && S.value && (f = f.filter((g) => e.filterMethod ? e.filterMethod(S.value, g) : I(g).toLowerCase().includes(S.value.toLowerCase()))), e.targetOrder === "push" ? f.sort((g, X) => o.indexOf(z(g)) - o.indexOf(z(X))) : e.targetOrder === "unshift" ? f.sort((g, X) => o.indexOf(z(X)) - o.indexOf(z(g))) : f;
|
|
2673
|
+
}), O = V(() => L.value.filter((o) => D.value.includes(z(o))).every((o) => y(o))), M = V(() => H.value.filter((o) => $.value.includes(z(o))).every((o) => y(o))), h = V(() => D.value.length === 0 || O.value), v = V(() => $.value.length === 0 || M.value), x = () => {
|
|
2647
2674
|
const o = D.value.filter((g) => {
|
|
2648
|
-
const X = e.data.find((ne) =>
|
|
2675
|
+
const X = e.data.find((ne) => z(ne) === g);
|
|
2649
2676
|
return X && !y(X);
|
|
2650
2677
|
});
|
|
2651
2678
|
let f;
|
|
2652
2679
|
e.targetOrder === "unshift" ? f = [...o, ...e.modelValue] : f = [...e.modelValue, ...o], t("update:modelValue", f), t("change", f, "right", o), D.value = [];
|
|
2653
|
-
},
|
|
2680
|
+
}, A = () => {
|
|
2654
2681
|
const o = $.value.filter((g) => {
|
|
2655
|
-
const X = e.data.find((ne) =>
|
|
2682
|
+
const X = e.data.find((ne) => z(ne) === g);
|
|
2656
2683
|
return X && !y(X);
|
|
2657
2684
|
}), f = e.modelValue.filter((g) => !o.includes(g));
|
|
2658
2685
|
t("update:modelValue", f), t("change", f, "left", o), $.value = [];
|
|
2659
2686
|
}, F = (o) => {
|
|
2660
2687
|
const f = D.value.indexOf(o);
|
|
2661
2688
|
f > -1 ? D.value.splice(f, 1) : D.value.push(o), t("left-check-change", [...D.value]);
|
|
2662
|
-
},
|
|
2689
|
+
}, Y = (o) => {
|
|
2663
2690
|
const f = $.value.indexOf(o);
|
|
2664
2691
|
f > -1 ? $.value.splice(f, 1) : $.value.push(o), t("right-check-change", [...$.value]);
|
|
2665
|
-
},
|
|
2666
|
-
D.value.length === L.value.filter((o) => !y(o)).length ? D.value = [] : D.value = L.value.filter((o) => !y(o)).map((o) =>
|
|
2692
|
+
}, G = () => {
|
|
2693
|
+
D.value.length === L.value.filter((o) => !y(o)).length ? D.value = [] : D.value = L.value.filter((o) => !y(o)).map((o) => z(o)), t("left-check-change", [...D.value]);
|
|
2667
2694
|
}, p = () => {
|
|
2668
|
-
$.value.length === H.value.filter((o) => !y(o)).length ? $.value = [] : $.value = H.value.filter((o) => !y(o)).map((o) =>
|
|
2695
|
+
$.value.length === H.value.filter((o) => !y(o)).length ? $.value = [] : $.value = H.value.filter((o) => !y(o)).map((o) => z(o)), t("right-check-change", [...$.value]);
|
|
2669
2696
|
}, w = (o) => {
|
|
2670
|
-
o === "left" ? T.value = "" :
|
|
2697
|
+
o === "left" ? T.value = "" : S.value = "";
|
|
2671
2698
|
}, C = V(() => [l.b()]);
|
|
2672
2699
|
return k({
|
|
2673
2700
|
clearQuery: w
|
|
@@ -2687,13 +2714,13 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2687
2714
|
type: "checkbox",
|
|
2688
2715
|
checked: D.value.length > 0 && D.value.length === L.value.filter((g) => !y(g)).length,
|
|
2689
2716
|
indeterminate: D.value.length > 0 && D.value.length < L.value.filter((g) => !y(g)).length,
|
|
2690
|
-
onChange:
|
|
2691
|
-
}, null, 40,
|
|
2692
|
-
r("span", null,
|
|
2717
|
+
onChange: G
|
|
2718
|
+
}, null, 40, Kl),
|
|
2719
|
+
r("span", null, N(s.titles[0]), 1)
|
|
2693
2720
|
], 2),
|
|
2694
2721
|
r("span", {
|
|
2695
2722
|
class: u(n(l).e("count"))
|
|
2696
|
-
},
|
|
2723
|
+
}, N(D.value.length) + " / " + N(L.value.length), 3)
|
|
2697
2724
|
], 2),
|
|
2698
2725
|
s.filterable ? (i(), d("div", {
|
|
2699
2726
|
key: 0,
|
|
@@ -2703,41 +2730,41 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2703
2730
|
"onUpdate:modelValue": f[0] || (f[0] = (g) => T.value = g),
|
|
2704
2731
|
placeholder: s.filterPlaceholder,
|
|
2705
2732
|
class: u(n(l).e("filter-input"))
|
|
2706
|
-
}, null, 10,
|
|
2707
|
-
[
|
|
2733
|
+
}, null, 10, Wl), [
|
|
2734
|
+
[Ve, T.value]
|
|
2708
2735
|
]),
|
|
2709
2736
|
T.value ? (i(), d("span", {
|
|
2710
2737
|
key: 0,
|
|
2711
2738
|
class: u(n(l).e("filter-clear")),
|
|
2712
2739
|
onClick: f[1] || (f[1] = (g) => w("left"))
|
|
2713
|
-
}, "×", 2)) :
|
|
2714
|
-
], 2)) :
|
|
2740
|
+
}, "×", 2)) : U("", !0)
|
|
2741
|
+
], 2)) : U("", !0),
|
|
2715
2742
|
r("div", {
|
|
2716
2743
|
class: u(n(l).e("body"))
|
|
2717
2744
|
}, [
|
|
2718
2745
|
(i(!0), d(J, null, _(L.value, (g) => (i(), d("div", {
|
|
2719
|
-
key:
|
|
2746
|
+
key: z(g),
|
|
2720
2747
|
class: u([
|
|
2721
2748
|
n(l).e("item"),
|
|
2722
2749
|
n(l).is("disabled", y(g)),
|
|
2723
|
-
n(l).is("checked", D.value.includes(
|
|
2750
|
+
n(l).is("checked", D.value.includes(z(g)))
|
|
2724
2751
|
]),
|
|
2725
|
-
onClick: (X) => !y(g) && F(
|
|
2752
|
+
onClick: (X) => !y(g) && F(z(g))
|
|
2726
2753
|
}, [
|
|
2727
2754
|
r("label", {
|
|
2728
2755
|
class: u(n(l).e("checkbox"))
|
|
2729
2756
|
}, [
|
|
2730
2757
|
r("input", {
|
|
2731
2758
|
type: "checkbox",
|
|
2732
|
-
checked: D.value.includes(
|
|
2759
|
+
checked: D.value.includes(z(g)),
|
|
2733
2760
|
disabled: y(g),
|
|
2734
2761
|
onClick: f[2] || (f[2] = ue(() => {
|
|
2735
2762
|
}, ["stop"])),
|
|
2736
|
-
onChange: (X) => F(
|
|
2737
|
-
}, null, 40,
|
|
2738
|
-
r("span", null,
|
|
2763
|
+
onChange: (X) => F(z(g))
|
|
2764
|
+
}, null, 40, jl),
|
|
2765
|
+
r("span", null, N(I(g)), 1)
|
|
2739
2766
|
], 2)
|
|
2740
|
-
], 10,
|
|
2767
|
+
], 10, ql))), 128)),
|
|
2741
2768
|
L.value.length === 0 ? (i(), d("div", {
|
|
2742
2769
|
key: 0,
|
|
2743
2770
|
class: u(n(l).e("empty"))
|
|
@@ -2745,7 +2772,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2745
2772
|
se(o.$slots, "left-empty", {}, () => [
|
|
2746
2773
|
f[6] || (f[6] = de("暂无数据", -1))
|
|
2747
2774
|
])
|
|
2748
|
-
], 2)) :
|
|
2775
|
+
], 2)) : U("", !0)
|
|
2749
2776
|
], 2)
|
|
2750
2777
|
], 2),
|
|
2751
2778
|
r("div", {
|
|
@@ -2755,12 +2782,12 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2755
2782
|
class: u([n(l).e("button"), n(l).is("disabled", h.value)]),
|
|
2756
2783
|
disabled: h.value,
|
|
2757
2784
|
onClick: x
|
|
2758
|
-
},
|
|
2785
|
+
}, N(s.buttonTexts[0] || ">"), 11, Gl),
|
|
2759
2786
|
r("button", {
|
|
2760
2787
|
class: u([n(l).e("button"), n(l).is("disabled", v.value)]),
|
|
2761
2788
|
disabled: v.value,
|
|
2762
|
-
onClick:
|
|
2763
|
-
},
|
|
2789
|
+
onClick: A
|
|
2790
|
+
}, N(s.buttonTexts[1] || "<"), 11, Jl)
|
|
2764
2791
|
], 2),
|
|
2765
2792
|
r("div", {
|
|
2766
2793
|
class: u(n(l).e("panel"))
|
|
@@ -2776,56 +2803,56 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2776
2803
|
checked: $.value.length > 0 && $.value.length === H.value.filter((g) => !y(g)).length,
|
|
2777
2804
|
indeterminate: $.value.length > 0 && $.value.length < H.value.filter((g) => !y(g)).length,
|
|
2778
2805
|
onChange: p
|
|
2779
|
-
}, null, 40,
|
|
2780
|
-
r("span", null,
|
|
2806
|
+
}, null, 40, Zl),
|
|
2807
|
+
r("span", null, N(s.titles[1]), 1)
|
|
2781
2808
|
], 2),
|
|
2782
2809
|
r("span", {
|
|
2783
2810
|
class: u(n(l).e("count"))
|
|
2784
|
-
},
|
|
2811
|
+
}, N($.value.length) + " / " + N(H.value.length), 3)
|
|
2785
2812
|
], 2),
|
|
2786
2813
|
s.filterable ? (i(), d("div", {
|
|
2787
2814
|
key: 0,
|
|
2788
2815
|
class: u(n(l).e("filter"))
|
|
2789
2816
|
}, [
|
|
2790
2817
|
oe(r("input", {
|
|
2791
|
-
"onUpdate:modelValue": f[3] || (f[3] = (g) =>
|
|
2818
|
+
"onUpdate:modelValue": f[3] || (f[3] = (g) => S.value = g),
|
|
2792
2819
|
placeholder: s.filterPlaceholder,
|
|
2793
2820
|
class: u(n(l).e("filter-input"))
|
|
2794
|
-
}, null, 10,
|
|
2795
|
-
[
|
|
2821
|
+
}, null, 10, Ql), [
|
|
2822
|
+
[Ve, S.value]
|
|
2796
2823
|
]),
|
|
2797
|
-
|
|
2824
|
+
S.value ? (i(), d("span", {
|
|
2798
2825
|
key: 0,
|
|
2799
2826
|
class: u(n(l).e("filter-clear")),
|
|
2800
2827
|
onClick: f[4] || (f[4] = (g) => w("right"))
|
|
2801
|
-
}, "×", 2)) :
|
|
2802
|
-
], 2)) :
|
|
2828
|
+
}, "×", 2)) : U("", !0)
|
|
2829
|
+
], 2)) : U("", !0),
|
|
2803
2830
|
r("div", {
|
|
2804
2831
|
class: u(n(l).e("body"))
|
|
2805
2832
|
}, [
|
|
2806
2833
|
(i(!0), d(J, null, _(H.value, (g) => (i(), d("div", {
|
|
2807
|
-
key:
|
|
2834
|
+
key: z(g),
|
|
2808
2835
|
class: u([
|
|
2809
2836
|
n(l).e("item"),
|
|
2810
2837
|
n(l).is("disabled", y(g)),
|
|
2811
|
-
n(l).is("checked", $.value.includes(
|
|
2838
|
+
n(l).is("checked", $.value.includes(z(g)))
|
|
2812
2839
|
]),
|
|
2813
|
-
onClick: (X) => !y(g) &&
|
|
2840
|
+
onClick: (X) => !y(g) && Y(z(g))
|
|
2814
2841
|
}, [
|
|
2815
2842
|
r("label", {
|
|
2816
2843
|
class: u(n(l).e("checkbox"))
|
|
2817
2844
|
}, [
|
|
2818
2845
|
r("input", {
|
|
2819
2846
|
type: "checkbox",
|
|
2820
|
-
checked: $.value.includes(
|
|
2847
|
+
checked: $.value.includes(z(g)),
|
|
2821
2848
|
disabled: y(g),
|
|
2822
2849
|
onClick: f[5] || (f[5] = ue(() => {
|
|
2823
2850
|
}, ["stop"])),
|
|
2824
|
-
onChange: (X) =>
|
|
2825
|
-
}, null, 40,
|
|
2826
|
-
r("span", null,
|
|
2851
|
+
onChange: (X) => Y(z(g))
|
|
2852
|
+
}, null, 40, ea),
|
|
2853
|
+
r("span", null, N(I(g)), 1)
|
|
2827
2854
|
], 2)
|
|
2828
|
-
], 10,
|
|
2855
|
+
], 10, _l))), 128)),
|
|
2829
2856
|
H.value.length === 0 ? (i(), d("div", {
|
|
2830
2857
|
key: 0,
|
|
2831
2858
|
class: u(n(l).e("empty"))
|
|
@@ -2833,12 +2860,12 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2833
2860
|
se(o.$slots, "right-empty", {}, () => [
|
|
2834
2861
|
f[7] || (f[7] = de("暂无数据", -1))
|
|
2835
2862
|
])
|
|
2836
|
-
], 2)) :
|
|
2863
|
+
], 2)) : U("", !0)
|
|
2837
2864
|
], 2)
|
|
2838
2865
|
], 2)
|
|
2839
2866
|
], 2));
|
|
2840
2867
|
}
|
|
2841
|
-
}),
|
|
2868
|
+
}), la = { key: 0 }, aa = { key: 1 }, vt = /* @__PURE__ */ le({
|
|
2842
2869
|
name: "XSlider",
|
|
2843
2870
|
__name: "index",
|
|
2844
2871
|
props: {
|
|
@@ -2856,10 +2883,10 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2856
2883
|
},
|
|
2857
2884
|
emits: ["update:modelValue", "change", "input"],
|
|
2858
2885
|
setup(s, { emit: k }) {
|
|
2859
|
-
const a = s, e = k, t = ae("slider"), l =
|
|
2886
|
+
const a = s, e = k, t = ae("slider"), l = B(), c = B(), m = B(!1), b = B(!1), T = V(() => {
|
|
2860
2887
|
const w = a.max - a.min;
|
|
2861
2888
|
return (a.modelValue - a.min) / w * 100;
|
|
2862
|
-
}),
|
|
2889
|
+
}), S = V(() => a.formatTooltip ? a.formatTooltip(a.modelValue) : a.modelValue), D = V(() => {
|
|
2863
2890
|
if (!a.showStops || a.min >= a.max) return [];
|
|
2864
2891
|
const w = [], C = (a.max - a.min) / a.step;
|
|
2865
2892
|
for (let o = 0; o <= C; o++) {
|
|
@@ -2871,9 +2898,9 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2871
2898
|
const C = Number(w), o = a.marks[C], f = (C - a.min) / (a.max - a.min) * 100;
|
|
2872
2899
|
let g, X = {};
|
|
2873
2900
|
return typeof o == "string" ? g = o : (g = o.label || String(C), X = o.style || {}), { value: C, pos: f, label: g, style: X };
|
|
2874
|
-
}) : []),
|
|
2901
|
+
}) : []), z = () => l.value ? a.vertical ? l.value.offsetHeight : l.value.offsetWidth : 0, I = (w, C) => {
|
|
2875
2902
|
if (!l.value) return a.modelValue;
|
|
2876
|
-
const o = l.value.getBoundingClientRect(), f =
|
|
2903
|
+
const o = l.value.getBoundingClientRect(), f = z();
|
|
2877
2904
|
let g;
|
|
2878
2905
|
a.vertical ? g = (o.bottom - C) / f * 100 : g = (w - o.left) / f * 100, g = Math.max(0, Math.min(100, g));
|
|
2879
2906
|
const X = a.min + g / 100 * (a.max - a.min), ne = Math.round(X / a.step) * a.step;
|
|
@@ -2886,13 +2913,13 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2886
2913
|
if (a.disabled) return;
|
|
2887
2914
|
w.preventDefault(), b.value = !0, m.value = !0;
|
|
2888
2915
|
const C = I(w.clientX, w.clientY);
|
|
2889
|
-
y(C), document.addEventListener("mousemove", H), document.addEventListener("mouseup",
|
|
2916
|
+
y(C), document.addEventListener("mousemove", H), document.addEventListener("mouseup", O);
|
|
2890
2917
|
}, H = (w) => {
|
|
2891
2918
|
if (!b.value) return;
|
|
2892
2919
|
const C = I(w.clientX, w.clientY);
|
|
2893
2920
|
y(C);
|
|
2894
|
-
},
|
|
2895
|
-
b.value = !1, e("change", a.modelValue), document.removeEventListener("mousemove", H), document.removeEventListener("mouseup",
|
|
2921
|
+
}, O = () => {
|
|
2922
|
+
b.value = !1, e("change", a.modelValue), document.removeEventListener("mousemove", H), document.removeEventListener("mouseup", O);
|
|
2896
2923
|
}, M = (w) => {
|
|
2897
2924
|
if (a.disabled) return;
|
|
2898
2925
|
w.preventDefault(), b.value = !0, m.value = !0;
|
|
@@ -2906,20 +2933,20 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2906
2933
|
b.value = !1, e("change", a.modelValue);
|
|
2907
2934
|
}, x = () => {
|
|
2908
2935
|
a.showTooltip && (m.value = !0);
|
|
2909
|
-
},
|
|
2936
|
+
}, A = () => {
|
|
2910
2937
|
b.value || (m.value = !1);
|
|
2911
2938
|
};
|
|
2912
|
-
|
|
2913
|
-
document.removeEventListener("mousemove", H), document.removeEventListener("mouseup",
|
|
2939
|
+
De(() => {
|
|
2940
|
+
document.removeEventListener("mousemove", H), document.removeEventListener("mouseup", O);
|
|
2914
2941
|
});
|
|
2915
2942
|
const F = V(() => [
|
|
2916
2943
|
t.b(),
|
|
2917
2944
|
t.is("disabled", a.disabled),
|
|
2918
2945
|
t.is("vertical", a.vertical)
|
|
2919
|
-
]),
|
|
2946
|
+
]), Y = V(() => a.vertical && a.height ? { height: typeof a.height == "number" ? `${a.height}px` : a.height } : {}), G = V(() => a.vertical ? { height: `${T.value}%` } : { width: `${T.value}%` }), p = V(() => a.vertical ? { bottom: `${T.value}%` } : { left: `${T.value}%` });
|
|
2920
2947
|
return (w, C) => (i(), d("div", {
|
|
2921
2948
|
class: u(F.value),
|
|
2922
|
-
style: te(
|
|
2949
|
+
style: te(Y.value)
|
|
2923
2950
|
}, [
|
|
2924
2951
|
r("div", {
|
|
2925
2952
|
ref_key: "sliderRef",
|
|
@@ -2930,16 +2957,16 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2930
2957
|
}, [
|
|
2931
2958
|
r("div", {
|
|
2932
2959
|
class: u(n(t).e("bar")),
|
|
2933
|
-
style: te(
|
|
2960
|
+
style: te(G.value)
|
|
2934
2961
|
}, null, 6),
|
|
2935
|
-
s.showStops ? (i(), d("div",
|
|
2962
|
+
s.showStops ? (i(), d("div", la, [
|
|
2936
2963
|
(i(!0), d(J, null, _(D.value, (o, f) => (i(), d("div", {
|
|
2937
2964
|
key: f,
|
|
2938
2965
|
class: u(n(t).e("stop")),
|
|
2939
2966
|
style: te(s.vertical ? { bottom: `${o}%` } : { left: `${o}%` })
|
|
2940
2967
|
}, null, 6))), 128))
|
|
2941
|
-
])) :
|
|
2942
|
-
$.value.length > 0 ? (i(), d("div",
|
|
2968
|
+
])) : U("", !0),
|
|
2969
|
+
$.value.length > 0 ? (i(), d("div", aa, [
|
|
2943
2970
|
(i(!0), d(J, null, _($.value, (o) => (i(), d("div", {
|
|
2944
2971
|
key: o.value,
|
|
2945
2972
|
class: u(n(t).e("mark")),
|
|
@@ -2947,23 +2974,23 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2947
2974
|
}, [
|
|
2948
2975
|
r("span", {
|
|
2949
2976
|
class: u(n(t).e("mark-text"))
|
|
2950
|
-
},
|
|
2977
|
+
}, N(o.label), 3)
|
|
2951
2978
|
], 6))), 128))
|
|
2952
|
-
])) :
|
|
2979
|
+
])) : U("", !0),
|
|
2953
2980
|
r("div", {
|
|
2954
2981
|
ref_key: "buttonRef",
|
|
2955
2982
|
ref: c,
|
|
2956
2983
|
class: u(n(t).e("button-wrapper")),
|
|
2957
2984
|
style: te(p.value),
|
|
2958
2985
|
onMouseenter: x,
|
|
2959
|
-
onMouseleave:
|
|
2986
|
+
onMouseleave: A,
|
|
2960
2987
|
onTouchmove: h,
|
|
2961
2988
|
onTouchend: v
|
|
2962
2989
|
}, [
|
|
2963
2990
|
s.showTooltip && m.value ? (i(), d("div", {
|
|
2964
2991
|
key: 0,
|
|
2965
2992
|
class: u(n(t).e("tooltip"))
|
|
2966
|
-
},
|
|
2993
|
+
}, N(S.value), 3)) : U("", !0),
|
|
2967
2994
|
r("div", {
|
|
2968
2995
|
class: u(n(t).e("button"))
|
|
2969
2996
|
}, null, 2)
|
|
@@ -2971,22 +2998,22 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
2971
2998
|
], 34)
|
|
2972
2999
|
], 6));
|
|
2973
3000
|
}
|
|
2974
|
-
}),
|
|
3001
|
+
}), ta = ["src"], na = {
|
|
2975
3002
|
key: 0,
|
|
2976
3003
|
class: "status-uploading"
|
|
2977
|
-
},
|
|
3004
|
+
}, sa = { class: "progress-circle" }, ua = { class: "progress-text" }, oa = {
|
|
2978
3005
|
key: 1,
|
|
2979
3006
|
class: "status-error"
|
|
2980
|
-
},
|
|
3007
|
+
}, ia = {
|
|
2981
3008
|
key: 2,
|
|
2982
3009
|
class: "status-success"
|
|
2983
|
-
},
|
|
3010
|
+
}, ra = {
|
|
2984
3011
|
key: 0,
|
|
2985
3012
|
class: "action-preview"
|
|
2986
|
-
},
|
|
3013
|
+
}, da = ["onClick"], ca = ["disabled"], va = { class: "progress-text" }, fa = ["onClick"], ma = ["src"], ha = {
|
|
2987
3014
|
key: 0,
|
|
2988
3015
|
class: "action-success"
|
|
2989
|
-
},
|
|
3016
|
+
}, pa = ["onClick"], ga = ["multiple", "accept", "disabled"], ft = /* @__PURE__ */ le({
|
|
2990
3017
|
name: "XUpload",
|
|
2991
3018
|
__name: "index",
|
|
2992
3019
|
props: {
|
|
@@ -3018,9 +3045,9 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3018
3045
|
setup(s, { expose: k, emit: a }) {
|
|
3019
3046
|
const e = s, t = a, l = ae("upload");
|
|
3020
3047
|
Le();
|
|
3021
|
-
const c =
|
|
3048
|
+
const c = B(), m = B([...e.fileList]), b = B(!1);
|
|
3022
3049
|
let T = 1;
|
|
3023
|
-
const
|
|
3050
|
+
const S = () => Date.now() + T++, D = (p) => {
|
|
3024
3051
|
var o;
|
|
3025
3052
|
const w = (o = p.name.split(".").pop()) == null ? void 0 : o.toLowerCase(), C = {
|
|
3026
3053
|
pdf: "📄",
|
|
@@ -3037,7 +3064,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3037
3064
|
default: "📁"
|
|
3038
3065
|
};
|
|
3039
3066
|
return C[w || ""] || C.default;
|
|
3040
|
-
}, $ = V(() => e.limit ? m.value.length < e.limit : !0),
|
|
3067
|
+
}, $ = V(() => e.limit ? m.value.length < e.limit : !0), z = V(() => [
|
|
3041
3068
|
l.b(),
|
|
3042
3069
|
l.is("disabled", e.disabled),
|
|
3043
3070
|
l.is("drag", e.drag),
|
|
@@ -3059,7 +3086,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3059
3086
|
size: o.size,
|
|
3060
3087
|
status: "ready",
|
|
3061
3088
|
percentage: 0,
|
|
3062
|
-
uid:
|
|
3089
|
+
uid: S(),
|
|
3063
3090
|
raw: o
|
|
3064
3091
|
};
|
|
3065
3092
|
o.type.startsWith("image/") && (f.thumbUrl = await L(o), f.url = f.thumbUrl), m.value.push(f), t("update:fileList", m.value), t("change", f, m.value), (C = e.onChange) == null || C.call(e, f, m.value), e.autoUpload && H(f);
|
|
@@ -3072,7 +3099,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3072
3099
|
}, C.readAsDataURL(p);
|
|
3073
3100
|
}), H = (p) => {
|
|
3074
3101
|
if (!p.raw) return;
|
|
3075
|
-
p.status = "uploading", (e.httpRequest ||
|
|
3102
|
+
p.status = "uploading", (e.httpRequest || O)({
|
|
3076
3103
|
action: e.action,
|
|
3077
3104
|
headers: e.headers,
|
|
3078
3105
|
data: e.data,
|
|
@@ -3092,7 +3119,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3092
3119
|
p.status = "error", t("error", C, p, m.value), (o = e.onError) == null || o.call(e, C, p, m.value);
|
|
3093
3120
|
}
|
|
3094
3121
|
});
|
|
3095
|
-
},
|
|
3122
|
+
}, O = (p) => new Promise((w, C) => {
|
|
3096
3123
|
const o = new XMLHttpRequest();
|
|
3097
3124
|
o.upload.addEventListener("progress", (g) => {
|
|
3098
3125
|
g.lengthComputable && p.onProgress({ percent: g.loaded / g.total * 100 });
|
|
@@ -3129,16 +3156,16 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3129
3156
|
}, x = () => {
|
|
3130
3157
|
var p;
|
|
3131
3158
|
e.disabled || (p = c.value) == null || p.click();
|
|
3132
|
-
},
|
|
3159
|
+
}, A = (p) => {
|
|
3133
3160
|
p.preventDefault(), !e.disabled && e.drag && (b.value = !0);
|
|
3134
3161
|
}, F = () => {
|
|
3135
3162
|
b.value = !1;
|
|
3136
|
-
},
|
|
3163
|
+
}, Y = (p) => {
|
|
3137
3164
|
var C;
|
|
3138
3165
|
if (p.preventDefault(), b.value = !1, e.disabled) return;
|
|
3139
3166
|
const w = (C = p.dataTransfer) == null ? void 0 : C.files;
|
|
3140
3167
|
w && w.length > 0 && y(Array.from(w));
|
|
3141
|
-
},
|
|
3168
|
+
}, G = (p) => {
|
|
3142
3169
|
if (!p) return "0 B";
|
|
3143
3170
|
const w = ["B", "KB", "MB", "GB"];
|
|
3144
3171
|
let C = 0, o = p;
|
|
@@ -3151,15 +3178,15 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3151
3178
|
clearFiles: v,
|
|
3152
3179
|
uploadFiles: m
|
|
3153
3180
|
}), (p, w) => (i(), d("div", {
|
|
3154
|
-
class: u(
|
|
3181
|
+
class: u(z.value)
|
|
3155
3182
|
}, [
|
|
3156
3183
|
s.drag ? (i(), d("div", {
|
|
3157
3184
|
key: 0,
|
|
3158
3185
|
class: u([n(l).e("drag"), n(l).is("dragover", b.value)]),
|
|
3159
3186
|
onClick: x,
|
|
3160
|
-
onDragover:
|
|
3187
|
+
onDragover: A,
|
|
3161
3188
|
onDragleave: F,
|
|
3162
|
-
onDrop:
|
|
3189
|
+
onDrop: Y
|
|
3163
3190
|
}, [
|
|
3164
3191
|
se(p.$slots, "drag", {}, () => [
|
|
3165
3192
|
r("span", {
|
|
@@ -3184,35 +3211,35 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3184
3211
|
key: 0,
|
|
3185
3212
|
src: C.thumbUrl,
|
|
3186
3213
|
class: u(n(l).e("file-image"))
|
|
3187
|
-
}, null, 10,
|
|
3214
|
+
}, null, 10, ta)) : (i(), d("div", {
|
|
3188
3215
|
key: 1,
|
|
3189
3216
|
class: u(n(l).e("file-status"))
|
|
3190
3217
|
}, [
|
|
3191
|
-
C.status === "uploading" ? (i(), d("span",
|
|
3192
|
-
r("span",
|
|
3193
|
-
r("span",
|
|
3218
|
+
C.status === "uploading" ? (i(), d("span", na, [
|
|
3219
|
+
r("span", sa, [
|
|
3220
|
+
r("span", ua, N(Math.round(C.percentage || 0)) + "%", 1)
|
|
3194
3221
|
])
|
|
3195
|
-
])) : C.status === "error" ? (i(), d("span",
|
|
3222
|
+
])) : C.status === "error" ? (i(), d("span", oa, [
|
|
3196
3223
|
Q(n(ee), {
|
|
3197
3224
|
name: "close",
|
|
3198
3225
|
size: 16
|
|
3199
3226
|
})
|
|
3200
|
-
])) : C.status === "success" ? (i(), d("span",
|
|
3227
|
+
])) : C.status === "success" ? (i(), d("span", ia, [
|
|
3201
3228
|
Q(n(ee), {
|
|
3202
3229
|
name: "check",
|
|
3203
3230
|
size: 16
|
|
3204
3231
|
})
|
|
3205
|
-
])) :
|
|
3232
|
+
])) : U("", !0)
|
|
3206
3233
|
], 2)),
|
|
3207
3234
|
r("span", {
|
|
3208
3235
|
class: u(n(l).e("file-actions"))
|
|
3209
3236
|
}, [
|
|
3210
|
-
C.url ? (i(), d("span",
|
|
3237
|
+
C.url ? (i(), d("span", ra, [
|
|
3211
3238
|
Q(n(ee), {
|
|
3212
3239
|
name: "eye",
|
|
3213
3240
|
size: 14
|
|
3214
3241
|
})
|
|
3215
|
-
])) :
|
|
3242
|
+
])) : U("", !0),
|
|
3216
3243
|
r("span", {
|
|
3217
3244
|
class: "action-remove",
|
|
3218
3245
|
onClick: (o) => M(C)
|
|
@@ -3221,7 +3248,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3221
3248
|
name: "delete",
|
|
3222
3249
|
size: 14
|
|
3223
3250
|
})
|
|
3224
|
-
], 8,
|
|
3251
|
+
], 8, da)
|
|
3225
3252
|
], 2)
|
|
3226
3253
|
], 2))), 128)),
|
|
3227
3254
|
$.value ? (i(), d("li", {
|
|
@@ -3232,7 +3259,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3232
3259
|
se(p.$slots, "trigger", {}, () => [
|
|
3233
3260
|
w[1] || (w[1] = r("span", { class: "upload-icon" }, "+", -1))
|
|
3234
3261
|
])
|
|
3235
|
-
], 2)) :
|
|
3262
|
+
], 2)) : U("", !0)
|
|
3236
3263
|
], 2)) : (i(), d(J, { key: 2 }, [
|
|
3237
3264
|
r("div", {
|
|
3238
3265
|
class: u(n(l).e("trigger-wrapper")),
|
|
@@ -3248,7 +3275,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3248
3275
|
se(p.$slots, "default", {}, () => [
|
|
3249
3276
|
w[2] || (w[2] = de("点击上传", -1))
|
|
3250
3277
|
])
|
|
3251
|
-
], 10,
|
|
3278
|
+
], 10, ca)) : U("", !0)
|
|
3252
3279
|
])
|
|
3253
3280
|
], 2),
|
|
3254
3281
|
s.showFileList && m.value.length > 0 ? (i(), d("ul", {
|
|
@@ -3262,13 +3289,13 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3262
3289
|
s.listType === "text" ? (i(), d(J, { key: 0 }, [
|
|
3263
3290
|
r("span", {
|
|
3264
3291
|
class: u(n(l).e("file-icon"))
|
|
3265
|
-
},
|
|
3292
|
+
}, N(D(C)), 3),
|
|
3266
3293
|
r("span", {
|
|
3267
3294
|
class: u(n(l).e("file-name"))
|
|
3268
|
-
},
|
|
3295
|
+
}, N(C.name), 3),
|
|
3269
3296
|
r("span", {
|
|
3270
3297
|
class: u(n(l).e("file-size"))
|
|
3271
|
-
},
|
|
3298
|
+
}, N(G(C.size)), 3),
|
|
3272
3299
|
C.status === "uploading" ? (i(), d("span", {
|
|
3273
3300
|
key: 0,
|
|
3274
3301
|
class: u(n(l).e("file-progress"))
|
|
@@ -3277,8 +3304,8 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3277
3304
|
class: "progress-bar",
|
|
3278
3305
|
style: te({ width: C.percentage + "%" })
|
|
3279
3306
|
}, null, 4),
|
|
3280
|
-
r("span",
|
|
3281
|
-
], 2)) :
|
|
3307
|
+
r("span", va, N(Math.round(C.percentage || 0)) + "%", 1)
|
|
3308
|
+
], 2)) : U("", !0),
|
|
3282
3309
|
C.status === "success" ? (i(), d("span", {
|
|
3283
3310
|
key: 1,
|
|
3284
3311
|
class: u(n(l).e("file-success"))
|
|
@@ -3287,7 +3314,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3287
3314
|
name: "check",
|
|
3288
3315
|
size: 14
|
|
3289
3316
|
})
|
|
3290
|
-
], 2)) :
|
|
3317
|
+
], 2)) : U("", !0),
|
|
3291
3318
|
C.status === "error" ? (i(), d("span", {
|
|
3292
3319
|
key: 2,
|
|
3293
3320
|
class: u(n(l).e("file-error"))
|
|
@@ -3296,7 +3323,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3296
3323
|
name: "close",
|
|
3297
3324
|
size: 14
|
|
3298
3325
|
})
|
|
3299
|
-
], 2)) :
|
|
3326
|
+
], 2)) : U("", !0),
|
|
3300
3327
|
r("span", {
|
|
3301
3328
|
class: u(n(l).e("file-actions"))
|
|
3302
3329
|
}, [
|
|
@@ -3308,23 +3335,23 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3308
3335
|
name: "close",
|
|
3309
3336
|
size: 14
|
|
3310
3337
|
})
|
|
3311
|
-
], 8,
|
|
3338
|
+
], 8, fa)
|
|
3312
3339
|
], 2)
|
|
3313
3340
|
], 64)) : s.listType === "picture" ? (i(), d(J, { key: 1 }, [
|
|
3314
3341
|
C.thumbUrl ? (i(), d("img", {
|
|
3315
3342
|
key: 0,
|
|
3316
3343
|
src: C.thumbUrl,
|
|
3317
3344
|
class: u(n(l).e("file-thumb"))
|
|
3318
|
-
}, null, 10,
|
|
3345
|
+
}, null, 10, ma)) : (i(), d("span", {
|
|
3319
3346
|
key: 1,
|
|
3320
3347
|
class: u(n(l).e("file-icon"))
|
|
3321
|
-
},
|
|
3348
|
+
}, N(D(C)), 3)),
|
|
3322
3349
|
r("div", {
|
|
3323
3350
|
class: u(n(l).e("file-info"))
|
|
3324
3351
|
}, [
|
|
3325
3352
|
r("span", {
|
|
3326
3353
|
class: u(n(l).e("file-name"))
|
|
3327
|
-
},
|
|
3354
|
+
}, N(C.name), 3),
|
|
3328
3355
|
C.status === "uploading" ? (i(), d("span", {
|
|
3329
3356
|
key: 0,
|
|
3330
3357
|
class: u(n(l).e("file-progress"))
|
|
@@ -3333,17 +3360,17 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3333
3360
|
class: "progress-bar",
|
|
3334
3361
|
style: te({ width: C.percentage + "%" })
|
|
3335
3362
|
}, null, 4)
|
|
3336
|
-
], 2)) :
|
|
3363
|
+
], 2)) : U("", !0)
|
|
3337
3364
|
], 2),
|
|
3338
3365
|
r("span", {
|
|
3339
3366
|
class: u(n(l).e("file-actions"))
|
|
3340
3367
|
}, [
|
|
3341
|
-
C.status === "success" ? (i(), d("span",
|
|
3368
|
+
C.status === "success" ? (i(), d("span", ha, [
|
|
3342
3369
|
Q(n(ee), {
|
|
3343
3370
|
name: "check",
|
|
3344
3371
|
size: 14
|
|
3345
3372
|
})
|
|
3346
|
-
])) :
|
|
3373
|
+
])) : U("", !0),
|
|
3347
3374
|
r("span", {
|
|
3348
3375
|
class: "action-remove",
|
|
3349
3376
|
onClick: (o) => M(C)
|
|
@@ -3352,11 +3379,11 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3352
3379
|
name: "close",
|
|
3353
3380
|
size: 14
|
|
3354
3381
|
})
|
|
3355
|
-
], 8,
|
|
3382
|
+
], 8, pa)
|
|
3356
3383
|
], 2)
|
|
3357
|
-
], 64)) :
|
|
3384
|
+
], 64)) : U("", !0)
|
|
3358
3385
|
], 2))), 128))
|
|
3359
|
-
], 2)) :
|
|
3386
|
+
], 2)) : U("", !0)
|
|
3360
3387
|
], 64)),
|
|
3361
3388
|
r("input", {
|
|
3362
3389
|
ref_key: "inputRef",
|
|
@@ -3367,16 +3394,16 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3367
3394
|
accept: s.accept,
|
|
3368
3395
|
disabled: s.disabled,
|
|
3369
3396
|
onChange: I
|
|
3370
|
-
}, null, 42,
|
|
3397
|
+
}, null, 42, ga),
|
|
3371
3398
|
p.$slots.tip ? (i(), d("div", {
|
|
3372
3399
|
key: 3,
|
|
3373
3400
|
class: u(n(l).e("tip"))
|
|
3374
3401
|
}, [
|
|
3375
3402
|
se(p.$slots, "tip")
|
|
3376
|
-
], 2)) :
|
|
3403
|
+
], 2)) : U("", !0)
|
|
3377
3404
|
], 2));
|
|
3378
3405
|
}
|
|
3379
|
-
}),
|
|
3406
|
+
}), ba = ["onMousemove", "onClick"], mt = /* @__PURE__ */ le({
|
|
3380
3407
|
name: "XRate",
|
|
3381
3408
|
__name: "index",
|
|
3382
3409
|
props: {
|
|
@@ -3402,7 +3429,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3402
3429
|
},
|
|
3403
3430
|
emits: ["update:modelValue", "change"],
|
|
3404
3431
|
setup(s, { emit: k }) {
|
|
3405
|
-
const a = s, e = k, t = ae("rate"), l =
|
|
3432
|
+
const a = s, e = k, t = ae("rate"), l = B(-1), c = V(() => l.value > -1 ? l.value : a.modelValue), m = V(() => [
|
|
3406
3433
|
t.b(),
|
|
3407
3434
|
t.m(a.size),
|
|
3408
3435
|
t.is("disabled", a.disabled),
|
|
@@ -3410,7 +3437,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3410
3437
|
]), b = (y) => a.disabled ? a.disabledVoidColor : y <= a.lowThreshold ? a.colors[0] : y <= a.highThreshold ? a.colors[1] || a.colors[0] : a.colors[2] || a.colors[1] || a.colors[0], T = (y) => {
|
|
3411
3438
|
const L = c.value;
|
|
3412
3439
|
return L >= y ? 100 : a.allowHalf && L >= y - 0.5 ? 50 : 0;
|
|
3413
|
-
},
|
|
3440
|
+
}, S = (y) => T(y) > 0 ? b(c.value) : a.disabled ? a.disabledVoidColor : a.voidColor, D = V(() => {
|
|
3414
3441
|
if (a.showScore)
|
|
3415
3442
|
return a.scoreTemplate.replace("{value}", String(a.modelValue));
|
|
3416
3443
|
if (a.showText) {
|
|
@@ -3421,11 +3448,11 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3421
3448
|
}), $ = (y, L) => {
|
|
3422
3449
|
if (!(a.disabled || a.readonly))
|
|
3423
3450
|
if (a.allowHalf) {
|
|
3424
|
-
const
|
|
3451
|
+
const O = L.currentTarget.getBoundingClientRect(), M = L.clientX - O.left < O.width / 2;
|
|
3425
3452
|
l.value = M ? y - 0.5 : y;
|
|
3426
3453
|
} else
|
|
3427
3454
|
l.value = y;
|
|
3428
|
-
},
|
|
3455
|
+
}, z = () => {
|
|
3429
3456
|
a.disabled || a.readonly || (l.value = -1);
|
|
3430
3457
|
}, I = (y, L) => {
|
|
3431
3458
|
if (a.disabled || a.readonly) return;
|
|
@@ -3439,7 +3466,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3439
3466
|
};
|
|
3440
3467
|
return (y, L) => (i(), d("div", {
|
|
3441
3468
|
class: u(m.value),
|
|
3442
|
-
onMouseleave:
|
|
3469
|
+
onMouseleave: z
|
|
3443
3470
|
}, [
|
|
3444
3471
|
r("div", {
|
|
3445
3472
|
class: u(n(t).e("items"))
|
|
@@ -3447,33 +3474,33 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3447
3474
|
(i(!0), d(J, null, _(s.max, (H) => (i(), d("span", {
|
|
3448
3475
|
key: H,
|
|
3449
3476
|
class: u(n(t).e("item")),
|
|
3450
|
-
onMousemove: (
|
|
3451
|
-
onClick: (
|
|
3477
|
+
onMousemove: (O) => $(H, O),
|
|
3478
|
+
onClick: (O) => I(H, O)
|
|
3452
3479
|
}, [
|
|
3453
3480
|
r("span", {
|
|
3454
3481
|
class: u(n(t).e("void")),
|
|
3455
3482
|
style: te({ color: s.disabled ? s.disabledVoidColor : s.voidColor })
|
|
3456
|
-
},
|
|
3483
|
+
}, N(s.disabled ? s.disabledVoidIcon : s.voidIcon), 7),
|
|
3457
3484
|
r("span", {
|
|
3458
3485
|
class: u([n(t).e("fill"), T(H) > 0 ? "is-active" : ""]),
|
|
3459
3486
|
style: te({
|
|
3460
|
-
color:
|
|
3487
|
+
color: S(H),
|
|
3461
3488
|
clipPath: `inset(0 ${100 - T(H)}% 0 0)`
|
|
3462
3489
|
})
|
|
3463
|
-
},
|
|
3464
|
-
], 42,
|
|
3490
|
+
}, N(s.icon), 7)
|
|
3491
|
+
], 42, ba))), 128))
|
|
3465
3492
|
], 2),
|
|
3466
3493
|
s.showText || s.showScore ? (i(), d("div", {
|
|
3467
3494
|
key: 0,
|
|
3468
3495
|
class: u(n(t).e("text")),
|
|
3469
3496
|
style: te({ color: s.textColor })
|
|
3470
|
-
},
|
|
3497
|
+
}, N(D.value), 7)) : U("", !0)
|
|
3471
3498
|
], 34));
|
|
3472
3499
|
}
|
|
3473
|
-
}),
|
|
3500
|
+
}), ya = ["value"], ka = { class: "field-type" }, Ma = { class: "field-name" }, Va = { class: "field-label" }, xa = {
|
|
3474
3501
|
key: 0,
|
|
3475
3502
|
class: "field-required"
|
|
3476
|
-
},
|
|
3503
|
+
}, wa = ["onClick"], Ca = ["onClick"], $a = ["onClick"], Da = ["onClick"], Sa = { class: "modal-content" }, za = { class: "modal-header" }, Ta = { class: "modal-body" }, Ha = { class: "edit-field" }, La = { class: "edit-field" }, Ra = { class: "edit-field" }, Ba = ["value"], Aa = { class: "edit-field" }, Fa = { class: "edit-field" }, ht = /* @__PURE__ */ le({
|
|
3477
3504
|
name: "XDynamicFields",
|
|
3478
3505
|
__name: "index",
|
|
3479
3506
|
props: {
|
|
@@ -3493,17 +3520,17 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3493
3520
|
},
|
|
3494
3521
|
emits: ["update:fields", "add", "remove", "sort", "update"],
|
|
3495
3522
|
setup(s, { emit: k }) {
|
|
3496
|
-
const a = s, e = k, t = ae("dynamic-fields"), l =
|
|
3523
|
+
const a = s, e = k, t = ae("dynamic-fields"), l = B([]), c = B(null), m = B("input"), b = V(() => [
|
|
3497
3524
|
t.b(),
|
|
3498
3525
|
t.is("editable", a.editable)
|
|
3499
3526
|
]), T = V(() => l.value.length < a.maxFields);
|
|
3500
3527
|
ie(() => a.fields, (h) => {
|
|
3501
3528
|
l.value = [...h].sort((v, x) => (v.order || 0) - (x.order || 0));
|
|
3502
3529
|
}, { immediate: !0, deep: !0 });
|
|
3503
|
-
const
|
|
3530
|
+
const S = () => `field_${Date.now()}_${Math.random().toString(36).slice(2, 7)}`, D = () => {
|
|
3504
3531
|
if (!T.value) return;
|
|
3505
3532
|
const h = {
|
|
3506
|
-
id:
|
|
3533
|
+
id: S(),
|
|
3507
3534
|
name: `field_${l.value.length + 1}`,
|
|
3508
3535
|
label: "新字段",
|
|
3509
3536
|
type: m.value,
|
|
@@ -3514,7 +3541,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3514
3541
|
}, $ = (h) => {
|
|
3515
3542
|
const v = l.value.findIndex((x) => x.id === h);
|
|
3516
3543
|
v !== -1 && (l.value[v], l.value.splice(v, 1), e("remove", h), e("update:fields", l.value));
|
|
3517
|
-
},
|
|
3544
|
+
}, z = (h) => {
|
|
3518
3545
|
const v = l.value.findIndex((x) => x.id === h);
|
|
3519
3546
|
if (v > 0) {
|
|
3520
3547
|
const x = l.value[v];
|
|
@@ -3537,7 +3564,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3537
3564
|
const h = l.value.findIndex((v) => v.id === c.value.id);
|
|
3538
3565
|
h !== -1 && (l.value[h] = c.value, e("update", c.value.id, c.value), e("update:fields", l.value)), c.value = null;
|
|
3539
3566
|
}
|
|
3540
|
-
},
|
|
3567
|
+
}, O = () => {
|
|
3541
3568
|
c.value = null;
|
|
3542
3569
|
}, M = (h) => {
|
|
3543
3570
|
const v = a.availableTypes.find((x) => x.value === h);
|
|
@@ -3557,15 +3584,15 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3557
3584
|
(i(!0), d(J, null, _(s.availableTypes, (x) => (i(), d("option", {
|
|
3558
3585
|
key: x.value,
|
|
3559
3586
|
value: x.value
|
|
3560
|
-
},
|
|
3587
|
+
}, N(x.label), 9, ya))), 128))
|
|
3561
3588
|
], 2), [
|
|
3562
|
-
[
|
|
3589
|
+
[Ce, m.value]
|
|
3563
3590
|
]),
|
|
3564
3591
|
r("button", {
|
|
3565
3592
|
class: u(n(t).e("add-btn")),
|
|
3566
3593
|
onClick: D
|
|
3567
3594
|
}, " + 添加字段 ", 2)
|
|
3568
|
-
], 2)) :
|
|
3595
|
+
], 2)) : U("", !0),
|
|
3569
3596
|
r("div", {
|
|
3570
3597
|
class: u(n(t).e("list"))
|
|
3571
3598
|
}, [
|
|
@@ -3576,10 +3603,10 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3576
3603
|
r("div", {
|
|
3577
3604
|
class: u(n(t).e("info"))
|
|
3578
3605
|
}, [
|
|
3579
|
-
r("span",
|
|
3580
|
-
r("span",
|
|
3581
|
-
r("span",
|
|
3582
|
-
x.required ? (i(), d("span",
|
|
3606
|
+
r("span", ka, N(M(x.type)), 1),
|
|
3607
|
+
r("span", Ma, N(x.name), 1),
|
|
3608
|
+
r("span", Va, N(x.label), 1),
|
|
3609
|
+
x.required ? (i(), d("span", xa, "必填")) : U("", !0)
|
|
3583
3610
|
], 2),
|
|
3584
3611
|
s.editable ? (i(), d("div", {
|
|
3585
3612
|
key: 0,
|
|
@@ -3589,45 +3616,45 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3589
3616
|
key: 0,
|
|
3590
3617
|
class: "action-btn",
|
|
3591
3618
|
title: "上移",
|
|
3592
|
-
onClick: (
|
|
3619
|
+
onClick: (A) => z(x.id)
|
|
3593
3620
|
}, [
|
|
3594
3621
|
Q(n(ee), {
|
|
3595
3622
|
name: "move-up",
|
|
3596
3623
|
size: 14
|
|
3597
3624
|
})
|
|
3598
|
-
], 8,
|
|
3625
|
+
], 8, wa)) : U("", !0),
|
|
3599
3626
|
s.showSort ? (i(), d("button", {
|
|
3600
3627
|
key: 1,
|
|
3601
3628
|
class: "action-btn",
|
|
3602
3629
|
title: "下移",
|
|
3603
|
-
onClick: (
|
|
3630
|
+
onClick: (A) => I(x.id)
|
|
3604
3631
|
}, [
|
|
3605
3632
|
Q(n(ee), {
|
|
3606
3633
|
name: "move-down",
|
|
3607
3634
|
size: 14
|
|
3608
3635
|
})
|
|
3609
|
-
], 8,
|
|
3636
|
+
], 8, Ca)) : U("", !0),
|
|
3610
3637
|
r("button", {
|
|
3611
3638
|
class: "action-btn",
|
|
3612
3639
|
title: "编辑",
|
|
3613
|
-
onClick: (
|
|
3640
|
+
onClick: (A) => L(x)
|
|
3614
3641
|
}, [
|
|
3615
3642
|
Q(n(ee), {
|
|
3616
3643
|
name: "edit",
|
|
3617
3644
|
size: 14
|
|
3618
3645
|
})
|
|
3619
|
-
], 8,
|
|
3646
|
+
], 8, $a),
|
|
3620
3647
|
r("button", {
|
|
3621
3648
|
class: "action-btn action-btn--danger",
|
|
3622
3649
|
title: "删除",
|
|
3623
|
-
onClick: (
|
|
3650
|
+
onClick: (A) => $(x.id)
|
|
3624
3651
|
}, [
|
|
3625
3652
|
Q(n(ee), {
|
|
3626
3653
|
name: "close",
|
|
3627
3654
|
size: 14
|
|
3628
3655
|
})
|
|
3629
|
-
], 8,
|
|
3630
|
-
], 2)) :
|
|
3656
|
+
], 8, Da)
|
|
3657
|
+
], 2)) : U("", !0)
|
|
3631
3658
|
], 2))), 128))
|
|
3632
3659
|
], 2),
|
|
3633
3660
|
l.value.length === 0 ? (i(), d("div", {
|
|
@@ -3635,17 +3662,17 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3635
3662
|
class: u(n(t).e("empty"))
|
|
3636
3663
|
}, [...v[6] || (v[6] = [
|
|
3637
3664
|
r("span", null, "暂无字段配置", -1)
|
|
3638
|
-
])], 2)) :
|
|
3665
|
+
])], 2)) : U("", !0),
|
|
3639
3666
|
c.value ? (i(), d("div", {
|
|
3640
3667
|
key: 2,
|
|
3641
3668
|
class: u(n(t).e("edit-modal"))
|
|
3642
3669
|
}, [
|
|
3643
|
-
r("div",
|
|
3644
|
-
r("div",
|
|
3670
|
+
r("div", Sa, [
|
|
3671
|
+
r("div", za, [
|
|
3645
3672
|
v[7] || (v[7] = r("span", null, "编辑字段", -1)),
|
|
3646
3673
|
r("button", {
|
|
3647
3674
|
class: "close-btn",
|
|
3648
|
-
onClick:
|
|
3675
|
+
onClick: O
|
|
3649
3676
|
}, [
|
|
3650
3677
|
Q(n(ee), {
|
|
3651
3678
|
name: "close",
|
|
@@ -3653,28 +3680,28 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3653
3680
|
})
|
|
3654
3681
|
])
|
|
3655
3682
|
]),
|
|
3656
|
-
r("div",
|
|
3657
|
-
r("div",
|
|
3683
|
+
r("div", Ta, [
|
|
3684
|
+
r("div", Ha, [
|
|
3658
3685
|
v[8] || (v[8] = r("label", null, "字段名称", -1)),
|
|
3659
3686
|
oe(r("input", {
|
|
3660
3687
|
"onUpdate:modelValue": v[1] || (v[1] = (x) => c.value.name = x),
|
|
3661
3688
|
type: "text",
|
|
3662
3689
|
placeholder: "变量名称"
|
|
3663
3690
|
}, null, 512), [
|
|
3664
|
-
[
|
|
3691
|
+
[Ve, c.value.name]
|
|
3665
3692
|
])
|
|
3666
3693
|
]),
|
|
3667
|
-
r("div",
|
|
3694
|
+
r("div", La, [
|
|
3668
3695
|
v[9] || (v[9] = r("label", null, "字段标签", -1)),
|
|
3669
3696
|
oe(r("input", {
|
|
3670
3697
|
"onUpdate:modelValue": v[2] || (v[2] = (x) => c.value.label = x),
|
|
3671
3698
|
type: "text",
|
|
3672
3699
|
placeholder: "显示标签"
|
|
3673
3700
|
}, null, 512), [
|
|
3674
|
-
[
|
|
3701
|
+
[Ve, c.value.label]
|
|
3675
3702
|
])
|
|
3676
3703
|
]),
|
|
3677
|
-
r("div",
|
|
3704
|
+
r("div", Ra, [
|
|
3678
3705
|
v[10] || (v[10] = r("label", null, "字段类型", -1)),
|
|
3679
3706
|
oe(r("select", {
|
|
3680
3707
|
"onUpdate:modelValue": v[3] || (v[3] = (x) => c.value.type = x)
|
|
@@ -3682,33 +3709,33 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3682
3709
|
(i(!0), d(J, null, _(s.availableTypes, (x) => (i(), d("option", {
|
|
3683
3710
|
key: x.value,
|
|
3684
3711
|
value: x.value
|
|
3685
|
-
},
|
|
3712
|
+
}, N(x.label), 9, Ba))), 128))
|
|
3686
3713
|
], 512), [
|
|
3687
|
-
[
|
|
3714
|
+
[Ce, c.value.type]
|
|
3688
3715
|
])
|
|
3689
3716
|
]),
|
|
3690
|
-
r("div",
|
|
3717
|
+
r("div", Aa, [
|
|
3691
3718
|
v[11] || (v[11] = r("label", null, "是否必填", -1)),
|
|
3692
3719
|
r("button", {
|
|
3693
3720
|
class: u(["switch-btn", { "is-on": c.value.required }]),
|
|
3694
3721
|
onClick: v[4] || (v[4] = (x) => c.value.required = !c.value.required)
|
|
3695
|
-
},
|
|
3722
|
+
}, N(c.value.required ? "必填" : "可选"), 3)
|
|
3696
3723
|
]),
|
|
3697
|
-
r("div",
|
|
3724
|
+
r("div", Fa, [
|
|
3698
3725
|
v[12] || (v[12] = r("label", null, "占位文本", -1)),
|
|
3699
3726
|
oe(r("input", {
|
|
3700
3727
|
"onUpdate:modelValue": v[5] || (v[5] = (x) => c.value.placeholder = x),
|
|
3701
3728
|
type: "text",
|
|
3702
3729
|
placeholder: "输入提示"
|
|
3703
3730
|
}, null, 512), [
|
|
3704
|
-
[
|
|
3731
|
+
[Ve, c.value.placeholder]
|
|
3705
3732
|
])
|
|
3706
3733
|
])
|
|
3707
3734
|
]),
|
|
3708
3735
|
r("div", { class: "modal-footer" }, [
|
|
3709
3736
|
r("button", {
|
|
3710
3737
|
class: "cancel-btn",
|
|
3711
|
-
onClick:
|
|
3738
|
+
onClick: O
|
|
3712
3739
|
}, "取消"),
|
|
3713
3740
|
r("button", {
|
|
3714
3741
|
class: "save-btn",
|
|
@@ -3716,10 +3743,10 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3716
3743
|
}, "保存")
|
|
3717
3744
|
])
|
|
3718
3745
|
])
|
|
3719
|
-
], 2)) :
|
|
3746
|
+
], 2)) : U("", !0)
|
|
3720
3747
|
], 2));
|
|
3721
3748
|
}
|
|
3722
|
-
}),
|
|
3749
|
+
}), pt = /* @__PURE__ */ le({
|
|
3723
3750
|
name: "XRichEditor",
|
|
3724
3751
|
__name: "index",
|
|
3725
3752
|
props: {
|
|
@@ -3733,12 +3760,12 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3733
3760
|
},
|
|
3734
3761
|
emits: ["update:modelValue", "change", "focus", "blur"],
|
|
3735
3762
|
setup(s, { expose: k, emit: a }) {
|
|
3736
|
-
const e = s, t = a, l =
|
|
3763
|
+
const e = s, t = a, l = Ne(
|
|
3737
3764
|
() => import("./index.esm-C9sEwyHF.mjs").then((v) => v.Editor)
|
|
3738
|
-
), c =
|
|
3765
|
+
), c = Ne(
|
|
3739
3766
|
() => import("./index.esm-C9sEwyHF.mjs").then((v) => v.Toolbar)
|
|
3740
|
-
), m =
|
|
3741
|
-
|
|
3767
|
+
), m = Ge(), b = B(e.modelValue), T = B(!1);
|
|
3768
|
+
ge(() => {
|
|
3742
3769
|
T.value = !0;
|
|
3743
3770
|
}), ie(
|
|
3744
3771
|
() => e.modelValue,
|
|
@@ -3746,7 +3773,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3746
3773
|
v !== b.value && (b.value = v);
|
|
3747
3774
|
}
|
|
3748
3775
|
);
|
|
3749
|
-
const
|
|
3776
|
+
const S = V(() => ({ height: typeof e.height == "number" ? `${e.height}px` : e.height })), D = V(() => {
|
|
3750
3777
|
const v = {
|
|
3751
3778
|
excludeKeys: []
|
|
3752
3779
|
};
|
|
@@ -3806,7 +3833,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3806
3833
|
"redo",
|
|
3807
3834
|
"fullScreen"
|
|
3808
3835
|
];
|
|
3809
|
-
v.excludeKeys = x.filter((
|
|
3836
|
+
v.excludeKeys = x.filter((A) => !e.toolbar.includes(A));
|
|
3810
3837
|
}
|
|
3811
3838
|
return v;
|
|
3812
3839
|
}), $ = V(() => ({
|
|
@@ -3818,19 +3845,19 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3818
3845
|
uploadImage: {
|
|
3819
3846
|
// 自定义上传
|
|
3820
3847
|
async customUpload(v, x) {
|
|
3821
|
-
const
|
|
3822
|
-
x(
|
|
3848
|
+
const A = URL.createObjectURL(v);
|
|
3849
|
+
x(A, v.name, A);
|
|
3823
3850
|
}
|
|
3824
3851
|
},
|
|
3825
3852
|
// 上传视频配置
|
|
3826
3853
|
uploadVideo: {
|
|
3827
3854
|
async customUpload(v, x) {
|
|
3828
|
-
const
|
|
3829
|
-
x(
|
|
3855
|
+
const A = URL.createObjectURL(v);
|
|
3856
|
+
x(A, "");
|
|
3830
3857
|
}
|
|
3831
3858
|
}
|
|
3832
3859
|
}
|
|
3833
|
-
})),
|
|
3860
|
+
})), z = (v) => {
|
|
3834
3861
|
m.value = v;
|
|
3835
3862
|
}, I = (v) => {
|
|
3836
3863
|
const x = v.getHtml();
|
|
@@ -3853,7 +3880,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3853
3880
|
var v;
|
|
3854
3881
|
b.value = "", (v = m.value) == null || v.clear();
|
|
3855
3882
|
}
|
|
3856
|
-
}),
|
|
3883
|
+
}), Je(() => {
|
|
3857
3884
|
const v = m.value;
|
|
3858
3885
|
v && v.destroy();
|
|
3859
3886
|
}), (v, x) => (i(), d("div", {
|
|
@@ -3866,27 +3893,27 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3866
3893
|
"default-config": D.value,
|
|
3867
3894
|
mode: s.mode,
|
|
3868
3895
|
class: "x-rich-editor__toolbar"
|
|
3869
|
-
}, null, 8, ["editor", "default-config", "mode"])) :
|
|
3896
|
+
}, null, 8, ["editor", "default-config", "mode"])) : U("", !0),
|
|
3870
3897
|
Q(n(l), {
|
|
3871
3898
|
modelValue: b.value,
|
|
3872
|
-
"onUpdate:modelValue": x[0] || (x[0] = (
|
|
3899
|
+
"onUpdate:modelValue": x[0] || (x[0] = (A) => b.value = A),
|
|
3873
3900
|
"default-config": $.value,
|
|
3874
3901
|
mode: s.mode,
|
|
3875
|
-
style: te(
|
|
3902
|
+
style: te(S.value),
|
|
3876
3903
|
class: "x-rich-editor__content",
|
|
3877
|
-
onOnCreated:
|
|
3904
|
+
onOnCreated: z,
|
|
3878
3905
|
onOnChange: I,
|
|
3879
3906
|
onOnFocus: y,
|
|
3880
3907
|
onOnBlur: L
|
|
3881
3908
|
}, null, 8, ["modelValue", "default-config", "mode", "style"])
|
|
3882
3909
|
], 64)) : (i(), d("div", {
|
|
3883
3910
|
key: 1,
|
|
3884
|
-
style: te(
|
|
3911
|
+
style: te(S.value),
|
|
3885
3912
|
class: "x-rich-editor__placeholder"
|
|
3886
|
-
},
|
|
3913
|
+
}, N(s.placeholder), 5))
|
|
3887
3914
|
], 2));
|
|
3888
3915
|
}
|
|
3889
|
-
}),
|
|
3916
|
+
}), Ia = ["value", "placeholder"], Pa = ["onClick"], Ea = ["onClick"], Oa = ["checked", "onChange"], gt = /* @__PURE__ */ le({
|
|
3890
3917
|
name: "XCascader",
|
|
3891
3918
|
__name: "index",
|
|
3892
3919
|
props: {
|
|
@@ -3903,24 +3930,24 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3903
3930
|
},
|
|
3904
3931
|
emits: ["update:modelValue", "change"],
|
|
3905
3932
|
setup(s, { emit: k }) {
|
|
3906
|
-
const a = s, e = k, t = ae("cascader"), l =
|
|
3907
|
-
|
|
3908
|
-
const b =
|
|
3933
|
+
const a = s, e = k, t = ae("cascader"), l = B(!1), c = B([]), m = B([]);
|
|
3934
|
+
B("");
|
|
3935
|
+
const b = B(""), T = B();
|
|
3909
3936
|
V(() => ({
|
|
3910
3937
|
value: a.props.value || "value",
|
|
3911
3938
|
label: a.props.label || "label",
|
|
3912
3939
|
children: a.props.children || "children",
|
|
3913
3940
|
disabled: a.props.disabled || "disabled"
|
|
3914
3941
|
}));
|
|
3915
|
-
const
|
|
3916
|
-
if (
|
|
3942
|
+
const S = V(() => a.props.multiple), D = V(() => a.props.checkStrictly), $ = V(() => {
|
|
3943
|
+
if (S.value)
|
|
3917
3944
|
return m.value.length === 0 ? "" : m.value.map((w) => y(w)).join(", ");
|
|
3918
3945
|
if (c.value.length === 0) return "";
|
|
3919
3946
|
if (a.showAllLevels)
|
|
3920
3947
|
return c.value.map((w) => L(w, c.value)).join(a.separator);
|
|
3921
3948
|
const p = c.value[c.value.length - 1];
|
|
3922
3949
|
return L(p, c.value);
|
|
3923
|
-
}),
|
|
3950
|
+
}), z = V(() => {
|
|
3924
3951
|
var w;
|
|
3925
3952
|
const p = [a.options];
|
|
3926
3953
|
if (c.value.length > 0) {
|
|
@@ -3959,8 +3986,8 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3959
3986
|
var o;
|
|
3960
3987
|
if (p.disabled) return;
|
|
3961
3988
|
const C = c.value.slice(0, w);
|
|
3962
|
-
C.push(p.value), c.value = C, (!((o = p.children) != null && o.length) || D.value) && (
|
|
3963
|
-
},
|
|
3989
|
+
C.push(p.value), c.value = C, (!((o = p.children) != null && o.length) || D.value) && (S.value || (l.value = !1, v(C)));
|
|
3990
|
+
}, O = (p, w, C) => {
|
|
3964
3991
|
const o = [...c.value.slice(0, w), p.value];
|
|
3965
3992
|
C ? m.value.some((f) => JSON.stringify(f) === JSON.stringify(o)) || m.value.push(o) : m.value = m.value.filter((f) => JSON.stringify(f) !== JSON.stringify(o)), x();
|
|
3966
3993
|
}, M = (p, w) => {
|
|
@@ -3972,19 +3999,19 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
3972
3999
|
}, x = () => {
|
|
3973
4000
|
const p = a.props.emitPath !== !1 ? m.value : m.value.map((w) => w[w.length - 1]);
|
|
3974
4001
|
e("update:modelValue", p), e("change", p);
|
|
3975
|
-
},
|
|
3976
|
-
c.value = [], m.value = [], e("update:modelValue",
|
|
4002
|
+
}, A = () => {
|
|
4003
|
+
c.value = [], m.value = [], e("update:modelValue", S.value ? [] : ""), e("change", S.value ? [] : "");
|
|
3977
4004
|
}, F = (p) => {
|
|
3978
4005
|
b.value = p.target.value;
|
|
3979
|
-
},
|
|
4006
|
+
}, Y = (p) => {
|
|
3980
4007
|
c.value = p.map((w) => w.value), b.value = "", l.value = !1, v(c.value);
|
|
3981
|
-
},
|
|
4008
|
+
}, G = (p) => {
|
|
3982
4009
|
p.target.closest(`.${t.b()}`) || (l.value = !1);
|
|
3983
4010
|
};
|
|
3984
4011
|
return ie(l, (p) => {
|
|
3985
|
-
p ? document.addEventListener("click",
|
|
4012
|
+
p ? document.addEventListener("click", G) : (document.removeEventListener("click", G), b.value = "");
|
|
3986
4013
|
}), ie(() => a.modelValue, (p) => {
|
|
3987
|
-
|
|
4014
|
+
S.value ? m.value = Array.isArray(p) ? p : [] : Array.isArray(p) ? c.value = p : p !== "" && p !== null && p !== void 0 ? c.value = [p] : c.value = [];
|
|
3988
4015
|
}, { immediate: !0 }), (p, w) => (i(), d("div", {
|
|
3989
4016
|
class: u([n(t).b(), n(t).m(s.size), n(t).is("disabled", s.disabled)]),
|
|
3990
4017
|
onClick: w[2] || (w[2] = ue(() => {
|
|
@@ -4000,27 +4027,27 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4000
4027
|
placeholder: $.value || s.placeholder,
|
|
4001
4028
|
class: u(n(t).e("filter-input")),
|
|
4002
4029
|
onInput: F
|
|
4003
|
-
}, null, 42,
|
|
4030
|
+
}, null, 42, Ia)) : (i(), d("span", {
|
|
4004
4031
|
key: 1,
|
|
4005
4032
|
class: u(n(t).e("text"))
|
|
4006
4033
|
}, [
|
|
4007
4034
|
$.value ? (i(), d(J, { key: 0 }, [
|
|
4008
|
-
de(
|
|
4035
|
+
de(N($.value), 1)
|
|
4009
4036
|
], 64)) : (i(), d("span", {
|
|
4010
4037
|
key: 1,
|
|
4011
4038
|
class: u(n(t).e("placeholder"))
|
|
4012
|
-
},
|
|
4039
|
+
}, N(s.placeholder), 3))
|
|
4013
4040
|
], 2)),
|
|
4014
4041
|
s.clearable && $.value ? (i(), d("span", {
|
|
4015
4042
|
key: 2,
|
|
4016
4043
|
class: u(n(t).e("clear")),
|
|
4017
|
-
onClick: ue(
|
|
4044
|
+
onClick: ue(A, ["stop"])
|
|
4018
4045
|
}, [
|
|
4019
4046
|
Q(n(ee), {
|
|
4020
4047
|
name: "close-circle",
|
|
4021
4048
|
size: 14
|
|
4022
4049
|
})
|
|
4023
|
-
], 2)) :
|
|
4050
|
+
], 2)) : U("", !0),
|
|
4024
4051
|
r("span", {
|
|
4025
4052
|
class: u(n(t).e("arrow"))
|
|
4026
4053
|
}, [
|
|
@@ -4040,19 +4067,19 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4040
4067
|
(i(!0), d(J, null, _(I.value, (C, o) => (i(), d("div", {
|
|
4041
4068
|
key: o,
|
|
4042
4069
|
class: u(n(t).e("filter-item")),
|
|
4043
|
-
onClick: (f) =>
|
|
4044
|
-
},
|
|
4070
|
+
onClick: (f) => Y(C.path)
|
|
4071
|
+
}, N(C.label), 11, Pa))), 128)),
|
|
4045
4072
|
I.value.length === 0 ? (i(), d("div", {
|
|
4046
4073
|
key: 0,
|
|
4047
4074
|
class: u(n(t).e("empty"))
|
|
4048
|
-
}, " 无匹配数据 ", 2)) :
|
|
4075
|
+
}, " 无匹配数据 ", 2)) : U("", !0)
|
|
4049
4076
|
], 2)) : (i(), d("div", {
|
|
4050
4077
|
key: 1,
|
|
4051
4078
|
class: u(n(t).e("menu")),
|
|
4052
4079
|
ref_key: "menuRef",
|
|
4053
4080
|
ref: T
|
|
4054
4081
|
}, [
|
|
4055
|
-
(i(!0), d(J, null, _(
|
|
4082
|
+
(i(!0), d(J, null, _(z.value, (C, o) => (i(), d("div", {
|
|
4056
4083
|
key: o,
|
|
4057
4084
|
class: u(n(t).e("column"))
|
|
4058
4085
|
}, [
|
|
@@ -4067,7 +4094,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4067
4094
|
]),
|
|
4068
4095
|
onClick: (X) => H(f, o)
|
|
4069
4096
|
}, [
|
|
4070
|
-
|
|
4097
|
+
S.value ? (i(), d("span", {
|
|
4071
4098
|
key: 0,
|
|
4072
4099
|
class: u(n(t).e("checkbox")),
|
|
4073
4100
|
onClick: w[1] || (w[1] = ue(() => {
|
|
@@ -4076,12 +4103,12 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4076
4103
|
r("input", {
|
|
4077
4104
|
type: "checkbox",
|
|
4078
4105
|
checked: M(f, o),
|
|
4079
|
-
onChange: (X) =>
|
|
4080
|
-
}, null, 40,
|
|
4081
|
-
], 2)) :
|
|
4106
|
+
onChange: (X) => O(f, o, X.target.checked)
|
|
4107
|
+
}, null, 40, Oa)
|
|
4108
|
+
], 2)) : U("", !0),
|
|
4082
4109
|
r("span", {
|
|
4083
4110
|
class: u(n(t).e("label"))
|
|
4084
|
-
},
|
|
4111
|
+
}, N(f.label), 3),
|
|
4085
4112
|
(g = f.children) != null && g.length ? (i(), d("span", {
|
|
4086
4113
|
key: 1,
|
|
4087
4114
|
class: u(n(t).e("option-arrow"))
|
|
@@ -4090,17 +4117,17 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4090
4117
|
name: "right",
|
|
4091
4118
|
size: 12
|
|
4092
4119
|
})
|
|
4093
|
-
], 2)) :
|
|
4094
|
-
], 10,
|
|
4120
|
+
], 2)) : U("", !0)
|
|
4121
|
+
], 10, Ea);
|
|
4095
4122
|
}), 128))
|
|
4096
4123
|
], 2))), 128))
|
|
4097
4124
|
], 2))
|
|
4098
4125
|
], 2), [
|
|
4099
|
-
[
|
|
4126
|
+
[be, l.value]
|
|
4100
4127
|
])
|
|
4101
4128
|
], 2));
|
|
4102
4129
|
}
|
|
4103
|
-
}),
|
|
4130
|
+
}), Ya = ["onClick"], bt = /* @__PURE__ */ le({
|
|
4104
4131
|
name: "XColorPicker",
|
|
4105
4132
|
__name: "index",
|
|
4106
4133
|
props: {
|
|
@@ -4112,75 +4139,75 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4112
4139
|
},
|
|
4113
4140
|
emits: ["update:modelValue", "change"],
|
|
4114
4141
|
setup(s, { emit: k }) {
|
|
4115
|
-
const a = s, e = k, t = ae("color-picker"), l =
|
|
4116
|
-
|
|
4117
|
-
const p =
|
|
4142
|
+
const a = s, e = k, t = ae("color-picker"), l = B(!1), c = B(0), m = B(100), b = B(100), T = B(100), S = B(), D = B(), $ = V(() => y(c.value, m.value, b.value)), z = V(() => a.showAlpha ? `${$.value}${Math.round(T.value * 2.55).toString(16).padStart(2, "0")}` : $.value), I = V(() => a.modelValue || $.value), y = (F, Y, G) => {
|
|
4143
|
+
Y /= 100, G /= 100;
|
|
4144
|
+
const p = G * Y, w = p * (1 - Math.abs(F / 60 % 2 - 1)), C = G - p;
|
|
4118
4145
|
let o = 0, f = 0, g = 0;
|
|
4119
4146
|
F >= 0 && F < 60 ? (o = p, f = w, g = 0) : F >= 60 && F < 120 ? (o = w, f = p, g = 0) : F >= 120 && F < 180 ? (o = 0, f = p, g = w) : F >= 180 && F < 240 ? (o = 0, f = w, g = p) : F >= 240 && F < 300 ? (o = w, f = 0, g = p) : (o = p, f = 0, g = w);
|
|
4120
4147
|
const X = (ne) => Math.round((ne + C) * 255).toString(16).padStart(2, "0");
|
|
4121
4148
|
return `#${X(o)}${X(f)}${X(g)}`;
|
|
4122
4149
|
}, L = (F) => {
|
|
4123
4150
|
F = F.replace("#", "");
|
|
4124
|
-
const
|
|
4151
|
+
const Y = parseInt(F.slice(0, 2), 16) / 255, G = parseInt(F.slice(2, 4), 16) / 255, p = parseInt(F.slice(4, 6), 16) / 255, w = Math.max(Y, G, p), C = Math.min(Y, G, p), o = w - C;
|
|
4125
4152
|
let f = 0;
|
|
4126
4153
|
const g = w === 0 ? 0 : o / w, X = w;
|
|
4127
4154
|
if (o !== 0)
|
|
4128
4155
|
switch (w) {
|
|
4129
|
-
case
|
|
4130
|
-
f = ((
|
|
4156
|
+
case Y:
|
|
4157
|
+
f = ((G - p) / o + (G < p ? 6 : 0)) * 60;
|
|
4131
4158
|
break;
|
|
4132
|
-
case
|
|
4133
|
-
f = ((p -
|
|
4159
|
+
case G:
|
|
4160
|
+
f = ((p - Y) / o + 2) * 60;
|
|
4134
4161
|
break;
|
|
4135
4162
|
case p:
|
|
4136
|
-
f = ((
|
|
4163
|
+
f = ((Y - G) / o + 4) * 60;
|
|
4137
4164
|
break;
|
|
4138
4165
|
}
|
|
4139
4166
|
return { h: f, s: g * 100, v: X * 100 };
|
|
4140
4167
|
}, H = (F) => {
|
|
4141
|
-
if (!
|
|
4142
|
-
const
|
|
4143
|
-
m.value = Math.round(
|
|
4144
|
-
},
|
|
4168
|
+
if (!S.value) return;
|
|
4169
|
+
const Y = S.value.getBoundingClientRect(), G = Math.max(0, Math.min(1, (F.clientX - Y.left) / Y.width)), p = Math.max(0, Math.min(1, (F.clientY - Y.top) / Y.height));
|
|
4170
|
+
m.value = Math.round(G * 100), b.value = Math.round((1 - p) * 100);
|
|
4171
|
+
}, O = (F) => {
|
|
4145
4172
|
if (!D.value) return;
|
|
4146
|
-
const
|
|
4147
|
-
c.value = Math.round(
|
|
4173
|
+
const Y = D.value.getBoundingClientRect(), G = Math.max(0, Math.min(1, (F.clientX - Y.left) / Y.width));
|
|
4174
|
+
c.value = Math.round(G * 360);
|
|
4148
4175
|
}, M = (F) => {
|
|
4149
4176
|
if (!D.value) return;
|
|
4150
|
-
const
|
|
4151
|
-
T.value = Math.round(
|
|
4177
|
+
const Y = D.value.getBoundingClientRect(), G = Math.max(0, Math.min(1, (F.clientX - Y.left) / Y.width));
|
|
4178
|
+
T.value = Math.round(G * 100);
|
|
4152
4179
|
}, h = (F) => {
|
|
4153
|
-
const
|
|
4154
|
-
c.value =
|
|
4180
|
+
const Y = L(F);
|
|
4181
|
+
c.value = Y.h, m.value = Y.s, b.value = Y.v, e("update:modelValue", F), e("change", F);
|
|
4155
4182
|
}, v = () => {
|
|
4156
|
-
e("update:modelValue",
|
|
4183
|
+
e("update:modelValue", z.value), e("change", z.value), l.value = !1;
|
|
4157
4184
|
}, x = () => {
|
|
4158
4185
|
e("update:modelValue", ""), e("change", ""), l.value = !1;
|
|
4159
|
-
},
|
|
4186
|
+
}, A = (F) => {
|
|
4160
4187
|
F.target.closest(`.${t.b()}`) || (l.value = !1);
|
|
4161
4188
|
};
|
|
4162
4189
|
return ie(l, (F) => {
|
|
4163
4190
|
if (F) {
|
|
4164
|
-
if (document.addEventListener("click",
|
|
4165
|
-
const
|
|
4166
|
-
c.value =
|
|
4191
|
+
if (document.addEventListener("click", A), a.modelValue) {
|
|
4192
|
+
const Y = L(a.modelValue.slice(0, 7));
|
|
4193
|
+
c.value = Y.h, m.value = Y.s, b.value = Y.v, a.showAlpha && a.modelValue.length === 9 && (T.value = Math.round(parseInt(a.modelValue.slice(7, 9), 16) / 2.55));
|
|
4167
4194
|
}
|
|
4168
4195
|
} else
|
|
4169
|
-
document.removeEventListener("click",
|
|
4170
|
-
}), (F,
|
|
4196
|
+
document.removeEventListener("click", A);
|
|
4197
|
+
}), (F, Y) => (i(), d("div", {
|
|
4171
4198
|
class: u([n(t).b(), n(t).m(s.size), n(t).is("disabled", s.disabled)]),
|
|
4172
|
-
onClick:
|
|
4199
|
+
onClick: Y[1] || (Y[1] = ue(() => {
|
|
4173
4200
|
}, ["stop"]))
|
|
4174
4201
|
}, [
|
|
4175
4202
|
r("div", {
|
|
4176
4203
|
class: u(n(t).e("trigger")),
|
|
4177
|
-
onClick:
|
|
4204
|
+
onClick: Y[0] || (Y[0] = (G) => !s.disabled && (l.value = !l.value))
|
|
4178
4205
|
}, [
|
|
4179
4206
|
r("div", {
|
|
4180
4207
|
class: u(n(t).e("color")),
|
|
4181
4208
|
style: te({ backgroundColor: I.value })
|
|
4182
4209
|
}, [
|
|
4183
|
-
I.value ?
|
|
4210
|
+
I.value ? U("", !0) : (i(), fe(n(ee), {
|
|
4184
4211
|
key: 0,
|
|
4185
4212
|
name: "close",
|
|
4186
4213
|
size: 12
|
|
@@ -4192,7 +4219,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4192
4219
|
}, [
|
|
4193
4220
|
r("div", {
|
|
4194
4221
|
ref_key: "panelRef",
|
|
4195
|
-
ref:
|
|
4222
|
+
ref: S,
|
|
4196
4223
|
class: u(n(t).e("panel")),
|
|
4197
4224
|
style: te({
|
|
4198
4225
|
backgroundColor: `hsl(${c.value}, 100%, 50%)`
|
|
@@ -4220,7 +4247,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4220
4247
|
ref_key: "sliderRef",
|
|
4221
4248
|
ref: D,
|
|
4222
4249
|
class: u(n(t).e("hue-bar")),
|
|
4223
|
-
onClick:
|
|
4250
|
+
onClick: O
|
|
4224
4251
|
}, [
|
|
4225
4252
|
r("div", {
|
|
4226
4253
|
class: u(n(t).e("hue-thumb")),
|
|
@@ -4244,24 +4271,24 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4244
4271
|
style: te({ left: `${T.value}%` })
|
|
4245
4272
|
}, null, 6)
|
|
4246
4273
|
], 6)
|
|
4247
|
-
], 2)) :
|
|
4274
|
+
], 2)) : U("", !0),
|
|
4248
4275
|
s.predefine.length ? (i(), d("div", {
|
|
4249
4276
|
key: 1,
|
|
4250
4277
|
class: u(n(t).e("predefine"))
|
|
4251
4278
|
}, [
|
|
4252
|
-
(i(!0), d(J, null, _(s.predefine, (
|
|
4279
|
+
(i(!0), d(J, null, _(s.predefine, (G, p) => (i(), d("div", {
|
|
4253
4280
|
key: p,
|
|
4254
4281
|
class: u(n(t).e("predefine-item")),
|
|
4255
|
-
style: te({ backgroundColor:
|
|
4256
|
-
onClick: (w) => h(
|
|
4257
|
-
}, null, 14,
|
|
4258
|
-
], 2)) :
|
|
4282
|
+
style: te({ backgroundColor: G }),
|
|
4283
|
+
onClick: (w) => h(G)
|
|
4284
|
+
}, null, 14, Ya))), 128))
|
|
4285
|
+
], 2)) : U("", !0),
|
|
4259
4286
|
r("div", {
|
|
4260
4287
|
class: u(n(t).e("actions"))
|
|
4261
4288
|
}, [
|
|
4262
4289
|
r("span", {
|
|
4263
4290
|
class: u(n(t).e("value"))
|
|
4264
|
-
},
|
|
4291
|
+
}, N(z.value), 3),
|
|
4265
4292
|
r("div", {
|
|
4266
4293
|
class: u(n(t).e("btns"))
|
|
4267
4294
|
}, [
|
|
@@ -4276,11 +4303,11 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4276
4303
|
], 2)
|
|
4277
4304
|
], 2)
|
|
4278
4305
|
], 2), [
|
|
4279
|
-
[
|
|
4306
|
+
[be, l.value]
|
|
4280
4307
|
])
|
|
4281
4308
|
], 2));
|
|
4282
4309
|
}
|
|
4283
|
-
}),
|
|
4310
|
+
}), Na = ["value", "placeholder", "disabled"], Ua = ["onClick"], yt = /* @__PURE__ */ le({
|
|
4284
4311
|
name: "XAutoComplete",
|
|
4285
4312
|
__name: "index",
|
|
4286
4313
|
props: {
|
|
@@ -4297,15 +4324,15 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4297
4324
|
},
|
|
4298
4325
|
emits: ["update:modelValue", "select", "clear"],
|
|
4299
4326
|
setup(s, { emit: k }) {
|
|
4300
|
-
const a = s, e = k, t = ae("auto-complete"), l =
|
|
4327
|
+
const a = s, e = k, t = ae("auto-complete"), l = B(!1), c = B(a.modelValue), m = B([]), b = B(-1), T = B(), S = B(!1);
|
|
4301
4328
|
let D = null;
|
|
4302
4329
|
const $ = (M) => {
|
|
4303
|
-
a.fetchSuggestions ? (
|
|
4304
|
-
m.value = h,
|
|
4330
|
+
a.fetchSuggestions ? (S.value = !0, a.fetchSuggestions(M, (h) => {
|
|
4331
|
+
m.value = h, S.value = !1, l.value = h.length > 0;
|
|
4305
4332
|
})) : a.suggestions.length && (m.value = a.suggestions.filter(
|
|
4306
4333
|
(h) => h[a.valueKey].toLowerCase().includes(M.toLowerCase())
|
|
4307
4334
|
), l.value = m.value.length > 0);
|
|
4308
|
-
},
|
|
4335
|
+
}, z = (M) => {
|
|
4309
4336
|
const h = M.target.value;
|
|
4310
4337
|
c.value = h, e("update:modelValue", h), b.value = -1, D && clearTimeout(D), D = setTimeout(() => {
|
|
4311
4338
|
h || a.triggerOnFocus ? $(h) : l.value = !1;
|
|
@@ -4336,11 +4363,11 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4336
4363
|
}, H = () => {
|
|
4337
4364
|
var M;
|
|
4338
4365
|
c.value = "", e("update:modelValue", ""), e("clear"), l.value = !1, (M = T.value) == null || M.focus();
|
|
4339
|
-
},
|
|
4366
|
+
}, O = (M) => {
|
|
4340
4367
|
M.target.closest(`.${t.b()}`) || (l.value = !1);
|
|
4341
4368
|
};
|
|
4342
4369
|
return ie(l, (M) => {
|
|
4343
|
-
M ? document.addEventListener("click",
|
|
4370
|
+
M ? document.addEventListener("click", O) : (document.removeEventListener("click", O), b.value = -1);
|
|
4344
4371
|
}), ie(() => a.modelValue, (M) => {
|
|
4345
4372
|
c.value = M;
|
|
4346
4373
|
}), (M, h) => (i(), d("div", {
|
|
@@ -4358,10 +4385,10 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4358
4385
|
placeholder: s.placeholder,
|
|
4359
4386
|
disabled: s.disabled,
|
|
4360
4387
|
class: u(n(t).e("inner")),
|
|
4361
|
-
onInput:
|
|
4388
|
+
onInput: z,
|
|
4362
4389
|
onFocus: I,
|
|
4363
4390
|
onKeydown: L
|
|
4364
|
-
}, null, 42,
|
|
4391
|
+
}, null, 42, Na),
|
|
4365
4392
|
s.clearable && c.value ? (i(), d("span", {
|
|
4366
4393
|
key: 0,
|
|
4367
4394
|
class: u(n(t).e("clear")),
|
|
@@ -4371,8 +4398,8 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4371
4398
|
name: "close-circle",
|
|
4372
4399
|
size: 14
|
|
4373
4400
|
})
|
|
4374
|
-
], 2)) :
|
|
4375
|
-
|
|
4401
|
+
], 2)) : U("", !0),
|
|
4402
|
+
S.value ? (i(), d("span", {
|
|
4376
4403
|
key: 1,
|
|
4377
4404
|
class: u(n(t).e("loading"))
|
|
4378
4405
|
}, [
|
|
@@ -4380,7 +4407,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4380
4407
|
name: "loading",
|
|
4381
4408
|
size: 14
|
|
4382
4409
|
})
|
|
4383
|
-
], 2)) :
|
|
4410
|
+
], 2)) : U("", !0)
|
|
4384
4411
|
], 2),
|
|
4385
4412
|
oe(r("div", {
|
|
4386
4413
|
class: u(n(t).e("dropdown"))
|
|
@@ -4394,19 +4421,19 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4394
4421
|
n(t).e("item"),
|
|
4395
4422
|
n(t).is("highlighted", x === b.value)
|
|
4396
4423
|
]),
|
|
4397
|
-
onClick: (
|
|
4424
|
+
onClick: (A) => y(v)
|
|
4398
4425
|
}, [
|
|
4399
4426
|
se(M.$slots, "default", { item: v }, () => [
|
|
4400
|
-
de(
|
|
4427
|
+
de(N(v[s.valueKey]), 1)
|
|
4401
4428
|
])
|
|
4402
|
-
], 10,
|
|
4429
|
+
], 10, Ua))), 128))
|
|
4403
4430
|
], 2)
|
|
4404
4431
|
], 2), [
|
|
4405
|
-
[
|
|
4432
|
+
[be, l.value && m.value.length]
|
|
4406
4433
|
])
|
|
4407
4434
|
], 2));
|
|
4408
4435
|
}
|
|
4409
|
-
}),
|
|
4436
|
+
}), Xa = ["onClick"], kt = /* @__PURE__ */ le({
|
|
4410
4437
|
name: "XSegmented",
|
|
4411
4438
|
__name: "index",
|
|
4412
4439
|
props: {
|
|
@@ -4418,17 +4445,17 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4418
4445
|
},
|
|
4419
4446
|
emits: ["update:modelValue", "change"],
|
|
4420
4447
|
setup(s, { emit: k }) {
|
|
4421
|
-
const a = s, e = k, t = ae("segmented"), l =
|
|
4448
|
+
const a = s, e = k, t = ae("segmented"), l = B(), c = V(() => a.options.map((S) => typeof S == "string" || typeof S == "number" ? { label: String(S), value: S } : S)), m = V(() => c.value.findIndex((S) => S.value === a.modelValue)), b = V(() => {
|
|
4422
4449
|
if (!l.value || m.value < 0) return {};
|
|
4423
4450
|
const D = l.value.querySelectorAll(`.${t.e("item")}`)[m.value];
|
|
4424
4451
|
return D ? {
|
|
4425
4452
|
width: `${D.offsetWidth}px`,
|
|
4426
4453
|
transform: `translateX(${D.offsetLeft}px)`
|
|
4427
4454
|
} : {};
|
|
4428
|
-
}), T = (
|
|
4429
|
-
a.disabled ||
|
|
4455
|
+
}), T = (S) => {
|
|
4456
|
+
a.disabled || S.disabled || (e("update:modelValue", S.value), e("change", S.value));
|
|
4430
4457
|
};
|
|
4431
|
-
return (
|
|
4458
|
+
return (S, D) => (i(), d("div", {
|
|
4432
4459
|
ref_key: "containerRef",
|
|
4433
4460
|
ref: l,
|
|
4434
4461
|
class: u([
|
|
@@ -4442,22 +4469,22 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4442
4469
|
class: u(n(t).e("thumb")),
|
|
4443
4470
|
style: te(b.value)
|
|
4444
4471
|
}, null, 6),
|
|
4445
|
-
(i(!0), d(J, null, _(c.value, ($,
|
|
4446
|
-
key:
|
|
4472
|
+
(i(!0), d(J, null, _(c.value, ($, z) => (i(), d("div", {
|
|
4473
|
+
key: z,
|
|
4447
4474
|
class: u([
|
|
4448
4475
|
n(t).e("item"),
|
|
4449
|
-
n(t).is("selected",
|
|
4476
|
+
n(t).is("selected", z === m.value),
|
|
4450
4477
|
n(t).is("disabled", $.disabled)
|
|
4451
4478
|
]),
|
|
4452
4479
|
onClick: (I) => T($)
|
|
4453
4480
|
}, [
|
|
4454
|
-
se(
|
|
4455
|
-
de(
|
|
4481
|
+
se(S.$slots, "default", { option: $ }, () => [
|
|
4482
|
+
de(N($.label), 1)
|
|
4456
4483
|
])
|
|
4457
|
-
], 10,
|
|
4484
|
+
], 10, Xa))), 128))
|
|
4458
4485
|
], 2));
|
|
4459
4486
|
}
|
|
4460
|
-
}),
|
|
4487
|
+
}), Ka = ["value", "placeholder", "disabled"], Wa = ["onClick"], qa = ["src"], Mt = /* @__PURE__ */ le({
|
|
4461
4488
|
name: "XMention",
|
|
4462
4489
|
__name: "index",
|
|
4463
4490
|
props: {
|
|
@@ -4472,23 +4499,23 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4472
4499
|
},
|
|
4473
4500
|
emits: ["update:modelValue", "select", "change"],
|
|
4474
4501
|
setup(s, { emit: k }) {
|
|
4475
|
-
const a = s, e = k, t = ae("mention"), l =
|
|
4502
|
+
const a = s, e = k, t = ae("mention"), l = B(a.modelValue), c = B(!1), m = B([]), b = B(-1), T = B(), S = B(), D = B(0), $ = B(-1), z = (M) => {
|
|
4476
4503
|
m.value = a.options.filter((h) => h.disabled ? !1 : (h.label || h.value).toLowerCase().includes(M.toLowerCase())), c.value = m.value.length > 0, b.value = -1;
|
|
4477
4504
|
}, I = (M) => {
|
|
4478
4505
|
const h = M.target;
|
|
4479
4506
|
l.value = h.value, D.value = h.selectionStart || 0;
|
|
4480
4507
|
const v = l.value.slice(0, D.value), x = v.lastIndexOf(a.prefix);
|
|
4481
4508
|
if (x >= 0) {
|
|
4482
|
-
const
|
|
4483
|
-
$.value = x,
|
|
4509
|
+
const A = v.slice(x + a.prefix.length);
|
|
4510
|
+
$.value = x, z(A);
|
|
4484
4511
|
} else
|
|
4485
4512
|
c.value = !1;
|
|
4486
4513
|
e("update:modelValue", l.value), e("change", l.value);
|
|
4487
4514
|
}, y = (M) => {
|
|
4488
4515
|
const h = l.value.slice(0, $.value), v = l.value.slice(D.value), x = `${a.prefix}${M.value}${a.split}`;
|
|
4489
|
-
l.value = h + x + v, e("update:modelValue", l.value), e("select", M, a.prefix), e("change", l.value), c.value = !1,
|
|
4490
|
-
const
|
|
4491
|
-
T.value && (T.value.setSelectionRange(
|
|
4516
|
+
l.value = h + x + v, e("update:modelValue", l.value), e("select", M, a.prefix), e("change", l.value), c.value = !1, Se(() => {
|
|
4517
|
+
const A = h.length + x.length;
|
|
4518
|
+
T.value && (T.value.setSelectionRange(A, A), T.value.focus()), S.value && (S.value.setSelectionRange(A, A), S.value.focus());
|
|
4492
4519
|
});
|
|
4493
4520
|
}, L = (M) => {
|
|
4494
4521
|
if (c.value)
|
|
@@ -4511,11 +4538,11 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4511
4538
|
}
|
|
4512
4539
|
}, H = () => {
|
|
4513
4540
|
l.value = "", e("update:modelValue", ""), e("change", "");
|
|
4514
|
-
},
|
|
4541
|
+
}, O = (M) => {
|
|
4515
4542
|
M.target.closest(`.${t.b()}`) || (c.value = !1);
|
|
4516
4543
|
};
|
|
4517
4544
|
return ie(c, (M) => {
|
|
4518
|
-
M ? document.addEventListener("click",
|
|
4545
|
+
M ? document.addEventListener("click", O) : document.removeEventListener("click", O);
|
|
4519
4546
|
}), ie(() => a.modelValue, (M) => {
|
|
4520
4547
|
l.value = M;
|
|
4521
4548
|
}), (M, h) => (i(), d("div", {
|
|
@@ -4535,7 +4562,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4535
4562
|
class: u(n(t).e("inner")),
|
|
4536
4563
|
onInput: I,
|
|
4537
4564
|
onKeydown: L
|
|
4538
|
-
}, null, 42,
|
|
4565
|
+
}, null, 42, Ka),
|
|
4539
4566
|
s.clearable && l.value ? (i(), d("span", {
|
|
4540
4567
|
key: 0,
|
|
4541
4568
|
class: u(n(t).e("clear")),
|
|
@@ -4545,7 +4572,7 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4545
4572
|
name: "close-circle",
|
|
4546
4573
|
size: 14
|
|
4547
4574
|
})
|
|
4548
|
-
], 2)) :
|
|
4575
|
+
], 2)) : U("", !0)
|
|
4549
4576
|
], 2),
|
|
4550
4577
|
oe(r("div", {
|
|
4551
4578
|
class: u(n(t).e("dropdown"))
|
|
@@ -4560,52 +4587,52 @@ const Ol = ["onClick"], El = ["placeholder", "disabled", "readonly", "value"], Y
|
|
|
4560
4587
|
n(t).is("highlighted", x === b.value),
|
|
4561
4588
|
n(t).is("disabled", v.disabled)
|
|
4562
4589
|
]),
|
|
4563
|
-
onClick: (
|
|
4590
|
+
onClick: (A) => y(v)
|
|
4564
4591
|
}, [
|
|
4565
4592
|
v.avatar ? (i(), d("img", {
|
|
4566
4593
|
key: 0,
|
|
4567
4594
|
src: v.avatar,
|
|
4568
4595
|
class: u(n(t).e("avatar"))
|
|
4569
|
-
}, null, 10,
|
|
4596
|
+
}, null, 10, qa)) : U("", !0),
|
|
4570
4597
|
r("span", {
|
|
4571
4598
|
class: u(n(t).e("label"))
|
|
4572
|
-
},
|
|
4599
|
+
}, N(v.label || v.value), 3),
|
|
4573
4600
|
r("span", {
|
|
4574
4601
|
class: u(n(t).e("value"))
|
|
4575
|
-
},
|
|
4576
|
-
], 10,
|
|
4602
|
+
}, N(v.value), 3)
|
|
4603
|
+
], 10, Wa))), 128))
|
|
4577
4604
|
], 2)
|
|
4578
4605
|
], 2), [
|
|
4579
|
-
[
|
|
4606
|
+
[be, c.value]
|
|
4580
4607
|
])
|
|
4581
4608
|
], 2));
|
|
4582
4609
|
}
|
|
4583
4610
|
});
|
|
4584
4611
|
export {
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4612
|
+
yt as AutoComplete,
|
|
4613
|
+
gt as Cascader,
|
|
4614
|
+
tt as Checkbox,
|
|
4615
|
+
nt as CheckboxGroup,
|
|
4616
|
+
bt as ColorPicker,
|
|
4617
|
+
ot as DatePicker,
|
|
4618
|
+
ht as DynamicFields,
|
|
4619
|
+
st as Form,
|
|
4620
|
+
ut as FormItem,
|
|
4621
|
+
Ja as Input,
|
|
4622
|
+
Za as InputNumber,
|
|
4623
|
+
Mt as Mention,
|
|
4624
|
+
et as Radio,
|
|
4625
|
+
at as RadioButton,
|
|
4626
|
+
lt as RadioGroup,
|
|
4627
|
+
mt as Rate,
|
|
4628
|
+
pt as RichEditor,
|
|
4629
|
+
kt as Segmented,
|
|
4630
|
+
rt as Select,
|
|
4631
|
+
dt as SelectOption,
|
|
4632
|
+
vt as Slider,
|
|
4633
|
+
_a as Switch,
|
|
4634
|
+
Qa as Textarea,
|
|
4635
|
+
it as TimePicker,
|
|
4636
|
+
ct as Transfer,
|
|
4637
|
+
ft as Upload
|
|
4611
4638
|
};
|