Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-range-progress

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-range-progress

Component for react to ease styling of range inputs.

  • 3.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
118
increased by47.5%
Maintainers
1
Weekly downloads
 
Created
Source

react-range-progress

A visually customizable range input component for react, inspired by a post on css-tricks.

Demo (todo)

Coming soon.

Installation

npm install react-range-progress --save

Usage

The range control will stretch horizontally 100% width of the parent container.

import React from 'react'
import ReactDOM from 'react-dom'
import Range from 'react-range-progress'

var RangeDemo = React.createClass({
  render: function() {
    return (
      <div style={{width: 300}}>
        <Range
          hideThumb={!!this.state.thumb}
          height={this.state.height}
          onChange={this.onValueChange.bind(this)}
          value={this.state.rangeValue} />
      </div>
    )
  }
})

ReactDOM.render(<RangeDemo />, document.getElementById('container'))

Props

hideThumb - Boolean

Set to true to hide the thumb.


height - number

Track height in pixels.


thumbSize - number

Thumb size in pixels.


min - number

Minimum range value.


max - number

Maximum range value.


onChange - function

Callback called when the range value was changed.


value - number

Initial range value.


The following properties are set with an object with properties r, g, b, a to set red, green, blue (all from 0 to 255) and alpha (0.0 to 1.0) channels. Example for a half opaque red color:

{
  r: 255, g: 0, b: 0, a: .5
}

fillColor - color shape

Fills the track part on the left of the thumb. Defaults to white.


trackColor - color shape

Color of the 'empty' part of the track. Defaults to white with 50% opacity.


thumbColor - color shape

Thumb color. Defaults to white.

Test (todo)

npm test

License

MIT. Copyright (c) 2016 Vincent Grafé.

Keywords

FAQs

Package last updated on 29 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc