narrat 3.9.7 → 3.10.0

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.
@@ -564,7 +564,7 @@ export declare const sourceAllStores: {
564
564
  };
565
565
  skills: import("../stores/skills").SkillsState;
566
566
  };
567
- screen: {
567
+ screens: {
568
568
  layers: (string | null)[];
569
569
  buttons: import("../stores/screens-store").ButtonsState;
570
570
  };
@@ -1232,7 +1232,7 @@ export declare const sourceAllStores: {
1232
1232
  };
1233
1233
  skills: import("../stores/skills").SkillsState;
1234
1234
  };
1235
- screen: {
1235
+ screens: {
1236
1236
  layers: (string | null)[];
1237
1237
  buttons: import("../stores/screens-store").ButtonsState;
1238
1238
  };
@@ -1900,7 +1900,7 @@ export declare const sourceAllStores: {
1900
1900
  };
1901
1901
  skills: import("../stores/skills").SkillsState;
1902
1902
  };
1903
- screen: {
1903
+ screens: {
1904
1904
  layers: (string | null)[];
1905
1905
  buttons: import("../stores/screens-store").ButtonsState;
1906
1906
  };
@@ -2568,7 +2568,7 @@ export declare const sourceAllStores: {
2568
2568
  };
2569
2569
  skills: import("../stores/skills").SkillsState;
2570
2570
  };
2571
- screen: {
2571
+ screens: {
2572
2572
  layers: (string | null)[];
2573
2573
  buttons: import("../stores/screens-store").ButtonsState;
2574
2574
  };
@@ -3296,6 +3296,7 @@ export declare const sourceAllStores: {
3296
3296
  toggleAutoPlay(): void;
3297
3297
  toggleSkip(): void;
3298
3298
  clearDialog(): void;
3299
+ makeLastDialogInteractive(): void;
3299
3300
  reset(): void;
3300
3301
  }>;
3301
3302
  readonly save: "dialog";
@@ -3821,6 +3822,7 @@ export declare const sourceAllStores: {
3821
3822
  fileName: string;
3822
3823
  finishCommand?: ((res: any) => void) | undefined;
3823
3824
  }[];
3825
+ promisesWaitingForTextAnimation: (() => void)[];
3824
3826
  stack: {
3825
3827
  blocks: {
3826
3828
  currentIndex: number;
@@ -3898,6 +3900,8 @@ export declare const sourceAllStores: {
3898
3900
  findEntitiesInData(data: any): void;
3899
3901
  setReturnValue(value: any): void;
3900
3902
  waitForPlayerAnswer(cmd: import("../types/parser").Parser.Command<any, any>): void;
3903
+ waitForEndTextAnimation(): Promise<void>;
3904
+ endTextAnimation(): void;
3901
3905
  popAnswerQueue(): {
3902
3906
  args: (import("../types/parser").Parser.Primitive | {
3903
3907
  code: string;