JSPM

  • Created
  • Published
  • Downloads 38614
  • Score
    100M100P100Q162633F
  • License MIT

Color Slider component for React.

Package Exports

  • @uiw/react-color-slider

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

npm bundle size npm version

image

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={(newShade) => {
        setHsva({ ...hsva, ...newShade });
      }}
    />
  );
}

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.