narrat 3.10.3 → 3.10.4
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/dist/config/common-config.d.ts +2 -8
- package/dist/config/config-input.d.ts +2 -8
- package/dist/data/all-stores.d.ts +5 -18
- package/dist/inputs/Inputs.d.ts +1 -0
- package/dist/narrat.es.js +136 -131
- package/dist/narrat.es.js.map +1 -1
- package/dist/narrat.umd.js +21 -21
- package/dist/narrat.umd.js.map +1 -1
- package/dist/stores/main-store.d.ts +4 -16
- package/dist/utils/data-helpers.d.ts +1 -4
- package/package.json +1 -1
|
@@ -527,10 +527,7 @@ export declare const useMain: import("pinia").StoreDefinition<"main", MainState,
|
|
|
527
527
|
slots: number;
|
|
528
528
|
mode: string;
|
|
529
529
|
} | undefined;
|
|
530
|
-
hotkeys?:
|
|
531
|
-
debugMenu?: string | undefined;
|
|
532
|
-
jumpMenu?: string | undefined;
|
|
533
|
-
} | undefined;
|
|
530
|
+
hotkeys?: Record<string, string | boolean> | undefined;
|
|
534
531
|
gameTitle: string;
|
|
535
532
|
saveFileName: string;
|
|
536
533
|
layout: {
|
|
@@ -1195,10 +1192,7 @@ export declare const useMain: import("pinia").StoreDefinition<"main", MainState,
|
|
|
1195
1192
|
slots: number;
|
|
1196
1193
|
mode: string;
|
|
1197
1194
|
} | undefined;
|
|
1198
|
-
hotkeys?:
|
|
1199
|
-
debugMenu?: string | undefined;
|
|
1200
|
-
jumpMenu?: string | undefined;
|
|
1201
|
-
} | undefined;
|
|
1195
|
+
hotkeys?: Record<string, string | boolean> | undefined;
|
|
1202
1196
|
gameTitle: string;
|
|
1203
1197
|
saveFileName: string;
|
|
1204
1198
|
layout: {
|
|
@@ -1863,10 +1857,7 @@ export declare const useMain: import("pinia").StoreDefinition<"main", MainState,
|
|
|
1863
1857
|
slots: number;
|
|
1864
1858
|
mode: string;
|
|
1865
1859
|
} | undefined;
|
|
1866
|
-
hotkeys?:
|
|
1867
|
-
debugMenu?: string | undefined;
|
|
1868
|
-
jumpMenu?: string | undefined;
|
|
1869
|
-
} | undefined;
|
|
1860
|
+
hotkeys?: Record<string, string | boolean> | undefined;
|
|
1870
1861
|
gameTitle: string;
|
|
1871
1862
|
saveFileName: string;
|
|
1872
1863
|
layout: {
|
|
@@ -2531,10 +2522,7 @@ export declare const useMain: import("pinia").StoreDefinition<"main", MainState,
|
|
|
2531
2522
|
slots: number;
|
|
2532
2523
|
mode: string;
|
|
2533
2524
|
} | undefined;
|
|
2534
|
-
hotkeys?:
|
|
2535
|
-
debugMenu?: string | undefined;
|
|
2536
|
-
jumpMenu?: string | undefined;
|
|
2537
|
-
} | undefined;
|
|
2525
|
+
hotkeys?: Record<string, string | boolean> | undefined;
|
|
2538
2526
|
gameTitle: string;
|
|
2539
2527
|
saveFileName: string;
|
|
2540
2528
|
layout: {
|
|
@@ -489,10 +489,7 @@ export declare function getModifiableDataPinia(): {
|
|
|
489
489
|
slots: number;
|
|
490
490
|
mode: string;
|
|
491
491
|
} | undefined;
|
|
492
|
-
hotkeys?:
|
|
493
|
-
debugMenu?: string | undefined;
|
|
494
|
-
jumpMenu?: string | undefined;
|
|
495
|
-
} | undefined;
|
|
492
|
+
hotkeys?: Record<string, string | boolean> | undefined;
|
|
496
493
|
gameTitle: string;
|
|
497
494
|
saveFileName: string;
|
|
498
495
|
layout: {
|