-
Notifications
You must be signed in to change notification settings - Fork 930
New issue
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
[Select] Add non modal mode in popper
position
#2253
base: main
Are you sure you want to change the base?
Conversation
disableOutsidePointerEvents={context.open} | ||
disableOutsideScroll | ||
{...modalityProps} | ||
onFocusOutside={(event) => event.preventDefault()} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have seen a problem on mobile in non-modal mode where the Trigger
gets focus after being opened. Maybe I should put this line onFocusOutside={(event) => event.preventDefault()}
in both modal and non-modal mode?
I noticed that this same issue also occurs in the dropdown menu, I believe it is because of react 17? In the documentation it doesn't seem to have any issues 🤔
I think this is an issue #2241
👋 @benoitgrelard! Any chance this PR could be looked into? It potentially fixes a rather serious performance issue – see #1634 (comment) and below for details. I use Radix Select in a project via https://ui.shadcn.com/docs/components/select. When a page has heavy markup like a large table, clicking on select makes the app freeze even on a pretty recent MacBookPro with M1. The lag is especially visible in Safari, but it’s also noticeable on Chrome and FF (especially with x4 throttling). |
@joaom00 Olá! This is just a ping 🙂 is this PR/subject still alive? |
@frykten Yes definitely. Unfortunately, I think the team didn't have time to review the PR... |
Came here from #2241 Thanks for the hint on Looking forward for this issue to be handled by the library itself. |
beep boop bump, this is a nice contribution – any chance it could get a review soon @benoitgrelard @andy-hook? currently resorting to using |
Any chance for this to be merged? |
I would also prefer it if this fix was checked and worked/merged. Is there anyway we can help to push it over the line? |
I am facing the same issue. Any updates on when this will be merged? |
Hi all! This is just a ping, any updates on a possible merge? |
Any.. |
Will be appreciated if the PR is merged |
Any updates on when this might be merged? |
This one is on my radar, though I'd prefer to resolve it without additional wrapper components. One of our goals over the coming months is to reduce React tree bloat to improve the React dev tools experience. |
Description
As suggested here #2004 (comment), this PR adds non-modal mode only for the
popper
position since that mode foritem-aligned
position needs to be thought a little more.Closes #1927