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

@present-day/reveal-row

v0.2.0

Published

Horizontal scroll-to-reveal row for actions on the left, right, or both sides

Readme

RevealRow

Buttery swipe-to-reveal actions for React lists — powered by native scroll physics, not JavaScript animation.

npm version CI bundle size types license

The swipe-to-delete pattern everyone knows from iOS Mail — as a headless React component. Swipe (or drag, or scroll) a row horizontally to reveal action buttons on the right, the left, or both sides, with three crisp snap positions: left · center · right.

▶ Try the live playground

Why RevealRow?

  • 🍦 Native scroll physics — momentum, rubber-banding, and snap come from the browser's own scroll engine (CSS scroll-snap), not a JS animation loop. It feels right because it is the real thing.
  • 🎨 Headless & unstyled — no bundled CSS. Every sub-element takes your class names, so it drops into Tailwind, CSS Modules, or plain CSS without a fight.
  • 📱 Touch, trackpad, and mouse — one component, every input. Works inside vertically scrolling lists without gesture conflicts.
  • 🪶 Tiny & dependency-free — just react and react-dom as peers. Tree-shakeable, sideEffects: false, ESM + CJS + types.
  • Accessible by default — focus-driven reveal for keyboard users, prefers-reduced-motion support, configurable ARIA labels, and a click-guard so a swipe never fires an accidental row activation.
  • 🎛️ Fully controllable — imperative ref API (reveal('left'), close()), settled-position callbacks, and a disabled/isActive protocol for coordinating whole lists.

Install

bun add @present-day/reveal-row
# or
npm i @present-day/reveal-row

Peer dependencies: react, react-dom (v18 or v19).

Quick start

import { RevealRow } from '@present-day/reveal-row'

// Right mode — swipe left to reveal
<RevealRow right={<button onClick={handleDelete}>Delete</button>}>
  <MyRowContent />
</RevealRow>

// Left mode — swipe right to reveal
<RevealRow left={<button onClick={handlePin}>Pin</button>}>
  <MyRowContent />
</RevealRow>

// Both modes — swipe either direction
<RevealRow
  left={<button onClick={handlePin}>Pin</button>}
  right={<button onClick={handleDelete}>Delete</button>}
>
  <MyRowContent />
</RevealRow>

Multiple actions per side

A side slot is a single column that auto-sizes to its content (with an 88px floor) — to show several buttons (iOS Mail-style Delete + Pin), lay them out with flex and give each button its own width. No math required:

<RevealRow
  right={
    <div style={{ display: 'flex', height: '100%' }}>
      <button style={{ width: 88 }} onClick={handleDelete}>Delete</button>
      <button style={{ width: 88 }} onClick={handlePin}>Pin</button>
    </div>
  }
>
  <MyRowContent />
</RevealRow>

Passing actionWidthLeft/actionWidthRight a number still gives you a fixed-width column, exactly as before.

▶ See it live in the playground under "Multiple actions".

