redux-form-material-ui
redux-form-material-ui copied to clipboard
A set of wrapper components to facilitate using Material UI with Redux Form
Hi, I've spotted that on IE when we want to jump to next checkbox then we have to click Tab key three times before we get next checkbox focused/selected Example...
## Issue Using `multiple` option with `Select` like so: ```js My Field Ten Twenty Thirty ))} ``` Produces the following error:  The exact message is: ```js Uncaught Error: Material-UI:...
``` import { Select } from 'redux-form-material-ui'; State { states.map(item => ( {item.name} )) } ``` The list has 50 US states so it's long and there's a scrollview shown...
Great library and good to see a Beta for Material-ui's Beta. I wondered if you were planning or in the process of adding typescript definitions to v5 ? If not...
I have a Autocomplete component whoose list an array of MenuItems. When i click in a specific value, only [Object Object] is show. [https://imgur.com/a/lYvEIS5](url) Here is my code: ``` class...
I am having several issues with the Select component in the following code (using the latest v5.0 of redux-form-material-ui) https://pastebin.com/m2fiqqs0 1.) I am trying to label the Select field. I...
I would like to compose a custom RadioGroup element as seen in this [example](https://codesandbox.io/s/woo83lzy68). Ideally I'd like to have an Avatar as a sibling to the radio element of the...
See https://codesandbox.io/s/w6ll91mom8 for a demo with redux-form 7.3.0
I am using DatePicker as a component to my Field from redux form. Right now each time I focus on the field the date picker opens. I cannot write the...
Stateless components like e.g. this one https://github.com/dmtrKovalenko/material-ui-pickers/blob/master/lib/src/_shared/WithUtils.jsx#L5 don't even have a prototype because they are plain functions. So the old `isStateLess()` implementation failed with "Uncaught TypeError: Cannot read property 'render'...