Open
Description
Is your feature request related to a problem? Please describe.
I get the following error when I'm trying to add custom events on native DOM elements:
Type '{ onswipestart: (event: CustomEvent<any>) => void; onswipemove: (event: CustomEvent<any>) => void; onswipeend: (event: CustomEvent<any>) => void; style: string; class: string; }' is not assignable to type 'HTMLProps<HTMLDivElement>'.
Property 'onswipestart' does not exist on type 'HTMLProps<HTMLDivElement>'.ts(2322)
The custom events are dispatched to a div
element using Sveltes actions/use directive https://svelte.dev/examples#actions).
Describe the solution you'd like
Be able to type check for custom events dispatched using Svelte actions on native DOM elements.
Describe alternatives you've considered
I could try to convert the div to an individual Svelte component but preferably it should work on native DOM elements as well.
Additional context
This is how I listen to the custom events:
<div
class="bottomSheet"
class:draggable
bind:this={bottomSheet}
use:swipeable
on:swipestart={handleSwipeStart}
on:swipemove={handleSwipeMove}
on:swipeend={handleSwipeEnd}
style="height:{height};bottom:{bottom};transform:translateY({$coords.ty}px);"
>
Related Pull Request for custom events on Svelte components: #303