adiGuba

Results 23 issues of adiGuba

### Describe the problem Sometimes it can be useful to validate or convert the value of a prop before using it. Some examples : * convert a string to another...

### Describe the bug When using a fromStore() with a store that hold an object, the update of the object's fields is not reported in the store, which breaks reactivity....

### Describe the bug Not sure if it should be reported here, but I found two smalls bugs on the Playground of the omnisite. * There is a message in...

Fix #13687 The `console.log()` generated by `@debug` receive the proxied state, which causes two bugs : * It displays the proxy instead of the object himself. * And so this...

### Describe the problem The module "svelte/elements" provides the definitions of HTML attributes that can be used to declare props to spread in a component that "wrap" a HTML element....

types / typescript

A possible solution for #9976 It's simple to show/hide a node with the `hidden` attribute (of `style:display`), but there no way to use the svelte's transition with that, and the...

### Describe the problem Svelte 5 remains compatible with Svelte 4 components by allowing the use of old syntaxes (slots, on:event directive). That's fine because it's will not break existing...

### Describe the problem Hello, I think that the current implementation of the `style:` directive can be slightly improved with small changes in client mode. In the current implementation :...

Some little improvement to `set_style()` in order to avoid the check to `style.getPropertyValue()` See issue https://github.com/sveltejs/svelte/issues/13791 Demo here : [REPL](https://adiguba-svelte-5-test-git-improvesetstyle-adigubas-projects.vercel.app/#H4sIAAAAAAAACpVTy27bMBD8FYJtkQZNLSdoLiwtoP_QW9UDJa5kohRFkCvHhqB_Lx9yhDh2gV4kLXdmdpa7mmirNHjKfk3UiB4ooz-spQ8UTzYG_gAaIcR-GF0TT7hvnLJYVqZCDUiaQQ-O7MhHjwLh813nAMzd_fdz3oHHNT15PGlgFW0Hg19fQHV7ZKQetKzovJISamVVNFVh5EPbthWNOF6sPgzXogZdcm-FKXMFEgAx4srYEUlsZ1dRhCNWlNTKSHYQeoRdNjSTouRFVrmQi_43_6m5ct4KJ6-9UCbdHpfqkDtltWj-dG4YjQyCDsJlkGmz2USdOWEr_LlXnkRGeAXEA_lC1jJJrgjZfwrXwVxUzs6u6EZA0L0ieVt2SqOZb6vmA-5BQ4NvrikzF0aADBbVEG9c8mL5vsxFhzeTafUusmFkqfASXmmOF-eJxOmkdF7uODQyZZ5U3mpxYqTVcExrOq-YksS1OENflMQ9I8_Qv8flxVmAvXCdMox8s0eyTc_HhfMq8rjdflpVos93hjqn5ELqhA2UJ_tqMDSf2gn_bz9I1SqQlKEbYf49_wXLyh0R-gMAAA==) ### Before submitting the PR, please make sure you do...

Simple implementation for reactive actions on the `use:action` directive. * `action` can be a reactive value, and will be created/destroyed accordingly. * `action` can be null/undefined, and will be ignored....