@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.
- package/build/index.esm.js +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.esm.js
CHANGED
|
@@ -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