@seniorsistemas/angular-components 14.14.3 → 14.14.4
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/seniorsistemas-angular-components.umd.js +1 -2
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/locale/options/number.js +2 -2
- package/esm5/components/locale/options/number.js +2 -3
- package/fesm2015/seniorsistemas-angular-components.js +1 -1
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +1 -2
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -1278,12 +1278,11 @@
|
|
|
1278
1278
|
|
|
1279
1279
|
var NumberLocaleOptions = /** @class */ (function () {
|
|
1280
1280
|
function NumberLocaleOptions(config) {
|
|
1281
|
-
var _this = this;
|
|
1282
1281
|
if (config === void 0) { config = {}; }
|
|
1283
1282
|
this.thousandsSeparator = ".";
|
|
1284
1283
|
this.decimalSeparator = ",";
|
|
1285
1284
|
this.currencySymbol = "R$";
|
|
1286
|
-
Object.
|
|
1285
|
+
Object.assign(this, config);
|
|
1287
1286
|
}
|
|
1288
1287
|
return NumberLocaleOptions;
|
|
1289
1288
|
}());
|