but it seems to cause problems and might not be the best.
For example if I want to have a component that can take any Form:
type Props = { form: FormType<any>}
type Props = { form: FormType<any>}
And then try to use it, I get:
Type 'ReactFormExtendedApi</*fields in my schema*/>' is not assignable to type 'FormType<any>'.
Type 'ReactFormExtendedApi</*fields in my schema*/>' is not assignable to type 'FormType<any>'.
The validator changes also seemed to break things, as I now get a type error whenever I have a form with default values and a schema with optional values, even when they should be/were compatible.
Sorry if this is a bit rambly but since this is so new I've had little chance to find answers/examples online ,especially as some of the official examples seem down.