@dnotrever2/super-kit 0.1.25 → 0.1.26
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/super-kit.cjs +1 -1
- package/dist/super-kit.css +1 -1
- package/dist/super-kit.js +170 -170
- package/package.json +1 -1
package/dist/super-kit.js
CHANGED
|
@@ -60,7 +60,7 @@ function fn({
|
|
|
60
60
|
spacing: g,
|
|
61
61
|
disabled: d = !1,
|
|
62
62
|
itemClassName: b,
|
|
63
|
-
headerClassName:
|
|
63
|
+
headerClassName: N,
|
|
64
64
|
headerStyle: f,
|
|
65
65
|
bodyClassName: $,
|
|
66
66
|
bodyStyle: j,
|
|
@@ -91,11 +91,11 @@ function fn({
|
|
|
91
91
|
};
|
|
92
92
|
return /* @__PURE__ */ e("div", { ...F, className: T, style: O, children: t.map((L) => {
|
|
93
93
|
var M, se, J, m;
|
|
94
|
-
const I = Ct(y, L.value, n),
|
|
94
|
+
const I = Ct(y, L.value, n), p = d || L.disabled, x = `${Y}-${L.value}-trigger`, E = `${Y}-${L.value}-content`;
|
|
95
95
|
return /* @__PURE__ */ u(
|
|
96
96
|
"section",
|
|
97
97
|
{
|
|
98
|
-
className: [Ie.item, I ? Ie.open : null,
|
|
98
|
+
className: [Ie.item, I ? Ie.open : null, p ? Ie.disabled : null, b, L.className].filter(Boolean).join(" "),
|
|
99
99
|
"data-open": I ? "true" : void 0,
|
|
100
100
|
children: [
|
|
101
101
|
/* @__PURE__ */ u(
|
|
@@ -104,11 +104,11 @@ function fn({
|
|
|
104
104
|
...L.triggerProps,
|
|
105
105
|
type: "button",
|
|
106
106
|
id: x,
|
|
107
|
-
className: [Ie.trigger, B,
|
|
107
|
+
className: [Ie.trigger, B, N, (M = L.triggerProps) == null ? void 0 : M.className].filter(Boolean).join(" "),
|
|
108
108
|
style: { ...f, ...(se = L.triggerProps) == null ? void 0 : se.style },
|
|
109
109
|
"aria-expanded": I,
|
|
110
110
|
"aria-controls": E,
|
|
111
|
-
disabled:
|
|
111
|
+
disabled: p,
|
|
112
112
|
onClick: (D) => {
|
|
113
113
|
var te, re;
|
|
114
114
|
(re = (te = L.triggerProps) == null ? void 0 : te.onClick) == null || re.call(te, D), D.defaultPrevented || v(_n(y, L.value, n));
|
|
@@ -152,15 +152,15 @@ function fn({
|
|
|
152
152
|
}) });
|
|
153
153
|
}
|
|
154
154
|
fn.displayName = "Accordion";
|
|
155
|
-
const mn = "_badge_cb2db_1", gn = "_secondary_cb2db_25", bn = "_primary_cb2db_35", vn = "_ghost_cb2db_44", yn = "_outline_cb2db_54", kn = "_success_cb2db_61",
|
|
155
|
+
const mn = "_badge_cb2db_1", gn = "_secondary_cb2db_25", bn = "_primary_cb2db_35", vn = "_ghost_cb2db_44", yn = "_outline_cb2db_54", kn = "_success_cb2db_61", Nn = "_warning_cb2db_70", pn = "_danger_cb2db_79", wn = "_coloredText_cb2db_88", In = "_indicator_cb2db_98", $n = "_label_cb2db_119", xn = "_dismiss_cb2db_143", Cn = "_dismissBtn_cb2db_147", Bn = "_pill_cb2db_161", We = {
|
|
156
156
|
badge: mn,
|
|
157
157
|
secondary: gn,
|
|
158
158
|
primary: bn,
|
|
159
159
|
ghost: vn,
|
|
160
160
|
outline: yn,
|
|
161
161
|
success: kn,
|
|
162
|
-
warning:
|
|
163
|
-
danger:
|
|
162
|
+
warning: Nn,
|
|
163
|
+
danger: pn,
|
|
164
164
|
coloredText: wn,
|
|
165
165
|
indicator: In,
|
|
166
166
|
label: $n,
|
|
@@ -182,7 +182,7 @@ function Ln({
|
|
|
182
182
|
dismissable: g = !1,
|
|
183
183
|
onDismiss: d,
|
|
184
184
|
children: b,
|
|
185
|
-
className:
|
|
185
|
+
className: N,
|
|
186
186
|
...f
|
|
187
187
|
}) {
|
|
188
188
|
const $ = [
|
|
@@ -195,7 +195,7 @@ function Ln({
|
|
|
195
195
|
i && !s ? We.label : null,
|
|
196
196
|
i && !s ? We[`label-${c}`] : null,
|
|
197
197
|
g && !s ? We.dismiss : null,
|
|
198
|
-
|
|
198
|
+
N
|
|
199
199
|
].filter(Boolean).join(" ");
|
|
200
200
|
return /* @__PURE__ */ u("span", { ...f, className: $, children: [
|
|
201
201
|
!s && n ? n : null,
|
|
@@ -232,7 +232,7 @@ function Bt({
|
|
|
232
232
|
}) {
|
|
233
233
|
const s = [Ee.breadcrumb, l].filter(Boolean).join(" ");
|
|
234
234
|
return /* @__PURE__ */ e("nav", { ...a, className: s, "aria-label": o, children: /* @__PURE__ */ e("ol", { className: Ee.list, children: t.map((i, c) => {
|
|
235
|
-
var
|
|
235
|
+
var N, f;
|
|
236
236
|
const g = c === t.length - 1, d = i.current ?? g, b = i.disabled || d;
|
|
237
237
|
return /* @__PURE__ */ u("li", { className: Ee.item, children: [
|
|
238
238
|
c > 0 && /* @__PURE__ */ e("span", { className: Ee.separator, "aria-hidden": "true", children: n }),
|
|
@@ -240,7 +240,7 @@ function Bt({
|
|
|
240
240
|
"a",
|
|
241
241
|
{
|
|
242
242
|
...i.linkProps,
|
|
243
|
-
className: [Ee.link, (
|
|
243
|
+
className: [Ee.link, (N = i.linkProps) == null ? void 0 : N.className].filter(Boolean).join(" "),
|
|
244
244
|
href: i.href,
|
|
245
245
|
children: i.label
|
|
246
246
|
}
|
|
@@ -279,7 +279,7 @@ function Hn({
|
|
|
279
279
|
style: d,
|
|
280
280
|
...b
|
|
281
281
|
}) {
|
|
282
|
-
const
|
|
282
|
+
const N = [
|
|
283
283
|
"sb",
|
|
284
284
|
n ? "sb-track" : null,
|
|
285
285
|
o ? "sb-arrows" : null,
|
|
@@ -291,7 +291,7 @@ function Hn({
|
|
|
291
291
|
"div",
|
|
292
292
|
{
|
|
293
293
|
...b,
|
|
294
|
-
className:
|
|
294
|
+
className: N,
|
|
295
295
|
style: { height: i, ...f, ...$, ...d },
|
|
296
296
|
children: c
|
|
297
297
|
}
|
|
@@ -329,7 +329,7 @@ const Fn = "_btn_5argd_1", En = "_icon_5argd_33", Vn = "_content_5argd_41", Xn =
|
|
|
329
329
|
children: g,
|
|
330
330
|
className: d,
|
|
331
331
|
disabled: b,
|
|
332
|
-
...
|
|
332
|
+
...N
|
|
333
333
|
}, f) => {
|
|
334
334
|
const $ = g != null && (typeof g != "string" || g.trim().length > 0), j = !!l && !$, B = [
|
|
335
335
|
Re.btn,
|
|
@@ -349,7 +349,7 @@ const Fn = "_btn_5argd_1", En = "_icon_5argd_33", Vn = "_content_5argd_41", Xn =
|
|
|
349
349
|
type: t,
|
|
350
350
|
disabled: b,
|
|
351
351
|
className: B,
|
|
352
|
-
...
|
|
352
|
+
...N,
|
|
353
353
|
children: [
|
|
354
354
|
l ? /* @__PURE__ */ e("span", { className: Re.icon, children: l }) : null,
|
|
355
355
|
$ ? /* @__PURE__ */ e("span", { className: Re.content, children: g }) : null
|
|
@@ -359,7 +359,7 @@ const Fn = "_btn_5argd_1", En = "_icon_5argd_33", Vn = "_content_5argd_41", Xn =
|
|
|
359
359
|
}
|
|
360
360
|
);
|
|
361
361
|
so.displayName = "Button";
|
|
362
|
-
const lo = "_card_x9qk8_1", io = "_tilt_x9qk8_8", co = "_closeBtn_x9qk8_22", ao = "_padSm_x9qk8_43", ro = "_padMd_x9qk8_44", uo = "_padLg_x9qk8_45", _o = "_padNone_x9qk8_46", ho = "_header_x9qk8_49", fo = "_headerIcon_x9qk8_56", mo = "_title_x9qk8_65", go = "_subtitle_x9qk8_71", bo = "_stat_x9qk8_78", vo = "_statValue_x9qk8_85", yo = "_statUnit_x9qk8_93", ko = "_statDelta_x9qk8_99",
|
|
362
|
+
const lo = "_card_x9qk8_1", io = "_tilt_x9qk8_8", co = "_closeBtn_x9qk8_22", ao = "_padSm_x9qk8_43", ro = "_padMd_x9qk8_44", uo = "_padLg_x9qk8_45", _o = "_padNone_x9qk8_46", ho = "_header_x9qk8_49", fo = "_headerIcon_x9qk8_56", mo = "_title_x9qk8_65", go = "_subtitle_x9qk8_71", bo = "_stat_x9qk8_78", vo = "_statValue_x9qk8_85", yo = "_statUnit_x9qk8_93", ko = "_statDelta_x9qk8_99", No = "_deltaPositive_x9qk8_104", po = "_deltaNegative_x9qk8_105", wo = "_deltaNeutral_x9qk8_106", Ne = {
|
|
363
363
|
card: lo,
|
|
364
364
|
tilt: io,
|
|
365
365
|
closeBtn: co,
|
|
@@ -375,14 +375,14 @@ const lo = "_card_x9qk8_1", io = "_tilt_x9qk8_8", co = "_closeBtn_x9qk8_22", ao
|
|
|
375
375
|
statValue: vo,
|
|
376
376
|
statUnit: yo,
|
|
377
377
|
statDelta: ko,
|
|
378
|
-
deltaPositive:
|
|
379
|
-
deltaNegative:
|
|
378
|
+
deltaPositive: No,
|
|
379
|
+
deltaNegative: po,
|
|
380
380
|
deltaNeutral: wo
|
|
381
381
|
}, Io = {
|
|
382
|
-
none:
|
|
383
|
-
sm:
|
|
384
|
-
md:
|
|
385
|
-
lg:
|
|
382
|
+
none: Ne.padNone,
|
|
383
|
+
sm: Ne.padSm,
|
|
384
|
+
md: Ne.padMd,
|
|
385
|
+
lg: Ne.padLg
|
|
386
386
|
}, $o = () => /* @__PURE__ */ e("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", width: "10", height: "10", children: /* @__PURE__ */ e("path", { d: "M18 6 6 18M6 6l12 12" }) });
|
|
387
387
|
function xo({
|
|
388
388
|
padding: t = "md",
|
|
@@ -393,7 +393,7 @@ function xo({
|
|
|
393
393
|
className: s,
|
|
394
394
|
...i
|
|
395
395
|
}) {
|
|
396
|
-
const c = [
|
|
396
|
+
const c = [Ne.card, Io[t], n ? Ne.tilt : null, s].filter(Boolean).join(" ");
|
|
397
397
|
return /* @__PURE__ */ u("div", { ...i, className: c, children: [
|
|
398
398
|
o && /* @__PURE__ */ e(
|
|
399
399
|
"button",
|
|
@@ -401,7 +401,7 @@ function xo({
|
|
|
401
401
|
type: "button",
|
|
402
402
|
"aria-label": "Close",
|
|
403
403
|
...l,
|
|
404
|
-
className: [
|
|
404
|
+
className: [Ne.closeBtn, l == null ? void 0 : l.className].filter(Boolean).join(" "),
|
|
405
405
|
onClick: o,
|
|
406
406
|
children: /* @__PURE__ */ e($o, {})
|
|
407
407
|
}
|
|
@@ -417,11 +417,11 @@ function Co({
|
|
|
417
417
|
className: l,
|
|
418
418
|
...a
|
|
419
419
|
}) {
|
|
420
|
-
return /* @__PURE__ */ u("div", { ...a, className: [
|
|
421
|
-
t && /* @__PURE__ */ e("span", { className:
|
|
420
|
+
return /* @__PURE__ */ u("div", { ...a, className: [Ne.header, l].filter(Boolean).join(" "), children: [
|
|
421
|
+
t && /* @__PURE__ */ e("span", { className: Ne.headerIcon, children: t }),
|
|
422
422
|
/* @__PURE__ */ u("div", { children: [
|
|
423
|
-
/* @__PURE__ */ e("div", { className:
|
|
424
|
-
o && /* @__PURE__ */ e("div", { className:
|
|
423
|
+
/* @__PURE__ */ e("div", { className: Ne.title, children: n }),
|
|
424
|
+
o && /* @__PURE__ */ e("div", { className: Ne.subtitle, children: o })
|
|
425
425
|
] })
|
|
426
426
|
] });
|
|
427
427
|
}
|
|
@@ -435,13 +435,13 @@ function Bo({
|
|
|
435
435
|
...s
|
|
436
436
|
}) {
|
|
437
437
|
const i = [
|
|
438
|
-
|
|
439
|
-
l === "positive" ?
|
|
438
|
+
Ne.statDelta,
|
|
439
|
+
l === "positive" ? Ne.deltaPositive : l === "negative" ? Ne.deltaNegative : Ne.deltaNeutral
|
|
440
440
|
].filter(Boolean).join(" ");
|
|
441
|
-
return /* @__PURE__ */ u("div", { ...s, className: [
|
|
442
|
-
/* @__PURE__ */ u("span", { className:
|
|
441
|
+
return /* @__PURE__ */ u("div", { ...s, className: [Ne.stat, a].filter(Boolean).join(" "), children: [
|
|
442
|
+
/* @__PURE__ */ u("span", { className: Ne.statValue, children: [
|
|
443
443
|
t,
|
|
444
|
-
n && /* @__PURE__ */ u("span", { className:
|
|
444
|
+
n && /* @__PURE__ */ u("span", { className: Ne.statUnit, children: [
|
|
445
445
|
" ",
|
|
446
446
|
n
|
|
447
447
|
] })
|
|
@@ -562,7 +562,7 @@ const ms = Ke(
|
|
|
562
562
|
disabled: g,
|
|
563
563
|
clearButtonProps: d,
|
|
564
564
|
value: b,
|
|
565
|
-
defaultValue:
|
|
565
|
+
defaultValue: N = "",
|
|
566
566
|
onChange: f,
|
|
567
567
|
onValueChange: $,
|
|
568
568
|
fieldProps: j,
|
|
@@ -576,9 +576,9 @@ const ms = Ke(
|
|
|
576
576
|
step: F,
|
|
577
577
|
...Y
|
|
578
578
|
}, y) => {
|
|
579
|
-
const v = be(null), T = be(null), [O, L] = ge(!1), [I,
|
|
579
|
+
const v = be(null), T = be(null), [O, L] = ge(!1), [I, p] = ge(() => lt(N, t) ?? /* @__PURE__ */ new Date()), [x, E] = Xe(
|
|
580
580
|
b,
|
|
581
|
-
|
|
581
|
+
N,
|
|
582
582
|
$
|
|
583
583
|
);
|
|
584
584
|
dt(y, () => v.current);
|
|
@@ -586,7 +586,7 @@ const ms = Ke(
|
|
|
586
586
|
je(() => {
|
|
587
587
|
if (!O) return;
|
|
588
588
|
const r = lt(x, t);
|
|
589
|
-
|
|
589
|
+
p(r ?? /* @__PURE__ */ new Date());
|
|
590
590
|
}, [x, t, O]), je(() => {
|
|
591
591
|
if (!O) return;
|
|
592
592
|
const r = (U) => {
|
|
@@ -628,12 +628,12 @@ const ms = Ke(
|
|
|
628
628
|
const [U, Z] = bt(x, t).split(":"), Q = r === "hour" ? `${w}:${Z}` : `${U}:${w}`;
|
|
629
629
|
ae(Q);
|
|
630
630
|
}, me = (r) => {
|
|
631
|
-
|
|
631
|
+
p((w) => {
|
|
632
632
|
const U = new Date(w);
|
|
633
633
|
return U.setMonth(w.getMonth() + r), U;
|
|
634
634
|
});
|
|
635
635
|
}, we = (r) => {
|
|
636
|
-
|
|
636
|
+
p((w) => {
|
|
637
637
|
const U = new Date(w);
|
|
638
638
|
return U.setFullYear(w.getFullYear() + r), U;
|
|
639
639
|
});
|
|
@@ -823,11 +823,11 @@ function vs(t, n, o = {}) {
|
|
|
823
823
|
}
|
|
824
824
|
return i;
|
|
825
825
|
}
|
|
826
|
-
const ys = "_wrapper_nf6g9_1", ks = "_field_nf6g9_7",
|
|
826
|
+
const ys = "_wrapper_nf6g9_1", ks = "_field_nf6g9_7", Ns = "_label_nf6g9_13", ps = "_helpText_nf6g9_23", ws = "_input_nf6g9_30", Is = "_invalid_nf6g9_58", $s = "_rounded_nf6g9_72", xs = "_hasIcon_nf6g9_77", Cs = "_hasTrailing_nf6g9_79", Bs = "_iconSlot_nf6g9_82", js = "_trailingContent_nf6g9_95", Ls = "_trailingIcon_nf6g9_105", Ms = "_iconButton_nf6g9_115", Ts = "_clearBtn_nf6g9_116", Ds = "_numberControlButton_nf6g9_117", Ss = "_numberControls_nf6g9_147", $e = {
|
|
827
827
|
wrapper: ys,
|
|
828
828
|
field: ks,
|
|
829
|
-
label:
|
|
830
|
-
helpText:
|
|
829
|
+
label: Ns,
|
|
830
|
+
helpText: ps,
|
|
831
831
|
input: ws,
|
|
832
832
|
invalid: Is,
|
|
833
833
|
rounded: $s,
|
|
@@ -866,7 +866,7 @@ const ys = "_wrapper_nf6g9_1", ks = "_field_nf6g9_7", ps = "_label_nf6g9_13", Ns
|
|
|
866
866
|
showPasswordToggle: g = !0,
|
|
867
867
|
rounded: d = !1,
|
|
868
868
|
disabled: b,
|
|
869
|
-
mask:
|
|
869
|
+
mask: N,
|
|
870
870
|
maskAllowedPattern: f,
|
|
871
871
|
maskPlaceholder: $,
|
|
872
872
|
selectOnFocus: j = !1,
|
|
@@ -884,13 +884,13 @@ const ys = "_wrapper_nf6g9_1", ks = "_field_nf6g9_7", ps = "_label_nf6g9_13", Ns
|
|
|
884
884
|
style: T,
|
|
885
885
|
...O
|
|
886
886
|
}, L) => {
|
|
887
|
-
const I = be(null),
|
|
887
|
+
const I = be(null), p = (y == null ? void 0 : y.type) ?? V, x = p === "number", E = p === "password", [M, se] = ge(!1), [J, m] = Xe(
|
|
888
888
|
C,
|
|
889
889
|
R,
|
|
890
890
|
(S) => {
|
|
891
891
|
A == null || A({
|
|
892
892
|
value: S,
|
|
893
|
-
rawValue:
|
|
893
|
+
rawValue: N ? Lt(S, {
|
|
894
894
|
allowedPattern: f
|
|
895
895
|
}) : S
|
|
896
896
|
});
|
|
@@ -900,12 +900,12 @@ const ys = "_wrapper_nf6g9_1", ks = "_field_nf6g9_7", ps = "_label_nf6g9_13", Ns
|
|
|
900
900
|
const D = Ye(
|
|
901
901
|
(S) => {
|
|
902
902
|
const h = x ? Hs(S) : S;
|
|
903
|
-
return
|
|
903
|
+
return N ? vs(h, N, {
|
|
904
904
|
allowedPattern: f,
|
|
905
905
|
placeholder: $
|
|
906
906
|
}) : h;
|
|
907
907
|
},
|
|
908
|
-
[x,
|
|
908
|
+
[x, N, f, $]
|
|
909
909
|
), te = (S) => {
|
|
910
910
|
var z;
|
|
911
911
|
const h = D(S.target.value);
|
|
@@ -941,7 +941,7 @@ const ys = "_wrapper_nf6g9_1", ks = "_field_nf6g9_7", ps = "_label_nf6g9_13", Ns
|
|
|
941
941
|
...y == null ? void 0 : y.style,
|
|
942
942
|
...B ? { textAlign: B } : null,
|
|
943
943
|
...r ? { "--input-padding-right": `${r}px` } : null
|
|
944
|
-
}, Q = b || (y == null ? void 0 : y.disabled), ue = E ? M && de ? "text" : "password" : x ? "text" :
|
|
944
|
+
}, Q = b || (y == null ? void 0 : y.disabled), ue = E ? M && de ? "text" : "password" : x ? "text" : p, Le = i ?? "Clear", Se = /* @__PURE__ */ e(
|
|
945
945
|
"input",
|
|
946
946
|
{
|
|
947
947
|
...O,
|
|
@@ -1060,7 +1060,7 @@ const Ps = Ke(
|
|
|
1060
1060
|
className: g,
|
|
1061
1061
|
style: d,
|
|
1062
1062
|
href: b,
|
|
1063
|
-
rel:
|
|
1063
|
+
rel: N,
|
|
1064
1064
|
target: f,
|
|
1065
1065
|
tabIndex: $,
|
|
1066
1066
|
onClick: j,
|
|
@@ -1085,7 +1085,7 @@ const Ps = Ke(
|
|
|
1085
1085
|
...B,
|
|
1086
1086
|
href: l ? void 0 : b,
|
|
1087
1087
|
target: f,
|
|
1088
|
-
rel: Qs(
|
|
1088
|
+
rel: Qs(N, [C && "noopener", a && "noreferrer"]),
|
|
1089
1089
|
"aria-disabled": l || void 0,
|
|
1090
1090
|
tabIndex: l ? -1 : $,
|
|
1091
1091
|
className: R,
|
|
@@ -1100,12 +1100,12 @@ const Ps = Ke(
|
|
|
1100
1100
|
}
|
|
1101
1101
|
);
|
|
1102
1102
|
Ps.displayName = "Link";
|
|
1103
|
-
const el = "
|
|
1103
|
+
const el = "_root_1sb0i_1", tl = "_fullWidthBackgroup_1sb0i_16", nl = "_header_1sb0i_32", ol = "_toggleHeader_1sb0i_55", sl = "_noTitleHover_1sb0i_68", ll = "_title_1sb0i_78", il = "_indicator_1sb0i_89", cl = "_collapsed_1sb0i_114", al = "_body_1sb0i_118", rl = "_list_1sb0i_134", dl = "_ungrouped_1sb0i_146", ul = "_item_1sb0i_160", _l = "_itemButton_1sb0i_165", hl = "_itemSurface_1sb0i_166", fl = "_draggableItem_1sb0i_212", ml = "_draggingItem_1sb0i_218", gl = "_active_1sb0i_224", bl = "_disabled_1sb0i_242", vl = "_icon_1sb0i_250", yl = "_itemText_1sb0i_265", kl = "_label_1sb0i_273", Nl = "_description_1sb0i_280", pl = "_meta_1sb0i_289", wl = "_empty_1sb0i_299", Il = "_dropIndicator_1sb0i_312", $l = "_dropIndicatorBefore_1sb0i_326", xl = "_dropIndicatorAfter_1sb0i_330", Cl = "_listDropIndicator_1sb0i_334", Bl = "_dragGhost_1sb0i_362", ee = {
|
|
1104
1104
|
root: el,
|
|
1105
1105
|
fullWidthBackgroup: tl,
|
|
1106
|
-
"spacing-sm": "_spacing-
|
|
1107
|
-
"spacing-md": "_spacing-
|
|
1108
|
-
"spacing-lg": "_spacing-
|
|
1106
|
+
"spacing-sm": "_spacing-sm_1sb0i_20",
|
|
1107
|
+
"spacing-md": "_spacing-md_1sb0i_24",
|
|
1108
|
+
"spacing-lg": "_spacing-lg_1sb0i_28",
|
|
1109
1109
|
header: nl,
|
|
1110
1110
|
toggleHeader: ol,
|
|
1111
1111
|
noTitleHover: sl,
|
|
@@ -1125,8 +1125,8 @@ const el = "_root_1op0h_1", tl = "_fullWidthBackgroup_1op0h_16", nl = "_header_1
|
|
|
1125
1125
|
icon: vl,
|
|
1126
1126
|
itemText: yl,
|
|
1127
1127
|
label: kl,
|
|
1128
|
-
description:
|
|
1129
|
-
meta:
|
|
1128
|
+
description: Nl,
|
|
1129
|
+
meta: pl,
|
|
1130
1130
|
empty: wl,
|
|
1131
1131
|
dropIndicator: Il,
|
|
1132
1132
|
dropIndicatorBefore: $l,
|
|
@@ -1188,7 +1188,7 @@ function ql({
|
|
|
1188
1188
|
selectable: g = !1,
|
|
1189
1189
|
selectedValue: d,
|
|
1190
1190
|
defaultSelectedValue: b = null,
|
|
1191
|
-
onSelectedValueChange:
|
|
1191
|
+
onSelectedValueChange: N,
|
|
1192
1192
|
fullWidthBackgroup: f = !1,
|
|
1193
1193
|
spacing: $ = "sm",
|
|
1194
1194
|
titleHover: j = !1,
|
|
@@ -1209,7 +1209,7 @@ function ql({
|
|
|
1209
1209
|
...I
|
|
1210
1210
|
}) {
|
|
1211
1211
|
var xe;
|
|
1212
|
-
const
|
|
1212
|
+
const p = st(), x = V ?? p, E = `${p}-content`, M = Dl(), se = be(null), J = be(!1), [m, D] = Xe(
|
|
1213
1213
|
a,
|
|
1214
1214
|
s,
|
|
1215
1215
|
i
|
|
@@ -1218,7 +1218,7 @@ function ql({
|
|
|
1218
1218
|
b,
|
|
1219
1219
|
(k) => {
|
|
1220
1220
|
const de = t.find((ve) => ve.value === k);
|
|
1221
|
-
de && k !== null && (
|
|
1221
|
+
de && k !== null && (N == null || N(k, de));
|
|
1222
1222
|
}
|
|
1223
1223
|
), W = o && n !== void 0 && n !== null, X = W && l, P = [
|
|
1224
1224
|
ee.root,
|
|
@@ -1496,7 +1496,7 @@ function ql({
|
|
|
1496
1496
|
);
|
|
1497
1497
|
}
|
|
1498
1498
|
ql.displayName = "List";
|
|
1499
|
-
const Ol = "_checkbox_15o88_2", Wl = "_checkboxBox_15o88_13", Rl = "_checked_15o88_32", Al = "_indeterminate_15o88_40", Hl = "_invalid_15o88_52", Fl = "_disabled_15o88_65", El = "_radio_15o88_80", Vl = "_radioDot_15o88_91", Xl = "_radioChecked_15o88_104", Gl = "_radioDisabled_15o88_125", zl = "_radioGroup_15o88_138", Yl = "_switchWrap_15o88_145", Ul = "_switchTrack_15o88_156", Kl = "_switchOn_15o88_178", Jl = "_switchThinTrack_15o88_187", Zl = "_switchDisabled_15o88_208",
|
|
1499
|
+
const Ol = "_checkbox_15o88_2", Wl = "_checkboxBox_15o88_13", Rl = "_checked_15o88_32", Al = "_indeterminate_15o88_40", Hl = "_invalid_15o88_52", Fl = "_disabled_15o88_65", El = "_radio_15o88_80", Vl = "_radioDot_15o88_91", Xl = "_radioChecked_15o88_104", Gl = "_radioDisabled_15o88_125", zl = "_radioGroup_15o88_138", Yl = "_switchWrap_15o88_145", Ul = "_switchTrack_15o88_156", Kl = "_switchOn_15o88_178", Jl = "_switchThinTrack_15o88_187", Zl = "_switchDisabled_15o88_208", pe = {
|
|
1500
1500
|
checkbox: Ol,
|
|
1501
1501
|
checkboxBox: Wl,
|
|
1502
1502
|
checked: Rl,
|
|
@@ -1526,11 +1526,11 @@ function Pl({
|
|
|
1526
1526
|
...g
|
|
1527
1527
|
}) {
|
|
1528
1528
|
const d = n ?? o ?? !1, b = [
|
|
1529
|
-
|
|
1530
|
-
d && !l ?
|
|
1531
|
-
l ?
|
|
1532
|
-
a ?
|
|
1533
|
-
s ?
|
|
1529
|
+
pe.checkbox,
|
|
1530
|
+
d && !l ? pe.checked : null,
|
|
1531
|
+
l ? pe.indeterminate : null,
|
|
1532
|
+
a ? pe.invalid : null,
|
|
1533
|
+
s ? pe.disabled : null,
|
|
1534
1534
|
c
|
|
1535
1535
|
].filter(Boolean).join(" ");
|
|
1536
1536
|
return /* @__PURE__ */ u("label", { className: b, children: [
|
|
@@ -1542,10 +1542,10 @@ function Pl({
|
|
|
1542
1542
|
checked: d,
|
|
1543
1543
|
disabled: s,
|
|
1544
1544
|
style: { display: "none" },
|
|
1545
|
-
onChange: (
|
|
1545
|
+
onChange: (N) => i == null ? void 0 : i(N.currentTarget.checked)
|
|
1546
1546
|
}
|
|
1547
1547
|
),
|
|
1548
|
-
/* @__PURE__ */ e("span", { className:
|
|
1548
|
+
/* @__PURE__ */ e("span", { className: pe.checkboxBox, children: !l && /* @__PURE__ */ e(Ql, {}) }),
|
|
1549
1549
|
t
|
|
1550
1550
|
] });
|
|
1551
1551
|
}
|
|
@@ -1561,10 +1561,10 @@ function ei({
|
|
|
1561
1561
|
...c
|
|
1562
1562
|
}) {
|
|
1563
1563
|
const g = [
|
|
1564
|
-
|
|
1565
|
-
n ?
|
|
1566
|
-
o ?
|
|
1567
|
-
l ?
|
|
1564
|
+
pe.radio,
|
|
1565
|
+
n ? pe.radioChecked : null,
|
|
1566
|
+
o ? pe.invalid : null,
|
|
1567
|
+
l ? pe.radioDisabled : null,
|
|
1568
1568
|
i
|
|
1569
1569
|
].filter(Boolean).join(" ");
|
|
1570
1570
|
return /* @__PURE__ */ u("label", { className: g, children: [
|
|
@@ -1580,13 +1580,13 @@ function ei({
|
|
|
1580
1580
|
onChange: (d) => a == null ? void 0 : a(d.currentTarget.value)
|
|
1581
1581
|
}
|
|
1582
1582
|
),
|
|
1583
|
-
/* @__PURE__ */ e("span", { className:
|
|
1583
|
+
/* @__PURE__ */ e("span", { className: pe.radioDot }),
|
|
1584
1584
|
t
|
|
1585
1585
|
] });
|
|
1586
1586
|
}
|
|
1587
1587
|
ei.displayName = "Radio";
|
|
1588
1588
|
function ti({ children: t, className: n, ...o }) {
|
|
1589
|
-
const l = [
|
|
1589
|
+
const l = [pe.radioGroup, n].filter(Boolean).join(" ");
|
|
1590
1590
|
return /* @__PURE__ */ e("div", { ...o, className: l, role: "radiogroup", children: t });
|
|
1591
1591
|
}
|
|
1592
1592
|
ti.displayName = "RadioGroup";
|
|
@@ -1602,11 +1602,11 @@ function ni({
|
|
|
1602
1602
|
...g
|
|
1603
1603
|
}) {
|
|
1604
1604
|
const d = n ?? o ?? !1, b = [
|
|
1605
|
-
|
|
1606
|
-
d ?
|
|
1607
|
-
a ?
|
|
1608
|
-
s ?
|
|
1609
|
-
l ?
|
|
1605
|
+
pe.switchWrap,
|
|
1606
|
+
d ? pe.switchOn : null,
|
|
1607
|
+
a ? pe.switchThinTrack : null,
|
|
1608
|
+
s ? pe.invalid : null,
|
|
1609
|
+
l ? pe.switchDisabled : null,
|
|
1610
1610
|
c
|
|
1611
1611
|
].filter(Boolean).join(" ");
|
|
1612
1612
|
return /* @__PURE__ */ u("label", { className: b, children: [
|
|
@@ -1618,10 +1618,10 @@ function ni({
|
|
|
1618
1618
|
checked: d,
|
|
1619
1619
|
disabled: l,
|
|
1620
1620
|
style: { display: "none" },
|
|
1621
|
-
onChange: (
|
|
1621
|
+
onChange: (N) => i == null ? void 0 : i(N.currentTarget.checked)
|
|
1622
1622
|
}
|
|
1623
1623
|
),
|
|
1624
|
-
/* @__PURE__ */ e("span", { className:
|
|
1624
|
+
/* @__PURE__ */ e("span", { className: pe.switchTrack }),
|
|
1625
1625
|
t
|
|
1626
1626
|
] });
|
|
1627
1627
|
}
|
|
@@ -1687,7 +1687,7 @@ function yi({
|
|
|
1687
1687
|
}
|
|
1688
1688
|
yi.displayName = "MenuGroup";
|
|
1689
1689
|
const ki = () => /* @__PURE__ */ e("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.8", strokeLinecap: "round", strokeLinejoin: "round", width: "12", height: "12", children: /* @__PURE__ */ e("path", { d: "m9 18 6-6-6-6" }) });
|
|
1690
|
-
function
|
|
1690
|
+
function Ni({
|
|
1691
1691
|
icon: t,
|
|
1692
1692
|
kbd: n,
|
|
1693
1693
|
active: o = !1,
|
|
@@ -1699,7 +1699,7 @@ function pi({
|
|
|
1699
1699
|
children: g,
|
|
1700
1700
|
className: d,
|
|
1701
1701
|
onClick: b,
|
|
1702
|
-
...
|
|
1702
|
+
...N
|
|
1703
1703
|
}) {
|
|
1704
1704
|
const [f, $] = ge(!1), j = !!a && !c, B = j && i === "hover", _ = [
|
|
1705
1705
|
ke.item,
|
|
@@ -1711,7 +1711,7 @@ function pi({
|
|
|
1711
1711
|
].filter(Boolean).join(" "), R = /* @__PURE__ */ u(
|
|
1712
1712
|
"button",
|
|
1713
1713
|
{
|
|
1714
|
-
...
|
|
1714
|
+
...N,
|
|
1715
1715
|
type: "button",
|
|
1716
1716
|
className: _,
|
|
1717
1717
|
disabled: c,
|
|
@@ -1743,9 +1743,9 @@ function pi({
|
|
|
1743
1743
|
}
|
|
1744
1744
|
) : R;
|
|
1745
1745
|
}
|
|
1746
|
-
|
|
1747
|
-
const
|
|
1748
|
-
backdrop:
|
|
1746
|
+
Ni.displayName = "MenuItem";
|
|
1747
|
+
const pi = "_backdrop_1sntw_1", wi = "_fadeIn_1sntw_1", Ii = "_modal_1sntw_42", $i = "_slideIn_1sntw_1", xi = "_shadow_1sntw_56", Ci = "_header_1sntw_60", Bi = "_draggableHeader_1sntw_68", ji = "_draggingHeader_1sntw_74", Li = "_titleBlock_1sntw_78", Mi = "_title_1sntw_78", Ti = "_subtitle_1sntw_91", Di = "_closeBtn_1sntw_97", Si = "_body_1sntw_119", qi = "_footer_1sntw_125", Te = {
|
|
1748
|
+
backdrop: pi,
|
|
1749
1749
|
fadeIn: wi,
|
|
1750
1750
|
"overlay-none": "_overlay-none_1sntw_11",
|
|
1751
1751
|
"overlay-blur": "_overlay-blur_1sntw_16",
|
|
@@ -1775,7 +1775,7 @@ const Ni = "_backdrop_1sntw_1", wi = "_fadeIn_1sntw_1", Ii = "_modal_1sntw_42",
|
|
|
1775
1775
|
closeOnBackdrop: g = !0,
|
|
1776
1776
|
showCloseButton: d = !0,
|
|
1777
1777
|
backdropProps: b,
|
|
1778
|
-
modalProps:
|
|
1778
|
+
modalProps: N,
|
|
1779
1779
|
headerProps: f,
|
|
1780
1780
|
bodyProps: $,
|
|
1781
1781
|
footerProps: j,
|
|
@@ -1821,18 +1821,18 @@ const Ni = "_backdrop_1sntw_1", wi = "_fadeIn_1sntw_1", Ii = "_modal_1sntw_42",
|
|
|
1821
1821
|
x: D.originX + m.clientX - D.startX,
|
|
1822
1822
|
y: D.originY + m.clientY - D.startY
|
|
1823
1823
|
});
|
|
1824
|
-
},
|
|
1824
|
+
}, p = (m) => {
|
|
1825
1825
|
A.current.pointerId === m.pointerId && m.currentTarget.hasPointerCapture(m.pointerId) && m.currentTarget.releasePointerCapture(m.pointerId), A.current.active = !1, y(!1);
|
|
1826
1826
|
}, x = (m) => {
|
|
1827
1827
|
var D;
|
|
1828
|
-
(D = f == null ? void 0 : f.onPointerUp) == null || D.call(f, m),
|
|
1828
|
+
(D = f == null ? void 0 : f.onPointerUp) == null || D.call(f, m), p(m);
|
|
1829
1829
|
}, E = (m) => {
|
|
1830
1830
|
var D;
|
|
1831
|
-
(D = f == null ? void 0 : f.onPointerCancel) == null || D.call(f, m),
|
|
1831
|
+
(D = f == null ? void 0 : f.onPointerCancel) == null || D.call(f, m), p(m);
|
|
1832
1832
|
};
|
|
1833
1833
|
if (!t) return null;
|
|
1834
|
-
const M = [Te.backdrop, Te[`overlay-${s}`], b == null ? void 0 : b.className].filter(Boolean).join(" "), se = [Te.modal, i ? Te.shadow : null,
|
|
1835
|
-
...
|
|
1834
|
+
const M = [Te.backdrop, Te[`overlay-${s}`], b == null ? void 0 : b.className].filter(Boolean).join(" "), se = [Te.modal, i ? Te.shadow : null, N == null ? void 0 : N.className].filter(Boolean).join(" "), J = {
|
|
1835
|
+
...N == null ? void 0 : N.style,
|
|
1836
1836
|
"--modal-drag-x": `${V.x}px`,
|
|
1837
1837
|
"--modal-drag-y": `${V.y}px`
|
|
1838
1838
|
};
|
|
@@ -1847,7 +1847,7 @@ const Ni = "_backdrop_1sntw_1", wi = "_fadeIn_1sntw_1", Ii = "_modal_1sntw_42",
|
|
|
1847
1847
|
"div",
|
|
1848
1848
|
{
|
|
1849
1849
|
ref: q,
|
|
1850
|
-
...
|
|
1850
|
+
...N,
|
|
1851
1851
|
className: se,
|
|
1852
1852
|
style: J,
|
|
1853
1853
|
role: "dialog",
|
|
@@ -1938,7 +1938,7 @@ function Ji({
|
|
|
1938
1938
|
onOpenChange: d,
|
|
1939
1939
|
popProps: b
|
|
1940
1940
|
}) {
|
|
1941
|
-
const [
|
|
1941
|
+
const [N, f] = ge(n), [$, j] = ge(s), [B, _] = ge(), C = t !== void 0, R = C ? t : N, q = be(null), A = be(null);
|
|
1942
1942
|
function V(T) {
|
|
1943
1943
|
C || f(T), d == null || d(T);
|
|
1944
1944
|
}
|
|
@@ -1954,13 +1954,13 @@ function Ji({
|
|
|
1954
1954
|
const T = () => {
|
|
1955
1955
|
const O = q.current, L = A.current;
|
|
1956
1956
|
if (!O || !L) return;
|
|
1957
|
-
const I = O.getBoundingClientRect(),
|
|
1957
|
+
const I = O.getBoundingClientRect(), p = L.offsetWidth, x = L.offsetHeight, E = window.innerWidth, M = window.innerHeight, se = s.startsWith("top") ? "top" : "bottom", J = se === "top" ? "bottom" : "top", m = s.endsWith("end") ? "end" : "start", D = m === "end" ? "start" : "end", te = {
|
|
1958
1958
|
top: I.top - He,
|
|
1959
1959
|
bottom: M - I.bottom - He
|
|
1960
|
-
}, re = x + Ki, W = te[se] >= re || te[se] >= te[J] ? se : J, X = (xe) => xe === "end" ? I.right -
|
|
1960
|
+
}, re = x + Ki, W = te[se] >= re || te[se] >= te[J] ? se : J, X = (xe) => xe === "end" ? I.right - p : I.left, P = (xe) => {
|
|
1961
1961
|
const k = X(xe);
|
|
1962
|
-
return k >= He && k +
|
|
1963
|
-
}, G = X(m), le = X(D), ie = Math.max(He - G, 0) + Math.max(G +
|
|
1962
|
+
return k >= He && k + p <= E - He;
|
|
1963
|
+
}, G = X(m), le = X(D), ie = Math.max(He - G, 0) + Math.max(G + p - (E - He), 0), ne = Math.max(He - le, 0) + Math.max(le + p - (E - He), 0), he = P(m) || ie <= ne ? m : D, ae = X(he), fe = He - ae, me = ae + p - (E - He);
|
|
1964
1964
|
let we = 0;
|
|
1965
1965
|
fe > 0 && (we = fe), me > 0 && (we = -me), j(`${W}-${he}`), _({ "--popover-shift-x": `${we}px` });
|
|
1966
1966
|
};
|
|
@@ -2054,7 +2054,7 @@ function yc({
|
|
|
2054
2054
|
className: d,
|
|
2055
2055
|
...b
|
|
2056
2056
|
}) {
|
|
2057
|
-
const
|
|
2057
|
+
const N = n > 0 ? n : 100, f = g || typeof t != "number", $ = typeof t == "number" ? vc(t, 0, N) : 0, j = Math.round($ / N * 100), B = c ?? a === "circle", _ = [
|
|
2058
2058
|
Ce.progress,
|
|
2059
2059
|
Ce[o],
|
|
2060
2060
|
a === "circle" ? Ce.circular : null,
|
|
@@ -2062,7 +2062,7 @@ function yc({
|
|
|
2062
2062
|
].filter(Boolean).join(" "), C = {
|
|
2063
2063
|
role: "progressbar",
|
|
2064
2064
|
"aria-valuemin": f ? void 0 : 0,
|
|
2065
|
-
"aria-valuemax": f ? void 0 :
|
|
2065
|
+
"aria-valuemax": f ? void 0 : N,
|
|
2066
2066
|
"aria-valuenow": f ? void 0 : $,
|
|
2067
2067
|
"aria-valuetext": i
|
|
2068
2068
|
};
|
|
@@ -2105,7 +2105,7 @@ function yc({
|
|
|
2105
2105
|
] });
|
|
2106
2106
|
}
|
|
2107
2107
|
yc.displayName = "Progress";
|
|
2108
|
-
const kc = "_group_f9qtj_1",
|
|
2108
|
+
const kc = "_group_f9qtj_1", Nc = "_noBackground_f9qtj_22", pc = "_rounded_f9qtj_26", wc = "_pb_f9qtj_30", Ic = "_fixedWidth_f9qtj_34", $c = "_content_f9qtj_56", xc = "_badge_f9qtj_70", Cc = "_on_f9qtj_93", Bc = "_disabled_f9qtj_98", Me = {
|
|
2109
2109
|
group: kc,
|
|
2110
2110
|
"gap-sm": "_gap-sm_f9qtj_14",
|
|
2111
2111
|
"gap-md": "_gap-md_f9qtj_15",
|
|
@@ -2113,8 +2113,8 @@ const kc = "_group_f9qtj_1", pc = "_noBackground_f9qtj_22", Nc = "_rounded_f9qtj
|
|
|
2113
2113
|
"padding-sm": "_padding-sm_f9qtj_18",
|
|
2114
2114
|
"padding-md": "_padding-md_f9qtj_19",
|
|
2115
2115
|
"padding-lg": "_padding-lg_f9qtj_20",
|
|
2116
|
-
noBackground:
|
|
2117
|
-
rounded:
|
|
2116
|
+
noBackground: Nc,
|
|
2117
|
+
rounded: pc,
|
|
2118
2118
|
pb: wc,
|
|
2119
2119
|
fixedWidth: Ic,
|
|
2120
2120
|
content: $c,
|
|
@@ -2155,7 +2155,7 @@ function jc({
|
|
|
2155
2155
|
const B = new ResizeObserver(j);
|
|
2156
2156
|
return B.observe($), Array.from($.children).forEach((_) => B.observe(_)), () => B.disconnect();
|
|
2157
2157
|
}, [s]);
|
|
2158
|
-
const
|
|
2158
|
+
const N = [
|
|
2159
2159
|
Me.group,
|
|
2160
2160
|
Me[`gap-${t}`],
|
|
2161
2161
|
Me[`padding-${n}`],
|
|
@@ -2168,7 +2168,7 @@ function jc({
|
|
|
2168
2168
|
...a !== void 0 ? { width: a } : null,
|
|
2169
2169
|
...d !== void 0 ? { "--push-button-width": `${d}px` } : null
|
|
2170
2170
|
};
|
|
2171
|
-
return /* @__PURE__ */ e("div", { ...c, ref: g, className:
|
|
2171
|
+
return /* @__PURE__ */ e("div", { ...c, ref: g, className: N, style: f, role: "group", children: s });
|
|
2172
2172
|
}
|
|
2173
2173
|
jc.displayName = "PushButtonGroup";
|
|
2174
2174
|
function Lc({
|
|
@@ -2256,7 +2256,7 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2256
2256
|
multiple: g = !1,
|
|
2257
2257
|
onSearchChange: d,
|
|
2258
2258
|
options: b,
|
|
2259
|
-
optionsAlign:
|
|
2259
|
+
optionsAlign: N = "left",
|
|
2260
2260
|
optionsPosition: f = "bottom",
|
|
2261
2261
|
placeholder: $ = "Select",
|
|
2262
2262
|
searchable: j = !1,
|
|
@@ -2275,7 +2275,7 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2275
2275
|
className: O,
|
|
2276
2276
|
...L
|
|
2277
2277
|
}, I) => {
|
|
2278
|
-
const [
|
|
2278
|
+
const [p, x] = ge(!1), [E, M] = ge(""), [se, J] = ge(null), [m, D] = ge({}), te = be(null), re = be(null), [W, X] = Xe(
|
|
2279
2279
|
V,
|
|
2280
2280
|
F,
|
|
2281
2281
|
(h) => {
|
|
@@ -2311,21 +2311,21 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2311
2311
|
ie ? (z.top = "auto", z.bottom = window.innerHeight - h.top) : (z.top = h.bottom, z.bottom = "auto"), D(z);
|
|
2312
2312
|
}, [ie]);
|
|
2313
2313
|
va(() => {
|
|
2314
|
-
|
|
2315
|
-
}, [
|
|
2316
|
-
if (
|
|
2314
|
+
p && ne();
|
|
2315
|
+
}, [p, ne]), je(() => {
|
|
2316
|
+
if (p)
|
|
2317
2317
|
return ne(), window.addEventListener("resize", ne), window.addEventListener("scroll", ne, !0), () => {
|
|
2318
2318
|
window.removeEventListener("resize", ne), window.removeEventListener("scroll", ne, !0);
|
|
2319
2319
|
};
|
|
2320
|
-
}, [
|
|
2321
|
-
if (!
|
|
2320
|
+
}, [p, ne]), je(() => {
|
|
2321
|
+
if (!p) return;
|
|
2322
2322
|
const h = (z) => {
|
|
2323
2323
|
var ut, _t;
|
|
2324
2324
|
const _e = z.target, Ot = (ut = te.current) == null ? void 0 : ut.contains(_e), Wt = (_t = re.current) == null ? void 0 : _t.contains(_e);
|
|
2325
2325
|
!Ot && !Wt && x(!1);
|
|
2326
2326
|
};
|
|
2327
2327
|
return document.addEventListener("mousedown", h), () => document.removeEventListener("mousedown", h);
|
|
2328
|
-
}, [
|
|
2328
|
+
}, [p]);
|
|
2329
2329
|
const he = (h) => {
|
|
2330
2330
|
M(h), d == null || d(h);
|
|
2331
2331
|
}, ae = q ?? !g, fe = (h) => {
|
|
@@ -2353,9 +2353,9 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2353
2353
|
(z = T == null ? void 0 : T.onKeyDown) == null || z.call(T, h), !h.defaultPrevented && ((h.key === "Enter" || h.key === " ") && (h.preventDefault(), x((_e) => !_e)), h.key === "Escape" && x(!1));
|
|
2354
2354
|
}, de = [
|
|
2355
2355
|
H.trigger,
|
|
2356
|
-
|
|
2356
|
+
p ? H.triggerOpen : null,
|
|
2357
2357
|
A ? H.invalid : null,
|
|
2358
|
-
|
|
2358
|
+
p ? ie ? H.triggerConnectedTop : H.triggerConnectedBottom : null,
|
|
2359
2359
|
T == null ? void 0 : T.className
|
|
2360
2360
|
].filter(Boolean).join(" "), ve = !g || R, oe = g && R && G.length > 0, r = g, w = g && (P.length > 0 || C), U = ve && G.length > 0, Z = 2, Q = G.length - Z, ue = G.map((h, z) => /* @__PURE__ */ u(At, { children: [
|
|
2361
2361
|
z > 0 ? ", " : null,
|
|
@@ -2364,7 +2364,7 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2364
2364
|
left: H.itemAlignLeft,
|
|
2365
2365
|
center: H.itemAlignCenter,
|
|
2366
2366
|
right: H.itemAlignRight
|
|
2367
|
-
}[
|
|
2367
|
+
}[N], ce = p ? /* @__PURE__ */ u(
|
|
2368
2368
|
"div",
|
|
2369
2369
|
{
|
|
2370
2370
|
ref: re,
|
|
@@ -2408,11 +2408,11 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2408
2408
|
"aria-selected": z,
|
|
2409
2409
|
onClick: () => fe(h),
|
|
2410
2410
|
children: [
|
|
2411
|
-
!r &&
|
|
2411
|
+
!r && N === "right" && z && /* @__PURE__ */ e("span", { className: H.checkIcon, children: /* @__PURE__ */ e(ct, {}) }),
|
|
2412
2412
|
r ? /* @__PURE__ */ e("span", { className: [H.checkbox, z ? H.checkboxChecked : null].filter(Boolean).join(" "), children: z && /* @__PURE__ */ e(ct, {}) }) : null,
|
|
2413
2413
|
/* @__PURE__ */ e("span", { children: h.label }),
|
|
2414
2414
|
h.meta && /* @__PURE__ */ e("span", { className: H.itemMeta, children: h.meta }),
|
|
2415
|
-
!r &&
|
|
2415
|
+
!r && N !== "right" && z && /* @__PURE__ */ e("span", { className: H.checkIcon, children: /* @__PURE__ */ e(ct, {}) })
|
|
2416
2416
|
]
|
|
2417
2417
|
},
|
|
2418
2418
|
h.value
|
|
@@ -2437,7 +2437,7 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2437
2437
|
className: de,
|
|
2438
2438
|
disabled: l,
|
|
2439
2439
|
"aria-haspopup": "listbox",
|
|
2440
|
-
"aria-expanded":
|
|
2440
|
+
"aria-expanded": p,
|
|
2441
2441
|
onClick: xe,
|
|
2442
2442
|
onKeyDown: k,
|
|
2443
2443
|
children: [
|
|
@@ -2461,7 +2461,7 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2461
2461
|
children: /* @__PURE__ */ e(kt, {})
|
|
2462
2462
|
}
|
|
2463
2463
|
),
|
|
2464
|
-
/* @__PURE__ */ e("span", { className: [H.chevron,
|
|
2464
|
+
/* @__PURE__ */ e("span", { className: [H.chevron, p ? H.chevronOpen : null].filter(Boolean).join(" "), children: /* @__PURE__ */ e(ma, {}) })
|
|
2465
2465
|
]
|
|
2466
2466
|
}
|
|
2467
2467
|
),
|
|
@@ -2482,10 +2482,10 @@ const Mc = "_root_1qshg_1", Tc = "_field_1qshg_6", Dc = "_label_1qshg_12", Sc =
|
|
|
2482
2482
|
}
|
|
2483
2483
|
);
|
|
2484
2484
|
ya.displayName = "Select";
|
|
2485
|
-
const ka = "_ring_mxe7t_2",
|
|
2485
|
+
const ka = "_ring_mxe7t_2", Na = "_spin_mxe7t_1", pa = "_ringMuted_mxe7t_12", wa = "_sm_mxe7t_14", Ia = "_md_mxe7t_15", $a = "_lg_mxe7t_16", xa = "_onAccent_mxe7t_19", Ca = "_dots_mxe7t_29", Ba = "_dot_mxe7t_29", ja = "_dotPulse_mxe7t_1", La = "_bar_mxe7t_52", Ma = "_barFill_mxe7t_62", Ta = "_barSlide_mxe7t_1", Fe = {
|
|
2486
2486
|
ring: ka,
|
|
2487
|
-
spin:
|
|
2488
|
-
ringMuted:
|
|
2487
|
+
spin: Na,
|
|
2488
|
+
ringMuted: pa,
|
|
2489
2489
|
sm: wa,
|
|
2490
2490
|
md: Ia,
|
|
2491
2491
|
lg: $a,
|
|
@@ -2568,15 +2568,15 @@ function Ja({
|
|
|
2568
2568
|
className: g,
|
|
2569
2569
|
...d
|
|
2570
2570
|
}) {
|
|
2571
|
-
const b = t.length > 0 ? Ka(n, 1, t.length) : 0,
|
|
2571
|
+
const b = t.length > 0 ? Ka(n, 1, t.length) : 0, N = o === "arrow", f = [
|
|
2572
2572
|
Be.steps,
|
|
2573
|
-
|
|
2573
|
+
N ? Be.arrow : Be.line,
|
|
2574
2574
|
Be[l],
|
|
2575
2575
|
g
|
|
2576
2576
|
].filter(Boolean).join(" ");
|
|
2577
2577
|
return /* @__PURE__ */ e("ol", { ...d, className: f, children: t.map(($, j) => {
|
|
2578
2578
|
var Y;
|
|
2579
|
-
const B = j + 1, _ = B < b, C = B === b, R = B > b, q = a && !$.disabled, A = C ? "current" : _ ? "complete" : "pending", V = !
|
|
2579
|
+
const B = j + 1, _ = B < b, C = B === b, R = B > b, q = a && !$.disabled, A = C ? "current" : _ ? "complete" : "pending", V = !N || $.icon || s, F = /* @__PURE__ */ u(ze, { children: [
|
|
2580
2580
|
V && /* @__PURE__ */ e("span", { className: Be.marker, children: $.icon ?? (s ? B : null) }),
|
|
2581
2581
|
/* @__PURE__ */ u("span", { className: Be.text, children: [
|
|
2582
2582
|
/* @__PURE__ */ e("span", { className: Be.label, children: $.label }),
|
|
@@ -2648,7 +2648,7 @@ function _r({
|
|
|
2648
2648
|
tabItemClassName: g,
|
|
2649
2649
|
transparent: d = !1,
|
|
2650
2650
|
inactiveTransparent: b = !1,
|
|
2651
|
-
value:
|
|
2651
|
+
value: N,
|
|
2652
2652
|
defaultValue: f,
|
|
2653
2653
|
onValueChange: $,
|
|
2654
2654
|
className: j,
|
|
@@ -2656,7 +2656,7 @@ function _r({
|
|
|
2656
2656
|
}) {
|
|
2657
2657
|
var y;
|
|
2658
2658
|
const _ = st(), C = be([]), [R, q] = Xe(
|
|
2659
|
-
|
|
2659
|
+
N,
|
|
2660
2660
|
f ?? ur(t),
|
|
2661
2661
|
$
|
|
2662
2662
|
), A = t.find((v) => v.value === R), V = [
|
|
@@ -2669,9 +2669,9 @@ function _r({
|
|
|
2669
2669
|
var O, L;
|
|
2670
2670
|
if (t.length !== 0)
|
|
2671
2671
|
for (let I = 1; I <= t.length; I += 1) {
|
|
2672
|
-
const
|
|
2673
|
-
if (!((O = t[
|
|
2674
|
-
(L = C.current[
|
|
2672
|
+
const p = (v + I * T + t.length) % t.length;
|
|
2673
|
+
if (!((O = t[p]) != null && O.disabled) && !l) {
|
|
2674
|
+
(L = C.current[p]) == null || L.focus(), q(t[p].value);
|
|
2675
2675
|
return;
|
|
2676
2676
|
}
|
|
2677
2677
|
}
|
|
@@ -2687,20 +2687,20 @@ function _r({
|
|
|
2687
2687
|
}
|
|
2688
2688
|
if (v.key === "Home") {
|
|
2689
2689
|
v.preventDefault();
|
|
2690
|
-
const I = l ? -1 : t.findIndex((
|
|
2690
|
+
const I = l ? -1 : t.findIndex((p) => !p.disabled);
|
|
2691
2691
|
I >= 0 && ((O = C.current[I]) == null || O.focus(), q(t[I].value));
|
|
2692
2692
|
return;
|
|
2693
2693
|
}
|
|
2694
2694
|
if (v.key === "End") {
|
|
2695
2695
|
v.preventDefault();
|
|
2696
|
-
const I = l ? -1 : t.map((
|
|
2696
|
+
const I = l ? -1 : t.map((p) => !p.disabled).lastIndexOf(!0);
|
|
2697
2697
|
I >= 0 && ((L = C.current[I]) == null || L.focus(), q(t[I].value));
|
|
2698
2698
|
}
|
|
2699
2699
|
};
|
|
2700
2700
|
return /* @__PURE__ */ u("div", { ...B, className: V, children: [
|
|
2701
2701
|
/* @__PURE__ */ e("div", { className: qe.list, role: "tablist", "aria-label": o, children: t.map((v, T) => {
|
|
2702
2702
|
var E, M, se;
|
|
2703
|
-
const O = v.value === R, L = l || v.disabled, I = !L && (v.closable ?? a),
|
|
2703
|
+
const O = v.value === R, L = l || v.disabled, I = !L && (v.closable ?? a), p = `${_}-${v.value}-tab`, x = `${_}-${v.value}-panel`;
|
|
2704
2704
|
return /* @__PURE__ */ u(
|
|
2705
2705
|
"span",
|
|
2706
2706
|
{
|
|
@@ -2723,7 +2723,7 @@ function _r({
|
|
|
2723
2723
|
},
|
|
2724
2724
|
type: "button",
|
|
2725
2725
|
role: "tab",
|
|
2726
|
-
id:
|
|
2726
|
+
id: p,
|
|
2727
2727
|
"aria-selected": O,
|
|
2728
2728
|
"aria-controls": x,
|
|
2729
2729
|
tabIndex: O ? 0 : -1,
|
|
@@ -2774,7 +2774,7 @@ function _r({
|
|
|
2774
2774
|
] });
|
|
2775
2775
|
}
|
|
2776
2776
|
_r.displayName = "Tabs";
|
|
2777
|
-
const hr = "_field_s04oi_1", fr = "_label_s04oi_7", mr = "_wrapper_s04oi_17", gr = "_textarea_s04oi_21", br = "_invalid_s04oi_44", vr = "_hasClear_s04oi_60", yr = "_clearBtn_s04oi_63", kr = "_footer_s04oi_85",
|
|
2777
|
+
const hr = "_field_s04oi_1", fr = "_label_s04oi_7", mr = "_wrapper_s04oi_17", gr = "_textarea_s04oi_21", br = "_invalid_s04oi_44", vr = "_hasClear_s04oi_60", yr = "_clearBtn_s04oi_63", kr = "_footer_s04oi_85", Nr = "_helpText_s04oi_93", pr = "_charCount_s04oi_95", wr = "_charCountOver_s04oi_101", Oe = {
|
|
2778
2778
|
field: hr,
|
|
2779
2779
|
label: fr,
|
|
2780
2780
|
wrapper: mr,
|
|
@@ -2783,10 +2783,10 @@ const hr = "_field_s04oi_1", fr = "_label_s04oi_7", mr = "_wrapper_s04oi_17", gr
|
|
|
2783
2783
|
hasClear: vr,
|
|
2784
2784
|
clearBtn: yr,
|
|
2785
2785
|
footer: kr,
|
|
2786
|
-
helpText:
|
|
2787
|
-
charCount:
|
|
2786
|
+
helpText: Nr,
|
|
2787
|
+
charCount: pr,
|
|
2788
2788
|
charCountOver: wr
|
|
2789
|
-
}, Ir = () => /* @__PURE__ */ e("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", width: "12", height: "12", children: /* @__PURE__ */ e("path", { d: "M18 6 6 18M6 6l12 12" }) }),
|
|
2789
|
+
}, Ir = () => /* @__PURE__ */ e("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", width: "12", height: "12", children: /* @__PURE__ */ e("path", { d: "M18 6 6 18M6 6l12 12" }) }), Nt = 3, pt = 8, wt = typeof window > "u" ? je : Pe, It = (t, n) => t === void 0 || Number.isNaN(t) ? n : Math.max(1, Math.floor(t)), $r = (t, n) => {
|
|
2790
2790
|
if (typeof t == "function") {
|
|
2791
2791
|
t(n);
|
|
2792
2792
|
return;
|
|
@@ -2798,14 +2798,14 @@ const hr = "_field_s04oi_1", fr = "_label_s04oi_7", mr = "_wrapper_s04oi_17", gr
|
|
|
2798
2798
|
helpText: n,
|
|
2799
2799
|
maxLength: o,
|
|
2800
2800
|
clearable: l = !1,
|
|
2801
|
-
minRows: a =
|
|
2802
|
-
maxRows: s =
|
|
2801
|
+
minRows: a = Nt,
|
|
2802
|
+
maxRows: s = pt,
|
|
2803
2803
|
unlimitedRows: i = !1,
|
|
2804
2804
|
resize: c = "both",
|
|
2805
2805
|
isInvalid: g = !1,
|
|
2806
2806
|
clearButtonProps: d,
|
|
2807
2807
|
disabled: b,
|
|
2808
|
-
value:
|
|
2808
|
+
value: N,
|
|
2809
2809
|
defaultValue: f = "",
|
|
2810
2810
|
onChange: $,
|
|
2811
2811
|
onValueChange: j,
|
|
@@ -2817,15 +2817,15 @@ const hr = "_field_s04oi_1", fr = "_label_s04oi_7", mr = "_wrapper_s04oi_17", gr
|
|
|
2817
2817
|
...A
|
|
2818
2818
|
}, V) => {
|
|
2819
2819
|
const F = be(null), Y = be(null), y = be(null), [v, T] = Xe(
|
|
2820
|
-
|
|
2820
|
+
N,
|
|
2821
2821
|
f,
|
|
2822
2822
|
(W) => j == null ? void 0 : j(W)
|
|
2823
|
-
), O = It(a,
|
|
2823
|
+
), O = It(a, Nt), L = i ? void 0 : Math.max(O, It(s, pt)), I = Ye(
|
|
2824
2824
|
(W) => {
|
|
2825
2825
|
y.current = W, $r(V, W);
|
|
2826
2826
|
},
|
|
2827
2827
|
[V]
|
|
2828
|
-
),
|
|
2828
|
+
), p = Ye(() => {
|
|
2829
2829
|
const W = y.current;
|
|
2830
2830
|
if (!W || typeof window > "u") return;
|
|
2831
2831
|
const X = window.getComputedStyle(W), P = Number.parseFloat(X.fontSize) || 13, G = Number.parseFloat(X.lineHeight) || P * 1.55, le = Number.parseFloat(X.paddingTop) || 0, ie = Number.parseFloat(X.paddingBottom) || 0, ne = Number.parseFloat(X.borderTopWidth) || 0, he = Number.parseFloat(X.borderBottomWidth) || 0, ae = le + ie + ne + he, fe = G * O + ae, me = L ? G * L + ae : void 0;
|
|
@@ -2837,8 +2837,8 @@ const hr = "_field_s04oi_1", fr = "_label_s04oi_7", mr = "_wrapper_s04oi_17", gr
|
|
|
2837
2837
|
W.style.height = `${we}px`, W.style.overflowY = me && W.scrollHeight > me ? "auto" : "hidden";
|
|
2838
2838
|
}, [L, O]);
|
|
2839
2839
|
wt(() => {
|
|
2840
|
-
|
|
2841
|
-
}, [v,
|
|
2840
|
+
p();
|
|
2841
|
+
}, [v, p]), wt(() => {
|
|
2842
2842
|
const W = F.current, X = Y.current, P = y.current, G = c === "horizontal" || c === "both";
|
|
2843
2843
|
if (!X || !P) return;
|
|
2844
2844
|
if (!G) {
|
|
@@ -2979,7 +2979,7 @@ function St({
|
|
|
2979
2979
|
a ? De.shadow : null,
|
|
2980
2980
|
De[t],
|
|
2981
2981
|
i
|
|
2982
|
-
].filter(Boolean).join(" "),
|
|
2982
|
+
].filter(Boolean).join(" "), N = /* @__PURE__ */ u("div", { ...c, className: b, role: "alert", children: [
|
|
2983
2983
|
$t[t] ? /* @__PURE__ */ e("span", { className: De.lead, children: $t[t] }) : null,
|
|
2984
2984
|
/* @__PURE__ */ u("div", { className: De.body, children: [
|
|
2985
2985
|
/* @__PURE__ */ e("div", { className: De.title, children: n }),
|
|
@@ -2996,23 +2996,23 @@ function St({
|
|
|
2996
2996
|
}
|
|
2997
2997
|
)
|
|
2998
2998
|
] });
|
|
2999
|
-
return !l || !g ?
|
|
2999
|
+
return !l || !g ? N : /* @__PURE__ */ u(ze, { children: [
|
|
3000
3000
|
/* @__PURE__ */ e("div", { className: De.overlay, "aria-hidden": "true" }),
|
|
3001
|
-
|
|
3001
|
+
N
|
|
3002
3002
|
] });
|
|
3003
3003
|
}
|
|
3004
3004
|
St.displayName = "Toast";
|
|
3005
3005
|
const qt = Ft(null);
|
|
3006
3006
|
function _d({ maxVisible: t = 3, position: n = "bottom-right", offset: o = 24, children: l }) {
|
|
3007
3007
|
const [a, s] = ge([]), i = Ye((d) => {
|
|
3008
|
-
s((b) => b.filter((
|
|
3008
|
+
s((b) => b.filter((N) => N.id !== d));
|
|
3009
3009
|
}, []), c = Ye(
|
|
3010
3010
|
(d) => {
|
|
3011
|
-
const b = Math.random().toString(36).slice(2),
|
|
3011
|
+
const b = Math.random().toString(36).slice(2), N = d.duration ?? (d.variant === "loading" ? 0 : 4e3), f = t === void 0 || !Number.isFinite(t) ? void 0 : Math.max(0, Math.floor(t));
|
|
3012
3012
|
return s(($) => {
|
|
3013
3013
|
const j = [...$, { ...d, id: b }];
|
|
3014
3014
|
return f === void 0 ? j : f === 0 ? [] : j.slice(-f);
|
|
3015
|
-
}),
|
|
3015
|
+
}), N > 0 && setTimeout(() => i(b), N), b;
|
|
3016
3016
|
},
|
|
3017
3017
|
[i, t]
|
|
3018
3018
|
), g = a.some((d) => d.variant === "loading" && d.overlay);
|
|
@@ -3077,7 +3077,7 @@ function cd({
|
|
|
3077
3077
|
wrapperProps: c,
|
|
3078
3078
|
disabled: g = !1
|
|
3079
3079
|
}) {
|
|
3080
|
-
const [d, b] = ge(!1), [
|
|
3080
|
+
const [d, b] = ge(!1), [N, f] = ge(n), [$, j] = ge(), B = be({ x: 0, y: 0 }), _ = be(null), C = be(null), R = be(null), q = () => {
|
|
3081
3081
|
R.current !== null && (window.clearTimeout(R.current), R.current = null);
|
|
3082
3082
|
};
|
|
3083
3083
|
if (je(() => q, []), je(() => {
|
|
@@ -3097,9 +3097,9 @@ function cd({
|
|
|
3097
3097
|
f(n), j(void 0);
|
|
3098
3098
|
return;
|
|
3099
3099
|
}
|
|
3100
|
-
const I = _.current,
|
|
3101
|
-
if (!I || !
|
|
3102
|
-
const x = I.getBoundingClientRect(), E =
|
|
3100
|
+
const I = _.current, p = C.current;
|
|
3101
|
+
if (!I || !p) return;
|
|
3102
|
+
const x = I.getBoundingClientRect(), E = p.offsetWidth, M = p.offsetHeight, se = window.innerWidth, J = window.innerHeight, m = {
|
|
3103
3103
|
top: x.top - s,
|
|
3104
3104
|
bottom: J - x.bottom - s,
|
|
3105
3105
|
left: x.left - s,
|
|
@@ -3136,23 +3136,23 @@ function cd({
|
|
|
3136
3136
|
}, V = () => {
|
|
3137
3137
|
q(), b(!1);
|
|
3138
3138
|
}, F = (I) => {
|
|
3139
|
-
var
|
|
3140
|
-
(
|
|
3139
|
+
var p;
|
|
3140
|
+
(p = c == null ? void 0 : c.onMouseEnter) == null || p.call(c, I), B.current = { x: I.clientX, y: I.clientY }, A();
|
|
3141
3141
|
}, Y = (I) => {
|
|
3142
|
-
var
|
|
3143
|
-
(
|
|
3142
|
+
var p;
|
|
3143
|
+
(p = c == null ? void 0 : c.onMouseMove) == null || p.call(c, I), a && (B.current = { x: I.clientX, y: I.clientY }, b(!1), A());
|
|
3144
3144
|
}, y = (I) => {
|
|
3145
|
-
var
|
|
3146
|
-
(
|
|
3145
|
+
var p;
|
|
3146
|
+
(p = c == null ? void 0 : c.onMouseLeave) == null || p.call(c, I), V();
|
|
3147
3147
|
}, v = (I) => {
|
|
3148
3148
|
var x;
|
|
3149
3149
|
(x = c == null ? void 0 : c.onFocus) == null || x.call(c, I);
|
|
3150
|
-
const
|
|
3151
|
-
B.current = { x:
|
|
3150
|
+
const p = I.currentTarget.getBoundingClientRect();
|
|
3151
|
+
B.current = { x: p.right, y: p.bottom }, A();
|
|
3152
3152
|
}, T = (I) => {
|
|
3153
|
-
var
|
|
3154
|
-
(
|
|
3155
|
-
}, O = [nt.tooltip, a ? nt.cursor : nt[
|
|
3153
|
+
var p;
|
|
3154
|
+
(p = c == null ? void 0 : c.onBlur) == null || p.call(c, I), V();
|
|
3155
|
+
}, O = [nt.tooltip, a ? nt.cursor : nt[N]].filter(Boolean).join(" "), L = [nt.wrapper, c == null ? void 0 : c.className].filter(Boolean).join(" ");
|
|
3156
3156
|
return /* @__PURE__ */ u(
|
|
3157
3157
|
"span",
|
|
3158
3158
|
{
|
|
@@ -3188,7 +3188,7 @@ export {
|
|
|
3188
3188
|
ql as List,
|
|
3189
3189
|
vi as Menu,
|
|
3190
3190
|
yi as MenuGroup,
|
|
3191
|
-
|
|
3191
|
+
Ni as MenuItem,
|
|
3192
3192
|
Wi as Modal,
|
|
3193
3193
|
Ji as Popover,
|
|
3194
3194
|
yc as Progress,
|