Oleksandr Sh.

Results 24 comments of Oleksandr Sh.

He is not working on the project anymore. Providing a simple reproduction in codesandbox or stackblitz would help you to get the answer much much faster from the maintainers or...

All the test cases can be covered through composition: ```ts const Test = styled('div', bla) const Link = styled('a', Test) const Button = styled('button', Link) ``` So there is no...

https://stitches.dev/docs/tokens#naming-convention

Hey @hadihallak 👋 Any chance `stitches` usage with Shadow DOM can be included in the next [Milestone](https://github.com/stitchesjs/stitches/milestone/1)? The issue I'm looking to solve is the ability to pass the `root`...

> Did you get the chance to test this PR in your setup? have you had any issues? No, I haven't tried this solution specifically, but this one: https://github.com/stitchesjs/stitches/issues/628#issuecomment-1074327282 worked...

Just in case it can give some inspiration, I'm not proud of this (I hoped it's temporary), but basically I provide an "env variable" when building my extension with the...

> Any updates if this will be implemented in future iterations of v1? It was mentioned on Discord that it will be one of the next features to work on...

> I was tempted to make all thrown errors 500s but I think that assumes too much? Worth checking with other devs and frameworks (maybe even including outside of JS...

Trying to take a step back. ```ts const myAction = action(code => { try { const result = await logic(code); return result; // or json(result); } catch(error) { return json({...

The difference is in `submission`. Right now `error` is only set when > the function throws on the server or the fetch request fails which means that developer has to...