Update dependencies

This commit is contained in:
2023-09-14 12:29:06 +02:00
parent 1a332f6d57
commit e9e52a98d2
8 changed files with 370 additions and 340 deletions

View File

@@ -98,6 +98,7 @@ const drop = (e, index) => {
on:dragenter={() => hovering = -2}
on:dragend={() => {hovering = -1}}
class:highlight={!dragging && hovering === -2}
role="listitem"
>
<button on:click={e => dispatch("pick_files")} style="font-size: 1.5em; cursor: pointer;">
<i class="icon">cloud_upload</i>

View File

@@ -53,6 +53,7 @@ const mouseup = (e) => {
<svelte:window on:mousemove={mousemove} on:mouseup={mouseup} />
<div bind:this={container} class="container" class:zoom>
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
<img
on:loadstart={() => {dispatch("loading", true)}}
on:load={() => {dispatch("loading", false)}}