Before making V3 breaking change release I would like to get you opinion about functionality which we could remove in V3 release.
Initial list:
<ng-option> tag. Currently there are two ways of setting data. Using [items] input and ng-option tag with *ngFor. It adds a lot of extra complexity.Hi. Please do not remove <ng-option> tag. Angular encourages and promotes declarative syntax in the templates. With <ng-option> I can easily create simple selects, for example:
<ng-select [(ngModel)]="order">
<ng-option [value]="1">A to Z</ng-option>
<ng-option [value]="-1">Z to A</ng-option>
</ng-select>
I don't want to create an array of objects in component's controller for such simple use-case.
Most helpful comment
Hi. Please do not remove
<ng-option>tag. Angular encourages and promotes declarative syntax in the templates. With<ng-option>I can easily create simple selects, for example:I don't want to create an array of objects in component's controller for such simple use-case.