FormBindingFuncExtension
ForField
Section titled “ForField”Bind to a field
OptionalConfig
Section titled “OptionalConfig”OptionalConfig<
T,Binding> = (fieldName:FormField.Name<T>,config?:NoInfer<ConfigOf<Binding>> &FormBindingFuncExtension.Config) =>InstanceType<Binding>["props"]
Defined in: binding.ts:129
Create a binding for the field with an optional config
Type Parameters
Section titled “Type Parameters”Binding
Section titled “Binding”Binding extends new (field: FormField, config?: any) => FormBinding
Parameters
Section titled “Parameters”fieldName
Section titled “fieldName”config?
Section titled “config?”NoInfer<ConfigOf<Binding>> & FormBindingFuncExtension.Config
Returns
Section titled “Returns”InstanceType<Binding>["props"]
RequiredConfig
Section titled “RequiredConfig”RequiredConfig<
T,Binding> = (fieldName:FormField.Name<T>,config:NoInfer<ConfigOf<Binding>> &FormBindingFuncExtension.Config) =>InstanceType<Binding>["props"]
Defined in: binding.ts:135
Create a binding for the field with a required config
Type Parameters
Section titled “Type Parameters”Binding
Section titled “Binding”Binding extends new (field: FormField, config: any) => FormBinding
Parameters
Section titled “Parameters”fieldName
Section titled “fieldName”config
Section titled “config”NoInfer<ConfigOf<Binding>> & FormBindingFuncExtension.Config
Returns
Section titled “Returns”InstanceType<Binding>["props"]
ForForm
Section titled “ForForm”Bind to the form
OptionalConfig
Section titled “OptionalConfig”OptionalConfig<
T,Binding> = (config?:NoInfer<ConfigOf<Binding>> &FormBindingFuncExtension.Config) =>InstanceType<Binding>["props"]
Defined in: binding.ts:159
Create a binding for the form
Type Parameters
Section titled “Type Parameters”Binding
Section titled “Binding”Binding extends new (form: Form<T>, config: any) => FormBinding
Parameters
Section titled “Parameters”config?
Section titled “config?”NoInfer<ConfigOf<Binding>> & FormBindingFuncExtension.Config
Returns
Section titled “Returns”InstanceType<Binding>["props"]
RequiredConfig
Section titled “RequiredConfig”RequiredConfig<
T,Binding> = (config:NoInfer<ConfigOf<Binding>> &FormBindingFuncExtension.Config) =>InstanceType<Binding>["props"]
Defined in: binding.ts:164
Create a binding for the form with the config
Type Parameters
Section titled “Type Parameters”Binding
Section titled “Binding”Binding extends new (form: Form<T>, config: any) => FormBinding
Parameters
Section titled “Parameters”config
Section titled “config”NoInfer<ConfigOf<Binding>> & FormBindingFuncExtension.Config
Returns
Section titled “Returns”InstanceType<Binding>["props"]
ForMultiField
Section titled “ForMultiField”Bind to multiple fields
OptionalConfig
Section titled “OptionalConfig”OptionalConfig<
T,Binding> = (fieldNames:FormField.Name<T>[],config?:NoInfer<ConfigOf<Binding>> &FormBindingFuncExtension.Config) =>InstanceType<Binding>["props"]
Defined in: binding.ts:144
Create a binding for the multiple fields
Type Parameters
Section titled “Type Parameters”Binding
Section titled “Binding”Binding extends new (fields: FormField[], config?: any) => FormBinding
Parameters
Section titled “Parameters”fieldNames
Section titled “fieldNames”FormField.Name<T>[]
config?
Section titled “config?”NoInfer<ConfigOf<Binding>> & FormBindingFuncExtension.Config
Returns
Section titled “Returns”InstanceType<Binding>["props"]
RequiredConfig
Section titled “RequiredConfig”RequiredConfig<
T,Binding> = (fieldNames:FormField.Name<T>[],config:NoInfer<ConfigOf<Binding>> &FormBindingFuncExtension.Config) =>InstanceType<Binding>["props"]
Defined in: binding.ts:150
Create a binding for the multiple fields with the config
Type Parameters
Section titled “Type Parameters”Binding
Section titled “Binding”Binding extends new (fields: FormField[], config: any) => FormBinding
Parameters
Section titled “Parameters”fieldNames
Section titled “fieldNames”FormField.Name<T>[]
config
Section titled “config”NoInfer<ConfigOf<Binding>> & FormBindingFuncExtension.Config
Returns
Section titled “Returns”InstanceType<Binding>["props"]
Config
Section titled “Config”Config =
FormBindingFunc.Config
Defined in: binding.ts:124
Bind configuration