Package Exports
- @palustris/react-admin-color-input
- @palustris/react-admin-color-input/lib/index.js
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 (@palustris/react-admin-color-input) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
<ColorInput> and <ColorField>
A color picker for react-admin using React Color, a collection of color pickers.

Also includes a color field for just displaying the color value.

Notice
This module was originally created for admin-on-rest by @dreinke and was forked from his repository.
Installation
npm install react-admin-color-input --save-devUsage
import React from 'react';
import {
Show,
TextField,
Edit,
TextInput,
LongTextInput,
} from 'react-admin';
import { ColorField, ColorInput } from 'react-admin-color-input';
export const PostShow = (props) => (
<Show {...props}>
<TextField source="title" />
<TextField source="body" />
<ColorField source="color" />
</Edit>
);
export const PostEdit = (props) => (
<Edit {...props}>
<TextInput source="title" validation={{ required: true }} />
<LongTextInput source="body" validation={{ required: true }} />
<ColorInput source="color" />
</Edit>
);You can customize the color picker using the picker attribute.
<ColorInput source="color" picker="Sketch"/>Pickers
- Alpha
- Block
- Chrome (default)
- Circle
- Compact
- Github
- Hue
- Material
- Photoshop
- Sketch
- Slider
- Swatches
License
This library is licensed under the MIT Licence.