egui-cha 0.6.0

TEA (The Elm Architecture) framework for egui
Documentation
//! egui-cha: TEA (The Elm Architecture) framework for egui
//!
//! # Architecture
//!
//! ```text
//! ┌────────────────────────────────────────┐
//! │  Design System (egui-cha-ds)           │
//! │  Button, Input, Card, Modal...         │
//! ├────────────────────────────────────────┤
//! │  Component Layer                       │
//! │  Props / Emit / Hierarchical           │
//! ├────────────────────────────────────────┤
//! │  TEA Core                              │
//! │  Model, Msg, update(), view(), Cmd     │
//! └────────────────────────────────────────┘
//!//!           egui
//! ```

mod app;
pub mod bindings;
mod cmd;
mod component;
pub mod drag_drop;
pub mod error;
pub mod helpers;
pub mod router;
mod scroll_area;
pub mod shortcuts;
pub mod sub;
pub mod testing;
mod view_ctx;

#[cfg(feature = "eframe")]
mod runtime;

pub use app::App;
pub use cmd::Cmd;
pub use component::Component;
pub use error::{ErrorSource, FrameworkError, Severity};
pub use router::{Router, RouterMsg};
pub use scroll_area::{ScrollArea, ScrollDirection};
pub use sub::Sub;
pub use view_ctx::ViewCtx;

#[cfg(feature = "eframe")]
pub use runtime::{run, RepaintMode, RunConfig};

/// Prelude for convenient imports
pub mod prelude {
    pub use crate::bindings::{ActionBindings, DynamicShortcut, InputBinding, ShortcutGroup};
    pub use crate::drag_drop::{DragSourceResponse, DropZoneResponse};
    pub use crate::error::{ErrorSource, FrameworkError, Severity};
    pub use crate::helpers::{Debouncer, Throttler, TrailingThrottler};
    pub use crate::router::{BackButton, NavLink, Router, RouterMsg};
    pub use crate::shortcuts;
    pub use crate::sub::Sub;
    pub use crate::{App, Cmd, Component, ScrollArea, ViewCtx};
    pub use egui;
    pub use egui::{Key, KeyboardShortcut, Modifiers};

    #[cfg(feature = "eframe")]
    pub use crate::{RepaintMode, RunConfig};
}

/// Testing utilities prelude
pub mod test_prelude {
    pub use crate::testing::{CmdRecord, ModelAssert, TestRunner};
    pub use crate::{App, Cmd};
}