Devon Govett
Devon Govett
This is intentional to offset the size of the scrollbar and prevent the page from shifting when scrolling is disabled. I'm not sure there is a way to avoid the...
It should only be the components you used in your app not all of RAC, though yeah some bundlers won't code split it if you only use Button on one...
https://github.com/parcel-bundler/parcel/pull/9489 should allow us to improve this a lot. Will split each component into a separate file in the dist dir allowing `sideEffects: false` in package.json to be effective, and...
Pasting what I said [on Twitter](https://twitter.com/devongovett/status/1728209902974468301) for posterity: > It’s very difficult if not impossible to correctly compose components with built in behaviors like this, as I’m sure you know....
Current plan for router props is to have a single object that gets passed through to the underlying router, rather than individual props. That way it isn't specific to one...
I like that idea! Do you know if next.js has a similar API to resolve URLs? I couldn't find one in their docs.
FYI I implemented the `useHref` idea as well as `routerOptions` in https://github.com/adobe/react-spectrum/pull/5864. This should solve most of the issues with links here. The preload case is a remaining problem, until...
yeah it shouldn't break because disabledKeys is still there, but just won't support the new feature until migrating. what about isSelected?
you mean isSelected on individual items? I think that's not possible because multiple items can be selected at once, so onSelectionChange really needs to be on the root level. Makes...
I just realized we might need to make this conditional to only mobile keyboards though? If the keyboard has both , and . it could be ambiguous.