FoHoOV
FoHoOV
Imagine we have a button that is shared across apps and web/mobile platforms , so we are gonna have a base in 'xplat/libs/features/base/button' and two other files in 'xplat/web/features/button' and...
### Describe the bug The `@render` tag fails to render `children` based on its placement (inside an `if block` or not). This bug manifests under very specific conditions. [A repository...
Fixes #11329. Currently repl is using [direct eval](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval#direct_and_indirect_eval) to run the compiled output which results in accessing the `local` variables where the eval is called with the compiled output of...
### Describe the bug since the `eval` function is called directly it can access local variables. Another thing is that it can access the global variables intruduced by the script...
### Describe the bug This [reproduction](https://svelte-5-preview.vercel.app/#H4sIAAAAAAAACo2STWvDMAyG_4oRPWQQVvZxStpBLzvukByrHkyigKGxja3GlJD_Pkw6ujbJuoORLel9Xsu4h0YdyUO270HLliCDnbWQAp9tPPiOjkyQgjcnV8XMxldOWf5AjaxaaxyLviQeRONMK_CiWDuSFatO8RkhR47dcVVGexa1ZCm2Yo_wgpAKhNcxvI3hHeGQTxU7X7JkElux8nGTxORTft_0JVl1VBJ_OtP-KDQFEZSuTXguiZNfuAeAQoZ5-VRXjCPPWT_0vNNeXW_sNPJKaW-p4gRhadz4iEu10flvSCHDAqKQYQEwN_sVMlf9H-jmLtNahGzWlx8JKbSmVo2iGjJ2JxoOwzeIcFOx4AIAAA==) sums it up basically. Calling the `Set` constructor from an array doesn't work. If it helps, it does work with production builds. ### Reproduction...
This is a completly new take on the reactivity package. After issues like #11222 and solutions like #11200, #11385 and #11287 we still have data duplication and a complex solution...
### Describe the bug With `ReactiveSet` everything is fine grained, for instance doing [this](https://svelte-5-preview.vercel.app/#H4sIAAAAAAAACpXQwYqDMBAG4FcZhj1EkBY9WhX2GTw2PWSTcRtWEzFjlyK--xIttMIedg8h5OefLzAztrajgMV5Rqd6wgLfhwFT5PsQH-FGHROmGPw06piUQY924Fo6ybYf_MgwN8QLtKPvQT4mjiMpzfZm-S7xJFm62NfeBQajWEEF5yzNL6dn_JighhgqcPQNDbGI5WRtxfNGbUuahUigqmFe43Xcd3To_KeQeFUBMonpq3e4qiCyZHOW9fo7lv-G5TuMpSuPz7248mNi9g68053VX9UskqpeP3h1DHXEJPJILMu60C2CPHqb8Q9PGbPDlDE7CVPsvbGtJYMFjxMtl-UH9KteLQACAAA=): ```svelte import {Set} from "svelte/reactivity"; const data = [1,2]; const reactiveSet = new Set(data); $effect(() =>...
Currently any changes to `ReactiveDate` class causes every read method to be notified, this should be making them more fine-grained. This PR also adds tests for Date class (none UI)....
### Describe the problem It would be awsome if we were able to ignore svelte-check warnings as we already can ignore a11y warnings (but for specific lines OR the whole...
### Describe the problem In svelte 4 when typing the `bind:this` we used this: ``` svelte import Component from "./Component.svelte"; let comp: Component | undefined = undefined; onMount(()=>{ comp.sayHi(); })...