Unable to set 'selected' attribute on md-option Receiving the following error: Can't bind to 'selected' since it isn't a known property of 'md-option'. Code sample: ```html <md-select [placeholder]="'Status'"> <md-option *ngFor="let statusType of viewModel.StatusTypes" value="{{statusType.Id}}" (onSelect)="statusSelectionChange(statusType)" [selected]="statusType.Id == -10"> {{statusType.Value}} </md-option> </md-select> ```