react-admin-color-picker
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

<ColorInput> and <ColorField> compatible with react-admin v4

A color picker for react-admin (v4) using React Color, a collection of color pickers.

color-input.gif

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

color-field.png

Notice

This module was originally created for admin-on-rest by @dreinke and was forked from his repository and this repository.

Installation

npm install react-admin-color-picker

or

yarn add react-admin-color-picker

Usage

import {
    Show,
    TextField,
    Edit,
    TextInput,
    LongTextInput,
} from 'react-admin';

import { ColorField, ColorInput } from 'react-admin-color-picker';

export const PostShow = () => (
    <Show>
        <TextField source="title" />
        <TextField source="body" />
        <ColorField source="color" />
    </Edit>
);

export const PostEdit = () => (
    <Edit>
        <TextInput source="title" validate={[required()]} />
        <LongTextInput source="body" validate={[required()]} />
        <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
  • Twitter

License

This library is licensed under the MIT Licence.

Package Sidebar

Install

npm i react-admin-color-picker

Weekly Downloads

642

Version

1.0.3

License

MIT

Unpacked Size

13.5 kB

Total Files

13

Last publish

Collaborators

  • alexgschwend