Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-bootstrap

Package Overview
Dependencies
Maintainers
2
Versions
219
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-bootstrap - npm Package Compare versions

Comparing version 0.13.2 to 0.13.3

15

OverlayMixin.js

@@ -52,4 +52,11 @@ var React = require('react');

var overlay = this.renderOverlay();
// Save reference to help testing
this._overlayInstance = React.render(this.renderOverlay(), this._overlayTarget);
if (overlay !== null) {
this._overlayInstance = React.render(overlay, this._overlayTarget);
} else {
// Unrender if the component is null for transitions to null
this._unrenderOverlay();
}
},

@@ -67,3 +74,7 @@

return this._overlayInstance.getDOMNode();
if (this._overlayInstance) {
return this._overlayInstance.getDOMNode();
}
return null;
},

@@ -70,0 +81,0 @@

2

package.json
{
"name": "react-bootstrap",
"version": "0.13.2",
"version": "0.13.3",
"description": "Bootstrap 3 components build with React",

@@ -5,0 +5,0 @@ "homepage": "http://react-bootstrap.github.io/",

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