@ng-select/ng-select 5.0.15 → 5.1.0

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,6 +3376,8 @@
3376
3376
  /** @type {?} */
3377
3377
  NgSelectConfig.prototype.bindValue;
3378
3378
  /** @type {?} */
3379
+ NgSelectConfig.prototype.bindLabel;
3380
+ /** @type {?} */
3379
3381
  NgSelectConfig.prototype.appearance;
3380
3382
  }
3381
3383
 
@@ -4616,6 +4618,7 @@
4616
4618
  this.openOnEnter = isDefined(this.openOnEnter) ? this.openOnEnter : config.openOnEnter;
4617
4619
  this.appendTo = this.appendTo || config.appendTo;
4618
4620
  this.bindValue = this.bindValue || config.bindValue;
4621
+ this.bindLabel = this.bindLabel || config.bindLabel;
4619
4622
  this.appearance = this.appearance || config.appearance;
4620
4623
  };
4621
4624
  return NgSelectComponent;