Geoff Rich

Results 120 comments of Geoff Rich

https://github.com/sveltejs/site-kit/pull/170 fixes a bug with this that would be good to address before merging

This issue is not caused by when styles are applied, but differences in the whitespace present in the SSR markup and the client-side rendered elements. The SSR markup inserts a...

The code is in the svelte repo: https://github.com/sveltejs/svelte/blob/master/documentation/examples/05-bindings/12-component-bindings/Keypad.svelte

Super excited for this - at first glance, this should fix a lot of the issues I had to work around in my SvelteKit + view transition demos. In particular,...

Started trying this out with some of my demos and it's definitely a big improvement - I'm not seeing the race conditions I used to see, so preloading on hover...

You can put `data-sveltekit-reload` on a wrapper element (e.g. in a layout) and it will apply to all links in that element. ``` All the links in here will behave...

Assuming this is the same issue, @gtm-nayan gave a workaround here: https://github.com/sveltejs/svelte/issues/9288#issuecomment-1748034687

@jasongitmail you can do that on the SvelteKit dedicated search page (which exists for progressive enhancement purposes): https://kit.svelte.dev/search?q=load

If it's not possible to detect this at the framework level, could we potentially provide (or document) a custom `enhance` that does not reset the form? Then people who want...

I think we need this bit from the default enhance action, but applied to the GET form submit listener: https://github.com/sveltejs/kit/blob/30e1130ef84e56a77be5cb1136d5c53edef6e5f9/packages/kit/src/runtime/app/forms.js#L74-L77