euv-ui 0.8.28

Reusable UI component library for the euv framework, providing buttons, cards, modals, inputs, and more.
Documentation
use crate::*;

/// A console abstraction providing web console API methods.
///
/// Methods are associated functions (not instance methods) that internally
/// access the global Console signal, so callers use `Console::log(msg)`
/// without needing to obtain or hold a Console instance.
#[derive(Clone, Data, Debug, New)]
pub struct Console;

/// A single console entry containing a message and its log level.
///
/// Used to store entries in the global vConsole signal for both
/// browser console output and vConsole panel rendering.
#[derive(Clone, Data, Debug, New, PartialEq)]
pub struct ConsoleEntry {
    /// The log level determining the entry's category and display color.
    #[get(type(copy))]
    pub level: LogLevel,
    /// The text content of the log message.
    pub message: String,
}