fix(FormGroup): use explicit label instead of implicit label (#638)

This commit is contained in:
Aditio Pangestu
2023-09-20 16:06:23 +07:00
committed by GitHub
parent e40491208a
commit 681f0e5684
9 changed files with 95 additions and 35 deletions

View File

@@ -19,3 +19,10 @@ export interface FormEvent {
type: FormEventType
path: string
}
export interface InjectedFormGroupValue {
labelFor: Ref<string>
name: Ref<string>
size: Ref<string>
error: Ref<string | boolean>
}