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
Yeah minLength is used internally because I tried to make component a drop in replacement.
The main issue is that underlying component does not have to be an input. Could be a textarea or anything else. And it does not support minLength attribute and will throw warning about it.
@nkbt Suggestion for what we do next? Should we consider this closed as a wontfix since the underlying component is unknown? Is there an approach for a PR potentially?
Is it by design that
minLength
doesn't pass through to<input>
?TypeScript: lib.dom.ts for
HTMLInputElement
HTML:
minlength
forHTMLInputElement
on MDNMy supposition is that in React
minLength
(react) ->minlength
(HTML)Sandbox: https://codesandbox.io/s/react-18-playground-react-debounce-input-case-8pln0b?file=/src/index.tsx
The text was updated successfully, but these errors were encountered: