Fixed #1836 - For Dropdown
parent
9e8e0b4cf4
commit
6bdec40817
|
@ -1,103 +1,362 @@
|
||||||
import { VNode } from 'vue';
|
import { VNode } from 'vue';
|
||||||
import VirtualScrollerProps from '../virtualscroller';
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||||
|
import { VirtualScrollerProps, VirtualScrollerItemOptions } from '../virtualscroller';
|
||||||
|
|
||||||
type DropdownOptionLabelType = string | ((data: any) => string) | undefined;
|
type DropdownOptionLabelType = string | ((data: any) => string) | undefined;
|
||||||
|
|
||||||
type DropdownOptionValueType = string | ((data: any) => any) | undefined;
|
type DropdownOptionValueType = string | ((data: any) => any) | undefined;
|
||||||
|
|
||||||
type DropdownOptionDisabledType = string | ((data: any) => boolean) | undefined;
|
type DropdownOptionDisabledType = string | ((data: any) => boolean) | undefined;
|
||||||
|
|
||||||
type DropdownOptionChildrenType = string | ((data: any) => any[]) | undefined;
|
type DropdownOptionChildrenType = string | ((data: any) => any[]) | undefined;
|
||||||
|
|
||||||
interface DropdownProps {
|
type DropdownFilterMatchModeType = 'contains' | 'startsWith' | 'endsWith';
|
||||||
|
|
||||||
|
type DropdownAppendToType = 'body' | 'self' | string | undefined;
|
||||||
|
|
||||||
|
export interface DropdownChangeEvent {
|
||||||
|
/**
|
||||||
|
* Browser event.
|
||||||
|
*/
|
||||||
|
originalEvent: Event;
|
||||||
|
/**
|
||||||
|
* Selected option value
|
||||||
|
*/
|
||||||
|
value: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DropdownFilterEvent {
|
||||||
|
/**
|
||||||
|
* Browser event.
|
||||||
|
*/
|
||||||
|
originalEvent: Event;
|
||||||
|
/**
|
||||||
|
* Filter value
|
||||||
|
*/
|
||||||
|
value: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DropdownProps {
|
||||||
|
/**
|
||||||
|
* Value of the component.
|
||||||
|
*/
|
||||||
modelValue?: any;
|
modelValue?: any;
|
||||||
|
/**
|
||||||
|
* An array of selectitems to display as the available options.
|
||||||
|
*/
|
||||||
options?: any[];
|
options?: any[];
|
||||||
|
/**
|
||||||
|
* Property name or getter function to use as the label of an option.
|
||||||
|
* @see DropdownOptionLabelType
|
||||||
|
*/
|
||||||
optionLabel?: DropdownOptionLabelType;
|
optionLabel?: DropdownOptionLabelType;
|
||||||
|
/**
|
||||||
|
* Property name or getter function to use as the value of an option, defaults to the option itself when not defined.
|
||||||
|
* @see DropdownOptionValueType
|
||||||
|
*/
|
||||||
optionValue?: DropdownOptionValueType;
|
optionValue?: DropdownOptionValueType;
|
||||||
|
/**
|
||||||
|
* Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.
|
||||||
|
* @see DropdownOptionDisabledType
|
||||||
|
*/
|
||||||
optionDisabled?: DropdownOptionDisabledType;
|
optionDisabled?: DropdownOptionDisabledType;
|
||||||
|
/**
|
||||||
|
* Property name or getter function to use as the label of an option group.
|
||||||
|
* @see DropdownOptionLabelType
|
||||||
|
*/
|
||||||
optionGroupLabel?: DropdownOptionLabelType;
|
optionGroupLabel?: DropdownOptionLabelType;
|
||||||
|
/**
|
||||||
|
* Property name or getter function that refers to the children options of option group.
|
||||||
|
* @see DropdownOptionChildrenType
|
||||||
|
*/
|
||||||
optionGroupChildren?: DropdownOptionChildrenType;
|
optionGroupChildren?: DropdownOptionChildrenType;
|
||||||
scrollHeight?: string;
|
/**
|
||||||
filter?: boolean;
|
* Height of the viewport, a scrollbar is defined if height of list exceeds this value.
|
||||||
filterPlaceholder?: string;
|
* Default value is '200px'.
|
||||||
filterLocale?: string;
|
*/
|
||||||
filterMatchMode?: string;
|
scrollHeight?: string | undefined;
|
||||||
filterFields?: string[];
|
/**
|
||||||
editable?: boolean;
|
* When specified, displays a filter input at header.
|
||||||
placeholder?: string;
|
*/
|
||||||
disabled?: boolean;
|
filter?: boolean | undefined;
|
||||||
dataKey?: string;
|
/**
|
||||||
showClear?: boolean;
|
* Placeholder text to show when filter input is empty.
|
||||||
tabindex?: string;
|
*/
|
||||||
inputId?: string;
|
filterPlaceholder?: string | undefined;
|
||||||
ariaLabelledBy?: string;
|
/**
|
||||||
appendTo?: string;
|
* Locale to use in filtering. The default locale is the host environment's current locale.
|
||||||
emptyFilterMessage?: string;
|
*/
|
||||||
emptyMessage?: string;
|
filterLocale?: string | undefined;
|
||||||
panelClass?: string;
|
/**
|
||||||
loading?: boolean;
|
* Defines the filtering algorithm to use when searching the options.
|
||||||
loadingIcon?: string;
|
* @see DropdownFilterMatchModeType
|
||||||
|
* Default value is 'contains'.
|
||||||
|
*/
|
||||||
|
filterMatchMode?: DropdownFilterMatchModeType;
|
||||||
|
/**
|
||||||
|
* Fields used when filtering the options, defaults to optionLabel.
|
||||||
|
*/
|
||||||
|
filterFields?: string[] | undefined;
|
||||||
|
/**
|
||||||
|
* When present, custom value instead of predefined options can be entered using the editable input field.
|
||||||
|
*/
|
||||||
|
editable?: boolean | undefined;
|
||||||
|
/**
|
||||||
|
* Default text to display when no option is selected.
|
||||||
|
*/
|
||||||
|
placeholder?: string | undefined;
|
||||||
|
/**
|
||||||
|
* When present, it specifies that the component should be disabled.
|
||||||
|
*/
|
||||||
|
disabled?: boolean | undefined;
|
||||||
|
/**
|
||||||
|
* A property to uniquely identify an option.
|
||||||
|
*/
|
||||||
|
dataKey?: string | undefined;
|
||||||
|
/**
|
||||||
|
* When enabled, a clear icon is displayed to clear the value.
|
||||||
|
*/
|
||||||
|
showClear?: boolean | undefined;
|
||||||
|
/**
|
||||||
|
* Index of the element in tabbing order.
|
||||||
|
*/
|
||||||
|
tabindex?: number | string | undefined;
|
||||||
|
/**
|
||||||
|
* Identifier of the underlying input element.
|
||||||
|
*/
|
||||||
|
inputId?: string | undefined;
|
||||||
|
/**
|
||||||
|
* Identifier of the underlying input element.
|
||||||
|
*/
|
||||||
|
ariaLabelledBy?: string | undefined;
|
||||||
|
/**
|
||||||
|
* A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.
|
||||||
|
* @see DropdownAppendToType
|
||||||
|
* Default value is 'body'.
|
||||||
|
*/
|
||||||
|
appendTo?: DropdownAppendToType;
|
||||||
|
/**
|
||||||
|
* Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration.
|
||||||
|
* Default value is 'No results found'.
|
||||||
|
*/
|
||||||
|
emptyFilterMessage?: string | undefined;
|
||||||
|
/**
|
||||||
|
* Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.
|
||||||
|
* Default value is 'No results found'.
|
||||||
|
*/
|
||||||
|
emptyMessage?: string | undefined;
|
||||||
|
/**
|
||||||
|
* Style class of the overlay panel.
|
||||||
|
*/
|
||||||
|
panelClass?: string | undefined;
|
||||||
|
/**
|
||||||
|
* Whether the dropdown is in loading state.
|
||||||
|
*/
|
||||||
|
loading?: boolean | undefined;
|
||||||
|
/**
|
||||||
|
* Icon to display in loading state.
|
||||||
|
* Default value is 'pi pi-spinner pi-spin'.
|
||||||
|
*/
|
||||||
|
loadingIcon?: string | undefined;
|
||||||
|
/**
|
||||||
|
* Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.
|
||||||
|
* @see VirtualScroller.VirtualScrollerProps
|
||||||
|
*/
|
||||||
virtualScrollerOptions?: VirtualScrollerProps;
|
virtualScrollerOptions?: VirtualScrollerProps;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DropdownValueSlotInterface {
|
export interface DropdownSlots {
|
||||||
value: any;
|
/**
|
||||||
placeholder: string;
|
* Custom value template.
|
||||||
|
* @param {Object} scope - value slot's params.
|
||||||
|
*/
|
||||||
|
value: (scope: {
|
||||||
|
/**
|
||||||
|
* Value of the component
|
||||||
|
*/
|
||||||
|
value: any;
|
||||||
|
/**
|
||||||
|
* Placeholder prop value
|
||||||
|
*/
|
||||||
|
placeholder: string;
|
||||||
|
}) => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom header template of panel.
|
||||||
|
* @param {Object} scope - header slot's params.
|
||||||
|
*/
|
||||||
|
header: (scope: {
|
||||||
|
/**
|
||||||
|
* Value of the component
|
||||||
|
*/
|
||||||
|
value: any;
|
||||||
|
/**
|
||||||
|
* Displayed options
|
||||||
|
*/
|
||||||
|
options: any[];
|
||||||
|
}) => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom footer template of panel.
|
||||||
|
* @param {Object} scope - footer slot's params.
|
||||||
|
*/
|
||||||
|
footer: (scope: {
|
||||||
|
/**
|
||||||
|
* Value of the component
|
||||||
|
*/
|
||||||
|
value: any;
|
||||||
|
/**
|
||||||
|
* Displayed options
|
||||||
|
*/
|
||||||
|
options: any[];
|
||||||
|
}) => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom option template.
|
||||||
|
* @param {Object} scope - option slot's params.
|
||||||
|
*/
|
||||||
|
option: (scope: {
|
||||||
|
/**
|
||||||
|
* Option instance
|
||||||
|
*/
|
||||||
|
option: any;
|
||||||
|
/**
|
||||||
|
* Index of the option
|
||||||
|
*/
|
||||||
|
index: number;
|
||||||
|
}) => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom option group template.
|
||||||
|
* @param {Object} scope - option group slot's params.
|
||||||
|
*/
|
||||||
|
optiongroup: (scope: {
|
||||||
|
/**
|
||||||
|
* Option instance
|
||||||
|
*/
|
||||||
|
option: any;
|
||||||
|
/**
|
||||||
|
* Index of the option
|
||||||
|
*/
|
||||||
|
index: number;
|
||||||
|
}) => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom empty filter template.
|
||||||
|
*/
|
||||||
|
emptyfilter: () => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom empty template.
|
||||||
|
*/
|
||||||
|
empty: () => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom content template.
|
||||||
|
* @param {Object} scope - content slot's params.
|
||||||
|
*/
|
||||||
|
content: (scope: {
|
||||||
|
/**
|
||||||
|
* An array of objects to display for virtualscroller
|
||||||
|
*/
|
||||||
|
items: any;
|
||||||
|
/**
|
||||||
|
* Style class of the component
|
||||||
|
*/
|
||||||
|
styleClass: string;
|
||||||
|
/**
|
||||||
|
* Referance of the content
|
||||||
|
* @param {HTMLElement} el - Element of 'ref' property
|
||||||
|
*/
|
||||||
|
contentRef(el: any): void;
|
||||||
|
/**
|
||||||
|
* Options of the items
|
||||||
|
* @param {number} index - Rendered index
|
||||||
|
* @return {@link VirtualScroller.VirtualScrollerItemOptions}
|
||||||
|
*/
|
||||||
|
getItemOptions(index: number): VirtualScrollerItemOptions;
|
||||||
|
}) => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom loader template.
|
||||||
|
* @param {Object} scope - loader slot's params.
|
||||||
|
*/
|
||||||
|
loader: (scope: {
|
||||||
|
/**
|
||||||
|
* Options of the loader items for virtualscroller
|
||||||
|
*/
|
||||||
|
options: any[];
|
||||||
|
}) => VNode[];
|
||||||
|
/**
|
||||||
|
* Custom indicator template.
|
||||||
|
*/
|
||||||
|
indicator: () => VNode[];
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DropdownHeaderSlotInterface {
|
export declare type DropdownEmits = {
|
||||||
value: any;
|
/**
|
||||||
options: any[];
|
* Emitted when the value changes.
|
||||||
|
* @param {*} value - New value.
|
||||||
|
*/
|
||||||
|
'update:modelValue': (value: any) => void;
|
||||||
|
/**
|
||||||
|
* Callback to invoke on value change.
|
||||||
|
* @param {DropdownChangeEvent} event - Custom change event.
|
||||||
|
*/
|
||||||
|
'change': (event: DropdownChangeEvent) => void;
|
||||||
|
/**
|
||||||
|
* Callback to invoke before the overlay is shown.
|
||||||
|
*/
|
||||||
|
'before-show': () => void;
|
||||||
|
/**
|
||||||
|
* Callback to invoke before the overlay is hidden.
|
||||||
|
*/
|
||||||
|
'before-hide': () => void;
|
||||||
|
/**
|
||||||
|
* Callback to invoke when the overlay is shown.
|
||||||
|
*/
|
||||||
|
'show': () => void;
|
||||||
|
/**
|
||||||
|
* Callback to invoke when the overlay is hidden.
|
||||||
|
*/
|
||||||
|
'hide': () => void;
|
||||||
|
/**
|
||||||
|
* Callback to invoke when the component receives focus.
|
||||||
|
* @param {Event} event - Browser event.
|
||||||
|
*/
|
||||||
|
'focus': (event: Event) => void;
|
||||||
|
/**
|
||||||
|
* Callback to invoke when the component loses focus.
|
||||||
|
* @param {Event} event - Browser event.
|
||||||
|
*/
|
||||||
|
'blur': () => void;
|
||||||
|
/**
|
||||||
|
* Callback to invoke on filter input.
|
||||||
|
* @param {DropdownFilterEvent} event - Custom filter event.
|
||||||
|
*/
|
||||||
|
'filter': (event: DropdownFilterEvent) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DropdownFooterSlotInterface {
|
declare class Dropdown extends ClassComponent<DropdownProps, DropdownSlots, DropdownEmits> {
|
||||||
value: any;
|
/**
|
||||||
options: any[];
|
* Shows the overlay.
|
||||||
|
*
|
||||||
|
* @memberof Dropdown
|
||||||
|
*/
|
||||||
|
show: () => void;
|
||||||
|
/**
|
||||||
|
* Hides the overlay.
|
||||||
|
*
|
||||||
|
* @memberof Dropdown
|
||||||
|
*/
|
||||||
|
hide: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DropdownOptionSlotInterface {
|
declare module '@vue/runtime-core' {
|
||||||
option: any;
|
interface GlobalComponents {
|
||||||
index: number;
|
Dropdown: GlobalComponentConstructor<Dropdown>
|
||||||
}
|
|
||||||
|
|
||||||
interface DropdownOptionGroupSlotInterface {
|
|
||||||
option: any;
|
|
||||||
index: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface DropdownContentInterface {
|
|
||||||
items: any;
|
|
||||||
styleClass: string;
|
|
||||||
contentRef: string;
|
|
||||||
getItemOptions: any;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface DropdownLoaderInterface {
|
|
||||||
options: any[];
|
|
||||||
}
|
|
||||||
|
|
||||||
declare class Dropdown {
|
|
||||||
$props: DropdownProps;
|
|
||||||
$emit(eventName: 'update:modelValue', value: any): this;
|
|
||||||
$emit(eventName: 'change', e: { originalEvent: Event, value: string }): this;
|
|
||||||
$emit(eventName: 'before-show'): this;
|
|
||||||
$emit(eventName: 'before-leave'): this;
|
|
||||||
$emit(eventName: 'show'): this;
|
|
||||||
$emit(eventName: 'hide'): this;
|
|
||||||
$emit(eventName: 'focus', e: Event): this;
|
|
||||||
$emit(eventName: 'blur', e: Event): this;
|
|
||||||
$emit(eventName: 'filter', e: { originalEvent: Event, value: string }): this;
|
|
||||||
show(): void;
|
|
||||||
hide(): void;
|
|
||||||
$slot: {
|
|
||||||
value: DropdownValueSlotInterface;
|
|
||||||
header: DropdownHeaderSlotInterface;
|
|
||||||
footer: DropdownFooterSlotInterface;
|
|
||||||
option: DropdownOptionSlotInterface;
|
|
||||||
optiongroup: DropdownOptionGroupSlotInterface;
|
|
||||||
emptyfilter: VNode[];
|
|
||||||
empty: VNode[];
|
|
||||||
content: DropdownContentInterface;
|
|
||||||
loader: DropdownLoaderInterface;
|
|
||||||
indicator: VNode[];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Dropdown is used to select an item from a list of options.
|
||||||
|
*
|
||||||
|
* Demos:
|
||||||
|
*
|
||||||
|
* - [Dropdown](https://www.primefaces.org/primevue/showcase/#/dropdown)
|
||||||
|
*
|
||||||
|
*/
|
||||||
export default Dropdown;
|
export default Dropdown;
|
||||||
|
|
Loading…
Reference in New Issue