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

react-css-collapse

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-css-collapse - npm Package Compare versions

Comparing version 3.3.1 to 3.3.2

4

CHANGELOG.md
# Changelog
# 3.3.2
> July 05, 2018
* :bug: **Bugfix** Added nullcheck to make sure we wont try to set style on nonexisting content
# 3.3.1

@@ -4,0 +8,0 @@ > July 05, 2018

4

lib/components/Collapse.js

@@ -110,3 +110,5 @@ 'use strict';

value: function setContentStyleProperty(property, value) {
this.content.style[property] = value;
if (this.content) {
this.content.style[property] = value;
}
}

@@ -113,0 +115,0 @@ }, {

{
"name": "react-css-collapse",
"version": "3.3.1",
"version": "3.3.2",
"description": "Component-wrapper for collapse animation with css for elements with variable and dynamic height",

@@ -5,0 +5,0 @@ "authors": [

Sorry, the diff of this file is not supported yet

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