euv-example 0.5.6

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
/// The HTML id for the countdown seconds input element.
pub(crate) const COUNTDOWN_SECONDS_ID: &str = "countdown-seconds";

/// The HTML name attribute for the countdown seconds input element.
pub(crate) const COUNTDOWN_SECONDS_NAME: &str = "seconds";

/// The HTML input type for the countdown seconds input element.
pub(crate) const TIMER_NUMBER_TYPE: &str = "number";

/// The HTML autocomplete attribute value for off.
pub(crate) const TIMER_AUTOCOMPLETE_OFF: &str = "off";

/// The HTML min attribute for the countdown seconds input element.
pub(crate) const COUNTDOWN_SECONDS_MIN: &str = "1";

/// The HTML max attribute for the countdown seconds input element.
pub(crate) const COUNTDOWN_SECONDS_MAX: &str = "3600";

/// The HTML placeholder for the countdown seconds input element.
pub(crate) const COUNTDOWN_SECONDS_PLACEHOLDER: &str = "Enter seconds...";