monkey-front-core 0.0.541 → 0.0.543
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/esm2020/lib/core/interfaces/monkeyecx-navigation.mjs +1 -1
- package/esm2020/lib/core/pipes/monkeyecx-format-currency.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs +1 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +1 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-navigation.d.ts +1 -0
- package/monkey-front-core-0.0.543.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.541.tgz +0 -0
|
@@ -950,7 +950,7 @@ class MonkeyEcxFormatCurrencyPipe {
|
|
|
950
950
|
return `${fmt}${symbol !== '' ? ` ${currency}` : ''}`;
|
|
951
951
|
}
|
|
952
952
|
if (currency === 'MXN') {
|
|
953
|
-
let fmt = this.currencyPipe.transform(value, '$', symbol, '
|
|
953
|
+
let fmt = this.currencyPipe.transform(value, '$', symbol, '', locale);
|
|
954
954
|
fmt = `${fmt}`.replace(/[^0-9,.]/g, '');
|
|
955
955
|
return `${fmt}${symbol !== '' ? ` ${currency}` : ''}`;
|
|
956
956
|
}
|