diff --git a/src/runtime/types/input.d.ts b/src/runtime/types/input.d.ts index 2b94764..854798d 100644 --- a/src/runtime/types/input.d.ts +++ b/src/runtime/types/input.d.ts @@ -13,10 +13,7 @@ export type InputColor = export type InputVariant = | keyof typeof input.variant | ExtractDeepKey -export type InputType = Extract< - 'text' | 'password' | 'number' | 'url' | 'email' | 'search' | 'file' | 'hidden', - InputHTMLAttributes['type'] -> +export type InputType = 'text' | 'password' | 'number' | 'url' | 'email' | 'search' | 'file' | 'hidden' export type InputModelModifiers = { number?: boolean trim?: boolean