adiGuba

Results 109 comments of adiGuba

I added a test under runtime-runes/samples/await-pending-destroy Not sur if it's the good place. I tried to make it as simple as possible...

In fact I had simply used a simple `{myarray}` for debug, and I didn't understand why it wasn't working! This is very confusing because it will work if we add...

> it won't scale for the case where you don't have a `failed` snippet, but you do instead use the `onerror` to update state instead to indicate an error Actually...

Hi, I made a small example here to show the error with the current version : https://github.com/adiguba/boundary-demo => The three page that have error on `` will show an HTTP...

What's about a way to capture all `svelte:boundary` errors during SSR/prerender ? => `render()` could return an array containing the errors that occurred during page generation. So SvelteKit can still...

I think the default no-arg children should be the default value, since this is probably the most common case. But we can improve the types to make it easier to...

> You should also add `__styles` to the `element_prototype` in `operations.js` Done !

This solution is great from the caller perspective (typically to pass to a bind:value). But if I use the `{proxied.value}` multiple time on my template, the conversion will be repeated...

I didn't succeed with getter/setter with a reactive value (it update the value too frequently). So I use two $effect.pre() : ```js let { date : dateAsString = $bindable() }...