ng-inail-common 1.0.408 → 1.0.415
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 +4 -7
- 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/select/select.component.js +6 -9
- package/esm5/lib/components/ux/select/select.component.js +6 -9
- package/fesm2015/ng-inail-common.js +5 -8
- package/fesm2015/ng-inail-common.js.map +1 -1
- package/fesm5/ng-inail-common.js +5 -8
- package/fesm5/ng-inail-common.js.map +1 -1
- package/ng-inail-common.metadata.json +1 -1
- package/package.json +3 -1
|
@@ -2419,13 +2419,10 @@
|
|
|
2419
2419
|
this.valueValue = val;
|
|
2420
2420
|
this.valueChange.emit(this.valueValue);
|
|
2421
2421
|
/** @type {?} */
|
|
2422
|
-
var optionSelected
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
* @return {?}
|
|
2427
|
-
*/function (opt) { return opt != undefined && opt.value === _this.valueValue; }));
|
|
2428
|
-
}
|
|
2422
|
+
var optionSelected = this.options.find(( /**
|
|
2423
|
+
* @param {?} opt
|
|
2424
|
+
* @return {?}
|
|
2425
|
+
*/function (opt) { return opt != undefined && opt.value === _this.valueValue; }));
|
|
2429
2426
|
if (optionSelected != undefined || isEmptyOrNull(val)) {
|
|
2430
2427
|
this.select.emit(optionSelected);
|
|
2431
2428
|
}
|