From c2606287783adbf95bdfc94e496d805fabdebff4 Mon Sep 17 00:00:00 2001 From: Shane Melton Date: Thu, 8 Dec 2022 15:08:21 -0800 Subject: [PATCH] Add 'search' as a valid InputType (#4202) --- libs/components/src/form-field/form-field-control.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libs/components/src/form-field/form-field-control.ts b/libs/components/src/form-field/form-field-control.ts index d47696edde..52f3018f79 100644 --- a/libs/components/src/form-field/form-field-control.ts +++ b/libs/components/src/form-field/form-field-control.ts @@ -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;