Package Exports
- @uiw/react-color-slider
- @uiw/react-color-slider/cjs/index.js
- @uiw/react-color-slider/esm/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@uiw/react-color-slider) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Color Slider
Slider Component is a subcomponent of @react-color
.
Install
npm i @uiw/react-color-slider
Usage
import Slider from '@uiw/react-color-slider';
function Demo() {
const [hsva, setHsva] = useState({ h: 0, s: 0, v: 68, a: 1 });
return (
<Slider
color={hsva}
onChange={(color) => {
setHsva({ ...hsva, ...color.hsv });
}}
/>
);
}
Props
import { ColorResult, HsvaColor } from '@uiw/color-convert';
interface SliderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'color'> {
prefixCls?: string;
color?: string | HsvaColor;
lightness?: number[];
onChange?: (color: ColorResult) => void;
}
License
Licensed under the MIT License.