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)

28 lines (26 loc) 1.02 kB
import Vue, {VNode} from 'vue'; declare class PickList extends Vue { value?: any[][]; selection?: any[][]; dataKey?: string; metaKeySelection?: boolean; listStyle?: any; $emit(eventName: 'reorder', e: { originalEvent: Event, value: any[]; direction: string}): this; $emit(eventName: 'move-to-target', e: { originalEvent: Event, items: [] }): this; $emit(eventName: 'move-all-to-target', e: { originalEvent: Event, items: [] }): this; $emit(eventName: 'move-to-source', e: { originalEvent: Event, items: [] }): this; $emit(eventName: 'move-all-tou-source', e: { originalEvent: Event, items: [] }): this; $slots: { header: VNode[]; item: VNode[]; sourceheader: VNode[]; targetheader: VNode[]; sourcecontrolsstart: VNode[]; sourcecontrolsend: VNode[]; movecontrolsstart: VNode[]; movecontrolsend: VNode[]; targetcontrolsstart: VNode[]; targetcontrolsend: VNode[]; } } export default PickList;