Fixed #4304 - Listbox: Typing filtericon slot does not expose class
parent
378765c71d
commit
bc936a50dd
|
@ -435,8 +435,14 @@ export interface ListboxSlots {
|
||||||
}): VNode[];
|
}): VNode[];
|
||||||
/**
|
/**
|
||||||
* Custom filter icon template.
|
* 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[];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue