i have a password field created using angular material. and there is a password visibility toggle button there. if it were a simple button i could have set tabindex="-1", but tabindex doesn't work on "mat-pass-toggle-visibility"
<mat-form-field appearance="fill" style="width: 100%;" class="input-custo-design">
<mat-label>Password</mat-label>
<mat-pass-toggle-visibility #toggle matSuffix></mat-pass-toggle-visibility>
<input matInput [type]="toggle.type" placeholder="Password" formControlName="pass" #passwordWithValidation />
<mat-error *ngIf="signupController.pass.errors?.required">Password is required
</mat-error>
</mat-form-field>
i got a github link mat-password, where this issue is there, but currently is there somehow i can do a workaround??
in chrome dev-tools i can see "mat-pass-toggle-visibility" does in the end create a button only. so can we set any directive or such thing.
