-
Hi!
Thank you for creating this and this is what I wanted.
Do you have any plans to migrate this to Svelte5 using Runes?
-
**Description**
Currently I'm using superforms with Svelte 5 just fine. However, when I use $effect or some reactive code on a field input value, it will trigger on every other field updates. I guess…
-
### Describe the bug
In the docs, the only mention of snippets-slots interop is:
> In Svelte 4, content can be passed to components using slots. Svelte 5 replaces them with snippets which are mo…
-
## Issue
Svelte 5 のリリースと同時に公式のサイトが大幅に変更になりました。
svelte.jp も大きな修正が必要です。
[英語公式サイト](https://svelte.dev/)
-
When running `npm update` while using Svelte 5 I get the following error:
```
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: myap…
-
### Describe the bug
The table footer uses `bg-muted/50` with `text-primary-foreground` which is barely visible. (See here https://github.com/huntabyte/shadcn-svelte/blob/next/sites/docs/src/lib/re…
-
### Describe the bug
In Svelte 4 you can do something like this to force a DOM update based on state:
```js
value = null;
value = valueToSet;
```
In Svelte 5, this does not force the updat…
-
### Describe the bug
Hello, is this not possible in Svelte? Seems like the compiler is having a meltdown
```ts
import _Button from './Button.svelte';
import ButtonLink from './ButtonLink.svelte'…
-
### 🚀 Feature Request
I was trying to run some component tests with a Svelte 5 development version. However I see that Svelte 5 has removed the svelte/internal package that is used in the experimenta…
-
### Describe the problem
Since [DOM event forwarding is removed](https://svelte-5-preview.vercel.app/docs/event-handlers#bubbling-events), event handlers must be typed in props:
> Instead of doing…