dm-de
dm-de
hashbang mode is broken it do not accept valid changes and return '*' route output context object: canonicalPath: "/#!/user/100" hash: "" page: Object { current: "//user/100", len: 2, _decodeURLComponents: true,...
### Describe the problem Sometimes, we need to use :global() styles to modify child components Otherwise, it would not work. ``` :global(.extra) { color: red; } ``` ### Describe the...
### Describe the bug Possible related to this: https://github.com/sveltejs/svelte/pull/10343 This adds new bug to Svelte 5 ### Reproduction Click on any button - and you get many errors See Item.svelte...
### Describe the problem 3 months ago, I posted this: https://www.reddit.com/r/sveltejs/comments/16qeg71/svelte_5_fixed_props_issue_you_may_not_aware_of_it/ I was happy about this > It looks like Svelte 5 fixed default props issue. I think most people...
### Describe the bug Svelte 5 can not play CSS animation, because wrong css is generated. generated: `svelte-1f68qn8-animation: 1s linear infinite animation;` but should be: `animation: 1s linear infinite svelte-1f68qn8-animation;`...
### Describe the problem First... Vue has this functionality - I miss in Svelte https://vuejs.org/api/sfc-css-features.html#css-modules https://github.com/vitejs/vite/discussions/7447#discussioncomment-4128874 Code like this in Svelte: ``` Hello .block { display: block; } ``` will...
### Describe the bug There is an error in $state, if $state is defined in `` and also used in ``. Instead of returning a correct value, an object is...
### Describe the bug I noticed that Vue and Solid, which also have modern reactivity, handle objects differently. Vue and Solid have reactive objects that are not recreated. This behavior...
### Describe the bug One transition inside other transition do not work correct - when {if} block is used. Similar code work with Svelte 4. ### Reproduction What should happen,...
### Describe the bug After setting an array, I use setContext inside $effect. This feels right - otherwise a warning come up. But my subcomponent do not get context. Array...