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 file input element.
pub(crate) const FILE_UPLOAD_ID: &str = "file-upload";

/// The HTML id for the multiple files checkbox element.
pub(crate) const FILE_MULTIPLE_ID: &str = "file-multiple";

/// The HTML id for the accept filter input element.
pub(crate) const FILE_ACCEPT_ID: &str = "file-accept";

/// The HTML name attribute for the file input element.
pub(crate) const FILE_UPLOAD_NAME: &str = "file_upload";

/// The HTML name attribute for the multiple files checkbox element.
pub(crate) const FILE_MULTIPLE_NAME: &str = "multiple";

/// The HTML name attribute for the accept filter input element.
pub(crate) const FILE_ACCEPT_NAME: &str = "accept";

/// The HTML input type for the file input element.
pub(crate) const FILE_INPUT_TYPE: &str = "file";

/// The HTML input type for the multiple files checkbox element.
pub(crate) const FILE_CHECKBOX_TYPE: &str = "checkbox";

/// The HTML input type for the accept filter input element.
pub(crate) const FILE_TEXT_TYPE: &str = "text";

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

/// The HTML placeholder for the accept filter input element.
pub(crate) const FILE_ACCEPT_PLACEHOLDER: &str = ".png,.jpg,image/*";