Socket
Socket
Sign inDemoInstall

mobx-react

Package Overview
Dependencies
Maintainers
1
Versions
144
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobx-react - npm Package Compare versions

Comparing version 3.0.3 to 3.0.4

2

index.js

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

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