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

react-animate-height

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-animate-height - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

server-render-test.js

2

CHANGELOG.md
# Changelog
### v2.1.1
### v2.1.1, v2.1.2

@@ -5,0 +5,0 @@ 12.04.2022.

@@ -136,4 +136,4 @@ 'use strict';

if (isBrowser) {
_this.prefersReducedMotion = matchMedia('(prefers-reduced-motion)').matches;
if (isBrowser && window.matchMedia) {
_this.prefersReducedMotion = window.matchMedia('(prefers-reduced-motion)').matches;
}

@@ -140,0 +140,0 @@

{
"name": "react-animate-height",
"version": "2.1.1",
"version": "2.1.2",
"description": "Lightweight React component for animating height using CSS transitions.",

@@ -5,0 +5,0 @@ "main": "lib/AnimateHeight.js",

@@ -110,4 +110,4 @@ import React from 'react';

if (isBrowser) {
this.prefersReducedMotion = matchMedia('(prefers-reduced-motion)').matches;
if (isBrowser && window.matchMedia) {
this.prefersReducedMotion = window.matchMedia('(prefers-reduced-motion)').matches;
}

@@ -114,0 +114,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