Devon Govett
Devon Govett
We discussed this today. We were originally thinking that `routerOptions` was meant for things that affected the behavior of the navigation rather than only the URL itself (e.g. `replace` and...
Yeah, that's what I meant. It should be possible, but I didn't quite figure it out. You'd basically need to generate a union of objects like `{to: '/foo', params: {}}...
It's not a limitation we wanted, just a technical trade off required by internal implementation details. React actually makes it extremely difficult to build components that are aware of their...
> Are there any updates on this? Yes! In our last React Aria release, we introduced a new collection implementation that supports custom wrappers, available in the `@react-aria/collections` package. Here's...
One thing to consider is that the signature here is different than all of our other components, where we pass a value not an event.
Fixed issues from testing: * focus ring no longer appears around submenus in S2 * VoiceOver iOS cursor moves into dialogs properly Investigated Firefox issue with focus not moving into...
Say you mouse down on a menu trigger, then drag over a menu item and release. That will currently trigger onAction. What other events should be emitted? * onPressUp –...
Ah interesting. I figured it was for performance. I guess your workaround would need to be added to the _old_ versions of the React types (e.g. 18, 17, 16, etc),...
Yeah... maybe ok if it was an internal type but still not ideal that projects would need to upgrade the 16/17/18 types in order to fix compatibility with libraries built...
> Why can't you upgrade all your callsites of RefObject to use RefObject right now Yeah that's what we've done. The problem occurs when passing a ref typed as `RefObject`...