How to make make single checkbox select from mat-selection-list. Similar to radio button which accepts one value from group of values.
Just set the multiple option of MatSelectionList to false:
ngOnInit() { this.links.selectedOptions._multiple = false; }
and you're done. Also by doing this you will be able to deselect the selected checkbox.