API #

reduxForm(config:Object) #

The decorator you use to connect your form component to Redux. See details.

View source on GitHub


reducer #

The form reducer. Should be given to mounted to your Redux state at form.

View source on GitHub

reducer.plugin(Object<String, Function>) #

Returns a form reducer that will also pass each action through additional reducers specified.

View source on GitHub


props #

The props passed into your decorated form component.

View source on GitHub


Field #

The component needed to connect any input to redux-form.

View source on GitHub


Fields #

The component that can connect multiple inputs to redux-form.

View source on GitHub


FieldArray #

The component needed to render an array of fields

View source on GitHub


FormSection #

The component needed to prefix the names of a group of fields.

View source on GitHub


Form #

A simple wrapper for the React <form> component that allows the surrounding redux-form-decorated component to trigger its onSubmit function.

View source on GitHub


formValueSelector(form:String, [getFormState:Function]) #

Creates a selector for use in connect()ing to form values in the Redux store.

View source on GitHub


SubmissionError #

A special error type for returning submit validation errors

View source on GitHub


Action Creators #

redux-form exports all of its internal action creators.

View source on GitHub


Selectors #

redux-form provides Redux state selectors that may be used to query the state of your forms.

View source on GitHub