7nik
7nik
> Is there anything specific that's missing or could be improved? Some CSS like `white-space: preserve` and `clear: both` may still break things. In some edge cases, the condition of...
I believe this entire issue will be classified as "won't fix" — margin collapse is a really complex topic (my incomplete solution is already bigger 5-6 times, and yesterday I...
Shouldn't [glob import](https://vitejs.dev/guide/features.html#glob-import) be used in such cases?
You still can export function-setters ```js export const setMyProp = (v) => { myProp = v; }; ``` or an object with all [writable] props ```js export const options1 =...
I see the warning. Firefox 126.0.1 (64-bit) for Majaro Linux. Though, for me, often the entire code doesn't render at the first opening 😆
https://github.com/sveltejs/svelte/issues/13076#issuecomment-2321939244 and the next comment. `fromStore` can be deeply reactive only by proxying the value, but it introduces reference issues, so it isn't a real solution.
I looked into this. I thought that the tsconfig should be just extended with referenced ones, but after reading the docs, I understood that `references` allows running TS on files...
> > This makes it impossible to create a custom radio component without re-implementing all of group behavior. > > You have to do that anyway unless the component contains...
@hermit99 `$inspect` is dev-only and doesn't exist in prod.
Looking at the REPL, I'm quite sure it is #15829 where the cause are deriveds created outside the reactive context + re-calculating them into the save value as previous one.