mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 06:30:20 +00:00
fix scroll data (#569)
This commit is contained in:
parent
964a942243
commit
b32fd2d2cd
2 changed files with 11 additions and 4 deletions
|
@ -105,7 +105,7 @@ fn make_synthetic_event(name: &str, val: serde_json::Value) -> Arc<dyn Any + Sen
|
|||
Arc::new(serde_json::from_value::<TouchData>(val).unwrap())
|
||||
}
|
||||
|
||||
"scroll" => Arc::new(()),
|
||||
"scroll" => Arc::new(ScrollData {}),
|
||||
|
||||
"wheel" => Arc::new(serde_json::from_value::<WheelData>(val).unwrap()),
|
||||
|
||||
|
|
|
@ -250,9 +250,6 @@ pub mod on {
|
|||
/// onmouseout
|
||||
onmouseout
|
||||
|
||||
///
|
||||
onscroll
|
||||
|
||||
/// onmouseover
|
||||
///
|
||||
/// Triggered when the users's mouse hovers over an element.
|
||||
|
@ -262,6 +259,11 @@ pub mod on {
|
|||
onmouseup
|
||||
];
|
||||
|
||||
ScrollEvent(ScrollData): [
|
||||
///
|
||||
onscroll
|
||||
];
|
||||
|
||||
PointerEvent(PointerData): [
|
||||
/// pointerdown
|
||||
onpointerdown
|
||||
|
@ -897,6 +899,11 @@ pub mod on {
|
|||
}
|
||||
}
|
||||
|
||||
pub type ScrollEvent = UiEvent<ScrollData>;
|
||||
#[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))]
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct ScrollData {}
|
||||
|
||||
pub type MediaEvent = UiEvent<MediaData>;
|
||||
#[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))]
|
||||
#[derive(Debug, Clone)]
|
||||
|
|
Loading…
Reference in a new issue