@burdenoff/website-sdk 2026.724.2 → 2026.724.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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/store/index.js +4 -4
- package/dist/store/index.js.map +1 -1
- package/dist/store/index.mjs +4 -4
- package/dist/store/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/store/index.mjs
CHANGED
|
@@ -128,7 +128,7 @@ function ProductCard({ product, onClick, href }) {
|
|
|
128
128
|
/* @__PURE__ */ jsx(
|
|
129
129
|
"span",
|
|
130
130
|
{
|
|
131
|
-
className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-
|
|
131
|
+
className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
|
|
132
132
|
children: priceLabel
|
|
133
133
|
}
|
|
134
134
|
)
|
|
@@ -625,7 +625,7 @@ function FeaturedHeroCard({
|
|
|
625
625
|
/* @__PURE__ */ jsx(
|
|
626
626
|
"span",
|
|
627
627
|
{
|
|
628
|
-
className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-
|
|
628
|
+
className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
|
|
629
629
|
children: priceLabel
|
|
630
630
|
}
|
|
631
631
|
)
|
|
@@ -2251,7 +2251,7 @@ function StoreProductDetailPage({
|
|
|
2251
2251
|
children: [
|
|
2252
2252
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-2 mb-2", children: [
|
|
2253
2253
|
/* @__PURE__ */ jsx(StarRating, { rating: review.rating }),
|
|
2254
|
-
review.verifiedPurchase && /* @__PURE__ */ jsx("span", { className: "text-xs text-emerald-
|
|
2254
|
+
review.verifiedPurchase && /* @__PURE__ */ jsx("span", { className: "text-xs text-emerald-600 font-medium", children: "Verified" })
|
|
2255
2255
|
] }),
|
|
2256
2256
|
review.title && /* @__PURE__ */ jsx("p", { className: "font-semibold text-sm text-foreground mb-1", children: review.title }),
|
|
2257
2257
|
review.comment && /* @__PURE__ */ jsx(Markdown, { className: "text-sm text-muted-foreground leading-relaxed", children: review.comment }),
|
|
@@ -2285,7 +2285,7 @@ function StoreProductDetailPage({
|
|
|
2285
2285
|
/* @__PURE__ */ jsx(
|
|
2286
2286
|
"div",
|
|
2287
2287
|
{
|
|
2288
|
-
className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-
|
|
2288
|
+
className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
|
|
2289
2289
|
children: priceLabel
|
|
2290
2290
|
}
|
|
2291
2291
|
),
|