pub(crate) const EVENT_KEYBOARD_ID: &str = "event-keyboard";
pub(crate) const EVENT_FOCUS_ID: &str = "event-focus";
pub(crate) const EVENT_CLIPBOARD_ID: &str = "event-clipboard";
pub(crate) const EVENT_FORM_INPUT_ID: &str = "event-form-input";
pub(crate) const EVENT_FORM_CHECKBOX_ID: &str = "event-form-checkbox";
pub(crate) const EVENT_FORM_SELECT_ID: &str = "event-form-select";
pub(crate) const EVENT_KEYBOARD_NAME: &str = "keyboard";
pub(crate) const EVENT_FOCUS_NAME: &str = "focus";
pub(crate) const EVENT_CLIPBOARD_NAME: &str = "clipboard";
pub(crate) const EVENT_FORM_INPUT_NAME: &str = "form_input";
pub(crate) const EVENT_FORM_CHECKBOX_NAME: &str = "form_checkbox";
pub(crate) const EVENT_FORM_SELECT_NAME: &str = "form_select";
pub(crate) const EVENT_TEXT_TYPE: &str = "text";
pub(crate) const EVENT_CHECKBOX_TYPE: &str = "checkbox";
pub(crate) const EVENT_AUTOCOMPLETE_OFF: &str = "off";
pub(crate) const EVENT_KEYBOARD_PLACEHOLDER: &str = "Type here to capture key events...";
pub(crate) const EVENT_FOCUS_PLACEHOLDER: &str = "Click to focus, click outside to blur...";
pub(crate) const EVENT_CLIPBOARD_PLACEHOLDER: &str = "Try copy, cut, or paste here...";
pub(crate) const EVENT_FORM_INPUT_PLACEHOLDER: &str = "Type to trigger input/change events...";
pub(crate) const EVENT_DRAGGABLE_TRUE: &str = "true";
pub(crate) const EVENT_CONTROLS_TRUE: &str = "true";