New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@invisionag/iris-react-accordion

Package Overview
Dependencies
Maintainers
12
Versions
166
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@invisionag/iris-react-accordion - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

14

index.js

@@ -5,3 +5,3 @@ // @flow

import type { Children } from 'react';
import './styles.scss';
import styles from './styles.scss';

@@ -31,2 +31,3 @@ type Jsx = string | React$Element<any> | number | null;

open: boolean,
transitioning: boolean,
};

@@ -43,2 +44,3 @@

open: this.props.startOpen,
transitioning: false,
};

@@ -55,3 +57,12 @@

open,
transitioning: true,
}));
setTimeout(
() =>
this.setState(prevState => ({
...prevState,
transitioning: false,
})),
parseInt(styles.animationduration, 10),
);
};

@@ -100,2 +111,3 @@

'iris-accordion--is-open': this.state.open,
'iris-accordion--transitioning': this.state.transitioning,
});

@@ -102,0 +114,0 @@ return (

2

package.json
{
"name": "@invisionag/iris-react-accordion",
"version": "1.1.1",
"version": "1.1.2",
"main": "index.js",

@@ -5,0 +5,0 @@ "repository": "git@github.com:ivx/iris.git",

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