ng-inail-common 1.0.422 → 1.0.424
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 +7 -4
- 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 +9 -6
- package/esm5/lib/components/ux/select/select.component.js +9 -6
- package/fesm2015/ng-inail-common.js +8 -5
- package/fesm2015/ng-inail-common.js.map +1 -1
- package/fesm5/ng-inail-common.js +9 -6
- package/fesm5/ng-inail-common.js.map +1 -1
- package/ng-inail-common.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2470,10 +2470,13 @@
|
|
|
2470
2470
|
this.valueValue = val;
|
|
2471
2471
|
this.valueChange.emit(this.valueValue);
|
|
2472
2472
|
/** @type {?} */
|
|
2473
|
-
var optionSelected
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2473
|
+
var optionSelected;
|
|
2474
|
+
if (this.options) {
|
|
2475
|
+
optionSelected = this.options.find(( /**
|
|
2476
|
+
* @param {?} opt
|
|
2477
|
+
* @return {?}
|
|
2478
|
+
*/function (opt) { return opt != undefined && opt.value === _this.valueValue; }));
|
|
2479
|
+
}
|
|
2477
2480
|
if (optionSelected != undefined || isEmptyOrNull(val)) {
|
|
2478
2481
|
this.select.emit(optionSelected);
|
|
2479
2482
|
}
|