Yam

Results 45 comments of Yam

Hello, We have the exact same problem on a SvelteKit project with Svelte 5. I have no idea what is causing this, disabling the cache and so on does nothing....

Same for me, on the latest version of the app I have the issue with FUTO keyboard and HeliBoard. I can confirm Gboard works fine, which sucks, because I normally...

Preventing validation on re-renders is pretty straight-forward : keep the `validatedFields` array empty. This is the trick I am using right now to prevent this behavior : ```php protected function...

Very short on time to contribute, but here's how I get around this nowadays : ```php #[AsLiveComponent] class MyComponent { use ComponentToolsTrait; use ComponentWithFormTrait; use DefaultActionTrait; #[PreReRender] public function preReRender():...

This is what the root HTML for the component looks like on page load (tried my best to format it well) : ```twig ```

@smnandre Thank you ! I'll try to experiment a bit more with the `connect` event. But shouldn't the `render:started` and `render:finished` events be triggered if my component is lazy loaded...

I think it makes sense to keep the same logic as a traditional render. For my use case, since I don't want to show anything before the screen width is...

Concerning the whole `await` thing, I think there's definitely something wrong here. The TypeScript definitions indicate that a `Promise` is returned from each of the component's methods, which implies that...

Hi @jasonlyu123, thanks for clarifying things. I suppose since it's a limitation, this can be closed and will (hopefully) be fixed somewhere in the future.