ng-inail-common 1.0.439 → 1.0.440
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 +5 -3
- 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 +5 -4
- package/esm5/lib/components/ux/input-money/input-money.component.js +6 -4
- package/fesm2015/ng-inail-common.js +4 -3
- package/fesm2015/ng-inail-common.js.map +1 -1
- package/fesm5/ng-inail-common.js +5 -3
- package/fesm5/ng-inail-common.js.map +1 -1
- package/lib/components/ux/input-money/input-money.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -10114,17 +10114,19 @@
|
|
|
10114
10114
|
this.impostaValoreVisibile();
|
|
10115
10115
|
};
|
|
10116
10116
|
/**
|
|
10117
|
+
* @param {?=} focusIn
|
|
10117
10118
|
* @return {?}
|
|
10118
10119
|
*/
|
|
10119
10120
|
InputMoneyComponent.prototype.impostaValoreVisibile = /**
|
|
10121
|
+
* @param {?=} focusIn
|
|
10120
10122
|
* @return {?}
|
|
10121
10123
|
*/
|
|
10122
|
-
function () {
|
|
10124
|
+
function (focusIn) {
|
|
10123
10125
|
if (this.numberValue != undefined) {
|
|
10124
10126
|
/** @type {?} */
|
|
10125
10127
|
var nextInputValue = void 0;
|
|
10126
10128
|
// Eseguito durante la digitazione
|
|
10127
|
-
if (this.hasFocus()) {
|
|
10129
|
+
if (this.hasFocus() && !focusIn) {
|
|
10128
10130
|
nextInputValue = ("" + this.inputValue).replace(DOT_REGEX, ',');
|
|
10129
10131
|
}
|
|
10130
10132
|
else {
|
|
@@ -10162,7 +10164,7 @@
|
|
|
10162
10164
|
*/
|
|
10163
10165
|
function () {
|
|
10164
10166
|
var _this = this;
|
|
10165
|
-
this.impostaValoreVisibile();
|
|
10167
|
+
this.impostaValoreVisibile(true);
|
|
10166
10168
|
setTimeout(( /**
|
|
10167
10169
|
* @return {?}
|
|
10168
10170
|
*/function () { return _this.formControlElement.nativeElement.select(); }));
|