blacktrigram 0.7.119 → 0.7.121
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/lib/components/screens/intro/IntroScreen3D.js +1 -1
- package/lib/components/shared/ui/SplashScreen.js +2 -2
- package/lib/systems/bodypart/CombatInjuryIntegration.d.ts +1 -1
- package/lib/systems/bodypart/PlayerInjuryTrackingManager.d.ts +1 -1
- package/lib/systems/physics/PhysicalReachCalculator.d.ts +1 -1
- package/package.json +18 -18
|
@@ -21,7 +21,7 @@ import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
|
21
21
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
22
22
|
import { Canvas } from "@react-three/fiber";
|
|
23
23
|
//#region src/components/screens/intro/IntroScreen3D.tsx
|
|
24
|
-
var APP_VERSION = "0.7.
|
|
24
|
+
var APP_VERSION = "0.7.121";
|
|
25
25
|
var MENU_ITEMS = [
|
|
26
26
|
{
|
|
27
27
|
mode: GameMode.VERSUS,
|
|
@@ -183,7 +183,7 @@ var SplashScreen = ({ onStart, width, height }) => {
|
|
|
183
183
|
}),
|
|
184
184
|
/* @__PURE__ */ jsxs("div", {
|
|
185
185
|
role: "contentinfo",
|
|
186
|
-
"aria-label": `Application version 0.7.
|
|
186
|
+
"aria-label": `Application version 0.7.121`,
|
|
187
187
|
style: {
|
|
188
188
|
position: "absolute",
|
|
189
189
|
bottom: "20px",
|
|
@@ -192,7 +192,7 @@ var SplashScreen = ({ onStart, width, height }) => {
|
|
|
192
192
|
fontSize: "10px",
|
|
193
193
|
zIndex: 1
|
|
194
194
|
},
|
|
195
|
-
children: ["v", "0.7.
|
|
195
|
+
children: ["v", "0.7.121"]
|
|
196
196
|
})
|
|
197
197
|
]
|
|
198
198
|
});
|
|
@@ -67,7 +67,7 @@ export declare const DEFAULT_COMBAT_INJURY_CONFIG: Omit<CombatInjuryConfig, 'tra
|
|
|
67
67
|
* @example
|
|
68
68
|
* ```typescript
|
|
69
69
|
* // Recommended: Use PlayerInjuryTrackingManager for per-player tracking
|
|
70
|
-
* import { playerInjuryManager } from '
|
|
70
|
+
* import { playerInjuryManager } from '.';
|
|
71
71
|
* const integration = playerInjuryManager.getIntegrationForPlayer('player-1');
|
|
72
72
|
*
|
|
73
73
|
* // Or create with explicit tracker for testing/custom scenarios
|
|
@@ -113,7 +113,7 @@ export declare class PlayerInjuryTrackingManager {
|
|
|
113
113
|
*
|
|
114
114
|
* @example
|
|
115
115
|
* ```typescript
|
|
116
|
-
* import { playerInjuryManager } from '
|
|
116
|
+
* import { playerInjuryManager } from '.';
|
|
117
117
|
*
|
|
118
118
|
* // In combat code:
|
|
119
119
|
* const defenderIntegration = playerInjuryManager.getIntegrationForPlayer(defender.id);
|
|
@@ -239,7 +239,7 @@ export declare class PhysicalReachCalculator {
|
|
|
239
239
|
*
|
|
240
240
|
* @example
|
|
241
241
|
* ```typescript
|
|
242
|
-
* import { physicalReachCalculator } from '
|
|
242
|
+
* import { physicalReachCalculator } from './PhysicalReachCalculator';
|
|
243
243
|
*
|
|
244
244
|
* const reach = physicalReachCalculator.calculateReach(
|
|
245
245
|
* playerPhysical,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blacktrigram",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.121",
|
|
4
4
|
"description": "Black Trigram (흑괘) - Korean Martial Arts Combat Simulator. Reusable game systems, combat mechanics, animation framework, and Korean martial arts data built with React, Three.js, and TypeScript.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -186,10 +186,10 @@
|
|
|
186
186
|
"postprocessing": "6.0.0",
|
|
187
187
|
"react": "19.0.0",
|
|
188
188
|
"react-dom": "19.0.0",
|
|
189
|
-
"three": "0.
|
|
189
|
+
"three": "0.186.0"
|
|
190
190
|
},
|
|
191
191
|
"devDependencies": {
|
|
192
|
-
"@aws-sdk/client-bedrock-runtime": "3.
|
|
192
|
+
"@aws-sdk/client-bedrock-runtime": "3.1128.0",
|
|
193
193
|
"@eslint/js": "10.0.1",
|
|
194
194
|
"@react-three/drei": "10.7.8",
|
|
195
195
|
"@react-three/fiber": "9.7.0",
|
|
@@ -197,43 +197,43 @@
|
|
|
197
197
|
"@testing-library/dom": "10.4.1",
|
|
198
198
|
"@testing-library/jest-dom": "7.0.1",
|
|
199
199
|
"@testing-library/react": "16.3.3",
|
|
200
|
-
"@testing-library/user-event": "14.6.
|
|
201
|
-
"@types/node": "26.
|
|
200
|
+
"@testing-library/user-event": "14.6.7",
|
|
201
|
+
"@types/node": "26.5.0",
|
|
202
202
|
"@types/react": "19.2.18",
|
|
203
|
-
"@types/react-dom": "19.2.
|
|
203
|
+
"@types/react-dom": "19.2.7",
|
|
204
204
|
"@types/three": "0.185.4",
|
|
205
205
|
"@vitejs/plugin-react": "6.1.1",
|
|
206
|
-
"@vitest/coverage-v8": "
|
|
207
|
-
"@vitest/ui": "
|
|
206
|
+
"@vitest/coverage-v8": "5.0.0",
|
|
207
|
+
"@vitest/ui": "5.0.0",
|
|
208
208
|
"cypress": "16.0.0",
|
|
209
209
|
"cypress-junit-reporter": "1.3.1",
|
|
210
210
|
"cypress-multi-reporters": "2.0.5",
|
|
211
211
|
"cypress-wait-until": "3.0.2",
|
|
212
212
|
"dependency-cruiser": "18.2.0",
|
|
213
213
|
"dotenv": "17.4.2",
|
|
214
|
-
"eslint": "10.
|
|
214
|
+
"eslint": "10.10.0",
|
|
215
215
|
"eslint-plugin-react-hooks": "7.1.1",
|
|
216
|
-
"eslint-plugin-react-refresh": "0.5.
|
|
216
|
+
"eslint-plugin-react-refresh": "0.5.6",
|
|
217
217
|
"globals": "17.12.0",
|
|
218
218
|
"jest-axe": "11.0.0",
|
|
219
219
|
"jsdom": "29.1.1",
|
|
220
|
-
"knip": "6.
|
|
220
|
+
"knip": "6.35.0",
|
|
221
221
|
"license-compliance": "4.0.0",
|
|
222
222
|
"mermaid": "11.17.2",
|
|
223
223
|
"mocha-junit-reporter": "2.2.1",
|
|
224
224
|
"mochawesome": "8.0.1",
|
|
225
225
|
"mochawesome-merge": "5.1.1",
|
|
226
226
|
"mochawesome-report-generator": "6.3.2",
|
|
227
|
-
"openai": "7.
|
|
228
|
-
"playwright": "1.
|
|
227
|
+
"openai": "7.12.1",
|
|
228
|
+
"playwright": "1.63.0",
|
|
229
229
|
"postprocessing": "6.39.4",
|
|
230
230
|
"react": "19.2.8",
|
|
231
231
|
"react-dom": "19.2.8",
|
|
232
232
|
"start-server-and-test": "3.0.12",
|
|
233
|
-
"three": "0.
|
|
233
|
+
"three": "0.186.0",
|
|
234
234
|
"ts-morph": "28.0.0",
|
|
235
235
|
"ts-node": "10.9.2",
|
|
236
|
-
"tsc-alias": "1.9.
|
|
236
|
+
"tsc-alias": "1.9.4",
|
|
237
237
|
"tsx": "4.23.13",
|
|
238
238
|
"typedoc": "0.28.20",
|
|
239
239
|
"typedoc-plugin-markdown": "4.13.0",
|
|
@@ -241,11 +241,11 @@
|
|
|
241
241
|
"typedoc-plugin-missing-exports": "4.1.4",
|
|
242
242
|
"typescript": "npm:@typescript/typescript6@6.0.2",
|
|
243
243
|
"typescript-7": "npm:typescript@7.0.2",
|
|
244
|
-
"typescript-eslint": "8.
|
|
244
|
+
"typescript-eslint": "8.70.0",
|
|
245
245
|
"vite": "8.2.2",
|
|
246
246
|
"vite-bundle-analyzer": "1.3.9",
|
|
247
247
|
"vite-tsconfig-paths": "6.1.1",
|
|
248
|
-
"vitest": "
|
|
248
|
+
"vitest": "5.0.0"
|
|
249
249
|
},
|
|
250
250
|
"overrides": {
|
|
251
251
|
"eslint-plugin-react-hooks": {
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
},
|
|
254
254
|
"glob": "13.0.6",
|
|
255
255
|
"js-yaml": "5.2.2",
|
|
256
|
-
"three": "0.
|
|
256
|
+
"three": "0.186.0",
|
|
257
257
|
"@types/three": "0.185.4",
|
|
258
258
|
"joi": "17.13.4",
|
|
259
259
|
"diff": "8.0.3",
|