@neowhale/storefront 0.2.50 → 0.2.51
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/landing.global.js
CHANGED
|
@@ -532,13 +532,7 @@ var WhaleStorefront = (function (exports) {
|
|
|
532
532
|
},
|
|
533
533
|
s
|
|
534
534
|
)) }),
|
|
535
|
-
/* @__PURE__ */ jsx("span", { style: { fontSize: "0.8rem", color: `${theme.fg}99`, fontWeight: 500 }, children:
|
|
536
|
-
review_line.rating.toFixed(1),
|
|
537
|
-
" \xB7 ",
|
|
538
|
-
review_line.count,
|
|
539
|
-
" ",
|
|
540
|
-
review_line.source || "reviews"
|
|
541
|
-
] })
|
|
535
|
+
/* @__PURE__ */ jsx("span", { style: { fontSize: "0.8rem", color: `${theme.fg}99`, fontWeight: 500 }, children: `${review_line.rating.toFixed(1)} \xB7 ${review_line.count} ${review_line.source || "reviews"}` })
|
|
542
536
|
] })
|
|
543
537
|
] })
|
|
544
538
|
] });
|
package/dist/react/index.cjs
CHANGED
|
@@ -2276,13 +2276,7 @@ function HeroSection({ section, theme, tracking, onEvent }) {
|
|
|
2276
2276
|
},
|
|
2277
2277
|
s
|
|
2278
2278
|
)) }),
|
|
2279
|
-
/* @__PURE__ */ jsxRuntime.
|
|
2280
|
-
review_line.rating.toFixed(1),
|
|
2281
|
-
" \xB7 ",
|
|
2282
|
-
review_line.count,
|
|
2283
|
-
" ",
|
|
2284
|
-
review_line.source || "reviews"
|
|
2285
|
-
] })
|
|
2279
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { style: { fontSize: "0.8rem", color: `${theme.fg}99`, fontWeight: 500 }, children: `${review_line.rating.toFixed(1)} \xB7 ${review_line.count} ${review_line.source || "reviews"}` })
|
|
2286
2280
|
] })
|
|
2287
2281
|
] })
|
|
2288
2282
|
] });
|