@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
|
@@ -1104,12 +1104,11 @@ var CalendarLocaleOptions = /** @class */ (function () {
|
|
|
1104
1104
|
|
|
1105
1105
|
var NumberLocaleOptions = /** @class */ (function () {
|
|
1106
1106
|
function NumberLocaleOptions(config) {
|
|
1107
|
-
var _this = this;
|
|
1108
1107
|
if (config === void 0) { config = {}; }
|
|
1109
1108
|
this.thousandsSeparator = ".";
|
|
1110
1109
|
this.decimalSeparator = ",";
|
|
1111
1110
|
this.currencySymbol = "R$";
|
|
1112
|
-
Object.
|
|
1111
|
+
Object.assign(this, config);
|
|
1113
1112
|
}
|
|
1114
1113
|
return NumberLocaleOptions;
|
|
1115
1114
|
}());
|