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

react-magic-slider

v0.3.3

Published

A flexible and customizable slider component for React

Downloads

14

Readme

MagicSlider

A flexible and customizable slider component for React with TypeScript support.

Features

  • Supports both continuous and discrete values
  • Customizable appearance with CSS
  • Smooth animations with React Spring
  • TypeScript support
  • Controlled and uncontrolled modes
  • Tab mode for discrete values

Installation

npm install react-magic-slider

Usage

import { Slider } from 'react-magic-slider'

function App() {
	const [value, setValue] = useState(50)

	return (
		<Slider
			value={value}
			onChange={setValue}
			min={0}
			max={100}
			step={1}
			label='Volume'
		/>
	)
}

Styling

The component comes with built-in styles that are automatically included. You can customize the appearance by overriding the CSS classes:

.magic-slider {
	/* Override default styles */
	background-color: #f0f0f0;
}

.magic-slider-handle {
	/* Customize handle appearance */
	background-color: #007bff;
}

Demo

The package includes a demo showcasing different slider configurations:

  1. Basic Slider

    • Simple continuous slider with default behavior
    <Slider value={value} onChange={setValue} />
  2. Step Slider

    • Discrete steps with min/max/step configuration
    <Slider value={value} onChange={setValue} min={1} max={5} step={1} />
  3. Custom Value Display

    • Custom formatting of displayed values
    <Slider
    	value={value}
    	onChange={setValue}
    	renderValue={value => `${value}%`}
    />
  4. Tab Mode

    • Predefined values with tab-like interface
    <Slider
    	value={value}
    	onChange={setValue}
    	mode='tabs'
    	values={['small', 'medium', 'large']}
    />
  5. Labeled Slider

    • Slider with label and min/max constraints
    <Slider value={value} onChange={setValue} label='Volume' min={0} max={100} />

To run the demo locally:

git clone https://github.com/Heilemann/magic-slider.git
cd magic-slider
npm install
npm run dev

Props

| Prop | Type | Default | Description | | ------------ | ----------------------------- | --------- | ----------------------------------- | | value | number | string | - | Controlled value | | defaultValue | number | string | - | Default value for uncontrolled mode | | onChange | (value: T) => void | - | Callback when value changes | | label | string | - | Label text | | min | number | 0 | Minimum value | | max | number | 100 | Maximum value | | step | number | 1 | Step size | | values | T[] | - | Array of discrete values | | className | string | '' | Additional CSS classes | | renderValue | (value: T) => React.ReactNode | - | Custom value renderer | | mode | 'default' | 'tabs' | 'default' | Slider mode |

License

MIT