Skip to content

Commit

Permalink
⬆️ update dependencies (and add finances loading animation)
Browse files Browse the repository at this point in the history
  • Loading branch information
thrzl committed Jan 24, 2025
1 parent 145e25d commit 91eb713
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
Binary file modified bun.lockb
Binary file not shown.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@sveltejs/adapter-auto": "^3.2.4",
"@sveltejs/kit": "^2.5.22",
"@unocss/preset-uno": "^0.62.1",
"svelte": "^4.2.18",
"svelte-check": "^3.8.5",
"svelte-preprocess": "^6.0.2",
"typescript": "^5.5.4",
"unocss": "^0.62.1",
"vite": "^5.4.1"
"@biomejs/biome": "^1.9.4",
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.16.1",
"@unocss/preset-uno": "^65.4.3",
"svelte": "^5.19.2",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.7.3",
"unocss": "^65.4.3",
"vite": "^6.0.11"
},
"type": "module",
"dependencies": {
"@selemondev/svelte-marquee": "^0.0.2",
"@sveltejs/adapter-netlify": "^4.3.3"
"@sveltejs/adapter-netlify": "^4.4.1"
}
}
10 changes: 5 additions & 5 deletions src/routes/finances/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ function formatDate(date: Date) {
</thead>
{#await data.transactions}
<tbody>
<tr class="w-full bg-black">
<td class="border-1 -spacing-1 text-4 md:text-md font-semibold border-solid border-black border-neutral-800 p-4">Please wait!</td>
<td class="border-1 -spacing-1 text-4 md:text-md font-semibold border-solid border-black border-neutral-800 p-4">Loading data...</td>
<td class="border-1 -spacing-1 text-4 md:text-md font-semibold border-solid border-black border-neutral-800 p-4">$0.00</td>
<tr class="w-full bg-neutral-900 animate-pulse">
<td class="border-1 -spacing-1 text-4 md:text-md font-semibold border-solid border-black border-neutral-800 p-4 ">...</td>
<td class="border-1 -spacing-1 text-4 md:text-md font-semibold border-solid border-black border-neutral-800 p-4 ">Loading data...</td>
<td class="border-1 -spacing-1 text-4 md:text-md font-semibold border-solid border-black border-neutral-800 p-4 ">$0.00</td>
</tr>
</tbody>
{:then transactions}
Expand All @@ -51,4 +51,4 @@ function formatDate(date: Date) {
</div>
<p class="text-neutral-400 hover:text-white transition duration-500 ease-out">Data from <a href="https://bank.hackclub.com/teamillusion" class="text-inherit">Hack Club Bank</a></p>
</header>
</div>
</div>

0 comments on commit 91eb713

Please sign in to comment.