
Security News
n8n Tops 2025 JavaScript Rising Stars as Workflow Platforms Gain Momentum
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.
@uiw/react-color-compact
Advanced tools
Compact Component is a subcomponent of @react-color.
npm i @uiw/react-color-compact
import React, { useState } from 'react';
import Compact from '@uiw/react-color-compact';
export default function Demo() {
const [hex, setHex] = useState("#fff");
return (
<Compact
color={hex}
style={{
boxShadow: 'rgb(0 0 0 / 15%) 0px 0px 0px 1px, rgb(0 0 0 / 15%) 0px 8px 16px',
}}
onChange={(color) => {
setHex(color.hex);
}}
/>
);
}
Add clear button
import React, { useState } from 'react';
import Compact from '@uiw/react-color-compact';
export default function Demo() {
const [hex, setHex] = useState("#fff");
return (
<Compact
color={hex}
style={{
boxShadow: 'rgb(0 0 0 / 15%) 0px 0px 0px 1px, rgb(0 0 0 / 15%) 0px 8px 16px',
}}
onChange={(color) => {
setHex(color.hex);
}}
rectRender={(props) => {
console.log(props.key)
if (props.key == 35) {
return <button key={props.key} style={{ width: 15, height: 15, padding: 0, lineHeight: "10px" }} onClick={() => setHex(null)}>x</button>
}
}}
/>
);
}
import React from 'react';
import { ColorResult, HsvaColor } from '@uiw/color-convert';
import { type SwatchProps, type SwatchRectRenderProps } from '@uiw/react-color-swatch';
export interface CompactProps<T> extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'color'> {
prefixCls?: string;
color?: string | HsvaColor;
colors?: string[];
onChange?: (color: ColorResult, evn?: T) => void;
rectRender?: (props: SwatchRectRenderProps) => JSX.Element | undefined;
rectProps?: SwatchProps['rectProps'];
}
declare const Compact: React.ForwardRefExoticComponent<CompactProps<React.MouseEvent<HTMLDivElement, MouseEvent>> & React.RefAttributes<HTMLDivElement>>;
export default Compact;
As always, thanks to our amazing contributors!
Made with contributors.
Licensed under the MIT License.
FAQs
Color Compact component for React.
The npm package @uiw/react-color-compact receives a total of 93,707 weekly downloads. As such, @uiw/react-color-compact popularity was classified as popular.
We found that @uiw/react-color-compact 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
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.