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 keyboard event input element.
pub(crate) const EVENT_KEYBOARD_ID: &str = "event-keyboard";

/// The HTML id for the focus event input element.
pub(crate) const EVENT_FOCUS_ID: &str = "event-focus";

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

/// The HTML id for the form input element in the event demo.
pub(crate) const EVENT_FORM_INPUT_ID: &str = "event-form-input";

/// The HTML id for the form checkbox element in the event demo.
pub(crate) const EVENT_FORM_CHECKBOX_ID: &str = "event-form-checkbox";

/// The HTML id for the form select element in the event demo.
pub(crate) const EVENT_FORM_SELECT_ID: &str = "event-form-select";

/// The HTML name attribute for the keyboard event input element.
pub(crate) const EVENT_KEYBOARD_NAME: &str = "keyboard";

/// The HTML name attribute for the focus event input element.
pub(crate) const EVENT_FOCUS_NAME: &str = "focus";

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

/// The HTML name attribute for the form input element.
pub(crate) const EVENT_FORM_INPUT_NAME: &str = "form_input";

/// The HTML name attribute for the form checkbox element.
pub(crate) const EVENT_FORM_CHECKBOX_NAME: &str = "form_checkbox";

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

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

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

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

/// The HTML placeholder for the keyboard event input element.
pub(crate) const EVENT_KEYBOARD_PLACEHOLDER: &str = "Type here to capture key events...";

/// The HTML placeholder for the focus event input element.
pub(crate) const EVENT_FOCUS_PLACEHOLDER: &str = "Click to focus, click outside to blur...";

/// The HTML placeholder for the clipboard event input element.
pub(crate) const EVENT_CLIPBOARD_PLACEHOLDER: &str = "Try copy, cut, or paste here...";

/// The HTML placeholder for the form input element.
pub(crate) const EVENT_FORM_INPUT_PLACEHOLDER: &str = "Type to trigger input/change events...";

/// The HTML draggable attribute value for true.
pub(crate) const EVENT_DRAGGABLE_TRUE: &str = "true";

/// The HTML controls attribute value for true.
pub(crate) const EVENT_CONTROLS_TRUE: &str = "true";