adiGuba

Results 23 issues of adiGuba

Currently, Svelte transitions are processed when an element is added/removed from the DOM. In many cases this is undesirable (for example to show/hide a complex menu) More info on issue...

Fix for #7948 - The assignment of the variable "previous_tag" was incorrectly positioned and could cause race condition when used with transitions. - We need another variable to detect when...

Error in Svelte event dispatcher is inconsistant with the browser event handling. I think that Svelte should mimic the browser event handling : if an error occurs on an event-handler,...

Hello, I make a prototype that implement event forwarding via `on:*`, described in issue https://github.com/sveltejs/svelte/issues/2837 In order to work it require some rewrite of the way Svelte manager the event's...

fix #2659 Currently resetting an html form doesn't trigger input bindings. Example : [REPL](https://svelte-5-preview.vercel.app/#H4sIAAAAAAAACq1W226jMBD9FQtVolGbkssbNUjVqj-w27dSqQ441LuOQbapEiH-fccXAiFpq672BTM-M2fGx2ZMG2wZpyqIn9tAkB0N4uChroPbQB9qY6h3yjUFW1WNzM0MVrlktU4zkWlONXonvKEoQVdKE02vQ033fjKc3fdO-RvN_9BicNOyoQMsScGqEcdiOYotZdXUA_hs0FsULlbhyyTBevDaEq5GCXZUKVKOyswCUyeRlKC8EpoKjcxEFgwxinKa63HIYrHyDuCybUSuWSVQLZnQ1_sZas20izXqQaQZqi1g9w5iW3T9ICU53DFlR4COcZn2USExUBze7O84FaV-89EdorAoZEiMZ5IkodKQvAynHDdAEofoBk0Z3CCpbqRAr_iqNe5d-nzV7ruXV-vVgYfA0bDLAm8rubP7jZmoG7e6xCmYBWjDRBHbDU9aO3Qoct61pKkHnEjWmHU4MoiTEXOyoTw9Zba7uan2Pbs_PknrX0wG1DvhyFEcUx69XVJvTtIW7D3tNbtYgz2TUID5KowJr24tcA6WYLjK7OFMWutsq3JHebHsq8IbGf17olWvwEd5Vv8nz_qrPOuzPDjqJbSiW79ecmt8V_DRpp8IPa7LDsPuf0vnS_xTfc_4v6HvJf6prp7_wqFej7N-qbanc2pbYwbftiM6OffryS74pjb-Zt1U5xeHq9p0tXRhpPXvU2T1IbI-QaCLWO6hbmf3FTprUuGxL49r9P27S3HU4wOpB3tWb45oYdk1ERBrh_NGJqmierRtPx9_PT5lgVEeR33zE7hOf3AG2wM930agGBkQMYVyTqGmAm0apy00ZQQTSFRw91QF2zJaQDn9ARJY6QN3tVkK374LpmoOrR_uPFb4nm1e55ruANB0nle82QkVI9Loyj682-9GwfVymPvbLEZwaUntQcJZKeYMWNQpUJI6RstVvfetHx6g2XCb7IgsmYjRwsMgoS8cfgn6hQWxuc272-MfxBNV-rNfiPPYl-4vVhZa2YkIAAA=) This PR make 3 mains changes : * It add a *`__bind`* attribute on the prototype...

### Describe the problem As Svelte is a compiler, it would be nice to allow developper to enhance it by providing some hooks. This will allow to add some specific...

### Describe the bug When we used an `$state([])`, some basic function of Array have an incorrect behavior with object. It seems that all equality operations fail, as the object...

documentation

### Describe the bug If you only use one object in a node's template, the node's text/html is not updated correctly when the object's content changes Ex: ```svelte let object...

documentation

The promise callbacks used on `{#await}` can resolve after the block has been destroyed, which leads to other errors. See #13236 A simple solution : set the `input` to **null**...

I did a PR directly. I don't know if it would have been better to do an issuer before... But there just a very little thing that bothers me when...