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
commit
4b2a656c1c
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue