We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dropdown "defaultValue" typings are incorrect Because of this there is no way to preselect multiple string or number values
Open Dropdown.d.ts, find defaultValue definition
defaultValue
defaultValue?: string | number | boolean | number[] | string[] | boolean[]
defaultValue?: string | number | boolean | number | string | boolean[]
v. 1.1.1
The text was updated successfully, but these errors were encountered:
Thanks for reporting, but this is a duplicate #4017, the fix was not released yet.
Sorry, something went wrong.
*sigh Thanks, will look into closed bugs next time
No branches or pull requests
Bug Report
Dropdown "defaultValue" typings are incorrect
Because of this there is no way to preselect multiple string or number values
Steps
Open Dropdown.d.ts, find
defaultValue
definitionExpected Result
defaultValue?: string | number | boolean | number[] | string[] | boolean[]
Actual Result
defaultValue?: string | number | boolean | number | string | boolean[]
Version
v. 1.1.1
The text was updated successfully, but these errors were encountered: