wip: updating tests
Some checks are pending
/ build (push) Waiting to run

This commit is contained in:
🪞👃🪞 2025-06-12 21:17:08 +03:00
parent 21832453d9
commit 17506726cb
36 changed files with 280 additions and 271 deletions

View file

@ -60,7 +60,7 @@ impl<T, U> Field<T, U> {
value_align: None,
}
}
fn label <L> (
pub fn label <L> (
self,
label: Option<L>,
align: Option<Direction>,
@ -75,7 +75,7 @@ impl<T, U> Field<T, U> {
..self
}
}
fn value <V> (
pub fn value <V> (
self,
value: Option<V>,
align: Option<Direction>,

View file

@ -1,5 +1,5 @@
use crate::*;
render!(TuiOut: |self: u64, to|todo!());
render!(TuiOut: |self: u64, _to|todo!());
render!(TuiOut: |self: f64, to|todo!());
render!(TuiOut: |self: f64, _to|todo!());