Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redux-form

Package Overview
Dependencies
Maintainers
1
Versions
236
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-form - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

2

package.json
{
"name": "redux-form",
"version": "1.2.0",
"version": "1.2.1",
"description": "A higher order component generator for forms using Redux and React",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -40,3 +40,6 @@ #redux-form

* [`reducer.normalize(Object<String, Function>)`](#reducerpluginobjectstring-function)
* [`props`](#props) - The props passed in to your form component by `redux-form`
* [`props` passed into your decorated component](#props-passed-into-your-decorated-component) - props provided by
`redux-form`
* [`props` you can pass into your decorated component](#props-you-can-pass-into-your-decorated-component) - extra
functionality!
* [Action Creators](#action-creators) - Advanced

@@ -129,3 +132,3 @@ * [Working Demo](#working-demo)

<input type="text" {...address}/> // will pass value, onBlur and onChange
{address.error && addresss.touched ? <div>{address.error}</div>}
{address.error && address.touched ? <div>{address.error}</div>}

@@ -268,3 +271,3 @@ <label>Phone</label>

```javascript
import React, {Component, PropTypes} from 'redux-form';
import React, {Component, PropTypes} from 'react';
import {connect} from 'redux';

@@ -639,3 +642,3 @@ import {initialize} from 'redux-form';

### `props` passed in to your decorated component
### `props` passed into your decorated component

@@ -803,3 +806,3 @@ The props passed into your decorated component by `react-form` will be:

> the name of your form and the key to where your form's state will be mounted, under the `redux-form` reducer, in the
Redux store. Will overwrite any [`config.form`](#configform-string-optional) value that was passed to
Redux store. Will overwrite any [`config.form`](#-configform--string-optional) value that was passed to
[`connectReduxForm(config)`](#connectreduxformconfigobject).

@@ -806,0 +809,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc