Comparing version 0.26.3 to 0.26.4
@@ -10,2 +10,6 @@ # Change Log | ||
## 0.26.3 - 2017-10-12 | ||
### Fixed | ||
- Now if you pass a wrapped component (`logic(Component)`) an `actions` prop, its conents be merged with the created actions prop. | ||
## 0.26.2 - 2017-10-08 | ||
@@ -12,0 +16,0 @@ ### Changed |
@@ -77,3 +77,3 @@ 'use strict'; | ||
// clone the input and add a path if needed | ||
var input = (0, _assign2.default)(hasManualPath ? {} : { path: createUniquePathFunction() }, _input); | ||
var input = (0, _assign2.default)({}, _input, hasManualPath ? {} : { path: createUniquePathFunction() }); | ||
@@ -80,0 +80,0 @@ // this will be filled in and passed to plugins as needed |
@@ -77,3 +77,3 @@ 'use strict'; | ||
// clone the input and add a path if needed | ||
var input = (0, _assign2.default)(hasManualPath ? {} : { path: createUniquePathFunction() }, _input); | ||
var input = (0, _assign2.default)({}, _input, hasManualPath ? {} : { path: createUniquePathFunction() }); | ||
@@ -80,0 +80,0 @@ // this will be filled in and passed to plugins as needed |
{ | ||
"name": "kea", | ||
"version": "0.26.3", | ||
"version": "0.26.4", | ||
"description": "Smart front-end architecture", | ||
@@ -5,0 +5,0 @@ "author": "Marius Andra", |
@@ -44,3 +44,3 @@ import { selectPropsFromLogic } from './connect/props' | ||
// clone the input and add a path if needed | ||
const input = Object.assign(hasManualPath ? {} : { path: createUniquePathFunction() }, _input) | ||
const input = Object.assign({}, _input, hasManualPath ? {} : { path: createUniquePathFunction() }) | ||
@@ -47,0 +47,0 @@ // this will be filled in and passed to plugins as needed |
224097