Merge pull request #7203 from wangziling/feature/fix-select-types

fix(select): fix the missing of the pass-though prop named `dropdownIcon`
pull/7210/head
Tuğçe Küçükoğlu 2025-02-06 12:29:08 +03:00 committed by GitHub
commit 4b2a656c1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -112,9 +112,13 @@ export interface SelectPassThroughOptions<T = any> {
*/
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>;
/**
* 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.
*/