styled-hairomin 0.3.8 → 0.3.9

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.js CHANGED
@@ -308,7 +308,7 @@ function CardVariant({
308
308
  icon: null,
309
309
  label: f
310
310
  } : f) : defaultFeatures;
311
- const priceSuffix = data.priceSuffix || "/malam";
311
+ const priceSuffix = data.priceSuffix !== undefined ? data.priceSuffix : "/malam";
312
312
  return /*#__PURE__*/jsxRuntime.jsxs(ElevatedCard, {
313
313
  children: [/*#__PURE__*/jsxRuntime.jsxs(ElevatedImageWrapper, {
314
314
  children: [/*#__PURE__*/jsxRuntime.jsx(ElevatedImage, {
package/dist/index.esm.js CHANGED
@@ -306,7 +306,7 @@ function CardVariant({
306
306
  icon: null,
307
307
  label: f
308
308
  } : f) : defaultFeatures;
309
- const priceSuffix = data.priceSuffix || "/malam";
309
+ const priceSuffix = data.priceSuffix !== undefined ? data.priceSuffix : "/malam";
310
310
  return /*#__PURE__*/jsxs(ElevatedCard, {
311
311
  children: [/*#__PURE__*/jsxs(ElevatedImageWrapper, {
312
312
  children: [/*#__PURE__*/jsx(ElevatedImage, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "styled-hairomin",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",
@@ -61,4 +61,4 @@
61
61
  ],
62
62
  "author": "",
63
63
  "license": "ISC"
64
- }
64
+ }