Socket
Book a DemoInstallSign in
Socket

@licuido/ui_range-slider

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@licuido/ui_range-slider

RangeSlider can be used to set the start and end of a range by supplying an array of values to the value prop.

latest
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

RangeSlider

RangeSlider can be used to set the start and end of a range by supplying an array of values to the value prop.

Author

  • @author Henry Dyson J henry@crayond.co

Story Book Link Range Slider

PlayGround

Try it have a fun codeBox

Installation

npm i  @licuido/ui_range-slide

Import component

import { RangeSlider } from '@licuido/ui_range-slide';

Usage

<RangeSlider value={[20, 50]} thumbColor={'green'} step={5} />

Image

alt text

Sample Code

<RangeSlider
  value={[30, 70]}
  step={10}
  marks={[]}
  disabled={false}
  sliderColor={'green'}
  thumbColor={'green'}
  sliderHeight={8}
  customMarks={false}
  minMaxValues={true}
  valueLabelDisplay={'off'}
  handleChangeFun={() => false}
  sliderStyle={{}}
  maxLabelStyle={{}}
  minLabelStyle={{}}
  containerStyle={{}}
  sliderThumbStyle={{}}
  minMaxLabelColor={'#929292'}
  minMaxLabelSize={12}
  minMaxValueColor={'#262626'}
  minMaxValueSize={14}
  minLabel={'Min'}
  maxLabel={'Max'}
  markLabelColor={'#707070'}
  markLabelSize={12}
/>

Props

NameDescriptionDefaultControl
idstringstringstring
valuenumber[][20,30][20 ,30]
handleChangeFun()=>{}--
markLabelColorstring"#707070"linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1))
markLabelSizenumber1212
minLabelstring"Min"Min
maxLabelstring"Max"Max
sliderHeightnumber88
sliderColorstring"#665CD7"linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
thumbColorstring"#665CD7"linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
disabledbooleanfalseFalse or True
valueLabelDisplay"off" or "on""off""off"
stepnumber1010
customMarksbooleanfalseFalse or True
minMaxValuesbooleanfalseFalse or True
sliderStyleSxProps<{}>{ }sliderStyle : {}
maxLabelStyleSxProps<{}>{ }maxLabelStyle : {}
minLabelStyleSxProps<{}>{ }minLabelStyle : {}
containerStyleSxProps<{}>{ }containerStyle : {}
sliderThumbStyleSxProps<{}>{ }sliderThumbStyle : {}
marks{ value: number; label: string; }[][][]
classNamestring-Set string
sxSxProps<Theme>-Set object
size"small" or "medium" or "large"smallsmall
minMaxLabelColorstring"#929292"linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
minMaxLabelSizenumber12Set number
minMaxValueColorstring"#262626"linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
minMaxValueSizenumber14Set number

FAQs

Package last updated on 01 May 2025

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