npm install npm run build Running the example npm install npm run start Installing and usage npm install ngx-color-picker --save Load the module for your app: import{ColorPickerModule}from'ngx-color-picker';@NgModule({...imports:[...ColorPickerModule]}) ...
Running the examplenpm install npm run startInstalling and usagenpm install ngx-color-picker --saveImport the library into your project:import { ColorPickerComponent, ColorPickerDirective } from 'ngx-color-picker'; @NgModule({ // ... imports: [ // ... ColorPickerComponent, ColorPicker...
Running the example npm install npm run start Installing and usage npm install ngx-color-picker --save Load the module for your app: import { ColorPickerModule } from 'ngx-color-picker'; @NgModule({ ... imports: [ ... ColorPickerModule ] }) Use it in your HTML template: [colorPi...