![38% of CISOs Fear They’re Not Moving Fast Enough on AI](https://cdn.sanity.io/images/cgdhsj6q/production/faa0bc28df98f791e11263f8239b34207f84b86f-1024x1024.webp?w=400&fit=max&auto=format)
Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
react-color-picker
Advanced tools
A carefully crafted color picker for React.
Demo: jslog.com/react-color-picker
No images have been used in the making of this color picker :)
$ npm install react-color-picker
You can have either controlled (using value) or uncontrolled (using defaultValue) pickers.
index.css
Example (controlled)
import { render } from 'react-dom'
import React from 'react'
import ColorPicker from 'react-color-picker'
import 'react-color-picker/index.css'
class App extends React.Component {
constructor(props) {
super(props)
this.state = {
color: 'red'
}
}
onDrag(color, c) {
this.setState({
color
})
}
render() {
return <div>
<ColorPicker value={this.state.color} onDrag={this.onDrag.bind(this)} />
<div style={{
background: this.state.color,
width: 100,
height: 50,
color: 'white'
}}>
{this.state.color}
</div>
</div>
}
}
render(<App />, document.getElementById('content'))
Example (uncontrolled)
render(
<ColorPicker defaultValue='#452135'/>,
document.getElementById('content')
)
You can use only the hue spectrum if that is what you need.
import React from 'react'
import { HueSpectrum } from 'react-color-picker'
<HueSpectrum value={color} width={100}/>
<HueSpectrum defaultValue="red" />
You can use only the saturation spectrum if that is what you need.
import React from 'react'
import { SaturationSpectrum } from 'react-color-picker'
<SaturationSpectrum value={color} height={400}/>
<SaturationSpectrum defaultValue="red" />
It's best if you specify a fixed size for the color picker.
Available options:
<ColorPicker value={color} saturationWidth={400} saturationHeight={500} />
<ColorPicker value={color} saturationWidth={400} saturationHeight={500} hueWidth={100}/>
You can specify any other properties on the ColorPicker
, including className
, style
, etc
The ColorPicker
will always have a css class color-picker
The ColorPicker, the HueSpectrum and the SaturationSpectrum all accept onDrag
and onChange
callbacks.
Called during the dragging operation.
Called after mouse up - when the color has been selected
Use Github issues for feature requests and bug reports.
We actively welcome pull requests.
For setting up & starting the project locally, use:
$ git clone https://github.com/zippyui/react-color-picker
$ cd react-color-picker
$ npm install
$ npm dev
Now navigate to localhost:8080
Before building a new version, make sure you run
$ npm run build
which compiles the src
folder (which contains jsx & ES6 files) into the lib
folder (only valid EcmaScript 5 files).
FAQs
React Color Picker
The npm package react-color-picker receives a total of 0 weekly downloads. As such, react-color-picker popularity was classified as not popular.
We found that react-color-picker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.