primevue-mirror/src/components/listbox/Listbox.d.ts
Cagatay Civici e27dfcf54e Doc update
2020-09-21 15:27:08 +03:00

25 lines
No EOL
725 B
TypeScript
Executable file

import Vue, { VNode } from 'vue';
export declare class Listbox extends Vue {
modelValue?: any;
options?: any[];
optionLabel?: string;
optionValue?: any;
optionDisabled?: boolean;
listStyle?: string;
disabled?: boolean;
dataKey?: string;
multiple?: boolean;
metaKeySelection?: boolean;
filter?: boolean;
filterPlaceholder?: string;
filterLocale?: string;
ariaLabelledBy?: string;
emptyFilterMessage?: string;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'change', e: { originalEvent: Event, value: any }): this;
$emit(eventName: 'filter', e: { originalEvent: Event, value: string }): this;
$slots: {
option: VNode[];
}
}