ui2.rs

 1//! # UI – Zed UI Primitives & Components
 2//!
 3//! This crate provides a set of UI primitives and components that are used to build all of the elements in Zed's UI.
 4//!
 5//! ## Work in Progress
 6//!
 7//! This crate is still a work in progress. The initial primitives and components are built for getting all the UI on the screen,
 8//! much of the state and functionality is mocked or hard codeded, and performance has not been a focus.
 9//!
10
11#![doc = include_str!("../docs/hello-world.md")]
12#![doc = include_str!("../docs/building-ui.md")]
13#![doc = include_str!("../docs/todo.md")]
14
15mod clickable;
16mod components;
17mod disableable;
18mod fixed;
19pub mod prelude;
20mod selectable;
21mod styled_ext;
22mod styles;
23pub mod utils;
24mod visible_on_hover;
25
26pub use clickable::*;
27pub use components::*;
28pub use disableable::*;
29pub use fixed::*;
30pub use prelude::*;
31pub use selectable::*;
32pub use styled_ext::*;
33pub use styles::*;
34pub use visible_on_hover::*;