Package Exports
- react-color
- react-color/lib/components/chrome/Chrome
- react-color/lib/components/chrome/ChromePointer
- react-color/lib/components/chrome/ChromePointerCircle
- react-color/lib/components/common
- react-color/lib/components/common/Alpha
- react-color/lib/components/common/Checkboard
- react-color/lib/components/common/EditableInput
- react-color/lib/components/common/Hue
- react-color/lib/components/common/Saturation
- react-color/lib/components/compact/Compact
- react-color/lib/components/material/Material
- react-color/lib/components/photoshop/Photoshop
- react-color/lib/components/photoshop/PhotoshopPointerCircle
- react-color/lib/components/slider/Slider
- react-color/lib/components/swatches/Swatches
- react-color/lib/helpers/color
- react-color/modules/tinycolor2
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 (react-color) 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
7 Different Pickers - Sketch, Photoshop, Chrome and many more
Popup or Block - It can be used it as a popup or always visible
Make Your Own - Use the building block components to make your own
Installation & Usage
npm install react-color --save
Include the Component
var React = require('react');
var ColorPicker = require('react-color');
class Component extends React.Component {
render() {
return <ColorPicker type="sketch" />;
}
}
Display It
Display the color picker popup on click, or don't define display and it will always be visible.
var React = require('react');
var ColorPicker = require('react-color');
class Component extends React.Component {
constructor() {
super();
this.state = {
displayColorPicker: false,
};
this.handleClick = this.handleClick.bind(this);
}
handleClick() {
this.setState({ displayColorPicker: !this.state.displayColorPicker });
}
render() {
return (
<div>
<button onClick={ this.handleClick }>Pick Color</button>
<ColorPicker display={ this.state.displayColorPicker } type="sketch" />
</div>
);
}
}
100% inline styles via ReactCSS