Devon Govett

Results 894 comments of Devon Govett

We discussed adding an `itemBehavior` prop today for a different use case, which would accept `'action' | 'selection' | 'both'` as options. * action: Item actions always take precedence. *...

Maybe we could add a `focusableRef` prop or something like that to DateInput? We're pretty consistent across all of our components that the forwarded `ref` always goes to the outer-most...

I think refs are considered an effect. It makes sense because DOM nodes are also not mounted, so there'd be nothing to attach the ref to.

Is `font` supposed to be inside `color`? Shouldn't it be the other way around?

Also if you can make your SelectItem component do the least amount of work possible that will help. ListboxItem renders children lazily, only when in view, but the item component...

btw, make sure you are testing in React production mode. Development mode is much much slower. In production mode I only started noticing a slowdown at 500,000 items. It seems...

You should verify that you don't have multiple versions installed in your lockfile. Otherwise we will need a reproduction of the issue.

`npm install react react-dom react-aria-components` succeeds for me with no errors. Please provide a reproduction.

Note that this was an accessibility issue before as well, just less visible. Previously we used `aria-hidden` instead of `inert` which would have hidden the element from screen readers. So...

Not really sure what other options we have if we cannot use inline `` elements, and we cannot use inline style attributes (due to performance - see #8086). We could...