Paul Grant
Paul Grant
I just wanted to add an additional strange behavior to the list on the original post. If you look at https://react-spectrum.adobe.com/react-aria/useColorField.html#controlled and type in a 5-character string and then blur,...
I want to add two more things to this discussion: 1. It may be worth it to add a prop indicating whether or not transparent values are acceptable 2. Where...
Thanks for looking into it. I appreciate the time and effort you put into it. Dec. 10, 2022 10:12:22 a.m. Clayton Nummer ***@***.***>: > it seems like the Brightness value...
Yes. I'm definitely on v1.15.0. We use Codespaces, so the latest version of all the extensions we use get installed on each new Codespace we create.
Hi @fabiospampinato - were you able to reproduce this issue?
Is it possible that your tests failed and your test never got to the `voiceOver.stop()` command? I put my `voiceOver.stop()` in an `afterEach` function to make sure that it closes...
If I were to contribute a solution to this, I'd consider one of two solutions: 1. An optional argument to the `start` method: `start(errorFormat: 'throw' | 'log' | 'none')` that...
Agreed. You're right. We were using `@guidepup/playwright`. Sorry for the ticket in the wrong spot. For some context, we were doing a hackathon at work, and for our project, we...
Something I would want/need to see here is somehow including some metadata... Using CTI, I often have `color-background-inverse` (like a dark background on a light theme) and then `color-foreground-inverse` (the...
Here's the syntax that worked for me: ```js const Parent = styled.div` container-name: parent; container-type: inline-size; ` const Child = styled.div` background-color: blue; @container parent (width > 1000px) { &...