kaleido-ui 0.1.71 → 0.1.72
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/web/index.cjs +28 -41
- package/dist/web/index.d.cts +3 -0
- package/dist/web/index.d.ts +3 -0
- package/dist/web/index.js +28 -41
- package/package.json +1 -1
package/dist/web/index.cjs
CHANGED
|
@@ -4676,16 +4676,17 @@ function WithdrawDestinationInput({
|
|
|
4676
4676
|
onChange: (event) => setDestination(event.target.value)
|
|
4677
4677
|
}
|
|
4678
4678
|
),
|
|
4679
|
-
/* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: "absolute right-
|
|
4679
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: "absolute right-3 top-1/2 flex -translate-y-1/2 items-center gap-1", children: [
|
|
4680
4680
|
destination && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
4681
4681
|
"button",
|
|
4682
4682
|
{
|
|
4683
4683
|
type: "button",
|
|
4684
|
+
"aria-label": "Clear",
|
|
4684
4685
|
onClick: () => {
|
|
4685
4686
|
setDestination("");
|
|
4686
4687
|
handleReset();
|
|
4687
4688
|
},
|
|
4688
|
-
className: "
|
|
4689
|
+
className: "rounded-lg p-2 text-muted-foreground transition-colors hover:text-white",
|
|
4689
4690
|
children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: "material-symbols-outlined text-icon-md", children: "close" })
|
|
4690
4691
|
}
|
|
4691
4692
|
),
|
|
@@ -4693,9 +4694,10 @@ function WithdrawDestinationInput({
|
|
|
4693
4694
|
"button",
|
|
4694
4695
|
{
|
|
4695
4696
|
type: "button",
|
|
4697
|
+
"aria-label": "Paste",
|
|
4696
4698
|
onClick: handlePaste,
|
|
4697
|
-
className: "rounded-lg bg-white/
|
|
4698
|
-
children: "
|
|
4699
|
+
className: "rounded-lg bg-white/5 p-2 text-muted-foreground transition-colors hover:text-primary",
|
|
4700
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: "material-symbols-outlined text-icon-md", children: "content_paste" })
|
|
4699
4701
|
}
|
|
4700
4702
|
)
|
|
4701
4703
|
] })
|
|
@@ -4808,7 +4810,7 @@ function WithdrawAmountInput({
|
|
|
4808
4810
|
const value = parseInt(event.target.value, 10);
|
|
4809
4811
|
if (!Number.isNaN(value)) setWitnessAmountSat(value);
|
|
4810
4812
|
},
|
|
4811
|
-
className: "w-full rounded-xl
|
|
4813
|
+
className: "w-full rounded-xl bg-card px-4 py-3 text-sm text-white shadow-inner transition-all focus:outline focus:outline-2 focus:outline-primary/50"
|
|
4812
4814
|
}
|
|
4813
4815
|
),
|
|
4814
4816
|
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("p", { className: "ml-1 text-xs text-muted-foreground", children: "Bitcoin amount sent to create the witness UTXO for the recipient." })
|
|
@@ -4820,7 +4822,7 @@ function WithdrawAmountInput({
|
|
|
4820
4822
|
{
|
|
4821
4823
|
type: "button",
|
|
4822
4824
|
onClick: () => setFeeRate(rate),
|
|
4823
|
-
className: `group relative overflow-hidden rounded-[16px]
|
|
4825
|
+
className: `group relative overflow-hidden rounded-[16px] px-3 py-3 shadow-sm transition-all active:scale-[0.98] ${feeRate === rate ? "bg-primary/10" : "bg-card/40 backdrop-blur-xl hover:bg-card/60"}`,
|
|
4824
4826
|
children: [
|
|
4825
4827
|
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
4826
4828
|
"div",
|
|
@@ -4852,7 +4854,7 @@ function WithdrawAmountInput({
|
|
|
4852
4854
|
rate
|
|
4853
4855
|
)) })
|
|
4854
4856
|
] }),
|
|
4855
|
-
addressType === "rgb" && /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { className: "flex items-center justify-between rounded-xl
|
|
4857
|
+
addressType === "rgb" && /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { className: "flex items-center justify-between rounded-xl bg-card p-3", children: [
|
|
4856
4858
|
/* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { children: [
|
|
4857
4859
|
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("p", { className: "text-sm font-medium text-white", children: "Gift / Donation" }),
|
|
4858
4860
|
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("p", { className: "text-xs text-muted-foreground", children: "Skip amount checks for this transfer" })
|
|
@@ -4978,21 +4980,23 @@ function RouteChoiceCard({
|
|
|
4978
4980
|
onClick,
|
|
4979
4981
|
displayOnly
|
|
4980
4982
|
}) {
|
|
4981
|
-
const { disabled = false, disabledReason, accountIcon, balanceLabel } = route;
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.
|
|
4985
|
-
|
|
4986
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "
|
|
4987
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "text-sm font-
|
|
4988
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
4992
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "text-xxs font-bold uppercase tracking-wider text-white/35", children: route.feeHint }),
|
|
4993
|
-
balanceLabel && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "font-mono text-xxs text-white/50", children: balanceLabel })
|
|
4983
|
+
const { disabled = false, disabledReason, accountIcon, balanceLabel, accentClassName } = route;
|
|
4984
|
+
const body = /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex items-start justify-between gap-3", children: [
|
|
4985
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex min-w-0 items-start gap-3", children: [
|
|
4986
|
+
accountIcon && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: "mt-0.5 shrink-0", children: accountIcon }),
|
|
4987
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "min-w-0", children: [
|
|
4988
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex flex-wrap items-center gap-2", children: [
|
|
4989
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "text-sm font-bold text-white", children: route.accountTitle }),
|
|
4990
|
+
recommended && !disabled && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "rounded-full bg-primary/10 px-2 py-0.5 text-xxs font-bold uppercase tracking-wider text-primary", children: "Recommended" }),
|
|
4991
|
+
disabled && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "rounded-full bg-danger/10 px-2 py-0.5 text-xxs font-bold uppercase tracking-wider text-danger", children: "Insufficient" })
|
|
4992
|
+
] }),
|
|
4993
|
+
balanceLabel && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("p", { className: "mt-0.5 font-mono text-xs text-white/55", children: balanceLabel })
|
|
4994
4994
|
] })
|
|
4995
|
-
] })
|
|
4995
|
+
] }),
|
|
4996
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "shrink-0 text-xxs font-bold uppercase tracking-wider text-white/40", children: route.feeHint })
|
|
4997
|
+
] });
|
|
4998
|
+
if (displayOnly) {
|
|
4999
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: "rounded-2xl bg-card/50 px-4 py-3.5", children: body });
|
|
4996
5000
|
}
|
|
4997
5001
|
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
4998
5002
|
"button",
|
|
@@ -5004,28 +5008,11 @@ function RouteChoiceCard({
|
|
|
5004
5008
|
"aria-disabled": disabled,
|
|
5005
5009
|
title: disabled ? disabledReason : void 0,
|
|
5006
5010
|
className: cn(
|
|
5007
|
-
"w-full rounded-2xl
|
|
5008
|
-
disabled ? "cursor-not-allowed
|
|
5011
|
+
"w-full rounded-2xl p-4 text-left transition-all",
|
|
5012
|
+
disabled ? "cursor-not-allowed bg-danger/5 opacity-60" : selected ? accentClassName ?? "bg-primary/10" : "bg-white/4 hover:bg-white/6"
|
|
5009
5013
|
),
|
|
5010
5014
|
children: [
|
|
5011
|
-
|
|
5012
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex min-w-0 items-start gap-3", children: [
|
|
5013
|
-
accountIcon && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: "mt-0.5 shrink-0", children: accountIcon }),
|
|
5014
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "min-w-0", children: [
|
|
5015
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex flex-wrap items-center gap-2", children: [
|
|
5016
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "text-sm font-bold text-white", children: route.accountTitle }),
|
|
5017
|
-
recommended && !disabled && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "rounded-full border border-primary/20 bg-primary/10 px-2 py-0.5 text-xxs font-bold uppercase tracking-wider text-primary", children: "Recommended" }),
|
|
5018
|
-
disabled && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "rounded-full border border-danger/20 bg-danger/10 px-2 py-0.5 text-xxs font-bold uppercase tracking-wider text-danger", children: "Insufficient" })
|
|
5019
|
-
] }),
|
|
5020
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("p", { className: "mt-1 text-xs text-white/45", children: route.methodLabel })
|
|
5021
|
-
] })
|
|
5022
|
-
] }),
|
|
5023
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex shrink-0 flex-col items-end gap-1", children: [
|
|
5024
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "text-xxs font-bold uppercase tracking-wider text-white/35", children: route.feeHint }),
|
|
5025
|
-
balanceLabel && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "font-mono text-xxs text-white/50", children: balanceLabel })
|
|
5026
|
-
] })
|
|
5027
|
-
] }),
|
|
5028
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("p", { className: "mt-3 text-xs leading-relaxed text-muted-foreground", children: route.summary }),
|
|
5015
|
+
body,
|
|
5029
5016
|
disabled && disabledReason && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("p", { className: "mt-2 text-xxs leading-relaxed text-danger/80", children: disabledReason })
|
|
5030
5017
|
]
|
|
5031
5018
|
}
|
package/dist/web/index.d.cts
CHANGED
|
@@ -930,6 +930,9 @@ interface WithdrawRouteOption<TAccount extends string = string> {
|
|
|
930
930
|
accountIcon?: ReactNode;
|
|
931
931
|
/** Optional pre-formatted balance label (e.g. "1.23 BTC available") shown on the card. */
|
|
932
932
|
balanceLabel?: string;
|
|
933
|
+
/** Optional protocol-tinted classes applied when the card is selected
|
|
934
|
+
* (e.g. "bg-network-spark/12"). Falls back to the brand primary tint. */
|
|
935
|
+
accentClassName?: string;
|
|
933
936
|
}
|
|
934
937
|
interface WithdrawRouteSummary {
|
|
935
938
|
method: string;
|
package/dist/web/index.d.ts
CHANGED
|
@@ -930,6 +930,9 @@ interface WithdrawRouteOption<TAccount extends string = string> {
|
|
|
930
930
|
accountIcon?: ReactNode;
|
|
931
931
|
/** Optional pre-formatted balance label (e.g. "1.23 BTC available") shown on the card. */
|
|
932
932
|
balanceLabel?: string;
|
|
933
|
+
/** Optional protocol-tinted classes applied when the card is selected
|
|
934
|
+
* (e.g. "bg-network-spark/12"). Falls back to the brand primary tint. */
|
|
935
|
+
accentClassName?: string;
|
|
933
936
|
}
|
|
934
937
|
interface WithdrawRouteSummary {
|
|
935
938
|
method: string;
|
package/dist/web/index.js
CHANGED
|
@@ -4498,16 +4498,17 @@ function WithdrawDestinationInput({
|
|
|
4498
4498
|
onChange: (event) => setDestination(event.target.value)
|
|
4499
4499
|
}
|
|
4500
4500
|
),
|
|
4501
|
-
/* @__PURE__ */ jsxs32("div", { className: "absolute right-
|
|
4501
|
+
/* @__PURE__ */ jsxs32("div", { className: "absolute right-3 top-1/2 flex -translate-y-1/2 items-center gap-1", children: [
|
|
4502
4502
|
destination && /* @__PURE__ */ jsx45(
|
|
4503
4503
|
"button",
|
|
4504
4504
|
{
|
|
4505
4505
|
type: "button",
|
|
4506
|
+
"aria-label": "Clear",
|
|
4506
4507
|
onClick: () => {
|
|
4507
4508
|
setDestination("");
|
|
4508
4509
|
handleReset();
|
|
4509
4510
|
},
|
|
4510
|
-
className: "
|
|
4511
|
+
className: "rounded-lg p-2 text-muted-foreground transition-colors hover:text-white",
|
|
4511
4512
|
children: /* @__PURE__ */ jsx45("span", { className: "material-symbols-outlined text-icon-md", children: "close" })
|
|
4512
4513
|
}
|
|
4513
4514
|
),
|
|
@@ -4515,9 +4516,10 @@ function WithdrawDestinationInput({
|
|
|
4515
4516
|
"button",
|
|
4516
4517
|
{
|
|
4517
4518
|
type: "button",
|
|
4519
|
+
"aria-label": "Paste",
|
|
4518
4520
|
onClick: handlePaste,
|
|
4519
|
-
className: "rounded-lg bg-white/
|
|
4520
|
-
children: "
|
|
4521
|
+
className: "rounded-lg bg-white/5 p-2 text-muted-foreground transition-colors hover:text-primary",
|
|
4522
|
+
children: /* @__PURE__ */ jsx45("span", { className: "material-symbols-outlined text-icon-md", children: "content_paste" })
|
|
4521
4523
|
}
|
|
4522
4524
|
)
|
|
4523
4525
|
] })
|
|
@@ -4630,7 +4632,7 @@ function WithdrawAmountInput({
|
|
|
4630
4632
|
const value = parseInt(event.target.value, 10);
|
|
4631
4633
|
if (!Number.isNaN(value)) setWitnessAmountSat(value);
|
|
4632
4634
|
},
|
|
4633
|
-
className: "w-full rounded-xl
|
|
4635
|
+
className: "w-full rounded-xl bg-card px-4 py-3 text-sm text-white shadow-inner transition-all focus:outline focus:outline-2 focus:outline-primary/50"
|
|
4634
4636
|
}
|
|
4635
4637
|
),
|
|
4636
4638
|
/* @__PURE__ */ jsx46("p", { className: "ml-1 text-xs text-muted-foreground", children: "Bitcoin amount sent to create the witness UTXO for the recipient." })
|
|
@@ -4642,7 +4644,7 @@ function WithdrawAmountInput({
|
|
|
4642
4644
|
{
|
|
4643
4645
|
type: "button",
|
|
4644
4646
|
onClick: () => setFeeRate(rate),
|
|
4645
|
-
className: `group relative overflow-hidden rounded-[16px]
|
|
4647
|
+
className: `group relative overflow-hidden rounded-[16px] px-3 py-3 shadow-sm transition-all active:scale-[0.98] ${feeRate === rate ? "bg-primary/10" : "bg-card/40 backdrop-blur-xl hover:bg-card/60"}`,
|
|
4646
4648
|
children: [
|
|
4647
4649
|
/* @__PURE__ */ jsx46(
|
|
4648
4650
|
"div",
|
|
@@ -4674,7 +4676,7 @@ function WithdrawAmountInput({
|
|
|
4674
4676
|
rate
|
|
4675
4677
|
)) })
|
|
4676
4678
|
] }),
|
|
4677
|
-
addressType === "rgb" && /* @__PURE__ */ jsxs33("div", { className: "flex items-center justify-between rounded-xl
|
|
4679
|
+
addressType === "rgb" && /* @__PURE__ */ jsxs33("div", { className: "flex items-center justify-between rounded-xl bg-card p-3", children: [
|
|
4678
4680
|
/* @__PURE__ */ jsxs33("div", { children: [
|
|
4679
4681
|
/* @__PURE__ */ jsx46("p", { className: "text-sm font-medium text-white", children: "Gift / Donation" }),
|
|
4680
4682
|
/* @__PURE__ */ jsx46("p", { className: "text-xs text-muted-foreground", children: "Skip amount checks for this transfer" })
|
|
@@ -4800,21 +4802,23 @@ function RouteChoiceCard({
|
|
|
4800
4802
|
onClick,
|
|
4801
4803
|
displayOnly
|
|
4802
4804
|
}) {
|
|
4803
|
-
const { disabled = false, disabledReason, accountIcon, balanceLabel } = route;
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
/* @__PURE__ */
|
|
4807
|
-
|
|
4808
|
-
/* @__PURE__ */ jsxs35("div", { className: "
|
|
4809
|
-
/* @__PURE__ */ jsx48("span", { className: "text-sm font-
|
|
4810
|
-
/* @__PURE__ */ jsx48("
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
/* @__PURE__ */ jsx48("span", { className: "text-xxs font-bold uppercase tracking-wider text-white/35", children: route.feeHint }),
|
|
4815
|
-
balanceLabel && /* @__PURE__ */ jsx48("span", { className: "font-mono text-xxs text-white/50", children: balanceLabel })
|
|
4805
|
+
const { disabled = false, disabledReason, accountIcon, balanceLabel, accentClassName } = route;
|
|
4806
|
+
const body = /* @__PURE__ */ jsxs35("div", { className: "flex items-start justify-between gap-3", children: [
|
|
4807
|
+
/* @__PURE__ */ jsxs35("div", { className: "flex min-w-0 items-start gap-3", children: [
|
|
4808
|
+
accountIcon && /* @__PURE__ */ jsx48("div", { className: "mt-0.5 shrink-0", children: accountIcon }),
|
|
4809
|
+
/* @__PURE__ */ jsxs35("div", { className: "min-w-0", children: [
|
|
4810
|
+
/* @__PURE__ */ jsxs35("div", { className: "flex flex-wrap items-center gap-2", children: [
|
|
4811
|
+
/* @__PURE__ */ jsx48("span", { className: "text-sm font-bold text-white", children: route.accountTitle }),
|
|
4812
|
+
recommended && !disabled && /* @__PURE__ */ jsx48("span", { className: "rounded-full bg-primary/10 px-2 py-0.5 text-xxs font-bold uppercase tracking-wider text-primary", children: "Recommended" }),
|
|
4813
|
+
disabled && /* @__PURE__ */ jsx48("span", { className: "rounded-full bg-danger/10 px-2 py-0.5 text-xxs font-bold uppercase tracking-wider text-danger", children: "Insufficient" })
|
|
4814
|
+
] }),
|
|
4815
|
+
balanceLabel && /* @__PURE__ */ jsx48("p", { className: "mt-0.5 font-mono text-xs text-white/55", children: balanceLabel })
|
|
4816
4816
|
] })
|
|
4817
|
-
] })
|
|
4817
|
+
] }),
|
|
4818
|
+
/* @__PURE__ */ jsx48("span", { className: "shrink-0 text-xxs font-bold uppercase tracking-wider text-white/40", children: route.feeHint })
|
|
4819
|
+
] });
|
|
4820
|
+
if (displayOnly) {
|
|
4821
|
+
return /* @__PURE__ */ jsx48("div", { className: "rounded-2xl bg-card/50 px-4 py-3.5", children: body });
|
|
4818
4822
|
}
|
|
4819
4823
|
return /* @__PURE__ */ jsxs35(
|
|
4820
4824
|
"button",
|
|
@@ -4826,28 +4830,11 @@ function RouteChoiceCard({
|
|
|
4826
4830
|
"aria-disabled": disabled,
|
|
4827
4831
|
title: disabled ? disabledReason : void 0,
|
|
4828
4832
|
className: cn(
|
|
4829
|
-
"w-full rounded-2xl
|
|
4830
|
-
disabled ? "cursor-not-allowed
|
|
4833
|
+
"w-full rounded-2xl p-4 text-left transition-all",
|
|
4834
|
+
disabled ? "cursor-not-allowed bg-danger/5 opacity-60" : selected ? accentClassName ?? "bg-primary/10" : "bg-white/4 hover:bg-white/6"
|
|
4831
4835
|
),
|
|
4832
4836
|
children: [
|
|
4833
|
-
|
|
4834
|
-
/* @__PURE__ */ jsxs35("div", { className: "flex min-w-0 items-start gap-3", children: [
|
|
4835
|
-
accountIcon && /* @__PURE__ */ jsx48("div", { className: "mt-0.5 shrink-0", children: accountIcon }),
|
|
4836
|
-
/* @__PURE__ */ jsxs35("div", { className: "min-w-0", children: [
|
|
4837
|
-
/* @__PURE__ */ jsxs35("div", { className: "flex flex-wrap items-center gap-2", children: [
|
|
4838
|
-
/* @__PURE__ */ jsx48("span", { className: "text-sm font-bold text-white", children: route.accountTitle }),
|
|
4839
|
-
recommended && !disabled && /* @__PURE__ */ jsx48("span", { className: "rounded-full border border-primary/20 bg-primary/10 px-2 py-0.5 text-xxs font-bold uppercase tracking-wider text-primary", children: "Recommended" }),
|
|
4840
|
-
disabled && /* @__PURE__ */ jsx48("span", { className: "rounded-full border border-danger/20 bg-danger/10 px-2 py-0.5 text-xxs font-bold uppercase tracking-wider text-danger", children: "Insufficient" })
|
|
4841
|
-
] }),
|
|
4842
|
-
/* @__PURE__ */ jsx48("p", { className: "mt-1 text-xs text-white/45", children: route.methodLabel })
|
|
4843
|
-
] })
|
|
4844
|
-
] }),
|
|
4845
|
-
/* @__PURE__ */ jsxs35("div", { className: "flex shrink-0 flex-col items-end gap-1", children: [
|
|
4846
|
-
/* @__PURE__ */ jsx48("span", { className: "text-xxs font-bold uppercase tracking-wider text-white/35", children: route.feeHint }),
|
|
4847
|
-
balanceLabel && /* @__PURE__ */ jsx48("span", { className: "font-mono text-xxs text-white/50", children: balanceLabel })
|
|
4848
|
-
] })
|
|
4849
|
-
] }),
|
|
4850
|
-
/* @__PURE__ */ jsx48("p", { className: "mt-3 text-xs leading-relaxed text-muted-foreground", children: route.summary }),
|
|
4837
|
+
body,
|
|
4851
4838
|
disabled && disabledReason && /* @__PURE__ */ jsx48("p", { className: "mt-2 text-xxs leading-relaxed text-danger/80", children: disabledReason })
|
|
4852
4839
|
]
|
|
4853
4840
|
}
|
package/package.json
CHANGED