monkey-front-core 0.0.137 → 0.0.138
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/pipes/monkeyecx-format-tax.mjs +3 -3
- package/fesm2015/monkey-front-core.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +2 -2
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.138.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.137.tgz +0 -0
|
@@ -591,9 +591,9 @@ class MonkeyEcxFormatTaxPipe {
|
|
|
591
591
|
return '';
|
|
592
592
|
const stringTax = tax.toString();
|
|
593
593
|
const stringTaxLimited = stringTax.slice(0, stringTax.indexOf('.') + decimalDigits + 1);
|
|
594
|
-
return Number(stringTaxLimited).toLocaleString('pt-br', {
|
|
594
|
+
return `${Number(stringTaxLimited).toLocaleString('pt-br', {
|
|
595
595
|
maximumFractionDigits: decimalDigits,
|
|
596
|
-
})
|
|
596
|
+
})} %`;
|
|
597
597
|
}
|
|
598
598
|
}
|
|
599
599
|
MonkeyEcxFormatTaxPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MonkeyEcxFormatTaxPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|