@kovalenko/material-color-picker
Version:
Material color picker
19 lines (18 loc) • 837 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { BaseInputComponent } from '@kovalenko/base-components';
import { FormControl } from '@angular/forms';
import * as i0 from "@angular/core";
export declare class ColorPickerComponent extends BaseInputComponent<string> implements OnInit, OnDestroy {
control: FormControl<any>;
set disabled(value: boolean);
get disabled(): boolean;
set ngModel(v: string);
get ngModel(): string;
private subs;
constructor();
ngOnDestroy(): void;
onContainerClick(event: MouseEvent): void;
onInput(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "ngc-color-picker", never, { "disabled": "disabled"; }, {}, never, never, false, never>;
}