fix(select): fix the missing of the pass-though prop named `dropdownIcon`

pull/7203/head
王子凌 2025-02-06 10:48:03 +08:00
parent 41bbf66544
commit 020d7f9cc3
1 changed files with 5 additions and 1 deletions

View File

@ -112,9 +112,13 @@ export interface SelectPassThroughOptions<T = any> {
*/ */
clearIcon?: SelectPassThroughOptionType<T>; clearIcon?: SelectPassThroughOptionType<T>;
/** /**
* Used to pass attributes to the dropdown' DOM element. * Used to pass attributes to the dropdown's DOM element.
*/ */
dropdown?: SelectPassThroughOptionType<T>; dropdown?: SelectPassThroughOptionType<T>;
/**
* Used to pass attributes to the dropdown icon's DOM element.
*/
dropdownIcon?: SelectPassThroughOptionType<T>;
/** /**
* Used to pass attributes to the loading icon's DOM element. * Used to pass attributes to the loading icon's DOM element.
*/ */