Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Thomas G. Lopes
commited on
Commit
·
42052ec
1
Parent(s):
0965bd9
improve loading animation
Browse files- package.json +1 -0
- pnpm-lock.yaml +10 -0
- src/routes/+layout.svelte +2 -0
package.json
CHANGED
@@ -26,6 +26,7 @@
|
|
26 |
"@huggingface/tasks": "^0.19.26",
|
27 |
"@huggingface/transformers": "^3.6.3",
|
28 |
"@iconify-json/carbon": "^1.2.8",
|
|
|
29 |
"@iconify-json/lucide": "^1.2.45",
|
30 |
"@iconify-json/material-symbols": "^1.2.15",
|
31 |
"@playwright/test": "^1.49.1",
|
|
|
26 |
"@huggingface/tasks": "^0.19.26",
|
27 |
"@huggingface/transformers": "^3.6.3",
|
28 |
"@iconify-json/carbon": "^1.2.8",
|
29 |
+
"@iconify-json/line-md": "^1.2.11",
|
30 |
"@iconify-json/lucide": "^1.2.45",
|
31 |
"@iconify-json/material-symbols": "^1.2.15",
|
32 |
"@playwright/test": "^1.49.1",
|
pnpm-lock.yaml
CHANGED
@@ -57,6 +57,9 @@ importers:
|
|
57 |
'@iconify-json/carbon':
|
58 |
specifier: ^1.2.8
|
59 |
version: 1.2.8
|
|
|
|
|
|
|
60 |
'@iconify-json/lucide':
|
61 |
specifier: ^1.2.45
|
62 |
version: 1.2.45
|
@@ -490,6 +493,9 @@ packages:
|
|
490 |
'@iconify-json/carbon@1.2.8':
|
491 |
resolution: {integrity: sha512-6xh4YiFBz6qoSnB3XMe23WvjTJroDFXB17J1MbiT7nATFe+70+em1acRXr8hgP/gYpwFMHFc4IvjA/IPTPnTzg==}
|
492 |
|
|
|
|
|
|
|
493 |
'@iconify-json/lucide@1.2.45':
|
494 |
resolution: {integrity: sha512-izW3wk7Ll5HgNMc/m41eOKXb7nL1zFxXZdMyBOtqdwusHXPr8IWSC/ReSgWgxUF3xyNwiQsso5Ppkta2wsUrPg==}
|
495 |
|
@@ -3604,6 +3610,10 @@ snapshots:
|
|
3604 |
dependencies:
|
3605 |
'@iconify/types': 2.0.0
|
3606 |
|
|
|
|
|
|
|
|
|
3607 |
'@iconify-json/lucide@1.2.45':
|
3608 |
dependencies:
|
3609 |
'@iconify/types': 2.0.0
|
|
|
57 |
'@iconify-json/carbon':
|
58 |
specifier: ^1.2.8
|
59 |
version: 1.2.8
|
60 |
+
'@iconify-json/line-md':
|
61 |
+
specifier: ^1.2.11
|
62 |
+
version: 1.2.11
|
63 |
'@iconify-json/lucide':
|
64 |
specifier: ^1.2.45
|
65 |
version: 1.2.45
|
|
|
493 |
'@iconify-json/carbon@1.2.8':
|
494 |
resolution: {integrity: sha512-6xh4YiFBz6qoSnB3XMe23WvjTJroDFXB17J1MbiT7nATFe+70+em1acRXr8hgP/gYpwFMHFc4IvjA/IPTPnTzg==}
|
495 |
|
496 |
+
'@iconify-json/line-md@1.2.11':
|
497 |
+
resolution: {integrity: sha512-JYczKuKvTq/Pf9rSCoxwdBbAiWqceNrb3EtM3acD4YkzCAdp3co+CdNE/pb5lTURGbIA9GrGuqentHqVwXyVWA==}
|
498 |
+
|
499 |
'@iconify-json/lucide@1.2.45':
|
500 |
resolution: {integrity: sha512-izW3wk7Ll5HgNMc/m41eOKXb7nL1zFxXZdMyBOtqdwusHXPr8IWSC/ReSgWgxUF3xyNwiQsso5Ppkta2wsUrPg==}
|
501 |
|
|
|
3610 |
dependencies:
|
3611 |
'@iconify/types': 2.0.0
|
3612 |
|
3613 |
+
'@iconify-json/line-md@1.2.11':
|
3614 |
+
dependencies:
|
3615 |
+
'@iconify/types': 2.0.0
|
3616 |
+
|
3617 |
'@iconify-json/lucide@1.2.45':
|
3618 |
dependencies:
|
3619 |
'@iconify/types': 2.0.0
|
src/routes/+layout.svelte
CHANGED
@@ -5,6 +5,7 @@
|
|
5 |
import Prompts from "$lib/components/prompts.svelte";
|
6 |
import QuotaModal from "$lib/components/quota-modal.svelte";
|
7 |
import ShareModal from "$lib/components/share-modal.svelte";
|
|
|
8 |
import "../app.css";
|
9 |
|
10 |
interface Props {
|
@@ -18,6 +19,7 @@
|
|
18 |
{@render children?.()}
|
19 |
{#snippet pending()}
|
20 |
<p class="abs-center absolute dark:text-white">🤗</p>
|
|
|
21 |
{/snippet}
|
22 |
</svelte:boundary>
|
23 |
|
|
|
5 |
import Prompts from "$lib/components/prompts.svelte";
|
6 |
import QuotaModal from "$lib/components/quota-modal.svelte";
|
7 |
import ShareModal from "$lib/components/share-modal.svelte";
|
8 |
+
import IconLoadingLoop from "~icons/line-md/loading-loop";
|
9 |
import "../app.css";
|
10 |
|
11 |
interface Props {
|
|
|
19 |
{@render children?.()}
|
20 |
{#snippet pending()}
|
21 |
<p class="abs-center absolute dark:text-white">🤗</p>
|
22 |
+
<IconLoadingLoop class="abs-center absolute text-6xl dark:text-blue-300" />
|
23 |
{/snippet}
|
24 |
</svelte:boundary>
|
25 |
|