gpui-component 0.6.0

GPUI Component: the styled component library of GPUI Kit, with 60+ desktop UI components for GPUI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub use gpui_base::IndexPath;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn legacy_export_is_the_base_type() {
        fn accepts_base(_: gpui_base::IndexPath) {}

        let legacy: crate::IndexPath = IndexPath::new(2).section(1).column(3);
        accepts_base(legacy);
    }
}