foucui 2.3.5 → 2.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/foucui.js CHANGED
@@ -13751,7 +13751,7 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
13751
13751
  return A(async () => {
13752
13752
  if (i.embedded || i.mode === "banner" || !Number.isFinite(f) || f <= 0 || !Number.isFinite(h) || h <= 0) {
13753
13753
  if (!J.value) {
13754
- let { createBannerDoc: e, createBadgeDoc: t } = await Promise.resolve().then(() => lA);
13754
+ let { createBannerDoc: e, createBadgeDoc: t } = await Promise.resolve().then(() => DA);
13755
13755
  J.value = i.mode === "banner" ? e() : t({ mode: i.mode || (g.value ? "desk" : "badge") }), M.value = M.value || (i.mode === "banner" ? "Banner 草稿" : "模板草稿"), ue.value = J.value.canvas.widthMm, de.value = J.value.canvas.heightMm, ae.value = !1;
13756
13756
  }
13757
13757
  } else await eo();
@@ -18295,19 +18295,397 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18295
18295
  _: 3
18296
18296
  }, 8, ["content", "disabled"])]));
18297
18297
  }
18298
- }), _b = /* @__PURE__ */ X({ default: () => vb }), vb = /*#__PURE__*/ Z(gb, [["__scopeId", "data-v-98b80dc2"]]), yb = { class: "fou-result__icon" }, bb = {
18298
+ }), _b = /* @__PURE__ */ X({ default: () => vb }), vb = /*#__PURE__*/ Z(gb, [["__scopeId", "data-v-98b80dc2"]]);
18299
+ //#endregion
18300
+ //#region components/FouTable/excelTemplate.ts
18301
+ function yb(e, t) {
18302
+ return e.replace(/\{\{\s*([^}]+?)\s*\}\}/g, (e, n) => {
18303
+ let r = t[n.trim()];
18304
+ return r == null ? "" : String(r);
18305
+ });
18306
+ }
18307
+ async function bb(e) {
18308
+ if (e instanceof ArrayBuffer) return e;
18309
+ if (ArrayBuffer.isView(e)) {
18310
+ let t = e;
18311
+ return t.buffer.slice(t.byteOffset, t.byteOffset + t.byteLength);
18312
+ }
18313
+ return e.arrayBuffer();
18314
+ }
18315
+ function xb(e, t) {
18316
+ let n = document.createElement("a");
18317
+ n.href = URL.createObjectURL(e), n.download = t, n.click(), URL.revokeObjectURL(n.href);
18318
+ }
18319
+ function Sb(e, t) {
18320
+ let n = t.endsWith(".xlsx") ? t : `${t}.xlsx`, r = Uint8Array.from(e);
18321
+ xb(new Blob([r], { type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" }), n);
18322
+ }
18323
+ function Cb(e, t) {
18324
+ let n = typeof t == "number" ? e.SheetNames[t] : t && e.SheetNames.includes(t) ? t : e.SheetNames[0], r = n ? e.Sheets[n] : void 0;
18325
+ if (!r) throw Error("Excel 模板没有可用的工作表");
18326
+ return {
18327
+ name: n,
18328
+ ws: r
18329
+ };
18330
+ }
18331
+ function wb(e) {
18332
+ return e instanceof Date || typeof e == "number" || typeof e == "boolean" ? e : e == null ? "" : String(e);
18333
+ }
18334
+ async function Tb(e) {
18335
+ let t = await import("xlsx"), n = await bb(e.template), r = t.read(n, {
18336
+ type: "array",
18337
+ cellDates: !0
18338
+ }), i = e.data || {};
18339
+ if (Object.keys(i).length && r.SheetNames.forEach((e) => {
18340
+ let n = r.Sheets[e], a = n["!ref"];
18341
+ if (!a) return;
18342
+ let o = t.utils.decode_range(a);
18343
+ for (let e = o.s.r; e <= o.e.r; e++) for (let r = o.s.c; r <= o.e.c; r++) {
18344
+ let a = n[t.utils.encode_cell({
18345
+ r: e,
18346
+ c: r
18347
+ })];
18348
+ !a || typeof a.v != "string" || !a.v.includes("{{") || (a.v = yb(a.v, i), a.t = "s", delete a.w);
18349
+ }
18350
+ }), e.cells) {
18351
+ let { ws: t } = Cb(r);
18352
+ Object.entries(e.cells).forEach(([e, n]) => {
18353
+ t[e] = {
18354
+ t: typeof n == "number" ? "n" : "s",
18355
+ v: wb(n)
18356
+ };
18357
+ });
18358
+ }
18359
+ return e.tables?.forEach((e) => {
18360
+ let { ws: n } = Cb(r, e.sheet), i = e.rows.map((t) => e.columns.map((e) => wb(t[e]))), a = e.writeHeader ? [e.headers || e.columns, ...i] : i;
18361
+ t.utils.sheet_add_aoa(n, a, { origin: e.start });
18362
+ }), t.write(r, {
18363
+ type: "array",
18364
+ bookType: "xlsx"
18365
+ });
18366
+ }
18367
+ async function Eb(e) {
18368
+ Sb(await Tb(e), e.filename || "filled.xlsx");
18369
+ }
18370
+ async function Db(e = {}) {
18371
+ let t = await import("xlsx"), n = e.headers?.length ? e.headers : [
18372
+ "名称",
18373
+ "状态",
18374
+ "数量"
18375
+ ], r = t.utils.aoa_to_sheet([
18376
+ [e.title || "月度报表"],
18377
+ ["标题:{{title}}"],
18378
+ [
18379
+ "日期:{{date}}",
18380
+ "",
18381
+ "部门:{{dept}}"
18382
+ ],
18383
+ [],
18384
+ n
18385
+ ]);
18386
+ r["!cols"] = n.map(() => ({ wch: 18 })), r["!merges"] = [{
18387
+ s: {
18388
+ r: 0,
18389
+ c: 0
18390
+ },
18391
+ e: {
18392
+ r: 0,
18393
+ c: Math.max(n.length - 1, 2)
18394
+ }
18395
+ }];
18396
+ let i = t.utils.book_new();
18397
+ return t.utils.book_append_sheet(i, r, e.sheetName || "报表"), t.write(i, {
18398
+ type: "array",
18399
+ bookType: "xlsx"
18400
+ });
18401
+ }
18402
+ async function Ob(e = {}) {
18403
+ Sb(await Db(e), e.filename || "报表模板.xlsx");
18404
+ }
18405
+ function kb(e, t) {
18406
+ let n = e[t];
18407
+ return !n || n.v == null ? "" : n.w == null ? String(n.v) : String(n.w);
18408
+ }
18409
+ function Ab(e) {
18410
+ return e.every((e) => !String(e ?? "").trim());
18411
+ }
18412
+ async function jb(e) {
18413
+ let t = await import("xlsx"), n = await bb(e.file), r = t.read(n, {
18414
+ type: "array",
18415
+ cellDates: !0
18416
+ }), i = {};
18417
+ if (e.fields) {
18418
+ let { ws: t } = Cb(r);
18419
+ Object.entries(e.fields).forEach(([e, n]) => {
18420
+ i[e] = kb(t, n);
18421
+ });
18422
+ }
18423
+ let a = [];
18424
+ for (let n of e.tables || []) {
18425
+ let { ws: e } = Cb(r, n.sheet), i = t.utils.decode_cell(n.start), o = i.r + +!!n.headerRow, s = n.maxRows ?? 5e3, c = [], l = 0;
18426
+ for (let r = 0; r < s; r++) {
18427
+ let a = o + r, s = n.columns.map((n, r) => kb(e, t.utils.encode_cell({
18428
+ r: a,
18429
+ c: i.c + r
18430
+ })));
18431
+ if (Ab(s)) {
18432
+ if (l++, l >= 2) break;
18433
+ continue;
18434
+ }
18435
+ l = 0;
18436
+ let u = {};
18437
+ n.columns.forEach((e, t) => {
18438
+ u[e] = s[t] ?? "";
18439
+ }), c.push(u);
18440
+ }
18441
+ a.push(c);
18442
+ }
18443
+ return {
18444
+ data: i,
18445
+ rows: a[0] || [],
18446
+ tables: a
18447
+ };
18448
+ }
18449
+ //#endregion
18450
+ //#region components/FouExcelImportExport/index.vue?vue&type=script&setup=true&lang.ts
18451
+ var Mb = { class: "fou-excel-ie__actions" }, Nb = {
18452
+ key: 0,
18453
+ class: "fou-excel-ie__status"
18454
+ }, Pb = /*@__PURE__*/ h({
18455
+ name: "FouExcelImportExport",
18456
+ __name: "index",
18457
+ props: {
18458
+ template: { default: null },
18459
+ rows: { default: () => [] },
18460
+ columns: { default: () => [
18461
+ "name",
18462
+ "status",
18463
+ "count"
18464
+ ] },
18465
+ headers: { default: () => [
18466
+ "名称",
18467
+ "状态",
18468
+ "数量"
18469
+ ] },
18470
+ data: { default: () => ({}) },
18471
+ cells: { default: void 0 },
18472
+ tableStart: { default: "A6" },
18473
+ sheet: { default: void 0 },
18474
+ writeHeader: {
18475
+ type: Boolean,
18476
+ default: !1
18477
+ },
18478
+ importFields: { default: () => ({}) },
18479
+ importTables: { default: void 0 },
18480
+ exportFilename: { default: "导出.xlsx" },
18481
+ sampleFilename: { default: "自定义报表模板.xlsx" },
18482
+ sampleTitle: { default: "报表模板" },
18483
+ size: { default: "default" },
18484
+ disabled: {
18485
+ type: Boolean,
18486
+ default: !1
18487
+ },
18488
+ showDownloadSample: {
18489
+ type: Boolean,
18490
+ default: !0
18491
+ },
18492
+ showStatus: {
18493
+ type: Boolean,
18494
+ default: !0
18495
+ },
18496
+ sampleText: { default: "下载示例模板" },
18497
+ templateText: { default: "上传自定义模板" },
18498
+ exportText: { default: "按模板导出" },
18499
+ importText: { default: "导入填好的 Excel" },
18500
+ requireTemplateForImport: {
18501
+ type: Boolean,
18502
+ default: !1
18503
+ }
18504
+ },
18505
+ emits: [
18506
+ "update:template",
18507
+ "template-change",
18508
+ "export",
18509
+ "import",
18510
+ "error"
18511
+ ],
18512
+ setup(e, { expose: n, emit: r }) {
18513
+ let i = e, o = r, d = F(null), f = F(null), h = F(null), g = F(!1), _ = F(!1), v = a(() => i.template ?? h.value), y = a(() => !!v.value), b = a(() => !i.requireTemplateForImport || y.value), x = a(() => {
18514
+ let e = v.value;
18515
+ return e ? typeof File < "u" && e instanceof File ? e.name : "已设置模板" : "";
18516
+ }), S = (e) => {
18517
+ h.value = e, o("update:template", e), o("template-change", e);
18518
+ }, C = () => {
18519
+ i.disabled || d.value?.click();
18520
+ }, T = () => {
18521
+ i.disabled || !b.value || f.value?.click();
18522
+ }, E = (e) => {
18523
+ let t = e.target, n = t.files?.[0] || null;
18524
+ t.value = "", n && S(n);
18525
+ }, D = async () => {
18526
+ if (!i.disabled) try {
18527
+ await Ob({
18528
+ title: i.sampleTitle,
18529
+ headers: i.headers,
18530
+ filename: i.sampleFilename
18531
+ });
18532
+ } catch (e) {
18533
+ o("error", e, "sample");
18534
+ }
18535
+ }, O = async () => v.value || Db({
18536
+ title: i.sampleTitle,
18537
+ headers: i.headers
18538
+ }), k = async () => {
18539
+ if (!i.disabled) {
18540
+ if (!y.value) {
18541
+ o("error", /* @__PURE__ */ Error("请先上传自定义模板"), "export");
18542
+ return;
18543
+ }
18544
+ g.value = !0;
18545
+ try {
18546
+ await Eb({
18547
+ template: await O(),
18548
+ filename: i.exportFilename,
18549
+ data: i.data,
18550
+ cells: i.cells,
18551
+ tables: [{
18552
+ sheet: i.sheet,
18553
+ start: i.tableStart,
18554
+ columns: i.columns,
18555
+ rows: i.rows,
18556
+ writeHeader: i.writeHeader,
18557
+ headers: i.headers
18558
+ }]
18559
+ }), o("export", {
18560
+ filename: i.exportFilename,
18561
+ rowCount: i.rows.length
18562
+ });
18563
+ } catch (e) {
18564
+ o("error", e, "export");
18565
+ } finally {
18566
+ g.value = !1;
18567
+ }
18568
+ }
18569
+ }, A = async (e) => {
18570
+ let t = e.target, n = t.files?.[0];
18571
+ if (t.value = "", !(!n || i.disabled)) {
18572
+ _.value = !0;
18573
+ try {
18574
+ let e = i.importTables?.length ? i.importTables : [{
18575
+ sheet: i.sheet,
18576
+ start: i.tableStart,
18577
+ columns: i.columns,
18578
+ headerRow: i.writeHeader
18579
+ }], t = await jb({
18580
+ file: n,
18581
+ fields: i.importFields,
18582
+ tables: e
18583
+ });
18584
+ o("import", {
18585
+ ...t,
18586
+ file: n
18587
+ });
18588
+ } catch (e) {
18589
+ o("error", e, "import");
18590
+ } finally {
18591
+ _.value = !1;
18592
+ }
18593
+ }
18594
+ };
18595
+ return n({
18596
+ setTemplate: S,
18597
+ getTemplate: () => v.value,
18598
+ pickTemplate: C,
18599
+ pickImport: T,
18600
+ exportByTemplate: k,
18601
+ downloadSample: D
18602
+ }), (n, r) => {
18603
+ let i = Wn;
18604
+ return N(), l("div", { class: w(["fou-excel-ie", { "is-disabled": e.disabled }]) }, [
18605
+ u("div", Mb, [
18606
+ e.showDownloadSample ? (N(), s(i, {
18607
+ key: 0,
18608
+ size: e.size,
18609
+ disabled: e.disabled,
18610
+ icon: "download-2-line",
18611
+ onClick: D
18612
+ }, {
18613
+ default: G(() => [p(V(e.sampleText), 1)]),
18614
+ _: 1
18615
+ }, 8, ["size", "disabled"])) : c("", !0),
18616
+ m(i, {
18617
+ size: e.size,
18618
+ disabled: e.disabled,
18619
+ icon: "file-upload-line",
18620
+ onClick: C
18621
+ }, {
18622
+ default: G(() => [p(V(e.templateText), 1)]),
18623
+ _: 1
18624
+ }, 8, ["size", "disabled"]),
18625
+ m(i, {
18626
+ size: e.size,
18627
+ disabled: e.disabled || !U(y),
18628
+ type: "primary",
18629
+ icon: "file-excel-2-line",
18630
+ loading: U(g),
18631
+ onClick: k
18632
+ }, {
18633
+ default: G(() => [p(V(e.exportText), 1)]),
18634
+ _: 1
18635
+ }, 8, [
18636
+ "size",
18637
+ "disabled",
18638
+ "loading"
18639
+ ]),
18640
+ m(i, {
18641
+ size: e.size,
18642
+ disabled: e.disabled || !U(b),
18643
+ icon: "upload-2-line",
18644
+ loading: U(_),
18645
+ onClick: T
18646
+ }, {
18647
+ default: G(() => [p(V(e.importText), 1)]),
18648
+ _: 1
18649
+ }, 8, [
18650
+ "size",
18651
+ "disabled",
18652
+ "loading"
18653
+ ]),
18654
+ L(n.$slots, "extra", {}, void 0, !0)
18655
+ ]),
18656
+ e.showStatus ? (N(), l("p", Nb, [U(x) ? (N(), l(t, { key: 0 }, [p("当前模板:" + V(U(x)), 1)], 64)) : (N(), l(t, { key: 1 }, [p("尚未上传自定义模板(可先下载示例模板再改成自己的版式)")], 64))])) : c("", !0),
18657
+ u("input", {
18658
+ ref_key: "tplInputRef",
18659
+ ref: d,
18660
+ class: "fou-excel-ie__file",
18661
+ type: "file",
18662
+ accept: ".xlsx,.xls",
18663
+ onChange: E
18664
+ }, null, 544),
18665
+ u("input", {
18666
+ ref_key: "importInputRef",
18667
+ ref: f,
18668
+ class: "fou-excel-ie__file",
18669
+ type: "file",
18670
+ accept: ".xlsx,.xls",
18671
+ onChange: A
18672
+ }, null, 544)
18673
+ ], 2);
18674
+ };
18675
+ }
18676
+ }), Fb = /* @__PURE__ */ X({ default: () => Ib }), Ib = /*#__PURE__*/ Z(Pb, [["__scopeId", "data-v-454c162a"]]), Lb = { class: "fou-result__icon" }, Rb = {
18299
18677
  key: 0,
18300
18678
  class: "fou-result__title"
18301
- }, xb = {
18679
+ }, zb = {
18302
18680
  key: 1,
18303
18681
  class: "fou-result__subtitle"
18304
- }, Sb = {
18682
+ }, Bb = {
18305
18683
  key: 2,
18306
18684
  class: "fou-result__extra"
18307
- }, Cb = {
18685
+ }, Vb = {
18308
18686
  key: 3,
18309
18687
  class: "fou-result__content"
18310
- }, wb = /*@__PURE__*/ h({
18688
+ }, Hb = /*@__PURE__*/ h({
18311
18689
  name: "FouResult",
18312
18690
  __name: "index",
18313
18691
  props: {
@@ -18325,18 +18703,18 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18325
18703
  return (t, n) => {
18326
18704
  let i = Fe;
18327
18705
  return N(), l("div", { class: w(["fou-result", e.icon ? `fou-result--${e.icon}` : ""]) }, [
18328
- u("div", yb, [L(t.$slots, "icon", {}, () => [U(r) ? (N(), s(i, {
18706
+ u("div", Lb, [L(t.$slots, "icon", {}, () => [U(r) ? (N(), s(i, {
18329
18707
  key: 0,
18330
18708
  icon: U(r)
18331
18709
  }, null, 8, ["icon"])) : c("", !0)], !0)]),
18332
- e.title || t.$slots.title ? (N(), l("div", bb, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0),
18333
- e.subTitle || t.$slots["sub-title"] ? (N(), l("div", xb, [L(t.$slots, "sub-title", {}, () => [p(V(e.subTitle), 1)], !0)])) : c("", !0),
18334
- t.$slots.extra ? (N(), l("div", Sb, [L(t.$slots, "extra", {}, void 0, !0)])) : c("", !0),
18335
- t.$slots.default ? (N(), l("div", Cb, [L(t.$slots, "default", {}, void 0, !0)])) : c("", !0)
18710
+ e.title || t.$slots.title ? (N(), l("div", Rb, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0),
18711
+ e.subTitle || t.$slots["sub-title"] ? (N(), l("div", zb, [L(t.$slots, "sub-title", {}, () => [p(V(e.subTitle), 1)], !0)])) : c("", !0),
18712
+ t.$slots.extra ? (N(), l("div", Bb, [L(t.$slots, "extra", {}, void 0, !0)])) : c("", !0),
18713
+ t.$slots.default ? (N(), l("div", Vb, [L(t.$slots, "default", {}, void 0, !0)])) : c("", !0)
18336
18714
  ], 2);
18337
18715
  };
18338
18716
  }
18339
- }), Tb = /* @__PURE__ */ X({ default: () => Eb }), Eb = /*#__PURE__*/ Z(wb, [["__scopeId", "data-v-9728c3ac"]]), Db = /*@__PURE__*/ h({
18717
+ }), Ub = /* @__PURE__ */ X({ default: () => Wb }), Wb = /*#__PURE__*/ Z(Hb, [["__scopeId", "data-v-9728c3ac"]]), Gb = /*@__PURE__*/ h({
18340
18718
  name: "FouException",
18341
18719
  __name: "index",
18342
18720
  props: {
@@ -18368,7 +18746,7 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18368
18746
  subTitle: "抱歉,服务器出了点问题"
18369
18747
  }
18370
18748
  }, r = e, i = t, o = a(() => n[String(r.status)] || n[404]), l = () => i("back");
18371
- return (t, n) => (N(), s(Eb, {
18749
+ return (t, n) => (N(), s(Wb, {
18372
18750
  class: "fou-exception",
18373
18751
  icon: U(o).icon,
18374
18752
  title: e.title || U(o).title,
@@ -18406,10 +18784,10 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18406
18784
  "sub-title"
18407
18785
  ]));
18408
18786
  }
18409
- }), Ob = /* @__PURE__ */ X({ default: () => kb }), kb = Db, Ab = Symbol("FouFloatButtonGroup"), jb = ["aria-label"], Mb = { class: "fou-float-button__icon" }, Nb = {
18787
+ }), Kb = /* @__PURE__ */ X({ default: () => qb }), qb = Gb, Jb = Symbol("FouFloatButtonGroup"), Yb = ["aria-label"], Xb = { class: "fou-float-button__icon" }, Zb = {
18410
18788
  key: 0,
18411
18789
  class: "fou-float-button__desc"
18412
- }, Pb = /*@__PURE__*/ h({
18790
+ }, Qb = /*@__PURE__*/ h({
18413
18791
  name: "FouFloatButton",
18414
18792
  __name: "index",
18415
18793
  props: {
@@ -18425,7 +18803,7 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18425
18803
  },
18426
18804
  emits: ["click"],
18427
18805
  setup(e, { emit: t }) {
18428
- let n = e, r = t, i = y(Ab, !1), o = a(() => i ? void 0 : {
18806
+ let n = e, r = t, i = y(Jb, !1), o = a(() => i ? void 0 : {
18429
18807
  position: "fixed",
18430
18808
  right: `${n.right}px`,
18431
18809
  bottom: `${n.bottom}px`,
@@ -18445,16 +18823,16 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18445
18823
  style: E(U(o)),
18446
18824
  "aria-label": e.description || "悬浮按钮",
18447
18825
  onClick: d
18448
- }, [u("span", Mb, [L(t.$slots, "default", {}, () => [e.icon ? (N(), s(r, {
18826
+ }, [u("span", Xb, [L(t.$slots, "default", {}, () => [e.icon ? (N(), s(r, {
18449
18827
  key: 0,
18450
18828
  icon: e.icon
18451
18829
  }, null, 8, ["icon"])) : (N(), s(r, {
18452
18830
  key: 1,
18453
18831
  icon: "add-line"
18454
- }))], !0)]), e.description && e.shape === "square" ? (N(), l("span", Nb, V(e.description), 1)) : c("", !0)], 14, jb);
18832
+ }))], !0)]), e.description && e.shape === "square" ? (N(), l("span", Zb, V(e.description), 1)) : c("", !0)], 14, Yb);
18455
18833
  };
18456
18834
  }
18457
- }), Fb = /* @__PURE__ */ X({ default: () => Ib }), Ib = /*#__PURE__*/ Z(Pb, [["__scopeId", "data-v-d71d62ad"]]), Lb = { class: "fou-float-button-group__items" }, Rb = /*@__PURE__*/ h({
18835
+ }), $b = /* @__PURE__ */ X({ default: () => ex }), ex = /*#__PURE__*/ Z(Qb, [["__scopeId", "data-v-d71d62ad"]]), tx = { class: "fou-float-button-group__items" }, nx = /*@__PURE__*/ h({
18458
18836
  name: "FouFloatButtonGroup",
18459
18837
  __name: "index",
18460
18838
  props: {
@@ -18469,7 +18847,7 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18469
18847
  },
18470
18848
  setup(e) {
18471
18849
  let t = e;
18472
- P(Ab, !0);
18850
+ P(Jb, !0);
18473
18851
  let n = F(t.trigger === "hover"), r = a(() => ({
18474
18852
  right: `${t.right}px`,
18475
18853
  bottom: `${t.bottom}px`,
@@ -18486,7 +18864,7 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18486
18864
  style: E(U(r)),
18487
18865
  onMouseenter: o,
18488
18866
  onMouseleave: s
18489
- }, [ce(u("div", Lb, [L(t.$slots, "default", {}, void 0, !0)], 512), [[se, U(n)]]), m(Ib, {
18867
+ }, [ce(u("div", tx, [L(t.$slots, "default", {}, void 0, !0)], 512), [[se, U(n)]]), m(ex, {
18490
18868
  type: e.type,
18491
18869
  shape: e.shape,
18492
18870
  icon: U(n) ? "close-line" : e.icon,
@@ -18499,7 +18877,7 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18499
18877
  "description"
18500
18878
  ])], 36));
18501
18879
  }
18502
- }), zb = /* @__PURE__ */ X({ default: () => Bb }), Bb = /*#__PURE__*/ Z(Rb, [["__scopeId", "data-v-299feda2"]]), Vb = /*@__PURE__*/ h({
18880
+ }), rx = /* @__PURE__ */ X({ default: () => ix }), ix = /*#__PURE__*/ Z(nx, [["__scopeId", "data-v-299feda2"]]), ax = /*@__PURE__*/ h({
18503
18881
  name: "FouFullscreen",
18504
18882
  __name: "index",
18505
18883
  setup(e) {
@@ -18513,13 +18891,13 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18513
18891
  }, null, 8, ["icon", "onClick"]);
18514
18892
  };
18515
18893
  }
18516
- }), Hb = /* @__PURE__ */ X({ default: () => Ub }), Ub = Vb, Wb = {
18894
+ }), ox = /* @__PURE__ */ X({ default: () => sx }), sx = ax, cx = {
18517
18895
  key: 0,
18518
18896
  class: "fou-grid__form"
18519
- }, Gb = {
18897
+ }, lx = {
18520
18898
  key: 0,
18521
18899
  class: "fou-grid__form-inner"
18522
- }, Kb = ["onUpdate:modelValue", "placeholder"], qb = /*@__PURE__*/ h({
18900
+ }, ux = ["onUpdate:modelValue", "placeholder"], dx = /*@__PURE__*/ h({
18523
18901
  name: "FouGrid",
18524
18902
  __name: "index",
18525
18903
  props: {
@@ -18665,11 +19043,11 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18665
19043
  formModel: b
18666
19044
  }), (n, r) => {
18667
19045
  let i = cu;
18668
- return N(), l("div", { class: w(["fou-grid", { "fou-grid--loading": U(f) }]) }, [U(D) && (n.$slots.form || e.formConfig) ? (N(), l("div", Wb, [L(n.$slots, "form", {
19046
+ return N(), l("div", { class: w(["fou-grid", { "fou-grid--loading": U(f) }]) }, [U(D) && (n.$slots.form || e.formConfig) ? (N(), l("div", cx, [L(n.$slots, "form", {
18669
19047
  query: U(te),
18670
19048
  form: U(b),
18671
19049
  reload: B
18672
- }, () => [U(O).length ? (N(), l("div", Gb, [
19050
+ }, () => [U(O).length ? (N(), l("div", lx, [
18673
19051
  (N(!0), l(t, null, I(U(O), (e) => (N(), l("label", {
18674
19052
  key: e.field,
18675
19053
  class: "fou-grid__form-item"
@@ -18678,7 +19056,7 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18678
19056
  class: "fou-grid__form-input",
18679
19057
  placeholder: e.title || e.field,
18680
19058
  onKeydown: r[0] ||= K((e) => B(), ["enter"])
18681
- }, null, 40, Kb), [[oe, U(b)[e.field]]])]))), 128)),
19059
+ }, null, 40, ux), [[oe, U(b)[e.field]]])]))), 128)),
18682
19060
  u("button", {
18683
19061
  type: "button",
18684
19062
  class: "fou-grid__form-btn",
@@ -18752,7 +19130,7 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18752
19130
  ])], 2);
18753
19131
  };
18754
19132
  }
18755
- }), Jb = /* @__PURE__ */ X({ default: () => Yb }), Yb = /*#__PURE__*/ Z(qb, [["__scopeId", "data-v-09298a7d"]]), Xb = { class: "fou-highlight" }, Zb = /*@__PURE__*/ h({
19133
+ }), fx = /* @__PURE__ */ X({ default: () => px }), px = /*#__PURE__*/ Z(dx, [["__scopeId", "data-v-09298a7d"]]), mx = { class: "fou-highlight" }, hx = /*@__PURE__*/ h({
18756
19134
  name: "FouHighlight",
18757
19135
  __name: "index",
18758
19136
  props: {
@@ -18780,16 +19158,16 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18780
19158
  hit: t.some((t) => n.caseSensitive ? e === t : e.toLowerCase() === t.toLowerCase())
18781
19159
  }));
18782
19160
  });
18783
- return (e, n) => (N(), l("span", Xb, [(N(!0), l(t, null, I(U(i), (e, n) => (N(), l(t, { key: n }, [e.hit ? (N(), l("mark", {
19161
+ return (e, n) => (N(), l("span", mx, [(N(!0), l(t, null, I(U(i), (e, n) => (N(), l(t, { key: n }, [e.hit ? (N(), l("mark", {
18784
19162
  key: 0,
18785
19163
  class: "fou-highlight__mark",
18786
19164
  style: E(U(r))
18787
19165
  }, V(e.text), 5)) : (N(), l(t, { key: 1 }, [p(V(e.text), 1)], 64))], 64))), 128))]));
18788
19166
  }
18789
- }), Qb = /* @__PURE__ */ X({ default: () => $b }), $b = /*#__PURE__*/ Z(Zb, [["__scopeId", "data-v-7331076e"]]), ex = {
19167
+ }), gx = /* @__PURE__ */ X({ default: () => _x }), _x = /*#__PURE__*/ Z(hx, [["__scopeId", "data-v-7331076e"]]), vx = {
18790
19168
  key: 0,
18791
19169
  class: "fou-hover-card__title"
18792
- }, tx = { class: "fou-hover-card__body" }, nx = /*@__PURE__*/ h({
19170
+ }, yx = { class: "fou-hover-card__body" }, bx = /*@__PURE__*/ h({
18793
19171
  name: "FouHoverCard",
18794
19172
  __name: "index",
18795
19173
  props: {
@@ -18858,11 +19236,11 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18858
19236
  style: E(g.value),
18859
19237
  onMouseenter: O,
18860
19238
  onMouseleave: A
18861
- }, [e.title || r.$slots.title ? (N(), l("div", ex, [L(r.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0), u("div", tx, [L(r.$slots, "default", {}, void 0, !0)])], 38)) : c("", !0)]),
19239
+ }, [e.title || r.$slots.title ? (N(), l("div", vx, [L(r.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0), u("div", yx, [L(r.$slots, "default", {}, void 0, !0)])], 38)) : c("", !0)]),
18862
19240
  _: 3
18863
19241
  })]))], 64));
18864
19242
  }
18865
- }), rx = /* @__PURE__ */ X({ default: () => ix }), ix = /*#__PURE__*/ Z(nx, [["__scopeId", "data-v-158ede3a"]]), ax = /* @__PURE__ */ "24-hours-fill.24-hours-line.4k-fill.4k-line.a-b.accessibility-fill.accessibility-line.account-box-2-fill.account-box-2-line.account-box-fill.account-box-line.account-circle-2-fill.account-circle-2-line.account-circle-fill.account-circle-line.account-pin-box-fill.account-pin-box-line.account-pin-circle-fill.account-pin-circle-line.add-box-fill.add-box-line.add-circle-fill.add-circle-line.add-fill.add-large-fill.add-large-line.add-line.admin-fill.admin-line.advertisement-fill.advertisement-line.aed-electrodes-fill.aed-electrodes-line.aed-fill.aed-line.ai-generate.ai-generate-2.ai-generate-text.airplay-fill.airplay-line.alarm-add-fill.alarm-add-line.alarm-fill.alarm-line.alarm-snooze-fill.alarm-snooze-line.alarm-warning-fill.alarm-warning-line.album-fill.album-line.alert-fill.alert-line.alibaba-cloud-fill.alibaba-cloud-line.aliens-fill.aliens-line.align-bottom.align-center.align-item-bottom-fill.align-item-bottom-line.align-item-horizontal-center-fill.align-item-horizontal-center-line.align-item-left-fill.align-item-left-line.align-item-right-fill.align-item-right-line.align-item-top-fill.align-item-top-line.align-item-vertical-center-fill.align-item-vertical-center-line.align-justify.align-left.align-right.align-top.align-vertically.alipay-fill.alipay-line.amazon-fill.amazon-line.anchor-fill.anchor-line.ancient-gate-fill.ancient-gate-line.ancient-pavilion-fill.ancient-pavilion-line.android-fill.android-line.angularjs-fill.angularjs-line.anthropic-fill.anthropic-line.anticlockwise-2-fill.anticlockwise-2-line.anticlockwise-fill.anticlockwise-line.app-store-fill.app-store-line.apple-fill.apple-line.apps-2-add-fill.apps-2-add-line.apps-2-ai-fill.apps-2-ai-line.apps-2-fill.apps-2-line.apps-fill.apps-line.archive-2-fill.archive-2-line.archive-drawer-fill.archive-drawer-line.archive-fill.archive-line.archive-stack-fill.archive-stack-line.armchair-fill.armchair-line.arrow-down-box-fill.arrow-down-box-line.arrow-down-circle-fill.arrow-down-circle-line.arrow-down-double-fill.arrow-down-double-line.arrow-down-fill.arrow-down-line.arrow-down-long-fill.arrow-down-long-line.arrow-down-s-fill.arrow-down-s-line.arrow-down-wide-fill.arrow-down-wide-line.arrow-drop-down-fill.arrow-drop-down-line.arrow-drop-left-fill.arrow-drop-left-line.arrow-drop-right-fill.arrow-drop-right-line.arrow-drop-up-fill.arrow-drop-up-line.arrow-go-back-fill.arrow-go-back-line.arrow-go-forward-fill.arrow-go-forward-line.arrow-left-box-fill.arrow-left-box-line.arrow-left-circle-fill.arrow-left-circle-line.arrow-left-double-fill.arrow-left-double-line.arrow-left-down-box-fill.arrow-left-down-box-line.arrow-left-down-fill.arrow-left-down-line.arrow-left-down-long-fill.arrow-left-down-long-line.arrow-left-fill.arrow-left-line.arrow-left-long-fill.arrow-left-long-line.arrow-left-right-fill.arrow-left-right-line.arrow-left-s-fill.arrow-left-s-line.arrow-left-up-box-fill.arrow-left-up-box-line.arrow-left-up-fill.arrow-left-up-line.arrow-left-up-long-fill.arrow-left-up-long-line.arrow-left-wide-fill.arrow-left-wide-line.arrow-right-box-fill.arrow-right-box-line.arrow-right-circle-fill.arrow-right-circle-line.arrow-right-double-fill.arrow-right-double-line.arrow-right-down-box-fill.arrow-right-down-box-line.arrow-right-down-fill.arrow-right-down-line.arrow-right-down-long-fill.arrow-right-down-long-line.arrow-right-fill.arrow-right-line.arrow-right-long-fill.arrow-right-long-line.arrow-right-s-fill.arrow-right-s-line.arrow-right-up-box-fill.arrow-right-up-box-line.arrow-right-up-fill.arrow-right-up-line.arrow-right-up-long-fill.arrow-right-up-long-line.arrow-right-wide-fill.arrow-right-wide-line.arrow-turn-back-fill.arrow-turn-back-line.arrow-turn-forward-fill.arrow-turn-forward-line.arrow-up-box-fill.arrow-up-box-line.arrow-up-circle-fill.arrow-up-circle-line.arrow-up-double-fill.arrow-up-double-line.arrow-up-down-fill.arrow-up-down-line.arrow-up-fill.arrow-up-line.arrow-up-long-fill.arrow-up-long-line.arrow-up-s-fill.arrow-up-s-line.arrow-up-wide-fill.arrow-up-wide-line.artboard-2-fill.artboard-2-line.artboard-fill.artboard-line.article-fill.article-line.aspect-ratio-fill.aspect-ratio-line.asterisk.at-fill.at-line.attachment-2.attachment-fill.attachment-line.auction-fill.auction-line.award-fill.award-line.baidu-fill.baidu-line.ball-pen-fill.ball-pen-line.bank-card-2-fill.bank-card-2-line.bank-card-fill.bank-card-line.bank-fill.bank-line.bar-chart-2-fill.bar-chart-2-line.bar-chart-box-ai-fill.bar-chart-box-ai-line.bar-chart-box-fill.bar-chart-box-line.bar-chart-fill.bar-chart-grouped-fill.bar-chart-grouped-line.bar-chart-horizontal-fill.bar-chart-horizontal-line.bar-chart-line.barcode-box-fill.barcode-box-line.barcode-fill.barcode-line.bard-fill.bard-line.barricade-fill.barricade-line.base-station-fill.base-station-line.basketball-fill.basketball-line.battery-2-charge-fill.battery-2-charge-line.battery-2-fill.battery-2-line.battery-charge-fill.battery-charge-line.battery-fill.battery-line.battery-low-fill.battery-low-line.battery-saver-fill.battery-saver-line.battery-share-fill.battery-share-line.bear-smile-fill.bear-smile-line.beer-fill.beer-line.behance-fill.behance-line.bell-fill.bell-line.bike-fill.bike-line.bilibili-fill.bilibili-line.bill-fill.bill-line.billiards-fill.billiards-line.bit-coin-fill.bit-coin-line.blaze-fill.blaze-line.blender-fill.blender-line.blogger-fill.blogger-line.bluesky-fill.bluesky-line.bluetooth-connect-fill.bluetooth-connect-line.bluetooth-fill.bluetooth-line.blur-off-fill.blur-off-line.bnb-fill.bnb-line.body-scan-fill.body-scan-line.bold.book-2-fill.book-2-line.book-3-fill.book-3-line.book-fill.book-line.book-marked-fill.book-marked-line.book-open-fill.book-open-line.book-read-fill.book-read-line.book-shelf-fill.book-shelf-line.booklet-fill.booklet-line.bookmark-2-fill.bookmark-2-line.bookmark-3-fill.bookmark-3-line.bookmark-fill.bookmark-line.bootstrap-fill.bootstrap-line.bowl-fill.bowl-line.box-1-fill.box-1-line.box-2-fill.box-2-line.box-3-fill.box-3-line.boxing-fill.boxing-line.braces-fill.braces-line.brackets-fill.brackets-line.brain-2-fill.brain-2-line.brain-fill.brain-line.bread-fill.bread-line.briefcase-2-fill.briefcase-2-line.briefcase-3-fill.briefcase-3-line.briefcase-4-fill.briefcase-4-line.briefcase-5-fill.briefcase-5-line.briefcase-fill.briefcase-line.bring-forward.bring-to-front.broadcast-fill.broadcast-line.brush-2-fill.brush-2-line.brush-3-fill.brush-3-line.brush-4-fill.brush-4-line.brush-ai-fill.brush-ai-line.brush-fill.brush-line.btc-fill.btc-line.bubble-chart-fill.bubble-chart-line.bug-2-fill.bug-2-line.bug-fill.bug-line.building-2-fill.building-2-line.building-3-fill.building-3-line.building-4-fill.building-4-line.building-fill.building-line.bus-2-fill.bus-2-line.bus-fill.bus-line.bus-wifi-fill.bus-wifi-line.cactus-fill.cactus-line.cake-2-fill.cake-2-line.cake-3-fill.cake-3-line.cake-fill.cake-line.calculator-fill.calculator-line.calendar-2-fill.calendar-2-line.calendar-check-fill.calendar-check-line.calendar-close-fill.calendar-close-line.calendar-event-fill.calendar-event-line.calendar-fill.calendar-line.calendar-schedule-fill.calendar-schedule-line.calendar-todo-fill.calendar-todo-line.calendar-view.camera-2-fill.camera-2-line.camera-3-fill.camera-3-line.camera-ai-fill.camera-ai-line.camera-fill.camera-lens-ai-fill.camera-lens-ai-line.camera-lens-fill.camera-lens-line.camera-line.camera-off-fill.camera-off-line.camera-switch-fill.camera-switch-line.candle-fill.candle-line.capsule-fill.capsule-line.car-fill.car-line.car-washing-fill.car-washing-line.caravan-fill.caravan-line.carousel-view.cash-fill.cash-line.cast-fill.cast-line.cellphone-fill.cellphone-line.celsius-fill.celsius-line.centos-fill.centos-line.character-recognition-fill.character-recognition-line.charging-pile-2-fill.charging-pile-2-line.charging-pile-fill.charging-pile-line.chat-1-fill.chat-1-line.chat-2-fill.chat-2-line.chat-3-fill.chat-3-line.chat-4-fill.chat-4-line.chat-ai-fill.chat-ai-line.chat-check-fill.chat-check-line.chat-delete-fill.chat-delete-line.chat-download-fill.chat-download-line.chat-follow-up-fill.chat-follow-up-line.chat-forward-fill.chat-forward-line.chat-heart-fill.chat-heart-line.chat-history-fill.chat-history-line.chat-new-fill.chat-new-line.chat-off-fill.chat-off-line.chat-poll-fill.chat-poll-line.chat-private-fill.chat-private-line.chat-quote-fill.chat-quote-line.chat-search-fill.chat-search-line.chat-settings-fill.chat-settings-line.chat-smile-2-fill.chat-smile-2-line.chat-smile-3-fill.chat-smile-3-line.chat-smile-ai-fill.chat-smile-ai-line.chat-smile-fill.chat-smile-line.chat-thread-fill.chat-thread-line.chat-unread-fill.chat-unread-line.chat-upload-fill.chat-upload-line.chat-voice-ai-fill.chat-voice-ai-line.chat-voice-fill.chat-voice-line.check-double-fill.check-double-line.check-fill.check-line.checkbox-blank-circle-fill.checkbox-blank-circle-line.checkbox-blank-fill.checkbox-blank-line.checkbox-circle-fill.checkbox-circle-line.checkbox-fill.checkbox-indeterminate-fill.checkbox-indeterminate-line.checkbox-line.checkbox-multiple-blank-fill.checkbox-multiple-blank-line.checkbox-multiple-fill.checkbox-multiple-line.chess-fill.chess-line.china-railway-fill.china-railway-line.chrome-fill.chrome-line.circle-fill.circle-line.clapperboard-ai-fill.clapperboard-ai-line.clapperboard-fill.clapperboard-line.claude-fill.claude-line.clipboard-fill.clipboard-line.clockwise-2-fill.clockwise-2-line.clockwise-fill.clockwise-line.close-circle-fill.close-circle-line.close-fill.close-large-fill.close-large-line.close-line.closed-captioning-ai-fill.closed-captioning-ai-line.closed-captioning-fill.closed-captioning-line.cloud-fill.cloud-line.cloud-off-fill.cloud-off-line.cloud-windy-fill.cloud-windy-line.cloudy-2-fill.cloudy-2-line.cloudy-fill.cloudy-line.code-ai-fill.code-ai-line.code-block.code-box-fill.code-box-line.code-fill.code-line.code-s-fill.code-s-line.code-s-slash-fill.code-s-slash-line.code-view.codepen-fill.codepen-line.coin-fill.coin-line.coins-fill.coins-line.collage-fill.collage-line.collapse-diagonal-2-fill.collapse-diagonal-2-line.collapse-diagonal-fill.collapse-diagonal-line.collapse-horizontal-fill.collapse-horizontal-line.collapse-vertical-fill.collapse-vertical-line.color-filter-ai-fill.color-filter-ai-line.color-filter-fill.color-filter-line.command-fill.command-line.community-fill.community-line.compass-2-fill.compass-2-line.compass-3-fill.compass-3-line.compass-4-fill.compass-4-line.compass-discover-fill.compass-discover-line.compass-fill.compass-line.compasses-2-fill.compasses-2-line.compasses-fill.compasses-line.computer-fill.computer-line.contacts-book-2-fill.contacts-book-2-line.contacts-book-3-fill.contacts-book-3-line.contacts-book-fill.contacts-book-line.contacts-book-upload-fill.contacts-book-upload-line.contacts-fill.contacts-line.contract-fill.contract-left-fill.contract-left-line.contract-left-right-fill.contract-left-right-line.contract-line.contract-right-fill.contract-right-line.contract-up-down-fill.contract-up-down-line.contrast-2-fill.contrast-2-line.contrast-drop-2-fill.contrast-drop-2-line.contrast-drop-fill.contrast-drop-line.contrast-fill.contrast-line.copilot-fill.copilot-line.copper-coin-fill.copper-coin-line.copper-diamond-fill.copper-diamond-line.copyleft-fill.copyleft-line.copyright-fill.copyright-line.coreos-fill.coreos-line.corner-down-left-fill.corner-down-left-line.corner-down-right-fill.corner-down-right-line.corner-left-down-fill.corner-left-down-line.corner-left-up-fill.corner-left-up-line.corner-right-down-fill.corner-right-down-line.corner-right-up-fill.corner-right-up-line.corner-up-left-double-fill.corner-up-left-double-line.corner-up-left-fill.corner-up-left-line.corner-up-right-double-fill.corner-up-right-double-line.corner-up-right-fill.corner-up-right-line.coupon-2-fill.coupon-2-line.coupon-3-fill.coupon-3-line.coupon-4-fill.coupon-4-line.coupon-5-fill.coupon-5-line.coupon-fill.coupon-line.cpu-fill.cpu-line.creative-commons-by-fill.creative-commons-by-line.creative-commons-fill.creative-commons-line.creative-commons-nc-fill.creative-commons-nc-line.creative-commons-nd-fill.creative-commons-nd-line.creative-commons-sa-fill.creative-commons-sa-line.creative-commons-zero-fill.creative-commons-zero-line.criminal-fill.criminal-line.crop-2-fill.crop-2-line.crop-fill.crop-line.cross-fill.cross-line.crosshair-2-fill.crosshair-2-line.crosshair-fill.crosshair-line.css3-fill.css3-line.cup-fill.cup-line.currency-fill.currency-line.cursor-fill.cursor-line.custom-size.customer-service-2-fill.customer-service-2-line.customer-service-fill.customer-service-line.dashboard-2-fill.dashboard-2-line.dashboard-3-fill.dashboard-3-line.dashboard-fill.dashboard-horizontal-fill.dashboard-horizontal-line.dashboard-line.database-2-fill.database-2-line.database-fill.database-line.delete-back-2-fill.delete-back-2-line.delete-back-fill.delete-back-line.delete-bin-2-fill.delete-bin-2-line.delete-bin-3-fill.delete-bin-3-line.delete-bin-4-fill.delete-bin-4-line.delete-bin-5-fill.delete-bin-5-line.delete-bin-6-fill.delete-bin-6-line.delete-bin-7-fill.delete-bin-7-line.delete-bin-fill.delete-bin-line.delete-column.delete-row.device-fill.device-line.device-recover-fill.device-recover-line.diamond-fill.diamond-line.diamond-ring-fill.diamond-ring-line.dice-1-fill.dice-1-line.dice-2-fill.dice-2-line.dice-3-fill.dice-3-line.dice-4-fill.dice-4-line.dice-5-fill.dice-5-line.dice-6-fill.dice-6-line.dice-fill.dice-line.dingding-fill.dingding-line.direction-fill.direction-line.disc-fill.disc-line.discord-fill.discord-line.discount-percent-fill.discount-percent-line.discuss-fill.discuss-line.dislike-fill.dislike-line.disqus-fill.disqus-line.divide-fill.divide-line.dna-fill.dna-line.donut-chart-fill.donut-chart-line.door-closed-fill.door-closed-line.door-fill.door-line.door-lock-box-fill.door-lock-box-line.door-lock-fill.door-lock-line.door-open-fill.door-open-line.dossier-fill.dossier-line.douban-fill.douban-line.double-quotes-l.double-quotes-r.download-2-fill.download-2-line.download-cloud-2-fill.download-cloud-2-line.download-cloud-fill.download-cloud-line.download-fill.download-line.draft-fill.draft-line.drag-drop-fill.drag-drop-line.drag-move-2-fill.drag-move-2-line.drag-move-fill.drag-move-line.draggable.dribbble-fill.dribbble-line.drinks-2-fill.drinks-2-line.drinks-fill.drinks-line.drive-fill.drive-line.drizzle-fill.drizzle-line.drop-fill.drop-line.dropbox-fill.dropbox-line.dropdown-list.dropper-fill.dropper-line.dual-sim-1-fill.dual-sim-1-line.dual-sim-2-fill.dual-sim-2-line.dv-fill.dv-line.dvd-ai-fill.dvd-ai-line.dvd-fill.dvd-line.e-bike-2-fill.e-bike-2-line.e-bike-fill.e-bike-line.earth-fill.earth-line.earthquake-fill.earthquake-line.edge-fill.edge-line.edge-new-fill.edge-new-line.edit-2-fill.edit-2-line.edit-box-fill.edit-box-line.edit-circle-fill.edit-circle-line.edit-fill.edit-line.eject-fill.eject-line.emoji-sticker-fill.emoji-sticker-line.emotion-2-fill.emotion-2-line.emotion-fill.emotion-happy-fill.emotion-happy-line.emotion-laugh-fill.emotion-laugh-line.emotion-line.emotion-normal-fill.emotion-normal-line.emotion-sad-fill.emotion-sad-line.emotion-unhappy-fill.emotion-unhappy-line.empathize-fill.empathize-line.emphasis.emphasis-cn.english-input.equal-fill.equal-line.equalizer-2-fill.equalizer-2-line.equalizer-3-fill.equalizer-3-line.equalizer-fill.equalizer-line.eraser-fill.eraser-line.error-warning-fill.error-warning-line.eth-fill.eth-line.evernote-fill.evernote-line.exchange-2-fill.exchange-2-line.exchange-box-fill.exchange-box-line.exchange-cny-fill.exchange-cny-line.exchange-dollar-fill.exchange-dollar-line.exchange-fill.exchange-funds-fill.exchange-funds-line.exchange-line.expand-diagonal-2-fill.expand-diagonal-2-line.expand-diagonal-fill.expand-diagonal-line.expand-diagonal-s-2-fill.expand-diagonal-s-2-line.expand-diagonal-s-fill.expand-diagonal-s-line.expand-height-fill.expand-height-line.expand-horizontal-fill.expand-horizontal-line.expand-horizontal-s-fill.expand-horizontal-s-line.expand-left-fill.expand-left-line.expand-left-right-fill.expand-left-right-line.expand-right-fill.expand-right-line.expand-up-down-fill.expand-up-down-line.expand-vertical-fill.expand-vertical-line.expand-vertical-s-fill.expand-vertical-s-line.expand-width-fill.expand-width-line.export-fill.export-line.external-link-fill.external-link-line.eye-2-fill.eye-2-line.eye-close-fill.eye-close-line.eye-fill.eye-line.eye-off-fill.eye-off-line.facebook-box-fill.facebook-box-line.facebook-circle-fill.facebook-circle-line.facebook-fill.facebook-line.fahrenheit-fill.fahrenheit-line.fediverse-fill.fediverse-line.feedback-fill.feedback-line.figma-fill.figma-line.file-2-fill.file-2-line.file-3-fill.file-3-line.file-4-fill.file-4-line.file-add-fill.file-add-line.file-chart-2-fill.file-chart-2-line.file-chart-fill.file-chart-line.file-check-fill.file-check-line.file-close-fill.file-close-line.file-cloud-fill.file-cloud-line.file-code-fill.file-code-line.file-copy-2-fill.file-copy-2-line.file-copy-fill.file-copy-line.file-damage-fill.file-damage-line.file-download-fill.file-download-line.file-edit-fill.file-edit-line.file-excel-2-fill.file-excel-2-line.file-excel-fill.file-excel-line.file-fill.file-forbid-fill.file-forbid-line.file-gif-fill.file-gif-line.file-history-fill.file-history-line.file-hwp-fill.file-hwp-line.file-image-fill.file-image-line.file-info-fill.file-info-line.file-line.file-list-2-fill.file-list-2-line.file-list-3-fill.file-list-3-line.file-list-fill.file-list-line.file-lock-fill.file-lock-line.file-marked-fill.file-marked-line.file-music-fill.file-music-line.file-paper-2-fill.file-paper-2-line.file-paper-fill.file-paper-line.file-pdf-2-fill.file-pdf-2-line.file-pdf-fill.file-pdf-line.file-ppt-2-fill.file-ppt-2-line.file-ppt-fill.file-ppt-line.file-reduce-fill.file-reduce-line.file-search-fill.file-search-line.file-settings-fill.file-settings-line.file-shield-2-fill.file-shield-2-line.file-shield-fill.file-shield-line.file-shred-fill.file-shred-line.file-text-fill.file-text-line.file-transfer-fill.file-transfer-line.file-unknow-fill.file-unknow-line.file-upload-fill.file-upload-line.file-user-fill.file-user-line.file-video-fill.file-video-line.file-warning-fill.file-warning-line.file-word-2-fill.file-word-2-line.file-word-fill.file-word-line.file-zip-fill.file-zip-line.film-ai-fill.film-ai-line.film-fill.film-line.filter-2-fill.filter-2-line.filter-3-fill.filter-3-line.filter-fill.filter-line.filter-off-fill.filter-off-line.find-replace-fill.find-replace-line.finder-fill.finder-line.fingerprint-2-fill.fingerprint-2-line.fingerprint-fill.fingerprint-line.fire-fill.fire-line.firebase-fill.firebase-line.firefox-browser-fill.firefox-browser-line.firefox-fill.firefox-line.first-aid-kit-fill.first-aid-kit-line.flag-2-fill.flag-2-line.flag-fill.flag-line.flag-off-fill.flag-off-line.flashlight-fill.flashlight-line.flask-fill.flask-line.flickr-fill.flickr-line.flight-land-fill.flight-land-line.flight-takeoff-fill.flight-takeoff-line.flip-horizontal-2-fill.flip-horizontal-2-line.flip-horizontal-fill.flip-horizontal-line.flip-vertical-2-fill.flip-vertical-2-line.flip-vertical-fill.flip-vertical-line.flood-fill.flood-line.flow-chart.flower-fill.flower-line.flutter-fill.flutter-line.focus-2-fill.focus-2-line.focus-3-fill.focus-3-line.focus-fill.focus-line.focus-mode.foggy-fill.foggy-line.folder-2-fill.folder-2-line.folder-3-fill.folder-3-line.folder-4-fill.folder-4-line.folder-5-fill.folder-5-line.folder-6-fill.folder-6-line.folder-add-fill.folder-add-line.folder-chart-2-fill.folder-chart-2-line.folder-chart-fill.folder-chart-line.folder-check-fill.folder-check-line.folder-close-fill.folder-close-line.folder-cloud-fill.folder-cloud-line.folder-download-fill.folder-download-line.folder-fill.folder-forbid-fill.folder-forbid-line.folder-history-fill.folder-history-line.folder-image-fill.folder-image-line.folder-info-fill.folder-info-line.folder-keyhole-fill.folder-keyhole-line.folder-line.folder-lock-fill.folder-lock-line.folder-music-fill.folder-music-line.folder-open-fill.folder-open-line.folder-received-fill.folder-received-line.folder-reduce-fill.folder-reduce-line.folder-settings-fill.folder-settings-line.folder-shared-fill.folder-shared-line.folder-shield-2-fill.folder-shield-2-line.folder-shield-fill.folder-shield-line.folder-transfer-fill.folder-transfer-line.folder-unknow-fill.folder-unknow-line.folder-upload-fill.folder-upload-line.folder-user-fill.folder-user-line.folder-video-fill.folder-video-line.folder-warning-fill.folder-warning-line.folder-zip-fill.folder-zip-line.folders-fill.folders-line.font-color.font-family.font-mono.font-sans.font-sans-serif.font-size.font-size-2.font-size-ai.football-fill.football-line.footprint-fill.footprint-line.forbid-2-fill.forbid-2-line.forbid-fill.forbid-line.format-clear.formula.forward-10-fill.forward-10-line.forward-15-fill.forward-15-line.forward-30-fill.forward-30-line.forward-5-fill.forward-5-line.forward-end-fill.forward-end-line.forward-end-mini-fill.forward-end-mini-line.fridge-fill.fridge-line.friendica-fill.friendica-line.fullscreen-exit-fill.fullscreen-exit-line.fullscreen-fill.fullscreen-line.function-add-fill.function-add-line.function-fill.function-line.functions.funds-box-fill.funds-box-line.funds-fill.funds-line.gallery-fill.gallery-line.gallery-upload-fill.gallery-upload-line.gallery-view.gallery-view-2.game-fill.game-line.gamepad-fill.gamepad-line.gas-station-fill.gas-station-line.gatsby-fill.gatsby-line.gemini-fill.gemini-line.genderless-fill.genderless-line.ghost-2-fill.ghost-2-line.ghost-fill.ghost-line.ghost-smile-fill.ghost-smile-line.gift-2-fill.gift-2-line.gift-fill.gift-line.git-branch-fill.git-branch-line.git-close-pull-request-fill.git-close-pull-request-line.git-commit-fill.git-commit-line.git-fork-fill.git-fork-line.git-merge-fill.git-merge-line.git-pr-draft-fill.git-pr-draft-line.git-pull-request-fill.git-pull-request-line.git-repository-commits-fill.git-repository-commits-line.git-repository-fill.git-repository-line.git-repository-private-fill.git-repository-private-line.github-fill.github-line.gitlab-fill.gitlab-line.glasses-2-fill.glasses-2-line.glasses-fill.glasses-line.global-fill.global-line.globe-fill.globe-line.goblet-2-fill.goblet-2-line.goblet-fill.goblet-line.goggles-fill.goggles-line.golf-ball-fill.golf-ball-line.google-fill.google-line.google-play-fill.google-play-line.government-fill.government-line.gps-fill.gps-line.gradienter-fill.gradienter-line.graduation-cap-fill.graduation-cap-line.grid-fill.grid-line.group-2-fill.group-2-line.group-3-fill.group-3-line.group-fill.group-line.guide-fill.guide-line.h-1.h-2.h-3.h-4.h-5.h-6.hail-fill.hail-line.hammer-fill.hammer-line.hand.hand-coin-fill.hand-coin-line.hand-heart-fill.hand-heart-line.hand-sanitizer-fill.hand-sanitizer-line.handbag-fill.handbag-line.hard-drive-2-fill.hard-drive-2-line.hard-drive-3-fill.hard-drive-3-line.hard-drive-fill.hard-drive-line.hashtag.haze-2-fill.haze-2-line.haze-fill.haze-line.hd-fill.hd-line.heading.headphone-fill.headphone-line.health-book-fill.health-book-line.heart-2-fill.heart-2-line.heart-3-fill.heart-3-line.heart-add-2-fill.heart-add-2-line.heart-add-fill.heart-add-line.heart-fill.heart-line.heart-pulse-fill.heart-pulse-line.hearts-fill.hearts-line.heavy-showers-fill.heavy-showers-line.hexagon-fill.hexagon-line.history-fill.history-line.home-2-fill.home-2-line.home-3-fill.home-3-line.home-4-fill.home-4-line.home-5-fill.home-5-line.home-6-fill.home-6-line.home-7-fill.home-7-line.home-8-fill.home-8-line.home-9-fill.home-9-line.home-fill.home-gear-fill.home-gear-line.home-heart-fill.home-heart-line.home-line.home-office-fill.home-office-line.home-smile-2-fill.home-smile-2-line.home-smile-fill.home-smile-line.home-wifi-fill.home-wifi-line.honor-of-kings-fill.honor-of-kings-line.honour-fill.honour-line.hospital-fill.hospital-line.hotel-bed-fill.hotel-bed-line.hotel-fill.hotel-line.hotspot-fill.hotspot-line.hourglass-2-fill.hourglass-2-line.hourglass-fill.hourglass-line.hq-fill.hq-line.html5-fill.html5-line.id-card-fill.id-card-line.ie-fill.ie-line.image-2-fill.image-2-line.image-add-fill.image-add-line.image-ai-fill.image-ai-line.image-circle-ai-fill.image-circle-ai-line.image-circle-fill.image-circle-line.image-edit-fill.image-edit-line.image-fill.image-line.import-fill.import-line.inbox-2-fill.inbox-2-line.inbox-archive-fill.inbox-archive-line.inbox-fill.inbox-line.inbox-unarchive-fill.inbox-unarchive-line.increase-decrease-fill.increase-decrease-line.indent-decrease.indent-increase.indeterminate-circle-fill.indeterminate-circle-line.infinity-fill.infinity-line.info-card-fill.info-card-line.info-i.information-2-fill.information-2-line.information-fill.information-line.information-off-fill.information-off-line.infrared-thermometer-fill.infrared-thermometer-line.ink-bottle-fill.ink-bottle-line.input-cursor-move.input-field.input-method-fill.input-method-line.insert-column-left.insert-column-right.insert-row-bottom.insert-row-top.instagram-fill.instagram-line.install-fill.install-line.instance-fill.instance-line.invision-fill.invision-line.italic.java-fill.java-line.javascript-fill.javascript-line.jewelry-fill.jewelry-line.kakao-talk-fill.kakao-talk-line.kanban-view.kanban-view-2.key-2-fill.key-2-line.key-fill.key-line.keyboard-box-fill.keyboard-box-line.keyboard-fill.keyboard-line.keynote-fill.keynote-line.kick-fill.kick-line.knife-blood-fill.knife-blood-line.knife-fill.knife-line.landscape-ai-fill.landscape-ai-line.landscape-fill.landscape-line.layout-2-fill.layout-2-line.layout-3-fill.layout-3-line.layout-4-fill.layout-4-line.layout-5-fill.layout-5-line.layout-6-fill.layout-6-line.layout-bottom-2-fill.layout-bottom-2-line.layout-bottom-fill.layout-bottom-line.layout-column-fill.layout-column-line.layout-fill.layout-grid-2-fill.layout-grid-2-line.layout-grid-fill.layout-grid-line.layout-horizontal-fill.layout-horizontal-line.layout-left-2-fill.layout-left-2-line.layout-left-fill.layout-left-line.layout-line.layout-masonry-fill.layout-masonry-line.layout-right-2-fill.layout-right-2-line.layout-right-fill.layout-right-line.layout-row-fill.layout-row-line.layout-top-2-fill.layout-top-2-line.layout-top-fill.layout-top-line.layout-vertical-fill.layout-vertical-line.leaf-fill.leaf-line.letter-spacing-2.lifebuoy-fill.lifebuoy-line.lightbulb-fill.lightbulb-flash-fill.lightbulb-flash-line.lightbulb-line.line-chart-fill.line-chart-line.line-fill.line-height.line-height-2.line-line.link.link-m.link-unlink.link-unlink-m.linkedin-box-fill.linkedin-box-line.linkedin-fill.linkedin-line.links-fill.links-line.list-check.list-check-2.list-check-3.list-indefinite.list-ordered.list-ordered-2.list-radio.list-settings-fill.list-settings-line.list-unordered.list-view.live-fill.live-line.loader-2-fill.loader-2-line.loader-3-fill.loader-3-line.loader-4-fill.loader-4-line.loader-5-fill.loader-5-line.loader-fill.loader-line.lock-2-fill.lock-2-line.lock-fill.lock-line.lock-password-fill.lock-password-line.lock-star-fill.lock-star-line.lock-unlock-fill.lock-unlock-line.login-box-fill.login-box-line.login-circle-fill.login-circle-line.logout-box-fill.logout-box-line.logout-box-r-fill.logout-box-r-line.logout-circle-fill.logout-circle-line.logout-circle-r-fill.logout-circle-r-line.loop-left-fill.loop-left-line.loop-right-fill.loop-right-line.luggage-cart-fill.luggage-cart-line.luggage-deposit-fill.luggage-deposit-line.lungs-fill.lungs-line.mac-fill.mac-line.macbook-fill.macbook-line.magic-fill.magic-line.mail-add-fill.mail-add-line.mail-ai-fill.mail-ai-line.mail-check-fill.mail-check-line.mail-close-fill.mail-close-line.mail-download-fill.mail-download-line.mail-fill.mail-forbid-fill.mail-forbid-line.mail-line.mail-lock-fill.mail-lock-line.mail-open-fill.mail-open-line.mail-send-fill.mail-send-line.mail-settings-fill.mail-settings-line.mail-star-fill.mail-star-line.mail-unread-fill.mail-unread-line.mail-volume-fill.mail-volume-line.map-2-fill.map-2-line.map-fill.map-line.map-pin-2-fill.map-pin-2-line.map-pin-3-fill.map-pin-3-line.map-pin-4-fill.map-pin-4-line.map-pin-5-fill.map-pin-5-line.map-pin-add-fill.map-pin-add-line.map-pin-fill.map-pin-line.map-pin-range-fill.map-pin-range-line.map-pin-time-fill.map-pin-time-line.map-pin-user-fill.map-pin-user-line.mark-pen-fill.mark-pen-line.markdown-fill.markdown-line.markup-fill.markup-line.mastercard-fill.mastercard-line.mastodon-fill.mastodon-line.medal-2-fill.medal-2-line.medal-fill.medal-line.medicine-bottle-fill.medicine-bottle-line.medium-fill.medium-line.megaphone-fill.megaphone-line.memories-fill.memories-line.men-fill.men-line.mental-health-fill.mental-health-line.menu-2-fill.menu-2-line.menu-3-fill.menu-3-line.menu-4-fill.menu-4-line.menu-5-fill.menu-5-line.menu-add-fill.menu-add-line.menu-fill.menu-fold-2-fill.menu-fold-2-line.menu-fold-3-fill.menu-fold-3-line.menu-fold-4-fill.menu-fold-4-line.menu-fold-fill.menu-fold-line.menu-line.menu-search-fill.menu-search-line.menu-unfold-2-fill.menu-unfold-2-line.menu-unfold-3-fill.menu-unfold-3-line.menu-unfold-4-fill.menu-unfold-4-line.menu-unfold-fill.menu-unfold-line.merge-cells-horizontal.merge-cells-vertical.message-2-fill.message-2-line.message-3-fill.message-3-line.message-fill.message-line.messenger-fill.messenger-line.meta-fill.meta-line.meteor-fill.meteor-line.mic-2-ai-fill.mic-2-ai-line.mic-2-fill.mic-2-line.mic-ai-fill.mic-ai-line.mic-fill.mic-line.mic-off-fill.mic-off-line.mickey-fill.mickey-line.microscope-fill.microscope-line.microsoft-fill.microsoft-line.microsoft-loop-fill.microsoft-loop-line.mind-map.mini-program-fill.mini-program-line.mist-fill.mist-line.mixtral-fill.mixtral-line.mobile-download-fill.mobile-download-line.money-cny-box-fill.money-cny-box-line.money-cny-circle-fill.money-cny-circle-line.money-dollar-box-fill.money-dollar-box-line.money-dollar-circle-fill.money-dollar-circle-line.money-euro-box-fill.money-euro-box-line.money-euro-circle-fill.money-euro-circle-line.money-pound-box-fill.money-pound-box-line.money-pound-circle-fill.money-pound-circle-line.money-rupee-circle-fill.money-rupee-circle-line.moon-clear-fill.moon-clear-line.moon-cloudy-fill.moon-cloudy-line.moon-fill.moon-foggy-fill.moon-foggy-line.moon-line.more-2-fill.more-2-line.more-fill.more-line.motorbike-fill.motorbike-line.mouse-fill.mouse-line.movie-2-ai-fill.movie-2-ai-line.movie-2-fill.movie-2-line.movie-ai-fill.movie-ai-line.movie-fill.movie-line.multi-image-fill.multi-image-line.music-2-fill.music-2-line.music-ai-fill.music-ai-line.music-fill.music-line.mv-ai-fill.mv-ai-line.mv-fill.mv-line.navigation-fill.navigation-line.netease-cloud-music-fill.netease-cloud-music-line.netflix-fill.netflix-line.news-fill.news-line.newspaper-fill.newspaper-line.nextjs-fill.nextjs-line.nft-fill.nft-line.no-credit-card-fill.no-credit-card-line.node-tree.nodejs-fill.nodejs-line.notification-2-fill.notification-2-line.notification-3-fill.notification-3-line.notification-4-fill.notification-4-line.notification-badge-fill.notification-badge-line.notification-fill.notification-line.notification-off-fill.notification-off-line.notification-snooze-fill.notification-snooze-line.notion-fill.notion-line.npmjs-fill.npmjs-line.number-0.number-1.number-2.number-3.number-4.number-5.number-6.number-7.number-8.number-9.numbers-fill.numbers-line.nurse-fill.nurse-line.octagon-fill.octagon-line.oil-fill.oil-line.omega.open-arm-fill.open-arm-line.open-source-fill.open-source-line.openai-fill.openai-line.openbase-fill.openbase-line.opera-fill.opera-line.order-play-fill.order-play-line.organization-chart.outlet-2-fill.outlet-2-line.outlet-fill.outlet-line.overline.p2p-fill.p2p-line.page-separator.pages-fill.pages-line.paint-brush-fill.paint-brush-line.paint-fill.paint-line.palette-fill.palette-line.pantone-fill.pantone-line.paragraph.parent-fill.parent-line.parentheses-fill.parentheses-line.parking-box-fill.parking-box-line.parking-fill.parking-line.pass-expired-fill.pass-expired-line.pass-pending-fill.pass-pending-line.pass-valid-fill.pass-valid-line.passport-fill.passport-line.patreon-fill.patreon-line.pause-circle-fill.pause-circle-line.pause-fill.pause-large-fill.pause-large-line.pause-line.pause-mini-fill.pause-mini-line.paypal-fill.paypal-line.pen-nib-fill.pen-nib-line.pencil-fill.pencil-line.pencil-ruler-2-fill.pencil-ruler-2-line.pencil-ruler-fill.pencil-ruler-line.pentagon-fill.pentagon-line.percent-fill.percent-line.perplexity-fill.perplexity-line.phone-camera-fill.phone-camera-line.phone-fill.phone-find-fill.phone-find-line.phone-line.phone-lock-fill.phone-lock-line.php-fill.php-line.picture-in-picture-2-fill.picture-in-picture-2-line.picture-in-picture-exit-fill.picture-in-picture-exit-line.picture-in-picture-fill.picture-in-picture-line.pie-chart-2-fill.pie-chart-2-line.pie-chart-box-fill.pie-chart-box-line.pie-chart-fill.pie-chart-line.pin-distance-fill.pin-distance-line.ping-pong-fill.ping-pong-line.pinterest-fill.pinterest-line.pinyin-input.pix-fill.pix-line.pixelfed-fill.pixelfed-line.plane-fill.plane-line.planet-fill.planet-line.plant-fill.plant-line.play-circle-fill.play-circle-line.play-fill.play-large-fill.play-large-line.play-line.play-list-2-fill.play-list-2-line.play-list-add-fill.play-list-add-line.play-list-fill.play-list-line.play-mini-fill.play-mini-line.play-reverse-fill.play-reverse-large-fill.play-reverse-large-line.play-reverse-line.play-reverse-mini-fill.play-reverse-mini-line.playstation-fill.playstation-line.plug-2-fill.plug-2-line.plug-fill.plug-line.poker-clubs-fill.poker-clubs-line.poker-diamonds-fill.poker-diamonds-line.poker-hearts-fill.poker-hearts-line.poker-spades-fill.poker-spades-line.polaroid-2-fill.polaroid-2-line.polaroid-fill.polaroid-line.police-badge-fill.police-badge-line.police-car-fill.police-car-line.presentation-fill.presentation-line.price-tag-2-fill.price-tag-2-line.price-tag-3-fill.price-tag-3-line.price-tag-fill.price-tag-line.printer-cloud-fill.printer-cloud-line.printer-fill.printer-line.product-hunt-fill.product-hunt-line.profile-fill.profile-line.progress-1-fill.progress-1-line.progress-2-fill.progress-2-line.progress-3-fill.progress-3-line.progress-4-fill.progress-4-line.progress-5-fill.progress-5-line.progress-6-fill.progress-6-line.progress-7-fill.progress-7-line.progress-8-fill.progress-8-line.prohibited-2-fill.prohibited-2-line.prohibited-fill.prohibited-line.projector-2-fill.projector-2-line.projector-fill.projector-line.psychotherapy-fill.psychotherapy-line.pulse-ai-fill.pulse-ai-line.pulse-fill.pulse-line.pushpin-2-fill.pushpin-2-line.pushpin-fill.pushpin-line.puzzle-2-fill.puzzle-2-line.puzzle-fill.puzzle-line.qq-fill.qq-line.qr-code-fill.qr-code-line.qr-scan-2-fill.qr-scan-2-line.qr-scan-fill.qr-scan-line.question-answer-fill.question-answer-line.question-fill.question-line.question-mark.questionnaire-fill.questionnaire-line.quill-pen-ai-fill.quill-pen-ai-line.quill-pen-fill.quill-pen-line.quote-text.radar-fill.radar-line.radio-2-fill.radio-2-line.radio-button-fill.radio-button-line.radio-fill.radio-line.rainbow-fill.rainbow-line.rainy-fill.rainy-line.ram-2-fill.ram-2-line.ram-fill.ram-line.reactjs-fill.reactjs-line.receipt-fill.receipt-line.record-circle-fill.record-circle-line.record-mail-fill.record-mail-line.rectangle-fill.rectangle-line.recycle-fill.recycle-line.red-packet-fill.red-packet-line.reddit-fill.reddit-line.refresh-fill.refresh-line.refund-2-fill.refund-2-line.refund-fill.refund-line.registered-fill.registered-line.remix-run-fill.remix-run-line.remixicon-fill.remixicon-line.remote-control-2-fill.remote-control-2-line.remote-control-fill.remote-control-line.repeat-2-fill.repeat-2-line.repeat-fill.repeat-line.repeat-one-fill.repeat-one-line.replay-10-fill.replay-10-line.replay-15-fill.replay-15-line.replay-30-fill.replay-30-line.replay-5-fill.replay-5-line.reply-all-fill.reply-all-line.reply-fill.reply-line.reserved-fill.reserved-line.reset-left-fill.reset-left-line.reset-right-fill.reset-right-line.rest-time-fill.rest-time-line.restart-fill.restart-line.restaurant-2-fill.restaurant-2-line.restaurant-fill.restaurant-line.rewind-fill.rewind-line.rewind-mini-fill.rewind-mini-line.rewind-start-fill.rewind-start-line.rewind-start-mini-fill.rewind-start-mini-line.rfid-fill.rfid-line.rhythm-fill.rhythm-line.riding-fill.riding-line.road-map-fill.road-map-line.roadster-fill.roadster-line.robot-2-fill.robot-2-line.robot-3-fill.robot-3-line.robot-fill.robot-line.rocket-2-fill.rocket-2-line.rocket-fill.rocket-line.rotate-lock-fill.rotate-lock-line.rounded-corner.route-fill.route-line.router-fill.router-line.rss-fill.rss-line.ruler-2-fill.ruler-2-line.ruler-fill.ruler-line.run-fill.run-line.safari-fill.safari-line.safe-2-fill.safe-2-line.safe-3-fill.safe-3-line.safe-fill.safe-line.sailboat-fill.sailboat-line.save-2-fill.save-2-line.save-3-fill.save-3-line.save-fill.save-line.scales-2-fill.scales-2-line.scales-3-fill.scales-3-line.scales-fill.scales-line.scan-2-fill.scan-2-line.scan-fill.scan-line.school-fill.school-line.scissors-2-fill.scissors-2-line.scissors-cut-fill.scissors-cut-line.scissors-fill.scissors-line.screenshot-2-fill.screenshot-2-line.screenshot-fill.screenshot-line.scroll-to-bottom-fill.scroll-to-bottom-line.sd-card-fill.sd-card-line.sd-card-mini-fill.sd-card-mini-line.search-2-fill.search-2-line.search-eye-fill.search-eye-line.search-fill.search-line.secure-payment-fill.secure-payment-line.seedling-fill.seedling-line.send-backward.send-plane-2-fill.send-plane-2-line.send-plane-fill.send-plane-line.send-to-back.sensor-fill.sensor-line.seo-fill.seo-line.separator.server-fill.server-line.service-bell-fill.service-bell-line.service-fill.service-line.settings-2-fill.settings-2-line.settings-3-fill.settings-3-line.settings-4-fill.settings-4-line.settings-5-fill.settings-5-line.settings-6-fill.settings-6-line.settings-fill.settings-line.shadow-fill.shadow-line.shake-hands-fill.shake-hands-line.shape-2-fill.shape-2-line.shape-fill.shape-line.shapes-fill.shapes-line.share-2-fill.share-2-line.share-box-fill.share-box-line.share-circle-fill.share-circle-line.share-fill.share-forward-2-fill.share-forward-2-line.share-forward-box-fill.share-forward-box-line.share-forward-fill.share-forward-line.share-line.shield-check-fill.shield-check-line.shield-cross-fill.shield-cross-line.shield-fill.shield-flash-fill.shield-flash-line.shield-keyhole-fill.shield-keyhole-line.shield-line.shield-star-fill.shield-star-line.shield-user-fill.shield-user-line.shining-2-fill.shining-2-line.shining-fill.shining-line.ship-2-fill.ship-2-line.ship-fill.ship-line.shirt-fill.shirt-line.shopping-bag-2-fill.shopping-bag-2-line.shopping-bag-3-fill.shopping-bag-3-line.shopping-bag-4-fill.shopping-bag-4-line.shopping-bag-fill.shopping-bag-line.shopping-basket-2-fill.shopping-basket-2-line.shopping-basket-fill.shopping-basket-line.shopping-cart-2-fill.shopping-cart-2-line.shopping-cart-fill.shopping-cart-line.showers-fill.showers-line.shuffle-fill.shuffle-line.shut-down-fill.shut-down-line.side-bar-fill.side-bar-line.sidebar-fold-fill.sidebar-fold-line.sidebar-unfold-fill.sidebar-unfold-line.signal-tower-fill.signal-tower-line.signal-wifi-1-fill.signal-wifi-1-line.signal-wifi-2-fill.signal-wifi-2-line.signal-wifi-3-fill.signal-wifi-3-line.signal-wifi-error-fill.signal-wifi-error-line.signal-wifi-fill.signal-wifi-line.signal-wifi-off-fill.signal-wifi-off-line.signpost-fill.signpost-line.sim-card-2-fill.sim-card-2-line.sim-card-fill.sim-card-line.single-quotes-l.single-quotes-r.sip-fill.sip-line.sketching.skip-back-fill.skip-back-line.skip-back-mini-fill.skip-back-mini-line.skip-down-fill.skip-down-line.skip-forward-fill.skip-forward-line.skip-forward-mini-fill.skip-forward-mini-line.skip-left-fill.skip-left-line.skip-right-fill.skip-right-line.skip-up-fill.skip-up-line.skull-2-fill.skull-2-line.skull-fill.skull-line.skype-fill.skype-line.slack-fill.slack-line.slash-commands.slash-commands-2.slice-fill.slice-line.slideshow-2-fill.slideshow-2-line.slideshow-3-fill.slideshow-3-line.slideshow-4-fill.slideshow-4-line.slideshow-fill.slideshow-line.slideshow-view.slow-down-fill.slow-down-line.smartphone-fill.smartphone-line.snapchat-fill.snapchat-line.snowflake-fill.snowflake-line.snowy-fill.snowy-line.sofa-fill.sofa-line.sort-alphabet-asc.sort-alphabet-desc.sort-asc.sort-desc.sort-number-asc.sort-number-desc.sound-module-fill.sound-module-line.soundcloud-fill.soundcloud-line.space.space-ship-fill.space-ship-line.spam-2-fill.spam-2-line.spam-3-fill.spam-3-line.spam-fill.spam-line.sparkling-2-fill.sparkling-2-line.sparkling-fill.sparkling-line.speak-ai-fill.speak-ai-line.speak-fill.speak-line.speaker-2-fill.speaker-2-line.speaker-3-fill.speaker-3-line.speaker-fill.speaker-line.spectrum-fill.spectrum-line.speed-fill.speed-line.speed-mini-fill.speed-mini-line.speed-up-fill.speed-up-line.split-cells-horizontal.split-cells-vertical.spotify-fill.spotify-line.spy-fill.spy-line.square-fill.square-line.square-root.stack-fill.stack-line.stack-overflow-fill.stack-overflow-line.stacked-view.stackshare-fill.stackshare-line.stairs-fill.stairs-line.star-fill.star-half-fill.star-half-line.star-half-s-fill.star-half-s-line.star-line.star-off-fill.star-off-line.star-s-fill.star-s-line.star-smile-fill.star-smile-line.steam-fill.steam-line.steering-2-fill.steering-2-line.steering-fill.steering-line.stethoscope-fill.stethoscope-line.sticky-note-2-fill.sticky-note-2-line.sticky-note-add-fill.sticky-note-add-line.sticky-note-fill.sticky-note-line.stock-fill.stock-line.stop-circle-fill.stop-circle-line.stop-fill.stop-large-fill.stop-large-line.stop-line.stop-mini-fill.stop-mini-line.store-2-fill.store-2-line.store-3-fill.store-3-line.store-fill.store-line.strikethrough.strikethrough-2.subscript.subscript-2.subtract-fill.subtract-line.subway-fill.subway-line.subway-wifi-fill.subway-wifi-line.suitcase-2-fill.suitcase-2-line.suitcase-3-fill.suitcase-3-line.suitcase-fill.suitcase-line.sun-cloudy-fill.sun-cloudy-line.sun-fill.sun-foggy-fill.sun-foggy-line.sun-line.supabase-fill.supabase-line.superscript.superscript-2.surgical-mask-fill.surgical-mask-line.surround-sound-fill.surround-sound-line.survey-fill.survey-line.svelte-fill.svelte-line.swap-2-fill.swap-2-line.swap-3-fill.swap-3-line.swap-box-fill.swap-box-line.swap-fill.swap-line.switch-fill.switch-line.sword-fill.sword-line.syringe-fill.syringe-line.t-box-fill.t-box-line.t-shirt-2-fill.t-shirt-2-line.t-shirt-air-fill.t-shirt-air-line.t-shirt-fill.t-shirt-line.table-2.table-3.table-alt-fill.table-alt-line.table-fill.table-line.table-view.tablet-fill.tablet-line.tailwind-css-fill.tailwind-css-line.takeaway-fill.takeaway-line.taobao-fill.taobao-line.tape-fill.tape-line.task-fill.task-line.taxi-fill.taxi-line.taxi-wifi-fill.taxi-wifi-line.team-fill.team-line.telegram-2-fill.telegram-2-line.telegram-fill.telegram-line.temp-cold-fill.temp-cold-line.temp-hot-fill.temp-hot-line.tent-fill.tent-line.terminal-box-fill.terminal-box-line.terminal-fill.terminal-line.terminal-window-fill.terminal-window-line.test-tube-fill.test-tube-line.text.text-block.text-direction-l.text-direction-r.text-snippet.text-spacing.text-wrap.thermometer-fill.thermometer-line.threads-fill.threads-line.thumb-down-fill.thumb-down-line.thumb-up-fill.thumb-up-line.thunderstorms-fill.thunderstorms-line.ticket-2-fill.ticket-2-line.ticket-fill.ticket-line.tiktok-fill.tiktok-line.time-fill.time-line.time-zone-fill.time-zone-line.timeline-view.timer-2-fill.timer-2-line.timer-fill.timer-flash-fill.timer-flash-line.timer-line.todo-fill.todo-line.toggle-fill.toggle-line.token-swap-fill.token-swap-line.tools-fill.tools-line.tooth-fill.tooth-line.tornado-fill.tornado-line.trademark-fill.trademark-line.traffic-light-fill.traffic-light-line.train-fill.train-line.train-wifi-fill.train-wifi-line.translate.translate-2.translate-ai.translate-ai-2.travesti-fill.travesti-line.treasure-map-fill.treasure-map-line.tree-fill.tree-line.trello-fill.trello-line.triangle-fill.triangle-line.triangular-flag-fill.triangular-flag-line.trophy-fill.trophy-line.truck-fill.truck-line.tumblr-fill.tumblr-line.tv-2-fill.tv-2-line.tv-fill.tv-line.twitch-fill.twitch-line.twitter-fill.twitter-line.twitter-x-fill.twitter-x-line.typhoon-fill.typhoon-line.u-disk-fill.u-disk-line.ubuntu-fill.ubuntu-line.umbrella-fill.umbrella-line.underline.uninstall-fill.uninstall-line.unpin-fill.unpin-line.unsplash-fill.unsplash-line.upload-2-fill.upload-2-line.upload-cloud-2-fill.upload-cloud-2-line.upload-cloud-fill.upload-cloud-line.upload-fill.upload-line.usb-fill.usb-line.user-2-fill.user-2-line.user-3-fill.user-3-line.user-4-fill.user-4-line.user-5-fill.user-5-line.user-6-fill.user-6-line.user-add-fill.user-add-line.user-community-fill.user-community-line.user-fill.user-follow-fill.user-follow-line.user-forbid-fill.user-forbid-line.user-heart-fill.user-heart-line.user-line.user-location-fill.user-location-line.user-minus-fill.user-minus-line.user-received-2-fill.user-received-2-line.user-received-fill.user-received-line.user-search-fill.user-search-line.user-settings-fill.user-settings-line.user-shared-2-fill.user-shared-2-line.user-shared-fill.user-shared-line.user-smile-fill.user-smile-line.user-star-fill.user-star-line.user-unfollow-fill.user-unfollow-line.user-voice-fill.user-voice-line.vercel-fill.vercel-line.verified-badge-fill.verified-badge-line.video-add-fill.video-add-line.video-ai-fill.video-ai-line.video-chat-fill.video-chat-line.video-download-fill.video-download-line.video-fill.video-line.video-off-fill.video-off-line.video-on-ai-fill.video-on-ai-line.video-on-fill.video-on-line.video-upload-fill.video-upload-line.vidicon-2-fill.vidicon-2-line.vidicon-fill.vidicon-line.vimeo-fill.vimeo-line.vip-crown-2-fill.vip-crown-2-line.vip-crown-fill.vip-crown-line.vip-diamond-fill.vip-diamond-line.vip-fill.vip-line.virus-fill.virus-line.visa-fill.visa-line.vk-fill.vk-line.voice-ai-fill.voice-ai-line.voice-recognition-fill.voice-recognition-line.voiceprint-fill.voiceprint-line.volume-down-fill.volume-down-line.volume-mute-fill.volume-mute-line.volume-off-vibrate-fill.volume-off-vibrate-line.volume-up-fill.volume-up-line.volume-vibrate-fill.volume-vibrate-line.vuejs-fill.vuejs-line.walk-fill.walk-line.wallet-2-fill.wallet-2-line.wallet-3-fill.wallet-3-line.wallet-fill.wallet-line.water-flash-fill.water-flash-line.water-percent-fill.water-percent-line.webcam-fill.webcam-line.webhook-fill.webhook-line.wechat-2-fill.wechat-2-line.wechat-channels-fill.wechat-channels-line.wechat-fill.wechat-line.wechat-pay-fill.wechat-pay-line.weibo-fill.weibo-line.weight-fill.weight-line.whatsapp-fill.whatsapp-line.wheelchair-fill.wheelchair-line.wifi-fill.wifi-line.wifi-off-fill.wifi-off-line.window-2-fill.window-2-line.window-fill.window-line.windows-fill.windows-line.windy-fill.windy-line.wireless-charging-fill.wireless-charging-line.women-fill.women-line.wordpress-fill.wordpress-line.wubi-input.xbox-fill.xbox-line.xing-fill.xing-line.xrp-fill.xrp-line.xtz-fill.xtz-line.youtube-fill.youtube-line.yuque-fill.yuque-line.zcool-fill.zcool-line.zhihu-fill.zhihu-line.zoom-in-fill.zoom-in-line.zoom-out-fill.zoom-out-line.zzz-fill.zzz-line".split("."), ox = [
19243
+ }), xx = /* @__PURE__ */ X({ default: () => Sx }), Sx = /*#__PURE__*/ Z(bx, [["__scopeId", "data-v-158ede3a"]]), Cx = /* @__PURE__ */ "24-hours-fill.24-hours-line.4k-fill.4k-line.a-b.accessibility-fill.accessibility-line.account-box-2-fill.account-box-2-line.account-box-fill.account-box-line.account-circle-2-fill.account-circle-2-line.account-circle-fill.account-circle-line.account-pin-box-fill.account-pin-box-line.account-pin-circle-fill.account-pin-circle-line.add-box-fill.add-box-line.add-circle-fill.add-circle-line.add-fill.add-large-fill.add-large-line.add-line.admin-fill.admin-line.advertisement-fill.advertisement-line.aed-electrodes-fill.aed-electrodes-line.aed-fill.aed-line.ai-generate.ai-generate-2.ai-generate-text.airplay-fill.airplay-line.alarm-add-fill.alarm-add-line.alarm-fill.alarm-line.alarm-snooze-fill.alarm-snooze-line.alarm-warning-fill.alarm-warning-line.album-fill.album-line.alert-fill.alert-line.alibaba-cloud-fill.alibaba-cloud-line.aliens-fill.aliens-line.align-bottom.align-center.align-item-bottom-fill.align-item-bottom-line.align-item-horizontal-center-fill.align-item-horizontal-center-line.align-item-left-fill.align-item-left-line.align-item-right-fill.align-item-right-line.align-item-top-fill.align-item-top-line.align-item-vertical-center-fill.align-item-vertical-center-line.align-justify.align-left.align-right.align-top.align-vertically.alipay-fill.alipay-line.amazon-fill.amazon-line.anchor-fill.anchor-line.ancient-gate-fill.ancient-gate-line.ancient-pavilion-fill.ancient-pavilion-line.android-fill.android-line.angularjs-fill.angularjs-line.anthropic-fill.anthropic-line.anticlockwise-2-fill.anticlockwise-2-line.anticlockwise-fill.anticlockwise-line.app-store-fill.app-store-line.apple-fill.apple-line.apps-2-add-fill.apps-2-add-line.apps-2-ai-fill.apps-2-ai-line.apps-2-fill.apps-2-line.apps-fill.apps-line.archive-2-fill.archive-2-line.archive-drawer-fill.archive-drawer-line.archive-fill.archive-line.archive-stack-fill.archive-stack-line.armchair-fill.armchair-line.arrow-down-box-fill.arrow-down-box-line.arrow-down-circle-fill.arrow-down-circle-line.arrow-down-double-fill.arrow-down-double-line.arrow-down-fill.arrow-down-line.arrow-down-long-fill.arrow-down-long-line.arrow-down-s-fill.arrow-down-s-line.arrow-down-wide-fill.arrow-down-wide-line.arrow-drop-down-fill.arrow-drop-down-line.arrow-drop-left-fill.arrow-drop-left-line.arrow-drop-right-fill.arrow-drop-right-line.arrow-drop-up-fill.arrow-drop-up-line.arrow-go-back-fill.arrow-go-back-line.arrow-go-forward-fill.arrow-go-forward-line.arrow-left-box-fill.arrow-left-box-line.arrow-left-circle-fill.arrow-left-circle-line.arrow-left-double-fill.arrow-left-double-line.arrow-left-down-box-fill.arrow-left-down-box-line.arrow-left-down-fill.arrow-left-down-line.arrow-left-down-long-fill.arrow-left-down-long-line.arrow-left-fill.arrow-left-line.arrow-left-long-fill.arrow-left-long-line.arrow-left-right-fill.arrow-left-right-line.arrow-left-s-fill.arrow-left-s-line.arrow-left-up-box-fill.arrow-left-up-box-line.arrow-left-up-fill.arrow-left-up-line.arrow-left-up-long-fill.arrow-left-up-long-line.arrow-left-wide-fill.arrow-left-wide-line.arrow-right-box-fill.arrow-right-box-line.arrow-right-circle-fill.arrow-right-circle-line.arrow-right-double-fill.arrow-right-double-line.arrow-right-down-box-fill.arrow-right-down-box-line.arrow-right-down-fill.arrow-right-down-line.arrow-right-down-long-fill.arrow-right-down-long-line.arrow-right-fill.arrow-right-line.arrow-right-long-fill.arrow-right-long-line.arrow-right-s-fill.arrow-right-s-line.arrow-right-up-box-fill.arrow-right-up-box-line.arrow-right-up-fill.arrow-right-up-line.arrow-right-up-long-fill.arrow-right-up-long-line.arrow-right-wide-fill.arrow-right-wide-line.arrow-turn-back-fill.arrow-turn-back-line.arrow-turn-forward-fill.arrow-turn-forward-line.arrow-up-box-fill.arrow-up-box-line.arrow-up-circle-fill.arrow-up-circle-line.arrow-up-double-fill.arrow-up-double-line.arrow-up-down-fill.arrow-up-down-line.arrow-up-fill.arrow-up-line.arrow-up-long-fill.arrow-up-long-line.arrow-up-s-fill.arrow-up-s-line.arrow-up-wide-fill.arrow-up-wide-line.artboard-2-fill.artboard-2-line.artboard-fill.artboard-line.article-fill.article-line.aspect-ratio-fill.aspect-ratio-line.asterisk.at-fill.at-line.attachment-2.attachment-fill.attachment-line.auction-fill.auction-line.award-fill.award-line.baidu-fill.baidu-line.ball-pen-fill.ball-pen-line.bank-card-2-fill.bank-card-2-line.bank-card-fill.bank-card-line.bank-fill.bank-line.bar-chart-2-fill.bar-chart-2-line.bar-chart-box-ai-fill.bar-chart-box-ai-line.bar-chart-box-fill.bar-chart-box-line.bar-chart-fill.bar-chart-grouped-fill.bar-chart-grouped-line.bar-chart-horizontal-fill.bar-chart-horizontal-line.bar-chart-line.barcode-box-fill.barcode-box-line.barcode-fill.barcode-line.bard-fill.bard-line.barricade-fill.barricade-line.base-station-fill.base-station-line.basketball-fill.basketball-line.battery-2-charge-fill.battery-2-charge-line.battery-2-fill.battery-2-line.battery-charge-fill.battery-charge-line.battery-fill.battery-line.battery-low-fill.battery-low-line.battery-saver-fill.battery-saver-line.battery-share-fill.battery-share-line.bear-smile-fill.bear-smile-line.beer-fill.beer-line.behance-fill.behance-line.bell-fill.bell-line.bike-fill.bike-line.bilibili-fill.bilibili-line.bill-fill.bill-line.billiards-fill.billiards-line.bit-coin-fill.bit-coin-line.blaze-fill.blaze-line.blender-fill.blender-line.blogger-fill.blogger-line.bluesky-fill.bluesky-line.bluetooth-connect-fill.bluetooth-connect-line.bluetooth-fill.bluetooth-line.blur-off-fill.blur-off-line.bnb-fill.bnb-line.body-scan-fill.body-scan-line.bold.book-2-fill.book-2-line.book-3-fill.book-3-line.book-fill.book-line.book-marked-fill.book-marked-line.book-open-fill.book-open-line.book-read-fill.book-read-line.book-shelf-fill.book-shelf-line.booklet-fill.booklet-line.bookmark-2-fill.bookmark-2-line.bookmark-3-fill.bookmark-3-line.bookmark-fill.bookmark-line.bootstrap-fill.bootstrap-line.bowl-fill.bowl-line.box-1-fill.box-1-line.box-2-fill.box-2-line.box-3-fill.box-3-line.boxing-fill.boxing-line.braces-fill.braces-line.brackets-fill.brackets-line.brain-2-fill.brain-2-line.brain-fill.brain-line.bread-fill.bread-line.briefcase-2-fill.briefcase-2-line.briefcase-3-fill.briefcase-3-line.briefcase-4-fill.briefcase-4-line.briefcase-5-fill.briefcase-5-line.briefcase-fill.briefcase-line.bring-forward.bring-to-front.broadcast-fill.broadcast-line.brush-2-fill.brush-2-line.brush-3-fill.brush-3-line.brush-4-fill.brush-4-line.brush-ai-fill.brush-ai-line.brush-fill.brush-line.btc-fill.btc-line.bubble-chart-fill.bubble-chart-line.bug-2-fill.bug-2-line.bug-fill.bug-line.building-2-fill.building-2-line.building-3-fill.building-3-line.building-4-fill.building-4-line.building-fill.building-line.bus-2-fill.bus-2-line.bus-fill.bus-line.bus-wifi-fill.bus-wifi-line.cactus-fill.cactus-line.cake-2-fill.cake-2-line.cake-3-fill.cake-3-line.cake-fill.cake-line.calculator-fill.calculator-line.calendar-2-fill.calendar-2-line.calendar-check-fill.calendar-check-line.calendar-close-fill.calendar-close-line.calendar-event-fill.calendar-event-line.calendar-fill.calendar-line.calendar-schedule-fill.calendar-schedule-line.calendar-todo-fill.calendar-todo-line.calendar-view.camera-2-fill.camera-2-line.camera-3-fill.camera-3-line.camera-ai-fill.camera-ai-line.camera-fill.camera-lens-ai-fill.camera-lens-ai-line.camera-lens-fill.camera-lens-line.camera-line.camera-off-fill.camera-off-line.camera-switch-fill.camera-switch-line.candle-fill.candle-line.capsule-fill.capsule-line.car-fill.car-line.car-washing-fill.car-washing-line.caravan-fill.caravan-line.carousel-view.cash-fill.cash-line.cast-fill.cast-line.cellphone-fill.cellphone-line.celsius-fill.celsius-line.centos-fill.centos-line.character-recognition-fill.character-recognition-line.charging-pile-2-fill.charging-pile-2-line.charging-pile-fill.charging-pile-line.chat-1-fill.chat-1-line.chat-2-fill.chat-2-line.chat-3-fill.chat-3-line.chat-4-fill.chat-4-line.chat-ai-fill.chat-ai-line.chat-check-fill.chat-check-line.chat-delete-fill.chat-delete-line.chat-download-fill.chat-download-line.chat-follow-up-fill.chat-follow-up-line.chat-forward-fill.chat-forward-line.chat-heart-fill.chat-heart-line.chat-history-fill.chat-history-line.chat-new-fill.chat-new-line.chat-off-fill.chat-off-line.chat-poll-fill.chat-poll-line.chat-private-fill.chat-private-line.chat-quote-fill.chat-quote-line.chat-search-fill.chat-search-line.chat-settings-fill.chat-settings-line.chat-smile-2-fill.chat-smile-2-line.chat-smile-3-fill.chat-smile-3-line.chat-smile-ai-fill.chat-smile-ai-line.chat-smile-fill.chat-smile-line.chat-thread-fill.chat-thread-line.chat-unread-fill.chat-unread-line.chat-upload-fill.chat-upload-line.chat-voice-ai-fill.chat-voice-ai-line.chat-voice-fill.chat-voice-line.check-double-fill.check-double-line.check-fill.check-line.checkbox-blank-circle-fill.checkbox-blank-circle-line.checkbox-blank-fill.checkbox-blank-line.checkbox-circle-fill.checkbox-circle-line.checkbox-fill.checkbox-indeterminate-fill.checkbox-indeterminate-line.checkbox-line.checkbox-multiple-blank-fill.checkbox-multiple-blank-line.checkbox-multiple-fill.checkbox-multiple-line.chess-fill.chess-line.china-railway-fill.china-railway-line.chrome-fill.chrome-line.circle-fill.circle-line.clapperboard-ai-fill.clapperboard-ai-line.clapperboard-fill.clapperboard-line.claude-fill.claude-line.clipboard-fill.clipboard-line.clockwise-2-fill.clockwise-2-line.clockwise-fill.clockwise-line.close-circle-fill.close-circle-line.close-fill.close-large-fill.close-large-line.close-line.closed-captioning-ai-fill.closed-captioning-ai-line.closed-captioning-fill.closed-captioning-line.cloud-fill.cloud-line.cloud-off-fill.cloud-off-line.cloud-windy-fill.cloud-windy-line.cloudy-2-fill.cloudy-2-line.cloudy-fill.cloudy-line.code-ai-fill.code-ai-line.code-block.code-box-fill.code-box-line.code-fill.code-line.code-s-fill.code-s-line.code-s-slash-fill.code-s-slash-line.code-view.codepen-fill.codepen-line.coin-fill.coin-line.coins-fill.coins-line.collage-fill.collage-line.collapse-diagonal-2-fill.collapse-diagonal-2-line.collapse-diagonal-fill.collapse-diagonal-line.collapse-horizontal-fill.collapse-horizontal-line.collapse-vertical-fill.collapse-vertical-line.color-filter-ai-fill.color-filter-ai-line.color-filter-fill.color-filter-line.command-fill.command-line.community-fill.community-line.compass-2-fill.compass-2-line.compass-3-fill.compass-3-line.compass-4-fill.compass-4-line.compass-discover-fill.compass-discover-line.compass-fill.compass-line.compasses-2-fill.compasses-2-line.compasses-fill.compasses-line.computer-fill.computer-line.contacts-book-2-fill.contacts-book-2-line.contacts-book-3-fill.contacts-book-3-line.contacts-book-fill.contacts-book-line.contacts-book-upload-fill.contacts-book-upload-line.contacts-fill.contacts-line.contract-fill.contract-left-fill.contract-left-line.contract-left-right-fill.contract-left-right-line.contract-line.contract-right-fill.contract-right-line.contract-up-down-fill.contract-up-down-line.contrast-2-fill.contrast-2-line.contrast-drop-2-fill.contrast-drop-2-line.contrast-drop-fill.contrast-drop-line.contrast-fill.contrast-line.copilot-fill.copilot-line.copper-coin-fill.copper-coin-line.copper-diamond-fill.copper-diamond-line.copyleft-fill.copyleft-line.copyright-fill.copyright-line.coreos-fill.coreos-line.corner-down-left-fill.corner-down-left-line.corner-down-right-fill.corner-down-right-line.corner-left-down-fill.corner-left-down-line.corner-left-up-fill.corner-left-up-line.corner-right-down-fill.corner-right-down-line.corner-right-up-fill.corner-right-up-line.corner-up-left-double-fill.corner-up-left-double-line.corner-up-left-fill.corner-up-left-line.corner-up-right-double-fill.corner-up-right-double-line.corner-up-right-fill.corner-up-right-line.coupon-2-fill.coupon-2-line.coupon-3-fill.coupon-3-line.coupon-4-fill.coupon-4-line.coupon-5-fill.coupon-5-line.coupon-fill.coupon-line.cpu-fill.cpu-line.creative-commons-by-fill.creative-commons-by-line.creative-commons-fill.creative-commons-line.creative-commons-nc-fill.creative-commons-nc-line.creative-commons-nd-fill.creative-commons-nd-line.creative-commons-sa-fill.creative-commons-sa-line.creative-commons-zero-fill.creative-commons-zero-line.criminal-fill.criminal-line.crop-2-fill.crop-2-line.crop-fill.crop-line.cross-fill.cross-line.crosshair-2-fill.crosshair-2-line.crosshair-fill.crosshair-line.css3-fill.css3-line.cup-fill.cup-line.currency-fill.currency-line.cursor-fill.cursor-line.custom-size.customer-service-2-fill.customer-service-2-line.customer-service-fill.customer-service-line.dashboard-2-fill.dashboard-2-line.dashboard-3-fill.dashboard-3-line.dashboard-fill.dashboard-horizontal-fill.dashboard-horizontal-line.dashboard-line.database-2-fill.database-2-line.database-fill.database-line.delete-back-2-fill.delete-back-2-line.delete-back-fill.delete-back-line.delete-bin-2-fill.delete-bin-2-line.delete-bin-3-fill.delete-bin-3-line.delete-bin-4-fill.delete-bin-4-line.delete-bin-5-fill.delete-bin-5-line.delete-bin-6-fill.delete-bin-6-line.delete-bin-7-fill.delete-bin-7-line.delete-bin-fill.delete-bin-line.delete-column.delete-row.device-fill.device-line.device-recover-fill.device-recover-line.diamond-fill.diamond-line.diamond-ring-fill.diamond-ring-line.dice-1-fill.dice-1-line.dice-2-fill.dice-2-line.dice-3-fill.dice-3-line.dice-4-fill.dice-4-line.dice-5-fill.dice-5-line.dice-6-fill.dice-6-line.dice-fill.dice-line.dingding-fill.dingding-line.direction-fill.direction-line.disc-fill.disc-line.discord-fill.discord-line.discount-percent-fill.discount-percent-line.discuss-fill.discuss-line.dislike-fill.dislike-line.disqus-fill.disqus-line.divide-fill.divide-line.dna-fill.dna-line.donut-chart-fill.donut-chart-line.door-closed-fill.door-closed-line.door-fill.door-line.door-lock-box-fill.door-lock-box-line.door-lock-fill.door-lock-line.door-open-fill.door-open-line.dossier-fill.dossier-line.douban-fill.douban-line.double-quotes-l.double-quotes-r.download-2-fill.download-2-line.download-cloud-2-fill.download-cloud-2-line.download-cloud-fill.download-cloud-line.download-fill.download-line.draft-fill.draft-line.drag-drop-fill.drag-drop-line.drag-move-2-fill.drag-move-2-line.drag-move-fill.drag-move-line.draggable.dribbble-fill.dribbble-line.drinks-2-fill.drinks-2-line.drinks-fill.drinks-line.drive-fill.drive-line.drizzle-fill.drizzle-line.drop-fill.drop-line.dropbox-fill.dropbox-line.dropdown-list.dropper-fill.dropper-line.dual-sim-1-fill.dual-sim-1-line.dual-sim-2-fill.dual-sim-2-line.dv-fill.dv-line.dvd-ai-fill.dvd-ai-line.dvd-fill.dvd-line.e-bike-2-fill.e-bike-2-line.e-bike-fill.e-bike-line.earth-fill.earth-line.earthquake-fill.earthquake-line.edge-fill.edge-line.edge-new-fill.edge-new-line.edit-2-fill.edit-2-line.edit-box-fill.edit-box-line.edit-circle-fill.edit-circle-line.edit-fill.edit-line.eject-fill.eject-line.emoji-sticker-fill.emoji-sticker-line.emotion-2-fill.emotion-2-line.emotion-fill.emotion-happy-fill.emotion-happy-line.emotion-laugh-fill.emotion-laugh-line.emotion-line.emotion-normal-fill.emotion-normal-line.emotion-sad-fill.emotion-sad-line.emotion-unhappy-fill.emotion-unhappy-line.empathize-fill.empathize-line.emphasis.emphasis-cn.english-input.equal-fill.equal-line.equalizer-2-fill.equalizer-2-line.equalizer-3-fill.equalizer-3-line.equalizer-fill.equalizer-line.eraser-fill.eraser-line.error-warning-fill.error-warning-line.eth-fill.eth-line.evernote-fill.evernote-line.exchange-2-fill.exchange-2-line.exchange-box-fill.exchange-box-line.exchange-cny-fill.exchange-cny-line.exchange-dollar-fill.exchange-dollar-line.exchange-fill.exchange-funds-fill.exchange-funds-line.exchange-line.expand-diagonal-2-fill.expand-diagonal-2-line.expand-diagonal-fill.expand-diagonal-line.expand-diagonal-s-2-fill.expand-diagonal-s-2-line.expand-diagonal-s-fill.expand-diagonal-s-line.expand-height-fill.expand-height-line.expand-horizontal-fill.expand-horizontal-line.expand-horizontal-s-fill.expand-horizontal-s-line.expand-left-fill.expand-left-line.expand-left-right-fill.expand-left-right-line.expand-right-fill.expand-right-line.expand-up-down-fill.expand-up-down-line.expand-vertical-fill.expand-vertical-line.expand-vertical-s-fill.expand-vertical-s-line.expand-width-fill.expand-width-line.export-fill.export-line.external-link-fill.external-link-line.eye-2-fill.eye-2-line.eye-close-fill.eye-close-line.eye-fill.eye-line.eye-off-fill.eye-off-line.facebook-box-fill.facebook-box-line.facebook-circle-fill.facebook-circle-line.facebook-fill.facebook-line.fahrenheit-fill.fahrenheit-line.fediverse-fill.fediverse-line.feedback-fill.feedback-line.figma-fill.figma-line.file-2-fill.file-2-line.file-3-fill.file-3-line.file-4-fill.file-4-line.file-add-fill.file-add-line.file-chart-2-fill.file-chart-2-line.file-chart-fill.file-chart-line.file-check-fill.file-check-line.file-close-fill.file-close-line.file-cloud-fill.file-cloud-line.file-code-fill.file-code-line.file-copy-2-fill.file-copy-2-line.file-copy-fill.file-copy-line.file-damage-fill.file-damage-line.file-download-fill.file-download-line.file-edit-fill.file-edit-line.file-excel-2-fill.file-excel-2-line.file-excel-fill.file-excel-line.file-fill.file-forbid-fill.file-forbid-line.file-gif-fill.file-gif-line.file-history-fill.file-history-line.file-hwp-fill.file-hwp-line.file-image-fill.file-image-line.file-info-fill.file-info-line.file-line.file-list-2-fill.file-list-2-line.file-list-3-fill.file-list-3-line.file-list-fill.file-list-line.file-lock-fill.file-lock-line.file-marked-fill.file-marked-line.file-music-fill.file-music-line.file-paper-2-fill.file-paper-2-line.file-paper-fill.file-paper-line.file-pdf-2-fill.file-pdf-2-line.file-pdf-fill.file-pdf-line.file-ppt-2-fill.file-ppt-2-line.file-ppt-fill.file-ppt-line.file-reduce-fill.file-reduce-line.file-search-fill.file-search-line.file-settings-fill.file-settings-line.file-shield-2-fill.file-shield-2-line.file-shield-fill.file-shield-line.file-shred-fill.file-shred-line.file-text-fill.file-text-line.file-transfer-fill.file-transfer-line.file-unknow-fill.file-unknow-line.file-upload-fill.file-upload-line.file-user-fill.file-user-line.file-video-fill.file-video-line.file-warning-fill.file-warning-line.file-word-2-fill.file-word-2-line.file-word-fill.file-word-line.file-zip-fill.file-zip-line.film-ai-fill.film-ai-line.film-fill.film-line.filter-2-fill.filter-2-line.filter-3-fill.filter-3-line.filter-fill.filter-line.filter-off-fill.filter-off-line.find-replace-fill.find-replace-line.finder-fill.finder-line.fingerprint-2-fill.fingerprint-2-line.fingerprint-fill.fingerprint-line.fire-fill.fire-line.firebase-fill.firebase-line.firefox-browser-fill.firefox-browser-line.firefox-fill.firefox-line.first-aid-kit-fill.first-aid-kit-line.flag-2-fill.flag-2-line.flag-fill.flag-line.flag-off-fill.flag-off-line.flashlight-fill.flashlight-line.flask-fill.flask-line.flickr-fill.flickr-line.flight-land-fill.flight-land-line.flight-takeoff-fill.flight-takeoff-line.flip-horizontal-2-fill.flip-horizontal-2-line.flip-horizontal-fill.flip-horizontal-line.flip-vertical-2-fill.flip-vertical-2-line.flip-vertical-fill.flip-vertical-line.flood-fill.flood-line.flow-chart.flower-fill.flower-line.flutter-fill.flutter-line.focus-2-fill.focus-2-line.focus-3-fill.focus-3-line.focus-fill.focus-line.focus-mode.foggy-fill.foggy-line.folder-2-fill.folder-2-line.folder-3-fill.folder-3-line.folder-4-fill.folder-4-line.folder-5-fill.folder-5-line.folder-6-fill.folder-6-line.folder-add-fill.folder-add-line.folder-chart-2-fill.folder-chart-2-line.folder-chart-fill.folder-chart-line.folder-check-fill.folder-check-line.folder-close-fill.folder-close-line.folder-cloud-fill.folder-cloud-line.folder-download-fill.folder-download-line.folder-fill.folder-forbid-fill.folder-forbid-line.folder-history-fill.folder-history-line.folder-image-fill.folder-image-line.folder-info-fill.folder-info-line.folder-keyhole-fill.folder-keyhole-line.folder-line.folder-lock-fill.folder-lock-line.folder-music-fill.folder-music-line.folder-open-fill.folder-open-line.folder-received-fill.folder-received-line.folder-reduce-fill.folder-reduce-line.folder-settings-fill.folder-settings-line.folder-shared-fill.folder-shared-line.folder-shield-2-fill.folder-shield-2-line.folder-shield-fill.folder-shield-line.folder-transfer-fill.folder-transfer-line.folder-unknow-fill.folder-unknow-line.folder-upload-fill.folder-upload-line.folder-user-fill.folder-user-line.folder-video-fill.folder-video-line.folder-warning-fill.folder-warning-line.folder-zip-fill.folder-zip-line.folders-fill.folders-line.font-color.font-family.font-mono.font-sans.font-sans-serif.font-size.font-size-2.font-size-ai.football-fill.football-line.footprint-fill.footprint-line.forbid-2-fill.forbid-2-line.forbid-fill.forbid-line.format-clear.formula.forward-10-fill.forward-10-line.forward-15-fill.forward-15-line.forward-30-fill.forward-30-line.forward-5-fill.forward-5-line.forward-end-fill.forward-end-line.forward-end-mini-fill.forward-end-mini-line.fridge-fill.fridge-line.friendica-fill.friendica-line.fullscreen-exit-fill.fullscreen-exit-line.fullscreen-fill.fullscreen-line.function-add-fill.function-add-line.function-fill.function-line.functions.funds-box-fill.funds-box-line.funds-fill.funds-line.gallery-fill.gallery-line.gallery-upload-fill.gallery-upload-line.gallery-view.gallery-view-2.game-fill.game-line.gamepad-fill.gamepad-line.gas-station-fill.gas-station-line.gatsby-fill.gatsby-line.gemini-fill.gemini-line.genderless-fill.genderless-line.ghost-2-fill.ghost-2-line.ghost-fill.ghost-line.ghost-smile-fill.ghost-smile-line.gift-2-fill.gift-2-line.gift-fill.gift-line.git-branch-fill.git-branch-line.git-close-pull-request-fill.git-close-pull-request-line.git-commit-fill.git-commit-line.git-fork-fill.git-fork-line.git-merge-fill.git-merge-line.git-pr-draft-fill.git-pr-draft-line.git-pull-request-fill.git-pull-request-line.git-repository-commits-fill.git-repository-commits-line.git-repository-fill.git-repository-line.git-repository-private-fill.git-repository-private-line.github-fill.github-line.gitlab-fill.gitlab-line.glasses-2-fill.glasses-2-line.glasses-fill.glasses-line.global-fill.global-line.globe-fill.globe-line.goblet-2-fill.goblet-2-line.goblet-fill.goblet-line.goggles-fill.goggles-line.golf-ball-fill.golf-ball-line.google-fill.google-line.google-play-fill.google-play-line.government-fill.government-line.gps-fill.gps-line.gradienter-fill.gradienter-line.graduation-cap-fill.graduation-cap-line.grid-fill.grid-line.group-2-fill.group-2-line.group-3-fill.group-3-line.group-fill.group-line.guide-fill.guide-line.h-1.h-2.h-3.h-4.h-5.h-6.hail-fill.hail-line.hammer-fill.hammer-line.hand.hand-coin-fill.hand-coin-line.hand-heart-fill.hand-heart-line.hand-sanitizer-fill.hand-sanitizer-line.handbag-fill.handbag-line.hard-drive-2-fill.hard-drive-2-line.hard-drive-3-fill.hard-drive-3-line.hard-drive-fill.hard-drive-line.hashtag.haze-2-fill.haze-2-line.haze-fill.haze-line.hd-fill.hd-line.heading.headphone-fill.headphone-line.health-book-fill.health-book-line.heart-2-fill.heart-2-line.heart-3-fill.heart-3-line.heart-add-2-fill.heart-add-2-line.heart-add-fill.heart-add-line.heart-fill.heart-line.heart-pulse-fill.heart-pulse-line.hearts-fill.hearts-line.heavy-showers-fill.heavy-showers-line.hexagon-fill.hexagon-line.history-fill.history-line.home-2-fill.home-2-line.home-3-fill.home-3-line.home-4-fill.home-4-line.home-5-fill.home-5-line.home-6-fill.home-6-line.home-7-fill.home-7-line.home-8-fill.home-8-line.home-9-fill.home-9-line.home-fill.home-gear-fill.home-gear-line.home-heart-fill.home-heart-line.home-line.home-office-fill.home-office-line.home-smile-2-fill.home-smile-2-line.home-smile-fill.home-smile-line.home-wifi-fill.home-wifi-line.honor-of-kings-fill.honor-of-kings-line.honour-fill.honour-line.hospital-fill.hospital-line.hotel-bed-fill.hotel-bed-line.hotel-fill.hotel-line.hotspot-fill.hotspot-line.hourglass-2-fill.hourglass-2-line.hourglass-fill.hourglass-line.hq-fill.hq-line.html5-fill.html5-line.id-card-fill.id-card-line.ie-fill.ie-line.image-2-fill.image-2-line.image-add-fill.image-add-line.image-ai-fill.image-ai-line.image-circle-ai-fill.image-circle-ai-line.image-circle-fill.image-circle-line.image-edit-fill.image-edit-line.image-fill.image-line.import-fill.import-line.inbox-2-fill.inbox-2-line.inbox-archive-fill.inbox-archive-line.inbox-fill.inbox-line.inbox-unarchive-fill.inbox-unarchive-line.increase-decrease-fill.increase-decrease-line.indent-decrease.indent-increase.indeterminate-circle-fill.indeterminate-circle-line.infinity-fill.infinity-line.info-card-fill.info-card-line.info-i.information-2-fill.information-2-line.information-fill.information-line.information-off-fill.information-off-line.infrared-thermometer-fill.infrared-thermometer-line.ink-bottle-fill.ink-bottle-line.input-cursor-move.input-field.input-method-fill.input-method-line.insert-column-left.insert-column-right.insert-row-bottom.insert-row-top.instagram-fill.instagram-line.install-fill.install-line.instance-fill.instance-line.invision-fill.invision-line.italic.java-fill.java-line.javascript-fill.javascript-line.jewelry-fill.jewelry-line.kakao-talk-fill.kakao-talk-line.kanban-view.kanban-view-2.key-2-fill.key-2-line.key-fill.key-line.keyboard-box-fill.keyboard-box-line.keyboard-fill.keyboard-line.keynote-fill.keynote-line.kick-fill.kick-line.knife-blood-fill.knife-blood-line.knife-fill.knife-line.landscape-ai-fill.landscape-ai-line.landscape-fill.landscape-line.layout-2-fill.layout-2-line.layout-3-fill.layout-3-line.layout-4-fill.layout-4-line.layout-5-fill.layout-5-line.layout-6-fill.layout-6-line.layout-bottom-2-fill.layout-bottom-2-line.layout-bottom-fill.layout-bottom-line.layout-column-fill.layout-column-line.layout-fill.layout-grid-2-fill.layout-grid-2-line.layout-grid-fill.layout-grid-line.layout-horizontal-fill.layout-horizontal-line.layout-left-2-fill.layout-left-2-line.layout-left-fill.layout-left-line.layout-line.layout-masonry-fill.layout-masonry-line.layout-right-2-fill.layout-right-2-line.layout-right-fill.layout-right-line.layout-row-fill.layout-row-line.layout-top-2-fill.layout-top-2-line.layout-top-fill.layout-top-line.layout-vertical-fill.layout-vertical-line.leaf-fill.leaf-line.letter-spacing-2.lifebuoy-fill.lifebuoy-line.lightbulb-fill.lightbulb-flash-fill.lightbulb-flash-line.lightbulb-line.line-chart-fill.line-chart-line.line-fill.line-height.line-height-2.line-line.link.link-m.link-unlink.link-unlink-m.linkedin-box-fill.linkedin-box-line.linkedin-fill.linkedin-line.links-fill.links-line.list-check.list-check-2.list-check-3.list-indefinite.list-ordered.list-ordered-2.list-radio.list-settings-fill.list-settings-line.list-unordered.list-view.live-fill.live-line.loader-2-fill.loader-2-line.loader-3-fill.loader-3-line.loader-4-fill.loader-4-line.loader-5-fill.loader-5-line.loader-fill.loader-line.lock-2-fill.lock-2-line.lock-fill.lock-line.lock-password-fill.lock-password-line.lock-star-fill.lock-star-line.lock-unlock-fill.lock-unlock-line.login-box-fill.login-box-line.login-circle-fill.login-circle-line.logout-box-fill.logout-box-line.logout-box-r-fill.logout-box-r-line.logout-circle-fill.logout-circle-line.logout-circle-r-fill.logout-circle-r-line.loop-left-fill.loop-left-line.loop-right-fill.loop-right-line.luggage-cart-fill.luggage-cart-line.luggage-deposit-fill.luggage-deposit-line.lungs-fill.lungs-line.mac-fill.mac-line.macbook-fill.macbook-line.magic-fill.magic-line.mail-add-fill.mail-add-line.mail-ai-fill.mail-ai-line.mail-check-fill.mail-check-line.mail-close-fill.mail-close-line.mail-download-fill.mail-download-line.mail-fill.mail-forbid-fill.mail-forbid-line.mail-line.mail-lock-fill.mail-lock-line.mail-open-fill.mail-open-line.mail-send-fill.mail-send-line.mail-settings-fill.mail-settings-line.mail-star-fill.mail-star-line.mail-unread-fill.mail-unread-line.mail-volume-fill.mail-volume-line.map-2-fill.map-2-line.map-fill.map-line.map-pin-2-fill.map-pin-2-line.map-pin-3-fill.map-pin-3-line.map-pin-4-fill.map-pin-4-line.map-pin-5-fill.map-pin-5-line.map-pin-add-fill.map-pin-add-line.map-pin-fill.map-pin-line.map-pin-range-fill.map-pin-range-line.map-pin-time-fill.map-pin-time-line.map-pin-user-fill.map-pin-user-line.mark-pen-fill.mark-pen-line.markdown-fill.markdown-line.markup-fill.markup-line.mastercard-fill.mastercard-line.mastodon-fill.mastodon-line.medal-2-fill.medal-2-line.medal-fill.medal-line.medicine-bottle-fill.medicine-bottle-line.medium-fill.medium-line.megaphone-fill.megaphone-line.memories-fill.memories-line.men-fill.men-line.mental-health-fill.mental-health-line.menu-2-fill.menu-2-line.menu-3-fill.menu-3-line.menu-4-fill.menu-4-line.menu-5-fill.menu-5-line.menu-add-fill.menu-add-line.menu-fill.menu-fold-2-fill.menu-fold-2-line.menu-fold-3-fill.menu-fold-3-line.menu-fold-4-fill.menu-fold-4-line.menu-fold-fill.menu-fold-line.menu-line.menu-search-fill.menu-search-line.menu-unfold-2-fill.menu-unfold-2-line.menu-unfold-3-fill.menu-unfold-3-line.menu-unfold-4-fill.menu-unfold-4-line.menu-unfold-fill.menu-unfold-line.merge-cells-horizontal.merge-cells-vertical.message-2-fill.message-2-line.message-3-fill.message-3-line.message-fill.message-line.messenger-fill.messenger-line.meta-fill.meta-line.meteor-fill.meteor-line.mic-2-ai-fill.mic-2-ai-line.mic-2-fill.mic-2-line.mic-ai-fill.mic-ai-line.mic-fill.mic-line.mic-off-fill.mic-off-line.mickey-fill.mickey-line.microscope-fill.microscope-line.microsoft-fill.microsoft-line.microsoft-loop-fill.microsoft-loop-line.mind-map.mini-program-fill.mini-program-line.mist-fill.mist-line.mixtral-fill.mixtral-line.mobile-download-fill.mobile-download-line.money-cny-box-fill.money-cny-box-line.money-cny-circle-fill.money-cny-circle-line.money-dollar-box-fill.money-dollar-box-line.money-dollar-circle-fill.money-dollar-circle-line.money-euro-box-fill.money-euro-box-line.money-euro-circle-fill.money-euro-circle-line.money-pound-box-fill.money-pound-box-line.money-pound-circle-fill.money-pound-circle-line.money-rupee-circle-fill.money-rupee-circle-line.moon-clear-fill.moon-clear-line.moon-cloudy-fill.moon-cloudy-line.moon-fill.moon-foggy-fill.moon-foggy-line.moon-line.more-2-fill.more-2-line.more-fill.more-line.motorbike-fill.motorbike-line.mouse-fill.mouse-line.movie-2-ai-fill.movie-2-ai-line.movie-2-fill.movie-2-line.movie-ai-fill.movie-ai-line.movie-fill.movie-line.multi-image-fill.multi-image-line.music-2-fill.music-2-line.music-ai-fill.music-ai-line.music-fill.music-line.mv-ai-fill.mv-ai-line.mv-fill.mv-line.navigation-fill.navigation-line.netease-cloud-music-fill.netease-cloud-music-line.netflix-fill.netflix-line.news-fill.news-line.newspaper-fill.newspaper-line.nextjs-fill.nextjs-line.nft-fill.nft-line.no-credit-card-fill.no-credit-card-line.node-tree.nodejs-fill.nodejs-line.notification-2-fill.notification-2-line.notification-3-fill.notification-3-line.notification-4-fill.notification-4-line.notification-badge-fill.notification-badge-line.notification-fill.notification-line.notification-off-fill.notification-off-line.notification-snooze-fill.notification-snooze-line.notion-fill.notion-line.npmjs-fill.npmjs-line.number-0.number-1.number-2.number-3.number-4.number-5.number-6.number-7.number-8.number-9.numbers-fill.numbers-line.nurse-fill.nurse-line.octagon-fill.octagon-line.oil-fill.oil-line.omega.open-arm-fill.open-arm-line.open-source-fill.open-source-line.openai-fill.openai-line.openbase-fill.openbase-line.opera-fill.opera-line.order-play-fill.order-play-line.organization-chart.outlet-2-fill.outlet-2-line.outlet-fill.outlet-line.overline.p2p-fill.p2p-line.page-separator.pages-fill.pages-line.paint-brush-fill.paint-brush-line.paint-fill.paint-line.palette-fill.palette-line.pantone-fill.pantone-line.paragraph.parent-fill.parent-line.parentheses-fill.parentheses-line.parking-box-fill.parking-box-line.parking-fill.parking-line.pass-expired-fill.pass-expired-line.pass-pending-fill.pass-pending-line.pass-valid-fill.pass-valid-line.passport-fill.passport-line.patreon-fill.patreon-line.pause-circle-fill.pause-circle-line.pause-fill.pause-large-fill.pause-large-line.pause-line.pause-mini-fill.pause-mini-line.paypal-fill.paypal-line.pen-nib-fill.pen-nib-line.pencil-fill.pencil-line.pencil-ruler-2-fill.pencil-ruler-2-line.pencil-ruler-fill.pencil-ruler-line.pentagon-fill.pentagon-line.percent-fill.percent-line.perplexity-fill.perplexity-line.phone-camera-fill.phone-camera-line.phone-fill.phone-find-fill.phone-find-line.phone-line.phone-lock-fill.phone-lock-line.php-fill.php-line.picture-in-picture-2-fill.picture-in-picture-2-line.picture-in-picture-exit-fill.picture-in-picture-exit-line.picture-in-picture-fill.picture-in-picture-line.pie-chart-2-fill.pie-chart-2-line.pie-chart-box-fill.pie-chart-box-line.pie-chart-fill.pie-chart-line.pin-distance-fill.pin-distance-line.ping-pong-fill.ping-pong-line.pinterest-fill.pinterest-line.pinyin-input.pix-fill.pix-line.pixelfed-fill.pixelfed-line.plane-fill.plane-line.planet-fill.planet-line.plant-fill.plant-line.play-circle-fill.play-circle-line.play-fill.play-large-fill.play-large-line.play-line.play-list-2-fill.play-list-2-line.play-list-add-fill.play-list-add-line.play-list-fill.play-list-line.play-mini-fill.play-mini-line.play-reverse-fill.play-reverse-large-fill.play-reverse-large-line.play-reverse-line.play-reverse-mini-fill.play-reverse-mini-line.playstation-fill.playstation-line.plug-2-fill.plug-2-line.plug-fill.plug-line.poker-clubs-fill.poker-clubs-line.poker-diamonds-fill.poker-diamonds-line.poker-hearts-fill.poker-hearts-line.poker-spades-fill.poker-spades-line.polaroid-2-fill.polaroid-2-line.polaroid-fill.polaroid-line.police-badge-fill.police-badge-line.police-car-fill.police-car-line.presentation-fill.presentation-line.price-tag-2-fill.price-tag-2-line.price-tag-3-fill.price-tag-3-line.price-tag-fill.price-tag-line.printer-cloud-fill.printer-cloud-line.printer-fill.printer-line.product-hunt-fill.product-hunt-line.profile-fill.profile-line.progress-1-fill.progress-1-line.progress-2-fill.progress-2-line.progress-3-fill.progress-3-line.progress-4-fill.progress-4-line.progress-5-fill.progress-5-line.progress-6-fill.progress-6-line.progress-7-fill.progress-7-line.progress-8-fill.progress-8-line.prohibited-2-fill.prohibited-2-line.prohibited-fill.prohibited-line.projector-2-fill.projector-2-line.projector-fill.projector-line.psychotherapy-fill.psychotherapy-line.pulse-ai-fill.pulse-ai-line.pulse-fill.pulse-line.pushpin-2-fill.pushpin-2-line.pushpin-fill.pushpin-line.puzzle-2-fill.puzzle-2-line.puzzle-fill.puzzle-line.qq-fill.qq-line.qr-code-fill.qr-code-line.qr-scan-2-fill.qr-scan-2-line.qr-scan-fill.qr-scan-line.question-answer-fill.question-answer-line.question-fill.question-line.question-mark.questionnaire-fill.questionnaire-line.quill-pen-ai-fill.quill-pen-ai-line.quill-pen-fill.quill-pen-line.quote-text.radar-fill.radar-line.radio-2-fill.radio-2-line.radio-button-fill.radio-button-line.radio-fill.radio-line.rainbow-fill.rainbow-line.rainy-fill.rainy-line.ram-2-fill.ram-2-line.ram-fill.ram-line.reactjs-fill.reactjs-line.receipt-fill.receipt-line.record-circle-fill.record-circle-line.record-mail-fill.record-mail-line.rectangle-fill.rectangle-line.recycle-fill.recycle-line.red-packet-fill.red-packet-line.reddit-fill.reddit-line.refresh-fill.refresh-line.refund-2-fill.refund-2-line.refund-fill.refund-line.registered-fill.registered-line.remix-run-fill.remix-run-line.remixicon-fill.remixicon-line.remote-control-2-fill.remote-control-2-line.remote-control-fill.remote-control-line.repeat-2-fill.repeat-2-line.repeat-fill.repeat-line.repeat-one-fill.repeat-one-line.replay-10-fill.replay-10-line.replay-15-fill.replay-15-line.replay-30-fill.replay-30-line.replay-5-fill.replay-5-line.reply-all-fill.reply-all-line.reply-fill.reply-line.reserved-fill.reserved-line.reset-left-fill.reset-left-line.reset-right-fill.reset-right-line.rest-time-fill.rest-time-line.restart-fill.restart-line.restaurant-2-fill.restaurant-2-line.restaurant-fill.restaurant-line.rewind-fill.rewind-line.rewind-mini-fill.rewind-mini-line.rewind-start-fill.rewind-start-line.rewind-start-mini-fill.rewind-start-mini-line.rfid-fill.rfid-line.rhythm-fill.rhythm-line.riding-fill.riding-line.road-map-fill.road-map-line.roadster-fill.roadster-line.robot-2-fill.robot-2-line.robot-3-fill.robot-3-line.robot-fill.robot-line.rocket-2-fill.rocket-2-line.rocket-fill.rocket-line.rotate-lock-fill.rotate-lock-line.rounded-corner.route-fill.route-line.router-fill.router-line.rss-fill.rss-line.ruler-2-fill.ruler-2-line.ruler-fill.ruler-line.run-fill.run-line.safari-fill.safari-line.safe-2-fill.safe-2-line.safe-3-fill.safe-3-line.safe-fill.safe-line.sailboat-fill.sailboat-line.save-2-fill.save-2-line.save-3-fill.save-3-line.save-fill.save-line.scales-2-fill.scales-2-line.scales-3-fill.scales-3-line.scales-fill.scales-line.scan-2-fill.scan-2-line.scan-fill.scan-line.school-fill.school-line.scissors-2-fill.scissors-2-line.scissors-cut-fill.scissors-cut-line.scissors-fill.scissors-line.screenshot-2-fill.screenshot-2-line.screenshot-fill.screenshot-line.scroll-to-bottom-fill.scroll-to-bottom-line.sd-card-fill.sd-card-line.sd-card-mini-fill.sd-card-mini-line.search-2-fill.search-2-line.search-eye-fill.search-eye-line.search-fill.search-line.secure-payment-fill.secure-payment-line.seedling-fill.seedling-line.send-backward.send-plane-2-fill.send-plane-2-line.send-plane-fill.send-plane-line.send-to-back.sensor-fill.sensor-line.seo-fill.seo-line.separator.server-fill.server-line.service-bell-fill.service-bell-line.service-fill.service-line.settings-2-fill.settings-2-line.settings-3-fill.settings-3-line.settings-4-fill.settings-4-line.settings-5-fill.settings-5-line.settings-6-fill.settings-6-line.settings-fill.settings-line.shadow-fill.shadow-line.shake-hands-fill.shake-hands-line.shape-2-fill.shape-2-line.shape-fill.shape-line.shapes-fill.shapes-line.share-2-fill.share-2-line.share-box-fill.share-box-line.share-circle-fill.share-circle-line.share-fill.share-forward-2-fill.share-forward-2-line.share-forward-box-fill.share-forward-box-line.share-forward-fill.share-forward-line.share-line.shield-check-fill.shield-check-line.shield-cross-fill.shield-cross-line.shield-fill.shield-flash-fill.shield-flash-line.shield-keyhole-fill.shield-keyhole-line.shield-line.shield-star-fill.shield-star-line.shield-user-fill.shield-user-line.shining-2-fill.shining-2-line.shining-fill.shining-line.ship-2-fill.ship-2-line.ship-fill.ship-line.shirt-fill.shirt-line.shopping-bag-2-fill.shopping-bag-2-line.shopping-bag-3-fill.shopping-bag-3-line.shopping-bag-4-fill.shopping-bag-4-line.shopping-bag-fill.shopping-bag-line.shopping-basket-2-fill.shopping-basket-2-line.shopping-basket-fill.shopping-basket-line.shopping-cart-2-fill.shopping-cart-2-line.shopping-cart-fill.shopping-cart-line.showers-fill.showers-line.shuffle-fill.shuffle-line.shut-down-fill.shut-down-line.side-bar-fill.side-bar-line.sidebar-fold-fill.sidebar-fold-line.sidebar-unfold-fill.sidebar-unfold-line.signal-tower-fill.signal-tower-line.signal-wifi-1-fill.signal-wifi-1-line.signal-wifi-2-fill.signal-wifi-2-line.signal-wifi-3-fill.signal-wifi-3-line.signal-wifi-error-fill.signal-wifi-error-line.signal-wifi-fill.signal-wifi-line.signal-wifi-off-fill.signal-wifi-off-line.signpost-fill.signpost-line.sim-card-2-fill.sim-card-2-line.sim-card-fill.sim-card-line.single-quotes-l.single-quotes-r.sip-fill.sip-line.sketching.skip-back-fill.skip-back-line.skip-back-mini-fill.skip-back-mini-line.skip-down-fill.skip-down-line.skip-forward-fill.skip-forward-line.skip-forward-mini-fill.skip-forward-mini-line.skip-left-fill.skip-left-line.skip-right-fill.skip-right-line.skip-up-fill.skip-up-line.skull-2-fill.skull-2-line.skull-fill.skull-line.skype-fill.skype-line.slack-fill.slack-line.slash-commands.slash-commands-2.slice-fill.slice-line.slideshow-2-fill.slideshow-2-line.slideshow-3-fill.slideshow-3-line.slideshow-4-fill.slideshow-4-line.slideshow-fill.slideshow-line.slideshow-view.slow-down-fill.slow-down-line.smartphone-fill.smartphone-line.snapchat-fill.snapchat-line.snowflake-fill.snowflake-line.snowy-fill.snowy-line.sofa-fill.sofa-line.sort-alphabet-asc.sort-alphabet-desc.sort-asc.sort-desc.sort-number-asc.sort-number-desc.sound-module-fill.sound-module-line.soundcloud-fill.soundcloud-line.space.space-ship-fill.space-ship-line.spam-2-fill.spam-2-line.spam-3-fill.spam-3-line.spam-fill.spam-line.sparkling-2-fill.sparkling-2-line.sparkling-fill.sparkling-line.speak-ai-fill.speak-ai-line.speak-fill.speak-line.speaker-2-fill.speaker-2-line.speaker-3-fill.speaker-3-line.speaker-fill.speaker-line.spectrum-fill.spectrum-line.speed-fill.speed-line.speed-mini-fill.speed-mini-line.speed-up-fill.speed-up-line.split-cells-horizontal.split-cells-vertical.spotify-fill.spotify-line.spy-fill.spy-line.square-fill.square-line.square-root.stack-fill.stack-line.stack-overflow-fill.stack-overflow-line.stacked-view.stackshare-fill.stackshare-line.stairs-fill.stairs-line.star-fill.star-half-fill.star-half-line.star-half-s-fill.star-half-s-line.star-line.star-off-fill.star-off-line.star-s-fill.star-s-line.star-smile-fill.star-smile-line.steam-fill.steam-line.steering-2-fill.steering-2-line.steering-fill.steering-line.stethoscope-fill.stethoscope-line.sticky-note-2-fill.sticky-note-2-line.sticky-note-add-fill.sticky-note-add-line.sticky-note-fill.sticky-note-line.stock-fill.stock-line.stop-circle-fill.stop-circle-line.stop-fill.stop-large-fill.stop-large-line.stop-line.stop-mini-fill.stop-mini-line.store-2-fill.store-2-line.store-3-fill.store-3-line.store-fill.store-line.strikethrough.strikethrough-2.subscript.subscript-2.subtract-fill.subtract-line.subway-fill.subway-line.subway-wifi-fill.subway-wifi-line.suitcase-2-fill.suitcase-2-line.suitcase-3-fill.suitcase-3-line.suitcase-fill.suitcase-line.sun-cloudy-fill.sun-cloudy-line.sun-fill.sun-foggy-fill.sun-foggy-line.sun-line.supabase-fill.supabase-line.superscript.superscript-2.surgical-mask-fill.surgical-mask-line.surround-sound-fill.surround-sound-line.survey-fill.survey-line.svelte-fill.svelte-line.swap-2-fill.swap-2-line.swap-3-fill.swap-3-line.swap-box-fill.swap-box-line.swap-fill.swap-line.switch-fill.switch-line.sword-fill.sword-line.syringe-fill.syringe-line.t-box-fill.t-box-line.t-shirt-2-fill.t-shirt-2-line.t-shirt-air-fill.t-shirt-air-line.t-shirt-fill.t-shirt-line.table-2.table-3.table-alt-fill.table-alt-line.table-fill.table-line.table-view.tablet-fill.tablet-line.tailwind-css-fill.tailwind-css-line.takeaway-fill.takeaway-line.taobao-fill.taobao-line.tape-fill.tape-line.task-fill.task-line.taxi-fill.taxi-line.taxi-wifi-fill.taxi-wifi-line.team-fill.team-line.telegram-2-fill.telegram-2-line.telegram-fill.telegram-line.temp-cold-fill.temp-cold-line.temp-hot-fill.temp-hot-line.tent-fill.tent-line.terminal-box-fill.terminal-box-line.terminal-fill.terminal-line.terminal-window-fill.terminal-window-line.test-tube-fill.test-tube-line.text.text-block.text-direction-l.text-direction-r.text-snippet.text-spacing.text-wrap.thermometer-fill.thermometer-line.threads-fill.threads-line.thumb-down-fill.thumb-down-line.thumb-up-fill.thumb-up-line.thunderstorms-fill.thunderstorms-line.ticket-2-fill.ticket-2-line.ticket-fill.ticket-line.tiktok-fill.tiktok-line.time-fill.time-line.time-zone-fill.time-zone-line.timeline-view.timer-2-fill.timer-2-line.timer-fill.timer-flash-fill.timer-flash-line.timer-line.todo-fill.todo-line.toggle-fill.toggle-line.token-swap-fill.token-swap-line.tools-fill.tools-line.tooth-fill.tooth-line.tornado-fill.tornado-line.trademark-fill.trademark-line.traffic-light-fill.traffic-light-line.train-fill.train-line.train-wifi-fill.train-wifi-line.translate.translate-2.translate-ai.translate-ai-2.travesti-fill.travesti-line.treasure-map-fill.treasure-map-line.tree-fill.tree-line.trello-fill.trello-line.triangle-fill.triangle-line.triangular-flag-fill.triangular-flag-line.trophy-fill.trophy-line.truck-fill.truck-line.tumblr-fill.tumblr-line.tv-2-fill.tv-2-line.tv-fill.tv-line.twitch-fill.twitch-line.twitter-fill.twitter-line.twitter-x-fill.twitter-x-line.typhoon-fill.typhoon-line.u-disk-fill.u-disk-line.ubuntu-fill.ubuntu-line.umbrella-fill.umbrella-line.underline.uninstall-fill.uninstall-line.unpin-fill.unpin-line.unsplash-fill.unsplash-line.upload-2-fill.upload-2-line.upload-cloud-2-fill.upload-cloud-2-line.upload-cloud-fill.upload-cloud-line.upload-fill.upload-line.usb-fill.usb-line.user-2-fill.user-2-line.user-3-fill.user-3-line.user-4-fill.user-4-line.user-5-fill.user-5-line.user-6-fill.user-6-line.user-add-fill.user-add-line.user-community-fill.user-community-line.user-fill.user-follow-fill.user-follow-line.user-forbid-fill.user-forbid-line.user-heart-fill.user-heart-line.user-line.user-location-fill.user-location-line.user-minus-fill.user-minus-line.user-received-2-fill.user-received-2-line.user-received-fill.user-received-line.user-search-fill.user-search-line.user-settings-fill.user-settings-line.user-shared-2-fill.user-shared-2-line.user-shared-fill.user-shared-line.user-smile-fill.user-smile-line.user-star-fill.user-star-line.user-unfollow-fill.user-unfollow-line.user-voice-fill.user-voice-line.vercel-fill.vercel-line.verified-badge-fill.verified-badge-line.video-add-fill.video-add-line.video-ai-fill.video-ai-line.video-chat-fill.video-chat-line.video-download-fill.video-download-line.video-fill.video-line.video-off-fill.video-off-line.video-on-ai-fill.video-on-ai-line.video-on-fill.video-on-line.video-upload-fill.video-upload-line.vidicon-2-fill.vidicon-2-line.vidicon-fill.vidicon-line.vimeo-fill.vimeo-line.vip-crown-2-fill.vip-crown-2-line.vip-crown-fill.vip-crown-line.vip-diamond-fill.vip-diamond-line.vip-fill.vip-line.virus-fill.virus-line.visa-fill.visa-line.vk-fill.vk-line.voice-ai-fill.voice-ai-line.voice-recognition-fill.voice-recognition-line.voiceprint-fill.voiceprint-line.volume-down-fill.volume-down-line.volume-mute-fill.volume-mute-line.volume-off-vibrate-fill.volume-off-vibrate-line.volume-up-fill.volume-up-line.volume-vibrate-fill.volume-vibrate-line.vuejs-fill.vuejs-line.walk-fill.walk-line.wallet-2-fill.wallet-2-line.wallet-3-fill.wallet-3-line.wallet-fill.wallet-line.water-flash-fill.water-flash-line.water-percent-fill.water-percent-line.webcam-fill.webcam-line.webhook-fill.webhook-line.wechat-2-fill.wechat-2-line.wechat-channels-fill.wechat-channels-line.wechat-fill.wechat-line.wechat-pay-fill.wechat-pay-line.weibo-fill.weibo-line.weight-fill.weight-line.whatsapp-fill.whatsapp-line.wheelchair-fill.wheelchair-line.wifi-fill.wifi-line.wifi-off-fill.wifi-off-line.window-2-fill.window-2-line.window-fill.window-line.windows-fill.windows-line.windy-fill.windy-line.wireless-charging-fill.wireless-charging-line.women-fill.women-line.wordpress-fill.wordpress-line.wubi-input.xbox-fill.xbox-line.xing-fill.xing-line.xrp-fill.xrp-line.xtz-fill.xtz-line.youtube-fill.youtube-line.yuque-fill.yuque-line.zcool-fill.zcool-line.zhihu-fill.zhihu-line.zoom-in-fill.zoom-in-line.zoom-out-fill.zoom-out-line.zzz-fill.zzz-line".split("."), wx = [
18866
19244
  {
18867
19245
  id: "remix",
18868
19246
  prefix: "",
@@ -18975,31 +19353,31 @@ var pm = { class: "badge-editor-header page-header" }, mm = { class: "badge-edit
18975
19353
  valueMode: "prefixed",
18976
19354
  loader: () => import("@iconify-json/bi/icons.json")
18977
19355
  }
18978
- ], sx = /* @__PURE__ */ new Set(), cx = /* @__PURE__ */ new Map(), lx = (e) => e.default || e;
18979
- async function ux(e) {
19356
+ ], Tx = /* @__PURE__ */ new Set(), Ex = /* @__PURE__ */ new Map(), Dx = (e) => e.default || e;
19357
+ async function Ox(e) {
18980
19358
  if (e.localRemix) return [];
18981
- if (cx.has(e.id)) return cx.get(e.id);
19359
+ if (Ex.has(e.id)) return Ex.get(e.id);
18982
19360
  if (!e.loader) return [];
18983
- let t = lx(await e.loader());
18984
- sx.has(e.id) || (J(t), sx.add(e.id));
19361
+ let t = Dx(await e.loader());
19362
+ Tx.has(e.id) || (J(t), Tx.add(e.id));
18985
19363
  let n = Object.keys(t.icons || {}).sort();
18986
- return cx.set(e.id, n), n;
19364
+ return Ex.set(e.id, n), n;
18987
19365
  }
18988
- var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) => {
19366
+ var kx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, Ax = (e) => {
18989
19367
  let t = String(e || "").trim();
18990
19368
  if (!t.includes(":")) return "remix";
18991
19369
  let n = t.split(":")[0];
18992
- return ox.find((e) => e.prefix === n)?.id || "remix";
18993
- }, px = { class: "fou-icon-picker" }, mx = {
19370
+ return wx.find((e) => e.prefix === n)?.id || "remix";
19371
+ }, jx = { class: "fou-icon-picker" }, Mx = {
18994
19372
  key: 1,
18995
19373
  class: "fou-icon-picker__placeholder"
18996
- }, hx = { class: "fou-icon-picker__body" }, gx = { class: "fou-icon-picker__libs" }, _x = ["onClick"], vx = { class: "fou-icon-picker__license-tip" }, yx = { class: "fou-icon-picker__main" }, bx = { class: "fou-icon-picker__meta" }, xx = {
19374
+ }, Nx = { class: "fou-icon-picker__body" }, Px = { class: "fou-icon-picker__libs" }, Fx = ["onClick"], Ix = { class: "fou-icon-picker__license-tip" }, Lx = { class: "fou-icon-picker__main" }, Rx = { class: "fou-icon-picker__meta" }, zx = {
18997
19375
  key: 0,
18998
19376
  class: "fou-icon-picker__current"
18999
- }, Sx = { class: "fou-icon-picker__current-icon" }, Cx = { class: "fou-icon-picker__grid" }, wx = ["title"], Tx = ["title", "onClick"], Ex = {
19377
+ }, Bx = { class: "fou-icon-picker__current-icon" }, Vx = { class: "fou-icon-picker__grid" }, Hx = ["title"], Ux = ["title", "onClick"], Wx = {
19000
19378
  key: 1,
19001
19379
  class: "fou-icon-picker__pager"
19002
- }, Dx = 60, Ox = /*@__PURE__*/ h({
19380
+ }, Gx = 60, Kx = /*@__PURE__*/ h({
19003
19381
  name: "FouIconPicker",
19004
19382
  __name: "index",
19005
19383
  props: {
@@ -19008,24 +19386,24 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19008
19386
  },
19009
19387
  emits: ["update:modelValue"],
19010
19388
  setup(e, { emit: n }) {
19011
- let r = e, i = n, o = F(!1), d = F(""), f = F(1), h = F("remix"), g = F(!1), _ = ee({ remix: ax }), v = ee({ remix: ax.length }), y = a(() => ox.find((e) => e.id === h.value) || ox[0]), x = a(() => ox.map((e) => ({
19389
+ let r = e, i = n, o = F(!1), d = F(""), f = F(1), h = F("remix"), g = F(!1), _ = ee({ remix: Cx }), v = ee({ remix: Cx.length }), y = a(() => wx.find((e) => e.id === h.value) || wx[0]), x = a(() => wx.map((e) => ({
19012
19390
  ...e,
19013
- count: v[e.id] || (e.localRemix ? ax.length : "…")
19391
+ count: v[e.id] || (e.localRemix ? Cx.length : "…")
19014
19392
  }))), S = a(() => _[h.value] || []), C = a(() => {
19015
19393
  let e = d.value.trim().toLowerCase();
19016
19394
  return e ? S.value.filter((t) => t.toLowerCase().includes(e)) : S.value;
19017
- }), T = a(() => Math.max(1, Math.ceil(C.value.length / Dx))), E = a(() => {
19018
- let e = (f.value - 1) * Dx;
19019
- return C.value.slice(e, e + Dx);
19020
- }), D = (e) => dx(y.value, e), O = async (e) => {
19395
+ }), T = a(() => Math.max(1, Math.ceil(C.value.length / Gx))), E = a(() => {
19396
+ let e = (f.value - 1) * Gx;
19397
+ return C.value.slice(e, e + Gx);
19398
+ }), D = (e) => kx(y.value, e), O = async (e) => {
19021
19399
  if (e.localRemix) {
19022
- _.remix = ax, v.remix = ax.length;
19400
+ _.remix = Cx, v.remix = Cx.length;
19023
19401
  return;
19024
19402
  }
19025
19403
  if (!_[e.id]?.length) {
19026
19404
  g.value = !0;
19027
19405
  try {
19028
- let t = await ux(e);
19406
+ let t = await Ox(e);
19029
19407
  _[e.id] = t, v[e.id] = t.length;
19030
19408
  } finally {
19031
19409
  g.value = !1;
@@ -19033,12 +19411,12 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19033
19411
  }
19034
19412
  }, k = async (e) => {
19035
19413
  h.value = e, f.value = 1, d.value = "";
19036
- let t = ox.find((t) => t.id === e);
19414
+ let t = wx.find((t) => t.id === e);
19037
19415
  t && await O(t);
19038
19416
  }, A = () => {
19039
19417
  o.value = !0;
19040
19418
  }, j = async () => {
19041
- h.value = fx(r.modelValue), await O(y.value);
19419
+ h.value = Ax(r.modelValue), await O(y.value);
19042
19420
  }, M = (e) => {
19043
19421
  i("update:modelValue", D(e)), o.value = !1;
19044
19422
  }, P = () => {
@@ -19048,7 +19426,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19048
19426
  };
19049
19427
  return (n, r) => {
19050
19428
  let i = Fe, a = So, _ = Wn, v = Ln, y = li, O = hn;
19051
- return N(), l("div", px, [u("div", {
19429
+ return N(), l("div", jx, [u("div", {
19052
19430
  class: "fou-icon-picker__trigger",
19053
19431
  onClick: A
19054
19432
  }, [
@@ -19056,7 +19434,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19056
19434
  key: 0,
19057
19435
  icon: e.modelValue,
19058
19436
  class: "fou-icon-picker__preview"
19059
- }, null, 8, ["icon"])) : (N(), l("span", mx, V(U(en)("选择图标")), 1))], 2),
19437
+ }, null, 8, ["icon"])) : (N(), l("span", Mx, V(U(en)("选择图标")), 1))], 2),
19060
19438
  m(a, {
19061
19439
  "model-value": e.modelValue,
19062
19440
  class: "fou-icon-picker__input",
@@ -19084,12 +19462,12 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19084
19462
  "destroy-on-close": "",
19085
19463
  onOpened: j
19086
19464
  }, {
19087
- default: G(() => [u("div", hx, [
19465
+ default: G(() => [u("div", Nx, [
19088
19466
  U(g) ? (N(), s(Jo, {
19089
19467
  key: 0,
19090
19468
  class: "fou-icon-picker__loading"
19091
19469
  })) : c("", !0),
19092
- u("aside", gx, [(N(!0), l(t, null, I(U(x), (e) => (N(), l("button", {
19470
+ u("aside", Px, [(N(!0), l(t, null, I(U(x), (e) => (N(), l("button", {
19093
19471
  key: e.id,
19094
19472
  type: "button",
19095
19473
  class: w(["fou-icon-picker__lib", { "is-active": U(h) === e.id }]),
@@ -19098,8 +19476,8 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19098
19476
  u("strong", null, V(e.name), 1),
19099
19477
  u("span", null, V(e.count) + " icons", 1),
19100
19478
  u("em", null, V(e.license), 1)
19101
- ], 10, _x))), 128)), u("p", vx, V(U(en)("均为免费开源图标,可商用(按需懒加载)")), 1)]),
19102
- u("div", yx, [
19479
+ ], 10, Fx))), 128)), u("p", Ix, V(U(en)("均为免费开源图标,可商用(按需懒加载)")), 1)]),
19480
+ u("div", Lx, [
19103
19481
  m(a, {
19104
19482
  modelValue: U(d),
19105
19483
  "onUpdate:modelValue": r[0] ||= (e) => b(d) ? d.value = e : null,
@@ -19111,11 +19489,11 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19111
19489
  prefix: G(() => [m(i, { icon: "search-line" })]),
19112
19490
  _: 1
19113
19491
  }, 8, ["modelValue", "placeholder"]),
19114
- u("div", bx, [
19492
+ u("div", Rx, [
19115
19493
  u("span", null, V(U(C).length) + " / " + V(U(S).length), 1),
19116
- e.modelValue ? (N(), l("span", xx, [
19494
+ e.modelValue ? (N(), l("span", zx, [
19117
19495
  p(V(U(en)("当前")) + ": ", 1),
19118
- u("span", Sx, [m(i, { icon: e.modelValue }, null, 8, ["icon"])]),
19496
+ u("span", Bx, [m(i, { icon: e.modelValue }, null, 8, ["icon"])]),
19119
19497
  u("code", null, V(e.modelValue), 1)
19120
19498
  ])) : c("", !0),
19121
19499
  e.modelValue ? (N(), s(_, {
@@ -19129,28 +19507,28 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19129
19507
  _: 1
19130
19508
  })) : c("", !0)
19131
19509
  ]),
19132
- u("div", Cx, [u("button", {
19510
+ u("div", Vx, [u("button", {
19133
19511
  type: "button",
19134
19512
  class: "fou-icon-picker__item is-clear",
19135
19513
  title: U(en)("清除图标"),
19136
19514
  onClick: P
19137
- }, [m(i, { icon: "delete-bin-line" }), u("span", null, V(U(en)("清除")), 1)], 8, wx), (N(!0), l(t, null, I(U(E), (t) => (N(), l("button", {
19515
+ }, [m(i, { icon: "delete-bin-line" }), u("span", null, V(U(en)("清除")), 1)], 8, Hx), (N(!0), l(t, null, I(U(E), (t) => (N(), l("button", {
19138
19516
  key: t,
19139
19517
  type: "button",
19140
19518
  class: w(["fou-icon-picker__item", { "is-active": e.modelValue === D(t) }]),
19141
19519
  title: D(t),
19142
19520
  onClick: (e) => M(t)
19143
- }, [m(i, { icon: D(t) }, null, 8, ["icon"]), u("span", null, V(t), 1)], 10, Tx))), 128))]),
19521
+ }, [m(i, { icon: D(t) }, null, 8, ["icon"]), u("span", null, V(t), 1)], 10, Ux))), 128))]),
19144
19522
  !U(g) && !U(C).length ? (N(), s(v, {
19145
19523
  key: 0,
19146
19524
  description: U(en)("无匹配图标")
19147
19525
  }, null, 8, ["description"])) : c("", !0),
19148
- U(T) > 1 ? (N(), l("div", Ex, [m(y, {
19526
+ U(T) > 1 ? (N(), l("div", Wx, [m(y, {
19149
19527
  "current-page": U(f),
19150
19528
  "onUpdate:currentPage": r[2] ||= (e) => b(f) ? f.value = e : null,
19151
19529
  background: "",
19152
19530
  layout: "prev, pager, next, jumper",
19153
- "page-size": Dx,
19531
+ "page-size": Gx,
19154
19532
  total: U(C).length,
19155
19533
  small: ""
19156
19534
  }, null, 8, ["current-page", "total"])])) : c("", !0)
@@ -19160,10 +19538,10 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19160
19538
  }, 8, ["modelValue", "title"])]);
19161
19539
  };
19162
19540
  }
19163
- }), kx = /* @__PURE__ */ X({ default: () => Ax }), Ax = /*#__PURE__*/ Z(Ox, [["__scopeId", "data-v-cac005a6"]]), jx = ["src"], Mx = { class: "fou-image-viewer__toolbar" }, Nx = {
19541
+ }), qx = /* @__PURE__ */ X({ default: () => Jx }), Jx = /*#__PURE__*/ Z(Kx, [["__scopeId", "data-v-cac005a6"]]), Yx = ["src"], Xx = { class: "fou-image-viewer__toolbar" }, Zx = {
19164
19542
  key: 2,
19165
19543
  class: "fou-image-viewer__index"
19166
- }, Px = /*@__PURE__*/ h({
19544
+ }, Qx = /*@__PURE__*/ h({
19167
19545
  name: "FouImageViewer",
19168
19546
  __name: "index",
19169
19547
  props: {
@@ -19241,8 +19619,8 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19241
19619
  style: E({ transform: `scale(${U(p)})` }),
19242
19620
  onClick: r[2] ||= q(() => {}, ["stop"]),
19243
19621
  onWheel: q(b, ["prevent"])
19244
- }, null, 44, jx),
19245
- u("div", Mx, [
19622
+ }, null, 44, Yx),
19623
+ u("div", Xx, [
19246
19624
  u("button", {
19247
19625
  type: "button",
19248
19626
  "aria-label": "缩小",
@@ -19259,20 +19637,20 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19259
19637
  onClick: r[5] ||= q((e) => y(.2), ["stop"])
19260
19638
  }, [m(a, { icon: "zoom-in-line" })])
19261
19639
  ]),
19262
- U(h).length > 1 ? (N(), l("div", Nx, V(U(d) + 1) + " / " + V(U(h).length), 1)) : c("", !0)
19640
+ U(h).length > 1 ? (N(), l("div", Zx, V(U(d) + 1) + " / " + V(U(h).length), 1)) : c("", !0)
19263
19641
  ], 4)) : c("", !0)]),
19264
19642
  _: 1
19265
19643
  })]);
19266
19644
  };
19267
19645
  }
19268
- }), Fx = /* @__PURE__ */ X({ default: () => Ix }), Ix = /*#__PURE__*/ Z(Px, [["__scopeId", "data-v-98059a31"]]), Lx = Symbol("FouImagePreviewGroup"), Rx = [
19646
+ }), $x = /* @__PURE__ */ X({ default: () => eS }), eS = /*#__PURE__*/ Z(Qx, [["__scopeId", "data-v-98059a31"]]), tS = Symbol("FouImagePreviewGroup"), nS = [
19269
19647
  "src",
19270
19648
  "alt",
19271
19649
  "loading"
19272
- ], zx = {
19650
+ ], rS = {
19273
19651
  key: 0,
19274
19652
  class: "fou-image__mask"
19275
- }, Bx = /*@__PURE__*/ h({
19653
+ }, iS = /*@__PURE__*/ h({
19276
19654
  name: "FouImage",
19277
19655
  __name: "index",
19278
19656
  props: {
@@ -19295,7 +19673,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19295
19673
  }
19296
19674
  },
19297
19675
  setup(e) {
19298
- let t = e, n = y(Lx, null), r = F(!1), i = a(() => t.previewSrcList.length ? t.previewSrcList : t.src ? [t.src] : []), o = a(() => {
19676
+ let t = e, n = y(tS, null), r = F(!1), i = a(() => t.previewSrcList.length ? t.previewSrcList : t.src ? [t.src] : []), o = a(() => {
19299
19677
  if (!t.previewSrcList.length) return 0;
19300
19678
  let e = t.previewSrcList.indexOf(t.src || "");
19301
19679
  return e >= 0 ? e : t.initialIndex;
@@ -19326,9 +19704,9 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19326
19704
  alt: e.alt,
19327
19705
  loading: e.lazy ? "lazy" : void 0,
19328
19706
  style: E({ objectFit: e.fit })
19329
- }, null, 12, Rx),
19330
- U(d) ? (N(), l("div", zx, [m(p, { icon: "zoom-in-line" })])) : c("", !0),
19331
- U(n) ? c("", !0) : (N(), s(Ix, {
19707
+ }, null, 12, nS),
19708
+ U(d) ? (N(), l("div", rS, [m(p, { icon: "zoom-in-line" })])) : c("", !0),
19709
+ U(n) ? c("", !0) : (N(), s(eS, {
19332
19710
  key: 1,
19333
19711
  modelValue: U(r),
19334
19712
  "onUpdate:modelValue": a[0] ||= (e) => b(r) ? r.value = e : null,
@@ -19344,12 +19722,12 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19344
19722
  ], 2);
19345
19723
  };
19346
19724
  }
19347
- }), Vx = /* @__PURE__ */ X({ default: () => Hx }), Hx = /*#__PURE__*/ Z(Bx, [["__scopeId", "data-v-7a1a7c78"]]), Ux = { class: "fou-image-preview-group" }, Wx = /*@__PURE__*/ h({
19725
+ }), aS = /* @__PURE__ */ X({ default: () => oS }), oS = /*#__PURE__*/ Z(iS, [["__scopeId", "data-v-7a1a7c78"]]), sS = { class: "fou-image-preview-group" }, cS = /*@__PURE__*/ h({
19348
19726
  name: "FouImagePreviewGroup",
19349
19727
  __name: "index",
19350
19728
  setup(e) {
19351
19729
  let t = F([]), n = F(!1), r = F(0);
19352
- return P(Lx, {
19730
+ return P(tS, {
19353
19731
  register: (e) => {
19354
19732
  e && !t.value.includes(e) && (t.value = [...t.value, e]);
19355
19733
  },
@@ -19360,7 +19738,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19360
19738
  let i = t.value.indexOf(e);
19361
19739
  r.value = i >= 0 ? i : 0, n.value = !0;
19362
19740
  }
19363
- }), (e, i) => (N(), l("div", Ux, [L(e.$slots, "default"), m(Ix, {
19741
+ }), (e, i) => (N(), l("div", sS, [L(e.$slots, "default"), m(eS, {
19364
19742
  modelValue: U(n),
19365
19743
  "onUpdate:modelValue": i[0] ||= (e) => b(n) ? n.value = e : null,
19366
19744
  "url-list": U(t),
@@ -19372,7 +19750,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19372
19750
  "initial-index"
19373
19751
  ])]));
19374
19752
  }
19375
- }), Gx = /* @__PURE__ */ X({ default: () => Kx }), Kx = Wx, qx = [
19753
+ }), lS = /* @__PURE__ */ X({ default: () => uS }), uS = cS, dS = [
19376
19754
  "value",
19377
19755
  "disabled",
19378
19756
  "type",
@@ -19380,7 +19758,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19380
19758
  "onInput",
19381
19759
  "onKeydown",
19382
19760
  "onFocus"
19383
- ], Jx = /*@__PURE__*/ h({
19761
+ ], fS = /*@__PURE__*/ h({
19384
19762
  name: "FouInputOtp",
19385
19763
  __name: "index",
19386
19764
  props: {
@@ -19455,16 +19833,16 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19455
19833
  onInput: (e) => p(e, n),
19456
19834
  onKeydown: (e) => m(e, n),
19457
19835
  onFocus: (e) => h(e, n)
19458
- }, null, 42, qx))), 128))], 34));
19836
+ }, null, 42, dS))), 128))], 34));
19459
19837
  }
19460
- }), Yx = /* @__PURE__ */ X({ default: () => Xx }), Xx = /*#__PURE__*/ Z(Jx, [["__scopeId", "data-v-f3046b65"]]), Zx = { class: "fou-input-tag__text" }, Qx = ["onClick"], $x = {
19838
+ }), pS = /* @__PURE__ */ X({ default: () => mS }), mS = /*#__PURE__*/ Z(fS, [["__scopeId", "data-v-f3046b65"]]), hS = { class: "fou-input-tag__text" }, gS = ["onClick"], _S = {
19461
19839
  key: 0,
19462
19840
  class: "fou-input-tag__more"
19463
- }, eS = [
19841
+ }, vS = [
19464
19842
  "value",
19465
19843
  "placeholder",
19466
19844
  "disabled"
19467
- ], tS = /*@__PURE__*/ h({
19845
+ ], yS = /*@__PURE__*/ h({
19468
19846
  name: "FouInputTag",
19469
19847
  __name: "index",
19470
19848
  props: {
@@ -19544,14 +19922,14 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19544
19922
  (N(!0), l(t, null, I(U(_), (t, n) => (N(), l("span", {
19545
19923
  key: `${t}-${n}`,
19546
19924
  class: "fou-input-tag__tag"
19547
- }, [u("span", Zx, V(t), 1), !U(o) && e.closable ? (N(), l("button", {
19925
+ }, [u("span", hS, V(t), 1), !U(o) && e.closable ? (N(), l("button", {
19548
19926
  key: 0,
19549
19927
  type: "button",
19550
19928
  class: "fou-input-tag__close",
19551
19929
  "aria-label": "删除",
19552
19930
  onClick: q((e) => x(n), ["stop"])
19553
- }, " × ", 8, Qx)) : c("", !0)]))), 128)),
19554
- U(v) ? (N(), l("span", $x, "+" + V(U(v)), 1)) : c("", !0),
19931
+ }, " × ", 8, gS)) : c("", !0)]))), 128)),
19932
+ U(v) ? (N(), l("span", _S, "+" + V(U(v)), 1)) : c("", !0),
19555
19933
  !U(o) && !U(g) ? (N(), l("input", {
19556
19934
  key: 1,
19557
19935
  ref_key: "inputRef",
@@ -19564,17 +19942,17 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19564
19942
  onKeydown: C,
19565
19943
  onFocus: r[0] ||= (e) => m.value = !0,
19566
19944
  onBlur: T
19567
- }, null, 40, eS)) : c("", !0)
19945
+ }, null, 40, vS)) : c("", !0)
19568
19946
  ], 2));
19569
19947
  }
19570
- }), nS = /* @__PURE__ */ X({ default: () => rS }), rS = /*#__PURE__*/ Z(tS, [["__scopeId", "data-v-d22da89a"]]), iS = /*@__PURE__*/ h({
19948
+ }), bS = /* @__PURE__ */ X({ default: () => xS }), xS = /*#__PURE__*/ Z(yS, [["__scopeId", "data-v-d22da89a"]]), SS = /*@__PURE__*/ h({
19571
19949
  name: "FouKbd",
19572
19950
  __name: "index",
19573
19951
  props: { size: { default: "default" } },
19574
19952
  setup(e) {
19575
19953
  return (t, n) => (N(), l("kbd", { class: w(["fou-kbd", [`fou-kbd--${e.size}`]]) }, [L(t.$slots, "default", {}, void 0, !0)], 2));
19576
19954
  }
19577
- }), aS = /* @__PURE__ */ X({ default: () => oS }), oS = /*#__PURE__*/ Z(iS, [["__scopeId", "data-v-7af3b298"]]), sS = /*@__PURE__*/ h({
19955
+ }), CS = /* @__PURE__ */ X({ default: () => wS }), wS = /*#__PURE__*/ Z(SS, [["__scopeId", "data-v-7af3b298"]]), TS = /*@__PURE__*/ h({
19578
19956
  name: "FouLayoutContainer",
19579
19957
  __name: "index",
19580
19958
  props: {
@@ -19588,14 +19966,14 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19588
19966
  setup(e) {
19589
19967
  return (t, n) => (N(), l("div", { class: w(["fou-layout", [`fou-layout--${e.direction}`]]) }, [L(t.$slots, "default", {}, void 0, !0)], 2));
19590
19968
  }
19591
- }), cS = /* @__PURE__ */ X({ default: () => lS }), lS = /*#__PURE__*/ Z(sS, [["__scopeId", "data-v-8f7fef83"]]), uS = [
19969
+ }), ES = /* @__PURE__ */ X({ default: () => DS }), DS = /*#__PURE__*/ Z(TS, [["__scopeId", "data-v-8f7fef83"]]), OS = [
19592
19970
  "href",
19593
19971
  "target",
19594
19972
  "rel"
19595
- ], dS = {
19973
+ ], kS = {
19596
19974
  key: 1,
19597
19975
  class: "fou-link__text"
19598
- }, fS = /*@__PURE__*/ h({
19976
+ }, AS = /*@__PURE__*/ h({
19599
19977
  name: "FouLink",
19600
19978
  __name: "index",
19601
19979
  props: {
@@ -19640,22 +20018,22 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19640
20018
  icon: e.icon,
19641
20019
  class: "fou-link__icon"
19642
20020
  }, null, 8, ["icon"])) : c("", !0),
19643
- t.$slots.default ? (N(), l("span", dS, [L(t.$slots, "default", {}, void 0, !0)])) : c("", !0),
20021
+ t.$slots.default ? (N(), l("span", kS, [L(t.$slots, "default", {}, void 0, !0)])) : c("", !0),
19644
20022
  e.iconRight ? (N(), s(r, {
19645
20023
  key: 2,
19646
20024
  icon: e.iconRight,
19647
20025
  class: "fou-link__icon"
19648
20026
  }, null, 8, ["icon"])) : c("", !0)
19649
- ], 10, uS);
20027
+ ], 10, OS);
19650
20028
  };
19651
20029
  }
19652
- }), pS = /* @__PURE__ */ X({ default: () => mS }), mS = /*#__PURE__*/ Z(fS, [["__scopeId", "data-v-c2be34b7"]]), hS = ["href", "target"], gS = { class: "fou-link-preview__content" }, _S = { class: "fou-link-preview__host" }, vS = {
20030
+ }), jS = /* @__PURE__ */ X({ default: () => MS }), MS = /*#__PURE__*/ Z(AS, [["__scopeId", "data-v-c2be34b7"]]), NS = ["href", "target"], PS = { class: "fou-link-preview__content" }, FS = { class: "fou-link-preview__host" }, IS = {
19653
20031
  key: 0,
19654
20032
  class: "fou-link-preview__title"
19655
- }, yS = {
20033
+ }, LS = {
19656
20034
  key: 1,
19657
20035
  class: "fou-link-preview__desc"
19658
- }, bS = /*@__PURE__*/ h({
20036
+ }, RS = /*@__PURE__*/ h({
19659
20037
  name: "FouLinkPreview",
19660
20038
  __name: "index",
19661
20039
  props: {
@@ -19718,7 +20096,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19718
20096
  rel: "noopener noreferrer",
19719
20097
  onMouseenter: D,
19720
20098
  onMouseleave: O
19721
- }, [L(r.$slots, "default", {}, () => [p(V(e.href), 1)], !0)], 40, hS), (N(), s(n, { to: "body" }, [m(i, { name: "fou-link-preview-fade" }, {
20099
+ }, [L(r.$slots, "default", {}, () => [p(V(e.href), 1)], !0)], 40, NS), (N(), s(n, { to: "body" }, [m(i, { name: "fou-link-preview-fade" }, {
19722
20100
  default: G(() => [g.value ? (N(), l("div", {
19723
20101
  key: 0,
19724
20102
  ref_key: "cardRef",
@@ -19731,28 +20109,28 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19731
20109
  key: 0,
19732
20110
  class: "fou-link-preview__image",
19733
20111
  style: E({ backgroundImage: `url(${e.image})` })
19734
- }, null, 4)) : c("", !0), u("div", gS, [
19735
- u("div", _S, [m(o, { icon: "links-line" }), u("span", null, V(x.value), 1)]),
19736
- e.title ? (N(), l("div", vS, V(e.title), 1)) : c("", !0),
19737
- e.description ? (N(), l("div", yS, V(e.description), 1)) : c("", !0)
20112
+ }, null, 4)) : c("", !0), u("div", PS, [
20113
+ u("div", FS, [m(o, { icon: "links-line" }), u("span", null, V(x.value), 1)]),
20114
+ e.title ? (N(), l("div", IS, V(e.title), 1)) : c("", !0),
20115
+ e.description ? (N(), l("div", LS, V(e.description), 1)) : c("", !0)
19738
20116
  ])], 36)) : c("", !0)]),
19739
20117
  _: 1
19740
20118
  })]))], 64);
19741
20119
  };
19742
20120
  }
19743
- }), xS = /* @__PURE__ */ X({ default: () => SS }), SS = /*#__PURE__*/ Z(bS, [["__scopeId", "data-v-3733dca3"]]), CS = [
20121
+ }), zS = /* @__PURE__ */ X({ default: () => BS }), BS = /*#__PURE__*/ Z(RS, [["__scopeId", "data-v-3733dca3"]]), VS = [
19744
20122
  "value",
19745
20123
  "rows",
19746
20124
  "placeholder",
19747
20125
  "disabled"
19748
- ], wS = [
20126
+ ], HS = [
19749
20127
  "value",
19750
20128
  "placeholder",
19751
20129
  "disabled"
19752
- ], TS = { class: "fou-mention__list" }, ES = ["onMousedown", "onMouseenter"], DS = {
20130
+ ], US = { class: "fou-mention__list" }, WS = ["onMousedown", "onMouseenter"], GS = {
19753
20131
  key: 0,
19754
20132
  class: "fou-mention__avatar"
19755
- }, OS = { class: "fou-mention__label" }, kS = /*@__PURE__*/ h({
20133
+ }, KS = { class: "fou-mention__label" }, qS = /*@__PURE__*/ h({
19756
20134
  name: "FouMention",
19757
20135
  __name: "index",
19758
20136
  props: {
@@ -19848,7 +20226,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19848
20226
  onInput: v,
19849
20227
  onKeydown: D,
19850
20228
  onKeyup: O
19851
- }, null, 40, CS)) : (N(), l("input", {
20229
+ }, null, 40, VS)) : (N(), l("input", {
19852
20230
  key: 1,
19853
20231
  ref_key: "inputRef",
19854
20232
  ref: d,
@@ -19859,20 +20237,20 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19859
20237
  onInput: v,
19860
20238
  onKeydown: D,
19861
20239
  onKeyup: O
19862
- }, null, 40, wS)), (N(), s(n, { to: "body" }, [p.value ? (N(), l("div", {
20240
+ }, null, 40, HS)), (N(), s(n, { to: "body" }, [p.value ? (N(), l("div", {
19863
20241
  key: 0,
19864
20242
  ref_key: "panelRef",
19865
20243
  ref: f,
19866
20244
  class: "fou-mention__panel",
19867
20245
  style: E(g.value)
19868
- }, [u("ul", TS, [(N(!0), l(t, null, I(_.value, (e, t) => (N(), l("li", {
20246
+ }, [u("ul", US, [(N(!0), l(t, null, I(_.value, (e, t) => (N(), l("li", {
19869
20247
  key: e.value,
19870
20248
  class: w(["fou-mention__option", { "is-active": t === m.value }]),
19871
20249
  onMousedown: q((t) => T(e), ["prevent"]),
19872
20250
  onMouseenter: (e) => m.value = t
19873
- }, [e.avatar ? (N(), l("span", DS, V(e.avatar), 1)) : c("", !0), u("span", OS, V(e.label), 1)], 42, ES))), 128))])], 4)) : c("", !0)]))], 2));
20251
+ }, [e.avatar ? (N(), l("span", GS, V(e.avatar), 1)) : c("", !0), u("span", KS, V(e.label), 1)], 42, WS))), 128))])], 4)) : c("", !0)]))], 2));
19874
20252
  }
19875
- }), AS = /* @__PURE__ */ X({ default: () => jS }), jS = /*#__PURE__*/ Z(kS, [["__scopeId", "data-v-f948204c"]]), MS = Symbol("FouRouteMenu"), NS = { class: "fou-route-menu__list" }, PS = /*@__PURE__*/ h({
20253
+ }), JS = /* @__PURE__ */ X({ default: () => YS }), YS = /*#__PURE__*/ Z(qS, [["__scopeId", "data-v-f948204c"]]), XS = Symbol("FouRouteMenu"), ZS = { class: "fou-route-menu__list" }, QS = /*@__PURE__*/ h({
19876
20254
  name: "FouMenuRoot",
19877
20255
  __name: "FouMenuRoot",
19878
20256
  props: {
@@ -19916,7 +20294,7 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19916
20294
  }, _ = null, v = () => !!(document.querySelector(".fou-menu-flyout-panel:hover") || document.querySelector(".fou-route-menu-sub.is-popup > .fou-route-menu-sub__title:hover") || document.querySelector(".fou-route-menu.is-collapse .fou-route-menu-sub__title:hover") || document.querySelector(".fou-route-menu--horizontal .fou-route-menu-sub__title:hover") || document.querySelector(".fou-route-menu-item__tip:hover"));
19917
20295
  return k(() => {
19918
20296
  _ && clearTimeout(_);
19919
- }), P(MS, {
20297
+ }), P(XS, {
19920
20298
  mode: o,
19921
20299
  collapse: s,
19922
20300
  activeIndex: f,
@@ -19956,37 +20334,37 @@ var dx = (e, t) => e.valueMode === "bare" ? t : `${e.prefix}:${t}`, fx = (e) =>
19956
20334
  }), (t, n) => (N(), l("nav", {
19957
20335
  class: w(["fou-route-menu", [`fou-route-menu--${e.mode}`, { "is-collapse": e.collapse }]]),
19958
20336
  role: "menu"
19959
- }, [u("ul", NS, [L(t.$slots, "default", {}, void 0, !0)])], 2));
20337
+ }, [u("ul", ZS, [L(t.$slots, "default", {}, void 0, !0)])], 2));
19960
20338
  }
19961
- }), FS = /* @__PURE__ */ X({ default: () => IS }), IS = /*#__PURE__*/ Z(PS, [["__scopeId", "data-v-2586617d"]]), LS = "加载中...", RS = 3e3;
20339
+ }), $S = /* @__PURE__ */ X({ default: () => eC }), eC = /*#__PURE__*/ Z(QS, [["__scopeId", "data-v-2586617d"]]), tC = "加载中...", nC = 3e3;
19962
20340
  //#endregion
19963
20341
  //#region src/bridge/@/i18n/index.ts
19964
- function zS(e, ...t) {
20342
+ function rC(e, ...t) {
19965
20343
  return e;
19966
20344
  }
19967
20345
  //#endregion
19968
20346
  //#region src/bridge/@/store/modules/settings.ts
19969
- var BS = ee({
20347
+ var iC = ee({
19970
20348
  lock: !1,
19971
20349
  device: "desktop",
19972
20350
  theme: {
19973
20351
  layout: "vertical",
19974
20352
  autoHideColumnMenu: !1
19975
20353
  }
19976
- }), VS = () => ({
19977
- lock: a(() => BS.lock),
19978
- device: a(() => BS.device),
19979
- theme: a(() => BS.theme),
20354
+ }), aC = () => ({
20355
+ lock: a(() => iC.lock),
20356
+ device: a(() => iC.device),
20357
+ theme: a(() => iC.theme),
19980
20358
  foldSideBar: () => {}
19981
20359
  });
19982
20360
  //#endregion
19983
20361
  //#region src/bridge/@/utils/validate.ts
19984
- function HS(e) {
20362
+ function oC(e) {
19985
20363
  return /^(https?:|mailto:|tel:|http)/.test(e || "");
19986
20364
  }
19987
20365
  //#endregion
19988
20366
  //#region components/FouMenu/components/FouMenuItem.vue?vue&type=script&setup=true&lang.ts
19989
- var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-item__icon-wrap" }, GS = ["title"], KS = { class: "fou-route-menu-item__tip-title" }, qS = /*@__PURE__*/ h({
20367
+ var sC = { class: "fou-route-menu-item__inner" }, cC = { class: "fou-route-menu-item__icon-wrap" }, lC = ["title"], uC = { class: "fou-route-menu-item__tip-title" }, dC = /*@__PURE__*/ h({
19990
20368
  name: "FouMenuItem",
19991
20369
  __name: "FouMenuItem",
19992
20370
  props: { itemOrMenu: {
@@ -19994,13 +20372,13 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
19994
20372
  default: () => ({})
19995
20373
  } },
19996
20374
  setup(e) {
19997
- let t = e, r = y(MS, null), i = null, o = null;
20375
+ let t = e, r = y(XS, null), i = null, o = null;
19998
20376
  try {
19999
20377
  i = pe(), o = me();
20000
20378
  } catch {
20001
20379
  i = null, o = null;
20002
20380
  }
20003
- let d = VS(), f = a(() => {
20381
+ let d = aC(), f = a(() => {
20004
20382
  try {
20005
20383
  return d.device?.value ?? d.device ?? "desktop";
20006
20384
  } catch {
@@ -20018,7 +20396,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20018
20396
  } catch {}
20019
20397
  }, { enter: _, exit: v } = ue(), b = () => {
20020
20398
  h.value.layout === "column" && h.value.autoHideColumnMenu && f.value !== "mobile" && g();
20021
- }, x = F(null), S = F(!1), T = F({}), D = null, O = a(() => t.itemOrMenu.path), A = a(() => r?.activeIndex.value === O.value), j = a(() => r?.collapse.value ?? !1), M = a(() => zS(t.itemOrMenu.meta?.title || "")), P = a(() => t.itemOrMenu.meta?.badgeType || "info"), ee = a(() => t.itemOrMenu.meta?.badgeEffect || "dark"), I = a(() => {
20399
+ }, x = F(null), S = F(!1), T = F({}), D = null, O = a(() => t.itemOrMenu.path), A = a(() => r?.activeIndex.value === O.value), j = a(() => r?.collapse.value ?? !1), M = a(() => rC(t.itemOrMenu.meta?.title || "")), P = a(() => t.itemOrMenu.meta?.badgeType || "info"), ee = a(() => t.itemOrMenu.meta?.badgeEffect || "dark"), I = a(() => {
20022
20400
  let e = t.itemOrMenu.meta?.dot;
20023
20401
  return e === !0 ? "danger" : typeof e == "string" ? e : "danger";
20024
20402
  }), L = () => {
@@ -20045,7 +20423,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20045
20423
  let B = () => {
20046
20424
  r?.selectItem(O.value), b(), C(() => {
20047
20425
  let e = t.itemOrMenu.path, n = t.itemOrMenu.meta.target, r = t.itemOrMenu.meta.fullscreen;
20048
- n === "_blank" ? ((HS(e) || i?.path !== e) && window.open(e), o?.push("/redirect").catch(() => {})) : HS(e) ? globalThis.location.href = e : (!i || i.path !== e) && (f.value === "mobile" && g(), o?.push(t.itemOrMenu.path).catch(() => {})), setTimeout(() => {
20426
+ n === "_blank" ? ((oC(e) || i?.path !== e) && window.open(e), o?.push("/redirect").catch(() => {})) : oC(e) ? globalThis.location.href = e : (!i || i.path !== e) && (f.value === "mobile" && g(), o?.push(t.itemOrMenu.path).catch(() => {})), setTimeout(() => {
20049
20427
  r ? _() : v();
20050
20428
  }, 1e3);
20051
20429
  });
@@ -20063,8 +20441,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20063
20441
  onClick: B,
20064
20442
  onMouseenter: R,
20065
20443
  onMouseleave: z
20066
- }, [u("div", US, [
20067
- u("span", WS, [m(i, {
20444
+ }, [u("div", sC, [
20445
+ u("span", cC, [m(i, {
20068
20446
  icon: e.itemOrMenu.meta?.icon || "menu-line",
20069
20447
  "is-custom-svg": e.itemOrMenu.meta?.isCustomSvg,
20070
20448
  title: U(M)
@@ -20080,7 +20458,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20080
20458
  u("span", {
20081
20459
  class: "fou-route-menu-item__text",
20082
20460
  title: U(M)
20083
- }, V(U(M)), 9, GS),
20461
+ }, V(U(M)), 9, lC),
20084
20462
  e.itemOrMenu.meta?.badge ? (N(), s(o, {
20085
20463
  key: 0,
20086
20464
  class: w(["fou-route-menu-item__badge", [`fou-menu-tag--${U(ee)}`]]),
@@ -20088,7 +20466,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20088
20466
  type: U(P),
20089
20467
  effect: U(ee)
20090
20468
  }, {
20091
- default: G(() => [p(V(U(zS)(e.itemOrMenu.meta.badge)), 1)]),
20469
+ default: G(() => [p(V(U(rC)(e.itemOrMenu.meta.badge)), 1)]),
20092
20470
  _: 1
20093
20471
  }, 8, [
20094
20472
  "class",
@@ -20106,20 +20484,20 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20106
20484
  class: "fou-route-menu-item__tip-arrow",
20107
20485
  "aria-hidden": "true"
20108
20486
  }, null, -1),
20109
- u("span", KS, V(U(M)), 1),
20487
+ u("span", uC, V(U(M)), 1),
20110
20488
  e.itemOrMenu.meta?.badge ? (N(), s(o, {
20111
20489
  key: 0,
20112
20490
  size: "small",
20113
20491
  type: U(P),
20114
20492
  effect: U(ee)
20115
20493
  }, {
20116
- default: G(() => [p(V(U(zS)(e.itemOrMenu.meta.badge)), 1)]),
20494
+ default: G(() => [p(V(U(rC)(e.itemOrMenu.meta.badge)), 1)]),
20117
20495
  _: 1
20118
20496
  }, 8, ["type", "effect"])) : c("", !0)
20119
20497
  ], 36), [[se, U(j) && U(S)]])]))], 34);
20120
20498
  };
20121
20499
  }
20122
- }), JS = /* @__PURE__ */ X({ default: () => YS }), YS = /*#__PURE__*/ Z(qS, [["__scopeId", "data-v-81230a6b"]]), XS = /*@__PURE__*/ h({
20500
+ }), fC = /* @__PURE__ */ X({ default: () => pC }), pC = /*#__PURE__*/ Z(dC, [["__scopeId", "data-v-81230a6b"]]), mC = /*@__PURE__*/ h({
20123
20501
  name: "FouMenu",
20124
20502
  __name: "index",
20125
20503
  props: {
@@ -20134,8 +20512,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20134
20512
  },
20135
20513
  setup(e) {
20136
20514
  let n = /* #__PURE__ */ Object.assign({
20137
- "./components/FouMenuItem.vue": JS,
20138
- "./components/FouSubMenu.vue": aC
20515
+ "./components/FouMenuItem.vue": fC,
20516
+ "./components/FouSubMenu.vue": CC
20139
20517
  }), r = {};
20140
20518
  Object.getOwnPropertyNames(n).forEach((e) => {
20141
20519
  r[e.replaceAll(/(\/|components|\.|vue)/g, "")] = n[e].default;
@@ -20156,17 +20534,17 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20156
20534
  }, 8, ["item-or-menu", "layout"]);
20157
20535
  };
20158
20536
  }
20159
- }), ZS = /* @__PURE__ */ X({ default: () => QS }), QS = XS, $S = { class: "fou-route-menu-sub__icon-wrap" }, eC = ["title"], tC = {
20537
+ }), hC = /* @__PURE__ */ X({ default: () => gC }), gC = mC, _C = { class: "fou-route-menu-sub__icon-wrap" }, vC = ["title"], yC = {
20160
20538
  key: 2,
20161
20539
  class: "fou-route-menu-sub__more"
20162
- }, nC = {
20540
+ }, bC = {
20163
20541
  key: 0,
20164
20542
  class: "fou-menu-flyout-panel__arrow",
20165
20543
  "aria-hidden": "true"
20166
- }, rC = {
20544
+ }, xC = {
20167
20545
  key: 1,
20168
20546
  class: "fou-menu-flyout-panel__head"
20169
- }, iC = /*@__PURE__*/ h({
20547
+ }, SC = /*@__PURE__*/ h({
20170
20548
  name: "FouSubMenu",
20171
20549
  __name: "FouSubMenu",
20172
20550
  props: {
@@ -20180,7 +20558,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20180
20558
  }
20181
20559
  },
20182
20560
  setup(e) {
20183
- let r = e, i = y(MS, null), o = F(null), d = F(null), f = F(null), h = F({}), g = F("right"), _ = null, v = a(() => r.itemOrMenu.path), b = a(() => en(r.itemOrMenu.meta?.title || "")), x = a(() => i?.mode.value === "horizontal"), S = a(() => i?.collapse.value ?? !1), T = a(() => x.value || S.value), D = a(() => T.value), O = a(() => i?.isSubOpen(v.value) ?? !1), A = a(() => i?.isActive(v.value) ?? !1), j = a(() => r.itemOrMenu.meta?.badgeType || "info"), M = a(() => r.itemOrMenu.meta?.badgeEffect || "dark"), P = a(() => {
20561
+ let r = e, i = y(XS, null), o = F(null), d = F(null), f = F(null), h = F({}), g = F("right"), _ = null, v = a(() => r.itemOrMenu.path), b = a(() => en(r.itemOrMenu.meta?.title || "")), x = a(() => i?.mode.value === "horizontal"), S = a(() => i?.collapse.value ?? !1), T = a(() => x.value || S.value), D = a(() => T.value), O = a(() => i?.isSubOpen(v.value) ?? !1), A = a(() => i?.isActive(v.value) ?? !1), j = a(() => r.itemOrMenu.meta?.badgeType || "info"), M = a(() => r.itemOrMenu.meta?.badgeEffect || "dark"), P = a(() => {
20184
20562
  let e = r.itemOrMenu.meta?.dot;
20185
20563
  return e === !0 ? "danger" : typeof e == "string" ? e : "danger";
20186
20564
  }), ee = a(() => O.value), R = () => {
@@ -20231,7 +20609,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20231
20609
  }), k(() => {
20232
20610
  _ && clearTimeout(_);
20233
20611
  }), (r, i) => {
20234
- let a = QS, _ = Fe, v = sb, y = hu;
20612
+ let a = gC, _ = Fe, v = sb, y = hu;
20235
20613
  return e.itemOrMenu.meta && e.itemOrMenu.meta.levelHidden ? (N(!0), l(t, { key: 0 }, I(e.itemOrMenu.children, (t) => (N(), s(a, {
20236
20614
  key: t.path,
20237
20615
  item: t,
@@ -20254,7 +20632,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20254
20632
  class: "fou-route-menu-sub__title",
20255
20633
  onClick: B
20256
20634
  }, [
20257
- u("span", $S, [m(_, {
20635
+ u("span", _C, [m(_, {
20258
20636
  icon: e.itemOrMenu.meta?.icon || "folder-line",
20259
20637
  "is-custom-svg": e.itemOrMenu.meta?.isCustomSvg,
20260
20638
  title: U(b)
@@ -20270,7 +20648,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20270
20648
  u("span", {
20271
20649
  class: "fou-route-menu-sub__text",
20272
20650
  title: U(b)
20273
- }, V(U(b)), 9, eC),
20651
+ }, V(U(b)), 9, vC),
20274
20652
  e.itemOrMenu.meta?.badge ? (N(), s(y, {
20275
20653
  key: 0,
20276
20654
  class: w(["fou-route-menu-sub__badge", [`fou-menu-tag--${U(M)}`]]),
@@ -20285,7 +20663,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20285
20663
  "type",
20286
20664
  "effect"
20287
20665
  ])) : c("", !0),
20288
- U(T) ? (N(), l("span", tC, [m(_, { icon: "arrow-right-s-line" })])) : (N(), l("span", {
20666
+ U(T) ? (N(), l("span", yC, [m(_, { icon: "arrow-right-s-line" })])) : (N(), l("span", {
20289
20667
  key: 1,
20290
20668
  class: w(["fou-route-menu-sub__arrow", { "is-open": U(O) }])
20291
20669
  }, [m(_, { icon: "arrow-down-s-line" })], 2))
@@ -20304,13 +20682,13 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20304
20682
  onMouseenter: H,
20305
20683
  onMouseleave: te
20306
20684
  }, [
20307
- U(D) ? (N(), l("i", nC)) : c("", !0),
20308
- U(D) ? (N(), l("div", rC, V(U(b)), 1)) : c("", !0),
20685
+ U(D) ? (N(), l("i", bC)) : c("", !0),
20686
+ U(D) ? (N(), l("div", xC, V(U(b)), 1)) : c("", !0),
20309
20687
  L(r.$slots, "default", {}, void 0, !0)
20310
20688
  ], 38), [[se, U(ee)]])], 8, ["disabled"]))], 34));
20311
20689
  };
20312
20690
  }
20313
- }), aC = /* @__PURE__ */ X({ default: () => oC }), oC = /*#__PURE__*/ Z(iC, [["__scopeId", "data-v-3f0479e1"]]), sC = Symbol("FouMenuNav"), cC = { class: "fou-menu-nav-item__inner" }, lC = { class: "fou-menu-nav-item__title" }, uC = /*@__PURE__*/ h({
20691
+ }), CC = /* @__PURE__ */ X({ default: () => wC }), wC = /*#__PURE__*/ Z(SC, [["__scopeId", "data-v-3f0479e1"]]), TC = Symbol("FouMenuNav"), EC = { class: "fou-menu-nav-item__inner" }, DC = { class: "fou-menu-nav-item__title" }, OC = /*@__PURE__*/ h({
20314
20692
  name: "FouMenuNavItem",
20315
20693
  __name: "FouMenuNavItem",
20316
20694
  props: {
@@ -20322,7 +20700,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20322
20700
  }
20323
20701
  },
20324
20702
  setup(e) {
20325
- let t = e, n = y(sC, null), r = null;
20703
+ let t = e, n = y(TC, null), r = null;
20326
20704
  try {
20327
20705
  r = me();
20328
20706
  } catch {
@@ -20338,9 +20716,9 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20338
20716
  }]),
20339
20717
  role: "menuitem",
20340
20718
  onClick: o
20341
- }, [u("div", cC, [L(t.$slots, "icon", {}, void 0, !0), u("span", lC, [L(t.$slots, "default", {}, () => [p(V(e.title), 1)], !0)])])], 2));
20719
+ }, [u("div", EC, [L(t.$slots, "icon", {}, void 0, !0), u("span", DC, [L(t.$slots, "default", {}, () => [p(V(e.title), 1)], !0)])])], 2));
20342
20720
  }
20343
- }), dC = /* @__PURE__ */ X({ default: () => fC }), fC = /*#__PURE__*/ Z(uC, [["__scopeId", "data-v-7d03eb13"]]), pC = { class: "fou-menu-nav-sub__text" }, mC = { class: "fou-menu-nav-sub__list" }, hC = /*@__PURE__*/ h({
20721
+ }), kC = /* @__PURE__ */ X({ default: () => AC }), AC = /*#__PURE__*/ Z(OC, [["__scopeId", "data-v-7d03eb13"]]), jC = { class: "fou-menu-nav-sub__text" }, MC = { class: "fou-menu-nav-sub__list" }, NC = /*@__PURE__*/ h({
20344
20722
  name: "FouMenuNavSub",
20345
20723
  __name: "FouMenuNavSub",
20346
20724
  props: {
@@ -20348,7 +20726,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20348
20726
  title: { default: "" }
20349
20727
  },
20350
20728
  setup(e) {
20351
- let t = e, n = y(sC, null), r = a(() => n?.isSubOpen(t.index) ?? !1), i = a(() => {
20729
+ let t = e, n = y(TC, null), r = a(() => n?.isSubOpen(t.index) ?? !1), i = a(() => {
20352
20730
  let e = n?.activeIndex.value ?? "";
20353
20731
  return e === t.index || e.startsWith(`${t.index}/`);
20354
20732
  }), o = () => {
@@ -20365,11 +20743,11 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20365
20743
  onClick: o
20366
20744
  }, [
20367
20745
  L(t.$slots, "icon", {}, void 0, !0),
20368
- u("span", pC, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)]),
20746
+ u("span", jC, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)]),
20369
20747
  u("span", { class: w(["fou-menu-nav-sub__arrow", { "is-open": U(r) }]) }, "▾", 2)
20370
- ]), ce(u("ul", mC, [L(t.$slots, "default", {}, void 0, !0)], 512), [[se, U(r) && !U(n)?.collapse.value]])], 2));
20748
+ ]), ce(u("ul", MC, [L(t.$slots, "default", {}, void 0, !0)], 512), [[se, U(r) && !U(n)?.collapse.value]])], 2));
20371
20749
  }
20372
- }), gC = /* @__PURE__ */ X({ default: () => _C }), _C = /*#__PURE__*/ Z(hC, [["__scopeId", "data-v-d43bbb7b"]]), vC = { class: "fou-menu-nav__list" }, yC = /*@__PURE__*/ h({
20750
+ }), PC = /* @__PURE__ */ X({ default: () => FC }), FC = /*#__PURE__*/ Z(NC, [["__scopeId", "data-v-d43bbb7b"]]), IC = { class: "fou-menu-nav__list" }, LC = /*@__PURE__*/ h({
20373
20751
  name: "FouMenuNav",
20374
20752
  __name: "index",
20375
20753
  props: {
@@ -20394,7 +20772,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20394
20772
  o.value = new Set(e || []);
20395
20773
  });
20396
20774
  let s = a(() => n.mode), c = a(() => n.collapse), d = a(() => n.defaultActive), f = a(() => i.value), p = a(() => n.router);
20397
- return P(sC, {
20775
+ return P(TC, {
20398
20776
  mode: s,
20399
20777
  collapse: c,
20400
20778
  defaultActive: d,
@@ -20414,15 +20792,15 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20414
20792
  "is-horizontal": e.mode === "horizontal"
20415
20793
  }]]),
20416
20794
  role: "menu"
20417
- }, [u("ul", vC, [L(t.$slots, "default", {}, void 0, !0)])], 2));
20795
+ }, [u("ul", IC, [L(t.$slots, "default", {}, void 0, !0)])], 2));
20418
20796
  }
20419
- }), bC = /* @__PURE__ */ X({ default: () => xC }), xC = /*#__PURE__*/ Z(yC, [["__scopeId", "data-v-6d01fd65"]]), SC = { class: "fou-notify__content" }, CC = {
20797
+ }), RC = /* @__PURE__ */ X({ default: () => zC }), zC = /*#__PURE__*/ Z(LC, [["__scopeId", "data-v-6d01fd65"]]), BC = { class: "fou-notify__content" }, VC = {
20420
20798
  key: 0,
20421
20799
  class: "fou-notify__title"
20422
- }, wC = {
20800
+ }, HC = {
20423
20801
  key: 1,
20424
20802
  class: "fou-notify__message"
20425
- }, TC = /*@__PURE__*/ h({
20803
+ }, UC = /*@__PURE__*/ h({
20426
20804
  name: "FouNotificationItem",
20427
20805
  __name: "FouNotificationItem",
20428
20806
  props: {
@@ -20445,7 +20823,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20445
20823
  return (t, r) => (N(), s(i, { name: "fou-notify-fade" }, {
20446
20824
  default: G(() => [ce(u("div", { class: w(["fou-notify", [`fou-notify--${e.type}`, `fou-notify--${e.position}`]]) }, [
20447
20825
  u("i", { class: w(["fou-notify__icon", U(n)]) }, null, 2),
20448
- u("div", SC, [e.title ? (N(), l("div", CC, V(e.title), 1)) : c("", !0), e.message ? (N(), l("div", wC, V(e.message), 1)) : c("", !0)]),
20826
+ u("div", BC, [e.title ? (N(), l("div", VC, V(e.title), 1)) : c("", !0), e.message ? (N(), l("div", HC, V(e.message), 1)) : c("", !0)]),
20449
20827
  e.showClose ? (N(), l("i", {
20450
20828
  key: 0,
20451
20829
  class: "fou-notify__close ri-close-line",
@@ -20455,7 +20833,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20455
20833
  _: 1
20456
20834
  }));
20457
20835
  }
20458
- }), EC = /* @__PURE__ */ X({ default: () => DC }), DC = TC, OC = /*@__PURE__*/ h({
20836
+ }), WC = /* @__PURE__ */ X({ default: () => GC }), GC = UC, KC = /*@__PURE__*/ h({
20459
20837
  name: "FouPage",
20460
20838
  inheritAttrs: !1,
20461
20839
  __name: "index",
@@ -20468,19 +20846,19 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20468
20846
  }, 16);
20469
20847
  };
20470
20848
  }
20471
- }), kC = /* @__PURE__ */ X({ default: () => AC }), AC = OC, jC = { class: "fou-page-header" }, MC = {
20849
+ }), qC = /* @__PURE__ */ X({ default: () => JC }), JC = KC, YC = { class: "fou-page-header" }, XC = {
20472
20850
  key: 0,
20473
20851
  class: "fou-page-header__breadcrumb"
20474
- }, NC = { class: "fou-page-header__main" }, PC = { class: "fou-page-header__left" }, FC = { class: "fou-page-header__heading" }, IC = {
20852
+ }, ZC = { class: "fou-page-header__main" }, QC = { class: "fou-page-header__left" }, $C = { class: "fou-page-header__heading" }, ew = {
20475
20853
  key: 0,
20476
20854
  class: "fou-page-header__title"
20477
- }, LC = {
20855
+ }, tw = {
20478
20856
  key: 1,
20479
20857
  class: "fou-page-header__content"
20480
- }, RC = {
20858
+ }, nw = {
20481
20859
  key: 0,
20482
20860
  class: "fou-page-header__extra"
20483
- }, zC = /*@__PURE__*/ h({
20861
+ }, rw = /*@__PURE__*/ h({
20484
20862
  name: "FouPageHeader",
20485
20863
  __name: "index",
20486
20864
  props: {
@@ -20493,27 +20871,27 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20493
20871
  let n = t;
20494
20872
  return (t, r) => {
20495
20873
  let i = Fe;
20496
- return N(), l("div", jC, [t.$slots.breadcrumb ? (N(), l("div", MC, [L(t.$slots, "breadcrumb", {}, void 0, !0)])) : c("", !0), u("div", NC, [u("div", PC, [u("button", {
20874
+ return N(), l("div", YC, [t.$slots.breadcrumb ? (N(), l("div", XC, [L(t.$slots, "breadcrumb", {}, void 0, !0)])) : c("", !0), u("div", ZC, [u("div", QC, [u("button", {
20497
20875
  type: "button",
20498
20876
  class: "fou-page-header__back",
20499
20877
  "aria-label": "返回",
20500
20878
  onClick: r[0] ||= (e) => n("back")
20501
- }, [L(t.$slots, "icon", {}, () => [m(i, { icon: e.icon || "arrow-left-line" }, null, 8, ["icon"])], !0)]), u("div", FC, [e.title || t.$slots.title ? (N(), l("div", IC, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0), e.content || t.$slots.content ? (N(), l("div", LC, [L(t.$slots, "content", {}, () => [p(V(e.content), 1)], !0)])) : c("", !0)])]), t.$slots.extra ? (N(), l("div", RC, [L(t.$slots, "extra", {}, void 0, !0)])) : c("", !0)])]);
20879
+ }, [L(t.$slots, "icon", {}, () => [m(i, { icon: e.icon || "arrow-left-line" }, null, 8, ["icon"])], !0)]), u("div", $C, [e.title || t.$slots.title ? (N(), l("div", ew, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0), e.content || t.$slots.content ? (N(), l("div", tw, [L(t.$slots, "content", {}, () => [p(V(e.content), 1)], !0)])) : c("", !0)])]), t.$slots.extra ? (N(), l("div", nw, [L(t.$slots, "extra", {}, void 0, !0)])) : c("", !0)])]);
20502
20880
  };
20503
20881
  }
20504
- }), BC = /* @__PURE__ */ X({ default: () => VC }), VC = /*#__PURE__*/ Z(zC, [["__scopeId", "data-v-405076b1"]]), HC = { class: "fou-page-main" }, UC = {
20882
+ }), iw = /* @__PURE__ */ X({ default: () => aw }), aw = /*#__PURE__*/ Z(rw, [["__scopeId", "data-v-405076b1"]]), ow = { class: "fou-page-main" }, sw = {
20505
20883
  key: 0,
20506
20884
  class: "fou-page-main__header"
20507
- }, WC = { class: "fou-page-main__heading" }, GC = {
20885
+ }, cw = { class: "fou-page-main__heading" }, lw = {
20508
20886
  key: 0,
20509
20887
  class: "fou-page-main__title"
20510
- }, KC = {
20888
+ }, uw = {
20511
20889
  key: 0,
20512
20890
  class: "fou-page-main__desc"
20513
- }, qC = {
20891
+ }, dw = {
20514
20892
  key: 0,
20515
20893
  class: "fou-page-main__extra"
20516
- }, JC = { class: "fou-page-main__body" }, YC = /*@__PURE__*/ h({
20894
+ }, fw = { class: "fou-page-main__body" }, pw = /*@__PURE__*/ h({
20517
20895
  name: "FouPageMain",
20518
20896
  __name: "index",
20519
20897
  props: {
@@ -20521,9 +20899,9 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20521
20899
  description: { default: "" }
20522
20900
  },
20523
20901
  setup(e) {
20524
- return (t, n) => (N(), l("section", HC, [e.title || t.$slots.title || t.$slots.extra ? (N(), l("header", UC, [u("div", WC, [L(t.$slots, "title", {}, () => [e.title ? (N(), l("h2", GC, V(e.title), 1)) : c("", !0)], !0), e.description || t.$slots.description ? (N(), l("p", KC, [L(t.$slots, "description", {}, () => [p(V(e.description), 1)], !0)])) : c("", !0)]), t.$slots.extra ? (N(), l("div", qC, [L(t.$slots, "extra", {}, void 0, !0)])) : c("", !0)])) : c("", !0), u("div", JC, [L(t.$slots, "default", {}, void 0, !0)])]));
20902
+ return (t, n) => (N(), l("section", ow, [e.title || t.$slots.title || t.$slots.extra ? (N(), l("header", sw, [u("div", cw, [L(t.$slots, "title", {}, () => [e.title ? (N(), l("h2", lw, V(e.title), 1)) : c("", !0)], !0), e.description || t.$slots.description ? (N(), l("p", uw, [L(t.$slots, "description", {}, () => [p(V(e.description), 1)], !0)])) : c("", !0)]), t.$slots.extra ? (N(), l("div", dw, [L(t.$slots, "extra", {}, void 0, !0)])) : c("", !0)])) : c("", !0), u("div", fw, [L(t.$slots, "default", {}, void 0, !0)])]));
20525
20903
  }
20526
- }), XC = /* @__PURE__ */ X({ default: () => ZC }), ZC = /*#__PURE__*/ Z(YC, [["__scopeId", "data-v-bc32527c"]]), QC = /*@__PURE__*/ h({
20904
+ }), mw = /* @__PURE__ */ X({ default: () => hw }), hw = /*#__PURE__*/ Z(pw, [["__scopeId", "data-v-bc32527c"]]), gw = /*@__PURE__*/ h({
20527
20905
  name: "FouParagraph",
20528
20906
  __name: "index",
20529
20907
  props: {
@@ -20543,10 +20921,10 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20543
20921
  style: E(e.lineClamp > 0 ? { WebkitLineClamp: String(e.lineClamp) } : void 0)
20544
20922
  }, [L(t.$slots, "default", {}, void 0, !0)], 6));
20545
20923
  }
20546
- }), $C = /* @__PURE__ */ X({ default: () => ew }), ew = /*#__PURE__*/ Z(QC, [["__scopeId", "data-v-a4c339e8"]]), tw = { class: "fou-pwd-strength__bars" }, nw = {
20924
+ }), _w = /* @__PURE__ */ X({ default: () => vw }), vw = /*#__PURE__*/ Z(gw, [["__scopeId", "data-v-a4c339e8"]]), yw = { class: "fou-pwd-strength__bars" }, bw = {
20547
20925
  key: 0,
20548
20926
  class: "fou-pwd-strength__label"
20549
- }, rw = /*@__PURE__*/ h({
20927
+ }, xw = /*@__PURE__*/ h({
20550
20928
  name: "FouPasswordStrength",
20551
20929
  __name: "index",
20552
20930
  props: {
@@ -20593,12 +20971,12 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20593
20971
  }
20594
20972
  ][t];
20595
20973
  });
20596
- return (n, i) => (N(), l("div", { class: w(["fou-pwd-strength", [`fou-pwd-strength--${r.value.label}`]]) }, [u("div", tw, [(N(), l(t, null, I(4, (e) => u("span", {
20974
+ return (n, i) => (N(), l("div", { class: w(["fou-pwd-strength", [`fou-pwd-strength--${r.value.label}`]]) }, [u("div", yw, [(N(), l(t, null, I(4, (e) => u("span", {
20597
20975
  key: e,
20598
20976
  class: w(["fou-pwd-strength__bar", { "is-on": e <= r.value.score }])
20599
- }, null, 2)), 64))]), e.showLabel ? (N(), l("span", nw, V(r.value.text), 1)) : c("", !0)], 2));
20977
+ }, null, 2)), 64))]), e.showLabel ? (N(), l("span", bw, V(r.value.text), 1)) : c("", !0)], 2));
20600
20978
  }
20601
- }), iw = /* @__PURE__ */ X({ default: () => aw }), aw = /*#__PURE__*/ Z(rw, [["__scopeId", "data-v-7cd9df04"]]), ow = { class: "fou-popconfirm-host" }, sw = { class: "fou-popconfirm__body" }, cw = { class: "fou-popconfirm__title" }, lw = { class: "fou-popconfirm__actions" }, uw = /*@__PURE__*/ h({
20979
+ }), Sw = /* @__PURE__ */ X({ default: () => Cw }), Cw = /*#__PURE__*/ Z(xw, [["__scopeId", "data-v-7cd9df04"]]), ww = { class: "fou-popconfirm-host" }, Tw = { class: "fou-popconfirm__body" }, Ew = { class: "fou-popconfirm__title" }, Dw = { class: "fou-popconfirm__actions" }, Ow = /*@__PURE__*/ h({
20602
20980
  name: "FouPopconfirm",
20603
20981
  inheritAttrs: !1,
20604
20982
  __name: "index",
@@ -20644,7 +21022,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20644
21022
  window.removeEventListener("scroll", T, !0), window.removeEventListener("resize", T);
20645
21023
  }), (t, r) => {
20646
21024
  let a = Fe, o = Wn;
20647
- return N(), l("span", ow, [u("span", {
21025
+ return N(), l("span", ww, [u("span", {
20648
21026
  ref_key: "triggerRef",
20649
21027
  ref: c,
20650
21028
  class: "fou-popconfirm__trigger",
@@ -20667,11 +21045,11 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20667
21045
  class: "fou-popconfirm__arrow",
20668
21046
  "aria-hidden": "true"
20669
21047
  }, null, -1),
20670
- u("div", sw, [m(a, {
21048
+ u("div", Tw, [m(a, {
20671
21049
  class: "fou-popconfirm__icon",
20672
21050
  icon: "error-warning-line"
20673
- }), u("div", cw, V(e.title), 1)]),
20674
- u("div", lw, [L(t.$slots, "actions", {}, () => [m(o, {
21051
+ }), u("div", Ew, V(e.title), 1)]),
21052
+ u("div", Dw, [L(t.$slots, "actions", {}, () => [m(o, {
20675
21053
  size: "small",
20676
21054
  onClick: S
20677
21055
  }, {
@@ -20690,10 +21068,10 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20690
21068
  })]))]);
20691
21069
  };
20692
21070
  }
20693
- }), dw = /* @__PURE__ */ X({ default: () => fw }), fw = /*#__PURE__*/ Z(uw, [["__scopeId", "data-v-c0375827"]]), pw = {
21071
+ }), kw = /* @__PURE__ */ X({ default: () => Aw }), Aw = /*#__PURE__*/ Z(Ow, [["__scopeId", "data-v-c0375827"]]), jw = {
20694
21072
  key: 0,
20695
21073
  class: "fou-popover__title"
20696
- }, mw = { class: "fou-popover__body" }, hw = /*@__PURE__*/ h({
21074
+ }, Mw = { class: "fou-popover__body" }, Nw = /*@__PURE__*/ h({
20697
21075
  name: "FouPopover",
20698
21076
  inheritAttrs: !1,
20699
21077
  __name: "index",
@@ -20796,22 +21174,22 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20796
21174
  onMouseenter: ee,
20797
21175
  onMouseleave: I,
20798
21176
  onClick: a[0] ||= q(() => {}, ["stop"])
20799
- }, [e.title || t.$slots.title ? (N(), l("div", pw, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0), u("div", mw, [L(t.$slots, "default", {}, void 0, !0)])], 38)], 4), [[se, U(b)]])]),
21177
+ }, [e.title || t.$slots.title ? (N(), l("div", jw, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0), u("div", Mw, [L(t.$slots, "default", {}, void 0, !0)])], 38)], 4), [[se, U(b)]])]),
20800
21178
  _: 3
20801
21179
  })]))], 16));
20802
21180
  }
20803
- }), gw = /* @__PURE__ */ X({ default: () => _w }), _w = /*#__PURE__*/ Z(hw, [["__scopeId", "data-v-0d5add06"]]), vw = ["aria-valuenow"], yw = {
21181
+ }), Pw = /* @__PURE__ */ X({ default: () => Fw }), Fw = /*#__PURE__*/ Z(Nw, [["__scopeId", "data-v-0d5add06"]]), Iw = ["aria-valuenow"], Lw = {
20804
21182
  key: 0,
20805
21183
  class: "fou-progress__text fou-progress__text--inside"
20806
- }, bw = {
21184
+ }, Rw = {
20807
21185
  key: 0,
20808
21186
  class: "fou-progress__text"
20809
- }, xw = ["viewBox"], Sw = [
21187
+ }, zw = ["viewBox"], Bw = [
20810
21188
  "cx",
20811
21189
  "cy",
20812
21190
  "r",
20813
21191
  "stroke-width"
20814
- ], Cw = [
21192
+ ], Vw = [
20815
21193
  "cx",
20816
21194
  "cy",
20817
21195
  "r",
@@ -20821,10 +21199,10 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20821
21199
  "stroke-dashoffset",
20822
21200
  "stroke-linecap",
20823
21201
  "transform"
20824
- ], ww = {
21202
+ ], Hw = {
20825
21203
  key: 0,
20826
21204
  class: "fou-progress__circle-text"
20827
- }, Tw = /*@__PURE__*/ h({
21205
+ }, Uw = /*@__PURE__*/ h({
20828
21206
  name: "FouProgress",
20829
21207
  __name: "index",
20830
21208
  props: {
@@ -20871,7 +21249,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20871
21249
  }, [u("div", {
20872
21250
  class: w(["fou-progress__inner", { "is-text-inside": e.textInside }]),
20873
21251
  style: E(U(d))
20874
- }, [e.textInside && e.showText ? (N(), l("span", yw, [L(n.$slots, "default", {}, () => [p(V(U(f)), 1)], !0)])) : c("", !0)], 6)], 4), !e.textInside && e.showText ? (N(), l("span", bw, [L(n.$slots, "default", {}, () => [p(V(U(f)), 1)], !0)])) : c("", !0)], 64)) : (N(), l("div", {
21252
+ }, [e.textInside && e.showText ? (N(), l("span", Lw, [L(n.$slots, "default", {}, () => [p(V(U(f)), 1)], !0)])) : c("", !0)], 6)], 4), !e.textInside && e.showText ? (N(), l("span", Rw, [L(n.$slots, "default", {}, () => [p(V(U(f)), 1)], !0)])) : c("", !0)], 64)) : (N(), l("div", {
20875
21253
  key: 1,
20876
21254
  class: "fou-progress__circle",
20877
21255
  style: E({
@@ -20885,7 +21263,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20885
21263
  r: U(h),
20886
21264
  fill: "none",
20887
21265
  "stroke-width": e.strokeWidth
20888
- }, null, 8, Sw), u("circle", {
21266
+ }, null, 8, Bw), u("circle", {
20889
21267
  class: "fou-progress__path",
20890
21268
  cx: U(m),
20891
21269
  cy: U(m),
@@ -20897,13 +21275,13 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20897
21275
  "stroke-dashoffset": U(v),
20898
21276
  "stroke-linecap": e.type === "dashboard" ? "round" : "butt",
20899
21277
  transform: U(y)
20900
- }, null, 8, Cw)], 8, xw)), e.showText ? (N(), l("div", ww, [L(n.$slots, "default", {}, () => [p(V(U(f)), 1)], !0)])) : c("", !0)], 4))], 10, vw));
21278
+ }, null, 8, Vw)], 8, zw)), e.showText ? (N(), l("div", Hw, [L(n.$slots, "default", {}, () => [p(V(U(f)), 1)], !0)])) : c("", !0)], 4))], 10, Iw));
20901
21279
  }
20902
- }), Ew = /* @__PURE__ */ X({ default: () => Dw }), Dw = /*#__PURE__*/ Z(Tw, [["__scopeId", "data-v-146433c6"]]), Ow = /* @__PURE__ */ Te(((e, t) => {
21280
+ }), Ww = /* @__PURE__ */ X({ default: () => Gw }), Gw = /*#__PURE__*/ Z(Uw, [["__scopeId", "data-v-146433c6"]]), Kw = /* @__PURE__ */ Te(((e, t) => {
20903
21281
  t.exports = function() {
20904
21282
  return typeof Promise == "function" && Promise.prototype && Promise.prototype.then;
20905
21283
  };
20906
- })), kw = /* @__PURE__ */ Te(((e) => {
21284
+ })), qw = /* @__PURE__ */ Te(((e) => {
20907
21285
  var t, n = [
20908
21286
  0,
20909
21287
  26,
@@ -20965,7 +21343,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20965
21343
  }, e.toSJIS = function(e) {
20966
21344
  return t(e);
20967
21345
  };
20968
- })), Aw = /* @__PURE__ */ Te(((e) => {
21346
+ })), Jw = /* @__PURE__ */ Te(((e) => {
20969
21347
  e.L = { bit: 1 }, e.M = { bit: 0 }, e.Q = { bit: 3 }, e.H = { bit: 2 };
20970
21348
  function t(t) {
20971
21349
  if (typeof t != "string") throw Error("Param is not a string");
@@ -20991,7 +21369,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
20991
21369
  return r;
20992
21370
  }
20993
21371
  };
20994
- })), jw = /* @__PURE__ */ Te(((e, t) => {
21372
+ })), Yw = /* @__PURE__ */ Te(((e, t) => {
20995
21373
  function n() {
20996
21374
  this.buffer = [], this.length = 0;
20997
21375
  }
@@ -21011,7 +21389,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21011
21389
  this.buffer.length <= t && this.buffer.push(0), e && (this.buffer[t] |= 128 >>> this.length % 8), this.length++;
21012
21390
  }
21013
21391
  }, t.exports = n;
21014
- })), Mw = /* @__PURE__ */ Te(((e, t) => {
21392
+ })), Xw = /* @__PURE__ */ Te(((e, t) => {
21015
21393
  function n(e) {
21016
21394
  if (!e || e < 1) throw Error("BitMatrix size must be defined and greater than 0");
21017
21395
  this.size = e, this.data = new Uint8Array(e * e), this.reservedBit = new Uint8Array(e * e);
@@ -21026,8 +21404,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21026
21404
  }, n.prototype.isReserved = function(e, t) {
21027
21405
  return this.reservedBit[e * this.size + t];
21028
21406
  }, t.exports = n;
21029
- })), Nw = /* @__PURE__ */ Te(((e) => {
21030
- var t = kw().getSymbolSize;
21407
+ })), Zw = /* @__PURE__ */ Te(((e) => {
21408
+ var t = qw().getSymbolSize;
21031
21409
  e.getRowColCoords = function(e) {
21032
21410
  if (e === 1) return [];
21033
21411
  let n = Math.floor(e / 7) + 2, r = t(e), i = r === 145 ? 26 : Math.ceil((r - 13) / (2 * n - 2)) * 2, a = [r - 7];
@@ -21038,8 +21416,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21038
21416
  for (let e = 0; e < i; e++) for (let t = 0; t < i; t++) e === 0 && t === 0 || e === 0 && t === i - 1 || e === i - 1 && t === 0 || n.push([r[e], r[t]]);
21039
21417
  return n;
21040
21418
  };
21041
- })), Pw = /* @__PURE__ */ Te(((e) => {
21042
- var t = kw().getSymbolSize, n = 7;
21419
+ })), Qw = /* @__PURE__ */ Te(((e) => {
21420
+ var t = qw().getSymbolSize, n = 7;
21043
21421
  e.getPositions = function(e) {
21044
21422
  let r = t(e);
21045
21423
  return [
@@ -21048,7 +21426,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21048
21426
  [0, r - n]
21049
21427
  ];
21050
21428
  };
21051
- })), Fw = /* @__PURE__ */ Te(((e) => {
21429
+ })), $w = /* @__PURE__ */ Te(((e) => {
21052
21430
  e.Patterns = {
21053
21431
  PATTERN000: 0,
21054
21432
  PATTERN001: 1,
@@ -21124,8 +21502,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21124
21502
  }
21125
21503
  return i;
21126
21504
  };
21127
- })), Iw = /* @__PURE__ */ Te(((e) => {
21128
- var t = Aw(), n = [
21505
+ })), eT = /* @__PURE__ */ Te(((e) => {
21506
+ var t = Jw(), n = [
21129
21507
  1,
21130
21508
  1,
21131
21509
  1,
@@ -21465,7 +21843,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21465
21843
  default: return;
21466
21844
  }
21467
21845
  };
21468
- })), Lw = /* @__PURE__ */ Te(((e) => {
21846
+ })), tT = /* @__PURE__ */ Te(((e) => {
21469
21847
  var t = /* @__PURE__ */ new Uint8Array(512), n = /* @__PURE__ */ new Uint8Array(256);
21470
21848
  (function() {
21471
21849
  let e = 1;
@@ -21479,8 +21857,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21479
21857
  }, e.mul = function(e, r) {
21480
21858
  return e === 0 || r === 0 ? 0 : t[n[e] + n[r]];
21481
21859
  };
21482
- })), Rw = /* @__PURE__ */ Te(((e) => {
21483
- var t = Lw();
21860
+ })), nT = /* @__PURE__ */ Te(((e) => {
21861
+ var t = tT();
21484
21862
  e.mul = function(e, n) {
21485
21863
  let r = new Uint8Array(e.length + n.length - 1);
21486
21864
  for (let i = 0; i < e.length; i++) for (let a = 0; a < n.length; a++) r[i + a] ^= t.mul(e[i], n[a]);
@@ -21500,8 +21878,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21500
21878
  for (let i = 0; i < n; i++) r = e.mul(r, new Uint8Array([1, t.exp(i)]));
21501
21879
  return r;
21502
21880
  };
21503
- })), zw = /* @__PURE__ */ Te(((e, t) => {
21504
- var n = Rw();
21881
+ })), rT = /* @__PURE__ */ Te(((e, t) => {
21882
+ var n = nT();
21505
21883
  function r(e) {
21506
21884
  this.genPoly = void 0, this.degree = e, this.degree && this.initialize(this.degree);
21507
21885
  }
@@ -21518,11 +21896,11 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21518
21896
  }
21519
21897
  return r;
21520
21898
  }, t.exports = r;
21521
- })), Bw = /* @__PURE__ */ Te(((e) => {
21899
+ })), iT = /* @__PURE__ */ Te(((e) => {
21522
21900
  e.isValid = function(e) {
21523
21901
  return !isNaN(e) && e >= 1 && e <= 40;
21524
21902
  };
21525
- })), Vw = /* @__PURE__ */ Te(((e) => {
21903
+ })), aT = /* @__PURE__ */ Te(((e) => {
21526
21904
  var t = "[0-9]+", n = "[A-Z $%*+\\-./:]+", r = "(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";
21527
21905
  r = r.replace(/u/g, "\\u");
21528
21906
  var i = "(?:(?![A-Z0-9 $%*+\\-./:]|" + r + ")(?:.|[\r\n]))+";
@@ -21535,8 +21913,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21535
21913
  }, e.testAlphanumeric = function(e) {
21536
21914
  return s.test(e);
21537
21915
  };
21538
- })), Hw = /* @__PURE__ */ Te(((e) => {
21539
- var t = Bw(), n = Vw();
21916
+ })), oT = /* @__PURE__ */ Te(((e) => {
21917
+ var t = iT(), n = aT();
21540
21918
  e.NUMERIC = {
21541
21919
  id: "Numeric",
21542
21920
  bit: 1,
@@ -21599,8 +21977,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21599
21977
  return n;
21600
21978
  }
21601
21979
  };
21602
- })), Uw = /* @__PURE__ */ Te(((e) => {
21603
- var t = kw(), n = Iw(), r = Aw(), i = Hw(), a = Bw(), o = 7973, s = t.getBCHDigit(o);
21980
+ })), sT = /* @__PURE__ */ Te(((e) => {
21981
+ var t = qw(), n = eT(), r = Jw(), i = oT(), a = iT(), o = 7973, s = t.getBCHDigit(o);
21604
21982
  function c(t, n, r) {
21605
21983
  for (let i = 1; i <= 40; i++) if (n <= e.getCapacity(i, r, t)) return i;
21606
21984
  }
@@ -21646,15 +22024,15 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21646
22024
  for (; t.getBCHDigit(n) - s >= 0;) n ^= o << t.getBCHDigit(n) - s;
21647
22025
  return e << 12 | n;
21648
22026
  };
21649
- })), Ww = /* @__PURE__ */ Te(((e) => {
21650
- var t = kw(), n = 1335, r = 21522, i = t.getBCHDigit(n);
22027
+ })), cT = /* @__PURE__ */ Te(((e) => {
22028
+ var t = qw(), n = 1335, r = 21522, i = t.getBCHDigit(n);
21651
22029
  e.getEncodedBits = function(e, a) {
21652
22030
  let o = e.bit << 3 | a, s = o << 10;
21653
22031
  for (; t.getBCHDigit(s) - i >= 0;) s ^= n << t.getBCHDigit(s) - i;
21654
22032
  return (o << 10 | s) ^ r;
21655
22033
  };
21656
- })), Gw = /* @__PURE__ */ Te(((e, t) => {
21657
- var n = Hw();
22034
+ })), lT = /* @__PURE__ */ Te(((e, t) => {
22035
+ var n = oT();
21658
22036
  function r(e) {
21659
22037
  this.mode = n.NUMERIC, this.data = e.toString();
21660
22038
  }
@@ -21670,8 +22048,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21670
22048
  let i = this.data.length - t;
21671
22049
  i > 0 && (n = this.data.substr(t), r = parseInt(n, 10), e.put(r, i * 3 + 1));
21672
22050
  }, t.exports = r;
21673
- })), Kw = /* @__PURE__ */ Te(((e, t) => {
21674
- var n = Hw(), r = /* @__PURE__ */ "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:".split("");
22051
+ })), uT = /* @__PURE__ */ Te(((e, t) => {
22052
+ var n = oT(), r = /* @__PURE__ */ "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:".split("");
21675
22053
  function i(e) {
21676
22054
  this.mode = n.ALPHANUMERIC, this.data = e;
21677
22055
  }
@@ -21689,8 +22067,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21689
22067
  }
21690
22068
  this.data.length % 2 && e.put(r.indexOf(this.data[t]), 6);
21691
22069
  }, t.exports = i;
21692
- })), qw = /* @__PURE__ */ Te(((e, t) => {
21693
- var n = Hw();
22070
+ })), dT = /* @__PURE__ */ Te(((e, t) => {
22071
+ var n = oT();
21694
22072
  function r(e) {
21695
22073
  this.mode = n.BYTE, this.data = typeof e == "string" ? new TextEncoder().encode(e) : new Uint8Array(e);
21696
22074
  }
@@ -21703,8 +22081,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21703
22081
  }, r.prototype.write = function(e) {
21704
22082
  for (let t = 0, n = this.data.length; t < n; t++) e.put(this.data[t], 8);
21705
22083
  }, t.exports = r;
21706
- })), Jw = /* @__PURE__ */ Te(((e, t) => {
21707
- var n = Hw(), r = kw();
22084
+ })), fT = /* @__PURE__ */ Te(((e, t) => {
22085
+ var n = oT(), r = qw();
21708
22086
  function i(e) {
21709
22087
  this.mode = n.KANJI, this.data = e;
21710
22088
  }
@@ -21724,7 +22102,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21724
22102
  n = (n >>> 8 & 255) * 192 + (n & 255), e.put(n, 13);
21725
22103
  }
21726
22104
  }, t.exports = i;
21727
- })), Yw = /* @__PURE__ */ Te(((e, t) => {
22105
+ })), pT = /* @__PURE__ */ Te(((e, t) => {
21728
22106
  var n = {
21729
22107
  single_source_shortest_paths: function(e, t, r) {
21730
22108
  var i = {}, a = {};
@@ -21777,8 +22155,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21777
22155
  }
21778
22156
  };
21779
22157
  t !== void 0 && (t.exports = n);
21780
- })), Xw = /* @__PURE__ */ Te(((e) => {
21781
- var t = Hw(), n = Gw(), r = Kw(), i = qw(), a = Jw(), o = Vw(), s = kw(), c = Yw();
22158
+ })), mT = /* @__PURE__ */ Te(((e) => {
22159
+ var t = oT(), n = lT(), r = uT(), i = dT(), a = fT(), o = aT(), s = qw(), c = pT();
21782
22160
  function l(e) {
21783
22161
  return unescape(encodeURIComponent(e)).length;
21784
22162
  }
@@ -21905,8 +22283,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
21905
22283
  }, e.rawSplit = function(t) {
21906
22284
  return e.fromArray(d(t, s.isKanjiModeEnabled()));
21907
22285
  };
21908
- })), Zw = /* @__PURE__ */ Te(((e) => {
21909
- var t = kw(), n = Aw(), r = jw(), i = Mw(), a = Nw(), o = Pw(), s = Fw(), c = Iw(), l = zw(), u = Uw(), d = Ww(), f = Hw(), p = Xw();
22286
+ })), hT = /* @__PURE__ */ Te(((e) => {
22287
+ var t = qw(), n = Jw(), r = Yw(), i = Xw(), a = Zw(), o = Qw(), s = $w(), c = eT(), l = rT(), u = sT(), d = cT(), f = oT(), p = mT();
21910
22288
  function m(e, t) {
21911
22289
  let n = e.size, r = o.getPositions(t);
21912
22290
  for (let t = 0; t < r.length; t++) {
@@ -22001,7 +22379,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22001
22379
  let i = n.M, a, o;
22002
22380
  return r !== void 0 && (i = n.from(r.errorCorrectionLevel, n.M), a = u.from(r.version), o = s.from(r.maskPattern), r.toSJISFunc && t.setToSJISFunction(r.toSJISFunc)), S(e, a, i, o);
22003
22381
  };
22004
- })), Qw = /* @__PURE__ */ Te(((e) => {
22382
+ })), gT = /* @__PURE__ */ Te(((e) => {
22005
22383
  function t(e) {
22006
22384
  if (typeof e == "number" && (e = e.toString()), typeof e != "string") throw Error("Color should be defined as hex string");
22007
22385
  let t = e.slice().replace("#", "").split("");
@@ -22048,8 +22426,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22048
22426
  t[u++] = d.r, t[u++] = d.g, t[u++] = d.b, t[u] = d.a;
22049
22427
  }
22050
22428
  };
22051
- })), $w = /* @__PURE__ */ Te(((e) => {
22052
- var t = Qw();
22429
+ })), _T = /* @__PURE__ */ Te(((e) => {
22430
+ var t = gT();
22053
22431
  function n(e, t, n) {
22054
22432
  e.clearRect(0, 0, t.width, t.height), t.style ||= {}, t.height = n, t.width = n, t.style.height = n + "px", t.style.width = n + "px";
22055
22433
  }
@@ -22071,8 +22449,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22071
22449
  let a = e.render(t, n, i), o = i.type || "image/png", s = i.rendererOpts || {};
22072
22450
  return a.toDataURL(o, s.quality);
22073
22451
  };
22074
- })), eT = /* @__PURE__ */ Te(((e) => {
22075
- var t = Qw();
22452
+ })), vT = /* @__PURE__ */ Te(((e) => {
22453
+ var t = gT();
22076
22454
  function n(e, t) {
22077
22455
  let n = e.a / 255, r = t + "=\"" + e.hex + "\"";
22078
22456
  return n < 1 ? r + " " + t + "-opacity=\"" + n.toFixed(2).slice(1) + "\"" : r;
@@ -22093,8 +22471,8 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22093
22471
  let o = t.getOptions(r), s = e.modules.size, c = e.modules.data, l = s + o.margin * 2, u = o.color.light.a ? "<path " + n(o.color.light, "fill") + " d=\"M0 0h" + l + "v" + l + "H0z\"/>" : "", d = "<path " + n(o.color.dark, "stroke") + " d=\"" + i(c, s, o.margin) + "\"/>", f = "viewBox=\"0 0 " + l + " " + l + "\"", p = "<svg xmlns=\"http://www.w3.org/2000/svg\" " + (o.width ? "width=\"" + o.width + "\" height=\"" + o.width + "\" " : "") + f + " shape-rendering=\"crispEdges\">" + u + d + "</svg>\n";
22094
22472
  return typeof a == "function" && a(null, p), p;
22095
22473
  };
22096
- })), tT = /* @__PURE__ */ De((/* @__PURE__ */ Te(((e) => {
22097
- var t = Ow(), n = Zw(), r = $w(), i = eT();
22474
+ })), yT = /* @__PURE__ */ De((/* @__PURE__ */ Te(((e) => {
22475
+ var t = Kw(), n = hT(), r = _T(), i = vT();
22098
22476
  function a(e, r, i, a, o) {
22099
22477
  let s = [].slice.call(arguments, 1), c = s.length, l = typeof s[c - 1] == "function";
22100
22478
  if (!l && !t()) throw Error("Callback required as last argument");
@@ -22121,10 +22499,10 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22121
22499
  e.create = n.create, e.toCanvas = a.bind(null, r.render), e.toDataURL = a.bind(null, r.renderToDataURL), e.toString = a.bind(null, function(e, t, n) {
22122
22500
  return i.render(e, n);
22123
22501
  });
22124
- })))(), 1), nT = {
22502
+ })))(), 1), bT = {
22125
22503
  key: 0,
22126
22504
  class: "fou-qrcode__error"
22127
- }, rT = /*@__PURE__*/ h({
22505
+ }, xT = /*@__PURE__*/ h({
22128
22506
  name: "FouQrcode",
22129
22507
  __name: "index",
22130
22508
  props: {
@@ -22156,7 +22534,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22156
22534
  }
22157
22535
  try {
22158
22536
  let n = typeof window < "u" ? Math.max(1, Math.round(window.devicePixelRatio || 1)) : 1;
22159
- await tT.toCanvas(e, a, {
22537
+ await yT.toCanvas(e, a, {
22160
22538
  width: o * n,
22161
22539
  margin: Math.max(0, t.margin),
22162
22540
  errorCorrectionLevel: t.level,
@@ -22186,15 +22564,15 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22186
22564
  ref_key: "canvasRef",
22187
22565
  ref: n,
22188
22566
  class: "fou-qrcode__canvas"
22189
- }, null, 512), r.value ? (N(), l("div", nT, "生成失败")) : c("", !0)], 4));
22567
+ }, null, 512), r.value ? (N(), l("div", bT, "生成失败")) : c("", !0)], 4));
22190
22568
  }
22191
- }), iT = /* @__PURE__ */ X({ default: () => aT }), aT = /*#__PURE__*/ Z(rT, [["__scopeId", "data-v-8498d1a1"]]), oT = { class: "fou-query-form-col fou-query-form-col--full" }, sT = { class: "bottom-panel" }, cT = /*@__PURE__*/ h({
22569
+ }), ST = /* @__PURE__ */ X({ default: () => CT }), CT = /*#__PURE__*/ Z(xT, [["__scopeId", "data-v-8498d1a1"]]), wT = { class: "fou-query-form-col fou-query-form-col--full" }, TT = { class: "bottom-panel" }, ET = /*@__PURE__*/ h({
22192
22570
  name: "FouQueryFormBottomPanel",
22193
22571
  __name: "FouQueryFormBottomPanel",
22194
22572
  setup(e) {
22195
- return (e, t) => (N(), l("div", oT, [u("div", sT, [L(e.$slots, "default")])]));
22573
+ return (e, t) => (N(), l("div", wT, [u("div", TT, [L(e.$slots, "default")])]));
22196
22574
  }
22197
- }), lT = /* @__PURE__ */ X({ default: () => uT }), uT = cT, dT = { class: "left-panel" }, fT = /*@__PURE__*/ h({
22575
+ }), DT = /* @__PURE__ */ X({ default: () => OT }), OT = ET, kT = { class: "left-panel" }, AT = /*@__PURE__*/ h({
22198
22576
  name: "FouQueryFormLeftPanel",
22199
22577
  __name: "FouQueryFormLeftPanel",
22200
22578
  props: { span: {
@@ -22206,9 +22584,9 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22206
22584
  return (e, t) => (N(), l("div", {
22207
22585
  class: "fou-query-form-col",
22208
22586
  style: E(U(n))
22209
- }, [u("div", dT, [L(e.$slots, "default", {}, void 0, !0)])], 4));
22587
+ }, [u("div", kT, [L(e.$slots, "default", {}, void 0, !0)])], 4));
22210
22588
  }
22211
- }), pT = /* @__PURE__ */ X({ default: () => mT }), mT = /*#__PURE__*/ Z(fT, [["__scopeId", "data-v-4372423e"]]), hT = { class: "right-panel" }, gT = /*@__PURE__*/ h({
22589
+ }), jT = /* @__PURE__ */ X({ default: () => MT }), MT = /*#__PURE__*/ Z(AT, [["__scopeId", "data-v-4372423e"]]), NT = { class: "right-panel" }, PT = /*@__PURE__*/ h({
22212
22590
  name: "FouQueryFormRightPanel",
22213
22591
  __name: "FouQueryFormRightPanel",
22214
22592
  props: { span: {
@@ -22220,28 +22598,28 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22220
22598
  return (e, t) => (N(), l("div", {
22221
22599
  class: "fou-query-form-col",
22222
22600
  style: E(U(n))
22223
- }, [u("div", hT, [L(e.$slots, "default", {}, void 0, !0)])], 4));
22601
+ }, [u("div", NT, [L(e.$slots, "default", {}, void 0, !0)])], 4));
22224
22602
  }
22225
- }), _T = /* @__PURE__ */ X({ default: () => vT }), vT = /*#__PURE__*/ Z(gT, [["__scopeId", "data-v-f61282c8"]]), yT = { class: "fou-query-form-col fou-query-form-col--full" }, bT = { class: "top-panel" }, xT = /*@__PURE__*/ h({
22603
+ }), FT = /* @__PURE__ */ X({ default: () => IT }), IT = /*#__PURE__*/ Z(PT, [["__scopeId", "data-v-f61282c8"]]), LT = { class: "fou-query-form-col fou-query-form-col--full" }, RT = { class: "top-panel" }, zT = /*@__PURE__*/ h({
22226
22604
  name: "FouQueryFormTopPanel",
22227
22605
  __name: "FouQueryFormTopPanel",
22228
22606
  setup(e) {
22229
- return (e, t) => (N(), l("div", yT, [u("div", bT, [L(e.$slots, "default")])]));
22607
+ return (e, t) => (N(), l("div", LT, [u("div", RT, [L(e.$slots, "default")])]));
22230
22608
  }
22231
- }), ST = /* @__PURE__ */ X({ default: () => CT }), CT = xT, wT = { class: "fou-query-form" }, TT = /*@__PURE__*/ h({
22609
+ }), BT = /* @__PURE__ */ X({ default: () => VT }), VT = zT, HT = { class: "fou-query-form" }, UT = /*@__PURE__*/ h({
22232
22610
  name: "FouQueryForm",
22233
22611
  __name: "index",
22234
22612
  setup(e) {
22235
- return (e, t) => (N(), l("div", wT, [L(e.$slots, "default", {}, void 0, !0)]));
22613
+ return (e, t) => (N(), l("div", HT, [L(e.$slots, "default", {}, void 0, !0)]));
22236
22614
  }
22237
- }), ET = /* @__PURE__ */ X({ default: () => DT }), DT = /*#__PURE__*/ Z(TT, [["__scopeId", "data-v-f4dbaab8"]]), OT = ["aria-valuenow", "aria-valuemax"], kT = [
22615
+ }), WT = /* @__PURE__ */ X({ default: () => GT }), GT = /*#__PURE__*/ Z(UT, [["__scopeId", "data-v-f4dbaab8"]]), KT = ["aria-valuenow", "aria-valuemax"], qT = [
22238
22616
  "disabled",
22239
22617
  "onMousemove",
22240
22618
  "onClick"
22241
- ], AT = { class: "fou-rate__icon fou-rate__icon--void" }, jT = {
22619
+ ], JT = { class: "fou-rate__icon fou-rate__icon--void" }, YT = {
22242
22620
  key: 0,
22243
22621
  class: "fou-rate__text"
22244
- }, MT = /*@__PURE__*/ h({
22622
+ }, XT = /*@__PURE__*/ h({
22245
22623
  name: "FouRate",
22246
22624
  __name: "index",
22247
22625
  props: {
@@ -22333,13 +22711,13 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22333
22711
  onMousemove: (e) => _(e, t),
22334
22712
  onMouseleave: r[0] ||= (e) => o.value = -1,
22335
22713
  onClick: (e) => v(e, t)
22336
- }, [u("span", AT, [m(i, { icon: e.voidIcon }, null, 8, ["icon"])]), u("span", {
22714
+ }, [u("span", JT, [m(i, { icon: e.voidIcon }, null, 8, ["icon"])]), u("span", {
22337
22715
  class: "fou-rate__icon fou-rate__icon--full",
22338
22716
  style: E(h(t))
22339
- }, [m(i, { icon: e.icon }, null, 8, ["icon"])], 4)], 42, kT))), 128)), e.showScore || e.showText ? (N(), l("span", jT, V(U(p)), 1)) : c("", !0)], 10, OT);
22717
+ }, [m(i, { icon: e.icon }, null, 8, ["icon"])], 4)], 42, qT))), 128)), e.showScore || e.showText ? (N(), l("span", YT, V(U(p)), 1)) : c("", !0)], 10, KT);
22340
22718
  };
22341
22719
  }
22342
- }), NT = /* @__PURE__ */ X({ default: () => PT }), PT = /*#__PURE__*/ Z(MT, [["__scopeId", "data-v-c50f9ce4"]]), FT = /*@__PURE__*/ h({
22720
+ }), ZT = /* @__PURE__ */ X({ default: () => QT }), QT = /*#__PURE__*/ Z(XT, [["__scopeId", "data-v-c50f9ce4"]]), $T = /*@__PURE__*/ h({
22343
22721
  name: "FouRefresh",
22344
22722
  __name: "index",
22345
22723
  setup(e) {
@@ -22363,7 +22741,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22363
22741
  }, null, 8, ["class"]);
22364
22742
  };
22365
22743
  }
22366
- }), IT = /* @__PURE__ */ X({ default: () => LT }), LT = FT, RT = /*@__PURE__*/ h({
22744
+ }), eE = /* @__PURE__ */ X({ default: () => tE }), tE = $T, nE = /*@__PURE__*/ h({
22367
22745
  name: "FouRow",
22368
22746
  __name: "index",
22369
22747
  props: {
@@ -22389,11 +22767,11 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22389
22767
  style: E(U(r))
22390
22768
  }, [L(e.$slots, "default", {}, void 0, !0)], 4));
22391
22769
  }
22392
- }), zT = /* @__PURE__ */ X({ default: () => BT }), BT = /*#__PURE__*/ Z(RT, [["__scopeId", "data-v-539ccc48"]]), VT = [
22770
+ }), rE = /* @__PURE__ */ X({ default: () => iE }), iE = /*#__PURE__*/ Z(nE, [["__scopeId", "data-v-539ccc48"]]), aE = [
22393
22771
  "value",
22394
22772
  "placeholder",
22395
22773
  "disabled"
22396
- ], HT = /*@__PURE__*/ h({
22774
+ ], oE = /*@__PURE__*/ h({
22397
22775
  name: "FouSearchBar",
22398
22776
  __name: "index",
22399
22777
  props: {
@@ -22436,7 +22814,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22436
22814
  disabled: e.disabled,
22437
22815
  onInput: i,
22438
22816
  onKeydown: K(a, ["enter"])
22439
- }, null, 40, VT),
22817
+ }, null, 40, aE),
22440
22818
  e.modelValue ? (N(), l("button", {
22441
22819
  key: 0,
22442
22820
  type: "button",
@@ -22453,19 +22831,19 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22453
22831
  ], 2);
22454
22832
  };
22455
22833
  }
22456
- }), UT = /* @__PURE__ */ X({ default: () => WT }), WT = /*#__PURE__*/ Z(HT, [["__scopeId", "data-v-2bf74fe5"]]), GT = ["disabled", "title"], KT = {
22834
+ }), sE = /* @__PURE__ */ X({ default: () => cE }), cE = /*#__PURE__*/ Z(oE, [["__scopeId", "data-v-2bf74fe5"]]), lE = ["disabled", "title"], uE = {
22457
22835
  key: 0,
22458
22836
  class: "fou-search-input__search-text"
22459
- }, qT = [
22837
+ }, dE = [
22460
22838
  "value",
22461
22839
  "placeholder",
22462
22840
  "disabled",
22463
22841
  "readonly",
22464
22842
  "onKeydown"
22465
- ], JT = ["title"], YT = ["disabled", "title"], XT = {
22843
+ ], fE = ["title"], pE = ["disabled", "title"], mE = {
22466
22844
  key: 0,
22467
22845
  class: "fou-search-input__search-text"
22468
- }, ZT = /*@__PURE__*/ h({
22846
+ }, hE = /*@__PURE__*/ h({
22469
22847
  name: "FouSearchInput",
22470
22848
  __name: "index",
22471
22849
  props: {
@@ -22544,7 +22922,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22544
22922
  title: e.searchLabel,
22545
22923
  onMousedown: n[0] ||= q(() => {}, ["prevent"]),
22546
22924
  onClick: h
22547
- }, [m(r, { icon: e.searchIcon }, null, 8, ["icon"]), e.showSearchText ? (N(), l("span", KT, V(e.searchLabel), 1)) : c("", !0)], 40, GT)) : c("", !0),
22925
+ }, [m(r, { icon: e.searchIcon }, null, 8, ["icon"]), e.showSearchText ? (N(), l("span", uE, V(e.searchLabel), 1)) : c("", !0)], 40, lE)) : c("", !0),
22548
22926
  u("input", {
22549
22927
  ref_key: "inputRef",
22550
22928
  ref: o,
@@ -22559,7 +22937,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22559
22937
  onFocus: n[1] ||= (e) => s.value = !0,
22560
22938
  onBlur: n[2] ||= (e) => s.value = !1,
22561
22939
  onKeydown: K(q(h, ["prevent"]), ["enter"])
22562
- }, null, 40, qT),
22940
+ }, null, 40, dE),
22563
22941
  e.clearable && d.value && !e.disabled ? (N(), l("button", {
22564
22942
  key: 1,
22565
22943
  type: "button",
@@ -22569,7 +22947,7 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22569
22947
  "aria-label": "clear",
22570
22948
  onMousedown: n[3] ||= q(() => {}, ["prevent"]),
22571
22949
  onClick: g
22572
- }, [m(r, { icon: e.clearIcon }, null, 8, ["icon"])], 40, JT)) : c("", !0),
22950
+ }, [m(r, { icon: e.clearIcon }, null, 8, ["icon"])], 40, fE)) : c("", !0),
22573
22951
  e.searchPosition === "right" ? (N(), l("button", {
22574
22952
  key: 2,
22575
22953
  type: "button",
@@ -22578,11 +22956,11 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22578
22956
  title: e.searchLabel,
22579
22957
  onMousedown: n[4] ||= q(() => {}, ["prevent"]),
22580
22958
  onClick: h
22581
- }, [m(r, { icon: e.searchIcon }, null, 8, ["icon"]), e.showSearchText ? (N(), l("span", XT, V(e.searchLabel), 1)) : c("", !0)], 40, YT)) : c("", !0)
22959
+ }, [m(r, { icon: e.searchIcon }, null, 8, ["icon"]), e.showSearchText ? (N(), l("span", mE, V(e.searchLabel), 1)) : c("", !0)], 40, pE)) : c("", !0)
22582
22960
  ], 6);
22583
22961
  };
22584
22962
  }
22585
- }), QT = /* @__PURE__ */ X({ default: () => $T }), $T = /*#__PURE__*/ Z(ZT, [["__scopeId", "data-v-d0a8e934"]]), eE = ["disabled", "onClick"], tE = /*@__PURE__*/ h({
22963
+ }), gE = /* @__PURE__ */ X({ default: () => _E }), _E = /*#__PURE__*/ Z(hE, [["__scopeId", "data-v-d0a8e934"]]), vE = ["disabled", "onClick"], yE = /*@__PURE__*/ h({
22586
22964
  name: "FouSegmented",
22587
22965
  __name: "index",
22588
22966
  props: {
@@ -22618,10 +22996,10 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22618
22996
  key: 0,
22619
22997
  class: "fou-segmented__icon",
22620
22998
  icon: t.icon
22621
- }, null, 8, ["icon"])) : c("", !0), u("span", null, V(t.label), 1)], 10, eE))), 128))], 2);
22999
+ }, null, 8, ["icon"])) : c("", !0), u("span", null, V(t.label), 1)], 10, vE))), 128))], 2);
22622
23000
  };
22623
23001
  }
22624
- }), nE = /* @__PURE__ */ X({ default: () => rE }), rE = /*#__PURE__*/ Z(tE, [["__scopeId", "data-v-1f425b68"]]), iE = /*@__PURE__*/ h({
23002
+ }), bE = /* @__PURE__ */ X({ default: () => xE }), xE = /*#__PURE__*/ Z(yE, [["__scopeId", "data-v-1f425b68"]]), SE = /*@__PURE__*/ h({
22625
23003
  name: "FouOption",
22626
23004
  __name: "FouOption",
22627
23005
  props: {
@@ -22668,10 +23046,10 @@ var US = { class: "fou-route-menu-item__inner" }, WS = { class: "fou-route-menu-
22668
23046
  onClick: h
22669
23047
  }, [L(t.$slots, "default", {}, () => [p(V(e.label), 1)], !0)], 34));
22670
23048
  }
22671
- }), aE = /* @__PURE__ */ X({ default: () => oE }), oE = /*#__PURE__*/ Z(iE, [["__scopeId", "data-v-87eeaab7"]]);
23049
+ }), CE = /* @__PURE__ */ X({ default: () => wE }), wE = /*#__PURE__*/ Z(SE, [["__scopeId", "data-v-87eeaab7"]]);
22672
23050
  //#endregion
22673
23051
  //#region components/useVirtualList.ts
22674
- function sE(e) {
23052
+ function TE(e) {
22675
23053
  let t = F(0), n = F(0), r = a(() => Math.max(1, e.itemHeight ?? 34)), i = a(() => e.overscan ?? 6), o = a(() => {
22676
23054
  let a = e.total(), o = r.value, s = Math.max(n.value || 0, o * 8), c = Math.max(0, Math.floor(t.value / o) - i.value), l = Math.ceil(s / o) + i.value * 2, u = Math.min(a, c + Math.max(l, 1));
22677
23055
  return {
@@ -22706,17 +23084,17 @@ function sE(e) {
22706
23084
  }
22707
23085
  //#endregion
22708
23086
  //#region components/FouSelectV2/index.vue?vue&type=script&setup=true&lang.ts
22709
- var cE = ["aria-expanded", "aria-disabled"], lE = {
23087
+ var EE = ["aria-expanded", "aria-disabled"], DE = {
22710
23088
  key: 0,
22711
23089
  class: "fou-select-v2__tags"
22712
- }, uE = ["onClick"], dE = [
23090
+ }, OE = ["onClick"], kE = [
22713
23091
  "value",
22714
23092
  "placeholder",
22715
23093
  "disabled"
22716
- ], fE = { class: "fou-select-v2__suffix" }, pE = ["onClick"], mE = {
23094
+ ], AE = { class: "fou-select-v2__suffix" }, jE = ["onClick"], ME = {
22717
23095
  key: 0,
22718
23096
  class: "fou-select-v2__empty"
22719
- }, hE = /*@__PURE__*/ h({
23097
+ }, NE = /*@__PURE__*/ h({
22720
23098
  name: "FouSelectV2",
22721
23099
  __name: "index",
22722
23100
  props: {
@@ -22761,7 +23139,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
22761
23139
  let o = e, d = r, f = pa(() => o.disabled), { triggerBlur: h, triggerChange: g } = ma(), _ = F(null), v = F(null), y = F(null), b = F(!1), x = F(""), S = F({}), T = a(() => o.multiple ? Array.isArray(o.modelValue) ? o.modelValue : [] : o.modelValue == null || o.modelValue === "" ? [] : [o.modelValue]), D = a(() => T.value.length > 0), O = (e) => T.value.includes(e), A = (e) => o.options.find((t) => t.value === e)?.label ?? String(e), j = a(() => D.value ? o.multiple ? T.value.map(A).join("、") : A(T.value[0]) : ""), M = a(() => {
22762
23140
  let e = x.value.trim().toLowerCase();
22763
23141
  return e ? o.options.filter((t) => t.label.toLowerCase().includes(e) || String(t.value).includes(e)) : o.options;
22764
- }), { range: P, onScroll: ee } = sE({
23142
+ }), { range: P, onScroll: ee } = TE({
22765
23143
  scrollRef: y,
22766
23144
  total: () => M.value.length,
22767
23145
  itemHeight: o.itemHeight
@@ -22828,7 +23206,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
22828
23206
  tabindex: "0",
22829
23207
  onClick: ie,
22830
23208
  onKeydown: oe
22831
- }, [e.multiple && U(T).length ? (N(), l("div", lE, [(N(!0), l(t, null, I(U(T), (e) => (N(), l("span", {
23209
+ }, [e.multiple && U(T).length ? (N(), l("div", DE, [(N(!0), l(t, null, I(U(T), (e) => (N(), l("span", {
22832
23210
  key: String(e),
22833
23211
  class: "fou-select-v2__tag"
22834
23212
  }, [p(V(A(e)) + " ", 1), U(f) ? c("", !0) : (N(), l("button", {
@@ -22837,7 +23215,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
22837
23215
  class: "fou-select-v2__tag-close",
22838
23216
  onMousedown: a[0] ||= q(() => {}, ["prevent"]),
22839
23217
  onClick: q((t) => B(e), ["stop"])
22840
- }, " × ", 40, uE))]))), 128))])) : e.filterable ? (N(), l("input", {
23218
+ }, " × ", 40, OE))]))), 128))])) : e.filterable ? (N(), l("input", {
22841
23219
  key: 1,
22842
23220
  class: "fou-select-v2__input",
22843
23221
  value: U(b) ? U(x) : U(j),
@@ -22845,10 +23223,10 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
22845
23223
  disabled: U(f),
22846
23224
  onInput: ae,
22847
23225
  onClick: q(ne, ["stop"])
22848
- }, null, 40, dE)) : (N(), l("span", {
23226
+ }, null, 40, kE)) : (N(), l("span", {
22849
23227
  key: 2,
22850
23228
  class: w(["fou-select-v2__selected", { "is-placeholder": !U(j) }])
22851
- }, V(U(j) || e.placeholder), 3)), u("span", fE, [e.clearable && U(D) && !U(f) ? (N(), l("button", {
23229
+ }, V(U(j) || e.placeholder), 3)), u("span", AE, [e.clearable && U(D) && !U(f) ? (N(), l("button", {
22852
23230
  key: 0,
22853
23231
  type: "button",
22854
23232
  class: "fou-select-v2__clear",
@@ -22857,7 +23235,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
22857
23235
  }, " × ", 32)) : c("", !0), m(o, {
22858
23236
  class: w(["fou-select-v2__caret", { "is-open": U(b) }]),
22859
23237
  icon: "arrow-down-s-line"
22860
- }, null, 8, ["class"])])], 40, cE), (N(), s(n, { to: "body" }, [m(i, { name: "fou-select-v2-fade" }, {
23238
+ }, null, 8, ["class"])])], 40, EE), (N(), s(n, { to: "body" }, [m(i, { name: "fou-select-v2-fade" }, {
22861
23239
  default: G(() => [U(b) ? (N(), l("div", {
22862
23240
  key: 0,
22863
23241
  ref_key: "dropdownRef",
@@ -22885,15 +23263,15 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
22885
23263
  lineHeight: `${e.itemHeight}px`
22886
23264
  }),
22887
23265
  onClick: (e) => !t.disabled && z(t)
22888
- }, V(t.label), 15, pE))), 128))], 4)], 36), U(M).length ? c("", !0) : (N(), l("div", mE, "无数据"))], 4)) : c("", !0)]),
23266
+ }, V(t.label), 15, jE))), 128))], 4)], 36), U(M).length ? c("", !0) : (N(), l("div", ME, "无数据"))], 4)) : c("", !0)]),
22889
23267
  _: 1
22890
23268
  })]))], 2);
22891
23269
  };
22892
23270
  }
22893
- }), gE = /* @__PURE__ */ X({ default: () => _E }), _E = /*#__PURE__*/ Z(hE, [["__scopeId", "data-v-83072cc3"]]), vE = {
23271
+ }), PE = /* @__PURE__ */ X({ default: () => FE }), FE = /*#__PURE__*/ Z(NE, [["__scopeId", "data-v-83072cc3"]]), IE = {
22894
23272
  key: 0,
22895
23273
  class: "fou-space__spacer"
22896
- }, yE = /*@__PURE__*/ h({
23274
+ }, LE = /*@__PURE__*/ h({
22897
23275
  name: "FouSpace",
22898
23276
  __name: "index",
22899
23277
  props: {
@@ -22933,13 +23311,13 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
22933
23311
  return (e, r) => (N(), l("div", {
22934
23312
  class: w(["fou-space", U(m)]),
22935
23313
  style: E(U(g))
22936
- }, [(N(!0), l(t, null, I(U(f), (e, r) => (N(), l(t, { key: r }, [(N(), s(B(e))), n.spacer && r < U(f).length - 1 ? (N(), l("span", vE, V(n.spacer), 1)) : c("", !0)], 64))), 128))], 6));
23314
+ }, [(N(!0), l(t, null, I(U(f), (e, r) => (N(), l(t, { key: r }, [(N(), s(B(e))), n.spacer && r < U(f).length - 1 ? (N(), l("span", IE, V(n.spacer), 1)) : c("", !0)], 64))), 128))], 6));
22937
23315
  }
22938
- }), bE = /* @__PURE__ */ X({ default: () => xE }), xE = /*#__PURE__*/ Z(yE, [["__scopeId", "data-v-9fbcaf6c"]]), SE = ["viewBox"], CE = ["stop-color"], wE = ["stop-color"], TE = ["d", "fill"], EE = [
23316
+ }), RE = /* @__PURE__ */ X({ default: () => zE }), zE = /*#__PURE__*/ Z(LE, [["__scopeId", "data-v-9fbcaf6c"]]), BE = ["viewBox"], VE = ["stop-color"], HE = ["stop-color"], UE = ["d", "fill"], WE = [
22939
23317
  "d",
22940
23318
  "stroke",
22941
23319
  "stroke-width"
22942
- ], DE = /*@__PURE__*/ h({
23320
+ ], GE = /*@__PURE__*/ h({
22943
23321
  name: "FouSparkline",
22944
23322
  __name: "index",
22945
23323
  props: {
@@ -22999,16 +23377,16 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
22999
23377
  offset: "0%",
23000
23378
  "stop-color": e.color,
23001
23379
  "stop-opacity": "0.32"
23002
- }, null, 8, CE), u("stop", {
23380
+ }, null, 8, VE), u("stop", {
23003
23381
  offset: "100%",
23004
23382
  "stop-color": e.color,
23005
23383
  "stop-opacity": "0"
23006
- }, null, 8, wE)])]),
23384
+ }, null, 8, HE)])]),
23007
23385
  s.value ? (N(), l("path", {
23008
23386
  key: 0,
23009
23387
  d: s.value,
23010
23388
  fill: `url(#${n})`
23011
- }, null, 8, TE)) : c("", !0),
23389
+ }, null, 8, UE)) : c("", !0),
23012
23390
  u("path", {
23013
23391
  d: o.value,
23014
23392
  stroke: e.color,
@@ -23016,10 +23394,10 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23016
23394
  fill: "none",
23017
23395
  "stroke-linejoin": "round",
23018
23396
  "stroke-linecap": "round"
23019
- }, null, 8, EE)
23020
- ], 8, SE))], 4));
23397
+ }, null, 8, WE)
23398
+ ], 8, BE))], 4));
23021
23399
  }
23022
- }), OE = /* @__PURE__ */ X({ default: () => kE }), kE = /*#__PURE__*/ Z(DE, [["__scopeId", "data-v-857567ba"]]), AE = Symbol("FouSplitter"), jE = ["aria-orientation"], ME = /*@__PURE__*/ h({
23400
+ }), KE = /* @__PURE__ */ X({ default: () => qE }), qE = /*#__PURE__*/ Z(GE, [["__scopeId", "data-v-857567ba"]]), JE = Symbol("FouSplitter"), YE = ["aria-orientation"], XE = /*@__PURE__*/ h({
23023
23401
  name: "FouSplitterPanel",
23024
23402
  __name: "FouSplitterPanel",
23025
23403
  props: {
@@ -23032,7 +23410,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23032
23410
  }
23033
23411
  },
23034
23412
  setup(e) {
23035
- let n = e, r = y(AE, null), i = g()?.uid ?? Math.random(), o = a(() => {
23413
+ let n = e, r = y(JE, null), i = g()?.uid ?? Math.random(), o = a(() => {
23036
23414
  if (!r || n.resizable === !1) return !1;
23037
23415
  let e = r.panels.value, t = e.findIndex((e) => e.uid === i);
23038
23416
  return t < 0 || t === e.length - 1 ? !1 : e[t + 1]?.resizable !== !1;
@@ -23082,16 +23460,16 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23082
23460
  "aria-orientation": U(r)?.layout.value,
23083
23461
  tabindex: "0",
23084
23462
  onMousedown: q(d, ["prevent"])
23085
- }, null, 42, jE)) : c("", !0)], 64));
23463
+ }, null, 42, YE)) : c("", !0)], 64));
23086
23464
  }
23087
- }), NE = /* @__PURE__ */ X({ default: () => PE }), PE = /*#__PURE__*/ Z(ME, [["__scopeId", "data-v-a86fa6bc"]]), FE = /*@__PURE__*/ h({
23465
+ }), ZE = /* @__PURE__ */ X({ default: () => QE }), QE = /*#__PURE__*/ Z(XE, [["__scopeId", "data-v-a86fa6bc"]]), $E = /*@__PURE__*/ h({
23088
23466
  name: "FouSplitter",
23089
23467
  __name: "index",
23090
23468
  props: { layout: { default: "horizontal" } },
23091
23469
  emits: ["resize"],
23092
23470
  setup(e, { emit: t }) {
23093
23471
  let n = e, r = t, i = F(null), o = F([]), s = F({}), c = F(-1), u = (e) => n.layout === "vertical" ? e.height : e.width, d = (e, t, n) => e == null ? n : typeof e == "number" ? e : String(e).endsWith("%") ? Number.parseFloat(String(e)) / 100 * t : Number.parseFloat(String(e)) || n;
23094
- return P(AE, {
23472
+ return P(JE, {
23095
23473
  layout: a(() => n.layout),
23096
23474
  panels: o,
23097
23475
  flexMap: s,
@@ -23133,16 +23511,16 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23133
23511
  class: w(["fou-splitter", [`fou-splitter--${e.layout}`]])
23134
23512
  }, [L(t.$slots, "default", {}, void 0, !0)], 2));
23135
23513
  }
23136
- }), IE = /* @__PURE__ */ X({ default: () => LE }), LE = /*#__PURE__*/ Z(FE, [["__scopeId", "data-v-7d494943"]]), RE = { class: "fou-statistic" }, zE = {
23514
+ }), eD = /* @__PURE__ */ X({ default: () => tD }), tD = /*#__PURE__*/ Z($E, [["__scopeId", "data-v-7d494943"]]), nD = { class: "fou-statistic" }, rD = {
23137
23515
  key: 0,
23138
23516
  class: "fou-statistic__title"
23139
- }, BE = {
23517
+ }, iD = {
23140
23518
  key: 0,
23141
23519
  class: "fou-statistic__prefix"
23142
- }, VE = { class: "fou-statistic__value" }, HE = {
23520
+ }, aD = { class: "fou-statistic__value" }, oD = {
23143
23521
  key: 1,
23144
23522
  class: "fou-statistic__suffix"
23145
- }, UE = /*@__PURE__*/ h({
23523
+ }, sD = /*@__PURE__*/ h({
23146
23524
  name: "FouStatistics",
23147
23525
  __name: "index",
23148
23526
  props: {
@@ -23177,25 +23555,25 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23177
23555
  }, m = () => {
23178
23556
  r &&= (clearInterval(r), null);
23179
23557
  };
23180
- return W(() => t.countdown, f, { immediate: !0 }), k(m), (t, n) => (N(), l("div", RE, [e.title || t.$slots.title ? (N(), l("div", zE, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0), u("div", {
23558
+ return W(() => t.countdown, f, { immediate: !0 }), k(m), (t, n) => (N(), l("div", nD, [e.title || t.$slots.title ? (N(), l("div", rD, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0), u("div", {
23181
23559
  class: "fou-statistic__content",
23182
23560
  style: E(e.valueStyle)
23183
23561
  }, [
23184
- e.prefix || t.$slots.prefix ? (N(), l("span", BE, [L(t.$slots, "prefix", {}, () => [p(V(e.prefix), 1)], !0)])) : c("", !0),
23185
- u("span", VE, V(U(d)), 1),
23186
- e.suffix || t.$slots.suffix ? (N(), l("span", HE, [L(t.$slots, "suffix", {}, () => [p(V(e.suffix), 1)], !0)])) : c("", !0)
23562
+ e.prefix || t.$slots.prefix ? (N(), l("span", iD, [L(t.$slots, "prefix", {}, () => [p(V(e.prefix), 1)], !0)])) : c("", !0),
23563
+ u("span", aD, V(U(d)), 1),
23564
+ e.suffix || t.$slots.suffix ? (N(), l("span", oD, [L(t.$slots, "suffix", {}, () => [p(V(e.suffix), 1)], !0)])) : c("", !0)
23187
23565
  ], 4)]));
23188
23566
  }
23189
- }), WE = /* @__PURE__ */ X({ default: () => GE }), GE = /*#__PURE__*/ Z(UE, [["__scopeId", "data-v-28987a91"]]), KE = GE, qE = /* @__PURE__ */ X({ default: () => JE }), JE = KE, YE = Symbol("fouSteps"), XE = { class: "fou-step__head" }, ZE = {
23567
+ }), cD = /* @__PURE__ */ X({ default: () => lD }), lD = /*#__PURE__*/ Z(sD, [["__scopeId", "data-v-28987a91"]]), uD = lD, dD = /* @__PURE__ */ X({ default: () => fD }), fD = uD, pD = Symbol("fouSteps"), mD = { class: "fou-step__head" }, hD = {
23190
23568
  key: 3,
23191
23569
  class: "fou-step__index"
23192
- }, QE = {
23570
+ }, gD = {
23193
23571
  key: 0,
23194
23572
  class: "fou-step__line"
23195
- }, $E = { class: "fou-step__main" }, eD = { class: "fou-step__title" }, tD = {
23573
+ }, _D = { class: "fou-step__main" }, vD = { class: "fou-step__title" }, yD = {
23196
23574
  key: 0,
23197
23575
  class: "fou-step__description"
23198
- }, nD = /*@__PURE__*/ h({
23576
+ }, bD = /*@__PURE__*/ h({
23199
23577
  name: "FouStep",
23200
23578
  __name: "index",
23201
23579
  props: {
@@ -23205,7 +23583,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23205
23583
  status: { default: "" }
23206
23584
  },
23207
23585
  setup(e) {
23208
- let t = e, n = g()?.uid ?? Math.random(), r = y(YE, null), i = a(() => r ? r.steps.value.findIndex((e) => e.uid === n) : 0), o = a(() => !r || i.value === r.steps.value.length - 1), d = a(() => {
23586
+ let t = e, n = g()?.uid ?? Math.random(), r = y(pD, null), i = a(() => r ? r.steps.value.findIndex((e) => e.uid === n) : 0), o = a(() => !r || i.value === r.steps.value.length - 1), d = a(() => {
23209
23587
  if (t.status) return t.status;
23210
23588
  if (!r) return "wait";
23211
23589
  let e = i.value, n = r.active.value;
@@ -23234,7 +23612,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23234
23612
  `fou-step--${U(r)?.direction.value || "horizontal"}`
23235
23613
  ]]),
23236
23614
  style: E(U(f))
23237
- }, [u("div", XE, [u("div", { class: w(["fou-step__icon", { "is-text": !e.icon && !t.$slots.icon }]) }, [L(t.$slots, "icon", {}, () => [e.icon ? (N(), s(a, {
23615
+ }, [u("div", mD, [u("div", { class: w(["fou-step__icon", { "is-text": !e.icon && !t.$slots.icon }]) }, [L(t.$slots, "icon", {}, () => [e.icon ? (N(), s(a, {
23238
23616
  key: 0,
23239
23617
  icon: e.icon
23240
23618
  }, null, 8, ["icon"])) : U(d) === "finish" ? (N(), s(a, {
@@ -23243,10 +23621,10 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23243
23621
  })) : U(d) === "error" ? (N(), s(a, {
23244
23622
  key: 2,
23245
23623
  icon: "close-line"
23246
- })) : (N(), l("span", ZE, V(U(i) + 1), 1))], !0)], 2), U(o) ? c("", !0) : (N(), l("div", QE))]), u("div", $E, [u("div", eD, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)]), e.description || t.$slots.description ? (N(), l("div", tD, [L(t.$slots, "description", {}, () => [p(V(e.description), 1)], !0)])) : c("", !0)])], 6);
23624
+ })) : (N(), l("span", hD, V(U(i) + 1), 1))], !0)], 2), U(o) ? c("", !0) : (N(), l("div", gD))]), u("div", _D, [u("div", vD, [L(t.$slots, "title", {}, () => [p(V(e.title), 1)], !0)]), e.description || t.$slots.description ? (N(), l("div", yD, [L(t.$slots, "description", {}, () => [p(V(e.description), 1)], !0)])) : c("", !0)])], 6);
23247
23625
  };
23248
23626
  }
23249
- }), rD = /* @__PURE__ */ X({ default: () => iD }), iD = /*#__PURE__*/ Z(nD, [["__scopeId", "data-v-1a4d0fc1"]]), aD = /*@__PURE__*/ h({
23627
+ }), xD = /* @__PURE__ */ X({ default: () => SD }), SD = /*#__PURE__*/ Z(bD, [["__scopeId", "data-v-1a4d0fc1"]]), CD = /*@__PURE__*/ h({
23250
23628
  name: "FouSteps",
23251
23629
  __name: "index",
23252
23630
  props: {
@@ -23262,7 +23640,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23262
23640
  },
23263
23641
  setup(e) {
23264
23642
  let t = e, n = F([]);
23265
- return P(YE, {
23643
+ return P(pD, {
23266
23644
  active: H(t, "active"),
23267
23645
  space: H(t, "space"),
23268
23646
  direction: H(t, "direction"),
@@ -23278,7 +23656,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23278
23656
  }
23279
23657
  }), (t, n) => (N(), l("div", { class: w(["fou-steps", [`fou-steps--${e.direction}`, { "is-center": e.alignCenter && e.direction === "horizontal" }]]) }, [L(t.$slots, "default", {}, void 0, !0)], 2));
23280
23658
  }
23281
- }), oD = /* @__PURE__ */ X({ default: () => sD }), sD = /*#__PURE__*/ Z(aD, [["__scopeId", "data-v-1aded32b"]]), cD = /*@__PURE__*/ h({
23659
+ }), wD = /* @__PURE__ */ X({ default: () => TD }), TD = /*#__PURE__*/ Z(CD, [["__scopeId", "data-v-1aded32b"]]), ED = /*@__PURE__*/ h({
23282
23660
  name: "FouTabs",
23283
23661
  inheritAttrs: !1,
23284
23662
  __name: "index",
@@ -23288,7 +23666,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23288
23666
  fn: G((t) => [L(e.$slots, n, T(_(t || {})))])
23289
23667
  }))]), 1040));
23290
23668
  }
23291
- }), lD = /* @__PURE__ */ X({ default: () => uD }), uD = cD, dD = /*@__PURE__*/ h({
23669
+ }), DD = /* @__PURE__ */ X({ default: () => OD }), OD = ED, kD = /*@__PURE__*/ h({
23292
23670
  name: "FouText",
23293
23671
  __name: "index",
23294
23672
  props: {
@@ -23320,7 +23698,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23320
23698
  _: 3
23321
23699
  }, 8, ["class", "style"]));
23322
23700
  }
23323
- }), fD = /* @__PURE__ */ X({ default: () => pD }), pD = /*#__PURE__*/ Z(dD, [["__scopeId", "data-v-84e16484"]]), mD = ["title"], hD = /*@__PURE__*/ h({
23701
+ }), AD = /* @__PURE__ */ X({ default: () => jD }), jD = /*#__PURE__*/ Z(kD, [["__scopeId", "data-v-84e16484"]]), MD = ["title"], ND = /*@__PURE__*/ h({
23324
23702
  name: "FouTimeAgo",
23325
23703
  __name: "index",
23326
23704
  props: {
@@ -23368,16 +23746,16 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23368
23746
  }), (e, t) => (N(), l("span", {
23369
23747
  class: "fou-time-ago",
23370
23748
  title: a.value
23371
- }, [L(e.$slots, "default", { value: i.value }, () => [p(V(i.value), 1)], !0)], 8, mD));
23749
+ }, [L(e.$slots, "default", { value: i.value }, () => [p(V(i.value), 1)], !0)], 8, MD));
23372
23750
  }
23373
- }), gD = /* @__PURE__ */ X({ default: () => _D }), _D = /*#__PURE__*/ Z(hD, [["__scopeId", "data-v-76ac658b"]]), vD = [
23751
+ }), PD = /* @__PURE__ */ X({ default: () => FD }), FD = /*#__PURE__*/ Z(ND, [["__scopeId", "data-v-76ac658b"]]), ID = [
23374
23752
  "aria-expanded",
23375
23753
  "aria-disabled",
23376
23754
  "onKeydown"
23377
- ], yD = ["disabled", "onClick"], bD = {
23755
+ ], LD = ["disabled", "onClick"], RD = {
23378
23756
  key: 0,
23379
23757
  class: "fou-time-select__empty"
23380
- }, xD = /*@__PURE__*/ h({
23758
+ }, zD = /*@__PURE__*/ h({
23381
23759
  name: "FouTimeSelect",
23382
23760
  __name: "index",
23383
23761
  props: {
@@ -23473,7 +23851,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23473
23851
  icon: "time-line",
23474
23852
  class: "fou-time-select__icon"
23475
23853
  })
23476
- ], 40, vD), (N(), s(n, { to: "body" }, [m(i, { name: "fou-time-select-fade" }, {
23854
+ ], 40, ID), (N(), s(n, { to: "body" }, [m(i, { name: "fou-time-select-fade" }, {
23477
23855
  default: G(() => [U(v) ? (N(), l("div", {
23478
23856
  key: 0,
23479
23857
  ref_key: "panelRef",
@@ -23489,12 +23867,12 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23489
23867
  }]),
23490
23868
  disabled: t.disabled,
23491
23869
  onClick: (e) => j(t)
23492
- }, V(t.value), 11, yD))), 128)), U(S).length ? c("", !0) : (N(), l("div", bD, "无可选时间"))], 4)) : c("", !0)]),
23870
+ }, V(t.value), 11, LD))), 128)), U(S).length ? c("", !0) : (N(), l("div", RD, "无可选时间"))], 4)) : c("", !0)]),
23493
23871
  _: 1
23494
23872
  })]))], 2);
23495
23873
  };
23496
23874
  }
23497
- }), SD = /* @__PURE__ */ X({ default: () => CD }), CD = /*#__PURE__*/ Z(xD, [["__scopeId", "data-v-7a9a2d97"]]), wD = /*@__PURE__*/ h({
23875
+ }), BD = /* @__PURE__ */ X({ default: () => VD }), VD = /*#__PURE__*/ Z(zD, [["__scopeId", "data-v-7a9a2d97"]]), HD = /*@__PURE__*/ h({
23498
23876
  name: "FouTimeline",
23499
23877
  __name: "index",
23500
23878
  props: { center: {
@@ -23504,13 +23882,13 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23504
23882
  setup(e) {
23505
23883
  return (t, n) => (N(), l("ul", { class: w(["fou-timeline", { "fou-timeline--center": e.center }]) }, [L(t.$slots, "default", {}, void 0, !0)], 2));
23506
23884
  }
23507
- }), TD = /* @__PURE__ */ X({ default: () => ED }), ED = /*#__PURE__*/ Z(wD, [["__scopeId", "data-v-04ce4880"]]), DD = { class: "fou-timeline-item__dot" }, OD = { class: "fou-timeline-item__wrapper" }, kD = {
23885
+ }), UD = /* @__PURE__ */ X({ default: () => WD }), WD = /*#__PURE__*/ Z(HD, [["__scopeId", "data-v-04ce4880"]]), GD = { class: "fou-timeline-item__dot" }, KD = { class: "fou-timeline-item__wrapper" }, qD = {
23508
23886
  key: 0,
23509
23887
  class: "fou-timeline-item__timestamp is-top"
23510
- }, AD = { class: "fou-timeline-item__content" }, jD = {
23888
+ }, JD = { class: "fou-timeline-item__content" }, YD = {
23511
23889
  key: 1,
23512
23890
  class: "fou-timeline-item__timestamp is-bottom"
23513
- }, MD = /*@__PURE__*/ h({
23891
+ }, XD = /*@__PURE__*/ h({
23514
23892
  name: "FouTimelineItem",
23515
23893
  __name: "index",
23516
23894
  props: {
@@ -23547,22 +23925,22 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23547
23925
  style: E(U(i))
23548
23926
  }, [
23549
23927
  n[0] ||= u("div", { class: "fou-timeline-item__tail" }, null, -1),
23550
- u("div", DD, [L(t.$slots, "dot", {}, () => [e.icon ? (N(), s(a, {
23928
+ u("div", GD, [L(t.$slots, "dot", {}, () => [e.icon ? (N(), s(a, {
23551
23929
  key: 0,
23552
23930
  icon: e.icon
23553
23931
  }, null, 8, ["icon"])) : c("", !0)], !0)]),
23554
- u("div", OD, [
23555
- e.timestamp && e.placement === "top" ? (N(), l("div", kD, V(e.timestamp), 1)) : c("", !0),
23556
- u("div", AD, [L(t.$slots, "default", {}, void 0, !0)]),
23557
- e.timestamp && e.placement === "bottom" ? (N(), l("div", jD, V(e.timestamp), 1)) : c("", !0)
23932
+ u("div", KD, [
23933
+ e.timestamp && e.placement === "top" ? (N(), l("div", qD, V(e.timestamp), 1)) : c("", !0),
23934
+ u("div", JD, [L(t.$slots, "default", {}, void 0, !0)]),
23935
+ e.timestamp && e.placement === "bottom" ? (N(), l("div", YD, V(e.timestamp), 1)) : c("", !0)
23558
23936
  ])
23559
23937
  ], 6);
23560
23938
  };
23561
23939
  }
23562
- }), ND = /* @__PURE__ */ X({ default: () => PD }), PD = /*#__PURE__*/ Z(MD, [["__scopeId", "data-v-71ac71cd"]]), FD = {
23940
+ }), ZD = /* @__PURE__ */ X({ default: () => QD }), QD = /*#__PURE__*/ Z(XD, [["__scopeId", "data-v-71ac71cd"]]), $D = {
23563
23941
  key: 0,
23564
23942
  class: "fou-tips__title"
23565
- }, ID = { class: "fou-tips__content" }, LD = /*@__PURE__*/ h({
23943
+ }, eO = { class: "fou-tips__content" }, tO = /*@__PURE__*/ h({
23566
23944
  name: "FouTips",
23567
23945
  inheritAttrs: !1,
23568
23946
  __name: "index",
@@ -23653,8 +24031,8 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23653
24031
  onMouseenter: A,
23654
24032
  onMouseleave: D
23655
24033
  }, [
23656
- e.title || r.$slots.title ? (N(), l("div", FD, [L(r.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0),
23657
- u("div", ID, [L(r.$slots, "content", {}, () => [p(V(e.content), 1)], !0)]),
24034
+ e.title || r.$slots.title ? (N(), l("div", $D, [L(r.$slots, "title", {}, () => [p(V(e.title), 1)], !0)])) : c("", !0),
24035
+ u("div", eO, [L(r.$slots, "content", {}, () => [p(V(e.content), 1)], !0)]),
23658
24036
  h[0] ||= u("i", {
23659
24037
  class: "fou-tips__arrow",
23660
24038
  "aria-hidden": "true"
@@ -23663,7 +24041,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23663
24041
  _: 3
23664
24042
  })]))], 16));
23665
24043
  }
23666
- }), RD = /* @__PURE__ */ X({ default: () => zD }), zD = /*#__PURE__*/ Z(LD, [["__scopeId", "data-v-4eea1cd3"]]), BD = /*@__PURE__*/ h({
24044
+ }), nO = /* @__PURE__ */ X({ default: () => rO }), rO = /*#__PURE__*/ Z(tO, [["__scopeId", "data-v-4eea1cd3"]]), iO = /*@__PURE__*/ h({
23667
24045
  name: "FouTitle",
23668
24046
  __name: "index",
23669
24047
  props: {
@@ -23685,10 +24063,10 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23685
24063
  _: 3
23686
24064
  }, 8, ["class"]));
23687
24065
  }
23688
- }), VD = /* @__PURE__ */ X({ default: () => HD }), HD = /*#__PURE__*/ Z(BD, [["__scopeId", "data-v-d55afa2d"]]), UD = Symbol("FouTour"), WD = {
24066
+ }), aO = /* @__PURE__ */ X({ default: () => oO }), oO = /*#__PURE__*/ Z(iO, [["__scopeId", "data-v-d55afa2d"]]), sO = Symbol("FouTour"), cO = {
23689
24067
  class: "fou-tour-step",
23690
24068
  hidden: ""
23691
- }, GD = /*@__PURE__*/ h({
24069
+ }, lO = /*@__PURE__*/ h({
23692
24070
  name: "FouTourStep",
23693
24071
  __name: "FouTourStep",
23694
24072
  props: {
@@ -23701,7 +24079,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23701
24079
  mask: { type: Boolean }
23702
24080
  },
23703
24081
  setup(e) {
23704
- let t = e, n = ie(), r = y(UD, null), i = g()?.uid ?? Math.random();
24082
+ let t = e, n = ie(), r = y(sO, null), i = g()?.uid ?? Math.random();
23705
24083
  return A(() => {
23706
24084
  r?.registerStep({
23707
24085
  uid: i,
@@ -23729,12 +24107,12 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23729
24107
  prevText: t.prevText,
23730
24108
  mask: t.mask
23731
24109
  });
23732
- }), (e, t) => (N(), l("div", WD, [L(e.$slots, "default")]));
24110
+ }), (e, t) => (N(), l("div", cO, [L(e.$slots, "default")]));
23733
24111
  }
23734
- }), KD = /* @__PURE__ */ X({ default: () => qD }), qD = GD, JD = { hidden: "" }, YD = {
24112
+ }), uO = /* @__PURE__ */ X({ default: () => dO }), dO = lO, fO = { hidden: "" }, pO = {
23735
24113
  key: 1,
23736
24114
  class: "fou-tour__title"
23737
- }, XD = { class: "fou-tour__body" }, ZD = { class: "fou-tour__footer" }, QD = { class: "fou-tour__indicator" }, $D = { class: "fou-tour__actions" }, eO = /*@__PURE__*/ h({
24115
+ }, mO = { class: "fou-tour__body" }, hO = { class: "fou-tour__footer" }, gO = { class: "fou-tour__indicator" }, _O = { class: "fou-tour__actions" }, vO = /*@__PURE__*/ h({
23738
24116
  name: "FouTour",
23739
24117
  __name: "index",
23740
24118
  props: {
@@ -23777,7 +24155,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23777
24155
  ],
23778
24156
  setup(e, { emit: r }) {
23779
24157
  let i = e, o = r, d = F([]), f = F(null), m = F(null), h = F({}), g = F(2e3), _ = F("bottom");
23780
- P(UD, {
24158
+ P(sO, {
23781
24159
  registerStep: (e) => {
23782
24160
  let t = d.value.findIndex((t) => t.uid === e.uid);
23783
24161
  t >= 0 ? d.value[t] = e : d.value.push(e);
@@ -23919,7 +24297,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23919
24297
  window.addEventListener("resize", ee), window.addEventListener("scroll", ee, !0), document.addEventListener("keydown", ne), v.value && (g.value = i.zIndex || st(3200), ee());
23920
24298
  }), j(() => {
23921
24299
  window.removeEventListener("resize", ee), window.removeEventListener("scroll", ee, !0), document.removeEventListener("keydown", ne);
23922
- }), (r, i) => (N(), l(t, null, [u("div", JD, [L(r.$slots, "steps", {}, void 0, !0)]), (N(), s(n, { to: "body" }, [U(v) ? (N(), l("div", {
24300
+ }), (r, i) => (N(), l(t, null, [u("div", fO, [L(r.$slots, "steps", {}, void 0, !0)]), (N(), s(n, { to: "body" }, [U(v) ? (N(), l("div", {
23923
24301
  key: 0,
23924
24302
  class: "fou-tour",
23925
24303
  style: E({ zIndex: U(g) }),
@@ -23966,18 +24344,18 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23966
24344
  "aria-label": "关闭",
23967
24345
  onClick: I
23968
24346
  }, " × ")) : c("", !0),
23969
- U(S)?.title || r.$slots.header ? (N(), l("div", YD, [L(r.$slots, "header", {
24347
+ U(S)?.title || r.$slots.header ? (N(), l("div", pO, [L(r.$slots, "header", {
23970
24348
  step: U(S),
23971
24349
  current: U(y)
23972
24350
  }, () => [p(V(U(S)?.title), 1)], !0)])) : c("", !0),
23973
- u("div", XD, [L(r.$slots, "default", {
24351
+ u("div", mO, [L(r.$slots, "default", {
23974
24352
  step: U(S),
23975
24353
  current: U(y)
23976
24354
  }, () => [p(V(U(S)?.description), 1)], !0)]),
23977
- u("div", ZD, [L(r.$slots, "indicator", {
24355
+ u("div", hO, [L(r.$slots, "indicator", {
23978
24356
  current: U(y),
23979
24357
  total: U(x)
23980
- }, () => [u("span", QD, V(U(y) + 1) + " / " + V(U(x)), 1)], !0), u("div", $D, [U(y) > 0 ? (N(), l("button", {
24358
+ }, () => [u("span", gO, V(U(y) + 1) + " / " + V(U(x)), 1)], !0), u("div", _O, [U(y) > 0 ? (N(), l("button", {
23981
24359
  key: 0,
23982
24360
  type: "button",
23983
24361
  class: "fou-tour__btn",
@@ -23996,19 +24374,19 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
23996
24374
  ], 6)
23997
24375
  ], 4)) : c("", !0)]))], 64));
23998
24376
  }
23999
- }), tO = /* @__PURE__ */ X({ default: () => nO }), nO = /*#__PURE__*/ Z(eO, [["__scopeId", "data-v-a9993320"]]), rO = { class: "fou-transfer" }, iO = { class: "fou-transfer__panel" }, aO = { class: "fou-transfer__header" }, oO = { class: "fou-transfer__title" }, sO = { class: "fou-transfer__count" }, cO = {
24377
+ }), yO = /* @__PURE__ */ X({ default: () => bO }), bO = /*#__PURE__*/ Z(vO, [["__scopeId", "data-v-a9993320"]]), xO = { class: "fou-transfer" }, SO = { class: "fou-transfer__panel" }, CO = { class: "fou-transfer__header" }, wO = { class: "fou-transfer__title" }, TO = { class: "fou-transfer__count" }, EO = {
24000
24378
  key: 0,
24001
24379
  class: "fou-transfer__filter"
24002
- }, lO = { class: "fou-transfer__body" }, uO = {
24380
+ }, DO = { class: "fou-transfer__body" }, OO = {
24003
24381
  key: 0,
24004
24382
  class: "fou-transfer__empty"
24005
- }, dO = { class: "fou-transfer__buttons" }, fO = { class: "fou-transfer__panel" }, pO = { class: "fou-transfer__header" }, mO = { class: "fou-transfer__title" }, hO = { class: "fou-transfer__count" }, gO = {
24383
+ }, kO = { class: "fou-transfer__buttons" }, AO = { class: "fou-transfer__panel" }, jO = { class: "fou-transfer__header" }, MO = { class: "fou-transfer__title" }, NO = { class: "fou-transfer__count" }, PO = {
24006
24384
  key: 0,
24007
24385
  class: "fou-transfer__filter"
24008
- }, _O = { class: "fou-transfer__body" }, vO = {
24386
+ }, FO = { class: "fou-transfer__body" }, IO = {
24009
24387
  key: 0,
24010
24388
  class: "fou-transfer__empty"
24011
- }, yO = /*@__PURE__*/ h({
24389
+ }, LO = /*@__PURE__*/ h({
24012
24390
  name: "FouTransfer",
24013
24391
  __name: "index",
24014
24392
  props: {
@@ -24042,24 +24420,24 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24042
24420
  o.value = o.value.filter((t) => !e.has(t)), s.value = s.value.filter((t) => e.has(t));
24043
24421
  }), (n, r) => {
24044
24422
  let i = Ba, a = So, _ = Pa, x = Wn;
24045
- return N(), l("div", rO, [
24046
- u("div", iO, [
24047
- u("div", aO, [
24423
+ return N(), l("div", xO, [
24424
+ u("div", SO, [
24425
+ u("div", CO, [
24048
24426
  m(i, {
24049
24427
  "model-value": U(C),
24050
24428
  indeterminate: U(w),
24051
24429
  onChange: O
24052
24430
  }, null, 8, ["model-value", "indeterminate"]),
24053
- u("span", oO, V(e.titles[0]), 1),
24054
- u("span", sO, V(U(o).length) + "/" + V(U(h).length), 1)
24431
+ u("span", wO, V(e.titles[0]), 1),
24432
+ u("span", TO, V(U(o).length) + "/" + V(U(h).length), 1)
24055
24433
  ]),
24056
- e.filterable ? (N(), l("div", cO, [m(a, {
24434
+ e.filterable ? (N(), l("div", EO, [m(a, {
24057
24435
  modelValue: U(d),
24058
24436
  "onUpdate:modelValue": r[0] ||= (e) => b(d) ? d.value = e : null,
24059
24437
  placeholder: e.filterPlaceholder,
24060
24438
  "prefix-icon": "search-line"
24061
24439
  }, null, 8, ["modelValue", "placeholder"])])) : c("", !0),
24062
- u("div", lO, [m(_, {
24440
+ u("div", DO, [m(_, {
24063
24441
  modelValue: U(o),
24064
24442
  "onUpdate:modelValue": r[1] ||= (e) => b(o) ? o.value = e : null
24065
24443
  }, {
@@ -24074,9 +24452,9 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24074
24452
  _: 2
24075
24453
  }, 1032, ["label", "disabled"])]))), 128))]),
24076
24454
  _: 1
24077
- }, 8, ["modelValue"]), U(v).length ? c("", !0) : (N(), l("div", uO, "无数据"))])
24455
+ }, 8, ["modelValue"]), U(v).length ? c("", !0) : (N(), l("div", OO, "无数据"))])
24078
24456
  ]),
24079
- u("div", dO, [m(x, {
24457
+ u("div", kO, [m(x, {
24080
24458
  type: "primary",
24081
24459
  disabled: !U(o).length,
24082
24460
  onClick: A
@@ -24090,23 +24468,23 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24090
24468
  default: G(() => [p(" ‹ " + V(e.buttonTexts[0]), 1)]),
24091
24469
  _: 1
24092
24470
  }, 8, ["disabled"])]),
24093
- u("div", fO, [
24094
- u("div", pO, [
24471
+ u("div", AO, [
24472
+ u("div", jO, [
24095
24473
  m(i, {
24096
24474
  "model-value": U(T),
24097
24475
  indeterminate: U(E),
24098
24476
  onChange: k
24099
24477
  }, null, 8, ["model-value", "indeterminate"]),
24100
- u("span", mO, V(e.titles[1]), 1),
24101
- u("span", hO, V(U(s).length) + "/" + V(U(g).length), 1)
24478
+ u("span", MO, V(e.titles[1]), 1),
24479
+ u("span", NO, V(U(s).length) + "/" + V(U(g).length), 1)
24102
24480
  ]),
24103
- e.filterable ? (N(), l("div", gO, [m(a, {
24481
+ e.filterable ? (N(), l("div", PO, [m(a, {
24104
24482
  modelValue: U(f),
24105
24483
  "onUpdate:modelValue": r[2] ||= (e) => b(f) ? f.value = e : null,
24106
24484
  placeholder: e.filterPlaceholder,
24107
24485
  "prefix-icon": "search-line"
24108
24486
  }, null, 8, ["modelValue", "placeholder"])])) : c("", !0),
24109
- u("div", _O, [m(_, {
24487
+ u("div", FO, [m(_, {
24110
24488
  modelValue: U(s),
24111
24489
  "onUpdate:modelValue": r[3] ||= (e) => b(s) ? s.value = e : null
24112
24490
  }, {
@@ -24121,12 +24499,12 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24121
24499
  _: 2
24122
24500
  }, 1032, ["label", "disabled"])]))), 128))]),
24123
24501
  _: 1
24124
- }, 8, ["modelValue"]), U(y).length ? c("", !0) : (N(), l("div", vO, "无数据"))])
24502
+ }, 8, ["modelValue"]), U(y).length ? c("", !0) : (N(), l("div", IO, "无数据"))])
24125
24503
  ])
24126
24504
  ]);
24127
24505
  };
24128
24506
  }
24129
- }), bO = /* @__PURE__ */ X({ default: () => xO }), xO = /*#__PURE__*/ Z(yO, [["__scopeId", "data-v-adf8d40f"]]), SO = ["onKeydown"], CO = { class: "fou-tree-select__suffix" }, wO = { class: "fou-tree-select__dropdown" }, TO = /*@__PURE__*/ h({
24507
+ }), RO = /* @__PURE__ */ X({ default: () => zO }), zO = /*#__PURE__*/ Z(LO, [["__scopeId", "data-v-adf8d40f"]]), BO = ["onKeydown"], VO = { class: "fou-tree-select__suffix" }, HO = { class: "fou-tree-select__dropdown" }, UO = /*@__PURE__*/ h({
24130
24508
  name: "FouTreeSelect",
24131
24509
  __name: "index",
24132
24510
  props: {
@@ -24193,15 +24571,15 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24193
24571
  K(q(v, ["prevent"]), ["space"]),
24194
24572
  K(_, ["esc"])
24195
24573
  ]
24196
- }, [u("span", { class: w(["fou-tree-select__selected", { "is-placeholder": !U(h) }]) }, V(U(h) || e.placeholder), 3), u("span", CO, [e.clearable && U(f) && !e.disabled ? (N(), l("button", {
24574
+ }, [u("span", { class: w(["fou-tree-select__selected", { "is-placeholder": !U(h) }]) }, V(U(h) || e.placeholder), 3), u("span", VO, [e.clearable && U(f) && !e.disabled ? (N(), l("button", {
24197
24575
  key: 0,
24198
24576
  type: "button",
24199
24577
  class: "fou-tree-select__clear",
24200
24578
  tabindex: "-1",
24201
24579
  onMousedown: n[0] ||= q(() => {}, ["prevent"]),
24202
24580
  onClick: q(b, ["stop"])
24203
- }, " × ", 32)) : c("", !0), u("span", { class: w(["fou-tree-select__caret", { "is-open": U(s) }]) }, "▾", 2)])], 40, SO), m(i, { name: "fou-tree-select-fade" }, {
24204
- default: G(() => [ce(u("div", wO, [m(Md, {
24581
+ }, " × ", 32)) : c("", !0), u("span", { class: w(["fou-tree-select__caret", { "is-open": U(s) }]) }, "▾", 2)])], 40, BO), m(i, { name: "fou-tree-select-fade" }, {
24582
+ default: G(() => [ce(u("div", HO, [m(Md, {
24205
24583
  data: e.data,
24206
24584
  props: U(d),
24207
24585
  "highlight-current": "",
@@ -24211,13 +24589,13 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24211
24589
  _: 1
24212
24590
  })], 2));
24213
24591
  }
24214
- }), EO = /* @__PURE__ */ X({ default: () => DO }), DO = /*#__PURE__*/ Z(TO, [["__scopeId", "data-v-53f707f4"]]), OO = {
24592
+ }), WO = /* @__PURE__ */ X({ default: () => GO }), GO = /*#__PURE__*/ Z(UO, [["__scopeId", "data-v-53f707f4"]]), KO = {
24215
24593
  class: "fou-tree-v2",
24216
24594
  role: "tree"
24217
- }, kO = ["onClick"], AO = ["onClick"], jO = { key: 0 }, MO = { class: "fou-tree-v2__label" }, NO = {
24595
+ }, qO = ["onClick"], JO = ["onClick"], YO = { key: 0 }, XO = { class: "fou-tree-v2__label" }, ZO = {
24218
24596
  key: 1,
24219
24597
  class: "fou-tree-v2__empty"
24220
- }, PO = /*@__PURE__*/ h({
24598
+ }, QO = /*@__PURE__*/ h({
24221
24599
  name: "FouTreeV2",
24222
24600
  __name: "index",
24223
24601
  props: {
@@ -24269,7 +24647,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24269
24647
  });
24270
24648
  };
24271
24649
  return t(i.data, 0), e;
24272
- }), { range: g, onScroll: _ } = sE({
24650
+ }), { range: g, onScroll: _ } = TE({
24273
24651
  scrollRef: s,
24274
24652
  total: () => h.value.length,
24275
24653
  itemHeight: i.itemHeight
@@ -24294,7 +24672,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24294
24672
  }), i;
24295
24673
  };
24296
24674
  r(i.data), f.value = n;
24297
- } }), (n, r) => (N(), l("div", OO, [U(h).length ? (N(), l("div", {
24675
+ } }), (n, r) => (N(), l("div", KO, [U(h).length ? (N(), l("div", {
24298
24676
  key: 0,
24299
24677
  ref_key: "listRef",
24300
24678
  ref: s,
@@ -24320,9 +24698,9 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24320
24698
  "is-open": t.expanded
24321
24699
  }]),
24322
24700
  onClick: q((e) => y(t), ["stop"])
24323
- }, [t.isLeaf ? c("", !0) : (N(), l("span", jO, "›"))], 10, AO), u("span", MO, V(t.label), 1)], 14, kO))), 128))], 4)], 36)) : (N(), l("div", NO, "无数据"))]));
24701
+ }, [t.isLeaf ? c("", !0) : (N(), l("span", YO, "›"))], 10, JO), u("span", XO, V(t.label), 1)], 14, qO))), 128))], 4)], 36)) : (N(), l("div", ZO, "无数据"))]));
24324
24702
  }
24325
- }), FO = /* @__PURE__ */ X({ default: () => IO }), IO = /*#__PURE__*/ Z(PO, [["__scopeId", "data-v-409607df"]]), LO = ["title"], RO = { class: "fou-trend__value" }, zO = /*@__PURE__*/ h({
24703
+ }), $O = /* @__PURE__ */ X({ default: () => ek }), ek = /*#__PURE__*/ Z(QO, [["__scopeId", "data-v-409607df"]]), tk = ["title"], nk = { class: "fou-trend__value" }, rk = /*@__PURE__*/ h({
24326
24704
  name: "FouTrend",
24327
24705
  __name: "index",
24328
24706
  props: {
@@ -24350,44 +24728,44 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24350
24728
  key: 0,
24351
24729
  icon: i.value,
24352
24730
  class: "fou-trend__icon"
24353
- }, null, 8, ["icon"])) : c("", !0), u("span", RO, [L(t.$slots, "default", {}, () => [p(V(o.value), 1)], !0)])], 10, LO);
24731
+ }, null, 8, ["icon"])) : c("", !0), u("span", nk, [L(t.$slots, "default", {}, () => [p(V(o.value), 1)], !0)])], 10, tk);
24354
24732
  };
24355
24733
  }
24356
- }), BO = /* @__PURE__ */ X({ default: () => VO }), VO = /*#__PURE__*/ Z(zO, [["__scopeId", "data-v-899e84d1"]]), HO = [
24734
+ }), ik = /* @__PURE__ */ X({ default: () => ak }), ak = /*#__PURE__*/ Z(rk, [["__scopeId", "data-v-899e84d1"]]), ok = [
24357
24735
  "accept",
24358
24736
  "multiple",
24359
24737
  "disabled"
24360
- ], UO = {
24738
+ ], sk = {
24361
24739
  key: 0,
24362
24740
  class: "fou-upload__card-list"
24363
- }, WO = ["src"], GO = {
24741
+ }, ck = ["src"], lk = {
24364
24742
  key: 1,
24365
24743
  class: "fou-upload__card-name"
24366
- }, KO = {
24744
+ }, uk = {
24367
24745
  key: 2,
24368
24746
  class: "fou-upload__card-progress"
24369
- }, qO = ["disabled", "onClick"], JO = {
24747
+ }, dk = ["disabled", "onClick"], fk = {
24370
24748
  key: 0,
24371
24749
  class: "fou-upload__tip"
24372
- }, YO = {
24750
+ }, pk = {
24373
24751
  key: 1,
24374
24752
  class: "fou-upload__trigger"
24375
- }, XO = {
24753
+ }, mk = {
24376
24754
  key: 0,
24377
24755
  class: "fou-upload__tip"
24378
- }, ZO = {
24756
+ }, hk = {
24379
24757
  key: 2,
24380
24758
  class: "fou-upload__list"
24381
- }, QO = { class: "fou-upload__item-main" }, $O = ["src"], ek = ["title"], tk = { class: "fou-upload__size" }, nk = ["disabled", "onClick"], rk = {
24759
+ }, gk = { class: "fou-upload__item-main" }, _k = ["src"], vk = ["title"], yk = { class: "fou-upload__size" }, bk = ["disabled", "onClick"], xk = {
24382
24760
  key: 0,
24383
24761
  class: "fou-upload__progress"
24384
- }, ik = {
24762
+ }, Sk = {
24385
24763
  key: 1,
24386
24764
  class: "fou-upload__fail"
24387
- }, ak = {
24765
+ }, Ck = {
24388
24766
  key: 2,
24389
24767
  class: "fou-upload__response"
24390
- }, ok = /*@__PURE__*/ h({
24768
+ }, wk = /*@__PURE__*/ h({
24391
24769
  name: "FouUpload",
24392
24770
  __name: "index",
24393
24771
  props: {
@@ -24591,7 +24969,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24591
24969
  multiple: e.multiple,
24592
24970
  disabled: e.disabled,
24593
24971
  onChange: R
24594
- }, null, 40, HO), e.listType === "picture-card" ? (N(), l("div", UO, [(N(!0), l(t, null, I(U(v), (t) => (N(), l("div", {
24972
+ }, null, 40, ok), e.listType === "picture-card" ? (N(), l("div", sk, [(N(!0), l(t, null, I(U(v), (t) => (N(), l("div", {
24595
24973
  key: t.uid,
24596
24974
  class: "fou-upload__card",
24597
24975
  style: E(U(S))
@@ -24601,14 +24979,14 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24601
24979
  src: D(t),
24602
24980
  class: "fou-upload__card-img",
24603
24981
  alt: ""
24604
- }, null, 8, WO)) : (N(), l("div", GO, V(t.name), 1)),
24605
- t.status === "uploading" ? (N(), l("div", KO, V(t.percentage || 0) + "% ", 1)) : c("", !0),
24982
+ }, null, 8, ck)) : (N(), l("div", lk, V(t.name), 1)),
24983
+ t.status === "uploading" ? (N(), l("div", uk, V(t.percentage || 0) + "% ", 1)) : c("", !0),
24606
24984
  u("button", {
24607
24985
  type: "button",
24608
24986
  class: "fou-upload__card-remove",
24609
24987
  disabled: e.disabled,
24610
24988
  onClick: (e) => B(t)
24611
- }, " × ", 8, qO)
24989
+ }, " × ", 8, dk)
24612
24990
  ], 4))), 128)), !e.disabled && (!e.limit || U(v).length < e.limit) ? (N(), l("button", {
24613
24991
  key: 0,
24614
24992
  type: "button",
@@ -24628,8 +25006,8 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24628
25006
  class: "fou-upload__drag-icon"
24629
25007
  }),
24630
25008
  r[1] ||= u("p", null, [p("将文件拖到此处,或 "), u("em", null, "点击上传")], -1),
24631
- e.tip ? (N(), l("p", JO, V(e.tip), 1)) : c("", !0)
24632
- ], 32)) : (N(), l("div", YO, [m(a, {
25009
+ e.tip ? (N(), l("p", fk, V(e.tip), 1)) : c("", !0)
25010
+ ], 32)) : (N(), l("div", pk, [m(a, {
24633
25011
  type: "primary",
24634
25012
  disabled: e.disabled,
24635
25013
  icon: "upload-2-line",
@@ -24637,54 +25015,54 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
24637
25015
  }, {
24638
25016
  default: G(() => [p(V(e.buttonText), 1)]),
24639
25017
  _: 1
24640
- }, 8, ["disabled"]), e.tip ? (N(), l("p", XO, V(e.tip), 1)) : c("", !0)])), U(v).length ? (N(), l("ul", ZO, [(N(!0), l(t, null, I(U(v), (t) => (N(), l("li", {
25018
+ }, 8, ["disabled"]), e.tip ? (N(), l("p", mk, V(e.tip), 1)) : c("", !0)])), U(v).length ? (N(), l("ul", hk, [(N(!0), l(t, null, I(U(v), (t) => (N(), l("li", {
24641
25019
  key: t.uid,
24642
25020
  class: "fou-upload__item"
24643
25021
  }, [
24644
- u("div", QO, [
25022
+ u("div", gk, [
24645
25023
  e.showPreview && D(t) ? (N(), l("img", {
24646
25024
  key: 0,
24647
25025
  src: D(t),
24648
25026
  class: "fou-upload__thumb",
24649
25027
  style: E(U(x)),
24650
25028
  alt: ""
24651
- }, null, 12, $O)) : (N(), s(i, {
25029
+ }, null, 12, _k)) : (N(), s(i, {
24652
25030
  key: 1,
24653
25031
  icon: T(t.name) ? "image-line" : "file-line"
24654
25032
  }, null, 8, ["icon"])),
24655
25033
  u("span", {
24656
25034
  class: "fou-upload__name",
24657
25035
  title: t.name
24658
- }, V(t.name), 9, ek),
24659
- u("span", tk, V(C(t.size)), 1),
25036
+ }, V(t.name), 9, vk),
25037
+ u("span", yk, V(C(t.size)), 1),
24660
25038
  u("button", {
24661
25039
  type: "button",
24662
25040
  class: "fou-upload__remove",
24663
25041
  disabled: e.disabled,
24664
25042
  onClick: (e) => B(t)
24665
- }, [m(i, { icon: "close-line" })], 8, nk)
25043
+ }, [m(i, { icon: "close-line" })], 8, bk)
24666
25044
  ]),
24667
- t.status === "uploading" ? (N(), l("div", rk, [u("div", {
25045
+ t.status === "uploading" ? (N(), l("div", xk, [u("div", {
24668
25046
  class: "fou-upload__progress-bar",
24669
25047
  style: E({ width: `${t.percentage || 0}%` })
24670
- }, null, 4)])) : t.status === "fail" ? (N(), l("div", ik, "上传失败")) : c("", !0),
24671
- e.showResponse && t.response != null ? (N(), l("pre", ak, V(O(t.response)), 1)) : c("", !0)
25048
+ }, null, 4)])) : t.status === "fail" ? (N(), l("div", Sk, "上传失败")) : c("", !0),
25049
+ e.showResponse && t.response != null ? (N(), l("pre", Ck, V(O(t.response)), 1)) : c("", !0)
24672
25050
  ]))), 128))])) : c("", !0)], 64))], 2);
24673
25051
  };
24674
25052
  }
24675
- }), sk = /* @__PURE__ */ X({ default: () => ck }), ck = /*#__PURE__*/ Z(ok, [["__scopeId", "data-v-7d68c9d2"]]), lk = ["accept", "disabled"], uk = {
25053
+ }), Tk = /* @__PURE__ */ X({ default: () => Ek }), Ek = /*#__PURE__*/ Z(wk, [["__scopeId", "data-v-7d68c9d2"]]), Dk = ["accept", "disabled"], Ok = {
24676
25054
  key: 0,
24677
25055
  class: "fou-upload-crop__avatar-row"
24678
- }, dk = ["src"], fk = {
25056
+ }, kk = ["src"], Ak = {
24679
25057
  key: 2,
24680
25058
  class: "fou-upload-crop__mask fou-upload-crop__mask--avatar"
24681
- }, pk = ["disabled"], mk = ["disabled"], hk = { class: "fou-upload-crop__trigger-text" }, gk = {
25059
+ }, jk = ["disabled"], Mk = ["disabled"], Nk = { class: "fou-upload-crop__trigger-text" }, Pk = {
24682
25060
  key: 0,
24683
25061
  class: "fou-upload-crop__tip"
24684
- }, _k = { class: "fou-upload-crop__trigger-text" }, vk = {
25062
+ }, Fk = { class: "fou-upload-crop__trigger-text" }, Ik = {
24685
25063
  key: 0,
24686
25064
  class: "fou-upload-crop__tip"
24687
- }, yk = ["src"], bk = { class: "fou-upload-crop__mask fou-upload-crop__mask--always" }, xk = ["disabled"], Sk = ["disabled"], Ck = ["disabled"], wk = ["aria-label"], Tk = { class: "fou-upload-crop__dialog-box" }, Ek = { class: "fou-upload-crop__dialog-head" }, Dk = ["src"], Ok = ["onPointerdown"], kk = { class: "fou-upload-crop__toolbar" }, Ak = { class: "fou-upload-crop__field" }, jk = { class: "fou-upload-crop__field" }, Mk = { class: "fou-upload-crop__quality" }, Nk = ["src"], Pk = /*@__PURE__*/ h({
25065
+ }, Lk = ["src"], Rk = { class: "fou-upload-crop__mask fou-upload-crop__mask--always" }, zk = ["disabled"], Bk = ["disabled"], Vk = ["disabled"], Hk = ["aria-label"], Uk = { class: "fou-upload-crop__dialog-box" }, Wk = { class: "fou-upload-crop__dialog-head" }, Gk = ["src"], Kk = ["onPointerdown"], qk = { class: "fou-upload-crop__toolbar" }, Jk = { class: "fou-upload-crop__field" }, Yk = { class: "fou-upload-crop__field" }, Xk = { class: "fou-upload-crop__quality" }, Zk = ["src"], Qk = /*@__PURE__*/ h({
24688
25066
  name: "FouUploadCrop",
24689
25067
  __name: "index",
24690
25068
  props: {
@@ -25132,8 +25510,8 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25132
25510
  accept: e.accept,
25133
25511
  disabled: e.disabled,
25134
25512
  onChange: Ee
25135
- }, null, 40, lk),
25136
- U(le) ? (N(), l("div", uk, [u("div", {
25513
+ }, null, 40, Dk),
25514
+ U(le) ? (N(), l("div", Ok, [u("div", {
25137
25515
  class: w(["fou-upload-crop__avatar-preview", { "is-empty": !U(T) }]),
25138
25516
  style: E(U(me)),
25139
25517
  onMouseenter: i[0] ||= (e) => g.value = !0,
@@ -25142,21 +25520,21 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25142
25520
  key: 0,
25143
25521
  src: U(S),
25144
25522
  alt: ""
25145
- }, null, 8, dk)) : (N(), s(a, {
25523
+ }, null, 8, kk)) : (N(), s(a, {
25146
25524
  key: 1,
25147
25525
  icon: "user-line",
25148
25526
  class: "fou-upload-crop__avatar-placeholder"
25149
- })), U(T) && U(g) ? (N(), l("div", fk, [u("button", {
25527
+ })), U(T) && U(g) ? (N(), l("div", Ak, [u("button", {
25150
25528
  type: "button",
25151
25529
  disabled: e.disabled,
25152
25530
  title: "重新裁切",
25153
25531
  onClick: Z
25154
- }, [m(a, { icon: "crop-line" })], 8, pk), u("button", {
25532
+ }, [m(a, { icon: "crop-line" })], 8, jk), u("button", {
25155
25533
  type: "button",
25156
25534
  disabled: e.disabled,
25157
25535
  title: "删除",
25158
25536
  onClick: Qe
25159
- }, [m(a, { icon: "delete-bin-line" })], 8, mk)])) : c("", !0)], 38), u("div", {
25537
+ }, [m(a, { icon: "delete-bin-line" })], 8, Mk)])) : c("", !0)], 38), u("div", {
25160
25538
  class: w(["fou-upload-crop__trigger fou-upload-crop__trigger--dashed", { "is-dragover": U(_) }]),
25161
25539
  style: E(U(he)),
25162
25540
  role: "button",
@@ -25171,8 +25549,8 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25171
25549
  icon: "image-add-line",
25172
25550
  class: "fou-upload-crop__trigger-icon"
25173
25551
  }),
25174
- u("p", hk, V(U(ue)), 1),
25175
- U(de) ? (N(), l("p", gk, V(U(de)), 1)) : c("", !0)
25552
+ u("p", Nk, V(U(ue)), 1),
25553
+ U(de) ? (N(), l("p", Pk, V(U(de)), 1)) : c("", !0)
25176
25554
  ], 38)])) : (N(), l(t, { key: 1 }, [!U(T) && !U(v) ? (N(), l("div", {
25177
25555
  key: 0,
25178
25556
  class: w(["fou-upload-crop__trigger", { "is-dragover": U(_) }]),
@@ -25189,8 +25567,8 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25189
25567
  icon: "image-add-line",
25190
25568
  class: "fou-upload-crop__trigger-icon"
25191
25569
  }),
25192
- u("p", _k, V(U(ue)), 1),
25193
- U(de) ? (N(), l("p", vk, V(U(de)), 1)) : c("", !0)
25570
+ u("p", Fk, V(U(ue)), 1),
25571
+ U(de) ? (N(), l("p", Ik, V(U(de)), 1)) : c("", !0)
25194
25572
  ], 38)) : !U(v) && U(S) ? (N(), l("div", {
25195
25573
  key: 1,
25196
25574
  class: "fou-upload-crop__result",
@@ -25200,25 +25578,25 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25200
25578
  class: "fou-upload-crop__result-img",
25201
25579
  alt: "",
25202
25580
  style: E(U(ge))
25203
- }, null, 12, yk), u("div", bk, [
25581
+ }, null, 12, Lk), u("div", Rk, [
25204
25582
  u("button", {
25205
25583
  type: "button",
25206
25584
  disabled: e.disabled,
25207
25585
  title: "重新裁切",
25208
25586
  onClick: Z
25209
- }, [m(a, { icon: "crop-line" })], 8, xk),
25587
+ }, [m(a, { icon: "crop-line" })], 8, zk),
25210
25588
  u("button", {
25211
25589
  type: "button",
25212
25590
  disabled: e.disabled,
25213
25591
  title: "查看原图",
25214
25592
  onClick: i[2] ||= (e) => y.value = !0
25215
- }, [m(a, { icon: "zoom-in-line" })], 8, Sk),
25593
+ }, [m(a, { icon: "zoom-in-line" })], 8, Bk),
25216
25594
  u("button", {
25217
25595
  type: "button",
25218
25596
  disabled: e.disabled,
25219
25597
  title: "删除",
25220
25598
  onClick: Qe
25221
- }, [m(a, { icon: "delete-bin-line" })], 8, Ck)
25599
+ }, [m(a, { icon: "delete-bin-line" })], 8, Vk)
25222
25600
  ])], 4)) : c("", !0)], 64)),
25223
25601
  (N(), s(n, { to: "body" }, [U(v) ? (N(), l("div", {
25224
25602
  key: 0,
@@ -25227,8 +25605,8 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25227
25605
  "aria-modal": "true",
25228
25606
  "aria-label": e.dialogTitle,
25229
25607
  onClick: q(We, ["self"])
25230
- }, [u("div", Tk, [
25231
- u("div", Ek, [u("span", null, V(e.dialogTitle), 1), u("button", {
25608
+ }, [u("div", Uk, [
25609
+ u("div", Wk, [u("span", null, V(e.dialogTitle), 1), u("button", {
25232
25610
  type: "button",
25233
25611
  class: "fou-upload-crop__close",
25234
25612
  onClick: Ge
@@ -25247,7 +25625,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25247
25625
  style: E(U(_e)),
25248
25626
  alt: "",
25249
25627
  draggable: "false"
25250
- }, null, 12, Dk), u("div", {
25628
+ }, null, 12, Gk), u("div", {
25251
25629
  class: w(["fou-upload-crop__crop", { "is-round": U(K) }]),
25252
25630
  style: E(U(ve)),
25253
25631
  onPointerdown: q(Ve, ["stop"])
@@ -25255,8 +25633,8 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25255
25633
  key: e,
25256
25634
  class: w(["fou-upload-crop__handle", `fou-upload-crop__handle--${e}`]),
25257
25635
  onPointerdown: q((t) => Ue(t, e), ["stop"])
25258
- }, null, 42, Ok)), 64))], 38)], 544),
25259
- u("div", kk, [
25636
+ }, null, 42, Kk)), 64))], 38)], 544),
25637
+ u("div", qk, [
25260
25638
  e.showZoom ? (N(), l("button", {
25261
25639
  key: 0,
25262
25640
  type: "button",
@@ -25300,7 +25678,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25300
25678
  }, [m(a, { icon: "refresh-line" })]),
25301
25679
  e.showSizeInputs && !U(J) ? (N(), l(t, { key: 6 }, [
25302
25680
  i[18] ||= u("span", { class: "fou-upload-crop__divider" }, null, -1),
25303
- u("label", Ak, [i[16] ||= u("span", null, "宽", -1), ce(u("input", {
25681
+ u("label", Jk, [i[16] ||= u("span", null, "宽", -1), ce(u("input", {
25304
25682
  "onUpdate:modelValue": i[9] ||= (e) => b(ie) ? ie.value = e : null,
25305
25683
  type: "number",
25306
25684
  min: "20",
@@ -25311,7 +25689,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25311
25689
  void 0,
25312
25690
  { number: !0 }
25313
25691
  ]])]),
25314
- u("label", jk, [i[17] ||= u("span", null, "高", -1), ce(u("input", {
25692
+ u("label", Yk, [i[17] ||= u("span", null, "高", -1), ce(u("input", {
25315
25693
  "onUpdate:modelValue": i[11] ||= (e) => b(ae) ? ae.value = e : null,
25316
25694
  type: "number",
25317
25695
  min: "20",
@@ -25329,7 +25707,7 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25329
25707
  }, "应用")
25330
25708
  ], 64)) : c("", !0),
25331
25709
  i[19] ||= u("span", { class: "fou-upload-crop__divider" }, null, -1),
25332
- u("label", Mk, [u("span", null, "质量 " + V(U(se)), 1), ce(u("input", {
25710
+ u("label", Xk, [u("span", null, "质量 " + V(U(se)), 1), ce(u("input", {
25333
25711
  "onUpdate:modelValue": i[14] ||= (e) => b(se) ? se.value = e : null,
25334
25712
  type: "range",
25335
25713
  min: "0.1",
@@ -25349,18 +25727,18 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25349
25727
  onClick: Je
25350
25728
  }, [m(a, { icon: "check-line" }), p(" " + V(e.confirmText), 1)])
25351
25729
  ])
25352
- ])], 8, wk)) : c("", !0), U(y) ? (N(), l("div", {
25730
+ ])], 8, Hk)) : c("", !0), U(y) ? (N(), l("div", {
25353
25731
  key: 1,
25354
25732
  class: "fou-upload-crop__preview",
25355
25733
  onClick: i[15] ||= (e) => y.value = !1
25356
25734
  }, [u("img", {
25357
25735
  src: U(S) || U(x),
25358
25736
  alt: ""
25359
- }, null, 8, Nk)])) : c("", !0)]))
25737
+ }, null, 8, Zk)])) : c("", !0)]))
25360
25738
  ], 2);
25361
25739
  };
25362
25740
  }
25363
- }), Fk = /* @__PURE__ */ X({ default: () => Ik }), Ik = /*#__PURE__*/ Z(Pk, [["__scopeId", "data-v-55bac23f"]]), Lk = { class: "fou-watermark__content" }, Rk = /*@__PURE__*/ h({
25741
+ }), $k = /* @__PURE__ */ X({ default: () => eA }), eA = /*#__PURE__*/ Z(Qk, [["__scopeId", "data-v-55bac23f"]]), tA = { class: "fou-watermark__content" }, nA = /*@__PURE__*/ h({
25364
25742
  name: "FouWatermark",
25365
25743
  __name: "index",
25366
25744
  props: {
@@ -25413,9 +25791,9 @@ var cE = ["aria-expanded", "aria-disabled"], lE = {
25413
25791
  class: "fou-watermark__layer",
25414
25792
  style: E(U(s)),
25415
25793
  "aria-hidden": "true"
25416
- }, null, 4), u("div", Lk, [L(e.$slots, "default", {}, void 0, !0)])], 512));
25794
+ }, null, 4), u("div", tA, [L(e.$slots, "default", {}, void 0, !0)])], 512));
25417
25795
  }
25418
- }), zk = /* @__PURE__ */ X({ default: () => Bk }), Bk = /*#__PURE__*/ Z(Rk, [["__scopeId", "data-v-52b35f95"]]);
25796
+ }), rA = /* @__PURE__ */ X({ default: () => iA }), iA = /*#__PURE__*/ Z(nA, [["__scopeId", "data-v-52b35f95"]]);
25419
25797
  //#endregion
25420
25798
  //#region virtual:svg-icons-register
25421
25799
  if (typeof window < "u") {
@@ -25427,7 +25805,7 @@ if (typeof window < "u") {
25427
25805
  }
25428
25806
  //#endregion
25429
25807
  //#region components/FouInfiniteScroll/index.ts
25430
- var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25808
+ var aA = "__fouInfiniteScroll", oA = (e, t) => {
25431
25809
  let n = t.value, r = typeof n == "function" ? n : n?.handler, i = (t, n) => {
25432
25810
  let r = e.getAttribute(t);
25433
25811
  return r == null ? n : Number(r);
@@ -25442,8 +25820,8 @@ var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25442
25820
  distance: typeof n == "object" && n?.distance != null ? n.distance : i("infinite-scroll-distance", 0),
25443
25821
  immediate: typeof n == "object" && n?.immediate != null ? n.immediate : a("infinite-scroll-immediate", !0)
25444
25822
  };
25445
- }, Uk = async (e, t) => {
25446
- let n = Hk(e, t), r = e[Vk];
25823
+ }, sA = async (e, t) => {
25824
+ let n = oA(e, t), r = e[aA];
25447
25825
  if (!(!r || n.disabled || !n.handler || r.pending) && !(e.scrollHeight - e.scrollTop - e.clientHeight > n.distance)) {
25448
25826
  r.pending = !0;
25449
25827
  try {
@@ -25452,47 +25830,47 @@ var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25452
25830
  r.pending = !1;
25453
25831
  }
25454
25832
  }
25455
- }, Wk = (e, t) => {
25456
- Gk(e);
25457
- let n = Hk(e, t), r = {
25833
+ }, cA = (e, t) => {
25834
+ lA(e);
25835
+ let n = oA(e, t), r = {
25458
25836
  pending: !1,
25459
25837
  onScroll: () => {
25460
- let n = Hk(e, t);
25461
- r.timer && clearTimeout(r.timer), r.timer = setTimeout(() => Uk(e, t), n.delay);
25838
+ let n = oA(e, t);
25839
+ r.timer && clearTimeout(r.timer), r.timer = setTimeout(() => sA(e, t), n.delay);
25462
25840
  }
25463
25841
  };
25464
- e.addEventListener("scroll", r.onScroll, { passive: !0 }), e[Vk] = r, n.immediate && queueMicrotask(() => Uk(e, t));
25465
- }, Gk = (e) => {
25466
- let t = e[Vk];
25467
- t && (e.removeEventListener("scroll", t.onScroll), t.timer && clearTimeout(t.timer), t.observer?.disconnect(), delete e[Vk]);
25468
- }, Kk = {
25469
- mounted: Wk,
25842
+ e.addEventListener("scroll", r.onScroll, { passive: !0 }), e[aA] = r, n.immediate && queueMicrotask(() => sA(e, t));
25843
+ }, lA = (e) => {
25844
+ let t = e[aA];
25845
+ t && (e.removeEventListener("scroll", t.onScroll), t.timer && clearTimeout(t.timer), t.observer?.disconnect(), delete e[aA]);
25846
+ }, uA = {
25847
+ mounted: cA,
25470
25848
  updated(e, t) {
25471
- e[Vk] ? Hk(e, t).immediate && queueMicrotask(() => Uk(e, t)) : Wk(e, t);
25849
+ e[aA] ? oA(e, t).immediate && queueMicrotask(() => sA(e, t)) : cA(e, t);
25472
25850
  },
25473
- unmounted: Gk
25474
- }, qk = { install(e) {
25475
- e.directive("fou-infinite-scroll", Kk);
25476
- } }, Jk = {
25851
+ unmounted: lA
25852
+ }, dA = { install(e) {
25853
+ e.directive("fou-infinite-scroll", uA);
25854
+ } }, fA = {
25477
25855
  "top-right": [],
25478
25856
  "top-left": [],
25479
25857
  "bottom-right": [],
25480
25858
  "bottom-left": []
25481
- }, Yk = 0, Xk = (e, t = 20) => {
25859
+ }, pA = 0, mA = (e, t = 20) => {
25482
25860
  let n = `fou-notify-host-${e}`, r = document.getElementById(n);
25483
25861
  return r || (r = document.createElement("div"), r.id = n, r.className = `fou-notify-host fou-notify-host--${e}`, document.body.appendChild(r)), r.style.setProperty("--fou-notify-offset", `${t}px`), r;
25484
- }, Zk = (e) => {
25485
- Object.keys(Jk).forEach((t) => {
25486
- let n = Jk[t].findIndex((t) => t.id === e);
25862
+ }, hA = (e) => {
25863
+ Object.keys(fA).forEach((t) => {
25864
+ let n = fA[t].findIndex((t) => t.id === e);
25487
25865
  if (n >= 0) {
25488
- let [e] = Jk[t].splice(n, 1);
25866
+ let [e] = fA[t].splice(n, 1);
25489
25867
  e.timer && clearTimeout(e.timer), e.app.unmount(), e.el.remove();
25490
25868
  }
25491
25869
  });
25492
- }, Qk = Object.assign((e) => {
25493
- let t = typeof e == "string" ? { message: e } : { ...e }, n = t.position || "top-right", r = t.type || "info", i = t.duration ?? 4500, a = t.id || `fou-notify-${++Yk}`, s = t.offset ?? 20;
25494
- Zk(a);
25495
- let c = Xk(n, s), l = document.createElement("div");
25870
+ }, gA = Object.assign((e) => {
25871
+ let t = typeof e == "string" ? { message: e } : { ...e }, n = t.position || "top-right", r = t.type || "info", i = t.duration ?? 4500, a = t.id || `fou-notify-${++pA}`, s = t.offset ?? 20;
25872
+ hA(a);
25873
+ let c = mA(n, s), l = document.createElement("div");
25496
25874
  l.className = "fou-notify-wrap", c.appendChild(l);
25497
25875
  let u = F(!0), d = {
25498
25876
  id: a,
@@ -25501,10 +25879,10 @@ var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25501
25879
  position: n
25502
25880
  }, f = () => {
25503
25881
  d.timer &&= (clearTimeout(d.timer), void 0), u.value = !1, setTimeout(() => {
25504
- Zk(a), t.onClose?.();
25882
+ hA(a), t.onClose?.();
25505
25883
  }, 200);
25506
25884
  }, p = o({ setup() {
25507
- return () => v(DC, {
25885
+ return () => v(GC, {
25508
25886
  id: a,
25509
25887
  type: r,
25510
25888
  position: n,
@@ -25515,13 +25893,13 @@ var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25515
25893
  onClose: f
25516
25894
  });
25517
25895
  } });
25518
- return i > 0 && (d.timer = setTimeout(f, i)), p.mount(l), d.app = p, Jk[n].push(d), {
25519
- close: () => Zk(a),
25896
+ return i > 0 && (d.timer = setTimeout(f, i)), p.mount(l), d.app = p, fA[n].push(d), {
25897
+ close: () => hA(a),
25520
25898
  id: a
25521
25899
  };
25522
25900
  }, {
25523
25901
  success(e) {
25524
- return Qk(typeof e == "string" ? {
25902
+ return gA(typeof e == "string" ? {
25525
25903
  message: e,
25526
25904
  type: "success"
25527
25905
  } : {
@@ -25530,7 +25908,7 @@ var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25530
25908
  });
25531
25909
  },
25532
25910
  warning(e) {
25533
- return Qk(typeof e == "string" ? {
25911
+ return gA(typeof e == "string" ? {
25534
25912
  message: e,
25535
25913
  type: "warning"
25536
25914
  } : {
@@ -25539,7 +25917,7 @@ var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25539
25917
  });
25540
25918
  },
25541
25919
  info(e) {
25542
- return Qk(typeof e == "string" ? {
25920
+ return gA(typeof e == "string" ? {
25543
25921
  message: e,
25544
25922
  type: "info"
25545
25923
  } : {
@@ -25548,7 +25926,7 @@ var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25548
25926
  });
25549
25927
  },
25550
25928
  error(e) {
25551
- return Qk(typeof e == "string" ? {
25929
+ return gA(typeof e == "string" ? {
25552
25930
  message: e,
25553
25931
  type: "error"
25554
25932
  } : {
@@ -25557,16 +25935,16 @@ var Vk = "__fouInfiniteScroll", Hk = (e, t) => {
25557
25935
  });
25558
25936
  },
25559
25937
  closeAll: (e) => {
25560
- (e ? [e] : Object.keys(Jk)).forEach((e) => {
25561
- [...Jk[e]].forEach((e) => Zk(e.id));
25938
+ (e ? [e] : Object.keys(fA)).forEach((e) => {
25939
+ [...fA[e]].forEach((e) => hA(e.id));
25562
25940
  });
25563
25941
  }
25564
- }), $k = { install(e) {
25565
- e.config.globalProperties.$fouNotify = Qk, e.provide("$fouNotify", Qk);
25942
+ }), _A = { install(e) {
25943
+ e.config.globalProperties.$fouNotify = gA, e.provide("$fouNotify", gA);
25566
25944
  } };
25567
25945
  //#endregion
25568
25946
  //#region node_modules/.pnpm/mitt@3.0.1/node_modules/mitt/dist/mitt.mjs
25569
- function eA(e) {
25947
+ function vA(e) {
25570
25948
  return {
25571
25949
  all: e ||= /* @__PURE__ */ new Map(),
25572
25950
  on: function(t, n) {
@@ -25589,16 +25967,16 @@ function eA(e) {
25589
25967
  }
25590
25968
  //#endregion
25591
25969
  //#region plugins/fou.ts
25592
- var tA, nA = { install: (e) => {
25593
- let t = (e = LS, t) => typeof e == "object" && e ? af.service(e) : af.service({
25970
+ var yA, bA = { install: (e) => {
25971
+ let t = (e = tC, t) => typeof e == "object" && e ? af.service(e) : af.service({
25594
25972
  text: String(e || ""),
25595
25973
  fullscreen: !0
25596
25974
  }), n = (e, t = "温馨提示", n) => {
25597
25975
  Fd(e, t, n);
25598
25976
  }, r = (e, t, n, r, i = "确定", a = "取消") => {
25599
25977
  Id(e, t || "温馨提示", n, r, i, a);
25600
- }, i = (e, t, n = "success", r, i = RS) => {
25601
- Qk({
25978
+ }, i = (e, t, n = "success", r, i = nC) => {
25979
+ gA({
25602
25980
  message: e,
25603
25981
  title: t,
25604
25982
  type: n,
@@ -25614,14 +25992,14 @@ var tA, nA = { install: (e) => {
25614
25992
  "bottom-left": "bottom-left"
25615
25993
  }[r || ""] || "top-right"
25616
25994
  });
25617
- }, a = eA(), o = (...e) => {
25995
+ }, a = vA(), o = (...e) => {
25618
25996
  a.emit(_e(e), e[1]);
25619
25997
  }, s = (...e) => {
25620
25998
  Reflect.apply(a.on, a, ve(e));
25621
25999
  }, c = (...e) => {
25622
26000
  Reflect.apply(a.off, a, ve(e));
25623
26001
  };
25624
- e.provide("$baseAlert", n), e.provide("$baseConfirm", r), e.provide("$baseLoading", t), e.provide("$baseNotify", i), e.provide("$pub", o), e.provide("$sub", s), e.provide("$unsub", c), tA = {
26002
+ e.provide("$baseAlert", n), e.provide("$baseConfirm", r), e.provide("$baseLoading", t), e.provide("$baseNotify", i), e.provide("$pub", o), e.provide("$sub", s), e.provide("$unsub", c), yA = {
25625
26003
  $baseAlert: n,
25626
26004
  $baseConfirm: r,
25627
26005
  $baseLoading: t,
@@ -25633,7 +26011,7 @@ var tA, nA = { install: (e) => {
25633
26011
  } };
25634
26012
  //#endregion
25635
26013
  //#region components/FouCanvasKit/modules/badgeCompat.ts
25636
- function rA(e) {
26014
+ function xA(e) {
25637
26015
  let t = String(e ?? "").trim();
25638
26016
  if (!t) return "";
25639
26017
  t = t.replace(/\s+/g, ""), t = t.replace(/^[中国中华人民共和國共和国]+/, "");
@@ -25645,8 +26023,8 @@ function rA(e) {
25645
26023
  }
25646
26024
  return t || e.trim();
25647
26025
  }
25648
- function iA(e, t) {
25649
- let n = (e.competition_name == null ? "" : String(e.competition_name)) || (t ?? ""), r = String(e.school_name ?? ""), i = String(e.school_short_name ?? e.school_name_short ?? "").trim() || rA(r);
26026
+ function SA(e, t) {
26027
+ let n = (e.competition_name == null ? "" : String(e.competition_name)) || (t ?? ""), r = String(e.school_name ?? ""), i = String(e.school_short_name ?? e.school_name_short ?? "").trim() || xA(r);
25650
26028
  return {
25651
26029
  competition_name: n,
25652
26030
  student_name: String(e.student_name ?? ""),
@@ -25675,15 +26053,15 @@ function iA(e, t) {
25675
26053
  competition_daily_end: String(e.competition_daily_end ?? "")
25676
26054
  };
25677
26055
  }
25678
- function aA(e, t) {
25679
- return iA(e, t);
26056
+ function CA(e, t) {
26057
+ return SA(e, t);
25680
26058
  }
25681
- function oA(e, t) {
25682
- return Ri(iA(e, t), t);
26059
+ function wA(e, t) {
26060
+ return Ri(SA(e, t), t);
25683
26061
  }
25684
26062
  //#endregion
25685
26063
  //#region components/FouCanvasKit/presets/badge.ts
25686
- var sA = [
26064
+ var TA = [
25687
26065
  "competition_name",
25688
26066
  "student_name",
25689
26067
  "competition_no",
@@ -25709,7 +26087,7 @@ var sA = [
25709
26087
  "venue_address",
25710
26088
  "competition_daily_start",
25711
26089
  "competition_daily_end"
25712
- ], cA = {
26090
+ ], EA = {
25713
26091
  competition_name: "比赛名称",
25714
26092
  student_name: "学生姓名",
25715
26093
  competition_no: "参赛编号",
@@ -25735,15 +26113,15 @@ var sA = [
25735
26113
  venue_address: "场地地址",
25736
26114
  competition_daily_start: "比赛当天开始时间",
25737
26115
  competition_daily_end: "比赛当天结束时间"
25738
- }, lA = /* @__PURE__ */ X({
25739
- BANNER_DEFAULT_MODULES: () => uA,
25740
- createBadgeDoc: () => fA,
25741
- createBannerDoc: () => dA
25742
- }), uA = Ni().map((e) => ({
26116
+ }, DA = /* @__PURE__ */ X({
26117
+ BANNER_DEFAULT_MODULES: () => OA,
26118
+ createBadgeDoc: () => AA,
26119
+ createBannerDoc: () => kA
26120
+ }), OA = Ni().map((e) => ({
25743
26121
  ...e,
25744
26122
  enabled: ["school", "competition"].includes(e.id)
25745
26123
  }));
25746
- function dA(e) {
26124
+ function kA(e) {
25747
26125
  return {
25748
26126
  version: 1,
25749
26127
  mode: "banner",
@@ -25785,11 +26163,11 @@ function dA(e) {
25785
26163
  fontFamily: "Microsoft YaHei, sans-serif",
25786
26164
  color: "#ccfbf1"
25787
26165
  }],
25788
- dataModules: uA,
26166
+ dataModules: OA,
25789
26167
  ...e
25790
26168
  };
25791
26169
  }
25792
- function fA(e) {
26170
+ function AA(e) {
25793
26171
  return {
25794
26172
  version: 1,
25795
26173
  mode: "badge",
@@ -25808,119 +26186,13 @@ function fA(e) {
25808
26186
  };
25809
26187
  }
25810
26188
  //#endregion
25811
- //#region components/FouTable/excelTemplate.ts
25812
- function pA(e, t) {
25813
- return e.replace(/\{\{\s*([^}]+?)\s*\}\}/g, (e, n) => {
25814
- let r = t[n.trim()];
25815
- return r == null ? "" : String(r);
25816
- });
25817
- }
25818
- async function mA(e) {
25819
- if (e instanceof ArrayBuffer) return e;
25820
- if (ArrayBuffer.isView(e)) {
25821
- let t = e;
25822
- return t.buffer.slice(t.byteOffset, t.byteOffset + t.byteLength);
25823
- }
25824
- return e.arrayBuffer();
25825
- }
25826
- function hA(e, t) {
25827
- let n = document.createElement("a");
25828
- n.href = URL.createObjectURL(e), n.download = t, n.click(), URL.revokeObjectURL(n.href);
25829
- }
25830
- function gA(e, t) {
25831
- let n = t.endsWith(".xlsx") ? t : `${t}.xlsx`, r = Uint8Array.from(e);
25832
- hA(new Blob([r], { type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" }), n);
25833
- }
25834
- function _A(e, t) {
25835
- let n = typeof t == "number" ? e.SheetNames[t] : t && e.SheetNames.includes(t) ? t : e.SheetNames[0], r = n ? e.Sheets[n] : void 0;
25836
- if (!r) throw Error("Excel 模板没有可用的工作表");
25837
- return {
25838
- name: n,
25839
- ws: r
25840
- };
25841
- }
25842
- function vA(e) {
25843
- return e instanceof Date || typeof e == "number" || typeof e == "boolean" ? e : e == null ? "" : String(e);
25844
- }
25845
- async function yA(e) {
25846
- let t = await import("xlsx"), n = await mA(e.template), r = t.read(n, {
25847
- type: "array",
25848
- cellDates: !0
25849
- }), i = e.data || {};
25850
- if (Object.keys(i).length && r.SheetNames.forEach((e) => {
25851
- let n = r.Sheets[e], a = n["!ref"];
25852
- if (!a) return;
25853
- let o = t.utils.decode_range(a);
25854
- for (let e = o.s.r; e <= o.e.r; e++) for (let r = o.s.c; r <= o.e.c; r++) {
25855
- let a = n[t.utils.encode_cell({
25856
- r: e,
25857
- c: r
25858
- })];
25859
- !a || typeof a.v != "string" || !a.v.includes("{{") || (a.v = pA(a.v, i), a.t = "s", delete a.w);
25860
- }
25861
- }), e.cells) {
25862
- let { ws: t } = _A(r);
25863
- Object.entries(e.cells).forEach(([e, n]) => {
25864
- t[e] = {
25865
- t: typeof n == "number" ? "n" : "s",
25866
- v: vA(n)
25867
- };
25868
- });
25869
- }
25870
- return e.tables?.forEach((e) => {
25871
- let { ws: n } = _A(r, e.sheet), i = e.rows.map((t) => e.columns.map((e) => vA(t[e]))), a = e.writeHeader ? [e.headers || e.columns, ...i] : i;
25872
- t.utils.sheet_add_aoa(n, a, { origin: e.start });
25873
- }), t.write(r, {
25874
- type: "array",
25875
- bookType: "xlsx"
25876
- });
25877
- }
25878
- async function bA(e) {
25879
- gA(await yA(e), e.filename || "filled.xlsx");
25880
- }
25881
- async function xA(e = {}) {
25882
- let t = await import("xlsx"), n = e.headers?.length ? e.headers : [
25883
- "名称",
25884
- "状态",
25885
- "数量"
25886
- ], r = t.utils.aoa_to_sheet([
25887
- [e.title || "月度报表"],
25888
- ["标题:{{title}}"],
25889
- [
25890
- "日期:{{date}}",
25891
- "",
25892
- "部门:{{dept}}"
25893
- ],
25894
- [],
25895
- n
25896
- ]);
25897
- r["!cols"] = n.map(() => ({ wch: 18 })), r["!merges"] = [{
25898
- s: {
25899
- r: 0,
25900
- c: 0
25901
- },
25902
- e: {
25903
- r: 0,
25904
- c: Math.max(n.length - 1, 2)
25905
- }
25906
- }];
25907
- let i = t.utils.book_new();
25908
- return t.utils.book_append_sheet(i, r, e.sheetName || "报表"), t.write(i, {
25909
- type: "array",
25910
- bookType: "xlsx"
25911
- });
25912
- }
25913
- async function SA(e = {}) {
25914
- gA(await xA(e), e.filename || "报表模板.xlsx");
25915
- }
25916
- //#endregion
25917
26189
  //#region index.ts
25918
- var CA = "2.3.5", wA = (e) => e.replace(/\B([A-Z])/g, "-$1").toLowerCase(), TA = (e, t, n) => {
26190
+ var jA = "2.3.6", MA = (e) => e.replace(/\B([A-Z])/g, "-$1").toLowerCase(), NA = (e, t, n) => {
25919
26191
  e.component(t) || e.component(t, n);
25920
- let r = wA(t);
26192
+ let r = MA(t);
25921
26193
  r !== t && !e.component(r) && e.component(r, n);
25922
- }, EA = (e) => {
25923
- e.use(rr), e.use($k), e.use(of), e.use(qk), TA(e, "FouLoading", Jo), TA(e, "FouStatistics", GE), TA(e, "FouStatistic", GE), e.use(nA), TA(e, "FouIcon", Fe), TA(e, "FouOption", oE), TA(e, "FouDropdownMenu", js), TA(e, "FouDropdownItem", Ps), TA(e, "FouCheckboxGroup", Pa), TA(e, "FouRadioGroup", Ua), TA(e, "FouMenuRoot", IS), TA(e, "FouMenuNav", xC), TA(e, "FouMenuNavItem", fC), TA(e, "FouMenuNavSub", _C), TA(e, "FouStep", iD), TA(e, "FouTabBar", En), TA(e, "FouTabs", uD), TA(e, "FouTabPane", An), TA(e, "FouBreadcrumb", nv), TA(e, "FouBreadcrumbItem", Z_), TA(e, "FouCalendar", hv), TA(e, "FouTour", nO), TA(e, "FouTourStep", qD), TA(e, "FouLink", mS), TA(e, "FouInputTag", rS), TA(e, "FouSplitter", LE), TA(e, "FouSplitterPanel", PE), TA(e, "FouCollapseItem", Yv), TA(e, "FouCarouselItem", Dv), TA(e, "FouTimelineItem", PD), TA(e, "FouDescriptionsItem", qy), TA(e, "FouAnchorLink", Qe);
26194
+ }, PA = (e) => {
26195
+ e.use(rr), e.use(_A), e.use(of), e.use(dA), NA(e, "FouLoading", Jo), NA(e, "FouStatistics", lD), NA(e, "FouStatistic", lD), e.use(bA), NA(e, "FouIcon", Fe), NA(e, "FouOption", wE), NA(e, "FouDropdownMenu", js), NA(e, "FouDropdownItem", Ps), NA(e, "FouCheckboxGroup", Pa), NA(e, "FouRadioGroup", Ua), NA(e, "FouMenuRoot", eC), NA(e, "FouMenuNav", zC), NA(e, "FouMenuNavItem", AC), NA(e, "FouMenuNavSub", FC), NA(e, "FouStep", SD), NA(e, "FouTabBar", En), NA(e, "FouTabs", OD), NA(e, "FouTabPane", An), NA(e, "FouBreadcrumb", nv), NA(e, "FouBreadcrumbItem", Z_), NA(e, "FouCalendar", hv), NA(e, "FouTour", bO), NA(e, "FouTourStep", dO), NA(e, "FouLink", MS), NA(e, "FouInputTag", xS), NA(e, "FouSplitter", tD), NA(e, "FouSplitterPanel", QE), NA(e, "FouCollapseItem", Yv), NA(e, "FouCarouselItem", Dv), NA(e, "FouTimelineItem", QD), NA(e, "FouDescriptionsItem", qy), NA(e, "FouAnchorLink", Qe);
25924
26196
  let t = /* #__PURE__ */ Object.assign({
25925
26197
  "./components/FouAffix/index.vue": ke,
25926
26198
  "./components/FouAlert/index.vue": He,
@@ -25983,110 +26255,111 @@ var CA = "2.3.5", wA = (e) => e.replace(/\B([A-Z])/g, "-$1").toLowerCase(), TA =
25983
26255
  "./components/FouDropdown/index.vue": Es,
25984
26256
  "./components/FouEllipsis/index.vue": _b,
25985
26257
  "./components/FouEmpty/index.vue": In,
25986
- "./components/FouException/index.vue": Ob,
25987
- "./components/FouFloatButton/index.vue": Fb,
25988
- "./components/FouFloatButtonGroup/index.vue": zb,
26258
+ "./components/FouExcelImportExport/index.vue": Fb,
26259
+ "./components/FouException/index.vue": Kb,
26260
+ "./components/FouFloatButton/index.vue": $b,
26261
+ "./components/FouFloatButtonGroup/index.vue": rx,
25989
26262
  "./components/FouForm/index.vue": Ca,
25990
26263
  "./components/FouFormItem/index.vue": uo,
25991
- "./components/FouFullscreen/index.vue": Hb,
25992
- "./components/FouGrid/index.vue": Jb,
25993
- "./components/FouHighlight/index.vue": Qb,
25994
- "./components/FouHoverCard/index.vue": rx,
26264
+ "./components/FouFullscreen/index.vue": ox,
26265
+ "./components/FouGrid/index.vue": fx,
26266
+ "./components/FouHighlight/index.vue": gx,
26267
+ "./components/FouHoverCard/index.vue": xx,
25995
26268
  "./components/FouIcon/index.vue": Pe,
25996
- "./components/FouIconPicker/index.vue": kx,
25997
- "./components/FouImage/index.vue": Vx,
25998
- "./components/FouImagePreviewGroup/index.vue": Gx,
25999
- "./components/FouImageViewer/index.vue": Fx,
26269
+ "./components/FouIconPicker/index.vue": qx,
26270
+ "./components/FouImage/index.vue": aS,
26271
+ "./components/FouImagePreviewGroup/index.vue": lS,
26272
+ "./components/FouImageViewer/index.vue": $x,
26000
26273
  "./components/FouInput/index.vue": xo,
26001
26274
  "./components/FouInputNumber/index.vue": ba,
26002
- "./components/FouInputOtp/index.vue": Yx,
26003
- "./components/FouInputTag/index.vue": nS,
26004
- "./components/FouKbd/index.vue": aS,
26005
- "./components/FouLayoutContainer/index.vue": cS,
26006
- "./components/FouLink/index.vue": pS,
26007
- "./components/FouLinkPreview/index.vue": xS,
26275
+ "./components/FouInputOtp/index.vue": pS,
26276
+ "./components/FouInputTag/index.vue": bS,
26277
+ "./components/FouKbd/index.vue": CS,
26278
+ "./components/FouLayoutContainer/index.vue": ES,
26279
+ "./components/FouLink/index.vue": jS,
26280
+ "./components/FouLinkPreview/index.vue": zS,
26008
26281
  "./components/FouLoading/spinner.vue": qo,
26009
- "./components/FouMention/index.vue": AS,
26010
- "./components/FouMenu/FouMenuRoot.vue": FS,
26011
- "./components/FouMenu/components/FouMenuItem.vue": JS,
26012
- "./components/FouMenu/components/FouSubMenu.vue": aC,
26013
- "./components/FouMenu/index.vue": ZS,
26014
- "./components/FouMenuNav/FouMenuNavItem.vue": dC,
26015
- "./components/FouMenuNav/FouMenuNavSub.vue": gC,
26016
- "./components/FouMenuNav/index.vue": bC,
26282
+ "./components/FouMention/index.vue": JS,
26283
+ "./components/FouMenu/FouMenuRoot.vue": $S,
26284
+ "./components/FouMenu/components/FouMenuItem.vue": fC,
26285
+ "./components/FouMenu/components/FouSubMenu.vue": CC,
26286
+ "./components/FouMenu/index.vue": hC,
26287
+ "./components/FouMenuNav/FouMenuNavItem.vue": kC,
26288
+ "./components/FouMenuNav/FouMenuNavSub.vue": PC,
26289
+ "./components/FouMenuNav/index.vue": RC,
26017
26290
  "./components/FouMsg/FouMsgItem.vue": Jn,
26018
- "./components/FouNotification/FouNotificationItem.vue": EC,
26019
- "./components/FouPage/index.vue": kC,
26020
- "./components/FouPageHeader/index.vue": BC,
26021
- "./components/FouPageMain/index.vue": XC,
26291
+ "./components/FouNotification/FouNotificationItem.vue": WC,
26292
+ "./components/FouPage/index.vue": qC,
26293
+ "./components/FouPageHeader/index.vue": iw,
26294
+ "./components/FouPageMain/index.vue": mw,
26022
26295
  "./components/FouPagination/index.vue": ci,
26023
- "./components/FouParagraph/index.vue": $C,
26024
- "./components/FouPasswordStrength/index.vue": iw,
26025
- "./components/FouPopconfirm/index.vue": dw,
26026
- "./components/FouPopover/index.vue": gw,
26027
- "./components/FouProgress/index.vue": Ew,
26028
- "./components/FouQrcode/index.vue": iT,
26029
- "./components/FouQueryForm/components/FouQueryFormBottomPanel.vue": lT,
26030
- "./components/FouQueryForm/components/FouQueryFormLeftPanel.vue": pT,
26031
- "./components/FouQueryForm/components/FouQueryFormRightPanel.vue": _T,
26032
- "./components/FouQueryForm/components/FouQueryFormTopPanel.vue": ST,
26033
- "./components/FouQueryForm/index.vue": ET,
26296
+ "./components/FouParagraph/index.vue": _w,
26297
+ "./components/FouPasswordStrength/index.vue": Sw,
26298
+ "./components/FouPopconfirm/index.vue": kw,
26299
+ "./components/FouPopover/index.vue": Pw,
26300
+ "./components/FouProgress/index.vue": Ww,
26301
+ "./components/FouQrcode/index.vue": ST,
26302
+ "./components/FouQueryForm/components/FouQueryFormBottomPanel.vue": DT,
26303
+ "./components/FouQueryForm/components/FouQueryFormLeftPanel.vue": jT,
26304
+ "./components/FouQueryForm/components/FouQueryFormRightPanel.vue": FT,
26305
+ "./components/FouQueryForm/components/FouQueryFormTopPanel.vue": BT,
26306
+ "./components/FouQueryForm/index.vue": WT,
26034
26307
  "./components/FouRadio/FouRadioGroup.vue": Ha,
26035
26308
  "./components/FouRadio/index.vue": Ja,
26036
- "./components/FouRate/index.vue": NT,
26037
- "./components/FouRefresh/index.vue": IT,
26038
- "./components/FouResult/index.vue": Tb,
26039
- "./components/FouRow/index.vue": zT,
26309
+ "./components/FouRate/index.vue": ZT,
26310
+ "./components/FouRefresh/index.vue": eE,
26311
+ "./components/FouResult/index.vue": Ub,
26312
+ "./components/FouRow/index.vue": rE,
26040
26313
  "./components/FouScrollbar/index.vue": rd,
26041
- "./components/FouSearchBar/index.vue": UT,
26042
- "./components/FouSearchInput/index.vue": QT,
26043
- "./components/FouSegmented/index.vue": nE,
26044
- "./components/FouSelect/FouOption.vue": aE,
26314
+ "./components/FouSearchBar/index.vue": sE,
26315
+ "./components/FouSearchInput/index.vue": gE,
26316
+ "./components/FouSegmented/index.vue": bE,
26317
+ "./components/FouSelect/FouOption.vue": CE,
26045
26318
  "./components/FouSelect/index.vue": ao,
26046
- "./components/FouSelectV2/index.vue": gE,
26319
+ "./components/FouSelectV2/index.vue": PE,
26047
26320
  "./components/FouSkeleton/index.vue": di,
26048
26321
  "./components/FouSlider/index.vue": cp,
26049
- "./components/FouSpace/index.vue": bE,
26050
- "./components/FouSparkline/index.vue": OE,
26051
- "./components/FouSplitter/FouSplitterPanel.vue": NE,
26052
- "./components/FouSplitter/index.vue": IE,
26053
- "./components/FouStatistic/index.vue": qE,
26054
- "./components/FouStatistics/index.vue": WE,
26055
- "./components/FouStep/index.vue": rD,
26056
- "./components/FouSteps/index.vue": oD,
26322
+ "./components/FouSpace/index.vue": RE,
26323
+ "./components/FouSparkline/index.vue": KE,
26324
+ "./components/FouSplitter/FouSplitterPanel.vue": ZE,
26325
+ "./components/FouSplitter/index.vue": eD,
26326
+ "./components/FouStatistic/index.vue": dD,
26327
+ "./components/FouStatistics/index.vue": cD,
26328
+ "./components/FouStep/index.vue": xD,
26329
+ "./components/FouSteps/index.vue": wD,
26057
26330
  "./components/FouSwitch/index.vue": Aa,
26058
26331
  "./components/FouTabBar/index.vue": Tn,
26059
26332
  "./components/FouTabPane/index.vue": kn,
26060
26333
  "./components/FouTable/index.vue": su,
26061
26334
  "./components/FouTableColumn/index.vue": uu,
26062
- "./components/FouTabs/index.vue": lD,
26335
+ "./components/FouTabs/index.vue": DD,
26063
26336
  "./components/FouTag/index.vue": mu,
26064
- "./components/FouText/index.vue": fD,
26337
+ "./components/FouText/index.vue": AD,
26065
26338
  "./components/FouTime/index.vue": is,
26066
- "./components/FouTimeAgo/index.vue": gD,
26067
- "./components/FouTimeSelect/index.vue": SD,
26068
- "./components/FouTimeline/index.vue": TD,
26069
- "./components/FouTimelineItem/index.vue": ND,
26070
- "./components/FouTips/index.vue": RD,
26071
- "./components/FouTitle/index.vue": VD,
26339
+ "./components/FouTimeAgo/index.vue": PD,
26340
+ "./components/FouTimeSelect/index.vue": BD,
26341
+ "./components/FouTimeline/index.vue": UD,
26342
+ "./components/FouTimelineItem/index.vue": ZD,
26343
+ "./components/FouTips/index.vue": nO,
26344
+ "./components/FouTitle/index.vue": aO,
26072
26345
  "./components/FouTooltip/index.vue": cs,
26073
- "./components/FouTour/FouTourStep.vue": KD,
26074
- "./components/FouTour/index.vue": tO,
26075
- "./components/FouTransfer/index.vue": bO,
26346
+ "./components/FouTour/FouTourStep.vue": uO,
26347
+ "./components/FouTour/index.vue": yO,
26348
+ "./components/FouTransfer/index.vue": RO,
26076
26349
  "./components/FouTree/FouTreeNode.vue": Cd,
26077
26350
  "./components/FouTree/index.vue": jd,
26078
- "./components/FouTreeSelect/index.vue": EO,
26079
- "./components/FouTreeV2/index.vue": FO,
26080
- "./components/FouTrend/index.vue": BO,
26081
- "./components/FouUpload/index.vue": sk,
26082
- "./components/FouUploadCrop/index.vue": Fk,
26083
- "./components/FouWatermark/index.vue": zk
26351
+ "./components/FouTreeSelect/index.vue": WO,
26352
+ "./components/FouTreeV2/index.vue": $O,
26353
+ "./components/FouTrend/index.vue": ik,
26354
+ "./components/FouUpload/index.vue": Tk,
26355
+ "./components/FouUploadCrop/index.vue": $k,
26356
+ "./components/FouWatermark/index.vue": rA
26084
26357
  }), n = /\/(FouBadge\/views|FouQueryForm\/components|FouCanvasKit\/|FouMsg\/FouMsgItem|FouNotification\/FouNotificationItem|FouLoading\/spinner)/;
26085
26358
  Object.entries(t).forEach(([t, r]) => {
26086
26359
  if (n.test(t)) return;
26087
26360
  let i = r.default;
26088
- i && i.name && TA(e, i.name, i);
26361
+ i && i.name && NA(e, i.name, i);
26089
26362
  });
26090
- }, DA = EA, OA = EA;
26363
+ }, FA = PA, IA = PA;
26091
26364
  //#endregion
26092
- export { sA as BADGE_PLACEHOLDER_KEYS, cA as BADGE_PLACEHOLDER_LABELS, Mi as BUILTIN_DATA_MODULES, Jd as FOU_LOADING_EFFECTS, Pt as FouAreaPicker, W_ as FouBanner, nv as FouBreadcrumb, Z_ as FouBreadcrumbItem, Wn as FouButton, hv as FouCalendar, Qp as FouCanvasDataModulesPanel, Rg as FouCanvasEditor, ra as FouCanvasRenderer, jv as FouCheckTag, Ba as FouCheckbox, Pv as FouCode, Qv as FouColorPicker, fy as FouCombobox, hy as FouConfigProvider, Cy as FouContextMenu, Oy as FouCopy, Iy as FouCountdown, ed as FouDate, hn as FouDialog, ib as FouDigitalCard, mb as FouDrawer, vb as FouEllipsis, kb as FouException, Ib as FouFloatButton, Bb as FouFloatButtonGroup, wa as FouForm, fo as FouFormItem, $b as FouHighlight, ix as FouHoverCard, Hx as FouImage, Kx as FouImagePreviewGroup, Ix as FouImageViewer, So as FouInput, xa as FouInputNumber, Xx as FouInputOtp, rS as FouInputTag, oS as FouKbd, lS as FouLayoutContainer, mS as FouLink, SS as FouLinkPreview, Jo as FouLoading, of as FouLoadingPlugin, jS as FouMention, QS as FouMenu, $k as FouNotification, ZC as FouPageMain, li as FouPagination, ew as FouParagraph, aw as FouPasswordStrength, aT as FouQrcode, Ya as FouRadio, WT as FouSearchBar, $T as FouSearchInput, oo as FouSelect, _E as FouSelectV2, kE as FouSparkline, LE as FouSplitter, PE as FouSplitterPanel, JE as FouStatistic, GE as FouStatistics, ja as FouSwitch, En as FouTabBar, An as FouTabPane, cu as FouTable, uD as FouTabs, as as FouTime, _D as FouTimeAgo, CD as FouTimeSelect, HD as FouTitle, nO as FouTour, qD as FouTourStep, Md as FouTree, IO as FouTreeV2, VO as FouTrend, ck as FouUpload, Ik as FouUploadCrop, ji as LEGACY_FLAT_KEY_MAP, cm as buildCanvasHtml, gc as buildSheetMatrix, Ni as cloneBuiltinModules, At as codeToText, fA as createBadgeDoc, dA as createBannerDoc, zi as createCustomModule, xA as createExcelTemplate, lm as downloadCanvasHtml, dm as downloadElementPdf, tm as downloadElementPng, SA as downloadExcelTemplate, bA as downloadFilledExcel, _c as exportCsv, bc as exportSheet, vc as exportXls, yc as exportXlsx, yA as fillExcelTemplate, iA as flattenBadgeForMerge, aA as flattenDeskLabelForMerge, Fd as fouAlert, tA as fouApp, Id as fouConfirm, Rd as fouConfirmPromise, af as fouLoading, $ as fouMsg, Qk as fouNotify, Ii as listInsertableFields, oA as mapRowToContext, Ui as mergeBadgeText, Hi as mergeTemplateText, xc as parseImportFile, kt as regionData, Pi as resolveDataModules, Li as sampleContextFromModules, EA as setupFou, OA as setupFoucui, DA as setupQiuye, Kk as vFouInfiniteScroll, rf as vFouLoading, CA as version };
26365
+ export { TA as BADGE_PLACEHOLDER_KEYS, EA as BADGE_PLACEHOLDER_LABELS, Mi as BUILTIN_DATA_MODULES, Jd as FOU_LOADING_EFFECTS, Pt as FouAreaPicker, W_ as FouBanner, nv as FouBreadcrumb, Z_ as FouBreadcrumbItem, Wn as FouButton, hv as FouCalendar, Qp as FouCanvasDataModulesPanel, Rg as FouCanvasEditor, ra as FouCanvasRenderer, jv as FouCheckTag, Ba as FouCheckbox, Pv as FouCode, Qv as FouColorPicker, fy as FouCombobox, hy as FouConfigProvider, Cy as FouContextMenu, Oy as FouCopy, Iy as FouCountdown, ed as FouDate, hn as FouDialog, ib as FouDigitalCard, mb as FouDrawer, vb as FouEllipsis, Ib as FouExcelImportExport, qb as FouException, ex as FouFloatButton, ix as FouFloatButtonGroup, wa as FouForm, fo as FouFormItem, _x as FouHighlight, Sx as FouHoverCard, oS as FouImage, uS as FouImagePreviewGroup, eS as FouImageViewer, So as FouInput, xa as FouInputNumber, mS as FouInputOtp, xS as FouInputTag, wS as FouKbd, DS as FouLayoutContainer, MS as FouLink, BS as FouLinkPreview, Jo as FouLoading, of as FouLoadingPlugin, YS as FouMention, gC as FouMenu, _A as FouNotification, hw as FouPageMain, li as FouPagination, vw as FouParagraph, Cw as FouPasswordStrength, CT as FouQrcode, Ya as FouRadio, cE as FouSearchBar, _E as FouSearchInput, oo as FouSelect, FE as FouSelectV2, qE as FouSparkline, tD as FouSplitter, QE as FouSplitterPanel, fD as FouStatistic, lD as FouStatistics, ja as FouSwitch, En as FouTabBar, An as FouTabPane, cu as FouTable, OD as FouTabs, as as FouTime, FD as FouTimeAgo, VD as FouTimeSelect, oO as FouTitle, bO as FouTour, dO as FouTourStep, Md as FouTree, ek as FouTreeV2, ak as FouTrend, Ek as FouUpload, eA as FouUploadCrop, ji as LEGACY_FLAT_KEY_MAP, cm as buildCanvasHtml, gc as buildSheetMatrix, Ni as cloneBuiltinModules, At as codeToText, AA as createBadgeDoc, kA as createBannerDoc, zi as createCustomModule, Db as createExcelTemplate, lm as downloadCanvasHtml, dm as downloadElementPdf, tm as downloadElementPng, Ob as downloadExcelTemplate, Eb as downloadFilledExcel, _c as exportCsv, bc as exportSheet, vc as exportXls, yc as exportXlsx, Tb as fillExcelTemplate, SA as flattenBadgeForMerge, CA as flattenDeskLabelForMerge, Fd as fouAlert, yA as fouApp, Id as fouConfirm, Rd as fouConfirmPromise, af as fouLoading, $ as fouMsg, gA as fouNotify, jb as importFromExcelTemplate, Ii as listInsertableFields, wA as mapRowToContext, Ui as mergeBadgeText, Hi as mergeTemplateText, xc as parseImportFile, kt as regionData, Pi as resolveDataModules, Li as sampleContextFromModules, PA as setupFou, IA as setupFoucui, FA as setupQiuye, uA as vFouInfiniteScroll, rf as vFouLoading, jA as version };