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

ultitabs

v1.5.0

Published

Zero-dependency tab library with GPU-composited animations, full WAI-ARIA, RTL support, and AI-first design

Readme

UltiTabs

npm version CI npm bundle size license

Zero-dependency tab library — 1.5kb, full WAI-ARIA, GPU-animated indicator, infinite nesting, RTL, and AI-agent ready.

Live Demo & Docs →


Install

npm install ultitabs

Quick Start

<div data-ut-section>
  <div data-ut-list>
    <button data-ut-tab="overview">Overview</button>
    <button data-ut-tab="features">Features</button>
    <button data-ut-tab="pricing">Pricing</button>
  </div>
  <div data-ut-panel="overview">Overview content</div>
  <div data-ut-panel="features">Features content</div>
  <div data-ut-panel="pricing">Pricing content</div>
</div>

<link rel="stylesheet" href="node_modules/ultitabs/css/ultitabs.css" />
<script type="module">
  import { createTabs } from 'ultitabs'
  createTabs({ el: '[data-ut-section]' })
</script>

Or from CDN (no build step):

<link rel="stylesheet" href="https://unpkg.com/ultitabs/css/ultitabs.css">
<script type="module">
  import { createTabs } from 'https://unpkg.com/ultitabs/dist/index.mjs'
  document.querySelectorAll('[data-ut-section]').forEach(el => createTabs({ el }))
</script>

API

const tabs = createTabs({
  el: '#my-tabs',           // CSS selector or HTMLElement (required)
  variant: 'underline',     // 'underline' | 'pill' | 'bordered'
  orientation: 'horizontal',// 'horizontal' | 'vertical'
  justify: 'start',         // 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly'
  side: 'left',             // 'left' | 'right' (vertical only)
  overflow: false,          // show scroll arrows when tabs overflow
  transition: 'fade',       // 'fade' | 'slide' — panel switch animation
  equalHeight: false,       // container min-height = tallest panel
  equalPanelHeight: false,  // every panel min-height = tallest panel
  beforeChange: (path, prev) => {
    // return false to cancel the tab switch
  },
  afterChange: (path, prev) => {
    // fires after state is committed
  },
})

tabs.setPath('features') // switch tab programmatically
tabs.getPath()           // get current tab
tabs.on('beforeChange', fn) // subscribe (returns unsubscribe fn)
tabs.on('afterChange', fn)
tabs.off('afterChange', fn) // explicit unsubscribe
tabs.destroy()           // clean up

URL Sync

Keep the active tab in sync with the URL hash — browser back/forward navigation works automatically:

createTabs({ el: '#my-tabs', syncUrl: true })

Switching tabs updates the URL to #ut-my-tabs-features. Visiting the URL directly opens that tab.


Persist Active Tab

Remember the active tab across page reloads:

// sessionStorage — cleared when browser closes
createTabs({ el: '#my-tabs', persist: 'session' })

// localStorage — persists indefinitely
createTabs({ el: '#my-tabs', persist: 'local' })

Disabled Tabs

Disable individual tabs via HTML attribute — they can't be clicked and are skipped by keyboard navigation:

<div data-ut-section>
  <div data-ut-list>
    <button data-ut-tab="overview">Overview</button>
    <button data-ut-tab="features" data-ut-disabled>Features</button>
    <button data-ut-tab="pricing">Pricing</button>
  </div>
  ...
</div>

Overflow Scroll

When you have many tabs, enable overflow mode to add scroll arrows automatically:

createTabs({ el: '#my-tabs', overflow: true })

Arrow buttons appear at the edges when the tab list overflows its container. They disappear when you're at the start or end.


Panel Transitions

Add a fade or slide animation when switching between panels:

createTabs({ el: '#my-tabs', transition: 'fade' })  // fade in/out
createTabs({ el: '#my-tabs', transition: 'slide' })  // slide + fade

Control the duration with a CSS variable:

[data-ut-section] {
  --ut-transition-duration: 300ms;
}

Equal Height

Prevent layout shift when switching between panels of different heights.

// Container gets min-height = tallest panel
createTabs({ el: '#my-tabs', equalHeight: true })

// Every panel gets min-height = tallest panel
createTabs({ el: '#my-tabs', equalPanelHeight: true })

// Both together
createTabs({ el: '#my-tabs', equalHeight: true, equalPanelHeight: true })

Both options re-measure automatically when content changes (via ResizeObserver).


Lifecycle Hooks

Use beforeChange and afterChange for full control over tab transitions:

const tabs = createTabs({
  el: '#my-tabs',

  // Fires BEFORE the switch — return false to cancel
  beforeChange: (path, prevPath) => {
    if (hasUnsavedChanges()) return false
  },

  // Fires AFTER state is committed — safe to read new DOM
  afterChange: (path, prevPath) => {
    analytics.track('tab_change', { from: prevPath, to: path })
  },
})

