Updated to Svelte 5

This commit is contained in:
Mawoka
2025-09-21 12:42:04 +02:00
parent fa533257b3
commit a88cf13f82
137 changed files with 2279 additions and 1948 deletions
@@ -5,11 +5,25 @@ SPDX-License-Identifier: MPL-2.0
-->
<script lang="ts">
export let disabled = false;
export let flex = false;
import { createBubbler } from 'svelte/legacy';
export let href: undefined | string = undefined;
export let target: undefined | string = '_self';
const bubble = createBubbler();
interface Props {
disabled?: boolean;
flex?: boolean;
href?: undefined | string;
target?: undefined | string;
children?: import('svelte').Snippet;
}
let {
disabled = false,
flex = false,
href = undefined,
target = '_self',
children
}: Props = $props();
</script>
{#if href}
@@ -17,21 +31,21 @@ SPDX-License-Identifier: MPL-2.0
{href}
{target}
class="w-full px-4 py-2 leading-5 text-black dark:text-white transition-colors duration-200 transform bg-gray-50 dark:bg-gray-700 rounded-sm text-center hover:bg-gray-300 focus:outline-hidden disabled:cursor-not-allowed disabled:opacity-50 dark:hover:bg-gray-600"
on:click
onclick={bubble('click')}
class:flex
class:block={!flex}
class:justify-center={flex}
>
<slot />
{@render children?.()}
</a>
{:else}
<button
{disabled}
class="w-full px-4 py-2 leading-5 text-black dark:text-white transition-colors duration-200 transform bg-gray-50 dark:bg-gray-700 rounded-sm text-center hover:bg-gray-300 focus:outline-hidden disabled:cursor-not-allowed disabled:opacity-50 dark:hover:bg-gray-600"
on:click
onclick={bubble('click')}
class:flex
class:justify-center={flex}
>
<slot />
{@render children?.()}
</button>
{/if}