/// The HTML id for the new item input element.
pub const LIST_NEW_ITEM_ID: &str = "list-new-item";
/// The HTML name attribute for the new item input element.
pub const LIST_NEW_ITEM_NAME: &str = "new_item";
/// The HTML input type for the new item input element.
pub const LIST_TEXT_TYPE: &str = "text";
/// The HTML autocomplete attribute value for off.
pub const LIST_AUTOCOMPLETE_OFF: &str = "off";
/// The HTML placeholder for the new item input element.
pub const LIST_NEW_ITEM_PLACEHOLDER: &str = "Enter new item";