freya
freya copied to clipboard
feat: Replace `mouseover` with `mousemove` and add new `mouseover` and `mouseout` events
- Replaces
mouseover
withmousemove
- Adds a new
mouseover
, similar tomousenter
but only for the actual visible area instead of also triggering uppon entering child elements. - Adds a new
mouseout
to be used in combination withmouseover
, so just like the former one it would be similar tomouseleave
, but only trigger when leaving the visible area, which might include hovering a child element for example.
To Do
- Examples
- Tests
- Docs
- check if
does_bubble
is correct