Comparing version 0.20.1 to 0.20.2
@@ -10,4 +10,7 @@ # Change Log | ||
## 0.20.1 - 2017-08-02 | ||
### Added | ||
- Added `props` as the second argument to input selectors when creating kea selectors | ||
## 0.20.0 - 2017-07-31 | ||
### Changed | ||
@@ -14,0 +17,0 @@ - Connected sagas are now automatically started, no need to pass them separately in { sagas: [] } |
@@ -508,3 +508,3 @@ 'use strict'; | ||
Object.keys(connectedSelectors).forEach(function (propKey) { | ||
nextProps[propKey] = connectedSelectors[propKey](nextState); | ||
nextProps[propKey] = connectedSelectors[propKey](nextState, nextOwnProps); | ||
}); | ||
@@ -511,0 +511,0 @@ } |
{ | ||
"name": "kea", | ||
"version": "0.20.1", | ||
"version": "0.20.2", | ||
"description": "Smart front-end architecture", | ||
@@ -5,0 +5,0 @@ "author": "Marius Andra", |
@@ -316,3 +316,3 @@ import { createPropTransforms, propTypesFromMapping } from '../logic/props' | ||
Object.keys(connectedSelectors).forEach(propKey => { | ||
nextProps[propKey] = connectedSelectors[propKey](nextState) | ||
nextProps[propKey] = connectedSelectors[propKey](nextState, nextOwnProps) | ||
}) | ||
@@ -319,0 +319,0 @@ } |
320169