dioxus-web 0.6.3

Web-sys renderer for Dioxus: Build fullstack web, desktop, and mobile apps with a single codebase.
Documentation
use dioxus_html::HasClipboardData;
use web_sys::Event;

use super::{Synthetic, WebEventExt};

impl From<&Event> for Synthetic<Event> {
    fn from(e: &Event) -> Self {
        Synthetic::new(e.clone())
    }
}

impl HasClipboardData for Synthetic<Event> {
    fn as_any(&self) -> &dyn std::any::Any {
        &self.event
    }
}

impl WebEventExt for dioxus_html::ClipboardData {
    type WebEvent = web_sys::Event;

    #[inline(always)]
    fn try_as_web_event(&self) -> Option<Self::WebEvent> {
        self.downcast::<web_sys::Event>().cloned()
    }
}