// Imperative subscriptions
const unsub = tabs.on('beforeChange', (path, prev) => {
  // return false here also cancels the switch
})
tabs.on('afterChange', (path) => {
  document.title = `My App — ${path}`
})

// Unsubscribe
unsub()                       // via returned function
tabs.off('afterChange', myFn) // or via .off()

onChange is deprecated — use beforeChange instead. It still works.


Auto-Init

Add data-ut-auto to any section — no JS needed at all:

<link rel="stylesheet" href="https://unpkg.com/ultitabs/css/ultitabs.css">
<script type="module" src="https://unpkg.com/ultitabs/dist/index.mjs"></script>

<div data-ut-section data-ut-auto data-ut-default="features">
  <div data-ut-list>
    <button data-ut-tab="overview">Overview</button>
    <button data-ut-tab="features">Features</button>
    <button data-ut-tab="pricing">Pricing</button>
  </div>
  <div data-ut-panel="overview">Overview content</div>
  <div data-ut-panel="features">Features content</div>
  <div data-ut-panel="pricing">Pricing content</div>
</div>

data-ut-default sets which tab is active on load. Without it, the first tab is active.


Usage with React

No wrapper needed — works directly inside any React component:

import { useEffect, useRef } from 'react'
import { createTabs } from 'ultitabs'
import 'ultitabs/css'

export default function Tabs() {
  const ref = useRef(null)

  useEffect(() => {
    const tabs = createTabs({ el: ref.current })
    return () => tabs.destroy()
  }, [])

  return (
    <div data-ut-section ref={ref}>
      <div data-ut-list>
        <button data-ut-tab="overview">Overview</button>
        <button data-ut-tab="features">Features</button>
      </div>
      <div data-ut-panel="overview">Overview content</div>
      <div data-ut-panel="features">Features content</div>
    </div>
  )
}

Usage with Vue

<script setup>
import { onMounted, onUnmounted, ref } from 'vue'
import { createTabs } from 'ultitabs'
import 'ultitabs/css'

const el = ref(null)
let tabs

onMounted(() => { tabs = createTabs({ el: el.value }) })
onUnmounted(() => tabs?.destroy())
</script>

<template>
  <div data-ut-section ref="el">
    <div data-ut-list>
      <button data-ut-tab="overview">Overview</button>
      <button data-ut-tab="features">Features</button>
    </div>
    <div data-ut-panel="overview">Overview content</div>
    <div data-ut-panel="features">Features content</div>
  </div>
</template>

CSS Theming

Override any visual with a CSS custom property — no JS required:

[data-ut-section] {
  --ut-indicator-color: #8b5cf6;
  --ut-indicator-height: 3px;
  --ut-indicator-duration: 300ms;
}

| Variable | Default | Description | |---|---|---| | --ut-indicator-color | #3b82f6 | Indicator / pill color | | --ut-indicator-height | 2px | Underline thickness | | --ut-indicator-duration | 250ms | Transition speed | | --ut-tab-color | #6b7280 | Inactive tab text | | --ut-tab-active-color | #111827 | Active tab text | | --ut-tab-padding | 0.625rem 1rem | Tab button padding |


Features

  • 1.5kb — zero dependencies, ESM + CJS, full TypeScript types
  • GPU-composited indicator — CSS transform-based animation, 60fps always
  • Full WAI-ARIArole="tablist/tab/tabpanel", aria-selected, roving tabindex
  • Infinite nesting — 3+ levels deep, independent keyboard scope per level
  • Three variants — underline, pill, bordered — one prop to switch
  • Full RTL support — automatic, zero-config
  • Vertical orientation — sidebar tabs with left/right placement
  • Programmatic controlsetPath() + onChange callback
  • URL syncsyncUrl: true keeps the active tab in the URL hash
  • Persistpersist: 'session' | 'local' remembers active tab across reloads
  • Disabled tabsdata-ut-disabled attribute to disable individual tabs
  • Overflow scrolloverflow: true adds scroll arrows when tabs overflow
  • Panel transitionstransition: 'fade' | 'slide' animates panel switches
  • Equal heightequalHeight / equalPanelHeight eliminates layout shift between panels
  • Cancellable onChange — return false from onChange to block a tab switch
  • 15+ CSS custom properties — theme every pixel without touching JS

Keyboard Navigation

| Key | Action | |---|---| | / | Next tab | | / | Previous tab | | Home | First tab | | End | Last tab | | Tab | Move focus to active panel |


RTL Support

Add dir="rtl" to the section or any ancestor — everything flips automatically:

<div data-ut-section dir="rtl">
  ...
</div>

Why UltiTabs

| | UltiTabs | Others | |---|---|---| | Bundle size | 1.5kb | 5–30kb | | Dependencies | 0 | 2–15 | | CSS-driven animation | Yes | Rarely | | Infinite nesting | Yes | No | | ARIA compliant | 100% | Partial | | AI agent ready | Yes — built for it | No | | RTL support | Full, automatic | Rare / manual |


License

MIT © Matan Mualem