mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
parent
78d4e84c0b
commit
9bc6ca49ca
3 changed files with 64 additions and 14 deletions
15
components/lib/autocomplete/AutoComplete.d.ts
vendored
15
components/lib/autocomplete/AutoComplete.d.ts
vendored
|
@ -206,7 +206,6 @@ export interface AutoCompleteProps {
|
|||
panelProps?: HTMLAttributes | undefined;
|
||||
/**
|
||||
* Icon to display in the dropdown.
|
||||
* @defaultValue pi pi-chevron-down
|
||||
*/
|
||||
dropdownIcon?: string | undefined;
|
||||
/**
|
||||
|
@ -215,12 +214,10 @@ export interface AutoCompleteProps {
|
|||
dropdownClass?: string | object | undefined;
|
||||
/**
|
||||
* Icon to display in loading state.
|
||||
* @defaultValue pi pi-spinner pi-spin
|
||||
*/
|
||||
loadingIcon?: string | undefined;
|
||||
/**
|
||||
* Icon to display in chip remove action.
|
||||
* @defaultValue pi pi-times-circle
|
||||
*/
|
||||
removeTokenIcon?: string | undefined;
|
||||
/**
|
||||
|
@ -406,6 +403,18 @@ export interface AutoCompleteSlots {
|
|||
* Custom empty template when there is no data to display.
|
||||
*/
|
||||
empty(): VNode[];
|
||||
/**
|
||||
* Custom dropdown icon template.
|
||||
*/
|
||||
dropdownicon(): VNode[];
|
||||
/**
|
||||
* Custom remove token icon template in multiple mode.
|
||||
*/
|
||||
removetokenicon(): VNode[];
|
||||
/**
|
||||
* Custom loading icon template.
|
||||
*/
|
||||
loadingicon(): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue