1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

Add 'search' as a valid InputType (#4202)

This commit is contained in:
Shane Melton
2022-12-08 15:08:21 -08:00
committed by GitHub
parent c002573581
commit c260628778

View File

@@ -1,4 +1,11 @@
export type InputTypes = "text" | "password" | "number" | "datetime-local" | "email" | "checkbox";
export type InputTypes =
| "text"
| "password"
| "number"
| "datetime-local"
| "email"
| "checkbox"
| "search";
export abstract class BitFormFieldControl {
ariaDescribedBy: string;