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

@cfpb/cfpb-atomic-component

Package Overview
Dependencies
Maintainers
8
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cfpb/cfpb-atomic-component - npm Package Compare versions

Comparing version 0.7.4 to 0.7.5

4

package.json
{
"name": "@cfpb/cfpb-atomic-component",
"version": "0.7.4",
"version": "0.7.5",
"description": "Design System atomic component micro-framework",

@@ -16,3 +16,3 @@ "less": "src/cfpb-atomic-component.less",

],
"gitHead": "c6ca18562518d259c6148e2261b2df89e9f5f043"
"gitHead": "623ae81b2e166f0ad9cb5684a41a88c893017ba5"
}

@@ -126,8 +126,11 @@ // Required modules.

_isAnimating = true;
// If transition is not supported, call handler directly (IE9/OperaMini).
if ( _transitionEndEvent ) {
_dom.addEventListener(
_transitionEndEvent,
_transitionCompleteBinded
);
/*
If transition is not supported, call handler directly (IE9/OperaMini).
Also, if "transition-duration: 0s" is set, transitionEnd event will not
fire, so we need to call the handler straight away.
*/
if ( _transitionEndEvent &&
!_dom.classList.contains( BaseTransition.NO_ANIMATION_CLASS ) ) {
_dom.addEventListener( _transitionEndEvent, _transitionCompleteBinded );
this.dispatchEvent( BaseTransition.BEGIN_EVENT, { target: this } );

@@ -134,0 +137,0 @@ } else {

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