I have a form that contains a dropdown using the mat-select component of angular material.
<mat-select multiple (selectionChange)="onFilter($event)">
<mat-option *ngFor="let section of someDropdown" [value]="section">
{{section}}
</mat-option>
</mat-select>
<button class="some-button" (click)="doSomething()>Click Me</button>
When the dropdown is open, I cannot click on any elements outside of it(ie: a button). I first need to click outside of the dropdown to close it, to then be able to interact with a different control.
Is there a way to disable the blur effect of this component (so i can click a button while the dropdown is open)?