Robert Smith
Robert Smith
I was concerned about this issue as well, but I think that in practice it isn't a problem. It is probably worth describing in the documentation how best to avoid...
I like that the format function works as a store, because it means I can change the language and everything updates reactively. I want to be able to limit the...
> Well, I wouldn't depend on it. It could be easily broken the more mature svelte becomes. If svelte changed the way that SSR worked so that the rendering step...
I was having the same problem, and adding this to config.xml fixed it: `` (I've only tested on my Android phone, so can't say for sure if it works as...
This issue also appears in Svelte 5. A minimal repro is: ``` {typeof window !== 'undefined'} {@html typeof window !== 'undefined'} ``` On page load, both divs will initially be...
I copied snippet 2 into the repl here, and made 1 small change to add the linear easing to the fly transition with `easing:linear`: https://svelte.dev/repl/59aa1a42f30c4bb39e38da77f0ab96d2?version=4.0.0 The keyframe animation and svelte...
I downloaded the repl code I linked to earlier, installed it locally, and now I can reproduce the issue every time (so, yes, this issue is not reproducible on the...
Checking again, I can see that for a fly transition with `duration:1000`: - if `opacity:0`, then largest contentful paint is 1.04 s - if `opacity:0.0001`, then largest contentful paint is...
> I think we should test this on a browser like Firefox, since I've tested this on Chrome and Edge which are basically the same since Edge uses chromium. If...
The strategy I've used for dealing with this problem, is to use store reactivity, instead of DSL reactivity, so that outroing child components continue to receive updates. Specifically, just put...