
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@uiw/react-color-saturation
Advanced tools
Saturation Component is a subcomponent of @react-color
.
npm i @uiw/react-color-saturation
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>
);
}
import React from 'react';
import type * as CSS from 'csstype';
import { type HsvaColor } from '@uiw/color-convert';
import { type 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?: CSS.Properties<string | number>['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;
As always, thanks to our amazing contributors!
Made with contributors.
Licensed under the MIT License.
FAQs
Color Saturation
The npm package @uiw/react-color-saturation receives a total of 101,162 weekly downloads. As such, @uiw/react-color-saturation popularity was classified as popular.
We found that @uiw/react-color-saturation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
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.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.