Ryan Carniato
Ryan Carniato
Yeah... you are right. Every place we check is probably looking for `-` character. Is it safe to assume all elements with an `"is"` attribute are custom elements too I...
Ok.. well hmm.. that will work as heuristic with the exception of if someone tries to spread it on. Then we wouldn't know at compiler time. I guess that's what...
Dynamic is pure runtime so it can't have special treatment. That being said it doesn't clone so I think it is fine. Unless is elements need to be created differently...
It's tricky to fix. I'd kinda rather see the Astro adapter drop the optimization in the short term rather than try to introduce new alternative functionality into Solid. I'm doing...
Oh I guess I should mention there is a no scripts option in our render function that I think could be turned on in the no hydration case like yours...
It will work but it would break SolidStart so I can't make this a patch release. It changes the SSR behavior of libraries depending on ``. They will have to...
This is a great list that are worth reviewing. Thank you.
> I just tested a Map in a class that is wrapped with createMutable, changes to the map are not reactive, this may also be the same for a Set...
Directionally I'm not opposed. I've considered adding symbol or having helpers to do the wrapping. Technically you can add the PROXY symbol to your class and define your own wrapper...
This is a decent benchmark on some list operations. https://github.com/krausest/js-framework-benchmark. Gives you an idea. The VDOM vs non-VDOM thing is probably mostly for size, but it doesn't have to be....