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
Migrating Paper from Radix to Base UI, I expected that input contents would be selected when popups are opened:
Radix Popover:
Base UI Popover:
As another example, native dialogs do the same:
The text was updated successfully, but these errors were encountered:
Workaround for now can be to manually select it with a ref inside a rAF upon open (to avoid scroll page jump, once the popup is positioned):
requestAnimationFrame(() => { inputRef.current.select(); });
Sorry, something went wrong.
Working on this @vladmoroz. Thanks 🙏
michaldudak
No branches or pull requests
Migrating Paper from Radix to Base UI, I expected that input contents would be selected when popups are opened:
Radix Popover:
Screen.Recording.2025-03-02.at.17.46.30.mov
Base UI Popover:
Screen.Recording.2025-03-02.at.17.46.48.mov
As another example, native dialogs do the same:
Screen.Recording.2025-03-02.at.17.52.35.mov
The text was updated successfully, but these errors were encountered: