7nik

Results 15 issues of 7nik

Mostly it's PR to fix https://github.com/sveltejs/svelte/issues/3323 I think the issue should be fixed here because this library generates archives with content that doesn't match the one passed to the input....

Theoretically, fixing this test case should close #2441

help wanted
typescript

`$effect()` runs after the component gets mounted and rendered, but `pageTitle` isn't reactive. Thus, the page won't re-render with the new value. For this logic, it's better to use `$effert.pre()`...

### Describe the bug Quick switching state show -> hide -> show causes the element to play the out-animation and then stay, I suppose, with `opacity: 0` despite being in...

transition/animation

### Describe the bug After each code change, new styles are added to the document, and previous ones aren't removed. In the case of global styles, it may cause fuzzy...

### Describe the problem While messing with REPLs, I often want to "reload the page" / reset the state. However, the only way to do this currently is to add...

### Describe the bug Svelte 5 REPL supports TS (though not types), but if you add a *.ts file, it gets renamed into a *.ts.svelte. It is especially annoying when...

### Describe the bug ~The error of the non-closed tag isn't emitted for the content of the implicit `children` snippet.~ Only block (component root or any `{#*}` block) root tags...

bug
awaiting submitter

### Describe the bug ```svelte { [...array] } ``` is compiled as static text when the variable isn't marked as reactive. Though I doubt people use it in the prod...

### Describe the bug The following styles ```css div#app::after { content: "after"; @media screen { background: red; } } ``` in production mode gets compiled into ``` div#app:after{content:"after"}@media screen{{background:red}} ```...

bug: upstream
feat: css
has workaround
p2-edge-case