euv-example 0.5.6

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
/// The static attribute key for demonstrating compile-time known attribute names.
pub(crate) const STATIC_ATTR_KEY: &str = "data-role";

/// The static attribute value for demonstrating compile-time known attribute values.
pub(crate) const STATIC_ATTR_VALUE: &str = "demo-static";

/// The placeholder text for the dynamic attribute key input.
pub(crate) const DYNAMIC_KEY_PLACEHOLDER: &str = "Enter attr key (e.g. data-custom)";

/// The placeholder text for the dynamic attribute value input.
pub(crate) const DYNAMIC_VALUE_PLACEHOLDER: &str = "Enter attr value";

/// The autocomplete attribute value for the dynamic key input.
pub(crate) const ATTRS_AUTOCOMPLETE_OFF: &str = "off";

/// The HTML id for the dynamic attribute key input element.
pub(crate) const DYNAMIC_KEY_INPUT_ID: &str = "attrs-dynamic-key";

/// The HTML id for the dynamic attribute value input element.
pub(crate) const DYNAMIC_VALUE_INPUT_ID: &str = "attrs-dynamic-value";

/// The default CSS property key for the class macro dynamic key demo.
pub(crate) const CLASS_DYNAMIC_PROP_KEY: &str = "background-color";

/// The default CSS property value for the class macro dynamic key demo.
pub(crate) const CLASS_DYNAMIC_PROP_VALUE: &str = "#dbeafe";

/// The placeholder text for the CSS property key input.
pub(crate) const CLASS_KEY_PLACEHOLDER: &str = "Enter CSS prop key (e.g. background-color)";

/// The placeholder text for the CSS property value input.
pub(crate) const CLASS_VALUE_PLACEHOLDER: &str = "Enter CSS prop value (e.g. #dbeafe)";

/// The HTML id for the CSS property key input element.
pub(crate) const CLASS_KEY_INPUT_ID: &str = "attrs-class-key";

/// The HTML id for the CSS property value input element.
pub(crate) const CLASS_VALUE_INPUT_ID: &str = "attrs-class-value";