Angular Material Color Picker
npm install @hrefcl/color-picker


An Angular Material Color Picker.
@see DEMO stackblitz
Choose the version corresponding to your Angular version:
| Angular | @hrefcl/color-picker |
| ------- | ------------------------------- |
| 16 | 16.x+ |
| 15 | 15.x+ OR 9.x+ for legacy import |
| 14 | 8.x+ |
| 13 | 7.x+ |
| 12 | 6.x+ |
| 11 | 5.x+ |
| 10 | 4.x+ |
| 9 | 2.x+ |
| 8 | 2.x+ |
| 7 | 2.x+ |
```
npm install --save @hrefcl/color-picker
`
import { MAT_COLOR_FORMATS, NgxMatColorPickerModule, NGX_MAT_COLOR_FORMATS } from '@hrefcl/color-picker';
@NgModule({
...
imports: [
...
NgxMatColorPickerModule
],
providers: [
{ provide: MAT_COLOR_FORMATS, useValue: NGX_MAT_COLOR_FORMATS }
],
...
})
export class AppModule { }
`
@see
src/app/demo-colorpicker/demo-colorpicker.module.ts
``
#### List of @Input
| @Input | Type | Default value | Description |
| ------------ | ------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| disabled | boolean | null | If true, the picker is readonly and can't be modified |
| touchUi | boolean | false | Whether the calendar UI is in touch mode. In touch mode the calendar opens in a dialog rather than a popup and elements have more padding to allow for bigger touch targets. |
- @see @angular/material
Using a pre-built theme
- Add the Material Design icon font to your index.html
```
MIT