Dominic Gannaway

Results 324 comments of Dominic Gannaway

This is a tricky one then. I viewed that as being fine. Svelte 5 has its own html output that differs from Svelte 4 and comments don’t affect layout. That...

> When multiple items change their position at the same time, crossfade can misbehave. Items can transition to nowhere and transition in from locations where no items can ever be....

@mheinzerling I'm not sure what more we can action in regard to this without more information or data.

You can always import the package imports as a namespace. This is something we've been advocating for folks who have this exact problem, for example with Lexical: ```js import *...

@roonie007 I know, I was the author of Lexical that also had the convention of using `$` prefixes on the APIs. However, like I said above, you're not removing the...

Closing this in favour of https://github.com/sveltejs/svelte/pull/12409.

What if we instead just keep mostly what we have today already, but instead of reading only the time value, we read the time value as part of a derived...

> > What if we instead just keep mostly what we have today already, but instead of reading only the time value, we read the time value as part of...

> > I mean it would create a separate derived signal and return that from doing `getSeconds` and `getMinutes`. Thus when you change the seconds, then if the minutes hasn't...

@FoHoOV It would but deriveds clean themselves up. However, I think you're also right in that we probably want to reduce the amount of deriveds being created.