//! Overlays: floating UI that paints above the page.
//!
//! - [`Modal`] is a controlled `RenderOnce` overlay — render it (as a child of
//! a full-size root) only while `opened`, and pass an `on_close` handler.
//! - [`Tooltip`] is a small view plus the [`tooltip`] helper for gpui's
//! built-in `.tooltip(...)` attachment.
//! - [`Menu`] is a stateful entity: a trigger plus a deferred action list.
//! - [`MenuBar`] is a stateful entity: a row of dropdown menus for an app menu.
//! - [`ContextMenu`] is a stateful entity: a right-click menu at the pointer.
//! - [`HoverCard`] is a stateful entity: a `Popover` that opens on hover.
//! - [`LoadingOverlay`] is a stateless dimming layer for a `.relative()` parent.
//! - [`ConfirmModal`] is a controlled confirm/cancel dialog built on `Modal`.
pub use ConfirmModal;
pub use ContextMenu;
pub use ;
pub use HoverCard;
pub use LoadingOverlay;
pub use Menu;
pub use ;
pub use Modal;
pub use ;
pub use Spotlight;
pub use ;