Devon Govett
Devon Govett
These gestures directly conflict though. Long press _is_ the gesture to select text on iOS. So if you're doing a different action on long press, I'm not sure it makes...
I think the "AMPM" issue is specific to Android - doesn't happen on my iPhone. I think what happens is that both the placeholder and the actual value are getting...
The strings need to be compiled with @internationalized/string-compiler at build time before they are passed into the formatter. Sorry there's not much documentation on these packages at the moment.
Yes, these would need to be compiled. We moved from `useMessageFormatter` to `useLocalizedStringFormatter` in order to avoid including the compiler at runtime to reduce bundle size.
Will need to do some debugging in the collection implementation to determine what's going on. In the meantime, can you move the Suspense boundary outside the Table instead?
The problem with pinning is that it's really easy to get duplicate copies of packages. If an app depends on one version of RSP, and it uses libraries with shared...
I think all of these are related, and should be considered together. Trapping focus can kind of be implemented in user space, but not fully. It's not possible to support...
> I mean - component and everything below. Right, that's defined by rendering a `FocusScope`. And yes, `focusNext` cycles within the current scope, not outside.
@AlmeroSteyn thanks for your insightful feedback! Some responses below. > Setting `tabIndex="-1"` on everything that falls outside the focus trap will potentially create partial keyboard traps for keyboard users as...
> I would still not want React to decide for me when and where to go set focus, but rather have React give me the tools so I can easily...