Accessibility

  • Focus-driven reveal — tabbing into an off-screen action button snaps that side cleanly into view (instead of the browser's un-snapped scroll-into-view). When focus leaves the row, a focus-initiated reveal closes again — so keyboard users never leave rows stuck open. Swipe-opened rows are not affected by focus loss.
  • Reduced motion — preset animations become instant under prefers-reduced-motion: reduce. An explicit animationConfig is treated as an intentional override and left untouched.
  • State hooks for styling and testing — the root carries data-reveal-position="left | center | right" (settled position) alongside data-reveal-mode.
  • Screen readers — the drag handle is decorative (aria-hidden) with a configurable sr-only description (handleAriaLabel).

Modes

| mode | Slots used | Resting ("closed") scroll | | ------- | -------------------- | ------------------------------------------- | | right | right only | scrollLeft = 0 (left edge) | | left | left only | scrollLeft = wL (after leading column) | | both | left and right | scrollLeft = wL (main fills viewport) |

Omit mode and it's inferred: both slots → both, only leftleft, otherwise right.

Props

| Prop | Type | Default | Description | | ---- | ---- | ------- | ----------- | | children | ReactNode | — | Primary row content | | left | ReactNode | — | Leading action column | | right | ReactNode | — | Trailing action column | | mode | 'left' \| 'right' \| 'both' | inferred | Override mode detection | | actionWidthLeft | number | auto (min 88px) | Fixed width (px) of the left column; omit to size to content | | actionWidthRight | number | auto (min 88px) | Fixed width (px) of the right column; omit to size to content | | classNames | RevealRowClassNames | {} | Class names for each sub-element | | showHandle | boolean | true | Render the default 6-dot drag affordance | | handle | ReactNode | — | Replace the default handle with custom content | | handlePosition | 'start' \| 'end' | 'start' in left mode, 'end' otherwise | Where the handle strip sits in the row | | handleTitle | string | 'Drag horizontally…' | Tooltip on the default handle | | handleAriaLabel | string | 'Drag horizontally…' | Screen-reader text on the default handle | | onRevealChange | (pos: RevealPosition) => void | — | Fires when the settled position changes (debounced) | | onScroll | UIEventHandler | — | Raw scroll events | | disabled | boolean | false | Disables swiping | | resetWhenDisabled | boolean | true | Snap closed when disabled becomes true | | isActive | boolean | false | Snap closed (e.g. another row was selected) | | className | string | — | Added to the root scroll element | | style | CSSProperties | — | Added to the root scroll element |

Ref API

const ref = useRef<RevealRowHandle>(null)

<RevealRow ref={ref} right={<DeleteButton />}>
  <MyRowContent />
</RevealRow>

// Programmatic control
ref.current?.close()                    // snap to center
ref.current?.reveal('left')            // snap to left action
ref.current?.reveal('right')           // snap to right action
ref.current?.reveal('center')          // alias for close

Styling with classNames

All sub-elements accept class names, so styling is entirely yours:

<RevealRow
  classNames={{
    root: 'my-row',          // scroll container
    main: 'my-row__main',    // main content track
    mainInner: '',           // flex wrapper inside main
    left: 'my-row__left',   // left action column
    right: 'my-row__right', // right action column
    handleContainer: '',    // outer handle strip
    handleIcon: '',         // icon wrapper inside handle
  }}
>

Integration notes

Nested vertical scroll — the root uses touch-action: pan-x pan-y so a parent list can still scroll vertically.

Overscroll / browser back gestures — if horizontal swipes compete with iOS back or macOS trackpad history navigation, set overscroll-behavior-x: none on a suitable ancestor (e.g. a full-screen container).

Preventing row activation on swipe — the component guards against triggering a click after a horizontal drag. If you wrap the row in a command palette item or similar, keep the built-in onClickCapture behaviour intact, or replicate it.

Focus styles — the row root is a scroll container, and CSS clips anything drawn outside the scrollport, including focus outlines (on both axes). Draw focus rings inward on action buttons and row content: outline-offset: -2px, or Tailwind's focus-visible:ring-2 focus-visible:ring-inset.

Single-axis scrolling — the root pins overflow-y: hidden so rows only ever scroll horizontally; vertical overflow clips instead of scrolling.

Rounded list corners — don't rely on a parent's overflow: hidden + border-radius to clip action buttons: scroll containers are composited on their own layers, and browsers can skip ancestor rounded clipping mid-scroll, exposing square button corners. Instead, put the matching radius on the buttons that touch the container's edges — the outermost button of the group, on the first and last rows only. Drive it from a token so the radius stays in one place:

:root { --row-radius: 12px; }
.list { border-radius: var(--row-radius); }
.list > :first-child [data-reveal-row-right] button:last-child { border-top-right-radius: var(--row-radius); }
.list > :last-child  [data-reveal-row-right] button:last-child { border-bottom-right-radius: var(--row-radius); }
.list > :first-child [data-reveal-row-left]  button:first-child { border-top-left-radius: var(--row-radius); }
.list > :last-child  [data-reveal-row-left]  button:first-child { border-bottom-left-radius: var(--row-radius); }

The playground implements the same idea with an index-aware helper (edgeCorners in playground/src/PlaygroundApp.tsx).

CSS tokens

The component is headless, but its one built-in dimension is themeable via a CSS custom property:

| Token | Default | Effect | | ----- | ------- | ------ | | --reveal-row-action-min-width | 88px | Minimum width of an auto-sized action column (the floor under content-based sizing) |

Set it on :root or any ancestor: [data-reveal-mode] { --reveal-row-action-min-width: 72px; }. Explicit actionWidthLeft/actionWidthRight props bypass the token. The playground layers its own tokens on top (--row-radius, --action-width) in playground/index.html — retheme everything from one place.

Publishing (maintainers)

Run bun run build to produce dist/. The exports field in package.json points to dist/index.{js,mjs,d.ts}. Push a tag to trigger the GitHub Actions publish workflow (OIDC trusted publishing — no npm token needed in secrets).

License

MIT © Present Day