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 material-ui Select has `input` props so it break with redux-from Field `input` props https://material-ui-1dab0.firebaseapp.com/api/select/ ```js Age None Ten Twenty Thirty ``` ``` SelectInput.js:256 Uncaught Error: Material-UI: the `value` property...
I get this error when I try to do yarn start with my react application. utils.js: ``` "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var isStateLess = exports.isStateLess =...
Hi! I am importing Checkbox and TextField from redux-form-material-ui, like this: import { Checkbox, TextField } from "redux-form-material-ui"; Getting a warning in console: ``` Warning: componentWillMount has been renamed, and...
This fixes #290 for me locally
I cannot type text in the text field here is my code ` {submitted && !user.email && Email is required } ` onchange is triggering but the value is not...
Fixes #223 Maybe not the most accurate definition, but works in my case. Unlike what I thought at first, it seems exhaustive (given that there's less components in v5 at...
When updating material-ui from version 3 to version 4, redix-form-material-ui wrapped components no longer function. Removing the library and custom wrapping the components is required.
I have a situation where I need to show grouped lists of items: https://v0.material-ui.com/#/components/list (Go to Nested Lists) 1. Can redux-form Select field work with options as `` instead of...
Component is rendered but when some of the items is selected app crashes with: ``` eact does not recognize the `helperText` prop on a DOM element. If you intentionally want...
A field without error and warning has no `helperText` set. In that case, `material-ui`'s `` will not reserve any space for the helper text. When the field becomes validated and...