@trading-game/design-intelligence-layer 0.13.1 → 0.13.3
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 +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +25 -1
- package/dist/index.d.ts +25 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6731,6 +6731,10 @@ function BoostTicketCard({
|
|
|
6731
6731
|
boostAmount = "0.00",
|
|
6732
6732
|
boostCurrency = "USDT",
|
|
6733
6733
|
boostInfo,
|
|
6734
|
+
boostInfoSide = "top",
|
|
6735
|
+
boostInfoAlign = "center",
|
|
6736
|
+
boostInfoTitle,
|
|
6737
|
+
boostInfoCloseLabel,
|
|
6734
6738
|
compact = false
|
|
6735
6739
|
}) {
|
|
6736
6740
|
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: cn("flex w-full flex-col gap-2", className), children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: "relative flex w-full items-stretch justify-between rounded-sm bg-subtle", children: [
|
|
@@ -6763,7 +6767,7 @@ function BoostTicketCard({
|
|
|
6763
6767
|
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_lucide_react23.Info, { className: "!size-3.5", strokeWidth: 2 })
|
|
6764
6768
|
}
|
|
6765
6769
|
) }),
|
|
6766
|
-
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(TooltipContent, { side:
|
|
6770
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(TooltipContent, { side: boostInfoSide, align: boostInfoAlign, title: boostInfoTitle, closeLabel: boostInfoCloseLabel, variant: "inverse", className: "max-w-xs whitespace-normal", children: boostInfo })
|
|
6767
6771
|
] }) })
|
|
6768
6772
|
] })
|
|
6769
6773
|
] })
|