2023-10-06 21:07:59 +00:00
|
|
|
#![allow(dead_code, unused_variables)]
|
2023-10-06 20:52:05 +00:00
|
|
|
|
2023-10-06 21:07:59 +00:00
|
|
|
mod components;
|
|
|
|
mod element_ext;
|
|
|
|
mod elements;
|
|
|
|
pub mod prelude;
|
2023-10-23 09:34:35 +00:00
|
|
|
pub mod settings;
|
2023-10-06 21:47:10 +00:00
|
|
|
mod static_data;
|
2023-10-06 21:07:59 +00:00
|
|
|
mod theme;
|
2023-10-06 20:52:05 +00:00
|
|
|
|
2023-10-06 21:07:59 +00:00
|
|
|
pub use components::*;
|
|
|
|
pub use element_ext::*;
|
|
|
|
pub use elements::*;
|
|
|
|
pub use prelude::*;
|
2023-10-06 21:47:10 +00:00
|
|
|
pub use static_data::*;
|
2023-10-06 21:07:59 +00:00
|
|
|
|
2023-10-19 16:58:17 +00:00
|
|
|
// This needs to be fully qualified with `crate::` otherwise we get a panic
|
|
|
|
// at:
|
2023-10-21 14:01:47 +00:00
|
|
|
// thread '<unnamed>' panicked at crates/gpui2/src/platform/mac/platform.rs:66:81:
|
2023-10-19 16:58:17 +00:00
|
|
|
// called `Option::unwrap()` on a `None` value
|
|
|
|
//
|
|
|
|
// AFAICT this is something to do with conflicting names between crates and modules that
|
|
|
|
// interfaces with declaring the `ClassDecl`.
|
|
|
|
pub use crate::settings::*;
|
2023-10-06 21:07:59 +00:00
|
|
|
pub use crate::theme::*;
|
2023-10-10 19:30:16 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "stories")]
|
|
|
|
mod story;
|
|
|
|
#[cfg(feature = "stories")]
|
|
|
|
pub use story::*;
|