@chainberry/ui-components 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.mjs +55 -55
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1896,12 +1896,18 @@ export declare namespace transactionsData {
|
|
|
1896
1896
|
}
|
|
1897
1897
|
}
|
|
1898
1898
|
|
|
1899
|
-
export declare function TransactionsFilterPanel({ open, onOpenChange, value, assets, onApply,
|
|
1899
|
+
export declare function TransactionsFilterPanel({ open, onOpenChange, value, assets, onApply, }: {
|
|
1900
1900
|
open: boolean;
|
|
1901
1901
|
onOpenChange: (open: boolean) => void;
|
|
1902
1902
|
value: TxFilter;
|
|
1903
1903
|
assets: AssetOption[];
|
|
1904
1904
|
onApply: (filter: TxFilter) => void;
|
|
1905
|
+
/**
|
|
1906
|
+
* @deprecated No longer invoked. Reset now clears the in-drawer draft only and
|
|
1907
|
+
* never mutates applied filters or the table — commit changes via Apply
|
|
1908
|
+
* (applying a cleared draft is what clears the table). Kept optional so callers
|
|
1909
|
+
* that still pass it don't break at the type level.
|
|
1910
|
+
*/
|
|
1905
1911
|
onReset?: () => void;
|
|
1906
1912
|
}): JSX.Element;
|
|
1907
1913
|
|
package/dist/index.mjs
CHANGED
|
@@ -2879,6 +2879,11 @@ var dr = [
|
|
|
2879
2879
|
id: "activity",
|
|
2880
2880
|
label: "Activity",
|
|
2881
2881
|
icon: "list"
|
|
2882
|
+
},
|
|
2883
|
+
{
|
|
2884
|
+
id: "activity-v2",
|
|
2885
|
+
label: "Activity V2",
|
|
2886
|
+
icon: "list"
|
|
2882
2887
|
}
|
|
2883
2888
|
]
|
|
2884
2889
|
},
|
|
@@ -3030,6 +3035,11 @@ var dr = [
|
|
|
3030
3035
|
id: "activity",
|
|
3031
3036
|
label: "Activity",
|
|
3032
3037
|
icon: "list"
|
|
3038
|
+
},
|
|
3039
|
+
{
|
|
3040
|
+
id: "activity-v2",
|
|
3041
|
+
label: "Activity V2",
|
|
3042
|
+
icon: "list"
|
|
3033
3043
|
}
|
|
3034
3044
|
]
|
|
3035
3045
|
},
|
|
@@ -5234,10 +5244,10 @@ var Ki = "flex cursor-pointer items-center gap-2.5 rounded-lg px-2 py-1.5 text-s
|
|
|
5234
5244
|
out: "text-rose-500",
|
|
5235
5245
|
neutral: "text-slate-400"
|
|
5236
5246
|
};
|
|
5237
|
-
function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i
|
|
5238
|
-
let [
|
|
5247
|
+
function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i }) {
|
|
5248
|
+
let [a, s] = d(n);
|
|
5239
5249
|
return o(() => {
|
|
5240
|
-
e &&
|
|
5250
|
+
e && s(n);
|
|
5241
5251
|
}, [e]), /* @__PURE__ */ _(un, {
|
|
5242
5252
|
open: e,
|
|
5243
5253
|
onOpenChange: t,
|
|
@@ -5259,8 +5269,8 @@ function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i, onReset
|
|
|
5259
5269
|
className: Ki,
|
|
5260
5270
|
children: [
|
|
5261
5271
|
/* @__PURE__ */ _(St, {
|
|
5262
|
-
checked:
|
|
5263
|
-
onCheckedChange: () =>
|
|
5272
|
+
checked: a.types.includes(e.value),
|
|
5273
|
+
onCheckedChange: () => s((t) => ({
|
|
5264
5274
|
...t,
|
|
5265
5275
|
types: Wi(t.types, e.value)
|
|
5266
5276
|
}))
|
|
@@ -5285,8 +5295,8 @@ function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i, onReset
|
|
|
5285
5295
|
children: wi.map((e) => /* @__PURE__ */ v("label", {
|
|
5286
5296
|
className: Ki,
|
|
5287
5297
|
children: [/* @__PURE__ */ _(St, {
|
|
5288
|
-
checked:
|
|
5289
|
-
onCheckedChange: () =>
|
|
5298
|
+
checked: a.statuses.includes(e),
|
|
5299
|
+
onCheckedChange: () => s((t) => ({
|
|
5290
5300
|
...t,
|
|
5291
5301
|
statuses: Wi(t.statuses, e)
|
|
5292
5302
|
}))
|
|
@@ -5306,8 +5316,8 @@ function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i, onReset
|
|
|
5306
5316
|
className: Ki,
|
|
5307
5317
|
children: [
|
|
5308
5318
|
/* @__PURE__ */ _(St, {
|
|
5309
|
-
checked:
|
|
5310
|
-
onCheckedChange: () =>
|
|
5319
|
+
checked: a.assets.includes(e.key),
|
|
5320
|
+
onCheckedChange: () => s((t) => ({
|
|
5311
5321
|
...t,
|
|
5312
5322
|
assets: Wi(t.assets, e.key)
|
|
5313
5323
|
}))
|
|
@@ -5341,8 +5351,8 @@ function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i, onReset
|
|
|
5341
5351
|
className: Ki,
|
|
5342
5352
|
children: [
|
|
5343
5353
|
/* @__PURE__ */ _(St, {
|
|
5344
|
-
checked:
|
|
5345
|
-
onCheckedChange: () =>
|
|
5354
|
+
checked: a.risks.includes(e.value),
|
|
5355
|
+
onCheckedChange: () => s((t) => ({
|
|
5346
5356
|
...t,
|
|
5347
5357
|
risks: Wi(t.risks, e.value)
|
|
5348
5358
|
}))
|
|
@@ -5361,8 +5371,8 @@ function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i, onReset
|
|
|
5361
5371
|
/* @__PURE__ */ v(Gi, {
|
|
5362
5372
|
title: "Date Range",
|
|
5363
5373
|
children: [/* @__PURE__ */ v(an, {
|
|
5364
|
-
value:
|
|
5365
|
-
onValueChange: (e) =>
|
|
5374
|
+
value: a.dateField,
|
|
5375
|
+
onValueChange: (e) => s((t) => ({
|
|
5366
5376
|
...t,
|
|
5367
5377
|
dateField: e
|
|
5368
5378
|
})),
|
|
@@ -5378,10 +5388,10 @@ function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i, onReset
|
|
|
5378
5388
|
mode: "range",
|
|
5379
5389
|
className: "mt-3 rounded-xl border border-cb-line p-3",
|
|
5380
5390
|
selected: {
|
|
5381
|
-
from:
|
|
5382
|
-
to:
|
|
5391
|
+
from: a.from ? ae(a.from) : void 0,
|
|
5392
|
+
to: a.to ? ae(a.to) : void 0
|
|
5383
5393
|
},
|
|
5384
|
-
onSelect: (e) =>
|
|
5394
|
+
onSelect: (e) => s((t) => ({
|
|
5385
5395
|
...t,
|
|
5386
5396
|
from: e?.from ? j(e.from, "yyyy-MM-dd") : void 0,
|
|
5387
5397
|
to: e?.to ? j(e.to, "yyyy-MM-dd") : void 0
|
|
@@ -5397,7 +5407,7 @@ function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i, onReset
|
|
|
5397
5407
|
variant: "ghost",
|
|
5398
5408
|
align: "start",
|
|
5399
5409
|
className: "text-muted-foreground",
|
|
5400
|
-
onClick: () =>
|
|
5410
|
+
onClick: () => s(Di)
|
|
5401
5411
|
},
|
|
5402
5412
|
{
|
|
5403
5413
|
key: "cancel",
|
|
@@ -5409,7 +5419,7 @@ function Yi({ open: e, onOpenChange: t, value: n, assets: r, onApply: i, onReset
|
|
|
5409
5419
|
key: "apply",
|
|
5410
5420
|
label: "Apply",
|
|
5411
5421
|
onClick: () => {
|
|
5412
|
-
i(
|
|
5422
|
+
i(a), t(!1);
|
|
5413
5423
|
}
|
|
5414
5424
|
}
|
|
5415
5425
|
] })
|
|
@@ -7678,12 +7688,8 @@ function To({ id: e, label: t = "Wallet", placeholder: n = "Select a wallet", va
|
|
|
7678
7688
|
});
|
|
7679
7689
|
}
|
|
7680
7690
|
//#endregion
|
|
7681
|
-
//#region ../../react-app/src/components/
|
|
7682
|
-
function Eo(e) {
|
|
7683
|
-
let t = Date.parse(`${e.date} ${e.time}`);
|
|
7684
|
-
return Number.isNaN(t) ? 0 : t;
|
|
7685
|
-
}
|
|
7686
|
-
function Do({ name: e }) {
|
|
7691
|
+
//#region ../../react-app/src/components/table/Initiator.tsx
|
|
7692
|
+
function Eo({ name: e }) {
|
|
7687
7693
|
return /* @__PURE__ */ v("span", {
|
|
7688
7694
|
className: "flex items-center gap-2",
|
|
7689
7695
|
children: [/* @__PURE__ */ _("span", {
|
|
@@ -7695,6 +7701,12 @@ function Do({ name: e }) {
|
|
|
7695
7701
|
})]
|
|
7696
7702
|
});
|
|
7697
7703
|
}
|
|
7704
|
+
//#endregion
|
|
7705
|
+
//#region ../../react-app/src/components/convert/ConvertHistoryTable.tsx
|
|
7706
|
+
function Do(e) {
|
|
7707
|
+
let t = Date.parse(`${e.date} ${e.time}`);
|
|
7708
|
+
return Number.isNaN(t) ? 0 : t;
|
|
7709
|
+
}
|
|
7698
7710
|
function Oo({ amount: e, coin: t, tone: n }) {
|
|
7699
7711
|
return /* @__PURE__ */ v("span", {
|
|
7700
7712
|
className: "flex items-center gap-2.5",
|
|
@@ -7721,7 +7733,7 @@ function ko({ data: e, className: t }) {
|
|
|
7721
7733
|
id: "date",
|
|
7722
7734
|
header: "Date",
|
|
7723
7735
|
sortable: !0,
|
|
7724
|
-
sortValue:
|
|
7736
|
+
sortValue: Do,
|
|
7725
7737
|
cell: (e) => /* @__PURE__ */ _(G, {
|
|
7726
7738
|
primary: e.date,
|
|
7727
7739
|
secondary: e.time
|
|
@@ -7732,7 +7744,7 @@ function ko({ data: e, className: t }) {
|
|
|
7732
7744
|
header: "Initiated by",
|
|
7733
7745
|
sortable: !0,
|
|
7734
7746
|
sortValue: (e) => e.initiator,
|
|
7735
|
-
cell: (e) => /* @__PURE__ */ _(
|
|
7747
|
+
cell: (e) => /* @__PURE__ */ _(Eo, { name: e.initiator })
|
|
7736
7748
|
},
|
|
7737
7749
|
{
|
|
7738
7750
|
id: "from",
|
|
@@ -9779,19 +9791,7 @@ function hs(e) {
|
|
|
9779
9791
|
let t = Date.parse(`${e.date} ${e.time}`);
|
|
9780
9792
|
return Number.isNaN(t) ? 0 : t;
|
|
9781
9793
|
}
|
|
9782
|
-
function gs({
|
|
9783
|
-
return /* @__PURE__ */ v("span", {
|
|
9784
|
-
className: "flex items-center gap-2",
|
|
9785
|
-
children: [/* @__PURE__ */ _("span", {
|
|
9786
|
-
className: "flex size-6 shrink-0 items-center justify-center rounded-full bg-cb-seg text-[10px] font-semibold text-muted-foreground",
|
|
9787
|
-
children: e.split(" ").map((e) => e[0]).slice(0, 2).join("").toUpperCase()
|
|
9788
|
-
}), /* @__PURE__ */ _("span", {
|
|
9789
|
-
className: "truncate text-sm text-foreground",
|
|
9790
|
-
children: e
|
|
9791
|
-
})]
|
|
9792
|
-
});
|
|
9793
|
-
}
|
|
9794
|
-
function _s({ data: e, className: t }) {
|
|
9794
|
+
function gs({ data: e, className: t }) {
|
|
9795
9795
|
let n = l(() => [
|
|
9796
9796
|
{
|
|
9797
9797
|
id: "date",
|
|
@@ -9808,7 +9808,7 @@ function _s({ data: e, className: t }) {
|
|
|
9808
9808
|
header: "Initiated by",
|
|
9809
9809
|
sortable: !0,
|
|
9810
9810
|
sortValue: (e) => e.initiator,
|
|
9811
|
-
cell: (e) => /* @__PURE__ */ _(
|
|
9811
|
+
cell: (e) => /* @__PURE__ */ _(Eo, { name: e.initiator })
|
|
9812
9812
|
},
|
|
9813
9813
|
{
|
|
9814
9814
|
id: "from",
|
|
@@ -9895,7 +9895,7 @@ function _s({ data: e, className: t }) {
|
|
|
9895
9895
|
}
|
|
9896
9896
|
//#endregion
|
|
9897
9897
|
//#region ../../react-app/src/components/withdraw/WithdrawSummary.tsx
|
|
9898
|
-
function
|
|
9898
|
+
function _s({ coin: e, network: t, networkName: n, amount: r, amountFiat: i, from: a, to: o, footer: s, className: c }) {
|
|
9899
9899
|
let l = r != null && r !== "" && r !== "0";
|
|
9900
9900
|
return /* @__PURE__ */ v("div", {
|
|
9901
9901
|
className: I("flex flex-col rounded-2xl border border-cb-line bg-slate-50 dark:bg-slate-900/40", c),
|
|
@@ -9949,11 +9949,11 @@ function vs({ coin: e, network: t, networkName: n, amount: r, amountFiat: i, fro
|
|
|
9949
9949
|
children: "—"
|
|
9950
9950
|
})
|
|
9951
9951
|
}),
|
|
9952
|
-
/* @__PURE__ */ _(
|
|
9952
|
+
/* @__PURE__ */ _(vs, {
|
|
9953
9953
|
caption: "From",
|
|
9954
9954
|
endpoint: a
|
|
9955
9955
|
}),
|
|
9956
|
-
/* @__PURE__ */ _(
|
|
9956
|
+
/* @__PURE__ */ _(vs, {
|
|
9957
9957
|
caption: "To",
|
|
9958
9958
|
endpoint: o
|
|
9959
9959
|
})
|
|
@@ -9966,7 +9966,7 @@ function vs({ coin: e, network: t, networkName: n, amount: r, amountFiat: i, fro
|
|
|
9966
9966
|
]
|
|
9967
9967
|
});
|
|
9968
9968
|
}
|
|
9969
|
-
function
|
|
9969
|
+
function vs({ caption: e, endpoint: t }) {
|
|
9970
9970
|
return /* @__PURE__ */ _(Y, {
|
|
9971
9971
|
label: e,
|
|
9972
9972
|
children: t ? t.label ? /* @__PURE__ */ v("div", {
|
|
@@ -9993,10 +9993,10 @@ function ys({ caption: e, endpoint: t }) {
|
|
|
9993
9993
|
}
|
|
9994
9994
|
//#endregion
|
|
9995
9995
|
//#region ../../react-app/src/components/withdraw/WithdrawPanel.tsx
|
|
9996
|
-
function
|
|
9996
|
+
function ys(e) {
|
|
9997
9997
|
return e.length > 18 ? `${e.slice(0, 10)}…${e.slice(-6)}` : e;
|
|
9998
9998
|
}
|
|
9999
|
-
function
|
|
9999
|
+
function bs({ currentUser: e = "Maya Okafor", onSubmit: t, className: n }) {
|
|
10000
10000
|
let [r, i] = d("USDT"), [a, o] = d("ETH"), [s, c] = d(null), [u, f] = d(""), [p, m] = d(""), [h, y] = d(""), [b, S] = d(!1), [C, w] = d(""), [T, E] = d(!1), ee = (ls.find((e) => e.code === r) ?? ls[0]).networks, D = l(() => us.filter((e) => e.coin === r && e.network === a), [r, a]), O = D.find((e) => e.id === s) ?? null, te = p.trim() !== "", ne = r === "TON", re = !ne || u.trim() !== "", k = ps(h), A = O ? ps(O.amount) : 0, j = O != null && k > A, ie = h.trim() !== "" && k > 0, M = O && ie ? ms(k * O.fiatRate) : null, ae = ie ? k.toLocaleString("en-US", {
|
|
10001
10001
|
minimumFractionDigits: 2,
|
|
10002
10002
|
maximumFractionDigits: 8
|
|
@@ -10167,7 +10167,7 @@ function xs({ currentUser: e = "Maya Okafor", onSubmit: t, className: n }) {
|
|
|
10167
10167
|
]
|
|
10168
10168
|
})
|
|
10169
10169
|
}),
|
|
10170
|
-
/* @__PURE__ */ _(
|
|
10170
|
+
/* @__PURE__ */ _(_s, {
|
|
10171
10171
|
className: "h-full",
|
|
10172
10172
|
coin: r,
|
|
10173
10173
|
network: a,
|
|
@@ -10242,7 +10242,7 @@ function xs({ currentUser: e = "Maya Okafor", onSubmit: t, className: n }) {
|
|
|
10242
10242
|
" ",
|
|
10243
10243
|
/* @__PURE__ */ _("span", {
|
|
10244
10244
|
className: "font-mono text-foreground",
|
|
10245
|
-
children: te ?
|
|
10245
|
+
children: te ? ys(p.trim()) : ""
|
|
10246
10246
|
})
|
|
10247
10247
|
]
|
|
10248
10248
|
}), /* @__PURE__ */ v("div", {
|
|
@@ -10251,7 +10251,7 @@ function xs({ currentUser: e = "Maya Okafor", onSubmit: t, className: n }) {
|
|
|
10251
10251
|
htmlFor: "wd-code",
|
|
10252
10252
|
className: "text-[13px] font-medium text-muted-foreground",
|
|
10253
10253
|
children: "Authentication code"
|
|
10254
|
-
}), /* @__PURE__ */ _(
|
|
10254
|
+
}), /* @__PURE__ */ _(xs, {
|
|
10255
10255
|
id: "wd-code",
|
|
10256
10256
|
value: C,
|
|
10257
10257
|
onChange: w
|
|
@@ -10278,7 +10278,7 @@ function xs({ currentUser: e = "Maya Okafor", onSubmit: t, className: n }) {
|
|
|
10278
10278
|
]
|
|
10279
10279
|
});
|
|
10280
10280
|
}
|
|
10281
|
-
function
|
|
10281
|
+
function xs({ id: e, value: t, onChange: n, length: r = 6 }) {
|
|
10282
10282
|
let [i, a] = d(!1), o = Array.from({ length: r }, (e, n) => t[n] ?? ""), s = Math.min(t.length, r - 1);
|
|
10283
10283
|
return /* @__PURE__ */ v("div", {
|
|
10284
10284
|
className: "relative",
|
|
@@ -10308,14 +10308,14 @@ function Ss({ id: e, value: t, onChange: n, length: r = 6 }) {
|
|
|
10308
10308
|
}
|
|
10309
10309
|
//#endregion
|
|
10310
10310
|
//#region ../../react-app/src/components/withdraw/types.ts
|
|
10311
|
-
var
|
|
10312
|
-
function
|
|
10313
|
-
let [t, n] = d(() => localStorage.getItem(
|
|
10311
|
+
var Ss = /* @__PURE__ */ F({}), Cs = "Ipche", ws = "gateUnlocked";
|
|
10312
|
+
function Ts({ children: e }) {
|
|
10313
|
+
let [t, n] = d(() => localStorage.getItem(ws) === "true"), [r, i] = d(""), [a, o] = d(!1);
|
|
10314
10314
|
return t ? /* @__PURE__ */ _(g, { children: e }) : /* @__PURE__ */ _("div", {
|
|
10315
10315
|
className: "flex h-svh items-center justify-center bg-background p-4",
|
|
10316
10316
|
children: /* @__PURE__ */ v("form", {
|
|
10317
10317
|
onSubmit: (e) => {
|
|
10318
|
-
e.preventDefault(), r ===
|
|
10318
|
+
e.preventDefault(), r === Cs ? (localStorage.setItem(ws, "true"), n(!0)) : o(!0);
|
|
10319
10319
|
},
|
|
10320
10320
|
className: "w-full max-w-xs space-y-4 rounded-xl border border-border bg-card p-6 shadow-sm",
|
|
10321
10321
|
children: [/* @__PURE__ */ v("div", {
|
|
@@ -10349,4 +10349,4 @@ function Es({ children: e }) {
|
|
|
10349
10349
|
});
|
|
10350
10350
|
}
|
|
10351
10351
|
//#endregion
|
|
10352
|
-
export { de as ActionFooter, So as AmountField, yr as AppHeaderV1, wr as AppHeaderV2, gi as AssetValue, zn as Avatar, Vn as Badge, Vn as NavBadge, ho as BalancesSummary, vi as BlockchainDetails, z as Button, xt as Calendar, St as Checkbox, U as CoinLogo, Mr as ColumnsMenu, Mt as ConfirmDialog, ko as ConvertHistoryTable, Wo as ConvertPanel, $ as ConvertPickerField, $ as DepositPickerField, $ as PickerField, $ as WithdrawPickerField, jo as ConvertSummary, Nr as CopyButton, W as CopyableId, Ir as CurrencyNetwork, sa as DailyBalancesTable, zr as DataTable, ts as DepositHistoryTable, as as DepositPanel, is as DepositReceiveCard, Y as DetailField, Ct as Dialog, Tt as DialogClose, Dt as DialogContent, jt as DialogDescription, kt as DialogFooter, Ot as DialogHeader, At as DialogTitle, wt as DialogTrigger, ua as DonutChart, Vr as DownloadMenu, Nt as DropdownMenu, Rt as DropdownMenuCheckboxItem, It as DropdownMenuContent, Ft as DropdownMenuGroup, Lt as DropdownMenuItem, Bt as DropdownMenuLabel, Wt as DropdownMenuRadioGroup, B as DropdownMenuRadioItem, zt as DropdownMenuSeparator, Vt as DropdownMenuSub, Ut as DropdownMenuSubContent, Ht as DropdownMenuSubTrigger, Pt as DropdownMenuTrigger, fa as ExportHistoryList, dr as FULL_NAV, Cr as HeaderSearch, Tr as HeaderStickyContext, Wn as ICONS, Gn as ICON_NAMES, Gt as Input, Kt as Label, Jn as Logo, mr as NAV_ITEMS, pr as NAV_PRESETS, _r as NavDrawer, er as NavGroup, Kn as NavIcon, Zn as NavItem, Hn as NavLabel, $n as NavRailSection, Qn as NavSection, nr as NotificationItem, ar as NotificationsMenu, ir as NotificationsPanel, fr as PRIMARY_NAV, vr as PageContainer, kr as PageTitle, Ar as PageTitleChip, jr as PageTitlePanel, qt as Pagination, Jt as PaginationContent, $t as PaginationEllipsis, Yt as PaginationItem, Xt as PaginationLink, Qt as PaginationNext, Zt as PaginationPrevious,
|
|
10352
|
+
export { de as ActionFooter, So as AmountField, yr as AppHeaderV1, wr as AppHeaderV2, gi as AssetValue, zn as Avatar, Vn as Badge, Vn as NavBadge, ho as BalancesSummary, vi as BlockchainDetails, z as Button, xt as Calendar, St as Checkbox, U as CoinLogo, Mr as ColumnsMenu, Mt as ConfirmDialog, ko as ConvertHistoryTable, Wo as ConvertPanel, $ as ConvertPickerField, $ as DepositPickerField, $ as PickerField, $ as WithdrawPickerField, jo as ConvertSummary, Nr as CopyButton, W as CopyableId, Ir as CurrencyNetwork, sa as DailyBalancesTable, zr as DataTable, ts as DepositHistoryTable, as as DepositPanel, is as DepositReceiveCard, Y as DetailField, Ct as Dialog, Tt as DialogClose, Dt as DialogContent, jt as DialogDescription, kt as DialogFooter, Ot as DialogHeader, At as DialogTitle, wt as DialogTrigger, ua as DonutChart, Vr as DownloadMenu, Nt as DropdownMenu, Rt as DropdownMenuCheckboxItem, It as DropdownMenuContent, Ft as DropdownMenuGroup, Lt as DropdownMenuItem, Bt as DropdownMenuLabel, Wt as DropdownMenuRadioGroup, B as DropdownMenuRadioItem, zt as DropdownMenuSeparator, Vt as DropdownMenuSub, Ut as DropdownMenuSubContent, Ht as DropdownMenuSubTrigger, Pt as DropdownMenuTrigger, fa as ExportHistoryList, dr as FULL_NAV, Cr as HeaderSearch, Tr as HeaderStickyContext, Wn as ICONS, Gn as ICON_NAMES, Gt as Input, Kt as Label, Jn as Logo, mr as NAV_ITEMS, pr as NAV_PRESETS, _r as NavDrawer, er as NavGroup, Kn as NavIcon, Zn as NavItem, Hn as NavLabel, $n as NavRailSection, Qn as NavSection, nr as NotificationItem, ar as NotificationsMenu, ir as NotificationsPanel, fr as PRIMARY_NAV, vr as PageContainer, kr as PageTitle, Ar as PageTitleChip, jr as PageTitlePanel, qt as Pagination, Jt as PaginationContent, $t as PaginationEllipsis, Yt as PaginationItem, Xt as PaginationLink, Qt as PaginationNext, Zt as PaginationPrevious, Ts as PasswordGate, Ur as PaymentType, Ea as PeriodPicker, en as Popover, nn as PopoverAnchor, rn as PopoverContent, tn as PopoverTrigger, rs as QrCode, an as RadioGroup, on as RadioGroupItem, Fa as ReportSummaryCard, Ia as ReportSummaryGroup, La as ReportsSummaryEmpty, Si as RiskAssessment, Wr as RiskSignal, rr as SAMPLE_NOTIFICATIONS, Ii as SavePresetDialog, Ri as SavedPresetsBar, cn as ScrollArea, Xn as SectionHeading, ln as Separator, un as SidePanel, gn as SidePanelBody, fn as SidePanelClose, mn as SidePanelContent, yn as SidePanelDescription, _n as SidePanelFooter, hn as SidePanelHeader, xn as SidePanelSectionTitle, bn as SidePanelSeparator, vn as SidePanelTitle, dn as SidePanelTrigger, V as Skeleton, Lr as SortHeader, Kr as StatusBadge, Qi as TRANSACTION_SEARCH_SCOPES, Sn as Table, wn as TableBody, On as TableCaption, H as TableCell, Tn as TableFooter, Dn as TableHead, Cn as TableHeader, En as TableRow, kn as Tabs, Nn as TabsContent, jn as TabsList, Mn as TabsTrigger, Co as TextField, Pr as TextLink, G as TextStack, Fn as Tooltip, Ln as TooltipContent, Pn as TooltipProvider, In as TooltipTrigger, Hi as TransactionDetailPanel, Bi as TransactionInfo, Vi as TransactionReference, zi as TransactionSummary, Yi as TransactionsFilterPanel, ea as TransactionsTable, na as TransactionsTableOptions, pe as UiBadge, ur as UserMenu, po as WalletBalancesTable, To as WalletField, no as WalletRowActions, gs as WithdrawHistoryTable, bs as WithdrawPanel, _s as WithdrawSummary, fe as badgeVariants, go as balancesData, bo as balancesRecentTransactions, yo as balancesTypes, R as buttonVariants, No as convertData, Ko as convertTypes, qo as depositData, os as depositTypes, hr as findNavItem, Da as reportsData, pa as reportsPresets, za as reportsReportData, Ra as reportsTypes, An as tabsListVariants, $i as transactionColumnOptions, qr as transactionsData, Ei as transactionsFilters, Ci as transactionsStatuses, ra as transactionsTypes, Er as useHeaderExtension, ss as withdrawData, Ss as withdrawTypes };
|