Devon Govett

Results 894 comments of Devon Govett

That commit was reverted in 81cd955 . At some point the spec changed to accept numbers or percentages for all components instead of one or the other. Unfortunately this is...

That's true. I guess Safari was the difference. 15 supported lab and 15.4 added support for oklab. In this case you aren't targeting any Safari browsers so it could probably...

See #8867 which implements support for this. It adds a CSS variable that gets set to a pixel equivalent of the `auto` width and height when the disclosure is opening...

Should be fixed by the above merged PR. Will be released soon.

`@parcel/watcher-darwin-arm64` does exist. So if it's not being installed then that's a problem with your package manager.

The current behavior matches how browsers serialize CSS numbers. See https://codepen.io/devongovett/pen/pvvyqKb This is defined in the specification: https://drafts.csswg.org/cssom/#serializing-css-values > A base-ten number using digits 0-9 (U+0030 to U+0039) in the...

I'm not seeing that in the [playground](https://lightningcss.dev/playground/index.html#%7B%22minify%22%3Afalse%2C%22customMedia%22%3Atrue%2C%22cssModules%22%3Afalse%2C%22analyzeDependencies%22%3Afalse%2C%22targets%22%3A%7B%22chrome%22%3A6225920%7D%2C%22include%22%3A0%2C%22exclude%22%3A0%2C%22source%22%3A%22%5Cn.foo%20%7B%5Cn%20%20border-bottom%3A%201px%20solid%20light-dark(%5Cn%20%20%20%20var(--wcom-c-outline-variant-light)%2C%5Cn%20%20%20%20var(--wcom-c-outline-variant-dark)%5Cn%20%20)%3B%5Cn%7D%5Cn%22%2C%22visitorEnabled%22%3Afalse%2C%22visitor%22%3A%22%7B%5Cn%20%20Color(color)%20%7B%5Cn%20%20%20%20if%20(color.type%20%3D%3D%3D%20'rgb')%20%7B%5Cn%20%20%20%20%20%20color.g%20%3D%200%3B%5Cn%20%20%20%20%20%20return%20color%3B%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%22%2C%22unusedSymbols%22%3A%5B%5D%2C%22version%22%3A%22local%22%7D). Or maybe I'm not understanding the issue.

This should already be possible with the `data-placement` attribute, or `placement` render prop. https://react-spectrum.adobe.com/react-aria/Popover.html#popover-2 ```css .react-aria-Popover { &[data-placement=top] { transform-origin: bottom; } } ```

This does not reproduce on my system (macOS 14.1). What OS are you using? Can you try running in a debugger (e.g. `lldb` or `gdb`) and report the backtrace where...