- Redux Form
- API
API
reduxForm(config:Object)
The decorator you use to connect your form component to Redux. See details.
reducer
The form reducer. Should be given to mounted to your Redux state at
form
.
reducer.plugin(Object<String, Function>)
Returns a form reducer that will also pass each action through additional reducers specified.
props
The props passed into your decorated form component.
Field
The component needed to connect any input to
redux-form
.
Fields
The component that can to connect multiple inputs to
redux-form
.
FieldArray
The component needed to render an array of fields
FormSection
The component needed to prefix the names of a group of fields.
Form
A simple wrapper for the React
<form>
component that allows the surroundingredux-form
-decorated component to trigger itsonSubmit
function.
formValueSelector(form:String, [getFormState:Function])
Creates a selector for use in
connect()
ing to form values in the Redux store.
SubmissionError
A special error type for returning submit validation errors
Action Creators
redux-form
exports all of its internal action creators.
Selectors
redux-form
provides Redux state selectors that may be used to query the state of your forms.