npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@miraidesigns/menu

v1.0.3

Published

Mirai Designs Framework: Menu module

Downloads

6

Readme

Menus

Menus display a list of choices or options to the user.
Requires the List module for correct appearance.


HTML

<button id="menu-anchor" class="mdf-button">Show menu</button>

<div class="mdf-menu">
    <ul class="mdf-list" role="menu" aria-orientation="vertical" aria-hidden="true" tabindex="-1">
        <li class="mdf-list__item" role="menuitem" tabindex="-1">Menu item</li>
        <li class="mdf-list__item" role="menuitem" tabindex="-1">Menu item</li>
        <li class="mdf-list__item" role="menuitem" tabindex="-1">Menu item</li>
    </ul>
</div>

Sass

// Include default styles without configuration
@forward '@miraidesigns/menu/styles';
// Configure appearance
@use '@miraidesigns/menu' with (
    $variable: value
);

@include menu.styles();

TypeScript

import { MDFMenu } from '@miraidesigns/menu';

new MDFMenu(document.querySelector('.mdf-menu'), {
    anchor: document.getElementById('menu-anchor')
});

Implementation

Attributes

Please see the WAI-ARIA page for attributes and best practices regarding menus.

| Name | Element | Description | | -------------------- | ------- | -------------------------------------------------------------------- | | data-menu-callback | <li> | Name of the callback has to match the name set in the script options |

Classes

| Name | Type | Description | | ------------------- | -------- | ------------------------------------ | | mdf-menu | Parent | Contains the menu list and its items | | mdf-menu--active | Modifier | Fades-in and moves menu on-screen | | mdf-menu__caption | Child | Caption to describe the menu |

Events

| Name | Data | Description | | ------------------- | ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | | MDFMenu:opened | null | Fires when the menu opens | | MDFMenu:activated | {callback: string, index: number, item: HTMLElement} | Fires whenever the a menu item is activated. Includes the callback name, the item itself and its index | | MDFMenu:closed | null | Fires when the menu closes |

Properties

| Name | Type | Description | | ----------------------- | ----------------- | ------------------------------------------------------ | | .anchor | HTMLElement | Returns the anchor element | | .items | HTMLElement[] | Returns an Array with all menu items | | .menu | HTMLElement | Returns the menu element | | .isActive() | (): boolean | Wether or not the menu is visible | | .openMenu(setFocus?) | (boolean): void | Open the menu (optionally set focus on the first item) | | .closeMenu(setFocus?) | (boolean): void | Close the menu (optionally set focus on the anchor) |

Options

| Name | Type | Default | Description | | ------------- | ---------------------------- | ------------ | --------------------------------------------------------------------------------- | | anchor | Element | null | The anchor element that will call the menu | | posX | string | center | The menu's position on the X-axis. Values are left center right | | posY | string | bottom | The menu's position on the Y-axis. Values are top center bottom | | origin | string | top center | Origin of the menu transition. Same values as the transform-origin CSS property | | callbacks | Record<string, () => void> | {} | Object holding the menu item callbacks | | onOpen | () => void | null | Function will run when the menu is opened | | onClose | () => void | null | Function will run when the menu is closed | | hideOnClick | boolean | true | Close the menu when a click is registered outside of it |