docs(multi-select): add missing removeCallback prop on chip slot

pull/7122/head
Jakub Michálek 2025-01-21 07:41:17 +01:00
parent f481158d36
commit f4f7c18881
1 changed files with 6 additions and 0 deletions

View File

@ -628,6 +628,12 @@ export interface MultiSelectSlots {
* A value in the selection
*/
value: any;
/**
* Chip icon function.
* @param {Event} event - Browser event
* @param {any} item - Item
*/
removeCallback: (event: Event, item: any) => void;
}): VNode[];
/**
* Custom header template.