mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Refactor #4274 - For AutoComplete
This commit is contained in:
parent
c263620978
commit
dfb30bc1ac
2 changed files with 14 additions and 4 deletions
16
components/lib/autocomplete/AutoComplete.d.ts
vendored
16
components/lib/autocomplete/AutoComplete.d.ts
vendored
|
@ -603,14 +603,24 @@ export interface AutoCompleteSlots {
|
|||
*/
|
||||
class: string;
|
||||
/**
|
||||
* Remove token icon function.
|
||||
* Index of the token.
|
||||
*/
|
||||
onClick: void;
|
||||
index: number;
|
||||
/**
|
||||
* Remove token icon function.
|
||||
* @param {Event} event - Browser event
|
||||
*/
|
||||
onClick(event: Event, index: number): void;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom loading icon template.
|
||||
*/
|
||||
loadingicon(): VNode[];
|
||||
loadingicon(scope: {
|
||||
/**
|
||||
* Style class of the loading icon.
|
||||
*/
|
||||
class: string;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue