2.0.0 • Published 4 years ago
@kimaya/ngx-color-picker v2.0.0
@kimaya/ngx-color-picker
How Install
npm install @kimaya/ngx-color-picker
Add style to your application
@import "~@kimaya/ngx-color-picker/scss/lib/ngx-color-picker/ngx-color-picker-theme";
and include ngx-color-picker-theme
@include ngx-color-picker-theme();
Dependency
You need to install dependencies manually
"@angular/cdk": "~8.2.3",
"@angular/material": "^8.2.3"l
Please include either "BrowserAnimationsModule" or "NoopAnimationsModule" in your appModule
Plug into your application
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxColorPickerModule } from '@kimaya/ngx-color-picker';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxColorPickerModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
How to use
<ngx-color-picker [(selectedColor)]="selectedColor"></ngx-color-picker>
For more Information
you can contact on kumarganesh088@gmail.com