Ruben Gimenez

Results 5 issues of Ruben Gimenez

Would be useful to be able to specify classes for FormFields

Looks like `BaseFormField` was designed to support "locking"/"disabling" an input field: https://github.com/pydantic/FastUI/blob/cec25c61a7cc5a716d05d21039f95be3e8dac0e8/src/python-fastui/fastui/components/forms.py#L22 However, this is not working for me even after extending the `json_schema_field_to_field()` method to also pass an extra...

Add support for [step](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/step) in `number` types. Fixes https://github.com/pydantic/FastUI/issues/132.

I noticed when using an optional `FormFieldSelect`, the default description and placeholder would override the ones I passed to the `json_schema_extra`. Fixed using a similar strategy to what we already...

Also added an example to the Users table. Addresses: https://github.com/pydantic/FastUI/issues/248