@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.
- package/bundles/ng-select-ng-select.umd.js +3 -0
- package/bundles/ng-select-ng-select.umd.js.map +1 -1
- package/bundles/ng-select-ng-select.umd.min.js +1 -1
- package/bundles/ng-select-ng-select.umd.min.js.map +1 -1
- package/esm2015/lib/config.service.js +3 -1
- package/esm2015/lib/ng-select.component.js +2 -1
- package/fesm2015/ng-select-ng-select.js +3 -0
- package/fesm2015/ng-select-ng-select.js.map +1 -1
- package/lib/config.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|