chore(FormField): rename inputId to id

This commit is contained in:
Benjamin Canac
2024-04-28 11:46:24 +02:00
parent 65e916d09a
commit 16071846a8
9 changed files with 33 additions and 33 deletions

View File

@@ -69,7 +69,7 @@ export interface FormInjectedOptions {
}
export interface FormFieldInjectedOptions<T> {
inputId: Ref<string | undefined>
id: Ref<string | undefined>
name: ComputedRef<string | undefined>
// @ts-expect-error FIXME: TS doesn't like this
size: ComputedRef<T['size']>