ng-inail-common 1.0.434 → 1.0.438
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/ng-inail-common.umd.js +11 -6
- package/bundles/ng-inail-common.umd.js.map +1 -1
- package/bundles/ng-inail-common.umd.min.js +1 -1
- package/bundles/ng-inail-common.umd.min.js.map +1 -1
- package/esm2015/lib/components/ux/input-money/input-money.component.js +12 -7
- package/esm5/lib/components/ux/input-money/input-money.component.js +13 -8
- package/fesm2015/ng-inail-common.js +11 -6
- package/fesm2015/ng-inail-common.js.map +1 -1
- package/fesm5/ng-inail-common.js +12 -7
- package/fesm5/ng-inail-common.js.map +1 -1
- package/ng-inail-common.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -10122,8 +10122,13 @@
|
|
|
10122
10122
|
function () {
|
|
10123
10123
|
if (this.numberValue != undefined) {
|
|
10124
10124
|
/** @type {?} */
|
|
10125
|
-
var nextInputValue =
|
|
10126
|
-
|
|
10125
|
+
var nextInputValue = void 0;
|
|
10126
|
+
// Eseguito durante la digitazione
|
|
10127
|
+
if (this.hasFocus()) {
|
|
10128
|
+
nextInputValue = ("" + this.inputValue).replace(DOT_REGEX, ',');
|
|
10129
|
+
}
|
|
10130
|
+
else {
|
|
10131
|
+
nextInputValue = ("" + this.numberValue).replace(DOT_REGEX, ',');
|
|
10127
10132
|
/** @type {?} */
|
|
10128
10133
|
var a = nextInputValue.split(',');
|
|
10129
10134
|
if (this.showThousandsSeparator) {
|
|
@@ -10151,7 +10156,11 @@
|
|
|
10151
10156
|
* @return {?}
|
|
10152
10157
|
*/
|
|
10153
10158
|
function () {
|
|
10159
|
+
var _this = this;
|
|
10154
10160
|
this.impostaValoreVisibile();
|
|
10161
|
+
setTimeout(( /**
|
|
10162
|
+
* @return {?}
|
|
10163
|
+
*/function () { return _this.formControlElement.nativeElement.select(); }));
|
|
10155
10164
|
};
|
|
10156
10165
|
/**
|
|
10157
10166
|
* @return {?}
|
|
@@ -10160,11 +10169,7 @@
|
|
|
10160
10169
|
* @return {?}
|
|
10161
10170
|
*/
|
|
10162
10171
|
function () {
|
|
10163
|
-
var _this = this;
|
|
10164
10172
|
this.impostaValoreVisibile();
|
|
10165
|
-
setTimeout(( /**
|
|
10166
|
-
* @return {?}
|
|
10167
|
-
*/function () { return _this.formControlElement.nativeElement.select(); }));
|
|
10168
10173
|
};
|
|
10169
10174
|
/**
|
|
10170
10175
|
* @param {?} ev
|