Socket
Socket
Sign inDemoInstall

multi-range-slider-react

Package Overview
Dependencies
0
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    multi-range-slider-react

Simple component to select range values from slider. React component that return two value minValue and maxValue by event onInput/onChange.


Version published
Weekly downloads
4.5K
increased by9.79%
Maintainers
1
Install size
136 kB
Created
Weekly downloads
 

Readme

Source

multi-range-slider-react

a react component that can easy to use and interact with parent component with props and events.


Click on image to view demo-code.


No Dependency only single component file and css file

MultiRangeSlider.jsx , MultiRangeSlider.css

You can customize css to change UI/UX.

Download CSS file and modify it and reference it with baseClassName attribute

multirangeslider.css

multirangesliderblack.css


view Demo

GitHub-page


Following is the list of props that control the component

propstypedefaultdescription
idString''Set id to multi-range-slider control root div
minNumber0Slider Minimum Value that user can set
maxNumber100Slider Maximum Value that user can Set
minValueNumber25Slider range selected minimum value that will show default selected
maxValueNumber75Slider range selected maximum value that will show default selected
stepNumber5Slider change value that will change when bar clicked or keyboard arrow key pressed
stepOnlyBooleanfalsespecify user to select only values in round of step only
canMinMaxValueSameBooleanfalseIf true then user can select both min and max same value otherwise have difference of step value
preventWheelBooleanfalsetrue then it not accept mouse wheel to change its value. false then (shift + wheel) change minValue (ctrl+wheel) change maxValue, (ctrl+shift+wheel) change both values
disabledBooleanfalsetrue then user can not change its value by mouse/keyboard. Only can change by update props/state value
rulerBooleantrueis ruler visible or not
labelBooleantrueis label visible or not
labelsString Arrayspecify steps label string value
minCaptionStringcaption on min thumb when sliding - can set on onChange/onInput event
maxCaptionStringcaption on max thumb when sliding - can set on onChange/onInput event
subStepsBooleanfalseis small steps line visible or not
baseClassNameStringmulti-range-sliderChange CSS style of your own
classNameString''Add additional class with baseClassName to div.multi-range-slider
styleReact.CSSPropertiesspecify/override additional style on div.multi-range-slider
barLeftColorString-Colorspecify slider left part background color
barRightColorString-Colorspecify slider right part background color
barInnerColorString-Colorspecify slider inner part background color
thumbLeftColorString-Colorspecify slider left thumb background color
thumbRightColorString-Colorspecify slider right thumb background color
refReact.useRefreference to div.multi-range-slider

Event List

EventDescription
onChangetrigger when thumb mouse up OR slider value change done
onInputtrigger on thumb mouse move OR slider value changing

typescript props definition

Props = {
	min?: number | string;
	max?: number | string;
	step?: number | string;
	minValue?: number | string;
	maxValue?: number | string;
	baseClassName?: string;
	className?: string;
	style?: React.CSSProperties;
	ruler?: boolean | string;
	label?: boolean | string;
	subSteps?: boolean | string;
	stepOnly?: boolean | string;
	preventWheel?: boolean | string;
	labels?: string[];
	minCaption?: string;
	maxCaption?: string;
	barLeftColor?: string;
	barRightColor?: string;
	barInnerColor?: string;
	thumbLeftColor?: string;
	thumbRightColor?: string;
	onInput?: (e: ChangeResult) => void;
	onChange?: (e: ChangeResult) => void;
};

onInput/onChange event parameter type - typescript

type ChangeResult = {
	min: number;
	max: number;
	minValue: number;
	maxValue: number;
};

How to Install

copy following code and run on CLI

npm install multi-range-slider-react


How to use

Example Code

download from gitHub

App.jsx
import React, { useState } from "react";
import MultiRangeSlider from "multi-range-slider-react";
function App() {
const [minValue, set_minValue] = useState(25);
const [maxValue, set_maxValue] = useState(75);
const handleInput = (e) => {
	set_minValue(e.minValue);
	set_maxValue(e.maxValue);
};

return (
	<div className="App">
		<MultiRangeSlider
			min={0}
			max={100}
			step={5}
			minValue={minValue}
			maxValue={maxValue}
			onInput={(e) => {
				handleInput(e);
			}}
		/>
	</div>
	);
}

export default App;



App.tsx
import React, { useState } from "react";
import MultiRangeSlider, { ChangeResult } from "multi-range-slider-react";

const App = () => {
	const [minValue, setMinValue] = useState(25);
	const [maxValue, setMaxValue] = useState(75);

	return (
		<div className='App'>
			<div className='multi-range-slider-container'>
				<b>Simple range slider with default values</b>
				<hr />
				<MultiRangeSlider
					min={0}
					max={100}
					step={5}
					minValue={minValue}
					maxValue={maxValue}
					onInput={(e: ChangeResult) => {
						setMinValue(e.minValue);
						setMaxValue(e.maxValue);
					}}
				></MultiRangeSlider>
				<div style={{ display: 'flex', justifyContent: 'center' }}>
					<div style={{ margin: '10px' }}>onInput:</div>
					<div style={{ margin: '10px' }}>{minValue}</div>
					<div style={{ margin: '10px' }}>{maxValue}</div>
				</div>
			</div>
		</div>
	)

}
export default App;






View Demo

GitHub-page

Click here to view DEMO

Click here to view DEMO + Example Code






License

(Free to use)






Author

Govind Prasad Gupta

developergovindgupta

email : developergovindgupta@gmail.com

Keywords

FAQs

Last updated on 27 Nov 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc