material-ui-color-picker
TypeScript icon, indicating that this package has built-in type declarations

3.5.1 • Public • Published

<ColorPicker> for material-ui

 example

ColorPicker based on <TextField /> and <ChromePicker /> from react-color and its redux-form field component.

Demo

https://material-ui-color-picker.now.sh/

Installation

For material-ui (v1):

npm install --save material-ui-color-picker

Usage

import React from 'react'
import ColorPicker from 'material-ui-color-picker'
 
<ColorPicker
  name='color'
  defaultValue='#000'
  // value={this.state.color} - for controlled component
  onChange={color => console.log(color)}
 
/>

Redux-form field

import React, { Component } from 'react';
import { reduxForm, Field } from 'redux-form';
import { ColorPickerField } from 'material-ui-color-picker';
 
...
<Field
  name="color"
  component={ColorPickerField}
/>
...
 

There is not so much properties at this time. The was very quickly designed for my needs. Feel free to submit a PR with new features ;)

License

This library is licensed under the MIT Licence, and sponsored by iGLOO.

Package Sidebar

Install

npm i material-ui-color-picker

Weekly Downloads

4,201

Version

3.5.1

License

MIT

Unpacked Size

16.4 kB

Total Files

12

Last publish

Collaborators

  • loicmahieu