Merge pull request #7236 from mehdirande/type/autocomplete-chip-slot
Fix: Add removeCallback and index in Autocomplete chip slot definitionpull/7281/head
commit
105c581e4b
|
@ -582,6 +582,15 @@ export interface AutoCompleteSlots {
|
|||
* A value in the selection
|
||||
*/
|
||||
value: any;
|
||||
/**
|
||||
* Index of the token.
|
||||
*/
|
||||
index: number;
|
||||
/**
|
||||
* Remove token icon function.
|
||||
* @param {Event} event - Browser event
|
||||
*/
|
||||
removeCallback: (event: Event) => void;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom header template of panel.
|
||||
|
|
Loading…
Reference in New Issue