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

@servicensw/drop-menu

Package Overview
Dependencies
Maintainers
0
Versions
133
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@servicensw/drop-menu

Drop menu component

  • 2.5.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
decreased by-35.71%
Maintainers
0
Weekly downloads
 
Created
Source

@servicensw/drop-menu

Drop menu component

Service NSW package documentation and examples
(Login credentials required)

Installation

npm install @servicensw/drop-menu --save-dev

How to use

CSS

  • PostCSS workflow: @import '@servicensw/drop-menu';
  • Sass/Eyeglass: @import 'servicensw-drop-menu';
  • Native CSS: @import url('dist/drop-menu.css');
  • Link tag: <link href="dist/drop-menu.css" rel="stylesheet" type="text/css">

JS

The recommended usage is of ES modules, to take advantage of code-splitting.

import DropMenu from "@servicensw/drop-menu"

const dropMenus = document.querySelectorAll(".drop-button:not(.is-excluded)")
dropMenus.forEach((element, index) => {
  new DropMenu(element, index)
})

Legacy usage;

  • IIFE: <script src="dist/drop-menu.js" type="text/javascript"></script> (initialized for all .drop-button:not(.is-excluded) elements)
  • Common JS: const DropMenu = require("@servicensw/drop-menu") (initialize yourself)

HTML

<div class="drop-button__wrapper">
  <p id="dropMenuDescription">Select an option from the list</p>
  <div class="drop-button">
    <ul aria-label="Drop menu" aria-describedby="dropMenuDescription">
      <li><a href="#">Option 1</a></li>
      <li><a href="#">Option 2</a></li>
      <li><a href="#">Option 3</a></li>
      <li><a href="#">Option 4</a></li>
    </ul>
  </div>
</div>

Change log

FAQs

Package last updated on 09 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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