monkey-style-guide 2.0.42 → 2.0.43
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/bundles/monkey-style-guide.umd.js +1 -1
- package/bundles/monkey-style-guide.umd.js.map +1 -1
- package/esm2015/lib/components/input/input.component.js +2 -2
- package/fesm2015/monkey-style-guide.js +1 -1
- package/fesm2015/monkey-style-guide.js.map +1 -1
- package/monkey-style-guide-2.0.43.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.42.tgz +0 -0
|
@@ -2250,7 +2250,7 @@
|
|
|
2250
2250
|
if (this.currency) {
|
|
2251
2251
|
if (!value)
|
|
2252
2252
|
value = 0;
|
|
2253
|
-
return this.currencyPipe.transform(
|
|
2253
|
+
return this.currencyPipe.transform(value, ((_a = settings === null || settings === void 0 ? void 0 : settings.currency) === null || _a === void 0 ? void 0 : _a.code) || 'BRL', 'symbol', '1.2-2', ((_b = settings === null || settings === void 0 ? void 0 : settings.currency) === null || _b === void 0 ? void 0 : _b.locale) || 'pt-BR');
|
|
2254
2254
|
}
|
|
2255
2255
|
else if (this.percent) {
|
|
2256
2256
|
return value + " %";
|