final-form-material-ui
final-form-material-ui copied to clipboard
A set of wrapper components to facilitate using Material UI with Final Form
If one passes a `helperText` to `TextField` it should actually be rendered if no error is present. If there is an error, the error message should be rendered instead. The...
# Bug: Classes are not being passed down properly on focus. For example, if you click a TextField with variant outline, the class does not get passed down properly, so...
I had to stylish the InputLabel with `InputLabelProps={{ shrink: true }}`
`variant="outlined"` won't work on Select components. Neither does `formControlProps={{variant:'outlined'}}` (Unlike TextFields, where the variant property is set in the element itself, Select requires that it be set in the FormControl...
Material UI supports great autosuggest components, which especially help with long lists or when the user is unfamiliar with the options. So far, react-select seems to be one of the...
@Deadly0 It's a great project, thank you for creating it! I have made a live demo integration, do you want to link it in the documentation? https://codesandbox.io/s/9ywq085k9w :)
It would be awesome to support these [date pickers and time pickers](https://material-ui-pickers.firebaseapp.com/installation). I have added an example in https://codesandbox.io/s/9ywq085k9w.
If you try to use the props `multiple` in the current build, the component won't work, since it expect an array as initial `value` and instead will receive either `null`...