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 fruit select element.
pub(crate) const SELECT_FRUIT_ID: &str = "select-fruit";

/// The HTML id for the country select element.
pub(crate) const SELECT_COUNTRY_ID: &str = "select-country";

/// The HTML id for the city select element.
pub(crate) const SELECT_CITY_ID: &str = "select-city";

/// The HTML id for the feedback textarea element.
pub(crate) const SELECT_FEEDBACK_ID: &str = "select-feedback";

/// The HTML name attribute for the fruit select element.
pub(crate) const SELECT_FRUIT_NAME: &str = "fruit";

/// The HTML name attribute for the country select element.
pub(crate) const SELECT_COUNTRY_NAME: &str = "country";

/// The HTML name attribute for the city select element.
pub(crate) const SELECT_CITY_NAME: &str = "city";

/// The HTML name attribute for the feedback textarea element.
pub(crate) const SELECT_FEEDBACK_NAME: &str = "feedback";

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

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

/// The HTML placeholder for the feedback textarea element.
pub(crate) const SELECT_FEEDBACK_PLACEHOLDER: &str = "Share your thoughts...";

/// The HTML rows attribute for the feedback textarea element.
pub(crate) const SELECT_FEEDBACK_ROWS: &str = "4";