update dependencies

This commit is contained in:
2023-11-28 22:15:12 +01:00
parent dc21366f7a
commit 05ddd05a5b
15 changed files with 544 additions and 577 deletions

View File

@ -1,6 +1,6 @@
<script lang="ts">
import type { PageData } from './$types';
import { IconOutline } from 'svelte-heros-v2';
import { Check, NoSymbol, PencilSquare, Trash } from 'svelte-heros-v2';
import Input from '$lib/components/Input/Input.svelte';
import Select from '$lib/components/Input/Select.svelte';
import { env } from '$env/dynamic/public';
@ -172,7 +172,7 @@
user.edit = false;
}}
>
<IconOutline name="check-outline" width="18" height="18" />
<Check size="18" />
</button>
<button
class="btn btn-sm btn-square"
@ -181,7 +181,7 @@
user = user.before;
}}
>
<IconOutline name="no-symbol-outline" width="18" height="18" />
<NoSymbol size="18" />
</button>
{:else}
<button
@ -191,13 +191,13 @@
user.edit = true;
}}
>
<IconOutline name="pencil-square-outline" width="18" height="18" />
<PencilSquare size="18" />
</button>
<button
class="btn btn-sm btn-square"
on:click={(e) => buttonTriggeredRequest(e, deleteUser(user.id))}
>
<IconOutline name="trash-outline" width="18" height="18" />
<Trash size="18" />
</button>
{/if}
</div>