From bc936a50dd1a5a1e561d7184795309c1c5a5515c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Mon, 21 Aug 2023 17:02:16 +0300 Subject: [PATCH] Fixed #4304 - Listbox: Typing filtericon slot does not expose class --- components/lib/listbox/Listbox.d.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/components/lib/listbox/Listbox.d.ts b/components/lib/listbox/Listbox.d.ts index c57f1d686..d719dde04 100755 --- a/components/lib/listbox/Listbox.d.ts +++ b/components/lib/listbox/Listbox.d.ts @@ -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[]; } /**