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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

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;