Fixed #4304 - Listbox: Typing filtericon slot does not expose class

pull/4314/head
Tuğçe Küçükoğlu 2023-08-21 17:02:16 +03:00
parent 378765c71d
commit bc936a50dd
1 changed files with 7 additions and 1 deletions

View File

@ -435,8 +435,14 @@ export interface ListboxSlots {
}): VNode[];
/**
* Custom filter icon template.
* @param {Object} scope - filter icon slot's params.
*/
filtericon(): VNode[];
filtericon(scope: {
/**
* Style class of the filter icon
*/
class: any;
}): VNode[];
}
/**