JL710

Results 28 issues of JL710

Just a small addition for the `TextInput` widget. The `TextInput` has currently no `*_maybe` methods like `Button` has the `on_press_maybe`. This PR adds them. Added Methods: - `on_input_maybe` - `on_submit_maybe`...

The `Component` trait needs the `lazy` feature. Since this is not clear in the documentation this PR adds a note to the documentation of `Component` that the `lazy` trait is...

### Is there an existing issue for this? - [X] I have searched the existing issues. ### Is this issue related to iced? - [X] My hardware is compatible and...

bug

- [x] I have searched the [issues](https://github.com/nvarner/typst-lsp/issues) of this repo and believe that this is not a duplicate. - [x] I have searched the [discussions](https://github.com/nvarner/typst-lsp/discussions) and believe that my question...

enhancement

This PR adds a `From` implemenation for Element. This works: ```rs widget::button("") ``` This did not work: ```rs widget::button(String::new()) ``` You needed this: ```rs widget::button(widget::text(String::new())) ``` This PR makes it...

This PR closes #283. The only mentionable to this PR is that BufferRef::Borrowed is converted to BufferRef::Owned when cloning. ```rs impl { fn clone(&self) -> Self { match self {...

Is there a reason why [`Editor`](https://docs.rs/cosmic-text/latest/cosmic_text/struct.Editor.html) is not Clone? I think it would be usefull to some applications to have the ability to clone a Editor. My app for example...

This PR Removes an out of date comment from the custom_widget example.

The docs.rs page is missing a lot of information that can be found in the README.md in this repository. For example, you won't find any description for the features on...

enhancement
help wanted

### Is your issue REALLY a bug? - [X] My issue is indeed a bug! - [X] I am not crazy! I will not fill out this form just to...

bug