narrat 2.5.0 → 2.6.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/dist/app.vue.d.ts CHANGED
@@ -60,6 +60,7 @@ declare const _default: import("vue").DefineComponent<{
60
60
  lineText: string;
61
61
  }, {
62
62
  appStyle(): any;
63
+ appClass(): any;
63
64
  currentLine: () => import("./types/parser").Parser.ParsedExpression<import("./types/parser").Parser.DefaultArg, {}> | undefined;
64
65
  gameScaleRatio: () => number;
65
66
  gameWidth: () => number;
@@ -1,4 +1,4 @@
1
- import { GameSave } from '../../types/game-save';
1
+ import { SaveSlot } from '../../types/game-save';
2
2
  import { PropType } from 'vue';
3
3
  declare const _default: {
4
4
  new (...args: any[]): {
@@ -6,7 +6,7 @@ declare const _default: {
6
6
  $data: {};
7
7
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
8
8
  saveSlot: {
9
- type: PropType<GameSave>;
9
+ type: PropType<SaveSlot>;
10
10
  required: true;
11
11
  };
12
12
  id: {
@@ -35,7 +35,7 @@ declare const _default: {
35
35
  $el: any;
36
36
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
37
37
  saveSlot: {
38
- type: PropType<GameSave>;
38
+ type: PropType<SaveSlot>;
39
39
  required: true;
40
40
  };
41
41
  id: {
@@ -70,7 +70,7 @@ declare const _default: {
70
70
  $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
71
71
  } & Readonly<import("vue").ExtractPropTypes<{
72
72
  saveSlot: {
73
- type: PropType<GameSave>;
73
+ type: PropType<SaveSlot>;
74
74
  required: true;
75
75
  };
76
76
  id: {
@@ -89,7 +89,7 @@ declare const _default: {
89
89
  __isSuspense?: undefined;
90
90
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
91
91
  saveSlot: {
92
- type: PropType<GameSave>;
92
+ type: PropType<SaveSlot>;
93
93
  required: true;
94
94
  };
95
95
  id: {
package/dist/config.d.ts CHANGED
@@ -148,6 +148,7 @@ export interface Config {
148
148
  };
149
149
  saves: {
150
150
  mode: 'game-slots' | 'manual';
151
+ slots: number;
151
152
  };
152
153
  }
153
154
  export interface ScreenConfig {
@@ -199,6 +200,7 @@ export interface ButtonConfig {
199
200
  enabled: boolean;
200
201
  background?: string;
201
202
  text?: string;
203
+ cssClass?: string;
202
204
  position: {
203
205
  left: number;
204
206
  top: number;
package/dist/dark.png ADDED
Binary file
package/dist/dark.webp ADDED
Binary file
@@ -17,6 +17,7 @@ declare const _default: import("vue").DefineComponent<{
17
17
  preText(): string;
18
18
  style(): DialogStyle;
19
19
  dialogBoxStyle(): any;
20
+ dialogBoxClass(): false | "dialog-box-followup";
20
21
  titleStyle(): any;
21
22
  textStyle(): any;
22
23
  choices(): DialogChoice[] | undefined;