Package Exports
- @uiw/react-color-compact
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-compact) 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 Compact
Install
npm i @uiw/react-color-compact
Usage
import Compact from '@uiw/react-color-compact';
function Demo() {
const [hex, setHex] = useState("#fff");
return (
<Compact
color={hex}
onChange={(color) => {
setHex(color.hex);
}}
/>
);
}
Props
import { ColorResult, HsvaColor } from '@uiw/color-convert';
interface CompactProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'color'> {
prefixCls?: string;
color?: string | HsvaColor;
colors?: string[];
onChange?: (color: ColorResult, evn: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
}
License
Licensed under the MIT License.