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

@19h47/slider

v2.0.1

Published

Slider

Downloads

273

Readme

@19h47/slider

Multi-thumb range slider controller (APG-style). One instance controls both thumbs inside a rail and prevents crossing ((min \le max)).

Based on the W3C APG multi-thumb slider pattern: W3C APG – Horizontal Multi-Thumb Slider Example

Installation

npm i @19h47/slider

Markup (HTML-first)

The controller expects a rail element that contains exactly 2 thumbs with role="slider".

The library is HTML-first for ARIA attributes (it does not set aria-orientation at runtime), but its internal orientation is determined by the JS option.

Important: thumbs order matters (matches APG):

  • first thumb = max
  • second thumb = min

Example:

<div class="rail">
  <button
    role="slider"
    tabindex="0"
    class="max"
    aria-label="Maximum value"
    aria-valuemin="0"
    aria-valuemax="35"
    aria-valuenow="35"
    aria-valuetext="35"
    aria-orientation="horizontal"
  ></button>

  <button
    role="slider"
    tabindex="0"
    class="min"
    aria-label="Minimum value"
    aria-valuemin="0"
    aria-valuemax="35"
    aria-valuenow="0"
    aria-valuetext="0"
    aria-orientation="horizontal"
  ></button>
</div>

The controller keeps these attributes updated:

  • aria-valuenow / aria-valuetext on both thumbs
  • aria-valuemin on the max thumb (set to current min)
  • aria-valuemax on the min thumb (set to current max)

Usage


import Slider from '@19h47/slider'

const rail = document.querySelector('.rail')
const slider = new Slider(rail, { orientation: 'horizontal', width: 24, height: 24 })

slider.init();

If you attach sliders dynamically, call destroy() to remove global listeners:

slider.destroy()

Options

type Orientation = 'horizontal' | 'vertical'

type Options = {
  orientation: Orientation
  width: number
  height: number
  direction: 'auto' | 'ltr' | 'rtl'
  step: number
  page: number
}

Defaults:

  • orientation: 'horizontal'
  • width: 24
  • height: 24
  • direction: 'auto' (reads getComputedStyle(rail).direction)
  • step: 1
  • page: 10

Notes:

  • This implementation keeps the thumbs always visible by applying a constant 1-thumb offset (vertical: min thumb; horizontal: max thumb), matching the original library approach.
  • In RTL (direction: 'rtl' or dir="rtl"), the horizontal slider reverses the value axis (higher values to the left) and swaps Left/Right arrow behavior.

Events

The controller dispatches a DOM event on the rail:

  • name: Slider.change
  • target: rail element
  • detail:
type Detail = {
  min: number
  max: number
  active: 'min' | 'max'
}

Example:

rail.addEventListener('Slider.change', (event) => {
  const { min, max, active } = event.detail
  console.log({ min, max, active })
})

Utilities

If you need to draw UI based on geometry (range bar, tooltips), you can use:

  • slider.rect(): returns a DOMRect snapshot for the rail

Keyboard support

| Key | Function | | ----------- | -------------------------------------------------------------------------- | | Right Arrow | Increases slider value one step. | | Up Arrow | Increases slider value one step. | | Left Arrow | Decreases slider value one step. | | Down Arrow | Decreases slider value one step. | | Page Up | Increases slider value by page. | | Page Down | Decreases slider value by page. | | Home | Sets slider to its minimum value. | | End | Sets slider to its maximum value. |

Orientation + positioning

This package positions thumbs via transform: translate3d(...).

It uses a “thumb origin” coordinate system (top-left of the thumb) and:

  • track: railLength - 2 * thumbSize
  • offset (always visible):
    • vertical: min thumb is offset by +height
    • horizontal: max thumb is offset by +width

So your CSS should set a stable origin for thumbs (e.g. top: 0 for vertical, left: 0 for horizontal) and let JS handle positioning.

Acknowledgments