1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//! Rerun Time Panel
//!
//! This crate provides a panel that shows all entities in the store and allows control of time and
//! timelines, as well as all necessary ui elements that make it up.

mod data_density_graph;
mod paint_ticks;
mod recursive_chunks_per_timeline_subscriber;
mod streams_tree_data;
mod time_axis;
mod time_control_ui;
mod time_panel;
mod time_ranges_ui;
mod time_selection_ui;

pub use time_panel::TimePanel;

#[cfg(feature = "testing")]
pub use {streams_tree_data::StreamsTreeData, time_panel::TimePanelSource};

#[doc(hidden)]
pub mod __bench {
    pub use crate::data_density_graph::*;
    pub use crate::time_panel::TimePanelItem;
    pub use crate::time_ranges_ui::TimeRangesUi;
}