Package Exports
- @uiw/react-color-saturation
- @uiw/react-color-saturation/cjs/index.js
- @uiw/react-color-saturation/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-saturation) 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 Saturation
Saturation Component is a subcomponent of @react-color
.
Install
npm i @uiw/react-color-saturation
Usage
import React, { useState } from 'react';
import Saturation from '@uiw/react-color-saturation';
export default function Demo() {
const [hsva, setHsva] = useState({ h: 0, s: 0, v: 68, a: 1 });
return (
<Saturation
hsva={hsva}
onChange={(newColor) => {
setHsva({ ...hsva, ...newColor, a: hsva.a });
}}
/>
);
}
The value of hsva
does not exist
import React from 'react';
import Saturation from '@uiw/react-color-saturation';
export default function Demo() {
return (
<div style={{ display: 'flex', gap: 10 }}>
<Saturation hue={122} />
<Saturation hue={210} />
<Saturation hue={23} />
</div>
);
}
Props
import React from 'react';
import { HsvaColor } from '@uiw/color-convert';
import { PointerProps } from './Pointer';
export interface SaturationProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
prefixCls?: string;
/** hsva => `{ h: 0, s: 75, v: 82, a: 1 }` */
hsva?: HsvaColor;
hue?: number;
radius?: React.CSSProperties['borderRadius'];
/** React Component, Custom pointer component */
pointer?: ({ prefixCls, left, top, color }: PointerProps) => JSX.Element;
onChange?: (newColor: HsvaColor) => void;
}
declare const Saturation: React.ForwardRefExoticComponent<SaturationProps & React.RefAttributes<HTMLDivElement>>;
export default Saturation;
Contributors
As always, thanks to our amazing contributors!
Made with contributors.
License
Licensed under the MIT License.