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

@ieee-atiig/accessibility-menu

v1.0.5

Published

A fully customizable React accessibility menu component with font scaling, reading aids, color adjustments, and more.

Readme

@ieee-atiig/accessibility-menu

A fully customizable React accessibility menu component. Provides font scaling, reading aids, color adjustments, and more to help make your web app more accessible.

Features

  • Font size adjustment
  • Line height adjustment
  • Text alignment control
  • Reading aid (focus line overlay)
  • Grayscale/desaturate mode
  • Dyslexia-friendly font toggle
  • Big cursor toggle
  • Stop animations toggle
  • Persistent settings (localStorage)
  • Fully configurable labels, colors, and positioning
  • SSR / Next.js compatible
  • No external CSS framework required — ships with bundled styles
  • TypeScript type definitions included

Installation

npm install @ieee-atiig/accessibility-menu

Basic Usage

import { AccessibilityMenu } from "@ieee-atiig/accessibility-menu";

function App() {
  return (
    <>
      {/* Your app content */}
      <AccessibilityMenu />
    </>
  );
}

The component injects its own CSS at runtime — no additional imports needed.

Manual CSS Import (optional)

If you prefer to load styles statically:

import "@ieee-atiig/accessibility-menu/styles.css";

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | initialSettings | Partial<AccessibilitySettings> | {} | Initial settings overrides | | storageKey | string | "ieee-atiig-accessibility-menu-settings" | localStorage key for persistence | | position | "bottom-left" \| "bottom-right" | "bottom-left" | Menu position | | positionOffset | number \| { x: number, y: number } | 0 | Offset from edge in px | | labels | Partial<SectionLabels> | {} | Custom text labels | | className | string | "" | Additional class for root wrapper | | buttonClassName | string | "" | Additional class for the FAB | | panelClassName | string | "" | Additional class for the panel | | zIndex | Partial<ZIndexConfig> | {} | Z-index overrides for layers | | onSettingsChange | (settings) => void | — | Called when any setting changes | | onReset | () => void | — | Called when settings are reset | | showResetButton | boolean | true | Show/hide the reset button | | showFontSize | boolean | true | Show/hide font size control | | showLineHeight | boolean | true | Show/hide line height control | | showAlignment | boolean | true | Show/hide alignment control | | showReadingAid | boolean | true | Show/hide reading aid control | | showDesaturate | boolean | true | Show/hide desaturate toggle | | showDyslexicFont | boolean | true | Show/hide dyslexic font toggle | | showBigCursor | boolean | true | Show/hide big cursor toggle | | showStopAnimations | boolean | true | Show/hide stop animations toggle | | theme | Partial<ThemeColors> | {} | Color theme customization | | icons | IconsConfig | — | Custom icon elements | | fontSizeSteps | FontSizeStep[] | [0, 10, 20, 30] | Custom font size steps | | lineHeightSteps | LineHeightStep[] | [0, 15, 20, 25] | Custom line height steps | | readingAidSizes | number[] | [0, 0.9, 1, 1.2] | Custom reading aid sizes | | ssr | boolean | false | Enable SSR-safe rendering |

Theming

<AccessibilityMenu
  theme={{
    primary: "#1a365d",
    accent: "#2b6cb0",
    gradientFrom: "#1a365d",
    gradientTo: "#2b6cb0",
  }}
/>

Custom Labels (i18n)

<AccessibilityMenu
  labels={{
    menuTitle: "Accessibilité",
    fontSize: "Taille de police",
    reset: "Réinitialiser",
    off: "Désactivé",
  }}
/>

Accessibility

  • All controls are keyboard accessible
  • aria-label applied to the menu button
  • aria-pressed on toggle buttons
  • Backdrop overlay dismiss on click
  • Focus remains within the panel when open

Browser Support

  • Chrome, Firefox, Safari, Edge (last 2 major versions)
  • IE is not supported

License

MIT