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 🙏

© 2026 – Pkg Stats / Ryan Hefner

jattac.libs.web.overflow-menu

v0.0.35

Published

Enterprise-grade, accessible, and highly customizable React overflow menu component. Built on Radix UI and Framer Motion for premium UX and full WAI-ARIA compliance.

Downloads

555

Readme

Jattac Overflow Menu

A high-performance, accessible, and customizable React overflow menu component designed for modern web applications.

The Jattac Overflow Menu provides a robust solution for managing secondary actions in compact UI areas such as table rows, headers, and toolbars. Built on top of Radix UI primitives and animated with Framer Motion, it offers a refined user experience with full WAI-ARIA compliance and a modern frosted-glass aesthetic.

Key Features

  • Multi-Level Support: Seamlessly handle nested submenus with recursive rendering and consistent animations.
  • Accessibility First: Fully compliant with WAI-ARIA Menu Button patterns, including complete keyboard navigation and focus management.
  • Advanced Animations: Smooth, spring-based interactions and staggered entry effects for a professional feel.
  • Portal Rendering: Optional DOM portal support to resolve z-index and overflow clipping issues in complex layouts.
  • Developer-Centric: Built with TypeScript for strict type safety and a flexible API that supports rich React nodes as menu content.

Installation

Install the package along with its required peer dependencies:

npm install jattac.libs.web.overflow-menu react react-dom framer-motion @radix-ui/react-dropdown-menu

Quick Start

The following example demonstrates a basic implementation with three items.

import React from 'react';
import OverflowMenu, { IOverflowMenuItem } from 'jattac.libs.web.overflow-menu';
import 'jattac.libs.web.overflow-menu/dist/index.css';

const App = () => {
  const items: IOverflowMenuItem[] = [
    { content: 'Edit', onClick: () => console.log('Edit') },
    { content: 'Settings', onClick: () => console.log('Settings') },
    { content: 'Delete', onClick: () => console.log('Delete') },
  ];

  return <OverflowMenu items={items} />;
};

Documentation Index

  1. Cookbook: Practical Examples - Start here to learn through real-world scenarios.
  2. Feature Showcase - A high-level overview of available capabilities.
  3. API Reference - Detailed technical specifications for components and types.
  4. Configuration Guide - Customization, styling, and global settings.
  5. Development Guide - Instructions for contributors and local setup.
  6. Migration Guide - Handling updates and breaking changes.

Next: Cookbook