UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

24 lines (21 loc) 599 B
interface ColorPickerProps { modelValue?: any; defaultColor?: any; inline?: boolean; format?: string; disabled?: boolean; tabindex?: string; autoZIndex?: boolean; baseZIndex?: number; ariaLabelledBy?: string; panelClass?: string; appendTo?: string; } declare class ColorPicker { $props: ColorPickerProps; $emit(eventName: 'update:modelValue', value: any): this; $emit(eventName: 'change', event: {originalEvent: Event, value: any}): this; $emit(eventName: 'show'): this; $emit(eventName: 'hide'): this; } export default ColorPicker;