Steven Beshensky
Steven Beshensky
Line 126 is your issue here. `if (overId in prev)` Essentially you're trying to use the in operator a bit wrong here. What this amounts to is `4 in [{id:...
I'm reasonably certain that I've run into this bug today with the launch of Safari 15.4. Safari and all iOS devices are unusable with an AlphaFilter in my use case....
Also experiencing this with an AlphaFilter between two graphics. I do hope that we can have antialiasing back soon.
This isn't an error with Signals exactly. The line of code `signal.value++` does not trigger the setter. Try updating that to be `signal.value += 1` and you'll see things work...
@XantreGodlike well that's quite strange. I went ahead and forked that repro as well. It looks like the only difference here is on the button render. ` (count.value += 1)}>count...
If you follow this guide to set up the new babel transform for Signals, you should be all set! https://github.com/preactjs/signals/tree/main/packages/react-transform We only had to deviate slightly. The name of the...