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

31 lines (26 loc) 794 B
import { VNode } from 'vue'; interface OrderListProps { modelValue?: any[]; dataKey?: string; selection?: any[]; metaKeySelection?: boolean; listStyle?: any; responsive?: boolean; breakpoint?: string; } interface OrderListItemSlotInterface { item: any; index: number; } declare class OrderList { $props: OrderListProps; $emit(eventName: 'update:modelValue', value: any[]): this; $emit(eventName: 'update:selection', value: any[]): this; $emit(eventName: 'reorder', e: { originalEvent: Event, value: any[]; direction: string}): this; $emit(eventName: 'selection-change', e: { originalEvent: Event, value: any[]}): this; $slots: { header: VNode[]; item: OrderListItemSlotInterface; } } export default OrderList;