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 localStorage key input element.
pub(crate) const LOCAL_STORAGE_KEY_ID: &str = "local-storage-key";

/// The HTML id for the localStorage value input element.
pub(crate) const LOCAL_STORAGE_VALUE_ID: &str = "local-storage-value";

/// The HTML id for the sessionStorage key input element.
pub(crate) const SESSION_STORAGE_KEY_ID: &str = "session-storage-key";

/// The HTML id for the sessionStorage value input element.
pub(crate) const SESSION_STORAGE_VALUE_ID: &str = "session-storage-value";

/// The HTML id for the clipboard text input element.
pub(crate) const CLIPBOARD_TEXT_ID: &str = "clipboard-text";

/// The HTML id for the console message input element.
pub(crate) const CONSOLE_MESSAGE_ID: &str = "console-message";

/// The HTML name attribute for the localStorage key input element.
pub(crate) const LOCAL_STORAGE_KEY_NAME: &str = "local_key";

/// The HTML name attribute for the localStorage value input element.
pub(crate) const LOCAL_STORAGE_VALUE_NAME: &str = "local_value";

/// The HTML name attribute for the sessionStorage key input element.
pub(crate) const SESSION_STORAGE_KEY_NAME: &str = "session_key";

/// The HTML name attribute for the sessionStorage value input element.
pub(crate) const SESSION_STORAGE_VALUE_NAME: &str = "session_value";

/// The HTML name attribute for the clipboard text input element.
pub(crate) const CLIPBOARD_TEXT_NAME: &str = "clipboard_text";

/// The HTML name attribute for the console message input element.
pub(crate) const CONSOLE_MESSAGE_NAME: &str = "console_message";

/// The HTML input type for text.
pub(crate) const BROWSER_TEXT_TYPE: &str = "text";

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

/// The HTML placeholder for the localStorage key input element.
pub(crate) const LOCAL_STORAGE_KEY_PLACEHOLDER: &str = "Storage key...";

/// The HTML placeholder for the localStorage value input element.
pub(crate) const LOCAL_STORAGE_VALUE_PLACEHOLDER: &str = "Storage value...";

/// The HTML placeholder for the sessionStorage key input element.
pub(crate) const SESSION_STORAGE_KEY_PLACEHOLDER: &str = "Session key...";

/// The HTML placeholder for the sessionStorage value input element.
pub(crate) const SESSION_STORAGE_VALUE_PLACEHOLDER: &str = "Session value...";

/// The HTML placeholder for the clipboard text input element.
pub(crate) const CLIPBOARD_TEXT_PLACEHOLDER: &str = "Enter text to copy...";

/// The HTML placeholder for the console message input element.
pub(crate) const CONSOLE_MESSAGE_PLACEHOLDER: &str = "Type a message to log...";