@frplm/ui 0.1.0-alpha.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.
- package/README.md +20 -0
- package/dist/index.js +2034 -0
- package/dist/style.css +1 -0
- package/dist/types/sdk/src/HostSdkBindings.d.ts +45 -0
- package/dist/types/sdk/src/HostSdkBindings.d.ts.map +1 -0
- package/dist/types/sdk/src/components.d.ts +15 -0
- package/dist/types/sdk/src/components.d.ts.map +1 -0
- package/dist/types/src/App.vue.d.ts +4 -0
- package/dist/types/src/App.vue.d.ts.map +1 -0
- package/dist/types/src/app/router.d.ts +4 -0
- package/dist/types/src/app/router.d.ts.map +1 -0
- package/dist/types/src/components/char/CharacterEditor.vue.d.ts +18 -0
- package/dist/types/src/components/char/CharacterEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/char/CharacterLanding.vue.d.ts +4 -0
- package/dist/types/src/components/char/CharacterLanding.vue.d.ts.map +1 -0
- package/dist/types/src/components/char/StartingLocation.vue.d.ts +12 -0
- package/dist/types/src/components/char/StartingLocation.vue.d.ts.map +1 -0
- package/dist/types/src/components/chat/Chat.vue.d.ts +15 -0
- package/dist/types/src/components/chat/Chat.vue.d.ts.map +1 -0
- package/dist/types/src/components/chat/ChatBar.vue.d.ts +12 -0
- package/dist/types/src/components/chat/ChatBar.vue.d.ts.map +1 -0
- package/dist/types/src/components/chat/ChatMessage.vue.d.ts +15 -0
- package/dist/types/src/components/chat/ChatMessage.vue.d.ts.map +1 -0
- package/dist/types/src/components/chat/ConfigSidebar.vue.d.ts +12 -0
- package/dist/types/src/components/chat/ConfigSidebar.vue.d.ts.map +1 -0
- package/dist/types/src/components/chat/PromptDebug.vue.d.ts +8 -0
- package/dist/types/src/components/chat/PromptDebug.vue.d.ts.map +1 -0
- package/dist/types/src/components/connections/APIKeysPopup.vue.d.ts +8 -0
- package/dist/types/src/components/connections/APIKeysPopup.vue.d.ts.map +1 -0
- package/dist/types/src/components/connections/ConnectionLanding.vue.d.ts +4 -0
- package/dist/types/src/components/connections/ConnectionLanding.vue.d.ts.map +1 -0
- package/dist/types/src/components/connections/LLMEditor.vue.d.ts +12 -0
- package/dist/types/src/components/connections/LLMEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/errors/GlobalError.vue.d.ts +4 -0
- package/dist/types/src/components/errors/GlobalError.vue.d.ts.map +1 -0
- package/dist/types/src/components/extension/ExtensionConfigs.vue.d.ts +4 -0
- package/dist/types/src/components/extension/ExtensionConfigs.vue.d.ts.map +1 -0
- package/dist/types/src/components/layout/EmptyView.vue.d.ts +4 -0
- package/dist/types/src/components/layout/EmptyView.vue.d.ts.map +1 -0
- package/dist/types/src/components/lorebooks/EntryEditor.vue.d.ts +19 -0
- package/dist/types/src/components/lorebooks/EntryEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/lorebooks/LorebookEditor.vue.d.ts +18 -0
- package/dist/types/src/components/lorebooks/LorebookEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/lorebooks/LorebookLanding.vue.d.ts +4 -0
- package/dist/types/src/components/lorebooks/LorebookLanding.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/AutoCompleteBox.vue.d.ts +22 -0
- package/dist/types/src/components/primitive-editors/AutoCompleteBox.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/BooleanTickBox.vue.d.ts +22 -0
- package/dist/types/src/components/primitive-editors/BooleanTickBox.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/BooleanToggle.vue.d.ts +22 -0
- package/dist/types/src/components/primitive-editors/BooleanToggle.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/LongTextBox.vue.d.ts +22 -0
- package/dist/types/src/components/primitive-editors/LongTextBox.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/NumberInput.vue.d.ts +36 -0
- package/dist/types/src/components/primitive-editors/NumberInput.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/NumberSlider.vue.d.ts +28 -0
- package/dist/types/src/components/primitive-editors/NumberSlider.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/ShortTextBox.vue.d.ts +20 -0
- package/dist/types/src/components/primitive-editors/ShortTextBox.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/SingleAutoComplete.vue.d.ts +26 -0
- package/dist/types/src/components/primitive-editors/SingleAutoComplete.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/SingleEnumInput.vue.d.ts +26 -0
- package/dist/types/src/components/primitive-editors/SingleEnumInput.vue.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/components.d.ts +10 -0
- package/dist/types/src/components/primitive-editors/components.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/index.d.ts +3 -0
- package/dist/types/src/components/primitive-editors/index.d.ts.map +1 -0
- package/dist/types/src/components/primitive-editors/plugin.d.ts +3 -0
- package/dist/types/src/components/primitive-editors/plugin.d.ts.map +1 -0
- package/dist/types/src/components/prompts/PromptSectionEditor.vue.d.ts +17 -0
- package/dist/types/src/components/prompts/PromptSectionEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/prompts/PromptTemplateEditor.vue.d.ts +12 -0
- package/dist/types/src/components/prompts/PromptTemplateEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/prompts/PromptTemplatePicker.vue.d.ts +8 -0
- package/dist/types/src/components/prompts/PromptTemplatePicker.vue.d.ts.map +1 -0
- package/dist/types/src/components/session/NewSessionPopUp.vue.d.ts +26 -0
- package/dist/types/src/components/session/NewSessionPopUp.vue.d.ts.map +1 -0
- package/dist/types/src/components/session/SessionList.vue.d.ts +4 -0
- package/dist/types/src/components/session/SessionList.vue.d.ts.map +1 -0
- package/dist/types/src/components/session/SessionTease.vue.d.ts +17 -0
- package/dist/types/src/components/session/SessionTease.vue.d.ts.map +1 -0
- package/dist/types/src/components/settings/Settings.vue.d.ts +4 -0
- package/dist/types/src/components/settings/Settings.vue.d.ts.map +1 -0
- package/dist/types/src/components/settings/ThemeSettings.vue.d.ts +4 -0
- package/dist/types/src/components/settings/ThemeSettings.vue.d.ts.map +1 -0
- package/dist/types/src/components/space/ConnectLocationPrompt.vue.d.ts +16 -0
- package/dist/types/src/components/space/ConnectLocationPrompt.vue.d.ts.map +1 -0
- package/dist/types/src/components/space/EdgeEditor.vue.d.ts +20 -0
- package/dist/types/src/components/space/EdgeEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/space/LocationEdgesEditor.vue.d.ts +21 -0
- package/dist/types/src/components/space/LocationEdgesEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/space/LocationEditor.vue.d.ts +21 -0
- package/dist/types/src/components/space/LocationEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/space/RegionEditor.vue.d.ts +12 -0
- package/dist/types/src/components/space/RegionEditor.vue.d.ts.map +1 -0
- package/dist/types/src/components/space/WorldEdit.vue.d.ts +12 -0
- package/dist/types/src/components/space/WorldEdit.vue.d.ts.map +1 -0
- package/dist/types/src/components/space/WorldLanding.vue.d.ts +4 -0
- package/dist/types/src/components/space/WorldLanding.vue.d.ts.map +1 -0
- package/dist/types/src/components/space/WorldLocationGraph.vue.d.ts +8 -0
- package/dist/types/src/components/space/WorldLocationGraph.vue.d.ts.map +1 -0
- package/dist/types/src/components/tags/TagAutocomplete.vue.d.ts +19 -0
- package/dist/types/src/components/tags/TagAutocomplete.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/FieldEditorWrapper.vue.d.ts +22 -0
- package/dist/types/src/components/utils/FieldEditorWrapper.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/PrologValidator.vue.d.ts +11 -0
- package/dist/types/src/components/utils/PrologValidator.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/SearchBar.vue.d.ts +19 -0
- package/dist/types/src/components/utils/SearchBar.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/buttons/IconButton.vue.d.ts +30 -0
- package/dist/types/src/components/utils/buttons/IconButton.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/img/AvatarDisplay.vue.d.ts +4 -0
- package/dist/types/src/components/utils/img/AvatarDisplay.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/list/Card.vue.d.ts +36 -0
- package/dist/types/src/components/utils/list/Card.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/list/List.vue.d.ts +28 -0
- package/dist/types/src/components/utils/list/List.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/list/SimpleList.vue.d.ts +26 -0
- package/dist/types/src/components/utils/list/SimpleList.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/panels/Expandable.vue.d.ts +57 -0
- package/dist/types/src/components/utils/panels/Expandable.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/panels/ExpandableSplitPanel.vue.d.ts +58 -0
- package/dist/types/src/components/utils/panels/ExpandableSplitPanel.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/panels/SplitPanel.vue.d.ts +24 -0
- package/dist/types/src/components/utils/panels/SplitPanel.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/prompts/EnumPrompt.vue.d.ts +29 -0
- package/dist/types/src/components/utils/prompts/EnumPrompt.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/prompts/InlinePopover.vue.d.ts +50 -0
- package/dist/types/src/components/utils/prompts/InlinePopover.vue.d.ts.map +1 -0
- package/dist/types/src/components/utils/prompts/WindowPrompt.vue.d.ts +53 -0
- package/dist/types/src/components/utils/prompts/WindowPrompt.vue.d.ts.map +1 -0
- package/dist/types/src/config.d.ts +2 -0
- package/dist/types/src/config.d.ts.map +1 -0
- package/dist/types/src/core/ABSEntity.d.ts +63 -0
- package/dist/types/src/core/ABSEntity.d.ts.map +1 -0
- package/dist/types/src/core/FieldMetadata.d.ts +38 -0
- package/dist/types/src/core/FieldMetadata.d.ts.map +1 -0
- package/dist/types/src/core/GlobalError.d.ts +10 -0
- package/dist/types/src/core/GlobalError.d.ts.map +1 -0
- package/dist/types/src/core/interfaces.d.ts +11 -0
- package/dist/types/src/core/interfaces.d.ts.map +1 -0
- package/dist/types/src/core/queries.d.ts +13 -0
- package/dist/types/src/core/queries.d.ts.map +1 -0
- package/dist/types/src/core/theme.d.ts +45 -0
- package/dist/types/src/core/theme.d.ts.map +1 -0
- package/dist/types/src/domain/Characters.d.ts +52 -0
- package/dist/types/src/domain/Characters.d.ts.map +1 -0
- package/dist/types/src/domain/Connection.d.ts +66 -0
- package/dist/types/src/domain/Connection.d.ts.map +1 -0
- package/dist/types/src/domain/EntityTypes.d.ts +23 -0
- package/dist/types/src/domain/EntityTypes.d.ts.map +1 -0
- package/dist/types/src/domain/Lorebook.d.ts +84 -0
- package/dist/types/src/domain/Lorebook.d.ts.map +1 -0
- package/dist/types/src/domain/Prompts.d.ts +85 -0
- package/dist/types/src/domain/Prompts.d.ts.map +1 -0
- package/dist/types/src/domain/Session.d.ts +61 -0
- package/dist/types/src/domain/Session.d.ts.map +1 -0
- package/dist/types/src/domain/Tag.d.ts +18 -0
- package/dist/types/src/domain/Tag.d.ts.map +1 -0
- package/dist/types/src/domain/World.d.ts +87 -0
- package/dist/types/src/domain/World.d.ts.map +1 -0
- package/dist/types/src/extensions/HostBindings.d.ts +2 -0
- package/dist/types/src/extensions/HostBindings.d.ts.map +1 -0
- package/dist/types/src/extensions/extensions.d.ts +18 -0
- package/dist/types/src/extensions/extensions.d.ts.map +1 -0
- package/dist/types/src/extensions/registerPrimitiveEditors.d.ts +2 -0
- package/dist/types/src/extensions/registerPrimitiveEditors.d.ts.map +1 -0
- package/dist/types/src/services/apiClient.d.ts +34 -0
- package/dist/types/src/services/apiClient.d.ts.map +1 -0
- package/dist/types/src/services/tokenizer.d.ts +30 -0
- package/dist/types/src/services/tokenizer.d.ts.map +1 -0
- package/dist/types/src/types/ChatCompletions.d.ts +14 -0
- package/dist/types/src/types/ChatCompletions.d.ts.map +1 -0
- package/dist/types/src/types/DTOs.d.ts +19 -0
- package/dist/types/src/types/DTOs.d.ts.map +1 -0
- package/dist/types/src/types/Equatable.d.ts +9 -0
- package/dist/types/src/types/Equatable.d.ts.map +1 -0
- package/dist/types/src/utils/CommonFields.d.ts +6 -0
- package/dist/types/src/utils/CommonFields.d.ts.map +1 -0
- package/dist/types/src/utils/CustomSet.d.ts +12 -0
- package/dist/types/src/utils/CustomSet.d.ts.map +1 -0
- package/dist/types/src/utils/PromptThings.d.ts +10 -0
- package/dist/types/src/utils/PromptThings.d.ts.map +1 -0
- package/dist/types/src/utils/ReferenceCodec.d.ts +17 -0
- package/dist/types/src/utils/ReferenceCodec.d.ts.map +1 -0
- package/dist/types/ui/src/index.d.ts +10 -0
- package/dist/types/ui/src/index.d.ts.map +1 -0
- package/package.json +44 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
nullable?: boolean;
|
|
3
|
+
placeholder?: string;
|
|
4
|
+
min?: number;
|
|
5
|
+
max?: number;
|
|
6
|
+
step?: number;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* Displays the integrated decrement and
|
|
10
|
+
* increment controls.
|
|
11
|
+
*/
|
|
12
|
+
showControls?: boolean;
|
|
13
|
+
ariaLabel?: string;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_ModelProps = {
|
|
16
|
+
modelValue: number | null;
|
|
17
|
+
};
|
|
18
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
19
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
"update:modelValue": (value: number | null) => any;
|
|
21
|
+
} & {
|
|
22
|
+
edit: (payload: number | null) => any;
|
|
23
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
|
+
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
25
|
+
onEdit?: ((payload: number | null) => any) | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
placeholder: string;
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
nullable: boolean;
|
|
30
|
+
step: number;
|
|
31
|
+
showControls: boolean;
|
|
32
|
+
ariaLabel: string;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
|
+
declare const _default: typeof __VLS_export;
|
|
35
|
+
export default _default;
|
|
36
|
+
//# sourceMappingURL=NumberInput.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitive-editors/NumberInput.vue"],"names":[],"mappings":"AAkyBA,KAAK,WAAW,GAAG;IACb,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;OAGG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAsZN,KAAK,gBAAgB,GAAG;IACxB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;CACzB,CAAC;AAaF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAwMxD,QAAA,MAAM,YAAY;;;;;;;;iBA1nBE,MAAM;cAIT,OAAO;cALP,OAAO;UAIX,MAAM;kBAOE,OAAO;eAEV,MAAM;6EAknBtB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
min?: number;
|
|
3
|
+
max?: number;
|
|
4
|
+
step?: number;
|
|
5
|
+
read_only?: boolean;
|
|
6
|
+
label?: string;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_ModelProps = {
|
|
9
|
+
modelValue: number;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
12
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (value: number) => any;
|
|
14
|
+
} & {
|
|
15
|
+
edit: (payload: number) => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
18
|
+
onEdit?: ((payload: number) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
label: string;
|
|
21
|
+
read_only: boolean;
|
|
22
|
+
min: number;
|
|
23
|
+
max: number;
|
|
24
|
+
step: number;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const _default: typeof __VLS_export;
|
|
27
|
+
export default _default;
|
|
28
|
+
//# sourceMappingURL=NumberSlider.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NumberSlider.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitive-editors/NumberSlider.vue"],"names":[],"mappings":"AAmlBA,KAAK,WAAW,GAAG;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AA2MN,KAAK,gBAAgB,GAAG;IACxB,UAAU,EAAE,MAAM,CAAC;CAClB,CAAC;AAYF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAyGxD,QAAA,MAAM,YAAY;;;;;;;;WAnUJ,MAAM;eADF,OAAO;SAHb,MAAM;SACN,MAAM;UACL,MAAM;6EAyUjB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
disabled?: boolean;
|
|
3
|
+
};
|
|
4
|
+
type __VLS_ModelProps = {
|
|
5
|
+
modelValue: string | null;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: string | null) => any;
|
|
10
|
+
} & {
|
|
11
|
+
edit: (payload: string) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
14
|
+
onEdit?: ((payload: string) => any) | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
//# sourceMappingURL=ShortTextBox.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShortTextBox.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitive-editors/ShortTextBox.vue"],"names":[],"mappings":"AAyKA,KAAK,WAAW,GAAG;IACb,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAuDN,KAAK,gBAAgB,GAAG;IACxB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;CACzB,CAAC;AAQF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAuCxD,QAAA,MAAM,YAAY;;;;;;;;cAzGD,OAAO;6EA6GtB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
suggestions: string[];
|
|
3
|
+
modelValue?: string | null;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
allowCustom?: boolean;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
clearable?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
10
|
+
"update:modelValue": (value: string | null) => any;
|
|
11
|
+
clear: () => any;
|
|
12
|
+
select: (value: string) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
15
|
+
onClear?: (() => any) | undefined;
|
|
16
|
+
onSelect?: ((value: string) => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
modelValue: string | null;
|
|
19
|
+
placeholder: string;
|
|
20
|
+
allowCustom: boolean;
|
|
21
|
+
disabled: boolean;
|
|
22
|
+
clearable: boolean;
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: typeof __VLS_export;
|
|
25
|
+
export default _default;
|
|
26
|
+
//# sourceMappingURL=SingleAutoComplete.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SingleAutoComplete.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitive-editors/SingleAutoComplete.vue"],"names":[],"mappings":"AAwuCA,UAAU,KAAK;IACb,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAm7BD,QAAA,MAAM,YAAY;;;;;;;;;gBAx7BH,MAAM,GAAG,IAAI;iBACZ,MAAM;iBACN,OAAO;cACV,OAAO;eACN,OAAO;6EAw7BnB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
declare const __VLS_export: <T extends string | number | symbol>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2
|
+
props: import("vue").PublicProps & __VLS_PrettifyLocal<{
|
|
3
|
+
value: T | null;
|
|
4
|
+
possible_values: readonly T[];
|
|
5
|
+
labels?: ReadonlyMap<T, string> | Partial<Record<T, string>>;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
} & {
|
|
8
|
+
onEdit?: ((value: T) => any) | undefined;
|
|
9
|
+
}> & (typeof globalThis extends {
|
|
10
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
11
|
+
} ? P : {});
|
|
12
|
+
expose: (exposed: {}) => void;
|
|
13
|
+
attrs: any;
|
|
14
|
+
slots: {};
|
|
15
|
+
emit: (evt: "edit", value: T) => void;
|
|
16
|
+
}>) => import("vue").VNode & {
|
|
17
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
18
|
+
};
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_PrettifyLocal<T> = (T extends any ? {
|
|
22
|
+
[K in keyof T]: T[K];
|
|
23
|
+
} : {
|
|
24
|
+
[K in keyof T as K]: T[K];
|
|
25
|
+
}) & {};
|
|
26
|
+
//# sourceMappingURL=SingleEnumInput.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SingleEnumInput.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitive-editors/SingleEnumInput.vue"],"names":[],"mappings":"AAyyCA,QAAA,MAAM,YAAY,GAAK,CAAC,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM,EACxD,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,gBAAgB,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EAClE;WAy/BO,OAAO,KAAK,EAAE,WAAW,GAAG,mBAAmB,CAAC;eAp9B/C,CAAC,GAAG,IAAI;yBACE,SAAS,CAAC,EAAE;;sBAEf,MAAM;;;KAi9BqE,CAAC,GAAG,CAAC,OAAO,UAAU,SAAS;QAAE,oBAAoB,EAAE,MAAM,CAAC,CAAA;KAAE,GAAG,CAAC,GAAG,EAAE,CAAC;YAC5J,CAAC,OAAO,EAAE,EAAE,KAAK,IAAI;WACtB,GAAG;WACH,EAAE;;EAGN,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAA;CAAI,CAAC;wBACpE,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,mBAAmB,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,GAAG,GAAG;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG;KAAG,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,CAAC,GAAG,EAAE,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { default as AutoCompleteBox } from "./AutoCompleteBox.vue";
|
|
2
|
+
export { default as BooleanTickBox } from "./BooleanTickBox.vue";
|
|
3
|
+
export { default as BooleanToggle } from "./BooleanToggle.vue";
|
|
4
|
+
export { default as LongTextBox } from "./LongTextBox.vue";
|
|
5
|
+
export { default as NumberInput } from "./NumberInput.vue";
|
|
6
|
+
export { default as NumberSlider } from "./NumberSlider.vue";
|
|
7
|
+
export { default as ShortTextBox } from "./ShortTextBox.vue";
|
|
8
|
+
export { default as SingleAutoComplete } from "./SingleAutoComplete.vue";
|
|
9
|
+
export { default as SingleEnumInput } from "./SingleEnumInput.vue";
|
|
10
|
+
//# sourceMappingURL=components.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitive-editors/components.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,OAAO,IAAI,eAAe,EAC7B,MAAM,uBAAuB,CAAC;AAE/B,OAAO,EACH,OAAO,IAAI,cAAc,EAC5B,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EACH,OAAO,IAAI,aAAa,EAC3B,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EACH,OAAO,IAAI,WAAW,EACzB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EACH,OAAO,IAAI,WAAW,EACzB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EACH,OAAO,IAAI,YAAY,EAC1B,MAAM,oBAAoB,CAAC;AAE5B,OAAO,EACH,OAAO,IAAI,YAAY,EAC1B,MAAM,oBAAoB,CAAC;AAE5B,OAAO,EACH,OAAO,IAAI,kBAAkB,EAChC,MAAM,0BAA0B,CAAC;AAElC,OAAO,EACH,OAAO,IAAI,eAAe,EAC7B,MAAM,uBAAuB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitive-editors/index.ts"],"names":[],"mappings":"AAEA,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitive-editors/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAGR,MAAM,EACT,MAAM,KAAK,CAAC;AA4Bb,eAAO,MAAM,sBAAsB,EAAE,MASpC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PromptSection } from "@/domain/Prompts";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
section: PromptSection;
|
|
4
|
+
index: number;
|
|
5
|
+
canMoveUp: boolean;
|
|
6
|
+
canMoveDown: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
+
"move-up": (section: PromptSection) => any;
|
|
10
|
+
"move-down": (section: PromptSection) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
"onMove-up"?: ((section: PromptSection) => any) | undefined;
|
|
13
|
+
"onMove-down"?: ((section: PromptSection) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
//# sourceMappingURL=PromptSectionEditor.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PromptSectionEditor.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/prompts/PromptSectionEditor.vue"],"names":[],"mappings":"AAinCA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AASjD,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,aAAa,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,OAAO,CAAC;CACtB,CAAC;AAihCF,QAAA,MAAM,YAAY;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PromptTemplate } from "@/domain/Prompts";
|
|
2
|
+
type __VLS_ModelProps = {
|
|
3
|
+
modelValue: PromptTemplate;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"update:modelValue": (value: PromptTemplate) => any;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
8
|
+
"onUpdate:modelValue"?: ((value: PromptTemplate) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
11
|
+
export default _default;
|
|
12
|
+
//# sourceMappingURL=PromptTemplateEditor.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PromptTemplateEditor.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/prompts/PromptTemplateEditor.vue"],"names":[],"mappings":"AAy4BA,OAAO,EAEL,cAAc,EAIf,MAAM,kBAAkB,CAAC;AAkO1B,KAAK,gBAAgB,GAAG;IACxB,UAAU,EAAE,cAAc,CAAC;CAC1B,CAAC;AA+2BF,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Session } from "@/domain/Session";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
session: Session;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=PromptTemplatePicker.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PromptTemplatePicker.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/prompts/PromptTemplatePicker.vue"],"names":[],"mappings":"AAwRA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAa3C,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AA+UF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { World } from "@/domain/World";
|
|
2
|
+
import { Character } from "@/domain/Characters";
|
|
3
|
+
type __VLS_ModelProps = {
|
|
4
|
+
modelValue: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (value: boolean) => any;
|
|
8
|
+
} & {
|
|
9
|
+
close: () => any;
|
|
10
|
+
createNewSession: (payload: {
|
|
11
|
+
name: string;
|
|
12
|
+
world: World;
|
|
13
|
+
character: Character;
|
|
14
|
+
}) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
16
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
|
+
onClose?: (() => any) | undefined;
|
|
18
|
+
onCreateNewSession?: ((payload: {
|
|
19
|
+
name: string;
|
|
20
|
+
world: World;
|
|
21
|
+
character: Character;
|
|
22
|
+
}) => any) | undefined;
|
|
23
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: typeof __VLS_export;
|
|
25
|
+
export default _default;
|
|
26
|
+
//# sourceMappingURL=NewSessionPopUp.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NewSessionPopUp.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/session/NewSessionPopUp.vue"],"names":[],"mappings":"AAqpDA,OAAO,EACL,KAAK,EAGN,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAuWhD,KAAK,gBAAgB,GAAG;IACxB,UAAU,EAAE,OAAO,CAAC;CACnB,CAAC;AAipGF,QAAA,MAAM,YAAY;;;;;cAt+GJ,MAAM;eACL,KAAK;mBACD,SAAS;;;;;;cAFd,MAAM;eACL,KAAK;mBACD,SAAS;;kFAu+G1B,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=SessionList.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SessionList.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/session/SessionList.vue"],"names":[],"mappings":"AAu3DA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Session } from "@/domain/Session";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
session: Session;
|
|
4
|
+
deleting?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
|
+
open: (value: Session) => any;
|
|
8
|
+
delete: (value: Session) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
onOpen?: ((value: Session) => any) | undefined;
|
|
11
|
+
onDelete?: ((value: Session) => any) | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
deleting: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
//# sourceMappingURL=SessionTease.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SessionTease.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/session/SessionTease.vue"],"names":[],"mappings":"AAu1BA,OAAO,EAEL,OAAO,EACR,MAAM,kBAAkB,CAAC;AAK1B,KAAK,WAAW,GAAG;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAytBN,QAAA,MAAM,YAAY;;;;;;;cA1tBD,OAAO;6EA8tBtB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=Settings.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Settings.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/settings/Settings.vue"],"names":[],"mappings":"AAyDA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=ThemeSettings.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeSettings.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/settings/ThemeSettings.vue"],"names":[],"mappings":"AA0gJA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Location } from "@/domain/World";
|
|
2
|
+
export type ConnectionDirection = "outgoing" | "incoming" | "both";
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
parentLocation: Location;
|
|
5
|
+
connectableLocations: Location[];
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
select: (location: Location, direction: ConnectionDirection) => any;
|
|
9
|
+
close: () => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
|
+
onSelect?: ((location: Location, direction: ConnectionDirection) => any) | undefined;
|
|
12
|
+
onClose?: (() => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
//# sourceMappingURL=ConnectLocationPrompt.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConnectLocationPrompt.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/space/ConnectLocationPrompt.vue"],"names":[],"mappings":"AAsaA,OAAO,EACL,QAAQ,EAKT,MAAM,gBAAgB,CAAC;AAMxB,MAAM,MAAM,mBAAmB,GACzB,UAAU,GACV,UAAU,GACV,MAAM,CAAC;AAEb,KAAK,WAAW,GAAG;IACjB,cAAc,EAAE,QAAQ,CAAC;IACzB,oBAAoB,EAAE,QAAQ,EAAE,CAAC;CAClC,CAAC;AA8lBF,QAAA,MAAM,YAAY;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Location, LocationEdge } from "@/domain/World";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
fromLocation: Location;
|
|
4
|
+
toLocation: Location;
|
|
5
|
+
edgeInfo: LocationEdge;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
+
delete: (value: {
|
|
9
|
+
from: Location;
|
|
10
|
+
to: Location;
|
|
11
|
+
}) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
onDelete?: ((value: {
|
|
14
|
+
from: Location;
|
|
15
|
+
to: Location;
|
|
16
|
+
}) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
//# sourceMappingURL=EdgeEditor.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EdgeEditor.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/space/EdgeEditor.vue"],"names":[],"mappings":"AA0BA,OAAO,EAAC,QAAQ,EAAE,YAAY,EAAC,MAAM,gBAAgB,CAAC;AAEtD,KAAK,WAAW,GAAG;IACjB,YAAY,EAAG,QAAQ,CAAC;IACxB,UAAU,EAAG,QAAQ,CAAC;IACtB,QAAQ,EAAG,YAAY,CAAC;CACzB,CAAC;AAyBF,QAAA,MAAM,YAAY;;cArBU,QAAQ;YAAK,QAAQ;;;;cAArB,QAAQ;YAAK,QAAQ;;kFAwB/C,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Location } from "@/domain/World";
|
|
2
|
+
type __VLS_ModelProps = {
|
|
3
|
+
modelValue: {
|
|
4
|
+
parentLocation: Location;
|
|
5
|
+
all_locations: Location[];
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: {
|
|
10
|
+
parentLocation: Location;
|
|
11
|
+
all_locations: Location[];
|
|
12
|
+
}) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: {
|
|
15
|
+
parentLocation: Location;
|
|
16
|
+
all_locations: Location[];
|
|
17
|
+
}) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
20
|
+
export default _default;
|
|
21
|
+
//# sourceMappingURL=LocationEdgesEditor.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LocationEdgesEditor.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/space/LocationEdgesEditor.vue"],"names":[],"mappings":"AA0oFA,OAAO,EACL,QAAQ,EAET,MAAM,gBAAgB,CAAC;AA85BxB,KAAK,gBAAgB,GAAG;IACxB,UAAU,EAAE;QACV,cAAc,EAAE,QAAQ,CAAC;QACzB,aAAa,EAAE,QAAQ,EAAE,CAAC;KAC3B,CAAC;CACD,CAAC;AA+iJF,QAAA,MAAM,YAAY;;wBA5iJA,QAAQ;uBACT,QAAQ,EAAE;;;;wBADT,QAAQ;uBACT,QAAQ,EAAE;;kFA8iJzB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Location } from "@/domain/World";
|
|
2
|
+
type __VLS_ModelProps = {
|
|
3
|
+
modelValue: {
|
|
4
|
+
location: Location;
|
|
5
|
+
all_locations: Location[];
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: {
|
|
10
|
+
location: Location;
|
|
11
|
+
all_locations: Location[];
|
|
12
|
+
}) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: {
|
|
15
|
+
location: Location;
|
|
16
|
+
all_locations: Location[];
|
|
17
|
+
}) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
20
|
+
export default _default;
|
|
21
|
+
//# sourceMappingURL=LocationEditor.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LocationEditor.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/space/LocationEditor.vue"],"names":[],"mappings":"AAg1BA,OAAO,EAAC,QAAQ,EAAC,MAAM,gBAAgB,CAAC;AA6NxC,KAAK,gBAAgB,GAAG;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,QAAQ,CAAC;QACnB,aAAa,EAAE,QAAQ,EAAE,CAAC;KAC3B,CAAC;CACD,CAAC;AAguBF,QAAA,MAAM,YAAY;;kBA7tBN,QAAQ;uBACH,QAAQ,EAAE;;;;kBADf,QAAQ;uBACH,QAAQ,EAAE;;kFA+tBzB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Region } from "@/domain/World";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
region: Region;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
+
delete: (region: Region) => any;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
8
|
+
onDelete?: ((region: Region) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
11
|
+
export default _default;
|
|
12
|
+
//# sourceMappingURL=RegionEditor.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RegionEditor.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/space/RegionEditor.vue"],"names":[],"mappings":"AAo5BA,OAAO,EAIL,MAAM,EAGP,MAAM,gBAAgB,CAAC;AAgBxB,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAo/BF,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { World } from "@/domain/World";
|
|
2
|
+
type __VLS_ModelProps = {
|
|
3
|
+
modelValue: World;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"update:modelValue": (value: World) => any;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
8
|
+
"onUpdate:modelValue"?: ((value: World) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
11
|
+
export default _default;
|
|
12
|
+
//# sourceMappingURL=WorldEdit.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WorldEdit.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/space/WorldEdit.vue"],"names":[],"mappings":"AAoiCA,OAAO,EACL,KAAK,EAIN,MAAM,gBAAgB,CAAC;AA2PxB,KAAK,gBAAgB,GAAG;IACxB,UAAU,EAAE,KAAK,CAAC;CACjB,CAAC;AAs1BF,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=WorldLanding.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WorldLanding.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/space/WorldLanding.vue"],"names":[],"mappings":"AAy4HA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { World } from "@/domain/World";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
world: World;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=WorldLocationGraph.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WorldLocationGraph.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/space/WorldLocationGraph.vue"],"names":[],"mappings":"AAq5JA,OAAO,EAGL,KAAK,EACN,MAAM,gBAAgB,CAAC;AAKxB,KAAK,WAAW,GAAG;IACjB,KAAK,EAAE,KAAK,CAAC;CACd,CAAC;AA+9PF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Tag } from '@/domain/Tag';
|
|
2
|
+
type __VLS_ModelProps = {
|
|
3
|
+
modelValue?: Tag[];
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"update:modelValue": (value: Tag[]) => any;
|
|
7
|
+
} & {
|
|
8
|
+
removeTag: (tag: Tag) => any;
|
|
9
|
+
newTag: (tag: Tag) => any;
|
|
10
|
+
newCustomTag: (tag: Tag) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
12
|
+
"onUpdate:modelValue"?: ((value: Tag[]) => any) | undefined;
|
|
13
|
+
onRemoveTag?: ((tag: Tag) => any) | undefined;
|
|
14
|
+
onNewTag?: ((tag: Tag) => any) | undefined;
|
|
15
|
+
onNewCustomTag?: ((tag: Tag) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
18
|
+
export default _default;
|
|
19
|
+
//# sourceMappingURL=TagAutocomplete.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagAutocomplete.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/tags/TagAutocomplete.vue"],"names":[],"mappings":"AA6IA,OAAO,EAAE,GAAG,EAAmB,MAAM,cAAc,CAAA;AA6FnD,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,CAAC;AA0DF,QAAA,MAAM,YAAY;;;;;;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
fieldName: string | null;
|
|
3
|
+
info?: string;
|
|
4
|
+
vertical?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_1: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
11
|
+
vertical: boolean;
|
|
12
|
+
info: string;
|
|
13
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=FieldEditorWrapper.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldEditorWrapper.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/utils/FieldEditorWrapper.vue"],"names":[],"mappings":"AAuoBA,KAAK,WAAW,GAAG;IACb,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAyaN,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAQ/C,QAAA,MAAM,UAAU;cApbC,OAAO;UADX,MAAM;6EAwbjB,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
endpoint?: string;
|
|
3
|
+
delayMs?: number;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
6
|
+
endpoint: string;
|
|
7
|
+
delayMs: number;
|
|
8
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
10
|
+
export default _default;
|
|
11
|
+
//# sourceMappingURL=PrologValidator.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrologValidator.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/utils/PrologValidator.vue"],"names":[],"mappings":"AA4fA,KAAK,WAAW,GAAG;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAwjBN,QAAA,MAAM,YAAY;cA1jBD,MAAM;aACP,MAAM;6EA4jBpB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
search?: string;
|
|
3
|
+
placeholder?: string;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
ariaLabel?: string;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
+
"update:search": (value: string) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
"onUpdate:search"?: ((value: string) => any) | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
placeholder: string;
|
|
13
|
+
search: string;
|
|
14
|
+
disabled: boolean;
|
|
15
|
+
ariaLabel: string;
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
18
|
+
export default _default;
|
|
19
|
+
//# sourceMappingURL=SearchBar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchBar.vue.d.ts","sourceRoot":"","sources":["../../../../../../src/components/utils/SearchBar.vue"],"names":[],"mappings":"AA0OA,KAAK,WAAW,GAAG;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AA+HN,QAAA,MAAM,YAAY;;;;;iBAlIE,MAAM;YADX,MAAM;cAEJ,OAAO;eACN,MAAM;6EAoItB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|