@chainberry/ui-components 1.0.22 → 1.0.24
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.mjs +5 -13
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -162376,7 +162376,7 @@ var LUe = [
|
|
|
162376
162376
|
header: "Diff",
|
|
162377
162377
|
cell: (e) => {
|
|
162378
162378
|
if (!e.diff) return /* @__PURE__ */ _(b9, { children: y9 });
|
|
162379
|
-
let t = e.diff.
|
|
162379
|
+
let t = e.diff.includes("-");
|
|
162380
162380
|
return /* @__PURE__ */ _("span", {
|
|
162381
162381
|
className: M("font-medium", e.diff === "$0.00" ? "text-muted-foreground" : t ? "text-rose-600 dark:text-rose-400" : "text-emerald-600 dark:text-emerald-400"),
|
|
162382
162382
|
children: e.diff
|
|
@@ -163588,13 +163588,9 @@ function kWe({ balances: e, actionsVariant: t = "menu", className: r }) {
|
|
|
163588
163588
|
children: [/* @__PURE__ */ _("span", {
|
|
163589
163589
|
className: "text-base font-bold",
|
|
163590
163590
|
children: e.code
|
|
163591
|
-
}), /* @__PURE__ */
|
|
163591
|
+
}), /* @__PURE__ */ _("span", {
|
|
163592
163592
|
className: "text-xs text-muted-foreground",
|
|
163593
|
-
children: [
|
|
163594
|
-
e.networkCount,
|
|
163595
|
-
" network",
|
|
163596
|
-
e.networkCount === 1 ? "" : "s"
|
|
163597
|
-
]
|
|
163593
|
+
children: e.networkCount === 1 ? e.networks[0].networkName : `${e.networkCount} networks`
|
|
163598
163594
|
})]
|
|
163599
163595
|
})
|
|
163600
163596
|
]
|
|
@@ -163899,13 +163895,9 @@ function LWe({ balances: e, actionsVariant: t = "menu", tierLabels: r, className
|
|
|
163899
163895
|
children: [/* @__PURE__ */ _("span", {
|
|
163900
163896
|
className: "text-base font-bold",
|
|
163901
163897
|
children: e.code
|
|
163902
|
-
}), /* @__PURE__ */
|
|
163898
|
+
}), /* @__PURE__ */ _("span", {
|
|
163903
163899
|
className: "text-xs text-muted-foreground",
|
|
163904
|
-
children: [
|
|
163905
|
-
e.networkCount,
|
|
163906
|
-
" network",
|
|
163907
|
-
e.networkCount === 1 ? "" : "s"
|
|
163908
|
-
]
|
|
163900
|
+
children: e.networkCount === 1 ? e.networks[0].networkName : `${e.networkCount} networks`
|
|
163909
163901
|
})]
|
|
163910
163902
|
})
|
|
163911
163903
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chainberry/ui-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"description": "Chainberry navigation UI components — React + Tailwind. Canonical source lives in ../../react-app/src/components; this package re-exports, builds, and publishes them.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"type": "module",
|