narrat 2.7.2 → 2.7.3

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.
Files changed (126) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +128 -128
  3. package/dist/app.vue.d.ts +79 -79
  4. package/dist/components/MainMenu.vue.d.ts +7 -7
  5. package/dist/components/SkillsWindow.vue.d.ts +22 -22
  6. package/dist/components/StartMenu.vue.d.ts +46 -46
  7. package/dist/components/auto-play/AutoPlayFeedback.vue.d.ts +46 -46
  8. package/dist/components/debug/debug-menu.vue.d.ts +49 -49
  9. package/dist/components/dialog-picture.vue.d.ts +11 -11
  10. package/dist/components/engine-splash/engine-splash.vue.d.ts +54 -54
  11. package/dist/components/game-dialog.vue.d.ts +65 -65
  12. package/dist/components/game-splash/game-splash.vue.d.ts +46 -46
  13. package/dist/components/hud.vue.d.ts +14 -14
  14. package/dist/components/in-game.vue.d.ts +46 -46
  15. package/dist/components/inventory/inventory-section.vue.d.ts +61 -61
  16. package/dist/components/inventory/item-details.vue.d.ts +76 -76
  17. package/dist/components/inventory-ui.vue.d.ts +28 -28
  18. package/dist/components/loading-bar.vue.d.ts +10 -10
  19. package/dist/components/menu-buttons.vue.d.ts +46 -46
  20. package/dist/components/notification-toast.vue.d.ts +6 -6
  21. package/dist/components/quests/QuestDetails.vue.d.ts +64 -64
  22. package/dist/components/quests/QuestDisplay.vue.d.ts +64 -64
  23. package/dist/components/quests/quests-list-section.vue.d.ts +70 -70
  24. package/dist/components/quests-ui.vue.d.ts +22 -22
  25. package/dist/components/save-slots.vue.d.ts +79 -79
  26. package/dist/components/saves/save-slot-ui.vue.d.ts +108 -108
  27. package/dist/components/screen-layer.vue.d.ts +76 -76
  28. package/dist/components/screens.vue.d.ts +46 -46
  29. package/dist/components/tabs/TabsController.vue.d.ts +72 -72
  30. package/dist/components/tabs/tab-selector.vue.d.ts +82 -82
  31. package/dist/components/transitions/NarratTransition.vue.d.ts +97 -97
  32. package/dist/components/utils/alert-modal.vue.d.ts +82 -82
  33. package/dist/components/utils/modal-window.vue.d.ts +18 -18
  34. package/dist/components/utils/yes-no.vue.d.ts +106 -106
  35. package/dist/components/volume-controls.vue.d.ts +18 -18
  36. package/dist/config.d.ts +244 -244
  37. package/dist/constants.d.ts +10 -10
  38. package/dist/defaultConfig.d.ts +2 -2
  39. package/dist/demo/demo.d.ts +1 -1
  40. package/dist/dialog-box.vue.d.ts +71 -71
  41. package/dist/exports/components.d.ts +2 -2
  42. package/dist/exports/config.d.ts +1 -1
  43. package/dist/exports/display.d.ts +2 -2
  44. package/dist/exports/events.d.ts +1 -1
  45. package/dist/exports/others.d.ts +1 -1
  46. package/dist/exports/plugins.d.ts +38 -38
  47. package/dist/exports/stores.d.ts +11 -11
  48. package/dist/favicon.svg +30 -30
  49. package/dist/gamepad/gamepad.d.ts +1 -1
  50. package/dist/lib.d.ts +18 -18
  51. package/dist/main.d.ts +7 -7
  52. package/dist/menu-buttons/menu-buttons.d.ts +7 -7
  53. package/dist/narrat.es.js +3194 -3194
  54. package/dist/narrat.es.js.map +1 -1
  55. package/dist/narrat.umd.js +65 -65
  56. package/dist/narrat.umd.js.map +1 -1
  57. package/dist/plugins/NarratPlugin.d.ts +11 -11
  58. package/dist/stores/audio-store.d.ts +56 -56
  59. package/dist/stores/dialog-store.d.ts +35 -35
  60. package/dist/stores/hud-stats-store.d.ts +22 -22
  61. package/dist/stores/inventory-store.d.ts +38 -38
  62. package/dist/stores/main-store.d.ts +936 -936
  63. package/dist/stores/menu-store.d.ts +45 -45
  64. package/dist/stores/notification-store.d.ts +15 -15
  65. package/dist/stores/quest-log.d.ts +39 -39
  66. package/dist/stores/rendering-store.d.ts +19 -19
  67. package/dist/stores/screens-store.d.ts +33 -33
  68. package/dist/stores/skills.d.ts +41 -41
  69. package/dist/stores/sprites-store.d.ts +52 -52
  70. package/dist/stores/vm-store.d.ts +181 -181
  71. package/dist/types/app-types.d.ts +9 -9
  72. package/dist/types/character-types.d.ts +27 -27
  73. package/dist/types/dialog-box-types.d.ts +11 -11
  74. package/dist/types/game-save.d.ts +40 -40
  75. package/dist/types/parser.d.ts +93 -93
  76. package/dist/types/state.d.ts +3 -3
  77. package/dist/utils/InputsListener.d.ts +9 -9
  78. package/dist/utils/ajax.d.ts +2 -2
  79. package/dist/utils/audio-loader.d.ts +10 -10
  80. package/dist/utils/characters.d.ts +5 -5
  81. package/dist/utils/data-helpers.d.ts +29 -29
  82. package/dist/utils/debounce.d.ts +14 -14
  83. package/dist/utils/error-handling.d.ts +4 -4
  84. package/dist/utils/helpers.d.ts +6 -6
  85. package/dist/utils/images-loader.d.ts +7 -7
  86. package/dist/utils/logger.d.ts +11 -11
  87. package/dist/utils/object-iterators.d.ts +9 -9
  88. package/dist/utils/promises.d.ts +1 -1
  89. package/dist/utils/randomId.d.ts +1 -1
  90. package/dist/utils/save-helpers.d.ts +16 -16
  91. package/dist/utils/skillchecks.d.ts +17 -17
  92. package/dist/utils/string-helpers.d.ts +4 -4
  93. package/dist/utils/time-helpers.d.ts +2 -2
  94. package/dist/utils/transition.d.ts +21 -21
  95. package/dist/utils/type-utils.d.ts +2 -2
  96. package/dist/utils/typed-emitter.d.ts +18 -18
  97. package/dist/utils/vue-directives.d.ts +2 -2
  98. package/dist/vm/commands/arithmetic-commands.d.ts +23 -23
  99. package/dist/vm/commands/audio-commands.d.ts +15 -15
  100. package/dist/vm/commands/choice.d.ts +38 -38
  101. package/dist/vm/commands/clear_dialog.d.ts +2 -2
  102. package/dist/vm/commands/command-helpers.d.ts +3 -3
  103. package/dist/vm/commands/command-plugin.d.ts +43 -43
  104. package/dist/vm/commands/flow-commands.d.ts +24 -24
  105. package/dist/vm/commands/if.d.ts +10 -10
  106. package/dist/vm/commands/index.d.ts +2 -2
  107. package/dist/vm/commands/inventory-commands.d.ts +15 -15
  108. package/dist/vm/commands/logic-command.d.ts +42 -42
  109. package/dist/vm/commands/math-commands.d.ts +30 -30
  110. package/dist/vm/commands/notify.d.ts +6 -6
  111. package/dist/vm/commands/quest-commands.d.ts +30 -30
  112. package/dist/vm/commands/random-commands.d.ts +10 -10
  113. package/dist/vm/commands/screen-commands.d.ts +18 -18
  114. package/dist/vm/commands/set.d.ts +6 -6
  115. package/dist/vm/commands/skill-commands.d.ts +33 -33
  116. package/dist/vm/commands/sprite-commands.d.ts +9 -9
  117. package/dist/vm/commands/stats-commands.d.ts +12 -12
  118. package/dist/vm/commands/string-commands.d.ts +9 -9
  119. package/dist/vm/commands/text-field.d.ts +7 -7
  120. package/dist/vm/commands/text.d.ts +14 -14
  121. package/dist/vm/commands/wait.d.ts +4 -4
  122. package/dist/vm/vm-helpers.d.ts +19 -19
  123. package/dist/vm/vm-parser.d.ts +19 -19
  124. package/dist/vm/vm-parser.test.d.ts +1 -1
  125. package/dist/vm/vm.d.ts +21 -21
  126. package/package.json +1 -1
