euv-example 0.5.6

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// The HTML id for the new item input element.
pub(crate) const LIST_NEW_ITEM_ID: &str = "list-new-item";

/// The HTML name attribute for the new item input element.
pub(crate) const LIST_NEW_ITEM_NAME: &str = "new_item";

/// The HTML input type for the new item input element.
pub(crate) const LIST_TEXT_TYPE: &str = "text";

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

/// The HTML placeholder for the new item input element.
pub(crate) const LIST_NEW_ITEM_PLACEHOLDER: &str = "Enter new item";