Matei Trandafir
Matei Trandafir
### Describe the bug Sorry for the poor title, but I don't have anything better. I've come this very weird bug during development where importing a simple plain object from...
Important: I have two different changes in the same PR as I want to use the version generated by codesandbox, but when ready to mege this can be fixed. **What**:...
### Problem description Currently, it is impossible to test hover states with JavaScript. One common solution for this is to use a special class for hovered elements instead of the...
### Describe the bug In TypeScript, it is common to have variables and types with the same name. Svelte 5 native TypeScript support prohibits this, breaking existing TypeScript code. ###...
### Describe the bug I was testing updating my projecte to Svelte 5, and it seems like it believes that `$$Events` is a variable, but it's actually a type. Probably...
### Describe the bug It seems like `svelte-ignore` comments are not working since I upgraded to Svelte 5 - `svelte-check` and my IDE are spewing out errors/warnings where there were...
### Describe the bug Existing project that worked well in Svelte 4, breaks in Svelte 5. ### Reproduction [REPL](https://svelte-5-preview.vercel.app/#H4sIAAAAAAAACo2QTW6EMAyFr2KlG0ZCw54_qQforrvSBSVGigpJlJhRUZS7N0CAzmgWzSay_fnZfo71YkDL8g_HZDsiy9mr1ixlNOslsDccCENs1WS6JVPazghNdSMhPDFqZQgcKPmmJkngoTdqhCZ2NuyOew-drd6Ra7bF15Pd6AEJeEstVOD8mUIuSJlip-LIJLlAVe_88l0CUmbHno10L984r6WoVsZFvoTk-SYLWUBdFsDAhINHxUUvkLOczIQ-PfzZWv9vEf6spz85oFPS0uFcBQkOOKKk9R63MavCtuBiRnFmDdJk5F9ueRwtGTUHTx4Kp1BxX_DpGUd7_IN_JRc3mCzmcdeawpQyC9n6mVef_hfV8TLzVwIAAA==), [thanks](#issuecomment-2093669969) @7nik! ### Logs ```shell Uncaught (in promise) Svelte error: effect_update_depth_exceeded...
### Describe the problem I would say that, undoubtedly, the biggest (and only?) advantage React has over Svelte, is jsx. Just open any js/ts file and write: ```jsx const myFunc...
### Describe the problem In Svelte 5, it is easier than ever to type props and forward them to an element: ```svelte type Props = Record & { x?: number...
According to the [documentation](https://storybook.js.org/docs/api/doc-block-description#writing-descriptions), to set the description of a component you should use a JSDoc comment above the `meta` variable or above the component. The first variant does not...