create-pixi-vn 2.0.9 → 2.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template-react-vite-muijoy/.vscode/launch.json +9 -2
- package/template-react-vite-muijoy/.vscode/tasks.json +20 -4
- package/template-react-vite-muijoy/package-lock.json +100 -81
- package/template-react-vite-muijoy/package.json +3 -2
- package/template-react-vite-muijoy/src/components/loading.tsx +5 -44
- package/template-react-vite-muijoy/src/components/menus/settings/about.tsx +1 -1
- package/template-react-vite-muijoy/src/components/quick-tools.tsx +1 -1
- package/template-react-vite-muijoy/src/components/screens/narration/narration-cards.tsx +2 -3
- package/template-react-vite-muijoy/src/lib/query/narration-query.ts +5 -1
- package/template-react-vite-muijoy/src/lib/utils/assets-utility.ts +1 -1
- package/template-react-vite-muijoy-ink/.vscode/extensions.json +1 -2
- package/template-react-vite-muijoy-ink/.vscode/launch.json +9 -2
- package/template-react-vite-muijoy-ink/.vscode/settings.json +1 -6
- package/template-react-vite-muijoy-ink/.vscode/tasks.json +20 -4
- package/template-react-vite-muijoy-ink/_gitignore +0 -1
- package/template-react-vite-muijoy-ink/package-lock.json +104 -311
- package/template-react-vite-muijoy-ink/package.json +4 -5
- package/template-react-vite-muijoy-ink/src/App.tsx +25 -25
- package/template-react-vite-muijoy-ink/src/assets/index.ts +4 -2
- package/template-react-vite-muijoy-ink/src/assets/ink-manifest.gen.json +1 -4
- package/template-react-vite-muijoy-ink/src/components/loading.tsx +5 -44
- package/template-react-vite-muijoy-ink/src/components/menus/settings/about.tsx +1 -1
- package/template-react-vite-muijoy-ink/src/components/quick-tools.tsx +1 -1
- package/template-react-vite-muijoy-ink/src/components/screens/narration/narration-cards.tsx +2 -3
- package/template-react-vite-muijoy-ink/src/content/labels/second.label.ts +1207 -0
- package/template-react-vite-muijoy-ink/src/content/labels/start.label.ts +566 -0
- package/template-react-vite-muijoy-ink/src/lib/i18n.ts +1 -22
- package/template-react-vite-muijoy-ink/src/lib/query/narration-query.ts +5 -1
- package/template-react-vite-muijoy-ink/src/lib/utils/assets-utility.ts +1 -1
- package/template-react-vite-muijoy-ink/src/pixi-vn-keys.gen.d.ts +0 -2
- package/template-react-vite-muijoy-ink/src/routes/__root.tsx +0 -4
- package/template-react-vite-muijoy-ink/vite.config.ts +0 -6
- package/template-react-vite-muijoy-ink-tauri/.assetpack.ts +0 -9
- package/template-react-vite-muijoy-ink-tauri/.vscode/extensions.json +1 -5
- package/template-react-vite-muijoy-ink-tauri/.vscode/launch.json +6 -10
- package/template-react-vite-muijoy-ink-tauri/.vscode/settings.json +1 -6
- package/template-react-vite-muijoy-ink-tauri/.vscode/tasks.json +17 -48
- package/template-react-vite-muijoy-ink-tauri/README.md +3 -3
- package/template-react-vite-muijoy-ink-tauri/_gitignore +0 -11
- package/template-react-vite-muijoy-ink-tauri/package-lock.json +100 -557
- package/template-react-vite-muijoy-ink-tauri/package.json +5 -15
- package/template-react-vite-muijoy-ink-tauri/src/App.tsx +25 -25
- package/template-react-vite-muijoy-ink-tauri/src/assets/index.ts +4 -2
- package/template-react-vite-muijoy-ink-tauri/src/assets/ink-manifest.gen.json +1 -4
- package/template-react-vite-muijoy-ink-tauri/src/components/loading.tsx +5 -44
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/main-menu.tsx +1 -16
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/about.tsx +1 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/quick-menus.tsx +1 -17
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/system-controls.tsx +1 -11
- package/template-react-vite-muijoy-ink-tauri/src/components/quick-tools.tsx +1 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/screens/narration/narration-cards.tsx +2 -3
- package/template-react-vite-muijoy-ink-tauri/src/content/labels/second.label.ts +1207 -0
- package/template-react-vite-muijoy-ink-tauri/src/content/labels/start.label.ts +566 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/i18n.ts +1 -22
- package/template-react-vite-muijoy-ink-tauri/src/lib/query/narration-query.ts +5 -1
- package/template-react-vite-muijoy-ink-tauri/src/lib/query/settings-query.ts +1 -7
- package/template-react-vite-muijoy-ink-tauri/src/lib/utils/assets-utility.ts +1 -1
- package/template-react-vite-muijoy-ink-tauri/src/pixi-vn-keys.gen.d.ts +0 -2
- package/template-react-vite-muijoy-ink-tauri/src/routes/__root.tsx +0 -4
- package/template-react-vite-muijoy-ink-tauri/vite.config.ts +0 -30
- package/template-react-vite-muijoy-tauri/.assetpack.ts +0 -9
- package/template-react-vite-muijoy-tauri/.vscode/extensions.json +1 -4
- package/template-react-vite-muijoy-tauri/.vscode/launch.json +6 -10
- package/template-react-vite-muijoy-tauri/.vscode/tasks.json +17 -48
- package/template-react-vite-muijoy-tauri/README.md +3 -3
- package/template-react-vite-muijoy-tauri/_gitignore +0 -10
- package/template-react-vite-muijoy-tauri/package-lock.json +100 -331
- package/template-react-vite-muijoy-tauri/package.json +4 -12
- package/template-react-vite-muijoy-tauri/src/components/loading.tsx +5 -44
- package/template-react-vite-muijoy-tauri/src/components/menus/main-menu.tsx +1 -16
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/about.tsx +1 -1
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/quick-menus.tsx +1 -17
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/system-controls.tsx +1 -11
- package/template-react-vite-muijoy-tauri/src/components/quick-tools.tsx +1 -1
- package/template-react-vite-muijoy-tauri/src/components/screens/narration/narration-cards.tsx +2 -3
- package/template-react-vite-muijoy-tauri/src/lib/query/narration-query.ts +5 -1
- package/template-react-vite-muijoy-tauri/src/lib/query/settings-query.ts +1 -7
- package/template-react-vite-muijoy-tauri/src/lib/utils/assets-utility.ts +1 -1
- package/template-react-vite-muijoy-tauri/vite.config.ts +0 -24
- package/template-react-vite-muijoy-ink/ink/second_part.ink +0 -571
- package/template-react-vite-muijoy-ink/ink/start.ink +0 -214
- package/template-react-vite-muijoy-ink/src/content/ink/hashtag-commands.ts +0 -38
- package/template-react-vite-muijoy-ink/src/content/ink/text-replaces.ts +0 -19
- package/template-react-vite-muijoy-ink/src/lib/hooks/ink-hooks.tsx +0 -12
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/desktop.yml +0 -188
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/mobile.yml +0 -270
- package/template-react-vite-muijoy-ink-tauri/ink/second_part.ink +0 -571
- package/template-react-vite-muijoy-ink-tauri/ink/start.ink +0 -214
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/hashtag-commands.ts +0 -55
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/text-replaces.ts +0 -19
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/ink-hooks.tsx +0 -12
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/quit-hooks.ts +0 -24
- package/template-react-vite-muijoy-ink-tauri/src/lib/steam.ts +0 -143
- package/template-react-vite-muijoy-ink-tauri/src-tauri/Cargo.toml +0 -50
- package/template-react-vite-muijoy-ink-tauri/src-tauri/build.rs +0 -46
- package/template-react-vite-muijoy-ink-tauri/src-tauri/capabilities/default.json +0 -21
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/128x128.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/128x128@2x.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/32x32.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/StoreLogo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.icns +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.ico +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/lib.rs +0 -64
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/main.rs +0 -6
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/steam.rs +0 -238
- package/template-react-vite-muijoy-ink-tauri/src-tauri/tauri.conf.json +0 -50
- package/template-react-vite-muijoy-tauri/_github/workflows/desktop.yml +0 -188
- package/template-react-vite-muijoy-tauri/_github/workflows/mobile.yml +0 -270
- package/template-react-vite-muijoy-tauri/src/lib/hooks/quit-hooks.ts +0 -24
- package/template-react-vite-muijoy-tauri/src/lib/steam.ts +0 -143
- package/template-react-vite-muijoy-tauri/src-tauri/Cargo.toml +0 -50
- package/template-react-vite-muijoy-tauri/src-tauri/build.rs +0 -46
- package/template-react-vite-muijoy-tauri/src-tauri/capabilities/default.json +0 -21
- package/template-react-vite-muijoy-tauri/src-tauri/icons/128x128.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/128x128@2x.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/32x32.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/StoreLogo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.icns +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.ico +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/src/lib.rs +0 -64
- package/template-react-vite-muijoy-tauri/src-tauri/src/main.rs +0 -6
- package/template-react-vite-muijoy-tauri/src-tauri/src/steam.rs +0 -238
- package/template-react-vite-muijoy-tauri/src-tauri/tauri.conf.json +0 -50
package/package.json
CHANGED
|
@@ -7,8 +7,15 @@
|
|
|
7
7
|
"type": "editor-browser",
|
|
8
8
|
"url": "http://localhost:5173",
|
|
9
9
|
"webRoot": "${workspaceFolder}",
|
|
10
|
-
"preLaunchTask": "
|
|
11
|
-
|
|
10
|
+
"preLaunchTask": "Restart Vite Dev Server"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Debug Game (Chrome)",
|
|
14
|
+
"request": "launch",
|
|
15
|
+
"type": "chrome",
|
|
16
|
+
"url": "http://localhost:5173",
|
|
17
|
+
"webRoot": "${workspaceFolder}",
|
|
18
|
+
"preLaunchTask": "Restart Vite Dev Server"
|
|
12
19
|
},
|
|
13
20
|
{
|
|
14
21
|
"name": "Debug Game Preview",
|
|
@@ -18,9 +18,10 @@
|
|
|
18
18
|
{
|
|
19
19
|
"label": "Start Vite Dev Server",
|
|
20
20
|
"type": "shell",
|
|
21
|
-
"command": "npm run dev",
|
|
21
|
+
"command": "echo $$ > /tmp/vite-watcher.pid; kill -- -$(cat /tmp/vite-dev.pid 2>/dev/null) 2>/dev/null; rm -f /tmp/vite-dev.log /tmp/vite-dev.pid; FORCE_COLOR=1 setsid npm run dev >/tmp/vite-dev.log 2>&1 & echo $! > /tmp/vite-dev.pid; tail -f /tmp/vite-dev.log",
|
|
22
22
|
"isBackground": true,
|
|
23
23
|
"dependsOn": ["Install Dependencies"],
|
|
24
|
+
"dependsOrder": "sequence",
|
|
24
25
|
"problemMatcher": {
|
|
25
26
|
"owner": "vite",
|
|
26
27
|
"pattern": {
|
|
@@ -29,20 +30,35 @@
|
|
|
29
30
|
"background": {
|
|
30
31
|
"activeOnStart": true,
|
|
31
32
|
"beginsPattern": ".",
|
|
32
|
-
"endsPattern": "Local:\\s+http://localhost
|
|
33
|
+
"endsPattern": "Local:\\s+http://localhost:\\d+/"
|
|
33
34
|
}
|
|
34
35
|
},
|
|
35
36
|
"presentation": {
|
|
36
37
|
"reveal": "always",
|
|
37
38
|
"panel": "dedicated",
|
|
38
|
-
"clear":
|
|
39
|
+
"clear": true,
|
|
40
|
+
"close": false
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"label": "Kill Vite Watcher",
|
|
45
|
+
"type": "shell",
|
|
46
|
+
"command": "kill $(cat /tmp/vite-watcher.pid 2>/dev/null) 2>/dev/null; rm -f /tmp/vite-watcher.pid; exit 0",
|
|
47
|
+
"presentation": {
|
|
48
|
+
"reveal": "never",
|
|
49
|
+
"panel": "dedicated",
|
|
39
50
|
"close": true
|
|
40
51
|
}
|
|
41
52
|
},
|
|
53
|
+
{
|
|
54
|
+
"label": "Restart Vite Dev Server",
|
|
55
|
+
"dependsOn": ["Kill Vite Watcher", "Start Vite Dev Server"],
|
|
56
|
+
"dependsOrder": "sequence"
|
|
57
|
+
},
|
|
42
58
|
{
|
|
43
59
|
"label": "Stop Vite Dev Server",
|
|
44
60
|
"type": "shell",
|
|
45
|
-
"command": "
|
|
61
|
+
"command": "kill -- -$(cat /tmp/vite-dev.pid 2>/dev/null) 2>/dev/null; kill $(cat /tmp/vite-watcher.pid 2>/dev/null) 2>/dev/null; rm -f /tmp/vite-dev.pid /tmp/vite-dev.log /tmp/vite-watcher.pid; exit 0",
|
|
46
62
|
"presentation": {
|
|
47
63
|
"reveal": "never",
|
|
48
64
|
"panel": "dedicated",
|
|
@@ -10,9 +10,10 @@
|
|
|
10
10
|
"license": "GPL-3.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui/react": "^1.5.0",
|
|
13
|
-
"@drincs/pixi-vn": "^1.8.
|
|
13
|
+
"@drincs/pixi-vn": "^1.8.13",
|
|
14
14
|
"@drincs/pixi-vn-spine": "^0.2.1",
|
|
15
15
|
"@tailwindcss/vite": "^4.3.0",
|
|
16
|
+
"@tanstack/hotkeys": "^0.8.0",
|
|
16
17
|
"@tanstack/react-devtools": "^0.10.5",
|
|
17
18
|
"@tanstack/react-hotkeys": "^0.10.0",
|
|
18
19
|
"@tanstack/react-hotkeys-devtools": "^0.7.0",
|
|
@@ -65,8 +66,8 @@
|
|
|
65
66
|
"@vitejs/plugin-react": "^6.0.2",
|
|
66
67
|
"globals": "^17.6.0",
|
|
67
68
|
"typescript": "~6.0.3",
|
|
68
|
-
"vite": "^8.0.
|
|
69
|
-
"vite-plugin-checker": "
|
|
69
|
+
"vite": "^8.0.16",
|
|
70
|
+
"vite-plugin-checker": "0.14.1",
|
|
70
71
|
"vite-plugin-pwa": "^1.3.0"
|
|
71
72
|
}
|
|
72
73
|
},
|
|
@@ -2113,9 +2114,9 @@
|
|
|
2113
2114
|
}
|
|
2114
2115
|
},
|
|
2115
2116
|
"node_modules/@drincs/pixi-vn": {
|
|
2116
|
-
"version": "1.8.
|
|
2117
|
-
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn/-/pixi-vn-1.8.
|
|
2118
|
-
"integrity": "sha512-
|
|
2117
|
+
"version": "1.8.13",
|
|
2118
|
+
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn/-/pixi-vn-1.8.13.tgz",
|
|
2119
|
+
"integrity": "sha512-UFo1cUYmy3FSgqKqjHkA5NpTXSwjk24WMZAkGe9tgoVLcexi1d+TmhJGSt1VloPjw/hHwYKaip2vyrmBACZ1fA==",
|
|
2119
2120
|
"license": "LGPL-2.1",
|
|
2120
2121
|
"workspaces": [
|
|
2121
2122
|
"sandbox"
|
|
@@ -4280,9 +4281,9 @@
|
|
|
4280
4281
|
"license": "MIT"
|
|
4281
4282
|
},
|
|
4282
4283
|
"node_modules/@oxc-project/types": {
|
|
4283
|
-
"version": "0.
|
|
4284
|
-
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.
|
|
4285
|
-
"integrity": "sha512-
|
|
4284
|
+
"version": "0.133.0",
|
|
4285
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
|
|
4286
|
+
"integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
|
|
4286
4287
|
"license": "MIT",
|
|
4287
4288
|
"funding": {
|
|
4288
4289
|
"url": "https://github.com/sponsors/Boshen"
|
|
@@ -4690,9 +4691,9 @@
|
|
|
4690
4691
|
}
|
|
4691
4692
|
},
|
|
4692
4693
|
"node_modules/@rolldown/binding-android-arm64": {
|
|
4693
|
-
"version": "1.0.
|
|
4694
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.
|
|
4695
|
-
"integrity": "sha512-
|
|
4694
|
+
"version": "1.0.3",
|
|
4695
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
|
|
4696
|
+
"integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
|
|
4696
4697
|
"cpu": [
|
|
4697
4698
|
"arm64"
|
|
4698
4699
|
],
|
|
@@ -4706,9 +4707,9 @@
|
|
|
4706
4707
|
}
|
|
4707
4708
|
},
|
|
4708
4709
|
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
4709
|
-
"version": "1.0.
|
|
4710
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.
|
|
4711
|
-
"integrity": "sha512-
|
|
4710
|
+
"version": "1.0.3",
|
|
4711
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
|
|
4712
|
+
"integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
|
|
4712
4713
|
"cpu": [
|
|
4713
4714
|
"arm64"
|
|
4714
4715
|
],
|
|
@@ -4722,9 +4723,9 @@
|
|
|
4722
4723
|
}
|
|
4723
4724
|
},
|
|
4724
4725
|
"node_modules/@rolldown/binding-darwin-x64": {
|
|
4725
|
-
"version": "1.0.
|
|
4726
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.
|
|
4727
|
-
"integrity": "sha512-
|
|
4726
|
+
"version": "1.0.3",
|
|
4727
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
|
|
4728
|
+
"integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
|
|
4728
4729
|
"cpu": [
|
|
4729
4730
|
"x64"
|
|
4730
4731
|
],
|
|
@@ -4738,9 +4739,9 @@
|
|
|
4738
4739
|
}
|
|
4739
4740
|
},
|
|
4740
4741
|
"node_modules/@rolldown/binding-freebsd-x64": {
|
|
4741
|
-
"version": "1.0.
|
|
4742
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.
|
|
4743
|
-
"integrity": "sha512-
|
|
4742
|
+
"version": "1.0.3",
|
|
4743
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
|
|
4744
|
+
"integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
|
|
4744
4745
|
"cpu": [
|
|
4745
4746
|
"x64"
|
|
4746
4747
|
],
|
|
@@ -4754,9 +4755,9 @@
|
|
|
4754
4755
|
}
|
|
4755
4756
|
},
|
|
4756
4757
|
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
|
|
4757
|
-
"version": "1.0.
|
|
4758
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.
|
|
4759
|
-
"integrity": "sha512-
|
|
4758
|
+
"version": "1.0.3",
|
|
4759
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
|
|
4760
|
+
"integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
|
|
4760
4761
|
"cpu": [
|
|
4761
4762
|
"arm"
|
|
4762
4763
|
],
|
|
@@ -4770,12 +4771,15 @@
|
|
|
4770
4771
|
}
|
|
4771
4772
|
},
|
|
4772
4773
|
"node_modules/@rolldown/binding-linux-arm64-gnu": {
|
|
4773
|
-
"version": "1.0.
|
|
4774
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.
|
|
4775
|
-
"integrity": "sha512-
|
|
4774
|
+
"version": "1.0.3",
|
|
4775
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
|
|
4776
|
+
"integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
|
|
4776
4777
|
"cpu": [
|
|
4777
4778
|
"arm64"
|
|
4778
4779
|
],
|
|
4780
|
+
"libc": [
|
|
4781
|
+
"glibc"
|
|
4782
|
+
],
|
|
4779
4783
|
"license": "MIT",
|
|
4780
4784
|
"optional": true,
|
|
4781
4785
|
"os": [
|
|
@@ -4786,12 +4790,15 @@
|
|
|
4786
4790
|
}
|
|
4787
4791
|
},
|
|
4788
4792
|
"node_modules/@rolldown/binding-linux-arm64-musl": {
|
|
4789
|
-
"version": "1.0.
|
|
4790
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.
|
|
4791
|
-
"integrity": "sha512-
|
|
4793
|
+
"version": "1.0.3",
|
|
4794
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
|
|
4795
|
+
"integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
|
|
4792
4796
|
"cpu": [
|
|
4793
4797
|
"arm64"
|
|
4794
4798
|
],
|
|
4799
|
+
"libc": [
|
|
4800
|
+
"musl"
|
|
4801
|
+
],
|
|
4795
4802
|
"license": "MIT",
|
|
4796
4803
|
"optional": true,
|
|
4797
4804
|
"os": [
|
|
@@ -4802,12 +4809,15 @@
|
|
|
4802
4809
|
}
|
|
4803
4810
|
},
|
|
4804
4811
|
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
|
|
4805
|
-
"version": "1.0.
|
|
4806
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.
|
|
4807
|
-
"integrity": "sha512-
|
|
4812
|
+
"version": "1.0.3",
|
|
4813
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
|
|
4814
|
+
"integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
|
|
4808
4815
|
"cpu": [
|
|
4809
4816
|
"ppc64"
|
|
4810
4817
|
],
|
|
4818
|
+
"libc": [
|
|
4819
|
+
"glibc"
|
|
4820
|
+
],
|
|
4811
4821
|
"license": "MIT",
|
|
4812
4822
|
"optional": true,
|
|
4813
4823
|
"os": [
|
|
@@ -4818,12 +4828,15 @@
|
|
|
4818
4828
|
}
|
|
4819
4829
|
},
|
|
4820
4830
|
"node_modules/@rolldown/binding-linux-s390x-gnu": {
|
|
4821
|
-
"version": "1.0.
|
|
4822
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.
|
|
4823
|
-
"integrity": "sha512-
|
|
4831
|
+
"version": "1.0.3",
|
|
4832
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
|
|
4833
|
+
"integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
|
|
4824
4834
|
"cpu": [
|
|
4825
4835
|
"s390x"
|
|
4826
4836
|
],
|
|
4837
|
+
"libc": [
|
|
4838
|
+
"glibc"
|
|
4839
|
+
],
|
|
4827
4840
|
"license": "MIT",
|
|
4828
4841
|
"optional": true,
|
|
4829
4842
|
"os": [
|
|
@@ -4834,12 +4847,15 @@
|
|
|
4834
4847
|
}
|
|
4835
4848
|
},
|
|
4836
4849
|
"node_modules/@rolldown/binding-linux-x64-gnu": {
|
|
4837
|
-
"version": "1.0.
|
|
4838
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.
|
|
4839
|
-
"integrity": "sha512-
|
|
4850
|
+
"version": "1.0.3",
|
|
4851
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
|
|
4852
|
+
"integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
|
|
4840
4853
|
"cpu": [
|
|
4841
4854
|
"x64"
|
|
4842
4855
|
],
|
|
4856
|
+
"libc": [
|
|
4857
|
+
"glibc"
|
|
4858
|
+
],
|
|
4843
4859
|
"license": "MIT",
|
|
4844
4860
|
"optional": true,
|
|
4845
4861
|
"os": [
|
|
@@ -4850,12 +4866,15 @@
|
|
|
4850
4866
|
}
|
|
4851
4867
|
},
|
|
4852
4868
|
"node_modules/@rolldown/binding-linux-x64-musl": {
|
|
4853
|
-
"version": "1.0.
|
|
4854
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.
|
|
4855
|
-
"integrity": "sha512-
|
|
4869
|
+
"version": "1.0.3",
|
|
4870
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
|
|
4871
|
+
"integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
|
|
4856
4872
|
"cpu": [
|
|
4857
4873
|
"x64"
|
|
4858
4874
|
],
|
|
4875
|
+
"libc": [
|
|
4876
|
+
"musl"
|
|
4877
|
+
],
|
|
4859
4878
|
"license": "MIT",
|
|
4860
4879
|
"optional": true,
|
|
4861
4880
|
"os": [
|
|
@@ -4866,9 +4885,9 @@
|
|
|
4866
4885
|
}
|
|
4867
4886
|
},
|
|
4868
4887
|
"node_modules/@rolldown/binding-openharmony-arm64": {
|
|
4869
|
-
"version": "1.0.
|
|
4870
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.
|
|
4871
|
-
"integrity": "sha512-
|
|
4888
|
+
"version": "1.0.3",
|
|
4889
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
|
|
4890
|
+
"integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
|
|
4872
4891
|
"cpu": [
|
|
4873
4892
|
"arm64"
|
|
4874
4893
|
],
|
|
@@ -4882,9 +4901,9 @@
|
|
|
4882
4901
|
}
|
|
4883
4902
|
},
|
|
4884
4903
|
"node_modules/@rolldown/binding-wasm32-wasi": {
|
|
4885
|
-
"version": "1.0.
|
|
4886
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.
|
|
4887
|
-
"integrity": "sha512-
|
|
4904
|
+
"version": "1.0.3",
|
|
4905
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
|
|
4906
|
+
"integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
|
|
4888
4907
|
"cpu": [
|
|
4889
4908
|
"wasm32"
|
|
4890
4909
|
],
|
|
@@ -4900,9 +4919,9 @@
|
|
|
4900
4919
|
}
|
|
4901
4920
|
},
|
|
4902
4921
|
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
|
4903
|
-
"version": "1.0.
|
|
4904
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.
|
|
4905
|
-
"integrity": "sha512-
|
|
4922
|
+
"version": "1.0.3",
|
|
4923
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
|
|
4924
|
+
"integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
|
|
4906
4925
|
"cpu": [
|
|
4907
4926
|
"arm64"
|
|
4908
4927
|
],
|
|
@@ -4916,9 +4935,9 @@
|
|
|
4916
4935
|
}
|
|
4917
4936
|
},
|
|
4918
4937
|
"node_modules/@rolldown/binding-win32-x64-msvc": {
|
|
4919
|
-
"version": "1.0.
|
|
4920
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.
|
|
4921
|
-
"integrity": "sha512-
|
|
4938
|
+
"version": "1.0.3",
|
|
4939
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
|
|
4940
|
+
"integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
|
|
4922
4941
|
"cpu": [
|
|
4923
4942
|
"x64"
|
|
4924
4943
|
],
|
|
@@ -15208,12 +15227,12 @@
|
|
|
15208
15227
|
}
|
|
15209
15228
|
},
|
|
15210
15229
|
"node_modules/rolldown": {
|
|
15211
|
-
"version": "1.0.
|
|
15212
|
-
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.
|
|
15213
|
-
"integrity": "sha512-
|
|
15230
|
+
"version": "1.0.3",
|
|
15231
|
+
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
|
|
15232
|
+
"integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
|
|
15214
15233
|
"license": "MIT",
|
|
15215
15234
|
"dependencies": {
|
|
15216
|
-
"@oxc-project/types": "=0.
|
|
15235
|
+
"@oxc-project/types": "=0.133.0",
|
|
15217
15236
|
"@rolldown/pluginutils": "^1.0.0"
|
|
15218
15237
|
},
|
|
15219
15238
|
"bin": {
|
|
@@ -15223,21 +15242,21 @@
|
|
|
15223
15242
|
"node": "^20.19.0 || >=22.12.0"
|
|
15224
15243
|
},
|
|
15225
15244
|
"optionalDependencies": {
|
|
15226
|
-
"@rolldown/binding-android-arm64": "1.0.
|
|
15227
|
-
"@rolldown/binding-darwin-arm64": "1.0.
|
|
15228
|
-
"@rolldown/binding-darwin-x64": "1.0.
|
|
15229
|
-
"@rolldown/binding-freebsd-x64": "1.0.
|
|
15230
|
-
"@rolldown/binding-linux-arm-gnueabihf": "1.0.
|
|
15231
|
-
"@rolldown/binding-linux-arm64-gnu": "1.0.
|
|
15232
|
-
"@rolldown/binding-linux-arm64-musl": "1.0.
|
|
15233
|
-
"@rolldown/binding-linux-ppc64-gnu": "1.0.
|
|
15234
|
-
"@rolldown/binding-linux-s390x-gnu": "1.0.
|
|
15235
|
-
"@rolldown/binding-linux-x64-gnu": "1.0.
|
|
15236
|
-
"@rolldown/binding-linux-x64-musl": "1.0.
|
|
15237
|
-
"@rolldown/binding-openharmony-arm64": "1.0.
|
|
15238
|
-
"@rolldown/binding-wasm32-wasi": "1.0.
|
|
15239
|
-
"@rolldown/binding-win32-arm64-msvc": "1.0.
|
|
15240
|
-
"@rolldown/binding-win32-x64-msvc": "1.0.
|
|
15245
|
+
"@rolldown/binding-android-arm64": "1.0.3",
|
|
15246
|
+
"@rolldown/binding-darwin-arm64": "1.0.3",
|
|
15247
|
+
"@rolldown/binding-darwin-x64": "1.0.3",
|
|
15248
|
+
"@rolldown/binding-freebsd-x64": "1.0.3",
|
|
15249
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
|
|
15250
|
+
"@rolldown/binding-linux-arm64-gnu": "1.0.3",
|
|
15251
|
+
"@rolldown/binding-linux-arm64-musl": "1.0.3",
|
|
15252
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.0.3",
|
|
15253
|
+
"@rolldown/binding-linux-s390x-gnu": "1.0.3",
|
|
15254
|
+
"@rolldown/binding-linux-x64-gnu": "1.0.3",
|
|
15255
|
+
"@rolldown/binding-linux-x64-musl": "1.0.3",
|
|
15256
|
+
"@rolldown/binding-openharmony-arm64": "1.0.3",
|
|
15257
|
+
"@rolldown/binding-wasm32-wasi": "1.0.3",
|
|
15258
|
+
"@rolldown/binding-win32-arm64-msvc": "1.0.3",
|
|
15259
|
+
"@rolldown/binding-win32-x64-msvc": "1.0.3"
|
|
15241
15260
|
}
|
|
15242
15261
|
},
|
|
15243
15262
|
"node_modules/rollup": {
|
|
@@ -16438,9 +16457,9 @@
|
|
|
16438
16457
|
}
|
|
16439
16458
|
},
|
|
16440
16459
|
"node_modules/tinyglobby": {
|
|
16441
|
-
"version": "0.2.
|
|
16442
|
-
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.
|
|
16443
|
-
"integrity": "sha512-
|
|
16460
|
+
"version": "0.2.17",
|
|
16461
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
16462
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
16444
16463
|
"license": "MIT",
|
|
16445
16464
|
"dependencies": {
|
|
16446
16465
|
"fdir": "^6.5.0",
|
|
@@ -17239,16 +17258,16 @@
|
|
|
17239
17258
|
}
|
|
17240
17259
|
},
|
|
17241
17260
|
"node_modules/vite": {
|
|
17242
|
-
"version": "8.0.
|
|
17243
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.
|
|
17244
|
-
"integrity": "sha512-
|
|
17261
|
+
"version": "8.0.16",
|
|
17262
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
|
|
17263
|
+
"integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
|
|
17245
17264
|
"license": "MIT",
|
|
17246
17265
|
"dependencies": {
|
|
17247
17266
|
"lightningcss": "^1.32.0",
|
|
17248
17267
|
"picomatch": "^4.0.4",
|
|
17249
17268
|
"postcss": "^8.5.15",
|
|
17250
|
-
"rolldown": "1.0.
|
|
17251
|
-
"tinyglobby": "^0.2.
|
|
17269
|
+
"rolldown": "1.0.3",
|
|
17270
|
+
"tinyglobby": "^0.2.17"
|
|
17252
17271
|
},
|
|
17253
17272
|
"bin": {
|
|
17254
17273
|
"vite": "bin/vite.js"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"@drincs/pixi-vn": "^1.8.13",
|
|
23
23
|
"@drincs/pixi-vn-spine": "^0.2.1",
|
|
24
24
|
"@tailwindcss/vite": "^4.3.0",
|
|
25
|
+
"@tanstack/hotkeys": "^0.8.0",
|
|
25
26
|
"@tanstack/react-devtools": "^0.10.5",
|
|
26
27
|
"@tanstack/react-hotkeys": "^0.10.0",
|
|
27
28
|
"@tanstack/react-hotkeys-devtools": "^0.7.0",
|
|
@@ -74,8 +75,8 @@
|
|
|
74
75
|
"@vitejs/plugin-react": "^6.0.2",
|
|
75
76
|
"globals": "^17.6.0",
|
|
76
77
|
"typescript": "~6.0.3",
|
|
77
|
-
"vite": "^8.0.
|
|
78
|
-
"vite-plugin-checker": "
|
|
78
|
+
"vite": "^8.0.16",
|
|
79
|
+
"vite-plugin-checker": "0.14.1",
|
|
79
80
|
"vite-plugin-pwa": "^1.3.0"
|
|
80
81
|
},
|
|
81
82
|
"keywords": [
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Spinner } from "@/components/ui/spinner";
|
|
2
|
-
import { motion } from "motion/react";
|
|
3
2
|
|
|
4
3
|
export function PendingComponent() {
|
|
5
4
|
return (
|
|
@@ -12,49 +11,11 @@ export function PendingComponent() {
|
|
|
12
11
|
}
|
|
13
12
|
|
|
14
13
|
export function AnimatedDots() {
|
|
15
|
-
const dots = [
|
|
16
|
-
{ id: "dot-1", char: "." },
|
|
17
|
-
{ id: "dot-2", char: "." },
|
|
18
|
-
{ id: "dot-3", char: "." },
|
|
19
|
-
]; // I caratteri da animare
|
|
20
|
-
|
|
21
14
|
return (
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
initial="closed"
|
|
28
|
-
animate="open"
|
|
29
|
-
>
|
|
30
|
-
{dots.map((dot) => (
|
|
31
|
-
<motion.span
|
|
32
|
-
key={dot.id}
|
|
33
|
-
initial={{ y: 0 }}
|
|
34
|
-
variants={{
|
|
35
|
-
open: {
|
|
36
|
-
y: 5,
|
|
37
|
-
transition: {
|
|
38
|
-
repeat: Infinity,
|
|
39
|
-
duration: 0.5,
|
|
40
|
-
ease: "easeInOut",
|
|
41
|
-
repeatType: "reverse",
|
|
42
|
-
},
|
|
43
|
-
},
|
|
44
|
-
closed: {
|
|
45
|
-
y: 0,
|
|
46
|
-
transition: {
|
|
47
|
-
repeat: Infinity,
|
|
48
|
-
duration: 0.5,
|
|
49
|
-
ease: "easeInOut",
|
|
50
|
-
repeatType: "reverse",
|
|
51
|
-
},
|
|
52
|
-
},
|
|
53
|
-
}}
|
|
54
|
-
>
|
|
55
|
-
{dot.char}
|
|
56
|
-
</motion.span>
|
|
57
|
-
))}
|
|
58
|
-
</motion.span>
|
|
15
|
+
<span className="flex pointer-events-none select-none">
|
|
16
|
+
<span className="animate-bounce [animation-delay:0s]">.</span>
|
|
17
|
+
<span className="animate-bounce [animation-delay:0.2s]">.</span>
|
|
18
|
+
<span className="animate-bounce [animation-delay:0.4s]">.</span>
|
|
19
|
+
</span>
|
|
59
20
|
);
|
|
60
21
|
}
|
|
@@ -19,7 +19,7 @@ export function About() {
|
|
|
19
19
|
<span className="font-medium text-muted-foreground">
|
|
20
20
|
{t("powered_by")}{" "}
|
|
21
21
|
<a
|
|
22
|
-
href="https://pixi-vn.
|
|
22
|
+
href="https://pixi-vn.com"
|
|
23
23
|
target="_blank"
|
|
24
24
|
rel="noopener noreferrer"
|
|
25
25
|
className="underline hover:text-foreground"
|
|
@@ -27,7 +27,7 @@ export function QuickTools() {
|
|
|
27
27
|
const autoEnabled = useSelector(AutoSettings.store, (state) => state.enabled);
|
|
28
28
|
const queryClient = useQueryClient();
|
|
29
29
|
const { data: lastSave = null } = useQueryLastSave();
|
|
30
|
-
const { data: canGoBack =
|
|
30
|
+
const { data: canGoBack = false } = useQueryCanGoBack();
|
|
31
31
|
const nextStepLoading = useSelector(GameStatus.store, (state) => state.loading);
|
|
32
32
|
const { goBack } = useNarrationFunctions();
|
|
33
33
|
const { openAlertDialog } = useAlertDialog();
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { AnimatedDots } from "@/components/loading";
|
|
2
2
|
import { QuickTools } from "@/components/quick-tools";
|
|
3
|
-
import { AspectRatio } from "@/components/ui/aspect-ratio";
|
|
4
3
|
import { Card, CardContent } from "@/components/ui/card";
|
|
5
4
|
import { Image } from "@/components/ui/image";
|
|
6
5
|
import { ResizableHandle, ResizablePanel, ResizablePanelGroup } from "@/components/ui/resizable";
|
|
@@ -127,8 +126,8 @@ export function Text({ paragraphRef }: { paragraphRef: RefObject<HTMLDivElement
|
|
|
127
126
|
|
|
128
127
|
export function CharacterIcon({ alt, icon }: { icon: string; alt: string }) {
|
|
129
128
|
return (
|
|
130
|
-
<
|
|
129
|
+
<div className="h-full w-full">
|
|
131
130
|
<Image src={icon} layout="fullWidth" alt={alt} className="h-full w-full object-cover" />
|
|
132
|
-
</
|
|
131
|
+
</div>
|
|
133
132
|
);
|
|
134
133
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { INTERFACE_DATA_USE_QUERY_KEY } from "@/constants";
|
|
2
2
|
import { type CharacterInterface, narration, stepHistory } from "@drincs/pixi-vn";
|
|
3
|
-
import { useQuery, useQueryClient } from "@tanstack/react-query";
|
|
3
|
+
import { keepPreviousData, useQuery, useQueryClient } from "@tanstack/react-query";
|
|
4
4
|
import { useTranslation } from "react-i18next";
|
|
5
5
|
|
|
6
6
|
const CAN_GO_BACK_USE_QUERY_KEY = "can_go_back_use_query_key";
|
|
@@ -24,6 +24,7 @@ export function useQueryChoiceMenuOptions() {
|
|
|
24
24
|
? t(option.text)
|
|
25
25
|
: option.text.map((text) => t(text)).join(" "),
|
|
26
26
|
})) || [],
|
|
27
|
+
placeholderData: keepPreviousData,
|
|
27
28
|
});
|
|
28
29
|
}
|
|
29
30
|
|
|
@@ -36,6 +37,7 @@ export function useQueryInputValue<T>() {
|
|
|
36
37
|
type: narration.inputType,
|
|
37
38
|
currentValue: narration.inputValue as T | undefined,
|
|
38
39
|
}),
|
|
40
|
+
placeholderData: keepPreviousData,
|
|
39
41
|
});
|
|
40
42
|
}
|
|
41
43
|
|
|
@@ -86,6 +88,7 @@ export function useQueryDialogue() {
|
|
|
86
88
|
character: character,
|
|
87
89
|
};
|
|
88
90
|
},
|
|
91
|
+
placeholderData: keepPreviousData,
|
|
89
92
|
});
|
|
90
93
|
}
|
|
91
94
|
|
|
@@ -144,5 +147,6 @@ export function useQueryNarrativeHistory({ searchString }: { searchString?: stri
|
|
|
144
147
|
);
|
|
145
148
|
});
|
|
146
149
|
},
|
|
150
|
+
placeholderData: keepPreviousData,
|
|
147
151
|
});
|
|
148
152
|
}
|
|
@@ -8,7 +8,7 @@ let assetsInitialized = false;
|
|
|
8
8
|
/**
|
|
9
9
|
* Define all the assets that will be used in the game.
|
|
10
10
|
* This function will be called before the game starts.
|
|
11
|
-
* You can read more about assets management in the documentation: https://pixi-vn.
|
|
11
|
+
* You can read more about assets management in the documentation: https://pixi-vn.com/start/assets-management.html
|
|
12
12
|
*/
|
|
13
13
|
export async function defineAssets() {
|
|
14
14
|
if (!assetsInitialized) {
|
|
@@ -7,8 +7,15 @@
|
|
|
7
7
|
"type": "editor-browser",
|
|
8
8
|
"url": "http://localhost:5173",
|
|
9
9
|
"webRoot": "${workspaceFolder}",
|
|
10
|
-
"preLaunchTask": "
|
|
11
|
-
|
|
10
|
+
"preLaunchTask": "Restart Vite Dev Server"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Debug Game (Chrome)",
|
|
14
|
+
"request": "launch",
|
|
15
|
+
"type": "chrome",
|
|
16
|
+
"url": "http://localhost:5173",
|
|
17
|
+
"webRoot": "${workspaceFolder}",
|
|
18
|
+
"preLaunchTask": "Restart Vite Dev Server"
|
|
12
19
|
},
|
|
13
20
|
{
|
|
14
21
|
"name": "Debug Game Preview",
|