
This PR fixes tooltips not showing on `IconButton`s. The "fix" here is the same hack that we used to fix `on_click` handlers for `ListItem`s, where we introduce another layer of wrapping with an element with an ID set. This PR also adds a story for the `IconButton` so this issue can be tested/observed in isolation. Release Notes: - N/A
21 lines
343 B
Rust
21 lines
343 B
Rust
mod avatar;
|
|
mod button;
|
|
mod checkbox;
|
|
mod context_menu;
|
|
mod icon;
|
|
mod icon_button;
|
|
mod input;
|
|
mod keybinding;
|
|
mod label;
|
|
mod list_item;
|
|
|
|
pub use avatar::*;
|
|
pub use button::*;
|
|
pub use checkbox::*;
|
|
pub use context_menu::*;
|
|
pub use icon::*;
|
|
pub use icon_button::*;
|
|
pub use input::*;
|
|
pub use keybinding::*;
|
|
pub use label::*;
|
|
pub use list_item::*;
|