kaleido-ui 0.1.102 → 0.1.104
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 +3 -3
- package/dist/web/index.d.cts +3 -0
- package/dist/web/index.d.ts +3 -0
- package/dist/web/index.js +3 -3
- package/package.json +1 -1
package/dist/web/index.cjs
CHANGED
|
@@ -3531,7 +3531,7 @@ function BalanceBreakdown({
|
|
|
3531
3531
|
formatFiat: formatFiatValue
|
|
3532
3532
|
}
|
|
3533
3533
|
),
|
|
3534
|
-
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
3534
|
+
(accounts.RGB?.connected || accounts.RGB?.configured) && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
3535
3535
|
NetworkRow,
|
|
3536
3536
|
{
|
|
3537
3537
|
icon: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
@@ -4568,7 +4568,7 @@ function ActivityList({
|
|
|
4568
4568
|
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
4569
4569
|
"div",
|
|
4570
4570
|
{
|
|
4571
|
-
className: "relative overflow-hidden rounded-2xl bg-surface-card shadow-inner transition-all animate-in fade-in slide-in-from-bottom-2 duration-500",
|
|
4571
|
+
className: "relative overflow-hidden rounded-2xl bg-surface-card bg-gradient-to-b from-white/[0.025] to-primary/[0.035] shadow-inner transition-all animate-in fade-in slide-in-from-bottom-2 duration-500",
|
|
4572
4572
|
children: [
|
|
4573
4573
|
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
4574
4574
|
TransactionCard,
|
|
@@ -4587,7 +4587,7 @@ function ActivityList({
|
|
|
4587
4587
|
isExpanded && // -mt-4/pt-4 slides the details up behind the card's bottom
|
|
4588
4588
|
// radius, so the corner notches show the details' own
|
|
4589
4589
|
// background instead of the darker container.
|
|
4590
|
-
/* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: "-mt-4
|
|
4590
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: "-mt-4 pt-4 animate-in slide-in-from-top-2 duration-300", children: [
|
|
4591
4591
|
(item.network || item.label) && /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: "flex items-center gap-1.5 px-3 py-2.5", children: [
|
|
4592
4592
|
item.network && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(NetworkBadge, { network: item.network, showLabel: true }),
|
|
4593
4593
|
item.label && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("span", { className: "text-xxs font-medium text-muted-foreground", children: item.label })
|
package/dist/web/index.d.cts
CHANGED
|
@@ -667,6 +667,9 @@ interface BalanceBreakdownAsset {
|
|
|
667
667
|
interface BalanceBreakdownAccounts {
|
|
668
668
|
RGB?: {
|
|
669
669
|
connected?: boolean;
|
|
670
|
+
/** RLN is set up on this wallet (node URL / NWC saved) even if the node
|
|
671
|
+
* is currently offline. Gates the "BTC on RLN" row. */
|
|
672
|
+
configured?: boolean;
|
|
670
673
|
};
|
|
671
674
|
}
|
|
672
675
|
interface BalanceBreakdownNodeInfo {
|
package/dist/web/index.d.ts
CHANGED
|
@@ -667,6 +667,9 @@ interface BalanceBreakdownAsset {
|
|
|
667
667
|
interface BalanceBreakdownAccounts {
|
|
668
668
|
RGB?: {
|
|
669
669
|
connected?: boolean;
|
|
670
|
+
/** RLN is set up on this wallet (node URL / NWC saved) even if the node
|
|
671
|
+
* is currently offline. Gates the "BTC on RLN" row. */
|
|
672
|
+
configured?: boolean;
|
|
670
673
|
};
|
|
671
674
|
}
|
|
672
675
|
interface BalanceBreakdownNodeInfo {
|
package/dist/web/index.js
CHANGED
|
@@ -3349,7 +3349,7 @@ function BalanceBreakdown({
|
|
|
3349
3349
|
formatFiat: formatFiatValue
|
|
3350
3350
|
}
|
|
3351
3351
|
),
|
|
3352
|
-
/* @__PURE__ */ jsx37(
|
|
3352
|
+
(accounts.RGB?.connected || accounts.RGB?.configured) && /* @__PURE__ */ jsx37(
|
|
3353
3353
|
NetworkRow,
|
|
3354
3354
|
{
|
|
3355
3355
|
icon: /* @__PURE__ */ jsx37(
|
|
@@ -4386,7 +4386,7 @@ function ActivityList({
|
|
|
4386
4386
|
return /* @__PURE__ */ jsxs28(
|
|
4387
4387
|
"div",
|
|
4388
4388
|
{
|
|
4389
|
-
className: "relative overflow-hidden rounded-2xl bg-surface-card shadow-inner transition-all animate-in fade-in slide-in-from-bottom-2 duration-500",
|
|
4389
|
+
className: "relative overflow-hidden rounded-2xl bg-surface-card bg-gradient-to-b from-white/[0.025] to-primary/[0.035] shadow-inner transition-all animate-in fade-in slide-in-from-bottom-2 duration-500",
|
|
4390
4390
|
children: [
|
|
4391
4391
|
/* @__PURE__ */ jsx41(
|
|
4392
4392
|
TransactionCard,
|
|
@@ -4405,7 +4405,7 @@ function ActivityList({
|
|
|
4405
4405
|
isExpanded && // -mt-4/pt-4 slides the details up behind the card's bottom
|
|
4406
4406
|
// radius, so the corner notches show the details' own
|
|
4407
4407
|
// background instead of the darker container.
|
|
4408
|
-
/* @__PURE__ */ jsxs28("div", { className: "-mt-4
|
|
4408
|
+
/* @__PURE__ */ jsxs28("div", { className: "-mt-4 pt-4 animate-in slide-in-from-top-2 duration-300", children: [
|
|
4409
4409
|
(item.network || item.label) && /* @__PURE__ */ jsxs28("div", { className: "flex items-center gap-1.5 px-3 py-2.5", children: [
|
|
4410
4410
|
item.network && /* @__PURE__ */ jsx41(NetworkBadge, { network: item.network, showLabel: true }),
|
|
4411
4411
|
item.label && /* @__PURE__ */ jsx41("span", { className: "text-xxs font-medium text-muted-foreground", children: item.label })
|
package/package.json
CHANGED