Socket
Socket
Sign inDemoInstall

react-admin-color-picker

Package Overview
Dependencies
2
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-admin-color-picker

<ColorInput> and <ColorField> components for react-admin (v4). Forked from vascofg/react-admin-color-input.


Version published
Weekly downloads
806
increased by1.77%
Maintainers
1
Install size
9.00 MB
Created
Weekly downloads
 

Readme

Source

<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.

Keywords

FAQs

Last updated on 26 Jun 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc