ng-inail-common 2.0.32-beta.3 → 2.0.32-beta.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.
@@ -3376,7 +3376,9 @@
3376
3376
  _this.cdr.detectChanges();
3377
3377
  _this.emitDebug("this.valueChange.emit(" + _this.selectedValue + ")");
3378
3378
  _this.valueChange.emit(_this.selectedValue);
3379
- _this.select.emit(_this.options.find(function (opt) { return (opt === null || opt === void 0 ? void 0 : opt.value) === _this.selectedValue; }));
3379
+ if (_this.options) {
3380
+ _this.select.emit(_this.options.find(function (opt) { return (opt === null || opt === void 0 ? void 0 : opt.value) === _this.selectedValue; }));
3381
+ }
3380
3382
  if (_this.cleanErrorOnChange) {
3381
3383
  _this.cleanError();
3382
3384
  }