Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@usulpro/color-picker

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@usulpro/color-picker

React Material Color Picker Component

  • 1.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19K
increased by2.27%
Maintainers
1
Weekly downloads
 
Created
Source

GitHub version npm version @airbnb

React Material Color Picker Component

Material Design is a design language introduced by Google. If you want to find color inspiration for a specific design style based on material color palette, you can use this component as a development tool. You may find it useful while creating Material apps in combination with such libraries as Material-UI

Appearance

screen1

screen2

screen3

Install

$ npm i react-material-color-picker --save

Usage

import React from 'react';
import MaterialColorPicker from 'react-material-color-picker';

// in your app
<MaterialColorPicker 
    initColor="rgba(0, 0, 0, 0.26)"
    onSubmit={actionLog()}
    onReset={actionLog()}
    style={{width: 400, backgroundColor: '#c7c7c7'}}
    submitLabel='Apply'
    resetLabel='Undo'
/>

Demo

Live demo

API

Props and Callbacks

initColor should be color string from Goggle material color palette

style - inline style of the root div node

submitLabel and resetLabel are titles of the appropriate buttons

onSubmit and onReset are callbacks wich will be invoked by clicking the appropriate buttons. It will recieve an argument with the following structure:

event = {
        type, // 'submit' || 'reset', 
        timeStamp, // nativeEvent.timeStamp,
        target: {
            value, // currient color string,
            nativeEvent, // nativeEvent,
            name: 'MaterialColorPicker',
            node, // ref to root div element,
            ...this.props,
        }
};

smArtLight

@UsulPro @sm-react

Keywords

FAQs

Package last updated on 09 Jan 2020

Did you know?

Socket

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc