feat(events:focus): add missing onfocusin event

This commit is contained in:
Sven Assmann 2022-01-10 18:08:29 +01:00
parent 9849f68f25
commit 007d06d602
3 changed files with 7 additions and 2 deletions

View file

@ -52,7 +52,7 @@ fn make_synthetic_event(name: &str, val: serde_json::Value) -> Arc<dyn Any + Sen
let evt = serde_json::from_value::<KeyboardData>(val).unwrap();
Arc::new(evt)
}
"focus" | "blur" | "focusout" => {
"focus" | "blur" | "focusout" | "focusin" => {
//
Arc::new(FocusData {})
}
@ -118,6 +118,7 @@ fn event_name_from_typ(typ: &str) -> &'static str {
"keyup" => "keyup",
"focus" => "focus",
"focusout" => "focusout",
"focusin" => "focusin",
"blur" => "blur",
"change" => "change",
"input" => "input",

View file

@ -94,6 +94,9 @@ pub mod on {
// onfocusout
onfocusout
// onfocusin
onfocusin
/// onblur
onblur
];
@ -1095,7 +1098,7 @@ pub(crate) fn _event_meta(event: &UserEvent) -> (bool, EventPriority) {
"keydown" | "keypress" | "keyup" => (true, High),
// Focus
"focus" | "blur" | "focusout" => (true, Low),
"focus" | "blur" | "focusout" | "focusin" => (true, Low),
// Form
"change" | "input" | "invalid" | "reset" | "submit" => (true, Medium),

View file

@ -204,6 +204,7 @@ pub static BUILTIN_INTERNED_STRINGS: &[&'static str] = &[
"onerror",
"onfocus",
"onfocusout",
"onfocusin",
"onhashchange",
"oninput",
"oninvalid",