Merge branch 'next' into tech/regen-lockfile

This commit is contained in:
Norbert de Langen 2022-09-26 11:43:21 +02:00
commit 7a4dcaedb0
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
4 changed files with 18 additions and 18 deletions

View File

@ -1,3 +1,13 @@
<script>
import { createEventDispatcher } from 'svelte';
const dispatch = createEventDispatcher();
export let onClick = (event) => {
dispatch('click', event);
};
</script>
<div class="main">
<h1>Link Action</h1>
<button on:click={onClick} class="link">
@ -6,15 +16,4 @@
</div>
<style>
</style>
<script>
import { createEventDispatcher } from 'svelte';
const dispatch = createEventDispatcher();
function onClick(event) {
dispatch('click', event);
}
</script>

View File

@ -28,15 +28,16 @@
/**
* Optional click handler
*/
function onClick(event) {
export let onClick = (event) => {
dispatch('click', event);
}
};
</script>
<button
type="button"
class={['storybook-button', `storybook-button--${size}`, mode].join(' ')}
{style}
on:click={onClick}>
on:click={onClick}
>
{label}
</button>

View File

@ -28,9 +28,9 @@
/**
* Optional click handler
*/
function onClick(event) {
export let onClick = (event) => {
dispatch('click', event);
}
};
</script>
<button

View File

@ -28,9 +28,9 @@
/**
* Optional click handler
*/
function onClick(event) {
export let onClick = (event) => {
dispatch('click', event);
}
};
</script>
<button type="button" {style} on:click="{onClick}">{label}</button>