@gardenfi/garden-book 0.1.96-beta.0 → 0.1.97
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/ui.cjs.js +1 -1
- package/dist/ui.es.js +6 -13
- package/dist/ui.umd.js +1 -1
- package/package.json +1 -1
package/dist/ui.es.js
CHANGED
|
@@ -16305,11 +16305,7 @@ const InfoBadge = ({ children: e, className: t, ...i }) => /* @__PURE__ */ jsx(
|
|
|
16305
16305
|
]
|
|
16306
16306
|
}
|
|
16307
16307
|
);
|
|
16308
|
-
}, Footer = ({
|
|
16309
|
-
className: e,
|
|
16310
|
-
network: t,
|
|
16311
|
-
...i
|
|
16312
|
-
}) => {
|
|
16308
|
+
}, Footer = ({ className: e, network: t, ...i }) => {
|
|
16313
16309
|
const n = t && t === "testnet" ? "https://testnet.garden.finance" : "https://app.garden.finance", a = [
|
|
16314
16310
|
{
|
|
16315
16311
|
title: "Application",
|
|
@@ -16354,7 +16350,8 @@ const InfoBadge = ({ children: e, className: t, ...i }) => /* @__PURE__ */ jsx(
|
|
|
16354
16350
|
},
|
|
16355
16351
|
{
|
|
16356
16352
|
title: "Media Kit",
|
|
16357
|
-
link: "https://
|
|
16353
|
+
link: "https://garden-bucket-cdn.s3.eu-central-1.amazonaws.com/Garden_Brand_Assets.zip",
|
|
16354
|
+
download: !0,
|
|
16358
16355
|
isExternal: !0
|
|
16359
16356
|
}
|
|
16360
16357
|
]
|
|
@@ -16371,11 +16368,6 @@ const InfoBadge = ({ children: e, className: t, ...i }) => /* @__PURE__ */ jsx(
|
|
|
16371
16368
|
title: "Explorer",
|
|
16372
16369
|
link: t && t === "testnet" ? "https://testnet-explorer.garden.finance" : "https://explorer.garden.finance",
|
|
16373
16370
|
isExternal: !0
|
|
16374
|
-
},
|
|
16375
|
-
{
|
|
16376
|
-
title: "Faucet",
|
|
16377
|
-
link: "https://testnetbtc.com/",
|
|
16378
|
-
isExternal: !0
|
|
16379
16371
|
}
|
|
16380
16372
|
]
|
|
16381
16373
|
},
|
|
@@ -16416,9 +16408,10 @@ const InfoBadge = ({ children: e, className: t, ...i }) => /* @__PURE__ */ jsx(
|
|
|
16416
16408
|
o.links.map((l) => /* @__PURE__ */ jsx(
|
|
16417
16409
|
"a",
|
|
16418
16410
|
{
|
|
16419
|
-
href: l.link,
|
|
16420
|
-
target: o.targetSame ? "_self" : "_blank",
|
|
16411
|
+
href: l.download ? "" : l.link,
|
|
16412
|
+
target: o.targetSame || !l.isExternal ? "_self" : "_blank",
|
|
16421
16413
|
rel: l.withReferrer ? void 0 : "noreferrer",
|
|
16414
|
+
download: l.download ? !0 : void 0,
|
|
16422
16415
|
children: /* @__PURE__ */ jsx(Typography, { size: "h3", weight: "medium", children: l.title })
|
|
16423
16416
|
},
|
|
16424
16417
|
l.title
|