@@ -1,64 +1,64 @@
1
- import { QuestState } from '../../stores/quest-log';
2
- declare const _default: {
3
- new (...args: any[]): {
4
- $: import("vue").ComponentInternalInstance;
5
- $data: {};
6
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
- quest: QuestState;
8
- }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
9
- $attrs: {
10
- [x: string]: unknown;
11
- };
12
- $refs: {
13
- [x: string]: unknown;
14
- };
15
- $slots: Readonly<{
16
- [name: string]: import("vue").Slot | undefined;
17
- }>;
18
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
19
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
20
- $emit: (event: string, ...args: any[]) => void;
21
- $el: any;
22
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
23
- quest: QuestState;
24
- }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & {
25
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
26
- created?: ((() => void) | (() => void)[]) | undefined;
27
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
28
- mounted?: ((() => void) | (() => void)[]) | undefined;
29
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
30
- updated?: ((() => void) | (() => void)[]) | undefined;
31
- activated?: ((() => void) | (() => void)[]) | undefined;
32
- deactivated?: ((() => void) | (() => void)[]) | undefined;
33
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
34
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
35
- destroyed?: ((() => void) | (() => void)[]) | undefined;
36
- unmounted?: ((() => void) | (() => void)[]) | undefined;
37
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
38
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
39
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
40
- };
41
- $forceUpdate: () => void;
42
- $nextTick: typeof import("vue").nextTick;
43
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
44
- } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
45
- quest: QuestState;
46
- }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
47
- __isFragment?: undefined;
48
- __isTeleport?: undefined;
49
- __isSuspense?: undefined;
50
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
51
- quest: QuestState;
52
- }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
53
- $slots: {};
54
- });
55
- export default _default;
56
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
57
- declare type __VLS_TypePropsToRuntimeProps<T> = {
58
- [K in keyof T]-?: {} extends Pick<T, K> ? {
59
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
60
- } : {
61
- type: import('vue').PropType<T[K]>;
62
- required: true;
63
- };
64
- };
1
+ import { QuestState } from '../../stores/quest-log';
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
+ quest: QuestState;
8
+ }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
9
+ $attrs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $refs: {
13
+ [x: string]: unknown;
14
+ };
15
+ $slots: Readonly<{
16
+ [name: string]: import("vue").Slot | undefined;
17
+ }>;
18
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
19
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
20
+ $emit: (event: string, ...args: any[]) => void;
21
+ $el: any;
22
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
23
+ quest: QuestState;
24
+ }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & {
25
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
26
+ created?: ((() => void) | (() => void)[]) | undefined;
27
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
28
+ mounted?: ((() => void) | (() => void)[]) | undefined;
29
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
30
+ updated?: ((() => void) | (() => void)[]) | undefined;
31
+ activated?: ((() => void) | (() => void)[]) | undefined;
32
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
33
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
34
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
35
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
36
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
37
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
38
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
39
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
40
+ };
41
+ $forceUpdate: () => void;
42
+ $nextTick: typeof import("vue").nextTick;
43
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
44
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
45
+ quest: QuestState;
46
+ }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
47
+ __isFragment?: undefined;
48
+ __isTeleport?: undefined;
49
+ __isSuspense?: undefined;
50
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
51
+ quest: QuestState;
52
+ }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
53
+ $slots: {};
54
+ });
55
+ export default _default;
56
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
57
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
58
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
59
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
60
+ } : {
61
+ type: import('vue').PropType<T[K]>;
62
+ required: true;
63
+ };
64
+ };
@@ -1,64 +1,64 @@
1
- import { QuestState } from '../../stores/quest-log';
2
- declare const _default: {
3
- new (...args: any[]): {
4
- $: import("vue").ComponentInternalInstance;
5
- $data: {};
6
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
- quest: QuestState;
8
- }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
9
- $attrs: {
10
- [x: string]: unknown;
11
- };
12
- $refs: {
13
- [x: string]: unknown;
14
- };
15
- $slots: Readonly<{
16
- [name: string]: import("vue").Slot | undefined;
17
- }>;
18
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
19
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
20
- $emit: (event: string, ...args: any[]) => void;
21
- $el: any;
22
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
23
- quest: QuestState;
24
- }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & {
25
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
26
- created?: ((() => void) | (() => void)[]) | undefined;
27
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
28
- mounted?: ((() => void) | (() => void)[]) | undefined;
29
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
30
- updated?: ((() => void) | (() => void)[]) | undefined;
31
- activated?: ((() => void) | (() => void)[]) | undefined;
32
- deactivated?: ((() => void) | (() => void)[]) | undefined;
33
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
34
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
35
- destroyed?: ((() => void) | (() => void)[]) | undefined;
36
- unmounted?: ((() => void) | (() => void)[]) | undefined;
37
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
38
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
39
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
40
- };
41
- $forceUpdate: () => void;
42
- $nextTick: typeof import("vue").nextTick;
43
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
44
- } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
45
- quest: QuestState;
46
- }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
47
- __isFragment?: undefined;
48
- __isTeleport?: undefined;
49
- __isSuspense?: undefined;
50
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
51
- quest: QuestState;
52
- }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
53
- $slots: {};
54
- });
55
- export default _default;
56
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
57
- declare type __VLS_TypePropsToRuntimeProps<T> = {
58
- [K in keyof T]-?: {} extends Pick<T, K> ? {
59
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
60
- } : {
61
- type: import('vue').PropType<T[K]>;
62
- required: true;
63
- };
64
- };
1
+ import { QuestState } from '../../stores/quest-log';
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
+ quest: QuestState;
8
+ }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
9
+ $attrs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $refs: {
13
+ [x: string]: unknown;
14
+ };
15
+ $slots: Readonly<{
16
+ [name: string]: import("vue").Slot | undefined;
17
+ }>;
18
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
19
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
20
+ $emit: (event: string, ...args: any[]) => void;
21
+ $el: any;
22
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
23
+ quest: QuestState;
24
+ }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & {
25
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
26
+ created?: ((() => void) | (() => void)[]) | undefined;
27
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
28
+ mounted?: ((() => void) | (() => void)[]) | undefined;
29
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
30
+ updated?: ((() => void) | (() => void)[]) | undefined;
31
+ activated?: ((() => void) | (() => void)[]) | undefined;
32
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
33
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
34
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
35
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
36
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
37
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
38
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
39
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
40
+ };
41
+ $forceUpdate: () => void;
42
+ $nextTick: typeof import("vue").nextTick;
43
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
44
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
45
+ quest: QuestState;
46
+ }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
47
+ __isFragment?: undefined;
48
+ __isTeleport?: undefined;
49
+ __isSuspense?: undefined;
50
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
51
+ quest: QuestState;
52
+ }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
53
+ $slots: {};
54
+ });
55
+ export default _default;
56
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
57
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
58
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
59
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
60
+ } : {
61
+ type: import('vue').PropType<T[K]>;
62
+ required: true;
63
+ };
64
+ };
@@ -1,70 +1,70 @@
1
- import { QuestState } from '../../stores/quest-log';
2
- export interface QuestListSectionProps {
3
- quests: QuestState[];
4
- sectionId: string;
5
- title: string;
6
- fallbackText: string;
7
- }
8
- declare const _default: {
9
- new (...args: any[]): {
10
- $: import("vue").ComponentInternalInstance;
11
- $data: {};
12
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<QuestListSectionProps>>> & {
13
- "onQuest-selected"?: ((...args: any[]) => any) | undefined;
14
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
15
- $attrs: {
16
- [x: string]: unknown;
17
- };
18
- $refs: {
19
- [x: string]: unknown;
20
- };
21
- $slots: Readonly<{
22
- [name: string]: import("vue").Slot | undefined;
23
- }>;
24
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
25
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
26
- $emit: (event: "quest-selected", ...args: any[]) => void;
27
- $el: any;
28
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<QuestListSectionProps>>> & {
29
- "onQuest-selected"?: ((...args: any[]) => any) | undefined;
30
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "quest-selected"[], string, {}> & {
31
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
32
- created?: ((() => void) | (() => void)[]) | undefined;
33
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
34
- mounted?: ((() => void) | (() => void)[]) | undefined;
35
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
36
- updated?: ((() => void) | (() => void)[]) | undefined;
37
- activated?: ((() => void) | (() => void)[]) | undefined;
38
- deactivated?: ((() => void) | (() => void)[]) | undefined;
39
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
40
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
41
- destroyed?: ((() => void) | (() => void)[]) | undefined;
42
- unmounted?: ((() => void) | (() => void)[]) | undefined;
43
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
44
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
45
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
46
- };
47
- $forceUpdate: () => void;
48
- $nextTick: typeof import("vue").nextTick;
49
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
50
- } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<QuestListSectionProps>>> & {
51
- "onQuest-selected"?: ((...args: any[]) => any) | undefined;
52
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
53
- __isFragment?: undefined;
54
- __isTeleport?: undefined;
55
- __isSuspense?: undefined;
56
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<QuestListSectionProps>>> & {
57
- "onQuest-selected"?: ((...args: any[]) => any) | undefined;
58
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "quest-selected"[], "quest-selected", {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
59
- $slots: {};
60
- });
61
- export default _default;
62
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
63
- declare type __VLS_TypePropsToRuntimeProps<T> = {
64
- [K in keyof T]-?: {} extends Pick<T, K> ? {
65
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
66
- } : {
67
- type: import('vue').PropType<T[K]>;
68
- required: true;
69
- };
70
- };
1
+ import { QuestState } from '../../stores/quest-log';
2
+ export interface QuestListSectionProps {
3
+ quests: QuestState[];
4
+ sectionId: string;
5
+ title: string;
6
+ fallbackText: string;
7
+ }
8
+ declare const _default: {
9
+ new (...args: any[]): {
10
+ $: import("vue").ComponentInternalInstance;
11
+ $data: {};
12
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<QuestListSectionProps>>> & {
13
+ "onQuest-selected"?: ((...args: any[]) => any) | undefined;
14
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
15
+ $attrs: {
16
+ [x: string]: unknown;
17
+ };
18
+ $refs: {
19
+ [x: string]: unknown;
20
+ };
21
+ $slots: Readonly<{
22
+ [name: string]: import("vue").Slot | undefined;
23
+ }>;
24
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
25
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
26
+ $emit: (event: "quest-selected", ...args: any[]) => void;
27
+ $el: any;
28
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<QuestListSectionProps>>> & {
29
+ "onQuest-selected"?: ((...args: any[]) => any) | undefined;
30
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "quest-selected"[], string, {}> & {
31
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
32
+ created?: ((() => void) | (() => void)[]) | undefined;
33
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
34
+ mounted?: ((() => void) | (() => void)[]) | undefined;
35
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
36
+ updated?: ((() => void) | (() => void)[]) | undefined;
37
+ activated?: ((() => void) | (() => void)[]) | undefined;
38
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
39
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
40
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
41
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
42
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
43
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
44
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
45
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
46
+ };
47
+ $forceUpdate: () => void;
48
+ $nextTick: typeof import("vue").nextTick;
49
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
50
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<QuestListSectionProps>>> & {
51
+ "onQuest-selected"?: ((...args: any[]) => any) | undefined;
52
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
53
+ __isFragment?: undefined;
54
+ __isTeleport?: undefined;
55
+ __isSuspense?: undefined;
56
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<QuestListSectionProps>>> & {
57
+ "onQuest-selected"?: ((...args: any[]) => any) | undefined;
58
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "quest-selected"[], "quest-selected", {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
59
+ $slots: {};
60
+ });
61
+ export default _default;
62
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
63
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
64
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
65
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
66
+ } : {
67
+ type: import('vue').PropType<T[K]>;
68
+ required: true;
69
+ };
70
+ };
@@ -1,22 +1,22 @@
1
- import { QuestState } from '../stores/quest-log';
2
- declare const _default: import("vue").DefineComponent<{}, {
3
- quests: import("vue").ComputedRef<{
4
- [key: string]: QuestState;
5
- }>;
6
- selectedQuest: import("vue").Ref<{
7
- id: string;
8
- state: "hidden" | "unlocked" | "completed";
9
- ending?: string | undefined;
10
- objectives: {
11
- [key: string]: import("../stores/quest-log").ObjectiveState;
12
- };
13
- } | null>;
14
- }, {}, {
15
- questsToDisplay(): QuestState[];
16
- activeQuests(): QuestState[];
17
- completedQuests(): QuestState[];
18
- questsUiClass(): "quests-ui-horizontal" | "quests-ui-vertical";
19
- }, {
20
- clickOnQuest(quest: QuestState): void;
21
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
22
- export default _default;
1
+ import { QuestState } from '../stores/quest-log';
2
+ declare const _default: import("vue").DefineComponent<{}, {
3
+ quests: import("vue").ComputedRef<{
4
+ [key: string]: QuestState;
5
+ }>;
6
+ selectedQuest: import("vue").Ref<{
7
+ id: string;
8
+ state: "hidden" | "unlocked" | "completed";
9
+ ending?: string | undefined;
10
+ objectives: {
11
+ [key: string]: import("../stores/quest-log").ObjectiveState;
12
+ };
13
+ } | null>;
14
+ }, {}, {
15
+ questsToDisplay(): QuestState[];
16
+ activeQuests(): QuestState[];
17
+ completedQuests(): QuestState[];
18
+ questsUiClass(): "quests-ui-horizontal" | "quests-ui-vertical";
19
+ }, {
20
+ clickOnQuest(quest: QuestState): void;
21
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
22
+ export default _default;
@@ -1,79 +1,79 @@
1
- import { PropType } from 'vue';
2
- declare const _default: {
3
- new (...args: any[]): {
4
- $: import("vue").ComponentInternalInstance;
5
- $data: {};
6
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
- mode: {
8
- type: PropType<"load" | "pick">;
9
- required: true;
10
- };
11
- }>> & {
12
- onClose?: ((...args: any[]) => any) | undefined;
13
- onChosen?: ((...args: any[]) => any) | undefined;
14
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
15
- $attrs: {
16
- [x: string]: unknown;
17
- };
18
- $refs: {
19
- [x: string]: unknown;
20
- };
21
- $slots: Readonly<{
22
- [name: string]: import("vue").Slot | undefined;
23
- }>;
24
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
25
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
26
- $emit: (event: "close" | "chosen", ...args: any[]) => void;
27
- $el: any;
28
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
29
- mode: {
30
- type: PropType<"load" | "pick">;
31
- required: true;
32
- };
33
- }>> & {
34
- onClose?: ((...args: any[]) => any) | undefined;
35
- onChosen?: ((...args: any[]) => any) | undefined;
36
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "chosen")[], string, {}> & {
37
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
38
- created?: ((() => void) | (() => void)[]) | undefined;
39
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
40
- mounted?: ((() => void) | (() => void)[]) | undefined;
41
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
42
- updated?: ((() => void) | (() => void)[]) | undefined;
43
- activated?: ((() => void) | (() => void)[]) | undefined;
44
- deactivated?: ((() => void) | (() => void)[]) | undefined;
45
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
46
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
47
- destroyed?: ((() => void) | (() => void)[]) | undefined;
48
- unmounted?: ((() => void) | (() => void)[]) | undefined;
49
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
50
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
51
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
52
- };
53
- $forceUpdate: () => void;
54
- $nextTick: typeof import("vue").nextTick;
55
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
56
- } & Readonly<import("vue").ExtractPropTypes<{
57
- mode: {
58
- type: PropType<"load" | "pick">;
59
- required: true;
60
- };
61
- }>> & {
62
- onClose?: ((...args: any[]) => any) | undefined;
63
- onChosen?: ((...args: any[]) => any) | undefined;
64
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
65
- __isFragment?: undefined;
66
- __isTeleport?: undefined;
67
- __isSuspense?: undefined;
68
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
69
- mode: {
70
- type: PropType<"load" | "pick">;
71
- required: true;
72
- };
73
- }>> & {
74
- onClose?: ((...args: any[]) => any) | undefined;
75
- onChosen?: ((...args: any[]) => any) | undefined;
76
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "chosen")[], "close" | "chosen", {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
77
- $slots: {};
78
- });
79
- export default _default;
1
+ import { PropType } from 'vue';
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
+ mode: {
8
+ type: PropType<"load" | "pick">;
9
+ required: true;
10
+ };
11
+ }>> & {
12
+ onClose?: ((...args: any[]) => any) | undefined;
13
+ onChosen?: ((...args: any[]) => any) | undefined;
14
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
15
+ $attrs: {
16
+ [x: string]: unknown;
17
+ };
18
+ $refs: {
19
+ [x: string]: unknown;
20
+ };
21
+ $slots: Readonly<{
22
+ [name: string]: import("vue").Slot | undefined;
23
+ }>;
24
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
25
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
26
+ $emit: (event: "close" | "chosen", ...args: any[]) => void;
27
+ $el: any;
28
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
29
+ mode: {
30
+ type: PropType<"load" | "pick">;
31
+ required: true;
32
+ };
33
+ }>> & {
34
+ onClose?: ((...args: any[]) => any) | undefined;
35
+ onChosen?: ((...args: any[]) => any) | undefined;
36
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "chosen")[], string, {}> & {
37
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
38
+ created?: ((() => void) | (() => void)[]) | undefined;
39
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
40
+ mounted?: ((() => void) | (() => void)[]) | undefined;
41
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
42
+ updated?: ((() => void) | (() => void)[]) | undefined;
43
+ activated?: ((() => void) | (() => void)[]) | undefined;
44
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
45
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
46
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
47
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
48
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
49
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
50
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
51
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
52
+ };
53
+ $forceUpdate: () => void;
54
+ $nextTick: typeof import("vue").nextTick;
55
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
56
+ } & Readonly<import("vue").ExtractPropTypes<{
57
+ mode: {
58
+ type: PropType<"load" | "pick">;
59
+ required: true;
60
+ };
61
+ }>> & {
62
+ onClose?: ((...args: any[]) => any) | undefined;
63
+ onChosen?: ((...args: any[]) => any) | undefined;
64
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
65
+ __isFragment?: undefined;
66
+ __isTeleport?: undefined;
67
+ __isSuspense?: undefined;
68
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
69
+ mode: {
70
+ type: PropType<"load" | "pick">;
71
+ required: true;
72
+ };
73
+ }>> & {
74
+ onClose?: ((...args: any[]) => any) | undefined;
75
+ onChosen?: ((...args: any[]) => any) | undefined;
76
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "chosen")[], "close" | "chosen", {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
77
+ $slots: {};
78
+ });
79
+ export default _default;