mahdi739

Results 10 issues of mahdi739

Code to reproduce: ```rust String::from_utf8(base64::engine::general_purpose::URL_SAFE_NO_PAD.decode("123".to_base64().unwrap() .as_ref()).unwrap()).unwrap(); ``` Expected output: ``` 123 ``` Actual output: ``` "123" ``` ----- It works correctly with the inner method `from_base64`, I assume it's because...

**Description** When I try to change the HydratedBloc.storage variable, It won't change, unless I close the previous storage. **Steps To Reproduce** 1. Create a hydrated bloc (cubit) 2. Build and...

bug
pkg:hydrated_bloc

In the `view!` macro, autocompletion within fallback functions provided by Rust-analyzer doesn't work properly. It could probably happen in every component that has a ViewFn property. https://github.com/leptos-rs/leptos/assets/86552031/3f9759b8-bcbd-4723-ab3e-45b6502c73e3

Hi. Thanks for your amazing app. I would like to request the addition of a flag to wrap all paths in quotes. This is already supported in the `ls` command,...

This PR replaces the use of `get()` with `try_get()` for retrieving signal values in these trait implementations: - `IntoProperty` - `IntoClass` - `IntoStyle` - `Render` - `RenderHtml` - `AttributeValue` -...

This PR implements these traits: - `IntoClass` - `IntoStyle` - `IntoProperty` - `Render` - `RenderHtml` - `AttributeValue` - `InnerHtml` for these store fields: - `Store` - `ArcStore` - `Field` -...

Thanks for this awesome tool! I’m working on a custom open command and want to put the filename in the middle of it. Is that doable right now? It’d be...

This PR adds the 'into', 'optional', 'as_ref', 'as_mut', and 'const' options for related macros. For example, this is now possible: ```rust #[derive(Clone, Default, Debug, Getters, Setters, WithSetters, MutGetters)] #[getset( get...

This PR introduces `into`, `optional`, `const`, and `skip` options for related macros. - `into` is only allowed for `set` and `set_with`. It enables setters to accept `std::convert::Into` for a field...

This PR introduces a new derive macro called `GetSet`, which includes all other derive macros. So instead of writing this: ```rust #[derive(Getters, CopyGetters, CloneGetters, MutGetters, Setters, WithSetters)] ``` You can...