fluxible-addons-react
Advanced tools
Comparing version 0.2.9 to 0.2.10
# Change Log | ||
## 0.2.10 | ||
### Features | ||
* [#530] Add create-react-class for React 15.5 support | ||
## 0.2.9 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "fluxible-addons-react", | ||
"version": "0.2.9", | ||
"version": "0.2.10", | ||
"description": "Fluxible addons for use with React", | ||
@@ -17,3 +17,4 @@ "main": "index.js", | ||
"hoist-non-react-statics": "^1.0.4", | ||
"inherits": "^2.0.1" | ||
"inherits": "^2.0.1", | ||
"create-react-class": "^15.5.1" | ||
}, | ||
@@ -20,0 +21,0 @@ "peerDependencies": { |
@@ -12,3 +12,3 @@ /** | ||
function createComponent(Component, customContextTypes) { | ||
var componentName = Component.displayName || Component.name; | ||
var componentName = Component.displayName || Component.name || 'Component'; | ||
var childContextTypes = Object.assign({ | ||
@@ -15,0 +15,0 @@ executeAction: React.PropTypes.func.isRequired, |
24883
6
+ Addedcreate-react-class@^15.5.1