John
John
This is a good idea, and opens an interesting question. Currently we use a mix of theming: most of the CSS stuff uses actual media queries to determine the effective...
No clue, but somehow I can no longer reproduce this - it seems fixed, but I didn't change anything.
Even when I was able to produce this bug, I was unable to identify any reason for the issue beyond the final visual result, despite digging through the DOM and...
Okay, it is not fixed. Just happened again. Notably this has only been seen in the dev version so far. When I started up the dev version, it was working...
Same thing just happened, this time all I had changed was some inline CSS in the svelte `` block of the parent component. My current theory is that this bug...
@brandonbloom yes - it is still happening, and yes so far only in dev. It's kinda annoying but not really because I barely need to use the Monaco editor for...
Am I understanding this right? Before: ```ts z.discriminatedUnion("kind", [ z.object({ kind: z.literal("number"), amount: z.number() }), z.object({ kind: z.literal("boolean"), value: z.boolean() }) ]) ``` After: ```ts z.union([ z.object({ kind: z.literal("number"), amount:...
Hey @ecosky, I've created a fork of the project at [react-shaders](https://github.com/rysanacom/react-shaders) written in Typescript. However, it seems like the bug you ran into later in your post is actually #42...
@Daniel2000815 I recently ran into the same need, as I wanted to be able to grab the errors/warnings and display them in a user facing UI. After talking to @mvilledieu,...