fix(fluid-form): forward missing events (#583)

This commit is contained in:
Eric Liu 2021-03-28 12:10:51 -07:00 committed by GitHub
commit f4f209f13b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 34 additions and 3 deletions

View file

@ -5,6 +5,15 @@
setContext("Form", { isFluid: true });
</script>
<Form {...$$restProps} class="bx--form--fluid {$$restProps.class}" on:submit>
<Form
{...$$restProps}
class="bx--form--fluid {$$restProps.class}"
on:click
on:keydown
on:mouseover
on:mouseenter
on:mouseleave
on:submit
>
<slot />
</Form>