From 020d7f9cc36cfd4db91482f27cad08c3fcd24f8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AD=90=E5=87=8C?= Date: Thu, 6 Feb 2025 10:48:03 +0800 Subject: [PATCH] fix(select): fix the missing of the pass-though prop named `dropdownIcon` --- packages/primevue/src/select/Select.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/primevue/src/select/Select.d.ts b/packages/primevue/src/select/Select.d.ts index 7eb709cb5..54be8c305 100755 --- a/packages/primevue/src/select/Select.d.ts +++ b/packages/primevue/src/select/Select.d.ts @@ -112,9 +112,13 @@ export interface SelectPassThroughOptions { */ clearIcon?: SelectPassThroughOptionType; /** - * Used to pass attributes to the dropdown' DOM element. + * Used to pass attributes to the dropdown's DOM element. */ dropdown?: SelectPassThroughOptionType; + /** + * Used to pass attributes to the dropdown icon's DOM element. + */ + dropdownIcon?: SelectPassThroughOptionType; /** * Used to pass attributes to the loading icon's DOM element. */