/// The label for the div tag option.
pub const TAG_OPTION_DIV_LABEL: &str = "div";
/// The label for the span tag option.
pub const TAG_OPTION_SPAN_LABEL: &str = "span";
/// The label for the my_card component option.
pub const TAG_OPTION_MY_CARD_LABEL: &str = "my_card";
/// The label for the badge component option.
pub const TAG_OPTION_BADGE_LABEL: &str = "badge";
/// The tag name for a native div element.
pub const TAG_NAME_DIV: &str = "div";
/// The tag name for a native span element.
pub const TAG_NAME_SPAN: &str = "span";
/// The tag name for the my_card user component.
pub const TAG_NAME_MY_CARD: &str = "my_card";
/// The tag name for the badge user component.
pub const TAG_NAME_BADGE: &str = "badge";
/// The default tag name for the dynamic tag demo.
pub const DEFAULT_TAG_NAME: &str = TAG_NAME_DIV;
/// The placeholder text for the dynamic tag content input.
pub const TAG_CONTENT_PLACEHOLDER: &str = "Enter content text";
/// The autocomplete off value.
pub const TAG_AUTOCOMPLETE_OFF: &str = "off";
/// The id for the tag content input element.
pub const TAG_CONTENT_INPUT_ID: &str = "dynamic-tag-content-input";