angular-material-extensions / select-country

Angular Material component that allow users to select a country or nationality with an autocomplete feature
https://angular-material-extensions.github.io/select-country/
MIT License
126 stars 40 forks source link

tabIndex does not focus on the input, but to the all component. #55

Open kfirufk opened 3 years ago

kfirufk commented 3 years ago

I have a registration page where user selects his country. I use tabIndex on each/input select element, but when I click tab to focus on the mat-select-country, it focuses on the all element instead of the input, so I can't really type anything.

I use angular 11.2.3 with select-country 4.0.3 and angular material 11.2.2.

and this is how i use mat-select-country:


       <mat-select-country appearance="outline"
                                i18n-label
                                label="Country"
                                formControlName="country" tabindex="6">
            </mat-select-country>