@aerogel/core 0.0.0-next.f8cdd39997c56dcd46e07c26af8a84d04d610fce → 0.0.0-next.fcfbfdc3428c34c4d1c0e781b61d244f13232fc9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aerogel-core.d.ts +2645 -884
- package/dist/aerogel-core.js +3266 -0
- package/dist/aerogel-core.js.map +1 -0
- package/package.json +36 -34
- package/src/bootstrap/bootstrap.test.ts +7 -10
- package/src/bootstrap/index.ts +43 -14
- package/src/bootstrap/options.ts +4 -1
- package/src/components/AppLayout.vue +16 -0
- package/src/components/{AGAppModals.vue → AppModals.vue} +3 -4
- package/src/components/{AGAppOverlays.vue → AppOverlays.vue} +5 -6
- package/src/components/AppToasts.vue +16 -0
- package/src/components/contracts/AlertModal.ts +4 -0
- package/src/components/contracts/Button.ts +16 -0
- package/src/components/contracts/ConfirmModal.ts +41 -0
- package/src/components/contracts/DropdownMenu.ts +20 -0
- package/src/components/contracts/ErrorReportModal.ts +29 -0
- package/src/components/contracts/Input.ts +26 -0
- package/src/components/contracts/LoadingModal.ts +22 -0
- package/src/components/contracts/Modal.ts +21 -0
- package/src/components/contracts/PromptModal.ts +30 -0
- package/src/components/contracts/Select.ts +44 -0
- package/src/components/contracts/Toast.ts +13 -0
- package/src/components/contracts/index.ts +11 -0
- package/src/components/headless/HeadlessButton.vue +51 -0
- package/src/components/headless/HeadlessInput.vue +59 -0
- package/src/components/headless/HeadlessInputDescription.vue +27 -0
- package/src/components/headless/{forms/AGHeadlessInputError.vue → HeadlessInputError.vue} +4 -8
- package/src/components/headless/HeadlessInputInput.vue +75 -0
- package/src/components/headless/HeadlessInputLabel.vue +18 -0
- package/src/components/headless/HeadlessInputTextArea.vue +40 -0
- package/src/components/headless/HeadlessModal.vue +92 -0
- package/src/components/headless/HeadlessModalContent.vue +30 -0
- package/src/components/headless/HeadlessModalDescription.vue +12 -0
- package/src/components/headless/HeadlessModalOverlay.vue +12 -0
- package/src/components/headless/HeadlessModalTitle.vue +12 -0
- package/src/components/headless/HeadlessSelect.vue +118 -0
- package/src/components/headless/HeadlessSelectError.vue +25 -0
- package/src/components/headless/HeadlessSelectLabel.vue +25 -0
- package/src/components/headless/HeadlessSelectOption.vue +34 -0
- package/src/components/headless/HeadlessSelectOptions.vue +37 -0
- package/src/components/headless/HeadlessSelectTrigger.vue +22 -0
- package/src/components/headless/HeadlessSelectValue.vue +18 -0
- package/src/components/headless/HeadlessToast.vue +18 -0
- package/src/components/headless/HeadlessToastAction.vue +13 -0
- package/src/components/headless/index.ts +19 -3
- package/src/components/index.ts +6 -9
- package/src/components/ui/AdvancedOptions.vue +18 -0
- package/src/components/ui/AlertModal.vue +13 -0
- package/src/components/ui/Button.vue +98 -0
- package/src/components/ui/Checkbox.vue +56 -0
- package/src/components/ui/ConfirmModal.vue +42 -0
- package/src/components/ui/DropdownMenu.vue +32 -0
- package/src/components/ui/DropdownMenuOption.vue +14 -0
- package/src/components/ui/DropdownMenuOptions.vue +27 -0
- package/src/components/ui/EditableContent.vue +82 -0
- package/src/components/ui/ErrorMessage.vue +15 -0
- package/src/components/ui/ErrorReportModal.vue +62 -0
- package/src/components/{modals/AGErrorReportModalButtons.vue → ui/ErrorReportModalButtons.vue} +38 -29
- package/src/components/ui/ErrorReportModalTitle.vue +24 -0
- package/src/components/ui/Form.vue +24 -0
- package/src/components/ui/Input.vue +56 -0
- package/src/components/ui/Link.vue +12 -0
- package/src/components/ui/LoadingModal.vue +32 -0
- package/src/components/ui/Markdown.vue +69 -0
- package/src/components/ui/Modal.vue +91 -0
- package/src/components/ui/ModalContext.vue +30 -0
- package/src/components/ui/ProgressBar.vue +51 -0
- package/src/components/ui/PromptModal.vue +35 -0
- package/src/components/ui/Select.vue +25 -0
- package/src/components/ui/SelectLabel.vue +17 -0
- package/src/components/ui/SelectOption.vue +29 -0
- package/src/components/ui/SelectOptions.vue +30 -0
- package/src/components/ui/SelectTrigger.vue +29 -0
- package/src/components/ui/SettingsModal.vue +15 -0
- package/src/components/ui/StartupCrash.vue +31 -0
- package/src/components/ui/Toast.vue +42 -0
- package/src/components/ui/index.ts +30 -0
- package/src/directives/index.ts +13 -5
- package/src/directives/measure.ts +40 -0
- package/src/errors/Errors.state.ts +1 -1
- package/src/errors/Errors.ts +35 -34
- package/src/errors/JobCancelledError.ts +3 -0
- package/src/errors/index.ts +19 -29
- package/src/errors/utils.ts +35 -0
- package/src/forms/{Form.test.ts → FormController.test.ts} +33 -4
- package/src/forms/FormController.ts +245 -0
- package/src/forms/composition.ts +4 -4
- package/src/forms/index.ts +3 -1
- package/src/forms/utils.ts +36 -5
- package/src/forms/validation.ts +19 -0
- package/src/index.css +54 -0
- package/src/{main.ts → index.ts} +3 -0
- package/src/jobs/Job.ts +147 -0
- package/src/jobs/index.ts +10 -0
- package/src/jobs/listeners.ts +3 -0
- package/src/jobs/status.ts +4 -0
- package/src/lang/DefaultLangProvider.ts +46 -0
- package/src/lang/Lang.state.ts +11 -0
- package/src/lang/Lang.ts +44 -29
- package/src/lang/index.ts +12 -6
- package/src/lang/settings/Language.vue +48 -0
- package/src/lang/settings/index.ts +10 -0
- package/src/plugins/Plugin.ts +2 -1
- package/src/plugins/index.ts +22 -0
- package/src/services/App.state.ts +40 -6
- package/src/services/App.ts +53 -5
- package/src/services/Cache.ts +43 -0
- package/src/services/Events.test.ts +39 -0
- package/src/services/Events.ts +112 -32
- package/src/services/Service.ts +154 -49
- package/src/services/Storage.ts +20 -0
- package/src/services/index.ts +18 -6
- package/src/services/store.ts +8 -5
- package/src/services/utils.ts +18 -0
- package/src/testing/index.ts +26 -0
- package/src/testing/setup.ts +11 -0
- package/src/ui/UI.state.ts +19 -7
- package/src/ui/UI.ts +274 -58
- package/src/ui/index.ts +23 -17
- package/src/ui/utils.ts +16 -0
- package/src/utils/classes.ts +49 -0
- package/src/utils/composition/events.ts +3 -2
- package/src/utils/composition/forms.ts +14 -4
- package/src/utils/composition/persistent.test.ts +33 -0
- package/src/utils/composition/persistent.ts +11 -0
- package/src/utils/composition/state.test.ts +47 -0
- package/src/utils/composition/state.ts +33 -0
- package/src/utils/index.ts +5 -0
- package/src/utils/markdown.test.ts +50 -0
- package/src/utils/markdown.ts +19 -6
- package/src/utils/types.ts +3 -0
- package/src/utils/vue.ts +28 -118
- package/.eslintrc.js +0 -3
- package/dist/aerogel-core.cjs.js +0 -2
- package/dist/aerogel-core.cjs.js.map +0 -1
- package/dist/aerogel-core.esm.js +0 -2
- package/dist/aerogel-core.esm.js.map +0 -1
- package/dist/virtual.d.ts +0 -11
- package/noeldemartin.config.js +0 -5
- package/src/components/AGAppLayout.vue +0 -11
- package/src/components/AGAppSnackbars.vue +0 -13
- package/src/components/basic/AGErrorMessage.vue +0 -16
- package/src/components/basic/AGLink.vue +0 -9
- package/src/components/basic/AGMarkdown.vue +0 -36
- package/src/components/basic/index.ts +0 -5
- package/src/components/constants.ts +0 -8
- package/src/components/forms/AGButton.vue +0 -44
- package/src/components/forms/AGCheckbox.vue +0 -35
- package/src/components/forms/AGForm.vue +0 -26
- package/src/components/forms/AGInput.vue +0 -36
- package/src/components/forms/index.ts +0 -6
- package/src/components/headless/forms/AGHeadlessButton.vue +0 -51
- package/src/components/headless/forms/AGHeadlessInput.ts +0 -8
- package/src/components/headless/forms/AGHeadlessInput.vue +0 -54
- package/src/components/headless/forms/AGHeadlessInputInput.vue +0 -45
- package/src/components/headless/forms/AGHeadlessInputLabel.vue +0 -16
- package/src/components/headless/forms/index.ts +0 -6
- package/src/components/headless/modals/AGHeadlessModal.ts +0 -7
- package/src/components/headless/modals/AGHeadlessModal.vue +0 -88
- package/src/components/headless/modals/AGHeadlessModalPanel.vue +0 -28
- package/src/components/headless/modals/AGHeadlessModalTitle.vue +0 -13
- package/src/components/headless/modals/index.ts +0 -6
- package/src/components/headless/snackbars/AGHeadlessSnackbar.vue +0 -10
- package/src/components/headless/snackbars/index.ts +0 -25
- package/src/components/modals/AGAlertModal.vue +0 -25
- package/src/components/modals/AGConfirmModal.vue +0 -30
- package/src/components/modals/AGErrorReportModal.ts +0 -20
- package/src/components/modals/AGErrorReportModal.vue +0 -62
- package/src/components/modals/AGErrorReportModalTitle.vue +0 -25
- package/src/components/modals/AGLoadingModal.vue +0 -19
- package/src/components/modals/AGModal.ts +0 -10
- package/src/components/modals/AGModal.vue +0 -36
- package/src/components/modals/AGModalContext.ts +0 -8
- package/src/components/modals/AGModalContext.vue +0 -22
- package/src/components/modals/index.ts +0 -21
- package/src/components/snackbars/AGSnackbar.vue +0 -42
- package/src/components/snackbars/index.ts +0 -3
- package/src/directives/initial-focus.ts +0 -11
- package/src/forms/Form.ts +0 -176
- package/src/types/virtual.d.ts +0 -11
- package/tsconfig.json +0 -11
- package/vite.config.ts +0 -14
package/dist/aerogel-core.d.ts
CHANGED
|
@@ -1,727 +1,1910 @@
|
|
|
1
|
+
import { AcceptableValue } from 'reka-ui';
|
|
1
2
|
import { AllowedComponentProps } from 'vue';
|
|
2
|
-
import
|
|
3
|
-
import
|
|
3
|
+
import { App as App_2 } from 'vue';
|
|
4
|
+
import { AsTag } from 'reka-ui';
|
|
5
|
+
import { ClassValue } from 'clsx';
|
|
6
|
+
import { Component } from 'vue';
|
|
7
|
+
import { ComponentCustomProperties } from 'vue';
|
|
4
8
|
import { ComponentCustomProps } from 'vue';
|
|
9
|
+
import { ComponentInternalInstance } from 'vue';
|
|
10
|
+
import { ComponentOptionsBase } from 'vue';
|
|
5
11
|
import { ComponentOptionsMixin } from 'vue';
|
|
6
|
-
import
|
|
12
|
+
import { ComponentProvideOptions } from 'vue';
|
|
13
|
+
import { ComponentPublicInstance } from 'vue';
|
|
14
|
+
import { ComputedGetter } from 'vue';
|
|
15
|
+
import { ComputedRef } from 'vue';
|
|
7
16
|
import { Constructor } from '@noeldemartin/utils';
|
|
8
|
-
import
|
|
17
|
+
import { cva } from 'class-variance-authority';
|
|
18
|
+
import { DebuggerEvent } from 'vue';
|
|
19
|
+
import { DeepReadonly } from 'vue';
|
|
9
20
|
import { DefineComponent } from 'vue';
|
|
10
|
-
import
|
|
11
|
-
import {
|
|
21
|
+
import { DefineStoreOptions } from 'pinia';
|
|
22
|
+
import { DialogContent } from 'reka-ui';
|
|
23
|
+
import { DialogContentProps } from 'reka-ui';
|
|
24
|
+
import { DialogDescriptionProps } from 'reka-ui';
|
|
25
|
+
import { DialogOverlayProps } from 'reka-ui';
|
|
26
|
+
import { DialogTitleProps } from 'reka-ui';
|
|
27
|
+
import { Directive } from 'vue';
|
|
28
|
+
import { DropdownMenuContentProps } from 'reka-ui';
|
|
12
29
|
import { Facade } from '@noeldemartin/utils';
|
|
13
|
-
import
|
|
14
|
-
import
|
|
30
|
+
import { GetClosureArgs } from '@noeldemartin/utils';
|
|
31
|
+
import { GetClosureResult } from '@noeldemartin/utils';
|
|
32
|
+
import { _GettersTree } from 'pinia';
|
|
33
|
+
import { GlobalComponents } from 'vue';
|
|
34
|
+
import { GlobalDirectives } from 'vue';
|
|
35
|
+
import { HTMLAttributes } from 'vue';
|
|
36
|
+
import { InjectionKey } from 'vue';
|
|
37
|
+
import { JSError } from '@noeldemartin/utils';
|
|
38
|
+
import { LabelProps } from 'reka-ui';
|
|
39
|
+
import { Listeners } from '@noeldemartin/utils';
|
|
40
|
+
import { ListenersManager } from '@noeldemartin/utils';
|
|
15
41
|
import { MagicObject } from '@noeldemartin/utils';
|
|
16
|
-
import
|
|
42
|
+
import { MaybeRef } from 'vue';
|
|
43
|
+
import { nextTick } from 'vue';
|
|
44
|
+
import { Nullable } from '@noeldemartin/utils';
|
|
45
|
+
import { ObjectValues } from '@noeldemartin/utils';
|
|
46
|
+
import { OnCleanup } from '@vue/reactivity';
|
|
47
|
+
import { Pinia } from 'pinia';
|
|
48
|
+
import { PrimitiveProps } from 'reka-ui';
|
|
17
49
|
import { PromisedValue } from '@noeldemartin/utils';
|
|
18
50
|
import { PropType } from 'vue';
|
|
19
|
-
import
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import
|
|
51
|
+
import { PublicProps } from 'vue';
|
|
52
|
+
import { Ref } from 'vue';
|
|
53
|
+
import { SelectContentProps } from 'reka-ui';
|
|
54
|
+
import { SelectItemProps } from 'reka-ui';
|
|
55
|
+
import { ShallowUnwrapRef } from 'vue';
|
|
56
|
+
import { Slot } from 'vue';
|
|
57
|
+
import { StateTree } from 'pinia';
|
|
58
|
+
import { Store } from 'pinia';
|
|
59
|
+
import { UnwrapNestedRefs } from 'vue';
|
|
23
60
|
import { VNode } from 'vue';
|
|
24
61
|
import { VNodeProps } from 'vue';
|
|
62
|
+
import { WatchOptions } from 'vue';
|
|
63
|
+
import { WatchStopHandle } from 'vue';
|
|
64
|
+
|
|
65
|
+
declare const __VLS_component: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
66
|
+
|
|
67
|
+
declare const __VLS_component_10: DefineComponent<DialogTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
68
|
+
|
|
69
|
+
declare const __VLS_component_11: DefineComponent<SelectProps, {
|
|
70
|
+
labelClass: any;
|
|
71
|
+
optionsClass: any;
|
|
72
|
+
align: "start" | "center" | "end" | undefined;
|
|
73
|
+
side: "top" | "right" | "bottom" | "left" | undefined;
|
|
74
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
75
|
+
id: string;
|
|
76
|
+
name: ComputedRef<string | undefined>;
|
|
77
|
+
label: ComputedRef<string | undefined>;
|
|
78
|
+
description: ComputedRef<string | undefined>;
|
|
79
|
+
placeholder: ComputedRef<string>;
|
|
80
|
+
options: ComputedRef< {
|
|
81
|
+
key: string;
|
|
82
|
+
label: string;
|
|
83
|
+
value: AcceptableValue;
|
|
84
|
+
}[] | null>;
|
|
85
|
+
selectedOption: ComputedRef< {
|
|
86
|
+
key: string;
|
|
87
|
+
label: string;
|
|
88
|
+
value: AcceptableValue;
|
|
89
|
+
} | undefined>;
|
|
90
|
+
errors: Readonly<Ref<readonly string[] | null, readonly string[] | null>>;
|
|
91
|
+
required: ComputedRef<boolean | undefined>;
|
|
92
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
93
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
94
|
+
"update:modelValue": (value: Nullable<FormFieldValue>) => any;
|
|
95
|
+
}, string, PublicProps, Readonly<SelectProps> & Readonly<{
|
|
96
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
97
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
98
|
+
|
|
99
|
+
declare const __VLS_component_12: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
100
|
+
|
|
101
|
+
declare const __VLS_component_13: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
102
|
+
|
|
103
|
+
declare const __VLS_component_14: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
104
|
+
|
|
105
|
+
declare const __VLS_component_15: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
106
|
+
|
|
107
|
+
declare const __VLS_component_16: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
108
|
+
|
|
109
|
+
declare const __VLS_component_17: DefineComponent<ToastProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ToastProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
110
|
+
|
|
111
|
+
declare const __VLS_component_18: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDetailsElement>;
|
|
112
|
+
|
|
113
|
+
declare const __VLS_component_19: DefineComponent<ButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
114
|
+
|
|
115
|
+
declare const __VLS_component_2: DefineComponent<ButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
116
|
+
|
|
117
|
+
declare const __VLS_component_20: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
118
|
+
"update:modelValue": (value: Nullable<FormFieldValue>) => any;
|
|
119
|
+
}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
|
|
120
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
121
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
122
|
+
$inputRef: ({
|
|
123
|
+
$: ComponentInternalInstance;
|
|
124
|
+
$data: {};
|
|
125
|
+
$props: {
|
|
126
|
+
readonly name?: string | undefined;
|
|
127
|
+
readonly label?: string | undefined;
|
|
128
|
+
readonly description?: string | undefined;
|
|
129
|
+
readonly modelValue?: Nullable<FormFieldValue>;
|
|
130
|
+
readonly as?: string | undefined;
|
|
131
|
+
readonly "onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
132
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
133
|
+
$attrs: {
|
|
134
|
+
[x: string]: unknown;
|
|
135
|
+
};
|
|
136
|
+
$refs: {
|
|
137
|
+
[x: string]: unknown;
|
|
138
|
+
};
|
|
139
|
+
$slots: Readonly<{
|
|
140
|
+
[name: string]: Slot<any> | undefined;
|
|
141
|
+
}>;
|
|
142
|
+
$root: ComponentPublicInstance | null;
|
|
143
|
+
$parent: ComponentPublicInstance | null;
|
|
144
|
+
$host: Element | null;
|
|
145
|
+
$emit: (event: "update:modelValue", value: Nullable<FormFieldValue>) => void;
|
|
146
|
+
$el: any;
|
|
147
|
+
$options: ComponentOptionsBase<Readonly<InputProps & {
|
|
148
|
+
as?: string;
|
|
149
|
+
}> & Readonly<{
|
|
150
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
151
|
+
}>, {
|
|
152
|
+
id: string;
|
|
153
|
+
name: ComputedRef<string | undefined>;
|
|
154
|
+
label: ComputedRef<string | undefined>;
|
|
155
|
+
description: ComputedRef<string | undefined>;
|
|
156
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
157
|
+
errors: Readonly<Ref<readonly string[] | null, readonly string[] | null>>;
|
|
158
|
+
required: ComputedRef<boolean | undefined>;
|
|
159
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
160
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
161
|
+
"update:modelValue": (value: Nullable<FormFieldValue>) => any;
|
|
162
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
163
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
164
|
+
created?: (() => void) | (() => void)[];
|
|
165
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
166
|
+
mounted?: (() => void) | (() => void)[];
|
|
167
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
168
|
+
updated?: (() => void) | (() => void)[];
|
|
169
|
+
activated?: (() => void) | (() => void)[];
|
|
170
|
+
deactivated?: (() => void) | (() => void)[];
|
|
171
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
172
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
173
|
+
destroyed?: (() => void) | (() => void)[];
|
|
174
|
+
unmounted?: (() => void) | (() => void)[];
|
|
175
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
176
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
177
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
178
|
+
};
|
|
179
|
+
$forceUpdate: () => void;
|
|
180
|
+
$nextTick: typeof nextTick;
|
|
181
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
182
|
+
} & Readonly<{}> & Omit<Readonly<InputProps & {
|
|
183
|
+
as?: string;
|
|
184
|
+
}> & Readonly<{
|
|
185
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
186
|
+
}>, "id" | "value" | "name" | "description" | "errors" | "required" | "label" | "update"> & ShallowUnwrapRef< {
|
|
187
|
+
id: string;
|
|
188
|
+
name: ComputedRef<string | undefined>;
|
|
189
|
+
label: ComputedRef<string | undefined>;
|
|
190
|
+
description: ComputedRef<string | undefined>;
|
|
191
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
192
|
+
errors: Readonly<Ref<readonly string[] | null, readonly string[] | null>>;
|
|
193
|
+
required: ComputedRef<boolean | undefined>;
|
|
194
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
195
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
196
|
+
$slots: {
|
|
197
|
+
default?(_: {}): any;
|
|
198
|
+
};
|
|
199
|
+
}) | null;
|
|
200
|
+
}, any>;
|
|
201
|
+
|
|
202
|
+
declare const __VLS_component_21: DefineComponent<DropdownMenuProps, {
|
|
203
|
+
align: "start" | "center" | "end" | undefined;
|
|
204
|
+
side: "top" | "right" | "bottom" | "left" | undefined;
|
|
205
|
+
options: ComputedRef<DropdownMenuOptionData[] | undefined>;
|
|
206
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DropdownMenuProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
207
|
+
|
|
208
|
+
declare const __VLS_component_22: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
209
|
+
select: () => any;
|
|
210
|
+
}, string, PublicProps, Readonly<{}> & Readonly<{
|
|
211
|
+
onSelect?: (() => any) | undefined;
|
|
212
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
213
|
+
|
|
214
|
+
declare const __VLS_component_23: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
215
|
+
|
|
216
|
+
declare const __VLS_component_24: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
217
|
+
update: (value: string | number) => any;
|
|
218
|
+
save: () => any;
|
|
219
|
+
}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{
|
|
220
|
+
onUpdate?: ((value: string | number) => any) | undefined;
|
|
221
|
+
onSave?: (() => any) | undefined;
|
|
222
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
223
|
+
$inputRef: HTMLInputElement;
|
|
224
|
+
}, HTMLDivElement>;
|
|
225
|
+
|
|
226
|
+
declare const __VLS_component_25: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
227
|
+
|
|
228
|
+
declare const __VLS_component_26: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
229
|
+
submit: () => any;
|
|
230
|
+
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
231
|
+
onSubmit?: (() => any) | undefined;
|
|
232
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFormElement>;
|
|
233
|
+
|
|
234
|
+
declare const __VLS_component_27: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
235
|
+
|
|
236
|
+
declare const __VLS_component_28: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
237
|
+
|
|
238
|
+
declare const __VLS_component_29: DefineComponent<__VLS_Props_15, {
|
|
239
|
+
close: ((result?: unknown) => Promise<void>) | Ref<(result?: unknown) => Promise<void>, (result?: unknown) => Promise<void>>;
|
|
240
|
+
$content: Ref<undefined, undefined> | ModalContentInstance | Ref<null, null> | Ref<{
|
|
241
|
+
$: ComponentInternalInstance;
|
|
242
|
+
$data: {};
|
|
243
|
+
$props: {
|
|
244
|
+
readonly forceMount?: boolean | undefined;
|
|
245
|
+
readonly trapFocus?: boolean | undefined;
|
|
246
|
+
readonly disableOutsidePointerEvents?: boolean | undefined;
|
|
247
|
+
readonly asChild?: boolean | undefined;
|
|
248
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
249
|
+
readonly onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined | undefined;
|
|
250
|
+
readonly onPointerDownOutside?: ((event: CustomEvent<{
|
|
251
|
+
originalEvent: PointerEvent;
|
|
252
|
+
}>) => any) | undefined | undefined;
|
|
253
|
+
readonly onFocusOutside?: ((event: CustomEvent<{
|
|
254
|
+
originalEvent: FocusEvent;
|
|
255
|
+
}>) => any) | undefined | undefined;
|
|
256
|
+
readonly onInteractOutside?: ((event: CustomEvent<{
|
|
257
|
+
originalEvent: PointerEvent;
|
|
258
|
+
}> | CustomEvent<{
|
|
259
|
+
originalEvent: FocusEvent;
|
|
260
|
+
}>) => any) | undefined | undefined;
|
|
261
|
+
readonly onOpenAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
262
|
+
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
263
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
264
|
+
$attrs: {
|
|
265
|
+
[x: string]: unknown;
|
|
266
|
+
};
|
|
267
|
+
$refs: {
|
|
268
|
+
[x: string]: unknown;
|
|
269
|
+
};
|
|
270
|
+
$slots: Readonly<{
|
|
271
|
+
[name: string]: Slot<any> | undefined;
|
|
272
|
+
}>;
|
|
273
|
+
$root: ComponentPublicInstance | null;
|
|
274
|
+
$parent: ComponentPublicInstance | null;
|
|
275
|
+
$host: Element | null;
|
|
276
|
+
$emit: ((event: "escapeKeyDown", event: KeyboardEvent) => void) & ((event: "pointerDownOutside", event: CustomEvent<{
|
|
277
|
+
originalEvent: PointerEvent;
|
|
278
|
+
}>) => void) & ((event: "focusOutside", event: CustomEvent<{
|
|
279
|
+
originalEvent: FocusEvent;
|
|
280
|
+
}>) => void) & ((event: "interactOutside", event: CustomEvent<{
|
|
281
|
+
originalEvent: PointerEvent;
|
|
282
|
+
}> | CustomEvent<{
|
|
283
|
+
originalEvent: FocusEvent;
|
|
284
|
+
}>) => void) & ((event: "openAutoFocus", event: Event) => void) & ((event: "closeAutoFocus", event: Event) => void);
|
|
285
|
+
$el: any;
|
|
286
|
+
$options: ComponentOptionsBase<Readonly<DialogContentProps> & Readonly<{
|
|
287
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
288
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
289
|
+
originalEvent: PointerEvent;
|
|
290
|
+
}>) => any) | undefined;
|
|
291
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
292
|
+
originalEvent: FocusEvent;
|
|
293
|
+
}>) => any) | undefined;
|
|
294
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
295
|
+
originalEvent: PointerEvent;
|
|
296
|
+
}> | CustomEvent<{
|
|
297
|
+
originalEvent: FocusEvent;
|
|
298
|
+
}>) => any) | undefined;
|
|
299
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
300
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
301
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
302
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
303
|
+
pointerDownOutside: (event: CustomEvent<{
|
|
304
|
+
originalEvent: PointerEvent;
|
|
305
|
+
}>) => any;
|
|
306
|
+
focusOutside: (event: CustomEvent<{
|
|
307
|
+
originalEvent: FocusEvent;
|
|
308
|
+
}>) => any;
|
|
309
|
+
interactOutside: (event: CustomEvent<{
|
|
310
|
+
originalEvent: PointerEvent;
|
|
311
|
+
}> | CustomEvent<{
|
|
312
|
+
originalEvent: FocusEvent;
|
|
313
|
+
}>) => any;
|
|
314
|
+
openAutoFocus: (event: Event) => any;
|
|
315
|
+
closeAutoFocus: (event: Event) => any;
|
|
316
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
317
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
318
|
+
created?: (() => void) | (() => void)[];
|
|
319
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
320
|
+
mounted?: (() => void) | (() => void)[];
|
|
321
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
322
|
+
updated?: (() => void) | (() => void)[];
|
|
323
|
+
activated?: (() => void) | (() => void)[];
|
|
324
|
+
deactivated?: (() => void) | (() => void)[];
|
|
325
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
326
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
327
|
+
destroyed?: (() => void) | (() => void)[];
|
|
328
|
+
unmounted?: (() => void) | (() => void)[];
|
|
329
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
330
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
331
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
332
|
+
};
|
|
333
|
+
$forceUpdate: () => void;
|
|
334
|
+
$nextTick: typeof nextTick;
|
|
335
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
336
|
+
} & Readonly<{}> & Omit<Readonly<DialogContentProps> & Readonly<{
|
|
337
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
338
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
339
|
+
originalEvent: PointerEvent;
|
|
340
|
+
}>) => any) | undefined;
|
|
341
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
342
|
+
originalEvent: FocusEvent;
|
|
343
|
+
}>) => any) | undefined;
|
|
344
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
345
|
+
originalEvent: PointerEvent;
|
|
346
|
+
}> | CustomEvent<{
|
|
347
|
+
originalEvent: FocusEvent;
|
|
348
|
+
}>) => any) | undefined;
|
|
349
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
350
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
351
|
+
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
352
|
+
$slots: {
|
|
353
|
+
default?(_: {}): any;
|
|
354
|
+
default?(_: {}): any;
|
|
355
|
+
};
|
|
356
|
+
}, {
|
|
357
|
+
$: ComponentInternalInstance;
|
|
358
|
+
$data: {};
|
|
359
|
+
$props: {
|
|
360
|
+
readonly forceMount?: boolean | undefined;
|
|
361
|
+
readonly trapFocus?: boolean | undefined;
|
|
362
|
+
readonly disableOutsidePointerEvents?: boolean | undefined;
|
|
363
|
+
readonly asChild?: boolean | undefined;
|
|
364
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
365
|
+
readonly onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined | undefined;
|
|
366
|
+
readonly onPointerDownOutside?: ((event: CustomEvent<{
|
|
367
|
+
originalEvent: PointerEvent;
|
|
368
|
+
}>) => any) | undefined | undefined;
|
|
369
|
+
readonly onFocusOutside?: ((event: CustomEvent<{
|
|
370
|
+
originalEvent: FocusEvent;
|
|
371
|
+
}>) => any) | undefined | undefined;
|
|
372
|
+
readonly onInteractOutside?: ((event: CustomEvent<{
|
|
373
|
+
originalEvent: PointerEvent;
|
|
374
|
+
}> | CustomEvent<{
|
|
375
|
+
originalEvent: FocusEvent;
|
|
376
|
+
}>) => any) | undefined | undefined;
|
|
377
|
+
readonly onOpenAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
378
|
+
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
379
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
380
|
+
$attrs: {
|
|
381
|
+
[x: string]: unknown;
|
|
382
|
+
};
|
|
383
|
+
$refs: {
|
|
384
|
+
[x: string]: unknown;
|
|
385
|
+
};
|
|
386
|
+
$slots: Readonly<{
|
|
387
|
+
[name: string]: Slot<any> | undefined;
|
|
388
|
+
}>;
|
|
389
|
+
$root: ComponentPublicInstance | null;
|
|
390
|
+
$parent: ComponentPublicInstance | null;
|
|
391
|
+
$host: Element | null;
|
|
392
|
+
$emit: ((event: "escapeKeyDown", event: KeyboardEvent) => void) & ((event: "pointerDownOutside", event: CustomEvent<{
|
|
393
|
+
originalEvent: PointerEvent;
|
|
394
|
+
}>) => void) & ((event: "focusOutside", event: CustomEvent<{
|
|
395
|
+
originalEvent: FocusEvent;
|
|
396
|
+
}>) => void) & ((event: "interactOutside", event: CustomEvent<{
|
|
397
|
+
originalEvent: PointerEvent;
|
|
398
|
+
}> | CustomEvent<{
|
|
399
|
+
originalEvent: FocusEvent;
|
|
400
|
+
}>) => void) & ((event: "openAutoFocus", event: Event) => void) & ((event: "closeAutoFocus", event: Event) => void);
|
|
401
|
+
$el: any;
|
|
402
|
+
$options: ComponentOptionsBase<Readonly<DialogContentProps> & Readonly<{
|
|
403
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
404
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
405
|
+
originalEvent: PointerEvent;
|
|
406
|
+
}>) => any) | undefined;
|
|
407
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
408
|
+
originalEvent: FocusEvent;
|
|
409
|
+
}>) => any) | undefined;
|
|
410
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
411
|
+
originalEvent: PointerEvent;
|
|
412
|
+
}> | CustomEvent<{
|
|
413
|
+
originalEvent: FocusEvent;
|
|
414
|
+
}>) => any) | undefined;
|
|
415
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
416
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
417
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
418
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
419
|
+
pointerDownOutside: (event: CustomEvent<{
|
|
420
|
+
originalEvent: PointerEvent;
|
|
421
|
+
}>) => any;
|
|
422
|
+
focusOutside: (event: CustomEvent<{
|
|
423
|
+
originalEvent: FocusEvent;
|
|
424
|
+
}>) => any;
|
|
425
|
+
interactOutside: (event: CustomEvent<{
|
|
426
|
+
originalEvent: PointerEvent;
|
|
427
|
+
}> | CustomEvent<{
|
|
428
|
+
originalEvent: FocusEvent;
|
|
429
|
+
}>) => any;
|
|
430
|
+
openAutoFocus: (event: Event) => any;
|
|
431
|
+
closeAutoFocus: (event: Event) => any;
|
|
432
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
433
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
434
|
+
created?: (() => void) | (() => void)[];
|
|
435
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
436
|
+
mounted?: (() => void) | (() => void)[];
|
|
437
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
438
|
+
updated?: (() => void) | (() => void)[];
|
|
439
|
+
activated?: (() => void) | (() => void)[];
|
|
440
|
+
deactivated?: (() => void) | (() => void)[];
|
|
441
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
442
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
443
|
+
destroyed?: (() => void) | (() => void)[];
|
|
444
|
+
unmounted?: (() => void) | (() => void)[];
|
|
445
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
446
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
447
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
448
|
+
};
|
|
449
|
+
$forceUpdate: () => void;
|
|
450
|
+
$nextTick: typeof nextTick;
|
|
451
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
452
|
+
} & Readonly<{}> & Omit<Readonly<DialogContentProps> & Readonly<{
|
|
453
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
454
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
455
|
+
originalEvent: PointerEvent;
|
|
456
|
+
}>) => any) | undefined;
|
|
457
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
458
|
+
originalEvent: FocusEvent;
|
|
459
|
+
}>) => any) | undefined;
|
|
460
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
461
|
+
originalEvent: PointerEvent;
|
|
462
|
+
}> | CustomEvent<{
|
|
463
|
+
originalEvent: FocusEvent;
|
|
464
|
+
}>) => any) | undefined;
|
|
465
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
466
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
467
|
+
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
468
|
+
$slots: {
|
|
469
|
+
default?(_: {}): any;
|
|
470
|
+
default?(_: {}): any;
|
|
471
|
+
};
|
|
472
|
+
}>;
|
|
473
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
474
|
+
|
|
475
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props, {
|
|
476
|
+
id: string;
|
|
477
|
+
name: ComputedRef<string | undefined>;
|
|
478
|
+
label: ComputedRef<string | undefined>;
|
|
479
|
+
description: ComputedRef<string | undefined>;
|
|
480
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
481
|
+
errors: Readonly<Ref<readonly string[] | null, readonly string[] | null>>;
|
|
482
|
+
required: ComputedRef<boolean | undefined>;
|
|
483
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
484
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
485
|
+
"update:modelValue": (value: Nullable<FormFieldValue>) => any;
|
|
486
|
+
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
487
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
488
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
489
|
+
|
|
490
|
+
declare const __VLS_component_30: DefineComponent<SelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
491
|
+
"update:modelValue": (value: Nullable<FormFieldValue>) => any;
|
|
492
|
+
}, string, PublicProps, Readonly<SelectProps> & Readonly<{
|
|
493
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
494
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
495
|
+
|
|
496
|
+
declare const __VLS_component_31: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
497
|
+
|
|
498
|
+
declare const __VLS_component_32: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
499
|
+
|
|
500
|
+
declare const __VLS_component_33: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
501
|
+
|
|
502
|
+
declare const __VLS_component_4: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
503
|
+
|
|
504
|
+
declare const __VLS_component_5: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
505
|
+
|
|
506
|
+
declare const __VLS_component_6: DefineComponent<ModalProps, {
|
|
507
|
+
close: ((result?: unknown) => Promise<void>) | Ref<(result?: unknown) => Promise<void>, (result?: unknown) => Promise<void>>;
|
|
508
|
+
$content: Ref<undefined, undefined> | ModalContentInstance | Ref<null, null> | Ref< {
|
|
509
|
+
$: ComponentInternalInstance;
|
|
510
|
+
$data: {};
|
|
511
|
+
$props: {
|
|
512
|
+
readonly forceMount?: boolean | undefined;
|
|
513
|
+
readonly trapFocus?: boolean | undefined;
|
|
514
|
+
readonly disableOutsidePointerEvents?: boolean | undefined;
|
|
515
|
+
readonly asChild?: boolean | undefined;
|
|
516
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
517
|
+
readonly onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined | undefined;
|
|
518
|
+
readonly onPointerDownOutside?: ((event: CustomEvent<{
|
|
519
|
+
originalEvent: PointerEvent;
|
|
520
|
+
}>) => any) | undefined | undefined;
|
|
521
|
+
readonly onFocusOutside?: ((event: CustomEvent<{
|
|
522
|
+
originalEvent: FocusEvent;
|
|
523
|
+
}>) => any) | undefined | undefined;
|
|
524
|
+
readonly onInteractOutside?: ((event: CustomEvent<{
|
|
525
|
+
originalEvent: PointerEvent;
|
|
526
|
+
}> | CustomEvent<{
|
|
527
|
+
originalEvent: FocusEvent;
|
|
528
|
+
}>) => any) | undefined | undefined;
|
|
529
|
+
readonly onOpenAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
530
|
+
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
531
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
532
|
+
$attrs: {
|
|
533
|
+
[x: string]: unknown;
|
|
534
|
+
};
|
|
535
|
+
$refs: {
|
|
536
|
+
[x: string]: unknown;
|
|
537
|
+
};
|
|
538
|
+
$slots: Readonly<{
|
|
539
|
+
[name: string]: Slot<any> | undefined;
|
|
540
|
+
}>;
|
|
541
|
+
$root: ComponentPublicInstance | null;
|
|
542
|
+
$parent: ComponentPublicInstance | null;
|
|
543
|
+
$host: Element | null;
|
|
544
|
+
$emit: ((event: "escapeKeyDown", event: KeyboardEvent) => void) & ((event: "pointerDownOutside", event: CustomEvent<{
|
|
545
|
+
originalEvent: PointerEvent;
|
|
546
|
+
}>) => void) & ((event: "focusOutside", event: CustomEvent<{
|
|
547
|
+
originalEvent: FocusEvent;
|
|
548
|
+
}>) => void) & ((event: "interactOutside", event: CustomEvent<{
|
|
549
|
+
originalEvent: PointerEvent;
|
|
550
|
+
}> | CustomEvent<{
|
|
551
|
+
originalEvent: FocusEvent;
|
|
552
|
+
}>) => void) & ((event: "openAutoFocus", event: Event) => void) & ((event: "closeAutoFocus", event: Event) => void);
|
|
553
|
+
$el: any;
|
|
554
|
+
$options: ComponentOptionsBase<Readonly<DialogContentProps> & Readonly<{
|
|
555
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
556
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
557
|
+
originalEvent: PointerEvent;
|
|
558
|
+
}>) => any) | undefined;
|
|
559
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
560
|
+
originalEvent: FocusEvent;
|
|
561
|
+
}>) => any) | undefined;
|
|
562
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
563
|
+
originalEvent: PointerEvent;
|
|
564
|
+
}> | CustomEvent<{
|
|
565
|
+
originalEvent: FocusEvent;
|
|
566
|
+
}>) => any) | undefined;
|
|
567
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
568
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
569
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
570
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
571
|
+
pointerDownOutside: (event: CustomEvent<{
|
|
572
|
+
originalEvent: PointerEvent;
|
|
573
|
+
}>) => any;
|
|
574
|
+
focusOutside: (event: CustomEvent<{
|
|
575
|
+
originalEvent: FocusEvent;
|
|
576
|
+
}>) => any;
|
|
577
|
+
interactOutside: (event: CustomEvent<{
|
|
578
|
+
originalEvent: PointerEvent;
|
|
579
|
+
}> | CustomEvent<{
|
|
580
|
+
originalEvent: FocusEvent;
|
|
581
|
+
}>) => any;
|
|
582
|
+
openAutoFocus: (event: Event) => any;
|
|
583
|
+
closeAutoFocus: (event: Event) => any;
|
|
584
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
585
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
586
|
+
created?: (() => void) | (() => void)[];
|
|
587
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
588
|
+
mounted?: (() => void) | (() => void)[];
|
|
589
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
590
|
+
updated?: (() => void) | (() => void)[];
|
|
591
|
+
activated?: (() => void) | (() => void)[];
|
|
592
|
+
deactivated?: (() => void) | (() => void)[];
|
|
593
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
594
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
595
|
+
destroyed?: (() => void) | (() => void)[];
|
|
596
|
+
unmounted?: (() => void) | (() => void)[];
|
|
597
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
598
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
599
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
600
|
+
};
|
|
601
|
+
$forceUpdate: () => void;
|
|
602
|
+
$nextTick: typeof nextTick;
|
|
603
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
604
|
+
} & Readonly<{}> & Omit<Readonly<DialogContentProps> & Readonly<{
|
|
605
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
606
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
607
|
+
originalEvent: PointerEvent;
|
|
608
|
+
}>) => any) | undefined;
|
|
609
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
610
|
+
originalEvent: FocusEvent;
|
|
611
|
+
}>) => any) | undefined;
|
|
612
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
613
|
+
originalEvent: PointerEvent;
|
|
614
|
+
}> | CustomEvent<{
|
|
615
|
+
originalEvent: FocusEvent;
|
|
616
|
+
}>) => any) | undefined;
|
|
617
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
618
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
619
|
+
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
620
|
+
$slots: {
|
|
621
|
+
default?(_: {}): any;
|
|
622
|
+
default?(_: {}): any;
|
|
623
|
+
};
|
|
624
|
+
}, {
|
|
625
|
+
$: ComponentInternalInstance;
|
|
626
|
+
$data: {};
|
|
627
|
+
$props: {
|
|
628
|
+
readonly forceMount?: boolean | undefined;
|
|
629
|
+
readonly trapFocus?: boolean | undefined;
|
|
630
|
+
readonly disableOutsidePointerEvents?: boolean | undefined;
|
|
631
|
+
readonly asChild?: boolean | undefined;
|
|
632
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
633
|
+
readonly onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined | undefined;
|
|
634
|
+
readonly onPointerDownOutside?: ((event: CustomEvent<{
|
|
635
|
+
originalEvent: PointerEvent;
|
|
636
|
+
}>) => any) | undefined | undefined;
|
|
637
|
+
readonly onFocusOutside?: ((event: CustomEvent<{
|
|
638
|
+
originalEvent: FocusEvent;
|
|
639
|
+
}>) => any) | undefined | undefined;
|
|
640
|
+
readonly onInteractOutside?: ((event: CustomEvent<{
|
|
641
|
+
originalEvent: PointerEvent;
|
|
642
|
+
}> | CustomEvent<{
|
|
643
|
+
originalEvent: FocusEvent;
|
|
644
|
+
}>) => any) | undefined | undefined;
|
|
645
|
+
readonly onOpenAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
646
|
+
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
647
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
648
|
+
$attrs: {
|
|
649
|
+
[x: string]: unknown;
|
|
650
|
+
};
|
|
651
|
+
$refs: {
|
|
652
|
+
[x: string]: unknown;
|
|
653
|
+
};
|
|
654
|
+
$slots: Readonly<{
|
|
655
|
+
[name: string]: Slot<any> | undefined;
|
|
656
|
+
}>;
|
|
657
|
+
$root: ComponentPublicInstance | null;
|
|
658
|
+
$parent: ComponentPublicInstance | null;
|
|
659
|
+
$host: Element | null;
|
|
660
|
+
$emit: ((event: "escapeKeyDown", event: KeyboardEvent) => void) & ((event: "pointerDownOutside", event: CustomEvent<{
|
|
661
|
+
originalEvent: PointerEvent;
|
|
662
|
+
}>) => void) & ((event: "focusOutside", event: CustomEvent<{
|
|
663
|
+
originalEvent: FocusEvent;
|
|
664
|
+
}>) => void) & ((event: "interactOutside", event: CustomEvent<{
|
|
665
|
+
originalEvent: PointerEvent;
|
|
666
|
+
}> | CustomEvent<{
|
|
667
|
+
originalEvent: FocusEvent;
|
|
668
|
+
}>) => void) & ((event: "openAutoFocus", event: Event) => void) & ((event: "closeAutoFocus", event: Event) => void);
|
|
669
|
+
$el: any;
|
|
670
|
+
$options: ComponentOptionsBase<Readonly<DialogContentProps> & Readonly<{
|
|
671
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
672
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
673
|
+
originalEvent: PointerEvent;
|
|
674
|
+
}>) => any) | undefined;
|
|
675
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
676
|
+
originalEvent: FocusEvent;
|
|
677
|
+
}>) => any) | undefined;
|
|
678
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
679
|
+
originalEvent: PointerEvent;
|
|
680
|
+
}> | CustomEvent<{
|
|
681
|
+
originalEvent: FocusEvent;
|
|
682
|
+
}>) => any) | undefined;
|
|
683
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
684
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
685
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
686
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
687
|
+
pointerDownOutside: (event: CustomEvent<{
|
|
688
|
+
originalEvent: PointerEvent;
|
|
689
|
+
}>) => any;
|
|
690
|
+
focusOutside: (event: CustomEvent<{
|
|
691
|
+
originalEvent: FocusEvent;
|
|
692
|
+
}>) => any;
|
|
693
|
+
interactOutside: (event: CustomEvent<{
|
|
694
|
+
originalEvent: PointerEvent;
|
|
695
|
+
}> | CustomEvent<{
|
|
696
|
+
originalEvent: FocusEvent;
|
|
697
|
+
}>) => any;
|
|
698
|
+
openAutoFocus: (event: Event) => any;
|
|
699
|
+
closeAutoFocus: (event: Event) => any;
|
|
700
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
701
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
702
|
+
created?: (() => void) | (() => void)[];
|
|
703
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
704
|
+
mounted?: (() => void) | (() => void)[];
|
|
705
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
706
|
+
updated?: (() => void) | (() => void)[];
|
|
707
|
+
activated?: (() => void) | (() => void)[];
|
|
708
|
+
deactivated?: (() => void) | (() => void)[];
|
|
709
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
710
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
711
|
+
destroyed?: (() => void) | (() => void)[];
|
|
712
|
+
unmounted?: (() => void) | (() => void)[];
|
|
713
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
714
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
715
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
716
|
+
};
|
|
717
|
+
$forceUpdate: () => void;
|
|
718
|
+
$nextTick: typeof nextTick;
|
|
719
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
720
|
+
} & Readonly<{}> & Omit<Readonly<DialogContentProps> & Readonly<{
|
|
721
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
722
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
723
|
+
originalEvent: PointerEvent;
|
|
724
|
+
}>) => any) | undefined;
|
|
725
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
726
|
+
originalEvent: FocusEvent;
|
|
727
|
+
}>) => any) | undefined;
|
|
728
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
729
|
+
originalEvent: PointerEvent;
|
|
730
|
+
}> | CustomEvent<{
|
|
731
|
+
originalEvent: FocusEvent;
|
|
732
|
+
}>) => any) | undefined;
|
|
733
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
734
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
735
|
+
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
736
|
+
$slots: {
|
|
737
|
+
default?(_: {}): any;
|
|
738
|
+
default?(_: {}): any;
|
|
739
|
+
};
|
|
740
|
+
}>;
|
|
741
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ModalProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
742
|
+
|
|
743
|
+
declare const __VLS_component_7: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
744
|
+
$contentRef: ({
|
|
745
|
+
$: ComponentInternalInstance;
|
|
746
|
+
$data: {};
|
|
747
|
+
$props: {
|
|
748
|
+
readonly forceMount?: boolean | undefined;
|
|
749
|
+
readonly trapFocus?: boolean | undefined;
|
|
750
|
+
readonly disableOutsidePointerEvents?: boolean | undefined;
|
|
751
|
+
readonly asChild?: boolean | undefined;
|
|
752
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
753
|
+
readonly onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined | undefined;
|
|
754
|
+
readonly onPointerDownOutside?: ((event: CustomEvent<{
|
|
755
|
+
originalEvent: PointerEvent;
|
|
756
|
+
}>) => any) | undefined | undefined;
|
|
757
|
+
readonly onFocusOutside?: ((event: CustomEvent<{
|
|
758
|
+
originalEvent: FocusEvent;
|
|
759
|
+
}>) => any) | undefined | undefined;
|
|
760
|
+
readonly onInteractOutside?: ((event: CustomEvent<{
|
|
761
|
+
originalEvent: PointerEvent;
|
|
762
|
+
}> | CustomEvent<{
|
|
763
|
+
originalEvent: FocusEvent;
|
|
764
|
+
}>) => any) | undefined | undefined;
|
|
765
|
+
readonly onOpenAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
766
|
+
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
767
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
768
|
+
$attrs: {
|
|
769
|
+
[x: string]: unknown;
|
|
770
|
+
};
|
|
771
|
+
$refs: {
|
|
772
|
+
[x: string]: unknown;
|
|
773
|
+
};
|
|
774
|
+
$slots: Readonly<{
|
|
775
|
+
[name: string]: Slot<any> | undefined;
|
|
776
|
+
}>;
|
|
777
|
+
$root: ComponentPublicInstance | null;
|
|
778
|
+
$parent: ComponentPublicInstance | null;
|
|
779
|
+
$host: Element | null;
|
|
780
|
+
$emit: ((event: "escapeKeyDown", event: KeyboardEvent) => void) & ((event: "pointerDownOutside", event: CustomEvent<{
|
|
781
|
+
originalEvent: PointerEvent;
|
|
782
|
+
}>) => void) & ((event: "focusOutside", event: CustomEvent<{
|
|
783
|
+
originalEvent: FocusEvent;
|
|
784
|
+
}>) => void) & ((event: "interactOutside", event: CustomEvent<{
|
|
785
|
+
originalEvent: PointerEvent;
|
|
786
|
+
}> | CustomEvent<{
|
|
787
|
+
originalEvent: FocusEvent;
|
|
788
|
+
}>) => void) & ((event: "openAutoFocus", event: Event) => void) & ((event: "closeAutoFocus", event: Event) => void);
|
|
789
|
+
$el: any;
|
|
790
|
+
$options: ComponentOptionsBase<Readonly<DialogContentProps> & Readonly<{
|
|
791
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
792
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
793
|
+
originalEvent: PointerEvent;
|
|
794
|
+
}>) => any) | undefined;
|
|
795
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
796
|
+
originalEvent: FocusEvent;
|
|
797
|
+
}>) => any) | undefined;
|
|
798
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
799
|
+
originalEvent: PointerEvent;
|
|
800
|
+
}> | CustomEvent<{
|
|
801
|
+
originalEvent: FocusEvent;
|
|
802
|
+
}>) => any) | undefined;
|
|
803
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
804
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
805
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
806
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
807
|
+
pointerDownOutside: (event: CustomEvent<{
|
|
808
|
+
originalEvent: PointerEvent;
|
|
809
|
+
}>) => any;
|
|
810
|
+
focusOutside: (event: CustomEvent<{
|
|
811
|
+
originalEvent: FocusEvent;
|
|
812
|
+
}>) => any;
|
|
813
|
+
interactOutside: (event: CustomEvent<{
|
|
814
|
+
originalEvent: PointerEvent;
|
|
815
|
+
}> | CustomEvent<{
|
|
816
|
+
originalEvent: FocusEvent;
|
|
817
|
+
}>) => any;
|
|
818
|
+
openAutoFocus: (event: Event) => any;
|
|
819
|
+
closeAutoFocus: (event: Event) => any;
|
|
820
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
821
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
822
|
+
created?: (() => void) | (() => void)[];
|
|
823
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
824
|
+
mounted?: (() => void) | (() => void)[];
|
|
825
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
826
|
+
updated?: (() => void) | (() => void)[];
|
|
827
|
+
activated?: (() => void) | (() => void)[];
|
|
828
|
+
deactivated?: (() => void) | (() => void)[];
|
|
829
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
830
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
831
|
+
destroyed?: (() => void) | (() => void)[];
|
|
832
|
+
unmounted?: (() => void) | (() => void)[];
|
|
833
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
834
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
835
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
836
|
+
};
|
|
837
|
+
$forceUpdate: () => void;
|
|
838
|
+
$nextTick: typeof nextTick;
|
|
839
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
840
|
+
} & Readonly<{}> & Omit<Readonly<DialogContentProps> & Readonly<{
|
|
841
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
842
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
843
|
+
originalEvent: PointerEvent;
|
|
844
|
+
}>) => any) | undefined;
|
|
845
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
846
|
+
originalEvent: FocusEvent;
|
|
847
|
+
}>) => any) | undefined;
|
|
848
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
849
|
+
originalEvent: PointerEvent;
|
|
850
|
+
}> | CustomEvent<{
|
|
851
|
+
originalEvent: FocusEvent;
|
|
852
|
+
}>) => any) | undefined;
|
|
853
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
854
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
855
|
+
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
856
|
+
$slots: {
|
|
857
|
+
default?(_: {}): any;
|
|
858
|
+
default?(_: {}): any;
|
|
859
|
+
};
|
|
860
|
+
}) | null;
|
|
861
|
+
}, any>;
|
|
862
|
+
|
|
863
|
+
declare const __VLS_component_8: DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
864
|
+
|
|
865
|
+
declare const __VLS_component_9: DefineComponent<DialogOverlayProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
866
|
+
|
|
867
|
+
declare type __VLS_Props = InputProps & {
|
|
868
|
+
as?: string;
|
|
869
|
+
};
|
|
870
|
+
|
|
871
|
+
declare type __VLS_Props_10 = {
|
|
872
|
+
report: ErrorReport;
|
|
873
|
+
currentReport?: number;
|
|
874
|
+
totalReports?: number;
|
|
875
|
+
};
|
|
876
|
+
|
|
877
|
+
declare type __VLS_Props_11 = {
|
|
878
|
+
form?: FormController;
|
|
879
|
+
};
|
|
880
|
+
|
|
881
|
+
declare type __VLS_Props_12 = InputProps & {
|
|
882
|
+
inputClass?: HTMLAttributes['class'];
|
|
883
|
+
wrapperClass?: HTMLAttributes['class'];
|
|
884
|
+
};
|
|
885
|
+
|
|
886
|
+
declare type __VLS_Props_13 = Omit<ButtonProps, 'variant'>;
|
|
887
|
+
|
|
888
|
+
declare type __VLS_Props_14 = {
|
|
889
|
+
as?: string;
|
|
890
|
+
inline?: boolean;
|
|
891
|
+
langKey?: string;
|
|
892
|
+
langParams?: number | Record<string, unknown>;
|
|
893
|
+
langDefault?: string;
|
|
894
|
+
text?: string;
|
|
895
|
+
actions?: Record<string, () => unknown>;
|
|
896
|
+
};
|
|
897
|
+
|
|
898
|
+
declare type __VLS_Props_15 = ModalProps & {
|
|
899
|
+
dismissable?: boolean;
|
|
900
|
+
wrapperClass?: HTMLAttributes['class'];
|
|
901
|
+
class?: HTMLAttributes['class'];
|
|
902
|
+
};
|
|
903
|
+
|
|
904
|
+
declare type __VLS_Props_16 = {
|
|
905
|
+
modal: UIModal;
|
|
906
|
+
childIndex?: number;
|
|
907
|
+
};
|
|
908
|
+
|
|
909
|
+
declare type __VLS_Props_17 = {
|
|
910
|
+
filledClass?: string;
|
|
911
|
+
progress?: number;
|
|
912
|
+
job?: Falsifiable<Job>;
|
|
913
|
+
};
|
|
914
|
+
|
|
915
|
+
declare type __VLS_Props_18 = {
|
|
916
|
+
value: AcceptableValue;
|
|
917
|
+
class?: HTMLAttributes['class'];
|
|
918
|
+
innerClass?: HTMLAttributes['class'];
|
|
919
|
+
};
|
|
920
|
+
|
|
921
|
+
declare type __VLS_Props_19 = {
|
|
922
|
+
class?: HTMLAttributes['class'];
|
|
923
|
+
};
|
|
924
|
+
|
|
925
|
+
declare type __VLS_Props_2 = {
|
|
926
|
+
type?: string;
|
|
927
|
+
};
|
|
928
|
+
|
|
929
|
+
declare type __VLS_Props_20 = {
|
|
930
|
+
class?: HTMLAttributes['class'];
|
|
931
|
+
};
|
|
932
|
+
|
|
933
|
+
declare type __VLS_Props_21 = ToastProps & {
|
|
934
|
+
class?: HTMLAttributes['class'];
|
|
935
|
+
};
|
|
936
|
+
|
|
937
|
+
declare type __VLS_Props_3 = Omit<LabelProps, 'for'>;
|
|
938
|
+
|
|
939
|
+
declare type __VLS_Props_4 = SelectItemProps;
|
|
940
|
+
|
|
941
|
+
declare type __VLS_Props_5 = {
|
|
942
|
+
class?: HTMLAttributes['class'];
|
|
943
|
+
innerClass?: HTMLAttributes['class'];
|
|
944
|
+
};
|
|
945
|
+
|
|
946
|
+
declare type __VLS_Props_6 = InputProps & {
|
|
947
|
+
inputClass?: HTMLAttributes['class'];
|
|
948
|
+
labelClass?: HTMLAttributes['class'];
|
|
949
|
+
};
|
|
950
|
+
|
|
951
|
+
declare type __VLS_Props_7 = {
|
|
952
|
+
type?: string;
|
|
953
|
+
contentClass?: HTMLAttributes['class'];
|
|
954
|
+
ariaLabel?: string;
|
|
955
|
+
formAriaHidden?: boolean;
|
|
956
|
+
tabindex?: string;
|
|
957
|
+
text: string;
|
|
958
|
+
disabled?: boolean;
|
|
959
|
+
};
|
|
960
|
+
|
|
961
|
+
declare type __VLS_Props_8 = {
|
|
962
|
+
error: ErrorSource;
|
|
963
|
+
};
|
|
964
|
+
|
|
965
|
+
declare type __VLS_Props_9 = {
|
|
966
|
+
report: ErrorReport;
|
|
967
|
+
};
|
|
968
|
+
|
|
969
|
+
declare function __VLS_template(): {
|
|
970
|
+
attrs: Partial<{}>;
|
|
971
|
+
slots: {
|
|
972
|
+
'startup-crash'?(_: {}): any;
|
|
973
|
+
default?(_: {}): any;
|
|
974
|
+
};
|
|
975
|
+
refs: {};
|
|
976
|
+
rootEl: HTMLDivElement;
|
|
977
|
+
};
|
|
978
|
+
|
|
979
|
+
declare function __VLS_template_10(): {
|
|
980
|
+
attrs: Partial<{}>;
|
|
981
|
+
slots: {
|
|
982
|
+
default?(_: {}): any;
|
|
983
|
+
};
|
|
984
|
+
refs: {};
|
|
985
|
+
rootEl: any;
|
|
986
|
+
};
|
|
987
|
+
|
|
988
|
+
declare function __VLS_template_11(): {
|
|
989
|
+
attrs: Partial<{}>;
|
|
990
|
+
slots: {
|
|
991
|
+
default?(_: {
|
|
992
|
+
modelValue: Nullable<FormFieldValue>;
|
|
993
|
+
open: boolean;
|
|
994
|
+
}): any;
|
|
995
|
+
};
|
|
996
|
+
refs: {};
|
|
997
|
+
rootEl: any;
|
|
998
|
+
};
|
|
999
|
+
|
|
1000
|
+
declare function __VLS_template_12(): {
|
|
1001
|
+
attrs: Partial<{}>;
|
|
1002
|
+
slots: {
|
|
1003
|
+
default?(_: {}): any;
|
|
1004
|
+
};
|
|
1005
|
+
refs: {};
|
|
1006
|
+
rootEl: any;
|
|
1007
|
+
};
|
|
1008
|
+
|
|
1009
|
+
declare function __VLS_template_13(): {
|
|
1010
|
+
attrs: Partial<{}>;
|
|
1011
|
+
slots: {
|
|
1012
|
+
default?(_: {}): any;
|
|
1013
|
+
};
|
|
1014
|
+
refs: {};
|
|
1015
|
+
rootEl: any;
|
|
1016
|
+
};
|
|
1017
|
+
|
|
1018
|
+
declare function __VLS_template_14(): {
|
|
1019
|
+
attrs: Partial<{}>;
|
|
1020
|
+
slots: {
|
|
1021
|
+
default?(_: {}): any;
|
|
1022
|
+
};
|
|
1023
|
+
refs: {};
|
|
1024
|
+
rootEl: any;
|
|
1025
|
+
};
|
|
1026
|
+
|
|
1027
|
+
declare function __VLS_template_15(): {
|
|
1028
|
+
attrs: Partial<{}>;
|
|
1029
|
+
slots: {
|
|
1030
|
+
default?(_: {}): any;
|
|
1031
|
+
};
|
|
1032
|
+
refs: {};
|
|
1033
|
+
rootEl: any;
|
|
1034
|
+
};
|
|
1035
|
+
|
|
1036
|
+
declare function __VLS_template_16(): {
|
|
1037
|
+
attrs: Partial<{}>;
|
|
1038
|
+
slots: {
|
|
1039
|
+
default?(_: {}): any;
|
|
1040
|
+
};
|
|
1041
|
+
refs: {};
|
|
1042
|
+
rootEl: any;
|
|
1043
|
+
};
|
|
1044
|
+
|
|
1045
|
+
declare function __VLS_template_17(): {
|
|
1046
|
+
attrs: Partial<{}>;
|
|
1047
|
+
slots: {
|
|
1048
|
+
default?(_: {}): any;
|
|
1049
|
+
};
|
|
1050
|
+
refs: {};
|
|
1051
|
+
rootEl: any;
|
|
1052
|
+
};
|
|
1053
|
+
|
|
1054
|
+
declare function __VLS_template_18(): {
|
|
1055
|
+
attrs: Partial<{}>;
|
|
1056
|
+
slots: {
|
|
1057
|
+
default?(_: {}): any;
|
|
1058
|
+
};
|
|
1059
|
+
refs: {};
|
|
1060
|
+
rootEl: HTMLDetailsElement;
|
|
1061
|
+
};
|
|
1062
|
+
|
|
1063
|
+
declare function __VLS_template_19(): {
|
|
1064
|
+
attrs: Partial<{}>;
|
|
1065
|
+
slots: {
|
|
1066
|
+
default?(_: {}): any;
|
|
1067
|
+
};
|
|
1068
|
+
refs: {};
|
|
1069
|
+
rootEl: any;
|
|
1070
|
+
};
|
|
1071
|
+
|
|
1072
|
+
declare function __VLS_template_2(): {
|
|
1073
|
+
attrs: Partial<{}>;
|
|
1074
|
+
slots: {
|
|
1075
|
+
default?(_: {}): any;
|
|
1076
|
+
};
|
|
1077
|
+
refs: {};
|
|
1078
|
+
rootEl: any;
|
|
1079
|
+
};
|
|
1080
|
+
|
|
1081
|
+
declare function __VLS_template_20(): {
|
|
1082
|
+
attrs: Partial<{}>;
|
|
1083
|
+
slots: {
|
|
1084
|
+
default?(_: {}): any;
|
|
1085
|
+
};
|
|
1086
|
+
refs: {
|
|
1087
|
+
$inputRef: ({
|
|
1088
|
+
$: ComponentInternalInstance;
|
|
1089
|
+
$data: {};
|
|
1090
|
+
$props: {
|
|
1091
|
+
readonly name?: string | undefined;
|
|
1092
|
+
readonly label?: string | undefined;
|
|
1093
|
+
readonly description?: string | undefined;
|
|
1094
|
+
readonly modelValue?: Nullable<FormFieldValue>;
|
|
1095
|
+
readonly as?: string | undefined;
|
|
1096
|
+
readonly "onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
1097
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
1098
|
+
$attrs: {
|
|
1099
|
+
[x: string]: unknown;
|
|
1100
|
+
};
|
|
1101
|
+
$refs: {
|
|
1102
|
+
[x: string]: unknown;
|
|
1103
|
+
};
|
|
1104
|
+
$slots: Readonly<{
|
|
1105
|
+
[name: string]: Slot<any> | undefined;
|
|
1106
|
+
}>;
|
|
1107
|
+
$root: ComponentPublicInstance | null;
|
|
1108
|
+
$parent: ComponentPublicInstance | null;
|
|
1109
|
+
$host: Element | null;
|
|
1110
|
+
$emit: (event: "update:modelValue", value: Nullable<FormFieldValue>) => void;
|
|
1111
|
+
$el: any;
|
|
1112
|
+
$options: ComponentOptionsBase<Readonly<InputProps & {
|
|
1113
|
+
as?: string;
|
|
1114
|
+
}> & Readonly<{
|
|
1115
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
1116
|
+
}>, {
|
|
1117
|
+
id: string;
|
|
1118
|
+
name: ComputedRef<string | undefined>;
|
|
1119
|
+
label: ComputedRef<string | undefined>;
|
|
1120
|
+
description: ComputedRef<string | undefined>;
|
|
1121
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
1122
|
+
errors: Readonly<Ref<readonly string[] | null, readonly string[] | null>>;
|
|
1123
|
+
required: ComputedRef<boolean | undefined>;
|
|
1124
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
1125
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1126
|
+
"update:modelValue": (value: Nullable<FormFieldValue>) => any;
|
|
1127
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1128
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1129
|
+
created?: (() => void) | (() => void)[];
|
|
1130
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1131
|
+
mounted?: (() => void) | (() => void)[];
|
|
1132
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1133
|
+
updated?: (() => void) | (() => void)[];
|
|
1134
|
+
activated?: (() => void) | (() => void)[];
|
|
1135
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1136
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1137
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1138
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1139
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1140
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1141
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1142
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1143
|
+
};
|
|
1144
|
+
$forceUpdate: () => void;
|
|
1145
|
+
$nextTick: typeof nextTick;
|
|
1146
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1147
|
+
} & Readonly<{}> & Omit<Readonly<InputProps & {
|
|
1148
|
+
as?: string;
|
|
1149
|
+
}> & Readonly<{
|
|
1150
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
1151
|
+
}>, "id" | "value" | "name" | "description" | "errors" | "required" | "label" | "update"> & ShallowUnwrapRef< {
|
|
1152
|
+
id: string;
|
|
1153
|
+
name: ComputedRef<string | undefined>;
|
|
1154
|
+
label: ComputedRef<string | undefined>;
|
|
1155
|
+
description: ComputedRef<string | undefined>;
|
|
1156
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
1157
|
+
errors: Readonly<Ref<readonly string[] | null, readonly string[] | null>>;
|
|
1158
|
+
required: ComputedRef<boolean | undefined>;
|
|
1159
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
1160
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
1161
|
+
$slots: {
|
|
1162
|
+
default?(_: {}): any;
|
|
1163
|
+
};
|
|
1164
|
+
}) | null;
|
|
1165
|
+
};
|
|
1166
|
+
rootEl: any;
|
|
1167
|
+
};
|
|
1168
|
+
|
|
1169
|
+
declare function __VLS_template_21(): {
|
|
1170
|
+
attrs: Partial<{}>;
|
|
1171
|
+
slots: {
|
|
1172
|
+
default?(_: {}): any;
|
|
1173
|
+
options?(_: {}): any;
|
|
1174
|
+
};
|
|
1175
|
+
refs: {};
|
|
1176
|
+
rootEl: any;
|
|
1177
|
+
};
|
|
1178
|
+
|
|
1179
|
+
declare function __VLS_template_22(): {
|
|
1180
|
+
attrs: Partial<{}>;
|
|
1181
|
+
slots: {
|
|
1182
|
+
default?(_: {}): any;
|
|
1183
|
+
};
|
|
1184
|
+
refs: {};
|
|
1185
|
+
rootEl: any;
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
declare function __VLS_template_23(): {
|
|
1189
|
+
attrs: Partial<{}>;
|
|
1190
|
+
slots: {
|
|
1191
|
+
default?(_: {}): any;
|
|
1192
|
+
};
|
|
1193
|
+
refs: {};
|
|
1194
|
+
rootEl: any;
|
|
1195
|
+
};
|
|
1196
|
+
|
|
1197
|
+
declare function __VLS_template_24(): {
|
|
1198
|
+
attrs: Partial<{}>;
|
|
1199
|
+
slots: {
|
|
1200
|
+
default?(_: {}): any;
|
|
1201
|
+
};
|
|
1202
|
+
refs: {
|
|
1203
|
+
$inputRef: HTMLInputElement;
|
|
1204
|
+
};
|
|
1205
|
+
rootEl: HTMLDivElement;
|
|
1206
|
+
};
|
|
1207
|
+
|
|
1208
|
+
declare function __VLS_template_25(): {
|
|
1209
|
+
attrs: Partial<{}>;
|
|
1210
|
+
slots: Readonly<{
|
|
1211
|
+
default(props: ErrorReportModalButtonsDefaultSlotProps): unknown;
|
|
1212
|
+
}> & {
|
|
1213
|
+
default(props: ErrorReportModalButtonsDefaultSlotProps): unknown;
|
|
1214
|
+
};
|
|
1215
|
+
refs: {};
|
|
1216
|
+
rootEl: HTMLDivElement;
|
|
1217
|
+
};
|
|
1218
|
+
|
|
1219
|
+
declare function __VLS_template_26(): {
|
|
1220
|
+
attrs: Partial<{}>;
|
|
1221
|
+
slots: {
|
|
1222
|
+
default?(_: {}): any;
|
|
1223
|
+
};
|
|
1224
|
+
refs: {};
|
|
1225
|
+
rootEl: HTMLFormElement;
|
|
1226
|
+
};
|
|
1227
|
+
|
|
1228
|
+
declare function __VLS_template_27(): {
|
|
1229
|
+
attrs: Partial<{}>;
|
|
1230
|
+
slots: {
|
|
1231
|
+
default?(_: {}): any;
|
|
1232
|
+
};
|
|
1233
|
+
refs: {};
|
|
1234
|
+
rootEl: any;
|
|
1235
|
+
};
|
|
1236
|
+
|
|
1237
|
+
declare function __VLS_template_28(): {
|
|
1238
|
+
attrs: Partial<{}>;
|
|
1239
|
+
slots: Readonly<{
|
|
1240
|
+
default?(): VNode[];
|
|
1241
|
+
}> & {
|
|
1242
|
+
default?(): VNode[];
|
|
1243
|
+
};
|
|
1244
|
+
refs: {};
|
|
1245
|
+
rootEl: any;
|
|
1246
|
+
};
|
|
1247
|
+
|
|
1248
|
+
declare function __VLS_template_29(): {
|
|
1249
|
+
attrs: Partial<{}>;
|
|
1250
|
+
slots: Readonly<ModalSlots> & ModalSlots;
|
|
1251
|
+
refs: {};
|
|
1252
|
+
rootEl: any;
|
|
1253
|
+
};
|
|
1254
|
+
|
|
1255
|
+
declare function __VLS_template_3(): {
|
|
1256
|
+
attrs: Partial<{}>;
|
|
1257
|
+
slots: {
|
|
1258
|
+
default?(_: {}): any;
|
|
1259
|
+
};
|
|
1260
|
+
refs: {};
|
|
1261
|
+
rootEl: any;
|
|
1262
|
+
};
|
|
1263
|
+
|
|
1264
|
+
declare function __VLS_template_30(): {
|
|
1265
|
+
attrs: Partial<{}>;
|
|
1266
|
+
slots: {
|
|
1267
|
+
default?(_: {}): any;
|
|
1268
|
+
};
|
|
1269
|
+
refs: {};
|
|
1270
|
+
rootEl: any;
|
|
1271
|
+
};
|
|
1272
|
+
|
|
1273
|
+
declare function __VLS_template_31(): {
|
|
1274
|
+
attrs: Partial<{}>;
|
|
1275
|
+
slots: {
|
|
1276
|
+
default?(_: {}): any;
|
|
1277
|
+
};
|
|
1278
|
+
refs: {};
|
|
1279
|
+
rootEl: any;
|
|
1280
|
+
};
|
|
1281
|
+
|
|
1282
|
+
declare function __VLS_template_32(): {
|
|
1283
|
+
attrs: Partial<{}>;
|
|
1284
|
+
slots: {
|
|
1285
|
+
default?(_: {}): any;
|
|
1286
|
+
};
|
|
1287
|
+
refs: {};
|
|
1288
|
+
rootEl: any;
|
|
1289
|
+
};
|
|
1290
|
+
|
|
1291
|
+
declare function __VLS_template_33(): {
|
|
1292
|
+
attrs: Partial<{}>;
|
|
1293
|
+
slots: {
|
|
1294
|
+
default?(_: {}): any;
|
|
1295
|
+
};
|
|
1296
|
+
refs: {};
|
|
1297
|
+
rootEl: any;
|
|
1298
|
+
};
|
|
1299
|
+
|
|
1300
|
+
declare function __VLS_template_4(): {
|
|
1301
|
+
attrs: Partial<{}>;
|
|
1302
|
+
slots: {
|
|
1303
|
+
default?(_: {
|
|
1304
|
+
id: string;
|
|
1305
|
+
}): any;
|
|
1306
|
+
};
|
|
1307
|
+
refs: {};
|
|
1308
|
+
rootEl: any;
|
|
1309
|
+
};
|
|
1310
|
+
|
|
1311
|
+
declare function __VLS_template_5(): {
|
|
1312
|
+
attrs: Partial<{}>;
|
|
1313
|
+
slots: {
|
|
1314
|
+
default?(_: {}): any;
|
|
1315
|
+
};
|
|
1316
|
+
refs: {};
|
|
1317
|
+
rootEl: any;
|
|
1318
|
+
};
|
|
1319
|
+
|
|
1320
|
+
declare function __VLS_template_6(): {
|
|
1321
|
+
attrs: Partial<{}>;
|
|
1322
|
+
slots: Readonly<ModalSlots> & ModalSlots;
|
|
1323
|
+
refs: {};
|
|
1324
|
+
rootEl: any;
|
|
1325
|
+
};
|
|
1326
|
+
|
|
1327
|
+
declare function __VLS_template_7(): {
|
|
1328
|
+
attrs: Partial<{}>;
|
|
1329
|
+
slots: {
|
|
1330
|
+
default?(_: {}): any;
|
|
1331
|
+
};
|
|
1332
|
+
refs: {
|
|
1333
|
+
$contentRef: ({
|
|
1334
|
+
$: ComponentInternalInstance;
|
|
1335
|
+
$data: {};
|
|
1336
|
+
$props: {
|
|
1337
|
+
readonly forceMount?: boolean | undefined;
|
|
1338
|
+
readonly trapFocus?: boolean | undefined;
|
|
1339
|
+
readonly disableOutsidePointerEvents?: boolean | undefined;
|
|
1340
|
+
readonly asChild?: boolean | undefined;
|
|
1341
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
1342
|
+
readonly onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined | undefined;
|
|
1343
|
+
readonly onPointerDownOutside?: ((event: CustomEvent<{
|
|
1344
|
+
originalEvent: PointerEvent;
|
|
1345
|
+
}>) => any) | undefined | undefined;
|
|
1346
|
+
readonly onFocusOutside?: ((event: CustomEvent<{
|
|
1347
|
+
originalEvent: FocusEvent;
|
|
1348
|
+
}>) => any) | undefined | undefined;
|
|
1349
|
+
readonly onInteractOutside?: ((event: CustomEvent<{
|
|
1350
|
+
originalEvent: PointerEvent;
|
|
1351
|
+
}> | CustomEvent<{
|
|
1352
|
+
originalEvent: FocusEvent;
|
|
1353
|
+
}>) => any) | undefined | undefined;
|
|
1354
|
+
readonly onOpenAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
1355
|
+
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined | undefined;
|
|
1356
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
1357
|
+
$attrs: {
|
|
1358
|
+
[x: string]: unknown;
|
|
1359
|
+
};
|
|
1360
|
+
$refs: {
|
|
1361
|
+
[x: string]: unknown;
|
|
1362
|
+
};
|
|
1363
|
+
$slots: Readonly<{
|
|
1364
|
+
[name: string]: Slot<any> | undefined;
|
|
1365
|
+
}>;
|
|
1366
|
+
$root: ComponentPublicInstance | null;
|
|
1367
|
+
$parent: ComponentPublicInstance | null;
|
|
1368
|
+
$host: Element | null;
|
|
1369
|
+
$emit: ((event: "escapeKeyDown", event: KeyboardEvent) => void) & ((event: "pointerDownOutside", event: CustomEvent<{
|
|
1370
|
+
originalEvent: PointerEvent;
|
|
1371
|
+
}>) => void) & ((event: "focusOutside", event: CustomEvent<{
|
|
1372
|
+
originalEvent: FocusEvent;
|
|
1373
|
+
}>) => void) & ((event: "interactOutside", event: CustomEvent<{
|
|
1374
|
+
originalEvent: PointerEvent;
|
|
1375
|
+
}> | CustomEvent<{
|
|
1376
|
+
originalEvent: FocusEvent;
|
|
1377
|
+
}>) => void) & ((event: "openAutoFocus", event: Event) => void) & ((event: "closeAutoFocus", event: Event) => void);
|
|
1378
|
+
$el: any;
|
|
1379
|
+
$options: ComponentOptionsBase<Readonly<DialogContentProps> & Readonly<{
|
|
1380
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
1381
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
1382
|
+
originalEvent: PointerEvent;
|
|
1383
|
+
}>) => any) | undefined;
|
|
1384
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
1385
|
+
originalEvent: FocusEvent;
|
|
1386
|
+
}>) => any) | undefined;
|
|
1387
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
1388
|
+
originalEvent: PointerEvent;
|
|
1389
|
+
}> | CustomEvent<{
|
|
1390
|
+
originalEvent: FocusEvent;
|
|
1391
|
+
}>) => any) | undefined;
|
|
1392
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
1393
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
1394
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1395
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1396
|
+
pointerDownOutside: (event: CustomEvent<{
|
|
1397
|
+
originalEvent: PointerEvent;
|
|
1398
|
+
}>) => any;
|
|
1399
|
+
focusOutside: (event: CustomEvent<{
|
|
1400
|
+
originalEvent: FocusEvent;
|
|
1401
|
+
}>) => any;
|
|
1402
|
+
interactOutside: (event: CustomEvent<{
|
|
1403
|
+
originalEvent: PointerEvent;
|
|
1404
|
+
}> | CustomEvent<{
|
|
1405
|
+
originalEvent: FocusEvent;
|
|
1406
|
+
}>) => any;
|
|
1407
|
+
openAutoFocus: (event: Event) => any;
|
|
1408
|
+
closeAutoFocus: (event: Event) => any;
|
|
1409
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1410
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1411
|
+
created?: (() => void) | (() => void)[];
|
|
1412
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1413
|
+
mounted?: (() => void) | (() => void)[];
|
|
1414
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1415
|
+
updated?: (() => void) | (() => void)[];
|
|
1416
|
+
activated?: (() => void) | (() => void)[];
|
|
1417
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1418
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1419
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1420
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1421
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1422
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1423
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1424
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1425
|
+
};
|
|
1426
|
+
$forceUpdate: () => void;
|
|
1427
|
+
$nextTick: typeof nextTick;
|
|
1428
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1429
|
+
} & Readonly<{}> & Omit<Readonly<DialogContentProps> & Readonly<{
|
|
1430
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
1431
|
+
onPointerDownOutside?: ((event: CustomEvent<{
|
|
1432
|
+
originalEvent: PointerEvent;
|
|
1433
|
+
}>) => any) | undefined;
|
|
1434
|
+
onFocusOutside?: ((event: CustomEvent<{
|
|
1435
|
+
originalEvent: FocusEvent;
|
|
1436
|
+
}>) => any) | undefined;
|
|
1437
|
+
onInteractOutside?: ((event: CustomEvent<{
|
|
1438
|
+
originalEvent: PointerEvent;
|
|
1439
|
+
}> | CustomEvent<{
|
|
1440
|
+
originalEvent: FocusEvent;
|
|
1441
|
+
}>) => any) | undefined;
|
|
1442
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
1443
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
1444
|
+
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
1445
|
+
$slots: {
|
|
1446
|
+
default?(_: {}): any;
|
|
1447
|
+
default?(_: {}): any;
|
|
1448
|
+
};
|
|
1449
|
+
}) | null;
|
|
1450
|
+
};
|
|
1451
|
+
rootEl: any;
|
|
1452
|
+
};
|
|
1453
|
+
|
|
1454
|
+
declare function __VLS_template_8(): {
|
|
1455
|
+
attrs: Partial<{}>;
|
|
1456
|
+
slots: {
|
|
1457
|
+
default?(_: {}): any;
|
|
1458
|
+
};
|
|
1459
|
+
refs: {};
|
|
1460
|
+
rootEl: any;
|
|
1461
|
+
};
|
|
1462
|
+
|
|
1463
|
+
declare function __VLS_template_9(): {
|
|
1464
|
+
attrs: Partial<{}>;
|
|
1465
|
+
slots: {
|
|
1466
|
+
default?(_: {}): any;
|
|
1467
|
+
};
|
|
1468
|
+
refs: {};
|
|
1469
|
+
rootEl: any;
|
|
1470
|
+
};
|
|
1471
|
+
|
|
1472
|
+
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1473
|
+
|
|
1474
|
+
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
1475
|
+
|
|
1476
|
+
declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
|
|
1477
|
+
|
|
1478
|
+
declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
|
|
1479
|
+
|
|
1480
|
+
declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
|
|
1481
|
+
|
|
1482
|
+
declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
|
|
1483
|
+
|
|
1484
|
+
declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
|
|
1485
|
+
|
|
1486
|
+
declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
|
|
1487
|
+
|
|
1488
|
+
declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
|
|
1489
|
+
|
|
1490
|
+
declare type __VLS_TemplateResult_18 = ReturnType<typeof __VLS_template_18>;
|
|
1491
|
+
|
|
1492
|
+
declare type __VLS_TemplateResult_19 = ReturnType<typeof __VLS_template_19>;
|
|
1493
|
+
|
|
1494
|
+
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
25
1495
|
|
|
26
|
-
declare
|
|
1496
|
+
declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
|
|
1497
|
+
|
|
1498
|
+
declare type __VLS_TemplateResult_21 = ReturnType<typeof __VLS_template_21>;
|
|
1499
|
+
|
|
1500
|
+
declare type __VLS_TemplateResult_22 = ReturnType<typeof __VLS_template_22>;
|
|
1501
|
+
|
|
1502
|
+
declare type __VLS_TemplateResult_23 = ReturnType<typeof __VLS_template_23>;
|
|
1503
|
+
|
|
1504
|
+
declare type __VLS_TemplateResult_24 = ReturnType<typeof __VLS_template_24>;
|
|
1505
|
+
|
|
1506
|
+
declare type __VLS_TemplateResult_25 = ReturnType<typeof __VLS_template_25>;
|
|
1507
|
+
|
|
1508
|
+
declare type __VLS_TemplateResult_26 = ReturnType<typeof __VLS_template_26>;
|
|
1509
|
+
|
|
1510
|
+
declare type __VLS_TemplateResult_27 = ReturnType<typeof __VLS_template_27>;
|
|
1511
|
+
|
|
1512
|
+
declare type __VLS_TemplateResult_28 = ReturnType<typeof __VLS_template_28>;
|
|
1513
|
+
|
|
1514
|
+
declare type __VLS_TemplateResult_29 = ReturnType<typeof __VLS_template_29>;
|
|
1515
|
+
|
|
1516
|
+
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
1517
|
+
|
|
1518
|
+
declare type __VLS_TemplateResult_30 = ReturnType<typeof __VLS_template_30>;
|
|
1519
|
+
|
|
1520
|
+
declare type __VLS_TemplateResult_31 = ReturnType<typeof __VLS_template_31>;
|
|
1521
|
+
|
|
1522
|
+
declare type __VLS_TemplateResult_32 = ReturnType<typeof __VLS_template_32>;
|
|
1523
|
+
|
|
1524
|
+
declare type __VLS_TemplateResult_33 = ReturnType<typeof __VLS_template_33>;
|
|
1525
|
+
|
|
1526
|
+
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
1527
|
+
|
|
1528
|
+
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
1529
|
+
|
|
1530
|
+
declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
|
|
1531
|
+
|
|
1532
|
+
declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
1533
|
+
|
|
1534
|
+
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
1535
|
+
|
|
1536
|
+
declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
|
|
1537
|
+
|
|
1538
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
1539
|
+
new (): {
|
|
1540
|
+
$slots: S;
|
|
1541
|
+
};
|
|
1542
|
+
};
|
|
1543
|
+
|
|
1544
|
+
declare type __VLS_WithTemplateSlots_10<T, S> = T & {
|
|
1545
|
+
new (): {
|
|
1546
|
+
$slots: S;
|
|
1547
|
+
};
|
|
1548
|
+
};
|
|
1549
|
+
|
|
1550
|
+
declare type __VLS_WithTemplateSlots_11<T, S> = T & {
|
|
1551
|
+
new (): {
|
|
1552
|
+
$slots: S;
|
|
1553
|
+
};
|
|
1554
|
+
};
|
|
1555
|
+
|
|
1556
|
+
declare type __VLS_WithTemplateSlots_12<T, S> = T & {
|
|
1557
|
+
new (): {
|
|
1558
|
+
$slots: S;
|
|
1559
|
+
};
|
|
1560
|
+
};
|
|
1561
|
+
|
|
1562
|
+
declare type __VLS_WithTemplateSlots_13<T, S> = T & {
|
|
1563
|
+
new (): {
|
|
1564
|
+
$slots: S;
|
|
1565
|
+
};
|
|
1566
|
+
};
|
|
1567
|
+
|
|
1568
|
+
declare type __VLS_WithTemplateSlots_14<T, S> = T & {
|
|
1569
|
+
new (): {
|
|
1570
|
+
$slots: S;
|
|
1571
|
+
};
|
|
1572
|
+
};
|
|
1573
|
+
|
|
1574
|
+
declare type __VLS_WithTemplateSlots_15<T, S> = T & {
|
|
1575
|
+
new (): {
|
|
1576
|
+
$slots: S;
|
|
1577
|
+
};
|
|
1578
|
+
};
|
|
1579
|
+
|
|
1580
|
+
declare type __VLS_WithTemplateSlots_16<T, S> = T & {
|
|
1581
|
+
new (): {
|
|
1582
|
+
$slots: S;
|
|
1583
|
+
};
|
|
1584
|
+
};
|
|
1585
|
+
|
|
1586
|
+
declare type __VLS_WithTemplateSlots_17<T, S> = T & {
|
|
1587
|
+
new (): {
|
|
1588
|
+
$slots: S;
|
|
1589
|
+
};
|
|
1590
|
+
};
|
|
1591
|
+
|
|
1592
|
+
declare type __VLS_WithTemplateSlots_18<T, S> = T & {
|
|
1593
|
+
new (): {
|
|
1594
|
+
$slots: S;
|
|
1595
|
+
};
|
|
1596
|
+
};
|
|
1597
|
+
|
|
1598
|
+
declare type __VLS_WithTemplateSlots_19<T, S> = T & {
|
|
1599
|
+
new (): {
|
|
1600
|
+
$slots: S;
|
|
1601
|
+
};
|
|
1602
|
+
};
|
|
1603
|
+
|
|
1604
|
+
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
1605
|
+
new (): {
|
|
1606
|
+
$slots: S;
|
|
1607
|
+
};
|
|
1608
|
+
};
|
|
1609
|
+
|
|
1610
|
+
declare type __VLS_WithTemplateSlots_20<T, S> = T & {
|
|
1611
|
+
new (): {
|
|
1612
|
+
$slots: S;
|
|
1613
|
+
};
|
|
1614
|
+
};
|
|
1615
|
+
|
|
1616
|
+
declare type __VLS_WithTemplateSlots_21<T, S> = T & {
|
|
1617
|
+
new (): {
|
|
1618
|
+
$slots: S;
|
|
1619
|
+
};
|
|
1620
|
+
};
|
|
1621
|
+
|
|
1622
|
+
declare type __VLS_WithTemplateSlots_22<T, S> = T & {
|
|
1623
|
+
new (): {
|
|
1624
|
+
$slots: S;
|
|
1625
|
+
};
|
|
1626
|
+
};
|
|
1627
|
+
|
|
1628
|
+
declare type __VLS_WithTemplateSlots_23<T, S> = T & {
|
|
1629
|
+
new (): {
|
|
1630
|
+
$slots: S;
|
|
1631
|
+
};
|
|
1632
|
+
};
|
|
1633
|
+
|
|
1634
|
+
declare type __VLS_WithTemplateSlots_24<T, S> = T & {
|
|
1635
|
+
new (): {
|
|
1636
|
+
$slots: S;
|
|
1637
|
+
};
|
|
1638
|
+
};
|
|
1639
|
+
|
|
1640
|
+
declare type __VLS_WithTemplateSlots_25<T, S> = T & {
|
|
1641
|
+
new (): {
|
|
1642
|
+
$slots: S;
|
|
1643
|
+
};
|
|
1644
|
+
};
|
|
1645
|
+
|
|
1646
|
+
declare type __VLS_WithTemplateSlots_26<T, S> = T & {
|
|
1647
|
+
new (): {
|
|
1648
|
+
$slots: S;
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
|
|
1652
|
+
declare type __VLS_WithTemplateSlots_27<T, S> = T & {
|
|
1653
|
+
new (): {
|
|
1654
|
+
$slots: S;
|
|
1655
|
+
};
|
|
1656
|
+
};
|
|
1657
|
+
|
|
1658
|
+
declare type __VLS_WithTemplateSlots_28<T, S> = T & {
|
|
1659
|
+
new (): {
|
|
1660
|
+
$slots: S;
|
|
1661
|
+
};
|
|
1662
|
+
};
|
|
1663
|
+
|
|
1664
|
+
declare type __VLS_WithTemplateSlots_29<T, S> = T & {
|
|
1665
|
+
new (): {
|
|
1666
|
+
$slots: S;
|
|
1667
|
+
};
|
|
1668
|
+
};
|
|
1669
|
+
|
|
1670
|
+
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
1671
|
+
new (): {
|
|
1672
|
+
$slots: S;
|
|
1673
|
+
};
|
|
1674
|
+
};
|
|
1675
|
+
|
|
1676
|
+
declare type __VLS_WithTemplateSlots_30<T, S> = T & {
|
|
1677
|
+
new (): {
|
|
1678
|
+
$slots: S;
|
|
1679
|
+
};
|
|
1680
|
+
};
|
|
1681
|
+
|
|
1682
|
+
declare type __VLS_WithTemplateSlots_31<T, S> = T & {
|
|
1683
|
+
new (): {
|
|
1684
|
+
$slots: S;
|
|
1685
|
+
};
|
|
1686
|
+
};
|
|
1687
|
+
|
|
1688
|
+
declare type __VLS_WithTemplateSlots_32<T, S> = T & {
|
|
1689
|
+
new (): {
|
|
1690
|
+
$slots: S;
|
|
1691
|
+
};
|
|
1692
|
+
};
|
|
1693
|
+
|
|
1694
|
+
declare type __VLS_WithTemplateSlots_33<T, S> = T & {
|
|
1695
|
+
new (): {
|
|
1696
|
+
$slots: S;
|
|
1697
|
+
};
|
|
1698
|
+
};
|
|
1699
|
+
|
|
1700
|
+
declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
1701
|
+
new (): {
|
|
1702
|
+
$slots: S;
|
|
1703
|
+
};
|
|
1704
|
+
};
|
|
1705
|
+
|
|
1706
|
+
declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
1707
|
+
new (): {
|
|
1708
|
+
$slots: S;
|
|
1709
|
+
};
|
|
1710
|
+
};
|
|
1711
|
+
|
|
1712
|
+
declare type __VLS_WithTemplateSlots_6<T, S> = T & {
|
|
1713
|
+
new (): {
|
|
1714
|
+
$slots: S;
|
|
1715
|
+
};
|
|
1716
|
+
};
|
|
1717
|
+
|
|
1718
|
+
declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
1719
|
+
new (): {
|
|
1720
|
+
$slots: S;
|
|
1721
|
+
};
|
|
1722
|
+
};
|
|
1723
|
+
|
|
1724
|
+
declare type __VLS_WithTemplateSlots_8<T, S> = T & {
|
|
1725
|
+
new (): {
|
|
1726
|
+
$slots: S;
|
|
1727
|
+
};
|
|
1728
|
+
};
|
|
1729
|
+
|
|
1730
|
+
declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
1731
|
+
new (): {
|
|
1732
|
+
$slots: S;
|
|
1733
|
+
};
|
|
1734
|
+
};
|
|
1735
|
+
|
|
1736
|
+
export declare type AcceptRefs<T> = {
|
|
1737
|
+
[K in keyof T]: T[K] | RefUnion<T[K]>;
|
|
1738
|
+
};
|
|
1739
|
+
|
|
1740
|
+
export declare const AdvancedOptions: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
1741
|
+
|
|
1742
|
+
export declare type AerogelGlobalEvents = Partial<{
|
|
1743
|
+
[Event in EventWithoutPayload]: () => unknown;
|
|
1744
|
+
}> & Partial<{
|
|
1745
|
+
[Event in EventWithPayload]: EventListener_2<EventsPayload[Event]>;
|
|
1746
|
+
}>;
|
|
1747
|
+
|
|
1748
|
+
export declare interface AerogelOptions {
|
|
27
1749
|
plugins?: Plugin_2[];
|
|
1750
|
+
install?(app: App_2): void | Promise<void>;
|
|
28
1751
|
}
|
|
29
1752
|
|
|
30
|
-
export declare
|
|
31
|
-
|
|
32
|
-
type: PropType<string | null>;
|
|
33
|
-
validator?(value: unknown): boolean;
|
|
34
|
-
} & {
|
|
35
|
-
default: string | (() => string | null) | null;
|
|
36
|
-
};
|
|
37
|
-
message: {
|
|
38
|
-
type: PropType<string>;
|
|
39
|
-
validator?(value: unknown): boolean;
|
|
40
|
-
} & {
|
|
41
|
-
required: true;
|
|
42
|
-
};
|
|
43
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
44
|
-
[key: string]: any;
|
|
45
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
46
|
-
title: {
|
|
47
|
-
type: PropType<string | null>;
|
|
48
|
-
validator?(value: unknown): boolean;
|
|
49
|
-
} & {
|
|
50
|
-
default: string | (() => string | null) | null;
|
|
51
|
-
};
|
|
52
|
-
message: {
|
|
53
|
-
type: PropType<string>;
|
|
54
|
-
validator?(value: unknown): boolean;
|
|
55
|
-
} & {
|
|
56
|
-
required: true;
|
|
57
|
-
};
|
|
58
|
-
}>>, {
|
|
59
|
-
title: string | null;
|
|
60
|
-
}, {}>;
|
|
61
|
-
|
|
62
|
-
export declare const AGAppLayout: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
63
|
-
[key: string]: any;
|
|
64
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
65
|
-
|
|
66
|
-
export declare const AGAppOverlays: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
67
|
-
[key: string]: any;
|
|
68
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
69
|
-
|
|
70
|
-
export declare const AGButton: DefineComponent< {
|
|
71
|
-
color: {
|
|
72
|
-
type: PropType<"primary" | "secondary" | "danger" | "clear">;
|
|
73
|
-
validator?(value: unknown): boolean;
|
|
74
|
-
} & {
|
|
75
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
76
|
-
};
|
|
77
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
78
|
-
[key: string]: any;
|
|
79
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
80
|
-
color: {
|
|
81
|
-
type: PropType<"primary" | "secondary" | "danger" | "clear">;
|
|
82
|
-
validator?(value: unknown): boolean;
|
|
83
|
-
} & {
|
|
84
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
85
|
-
};
|
|
86
|
-
}>>, {
|
|
87
|
-
color: "primary" | "secondary" | "danger" | "clear";
|
|
88
|
-
}, {}>;
|
|
89
|
-
|
|
90
|
-
export declare const AGCheckbox: DefineComponent< {
|
|
91
|
-
name: {
|
|
92
|
-
type: PropType<string | null>;
|
|
93
|
-
validator?(value: unknown): boolean;
|
|
94
|
-
} & {
|
|
95
|
-
default: string | (() => string | null) | null;
|
|
96
|
-
};
|
|
97
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
98
|
-
[key: string]: any;
|
|
99
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
100
|
-
name: {
|
|
101
|
-
type: PropType<string | null>;
|
|
102
|
-
validator?(value: unknown): boolean;
|
|
103
|
-
} & {
|
|
104
|
-
default: string | (() => string | null) | null;
|
|
105
|
-
};
|
|
106
|
-
}>>, {
|
|
107
|
-
name: string | null;
|
|
108
|
-
}, {}>;
|
|
109
|
-
|
|
110
|
-
export declare const AGConfirmModal: DefineComponent< {
|
|
111
|
-
title: {
|
|
112
|
-
type: PropType<string | null>;
|
|
113
|
-
validator?(value: unknown): boolean;
|
|
114
|
-
} & {
|
|
115
|
-
default: string | (() => string | null) | null;
|
|
116
|
-
};
|
|
117
|
-
message: {
|
|
118
|
-
type: PropType<string>;
|
|
119
|
-
validator?(value: unknown): boolean;
|
|
120
|
-
} & {
|
|
121
|
-
required: true;
|
|
122
|
-
};
|
|
123
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
124
|
-
[key: string]: any;
|
|
125
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
126
|
-
title: {
|
|
127
|
-
type: PropType<string | null>;
|
|
128
|
-
validator?(value: unknown): boolean;
|
|
129
|
-
} & {
|
|
130
|
-
default: string | (() => string | null) | null;
|
|
131
|
-
};
|
|
132
|
-
message: {
|
|
133
|
-
type: PropType<string>;
|
|
134
|
-
validator?(value: unknown): boolean;
|
|
135
|
-
} & {
|
|
136
|
-
required: true;
|
|
137
|
-
};
|
|
138
|
-
}>>, {
|
|
139
|
-
title: string | null;
|
|
140
|
-
}, {}>;
|
|
141
|
-
|
|
142
|
-
export declare const AGErrorMessage: DefineComponent< {
|
|
143
|
-
error: {
|
|
144
|
-
type: PropType<unknown>;
|
|
145
|
-
validator?(value: unknown): boolean;
|
|
146
|
-
} & {
|
|
147
|
-
required: true;
|
|
148
|
-
};
|
|
149
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
150
|
-
[key: string]: any;
|
|
151
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
152
|
-
error: {
|
|
153
|
-
type: PropType<unknown>;
|
|
154
|
-
validator?(value: unknown): boolean;
|
|
155
|
-
} & {
|
|
156
|
-
required: true;
|
|
157
|
-
};
|
|
158
|
-
}>>, {}, {}>;
|
|
159
|
-
|
|
160
|
-
export declare const AGErrorReportModalButtons: DefineComponent< {
|
|
161
|
-
report: {
|
|
162
|
-
type: PropType<ErrorReport>;
|
|
163
|
-
validator?(value: unknown): boolean;
|
|
164
|
-
} & {
|
|
165
|
-
required: true;
|
|
166
|
-
};
|
|
167
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
168
|
-
[key: string]: any;
|
|
169
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
170
|
-
report: {
|
|
171
|
-
type: PropType<ErrorReport>;
|
|
172
|
-
validator?(value: unknown): boolean;
|
|
173
|
-
} & {
|
|
174
|
-
required: true;
|
|
175
|
-
};
|
|
176
|
-
}>>, {}, {}>;
|
|
177
|
-
|
|
178
|
-
export declare const AGErrorReportModalTitle: DefineComponent< {
|
|
179
|
-
report: {
|
|
180
|
-
type: PropType<ErrorReport>;
|
|
181
|
-
validator?(value: unknown): boolean;
|
|
182
|
-
} & {
|
|
183
|
-
required: true;
|
|
184
|
-
};
|
|
185
|
-
currentReport: {
|
|
186
|
-
type: PropType<number | null>;
|
|
187
|
-
validator?(value: unknown): boolean;
|
|
188
|
-
} & {
|
|
189
|
-
default: number | (() => number | null) | null;
|
|
190
|
-
};
|
|
191
|
-
totalReports: {
|
|
192
|
-
type: PropType<number | null>;
|
|
193
|
-
validator?(value: unknown): boolean;
|
|
194
|
-
} & {
|
|
195
|
-
default: number | (() => number | null) | null;
|
|
196
|
-
};
|
|
197
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
198
|
-
[key: string]: any;
|
|
199
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
200
|
-
report: {
|
|
201
|
-
type: PropType<ErrorReport>;
|
|
202
|
-
validator?(value: unknown): boolean;
|
|
203
|
-
} & {
|
|
204
|
-
required: true;
|
|
205
|
-
};
|
|
206
|
-
currentReport: {
|
|
207
|
-
type: PropType<number | null>;
|
|
208
|
-
validator?(value: unknown): boolean;
|
|
209
|
-
} & {
|
|
210
|
-
default: number | (() => number | null) | null;
|
|
211
|
-
};
|
|
212
|
-
totalReports: {
|
|
213
|
-
type: PropType<number | null>;
|
|
214
|
-
validator?(value: unknown): boolean;
|
|
215
|
-
} & {
|
|
216
|
-
default: number | (() => number | null) | null;
|
|
217
|
-
};
|
|
218
|
-
}>>, {
|
|
219
|
-
currentReport: number | null;
|
|
220
|
-
totalReports: number | null;
|
|
221
|
-
}, {}>;
|
|
222
|
-
|
|
223
|
-
export declare const AGForm: DefineComponent< {
|
|
224
|
-
form: {
|
|
225
|
-
type: PropType<Form<FormFieldDefinitions> | null>;
|
|
226
|
-
validator?(value: unknown): boolean;
|
|
227
|
-
} & {
|
|
228
|
-
default: Form<FormFieldDefinitions> | (() => Form<FormFieldDefinitions> | null) | null;
|
|
229
|
-
};
|
|
230
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
231
|
-
[key: string]: any;
|
|
232
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "submit"[], "submit", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
233
|
-
form: {
|
|
234
|
-
type: PropType<Form<FormFieldDefinitions> | null>;
|
|
235
|
-
validator?(value: unknown): boolean;
|
|
236
|
-
} & {
|
|
237
|
-
default: Form<FormFieldDefinitions> | (() => Form<FormFieldDefinitions> | null) | null;
|
|
238
|
-
};
|
|
239
|
-
}>> & {
|
|
240
|
-
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
241
|
-
}, {
|
|
242
|
-
form: Form<FormFieldDefinitions> | null;
|
|
243
|
-
}, {}>;
|
|
244
|
-
|
|
245
|
-
export declare const AGHeadlessButton: DefineComponent< {
|
|
246
|
-
href: {
|
|
247
|
-
type: PropType<string | null>;
|
|
248
|
-
validator?(value: unknown): boolean;
|
|
249
|
-
} & {
|
|
250
|
-
default: string | (() => string | null) | null;
|
|
251
|
-
};
|
|
252
|
-
url: {
|
|
253
|
-
type: PropType<string | null>;
|
|
254
|
-
validator?(value: unknown): boolean;
|
|
255
|
-
} & {
|
|
256
|
-
default: string | (() => string | null) | null;
|
|
257
|
-
};
|
|
258
|
-
route: {
|
|
259
|
-
type: PropType<string | null>;
|
|
260
|
-
validator?(value: unknown): boolean;
|
|
261
|
-
} & {
|
|
262
|
-
default: string | (() => string | null) | null;
|
|
263
|
-
};
|
|
264
|
-
routeParams: {
|
|
265
|
-
type: PropType< {}>;
|
|
266
|
-
validator?(value: unknown): boolean;
|
|
267
|
-
} & {
|
|
268
|
-
default: {} | (() => {}) | null;
|
|
269
|
-
};
|
|
270
|
-
routeQuery: {
|
|
271
|
-
type: PropType< {}>;
|
|
272
|
-
validator?(value: unknown): boolean;
|
|
273
|
-
} & {
|
|
274
|
-
default: {} | (() => {}) | null;
|
|
275
|
-
};
|
|
276
|
-
submit: {
|
|
277
|
-
type: PropType<boolean>;
|
|
278
|
-
validator?(value: unknown): boolean;
|
|
279
|
-
} & {
|
|
280
|
-
default: boolean | (() => boolean) | null;
|
|
281
|
-
};
|
|
282
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
283
|
-
[key: string]: any;
|
|
284
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
285
|
-
href: {
|
|
286
|
-
type: PropType<string | null>;
|
|
287
|
-
validator?(value: unknown): boolean;
|
|
288
|
-
} & {
|
|
289
|
-
default: string | (() => string | null) | null;
|
|
290
|
-
};
|
|
291
|
-
url: {
|
|
292
|
-
type: PropType<string | null>;
|
|
293
|
-
validator?(value: unknown): boolean;
|
|
294
|
-
} & {
|
|
295
|
-
default: string | (() => string | null) | null;
|
|
296
|
-
};
|
|
297
|
-
route: {
|
|
298
|
-
type: PropType<string | null>;
|
|
299
|
-
validator?(value: unknown): boolean;
|
|
300
|
-
} & {
|
|
301
|
-
default: string | (() => string | null) | null;
|
|
302
|
-
};
|
|
303
|
-
routeParams: {
|
|
304
|
-
type: PropType< {}>;
|
|
305
|
-
validator?(value: unknown): boolean;
|
|
306
|
-
} & {
|
|
307
|
-
default: {} | (() => {}) | null;
|
|
308
|
-
};
|
|
309
|
-
routeQuery: {
|
|
310
|
-
type: PropType< {}>;
|
|
311
|
-
validator?(value: unknown): boolean;
|
|
312
|
-
} & {
|
|
313
|
-
default: {} | (() => {}) | null;
|
|
314
|
-
};
|
|
315
|
-
submit: {
|
|
316
|
-
type: PropType<boolean>;
|
|
317
|
-
validator?(value: unknown): boolean;
|
|
318
|
-
} & {
|
|
319
|
-
default: boolean | (() => boolean) | null;
|
|
320
|
-
};
|
|
321
|
-
}>>, {
|
|
322
|
-
href: string | null;
|
|
323
|
-
url: string | null;
|
|
324
|
-
route: string | null;
|
|
325
|
-
routeParams: {};
|
|
326
|
-
routeQuery: {};
|
|
327
|
-
submit: boolean;
|
|
328
|
-
}, {}>;
|
|
329
|
-
|
|
330
|
-
export declare const AGHeadlessInput: DefineComponent< {
|
|
331
|
-
as: {
|
|
332
|
-
type: PropType<string>;
|
|
333
|
-
validator?(value: unknown): boolean;
|
|
334
|
-
} & {
|
|
335
|
-
default: string | (() => string) | null;
|
|
336
|
-
};
|
|
337
|
-
name: {
|
|
338
|
-
type: PropType<string | null>;
|
|
339
|
-
validator?(value: unknown): boolean;
|
|
340
|
-
} & {
|
|
341
|
-
default: string | (() => string | null) | null;
|
|
342
|
-
};
|
|
343
|
-
modelValue: {
|
|
344
|
-
type: PropType<string | number | boolean | null>;
|
|
345
|
-
validator?(value: unknown): boolean;
|
|
346
|
-
} & {
|
|
347
|
-
default: string | number | boolean | (() => string | number | boolean | null) | null;
|
|
348
|
-
};
|
|
349
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
350
|
-
[key: string]: any;
|
|
351
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
352
|
-
as: {
|
|
353
|
-
type: PropType<string>;
|
|
354
|
-
validator?(value: unknown): boolean;
|
|
355
|
-
} & {
|
|
356
|
-
default: string | (() => string) | null;
|
|
357
|
-
};
|
|
358
|
-
name: {
|
|
359
|
-
type: PropType<string | null>;
|
|
360
|
-
validator?(value: unknown): boolean;
|
|
361
|
-
} & {
|
|
362
|
-
default: string | (() => string | null) | null;
|
|
363
|
-
};
|
|
364
|
-
modelValue: {
|
|
365
|
-
type: PropType<string | number | boolean | null>;
|
|
366
|
-
validator?(value: unknown): boolean;
|
|
367
|
-
} & {
|
|
368
|
-
default: string | number | boolean | (() => string | number | boolean | null) | null;
|
|
369
|
-
};
|
|
370
|
-
}>> & {
|
|
371
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
372
|
-
}, {
|
|
373
|
-
as: string;
|
|
374
|
-
name: string | null;
|
|
375
|
-
modelValue: string | number | boolean | null;
|
|
376
|
-
}, {}>;
|
|
377
|
-
|
|
378
|
-
export declare const AGHeadlessInputError: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
379
|
-
[key: string]: any;
|
|
380
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
381
|
-
|
|
382
|
-
export declare const AGHeadlessInputInput: DefineComponent< {
|
|
383
|
-
type: {
|
|
384
|
-
type: PropType<string>;
|
|
385
|
-
validator?(value: unknown): boolean;
|
|
386
|
-
} & {
|
|
387
|
-
default: string | (() => string) | null;
|
|
388
|
-
};
|
|
389
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
390
|
-
[key: string]: any;
|
|
391
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
392
|
-
type: {
|
|
393
|
-
type: PropType<string>;
|
|
394
|
-
validator?(value: unknown): boolean;
|
|
395
|
-
} & {
|
|
396
|
-
default: string | (() => string) | null;
|
|
397
|
-
};
|
|
398
|
-
}>>, {
|
|
399
|
-
type: string;
|
|
400
|
-
}, {}>;
|
|
401
|
-
|
|
402
|
-
export declare const AGHeadlessInputLabel: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
403
|
-
[key: string]: any;
|
|
404
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
405
|
-
|
|
406
|
-
export declare const AGHeadlessModal: DefineComponent< {
|
|
407
|
-
cancellable: {
|
|
408
|
-
type: PropType<boolean>;
|
|
409
|
-
validator?(value: unknown): boolean;
|
|
410
|
-
} & {
|
|
411
|
-
default: boolean | (() => boolean) | null;
|
|
412
|
-
};
|
|
413
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
414
|
-
[key: string]: any;
|
|
415
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
416
|
-
cancellable: {
|
|
417
|
-
type: PropType<boolean>;
|
|
418
|
-
validator?(value: unknown): boolean;
|
|
419
|
-
} & {
|
|
420
|
-
default: boolean | (() => boolean) | null;
|
|
421
|
-
};
|
|
422
|
-
}>>, {
|
|
423
|
-
cancellable: boolean;
|
|
424
|
-
}, {}>;
|
|
425
|
-
|
|
426
|
-
export declare const AGHeadlessModalPanel: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
427
|
-
[key: string]: any;
|
|
428
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
429
|
-
|
|
430
|
-
export declare const AGHeadlessModalTitle: DefineComponent< {
|
|
431
|
-
as: {
|
|
432
|
-
type: PropType<string>;
|
|
433
|
-
validator?(value: unknown): boolean;
|
|
434
|
-
} & {
|
|
435
|
-
default: string | (() => string) | null;
|
|
436
|
-
};
|
|
437
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
438
|
-
[key: string]: any;
|
|
439
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
440
|
-
as: {
|
|
441
|
-
type: PropType<string>;
|
|
442
|
-
validator?(value: unknown): boolean;
|
|
443
|
-
} & {
|
|
444
|
-
default: string | (() => string) | null;
|
|
445
|
-
};
|
|
446
|
-
}>>, {
|
|
447
|
-
as: string;
|
|
448
|
-
}, {}>;
|
|
449
|
-
|
|
450
|
-
export declare const AGHeadlessSnackbar: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
451
|
-
[key: string]: any;
|
|
452
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
453
|
-
|
|
454
|
-
export declare const AGInput: DefineComponent< {
|
|
455
|
-
name: {
|
|
456
|
-
type: PropType<string | null>;
|
|
457
|
-
validator?(value: unknown): boolean;
|
|
458
|
-
} & {
|
|
459
|
-
default: string | (() => string | null) | null;
|
|
460
|
-
};
|
|
461
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
462
|
-
[key: string]: any;
|
|
463
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
464
|
-
name: {
|
|
465
|
-
type: PropType<string | null>;
|
|
466
|
-
validator?(value: unknown): boolean;
|
|
467
|
-
} & {
|
|
468
|
-
default: string | (() => string | null) | null;
|
|
469
|
-
};
|
|
470
|
-
}>>, {
|
|
471
|
-
name: string | null;
|
|
472
|
-
}, {}>;
|
|
473
|
-
|
|
474
|
-
export declare const AGLink: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
475
|
-
[key: string]: any;
|
|
476
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
477
|
-
|
|
478
|
-
export declare const AGLoadingModal: DefineComponent< {
|
|
479
|
-
message: {
|
|
480
|
-
type: PropType<string | null>;
|
|
481
|
-
validator?(value: unknown): boolean;
|
|
482
|
-
} & {
|
|
483
|
-
default: string | (() => string | null) | null;
|
|
484
|
-
};
|
|
485
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
486
|
-
[key: string]: any;
|
|
487
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
488
|
-
message: {
|
|
489
|
-
type: PropType<string | null>;
|
|
490
|
-
validator?(value: unknown): boolean;
|
|
491
|
-
} & {
|
|
492
|
-
default: string | (() => string | null) | null;
|
|
493
|
-
};
|
|
494
|
-
}>>, {
|
|
495
|
-
message: string | null;
|
|
496
|
-
}, {}>;
|
|
497
|
-
|
|
498
|
-
export declare const AGMarkdown: DefineComponent< {
|
|
499
|
-
as: {
|
|
500
|
-
type: PropType<string | null>;
|
|
501
|
-
validator?(value: unknown): boolean;
|
|
502
|
-
} & {
|
|
503
|
-
default: string | (() => string | null) | null;
|
|
504
|
-
};
|
|
505
|
-
inline: {
|
|
506
|
-
type: PropType<boolean>;
|
|
507
|
-
validator?(value: unknown): boolean;
|
|
508
|
-
} & {
|
|
509
|
-
default: boolean | (() => boolean) | null;
|
|
510
|
-
};
|
|
511
|
-
langKey: {
|
|
512
|
-
type: PropType<string | null>;
|
|
513
|
-
validator?(value: unknown): boolean;
|
|
514
|
-
} & {
|
|
515
|
-
default: string | (() => string | null) | null;
|
|
516
|
-
};
|
|
517
|
-
langParams: {
|
|
518
|
-
type: PropType<Record<string, unknown> | null>;
|
|
519
|
-
validator?(value: unknown): boolean;
|
|
520
|
-
} & {
|
|
521
|
-
default: Record<string, unknown> | (() => Record<string, unknown> | null) | null;
|
|
522
|
-
};
|
|
523
|
-
text: {
|
|
524
|
-
type: PropType<string | null>;
|
|
525
|
-
validator?(value: unknown): boolean;
|
|
526
|
-
} & {
|
|
527
|
-
default: string | (() => string | null) | null;
|
|
528
|
-
};
|
|
529
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
530
|
-
[key: string]: any;
|
|
531
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
532
|
-
as: {
|
|
533
|
-
type: PropType<string | null>;
|
|
534
|
-
validator?(value: unknown): boolean;
|
|
535
|
-
} & {
|
|
536
|
-
default: string | (() => string | null) | null;
|
|
537
|
-
};
|
|
538
|
-
inline: {
|
|
539
|
-
type: PropType<boolean>;
|
|
540
|
-
validator?(value: unknown): boolean;
|
|
541
|
-
} & {
|
|
542
|
-
default: boolean | (() => boolean) | null;
|
|
543
|
-
};
|
|
544
|
-
langKey: {
|
|
545
|
-
type: PropType<string | null>;
|
|
546
|
-
validator?(value: unknown): boolean;
|
|
547
|
-
} & {
|
|
548
|
-
default: string | (() => string | null) | null;
|
|
549
|
-
};
|
|
550
|
-
langParams: {
|
|
551
|
-
type: PropType<Record<string, unknown> | null>;
|
|
552
|
-
validator?(value: unknown): boolean;
|
|
553
|
-
} & {
|
|
554
|
-
default: Record<string, unknown> | (() => Record<string, unknown> | null) | null;
|
|
555
|
-
};
|
|
556
|
-
text: {
|
|
557
|
-
type: PropType<string | null>;
|
|
558
|
-
validator?(value: unknown): boolean;
|
|
559
|
-
} & {
|
|
560
|
-
default: string | (() => string | null) | null;
|
|
561
|
-
};
|
|
562
|
-
}>>, {
|
|
563
|
-
as: string | null;
|
|
564
|
-
inline: boolean;
|
|
565
|
-
langKey: string | null;
|
|
566
|
-
langParams: Record<string, unknown> | null;
|
|
567
|
-
text: string | null;
|
|
568
|
-
}, {}>;
|
|
569
|
-
|
|
570
|
-
export declare const AGModal: DefineComponent< {
|
|
571
|
-
cancellable: {
|
|
572
|
-
type: PropType<boolean>;
|
|
573
|
-
validator?(value: unknown): boolean;
|
|
574
|
-
} & {
|
|
575
|
-
default: boolean | (() => boolean) | null;
|
|
576
|
-
};
|
|
577
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
578
|
-
[key: string]: any;
|
|
579
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
580
|
-
cancellable: {
|
|
581
|
-
type: PropType<boolean>;
|
|
582
|
-
validator?(value: unknown): boolean;
|
|
583
|
-
} & {
|
|
584
|
-
default: boolean | (() => boolean) | null;
|
|
585
|
-
};
|
|
586
|
-
}>>, {
|
|
587
|
-
cancellable: boolean;
|
|
588
|
-
}, {}>;
|
|
589
|
-
|
|
590
|
-
export declare const AGModalContext: DefineComponent< {
|
|
591
|
-
modal: {
|
|
592
|
-
type: PropType<Modal<unknown>>;
|
|
593
|
-
validator?(value: unknown): boolean;
|
|
594
|
-
} & {
|
|
595
|
-
required: true;
|
|
596
|
-
};
|
|
597
|
-
childIndex: {
|
|
598
|
-
type: PropType<number>;
|
|
599
|
-
validator?(value: unknown): boolean;
|
|
600
|
-
} & {
|
|
601
|
-
required: true;
|
|
602
|
-
};
|
|
603
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
604
|
-
[key: string]: any;
|
|
605
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
606
|
-
modal: {
|
|
607
|
-
type: PropType<Modal<unknown>>;
|
|
608
|
-
validator?(value: unknown): boolean;
|
|
609
|
-
} & {
|
|
610
|
-
required: true;
|
|
611
|
-
};
|
|
612
|
-
childIndex: {
|
|
613
|
-
type: PropType<number>;
|
|
614
|
-
validator?(value: unknown): boolean;
|
|
615
|
-
} & {
|
|
616
|
-
required: true;
|
|
617
|
-
};
|
|
618
|
-
}>>, {}, {}>;
|
|
619
|
-
|
|
620
|
-
export declare const AGSnackbar: DefineComponent< {
|
|
621
|
-
id: {
|
|
622
|
-
type: PropType<string>;
|
|
623
|
-
validator?(value: unknown): boolean;
|
|
624
|
-
} & {
|
|
625
|
-
required: true;
|
|
626
|
-
};
|
|
627
|
-
message: {
|
|
628
|
-
type: PropType<string>;
|
|
629
|
-
validator?(value: unknown): boolean;
|
|
630
|
-
} & {
|
|
631
|
-
required: true;
|
|
632
|
-
};
|
|
633
|
-
actions: {
|
|
634
|
-
type: PropType<SnackbarAction[]>;
|
|
635
|
-
validator?(value: unknown): boolean;
|
|
636
|
-
} & {
|
|
637
|
-
default: SnackbarAction[] | (() => SnackbarAction[]) | null;
|
|
638
|
-
};
|
|
639
|
-
color: {
|
|
640
|
-
type: PropType<"secondary" | "danger">;
|
|
641
|
-
validator?(value: unknown): boolean;
|
|
642
|
-
} & {
|
|
643
|
-
default: "secondary" | "danger" | (() => "secondary" | "danger") | null;
|
|
644
|
-
};
|
|
645
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
646
|
-
[key: string]: any;
|
|
647
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
648
|
-
id: {
|
|
649
|
-
type: PropType<string>;
|
|
650
|
-
validator?(value: unknown): boolean;
|
|
651
|
-
} & {
|
|
652
|
-
required: true;
|
|
653
|
-
};
|
|
654
|
-
message: {
|
|
655
|
-
type: PropType<string>;
|
|
656
|
-
validator?(value: unknown): boolean;
|
|
657
|
-
} & {
|
|
658
|
-
required: true;
|
|
659
|
-
};
|
|
660
|
-
actions: {
|
|
661
|
-
type: PropType<SnackbarAction[]>;
|
|
662
|
-
validator?(value: unknown): boolean;
|
|
663
|
-
} & {
|
|
664
|
-
default: SnackbarAction[] | (() => SnackbarAction[]) | null;
|
|
665
|
-
};
|
|
666
|
-
color: {
|
|
667
|
-
type: PropType<"secondary" | "danger">;
|
|
668
|
-
validator?(value: unknown): boolean;
|
|
669
|
-
} & {
|
|
670
|
-
default: "secondary" | "danger" | (() => "secondary" | "danger") | null;
|
|
671
|
-
};
|
|
672
|
-
}>>, {
|
|
673
|
-
actions: SnackbarAction[];
|
|
674
|
-
color: "secondary" | "danger";
|
|
675
|
-
}, {}>;
|
|
676
|
-
|
|
677
|
-
export declare const App: Facade<AppService, Constructor<AppService>>;
|
|
678
|
-
|
|
679
|
-
export declare class AppService extends _default_2 {
|
|
680
|
-
protected boot(): Promise<void>;
|
|
1753
|
+
export declare interface AerogelTestingRuntime {
|
|
1754
|
+
on: (typeof Events)['on'];
|
|
681
1755
|
}
|
|
682
1756
|
|
|
683
|
-
export declare
|
|
1757
|
+
export declare const AlertModal: DefineComponent<AlertModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AlertModalProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
684
1758
|
|
|
685
|
-
declare
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
}
|
|
1759
|
+
export declare interface AlertModalProps {
|
|
1760
|
+
title?: string;
|
|
1761
|
+
message: string;
|
|
1762
|
+
}
|
|
689
1763
|
|
|
690
|
-
export declare
|
|
1764
|
+
export declare const App: Facade<AppService>;
|
|
691
1765
|
|
|
692
|
-
export declare
|
|
1766
|
+
export declare const AppLayout: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1767
|
+
|
|
1768
|
+
export declare const AppModals: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1769
|
+
|
|
1770
|
+
export declare const AppOverlays: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1771
|
+
|
|
1772
|
+
export declare class AppService extends _default_3 {
|
|
1773
|
+
readonly name: string;
|
|
1774
|
+
readonly ready: PromisedValue<void>;
|
|
1775
|
+
readonly mounted: PromisedValue<void>;
|
|
1776
|
+
isReady(): boolean;
|
|
1777
|
+
isMounted(): boolean;
|
|
1778
|
+
addSetting(setting: AppSetting): void;
|
|
1779
|
+
whenReady<T>(callback: () => T): Promise<T>;
|
|
1780
|
+
reload(queryParameters?: Record<string, string | undefined>): Promise<void>;
|
|
1781
|
+
plugin<T extends Plugin_2 = Plugin_2>(name: string): T | null;
|
|
1782
|
+
service<T extends keyof Services>(name: T): Services[T] | null;
|
|
1783
|
+
protected boot(): Promise<void>;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
export declare interface AppSetting {
|
|
1787
|
+
component: Component;
|
|
1788
|
+
priority: number;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
export declare const AppToasts: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1792
|
+
|
|
1793
|
+
export declare function booleanInput(defaultValue?: boolean, options?: {
|
|
1794
|
+
rules?: string;
|
|
1795
|
+
}): FormFieldDefinition<typeof FormFieldTypes.Boolean>;
|
|
693
1796
|
|
|
694
1797
|
export declare function bootServices(app: App_2, services: Record<string, Service>): Promise<void>;
|
|
695
1798
|
|
|
696
|
-
export declare function
|
|
1799
|
+
export declare function bootstrap(rootComponent: Component, options?: AerogelOptions): Promise<void>;
|
|
1800
|
+
|
|
1801
|
+
export declare function bootstrapApplication(app: App_2, options?: AerogelOptions): Promise<void>;
|
|
1802
|
+
|
|
1803
|
+
export declare const Button: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
1804
|
+
|
|
1805
|
+
export declare interface ButtonProps extends PrimitiveProps {
|
|
1806
|
+
class?: HTMLAttributes['class'];
|
|
1807
|
+
disabled?: boolean;
|
|
1808
|
+
href?: string;
|
|
1809
|
+
route?: string;
|
|
1810
|
+
routeParams?: object;
|
|
1811
|
+
routeQuery?: object;
|
|
1812
|
+
size?: ButtonSize;
|
|
1813
|
+
submit?: boolean;
|
|
1814
|
+
variant?: ButtonVariant;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
export declare type ButtonSize = 'default' | 'small' | 'large' | 'icon';
|
|
697
1818
|
|
|
698
|
-
export declare type
|
|
1819
|
+
export declare type ButtonVariant = 'default' | 'secondary' | 'danger' | 'ghost' | 'outline' | 'link';
|
|
699
1820
|
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
1821
|
+
declare const Cache_2: Facade<CacheService>;
|
|
1822
|
+
export { Cache_2 as Cache }
|
|
1823
|
+
|
|
1824
|
+
export declare class CacheService extends Service {
|
|
1825
|
+
private cache?;
|
|
1826
|
+
get(url: string): Promise<Response | null>;
|
|
1827
|
+
store(url: string, response: Response): Promise<void>;
|
|
1828
|
+
replace(url: string, response: Response): Promise<void>;
|
|
1829
|
+
protected open(): Promise<Cache>;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
export declare const Checkbox: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
1833
|
+
|
|
1834
|
+
export declare function classes(...inputs: ClassValue[]): string;
|
|
1835
|
+
|
|
1836
|
+
export declare type ComponentPropDefinitions<T> = {
|
|
1837
|
+
[K in keyof T]: {
|
|
1838
|
+
type?: PropType<T[K]>;
|
|
1839
|
+
default: T[K] | (() => T[K]) | null;
|
|
1840
|
+
};
|
|
705
1841
|
};
|
|
706
1842
|
|
|
707
|
-
export declare
|
|
1843
|
+
export declare function computedAsync<T>(getter: () => Promise<T>): Ref<T | undefined>;
|
|
1844
|
+
|
|
1845
|
+
export declare function computedDebounce<T>(options: ComputedDebounceOptions<T>, getter: ComputedGetter<T>): ComputedRef<T>;
|
|
708
1846
|
|
|
709
|
-
export declare function
|
|
1847
|
+
export declare function computedDebounce<T>(getter: ComputedGetter<T>): ComputedRef<T | null>;
|
|
1848
|
+
|
|
1849
|
+
export declare interface ComputedDebounceOptions<T> {
|
|
1850
|
+
initial?: T;
|
|
1851
|
+
delay?: number;
|
|
1852
|
+
}
|
|
710
1853
|
|
|
711
1854
|
export declare type ComputedStateDefinition<TState extends ServiceState, TComputedState extends ServiceState> = {
|
|
712
|
-
[K in keyof TComputedState]: (state: TState) => TComputedState[K];
|
|
1855
|
+
[K in keyof TComputedState]: (state: Unref<TState>) => TComputedState[K];
|
|
713
1856
|
} & ThisType<{
|
|
714
1857
|
readonly [K in keyof TComputedState]: TComputedState[K];
|
|
715
1858
|
}>;
|
|
716
1859
|
|
|
717
|
-
declare
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
1860
|
+
export declare function computedVariantClasses<T>(value: RefsObject<{
|
|
1861
|
+
baseClasses?: string;
|
|
1862
|
+
} & CVAProps<T>>, config: {
|
|
1863
|
+
baseClasses?: string;
|
|
1864
|
+
} & CVAConfig<T>): ComputedRef<string>;
|
|
1865
|
+
|
|
1866
|
+
export declare const ConfirmModal: DefineComponent<ConfirmModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ConfirmModalProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1867
|
+
|
|
1868
|
+
export declare type ConfirmModalCheckboxes = Record<string, {
|
|
1869
|
+
label: string;
|
|
1870
|
+
default?: boolean;
|
|
1871
|
+
required?: boolean;
|
|
1872
|
+
}>;
|
|
1873
|
+
|
|
1874
|
+
export declare interface ConfirmModalProps {
|
|
1875
|
+
title?: string;
|
|
1876
|
+
message: string;
|
|
1877
|
+
acceptText?: string;
|
|
1878
|
+
acceptVariant?: ButtonVariant;
|
|
1879
|
+
cancelText?: string;
|
|
1880
|
+
cancelVariant?: ButtonVariant;
|
|
1881
|
+
checkboxes?: ConfirmModalCheckboxes;
|
|
1882
|
+
actions?: Record<string, () => unknown>;
|
|
1883
|
+
required?: boolean;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
export declare type ConfirmOptions = AcceptRefs<{
|
|
1887
|
+
acceptText?: string;
|
|
1888
|
+
acceptVariant?: ButtonVariant;
|
|
1889
|
+
cancelText?: string;
|
|
1890
|
+
cancelVariant?: ButtonVariant;
|
|
1891
|
+
actions?: Record<string, () => unknown>;
|
|
1892
|
+
required?: boolean;
|
|
1893
|
+
}>;
|
|
1894
|
+
|
|
1895
|
+
export declare interface ConfirmOptionsWithCheckboxes<T extends ConfirmModalCheckboxes = ConfirmModalCheckboxes> extends ConfirmOptions {
|
|
1896
|
+
checkboxes?: T;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
export declare type CVAConfig<T> = NonNullable<GetClosureArgs<typeof cva<T>>[1]>;
|
|
1900
|
+
|
|
1901
|
+
export declare type CVAProps<T> = NonNullable<GetClosureArgs<GetClosureResult<typeof cva<T>>>[0]>;
|
|
1902
|
+
|
|
1903
|
+
export declare function dateInput(defaultValue?: Date, options?: {
|
|
1904
|
+
rules?: string;
|
|
1905
|
+
}): FormFieldDefinition<typeof FormFieldTypes.Date>;
|
|
1906
|
+
|
|
1907
|
+
declare const _default: ServiceWithState< {
|
|
725
1908
|
logs: ErrorReportLog[];
|
|
726
1909
|
startupErrors: ErrorReport[];
|
|
727
1910
|
}, {
|
|
@@ -731,64 +1914,121 @@ hasStartupErrors: boolean;
|
|
|
731
1914
|
}, Partial<{
|
|
732
1915
|
logs: ErrorReportLog[];
|
|
733
1916
|
startupErrors: ErrorReport[];
|
|
734
|
-
}
|
|
1917
|
+
}>>;
|
|
735
1918
|
|
|
736
|
-
declare const _default_2:
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
1919
|
+
declare const _default_2: ServiceWithState< {
|
|
1920
|
+
locale: string | null;
|
|
1921
|
+
locales: string[];
|
|
1922
|
+
fallbackLocale: string;
|
|
1923
|
+
}, {}, Partial<{
|
|
1924
|
+
locale: string | null;
|
|
1925
|
+
locales: string[];
|
|
1926
|
+
fallbackLocale: string;
|
|
1927
|
+
}>>;
|
|
1928
|
+
|
|
1929
|
+
declare const _default_3: ServiceWithState< {
|
|
1930
|
+
plugins: Record<string, Plugin_2>;
|
|
1931
|
+
instance: App_2 | null;
|
|
1932
|
+
environment: string;
|
|
1933
|
+
version: string;
|
|
745
1934
|
sourceUrl: string | undefined;
|
|
746
|
-
|
|
1935
|
+
settings: AppSetting[];
|
|
747
1936
|
}, {
|
|
748
1937
|
development: boolean;
|
|
1938
|
+
staging: boolean;
|
|
749
1939
|
testing: boolean;
|
|
1940
|
+
versionName: string;
|
|
1941
|
+
versionUrl: string;
|
|
750
1942
|
}, Partial<{
|
|
751
|
-
|
|
1943
|
+
plugins: Record<string, Plugin_2>;
|
|
1944
|
+
instance: App_2 | null;
|
|
1945
|
+
environment: string;
|
|
1946
|
+
version: string;
|
|
752
1947
|
sourceUrl: string | undefined;
|
|
753
|
-
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
declare const
|
|
757
|
-
modals:
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
1948
|
+
settings: AppSetting[];
|
|
1949
|
+
}>>;
|
|
1950
|
+
|
|
1951
|
+
declare const _default_4: ServiceWithState< {
|
|
1952
|
+
modals: UIModal[];
|
|
1953
|
+
toasts: UIToast[];
|
|
1954
|
+
layout: Layout;
|
|
1955
|
+
}, {
|
|
1956
|
+
mobile: boolean;
|
|
1957
|
+
desktop: boolean;
|
|
1958
|
+
}, Partial<{
|
|
1959
|
+
modals: UIModal[];
|
|
1960
|
+
toasts: UIToast[];
|
|
1961
|
+
layout: Layout;
|
|
1962
|
+
}>>;
|
|
766
1963
|
|
|
767
1964
|
export declare type DefaultServices = typeof defaultServices;
|
|
768
1965
|
|
|
769
1966
|
declare const defaultServices: {
|
|
770
|
-
$app: Facade<AppService
|
|
771
|
-
$events: Facade<EventsService
|
|
1967
|
+
$app: Facade<AppService>;
|
|
1968
|
+
$events: Facade<EventsService>;
|
|
1969
|
+
$storage: Facade<StorageService>;
|
|
772
1970
|
};
|
|
773
1971
|
|
|
774
1972
|
export declare type DefaultServiceState = any;
|
|
775
1973
|
|
|
776
1974
|
export declare function defineDirective(directive: Directive): Directive;
|
|
777
1975
|
|
|
1976
|
+
export declare function defineFormValidationRule<T>(rule: string, validator: FormFieldValidator<T>): void;
|
|
1977
|
+
|
|
778
1978
|
export declare function definePlugin<T extends Plugin_2>(plugin: T): T;
|
|
779
1979
|
|
|
780
|
-
export declare function defineServiceState<State extends ServiceState = ServiceState, ComputedState extends ServiceState = {}
|
|
1980
|
+
export declare function defineServiceState<State extends ServiceState = ServiceState, ComputedState extends ServiceState = {}, ServiceStorage = Partial<State>>(options: {
|
|
781
1981
|
name: string;
|
|
782
|
-
initialState: State;
|
|
1982
|
+
initialState: State | (() => State);
|
|
783
1983
|
persist?: (keyof State)[];
|
|
1984
|
+
watch?: StateWatchers<Service, State>;
|
|
784
1985
|
computed?: ComputedStateDefinition<State, ComputedState>;
|
|
785
|
-
serialize?: (state: Partial<State>) =>
|
|
786
|
-
|
|
1986
|
+
serialize?: (state: Partial<State>) => ServiceStorage;
|
|
1987
|
+
restore?: (state: ServiceStorage) => Partial<State>;
|
|
1988
|
+
}): ServiceWithState<State, ComputedState, ServiceStorage>;
|
|
787
1989
|
|
|
788
|
-
export declare function
|
|
1990
|
+
export declare function defineServiceStore<Id extends string, S extends StateTree = {}, G extends _GettersTree<S> = {}, A = {}>(name: Id, options: Omit<DefineStoreOptions<Id, S, G, A>, 'id'>): Store<Id, S, G, A>;
|
|
1991
|
+
|
|
1992
|
+
export declare function defineSettings<T extends AppSetting[]>(settings: T): T;
|
|
1993
|
+
|
|
1994
|
+
export declare function dispatch(job: Job): Promise<void>;
|
|
1995
|
+
|
|
1996
|
+
export declare const DropdownMenu: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
|
|
1997
|
+
|
|
1998
|
+
export declare interface DropdownMenuExpose {
|
|
1999
|
+
align?: DropdownMenuContentProps['align'];
|
|
2000
|
+
side?: DropdownMenuContentProps['side'];
|
|
2001
|
+
options?: DropdownMenuOptionData[];
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
export declare const DropdownMenuOption: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
|
|
2005
|
+
|
|
2006
|
+
export declare type DropdownMenuOptionData = {
|
|
2007
|
+
label: string;
|
|
2008
|
+
click: () => unknown;
|
|
2009
|
+
};
|
|
2010
|
+
|
|
2011
|
+
export declare const DropdownMenuOptions: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
|
|
2012
|
+
|
|
2013
|
+
export declare interface DropdownMenuProps {
|
|
2014
|
+
align?: DropdownMenuContentProps['align'];
|
|
2015
|
+
side?: DropdownMenuContentProps['side'];
|
|
2016
|
+
options?: Falsifiable<DropdownMenuOptionData>[];
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
export declare const EditableContent: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
|
|
2020
|
+
|
|
2021
|
+
export declare interface ElementSize {
|
|
2022
|
+
width: number;
|
|
2023
|
+
height: number;
|
|
2024
|
+
}
|
|
789
2025
|
|
|
790
2026
|
export declare type ErrorHandler = (error: ErrorSource) => boolean;
|
|
791
2027
|
|
|
2028
|
+
declare type ErrorHandler_2 = (error: ErrorSource) => string | undefined;
|
|
2029
|
+
|
|
2030
|
+
export declare const ErrorMessage: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2031
|
+
|
|
792
2032
|
export declare interface ErrorReport {
|
|
793
2033
|
title: string;
|
|
794
2034
|
description?: string;
|
|
@@ -802,16 +2042,25 @@ export declare interface ErrorReportLog {
|
|
|
802
2042
|
date: Date;
|
|
803
2043
|
}
|
|
804
2044
|
|
|
805
|
-
export declare const
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
2045
|
+
export declare const ErrorReportModal: DefineComponent<ErrorReportModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ErrorReportModalProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2046
|
+
|
|
2047
|
+
export declare const ErrorReportModalButtons: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
|
|
2048
|
+
|
|
2049
|
+
declare interface ErrorReportModalButtonsDefaultSlotProps {
|
|
2050
|
+
id: string;
|
|
2051
|
+
description: string;
|
|
2052
|
+
iconComponent: Component;
|
|
2053
|
+
url?: string;
|
|
2054
|
+
click?(): void;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
export declare interface ErrorReportModalProps {
|
|
2058
|
+
reports: ErrorReport[];
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
export declare const ErrorReportModalTitle: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
813
2062
|
|
|
814
|
-
export declare const Errors: Facade<ErrorsService
|
|
2063
|
+
export declare const Errors: Facade<ErrorsService>;
|
|
815
2064
|
|
|
816
2065
|
export declare type ErrorSource = string | Error | JSError | unknown;
|
|
817
2066
|
|
|
@@ -824,7 +2073,6 @@ declare class ErrorsService extends _default {
|
|
|
824
2073
|
report(error: ErrorSource, message?: string): Promise<void>;
|
|
825
2074
|
see(report: ErrorReport): void;
|
|
826
2075
|
seeAll(): void;
|
|
827
|
-
getErrorMessage(error: ErrorSource): string;
|
|
828
2076
|
private logError;
|
|
829
2077
|
private createErrorReport;
|
|
830
2078
|
private createStartupErrorReport;
|
|
@@ -836,23 +2084,47 @@ export declare type ErrorsServices = typeof services;
|
|
|
836
2084
|
declare type EventListener_2<T = unknown> = (payload: T) => unknown;
|
|
837
2085
|
export { EventListener_2 as EventListener }
|
|
838
2086
|
|
|
839
|
-
|
|
2087
|
+
declare interface EventListenerOptions_2 {
|
|
2088
|
+
priority: EventListenerPriority;
|
|
2089
|
+
}
|
|
2090
|
+
export { EventListenerOptions_2 as EventListenerOptions }
|
|
2091
|
+
|
|
2092
|
+
export declare const EventListenerPriorities: {
|
|
2093
|
+
readonly Low: -256;
|
|
2094
|
+
readonly Default: 0;
|
|
2095
|
+
readonly High: 256;
|
|
2096
|
+
};
|
|
2097
|
+
|
|
2098
|
+
export declare type EventListenerPriority = (typeof EventListenerPriorities)[keyof typeof EventListenerPriorities];
|
|
2099
|
+
|
|
2100
|
+
export declare const Events: Facade<EventsService>;
|
|
840
2101
|
|
|
841
2102
|
export declare interface EventsPayload {
|
|
842
2103
|
}
|
|
843
2104
|
|
|
844
2105
|
export declare class EventsService extends Service {
|
|
845
2106
|
private listeners;
|
|
2107
|
+
protected boot(): Promise<void>;
|
|
846
2108
|
emit<Event extends EventWithoutPayload>(event: Event): Promise<void>;
|
|
847
2109
|
emit<Event extends EventWithPayload>(event: Event, payload: EventsPayload[Event]): Promise<void>;
|
|
848
2110
|
emit<Event extends string>(event: UnknownEvent<Event>, payload?: unknown): Promise<void>;
|
|
849
2111
|
on<Event extends EventWithoutPayload>(event: Event, listener: () => unknown): () => void;
|
|
2112
|
+
on<Event extends EventWithoutPayload>(event: Event, priority: EventListenerPriority, listener: () => unknown): () => void;
|
|
2113
|
+
on<Event extends EventWithoutPayload>(event: Event, options: Partial<EventListenerOptions_2>, listener: () => unknown): () => void;
|
|
850
2114
|
on<Event extends EventWithPayload>(event: Event, listener: EventListener_2<EventsPayload[Event]>): () => void | void;
|
|
2115
|
+
on<Event extends EventWithPayload>(event: Event, priority: EventListenerPriority, listener: EventListener_2<EventsPayload[Event]>): () => void | void;
|
|
2116
|
+
on<Event extends EventWithPayload>(event: Event, options: Partial<EventListenerOptions_2>, listener: EventListener_2<EventsPayload[Event]>): () => void | void;
|
|
851
2117
|
on<Event extends string>(event: UnknownEvent<Event>, listener: EventListener_2): () => void;
|
|
2118
|
+
on<Event extends string>(event: UnknownEvent<Event>, priority: EventListenerPriority, listener: EventListener_2): () => void;
|
|
2119
|
+
on<Event extends string>(event: UnknownEvent<Event>, options: Partial<EventListenerOptions_2>, listener: EventListener_2): () => void;
|
|
852
2120
|
once<Event extends EventWithoutPayload>(event: Event, listener: () => unknown): () => void;
|
|
2121
|
+
once<Event extends EventWithoutPayload>(event: Event, options: Partial<EventListenerOptions_2>, listener: () => unknown): () => void;
|
|
853
2122
|
once<Event extends EventWithPayload>(event: Event, listener: EventListener_2<EventsPayload[Event]>): () => void | void;
|
|
2123
|
+
once<Event extends EventWithPayload>(event: Event, options: Partial<EventListenerOptions_2>, listener: EventListener_2<EventsPayload[Event]>): () => void | void;
|
|
854
2124
|
once<Event extends string>(event: UnknownEvent<Event>, listener: EventListener_2): () => void;
|
|
2125
|
+
once<Event extends string>(event: UnknownEvent<Event>, options: Partial<EventListenerOptions_2>, listener: EventListener_2): () => void;
|
|
855
2126
|
off(event: string, listener: EventListener_2): void;
|
|
2127
|
+
protected registerListener(event: string, options: Partial<EventListenerOptions_2>, handler: EventListener_2): void;
|
|
856
2128
|
}
|
|
857
2129
|
|
|
858
2130
|
export declare type EventWithoutPayload = {
|
|
@@ -863,21 +2135,37 @@ export declare type EventWithPayload = {
|
|
|
863
2135
|
[K in keyof EventsPayload]: EventsPayload[K] extends void ? never : K;
|
|
864
2136
|
}[keyof EventsPayload];
|
|
865
2137
|
|
|
866
|
-
declare
|
|
2138
|
+
export declare type Falsifiable<T> = Nullable<T> | false;
|
|
2139
|
+
|
|
2140
|
+
export declare type FocusFormListener = (input: string) => unknown;
|
|
2141
|
+
|
|
2142
|
+
export declare const Form: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
|
|
2143
|
+
|
|
2144
|
+
export declare class FormController<Fields extends FormFieldDefinitions = FormFieldDefinitions> extends MagicObject {
|
|
867
2145
|
errors: DeepReadonly<UnwrapNestedRefs<FormErrors<Fields>>>;
|
|
868
2146
|
private _fields;
|
|
869
2147
|
private _data;
|
|
870
|
-
private _valid;
|
|
871
2148
|
private _submitted;
|
|
872
2149
|
private _errors;
|
|
2150
|
+
private _listeners;
|
|
873
2151
|
constructor(fields: Fields);
|
|
874
2152
|
get valid(): boolean;
|
|
875
2153
|
get submitted(): boolean;
|
|
876
2154
|
setFieldValue<T extends keyof Fields>(field: T, value: FormData_2<Fields>[T]): void;
|
|
877
2155
|
getFieldValue<T extends keyof Fields>(field: T): GetFormFieldValue<Fields[T]['type']>;
|
|
2156
|
+
getFieldRules<T extends keyof Fields>(field: T): string[];
|
|
2157
|
+
data(): FormData_2<Fields>;
|
|
878
2158
|
validate(): boolean;
|
|
879
|
-
reset(
|
|
2159
|
+
reset(options?: {
|
|
2160
|
+
keepData?: boolean;
|
|
2161
|
+
keepErrors?: boolean;
|
|
2162
|
+
}): void;
|
|
880
2163
|
submit(): boolean;
|
|
2164
|
+
on(event: 'focus', listener: FocusFormListener): () => void;
|
|
2165
|
+
on(event: 'submit', listener: SubmitFormListener): () => void;
|
|
2166
|
+
off(event: 'focus', listener: FocusFormListener): void;
|
|
2167
|
+
off(event: 'submit', listener: SubmitFormListener): void;
|
|
2168
|
+
focus(input: string): Promise<void>;
|
|
881
2169
|
protected __get(property: string): unknown;
|
|
882
2170
|
protected __set(property: string, value: unknown): void;
|
|
883
2171
|
private getFieldErrors;
|
|
@@ -898,6 +2186,7 @@ export declare type FormErrors<T> = {
|
|
|
898
2186
|
|
|
899
2187
|
export declare interface FormFieldDefinition<TType extends FormFieldType = FormFieldType, TRules extends string = string> {
|
|
900
2188
|
type: TType;
|
|
2189
|
+
trim?: boolean;
|
|
901
2190
|
default?: GetFormFieldValue<TType>;
|
|
902
2191
|
rules?: TRules;
|
|
903
2192
|
}
|
|
@@ -910,150 +2199,466 @@ export declare const FormFieldTypes: {
|
|
|
910
2199
|
readonly String: "string";
|
|
911
2200
|
readonly Number: "number";
|
|
912
2201
|
readonly Boolean: "boolean";
|
|
2202
|
+
readonly Object: "object";
|
|
2203
|
+
readonly Date: "date";
|
|
913
2204
|
};
|
|
914
2205
|
|
|
915
|
-
export declare type
|
|
2206
|
+
export declare type FormFieldValidator<T = unknown> = (value: T) => string | string[] | undefined;
|
|
916
2207
|
|
|
917
|
-
export declare
|
|
918
|
-
id: string;
|
|
919
|
-
description: string;
|
|
920
|
-
iconComponent: Component;
|
|
921
|
-
url?: string;
|
|
922
|
-
handler?(): void;
|
|
923
|
-
}
|
|
2208
|
+
export declare type FormFieldValue = GetFormFieldValue<FormFieldType>;
|
|
924
2209
|
|
|
925
|
-
export declare
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
2210
|
+
export declare function getCurrentLayout(): Layout;
|
|
2211
|
+
|
|
2212
|
+
export declare function getErrorMessage(error: ErrorSource): string;
|
|
2213
|
+
|
|
2214
|
+
export declare type GetFormFieldValue<TType> = TType extends typeof FormFieldTypes.String ? string : TType extends typeof FormFieldTypes.Number ? number : TType extends typeof FormFieldTypes.Boolean ? boolean : TType extends typeof FormFieldTypes.Object ? object : TType extends typeof FormFieldTypes.Date ? Date : never;
|
|
2215
|
+
|
|
2216
|
+
export declare function getPiniaStore(): Pinia;
|
|
2217
|
+
|
|
2218
|
+
export declare interface HasSelectOptionLabel {
|
|
2219
|
+
label: string | (() => string);
|
|
930
2220
|
}
|
|
931
2221
|
|
|
932
|
-
export declare
|
|
2222
|
+
export declare function hasSelectOptionLabel(option: unknown): option is HasSelectOptionLabel;
|
|
2223
|
+
|
|
2224
|
+
export declare const HeadlessButton: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
2225
|
+
|
|
2226
|
+
export declare const HeadlessInput: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
2227
|
+
|
|
2228
|
+
export declare const HeadlessInputDescription: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
2229
|
+
|
|
2230
|
+
export declare const HeadlessInputError: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2231
|
+
|
|
2232
|
+
export declare const HeadlessInputInput: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
2233
|
+
$inputRef: HTMLInputElement;
|
|
2234
|
+
}, HTMLInputElement>;
|
|
2235
|
+
|
|
2236
|
+
export declare const HeadlessInputLabel: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
2237
|
+
|
|
2238
|
+
export declare const HeadlessInputTextArea: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
2239
|
+
$textAreaRef: HTMLTextAreaElement;
|
|
2240
|
+
}, HTMLTextAreaElement>;
|
|
2241
|
+
|
|
2242
|
+
export declare const HeadlessModal: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
2243
|
+
|
|
2244
|
+
export declare const HeadlessModalContent: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
2245
|
+
|
|
2246
|
+
export declare const HeadlessModalDescription: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
2247
|
+
|
|
2248
|
+
export declare const HeadlessModalOverlay: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
2249
|
+
|
|
2250
|
+
export declare const HeadlessModalTitle: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
2251
|
+
|
|
2252
|
+
export declare const HeadlessSelect: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
2253
|
+
|
|
2254
|
+
export declare const HeadlessSelectLabel: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
2255
|
+
|
|
2256
|
+
export declare const HeadlessSelectOption: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
2257
|
+
|
|
2258
|
+
export declare const HeadlessSelectOptions: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
2259
|
+
|
|
2260
|
+
export declare const HeadlessSelectTrigger: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
2261
|
+
|
|
2262
|
+
export declare const HeadlessSelectValue: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
2263
|
+
|
|
2264
|
+
export declare const HeadlessToast: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
2265
|
+
|
|
2266
|
+
export declare function injectOrFail<T>(key: InjectionKey<T> | string, errorMessage?: string): T;
|
|
2267
|
+
|
|
2268
|
+
export declare function injectReactive<T extends object>(key: InjectionKey<T> | string): UnwrapNestedRefs<T> | undefined;
|
|
2269
|
+
|
|
2270
|
+
export declare function injectReactiveOrFail<T extends object>(key: InjectionKey<T> | string, errorMessage?: string): UnwrapNestedRefs<T>;
|
|
2271
|
+
|
|
2272
|
+
export declare const Input: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2273
|
+
"update:modelValue": (value: Nullable<FormFieldValue>) => any;
|
|
2274
|
+
}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
|
|
2275
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
2276
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
2277
|
+
$inputRef: ({
|
|
2278
|
+
$: ComponentInternalInstance;
|
|
2279
|
+
$data: {};
|
|
2280
|
+
$props: {
|
|
2281
|
+
readonly name?: string | undefined;
|
|
2282
|
+
readonly label?: string | undefined;
|
|
2283
|
+
readonly description?: string | undefined;
|
|
2284
|
+
readonly modelValue?: Nullable<FormFieldValue>;
|
|
2285
|
+
readonly as?: string | undefined;
|
|
2286
|
+
readonly "onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
2287
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
2288
|
+
$attrs: {
|
|
2289
|
+
[x: string]: unknown;
|
|
2290
|
+
};
|
|
2291
|
+
$refs: {
|
|
2292
|
+
[x: string]: unknown;
|
|
2293
|
+
};
|
|
2294
|
+
$slots: Readonly<{
|
|
2295
|
+
[name: string]: Slot<any> | undefined;
|
|
2296
|
+
}>;
|
|
2297
|
+
$root: ComponentPublicInstance | null;
|
|
2298
|
+
$parent: ComponentPublicInstance | null;
|
|
2299
|
+
$host: Element | null;
|
|
2300
|
+
$emit: (event: "update:modelValue", value: Nullable<FormFieldValue>) => void;
|
|
2301
|
+
$el: any;
|
|
2302
|
+
$options: ComponentOptionsBase<Readonly<InputProps & {
|
|
2303
|
+
as?: string;
|
|
2304
|
+
}> & Readonly<{
|
|
2305
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
2306
|
+
}>, {
|
|
2307
|
+
id: string;
|
|
2308
|
+
name: ComputedRef<string | undefined>;
|
|
2309
|
+
label: ComputedRef<string | undefined>;
|
|
2310
|
+
description: ComputedRef<string | undefined>;
|
|
2311
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
2312
|
+
errors: Readonly<Ref<readonly string[] | null, readonly string[] | null>>;
|
|
2313
|
+
required: ComputedRef<boolean | undefined>;
|
|
2314
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
2315
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2316
|
+
"update:modelValue": (value: Nullable<FormFieldValue>) => any;
|
|
2317
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
2318
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
2319
|
+
created?: (() => void) | (() => void)[];
|
|
2320
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
2321
|
+
mounted?: (() => void) | (() => void)[];
|
|
2322
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
2323
|
+
updated?: (() => void) | (() => void)[];
|
|
2324
|
+
activated?: (() => void) | (() => void)[];
|
|
2325
|
+
deactivated?: (() => void) | (() => void)[];
|
|
2326
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
2327
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
2328
|
+
destroyed?: (() => void) | (() => void)[];
|
|
2329
|
+
unmounted?: (() => void) | (() => void)[];
|
|
2330
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
2331
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
2332
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2333
|
+
};
|
|
2334
|
+
$forceUpdate: () => void;
|
|
2335
|
+
$nextTick: typeof nextTick;
|
|
2336
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
2337
|
+
} & Readonly<{}> & Omit<Readonly<InputProps & {
|
|
2338
|
+
as?: string;
|
|
2339
|
+
}> & Readonly<{
|
|
2340
|
+
"onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
|
|
2341
|
+
}>, "id" | "value" | "name" | "description" | "errors" | "required" | "label" | "update"> & ShallowUnwrapRef< {
|
|
2342
|
+
id: string;
|
|
2343
|
+
name: ComputedRef<string | undefined>;
|
|
2344
|
+
label: ComputedRef<string | undefined>;
|
|
2345
|
+
description: ComputedRef<string | undefined>;
|
|
2346
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
2347
|
+
errors: Readonly<Ref<readonly string[] | null, readonly string[] | null>>;
|
|
2348
|
+
required: ComputedRef<boolean | undefined>;
|
|
2349
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
2350
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
2351
|
+
$slots: {
|
|
2352
|
+
default?(_: {}): any;
|
|
2353
|
+
};
|
|
2354
|
+
}) | null;
|
|
2355
|
+
}, any>;
|
|
2356
|
+
|
|
2357
|
+
export declare interface InputEmits {
|
|
2358
|
+
'update:modelValue': [value: Nullable<FormFieldValue>];
|
|
933
2359
|
}
|
|
934
2360
|
|
|
935
|
-
export declare interface
|
|
936
|
-
|
|
937
|
-
|
|
2361
|
+
export declare interface InputExpose {
|
|
2362
|
+
id: string;
|
|
2363
|
+
name: ComputedRef<Nullable<string>>;
|
|
2364
|
+
label: ComputedRef<Nullable<string>>;
|
|
2365
|
+
description: ComputedRef<Nullable<string | boolean>>;
|
|
2366
|
+
value: ComputedRef<Nullable<FormFieldValue>>;
|
|
2367
|
+
required: ComputedRef<Nullable<boolean>>;
|
|
2368
|
+
errors: DeepReadonly<Ref<Nullable<string[]>>>;
|
|
2369
|
+
update(value: Nullable<FormFieldValue>): void;
|
|
938
2370
|
}
|
|
939
2371
|
|
|
940
|
-
export declare interface
|
|
941
|
-
|
|
942
|
-
|
|
2372
|
+
export declare interface InputProps {
|
|
2373
|
+
name?: string;
|
|
2374
|
+
label?: string;
|
|
2375
|
+
description?: string;
|
|
2376
|
+
modelValue?: Nullable<FormFieldValue>;
|
|
943
2377
|
}
|
|
944
2378
|
|
|
945
|
-
export declare
|
|
946
|
-
|
|
2379
|
+
export declare function installPlugins(plugins: Plugin_2[], ...args: GetClosureArgs<Plugin_2['install']>): Promise<void>;
|
|
2380
|
+
|
|
2381
|
+
export declare abstract class Job<Listener extends JobListener = JobListener, Status extends JobStatus = JobStatus, SerializedStatus extends JobStatus = JobStatus> {
|
|
2382
|
+
protected status: Status;
|
|
2383
|
+
protected _listeners: ListenersManager<JobListener>;
|
|
2384
|
+
protected _progress?: number;
|
|
2385
|
+
protected _cancelled?: PromisedValue<void>;
|
|
2386
|
+
protected _started: PromisedValue<void>;
|
|
2387
|
+
protected _completed: PromisedValue<void>;
|
|
2388
|
+
constructor();
|
|
2389
|
+
start(): Promise<void>;
|
|
2390
|
+
cancel(): Promise<void>;
|
|
2391
|
+
serialize(): SerializedStatus;
|
|
2392
|
+
get listeners(): Listeners<Listener>;
|
|
2393
|
+
get progress(): number;
|
|
2394
|
+
get cancelled(): boolean;
|
|
2395
|
+
get started(): Promise<void>;
|
|
2396
|
+
get completed(): Promise<void>;
|
|
2397
|
+
protected abstract run(): Promise<void>;
|
|
2398
|
+
protected getInitialStatus(): Status;
|
|
2399
|
+
protected beforeStart(): void;
|
|
2400
|
+
protected assertNotCancelled(): void;
|
|
2401
|
+
protected calculateCurrentProgress(status?: JobStatus): number;
|
|
2402
|
+
protected updateProgress(update?: (status: Status) => unknown): Promise<void>;
|
|
2403
|
+
protected serializeStatus(status: Status): SerializedStatus;
|
|
947
2404
|
}
|
|
948
2405
|
|
|
949
|
-
export declare
|
|
2406
|
+
export declare class JobCancelledError extends JSError {
|
|
2407
|
+
}
|
|
950
2408
|
|
|
951
|
-
export declare
|
|
2409
|
+
export declare interface JobListener {
|
|
2410
|
+
onUpdated?(progress: number): unknown;
|
|
2411
|
+
}
|
|
952
2412
|
|
|
953
|
-
export declare
|
|
2413
|
+
export declare interface JobStatus {
|
|
2414
|
+
completed: boolean;
|
|
2415
|
+
children?: JobStatus[];
|
|
2416
|
+
}
|
|
954
2417
|
|
|
955
|
-
export declare const Lang: Facade<LangService
|
|
2418
|
+
export declare const Lang: Facade<LangService>;
|
|
956
2419
|
|
|
957
2420
|
export declare interface LangProvider {
|
|
958
|
-
|
|
2421
|
+
getLocale(): string;
|
|
2422
|
+
setLocale(locale: string): Promise<void>;
|
|
2423
|
+
getFallbackLocale(): string;
|
|
2424
|
+
setFallbackLocale(fallbackLocale: string): Promise<void>;
|
|
2425
|
+
getLocales(): string[];
|
|
2426
|
+
translate(key: string, parameters?: Record<string, unknown> | number): string;
|
|
2427
|
+
translateWithDefault(key: string, defaultMessage: string, parameters?: Record<string, unknown> | number): string;
|
|
959
2428
|
}
|
|
960
2429
|
|
|
961
|
-
declare class LangService extends
|
|
2430
|
+
declare class LangService extends _default_2 {
|
|
962
2431
|
private provider;
|
|
963
2432
|
constructor();
|
|
964
|
-
setProvider(provider: LangProvider): void
|
|
965
|
-
translate(key: string, parameters?: Record<string, unknown>): string;
|
|
966
|
-
translateWithDefault(key: string, defaultMessage: string): string;
|
|
967
|
-
|
|
2433
|
+
setProvider(provider: LangProvider): Promise<void>;
|
|
2434
|
+
translate(key: string, parameters?: Record<string, unknown> | number): string;
|
|
2435
|
+
translateWithDefault(key: string, defaultMessage: string, parameters?: Record<string, unknown> | number): string;
|
|
2436
|
+
getBrowserLocale(): string;
|
|
2437
|
+
protected boot(): Promise<void>;
|
|
968
2438
|
}
|
|
969
2439
|
|
|
970
2440
|
export declare type LangServices = typeof services_2;
|
|
971
2441
|
|
|
972
|
-
export declare
|
|
2442
|
+
export declare type Layout = (typeof Layouts)[keyof typeof Layouts];
|
|
973
2443
|
|
|
974
|
-
declare
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
2444
|
+
export declare const Layouts: {
|
|
2445
|
+
readonly Mobile: "mobile";
|
|
2446
|
+
readonly Desktop: "desktop";
|
|
2447
|
+
};
|
|
2448
|
+
|
|
2449
|
+
export declare const Link: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
|
|
2450
|
+
|
|
2451
|
+
export declare const LoadingModal: DefineComponent<LoadingModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LoadingModalProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2452
|
+
|
|
2453
|
+
export declare interface LoadingModalProps {
|
|
2454
|
+
title?: string;
|
|
2455
|
+
message?: string;
|
|
2456
|
+
progress?: number;
|
|
2457
|
+
job?: Job;
|
|
980
2458
|
}
|
|
981
2459
|
|
|
982
|
-
declare
|
|
2460
|
+
export declare type LoadingOptions = AcceptRefs<{
|
|
2461
|
+
title?: string;
|
|
2462
|
+
message?: string;
|
|
2463
|
+
progress?: number;
|
|
2464
|
+
}>;
|
|
2465
|
+
|
|
2466
|
+
export declare const Markdown: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
|
|
2467
|
+
|
|
2468
|
+
export declare type MeasureDirectiveListener = (size: ElementSize) => unknown;
|
|
2469
|
+
|
|
2470
|
+
export declare const MOBILE_BREAKPOINT = 768;
|
|
2471
|
+
|
|
2472
|
+
export declare const Modal: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
|
|
2473
|
+
|
|
2474
|
+
declare interface ModalComponent<Properties extends object = object, Result = unknown> {
|
|
983
2475
|
}
|
|
984
2476
|
|
|
985
|
-
declare type
|
|
2477
|
+
export declare type ModalContentInstance = Nullable<InstanceType<typeof DialogContent>>;
|
|
986
2478
|
|
|
987
|
-
declare
|
|
2479
|
+
export declare const ModalContext: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2480
|
+
|
|
2481
|
+
export declare interface ModalExpose {
|
|
2482
|
+
close(result?: unknown): Promise<void>;
|
|
2483
|
+
$content: ModalContentInstance;
|
|
2484
|
+
}
|
|
988
2485
|
|
|
989
|
-
|
|
2486
|
+
declare type ModalProperties<TComponent> = TComponent extends ModalComponent<infer TProperties, unknown> ? TProperties : never;
|
|
990
2487
|
|
|
991
|
-
export declare
|
|
2488
|
+
export declare interface ModalProps {
|
|
2489
|
+
persistent?: boolean;
|
|
2490
|
+
title?: string;
|
|
2491
|
+
titleHidden?: boolean;
|
|
2492
|
+
description?: string;
|
|
2493
|
+
descriptionHidden?: boolean;
|
|
2494
|
+
}
|
|
992
2495
|
|
|
993
|
-
|
|
2496
|
+
declare type ModalResult<TComponent> = TComponent extends ModalComponent<Record<string, unknown>, infer TResult> ? TResult : never;
|
|
994
2497
|
|
|
995
|
-
export declare
|
|
2498
|
+
export declare interface ModalSlots {
|
|
2499
|
+
default(props: {
|
|
2500
|
+
close(result?: unknown): Promise<void>;
|
|
2501
|
+
}): unknown;
|
|
2502
|
+
}
|
|
996
2503
|
|
|
997
|
-
export declare function
|
|
2504
|
+
export declare function numberInput(defaultValue?: number, options?: {
|
|
2505
|
+
rules?: string;
|
|
2506
|
+
}): FormFieldDefinition<typeof FormFieldTypes.Number>;
|
|
998
2507
|
|
|
999
2508
|
export declare function onCleanMounted(operation: () => Function): void;
|
|
1000
2509
|
|
|
1001
|
-
declare
|
|
1002
|
-
|
|
2510
|
+
export declare function onFormFocus(input: {
|
|
2511
|
+
name: Nullable<string>;
|
|
2512
|
+
}, listener: () => unknown): void;
|
|
2513
|
+
|
|
2514
|
+
export declare function persistent<T extends object>(name: string, defaults: T): UnwrapNestedRefs<T>;
|
|
2515
|
+
|
|
2516
|
+
export declare type PickComponentProps<TValues, TDefinitions> = {
|
|
2517
|
+
[K in keyof TValues]: K extends keyof TDefinitions ? TValues[K] : never;
|
|
1003
2518
|
};
|
|
1004
2519
|
|
|
1005
2520
|
declare interface Plugin_2 {
|
|
2521
|
+
name?: string;
|
|
1006
2522
|
install(app: App_2, options: AerogelOptions): void | Promise<void>;
|
|
1007
2523
|
}
|
|
1008
2524
|
export { Plugin_2 as Plugin }
|
|
1009
2525
|
|
|
1010
|
-
export declare
|
|
2526
|
+
export declare const ProgressBar: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1011
2527
|
|
|
1012
|
-
export declare
|
|
2528
|
+
export declare const PromptModal: DefineComponent<PromptModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PromptModalProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2529
|
+
|
|
2530
|
+
export declare interface PromptModalProps {
|
|
2531
|
+
title?: string;
|
|
2532
|
+
message: string;
|
|
2533
|
+
label?: string;
|
|
2534
|
+
defaultValue?: string;
|
|
2535
|
+
placeholder?: string;
|
|
2536
|
+
acceptText?: string;
|
|
2537
|
+
acceptVariant?: ButtonVariant;
|
|
2538
|
+
cancelText?: string;
|
|
2539
|
+
cancelVariant?: ButtonVariant;
|
|
2540
|
+
}
|
|
1013
2541
|
|
|
1014
|
-
export declare
|
|
2542
|
+
export declare type PromptOptions = AcceptRefs<{
|
|
2543
|
+
label?: string;
|
|
2544
|
+
defaultValue?: string;
|
|
2545
|
+
placeholder?: string;
|
|
2546
|
+
acceptText?: string;
|
|
2547
|
+
acceptVariant?: ButtonVariant;
|
|
2548
|
+
cancelText?: string;
|
|
2549
|
+
cancelVariant?: ButtonVariant;
|
|
2550
|
+
trim?: boolean;
|
|
2551
|
+
}>;
|
|
2552
|
+
|
|
2553
|
+
export declare type RefsObject<T> = {
|
|
2554
|
+
[K in keyof T]: Ref<T[K]> | T[K];
|
|
2555
|
+
};
|
|
1015
2556
|
|
|
1016
|
-
export declare
|
|
2557
|
+
export declare type RefUnion<T> = T extends infer R ? Ref<R> : never;
|
|
1017
2558
|
|
|
1018
|
-
export declare function
|
|
2559
|
+
export declare function registerErrorHandler(handler: ErrorHandler_2): void;
|
|
1019
2560
|
|
|
1020
|
-
export declare function
|
|
2561
|
+
export declare function renderMarkdown(markdown: string): string;
|
|
1021
2562
|
|
|
1022
|
-
export declare function
|
|
2563
|
+
export declare function renderVNode(node: VNode | string): string;
|
|
1023
2564
|
|
|
1024
|
-
declare type
|
|
1025
|
-
|
|
2565
|
+
export declare type Replace<TOriginal extends Record<string, unknown>, TReplacements extends Partial<Record<keyof TOriginal, unknown>>> = {
|
|
2566
|
+
[K in keyof TOriginal]: TReplacements extends Record<K, infer Replacement> ? Replacement : TOriginal[K];
|
|
1026
2567
|
};
|
|
1027
2568
|
|
|
2569
|
+
export declare function replaceExisting<TOriginal extends Record<string, unknown>, TReplacements extends Partial<Record<keyof TOriginal, unknown>>>(original: TOriginal, replacements: TReplacements): Replace<TOriginal, TReplacements>;
|
|
2570
|
+
|
|
2571
|
+
export declare function requiredBooleanInput(defaultValue?: boolean): FormFieldDefinition<typeof FormFieldTypes.Boolean, 'required'>;
|
|
2572
|
+
|
|
2573
|
+
export declare function requiredDateInput(defaultValue?: Date): FormFieldDefinition<typeof FormFieldTypes.Date>;
|
|
2574
|
+
|
|
2575
|
+
export declare function requiredNumberInput(defaultValue?: number): FormFieldDefinition<typeof FormFieldTypes.Number, 'required'>;
|
|
2576
|
+
|
|
1028
2577
|
export declare function requiredStringInput(defaultValue?: string): FormFieldDefinition<typeof FormFieldTypes.String, 'required'>;
|
|
1029
2578
|
|
|
1030
|
-
export declare function
|
|
2579
|
+
export declare function resetPiniaStore(): Pinia;
|
|
2580
|
+
|
|
2581
|
+
export declare function safeHtml(html: string): string;
|
|
2582
|
+
|
|
2583
|
+
export declare const Select: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
|
|
1031
2584
|
|
|
1032
|
-
export declare
|
|
2585
|
+
export declare interface SelectEmits extends InputEmits {
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2588
|
+
export declare interface SelectExpose extends InputExpose {
|
|
2589
|
+
options: ComputedRef<Nullable<SelectOptionData[]>>;
|
|
2590
|
+
selectedOption: ComputedRef<Nullable<SelectOptionData>>;
|
|
2591
|
+
placeholder: ComputedRef<string>;
|
|
2592
|
+
labelClass?: HTMLAttributes['class'];
|
|
2593
|
+
optionsClass?: HTMLAttributes['class'];
|
|
2594
|
+
align?: SelectContentProps['align'];
|
|
2595
|
+
side?: SelectContentProps['side'];
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
export declare const SelectLabel: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
|
|
2599
|
+
|
|
2600
|
+
export declare const SelectOption: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
|
|
2601
|
+
|
|
2602
|
+
export declare type SelectOptionData = {
|
|
2603
|
+
key: string;
|
|
2604
|
+
label: string;
|
|
2605
|
+
value: AcceptableValue;
|
|
2606
|
+
};
|
|
2607
|
+
|
|
2608
|
+
export declare const SelectOptions: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
|
|
2609
|
+
|
|
2610
|
+
export declare interface SelectProps extends InputProps {
|
|
2611
|
+
as?: AsTag | Component;
|
|
2612
|
+
options?: any[];
|
|
2613
|
+
placeholder?: string;
|
|
2614
|
+
renderOption?: (option: any) => string;
|
|
2615
|
+
labelClass?: HTMLAttributes['class'];
|
|
2616
|
+
optionsClass?: HTMLAttributes['class'];
|
|
2617
|
+
align?: SelectContentProps['align'];
|
|
2618
|
+
side?: SelectContentProps['side'];
|
|
2619
|
+
}
|
|
2620
|
+
|
|
2621
|
+
export declare const SelectTrigger: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2622
|
+
|
|
2623
|
+
export declare class Service<State extends ServiceState = DefaultServiceState, ComputedState extends ServiceState = {}, ServiceStorage = Partial<State>> extends MagicObject {
|
|
1033
2624
|
static persist: string[];
|
|
1034
2625
|
protected _name: string;
|
|
1035
2626
|
private _booted;
|
|
1036
2627
|
private _computedStateKeys;
|
|
1037
|
-
private
|
|
2628
|
+
private _watchers;
|
|
2629
|
+
private _store;
|
|
1038
2630
|
constructor();
|
|
1039
2631
|
get booted(): PromisedValue<void>;
|
|
2632
|
+
static<T extends typeof Service>(): T;
|
|
2633
|
+
static<T extends typeof Service, K extends keyof T>(property: K): T[K];
|
|
1040
2634
|
launch(): Promise<void>;
|
|
2635
|
+
hasPersistedState(): boolean;
|
|
1041
2636
|
hasState<P extends keyof State>(property: P): boolean;
|
|
1042
2637
|
getState(): State;
|
|
1043
2638
|
getState<P extends keyof State>(property: P): State[P];
|
|
1044
2639
|
setState<P extends keyof State>(property: P, value: State[P]): void;
|
|
1045
2640
|
setState(state: Partial<State>): void;
|
|
2641
|
+
updatePersistedState<T extends keyof State>(key: T): void;
|
|
2642
|
+
updatePersistedState<T extends keyof State>(keys: T[]): void;
|
|
1046
2643
|
protected __get(property: string): unknown;
|
|
1047
2644
|
protected __set(property: string, value: unknown): void;
|
|
1048
|
-
protected onStateUpdated(
|
|
2645
|
+
protected onStateUpdated(update: Partial<State>, old: Partial<State>): void;
|
|
2646
|
+
protected onPersistentStateUpdated(persisted: Partial<State>): void;
|
|
1049
2647
|
protected usesStore(): boolean;
|
|
1050
2648
|
protected getName(): string | null;
|
|
1051
2649
|
protected getInitialState(): State;
|
|
1052
2650
|
protected getComputedStateDefinition(): ComputedStateDefinition<State, ComputedState>;
|
|
1053
|
-
protected
|
|
2651
|
+
protected getStateWatchers(): StateWatchers<Service, State>;
|
|
2652
|
+
protected serializePersistedState(state: Partial<State>): ServiceStorage;
|
|
2653
|
+
protected deserializePersistedState(state: ServiceStorage): Partial<State>;
|
|
1054
2654
|
protected frameworkBoot(): Promise<void>;
|
|
1055
2655
|
protected boot(): Promise<void>;
|
|
1056
2656
|
protected restorePersistedState(): void;
|
|
2657
|
+
protected requireStore(): Store<string, State, ComputedState, {}>;
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
export declare class ServiceBootError extends JSError {
|
|
2661
|
+
constructor(serviceNamespace: string, cause: unknown);
|
|
1057
2662
|
}
|
|
1058
2663
|
|
|
1059
2664
|
export declare type ServiceConstructor<T extends Service = Service> = Constructor<T> & typeof Service;
|
|
@@ -1062,87 +2667,69 @@ export declare interface Services extends DefaultServices {
|
|
|
1062
2667
|
}
|
|
1063
2668
|
|
|
1064
2669
|
declare const services: {
|
|
1065
|
-
$errors: Facade<ErrorsService
|
|
2670
|
+
$errors: Facade<ErrorsService>;
|
|
1066
2671
|
};
|
|
1067
2672
|
|
|
1068
2673
|
declare const services_2: {
|
|
1069
|
-
$lang: Facade<LangService
|
|
2674
|
+
$lang: Facade<LangService>;
|
|
1070
2675
|
};
|
|
1071
2676
|
|
|
1072
2677
|
declare const services_3: {
|
|
1073
|
-
$ui: Facade<UIService
|
|
2678
|
+
$ui: Facade<UIService>;
|
|
1074
2679
|
};
|
|
1075
2680
|
|
|
1076
2681
|
export declare type ServiceState = Record<string, any>;
|
|
1077
2682
|
|
|
1078
|
-
declare
|
|
1079
|
-
component?: Component;
|
|
1080
|
-
color?: SnackbarColor;
|
|
1081
|
-
actions?: SnackbarAction[];
|
|
1082
|
-
}
|
|
2683
|
+
export declare type ServiceWithState<State extends ServiceState = ServiceState, ComputedState extends ServiceState = {}, ServiceStorage = Partial<State>> = Constructor<Unref<State>> & Constructor<ComputedState> & Constructor<Service<Unref<State>, ComputedState, Unref<ServiceStorage>>>;
|
|
1083
2684
|
|
|
1084
|
-
declare
|
|
1085
|
-
id: string;
|
|
1086
|
-
component: Component;
|
|
1087
|
-
properties: Record<string, unknown>;
|
|
1088
|
-
}
|
|
2685
|
+
export declare const SettingsModal: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1089
2686
|
|
|
1090
|
-
export declare
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
2687
|
+
export declare const StartupCrash: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2688
|
+
|
|
2689
|
+
export declare type StateWatchers<TService extends Service, TState extends ServiceState> = {
|
|
2690
|
+
[K in keyof TState]?: (this: TService, value: TState[K], oldValue: TState[K]) => unknown;
|
|
2691
|
+
};
|
|
2692
|
+
|
|
2693
|
+
declare const Storage_2: Facade<StorageService>;
|
|
2694
|
+
export { Storage_2 as Storage }
|
|
2695
|
+
|
|
2696
|
+
declare class StorageService extends Service {
|
|
2697
|
+
purge(): Promise<void>;
|
|
1094
2698
|
}
|
|
1095
2699
|
|
|
1096
|
-
export declare
|
|
2700
|
+
export declare function stringInput(defaultValue?: string, options?: {
|
|
2701
|
+
rules?: string;
|
|
2702
|
+
}): FormFieldDefinition<typeof FormFieldTypes.String>;
|
|
1097
2703
|
|
|
1098
|
-
export declare
|
|
1099
|
-
readonly Primary: "primary";
|
|
1100
|
-
readonly Secondary: "secondary";
|
|
1101
|
-
readonly Danger: "danger";
|
|
1102
|
-
readonly Clear: "clear";
|
|
1103
|
-
}, "Primary" | "Clear">;
|
|
2704
|
+
export declare type SubmitFormListener = () => unknown;
|
|
1104
2705
|
|
|
1105
|
-
export declare const
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
message: {
|
|
1113
|
-
type: PropType<string>;
|
|
1114
|
-
validator?(value: unknown): boolean;
|
|
1115
|
-
} & {
|
|
1116
|
-
required: true;
|
|
1117
|
-
};
|
|
1118
|
-
actions: {
|
|
1119
|
-
type: PropType<SnackbarAction[]>;
|
|
1120
|
-
validator?(value: unknown): boolean;
|
|
1121
|
-
} & {
|
|
1122
|
-
default: SnackbarAction[] | (() => SnackbarAction[]) | null;
|
|
1123
|
-
};
|
|
1124
|
-
color: {
|
|
1125
|
-
type: PropType<"secondary" | "danger">;
|
|
1126
|
-
validator?(value: unknown): boolean;
|
|
1127
|
-
} & {
|
|
1128
|
-
default: "secondary" | "danger" | (() => "secondary" | "danger") | null;
|
|
1129
|
-
};
|
|
1130
|
-
};
|
|
2706
|
+
export declare const Toast: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2707
|
+
|
|
2708
|
+
export declare interface ToastAction {
|
|
2709
|
+
label: string;
|
|
2710
|
+
dismiss?: boolean;
|
|
2711
|
+
click?(): unknown;
|
|
2712
|
+
}
|
|
1131
2713
|
|
|
1132
|
-
export declare
|
|
2714
|
+
export declare interface ToastOptions {
|
|
2715
|
+
component?: Component;
|
|
2716
|
+
variant?: ToastVariant;
|
|
2717
|
+
actions?: ToastAction[];
|
|
2718
|
+
}
|
|
1133
2719
|
|
|
1134
|
-
export declare
|
|
2720
|
+
export declare interface ToastProps {
|
|
2721
|
+
message?: string;
|
|
2722
|
+
actions?: ToastAction[];
|
|
2723
|
+
variant?: ToastVariant;
|
|
2724
|
+
}
|
|
1135
2725
|
|
|
1136
|
-
export declare
|
|
2726
|
+
export declare type ToastVariant = 'secondary' | 'danger';
|
|
1137
2727
|
|
|
1138
|
-
export declare const translate: (key: string, parameters?: Record<string, unknown> |
|
|
2728
|
+
export declare const translate: (key: string, parameters?: Record<string, unknown> | number) => string;
|
|
1139
2729
|
|
|
1140
|
-
export declare const translateWithDefault:
|
|
1141
|
-
(key: string, defaultMessage: string): string;
|
|
1142
|
-
(key: string, parameters: Record<string, unknown>, defaultMessage: string): string;
|
|
1143
|
-
};
|
|
2730
|
+
export declare const translateWithDefault: (key: string, defaultMessage: string, parameters?: Record<string, unknown> | number) => string;
|
|
1144
2731
|
|
|
1145
|
-
export declare const UI: Facade<UIService
|
|
2732
|
+
export declare const UI: Facade<UIService>;
|
|
1146
2733
|
|
|
1147
2734
|
export declare type UIComponent = ObjectValues<typeof UIComponents>;
|
|
1148
2735
|
|
|
@@ -1151,84 +2738,258 @@ export declare const UIComponents: {
|
|
|
1151
2738
|
readonly ConfirmModal: "confirm-modal";
|
|
1152
2739
|
readonly ErrorReportModal: "error-report-modal";
|
|
1153
2740
|
readonly LoadingModal: "loading-modal";
|
|
1154
|
-
readonly
|
|
2741
|
+
readonly PromptModal: "prompt-modal";
|
|
2742
|
+
readonly Toast: "toast";
|
|
2743
|
+
readonly StartupCrash: "startup-crash";
|
|
2744
|
+
readonly RouterLink: "router-link";
|
|
1155
2745
|
};
|
|
1156
2746
|
|
|
1157
|
-
declare
|
|
2747
|
+
declare interface UIModal<T = unknown> {
|
|
2748
|
+
id: string;
|
|
2749
|
+
properties: Record<string, unknown>;
|
|
2750
|
+
component: Component;
|
|
2751
|
+
beforeClose: Promise<T | undefined>;
|
|
2752
|
+
afterClose: Promise<T | undefined>;
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
export declare class UIService extends _default_4 {
|
|
1158
2756
|
private modalCallbacks;
|
|
1159
2757
|
private components;
|
|
2758
|
+
resolveComponent(name: UIComponent): Component | null;
|
|
1160
2759
|
requireComponent(name: UIComponent): Component;
|
|
1161
2760
|
alert(message: string): void;
|
|
1162
2761
|
alert(title: string, message: string): void;
|
|
1163
|
-
confirm(message: string): Promise<boolean>;
|
|
1164
|
-
confirm(title: string, message: string): Promise<boolean>;
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
2762
|
+
confirm(message: string, options?: ConfirmOptions): Promise<boolean>;
|
|
2763
|
+
confirm(title: string, message: string, options?: ConfirmOptions): Promise<boolean>;
|
|
2764
|
+
confirm<T extends ConfirmModalCheckboxes>(message: string, options?: ConfirmOptionsWithCheckboxes<T>): Promise<[boolean, Record<keyof T, boolean>]>;
|
|
2765
|
+
confirm<T extends ConfirmModalCheckboxes>(title: string, message: string, options?: ConfirmOptionsWithCheckboxes<T>): Promise<[boolean, Record<keyof T, boolean>]>;
|
|
2766
|
+
prompt(message: string, options?: PromptOptions): Promise<string | null>;
|
|
2767
|
+
prompt(title: string, message: string, options?: PromptOptions): Promise<string | null>;
|
|
2768
|
+
loading<T>(operation: Promise<T> | (() => T)): Promise<T>;
|
|
2769
|
+
loading<T>(message: string, operation: Promise<T> | (() => T)): Promise<T>;
|
|
2770
|
+
loading<T>(options: LoadingOptions, operation: Promise<T> | (() => T)): Promise<T>;
|
|
2771
|
+
toast(message: string, options?: ToastOptions): void;
|
|
1169
2772
|
registerComponent(name: UIComponent, component: Component): void;
|
|
1170
|
-
openModal<TModalComponent extends ModalComponent>(component: TModalComponent, properties?: ModalProperties<TModalComponent>): Promise<
|
|
2773
|
+
openModal<TModalComponent extends ModalComponent>(component: TModalComponent, properties?: ModalProperties<TModalComponent>): Promise<UIModal<ModalResult<TModalComponent>>>;
|
|
1171
2774
|
closeModal(id: string, result?: unknown): Promise<void>;
|
|
2775
|
+
closeAllModals(): Promise<void>;
|
|
1172
2776
|
protected boot(): Promise<void>;
|
|
2777
|
+
private removeModal;
|
|
1173
2778
|
private watchModalEvents;
|
|
2779
|
+
private watchMountedEvent;
|
|
2780
|
+
private watchViewportBreakpoints;
|
|
1174
2781
|
}
|
|
1175
2782
|
|
|
1176
2783
|
export declare type UIServices = typeof services_3;
|
|
1177
2784
|
|
|
2785
|
+
declare interface UIToast {
|
|
2786
|
+
id: string;
|
|
2787
|
+
component: Component;
|
|
2788
|
+
properties: Record<string, unknown>;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
1178
2791
|
export declare type UnknownEvent<T> = T extends keyof EventsPayload ? never : T;
|
|
1179
2792
|
|
|
1180
|
-
export declare
|
|
2793
|
+
export declare type Unref<T> = {
|
|
2794
|
+
[K in keyof T]: T[K] extends MaybeRef<infer Value> ? Value : T[K];
|
|
2795
|
+
};
|
|
2796
|
+
|
|
2797
|
+
export declare function useConfirmModal(props: ConfirmModalProps): {
|
|
2798
|
+
form: FormController< {
|
|
2799
|
+
[x: string]: FormFieldDefinition<FormFieldType, string> | {
|
|
2800
|
+
type: "boolean";
|
|
2801
|
+
default: boolean | undefined;
|
|
2802
|
+
required: string | undefined;
|
|
2803
|
+
};
|
|
2804
|
+
}> & FormData_2< {
|
|
2805
|
+
[x: string]: FormFieldDefinition<FormFieldType, string> | {
|
|
2806
|
+
type: "boolean";
|
|
2807
|
+
default: boolean | undefined;
|
|
2808
|
+
required: string | undefined;
|
|
2809
|
+
};
|
|
2810
|
+
}>;
|
|
2811
|
+
renderedAcceptText: ComputedRef<string>;
|
|
2812
|
+
renderedCancelText: ComputedRef<string>;
|
|
2813
|
+
};
|
|
2814
|
+
|
|
2815
|
+
export declare function useErrorReportModal(props: ErrorReportModalProps): {
|
|
2816
|
+
activeReportIndex: Ref<number, number>;
|
|
2817
|
+
details: ComputedRef<string>;
|
|
2818
|
+
nextReportText: string;
|
|
2819
|
+
previousReportText: string;
|
|
2820
|
+
report: ComputedRef<ErrorReport>;
|
|
2821
|
+
};
|
|
1181
2822
|
|
|
1182
2823
|
export declare function useEvent<Event extends EventWithoutPayload>(event: Event, listener: () => unknown): void;
|
|
1183
2824
|
|
|
1184
2825
|
export declare function useEvent<Event extends EventWithPayload>(event: Event, listener: EventListener_2<EventsPayload[Event]>): void;
|
|
1185
2826
|
|
|
2827
|
+
export declare function useEvent<Payload>(event: string, listener: (payload: Payload) => unknown): void;
|
|
2828
|
+
|
|
1186
2829
|
export declare function useEvent<Event extends string>(event: UnknownEvent<Event>, listener: EventListener_2): void;
|
|
1187
2830
|
|
|
1188
|
-
export declare function useForm<const T extends FormFieldDefinitions>(fields: T):
|
|
2831
|
+
export declare function useForm<const T extends FormFieldDefinitions>(fields: T): FormController<T> & FormData_2<T>;
|
|
2832
|
+
|
|
2833
|
+
export declare function useInputAttrs(): [ComputedRef<{}>, ComputedRef<ClassValue>];
|
|
2834
|
+
|
|
2835
|
+
export declare function useLoadingModal(props: LoadingModalProps): {
|
|
2836
|
+
renderedTitle: ComputedRef<string>;
|
|
2837
|
+
renderedMessage: ComputedRef<string>;
|
|
2838
|
+
titleHidden: ComputedRef<boolean>;
|
|
2839
|
+
showProgress: ComputedRef<boolean>;
|
|
2840
|
+
};
|
|
2841
|
+
|
|
2842
|
+
export declare function usePromptModal(props: PromptModalProps): {
|
|
2843
|
+
form: FormController< {
|
|
2844
|
+
readonly draft: FormFieldDefinition<"string", "required">;
|
|
2845
|
+
}> & FormData_2< {
|
|
2846
|
+
readonly draft: FormFieldDefinition<"string", "required">;
|
|
2847
|
+
}>;
|
|
2848
|
+
renderedTitle: ComputedRef<string>;
|
|
2849
|
+
renderedMessage: ComputedRef<string | null>;
|
|
2850
|
+
renderedAcceptText: ComputedRef<string>;
|
|
2851
|
+
renderedCancelText: ComputedRef<string>;
|
|
2852
|
+
};
|
|
2853
|
+
|
|
2854
|
+
export declare function validate(value: unknown, rule: string): string[];
|
|
1189
2855
|
|
|
1190
|
-
export declare
|
|
2856
|
+
export declare const validators: Record<string, FormFieldValidator>;
|
|
1191
2857
|
|
|
1192
|
-
export declare
|
|
2858
|
+
export declare type Variants<T extends Record<string, string | boolean>> = Required<{
|
|
2859
|
+
[K in keyof T]: Exclude<T[K], undefined> extends string ? {
|
|
2860
|
+
[key in Exclude<T[K], undefined>]: string | null;
|
|
2861
|
+
} : {
|
|
2862
|
+
true: string | null;
|
|
2863
|
+
false: string | null;
|
|
2864
|
+
};
|
|
2865
|
+
}>;
|
|
1193
2866
|
|
|
1194
2867
|
export { }
|
|
1195
2868
|
|
|
2869
|
+
|
|
2870
|
+
declare module '@aerogel/core' {
|
|
2871
|
+
interface EventsPayload {
|
|
2872
|
+
'application-ready': void;
|
|
2873
|
+
'application-mounted': void;
|
|
2874
|
+
}
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
|
|
2878
|
+
declare module '@aerogel/core' {
|
|
1196
2879
|
interface AerogelOptions {
|
|
1197
2880
|
directives?: Record<string, Directive>;
|
|
1198
2881
|
}
|
|
2882
|
+
}
|
|
2883
|
+
|
|
2884
|
+
|
|
2885
|
+
declare module 'vue' {
|
|
2886
|
+
interface ComponentCustomDirectives {
|
|
2887
|
+
measure: Directive<string, string>;
|
|
2888
|
+
}
|
|
2889
|
+
}
|
|
1199
2890
|
|
|
2891
|
+
|
|
2892
|
+
declare module '@aerogel/core' {
|
|
1200
2893
|
interface AerogelOptions {
|
|
1201
2894
|
handleError?(error: ErrorSource): boolean;
|
|
1202
2895
|
}
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
|
|
2899
|
+
declare module '@aerogel/core' {
|
|
2900
|
+
interface Services extends ErrorsServices {
|
|
2901
|
+
}
|
|
2902
|
+
}
|
|
1203
2903
|
|
|
1204
|
-
export interface Services extends ErrorsServices {}
|
|
1205
2904
|
|
|
1206
|
-
|
|
2905
|
+
declare module '@aerogel/core' {
|
|
2906
|
+
interface Services extends LangServices {
|
|
2907
|
+
}
|
|
2908
|
+
}
|
|
2909
|
+
|
|
1207
2910
|
|
|
1208
|
-
declare module '
|
|
2911
|
+
declare module 'vue' {
|
|
1209
2912
|
interface ComponentCustomProperties {
|
|
1210
2913
|
$td: typeof translateWithDefault;
|
|
1211
2914
|
}
|
|
1212
2915
|
}
|
|
1213
2916
|
|
|
2917
|
+
|
|
2918
|
+
declare global {
|
|
2919
|
+
var testingRuntime: AerogelTestingRuntime | undefined;
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
|
|
2923
|
+
declare module '@aerogel/core' {
|
|
1214
2924
|
interface AerogelOptions {
|
|
1215
2925
|
services?: Record<string, Service>;
|
|
2926
|
+
settings?: AppSetting[];
|
|
1216
2927
|
}
|
|
1217
|
-
|
|
1218
|
-
declare module '@vue/runtime-core' {
|
|
1219
|
-
interface ComponentCustomProperties extends Services {}
|
|
1220
2928
|
}
|
|
1221
2929
|
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
'close-modal': { id: string; result?: unknown };
|
|
1226
|
-
'hide-modal': { id: string };
|
|
1227
|
-
'show-modal': { id: string };
|
|
2930
|
+
|
|
2931
|
+
declare module 'vue' {
|
|
2932
|
+
interface ComponentCustomProperties extends Services {
|
|
1228
2933
|
}
|
|
2934
|
+
}
|
|
1229
2935
|
|
|
2936
|
+
|
|
2937
|
+
declare module '@aerogel/core' {
|
|
1230
2938
|
interface AerogelOptions {
|
|
1231
2939
|
components?: Partial<Record<UIComponent, Component>>;
|
|
1232
2940
|
}
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
|
|
2944
|
+
declare module '@aerogel/core' {
|
|
2945
|
+
interface Services extends UIServices {
|
|
2946
|
+
}
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
|
|
2950
|
+
declare global {
|
|
2951
|
+
var __aerogelEvents__: AerogelGlobalEvents | undefined;
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
|
|
2955
|
+
declare module '@aerogel/core' {
|
|
2956
|
+
interface EventsPayload {
|
|
2957
|
+
error: {
|
|
2958
|
+
error: ErrorSource;
|
|
2959
|
+
message?: string;
|
|
2960
|
+
};
|
|
2961
|
+
}
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2964
|
+
|
|
2965
|
+
declare module '@aerogel/core' {
|
|
2966
|
+
interface EventsPayload {
|
|
2967
|
+
'close-modal': {
|
|
2968
|
+
id: string;
|
|
2969
|
+
result?: unknown;
|
|
2970
|
+
};
|
|
2971
|
+
'hide-modal': {
|
|
2972
|
+
id: string;
|
|
2973
|
+
};
|
|
2974
|
+
'hide-overlays-backdrop': void;
|
|
2975
|
+
'modal-closed': {
|
|
2976
|
+
modal: UIModal;
|
|
2977
|
+
result?: unknown;
|
|
2978
|
+
};
|
|
2979
|
+
'modal-will-close': {
|
|
2980
|
+
modal: UIModal;
|
|
2981
|
+
result?: unknown;
|
|
2982
|
+
};
|
|
2983
|
+
'show-modal': {
|
|
2984
|
+
id: string;
|
|
2985
|
+
};
|
|
2986
|
+
'show-overlays-backdrop': void;
|
|
2987
|
+
}
|
|
2988
|
+
}
|
|
2989
|
+
|
|
1233
2990
|
|
|
1234
|
-
|
|
2991
|
+
declare module '@aerogel/core' {
|
|
2992
|
+
interface EventsPayload {
|
|
2993
|
+
'purge-storage': void;
|
|
2994
|
+
}
|
|
2995
|
+
}
|