Values.FormInputValuePropertyDescribes the configuration for an input field on a form. Use FormInputValueProperty to specify the values to render or bind by default.
type nonrec t = {value : String_.t option;The value to assign to the input field.
*)bindingProperties : FormInputValuePropertyBindingProperties.t option;The information to bind fields to data at runtime.
*)concat : FormInputValuePropertyList.t option;A list of form properties to concatenate to create the value to assign to this field property.
*)}val make :
?value:String_.t ->
?bindingProperties:FormInputValuePropertyBindingProperties.t ->
?concat:FormInputValuePropertyList.t ->
unit ->
t