@burdenoff/website-sdk 2026.724.2 → 2026.724.4
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.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/index.js
CHANGED
|
@@ -6793,7 +6793,7 @@ function ProductCard({ product, onClick, href }) {
|
|
|
6793
6793
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
6794
6794
|
"span",
|
|
6795
6795
|
{
|
|
6796
|
-
className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-
|
|
6796
|
+
className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
|
|
6797
6797
|
children: priceLabel
|
|
6798
6798
|
}
|
|
6799
6799
|
)
|
|
@@ -7045,7 +7045,7 @@ function FeaturedHeroCard({
|
|
|
7045
7045
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
7046
7046
|
"span",
|
|
7047
7047
|
{
|
|
7048
|
-
className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-
|
|
7048
|
+
className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
|
|
7049
7049
|
children: priceLabel
|
|
7050
7050
|
}
|
|
7051
7051
|
)
|
|
@@ -8569,7 +8569,7 @@ function StoreProductDetailPage({
|
|
|
8569
8569
|
children: [
|
|
8570
8570
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between gap-2 mb-2", children: [
|
|
8571
8571
|
/* @__PURE__ */ jsxRuntime.jsx(StarRating, { rating: review.rating }),
|
|
8572
|
-
review.verifiedPurchase && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-xs text-emerald-
|
|
8572
|
+
review.verifiedPurchase && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-xs text-emerald-600 font-medium", children: "Verified" })
|
|
8573
8573
|
] }),
|
|
8574
8574
|
review.title && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "font-semibold text-sm text-foreground mb-1", children: review.title }),
|
|
8575
8575
|
review.comment && /* @__PURE__ */ jsxRuntime.jsx(Markdown, { className: "text-sm text-muted-foreground leading-relaxed", children: review.comment }),
|
|
@@ -8603,7 +8603,7 @@ function StoreProductDetailPage({
|
|
|
8603
8603
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8604
8604
|
"div",
|
|
8605
8605
|
{
|
|
8606
|
-
className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-
|
|
8606
|
+
className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
|
|
8607
8607
|
children: priceLabel
|
|
8608
8608
|
}
|
|
8609
8609
|
),
|