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

@internetarchive/ia-menu-slider

Package Overview
Dependencies
Maintainers
11
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@internetarchive/ia-menu-slider - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

2

package.json
{
"name": "@internetarchive/ia-menu-slider",
"version": "0.1.6",
"version": "0.1.7",
"description": "Menu slider used in ia-topnav",

@@ -5,0 +5,0 @@ "author": "ia-menu-slider",

@@ -20,2 +20,3 @@ import { nothing } from 'lit-html';

selectedMenu: { type: String },
animateMenuOpen: { type: Boolean },
};

@@ -30,2 +31,3 @@ }

this.selectedMenu = '';
this.animateMenuOpen = false;
}

@@ -66,3 +68,5 @@

get sliderDetailsClass() {
return this.open ? 'open' : 'closed';
const animate = this.animateMenuOpen ? 'animate' : '';
const state = this.open ? 'open' : 'closed';
return `${animate} ${state}`;
}

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