Add Disableable trait (#3439)

This PR adds a new `Disableable` trait to use for elements that are
capable of being disabled.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2023-11-29 13:01:26 -05:00 committed by GitHub
parent c23a610d52
commit 3e2c517dd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 27 additions and 16 deletions

View file

@ -14,6 +14,7 @@
mod clickable;
mod components;
mod disableable;
mod fixed;
pub mod prelude;
mod selectable;
@ -23,6 +24,7 @@ pub mod utils;
pub use clickable::*;
pub use components::*;
pub use disableable::*;
pub use fixed::*;
pub use prelude::*;
pub use selectable::*;