Now you need to provide a style and form data even when you are just building the validator. When we add a context, you would also need to provide that.
This would be solved by reintroducing the Validation builder variant.
Now you need to provide a style and form data even when you are just building the validator. When we add a context, you would also need to provide that.
This would be solved by reintroducing the Validation builder variant.
The problem is, if we pass the context in addition to the builder when building components (which is necessary for dynamic select options) then the context must be present for building the form and the validator.
The other option would be to pass an optional Context, which would just be None when getting the Validator.
The problem is, if we pass the context in addition to the builder when building components (which is necessary for dynamic select options) then the context must be present for building the form and the validator.
The other option would be to pass an optional Context, which would just be None when getting the Validator.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Now you need to provide a style and form data even when you are just building the validator. When we add a context, you would also need to provide that.
This would be solved by reintroducing the Validation builder variant.
The context being required is the big problem, as it's going to be mostly render context stuff
Since we are putting the Validation Builder back in, it might make sense to get rid of the RenderFn
The problem is, if we pass the context in addition to the builder when building components (which is necessary for dynamic select options) then the context must be present for building the form and the validator.
The other option would be to pass an optional Context, which would just be None when getting the Validator.
It looks like we can even get rid of the
fdfield in the builder, since it's passed in in the render fn. Perhaps the same with the style.