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

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-21 17:02:16 +03:00
parent 378765c71d
commit bc936a50dd

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[];
}
/**