@trafilea/afrodita-components 6.5.1 → 6.5.2

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.
@@ -5473,7 +5473,7 @@ var PriceLabelV2 = function (_a) {
5473
5473
  ? finalPrice.split(currencySymbol)[1]
5474
5474
  : finalPrice;
5475
5475
  var finalPricePerQuantity = hasPricePerItem
5476
- ? "".concat(currencySymbol).concat(Number(priceSymbolRemoved) / quantity)
5476
+ ? "".concat(currencySymbol).concat((Number(priceSymbolRemoved) / quantity).toFixed(2))
5477
5477
  : finalPrice;
5478
5478
  var finalPriceArray = typeof finalPricePerQuantity === 'string' &&
5479
5479
  finalPricePerQuantity.includes('.') &&
package/build/index.js CHANGED
@@ -5499,7 +5499,7 @@ var PriceLabelV2 = function (_a) {
5499
5499
  ? finalPrice.split(currencySymbol)[1]
5500
5500
  : finalPrice;
5501
5501
  var finalPricePerQuantity = hasPricePerItem
5502
- ? "".concat(currencySymbol).concat(Number(priceSymbolRemoved) / quantity)
5502
+ ? "".concat(currencySymbol).concat((Number(priceSymbolRemoved) / quantity).toFixed(2))
5503
5503
  : finalPrice;
5504
5504
  var finalPriceArray = typeof finalPricePerQuantity === 'string' &&
5505
5505
  finalPricePerQuantity.includes('.') &&
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Trafilea's Design System",
4
4
  "author": "Trafilea",
5
5
  "repository": "https://github.com/trafilea/afrodita-components",
6
- "version": "6.5.1",
6
+ "version": "6.5.2",
7
7
  "private": false,
8
8
  "main": "build/index.js",
9
9
  "style": "build/index.css",