Devon Govett
Devon Govett
Assuming this one can be closed since it's very outdated.
I think the `allowsTabNavigation` option works as you are describing? You can use tab to move to focusable elements within a cell (and eventually out of the whole collection), and...
One problem with this approach is that it assumes that all unparsed properties are valid and supported by all browser targets. Unparsed properties may be things other than values containing...
Unfortunately I think this is a breaking change. People would need to update their types in a lot of places, as shown in the examples here. Also, input values are...
Given its popularity, it would be great if Shadcn UI could encourage the use of libraries that have good accessibility and internationalization support. React Aria's number field has been carefully...
hmm yeah, you can do that with the hooks - `useNumberField` comes from the `@react-aria/numberfield` package. For React Aria Components we decided not to do individual packages because it was...
Thanks, this is a bug. Currently `color-mix` is only parsed if we can resolve it to a value at build time, and `currentColor` prevents that. We should preserve the original...
I opened #586, which is @jdm's branch plus a submodule update for xml5lib-tests. Looks like everything is passing.
Related to #4148. I think this should be possible using a custom Resolver plugin. Something like this: ```js const {Resolver} = require('@parcel/plugin'); module.exports = new Resolver({ async resolve({specifier}) { //...
ehh not sure it's worth the extra validation. we could just add it here https://github.com/parcel-bundler/lightningcss/blob/master/src/selector.rs#L259