@kushki/ng-suka
Version:
<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>
14 lines (13 loc) • 377 B
TypeScript
import { OnInit, EventEmitter } from '@angular/core';
export declare class ColorPicker implements OnInit {
baseClass: boolean;
color: string;
colorChange: EventEmitter<any>;
showInput: boolean;
hue: string;
globalHue: string;
ngOnInit(): void;
onColorChange(event: any): void;
onColorSelect(event: any): void;
private emitColorChange;
}