@yoyaflow/yoya-ui 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -0
- package/README.zh-CN.md +38 -0
- package/dist/yoya-ui.umd.js +2 -2
- package/dist/yoya.core.js +194 -113
- package/dist/yoya.ssr.js +2468 -126
- package/dist/yoya.ui.css +35 -11
- package/dist/yoya.ui.js +2916 -2110
- package/package.json +1 -1
- package/types/core.d.ts +63 -0
- package/types/data-display.d.ts +77 -0
- package/types/form.d.ts +21 -0
- package/types/ssr.d.ts +43 -0
- package/types/svg.d.ts +1 -0
- package/types/yoya.ssr.d.ts +6 -1
package/dist/yoya.core.js
CHANGED
|
@@ -73,7 +73,7 @@ var c = class e {
|
|
|
73
73
|
child(...e) {
|
|
74
74
|
return e.flat(Infinity).forEach((e) => {
|
|
75
75
|
if (e == null) return;
|
|
76
|
-
let t =
|
|
76
|
+
let t = u(e);
|
|
77
77
|
this._pendingRemovals.delete(t), this._children.push(t), this._childrenDirty = !0;
|
|
78
78
|
}), this;
|
|
79
79
|
}
|
|
@@ -181,16 +181,16 @@ var c = class e {
|
|
|
181
181
|
return this._resolved && this._resolved.destroy(), super.destroy();
|
|
182
182
|
}
|
|
183
183
|
};
|
|
184
|
-
function
|
|
184
|
+
function te(e = "") {
|
|
185
185
|
return new l(e);
|
|
186
186
|
}
|
|
187
|
-
function
|
|
187
|
+
function u(e) {
|
|
188
188
|
if (e instanceof c) return e;
|
|
189
189
|
if (typeof e == "function" || e && typeof e == "object" && typeof e.render == "function") return new ee(e);
|
|
190
190
|
if (typeof e == "string" || typeof e == "number") return new l(e);
|
|
191
191
|
throw TypeError("ViewNode child must be a ViewNode, component, string, or number");
|
|
192
192
|
}
|
|
193
|
-
function
|
|
193
|
+
function d(e = null, t = null, n = null) {
|
|
194
194
|
return typeof t == "function" && n == null ? {
|
|
195
195
|
first: e,
|
|
196
196
|
options: null,
|
|
@@ -201,10 +201,10 @@ function f(e = null, t = null, n = null) {
|
|
|
201
201
|
callback: n
|
|
202
202
|
};
|
|
203
203
|
}
|
|
204
|
-
function
|
|
204
|
+
function f(e, t) {
|
|
205
205
|
return !t || typeof t != "object" || Array.isArray(t) ? e : (t.attrs && typeof e.attr == "function" && e.attr(t.attrs), t.style && typeof e.styles == "function" && e.styles(t.style), e);
|
|
206
206
|
}
|
|
207
|
-
var
|
|
207
|
+
var p = class extends c {
|
|
208
208
|
constructor(e, t = null) {
|
|
209
209
|
super(null), this._tagName = e, this._attrs = {}, this._styles = {}, this._classes = /* @__PURE__ */ new Set(), this._el = null, t !== null && this.setup(t);
|
|
210
210
|
}
|
|
@@ -272,7 +272,7 @@ var m = class extends c {
|
|
|
272
272
|
child(...e) {
|
|
273
273
|
return e.flat(Infinity).forEach((e) => {
|
|
274
274
|
if (e == null) return;
|
|
275
|
-
let t =
|
|
275
|
+
let t = u(e);
|
|
276
276
|
if (this._pendingRemovals.delete(t), this._children.push(t), this._childrenDirty = !0, this._el) {
|
|
277
277
|
let e = t.renderDom();
|
|
278
278
|
e && e.parentNode !== this._el && this._el.appendChild(e);
|
|
@@ -317,13 +317,13 @@ var m = class extends c {
|
|
|
317
317
|
return o(this._styles);
|
|
318
318
|
}
|
|
319
319
|
};
|
|
320
|
-
function
|
|
320
|
+
function m(e, t = p) {
|
|
321
321
|
return function(n = null, r = null, i = null) {
|
|
322
|
-
let a =
|
|
323
|
-
return
|
|
322
|
+
let a = d(n, r, i), o = new t(e, a.first);
|
|
323
|
+
return f(o, a.options), typeof a.callback == "function" && a.callback(o), o;
|
|
324
324
|
};
|
|
325
325
|
}
|
|
326
|
-
function
|
|
326
|
+
function h(e, t, n = {}) {
|
|
327
327
|
let { override: r = !1 } = n;
|
|
328
328
|
Object.entries(t).forEach(([t, n]) => {
|
|
329
329
|
!r && e.prototype[t] || (e.prototype[t] = function(...e) {
|
|
@@ -333,12 +333,12 @@ function g(e, t, n = {}) {
|
|
|
333
333
|
}
|
|
334
334
|
//#endregion
|
|
335
335
|
//#region src/core/client-only.js
|
|
336
|
-
var
|
|
336
|
+
var g = class extends c {
|
|
337
337
|
constructor(e) {
|
|
338
338
|
super(null), this._loader = e, this._resolved = null;
|
|
339
339
|
}
|
|
340
340
|
_resolve() {
|
|
341
|
-
return this._resolved ||=
|
|
341
|
+
return this._resolved ||= _(this._loader), this._resolved;
|
|
342
342
|
}
|
|
343
343
|
toHTML() {
|
|
344
344
|
return this._deleted ? "" : "<div class=\"yoya-client-only\" data-client-only=\"true\"></div>";
|
|
@@ -358,21 +358,21 @@ var _ = class extends c {
|
|
|
358
358
|
return this._resolved && this._resolved.destroy(), super.destroy();
|
|
359
359
|
}
|
|
360
360
|
};
|
|
361
|
-
function
|
|
362
|
-
return new
|
|
361
|
+
function ne(e) {
|
|
362
|
+
return new g(e);
|
|
363
363
|
}
|
|
364
|
-
function
|
|
364
|
+
function _(e) {
|
|
365
365
|
if (e instanceof c) return e;
|
|
366
|
-
if (typeof e == "function") return
|
|
367
|
-
if (e && typeof e.render == "function") return
|
|
366
|
+
if (typeof e == "function") return _(e());
|
|
367
|
+
if (e && typeof e.render == "function") return _(e.render());
|
|
368
368
|
throw TypeError("vClientOnly loader must return a ViewNode or a component object");
|
|
369
369
|
}
|
|
370
370
|
//#endregion
|
|
371
371
|
//#region src/core/i18n.js
|
|
372
|
-
var
|
|
372
|
+
var v = "yoya-ui:i18n", y = /* @__PURE__ */ new Map(), b = class {
|
|
373
373
|
constructor(e = {}) {
|
|
374
374
|
let t = e.language || "zh-CN";
|
|
375
|
-
this._key = e.key || null, this._storage = I(e.storage), this._storageKey = e.storageKey || null, this._sharedStorageKey = this._key ?
|
|
375
|
+
this._key = e.key || null, this._storage = I(e.storage), this._storageKey = e.storageKey || null, this._sharedStorageKey = this._key ? v : null, this._fallbackLanguage = e.fallbackLanguage || t, this._language = this._readStoredLanguage(t), this._messages = {}, this._listeners = /* @__PURE__ */ new Set(), this.registerMessages(e.messages || {}), this._key && D(this);
|
|
376
376
|
}
|
|
377
377
|
key() {
|
|
378
378
|
return this._key;
|
|
@@ -421,7 +421,7 @@ var y = "yoya-ui:i18n", b = /* @__PURE__ */ new Map(), x = class {
|
|
|
421
421
|
return ce(typeof r == "function" ? r(t, this) : r, t);
|
|
422
422
|
}
|
|
423
423
|
text(e, t = {}, n = void 0) {
|
|
424
|
-
return new
|
|
424
|
+
return new x(this, e, t, n);
|
|
425
425
|
}
|
|
426
426
|
subscribe(e) {
|
|
427
427
|
return this._listeners.add(e), () => {
|
|
@@ -451,7 +451,7 @@ var y = "yoya-ui:i18n", b = /* @__PURE__ */ new Map(), x = class {
|
|
|
451
451
|
_notify() {
|
|
452
452
|
this._listeners.forEach((e) => e(this));
|
|
453
453
|
}
|
|
454
|
-
},
|
|
454
|
+
}, x = class extends l {
|
|
455
455
|
constructor(e, t, n = {}, r = void 0) {
|
|
456
456
|
super(e.t(t, n, r)), this._i18n = e, this._key = t, this._params = n || {}, this._defaultValue = r, this._unsubscribe = e.subscribe(() => this.refresh());
|
|
457
457
|
}
|
|
@@ -471,16 +471,16 @@ var y = "yoya-ui:i18n", b = /* @__PURE__ */ new Map(), x = class {
|
|
|
471
471
|
return this._unsubscribe &&= (this._unsubscribe(), null), super.destroy();
|
|
472
472
|
}
|
|
473
473
|
};
|
|
474
|
-
function
|
|
475
|
-
return new
|
|
474
|
+
function S(e = {}) {
|
|
475
|
+
return new b(e);
|
|
476
476
|
}
|
|
477
|
-
var
|
|
478
|
-
function
|
|
479
|
-
return
|
|
477
|
+
var C = S();
|
|
478
|
+
function re(e, t = {}) {
|
|
479
|
+
return C.text(e, t);
|
|
480
480
|
}
|
|
481
|
-
var
|
|
482
|
-
function
|
|
483
|
-
return
|
|
481
|
+
var w = C;
|
|
482
|
+
function T(e = C) {
|
|
483
|
+
return w = e, String.prototype._yoyaUiStringShortcutInstalled ? e : (Object.defineProperty(String.prototype, "_yoyaUiStringShortcutInstalled", {
|
|
484
484
|
configurable: !0,
|
|
485
485
|
enumerable: !1,
|
|
486
486
|
value: !0
|
|
@@ -488,41 +488,41 @@ function E(e = w) {
|
|
|
488
488
|
configurable: !0,
|
|
489
489
|
enumerable: !1,
|
|
490
490
|
value: function(e, t, n) {
|
|
491
|
-
let r = String(this), i = {}, a =
|
|
492
|
-
return
|
|
491
|
+
let r = String(this), i = {}, a = w;
|
|
492
|
+
return E(t) ? a = t : typeof t == "string" ? a = O(t) || w : (i = t || {}, E(n) ? a = n : typeof n == "string" && (a = O(n) || w)), a.text(e || r, i, r);
|
|
493
493
|
}
|
|
494
494
|
}), e);
|
|
495
495
|
}
|
|
496
|
-
function
|
|
497
|
-
let n =
|
|
498
|
-
|
|
496
|
+
function ie(e, t) {
|
|
497
|
+
let n = w;
|
|
498
|
+
w = e || n;
|
|
499
499
|
try {
|
|
500
500
|
return t();
|
|
501
501
|
} finally {
|
|
502
|
-
|
|
502
|
+
w = n;
|
|
503
503
|
}
|
|
504
504
|
}
|
|
505
|
-
function
|
|
505
|
+
function E(e) {
|
|
506
506
|
return !!(e && typeof e.text == "function");
|
|
507
507
|
}
|
|
508
508
|
function D(e) {
|
|
509
509
|
let t = e?.key?.();
|
|
510
|
-
return t ? (
|
|
511
|
-
|
|
510
|
+
return t ? (y.set(t, e), () => {
|
|
511
|
+
y.get(t) === e && y.delete(t);
|
|
512
512
|
}) : () => {};
|
|
513
513
|
}
|
|
514
514
|
function ae(e) {
|
|
515
515
|
let t = typeof e == "string" ? e : e?.key?.();
|
|
516
|
-
return t &&
|
|
516
|
+
return t && y.delete(t), t;
|
|
517
517
|
}
|
|
518
518
|
function O(e) {
|
|
519
|
-
return e &&
|
|
519
|
+
return e && y.get(e) || null;
|
|
520
520
|
}
|
|
521
521
|
function oe() {
|
|
522
|
-
return new Map(
|
|
522
|
+
return new Map(y);
|
|
523
523
|
}
|
|
524
524
|
function se(e) {
|
|
525
|
-
return k(e || I(),
|
|
525
|
+
return k(e || I(), v);
|
|
526
526
|
}
|
|
527
527
|
function k(e, t) {
|
|
528
528
|
if (!e) return {};
|
|
@@ -540,7 +540,7 @@ function A(e, t, n) {
|
|
|
540
540
|
e.setItem(t, JSON.stringify(n));
|
|
541
541
|
} catch {}
|
|
542
542
|
}
|
|
543
|
-
|
|
543
|
+
T(C);
|
|
544
544
|
function j(e, t) {
|
|
545
545
|
if (!(!e || !t)) return Object.prototype.hasOwnProperty.call(e, t) ? e[t] : String(t).split(".").reduce((e, t) => {
|
|
546
546
|
if (e && typeof e == "object" && Object.prototype.hasOwnProperty.call(e, t)) return e[t];
|
|
@@ -612,7 +612,7 @@ function R(e = {}) {
|
|
|
612
612
|
render() {
|
|
613
613
|
if (r) return i;
|
|
614
614
|
if (!i) {
|
|
615
|
-
i = new
|
|
615
|
+
i = new p("div");
|
|
616
616
|
let e = i.destroy.bind(i);
|
|
617
617
|
i.destroy = () => (n.clear(), e()), o();
|
|
618
618
|
}
|
|
@@ -652,7 +652,7 @@ function R(e = {}) {
|
|
|
652
652
|
o();
|
|
653
653
|
}
|
|
654
654
|
}
|
|
655
|
-
|
|
655
|
+
h(p, { vStateNode: R });
|
|
656
656
|
//#endregion
|
|
657
657
|
//#region src/core/theme.js
|
|
658
658
|
var z = [
|
|
@@ -714,8 +714,63 @@ function pe(e = {}) {
|
|
|
714
714
|
};
|
|
715
715
|
}
|
|
716
716
|
//#endregion
|
|
717
|
-
//#region src/
|
|
718
|
-
var J =
|
|
717
|
+
//#region src/core/request.js
|
|
718
|
+
var J = null;
|
|
719
|
+
function me({ submit: e } = {}) {
|
|
720
|
+
return J = typeof e == "function" ? e : null, J;
|
|
721
|
+
}
|
|
722
|
+
var he = class {
|
|
723
|
+
method() {
|
|
724
|
+
return "GET";
|
|
725
|
+
}
|
|
726
|
+
headers() {
|
|
727
|
+
return {};
|
|
728
|
+
}
|
|
729
|
+
cookies() {
|
|
730
|
+
return null;
|
|
731
|
+
}
|
|
732
|
+
body() {
|
|
733
|
+
return null;
|
|
734
|
+
}
|
|
735
|
+
params() {
|
|
736
|
+
return {};
|
|
737
|
+
}
|
|
738
|
+
address() {
|
|
739
|
+
return "";
|
|
740
|
+
}
|
|
741
|
+
submit() {
|
|
742
|
+
if (typeof J != "function") throw Error("RequestBase: 未注册请求传输,请先 configureRequest({ submit })");
|
|
743
|
+
return J(this);
|
|
744
|
+
}
|
|
745
|
+
}, ge = class e {
|
|
746
|
+
constructor({ ok: e = !0, code: t = "0", msg: n = null, showType: r = 0, data: i = null, kind: a = "detail", pageNum: o = null, pageSize: s = null, total: c = null } = {}) {
|
|
747
|
+
this.ok = e, this.code = t, this.msg = n, this.showType = r, this.data = i, this.kind = a, this.pageNum = o, this.pageSize = s, this.total = c;
|
|
748
|
+
}
|
|
749
|
+
get isSuccess() {
|
|
750
|
+
return !!this.ok;
|
|
751
|
+
}
|
|
752
|
+
get pages() {
|
|
753
|
+
return this.pageSize > 0 ? Math.ceil((this.total ?? 0) / this.pageSize) : 0;
|
|
754
|
+
}
|
|
755
|
+
static from(t, n = {}) {
|
|
756
|
+
if (!t || t.ok === !1) {
|
|
757
|
+
let e = Error(t?.msg || "请求失败");
|
|
758
|
+
throw e.code = t?.code, e.showType = t?.showType, e;
|
|
759
|
+
}
|
|
760
|
+
let r = t.data, i = Array.isArray(r) && t.pageNum != null, a = Array.isArray(r);
|
|
761
|
+
return new e({
|
|
762
|
+
ok: t.ok,
|
|
763
|
+
code: t.code,
|
|
764
|
+
msg: t.msg,
|
|
765
|
+
showType: t.showType,
|
|
766
|
+
kind: i ? "page" : a ? "list" : "detail",
|
|
767
|
+
data: i || a ? (r ?? []).map((e) => n.toItem ? n.toItem(e) : e) : n.toDetail ? n.toDetail(r) : r,
|
|
768
|
+
pageNum: t.pageNum,
|
|
769
|
+
pageSize: t.pageSize,
|
|
770
|
+
total: t.total
|
|
771
|
+
});
|
|
772
|
+
}
|
|
773
|
+
}, Y = class extends p {}, _e = [
|
|
719
774
|
"a",
|
|
720
775
|
"abbr",
|
|
721
776
|
"address",
|
|
@@ -837,18 +892,18 @@ var J = class extends m {}, me = [
|
|
|
837
892
|
"video",
|
|
838
893
|
"wbr"
|
|
839
894
|
];
|
|
840
|
-
function
|
|
841
|
-
return
|
|
842
|
-
let { aliases: n = [], name: r, tagName: i } =
|
|
895
|
+
function X() {
|
|
896
|
+
return _e.reduce((e, t) => {
|
|
897
|
+
let { aliases: n = [], name: r, tagName: i } = Tn(t), a = m(i, Y);
|
|
843
898
|
return e[r] = a, n.forEach((t) => {
|
|
844
899
|
e[t] = a;
|
|
845
900
|
}), e;
|
|
846
901
|
}, {});
|
|
847
902
|
}
|
|
848
|
-
var
|
|
849
|
-
|
|
850
|
-
var { a:
|
|
851
|
-
function
|
|
903
|
+
var Z = X();
|
|
904
|
+
h(Y, Z);
|
|
905
|
+
var { a: ve, abbr: ye, address: be, area: xe, article: Se, aside: Ce, audio: we, b: Te, base: Ee, bdi: De, bdo: Oe, blockquote: ke, body: Ae, br: je, button: Me, canvas: Ne, caption: Pe, cite: Fe, code: Ie, col: Le, colgroup: Re, data: ze, datalist: Be, dd: Ve, del: He, details: Ue, dfn: We, dialog: Ge, div: Ke, dl: qe, dt: Je, em: Ye, embed: Xe, fieldset: Ze, figcaption: Qe, figure: $e, footer: et, form: tt, h1: nt, h2: rt, h3: it, h4: at, h5: ot, h6: st, head: ct, header: lt, hgroup: ut, hr: dt, html: ft, i: pt, iframe: mt, img: ht, input: gt, ins: _t, kbd: vt, label: yt, legend: bt, li: xt, link: St, main: Ct, map: wt, mark: Tt, menu: Et, meta: Dt, meter: Ot, nav: kt, noscript: At, object: jt, ol: Mt, optgroup: Nt, option: Pt, output: Ft, p: It, picture: Lt, pre: Rt, progress: zt, q: Bt, rp: Vt, rt: Ht, ruby: Ut, s: Wt, samp: Gt, script: Kt, search: qt, section: Jt, select: Yt, selectedcontent: Xt, slot: Zt, small: Qt, source: $t, span: en, strong: tn, style: nn, styleTag: rn, sub: an, summary: on, sup: sn, table: cn, tbody: ln, td: un, template: dn, textarea: fn, tfoot: pn, th: mn, thead: hn, time: gn, title: _n, tr: vn, track: yn, u: bn, ul: xn, varTag: Sn, video: Cn, wbr: wn } = Z;
|
|
906
|
+
function Tn(e) {
|
|
852
907
|
return typeof e == "string" ? {
|
|
853
908
|
name: e,
|
|
854
909
|
tagName: e
|
|
@@ -856,7 +911,7 @@ function Sn(e) {
|
|
|
856
911
|
}
|
|
857
912
|
//#endregion
|
|
858
913
|
//#region src/svg/icons.js
|
|
859
|
-
function
|
|
914
|
+
function En() {
|
|
860
915
|
return $((e) => {
|
|
861
916
|
e.className("yoya-icon").attr({
|
|
862
917
|
"aria-hidden": "true",
|
|
@@ -872,7 +927,7 @@ function Cn() {
|
|
|
872
927
|
}), e.path({ d: "M12 5v14" }), e.path({ d: "m19 12-7 7-7-7" });
|
|
873
928
|
});
|
|
874
929
|
}
|
|
875
|
-
function
|
|
930
|
+
function Dn() {
|
|
876
931
|
return $((e) => {
|
|
877
932
|
e.className("yoya-icon").attr({
|
|
878
933
|
"aria-hidden": "true",
|
|
@@ -888,7 +943,7 @@ function wn() {
|
|
|
888
943
|
}), e.path({ d: "M19 12H5" }), e.path({ d: "m12 19-7-7 7-7" });
|
|
889
944
|
});
|
|
890
945
|
}
|
|
891
|
-
function
|
|
946
|
+
function On() {
|
|
892
947
|
return $((e) => {
|
|
893
948
|
e.className("yoya-icon").attr({
|
|
894
949
|
"aria-hidden": "true",
|
|
@@ -904,7 +959,7 @@ function Tn() {
|
|
|
904
959
|
}), e.path({ d: "M5 12h14" }), e.path({ d: "m12 5 7 7-7 7" });
|
|
905
960
|
});
|
|
906
961
|
}
|
|
907
|
-
function
|
|
962
|
+
function kn() {
|
|
908
963
|
return $((e) => {
|
|
909
964
|
e.className("yoya-icon").attr({
|
|
910
965
|
"aria-hidden": "true",
|
|
@@ -920,7 +975,7 @@ function En() {
|
|
|
920
975
|
}), e.path({ d: "M12 19V5" }), e.path({ d: "m5 12 7-7 7 7" });
|
|
921
976
|
});
|
|
922
977
|
}
|
|
923
|
-
function
|
|
978
|
+
function An() {
|
|
924
979
|
return $((e) => {
|
|
925
980
|
e.className("yoya-icon").attr({
|
|
926
981
|
"aria-hidden": "true",
|
|
@@ -936,7 +991,7 @@ function Dn() {
|
|
|
936
991
|
}), e.path({ d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }), e.path({ d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" });
|
|
937
992
|
});
|
|
938
993
|
}
|
|
939
|
-
function
|
|
994
|
+
function jn() {
|
|
940
995
|
return $((e) => {
|
|
941
996
|
e.className("yoya-icon").attr({
|
|
942
997
|
"aria-hidden": "true",
|
|
@@ -958,7 +1013,7 @@ function On() {
|
|
|
958
1013
|
}), e.path({ d: "M16 2v4" }), e.path({ d: "M8 2v4" }), e.path({ d: "M3 10h18" });
|
|
959
1014
|
});
|
|
960
1015
|
}
|
|
961
|
-
function
|
|
1016
|
+
function Mn() {
|
|
962
1017
|
return $((e) => {
|
|
963
1018
|
e.className("yoya-icon").attr({
|
|
964
1019
|
"aria-hidden": "true",
|
|
@@ -974,7 +1029,7 @@ function kn() {
|
|
|
974
1029
|
}), e.path({ d: "M20 6 9 17l-5-5" });
|
|
975
1030
|
});
|
|
976
1031
|
}
|
|
977
|
-
function
|
|
1032
|
+
function Nn() {
|
|
978
1033
|
return $((e) => {
|
|
979
1034
|
e.className("yoya-icon").attr({
|
|
980
1035
|
"aria-hidden": "true",
|
|
@@ -990,7 +1045,7 @@ function An() {
|
|
|
990
1045
|
}), e.path({ d: "m6 9 6 6 6-6" });
|
|
991
1046
|
});
|
|
992
1047
|
}
|
|
993
|
-
function
|
|
1048
|
+
function Pn() {
|
|
994
1049
|
return $((e) => {
|
|
995
1050
|
e.className("yoya-icon").attr({
|
|
996
1051
|
"aria-hidden": "true",
|
|
@@ -1006,7 +1061,7 @@ function jn() {
|
|
|
1006
1061
|
}), e.path({ d: "m15 18-6-6 6-6" });
|
|
1007
1062
|
});
|
|
1008
1063
|
}
|
|
1009
|
-
function
|
|
1064
|
+
function Fn() {
|
|
1010
1065
|
return $((e) => {
|
|
1011
1066
|
e.className("yoya-icon").attr({
|
|
1012
1067
|
"aria-hidden": "true",
|
|
@@ -1022,7 +1077,7 @@ function Mn() {
|
|
|
1022
1077
|
}), e.path({ d: "m9 18 6-6-6-6" });
|
|
1023
1078
|
});
|
|
1024
1079
|
}
|
|
1025
|
-
function
|
|
1080
|
+
function In() {
|
|
1026
1081
|
return $((e) => {
|
|
1027
1082
|
e.className("yoya-icon").attr({
|
|
1028
1083
|
"aria-hidden": "true",
|
|
@@ -1038,7 +1093,7 @@ function Nn() {
|
|
|
1038
1093
|
}), e.path({ d: "m18 15-6-6-6 6" });
|
|
1039
1094
|
});
|
|
1040
1095
|
}
|
|
1041
|
-
function
|
|
1096
|
+
function Ln() {
|
|
1042
1097
|
return $((e) => {
|
|
1043
1098
|
e.className("yoya-icon").attr({
|
|
1044
1099
|
"aria-hidden": "true",
|
|
@@ -1054,7 +1109,7 @@ function Pn() {
|
|
|
1054
1109
|
}), e.path({ d: "M18 6 6 18" }), e.path({ d: "m6 6 12 12" });
|
|
1055
1110
|
});
|
|
1056
1111
|
}
|
|
1057
|
-
function
|
|
1112
|
+
function Rn() {
|
|
1058
1113
|
return $((e) => {
|
|
1059
1114
|
e.className("yoya-icon").attr({
|
|
1060
1115
|
"aria-hidden": "true",
|
|
@@ -1070,7 +1125,7 @@ function Fn() {
|
|
|
1070
1125
|
}), e.path({ d: "m16 18 6-6-6-6" }), e.path({ d: "m8 6-6 6 6 6" });
|
|
1071
1126
|
});
|
|
1072
1127
|
}
|
|
1073
|
-
function
|
|
1128
|
+
function zn() {
|
|
1074
1129
|
return $((e) => {
|
|
1075
1130
|
e.className("yoya-icon").attr({
|
|
1076
1131
|
"aria-hidden": "true",
|
|
@@ -1092,7 +1147,7 @@ function In() {
|
|
|
1092
1147
|
}), e.path({ d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" });
|
|
1093
1148
|
});
|
|
1094
1149
|
}
|
|
1095
|
-
function
|
|
1150
|
+
function Bn() {
|
|
1096
1151
|
return $((e) => {
|
|
1097
1152
|
e.className("yoya-icon").attr({
|
|
1098
1153
|
"aria-hidden": "true",
|
|
@@ -1108,7 +1163,7 @@ function Ln() {
|
|
|
1108
1163
|
}), e.path({ d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }), e.path({ d: "m7 10 5 5 5-5" }), e.path({ d: "M12 15V3" });
|
|
1109
1164
|
});
|
|
1110
1165
|
}
|
|
1111
|
-
function
|
|
1166
|
+
function Vn() {
|
|
1112
1167
|
return $((e) => {
|
|
1113
1168
|
e.className("yoya-icon").attr({
|
|
1114
1169
|
"aria-hidden": "true",
|
|
@@ -1124,7 +1179,7 @@ function Rn() {
|
|
|
1124
1179
|
}), e.path({ d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" });
|
|
1125
1180
|
});
|
|
1126
1181
|
}
|
|
1127
|
-
function
|
|
1182
|
+
function Hn() {
|
|
1128
1183
|
return $((e) => {
|
|
1129
1184
|
e.className("yoya-icon").attr({
|
|
1130
1185
|
"aria-hidden": "true",
|
|
@@ -1140,7 +1195,7 @@ function zn() {
|
|
|
1140
1195
|
}), e.path({ d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }), e.path({ d: "m15 3 6 6" }), e.path({ d: "m21 3-9 9" });
|
|
1141
1196
|
});
|
|
1142
1197
|
}
|
|
1143
|
-
function
|
|
1198
|
+
function Un() {
|
|
1144
1199
|
return $((e) => {
|
|
1145
1200
|
e.className("yoya-icon").attr({
|
|
1146
1201
|
"aria-hidden": "true",
|
|
@@ -1160,7 +1215,7 @@ function Bn() {
|
|
|
1160
1215
|
});
|
|
1161
1216
|
});
|
|
1162
1217
|
}
|
|
1163
|
-
function
|
|
1218
|
+
function Wn() {
|
|
1164
1219
|
return $((e) => {
|
|
1165
1220
|
e.className("yoya-icon").attr({
|
|
1166
1221
|
"aria-hidden": "true",
|
|
@@ -1176,7 +1231,33 @@ function Vn() {
|
|
|
1176
1231
|
}), e.path({ d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }), e.path({ d: "M14 2v4a2 2 0 0 0 2 2h4" });
|
|
1177
1232
|
});
|
|
1178
1233
|
}
|
|
1179
|
-
function
|
|
1234
|
+
function Gn() {
|
|
1235
|
+
return $((e) => {
|
|
1236
|
+
e.className("yoya-icon").attr({
|
|
1237
|
+
"aria-hidden": "true",
|
|
1238
|
+
fill: "none",
|
|
1239
|
+
stroke: "currentColor",
|
|
1240
|
+
"stroke-linecap": "round",
|
|
1241
|
+
"stroke-linejoin": "round",
|
|
1242
|
+
"stroke-width": "2",
|
|
1243
|
+
viewBox: "0 0 24 24"
|
|
1244
|
+
}).styles({
|
|
1245
|
+
height: "24px",
|
|
1246
|
+
width: "24px"
|
|
1247
|
+
}), e.rect({
|
|
1248
|
+
height: "18",
|
|
1249
|
+
rx: "2",
|
|
1250
|
+
width: "18",
|
|
1251
|
+
x: "3",
|
|
1252
|
+
y: "3"
|
|
1253
|
+
}), e.circle({
|
|
1254
|
+
cx: "9",
|
|
1255
|
+
cy: "9",
|
|
1256
|
+
r: "2"
|
|
1257
|
+
}), e.path({ d: "m21 15-3.1-3.1a2 2 0 0 0-2.8 0L6 21" });
|
|
1258
|
+
});
|
|
1259
|
+
}
|
|
1260
|
+
function Kn() {
|
|
1180
1261
|
return $((e) => {
|
|
1181
1262
|
e.className("yoya-icon").attr({
|
|
1182
1263
|
"aria-hidden": "true",
|
|
@@ -1192,7 +1273,7 @@ function Hn() {
|
|
|
1192
1273
|
}), e.path({ d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" });
|
|
1193
1274
|
});
|
|
1194
1275
|
}
|
|
1195
|
-
function
|
|
1276
|
+
function qn() {
|
|
1196
1277
|
return $((e) => {
|
|
1197
1278
|
e.className("yoya-icon").attr({
|
|
1198
1279
|
"aria-hidden": "true",
|
|
@@ -1208,7 +1289,7 @@ function Un() {
|
|
|
1208
1289
|
}), e.path({ d: "m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2" });
|
|
1209
1290
|
});
|
|
1210
1291
|
}
|
|
1211
|
-
function
|
|
1292
|
+
function Jn() {
|
|
1212
1293
|
return $((e) => {
|
|
1213
1294
|
e.className("yoya-icon").attr({
|
|
1214
1295
|
"aria-hidden": "true",
|
|
@@ -1224,7 +1305,7 @@ function Wn() {
|
|
|
1224
1305
|
}), e.path({ d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" });
|
|
1225
1306
|
});
|
|
1226
1307
|
}
|
|
1227
|
-
function
|
|
1308
|
+
function Yn() {
|
|
1228
1309
|
return $((e) => {
|
|
1229
1310
|
e.className("yoya-icon").attr({
|
|
1230
1311
|
"aria-hidden": "true",
|
|
@@ -1240,7 +1321,7 @@ function Gn() {
|
|
|
1240
1321
|
}), e.path({ d: "m3 9.5 9-6.5 9 6.5" }), e.path({ d: "M5 10v10h5v-6h4v6h5V10" });
|
|
1241
1322
|
});
|
|
1242
1323
|
}
|
|
1243
|
-
function
|
|
1324
|
+
function Xn() {
|
|
1244
1325
|
return $((e) => {
|
|
1245
1326
|
e.className("yoya-icon").attr({
|
|
1246
1327
|
"aria-hidden": "true",
|
|
@@ -1260,7 +1341,7 @@ function Kn() {
|
|
|
1260
1341
|
}), e.path({ d: "M12 16v-4" }), e.path({ d: "M12 8h.01" });
|
|
1261
1342
|
});
|
|
1262
1343
|
}
|
|
1263
|
-
function
|
|
1344
|
+
function Zn() {
|
|
1264
1345
|
return $((e) => {
|
|
1265
1346
|
e.className("yoya-icon").attr({
|
|
1266
1347
|
"aria-hidden": "true",
|
|
@@ -1282,7 +1363,7 @@ function qn() {
|
|
|
1282
1363
|
}), e.path({ d: "M7 11V7a5 5 0 0 1 10 0v4" });
|
|
1283
1364
|
});
|
|
1284
1365
|
}
|
|
1285
|
-
function
|
|
1366
|
+
function Qn() {
|
|
1286
1367
|
return $((e) => {
|
|
1287
1368
|
e.className("yoya-icon").attr({
|
|
1288
1369
|
"aria-hidden": "true",
|
|
@@ -1298,7 +1379,7 @@ function Jn() {
|
|
|
1298
1379
|
}), e.path({ d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }), e.path({ d: "m16 17 5-5-5-5" }), e.path({ d: "M21 12H9" });
|
|
1299
1380
|
});
|
|
1300
1381
|
}
|
|
1301
|
-
function
|
|
1382
|
+
function $n() {
|
|
1302
1383
|
return $((e) => {
|
|
1303
1384
|
e.className("yoya-icon").attr({
|
|
1304
1385
|
"aria-hidden": "true",
|
|
@@ -1320,7 +1401,7 @@ function Yn() {
|
|
|
1320
1401
|
}), e.path({ d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" });
|
|
1321
1402
|
});
|
|
1322
1403
|
}
|
|
1323
|
-
function
|
|
1404
|
+
function er() {
|
|
1324
1405
|
return $((e) => {
|
|
1325
1406
|
e.className("yoya-icon").attr({
|
|
1326
1407
|
"aria-hidden": "true",
|
|
@@ -1336,7 +1417,7 @@ function Xn() {
|
|
|
1336
1417
|
}), e.path({ d: "M4 6h16" }), e.path({ d: "M4 12h16" }), e.path({ d: "M4 18h16" });
|
|
1337
1418
|
});
|
|
1338
1419
|
}
|
|
1339
|
-
function
|
|
1420
|
+
function tr() {
|
|
1340
1421
|
return $((e) => {
|
|
1341
1422
|
e.className("yoya-icon").attr({
|
|
1342
1423
|
"aria-hidden": "true",
|
|
@@ -1352,7 +1433,7 @@ function Zn() {
|
|
|
1352
1433
|
}), e.path({ d: "M5 12h14" });
|
|
1353
1434
|
});
|
|
1354
1435
|
}
|
|
1355
|
-
function
|
|
1436
|
+
function nr() {
|
|
1356
1437
|
return $((e) => {
|
|
1357
1438
|
e.className("yoya-icon").attr({
|
|
1358
1439
|
"aria-hidden": "true",
|
|
@@ -1383,7 +1464,7 @@ function Qn() {
|
|
|
1383
1464
|
});
|
|
1384
1465
|
});
|
|
1385
1466
|
}
|
|
1386
|
-
function
|
|
1467
|
+
function rr() {
|
|
1387
1468
|
return $((e) => {
|
|
1388
1469
|
e.className("yoya-icon").attr({
|
|
1389
1470
|
"aria-hidden": "true",
|
|
@@ -1399,7 +1480,7 @@ function $n() {
|
|
|
1399
1480
|
}), e.path({ d: "M5 12h14" }), e.path({ d: "M12 5v14" });
|
|
1400
1481
|
});
|
|
1401
1482
|
}
|
|
1402
|
-
function
|
|
1483
|
+
function ir() {
|
|
1403
1484
|
return $((e) => {
|
|
1404
1485
|
e.className("yoya-icon").attr({
|
|
1405
1486
|
"aria-hidden": "true",
|
|
@@ -1415,7 +1496,7 @@ function er() {
|
|
|
1415
1496
|
}), e.path({ d: "M3 12a9 9 0 0 1 15-6.7L21 8" }), e.path({ d: "M21 3v5h-5" }), e.path({ d: "M21 12a9 9 0 0 1-15 6.7L3 16" }), e.path({ d: "M3 21v-5h5" });
|
|
1416
1497
|
});
|
|
1417
1498
|
}
|
|
1418
|
-
function
|
|
1499
|
+
function ar() {
|
|
1419
1500
|
return $((e) => {
|
|
1420
1501
|
e.className("yoya-icon").attr({
|
|
1421
1502
|
"aria-hidden": "true",
|
|
@@ -1435,7 +1516,7 @@ function tr() {
|
|
|
1435
1516
|
}), e.path({ d: "m20 20-4-4" });
|
|
1436
1517
|
});
|
|
1437
1518
|
}
|
|
1438
|
-
function
|
|
1519
|
+
function or() {
|
|
1439
1520
|
return $((e) => {
|
|
1440
1521
|
e.className("yoya-icon").attr({
|
|
1441
1522
|
"aria-hidden": "true",
|
|
@@ -1455,7 +1536,7 @@ function nr() {
|
|
|
1455
1536
|
}), e.path({ d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2Z" });
|
|
1456
1537
|
});
|
|
1457
1538
|
}
|
|
1458
|
-
function
|
|
1539
|
+
function sr() {
|
|
1459
1540
|
return $((e) => {
|
|
1460
1541
|
e.className("yoya-icon").attr({
|
|
1461
1542
|
"aria-hidden": "true",
|
|
@@ -1475,7 +1556,7 @@ function rr() {
|
|
|
1475
1556
|
});
|
|
1476
1557
|
});
|
|
1477
1558
|
}
|
|
1478
|
-
function
|
|
1559
|
+
function cr() {
|
|
1479
1560
|
return $((e) => {
|
|
1480
1561
|
e.className("yoya-icon").attr({
|
|
1481
1562
|
"aria-hidden": "true",
|
|
@@ -1491,7 +1572,7 @@ function ir() {
|
|
|
1491
1572
|
}), e.path({ d: "M3 6h18" }), e.path({ d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" }), e.path({ d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }), e.path({ d: "M10 10v6" }), e.path({ d: "M14 10v6" });
|
|
1492
1573
|
});
|
|
1493
1574
|
}
|
|
1494
|
-
function
|
|
1575
|
+
function lr() {
|
|
1495
1576
|
return $((e) => {
|
|
1496
1577
|
e.className("yoya-icon").attr({
|
|
1497
1578
|
"aria-hidden": "true",
|
|
@@ -1507,7 +1588,7 @@ function ar() {
|
|
|
1507
1588
|
}), e.path({ d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }), e.path({ d: "m17 8-5-5-5 5" }), e.path({ d: "M12 3v12" });
|
|
1508
1589
|
});
|
|
1509
1590
|
}
|
|
1510
|
-
function
|
|
1591
|
+
function ur() {
|
|
1511
1592
|
return $((e) => {
|
|
1512
1593
|
e.className("yoya-icon").attr({
|
|
1513
1594
|
"aria-hidden": "true",
|
|
@@ -1527,7 +1608,7 @@ function or() {
|
|
|
1527
1608
|
});
|
|
1528
1609
|
});
|
|
1529
1610
|
}
|
|
1530
|
-
function
|
|
1611
|
+
function dr() {
|
|
1531
1612
|
return $((e) => {
|
|
1532
1613
|
e.className("yoya-icon").attr({
|
|
1533
1614
|
"aria-hidden": "true",
|
|
@@ -1543,7 +1624,7 @@ function sr() {
|
|
|
1543
1624
|
}), e.path({ d: "M21.73 18 13.34 3.7a2 2 0 0 0-3.44 0L2.27 18A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }), e.path({ d: "M12 9v4" }), e.path({ d: "M12 17h.01" });
|
|
1544
1625
|
});
|
|
1545
1626
|
}
|
|
1546
|
-
function
|
|
1627
|
+
function fr() {
|
|
1547
1628
|
return $((e) => {
|
|
1548
1629
|
e.className("yoya-icon").attr({
|
|
1549
1630
|
"aria-hidden": "true",
|
|
@@ -1563,7 +1644,7 @@ function cr() {
|
|
|
1563
1644
|
}), e.path({ d: "M12 2v2" }), e.path({ d: "M12 20v2" }), e.path({ d: "m4.93 4.93 1.41 1.41" }), e.path({ d: "m17.66 17.66 1.41 1.41" }), e.path({ d: "M2 12h2" }), e.path({ d: "M20 12h2" }), e.path({ d: "m6.34 17.66-1.41 1.41" }), e.path({ d: "m19.07 4.93-1.41 1.41" });
|
|
1564
1645
|
});
|
|
1565
1646
|
}
|
|
1566
|
-
function
|
|
1647
|
+
function pr() {
|
|
1567
1648
|
return $((e) => {
|
|
1568
1649
|
e.className("yoya-icon").attr({
|
|
1569
1650
|
"aria-hidden": "true",
|
|
@@ -1579,7 +1660,7 @@ function lr() {
|
|
|
1579
1660
|
}), e.path({ d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" });
|
|
1580
1661
|
});
|
|
1581
1662
|
}
|
|
1582
|
-
function
|
|
1663
|
+
function mr() {
|
|
1583
1664
|
return $((e) => {
|
|
1584
1665
|
e.className("yoya-icon").attr({
|
|
1585
1666
|
"aria-hidden": "true",
|
|
@@ -1603,19 +1684,19 @@ function ur() {
|
|
|
1603
1684
|
}
|
|
1604
1685
|
//#endregion
|
|
1605
1686
|
//#region src/svg/index.js
|
|
1606
|
-
var
|
|
1687
|
+
var hr = "http://www.w3.org/2000/svg", gr = /* @__PURE__ */ new Set([
|
|
1607
1688
|
"desc",
|
|
1608
1689
|
"metadata",
|
|
1609
1690
|
"text",
|
|
1610
1691
|
"textPath",
|
|
1611
1692
|
"title",
|
|
1612
1693
|
"tspan"
|
|
1613
|
-
]), Q = class e extends
|
|
1694
|
+
]), Q = class e extends p {
|
|
1614
1695
|
setup(e) {
|
|
1615
1696
|
return typeof e == "string" || typeof e == "number" ? this.child(e) : super.setup(e);
|
|
1616
1697
|
}
|
|
1617
1698
|
text(...e) {
|
|
1618
|
-
if (
|
|
1699
|
+
if (gr.has(this._tagName)) {
|
|
1619
1700
|
let [t, n] = e;
|
|
1620
1701
|
return e.length > 0 && this.child(t), n != null && this.setup(n), this;
|
|
1621
1702
|
}
|
|
@@ -1623,10 +1704,10 @@ var Z = "http://www.w3.org/2000/svg", dr = /* @__PURE__ */ new Set([
|
|
|
1623
1704
|
}
|
|
1624
1705
|
style(...e) {
|
|
1625
1706
|
let [t, n] = e;
|
|
1626
|
-
return this._tagName === "style" && e.length <= 1 ? (e.length === 1 && this.child(t), this) : e.length <= 1 &&
|
|
1707
|
+
return this._tagName === "style" && e.length <= 1 ? (e.length === 1 && this.child(t), this) : e.length <= 1 && _r(t) ? this._svgChild("style", t) : super.style(t, n);
|
|
1627
1708
|
}
|
|
1628
1709
|
renderDom() {
|
|
1629
|
-
return this._deleted ? null : (this._el || (this._el = document.createElementNS(
|
|
1710
|
+
return this._deleted ? null : (this._el || (this._el = document.createElementNS(hr, this._tagName), this._applySnapshotToElement()), this._el);
|
|
1630
1711
|
}
|
|
1631
1712
|
_syncClassName() {
|
|
1632
1713
|
let e = [...this._classes].join(" ");
|
|
@@ -1639,11 +1720,11 @@ var Z = "http://www.w3.org/2000/svg", dr = /* @__PURE__ */ new Set([
|
|
|
1639
1720
|
}), this.child(r);
|
|
1640
1721
|
}
|
|
1641
1722
|
};
|
|
1642
|
-
function
|
|
1723
|
+
function _r(e) {
|
|
1643
1724
|
return e == null || typeof e == "function" || typeof e == "string" || typeof e == "number" || Array.isArray(e);
|
|
1644
1725
|
}
|
|
1645
|
-
var
|
|
1646
|
-
function
|
|
1726
|
+
var vr = /* @__PURE__ */ "animate.animateMotion.animateTransform.circle.clipPath.defs.desc.ellipse.feBlend.feColorMatrix.feComponentTransfer.feComposite.feConvolveMatrix.feDiffuseLighting.feDisplacementMap.feDistantLight.feDropShadow.feFlood.feFuncA.feFuncB.feFuncG.feFuncR.feGaussianBlur.feImage.feMerge.feMergeNode.feMorphology.feOffset.fePointLight.feSpecularLighting.feSpotLight.feTile.feTurbulence.filter.foreignObject.g.image.line.linearGradient.marker.mask.metadata.mpath.path.pattern.polygon.polyline.radialGradient.rect.set.stop.a.script.style.switch.text.title.symbol.textPath.tspan.use.view".split(".");
|
|
1727
|
+
function yr(e) {
|
|
1647
1728
|
return function(...t) {
|
|
1648
1729
|
let n = new Q(e);
|
|
1649
1730
|
return e === "svg" && n.style("display", "block"), t.forEach((e) => {
|
|
@@ -1651,24 +1732,24 @@ function mr(e) {
|
|
|
1651
1732
|
}), n;
|
|
1652
1733
|
};
|
|
1653
1734
|
}
|
|
1654
|
-
function
|
|
1655
|
-
return
|
|
1656
|
-
let { aliases: n = [], name: r, tagName: i } =
|
|
1735
|
+
function br() {
|
|
1736
|
+
return vr.reduce((e, t) => {
|
|
1737
|
+
let { aliases: n = [], name: r, tagName: i } = Sr(t), a = yr(i);
|
|
1657
1738
|
return e[r] = a, n.forEach((t) => {
|
|
1658
1739
|
e[t] = a;
|
|
1659
1740
|
}), e;
|
|
1660
1741
|
}, {});
|
|
1661
1742
|
}
|
|
1662
|
-
var $ =
|
|
1663
|
-
|
|
1743
|
+
var $ = yr("svg"), xr = br();
|
|
1744
|
+
h(Y, { svg: $ }), h(Q, {
|
|
1664
1745
|
svg: $,
|
|
1665
|
-
...
|
|
1746
|
+
...xr
|
|
1666
1747
|
});
|
|
1667
|
-
function
|
|
1748
|
+
function Sr(e) {
|
|
1668
1749
|
return typeof e == "string" ? {
|
|
1669
1750
|
name: e,
|
|
1670
1751
|
tagName: e
|
|
1671
1752
|
} : e;
|
|
1672
1753
|
}
|
|
1673
1754
|
//#endregion
|
|
1674
|
-
export {
|
|
1755
|
+
export { En as ArrowDownOutlined, Dn as ArrowLeftOutlined, On as ArrowRightOutlined, kn as ArrowUpOutlined, An as BellOutlined, jn as CalendarOutlined, Mn as CheckOutlined, Nn as ChevronDownOutlined, Pn as ChevronLeftOutlined, Fn as ChevronRightOutlined, In as ChevronUpOutlined, g as ClientOnlyNode, Ln as CloseOutlined, Rn as CodeOutlined, ee as ComponentNode, zn as CopyOutlined, Bn as DownloadOutlined, Vn as EditOutlined, p as ElementNode, Hn as ExternalOutlined, Un as EyeOutlined, Wn as FileOutlined, qn as FolderOpenOutlined, Kn as FolderOutlined, Jn as HeartOutlined, Yn as HomeOutlined, Y as HtmlElementNode, b as I18n, x as I18nTextNode, Gn as ImageOutlined, Xn as InfoOutlined, Zn as LockOutlined, Qn as LogoutOutlined, $n as MailOutlined, er as MenuOutlined, tr as MinusOutlined, mr as MonitorOutlined, pr as MoonOutlined, nr as MoreHorizontalOutlined, rr as PlusOutlined, ir as RefreshOutlined, he as RequestBase, ge as Result, hr as SVG_NAMESPACE, ar as SearchOutlined, or as SettingsOutlined, sr as StarOutlined, fr as SunOutlined, Q as SvgElementNode, l as TextNode, l as VTextNode, l as ViewTextNode, cr as TrashOutlined, lr as UploadOutlined, ur as UserOutlined, c as ViewNode, dr as WarningOutlined, ve as a, ye as abbr, be as address, f as applyElementOptions, xe as area, Se as article, Ce as aside, we as audio, Te as b, Ee as base, De as bdi, Oe as bdo, ke as blockquote, Ae as body, je as br, Me as button, Ne as canvas, Pe as caption, Fe as cite, Ie as code, Le as col, Re as colgroup, me as configureRequest, m as createElementFactory, X as createHtmlFactories, S as createI18n, ze as data, Be as datalist, Ve as dd, He as del, Ue as details, We as dfn, Ge as dialog, Ke as div, qe as dl, Je as dt, Ye as em, Xe as embed, r as escapeHtml, Ze as fieldset, Qe as figcaption, $e as figure, et as footer, tt as form, O as getI18n, se as getPersistedI18nLocales, G as getYoyaMode, q as getYoyaTheme, nt as h1, rt as h2, it as h3, at as h4, ot as h5, st as h6, ct as head, lt as header, ut as hgroup, dt as hr, ft as html, pt as i, C as i18n, re as i18nText, mt as iframe, ht as img, pe as initYoyaTheme, gt as input, _t as ins, T as installI18nStringShortcut, vt as kbd, yt as label, bt as legend, xt as li, St as link, oe as listI18n, Ct as main, wt as map, Tt as mark, Et as menu, Dt as meta, Ot as meter, kt as nav, u as normalizeChild, d as normalizeSetupArguments, At as noscript, jt as object, Mt as ol, Nt as optgroup, Pt as option, Ft as output, It as p, Lt as picture, Rt as pre, zt as progress, Bt as q, h as registerChildFactories, D as registerI18n, n as resolveTarget, fe as resolveYoyaMode, Vt as rp, Ht as rt, Ut as ruby, Wt as s, Gt as samp, Kt as script, qt as search, Jt as section, Yt as select, Xt as selectedcontent, W as setYoyaMode, K as setYoyaTheme, Zt as slot, Qt as small, $t as source, en as span, tn as strong, nn as style, rn as styleTag, an as sub, on as summary, sn as sup, $ as svg, cn as table, ln as tbody, un as td, dn as template, te as text, te as vText, fn as textarea, pn as tfoot, mn as th, hn as thead, gn as time, _n as title, vn as tr, yn as track, bn as u, xn as ul, ae as unregisterI18n, ne as vClientOnly, R as vStateNode, Sn as varTag, Cn as video, wn as wbr, ie as withI18nStringShortcut };
|