Update svelte dependencies
All checks were successful
Deploy / deploy (push) Successful in 17s

This commit is contained in:
Leonardo Murça 2025-03-29 11:34:52 -03:00
parent af63f8adf3
commit deb27fa483
5 changed files with 734 additions and 191 deletions

896
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
{
"name": "embroidery-viewer",
"private": true,
"version": "1.2.5",
"version": "1.2.6",
"type": "module",
"scripts": {
"dev": "vite",
@ -10,8 +10,8 @@
"postbuild": "npx svelte-sitemap --domain https://embroideryviewer.xyz -o dist"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.1",
"svelte": "^3.59.1",
"vite": "^4.3.9"
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"svelte": "^5.23.3",
"vite": "^6.2.3"
}
}

View file

@ -35,14 +35,15 @@
<div id="container" style="width: 100%; heigth: 100vh;">
{#each Array.from(files) as file, i}
<div class="canvas-container">
<canvas bind:this={canvasRefs[i]} class="canvas" />
<canvas bind:this={canvasRefs[i]} class="canvas"></canvas>
<p><strong>{file.name}</strong></p>
<div class="stitches-container" bind:this={stitchesRefs[i]} />
<div class="size-container" bind:this={sizeRefs[i]} />
<div class="colors-container" bind:this={colorRefs[i]} />
<div class="stitches-container" bind:this={stitchesRefs[i]}></div>
<div class="size-container" bind:this={sizeRefs[i]}></div>
<div class="colors-container" bind:this={colorRefs[i]}></div>
<div
id="download-button"
role="button"
tabindex=0
on:keydown={onKeydown}
on:click={() => downloadCanvasAsImage(canvasRefs[i], file.name)}
>
@ -61,7 +62,7 @@
)}
{/each}
<!-- svelte-ignore a11y-missing-content -->
<h1 bind:this={errorMessageRef} />
<h1 bind:this={errorMessageRef}></h1>
</div>
{/if}

View file

@ -13,6 +13,7 @@
<div
id="dropzone"
tabindex={0}
role="region"
on:keydown={onKeydown}
on:click={onClick}
on:dragover|preventDefault|stopPropagation

View file

@ -1,8 +1,9 @@
import { mount } from 'svelte';
import App from './App.svelte';
import "./app.css";
import App from "./App.svelte";
const app = new App({
target: document.getElementById("app"),
const app = mount(App, {
target: document.getElementById('app'),
});
export default app;
export default app;