@vault-tec/pip-boy 1.1.2 → 1.1.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/package.json
CHANGED
|
@@ -27,6 +27,7 @@ declare class PipBoy3000State {
|
|
|
27
27
|
readonly primary: _angular_core.WritableSignal<PipBoy3000PrimaryTab>;
|
|
28
28
|
readonly secondary: _angular_core.WritableSignal<PipBoy3000SecondaryTab | null>;
|
|
29
29
|
readonly tertiary: _angular_core.WritableSignal<PipBoy3000StatusTab | null>;
|
|
30
|
+
private readonly settings;
|
|
30
31
|
selectPrimary(tab: PipBoy3000PrimaryTab): void;
|
|
31
32
|
selectSecondary(tab: PipBoy3000SecondaryTab): void;
|
|
32
33
|
selectTertiary(tab: PipBoy3000StatusTab): void;
|
|
@@ -112,6 +113,7 @@ interface PipBoy3000SettingsSnapshot {
|
|
|
112
113
|
selectedNotesItemId: number | null;
|
|
113
114
|
selectedRadioItemId: number | null;
|
|
114
115
|
effectItems: PipBoy3000EffectItem[];
|
|
116
|
+
radMeterLevel: number;
|
|
115
117
|
localMapImage: string | null;
|
|
116
118
|
worldMapImage: string | null;
|
|
117
119
|
radioVolume: number;
|
|
@@ -122,6 +124,7 @@ interface PipBoy3000SettingsSnapshot {
|
|
|
122
124
|
selectedVaultBoyImageIndex: number;
|
|
123
125
|
scanLinesEnabled: boolean;
|
|
124
126
|
editLockEnabled: boolean;
|
|
127
|
+
rememberTabOnRefresh: boolean;
|
|
125
128
|
listFontScale: number;
|
|
126
129
|
secondaryTabSoundId: string | null;
|
|
127
130
|
mainTabSoundId: string | null;
|
|
@@ -163,6 +166,7 @@ declare class PipBoy3000Settings {
|
|
|
163
166
|
readonly selectedNotesItemId: _angular_core.WritableSignal<number | null>;
|
|
164
167
|
readonly selectedRadioItemId: _angular_core.WritableSignal<number | null>;
|
|
165
168
|
readonly effectItems: _angular_core.WritableSignal<PipBoy3000EffectItem[]>;
|
|
169
|
+
readonly radMeterLevel: _angular_core.WritableSignal<number>;
|
|
166
170
|
readonly localMapImage: _angular_core.WritableSignal<string | null>;
|
|
167
171
|
readonly worldMapImage: _angular_core.WritableSignal<string | null>;
|
|
168
172
|
readonly radioVolume: _angular_core.WritableSignal<number>;
|
|
@@ -177,6 +181,7 @@ declare class PipBoy3000Settings {
|
|
|
177
181
|
readonly secondaryTabSoundId: _angular_core.WritableSignal<string | null>;
|
|
178
182
|
readonly mainTabSoundId: _angular_core.WritableSignal<string | null>;
|
|
179
183
|
readonly clickSoundId: _angular_core.WritableSignal<string | null>;
|
|
184
|
+
readonly rememberTabOnRefresh: _angular_core.WritableSignal<boolean>;
|
|
180
185
|
readonly playbackResetToken: _angular_core.WritableSignal<number>;
|
|
181
186
|
exportSettingsSnapshot(): PipBoy3000SettingsSnapshot;
|
|
182
187
|
exportSettingsJson(): string;
|
|
@@ -188,6 +193,7 @@ declare class PipBoy3000Settings {
|
|
|
188
193
|
private setNumberSignal;
|
|
189
194
|
private setZoomSignal;
|
|
190
195
|
private setVolumeSignal;
|
|
196
|
+
private setUnitSignal;
|
|
191
197
|
private normalizeItems;
|
|
192
198
|
private normalizeStatItems;
|
|
193
199
|
private normalizeAudioItems;
|
|
@@ -201,6 +207,7 @@ declare class PipBoy3000Settings {
|
|
|
201
207
|
|
|
202
208
|
interface SettingsModalPayload {
|
|
203
209
|
scanLinesEnabled: boolean;
|
|
210
|
+
rememberTabOnRefreshEnabled: boolean;
|
|
204
211
|
editLockEnabled: boolean;
|
|
205
212
|
listFontScale: number;
|
|
206
213
|
secondaryTabSoundFile: File | null;
|
|
@@ -317,7 +324,7 @@ declare class PipBoy3000 {
|
|
|
317
324
|
protected readonly imageStore: ImageStore;
|
|
318
325
|
protected readonly soundStore: SoundStore;
|
|
319
326
|
protected readonly audioPlayer: AudioPlayer;
|
|
320
|
-
protected readonly appVersion = "1.1.
|
|
327
|
+
protected readonly appVersion = "1.1.4";
|
|
321
328
|
protected readonly tabsOpen: _angular_core.WritableSignal<boolean>;
|
|
322
329
|
protected readonly showResetModal: _angular_core.WritableSignal<boolean>;
|
|
323
330
|
protected readonly showExitModal: _angular_core.WritableSignal<boolean>;
|
|
@@ -384,6 +391,7 @@ declare class PipBoy3000 {
|
|
|
384
391
|
protected onMapDrag(event: MouseEvent): void;
|
|
385
392
|
protected endMapDrag(): void;
|
|
386
393
|
protected fitMapZoom(type: 'LOCAL' | 'WORLD'): void;
|
|
394
|
+
protected isMapFit(type: 'LOCAL' | 'WORLD'): boolean;
|
|
387
395
|
protected saveMapImageModal(payload: MapImagePayload): Promise<void>;
|
|
388
396
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PipBoy3000, never>;
|
|
389
397
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PipBoy3000, "pip-boy-3000", never, { "returnToUrl": { "alias": "returnToUrl"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
Binary file
|
|
Binary file
|