merge stable version #2

Merged
doryan merged 97 commits from experimental into main 2024-08-28 18:54:00 +03:00
Showing only changes of commit 2e1f4b6a12 - Show all commits

View File

@ -45,7 +45,6 @@ pub struct Input<I> {
component: Box, component: Box,
input: I, input: I,
input_label: Label, input_label: Label,
input_frame: Frame,
} }
pub struct InputBuilder { pub struct InputBuilder {
@ -74,8 +73,6 @@ impl<I> Product<InputBuilder, Box> for Input<I> {
impl<I> Input<I> { impl<I> Input<I> {
} }
pub fn get_frame(&self) -> &Frame {
&self.input_frame
pub fn get_input(&self) -> &I { pub fn get_input(&self) -> &I {
&self.input &self.input
} }