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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-radio-slider

v1.2.0

Published

A react component that allows you to select a value from a range of values using a slider and / or radio buttons.

Downloads

24

Readme

React Radio Slider

ReactRadioSlider is a flexible, easy-to-integrate, and customizable React component that allows users to select a single option from a set of options in a slider-like UI. Unlike traditional select components, ReactRadioSlider provides a more interactive component with a smooth user experience.

Features

  • Adjustable width for options.
  • Customizable opacity for deselected items.
  • Optional min and max range for the slider input.
  • Responsive design that works with different sizes and device types.

Installation

Using npm:

npm install react-radio-slider

Using yarn:

yarn add react-radio-slider

Props

Below are the properties that you can pass to <ReactRadioSlider>:

| Prop | Type | Required | Description | |--------------------|----------------|----------|-------------------------------------------------------------------------------------------------| | value | number | Yes | The current value of the slider. | | onChange | function | Yes | Callback function that is fired when the value changes. | | radioOptions | ReactNode[] | Yes | An array of React nodes that are the options the user can select from. | | optionWidth | number | Yes | The width of each option. | | deselectedOpacity | number | No | Opacity of the non-selected items (0-100). Default is 50. | | optionHeight | number | No | The height of each option. If not specified, the height will be adjusted automatically. | | max | number | No | The maximum value of the slider. The default is 100. | | min | number | No | The minimum value of the slider. The default is 0. | | gap | number | No | The gap between the radio options and range input |

Basic Usage

Here is a basic example of using the ReactRadioSlider component:

import React, { useState } from "react";
import ReactRadioSlider from "react-radio-slider";

const App = () => {
  const [value, setValue] = useState(0);
  const radioOptions = [
    // Your options here. They can be any valid React nodes.
  ];

  const handleChange = (newValue) => {
    setValue(newValue);
  };

  return (
    <ReactRadioSlider
      value={value}
      onChange={handleChange}
      radioOptions={radioOptions}
      optionWidth={50} // Example width value
    />
  );
};

export default App;

Custom Styling

You can provide custom styles for the options by passing in React nodes with your styling applied as radioOptions. Here's an example of how you might achieve custom-styled options:

const radioOptions = [
  <div style={{ backgroundColor: "red" }}>Option 1</div>,
  <div style={{ backgroundColor: "blue" }}>Option 2</div>,
  // ... more options
];

Pass this radioOptions array to the ReactRadioSlider component as a prop.

Contributing

We encourage you to contribute to react-radio-slider! Please check out the Contributing guide for guidelines about how to proceed.

License

This project is licensed under the GNU License - see the LICENSE file for details.


Note: Make sure to replace react-radio-slider with your actual package name. Also, provide actual paths if your contributing and license guides are located in places other than the root or if they have different filenames.