euv-example 0.5.6

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
/// The label for the div tag option.
pub(crate) const TAG_OPTION_DIV_LABEL: &str = "div";

/// The label for the span tag option.
pub(crate) const TAG_OPTION_SPAN_LABEL: &str = "span";

/// The label for the my_card component option.
pub(crate) const TAG_OPTION_MY_CARD_LABEL: &str = "my_card";

/// The label for the badge component option.
pub(crate) const TAG_OPTION_BADGE_LABEL: &str = "badge";

/// The tag name for a native div element.
pub(crate) const TAG_NAME_DIV: &str = "div";

/// The tag name for a native span element.
pub(crate) const TAG_NAME_SPAN: &str = "span";

/// The tag name for the my_card user component.
pub(crate) const TAG_NAME_MY_CARD: &str = "my_card";

/// The tag name for the badge user component.
pub(crate) const TAG_NAME_BADGE: &str = "badge";

/// The default tag name for the dynamic tag demo.
pub(crate) const DEFAULT_TAG_NAME: &str = TAG_NAME_DIV;

/// The placeholder text for the dynamic tag content input.
pub(crate) const TAG_CONTENT_PLACEHOLDER: &str = "Enter content text";

/// The autocomplete off value.
pub(crate) const TAG_AUTOCOMPLETE_OFF: &str = "off";

/// The id for the tag content input element.
pub(crate) const TAG_CONTENT_INPUT_ID: &str = "dynamic-tag-content-input";