Socket
Socket
Sign inDemoInstall

react-admin-color-input

Package Overview
Dependencies
100
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-admin-color-input

<ColorInput> and <ColorField> components for react-admin. Forked from aor-color-input.


Version published
Weekly downloads
521
decreased by-14.03%
Maintainers
1
Install size
28.3 MB
Created
Weekly downloads
 

Readme

Source

<ColorInput> and <ColorField>

A color picker for react-admin 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.

Installation

npm install react-admin-color-input --save-dev

Usage

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
  • Twitter

License

This library is licensed under the MIT Licence.

Keywords

FAQs

Last updated on 22 Oct 2019

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