@cosmicdrift/kumiko-framework 0.135.0 → 0.136.1
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-framework",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.136.1",
|
|
4
4
|
"description": "Framework core — engine, pipeline, API, DB, and every other bit that makes Kumiko go.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"zod": "^4.4.3"
|
|
190
190
|
},
|
|
191
191
|
"devDependencies": {
|
|
192
|
-
"@cosmicdrift/kumiko-dispatcher-live": "0.
|
|
192
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.136.1",
|
|
193
193
|
"bun-types": "^1.3.13",
|
|
194
194
|
"pino-pretty": "^13.1.3"
|
|
195
195
|
},
|
|
@@ -346,6 +346,13 @@ export type DashboardStatPanel = {
|
|
|
346
346
|
readonly valueField: string;
|
|
347
347
|
readonly subField?: string;
|
|
348
348
|
readonly toneField?: string;
|
|
349
|
+
/** Optionaler Delta-Chip (z.B. "↓ 23 %") neben dem Label. Nur wenn BEIDE
|
|
350
|
+
* Felder gesetzt sind UND der Query-Handler sie liefert, rendert der Chip
|
|
351
|
+
* — sonst bleibt die Kachel wie ohne Delta. `deltaToneField` fällt auf
|
|
352
|
+
* `toneField`/"default" zurück, wenn ungesetzt. */
|
|
353
|
+
readonly deltaField?: string;
|
|
354
|
+
readonly deltaDirectionField?: string;
|
|
355
|
+
readonly deltaToneField?: string;
|
|
349
356
|
};
|
|
350
357
|
|
|
351
358
|
// Query-Result-Contract: `{ points: { atMs, value | null }[],
|