The docs say
A field is "touched" when the user clicks/tabs into it, "pristine" until the user changes value in it, and "dirty" after the value has been changed.
https://tanstack.com/form/latest/docs/framework/react/guides/basic-concepts
But this is not true. form.Field doesn't seem to expose anything that would even allow it to be true. It exposes handleChange and handleBlur. Both of them set the touched flag, but blur only accounts for focus being lost, not focus being gained.
I think this is correct:

The docs say
https://tanstack.com/form/latest/docs/framework/react/guides/basic-concepts
But this is not true.
form.Fielddoesn't seem to expose anything that would even allow it to be true. It exposeshandleChangeandhandleBlur. Both of them set the touched flag, but blur only accounts for focus being lost, not focus being gained.I think this is correct: