mobx-react
Advanced tools
Comparing version 3.0.3 to 3.0.4
@@ -38,3 +38,3 @@ (function() { | ||
var name = [ | ||
this.displayName || this.name || (this.constructor && this.constructor.name) || "<component>", | ||
this.displayName || this.name || (this.constructor && (this.constructor.displayName || this.constructor.name)) || "<component>", | ||
"#", this._reactInternalInstance && this._reactInternalInstance._rootNodeID, | ||
@@ -41,0 +41,0 @@ ".render()" |
@@ -38,3 +38,3 @@ (function() { | ||
var name = [ | ||
this.displayName || this.name || (this.constructor && this.constructor.name) || "<component>", | ||
this.displayName || this.name || (this.constructor && (this.constructor.displayName || this.constructor.name)) || "<component>", | ||
"#", this._reactInternalInstance && this._reactInternalInstance._rootNodeID, | ||
@@ -41,0 +41,0 @@ ".render()" |
{ | ||
"name": "mobx-react", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"description": "React bindings for mobx. Create fully reactive components.", | ||
@@ -31,4 +31,5 @@ "main": "index.js", | ||
"mobx": "^2.0.0", | ||
"react": "15.0.0-rc.2", | ||
"react-dom": "15.0.0-rc.2", | ||
"react": "^15.0.0", | ||
"react-addons-test-utils": "^15.0.0", | ||
"react-dom": "^15.0.0", | ||
"tape": "^4.2.2", | ||
@@ -35,0 +36,0 @@ "tape-run": "2.1.0", |
@@ -126,2 +126,12 @@ # mobx-react | ||
### 3.0.4 | ||
The debug name stateless function components of babel transpiled jsx are now properly picked up if the wrapper is applied after defining the component: | ||
```javascript | ||
const MyComponent = () => <span>hi</span> | ||
export default observer(MyComponent); | ||
``` | ||
### 3.0.3 | ||
@@ -128,0 +138,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28567
244
10