You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Either:
1. The documentation should be corrected if null is not actually a valid value.
2. The TypeScript definition should be updated to include null if it is indeed a valid option.
Could you confirm the intended behavior so that we can align the documentation and typings accordingly?
The text was updated successfully, but these errors were encountered:
Bug description
The documentation states that
null
is a valid value for thecontrolInput
setting:However, the TypeScript typings specify that controlInput can only be of type
string |HTMLInputElement
, with no mention of null: https://github.com/orchidjs/tom-select/blob/master/src/types/settings.ts#L62Expected behavior
Either:
1. The documentation should be corrected if
null
is not actually a valid value.2. The TypeScript definition should be updated to include
null
if it is indeed a valid option.Could you confirm the intended behavior so that we can align the documentation and typings accordingly?
The text was updated successfully, but these errors were encountered: