New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kea

Package Overview
Dependencies
Maintainers
1
Versions
233
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kea - npm Package Compare versions

Comparing version 0.26.3 to 0.26.4

4

CHANGELOG.md

@@ -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

2

es/kea/index.js

@@ -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

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