
This PR mainlines the current state of new GPUI2-based UI from the `gpui2-ui` branch. Release Notes: - N/A --------- Co-authored-by: Nate Butler <iamnbutler@gmail.com> Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com> Co-authored-by: Marshall Bowers <1486634+maxdeviant@users.noreply.github.com> Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Co-authored-by: Nate <nate@zed.dev> Co-authored-by: Mikayla <mikayla@zed.dev>
20 lines
337 B
Rust
20 lines
337 B
Rust
#![allow(dead_code, unused_variables)]
|
|
|
|
mod children;
|
|
mod components;
|
|
mod element_ext;
|
|
mod elements;
|
|
pub mod prelude;
|
|
mod static_data;
|
|
mod theme;
|
|
mod tokens;
|
|
|
|
pub use children::*;
|
|
pub use components::*;
|
|
pub use element_ext::*;
|
|
pub use elements::*;
|
|
pub use prelude::*;
|
|
pub use static_data::*;
|
|
pub use tokens::*;
|
|
|
|
pub use crate::theme::*;
|