2024-07-04 13:53:28 +00:00
|
|
|
<script lang="ts">
|
2024-10-15 07:35:14 +00:00
|
|
|
import { getContext, createEventDispatcher } from 'svelte';
|
|
|
|
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
$: dispatch('change', open);
|
|
|
|
|
2024-07-06 04:37:29 +00:00
|
|
|
import { slide } from 'svelte/transition';
|
|
|
|
import { quintOut } from 'svelte/easing';
|
2024-07-28 22:17:49 +00:00
|
|
|
|
|
|
|
import ChevronUp from '../icons/ChevronUp.svelte';
|
|
|
|
import ChevronDown from '../icons/ChevronDown.svelte';
|
|
|
|
|
2024-07-04 13:53:28 +00:00
|
|
|
export let open = false;
|
2024-07-04 14:02:26 +00:00
|
|
|
export let className = '';
|
2024-10-15 04:15:36 +00:00
|
|
|
export let buttonClassName = 'w-fit';
|
2024-07-28 22:17:49 +00:00
|
|
|
export let title = null;
|
2024-07-04 13:53:28 +00:00
|
|
|
</script>
|
|
|
|
|
2024-07-04 14:02:26 +00:00
|
|
|
<div class={className}>
|
2024-07-28 22:17:49 +00:00
|
|
|
{#if title !== null}
|
2024-10-17 05:36:44 +00:00
|
|
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
|
|
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
|
|
|
<div class={buttonClassName} on:pointerup={() => (open = !open)}>
|
2024-09-30 11:03:47 +00:00
|
|
|
<div class=" w-fit font-medium transition flex items-center justify-between gap-2">
|
2024-07-28 22:17:49 +00:00
|
|
|
<div>
|
|
|
|
{title}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{#if open}
|
|
|
|
<ChevronUp strokeWidth="3.5" className="size-3.5 " />
|
|
|
|
{:else}
|
|
|
|
<ChevronDown strokeWidth="3.5" className="size-3.5 " />
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-10-17 05:36:44 +00:00
|
|
|
</div>
|
2024-07-28 22:17:49 +00:00
|
|
|
{:else}
|
2024-10-17 05:36:44 +00:00
|
|
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
|
|
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
|
|
|
<div class={buttonClassName} on:pointerup={() => (open = !open)}>
|
2024-07-28 22:17:49 +00:00
|
|
|
<div
|
|
|
|
class="flex items-center gap-2 text-gray-500 hover:text-gray-700 dark:hover:text-gray-300 transition"
|
|
|
|
>
|
|
|
|
<slot />
|
|
|
|
</div>
|
2024-10-17 05:36:44 +00:00
|
|
|
</div>
|
2024-07-28 22:17:49 +00:00
|
|
|
{/if}
|
2024-07-04 14:02:26 +00:00
|
|
|
|
2024-07-06 04:37:29 +00:00
|
|
|
{#if open}
|
|
|
|
<div transition:slide={{ duration: 300, easing: quintOut, axis: 'y' }}>
|
|
|
|
<slot name="content" />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
</div>
|