mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
fix(fluid-form): forward missing events (#583)
This commit is contained in:
parent
1d93eb0783
commit
f4f209f13b
5 changed files with 34 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue