An open API service indexing awesome lists of open source software.

https://github.com/jaspero/ng-color-picker

A simple color picker module with ReactiveForms capability, for Angular
https://github.com/jaspero/ng-color-picker

angular colorpicker

Last synced: about 2 months ago
JSON representation

A simple color picker module with ReactiveForms capability, for Angular

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/Jaspero/ng-color-picker.svg?branch=master)](https://travis-ci.org/jaspero/ng-color-picker)
[![NPM Version](https://img.shields.io/npm/v/@jaspero/ng-color-picker.svg)](https://www.npmjs.com/package/@jaspero/ng-color-picker)
# NG Color Picker
A simple color picker module with ReactiveForms capability, for Angular.

```
npm install --save @jaspero/ng-color-picker
```

## Setup
Import `JasperoColorPickerModule` in your `@NgModule`:

```ts
@NgModule({
imports: [
JasperoColorPickerModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}
```