Hello, I've being playing lately with the new signal API and here is my use case:
given an input model (data), fields (a structure describing each field in my model such as key, label, validators, children in case it is list or group) the schema becomes dynamic.
the problem is form signal can't be used with a computed signal that will depend on the combination of fields, model, it basically throws this: https://angular.dev/errors/NG0602.
I also saw that there is a restriction which is that the schema is a pure function that is not reactive.
I also tried to look up for helper functions that allows using validate, validateAsync outside the scope of creation but there are none, since the FieldPath is restricted only to that phase.
Are there currently any ways to achieve this ? will you in the future give the ability to create dynamic schema ? the old APIs supported this btw