Bring UI crate up to date
This commit is contained in:
parent
66358f2900
commit
f54634aeb2
24 changed files with 1090 additions and 167 deletions
|
@ -1,3 +1,11 @@
|
|||
#[derive(Default, PartialEq)]
|
||||
pub enum OrderMethod {
|
||||
#[default]
|
||||
Ascending,
|
||||
Descending,
|
||||
MostRecent,
|
||||
}
|
||||
|
||||
#[derive(Default, PartialEq)]
|
||||
pub enum ButtonVariant {
|
||||
#[default]
|
||||
|
@ -19,6 +27,13 @@ pub enum Shape {
|
|||
RoundedRectangle,
|
||||
}
|
||||
|
||||
#[derive(Default, PartialEq, Clone, Copy)]
|
||||
pub enum DisclosureControlVisibility {
|
||||
#[default]
|
||||
OnHover,
|
||||
Always,
|
||||
}
|
||||
|
||||
#[derive(Default, PartialEq, Clone, Copy)]
|
||||
pub enum InteractionState {
|
||||
#[default]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue